From 98dd00e17c67c5869061b1c55451e25df88398de Mon Sep 17 00:00:00 2001 From: peytontolbert Date: Tue, 30 Jan 2024 23:42:13 -0500 Subject: [PATCH] multiprocess --- vision_datasets/Dockerfile | 25 + ...rate3.py => functioncallgenerate_mp_mt.py} | 120 +- vision_datasets/functions.json | 12 + vision_datasets/requirements.txt | 4 + vision_datasets/responses.json | 185869 ++------------- 5 files changed, 13931 insertions(+), 172099 deletions(-) create mode 100644 vision_datasets/Dockerfile rename vision_datasets/{functioncallgenerate3.py => functioncallgenerate_mp_mt.py} (52%) create mode 100644 vision_datasets/requirements.txt diff --git a/vision_datasets/Dockerfile b/vision_datasets/Dockerfile new file mode 100644 index 0000000..8355ae9 --- /dev/null +++ b/vision_datasets/Dockerfile @@ -0,0 +1,25 @@ +# Use an official PyTorch image as a parent image +FROM pytorch/pytorch:latest + +# Set the working directory in the container +WORKDIR /usr/src/app + +# Copy the current directory contents into the container at /usr/src/app +COPY . /usr/src/app + +# Install any needed packages specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +# Make port 29500 available to the world outside this container +# This port can be used for the PyTorch distributed process group +EXPOSE 29500 + +# Define environment variable +ENV NAME World +# Define environment variables for distributed training +ENV MASTER_ADDR="localhost" +ENV MASTER_PORT="29500" +ENV NCCL_SOCKET_IFNAME=^docker0,lo + +# Run app.py when the container launches +CMD ["python", "functioncallgenerate_mp_mt.py"] \ No newline at end of file diff --git a/vision_datasets/functioncallgenerate3.py b/vision_datasets/functioncallgenerate_mp_mt.py similarity index 52% rename from vision_datasets/functioncallgenerate3.py rename to vision_datasets/functioncallgenerate_mp_mt.py index ca03ebf..2ec969f 100644 --- a/vision_datasets/functioncallgenerate3.py +++ b/vision_datasets/functioncallgenerate_mp_mt.py @@ -2,39 +2,43 @@ import json import torch.distributed as dist import torch.multiprocessing as mp +from multiprocessing import Process, Queue, set_start_method from transformers import AutoModelForCausalLM, AutoTokenizer from transformers.generation import GenerationConfig import re import os +os.environ['MASTER_ADDR'] = 'localhost' # Use the appropriate master address +os.environ['MASTER_PORT'] = '29500' # Use an appropriate port number + +torch.distributed.is_available() +# File to store the responses +functions_file = "functions.json" +features_file = "responses.json" device = torch.set_default_device("cuda") # Create a lock object -model_name_or_path = ( - "cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser" -) -# Load the model and tokenizer -tokenizer = AutoTokenizer.from_pretrained( - model_name_or_path, - torch_dtype=torch.float16, - fast_attention2=True, - trust_remote_code=True, -) -model = AutoModelForCausalLM.from_pretrained( - model_name_or_path, - device_map=("cuda:0"), - torch_dtype=torch.float16, - trust_remote_code=True, - use_safetensors=True -) -# File to store the responses -functions_file = "functions.json" -rank = 2 -world_size = 2 +# Initialization of the model and tokenizer should be done inside the function that runs on each process to ensure they are correctly mapped to the respective device (GPU). +def setup_model_and_tokenizer(device): + model_name_or_path = "cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser" + tokenizer = AutoTokenizer.from_pretrained( + model_name_or_path, + torch_dtype=torch.float16, + fast_attention2=True, + trust_remote_code=True, + ) + model = AutoModelForCausalLM.from_pretrained( + model_name_or_path, + torch_dtype=torch.float16, + trust_remote_code=True, + use_safetensors=True + ) + model.to(device) + return tokenizer, model -def expand_qa(features, rank, world_size): - dist.init_process_group("nccl", rank=rank, world_size=world_size) - prompt = f"""{features}""" + +def generate_response(tokenizer, model, features): + prompt = features system_message = """When presented with features described by a visual language model, synthesize a function call and generate its output. The function call should be structured to capture specific attributes of the image as detailed by the visual description. Start the function call with the tag and then provide the expected output in JSON format. [INSTRUCTION] @@ -97,6 +101,7 @@ def expand_qa(features, rank, world_size): full_response = tokenizer.decode( outputs[0], skip_special_tokens=True ) + # Use regex to find everything after "assistant" match = re.search(r"assistant\s*(.*)", full_response, re.DOTALL) if match: @@ -105,7 +110,24 @@ def expand_qa(features, rank, world_size): ) # Extract everything after "assistant" else: response = "No response found after 'assistant'." + return response + +def expand_qa(rank, features_with_ids, output_queue, world_size): + torch.cuda.set_device(rank) # Set the current device to the specified GPU + device = torch.device(f"cuda:{rank}") + dist.init_process_group("nccl", rank=rank, world_size=world_size) + tokenizer, model = setup_model_and_tokenizer(device) + print(f"Process {rank} is running on GPU {rank}") + for feature in features_with_ids: + if rank == (feature["id"] % world_size): + response = generate_response(tokenizer, model, feature["response"]) + output_queue.put({"id": feature["id"], "response": response}) + # Save the response + if rank == 0: + for _ in range(world_size): + output_queue.put("DONE") + dist.destroy_process_group return response @@ -147,16 +169,50 @@ def process_responses(file_path, output_file_path): save_response(item) return data -def run_inference(rank, world_size): - # Process the responses.json file - updated_data = process_responses("responses.json", "functions.json") - -print("Data saved in functions.json") - +def load_features(features_path, responses_path): + # Load the features + with open(features_path, 'r') as f: + features = json.load(f) + processed_ids = set() + + # Load the processed responses + try: + with open(responses_path, 'r') as f: + responses = json.load(f) + # Extract the IDs of processed features + processed_ids = {response["id"] for response in responses} + except FileNotFoundError: + # If the responses file doesn't exist, no IDs have been processed + processed_ids = set() + + # Filter out features that have already been processed + new_features = [feature for feature in features if feature["id"] not in processed_ids] + + return new_features + +def write_outputs_from_queue(output_queue, functions_path): + with open(functions_path, 'a') as f: + while True: + output = output_queue.get() # This will block until an item is available + if output == "DONE": + break # Break the loop if a "DONE" signal is received + f.write(json.dumps(output) + "\n") def main(): - world_size = 2 - mp.spawn(run_inference, args=(world_size,), nprocs=world_size, join=True) + set_start_method("spawn") # Recommended for PyTorch multiprocessing + world_size = torch.cuda.device_count() + unprocessed_features = load_features(features_file, functions_file) + output_queue = Queue() + writer_process = Process(target=write_outputs_from_queue, args=(output_queue, functions_file)) + writer_process.start() + features_with_ids = [{"id": feature["id"], "response": feature["response"]} for feature in unprocessed_features] + # Ensure features list is properly divided among processes or handled per your logic + # This example assumes a simplistic division, which may need adjustment + mp.spawn(expand_qa, args=(features_with_ids, output_queue, world_size), nprocs=world_size, join=True) + + # Signal the writer process that processing is done + output_queue.put("DONE") + writer_process.join() if __name__ == "__main__": diff --git a/vision_datasets/functions.json b/vision_datasets/functions.json index 9287f39..cf6fee1 100644 --- a/vision_datasets/functions.json +++ b/vision_datasets/functions.json @@ -19570,5 +19570,17 @@ "response": "The image shows a construction site where several workers are working. In the foreground, two workers are crouched down working on a square hole in the ground. Another worker is standing in the background, and two more are in the far background. In the middle ground, there is a long white building with Chinese characters on the second floor. The characters say \"\u5f3a\u5316\u5b89\u5168\u6587\u5316\". There is a red roof on the white building. On the right side of the image, there is a long sidewalk.", "id": 3261, "new_response": "[FUNCTION CALL]\n{{\n 'type': 'object',\n 'properties': {{\n 'scene_type': {{\n 'type': 'string',\n 'description': 'The type of scene in the image.',\n 'enum': ['construction_site']\n }},\n 'workers_count': {{\n 'type': 'integer',\n 'description': 'The number of workers in the image.',\n 'minimum': 2,\n 'maximum': 6\n }},\n 'workers_positions': {{\n 'type': 'array',\n 'description': 'The positions of the workers in the image.',\n 'items': {{\n 'type': 'string',\n 'enum': ['foreground', 'background', 'middle_ground', 'far_background']\n }}\n }},\n 'building_colors': {{\n 'type': 'array',\n 'description': 'The colors of the building in the image.',\n 'items': {{\n 'type': 'string',\n 'enum': ['white']\n }}\n }},\n 'building_features': {{\n 'type': 'object',\n 'properties': {{\n 'second_floor_text': {{\n 'type': 'string',\n 'description': 'The text on the second floor of the building.',\n 'enum': ['\u5f3a\u5316\u5b89\u5168\u6587\u5316']\n }},\n 'roof_color': {{\n 'type': 'string',\n 'description': 'The color of the roof of the building.',\n 'enum': ['red']\n }}\n }}\n }},\n 'sidewalk_presence': {{\n 'type': 'boolean',\n 'description': 'Whether there is a sidewalk in the image.',\n 'enum': [true]\n }}\n }}\n}}\n\n[EXPECTED OUTPUT]\n{{\n 'scene_type': 'construction_site',\n 'workers_count': 6,\n 'workers_positions': ['foreground', 'background', 'middle_ground', 'far_background'],\n 'building_colors': ['white'],\n 'building_features': {\n 'second_floor_text': '\u5f3a\u5316" + }, + { + "image_path": "G:\\images\\combined\\005303_jpg.rf.54be7c16f2ddd8094e4a2fa3bb5e1c82.jpg", + "response": "The image shows a construction site where several workers are working. There are three workers in the foreground, all wearing blue shirts and pants, with the one on the left crouching down and the other two standing further back. They are working on a square hole in the ground. In the background, there are three other workers, one near the left side of the image, one in the center, and one on the right side. There is also a white and red sign on a building in the background.", + "id": 3262, + "new_response": "[FUNCTION CALL]\n{{\n 'type': 'object',\n 'properties': {{\n 'workers_colors': {{\n 'type': 'array',\n 'description': 'The colors of the workers in the image.',\n 'items': {{\n 'type':'string',\n 'enum': ['blue']\n }}\n }},\n 'workers_positions': {{\n 'type': 'array',\n 'description': 'The positions of the workers in the image.',\n 'items': {{\n 'type':'string',\n 'enum': ['foreground', 'background']\n }}\n }},\n 'workers_features': {{\n 'type':'string',\n 'description': 'The features seen on the construction site.',\n 'enum': ['square hole', 'white and red sign']\n }}\n }}\n}}\n\n[EXPECTED OUTPUT]\n{{\n 'workers_colors': ['blue'],\n 'workers_positions': ['foreground', 'background'],\n 'workers_features':'square hole'\n}}" + }, + { + "image_path": "G:\\images\\combined\\005304_jpg.rf.503db9e2b279bb8ac286d27e61aac098.jpg", + "response": "A group of people standing next to each other wearing hard hats.", + "id": 3263, + "new_response": "[FUNCTION CALL]\n {{\n 'type': 'object',\n 'properties': {{\n 'people_count': {{\n 'type': 'number',\n 'description': 'The number of people in the image.',\n 'minimum': 1\n }},\n 'people_attire': {{\n 'type': 'array',\n 'description': 'The attire of the people in the image.',\n 'items': {{\n 'type':'string',\n 'enum': ['hard hats']\n }}\n }},\n 'people_location': {{\n 'type':'string',\n 'description': 'The location of the people in the image.',\n 'enum': ['standing']\n }}\n }}\n}}\n\n[EXPECTED OUTPUT]\n{{\n 'people_count': 1,\n 'people_attire': ['hard hats'],\n 'people_location':'standing'\n}}" } ] \ No newline at end of file diff --git a/vision_datasets/requirements.txt b/vision_datasets/requirements.txt new file mode 100644 index 0000000..195ee2f --- /dev/null +++ b/vision_datasets/requirements.txt @@ -0,0 +1,4 @@ +torch +zetascale +swarms +transformers \ No newline at end of file diff --git a/vision_datasets/responses.json b/vision_datasets/responses.json index 6db049e..25aa2b4 100644 --- a/vision_datasets/responses.json +++ b/vision_datasets/responses.json @@ -1,181272 +1,23007 @@ [ { - "image_path": "G:\\images\\combined\\001857_jpg.rf.c25eaf63fae71165a6b76568351b3a13.jpg", - "response": "A man and woman are standing in a room that is under construction. The man is wearing a white hard hat and holding a clipboard. The woman is standing with her hands on her hips. They are both looking at the clipboard. The walls of the room are made of wood and there are power tools in the foreground.", - "id": 0 + "image_path": "G:\\images\\combined\\004788_jpg.rf.5f35712d026990671668b8df67434f55.jpg", + "response": "A group of three men in blue uniforms and hard hats crouching down near a large box.", + "id": 30614 }, { - "image_path": "G:\\images\\combined\\001858_jpg.rf.b4c8ce31c820aaa2b1b54cbd3aff8cae.jpg", - "response": "A group of workers are working on a construction site.", - "id": 1 + "image_path": "G:\\images\\combined\\004791_jpg.rf.6b5067e6ddfc07c2a48063906326b3e9.jpg", + "response": "A man in a red hard hat and yellow safety vest crouches down next to a large group of pipes and valves. He is wearing a red hard hat and yellow safety vest.", + "id": 30615 }, { - "image_path": "G:\\images\\combined\\001860_jpg.rf.6bd8fd8a35835bd2da6a2dbbcc2bc08f.jpg", - "response": "A group of people standing around a construction site.", - "id": 2 + "image_path": "G:\\images\\combined\\004792_jpg.rf.ba24ae91c33dd06f20bdac3d9d3cdeea.jpg", + "response": "In the image, a large group of railway workers in red uniform and yellow safety helmets are working on a bridge. They are installing or fixing the railway tracks. Some of them are using tools like spanners, drills and others. The bridge is grey and made of cement. The railway tracks are placed on the bridge and some workers are working on the tracks. The sky is covered by clouds and there are some mountains in the background.", + "id": 30616 }, { - "image_path": "G:\\images\\combined\\001861_jpg.rf.ddb4e74a2e47c6a2677951c715ce5fe9.jpg", - "response": "A group of about 15 men in grey and yellow work clothes and yellow helmets. They are standing in front of a pile of grey rocks and debris and a yellow and blue back hoe. They are all holding their right arms up in the air and are smiling at the camera. In the background there is a brown mountain with a red and white flag on it and a yellow and blue back hoe working in the rocks.", - "id": 3 + "image_path": "G:\\images\\combined\\004793_jpg.rf.d4fc42c79333b6f3f5bc785109384c51.jpg", + "response": "A worker is seen in a cave, he is wearing a yellow hard hat and a green vest. The cave has a muddy floor and the worker is climbing down a ladder. There are bamboo shoots in the foreground.", + "id": 30617 }, { - "image_path": "G:\\images\\combined\\001862_jpg.rf.e44852e2ddda5fc621fdd4374224d358.jpg", - "response": "A street that has been dug up by a construction crew.", - "id": 4 + "image_path": "G:\\images\\combined\\004794_jpg.rf.ec24fbbd42168ab151804272df45d688.jpg", + "response": "A group of men are working on a metal tower.", + "id": 30618 }, { - "image_path": "G:\\images\\combined\\001863_jpg.rf.e45ee25a72faec437c74b81bf618577a.jpg", - "response": "Power line workers in the snow in the state of Sichuan in China.", - "id": 5 + "image_path": "G:\\images\\combined\\004795_jpg.rf.e1f20731ce119469643a211bf720c4e9.jpg", + "response": "A man in a yellow jumpsuit and a hard hat is sitting on a step and reading a newspaper. He is wearing a hard hat and has a walkie talkie on his belt. He is in a tunnel-like room with various equipment around him.", + "id": 30619 }, { - "image_path": "G:\\images\\combined\\001864_jpg.rf.660540e677d8e6fcb863d38d01c57b07.jpg", - "response": "The photo shows a group of people in orange vests and red hats standing on a steel track. To the right of the track is a yellow vehicle. The background shows a yellow vehicle on a rail. The people are standing in front of a building.", - "id": 6 + "image_path": "G:\\images\\combined\\004796_jpg.rf.27c50b5235104223c46cc3f0ad3b86a2.jpg", + "response": "The picture shows a group of men standing in a construction site. They are all dressed in black suits and most of them are wearing white safety helmets. The wall behind them is half-assembled, with green metal sheets on the outside and white inside. The floor is concrete, and there are some cranes and construction workers in the background.", + "id": 30620 }, { - "image_path": "G:\\images\\combined\\001865_jpg.rf.af31d300b0d7f86965d565f900e03b91.jpg", - "response": "A group of people standing around a cage that is filled with concrete.", - "id": 7 + "image_path": "G:\\images\\combined\\004797_jpg.rf.930bbc989e89d7b6e01d3f53917a142c.jpg", + "response": "In the image two men are working on power lines. They are both wearing safety gear which includes white hard hats, orange safety vests, and grey shirts. The man in the front is wearing orange gloves and is working on a silver ladder. The man behind him is working on a silver pole. They are both standing on a metal platform.", + "id": 30621 }, { - "image_path": "G:\\images\\combined\\001866_jpg.rf.ddffadea05b9f23aecae1a72b7728719.jpg", - "response": "In the image there are multiple people working on a large construction site. They are working on a concrete slab and some of them are standing on it. There are also some cranes and other construction equipment on the site. The sky is blue and the sun is shining.", - "id": 8 + "image_path": "G:\\images\\combined\\004798_jpg.rf.b3a39057b75a3259d8bb2d7b8a3c0bd0.jpg", + "response": "In the image there are two people working on a construction site. One person is on the left and is wearing camo pants, a camo jacket, a yellow hard hat, and is holding a blue cable. The second person is on the right and is wearing red hard hat, brown jacket, and is holding the other end of the blue cable. They are both standing on a ladder with the background being a grey wall.", + "id": 30622 }, { - "image_path": "G:\\images\\combined\\001867_jpg.rf.4bb50ad35e6aac00d42e112d258c3974.jpg", - "response": "A group of men standing in a room.", - "id": 9 + "image_path": "G:\\images\\combined\\004799_jpg.rf.cb16a734458e0d59303578101eb87c2a.jpg", + "response": "In the image two workers are seen working on a construction site. They are wearing yellow helmets and one of them is holding a large pipe in his hand. Another pipe is seen on the left side of the image. The sky is blue with some clouds.", + "id": 30623 }, { - "image_path": "G:\\images\\combined\\001868_jpg.rf.f1d486a56466e6be4dd260d46e282b69.jpg", - "response": "A man working on a building foundation in the middle of a field.", - "id": 10 + "image_path": "G:\\images\\combined\\0047fb2e2908c12d.jpg", + "response": "A man is sitting at a table with a laptop. He is holding a microphone and appears to be giving a presentation.", + "id": 30624 }, { - "image_path": "G:\\images\\combined\\001869_jpg.rf.40b9911c00df2b3468e5193c97034021.jpg", - "response": " A man(544,450),(709,914) in orange overalls(545,524),(706,906) walking down a metal staircase(497,433),(737,997)", - "id": 11 + "image_path": "G:\\images\\combined\\004801_jpg.rf.0d7b535fa49285f7135742a7ceabd6ae.jpg", + "response": "An engineer in a suit and tie, wearing a hard hat and holding a pair of binoculars, smiles as he looks up at a power station.", + "id": 30625 }, { - "image_path": "G:\\images\\combined\\001871_jpg.rf.18c0a0895898732132e55888c33c9256.jpg", - "response": "A group of three men in yellow hard hats and yellow work shirts are looking at a machine. The two men on the right are holding clipboards and looking at the machine. The machine has a lot of pipes and knobs.", - "id": 12 + "image_path": "G:\\images\\combined\\004802_jpg.rf.5d2ed5eeabb0ef69d67b73812351487d.jpg", + "response": "A construction worker wearing a hard hat and holding a sign.", + "id": 30626 }, { - "image_path": "G:\\images\\combined\\001872_jpg.rf.ef7a7de51948d40a2271654ce243e177.jpg", - "response": " two men(248,103),(508,995)(648,329),(849,768) with hard hats(359,103),(482,202)(687,329),(784,420) on a mountain side", - "id": 13 + "image_path": "G:\\images\\combined\\004803_jpg.rf.8def9ccf32a0cfcf55776f1152481677.jpg", + "response": "The image shows a group of workers in the process of removing an old wooden power pole. The pole is located on the side of a road and is being carried out of the picture by a large spool of wire. The workers are wearing safety gear, including hard hats and safety vests. One worker is on the left, another is in the center of the scene, and the third is on the right. The fourth worker is behind the truck in the background. The workers are all focused on the task at hand, and the scene captures a moment of teamwork and hard work.", + "id": 30627 }, { - "image_path": "G:\\images\\combined\\001873_jpg.rf.cc998aa53293ddbf473d2ce23cd3f920.jpg", - "response": "A worker is seen breaking the glass of a bus. The bus is located on the left side of the image and the worker is on the left side. The broken glass is spread all over the floor. The right side of the image shows a bridge.", - "id": 14 + "image_path": "G:\\images\\combined\\004804_jpg.rf.34d145b523bb89feab5c193b4fea9d87.jpg", + "response": "A construction worker in a yellow hard hat is measuring a brick wall with a measuring tape while another worker in a blue shirt looks on. They are both wearing yellow hard hats and the worker measuring the wall is also wearing a white t-shirt and jeans. They are standing on a construction site with a blue sky in the background.", + "id": 30628 }, { - "image_path": "G:\\images\\combined\\001874_jpg.rf.d283fe2f2372755ee787dc3c9f63812a.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 15 + "image_path": "G:\\images\\combined\\004805_jpg.rf.0e83e294841f0fc656a9ce7b06a64f53.jpg", + "response": "This image shows a man with black hair standing in the sun. He is wearing a dark suit and has his mouth open as if he is laughing. He is also holding a cigarette. The man is standing outside in front of a building. There are several other people around him, some of them are dressed in dark suits too. In the background, there is a building under construction with a large crane next to it. The building has glass windows and is painted in light blue color.", + "id": 30629 }, { - "image_path": "G:\\images\\combined\\001875_jpg.rf.96dcfe8bc31d5594dcbeac27ad84c2b8.jpg", - "response": "A man in a yellow hard hat is using a hose to spray water on rebar.", - "id": 16 + "image_path": "G:\\images\\combined\\004806_jpg.rf.87d9e6650725025c802ade3701fbe775.jpg", + "response": "a group of people walking across a field", + "id": 30630 }, { - "image_path": "G:\\images\\combined\\001876_jpg.rf.16e403102e25adc03995e5b0eb9b58d4.jpg", - "response": "A man wearing a blue hard hat and a yellow safety vest is standing in front of a building under construction. The man is holding a set of plans in his hand and is looking at them. He is wearing a suit and tie and has a briefcase.", - "id": 17 + "image_path": "G:\\images\\combined\\004807_jpg.rf.62089d1dc7066e2f52624225fdf0cb10.jpg", + "response": "A group of men wearing hard hats are standing in a room under construction. Some of the men are wearing black and yellow hard hats, while others are wearing red and yellow hard hats. They are all wearing black coats and are looking down at something. There are windows on the walls and a lot of rebar sticking out of the concrete floor.", + "id": 30631 }, { - "image_path": "G:\\images\\combined\\001877_jpg.rf.bfd746884f0d6b3f5de5e980b389873b.jpg", - "response": "A man standing on a yellow ladder working on a electrical box.", - "id": 18 + "image_path": "G:\\images\\combined\\004808_jpg.rf.08c44d3f1caa6bf218704f208614cad2.jpg", + "response": "In the image several workers are seen constructing a building. The workers are wearing yellow helmets and are working on a building site. The site has several metal rods and the workers are tying wires to them. There are also several pipes seen in the background. The workers are wearing red and white t-shirt and are of asian ethnicity.", + "id": 30632 }, { - "image_path": "G:\\images\\combined\\001878_jpg.rf.8a4f30ab2ced5d792a2fa5705b73e80e.jpg", - "response": "A man in a blue helmet is using a tool to fix a power line.", - "id": 19 + "image_path": "G:\\images\\combined\\004809_jpg.rf.28a6802590e9a67d5979c05536d96c74.jpg", + "response": "A group of four workers in red and yellow work uniforms and yellow helmets are constructing a large green cylindrical tank. They are crouched down over a rectangular pit with rebar being woven into a structure in the bottom of the pit.", + "id": 30633 }, { - "image_path": "G:\\images\\combined\\001880_jpg.rf.ac909b24b61a64f45c49c4986aebaace.jpg", - "response": "A worker is seen in a scaffolding structure built around a mountain.", - "id": 20 + "image_path": "G:\\images\\combined\\004810_jpg.rf.be6c613d55b1769965ec6c53d2e4fe45.jpg", + "response": "A group of workers are working on a building site. They are all wearing yellow hard hats. One man is bending over, concentrating on his task. Another man is sitting down, working on a metal bar. A third man is standing in the background, watching the others. A fourth man is standing further back, also watching the work. A fifth man is standing to the far right of the image, also working on the building site.", + "id": 30634 }, { - "image_path": "G:\\images\\combined\\001881_jpg.rf.68cb5253e04e4af56836359935c199a2.jpg", - "response": "A construction site with multiple workers and construction equipment.", - "id": 21 + "image_path": "G:\\images\\combined\\004812_jpg.rf.c1799104df16fe5fea44183b69faea67.jpg", + "response": "The image shows a group of workers in yellow vests and orange hats standing on a barge in a harbor. The barge is filled with steel rods and there are several large boats visible in the background. A yellow crane is operating in the background on the right side of the image. The sky is overcast and there are a few people in the background who are not part of the main group.", + "id": 30635 }, { - "image_path": "G:\\images\\combined\\001882_jpg.rf.2a663f6451bb1e1a3793911e1e6f7ce1.jpg", - "response": "A group of men working on a construction site.", - "id": 22 + "image_path": "G:\\images\\combined\\004813_jpg.rf.a9c5335434f5263e5e1a5a657c835cbe.jpg", + "response": "A construction site with a bulldozer and some construction workers.", + "id": 30636 }, { - "image_path": "G:\\images\\combined\\001883_jpg.rf.b15d351a8fbd754f0619ccd93bfad276.jpg", - "response": "A group of men wearing white shirts and red hats are standing around a man in a white shirt and black pants. They are all standing on a concrete area with a blue sky above them.", - "id": 23 + "image_path": "G:\\images\\combined\\004816_jpg.rf.ffa2ec36e07df41c90e3ac79bbb86f48.jpg", + "response": "In the image there are two people working on a construction site. They are both wearing hard hats and the person in the foreground is pushing a cart of bricks while the person in the background is shoveling bricks. There is a pile of bricks to the right of the people and a cart of bricks to the left of the people. In the background there is a yellow metal gate and a red and white sign that says \"Caution, Keep Out\".", + "id": 30637 }, { - "image_path": "G:\\images\\combined\\001884_jpg.rf.806e9b1e3a34ff1acbe2aa0d9c85ffef.jpg", - "response": "A worker is seen carrying a pipe in a tunnel. He is wearing a yellow hard hat and a gas mask. The tunnel is filled with smoke and there are other workers in the background. One of them is carrying a drill.", - "id": 24 + "image_path": "G:\\images\\combined\\004817_jpg.rf.16596a60cbe0fe4a7567a3b56d6a5a87.jpg", + "response": "A worker in a yellow hard hat and grey coveralls is working on a large black piece of equipment. He is holding a pair of pliers and has a knife in his hand. He is in front of a large black transformer.", + "id": 30638 }, { - "image_path": "G:\\images\\combined\\001886_jpg.rf.9c3435cc58fde1a2130690cc8b7b9186.jpg", - "response": "A group of men standing around each other.", - "id": 25 + "image_path": "G:\\images\\combined\\004819_jpg.rf.939658e1dd794f613803e65002a3d1ed.jpg", + "response": "A group of people wearing hard hats are standing in a underground tunnel.", + "id": 30639 }, { - "image_path": "G:\\images\\combined\\001887_jpg.rf.a39427814b89319a7c117969568b9199.jpg", - "response": "In the image there are three people dressed in orange and blue work clothes. They are working on a construction site and are pulling on a rope or chain. The rope is connected to a large hook and is being used to lift something.", - "id": 26 + "image_path": "G:\\images\\combined\\004820_jpg.rf.ff70e3cf9a8885503ca93a312a450cc5.jpg", + "response": "An industrial harbor with a large red cargo ship docked. Two men in yellow vests and hard hats are standing in front of the ship, one holding a clipboard and the other pointing to the ship. In the background is a factory or oil rig.", + "id": 30640 }, { - "image_path": "G:\\images\\combined\\001888_jpg.rf.3415117a311911c3932a19d650698be8.jpg", - "response": "The image shows a group of people standing in a room. The person in the center is wearing a black suit and is standing in front of a counter. There are two chairs behind the counter. The room has two doors and two windows. The walls are beige and the floor is dark brown. On the counter there are several items including a laptop, a keyboard, a mouse, and a few books. There is also a TV mounted on the wall.", - "id": 27 + "image_path": "G:\\images\\combined\\004821_jpg.rf.042c9d97ed15666a20cf125d5d4895c6.jpg", + "response": "In the image there is a worker wearing a yellow hard hat and a green jacket, who is working on a construction site. The worker is focused on their task, which involves connecting steel bars together. They are standing in a large warehouse-like building, which is filled with steel bars of various sizes and shapes. Some steel bars are stacked together, while others are arranged in a circle around the worker. The worker is standing in the center of this circle of steel bars, and they are holding a long piece of steel.", + "id": 30641 }, { - "image_path": "G:\\images\\combined\\001889_jpg.rf.d8821cbe9c0ef6d8b4446cad0a57b134.jpg", - "response": "A man wearing a yellow hard hat is holding a trowel and applying grout to a tile wall.", - "id": 28 + "image_path": "G:\\images\\combined\\004822_jpg.rf.9782e1b3e6f3a5b2b98e43090635030e.jpg", + "response": "A worker is standing in front of a large metal furnace with a shovel. The worker is wearing a yellow helmet and grey uniform. The background is blurred and there is text on the right bottom corner that says \"\u5317\u4eac\u7db2\".", + "id": 30642 }, { - "image_path": "G:\\images\\combined\\001890_jpg.rf.59417c8c1d7444f0d1e52e04c551d576.jpg", - "response": "The image shows two workers on a power pole. They are both wearing blue and yellow jackets. One worker is on the left side of the pole and the other one is on the right side. They are repairing the power lines. The sky is overcast.", - "id": 29 + "image_path": "G:\\images\\combined\\004823_jpg.rf.6ae4bedc41a78a79cb043e84182a4315.jpg", + "response": "A group of three construction workers working on a building site.", + "id": 30643 }, { - "image_path": "G:\\images\\combined\\001891_jpg.rf.78225af86b21db39678c28d194d7be33.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 30 + "image_path": "G:\\images\\combined\\004824_jpg.rf.f3a945037b9f3bf2efee86769d77ca1d.jpg", + "response": "An electrician fixing an electricity cable on a pole", + "id": 30644 }, { - "image_path": "G:\\images\\combined\\001892_jpg.rf.da5f742eff782eaf9f7bb0e1e70c2db2.jpg", - "response": "The image shows a group of people standing around a piece of paper. There are several men wearing hard hats and one of them is holding a piece of paper. They are standing in front of a large ship that is being built.", - "id": 31 + "image_path": "G:\\images\\combined\\004825_jpg.rf.c0798973a9d475dddc2d6c01294d82e5.jpg", + "response": "A worker in an orange jumpsuit and yellow hard hat is on a ladder, climbing up to the top of a tower. The tower is made of metal and is set against a foggy, tree-filled background.", + "id": 30645 }, { - "image_path": "G:\\images\\combined\\001894_jpg.rf.eeebde979f19ebdec952a8ba92ae37ad.jpg", - "response": "A group of men wearing white and red hard hats are standing in a circle. They are all wearing ties and some are wearing white shirts. In the background there is a building with a sign that says \"focus\".", - "id": 32 + "image_path": "G:\\images\\combined\\004826_jpg.rf.a9ba9543b337cb183d67cd82407abb3b.jpg", + "response": "The image shows two workers on a bridge, with one on the left and one on the right, both wearing red helmets and grey uniforms. They are standing on the black asphalt of the bridge, which has a fine gravel surface. The bridge has a red railing on the left side and a tall concrete pylon on the right. In the background, there are some buildings and a car on the road.", + "id": 30646 }, { - "image_path": "G:\\images\\combined\\001896_jpg.rf.25591f26163493c4f445d4c4b3f27867.jpg", - "response": "A group of people standing around a construction site looking at the ground. Some people are wearing hard hats and one person is holding a cell phone.", - "id": 33 + "image_path": "G:\\images\\combined\\004827_jpg.rf.1c2da2ad35763c5651f91d8ab5c2d059.jpg", + "response": " Kim Jong Un(284,305),(715,997) looking at a model of the Ryomyong Street residential area", + "id": 30647 }, { - "image_path": "G:\\images\\combined\\001897_jpg.rf.68c95c19dc300998ec7251b80a6d7d62.jpg", - "response": "An image of a construction site with a person operating a machine. The machine is yellow and black and has a large arm with a drill at the end. The drill is drilling into the side of a large rock or wall. The person operating the machine is wearing a hard hat and has a white shirt. There is a small stream of water running down the side of the rock or wall. In the background, there is a bridge.", - "id": 34 + "image_path": "G:\\images\\combined\\004828_jpg.rf.c7ec0c249ed48d33193c76b409938b4e.jpg", + "response": "The image shows a construction site with a large concrete circular structure under construction. The structure, which is surrounded by wooden scaffolding, is about three stories tall and has a diameter of about 30 meters. The walls of the structure are smooth and white, and there is a yellow walkway inside.", + "id": 30648 }, { - "image_path": "G:\\images\\combined\\001898_jpg.rf.73902438ca8e72f912943d63e02f8c03.jpg", - "response": "A group of five men working on a building site wearing hard hats.", - "id": 35 + "image_path": "G:\\images\\combined\\004829b39a65de73.jpg", + "response": "A man standing in front of a large screen with the words \"Make more time to be creative\" on it.", + "id": 30649 }, { - "image_path": "G:\\images\\combined\\001899_jpg.rf.86650c8add9cae113fb5e2b67d51bcc4.jpg", - "response": "A group of people working on a building that is not finished. The building has a lot of wood beams in the middle and some walls have been built. There are a few trees in the background and a few cars in the parking lot.", - "id": 36 + "image_path": "G:\\images\\combined\\004829_jpg.rf.4f3daceac0a35369cc4940d2f3a167ff.jpg", + "response": "The image shows two workers in yellow helmets and green camouflage uniforms repairing power lines on a city street. They are standing on ladders and using tools. In the background, there is a building with signs in Chinese.", + "id": 30650 }, { - "image_path": "G:\\images\\combined\\0018b38d7afbb037.jpg", - "response": "A man in a suit standing at a podium in front of a banner for the Australian Human Rights Commission.", - "id": 37 + "image_path": "G:\\images\\combined\\004831_jpg.rf.189dea0918147e189ef6ec16c6e3bd3c.jpg", + "response": "In the image there is a worker wearing a yellow hard hat and a black shirt. They are working with a large spool of wire that is wrapped in silver. The worker is also holding a smaller spool of wire. The background is a large industrial machine.", + "id": 30651 }, { - "image_path": "G:\\images\\combined\\0018e004f5cac5e0.jpg", - "response": "A red car with the word Cordia Turbo on the back of it.", - "id": 38 + "image_path": "G:\\images\\combined\\004832_jpg.rf.c4945e43210164b1fa4a19b2dee8a9c8.jpg", + "response": "a group of people standing in front of a car", + "id": 30652 }, { - "image_path": "G:\\images\\combined\\001900_jpg.rf.638b7d8f60751737afd5c7da441475e9.jpg", - "response": "A man wearing a yellow hard hat and work clothes is welding two pieces of metal together. He is sitting on a pile of metal and the welding is causing the metal to glow and smoke. There is a large metal pipe next to him and he has a white glove on his hand.", - "id": 39 + "image_path": "G:\\images\\combined\\004833_jpg.rf.ccf25818f022788a27c3c32dfd1deb19.jpg", + "response": "A group of men working on an electricity pylon.", + "id": 30653 }, { - "image_path": "G:\\images\\combined\\001901_jpg.rf.0d4c27bb16fdb0274e4a0a01da63fecb.jpg", - "response": "\u3010\u82f1\u6587\u3011 A Bangladeshi man(477,145),(858,996) is helped by another after an accident in Dhaka, Bangladesh, on Aug. 29, 2012. A passenger bus carrying tourists from China crashed into a truck in Bangladesh's capital, killing at least 10 people and injuring 12 others, police said.", - "id": 40 + "image_path": "G:\\images\\combined\\004834_jpg.rf.79c0a6301508120b703d4b55ba65826a.jpg", + "response": "A worker repairs a wall of the former residence of late Chinese leader Mao Zedong in Shaoshan, China, 2008.", + "id": 30654 }, { - "image_path": "G:\\images\\combined\\001902_jpg.rf.dbd2a996dd3d27ca5b8a5a36a57c8c33.jpg", - "response": "A couple of men in blue shirts and hard hats are working on a power line.", - "id": 41 + "image_path": "G:\\images\\combined\\004836_jpg.rf.d491b9e576f44ea74617b131db86cda8.jpg", + "response": "The image shows two workers suspended in the air while working on a large metal structure. They are both wearing white shirts, beige pants, and blue hard hats. One worker is on the left side of the image and is holding a tool in each hand, one of which appears to be a drill. The other worker is on the right side of the image and is hooking a tool to their belt. They are also holding a tool in each hand. The workers are wearing harnesses to secure them to the structure while they work. The sky behind them is blue and cloudless.", + "id": 30655 }, { - "image_path": "G:\\images\\combined\\001903_jpg.rf.2303c20cdf75e971dae56ef46ced6d57.jpg", - "response": "A group of men standing around each other.", - "id": 42 + "image_path": "G:\\images\\combined\\004837_jpg.rf.2e112cc89bbfef6404934445ec086961.jpg", + "response": "A group of people wearing hard hats and posing for a picture in front of a building.", + "id": 30656 }, { - "image_path": "G:\\images\\combined\\001904_jpg.rf.36ac404de8d70e57680e616036f93fe0.jpg", - "response": "A construction site with two workers on scaffolding. They are working on a large glass building.", - "id": 43 + "image_path": "G:\\images\\combined\\004838_jpg.rf.f69bfcab8e99d60c3e8170208c68c3b0.jpg", + "response": "A man wearing a yellow hard hat and work clothes is working on a construction site. He is standing under a metal grid and holding a long blue rod. There are several other people working on the site as well. The man is wearing a watch on his left wrist.", + "id": 30657 }, { - "image_path": "G:\\images\\combined\\001905_jpg.rf.655f38dadffe6f10150b0663286cf870.jpg", - "response": "A group of people, including Chinese President Xi Jinping, are gathered in a factory. Some of them are wearing hard hats. In the background, there are several large metal cylinders.", - "id": 44 + "image_path": "G:\\images\\combined\\004839_jpg.rf.ed477b0e4069abe33814dc332d901282.jpg", + "response": "A worker in a yellow hat and grey jumper repairs power lines.", + "id": 30658 }, { - "image_path": "G:\\images\\combined\\001906_jpg.rf.1d08191b7bb26082899006c1e986257f.jpg", - "response": "A construction worker is working on a site.", - "id": 45 + "image_path": "G:\\images\\combined\\004840_jpg.rf.0a90886b5cd916d5879fb76762348c87.jpg", + "response": "A group of men in yellow jackets are working on a train track. They are all wearing hard hats and some have on yellow jackets. They are working on a train track and one man is holding a large metal pipe.", + "id": 30659 }, { - "image_path": "G:\\images\\combined\\001908_jpg.rf.c9bb9ddf1bf3327a415ec8bee4ac086e.jpg", - "response": "The photo shows a group of people standing around a map. There are at least 12 people in the photo, some of them are wearing suits. One person is wearing a white shirt and a tie, another one is wearing a black shirt and a suit, and another one is wearing a pink shirt and a black suit. One person is wearing a black shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a black shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a", - "id": 46 + "image_path": "G:\\images\\combined\\004841_jpg.rf.f0df22904132449151fba100f0bee109.jpg", + "response": "Several firemen(63,757),(245,997)(218,599),(400,997)(410,658),(723,987)(279,333),(488,779)(627,366),(830,995) inred helmets(279,332),(401,433)(453,253),(546,350)(427,659),(562,812)(287,821),(388,959)(498,453),(601,591)(87,758),(188,865) andblack uniforms(64,833),(244,997)(219,717),(400,997)(639,468),(829,995)(408,799),(722,997) are huddled together", + "id": 30660 }, { - "image_path": "G:\\images\\combined\\001909_jpg.rf.05c7d8f5041dc337d176d1f53e20cbbd.jpg", - "response": "A group of men in white shirts and some in safety vests and some in hard hats are walking across a concrete area in front of a building.", - "id": 47 + "image_path": "G:\\images\\combined\\004842_jpg.rf.848d56519f08de754736063c0f46e045.jpg", + "response": "The image shows two workers in orange hardhats and grey shirts, one worker is on the left and the other is on the right. They are in the process of cutting through a steel cable with a large grey industrial cutting tool. The sky is blue with clouds.", + "id": 30661 }, { - "image_path": "G:\\images\\combined\\001910_jpg.rf.6a1c1e8e101c0f1389157bd4619045bf.jpg", - "response": "A group of men looking at a banner on a construction site.", - "id": 48 + "image_path": "G:\\images\\combined\\004843_jpg.rf.69dc282fe0c9bcb4ea70d0f898044d52.jpg", + "response": "A construction site with multiple workers in red shirts.", + "id": 30662 }, { - "image_path": "G:\\images\\combined\\001911_jpg.rf.53ab53bbac5dddad897781a91e6d2ec6.jpg", - "response": "The image shows a construction site with two workers visible. They are located on the right side of the image, working on the ground. In front of them, there is a large pile of steel rods, black and silver. To the left of the workers, there is a large pile of brown wooden planks. In the background, there are some buildings, the closest one is a blue building with a white sign that says \"\u78ba\u4fdd\u5e73\u5b89\" (Safeguarding Safety). This sign is located at the top left corner of the image. The sky is light blue with clouds.", - "id": 49 + "image_path": "G:\\images\\combined\\004844_jpg.rf.d25b9500c188ff1a63040e6f3796bf77.jpg", + "response": "A group of men working on a construction site.", + "id": 30663 }, { - "image_path": "G:\\images\\combined\\001912_jpg.rf.e78495b614b7863ff0c08c57aec905cd.jpg", - "response": "a group of men standing around a blueprint", - "id": 50 + "image_path": "G:\\images\\combined\\004845_jpg.rf.dba1f43bdd1bdb82bb9e4254a9dbc356.jpg", + "response": "A construction site with a yellow and black sign that says \u201c\u5b89\u5168\u7b2c\u4e00 \u9884\u9632\u4e3a\u4e3b\u201d in Simplified Chinese.", + "id": 30664 }, { - "image_path": "G:\\images\\combined\\001913_jpg.rf.de7cd644cf131f89a1855ba4460f28eb.jpg", - "response": "The image shows several construction workers pouring concrete for the foundation of a building. The workers are wearing yellow hard hats and are standing on the unfinished floor of the building. There is a large hose being used to pump concrete onto the floor. The workers are positioned at various points along the hose, with one person on the left, one person in the middle, and two people on the right. There is a yellow hard hat visible in the middle of the scene, and a blue tarp is visible in the background.", - "id": 51 + "image_path": "G:\\images\\combined\\004846_jpg.rf.750ca77171427e706e8cd1dd1707de27.jpg", + "response": "The image shows two workers at a shipyard. One worker is on the left, wearing a yellow hard hat and has his left hand on a hook, holding a large piece of metal that is being lowered by a crane. The other worker is on the right, wearing a white hard hat and is looking up at the first worker. They are both wearing safety vests. In the background, there is a large ship with a red exterior and white interior, with a crane lifting a large piece of metal towards the ship. The ship is sitting on land, and there is a concrete platform in front of it. The workers are surrounded by other equipment, including a large metal cylinder on the left and a metal platform on the right. The sky is blue, and there are no other people in the image.", + "id": 30665 }, { - "image_path": "G:\\images\\combined\\001914_jpg.rf.f320a3c2c658cc4650bc63b5ca3f2e0a.jpg", - "response": "A group of men in hard hats stand in a circle.", - "id": 52 + "image_path": "G:\\images\\combined\\004847_jpg.rf.177353932a9814b62f041fa7438ebb4a.jpg", + "response": "In the image there is a person wearing a yellow construction hat and a grey shirt. The person is holding a cell phone in their right hand and is covering their face with their left arm. The person is standing in an unfinished building with bare walls and a concrete floor. In the foreground, there are two small sticks planted in the ground and a white board.", + "id": 30666 }, { - "image_path": "G:\\images\\combined\\001915_jpg.rf.641a9a4fcc5843a19dbe8d92a5d25330.jpg", - "response": "A picture of some power lines with three men working on them.", - "id": 53 + "image_path": "G:\\images\\combined\\004848_jpg.rf.2bbbed7ca169712ba6d7bc0f51db29d4.jpg", + "response": "In the image two workers are building a structure. In the left side of the image a man is wearing a yellow helmet and a yellow vest. He is holding a yellow helmet in his left hand and a shovel in his right hand. He is walking up some stairs. In the right side of the image a man is wearing a yellow helmet and green gloves. He is holding a white tube in his left hand and a green tool in his right hand. He is in the process of climbing a metal structure. The workers are building a structure that is in the process of construction.", + "id": 30667 }, { - "image_path": "G:\\images\\combined\\001916_jpg.rf.b5defaa7687939501b4fb20016ebd893.jpg", - "response": "A man in a yellow hard hat stands in front of a body of water. There are large ships visible in the background.", - "id": 54 + "image_path": "G:\\images\\combined\\004849_jpg.rf.0b4205abe7e9bd732cbac5ba9b87adca.jpg", + "response": "In the foreground two workers are fixing a power line. In the background on the left a large rock and a small forest. On the right a building under construction with four large columns.", + "id": 30668 }, { - "image_path": "G:\\images\\combined\\001917_jpg.rf.5a1fbc21af1f5722fa542e0ce7c66efb.jpg", - "response": "A man wearing a yellow hard hat and blue shirt is shoveling gravel into a wheelbarrow. He is standing on a construction site and there is a large building under construction in the background. There is a yellow hard hat on the ground next to the man.", - "id": 55 + "image_path": "G:\\images\\combined\\004850_jpg.rf.e880b1caf198209f104d41b459bbbbca.jpg", + "response": "A man in a red hard hat and grey coveralls is working on a metal sheet at a construction site.", + "id": 30669 }, { - "image_path": "G:\\images\\combined\\001918_jpg.rf.3d8468eee2005ef630e47c3b3e989df6.jpg", - "response": "A man in a yellow hat and camouflage clothes is on a ladder, working on wires.", - "id": 56 + "image_path": "G:\\images\\combined\\004851_jpg.rf.23b7630b9ff1ca0acba910d3966a0bfd.jpg", + "response": "A group of people stand on the side of the road as a man in a cherry picker works on a tree.", + "id": 30670 }, { - "image_path": "G:\\images\\combined\\001919_jpg.rf.9dbf457611696ae6c4c6c2d258f4f3ea.jpg", - "response": "A few men in red suits are working on power lines.", - "id": 57 + "image_path": "G:\\images\\combined\\004852_jpg.rf.1cf472a95dd86ebf20f5fd7b8b156337.jpg", + "response": "A group of five men standing outside.", + "id": 30671 }, { - "image_path": "G:\\images\\combined\\001921_jpg.rf.afa08c4cc44a4387c5e76c638e1abb06.jpg", - "response": "A man in a white suit is holding a yellow hard hat and talking to another man in a grey suit. They are standing in front of a white SUV with mud on the tires. There is a large tarp in the background and a few trees.", - "id": 58 + "image_path": "G:\\images\\combined\\004853_jpg.rf.fd134dd47f65edc4c5522d57ffca0670.jpg", + "response": "In the image, two electrical workers are seen wearing blue and white uniforms and helmets. They are working on a large white and blue electric cabinet. One of them is holding a blue screwdriver and is fixing a part of the electric board. Another worker is seen in the left side of the image.", + "id": 30672 }, { - "image_path": "G:\\images\\combined\\001922_jpg.rf.574f72e36fa8c99dab5fc440a4358210.jpg", - "response": "A pair of workers on a scaffold outside a building.", - "id": 59 + "image_path": "G:\\images\\combined\\004855_jpg.rf.79ba4e7351494fdbc3b31292659ee332.jpg", + "response": "A man in a suit and hard hat is looking at blueprints with another man. The man in the suit is wearing a white hard hat and the man in the yellow hard hat is wearing a yellow vest. They are standing in front of a bulldozer.", + "id": 30673 }, { - "image_path": "G:\\images\\combined\\001923_jpg.rf.1e1e3bf693e038e27b883f4d245daf24.jpg", - "response": "The photo shows two workers in orange vests and orange hard hats, one on the left and one on the right, standing in a tunnel. The one on the right is holding a yellow device with a blue screen and appears to be drawing on the wall of the tunnel. The wall of the tunnel is brown and appears to be made of concrete. The left worker is looking at the wall the right worker is drawing on. The left worker is also wearing a yellow vest and can see a patch of brown hair and a white logo on the vest. The right worker is holding a pen in their right hand and a yellow device with a blue screen in their left hand.", - "id": 60 + "image_path": "G:\\images\\combined\\004856_jpg.rf.b4c2833783c58c13d572f57a89aaa53a.jpg", + "response": "A worker in a hard hat and blue coveralls is using a long tool to stir something that is on fire in a large metal container. The container is black and has two doors. The worker is on the right side of the image and is looking down at the task at hand.", + "id": 30674 }, { - "image_path": "G:\\images\\combined\\001924_jpg.rf.a6ea7f5da86154ed2b17519acfe9d745.jpg", - "response": "A man wearing a red hard hat and a white shirt is using a machine on a construction site.", - "id": 61 + "image_path": "G:\\images\\combined\\004857_jpg.rf.53d77a10dec454c539e5b61a2f398cda.jpg", + "response": " Construction workers(569,207),(683,721)(786,180),(842,414) are seen working on a construction site", + "id": 30675 }, { - "image_path": "G:\\images\\combined\\001925_jpg.rf.4e1c8f28fb52048a0bc6413ef8056b79.jpg", - "response": "A group of men standing in a room that has a wooden roof that has fallen in.", - "id": 62 + "image_path": "G:\\images\\combined\\004858_jpg.rf.2869da641606a2af9ed1bf4a2ebc6fa4.jpg", + "response": "Men(249,305),(401,759)(550,273),(690,752)(369,298),(488,711)(681,343),(808,702) walking on a dirt road", + "id": 30676 }, { - "image_path": "G:\\images\\combined\\001926_jpg.rf.d02a59bdb12f2a201f7b9ce4b98304bd.jpg", - "response": "A worker in a yellow hard hat and work clothes inspects an electricity pylon.", - "id": 63 + "image_path": "G:\\images\\combined\\004859_jpg.rf.d1dd5dd979d209f962bb7431e6d8b6b8.jpg", + "response": "The image shows two workers on a roof. They are wearing yellow hard hats and work clothes. The man on the left is sitting on the roof and is holding a drill. The man on the right is kneeling down and is holding a ladder. They are both working on a structure made of concrete.", + "id": 30677 }, { - "image_path": "G:\\images\\combined\\001927_jpg.rf.2794bedcb3c7a1266af9c6005f4126a3.jpg", - "response": "The image shows a group of men standing in front of a building under construction. They are all wearing hard hats and some of them are holding cell phones. The men are standing in a patch of dirt near the construction site. In the background, there is a partially constructed building with scaffolding in place. The building has a sign on the right side that says \"\u4e1c\u6e56\u9633\u5149\".", - "id": 64 + "image_path": "G:\\images\\combined\\004860_jpg.rf.907f348cc4a82f6a860c360fb1d25669.jpg", + "response": "A worker in a hard hat and mask is using a shovel to scrape the side of a large metal cylinder. The worker is wearing a brown uniform and is standing in a dark room. There is a large metal cylinder to the right of the worker and another one behind them. A second worker is partially visible on the left, they are holding a tool.", + "id": 30678 }, { - "image_path": "G:\\images\\combined\\001928_jpg.rf.bccb7d99d3b8935a1bb78846bf68dbab.jpg", - "response": "Two men in yellow hard hats and reflective vests standing on a construction site looking at a clipboard.", - "id": 65 + "image_path": "G:\\images\\combined\\004861_jpg.rf.4cd95608b4b7dc3d139ca6e96286d218.jpg", + "response": "a group of men working on a cement wall", + "id": 30679 }, { - "image_path": "G:\\images\\combined\\001929_jpg.rf.b1d81d5d9e70413ea032472d9c0d0947.jpg", - "response": "a group of men standing around a construction site", - "id": 66 + "image_path": "G:\\images\\combined\\004862_jpg.rf.9090e8a1ecadd7009351ae474c3ae143.jpg", + "response": "A man and a woman wearing red helmets are looking at a yellow device. The woman is wearing a white T-shirt and a red helmet. The man is also wearing a red helmet. The woman has black hair and is looking at the man. The man is wearing a white shirt with the left chest bearing the words \"\u4e2d\u56fd\u4e2d\u94c1\" and below it, the word \"\u96a7\u9053\u5c40\". The woman is wearing a white T-shirt with a black pattern on the right sleeve. The man is holding a yellow device in his hand. The woman is holding a cell phone in her hand. The background is a construction site with a rock in the upper left corner.", + "id": 30680 }, { - "image_path": "G:\\images\\combined\\001930_jpg.rf.30e2baeb7bf2d79568cbf940b2713981.jpg", - "response": "A woman in a red hard hat is walking with a man in a white shirt. They are in front of a construction site with a building under construction. There are other people walking around them. There are also trucks in the scene.", - "id": 67 + "image_path": "G:\\images\\combined\\004863_jpg.rf.9a96ec454a96e9d9c0f8e10312fd4cbf.jpg", + "response": "A couple of men working at a construction site.", + "id": 30681 }, { - "image_path": "G:\\images\\combined\\001931_jpg.rf.c8bfa6160ae64cfdeeaed2bc6bc0dc32.jpg", - "response": "A man wearing a white hard hat is standing on a ladder. He is wearing a white hard hat, a plaid shirt, and work gloves. He is holding the rungs of the ladder and looking upwards. There is a white wall behind him and scaffolding to his right.", - "id": 68 + "image_path": "G:\\images\\combined\\004864_jpg.rf.068c86545cce9bb29bfe3d9de2ec5d74.jpg", + "response": "A construction site with multiple workers and construction vehicles.", + "id": 30682 }, { - "image_path": "G:\\images\\combined\\001932_jpg.rf.81b2b3ad8a336e6ab1a331ee1a4c5498.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 69 + "image_path": "G:\\images\\combined\\004865_jpg.rf.6d03455efb079c81d3027a9d486ebda9.jpg", + "response": "A man in a yellow and blue uniform looking at a large piece of equipment.", + "id": 30683 }, { - "image_path": "G:\\images\\combined\\001933_jpg.rf.512531ea62736fc297d7d48d6ec917f0.jpg", - "response": "A man in a red hat and blue jacket is on a metal structure, possibly a power tower. He is wearing climbing gear and appears to be in the process of climbing. Another man is visible at the bottom of the structure, holding a rope. The sky is clear and blue.", - "id": 70 + "image_path": "G:\\images\\combined\\004866_jpg.rf.1eefc656823710ddd7e06ab005268d23.jpg", + "response": "In the image, a worker is standing in a dark tunnel with a large yellow machine with wheels in the background. The worker is wearing a yellow helmet and orange vest. The worker is also holding a shovel. In the foreground, there is a pile of rubble on the right side of the image. The photo is credited to China News Service.", + "id": 30684 }, { - "image_path": "G:\\images\\combined\\001937_jpg.rf.07022334dbaff18071c0e9a1f726d3ca.jpg", - "response": "A worker in a white shirt and orange hard hat crouches down to work on an electrical meter.", - "id": 71 + "image_path": "G:\\images\\combined\\004867_jpg.rf.ac0a820c1f89e781be23b3cb7e436505.jpg", + "response": "A man and a woman in business attire are standing in front of a man in a grey suit and a man in a black suit. They are standing in front of a mountain and a village that has been destroyed. There are piles of grey rocks and a pile of grey gravel. There is a black SUV parked on the left side of the image and a white truck parked on the right side of the image.", + "id": 30685 }, { - "image_path": "G:\\images\\combined\\001938_jpg.rf.11e6746c06c112c71cd28ae2acd7afa8.jpg", - "response": "A group of men standing in front of a yellow and orange construction site.", - "id": 72 + "image_path": "G:\\images\\combined\\004868_jpg.rf.96412258077a5e7a31748503e0bac92e.jpg", + "response": "A construction site with a few people working. There is a large red metal structure in the middle of the site and a few people are working under it. Some of them are wearing hard hats. In the background, there is a blue metal structure and a few cranes. The ground is wet and there are several cables and rebar scattered around.", + "id": 30686 }, { - "image_path": "G:\\images\\combined\\001939_jpg.rf.6f29e5cf2052f17221c9e4b2dfa775f0.jpg", - "response": "Three men in high visibility vests and hard hats are standing in front of a wall. They are smiling at the camera. The man on the left is holding a clipboard.", - "id": 73 + "image_path": "G:\\images\\combined\\004869_jpg.rf.3ab8031e8aed92e7248afa9acbb5f259.jpg", + "response": "A group of three men in orange hats and blue overalls are painting the inside of a house. They are each holding a pole with a brush on the end. One man is painting the ceiling, one man is painting the wall, and one man is painting the window frame.", + "id": 30687 }, { - "image_path": "G:\\images\\combined\\001940ecf2a6f9eb.jpg", - "response": "The book cover for \"The Return of eva peron\" by V.S. Naipaul.", - "id": 74 + "image_path": "G:\\images\\combined\\004870_jpg.rf.877c19b93d7a8bd8beebf1b28dd355ee.jpg", + "response": "A photo of Kim Jong-un, leader of North Korea, talking to a group of men in front of a building under construction. They are standing in front of a large building with a banner in the background. The men are wearing suits and the photo is taken from the front.", + "id": 30688 }, { - "image_path": "G:\\images\\combined\\001940_jpg.rf.81ad0dd6e8cd76cf7efe7a05387d0730.jpg", - "response": "A group of three men in blue hard hats are working on a large white box. The men are in the process of fixing a power line.", - "id": 75 + "image_path": "G:\\images\\combined\\004871_jpg.rf.f1a8bf930ea10d26f8c658ae15d6dd6c.jpg", + "response": "A man in a blue shirt and yellow hat working on a piece of wood.", + "id": 30689 }, { - "image_path": "G:\\images\\combined\\001941_jpg.rf.52d4de0a6f5fc452a92959e71e10bbaa.jpg", - "response": "A group of three men working on a bridge together.", - "id": 76 + "image_path": "G:\\images\\combined\\004872_jpg.rf.d33491258af2de83d874e78d69a83636.jpg", + "response": "A man in a shirt and tie talking to a man in a hard hat and safety glasses.", + "id": 30690 }, { - "image_path": "G:\\images\\combined\\001942_jpg.rf.1ce0af64832e2304a00d6bec3d0e1625.jpg", - "response": "In the image there is a construction site with multiple workers. There are at least four workers, with one worker in the foreground who is a construction worker wearing a yellow helmet and an orange safety vest with a white shirt and blue pants. The worker is fixing some steel bars. Above the worker, there are at least three other workers, one on the left wearing a green shirt and yellow helmet, one in the center wearing a yellow helmet and blue clothes, and one on the right wearing a blue shirt and a yellow helmet. In the background, there are\u81f3\u5c11 two more workers, one on the far left wearing a green shirt and yellow helmet, and one on the far right wearing a white shirt and a yellow helmet.", - "id": 77 + "image_path": "G:\\images\\combined\\004873_jpg.rf.e9bbc51cf54e3672ac57baf0b5cf439d.jpg", + "response": "A woman in a blue shirt is talking on a cell phone. She is smiling and holding a blueprint. In the background, there are two men wearing orange vests and hard hats. One of the men is looking at a white car. There is also a building under construction with a white roof.", + "id": 30691 }, { - "image_path": "G:\\images\\combined\\001944_jpg.rf.9c8e2c910cacad289010ba1940c938a1.jpg", - "response": "A man wearing a yellow high vis vest and a blue hard hat is standing next to a large wooden beam. He is smiling at the camera.", - "id": 78 + "image_path": "G:\\images\\combined\\004874_jpg.rf.fb6035aa1c172990a1c50d690224bf52.jpg", + "response": "The image shows a group of construction workers working on a project in a tunnel. They are wearing hard hats and work clothes. The workers are standing in a large pit, surrounded by wooden posts. Some of the workers are using shovels and other tools to complete the project.", + "id": 30692 }, { - "image_path": "G:\\images\\combined\\001945_jpg.rf.258cbbd59db6e8b79864d7a3acbed334.jpg", - "response": "A group of three men dressed in yellow vests and hard hats are looking at a blueprint. They are standing in front of a construction site.", - "id": 79 + "image_path": "G:\\images\\combined\\004875_jpg.rf.de2237945a6cfcab43379f3c5fe14374.jpg", + "response": "In the image there is a woman standing in a mechanical room wearing a yellow hard hat and holding a clipboard. She is wearing a red and black flannel shirt and a yellow tool belt. She is checking pipes and looking at a clipboard.", + "id": 30693 }, { - "image_path": "G:\\images\\combined\\001946_jpg.rf.4b33fc4f8087ea45806fabfbaf526d64.jpg", - "response": "A man in a white hard hat is holding a cell phone to his ear.", - "id": 80 + "image_path": "G:\\images\\combined\\004876_jpg.rf.20eaab036c2919f20e797b831bc01164.jpg", + "response": "The image shows two workers in yellow hard hats on a construction site. They are standing in a lift, working on a power line. The power line is attached to a yellow pole.", + "id": 30694 }, { - "image_path": "G:\\images\\combined\\001947_jpg.rf.587c6a1e741f5c0785eef779b546ac58.jpg", - "response": "A construction worker showing a tablet to another worker.", - "id": 81 + "image_path": "G:\\images\\combined\\004877_jpg.rf.d94ac03f7b4dac804ff1472f9eb5d38f.jpg", + "response": "A man fixing another mans hard hat.", + "id": 30695 }, { - "image_path": "G:\\images\\combined\\001948_jpg.rf.086f698a84bb90b4ccf53493f3a5885b.jpg", - "response": "The image shows a large tunnel under construction. The tunnel is circular and has a blue steel frame supporting it. The tunnel is surrounded by scaffolding. In front of the tunnel, three workers are standing. On the left, a worker is holding a large white bowl. On the right, two other workers are standing, one wearing an orange jumpsuit and a yellow hard hat, and the other wearing a red jumpsuit. The background shows that the sky is clear.", - "id": 82 + "image_path": "G:\\images\\combined\\004878_jpg.rf.038ba510ea768af22b3c2ccfb29aa837.jpg", + "response": "The image shows a construction site with two workers standing in the foreground. The workers are wearing hard hats and are looking in the same direction. In the background, there are several other people scattered around the site. There are two cranes operating in the far background. The sky is overcast.", + "id": 30696 }, { - "image_path": "G:\\images\\combined\\001949358c06aeb2.jpg", - "response": "In the image, a man is in the process of throwing a volleyball into a basketball hoop. He is wearing a jersey that says \"PAC U\" on it and the number 15. The man is standing on a basketball court, and there is a group of people watching him from the side. Some of them are sitting on a low wall. The wall is made of concrete, and there is a basketball net hanging from the ceiling. The sky is dark, and there is a light shining on the wall.", - "id": 83 + "image_path": "G:\\images\\combined\\004879_jpg.rf.c8d7bea0f127356d70ef48e3415aa176.jpg", + "response": "A group of workers carry an injured comrade away from the construction site.", + "id": 30697 }, { - "image_path": "G:\\images\\combined\\00194949204a98ef.jpg", - "response": "A wall with pictures and signs on it.", - "id": 84 + "image_path": "G:\\images\\combined\\004880_jpg.rf.3b21fae1d859bc14b7399b9a1b9bf839.jpg", + "response": "The image shows two construction workers on a building site. They are both wearing yellow hard hats and holding a sign that says 'Rabbits get 2 weeks off, we get 1 month'. The sign is held in front of them and they are both smiling. They are standing in front of a large construction site with several tall buildings under construction.", + "id": 30698 }, { - "image_path": "G:\\images\\combined\\001949_jpg.rf.b5bb8139382c5c02131b0706cb39a527.jpg", - "response": "The image shows three men standing in a large underground tunnel. They are all dressed in orange work clothes. The middle man is holding a white box with a red heart on it and the words \"\u7231\u5fc3\u836f\u7bb1\" (love heart first aid box) written on it. The man on the left is handing the box to the man on the right.", - "id": 85 + "image_path": "G:\\images\\combined\\004882_jpg.rf.0c52bdda64eeab418a945af3985c6963.jpg", + "response": "The image shows four construction workers on a building site. They are all wearing white hard hats and two of them are wearing green and brown camouflage shirts. The three workers standing on the left are all holding grey pipes while the worker on the right is holding an orange tool. They are all working on a large area of concrete with many metal bars.", + "id": 30699 }, { - "image_path": "G:\\images\\combined\\001950_jpg.rf.0c3313e06f611ce271eb4461a5608865.jpg", - "response": "The image shows a group of rescue workers in orange jumpsuits and yellow helmets standing on a hillside at the edge of a pit. They are using tools and equipment, including what appears to be a long blue pipe, to search for a missing person. The workers are spread out across the scene, with some closer to the pit and others further away. The hillside is rocky and covered in dirt, and there is a large patch of dirt to the right of the workers. The photo was taken by a website called\u91d1\u534e\u65b0\u95fb\u7f51.", - "id": 86 + "image_path": "G:\\images\\combined\\004883_jpg.rf.84da924ebd3d77f06b8095a3410cd333.jpg", + "response": "A man wearing a yellow hard hat and yellow vest standing in front of a yellow Caterpillar tractor with a white cab at a construction site.", + "id": 30700 }, { - "image_path": "G:\\images\\combined\\001951_jpg.rf.4e76d78a9c9803e363a43ef7ca72f852.jpg", - "response": "A man and woman wearing hard hats and holding a set of plans at a construction site.", - "id": 87 + "image_path": "G:\\images\\combined\\004884_jpg.rf.e9061a9d45e02d1bdf049991889cf666.jpg", + "response": "A group of workers are working on a building.", + "id": 30701 }, { - "image_path": "G:\\images\\combined\\001952_jpg.rf.5d33fa4baf2a99b5b479c084cad06688.jpg", - "response": "A power line technician wearing a blue uniform and a blue hat is working on a power line.", - "id": 88 + "image_path": "G:\\images\\combined\\004885_jpg.rf.0513c5ee468c3ff078470207faa258b9.jpg", + "response": "A group of firefighters huddle around a fire hose and spray water from a fire extinguisher at a construction site.", + "id": 30702 }, { - "image_path": "G:\\images\\combined\\001954_jpg.rf.ef8455473837609506a5974c0db7f8ce.jpg", - "response": "The image shows a group of people walking and talking on a sidewalk. They are all dressed in black, and some of them are carrying backpacks. The people in the front are men, and behind them are more people. The wall on the left side of the image has several posters on it. The closest one at the top reads \"\u521b\u65b0\u7fa4\u4f17\u5de5\u4f5c\u65b9\u6cd5\", and the one next to it reads \"\u4f9d\u6cd5\u5316\u89e3\u793e\u4f1a\u77db\u76fe\". In the background, there are several tall buildings under construction.", - "id": 89 + "image_path": "G:\\images\\combined\\004886_jpg.rf.fc140f0413c5d45b9056674163401f82.jpg", + "response": "The image shows two rescue workers in orange snow suits and blue hard hats hiking up a snowy trail. They are carrying snow tools and walking through the woods. The trail is covered in a light snow and the trees on either side are covered in snow as well.", + "id": 30703 }, { - "image_path": "G:\\images\\combined\\001955_jpg.rf.f6519f6cc519cc00e70fee5951cb692e.jpg", - "response": "a group of men wearing hard hats", - "id": 90 + "image_path": "G:\\images\\combined\\004887_jpg.rf.3793c891b07f5062b816eae287e72a30.jpg", + "response": "The image shows a group of people standing inside a large tunnel. The tunnel is made of concrete and has a curved ceiling. The group consists of between 6 and 9 people, most of them wearing white hard hats. Some of the people are also wearing red hard hats. One person on the right is wearing a blue hard hat. The people are standing on a concrete platform that runs along the left wall of the tunnel.", + "id": 30704 }, { - "image_path": "G:\\images\\combined\\001956_jpg.rf.05778a74d44ad4db318dea97df84ee2d.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is holding a rolled up paper and showing it to another worker. Both are standing in front of a building under construction.", - "id": 91 + "image_path": "G:\\images\\combined\\004888_jpg.rf.1dabd85eea09a731fbeddb2337293556.jpg", + "response": "The image shows a construction site with several workers. There is a large pile of grey gravel on the left side of the image. In the center of the image, there is a man in a white hard hat and black jacket using a tool to pour concrete onto a grid of metal rebar. Another man in a yellow hard hat and brown jacket is holding a hose, and a man in a blue jacket is pouring concrete from a bucket. A man in a white hard hat is on the far right of the image, and another man in a black jacket is on the far left.", + "id": 30705 }, { - "image_path": "G:\\images\\combined\\001957_jpg.rf.42406af1f27ba59a4c64368bfa5b36d9.jpg", - "response": "A group of men standing in a room with one of them holding a flashlight.", - "id": 92 + "image_path": "G:\\images\\combined\\004891_jpg.rf.4e020ca0d70767680aa74bc47878d2c3.jpg", + "response": "A couple of workers in orange jumpsuits and hard hats are working on a large metal pipe. One of the workers is using a large wrench on the pipe while the other is cutting the pipe with a saw. There are some cut pieces of the pipe lying on the ground.", + "id": 30706 }, { - "image_path": "G:\\images\\combined\\001959_jpg.rf.5822df6d5bb8b420590647cb98e3a3da.jpg", - "response": "A man wearing a hard hat and holding a large wire on a sunny day.", - "id": 93 + "image_path": "G:\\images\\combined\\004892_jpg.rf.1ca4cd05ac0f2d1bcb509e206128fda0.jpg", + "response": "A group of men walking across a dirt field.", + "id": 30707 }, { - "image_path": "G:\\images\\combined\\001960_jpg.rf.7bcc2ac8eb95cec7b1862ca376ebd2b8.jpg", - "response": "A female construction worker in a pink helmet is showing something to a male construction worker in white helmet. They are both dressed in white and blue.", - "id": 94 + "image_path": "G:\\images\\combined\\004894_jpg.rf.fbdb173fb2f295f5d742c47ae1c3ac51.jpg", + "response": "The image shows a group of people standing in a parking lot next to a building. They are all wearing hard hats. In the foreground on the left, there is a man who is talking to another man. To the right of the first man, there is a man holding a briefcase. Further to the right, there is a woman wearing a dress and a hard hat. In the background, there is a building with a sign that says \"China\". There is also a mountain in the background.", + "id": 30708 }, { - "image_path": "G:\\images\\combined\\001961_jpg.rf.c728e4ba57955c9d17c20081793e5e67.jpg", - "response": "A construction site with a few men in hard hats walking through it.", - "id": 95 + "image_path": "G:\\images\\combined\\004895_jpg.rf.25b67281663cb4d94048848f059f7f9e.jpg", + "response": "In the image there is a person wearing a blue uniform and a yellow hard hat. They are sitting on a red metal scaffold and holding a clear plastic bottle. The person are drinking from the bottle. There are several rungs of a metal ladder around the person and the background is white.", + "id": 30709 }, { - "image_path": "G:\\images\\combined\\001962_jpg.rf.86a446f9fa7d0aea7022992a7d079fa3.jpg", - "response": "A group of men standing around a pile of bricks.", - "id": 96 + "image_path": "G:\\images\\combined\\004896_jpg.rf.5ac13826aa2450e3359f706315796cda.jpg", + "response": "a person in a red shirt and white helmet is holding a red valve and turning it. there is a red valve with a sign on it that says '\u4e39\u9633' and a white crane behind the person", + "id": 30710 }, { - "image_path": "G:\\images\\combined\\001963_jpg.rf.b86c92d4623874ecb8f6a7a101f67451.jpg", - "response": "A railway worker points at the train tracks.", - "id": 97 + "image_path": "G:\\images\\combined\\004897_jpg.rf.ffa1bdefa2078ab44510e1c6d42d44cf.jpg", + "response": "\u96a7\u9053\u5185\u7684\u5de5\u4eba\u7a7f\u7740\u5b89\u5168\u88c5\u5907\uff0c\u5934\u6234\u9ec4\u8272\u5b89\u5168\u5e3d\uff0c\u80a9\u4e0a\u625b\u7740\u4e00\u628a\u5927\u9524\uff0c\u96a7\u9053\u5185\u58c1\u6709\u6df7\u51dd\u571f\u548c\u91d1\u5c5e\u7ba1\uff0c\u5de5\u4eba\u9762\u5e26\u5fae\u7b11\u7684\u770b\u7740\u955c\u5934\u3002", + "id": 30711 }, { - "image_path": "G:\\images\\combined\\001964_jpg.rf.dbee48ae4fee56c4bb81c1a43821b926.jpg", - "response": "a group of men standing around a construction site", - "id": 98 + "image_path": "G:\\images\\combined\\004898_jpg.rf.c6c0b792e3e68499962ad13ffb5e2790.jpg", + "response": "4 men(577,236),(738,914)(207,53),(556,955)(667,105),(995,877) in green uniforms(208,186),(555,952)(668,258),(996,878) and blue helmets(779,104),(902,283)(401,53),(521,218)(603,237),(693,421) working on a pipe", + "id": 30712 }, { - "image_path": "G:\\images\\combined\\001965_jpg.rf.096278c0f995607763bba91342203949.jpg", - "response": "A construction worker wearing a yellow vest and red helmet.", - "id": 99 + "image_path": "G:\\images\\combined\\004899_jpg.rf.eac87810b8b7dd69978fe66315ab0b79.jpg", + "response": "a group of men walking across a muddy field", + "id": 30713 }, { - "image_path": "G:\\images\\combined\\001966_jpg.rf.5599a9abe6ba342264b3bfd8b3f382d4.jpg", - "response": "A group of people working on a construction site.", - "id": 100 + "image_path": "G:\\images\\combined\\0048ed25da02e036.jpg", + "response": "A Goodyear sign is shown in front of a cloudy sky.", + "id": 30714 }, { - "image_path": "G:\\images\\combined\\001967_jpg.rf.1ac4f814bdb8a71cefe5ae935d748b71.jpg", - "response": "A man is working on a power line in the mountains.", - "id": 101 + "image_path": "G:\\images\\combined\\004900_jpg.rf.72ce85df06b49211856cea77f1879b42.jpg", + "response": "The photo shows a group of people working in a tunnel. They are wearing hard hats and some are pushing wheelbarrows filled with sand. There are also some ladders and other construction equipment in the tunnel. The walls of the tunnel are concrete and it appears to be an unfinished construction project.", + "id": 30715 }, { - "image_path": "G:\\images\\combined\\001968_jpg.rf.79ba438ac2f55dafd2abd7bf3340a459.jpg", - "response": "The image shows six men standing in a line in front of a construction site. All of them are wearing suits except for one who is wearing a blue jacket. The men are all of Asian descent.", - "id": 102 + "image_path": "G:\\images\\combined\\004901_jpg.rf.a5520caeac6bab9b3e205dcacf44929d.jpg", + "response": "A group of men standing on a dirt road.", + "id": 30716 }, { - "image_path": "G:\\images\\combined\\001969_jpg.rf.c12d66da222b0a0d27ddeb6ed13da442.jpg", - "response": "A man in a yellow hard hat is on a lift working on power lines.", - "id": 103 + "image_path": "G:\\images\\combined\\004902_jpg.rf.85a6bf252ca1f4fce67b9dc24d7f2492.jpg", + "response": "a group of people standing around a map", + "id": 30717 }, { - "image_path": "G:\\images\\combined\\001971_jpg.rf.7f3999bbedf91e780f68165fffeac638.jpg", - "response": "a group of people standing in a room that is under construction", - "id": 104 + "image_path": "G:\\images\\combined\\004904_jpg.rf.1a0d708bac06109c61fb395255e50137.jpg", + "response": "a group of people walking across a dirt field", + "id": 30718 }, { - "image_path": "G:\\images\\combined\\001973_jpg.rf.882d42da40a740a8ae3f3d6b86136dd7.jpg", - "response": "a group of people standing in front of a bus", - "id": 105 + "image_path": "G:\\images\\combined\\004905_jpg.rf.e05223946e50b37957818a3c42d82845.jpg", + "response": "A man in a blue jumpsuit and orange hard hat is working at a factory. He is standing at a large metal machine with a red wall behind him and a control panel to his right. The man is wearing gloves and is making adjustments to the metal machine.", + "id": 30719 }, { - "image_path": "G:\\images\\combined\\001974_jpg.rf.871f6f300ca977b5f4474a4d079c160f.jpg", - "response": "The image shows three workers in blue jumpers and red helmets on a ladder and a step ladder, repairing a power pole with many wires, in front of a white building.", - "id": 106 + "image_path": "G:\\images\\combined\\004906_jpg.rf.4575a52844481dfcbbef10fc4533c0f6.jpg", + "response": "A worker wearing a white hat and a blue shirt is on a scaffolding. The scaffolding is made of orange metal tubes and it is located in front of a building. The worker is wearing grey pants and a white hat. He is using a tool that looks like a blow torch with a long black hose. There are several other workers in the image, but this one is the main focus.", + "id": 30720 }, { - "image_path": "G:\\images\\combined\\001975_jpg.rf.25fa15b87181587e98cbe630889bf1d8.jpg", - "response": "A man in a yellow hard hat standing on a brick wall.", - "id": 107 + "image_path": "G:\\images\\combined\\004908_jpg.rf.1a5761645d7f5a174b42276efbe6fd57.jpg", + "response": "The image shows a group of men in blue work clothes and yellow hard hats, some with their sleeves rolled up, working on a sidewalk at night. They are using a long rope and a metal pole.", + "id": 30721 }, { - "image_path": "G:\\images\\combined\\001976_jpg.rf.fbea416755dd1763ce0228593285e409.jpg", - "response": "A construction worker wearing a yellow hard hat is standing on a tall ladder. The worker is wearing a yellow vest and grey pants. They are standing on a tall ladder with a blue sky in the background. There are some pipes in the foreground.", - "id": 108 + "image_path": "G:\\images\\combined\\004909_jpg.rf.e384cbb933c275fc75a6bedc5025e055.jpg", + "response": "A man in a red hard hat is sitting in a control room.", + "id": 30722 }, { - "image_path": "G:\\images\\combined\\001977_jpg.rf.b8275b55ad5fcfc1ca96e6bc62048302.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing hard hats and work clothes. One man is pointing towards a unfinished building in the background.", - "id": 109 + "image_path": "G:\\images\\combined\\00490f30dfd43495.jpg", + "response": "A Babylon police car is parked on the street.", + "id": 30723 }, { - "image_path": "G:\\images\\combined\\001978_jpg.rf.3757849eda4ff4df985d9fda59697f5b.jpg", - "response": "The image shows a group of people, most of them wearing yellow hard hats. There are at least five people in the group, with one person on the far left and another person to their right, who is wearing a yellow hard hat and a brown towel around their neck. Another person is standing in the middle of the group, wearing a red hard hat. There is a girl on the far left who is handing a piece of paper to the person wearing the yellow hard hat. The background shows a yellow building with red lettering.", - "id": 110 + "image_path": "G:\\images\\combined\\004910_jpg.rf.66251dc77c0471c8638f6b02838df8f1.jpg", + "response": "In the image, a construction worker is working on a construction site. The worker is crouched down and is wearing a red hard hat. The sky is blue and there are no clouds in the sky.", + "id": 30724 }, { - "image_path": "G:\\images\\combined\\001979_jpg.rf.594d7a4f34501ee61c48fdf011b8b891.jpg", - "response": "The image shows three men walking together in a courtyard. The man on the left is holding a black briefcase and a red hard hat. The man in the center is also wearing a red hard hat. The man on the right is wearing a tan jacket over a black shirt and pants and is carrying a black folder. In the background, there is a building under construction with several tall green construction towers and a red roof. There is also a blue fence in the middle of the courtyard.", - "id": 111 + "image_path": "G:\\images\\combined\\004911_jpg.rf.42655d4dd11b4b5aaf096706c9b927e3.jpg", + "response": "A group of people working on a construction site.", + "id": 30725 }, { - "image_path": "G:\\images\\combined\\001980_jpg.rf.ae95941eba98e08c891389bdd6fdf035.jpg", - "response": "A construction worker in a yellow hard hat crouches down next to a large circular object. The worker is wearing a grey shirt and grey pants. They are working on a grid of metal rebar.", - "id": 112 + "image_path": "G:\\images\\combined\\004912_jpg.rf.5e084ae919ae6a26bd96e24821340988.jpg", + "response": "a group of people wearing red hats(359,216),(467,332)(132,213),(243,326)(474,282),(547,368)(683,307),(738,367)(594,303),(648,361)", + "id": 30726 }, { - "image_path": "G:\\images\\combined\\001981_jpg.rf.d568b72b3c62910ac50ef60bb119c30d.jpg", - "response": " Two men(206,350),(446,996)(457,350),(654,997) standing in front of a crane(399,2),(738,628)", - "id": 113 + "image_path": "G:\\images\\combined\\004914_jpg.rf.f2ba50c890ddc962bfc47c28190f2274.jpg", + "response": "A worker is repairing a power pole in the image. He is wearing a white helmet and grey clothes. He is standing on the grey pole with his left hand on the red hook and his right hand holding tools. There are many wires in front of him and behind him. To his right is a black power transformer and a white wire. To his left is a black insulator. Below him is a black insulator and a wire. The sky is white in the background.", + "id": 30727 }, { - "image_path": "G:\\images\\combined\\001982_jpg.rf.a465fd6d0814d59d36060d97214cac70.jpg", - "response": "A man wearing a white jumpsuit and a hard hat is sitting on scaffolding. He is wearing work boots and holding a drill.", - "id": 114 + "image_path": "G:\\images\\combined\\004915_jpg.rf.630539b1796466340fa504a7d9461eb1.jpg", + "response": "The image shows a group of people standing on a construction site. They are all wearing hard hats, and some of them are wearing red ones. There is a man in the center who is wearing a white shirt and a red hard hat. Another man is wearing a blue shirt and a red hard hat. The people are standing around and talking. There is a pile of wood in the foreground on the left side of the image. In the background, there is a building under construction with scaffolding around it. There is also a yellow crane in the background.", + "id": 30728 }, { - "image_path": "G:\\images\\combined\\001983_jpg.rf.a8792e3887a32f6a5320e1c5364a3d08.jpg", - "response": "A man in a yellow hard hat is kneeling on a construction site. He is wearing a black shirt and grey pants. He is holding a hammer in his right hand. There are many wooden planks around him. To his right, there is a yellow tower crane.", - "id": 115 + "image_path": "G:\\images\\combined\\004916_jpg.rf.8f2f151e11d57c362f450e0880f0fbf6.jpg", + "response": "The image shows a group of workers on a ladder. They are working on a large metal structure that resembles a bridge or a walkway. The structure is made of metal poles and appears to be supported by some wooden pillars. The workers are wearing yellow helmets and uniforms. The sky is blue with some clouds.", + "id": 30729 }, { - "image_path": "G:\\images\\combined\\001984_jpg.rf.b273595bc6524cfb490444c6d9f7e9f8.jpg", - "response": "A group of men working on a construction site.", - "id": 116 + "image_path": "G:\\images\\combined\\004919_jpg.rf.90581d7fcb583eb71e9054980bb9967d.jpg", + "response": "In the image there are two people crouched down looking at a white radiator. The man in front of the radiator is wearing a brown shirt and has black hair. The man behind the first man is wearing a blue shirt and has short dark hair. They are both looking at the radiator and the man in front has his left hand on the white radiator while his right hand is holding a red and grey box. There are two pipes coming out of the top of the radiator.", + "id": 30730 }, { - "image_path": "G:\\images\\combined\\001985_jpg.rf.7d9ae7ec88158e1b3b70db4d43ff41f2.jpg", - "response": "A man wearing a blue shirt and a white hat is using a device on a tripod at a construction site.", - "id": 117 + "image_path": "G:\\images\\combined\\004920_jpg.rf.d6a79cb02bb08f9fc984865c233edd96.jpg", + "response": "A group of men in business suits stand in a construction site. They are looking at a large pit in the ground. There is a pile of bricks to the left of the pit. The men are standing on dirt. In the background there is a body of water.", + "id": 30731 }, { - "image_path": "G:\\images\\combined\\001986_jpg.rf.a6f2230c2903ce17bf8c0f4c7d94871f.jpg", - "response": "a group of men wearing hard hats", - "id": 118 + "image_path": "G:\\images\\combined\\004921_jpg.rf.70b26d9bd5c480b2cb516cc6c77617fd.jpg", + "response": "The image shows a group of men standing on a construction site. They are all wearing winter coats and some of them are wearing hard hats. In the background, there are a few buildings under construction and a few cars parked nearby. The sky is blue and there are a few clouds. In the middle of the construction site, there is a bulldozer working.", + "id": 30732 }, { - "image_path": "G:\\images\\combined\\001987_jpg.rf.5a84c29028f60bb2c114fcd82a4553b5.jpg", - "response": "A group of men standing next to each other wearing business attire and hard hats.", - "id": 119 + "image_path": "G:\\images\\combined\\004922_jpg.rf.c1584f9239bacfeeaaab9b6b42121e7a.jpg", + "response": "A group of workers in grey jumpsuits and blue safety helmets are up on a ladder, working on a power line. One of the workers is holding a camera and appears to be filming the others. They are wearing safety gear and are up against a tall building.", + "id": 30733 }, { - "image_path": "G:\\images\\combined\\001988_jpg.rf.203e8aeb17a8e6f4a7d5b2acb8b0277d.jpg", - "response": "A group of workers are standing on scaffolding.", - "id": 120 + "image_path": "G:\\images\\combined\\004923_jpg.rf.b44dce750d08c1e15620842c53716f15.jpg", + "response": "A construction site with several men working on it. There are several pieces of wood and steel rods scattered around the area. In the background, there are mountains and a white sky.", + "id": 30734 }, { - "image_path": "G:\\images\\combined\\001989_jpg.rf.bf1159d0cfeddbf57557d64cce59bcf1.jpg", - "response": "\u9879\u76ee\u7ecf\u7406\u674e\u6587\u5fe0(288,63),(719,997)\u5728\u67e5\u770b\u65bd\u5de5\u8d28\u91cf", - "id": 121 + "image_path": "G:\\images\\combined\\004924_jpg.rf.5002cfd8afb225a6c63b624166e5bcb6.jpg", + "response": "a group of people walking in front of a building that is being demolished", + "id": 30735 }, { - "image_path": "G:\\images\\combined\\001990_jpg.rf.d1e7c1afbb72f60388a435c6bc7a058f.jpg", - "response": "The image shows a tunnel with a dump truck inside. The tunnel is circular and has a concrete wall. The dump truck is parked at the center of the tunnel and is unloading concrete. The dump truck has a bright light shining on it. There is a person wearing a red hard hat standing in the bottom right corner of the image.", - "id": 122 + "image_path": "G:\\images\\combined\\004925_jpg.rf.396b8bb08d98ffef65698c87cc29410d.jpg", + "response": "In the image there are two men standing on a platform. Both men are wearing work clothes and safety gear which includes hard hats, reflective vests, and gloves. The man on the left is pointing towards the top of a white and blue structure. The man on the right is looking at the camera.", + "id": 30736 }, { - "image_path": "G:\\images\\combined\\001991_jpg.rf.2bb748c3bf56843ac8cf5ddf610c7286.jpg", - "response": "The image shows two workers in white and blue uniforms, with one of them wearing a tool belt, installing a power line. They are standing on a large grey pole with the number 51 on it, and there is a large white sign with red Chinese characters behind them. The sky is overcast and there are many power lines in the air.", - "id": 123 + "image_path": "G:\\images\\combined\\004928_jpg.rf.a7d187103ef6302c540087f263b832a1.jpg", + "response": "A group of people working on a construction site.", + "id": 30737 }, { - "image_path": "G:\\images\\combined\\001992_jpg.rf.c5c3e6cda9f9c3366d10f8f746f2036c.jpg", - "response": "A man wearing a yellow hard hat and measuring a wooden floor.", - "id": 124 + "image_path": "G:\\images\\combined\\004929_jpg.rf.d3655f4e7f0667054c30127cd81e480d.jpg", + "response": "A couple of men are working on power lines.", + "id": 30738 }, { - "image_path": "G:\\images\\combined\\001993_jpg.rf.40c0c6d6bfc7f442a020fcb106a2498e.jpg", - "response": "A group of people standing on top of a building site wearing hard hats.", - "id": 125 + "image_path": "G:\\images\\combined\\004930_jpg.rf.7de2b8186d500af4550e3526f94adb9d.jpg", + "response": "In the image there are two workers in a factory. They are both wearing yellow safety vests and helmets. One worker is on the left and is bending over to look at a blue and silver machine. The other worker is on the right and is looking at a red and white machine. There are several pipes and cables in the scene. One worker is also holding a helmet in their left hand.", + "id": 30739 }, { - "image_path": "G:\\images\\combined\\001994_jpg.rf.a0f3569ddf91d10e0ad256d7b8e9139b.jpg", - "response": "A man in a uniform is working on a power line attached to a tall pole.", - "id": 126 + "image_path": "G:\\images\\combined\\004931_jpg.rf.e42fb13193404db4ebe40e5dfbb869bb.jpg", + "response": "The image shows two workers from the left who are using a pickaxe to cut a tree. The tree is covered with white frost. The workers are in a mountainous area with snow on the ground. They are both dressed in blue work clothes and yellow helmets.", + "id": 30740 }, { - "image_path": "G:\\images\\combined\\001995_jpg.rf.1a4e894114de11764c5808f38141850a.jpg", - "response": "A couple of men in white jumpsuits are working on a power line.", - "id": 127 + "image_path": "G:\\images\\combined\\004932_jpg.rf.ff40905f09fa1be41f41f9f1e2ad281c.jpg", + "response": "In the image there are several construction workers working on a house. They are digging a hole in the ground and one man is using a tool to dig. The house has a white exterior and is in the process of being renovated. The workers are wearing hard hats and there is a yellow one, a red one, and a blue one. The date of the picture is 2013/04/13 and it was taken at 05:12.", + "id": 30741 }, { - "image_path": "G:\\images\\combined\\001996_jpg.rf.5de8c2f1daf34927595f5c5cd103f951.jpg", - "response": "A group of men in hard hats.", - "id": 128 + "image_path": "G:\\images\\combined\\004935_jpg.rf.6fd3c4bef2775658fc8db24cca1fc43c.jpg", + "response": "The image shows two workers wearing yellow and red helmets who are walking away from the camera. They are carrying a piece of equipment on a trolley, and there is a building in the background. The ground is covered with a green net, and there are several lines on the ground.", + "id": 30742 }, { - "image_path": "G:\\images\\combined\\001997_jpg.rf.81b4ce223e6b4185a56096f2d3baf7ab.jpg", - "response": "In the image there are two workers wearing blue hard hats and white pants. They are both on a ladder working on a power pole. The pole is made of wood and has many wires and electrical components attached to it. There are also many other power poles in the background.", - "id": 129 + "image_path": "G:\\images\\combined\\004936_jpg.rf.cd6f622eb5cfbc746d0272d9a2d31ec2.jpg", + "response": "In the image there are two workers wearing green and yellow hard hats. They are building a round structure made of metal rods. The sky is blue and there are a few clouds.", + "id": 30743 }, { - "image_path": "G:\\images\\combined\\001999_jpg.rf.b7348e2409f5d5ffc2e85740370f06aa.jpg", - "response": "A man in a yellow hard hat kneeling on the ground looking at a set of plans. He is wearing a grey shirt, brown pants with a tool belt and black boots. There are wooden beams around him and a table with various items on it in the background.", - "id": 130 + "image_path": "G:\\images\\combined\\004937_jpg.rf.355a7df44edf58e24a65ecc82d4d1c20.jpg", + "response": "The image shows a construction site in a city. Several workers are working on a large construction project, building a new road. The workers are wearing yellow hats and uniforms. The city has many tall buildings around the construction site. A part of a billboard advertising a car is also visible.", + "id": 30744 }, { - "image_path": "G:\\images\\combined\\0019b1bd14387254.jpg", - "response": "A man wearing a black and white sweater is standing in front of a poster. The poster is titled \"The Role of Social Categorization Processing of Own- and Other-Rated Emotions.\" There is a water bottle on the table next to the poster.", - "id": 131 + "image_path": "G:\\images\\combined\\004938_jpg.rf.4ff4967b65d453a57e8599109c2383f3.jpg", + "response": "A group of men in grey and yellow uniforms and white helmets are working on power lines. They are standing on ladders and tools are scattered around them.", + "id": 30745 }, { - "image_path": "G:\\images\\combined\\001a7cbe1d4e025e.jpg", - "response": "A girl in a plaid shirt is holding a piece of paper.", - "id": 132 + "image_path": "G:\\images\\combined\\004939_jpg.rf.31b0fa6e20076038d2c010a935822422.jpg", + "response": "A pair of workers in yellow suits and orange safety gear work on a large metal box on a pole.", + "id": 30746 }, { - "image_path": "G:\\images\\combined\\001b13d0431888a2.jpg", - "response": "A bottle of Reposado tequila and a bottle of Arette Anejo tequila sit side by side on a counter.", - "id": 133 + "image_path": "G:\\images\\combined\\00493f6c61b373d3.jpg", + "response": "A red car with the license plate P404 EUJ is parked on the grass.", + "id": 30747 }, { - "image_path": "G:\\images\\combined\\001b616c9bd209ff.jpg", - "response": "A record album cover for the 70th anniversary of the Dutch Philharmonic Orchestra.", - "id": 134 + "image_path": "G:\\images\\combined\\004940_jpg.rf.6764da3754f8a5c12dce35de43845be7.jpg", + "response": "In the image two workers are talking at a construction site. They are both wearing yellow and orange safety vests and yellow helmets. They are walking on a dusty road in the construction site. In the background a digger is working and throwing earth.", + "id": 30748 }, { - "image_path": "G:\\images\\combined\\001bc9f141c3df42.jpg", - "response": "A bottle of Thatchers Old Rascal cider next to a glass filled with the cider.", - "id": 135 + "image_path": "G:\\images\\combined\\004941_jpg.rf.fe3a10979caca6b45361b8a483e5dc31.jpg", + "response": "A large group of workers are working on a construction site. They are wearing yellow helmets and are working on a steel grid. Some of them are sitting on the grid while others are standing. There are also a few people walking around the site.", + "id": 30749 }, { - "image_path": "G:\\images\\combined\\001bebecea382500.jpg", - "response": "A black and yellow car on display with a crowd of people standing around it.", - "id": 136 + "image_path": "G:\\images\\combined\\004942_jpg.rf.0ce9ef778e29a30770a338d9bc2fb924.jpg", + "response": " Construction workers(544,486),(609,689)(499,678),(577,836) are seen at the site of the new high school in Hefei, Anhui province, China.", + "id": 30750 }, { - "image_path": "G:\\images\\combined\\001ccd20db4c2295.jpg", - "response": "Two men are holding and pointing at a shoe. One man is wearing a yellow shirt and a hat, and the other man is wearing a black and blue jacket and a watch. The man on the right is also wearing a ring. The wall behind them has the letters N and C on it.", - "id": 137 + "image_path": "G:\\images\\combined\\004943_jpg.rf.7387167f106f8c53ef352405a6e2359a.jpg", + "response": "A group of people sitting around a table.", + "id": 30751 }, { - "image_path": "G:\\images\\combined\\001cdd25e148cd36.jpg", - "response": "A green and blue checkered police car is parked on the side of the road.", - "id": 138 + "image_path": "G:\\images\\combined\\004944_jpg.rf.a6c2c3390e9c69c9c01f36c0eef12959.jpg", + "response": "a group of people wearing hard hats", + "id": 30752 }, { - "image_path": "G:\\images\\combined\\001ce300279f1a81.jpg", - "response": "A wall with a drawing of Oscar the Grouch from Sesame Street.", - "id": 139 + "image_path": "G:\\images\\combined\\004945_jpg.rf.10eaea30ac2c1e5344044d3a1a91fc9b.jpg", + "response": "A group of four construction workers are sitting on a pile of rubble. They are all wearing hard hats and work clothes. One worker is holding a helmet in his hand. The ground around them is filled with concrete rubble and debris.", + "id": 30753 }, { - "image_path": "G:\\images\\combined\\001ce802c60d8ea1.jpg", - "response": "The image depicts a group of young men playing a competitive game of soccer on a grass field. There are at least eleven players present, all wearing different colored jerseys, with some wearing blue and white striped jerseys and others wearing blue and white striped jerseys. They are actively engaged in the game, running, jumping, and making quick maneuvers to kick the soccer ball. The players are spread across the field, with some closer to the foreground and others further away. The ball is located towards the left side of the field, and one player is attempting to kick it with his stick.", - "id": 140 + "image_path": "G:\\images\\combined\\004946_jpg.rf.1ce0b275b9f6efec7ee0654208b98bc1.jpg", + "response": "A worker wipes sweat from his forehead.", + "id": 30754 }, { - "image_path": "G:\\images\\combined\\001d028a021c9c00.jpg", - "response": "A print ad for Camel cigarettes, featuring actor Richard Carlson. The ad is in black and white. Richard Carlson is sitting in a director's chair, holding a cigarette. To his right, there is a picture of him on set. To his left, there are pictures of him with his wife and daughter. The ad copy is in the center of the page.", - "id": 141 + "image_path": "G:\\images\\combined\\004947_jpg.rf.fec4c45cd9fa1c2c4552c56de5a92523.jpg", + "response": "The image shows two men in a field, one wearing a green camouflage shirt and a yellow hard hat and the other wearing a red hard hat. They are working together to fix an electrical component in the field.", + "id": 30755 }, { - "image_path": "G:\\images\\combined\\001ddeda193f5789.jpg", - "response": "A car covered in snow with a license plate that says \"517\".", - "id": 142 + "image_path": "G:\\images\\combined\\004948_jpg.rf.73ebca60ad8b1637fbc7ed70fe4eda60.jpg", + "response": " An electrician(215,279),(995,997) working on a fuse box", + "id": 30756 }, { - "image_path": "G:\\images\\combined\\001e5ad725a4c7c3.jpg", - "response": "A group of people holding a box with the word fusion on it.", - "id": 143 + "image_path": "G:\\images\\combined\\004949_jpg.rf.ca31068a889ab692f032d09f871a6626.jpg", + "response": "A worker in a red jumpsuit and yellow hard hat stands next to an oil well. The worker is checking the pressure gauge on a pipe. In the background, there is an oil derrick. The sky is orange and there are a few clouds. There is a city visible in the far distance.", + "id": 30757 }, { - "image_path": "G:\\images\\combined\\001e61e36acec4cc.jpg", - "response": "A group of three people sitting on a couch in a room.", - "id": 144 + "image_path": "G:\\images\\combined\\004950_jpg.rf.09aa0ecb30a5a883d294ed95f842729e.jpg", + "response": "A man in blue coveralls and a blue hard hat stands in front of a red and white ship hull that is partially painted. The ship is on a platform and there is a red light shining on the hull. The man is looking up at the ship.", + "id": 30758 }, { - "image_path": "G:\\images\\combined\\001e68b987a389d5.jpg", - "response": "An old yellow hotrod with the number 22 on the hood.", - "id": 145 + "image_path": "G:\\images\\combined\\004951_jpg.rf.bb29b28b6c4582ef32916dac040e26b8.jpg", + "response": "A group of people are standing around a man who is on a ladder working on an electrical box. The electrical box is grey and is located in the middle of a lush green forest. The man on the ladder is wearing a yellow helmet and a yellow safety vest. There is another man wearing a yellow helmet and vest standing behind him. Another man is standing to the left of the man on the ladder and is wearing a blue helmet and vest. To the right of this man is a person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants.", + "id": 30759 }, { - "image_path": "G:\\images\\combined\\001e77be67b2e99c.jpg", - "response": "A wall with a sign that says COAL on it.", - "id": 146 + "image_path": "G:\\images\\combined\\004952_jpg.rf.729f0ac0fff02b865d0c6ab7dc839e14.jpg", + "response": "The image shows a group of people standing in a room under construction. They are all wearing yellow hard hats, and some of them are holding a blueprint. The room has a ladder on the right side and a wooden table in the middle. The walls are bare, and the floor appears to be unfinished.", + "id": 30760 }, { - "image_path": "G:\\images\\combined\\001ef6050a0a97a6.jpg", - "response": "A kitchen counter with a bag of Nestle Toll House chocolate chips, a bag of Nestle chocolate morsels, a can of sweetened condensed milk, a bag of Nestle golden chocolate baking bars, a measuring cup with sugar, a measuring cup with flour, a bowl of sugar, and a bowl of flour.", - "id": 147 + "image_path": "G:\\images\\combined\\004953_jpg.rf.cc70df9f8effd264c902dc1d435f0015.jpg", + "response": " Workers(496,254),(935,996)(4,266),(581,996) are working at night in a darkened room.", + "id": 30761 }, { - "image_path": "G:\\images\\combined\\001f5618a7b33d88.jpg", - "response": "A clock with three little men hanging from it.", - "id": 148 + "image_path": "G:\\images\\combined\\004954_jpg.rf.50085874f4d14dcad2e0b9512ef9ed63.jpg", + "response": "a couple of people that are in a cave", + "id": 30762 }, { - "image_path": "G:\\images\\combined\\001f581f2f2db648.jpg", - "response": "A paper advertisement for Sprint's Palm Pixi phone.", - "id": 149 + "image_path": "G:\\images\\combined\\004955_jpg.rf.b6dc518010e40231d28df52cd53679d4.jpg", + "response": "The image shows two men working on a power line in a snowy field. They are wearing hard hats and one of them is holding a tool. The sky is grey and overcast. In the background, there is a residential area with a few houses.", + "id": 30763 }, { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.7c8c3a1ea477387e77eeb4e130e285d7.jpg", - "response": "A group of people standing in front of a camera. They are all wearing face masks. They are holding up plastic pipes and signs. One of the signs is in Chinese.", - "id": 150 + "image_path": "G:\\images\\combined\\004956_jpg.rf.3ad9900be75579b2eaab2ec669f67b1a.jpg", + "response": "Men in white shirts and red hats are standing in a construction site.", + "id": 30764 }, { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.9b62ebcbd9492f96c0e34644f795e2c6.jpg", - "response": "A group of people stand in a row, wearing face masks. They are all holding up white plastic pipes. In front of them is a sign that says \"We are all Hong Kongers, we all have the right to live in a clean environment. We are all victims of the government's policy. We need your support to protect our right.\"", - "id": 151 + "image_path": "G:\\images\\combined\\004957_jpg.rf.50d60300229d51d3b51fa9a66bcd07ba.jpg", + "response": "Two men in a mine wearing hard hats and blue coveralls.", + "id": 30765 }, { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.a8d05cc51aa2f8a52fe0b31df45113ba.jpg", - "response": "A group of people are standing in a row, all wearing face masks(226,147),(363,342)(479,338),(587,461)(767,509),(837,586)(689,576),(766,659). They are holding up a plastic pipe and a sign.", - "id": 152 + "image_path": "G:\\images\\combined\\004959_jpg.rf.fb5a6c0f9b26543b0b65ede33c2c43ea.jpg", + "response": "a group of people sitting around a table", + "id": 30766 }, { - "image_path": "G:\\images\\combined\\002000_jpg.rf.e679e8b30f526f19db5f4daa5996ea20.jpg", - "response": "The image shows a group of construction workers in blue uniforms and yellow hard hats, working on a bridge. They are standing on the bridge, which has a red and white crane in the background. The workers are focused on their task, which involves pouring concrete. The bridge appears to be in the middle of construction, with some parts of it already built and others still under construction.", - "id": 153 + "image_path": "G:\\images\\combined\\004960_jpg.rf.a719c1b57c3cb9886d65c3fa14ef277a.jpg", + "response": "A construction worker in a yellow hard hat and camouflage shirt stands in front of a sign.", + "id": 30767 }, { - "image_path": "G:\\images\\combined\\002001_jpg.rf.8affcf66ce844ae4e89df7c5d1aca14b.jpg", - "response": "In the image two men are working on a project. One man is wearing a blue shirt and a white helmet and is digging in the ground with a shovel. Another man is wearing a yellow helmet and a yellow hard hat and is also digging in the ground with a shovel. They are both wearing yellow and white helmets. In the background there is a building with a sign on it.", - "id": 154 + "image_path": "G:\\images\\combined\\004963_jpg.rf.e8ae319aefb97b2eb15fb30442e81b13.jpg", + "response": "In the picture there are two workers wearing blue work clothes and red hats. They are in a workshop, in front of them is a brown wooden beam, and next to it are many other wooden beams of the same size, but in different positions. Some wooden blocks are also placed on the ground and some are on a yellow shelf.", + "id": 30768 }, { - "image_path": "G:\\images\\combined\\002002_jpg.rf.dd4e7f9bbc25827848f4fe8b3f0a8e6e.jpg", - "response": "The image shows a group of people standing in front of a yellow wall with a sign that reads \u201c\u6cb3\u5357\u5929\u4e30\u96c6\u56e2\u201d. The group is standing in two rows, and there is a person on the far left wearing a black jacket and grey shirt. Another person in the second row from the left is wearing a blue jacket and grey shirt. The person on the far right is wearing a black jacket and a grey scarf. The wall behind the group has a logo that reads \u201cFonon\u201d on the first line and \u201cShenan\u201d on the second line. The group is standing in front of the wall and there is a white sign with the date January 19th, 2018 written on it.", - "id": 155 + "image_path": "G:\\images\\combined\\004964_jpg.rf.33add841dbde0c037717a0e13d5d8cf0.jpg", + "response": "A group of workers in yellow and orange shirts and blue pants are working on a pile of rubble. They are wearing hard hats and some have their sleeves rolled up. In the background there are a few tall buildings.", + "id": 30769 }, { - "image_path": "G:\\images\\combined\\002003_jpg.rf.04ebbbe457537443ab32b9e17113d5b4.jpg", - "response": "A man wearing a yellow hat and no shirt is holding a large pick ax over his shoulder. He is standing in a dark room with a light shining on him. The walls of the room are made of concrete and there is a large crack in the wall on the right side.", - "id": 156 + "image_path": "G:\\images\\combined\\004965_jpg.rf.61e832968f679fe0c35bc1794328a86f.jpg", + "response": "In this image a worker is cutting steel with a saw at a construction site. The sparks from the saw are flying all around. The worker is squatting down and the saw is on the right side of the image. In the background there is a building.", + "id": 30770 }, { - "image_path": "G:\\images\\combined\\002004_jpg.rf.31fe47334b6c9f147fa9a7b940d66cb7.jpg", - "response": "A group of people standing around a machine.", - "id": 157 + "image_path": "G:\\images\\combined\\004966_jpg.rf.980d832fcc391a4c5a6f189d0a4e8b7a.jpg", + "response": "A group of men standing in front of a yellow and white construction site.", + "id": 30771 }, { - "image_path": "G:\\images\\combined\\002005_jpg.rf.2309b34137f530485987cd45b202f6da.jpg", - "response": "A worker in a\u6a59\u8272\u5de5\u88c5 and a yellow hard hat(426,238),(639,449) is working on a blue metal structure.", - "id": 158 + "image_path": "G:\\images\\combined\\004967_jpg.rf.c609cad555035746e7735a6f5e2ac1df.jpg", + "response": "The image shows a group of men working on a large spool of black\u7535\u7f06. They are in a field with grass and a few trees.", + "id": 30772 }, { - "image_path": "G:\\images\\combined\\002006_jpg.rf.ecbe3d4ff462fb47997bb8ee889bab76.jpg", - "response": "a group of men wearing blue shirts that say Jiangsu\u7f1d\u7eab on the back", - "id": 159 + "image_path": "G:\\images\\combined\\004968_jpg.rf.cb3e8ef9695be920e9646a00ec4b02d3.jpg", + "response": "A group of men in red jackets are working together to pull a rope. They are all wearing hard hats and some are wearing backpacks. They are in the snow and in front of them is a tower.", + "id": 30773 }, { - "image_path": "G:\\images\\combined\\002007_jpg.rf.dd1865af0c389af210d29724ba91808f.jpg", - "response": "The image shows the interior of a large tunnel. There are three workers visible, one in the center of the image and two others to the left. The worker in the center is turning a wheel, and the two others are standing further back. The workers are all wearing hard hats.", - "id": 160 + "image_path": "G:\\images\\combined\\004969_jpg.rf.08a9ac12c8ce5f47c4472665f67f9be9.jpg", + "response": "A man is harnessed up and working on a power line with a fire burning next to him.", + "id": 30774 }, { - "image_path": "G:\\images\\combined\\002008_jpg.rf.9b23d9d58c85308a7d8aaa19f3d0371f.jpg", - "response": "In the image two workers are\u4fee\u7406ing high voltage wires on a power pole. They are wearing blue helmets and white work clothes. The sky is full of clouds.", - "id": 161 + "image_path": "G:\\images\\combined\\004970_jpg.rf.5dfe606ab311e7700dc998b8214dd1bc.jpg", + "response": "In the image, three workers are seen wearing blue helmets and raincoats. They are working on an outdoor construction site with a mountain in the background. The two men on the right are pulling on a rope, and one of them is holding a stick. The man in the middle is looking up at the rope.", + "id": 30775 }, { - "image_path": "G:\\images\\combined\\002009_jpg.rf.afb3bd33ed7d63cbe44e9baf3550a775.jpg", - "response": "The image shows a group of people, including rescuers and bystanders, gathered around two people who are trapped under a large pile of dirt. The people are huddled together and appear to be working to free the two individuals who are trapped beneath the dirt. The scene is set outdoors and there are several sets of footprints visible in the dirt.", - "id": 162 + "image_path": "G:\\images\\combined\\004971_jpg.rf.9056602fb3e54f446f66e267425c7fff.jpg", + "response": "The image shows two Chinese workers sitting on the floor of a large\u96a7\u9053. They are both wearing orange work uniforms and white helmets. The man on the left is sitting on the left side of the tunnel, he is wearing grey gloves and has a white beard. The man on the right is sitting on the right side of the tunnel, he is wearing yellow gloves. In front of them is a large rock, and to the right of the rock is a pipe. Behind the workers, on the right wall of the tunnel, is a large pipe.", + "id": 30776 }, { - "image_path": "G:\\images\\combined\\002010_jpg.rf.9f96f3dccdb1dcd8cece5c4bab2dde6f.jpg", - "response": "A group of men working on a construction site.", - "id": 163 + "image_path": "G:\\images\\combined\\004972_jpg.rf.5058ae52783d08ee423cb136eda6ff50.jpg", + "response": "A man sitting on a block of cement in front of a building under construction.", + "id": 30777 }, { - "image_path": "G:\\images\\combined\\002011_jpg.rf.f522901f51c12869110c376473effdaa.jpg", - "response": "A man in a red shirt and red helmet is working on some equipment. He is wearing sunglasses and has a beard. He is looking at some hoses and is touching a switch. He is standing in front of some other equipment and is near a white wall.", - "id": 164 - }, - { - "image_path": "G:\\images\\combined\\002012_jpg.rf.fb264a8af3c0030abbabbc3c54fcfc16.jpg", - "response": "A woman in a green dress is speaking into a microphone. She is walking with a group of men. One of the men is wearing a blue shirt and a tie. Another man is wearing a white t-shirt. A third man is wearing a black shirt and khaki pants. They are walking on a dirt road. There is a car to the left of the group. In the background there is a building with a sign that says \"Zhihao\" on it.", - "id": 165 + "image_path": "G:\\images\\combined\\004973_jpg.rf.d4145286980fcca8b915f9d2b55e431f.jpg", + "response": "A large pipe is being laid in the ground by a construction crew.", + "id": 30778 }, { - "image_path": "G:\\images\\combined\\002013_jpg.rf.5dd3b85b7fad310668548a52b3613b17.jpg", - "response": "a large metal object(2,0),(997,775)", - "id": 166 + "image_path": "G:\\images\\combined\\004974_jpg.rf.ef7424532195fad757cc4e1a74ae6431.jpg", + "response": "A construction worker in a red jumpsuit and yellow hard hat is using a hose to drain water from a hole in the ground. Another worker is using a backhoe to dig deeper into the hole. A third worker is standing at the edge of the hole, arms raised, as if directing the work.", + "id": 30779 }, { - "image_path": "G:\\images\\combined\\002014_jpg.rf.8fbd10cd363f8ec84e64b5da6b24bb55.jpg", - "response": " A man(316,332),(446,631) in an orange jacket(317,396),(445,627) stands in front of a muddy construction site(2,347),(996,996) with a large body(2,205),(996,367) of water in the background.", - "id": 167 + "image_path": "G:\\images\\combined\\004975_jpg.rf.27219c926beb432511917316802aa131.jpg", + "response": "The picture shows three workers in the right side of the image, all of them are wearing red hats. In the background, there are four-story buildings under construction. In the foreground, a yellow tractor-like machine is in the middle of construction site.", + "id": 30780 }, { - "image_path": "G:\\images\\combined\\002015_jpg.rf.01d6917c4aa6ebeda742b3a3d25862b9.jpg", - "response": "A group of people standing next to a truck in a coal mine.", - "id": 168 + "image_path": "G:\\images\\combined\\004976_jpg.rf.8e58318917de6fe9ad2a40dee6bca202.jpg", + "response": "The image shows four people walking in front of a building under construction. The man on the far left is wearing a black shirt and black shorts. The second person from the left is wearing a brown shirt and khaki pants. The third person, a woman, is wearing a navy blue shirt and black pants. The fourth person, also a woman, is wearing a black and white shirt with white pants. In the background, a yellow dump truck is parked near the building.", + "id": 30781 }, { - "image_path": "G:\\images\\combined\\002017_jpg.rf.4dd8e150b13fb7a4a902767c3482ed40.jpg", - "response": "The image shows a snowy forest with several pine trees. The foreground is filled with workers in blue work clothes and red safety vests. They are all wearing blue hats. In the middle, three workers are holding a large white pipe with red characters on it. One of them is on the left, the other on the right, and the one in the middle is crouching.", - "id": 169 + "image_path": "G:\\images\\combined\\004977_jpg.rf.ad9f4c7623ee3bff4f9977454742c5f1.jpg", + "response": "In the image two men are working on power lines in the snow. They are wearing helmets and coats to protect themselves from the cold and the snow. The men are hanging from the power lines and working on the wires.", + "id": 30782 }, { - "image_path": "G:\\images\\combined\\002018_jpg.rf.29ee8ad553f887637de04971b5eceadd.jpg", - "response": "A construction worker in a hard hat sitting in a forklift.", - "id": 170 + "image_path": "G:\\images\\combined\\004979_jpg.rf.0bf9bba84b940893486d887e6d3b7edb.jpg", + "response": "A man pushing a cart with a box on it.", + "id": 30783 }, { - "image_path": "G:\\images\\combined\\002019_jpg.rf.971dc483f29b0dc9b9d49eb5be1a99b2.jpg", - "response": "In the image there are two construction workers, one is holding a pipe and is looking into the camera, the other one is looking into the distance. They are both wearing yellow helmets. Behind them is a large power plant with many pipes and cables.", - "id": 171 + "image_path": "G:\\images\\combined\\004980443377ed4c.jpg", + "response": "On a green and white checkered tablecloth, there are two bottles of beer. One is labeled Bortso and the other is labeled Gorkhi. Both bottles have blue labels.", + "id": 30784 }, { - "image_path": "G:\\images\\combined\\002020_jpg.rf.ad58900155c0eaec64cfa07fcf004af6.jpg", - "response": "A woman in a hard hat and safety vest looking at a tablet.", - "id": 172 + "image_path": "G:\\images\\combined\\004980_jpg.rf.05c360fc6c263d95474f418ddcbafafb.jpg", + "response": "A worker in a factory in Yangon, Myanmar.", + "id": 30785 }, { - "image_path": "G:\\images\\combined\\002021_jpg.rf.c63093976d6aaadf7012c380a729e9aa.jpg", - "response": "In the image, a worker is seen wearing a blue uniform and a helmet while working on an electricity pylon. The worker is standing on the pylon and connecting two wires. The sky is blue and there are no clouds in the sky. In the background, there are some mountains.", - "id": 173 + "image_path": "G:\\images\\combined\\004982_jpg.rf.6748efc60e513fdaa9ee9d2509500c64.jpg", + "response": "A construction worker in an orange uniform, grey gloves and a yellow hard hat is using a jackhammer to break up rock.", + "id": 30786 }, { - "image_path": "G:\\images\\combined\\002022_jpg.rf.edd1b7299ff9a86591dcf7f096f747c8.jpg", - "response": "A worker in a blue jacket and yellow hard hat is working on a power line.", - "id": 174 + "image_path": "G:\\images\\combined\\004983_jpg.rf.2c5542ff7dacb2219810d5672b076a7c.jpg", + "response": "A group of men working on power lines with a large crane.", + "id": 30787 }, { - "image_path": "G:\\images\\combined\\002023_jpg.rf.6109ee90d01daddd49503729a81942f4.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a construction site. They are standing over a large area of concrete that has been dug out and is filled with steel rebar. The worker is holding a large wrench and is working on the rebar. The background shows a large area of concrete with many steel rebar sticking out of it.", - "id": 175 + "image_path": "G:\\images\\combined\\004984_jpg.rf.3b7660642d7f1c4d4d1ff5eebe43ba1e.jpg", + "response": "A construction worker in a yellow vest and blue hard hat is pointing and talking to another construction worker in a red hard hat who is sitting to the left of the first worker. They are both standing in front of a building that appears to be under construction.", + "id": 30788 }, { - "image_path": "G:\\images\\combined\\002024_jpg.rf.adcc11b402d788c44c786ade0bdf82fd.jpg", - "response": "A woman in a pink hard hat interviews a man in a blue shirt and white hard hat. They are both standing in front of a pink crane.", - "id": 176 + "image_path": "G:\\images\\combined\\004985_jpg.rf.111a399ee7f330352acf5f531544ff75.jpg", + "response": "A group of men in white shirts and construction hats stand on a construction site. Some of them are pointing towards the left. In the background, a cloudy sky can be seen.", + "id": 30789 }, { - "image_path": "G:\\images\\combined\\002025_jpg.rf.7d7c9803ad3b4fcf59c04d40c9cc801a.jpg", - "response": "A worker at the China National Non-Ferrous Metal Corporation in Lianyungang, East China's Jiangsu province, checks the temperature of a melting furnace. The company has invested heavily in new technology to reduce emissions and improve efficiency.", - "id": 177 + "image_path": "G:\\images\\combined\\004986_jpg.rf.d0bfc65300dac117a92d9d8c397c3c47.jpg", + "response": "In the image, a worker is suspended from a bucket truck and is working on a power line. The worker is wearing a yellow safety vest and is focused on their task. The sky is a clear blue and the sun is shining.", + "id": 30790 }, { - "image_path": "G:\\images\\combined\\002026_jpg.rf.50fa1005a5e431202791701cf4834f4c.jpg", - "response": "A group of three men wearing black leather jackets and yellow hard hats are walking down a staircase. The staircase is surrounded by scaffolding and the wall is green.", - "id": 178 + "image_path": "G:\\images\\combined\\004987_jpg.rf.fc9ae6a1f11d8e23a39f2472f0173bed.jpg", + "response": "A construction worker is using a hose to pump concrete onto a steel grid.", + "id": 30791 }, { - "image_path": "G:\\images\\combined\\002027_jpg.rf.8fcffee7b1495d823ff32a50cc862b4e.jpg", - "response": "A couple of men looking at blueprints on a table.", - "id": 179 + "image_path": "G:\\images\\combined\\004988_jpg.rf.38153aadd7746d231105f18fcb89b758.jpg", + "response": "A man in a green shirt and red hat is holding a piece of paper and writing on it while standing next to a brick wall. Another man in a white shirt is standing behind him. They are both wearing ties. In the background, there is a building under construction with scaffolding.", + "id": 30792 }, { - "image_path": "G:\\images\\combined\\002029_jpg.rf.2eb399c32585b6a0f0794386251ad483.jpg", - "response": "In the image, two people are standing in a large industrial building. They are both wearing white hard hats, and the person on the left is also wearing a blue jacket. They are both holding papers and appear to be examining something. In the background, there is a large red structure.", - "id": 180 + "image_path": "G:\\images\\combined\\004989_jpg.rf.cc31cb7331bc21af39dd0bd4ae2f2d04.jpg", + "response": "A man in a hard hat standing in a wooden framed house structure.", + "id": 30793 }, { - "image_path": "G:\\images\\combined\\002031_jpg.rf.161a36ebeb665993f3f0a6e93c83f820.jpg", - "response": "A construction site with multiple workers, some of which are pouring concrete into a large mold.", - "id": 181 + "image_path": "G:\\images\\combined\\00498_jpg.rf.112b21245ed43ef8268231dcec850991.jpg", + "response": "a group of people standing in a factory", + "id": 30794 }, { - "image_path": "G:\\images\\combined\\002032_jpg.rf.14582cee99fe10d25d48623c18bfab33.jpg", - "response": "A man in a yellow raincoat, hat, and sunglasses is looking down. He is wearing a yellow hat and has a black cord around his neck with a black clip at the end of it. The man is also wearing black sunglasses. The background is bright white.", - "id": 182 + "image_path": "G:\\images\\combined\\00498_jpg.rf.b38b7aab983e70096d7065c2e2e0d124.jpg", + "response": "A group of people standing in a factory.", + "id": 30795 }, { - "image_path": "G:\\images\\combined\\002033_jpg.rf.f4d58b6b1913a1bc0262e67694e43f7c.jpg", - "response": "A worker wearing a red uniform and a hard hat is cutting through a metal pipe with a grinder. The sparks from the grinder are flying all around and some of them are visible in the foreground of the image. The worker is standing in a large warehouse-like setting with a lot of metal debris all around.", - "id": 183 + "image_path": "G:\\images\\combined\\004990_jpg.rf.1970497805714cc12831d9a354c23bdf.jpg", + "response": "A group of workers are working on a construction site.", + "id": 30796 }, { - "image_path": "G:\\images\\combined\\002034_jpg.rf.c4005fef2344f7058826898904f5f916.jpg", - "response": "3 men(158,289),(413,996)(507,0),(833,940) in blue uniforms and yellow hard hats(224,288),(370,456)(509,3),(618,150)(508,3),(617,149), one holding a red and black box(348,516),(638,869) and the other two holding wires(357,496),(619,595).", - "id": 184 + "image_path": "G:\\images\\combined\\004991_jpg.rf.dbf11c8bfeb7ff0a4dd6beb944e4afec.jpg", + "response": "A man in a black coat and red hard hat is holding a clipboard and talking to a woman in a blue coat and red hard hat. They are standing in a field with a man operating a piece of equipment with a large drill bit. Another man is standing behind them watching.", + "id": 30797 }, { - "image_path": "G:\\images\\combined\\002035_jpg.rf.0adc01f2270f1218cfe58f1a194adc0e.jpg", - "response": "A man in a hard hat is operating a piece of equipment in a tunnel.", - "id": 185 + "image_path": "G:\\images\\combined\\004992_jpg.rf.5a3a92d558a55c479fc08482a16531d8.jpg", + "response": "A worker in a white jacket and yellow hard hat is standing in a dark room with a flashlight. They are looking at a pipe with a hose connected to it. The room has multiple pipes and hoses scattered around and a black liquid on the floor.", + "id": 30798 }, { - "image_path": "G:\\images\\combined\\002036_jpg.rf.d0070bc78178734fb3eb7b133357e296.jpg", - "response": "The image shows three men in orange work clothes standing around a large metal device with two red handles. They are all wearing hard hats and the men on the left and right are also wearing red gloves. The men appear to be engineers as they are standing around the metal device which is some sort of large machine. They are looking at the machine and talking.", - "id": 186 + "image_path": "G:\\images\\combined\\004993_jpg.rf.0b400f125f915cd3f0b4d35fcae492ff.jpg", + "response": "A couple of men standing on a construction site.", + "id": 30799 }, { - "image_path": "G:\\images\\combined\\002037_jpg.rf.68105c7e49de457c5036b800d453f821.jpg", - "response": "a group of men working on a street", - "id": 187 + "image_path": "G:\\images\\combined\\004994_jpg.rf.f141c095b40a7a152d1b41ebc0553f3a.jpg", + "response": "In the image there are two workers in a construction site, both of them are wearing red helmets and holding a laptop. The laptop is open and one of the workers is typing on it. They are both looking at the laptop screen while sitting on a construction platform. The laptop is open on the left worker's lap and the right worker is holding it. The background is full of blue pipes and the workers are the main focus of the image.", + "id": 30800 }, { - "image_path": "G:\\images\\combined\\002038_jpg.rf.cf32a62f42e18fabe1ac39703217c064.jpg", - "response": " Two workers(390,331),(598,997)(157,408),(443,997) standing on a construction site", - "id": 188 + "image_path": "G:\\images\\combined\\004995_jpg.rf.47a20b218420f9e71b731682981a8003.jpg", + "response": "A group of three people standing in front of a large factory.", + "id": 30801 }, { - "image_path": "G:\\images\\combined\\002039_jpg.rf.346a8558cfbb18aa30555b909e2cd380.jpg", - "response": "The image shows two people in blue work clothes and white or orange hard hats standing in a construction site. They are both holding some papers. In the background, there is a red brick wall, a pile of yellow sand, a few red bags possibly containing construction materials, a couple of yellow cranes, and a few electric poles.", - "id": 189 + "image_path": "G:\\images\\combined\\004996_jpg.rf.6fdb15817c11e712b2f6932ce759b2ac.jpg", + "response": "A man and a woman are standing in a kitchen. The woman is holding a cell phone and appears to be showing the man something on the screen. The man is looking at a spot on the wall where there is a chip in the paint.", + "id": 30802 }, { - "image_path": "G:\\images\\combined\\002040_jpg.rf.7ae3724a0d68516e55b9c3c3c7131ec4.jpg", - "response": "A construction site with three men standing around. They are all wearing red hard hats. One man is holding an umbrella. There is a building in the background.", - "id": 190 + "image_path": "G:\\images\\combined\\004997_jpg.rf.f2b62117b0da571f125482919ba34d24.jpg", + "response": "A man wearing a white hard hat and carrying a brick on his shoulder.", + "id": 30803 }, { - "image_path": "G:\\images\\combined\\002041_jpg.rf.fc5f9b8bc4885d4f2889ec46e1fe3506.jpg", - "response": "In the image there is a large group of people working on a bridge. They are all wearing hard hats and some are wearing yellow and grey. There is a large yellow and grey crane in the background. In the foreground there is a man wearing a grey shirt and brown and green pants. He is holding a tool in his right hand. There are blue posts stuck in the ground around the area where the people are working. The bridge appears to be made of metal and is in various stages of construction.", - "id": 191 + "image_path": "G:\\images\\combined\\004998_jpg.rf.40155956542f8e3c0bc59a0d4e7082d0.jpg", + "response": "a group of men standing around a plot of land", + "id": 30804 }, { - "image_path": "G:\\images\\combined\\002042_jpg.rf.d201385e3a65c8543ef7f5f5d124d05f.jpg", - "response": "The image shows two construction workers at a construction site. They are wearing hard hats and work clothes. One of the workers is holding a large pipe while the other worker is pulling on it. They are standing on the construction site over a cement foundation.", - "id": 192 + "image_path": "G:\\images\\combined\\004999_jpg.rf.68bf4481f904361223d7e7e5065e48d7.jpg", + "response": "A group of three workers wearing yellow hard hats are working on a bridge. They are all crouched down and appear to be focused on their task. There is a red crane visible in the background.", + "id": 30805 }, { - "image_path": "G:\\images\\combined\\002043_jpg.rf.056e113a91c2b2dc87205e4cb625b210.jpg", - "response": "A group of men standing in front of a large rock wall.", - "id": 193 + "image_path": "G:\\images\\combined\\0049c1a1fe79f581.jpg", + "response": " foil(222,345),(824,995) on the grill", + "id": 30806 }, { - "image_path": "G:\\images\\combined\\002044_jpg.rf.7667197518ad37301dffe9698f417622.jpg", - "response": "The image shows two men standing in a room that is in the process of being painted. The walls are white, but not yet finished, and there is a large bare space where the ceiling and walls meet. The ceiling is white and has a wooden frame. The floor is a light brown color. One man is on the left side of the image and is wearing a dark gray shirt. He has dark hair and is looking down at the floor. The other man is on the right side of the image and is wearing a green shirt. He has dark hair and is also looking down at the floor.", - "id": 194 + "image_path": "G:\\images\\combined\\004a50da6f30492e.jpg", + "response": "A poster on a window for a musician named LinQ Yim.", + "id": 30807 }, { - "image_path": "G:\\images\\combined\\002045_jpg.rf.0537ca2d7b931a4a82f50d35f95d70e9.jpg", - "response": "A group of people working on a building construction site.", - "id": 195 + "image_path": "G:\\images\\combined\\004a6f5dd8925a23.jpg", + "response": "a man wearing a black shirt with a white skull on it", + "id": 30808 }, { - "image_path": "G:\\images\\combined\\002046_jpg.rf.f482c1bd7f7d0b4fa449edab34fa2037.jpg", - "response": "Two men in hard hats and orange vests looking at a blueprint.", - "id": 196 + "image_path": "G:\\images\\combined\\004abd1e49165b1c.jpg", + "response": "A red Opel Kadett C 3-door parked on the side of the street.", + "id": 30809 }, { - "image_path": "G:\\images\\combined\\002047_jpg.rf.741703ca1935df8cea02bdd2e1042b5b.jpg", - "response": "A group of people in blue uniforms and hard hats are gathered around a grey box. They are all wearing gloves and some are holding tools.", - "id": 197 + "image_path": "G:\\images\\combined\\004b1e697e3ffdf9.jpg", + "response": "A blue and white bus is on the street.", + "id": 30810 }, { - "image_path": "G:\\images\\combined\\002048_jpg.rf.5167858c8044965bc27fe94cd7dba43e.jpg", - "response": "In the image there is a person wearing a yellow construction hat and a brown shirt. They are holding a plastic bottle filled with water and drinking from it. The bottle is filled with a clear liquid. The person is in front of a green construction site.", - "id": 198 + "image_path": "G:\\images\\combined\\004b75d1299e653c.jpg", + "response": "A black and white police car with the word SHERIFF on the door.", + "id": 30811 }, { - "image_path": "G:\\images\\combined\\002050_jpg.rf.fa1c00b8427d60be3fd04f03dd5e9b73.jpg", - "response": "Rescuers(2,4),(397,997)(299,170),(522,640) try to save a boy(469,564),(546,693) who fell into a well.", - "id": 199 + "image_path": "G:\\images\\combined\\004c0c8daa5eebda.jpg", + "response": "A book with a green cover that says The Original Preppy Cookbook on it.", + "id": 30812 }, { - "image_path": "G:\\images\\combined\\002051_jpg.rf.f64a9d6cb004b4a48d6b95cc048a5546.jpg", - "response": "In the image two men are working on power lines. They are both wearing white and yellow safety gear. One man is standing on a utility pole and the other is on a ladder working on the power lines.", - "id": 200 + "image_path": "G:\\images\\combined\\004c1766c10578cd.jpg", + "response": "A baseball player in a red shirt and white pants holding a baseball and a catcher's mitt.", + "id": 30813 }, { - "image_path": "G:\\images\\combined\\002052_jpg.rf.564e967a46df1ca84b34cf944dbe400d.jpg", - "response": "A construction worker and a man in a suit and tie standing in a construction site. The worker is wearing a yellow helmet and an orange vest. The man in the suit is wearing a white helmet. They are both holding a clipboard.", - "id": 201 + "image_path": "G:\\images\\combined\\004c316ee7c0a3fc.jpg", + "response": "a man in a red shirt holding a surfboard", + "id": 30814 }, { - "image_path": "G:\\images\\combined\\002053_jpg.rf.857a6e73284b48f346e894d3a42dcf74.jpg", - "response": "A construction worker is pouring concrete around a steel rebar cage. He is wearing a yellow construction hat, yellow and green construction suit, and yellow and black work boots. He is holding a yellow and white bag in his left hand while he is pouring concrete. There is a large concrete pole in the middle of the construction site. The worker is pouring concrete around it. There are many other workers in the construction site. Some of them are standing on the steel grid on the ground, some are standing on the concrete floor, and some are standing on the yellow steel bars. There are also many other steel bars in the construction site.", - "id": 202 + "image_path": "G:\\images\\combined\\004c5108977ac0d8.jpg", + "response": "Detail of Portrait of Johann Friedrich Schenider (1686-1743) by unknown artist", + "id": 30815 }, { - "image_path": "G:\\images\\combined\\002054_jpg.rf.362f2e4b79a676925802723fc28dc8ef.jpg", - "response": "A group of three people working on a construction site.", - "id": 203 + "image_path": "G:\\images\\combined\\004cada0dea66c27.jpg", + "response": "A vintage advertisement for White Rock soap.", + "id": 30816 }, { - "image_path": "G:\\images\\combined\\002055_jpg.rf.6bf076a768aea28a56a2040ef19e1dbb.jpg", - "response": "A group of men standing around a dry grass field", - "id": 204 + "image_path": "G:\\images\\combined\\004d0744b999e29e.jpg", + "response": "A woman is laying on the floor next to two LG robots. The one on the left is black and has the word LG on the top. The one on the right is red and has the word LG on the top as well. The woman is smiling and has her hand near her ear.", + "id": 30817 }, { - "image_path": "G:\\images\\combined\\002056_jpg.rf.4df94fd11af8b623c8ac294577ad37fe.jpg", - "response": "A hand is holding a wooden thermometer in front of a construction site. The thermometer is showing a temperature of 42 degrees Celsius (107.6 degrees Fahrenheit). In the background, a young boy is walking.", - "id": 205 + "image_path": "G:\\images\\combined\\004de6286016d7fa.jpg", + "response": "A poster for Spin Doctors concert in Spain in 2013.", + "id": 30818 }, { - "image_path": "G:\\images\\combined\\002057_jpg.rf.02fb370ed9d21eec3ad1c65195b7167c.jpg", - "response": " A backhoe(317,3),(628,696) is used to dig a hole in the ground.", - "id": 206 + "image_path": "G:\\images\\combined\\004e59f30392a1cc.jpg", + "response": "A man wearing a black shirt with the words Game Design Expo on the back of it.", + "id": 30819 }, { - "image_path": "G:\\images\\combined\\002058_jpg.rf.9c924e1decd43fb2a93222bfdaff717e.jpg", - "response": "A group of workers are seen pulling on a rebar. They are all wearing yellow hard hats and are in a construction site.", - "id": 207 + "image_path": "G:\\images\\combined\\004e627c688b6000.jpg", + "response": "A building with graffiti on it and a bush in front of it.", + "id": 30820 }, { - "image_path": "G:\\images\\combined\\002059_jpg.rf.d6d28c5962dbb91491da2cb7fffe212a.jpg", - "response": "A demolition worker is spraying a hose at a pile of rubble. He is wearing a hard hat and holding the hose. There is a yellow and black hard hat on the demolition worker.", - "id": 208 + "image_path": "G:\\images\\combined\\004ee60e0f1dc6f2.jpg", + "response": "A young boy in a red shirt and grey pants is pitching a baseball on a baseball field.", + "id": 30821 }, { - "image_path": "G:\\images\\combined\\00205b05bcd4257a.jpg", - "response": "A person is holding a white Samsung Galaxy Alpha in their left hand. The phone is powered by Android and has the words Samsung Galaxy Alpha on the screen. The background shows a blurry blue and white image.", - "id": 209 + "image_path": "G:\\images\\combined\\004f1ec7d27bb12d.jpg", + "response": "A group of men standing around a large stack of boxes.", + "id": 30822 }, { - "image_path": "G:\\images\\combined\\002060_jpg.rf.32358e7fd605ead93b8302ceb3fa4fbe.jpg", - "response": "a group of people standing around a blueprint", - "id": 210 + "image_path": "G:\\images\\combined\\004f345ce26e9d2e.jpg", + "response": "A red convertible car with the top down.", + "id": 30823 }, { - "image_path": "G:\\images\\combined\\002061_jpg.rf.a0bab305dc76fa671b2e0fedc7b291f1.jpg", - "response": "The image shows a city street scene with a bridge crossing a river. Two workers are on the right side of the image, one near the center of the scene and the other towards the bottom. They are both dressed in orange safety jumpsuits and yellow hard hats. The worker on the right has a tool belt around his waist. The street is filled with traffic, including several cars and a yellow truck. On the left side of the image, there is a tall apartment building with several floors. In front of it, there is a group of power lines with a worker on the leftmost line.", - "id": 211 + "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.1dbc1e3c87fb3ffe5c738782ac3107bd.jpg", + "response": "The photo shows a woman in a mask holding two photos in front of her face. She is wearing a hat and a leopard print top. She is speaking into a microphone. In one of the photos, there is a man in a white shirt and black pants. In the other photo, there is a sink full of dirty dishes. There are several people in the background, some holding signs. The woman is standing in front of a yellow wall with Chinese writing on it.", + "id": 30824 }, { - "image_path": "G:\\images\\combined\\002062_jpg.rf.1b6b6e88db3ef9d25f6d21cf5136bffa.jpg", - "response": "Four workers in hard hats and safety vests standing in front of shipping containers.", - "id": 212 + "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.c9384350352989339f6ae3f8a4503243.jpg", + "response": "A woman wearing a black and white hat and a leopard print scarf is holding two photos. She is wearing a mask and a blue hat. She is holding a microphone in her right hand. In the background there is a banner with Chinese characters. On the right side of the banner, there is a picture of a toilet.", + "id": 30825 }, { - "image_path": "G:\\images\\combined\\002063_jpg.rf.c502244055cb28dcc6efd458cdc82ad6.jpg", - "response": "The image is a black and white photo of two construction workers. They are both wearing yellow hard hats and safety vests. The worker on the left is facing the camera and appears to be writing something down. The worker on the right is turned away from the camera and is facing the opposite direction. They both seem to be having a conversation.", - "id": 213 + "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.ce32224fcc15c7aad77b1952a94c1569.jpg", + "response": "A woman wearing a hat and a mask is holding two posters. She is standing in front of a microphone.", + "id": 30826 }, { - "image_path": "G:\\images\\combined\\002064_jpg.rf.61eaece1ec4fdba6e9aed22674ce3e7e.jpg", - "response": "A man in a black shirt and gray pants is on a ladder and is working on a power line.", - "id": 214 + "image_path": "G:\\images\\combined\\005000_jpg.rf.0662110d19148c638132b057dd9c41a5.jpg", + "response": "A group of people in suits and hard hats stand in a circle in front of a building under construction.", + "id": 30827 }, { - "image_path": "G:\\images\\combined\\002065_jpg.rf.b5cc11b4f3e5bb940a468331c2b789ef.jpg", - "response": "In the image two workers are in orange suits and white helmets. They are climbing on a large power pole with many electrical components on it. The pole is red and white and the electrical components are red and white. There are many wires around the pole and the sky is grey.", - "id": 215 + "image_path": "G:\\images\\combined\\005001_jpg.rf.a92fc1deea7c7d28ecb3b3cfa04dfe6e.jpg", + "response": "A woman wearing a yellow hard hat and holding a rolled-up blueprint is standing in a room with a man wearing a red hard hat in the background. The woman is wearing a yellow hard hat, a red bracelet, and a red and white checkered shirt. She is holding a rolled-up blueprint in her left hand. The man is wearing a white shirt and jeans. He is wearing a red hard hat and has a tool belt around his waist. There is a brick wall in the background with a wooden support beam running through it. There is a pile of construction materials on the floor in front of the woman.", + "id": 30828 }, { - "image_path": "G:\\images\\combined\\002066_jpg.rf.93af70c9f50e76bafe0fa1f30a0a6f93.jpg", - "response": "In the image there is a person crouched down working on a large blue box with a few wires and a pipe going into it. The person is also wearing a white helmet.", - "id": 216 + "image_path": "G:\\images\\combined\\005002_jpg.rf.ed0003a00fcbf5e7a64216026e16588a.jpg", + "response": "A man sitting on a ladder and on the floor with a drill.", + "id": 30829 }, { - "image_path": "G:\\images\\combined\\002067_jpg.rf.61911a0bca4e383fcaa767596522f16c.jpg", - "response": "A group of men standing around each other.", - "id": 217 + "image_path": "G:\\images\\combined\\005004_jpg.rf.d876e26f2c868f8411360883c090a91c.jpg", + "response": "The image shows a dry dock with a large ship being worked on by several workers. The ship is a reddish-brown color and is in the process of being painted. There are three cranes visible in the background, two of which are in the process of lifting something. The third crane is on the left side of the image. There are two ladders leading up to the dock, one on the left side of the image and one on the right side. The workers are wearing hard hats and are visible at various points along the dock.", + "id": 30830 }, { - "image_path": "G:\\images\\combined\\002069_jpg.rf.68e0dbd3f700c257fc970bd05bbb6672.jpg", - "response": "A man in a blue shirt and blue hat is sitting on a wooden stool, working on some wires. He is wearing a tool belt around his waist. In the background, there is a building with a fence in front of it. The fence has many wires strung across it. There are also two other people in the background, one near the left side of the building and one near the right side.", - "id": 218 + "image_path": "G:\\images\\combined\\005005_jpg.rf.158177d045c8a8fefe3555e30c7f5f90.jpg", + "response": "A man is working on a construction site.", + "id": 30831 }, { - "image_path": "G:\\images\\combined\\002071_jpg.rf.e1aa4d3015cfb90672a99ca6945e78fd.jpg", - "response": "The image shows a group of construction workers inside a large\u96a7\u9053. They are all wearing hard hats and some are using tools. There is debris on the ground and the workers are standing in a small shaft.", - "id": 219 + "image_path": "G:\\images\\combined\\005006_jpg.rf.fea8249288260866b3f744ece4bf222b.jpg", + "response": "A group of people standing around a computer screen.", + "id": 30832 }, { - "image_path": "G:\\images\\combined\\002072_jpg.rf.c08668bdb2f4480e7ed45323adec8d6c.jpg", - "response": "A group of men wearing safety gear walking down a street.", - "id": 220 + "image_path": "G:\\images\\combined\\005007_jpg.rf.6035e7450e7a471feb7c4c1152697b49.jpg", + "response": "A worker in a white shirt and a white helmet(328,198),(438,328) is working on a construction site.", + "id": 30833 }, { - "image_path": "G:\\images\\combined\\002073_jpg.rf.aa23a7b7e50061dc6163af7b30dc5df3.jpg", - "response": "A group of workers in blue uniforms and hard hats are standing outside a small metal building. Some of them are wearing orange safety vests. There is a small basketball hoop behind them.", - "id": 221 + "image_path": "G:\\images\\combined\\005008_jpg.rf.9378d311b0e685a74039c372b45b4aa8.jpg", + "response": "A construction worker is working on a building site, he is standing on a ladder and is wearing a blue hard hat. He is working on a structure made of scaffolding and steel.", + "id": 30834 }, { - "image_path": "G:\\images\\combined\\002074_jpg.rf.1927f57d33ec09a6f7bbff968b22bf7c.jpg", - "response": "The image shows a construction site with multiple workers. They are working on a project that involves the construction of a large building. In the image, there are numerous iron rods that form a part of the building's support structure. Some workers are standing on a platform that is supported by the iron rods. The workers are wearing uniforms and some of them are wearing hard hats. The iron rods are arranged in a grid pattern and they extend up into the sky.", - "id": 222 + "image_path": "G:\\images\\combined\\005009_jpg.rf.b0538e7c5553cab354d5f96d3952f106.jpg", + "response": "A worker in a red uniform and hard hat is standing in the street holding a gas tank. He is in front of a building and there are people walking around him.", + "id": 30835 }, { - "image_path": "G:\\images\\combined\\002075_jpg.rf.9dfbc443f072e90bf3cfeba5e6e94981.jpg", - "response": "A group of men are standing outside a building. They are all wearing hard hats.", - "id": 223 + "image_path": "G:\\images\\combined\\005010_jpg.rf.bd72d43299aec954b08b5eacbb509f65.jpg", + "response": "A group of six men in hard hats are standing in a construction site. One man is pointing to the ceiling. The man on the far left is wearing a red hard hat and has his arms crossed. The man on the far right is wearing a white shirt and a red hard hat. The man in the center is wearing a green and black striped shirt. The man second from the left is wearing a striped shirt and a white hard hat. The man third from the right is wearing a white shirt and a blue hard hat. The man second from the right is wearing a white shirt and a red hard hat.", + "id": 30836 }, { - "image_path": "G:\\images\\combined\\002077_jpg.rf.d5b6d4c7211417c7931bb553403cbf17.jpg", - "response": "A group of people working on a wooden structure.", - "id": 224 + "image_path": "G:\\images\\combined\\005011_jpg.rf.977c1bf328d18d179794185debca1cd8.jpg", + "response": "A group of three men working on a brick structure while wearing yellow helmets(578,548),(733,806)(645,178),(827,490)(51,302),(295,641).", + "id": 30837 }, { - "image_path": "G:\\images\\combined\\002079_jpg.rf.450668f500eda2db6db4f349c5cba2ec.jpg", - "response": "A group of workers wearing yellow helmets are working on a bridge.", - "id": 225 + "image_path": "G:\\images\\combined\\005012_jpg.rf.574f07676e11312fa5ac385ba3fdb352.jpg", + "response": "A couple of workers are operating a machine.", + "id": 30838 }, { - "image_path": "G:\\images\\combined\\002081_jpg.rf.277277e523d447e024a87c688c1b3cf5.jpg", - "response": "The image shows two men standing in the back of a truck filled with various tools and equipment. Both men are wearing white shirts, jeans, and hard hats. One man is wearing black sunglasses and has a tool belt around his waist. They both appear to be smiling for the camera.", - "id": 226 + "image_path": "G:\\images\\combined\\005013_jpg.rf.ee957f9991eba9961748d8591769ef97.jpg", + "response": " Two men(137,166),(405,787)(461,227),(809,943) in hard hats(212,165),(324,280)(501,226),(631,360) and camouflage(139,270),(404,763) crouch down to examine debris(4,426),(999,997) on the ground", + "id": 30839 }, { - "image_path": "G:\\images\\combined\\002082_jpg.rf.462473902ea8685e6f009a1298d246cd.jpg", - "response": "A man in a blue shirt is loading a pallet with boxes. Another man in a yellow hard hat is driving a forklift.", - "id": 227 + "image_path": "G:\\images\\combined\\005015_jpg.rf.f09bb55cb9fbc5f9d4ecfaa96c027092.jpg", + "response": "A group of workers are working on a construction site.", + "id": 30840 }, { - "image_path": "G:\\images\\combined\\002083_jpg.rf.ad97ec54a6933d34013b898ba2962e2f.jpg", - "response": "a group of men standing in a field", - "id": 228 + "image_path": "G:\\images\\combined\\005016_jpg.rf.4d3d8fcbed705b4c04bddc0da1c278d1.jpg", + "response": "A group of five men wearing mining gear stand in a mine tunnel. They are all dirty and have helmets on.", + "id": 30841 }, { - "image_path": "G:\\images\\combined\\002084_jpg.rf.9c292ec888dbe95280a4ccb3ca8a6e0f.jpg", - "response": "The image shows a group of men standing in front of a warehouse. There are five men in the foreground, with another two men standing further back. The men are standing on a concrete surface. The warehouse is a blue building with a yellow door. There is a large metal pipe on the ground to the left of the group. A smaller metal pipe is visible to the right of the group. The background is a blue container.", - "id": 229 + "image_path": "G:\\images\\combined\\005017_jpg.rf.12e0e1d335a25d108db8b365418354ea.jpg", + "response": "A worker in a grey shirt and blue hat is on a construction site.", + "id": 30842 }, { - "image_path": "G:\\images\\combined\\002085_jpg.rf.fa23f750748bcee0fa953606a9960595.jpg", - "response": "A group of people standing around a construction site holding umbrellas.", - "id": 230 + "image_path": "G:\\images\\combined\\005018_jpg.rf.9d6d45cea90744bcc5dacf7ffdd295d2.jpg", + "response": "A pair of workers wearing hard hats stand on a platform.", + "id": 30843 }, { - "image_path": "G:\\images\\combined\\002086_jpg.rf.d4a4c6d14af0d5b4fb908955e6da0dd4.jpg", - "response": "A worker in a yellow hard hat and a white mask stands in a dimly lit tunnel. They are wearing an orange vest and a yellow hard hat. They are standing in front of a concrete wall with a red and white striped beam above their head. There are hoses hanging on the wall to the left of the worker and a large spool of wire to the right. The ground is wet in front of the worker and there is a thin stream of water coming from somewhere off camera to the right.", - "id": 231 + "image_path": "G:\\images\\combined\\005019_jpg.rf.492682cd43a8b4ddd90b16f9e0a8826f.jpg", + "response": "This is a picture of a group of people. The man in front is wearing a black suit and a tie. He is holding a black pen. Next to him on the left is a man in a white shirt and black vest. To the right of him is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a yellow hard hat. To the right of the man in the yellow hard hat is a man in a red hard hat. Behind the man in the red hard hat is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a black shirt and black pants. To the right of the man in the black shirt and black pants is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie.", + "id": 30844 }, { - "image_path": "G:\\images\\combined\\002087_jpg.rf.0bf6bc2e5ab2fbd76bf857878a66891f.jpg", - "response": "a group of people standing on a concrete walkway", - "id": 232 + "image_path": "G:\\images\\combined\\00501_jpg.rf.7082d8b4202e37fe0fe805d9f6d20a49.jpg", + "response": "A group of three men looking at a rolled up piece of blueprints in front of a body of water", + "id": 30845 }, { - "image_path": "G:\\images\\combined\\002088_jpg.rf.398b564599381af4a7e6657e9610ef3a.jpg", - "response": "A group of people working on a construction site.", - "id": 233 + "image_path": "G:\\images\\combined\\005021_jpg.rf.d0060c1ef4000d14d1eb5726c173a3f3.jpg", + "response": "A man in a white shirt and blue hat is standing in a bucket of a white truck. He is wearing a grey suit and an orange and white safety vest. The man is holding a grey and orange tool in his right hand. He is looking down at the ground. There are two power lines behind the man. The sky is blue with clouds. There is a white truck to the right of the man.", + "id": 30846 }, { - "image_path": "G:\\images\\combined\\002089_jpg.rf.791a0a54d515cb44a24379be6cbd444d.jpg", - "response": "A group of men standing in front of a building.", - "id": 234 + "image_path": "G:\\images\\combined\\005022_jpg.rf.ce7c454467d7f9e0d540beeb35fce8e6.jpg", + "response": "A couple of men in a field with one of them pointing at something.", + "id": 30847 }, { - "image_path": "G:\\images\\combined\\002090_jpg.rf.2c2ccc71ec0884324fad1fa2c75e7145.jpg", - "response": "A worker in a red shirt and yellow hard hat sits on the ground next to a piece of equipment.", - "id": 235 + "image_path": "G:\\images\\combined\\005024_jpg.rf.4778ae37dff9387ac890beceebe57487.jpg", + "response": " A worker(443,528),(708,997) stands in front of a crane(1,4),(468,997) at a construction site in China.", + "id": 30848 }, { - "image_path": "G:\\images\\combined\\002091_jpg.rf.01a4bd790c5857a3cacfffc7e07b5381.jpg", - "response": "A couple of men wearing hard hats are working on a pipe.", - "id": 236 + "image_path": "G:\\images\\combined\\005025_jpg.rf.898cdc02a7fd53c85bef1664bafe9823.jpg", + "response": "A couple of men working on a cement wall.", + "id": 30849 }, { - "image_path": "G:\\images\\combined\\002092_jpg.rf.dc25f2ed30c38d41128f404ecf8c730f.jpg", - "response": "A group of men in suits and hard hats stand inside an elevator.", - "id": 237 + "image_path": "G:\\images\\combined\\005026_jpg.rf.a6a01b0601363c2006049f3471c8edb5.jpg", + "response": "A group of rescue workers walking through a flooded alley.", + "id": 30850 }, { - "image_path": "G:\\images\\combined\\002093_jpg.rf.89c010581a93a2512d0789deb2a6f355.jpg", - "response": " Three people(395,323),(751,997)(699,305),(997,996)(49,362),(378,997) in high vis vests(399,599),(668,997)(729,601),(997,997)(47,683),(377,997) and hard hats(420,321),(618,513)(696,304),(904,513)(141,362),(378,581) standing in front of a ship", - "id": 238 + "image_path": "G:\\images\\combined\\005028_jpg.rf.ea0164cff6afff960bb09578a3bad0e6.jpg", + "response": "Men(314,13),(497,873)(382,118),(641,996) standing in front of a construction site", + "id": 30851 }, { - "image_path": "G:\\images\\combined\\002094_jpg.rf.1cfb464de964ccc57c0a7a65b7837cf5.jpg", - "response": "A group of people standing in front of a building.", - "id": 239 + "image_path": "G:\\images\\combined\\005029_jpg.rf.2621ce3bee7096ebf8a89f7f261dfde5.jpg", + "response": "The image shows a construction site in China. There are several buildings under construction, with the one on the left being the smallest and the one on the right being the largest. In the middle, there is a red sign that says \"Xiangtan Government Office Building\". There are also several people working on the site, with some standing on the wooden framework of the buildings and others near the red sign. Some of the people are wearing hard hats.", + "id": 30852 }, { - "image_path": "G:\\images\\combined\\002097_jpg.rf.bf8927dfed8179176b3921c0b2b60c47.jpg", - "response": "A man in a yellow hard hat is standing on a ladder. He is working on a ship that appears to be a redish-pink color. There is a cage surrounding the area where the man is working.", - "id": 240 + "image_path": "G:\\images\\combined\\005032_jpg.rf.4618eb4bb4fcb946edfbad3b6052900e.jpg", + "response": "In the image there is a man sitting on a large metal pile of rebar. The man is wearing a red hard hat, a green shirt, and grey pants. He is also wearing white gloves. He is using a tool with a green handle to work with the rebar. The rebar is wrapped in black wire. The man is in the middle of the pile of rebar and there is a yellow and white truck in the background on the left side of the image.", + "id": 30853 }, { - "image_path": "G:\\images\\combined\\002099_jpg.rf.4ab301bfe7228e08af4441a6bd517304.jpg", - "response": "In the image there is a man standing in front of a construction fence that has several\u5e7f\u544a (advertisements) on it. The man is pointing to a map of the construction area. The map is of the \u83b1\u65af\u8d2d\u7269\u5e7f\u573a (Leis Shopping Plaza). The man is wearing a black jacket and black pants. He is also wearing glasses and has short hair. Behind the man, there is a \u83dc\u5e02\u573a (market) with several people in front of it. There are also several \u7535\u7ebf\u6746 (power line poles) in the background.", - "id": 241 + "image_path": "G:\\images\\combined\\005033_jpg.rf.c172b9e34c03dd9e834fd00437fcd2d6.jpg", + "response": "A group of people standing around a bus.", + "id": 30854 }, { - "image_path": "G:\\images\\combined\\0020b616878d2bf2.jpg", - "response": "A red station wagon with the back hatch open, filled with crates and a basket full of goods.", - "id": 242 + "image_path": "G:\\images\\combined\\005034_jpg.rf.4853ff323592222bc82b594c2ba2c035.jpg", + "response": "A group of three people standing in a warehouse.", + "id": 30855 }, { - "image_path": "G:\\images\\combined\\002100_jpg.rf.a3af795d1ff9e2742edf1f33db0de84a.jpg", - "response": "a man in a white shirt(557,175),(697,989)", - "id": 243 + "image_path": "G:\\images\\combined\\005035_jpg.rf.5cd88f409d10ea7f0ef8a5255bd22052.jpg", + "response": "A bridge with train tracks going across it.", + "id": 30856 }, { - "image_path": "G:\\images\\combined\\002101_jpg.rf.ac50075b38ba78459f05f8e46dd09fb0.jpg", - "response": "A worker wearing a yellow hard hat and orange gloves stands on a construction site. He is wearing a black jacket and grey pants. He is holding a grey metal bar and appears to be welding it to a larger metal structure. There are mountains in the background.", - "id": 244 + "image_path": "G:\\images\\combined\\005036_jpg.rf.efdb94d5e474dbde631feb7b682d22e5.jpg", + "response": "A group of men standing in front of a pile of rubble.", + "id": 30857 }, { - "image_path": "G:\\images\\combined\\002102_jpg.rf.81e541da6a6ad1f72698046af74acf1b.jpg", - "response": "A construction worker wearing a grey construction suit and an orange helmet is working on a building.", - "id": 245 + "image_path": "G:\\images\\combined\\005037_jpg.rf.00355a34443a91a4cf56c9b894bf0224.jpg", + "response": "A group of workers inside a tunnel.", + "id": 30858 }, { - "image_path": "G:\\images\\combined\\002103_jpg.rf.7cdb425c628f6e0e3b2559639118cfb0.jpg", - "response": "A pair of workers in orange vests and orange helmets are working in a field. They are cutting a tree branch with a large pair of shears.", - "id": 246 + "image_path": "G:\\images\\combined\\005038_jpg.rf.bcc177feb570716019a08a17bd9c8f4f.jpg", + "response": "An electrician in a blue uniform and hard hat looking at a control panel with many wires and switches.", + "id": 30859 }, { - "image_path": "G:\\images\\combined\\002104_jpg.rf.eff603dc263b88fda6413719fb94841c.jpg", - "response": "A group of three men in blue work uniforms and hard hats are working on a power line. They are standing on top of a roof and appear to be fixing or installing something.", - "id": 247 + "image_path": "G:\\images\\combined\\005039_jpg.rf.813d7d505673851979ff69f444816df1.jpg", + "response": "a group of men standing around a construction site", + "id": 30860 }, { - "image_path": "G:\\images\\combined\\002105_jpg.rf.1b4e94f52f7fdd8af7f5d2a0a6715a7a.jpg", - "response": "A woman in a suit and hard hat is holding a tablet and talking to two men in yellow vests and hard hats. They are standing in front of a large industrial plant.", - "id": 248 + "image_path": "G:\\images\\combined\\00503_jpg.rf.9dc548583ccbcc057b87340d621c0f2e.jpg", + "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", + "id": 30861 }, { - "image_path": "G:\\images\\combined\\002106_jpg.rf.e48ddaa40b0c88247f7e67e7bf3f5228.jpg", - "response": "a group of men standing in front of a drilling machine", - "id": 249 + "image_path": "G:\\images\\combined\\00503_jpg.rf.b563b06667e3c3759a2b17381351b80f.jpg", + "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", + "id": 30862 }, { - "image_path": "G:\\images\\combined\\002107_jpg.rf.d18feb753fee6d01dbb31f37a88fd592.jpg", - "response": "An image of a construction worker taking a drink of water. The worker is wearing a grey shirt, work gloves, a white hard hat, and has a white beard. They are drinking from a blue water bottle. In the background, there is a yellow crane.", - "id": 250 + "image_path": "G:\\images\\combined\\005040_jpg.rf.5344775bef4daebcc7de1e7efe31c3d4.jpg", + "response": "A construction site with multiple workers.", + "id": 30863 }, { - "image_path": "G:\\images\\combined\\002108_jpg.rf.b597ef4cbda10636be72efce179ad9f6.jpg", - "response": "A roofer wearing a white hard hat and work clothes is installing a new roof on a house. The roof is made of wood and the roofer is on the right side of the roof working on it. The sky is blue and the roof is being installed on a clear day.", - "id": 251 + "image_path": "G:\\images\\combined\\005042_jpg.rf.cbc4d0b74b784722823f5f0690fea384.jpg", + "response": "The image shows a man in a blue shirt and blue hat, wearing black boots, kneeling in a large pit filled with water. The man is using some kind of device with two hoses and a handle with two knobs on it, which he is holding above his head. There is a large pipe on the right side of the pit, and the man is leaning towards it. The background shows a wall on the left side of the pit and a wall on the right side of the pit, with only the top part visible.", + "id": 30864 }, { - "image_path": "G:\\images\\combined\\002109_jpg.rf.fb5f06ec0d8353d505baffd0e4a54d73.jpg", - "response": "A group of people looking at a model of a city.", - "id": 252 + "image_path": "G:\\images\\combined\\005043_jpg.rf.1578328150f66ff3affc470e60b494bb.jpg", + "response": "The image shows a city street scene with a few people and buildings. In the foreground, three men are carrying a ladder down the street. They are wearing blue uniforms and yellow hard hats. Another man is walking behind them. To the left of the scene, a person is walking in the opposite direction. The buildings on both sides of the street have air conditioners hanging from their windows.", + "id": 30865 }, { - "image_path": "G:\\images\\combined\\002110_jpg.rf.a0339025a4f98e27dffd49731fc691e4.jpg", - "response": "An entrance with a sign that says '\u4e2d\u56fd\u5efa\u7b51\u7b2c\u4e8c\u5de5\u7a0b\u6709\u9650\u516c\u53f8'. There is also a sign that says '\u4e2d\u94c1\u5efa\u5927\u53a6' and a sign that says '\u4e2d\u94c1\u5efa\u5de5' above a turnstile.", - "id": 253 + "image_path": "G:\\images\\combined\\005044_jpg.rf.b76fb784ba054772ee776c5ed447a0ed.jpg", + "response": "A man and a woman wearing hard hats are standing on a construction site. They are standing on a red ladder. The woman is pointing towards the ceiling of the building. The man is holding a walkie talkie.", + "id": 30866 }, { - "image_path": "G:\\images\\combined\\002111_jpg.rf.66267092de82dda8b93ba8008b4d302b.jpg", - "response": "A construction worker wearing a yellow vest and a white helmet.", - "id": 254 + "image_path": "G:\\images\\combined\\005046_jpg.rf.95851205442dba7695fc3e1868dafc5a.jpg", + "response": " Two workers(417,363),(628,997)(559,368),(652,997) in a tunnel with metal bars(647,622),(997,820)", + "id": 30867 }, { - "image_path": "G:\\images\\combined\\002112_jpg.rf.1c4cebc9a813c02a00743f9868f11a33.jpg", - "response": "a man in a tan suit standing in front of a blue wall", - "id": 255 + "image_path": "G:\\images\\combined\\005047_jpg.rf.270dcb6b065c545831d26f7a3ef1cb71.jpg", + "response": "A man and a woman wearing green safety helmets are looking at a tablet.", + "id": 30868 }, { - "image_path": "G:\\images\\combined\\002113_jpg.rf.3f05704331e6fe1f15700d4d273f8aca.jpg", - "response": "A group of men in blue uniforms and yellow hats are standing in front of a building. They are all holding notebooks and checking something on a grey box. The men are also wearing yellow hats and some of them are carrying backpacks. The building in the background is white and grey and has many windows. There are also many power lines and a grey transformer in the scene.", - "id": 256 + "image_path": "G:\\images\\combined\\005048_jpg.rf.d17d354aa70ce07babe6eabdf892f97c.jpg", + "response": "A group of men standing next to each other.", + "id": 30869 }, { - "image_path": "G:\\images\\combined\\002115_jpg.rf.6c3eb742b24974d93d96b59aeaa4880a.jpg", - "response": "A worker in a factory setting, standing next to a truck carrying steel.", - "id": 257 + "image_path": "G:\\images\\combined\\005049_jpg.rf.3ca201934eb495d1941b233713880ebc.jpg", + "response": "An engineer in an orange uniform giving directions to two excavators.", + "id": 30870 }, { - "image_path": "G:\\images\\combined\\002116_jpg.rf.052f835b985276c9246b3a4a4975ba03.jpg", - "response": "A group of men working on a building.", - "id": 258 + "image_path": "G:\\images\\combined\\00504_jpg.rf.2781cbcc2a1db29ff9c548664cb7de51.jpg", + "response": "A group of men in yellow vests and hard hats are standing on a construction site. Some of the men are holding a white and black sign. There is a car parked to the left of the group and a building to the right. In the background, there is a white sky and some trees.", + "id": 30871 }, { - "image_path": "G:\\images\\combined\\00211783004d27f6.jpg", - "response": "a car engine with the hood open showing the various parts", - "id": 259 + "image_path": "G:\\images\\combined\\00504_jpg.rf.de90e4d13102938eba575ee30831ebb8.jpg", + "response": "A group of men standing in front of a construction site.", + "id": 30872 }, { - "image_path": "G:\\images\\combined\\002118_jpg.rf.aec233e724b33b55fa95bc27c6451440.jpg", - "response": "A group of men working on machinery inside of a factory.", - "id": 260 + "image_path": "G:\\images\\combined\\005050_jpg.rf.fb432f309c7a25acb22e8f3f947eac77.jpg", + "response": "A construction worker is on a ladder and is working on a large pipe.", + "id": 30873 }, { - "image_path": "G:\\images\\combined\\002119_jpg.rf.3ab4954daba018b5f0689665baad8086.jpg", - "response": "The image shows a group of people standing in front of a blue warehouse. They are all wearing yellow vests and white safety helmets. Some of them are also wearing black jackets. In front of the warehouse, there is a large container and a sign with Chinese characters. On the right side of the image, a person on the far right is wearing a white safety helmet and a white shirt.", - "id": 261 + "image_path": "G:\\images\\combined\\005051_jpg.rf.b760f03c528b5d87310483f0c0191616.jpg", + "response": "A group of three people working in a factory. They are standing in front of a large metal machine and are wearing hard hats and masks. There is smoke rising from somewhere in the factory and a pile of coal on the ground.", + "id": 30874 }, { - "image_path": "G:\\images\\combined\\00211cd710311b87.jpg", - "response": "A crowd of people are gathered on a street. One man is holding a sign that says \"Why be afraid\" in bright green letters. Another man is holding a small American flag. A man in a black jacket is holding a sign that says \"Tea Party\" in red letters.", - "id": 262 + "image_path": "G:\\images\\combined\\005052_jpg.rf.f4c346e11907f377c9e8232f5baf0983.jpg", + "response": "A group of men in blue uniforms and hard hats are working on an electrical box. They are all hunched over and focused on the task at hand. One man is kneeling on the ground and reaching up to work on the electrical box. Another man is standing behind him, helping with the process. The third man is standing to the right of the other two, also helping with the work. They are all wearing different colored hard hats and their uniforms are a dark blue.", + "id": 30875 }, { - "image_path": "G:\\images\\combined\\002120_jpg.rf.df9d5dc606d5e98bd08e3cbeef7656d6.jpg", - "response": "A worker is standing on top of steel beams and pulling on a rope. The steel beams are piled up in the foreground and the sky is cloudy.", - "id": 263 + "image_path": "G:\\images\\combined\\005053_jpg.rf.b7e56b8d6bd948ba5a40d075c05f61f6.jpg", + "response": "A group of workers in blue uniforms and yellow hard hats are working on a large construction site. They are standing on a mesh of wire that is laid out on the ground. In the background, there are several large cranes working on the site.", + "id": 30876 }, { - "image_path": "G:\\images\\combined\\002121_jpg.rf.e1f275387da537aec7d2e9edce3efca5.jpg", - "response": "The image shows a construction site with many people working on a building that is still in the framing stage. The workers are scattered across the site, with some working on the left side and others on the right. They are wearing hard hats and uniforms, and there are several red\u5de5\u5177\u5de5\u5177\u548c\u4e00\u4e2a\u767d\u8272\u68af\u5b50\u5728\u5730\u677f\u4e0a.", - "id": 264 + "image_path": "G:\\images\\combined\\005054_jpg.rf.f360351a50b250aeea7e695a47d91513.jpg", + "response": "A man in a white uniform and blue helmet is suspended between two power lines while climbing a transmission tower. He is wearing a tool belt and has a tool in each hand. The sky is blue and cloudless.", + "id": 30877 }, { - "image_path": "G:\\images\\combined\\002122_jpg.rf.473fc0fc5d0afd1d03164ee25df5ec0a.jpg", - "response": "a group of men wearing hard hats", - "id": 265 + "image_path": "G:\\images\\combined\\005055_jpg.rf.0419233b4748e259dc5c8dc4adabd9ab.jpg", + "response": "The image shows a group of workers wearing hard hats and safety vests working on a train track at night. They are using flashlights to illuminate the area and are focused on repairing a section of the track.", + "id": 30878 }, { - "image_path": "G:\\images\\combined\\002123_jpg.rf.654faff8c9e487cb3c9f3d73a1b8e1fd.jpg", - "response": "A worker in front of a building site. The worker is a woman and is wearing a red hard hat. She is also wearing a grey shirt with the number 2 on it. She has a tool in her hand, it is a long tool with a metal head. She is holding the tool up with her arm above her head. She is smiling at the camera. To the right of the worker is a large white pole. In the background of the image there is a building under construction. The building has a metal framework. The walls of the building are covered in a yellow mesh.", - "id": 266 + "image_path": "G:\\images\\combined\\005056_jpg.rf.e0de373f96d813ed4d75cc51b1237fa8.jpg", + "response": "An electrician wearing a white uniform and a red helmet is working on a power pole. He is holding onto a metal rail and has a tool belt around his waist. There is a yellow rag in the tool belt. He is wearing white gloves and has orange safety straps around his waist and legs. There are black electrical wires behind him and a grey power box to his left.", + "id": 30879 }, { - "image_path": "G:\\images\\combined\\002124_jpg.rf.392a0a5b7018410517185b96b2ff74b7.jpg", - "response": "A group of people standing around a truck in a coal mine.", - "id": 267 + "image_path": "G:\\images\\combined\\005057_jpg.rf.d96ed4494b85966a55dd6c703f67104b.jpg", + "response": "A group of men in uniforms and hard hats are working on a bridge.", + "id": 30880 }, { - "image_path": "G:\\images\\combined\\002125_jpg.rf.0680088cff9cc896e9d6969afad5a2e9.jpg", - "response": "A group of men are working together to pull a rope up a snowy hill. They are all wearing hard hats and orange vests. One man is at the top of the hill, and the rest are at the bottom. They are all dressed in blue jackets.", - "id": 268 + "image_path": "G:\\images\\combined\\005059_jpg.rf.280396c8cea15556395befe50b43b102.jpg", + "response": "a group of men standing inside a tunnel", + "id": 30881 }, { - "image_path": "G:\\images\\combined\\002127_jpg.rf.e47d80b7e8d82e96dbe153594761236b.jpg", - "response": "In the image there is a man wearing a yellow hat and a blue shirt standing next to a large solar panel. He is touching the panel with both hands and appears to be working on it. The solar panel is a large, shiny silver color and covers most of the image. In the background, there are a few other people and some mountains.", - "id": 269 + "image_path": "G:\\images\\combined\\00505_jpg.rf.533b2d249371138c4ea02d5ec0d4c523.jpg", + "response": "A woman with a red helmet and a white dress is standing in front of a group of men. The men are also wearing red helmets. They are all wearing white. The woman is holding a white fan. They are standing in front of a construction site.", + "id": 30882 }, { - "image_path": "G:\\images\\combined\\002128_jpg.rf.2e6a2e378b0755cea81230107bba0a7f.jpg", - "response": "The image shows three workers in yellow jackets and white helmets who are repairing a power line. They are standing on a lift, which has the words \"\u676d\u5dde\u7231\u77e5\" written on the side. The workers are wearing yellow jackets and have their sleeves rolled up. One of them is using a tool to work on the power line, which is suspended between two orange poles. The lift is positioned next to a white car and a tree. The workers are focused on their task, and one of them is holding a rope to maintain his balance.", - "id": 270 + "image_path": "G:\\images\\combined\\005061_jpg.rf.2e0516ba572f2544956d34f14d80cb2f.jpg", + "response": "The photo shows Premier Li Keqiang visiting the construction site of the Hong Kong-Zhuhai-Macau Bridge in Zhuhai, south China's Guangdong Province, April 11, 2017. He was accompanied by Pan Yiyi, governor of Guangdong Province, and Hong Kong-Zhuhai-Macau Bridge Project Director Li Xinchuang. The premier was informed of the progress of the construction work and the safety measures being taken. He also talked with workers and staff about their work and living conditions.", + "id": 30883 }, { - "image_path": "G:\\images\\combined\\002129_jpg.rf.c5a3f6383fdf381d5374e12dc53188bb.jpg", - "response": "In the image, a couple of men are working on a train track. They are wearing orange vests and hard hats. One man is kneeling on the track while the other one is standing. They seem to be in the middle of an outdoor construction site.", - "id": 271 + "image_path": "G:\\images\\combined\\005062_jpg.rf.f84bb2e7fb58589654eca74d21b03a90.jpg", + "response": "A group of men working on a construction site.", + "id": 30884 }, { - "image_path": "G:\\images\\combined\\002130_jpg.rf.d68bd0b7e637f9784611963736866df3.jpg", - "response": "In the image there is a worker wearing a blue uniform and a yellow helmet who is working on a large metal cylinder. The worker is putting a sticker on the metal cylinder. The background of the image is grey.", - "id": 272 + "image_path": "G:\\images\\combined\\005063_jpg.rf.420ea3127578b788a411320ace7ecd9f.jpg", + "response": "The image shows a large battleship on a dry dock. The battleship is painted grey and gold and is docked in a large body of water. There are several people in the image, including one person walking in front of the battleship and another person wearing a hard hat. Some people are wearing uniforms and there are several pairs of shoes in the image. The battleship has many nooks and crannies and is surrounded by several other boats.", + "id": 30885 }, { - "image_path": "G:\\images\\combined\\002131_jpg.rf.b287ca7d39e56127036e84a16fc01e49.jpg", - "response": "A construction worker in a blue uniform and hard hat is kneeling on the ground, working on a grid of rebar. The rebar is being used to reinforce concrete.", - "id": 273 + "image_path": "G:\\images\\combined\\005064_jpg.rf.32547212bbeecd2485fcd78d5c376895.jpg", + "response": "In the image two workers wearing yellow helmets are seen. They are wearing blue color overalls. One worker is seen carrying a glass material on his shoulder. Another worker is seen carrying a coiled up material on his shoulder. There are two electric poles in the background. One of the electric poles is made of metal and it is painted grey. Another electric pole is made of wood and it is painted brown. The sky is blue with clouds. There are two birds flying in the sky. One bird is flying towards the left side of the image and another bird is flying towards the top right side of the image.", + "id": 30886 }, { - "image_path": "G:\\images\\combined\\002132_jpg.rf.27d3f365835d65ff1313dc7d78768d63.jpg", - "response": "A couple of men standing in front of a rock wall", - "id": 274 + "image_path": "G:\\images\\combined\\005065_jpg.rf.ad99bc292548ac63312fbb96db3e82c6.jpg", + "response": "a man(349,296),(619,996) in a mine", + "id": 30887 }, { - "image_path": "G:\\images\\combined\\002133_jpg.rf.9450651834131112cc3351ea571f6aaa.jpg", - "response": "A group of men standing under a tent.", - "id": 275 + "image_path": "G:\\images\\combined\\005066_jpg.rf.2a7f2a06168d5e588e9b7a7e107c731a.jpg", + "response": "In the image there are three people standing in a field of dirt. They are all wearing hard hats. The person on the left is holding a rolled up blueprint.", + "id": 30888 }, { - "image_path": "G:\\images\\combined\\002134_jpg.rf.987b3d42f178afb59f0d1fde162fec64.jpg", - "response": "A group of men standing around a map that is placed on a board.", - "id": 276 + "image_path": "G:\\images\\combined\\005067_jpg.rf.2ca444a08ea155c38b2b5697efbd32f2.jpg", + "response": "A group of men in suits and hard hats stand in a construction site.", + "id": 30889 }, { - "image_path": "G:\\images\\combined\\002135_jpg.rf.612064a3663ac66b0fcde918dc3abe22.jpg", - "response": "The picture shows some people are gathered in the courtyard of a grey building. Some of them are carrying black bags. One of the men is wearing a red shirt and grey pants. Another man is wearing a white shirt and black pants. A man in a black suit is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. She is holding a book in her hand and a pen in another hand.", - "id": 277 + "image_path": "G:\\images\\combined\\005068_jpg.rf.b220b64d7cdbee3d4b28bea89a9b4bd3.jpg", + "response": "A man in a blue shirt and blue hat working on power lines at night.", + "id": 30890 }, { - "image_path": "G:\\images\\combined\\0021364dbb9756ff.jpg", - "response": "A young boy in a white shirt and jeans kneeling on the floor in front of a box.", - "id": 278 + "image_path": "G:\\images\\combined\\005069_jpg.rf.0f01d3b46f2d5ecae66dfda00bd8f6be.jpg", + "response": "A man working on some power lines", + "id": 30891 }, { - "image_path": "G:\\images\\combined\\002136_jpg.rf.a8bc03f87bd3e8343ec420e83ff359a3.jpg", - "response": "A group of men wearing hard hats are gathered around a doorway. Some of them are holding a cell phone.", - "id": 279 + "image_path": "G:\\images\\combined\\00506_jpg.rf.7c3966575bb94853eceb91569c66901b.jpg", + "response": "A group of workers walking on a bridge with a sign that says in Chinese \u65bd\u5de5\u91cd\u5730 \u9605\u4eba\u514d\u8fdb.", + "id": 30892 }, { - "image_path": "G:\\images\\combined\\002137_jpg.rf.2172732116549cbc404e024f79f01e62.jpg", - "response": "A group of workers wearing hard hats are working on a ship.", - "id": 280 + "image_path": "G:\\images\\combined\\00506_jpg.rf.848a7d637448985b3507cfa7944f3887.jpg", + "response": "A group of workers walking on a bridge.", + "id": 30893 }, { - "image_path": "G:\\images\\combined\\002138_jpg.rf.7db154958a6427ade9a1f6b5fec293f4.jpg", - "response": "a group of men standing around a construction site", - "id": 281 + "image_path": "G:\\images\\combined\\005071_jpg.rf.8d0996c026b32875ce5d59daec4e2234.jpg", + "response": "A group of men are gathered around a white board. One man is pointing at a map while the others are watching. In the background, there is a bridge and a car.", + "id": 30894 }, { - "image_path": "G:\\images\\combined\\002139_jpg.rf.b5f3a4c065e8fafed4ea7ec1a3f7e8f6.jpg", - "response": "The image shows two workers on a power line. They are wearing blue uniforms and white hard hats. They are standing on a metal platform and are working on the power line. The sky is blue and clear.", - "id": 282 + "image_path": "G:\\images\\combined\\005072_jpg.rf.4c48b9c26d82465cf1489d32ebc3096b.jpg", + "response": " Men(699,671),(912,890)(457,571),(631,769) carrying a large tire(637,697),(938,938) up a steep hill", + "id": 30895 }, { - "image_path": "G:\\images\\combined\\002140_jpg.rf.3545f883aa039e02e7fa9b00a194b6b6.jpg", - "response": "Four men in blue shirts and hard hats stand in a semi-circle, looking at a blueprint. They are all wearing red hard hats. One man is pointing to a part of the blueprint. The building behind them is only partially constructed, with scaffolding in front of it and a sign reading \"\u79d1\u5b66\u53d1\u5c55 \u5171\u5efa\u548c\u8c10 \u5bcc\u5f3a\u6c11\u4e3b\u7684\u5341\u4e03\u5927\u7cbe\u795e\" hanging on the second story.", - "id": 283 + "image_path": "G:\\images\\combined\\005073_jpg.rf.f038ac193a7cf5b6144b6faab7932f63.jpg", + "response": "A construction site with three workers visible. They are working on a scaffold.", + "id": 30896 }, { - "image_path": "G:\\images\\combined\\002141_jpg.rf.471ffb10d6d5598735f2ca91b3885e6f.jpg", - "response": "The image shows three workers carrying a large spool of grey wire over their shoulders. They are wearing blue uniforms and blue hats. In the background, there are a few trees and some mountains.", - "id": 284 + "image_path": "G:\\images\\combined\\005074_jpg.rf.1a30a7a9501957fec30cda6463482b40.jpg", + "response": "A man in an orange hard hat is working on a piece of machinery. He is wearing a red shirt and has a tool belt around his waist. He is standing on a muddy patch and there is a drop of water on the end of a tool he is holding. There is a second man in the background, wearing a white shirt and a black jacket. He is also wearing a hard hat. In the background, there is a red object that looks like a triangle with a point.", + "id": 30897 }, { - "image_path": "G:\\images\\combined\\002142c669f5b1b7.jpg", - "response": "A woman in a blue and orange tank top and black shorts is wearing roller skates and has her hands on her hips.", - "id": 285 + "image_path": "G:\\images\\combined\\005075_jpg.rf.fd3ae6bf73072f530738d3c2c846708e.jpg", + "response": "A worker in a blue hard hat and grey winter jacket is holding a device with a screen in front of a large power station.", + "id": 30898 }, { - "image_path": "G:\\images\\combined\\002142_jpg.rf.bc48c0aff61b7a6f809d820ff81a8c74.jpg", - "response": "A group of workers wearing yellow hats are shoveling dirt.", - "id": 286 + "image_path": "G:\\images\\combined\\005076_jpg.rf.73387e410adad93d27e9be4c506ebe49.jpg", + "response": "In the image, two technicians are working on an electrical cable. They are both dressed in work clothes and are wearing hard hats. One of the technicians is on the left side of the image, while the other is on the right. The technician on the left is kneeling on the ground and is working on the cable. The technician on the right is standing and is also working on the cable. The scene is set outdoors, with green plants in the background.", + "id": 30899 }, { - "image_path": "G:\\images\\combined\\002143_jpg.rf.e2ebb4a09d1e31418bc66c4ab01f870d.jpg", - "response": "A mine rescue team sprays foam into the mine to extinguish the fire.", - "id": 287 + "image_path": "G:\\images\\combined\\005077_jpg.rf.ef0880927b2f81df8db62c0193e22ad1.jpg", + "response": "Three men in a construction site, two of them are wearing yellow and orange safety vests and white helmets, the one on the right is an old man with grey hair and blue shirt, he is holding a set of blueprints.", + "id": 30900 }, { - "image_path": "G:\\images\\combined\\002145_jpg.rf.2ea5c90a50f7b43c0a972e33174eec7d.jpg", - "response": "A man in a snowy field is fixing a power line.", - "id": 288 + "image_path": "G:\\images\\combined\\005078_jpg.rf.ce7d9b6eea8de6223129be536239ff06.jpg", + "response": "A worker in a factory is looking at a monitor.", + "id": 30901 }, { - "image_path": "G:\\images\\combined\\002146_jpg.rf.260abdf2e64f58bd3352e0fad09a10ae.jpg", - "response": "Two National Grid representatives in front of a power line", - "id": 289 + "image_path": "G:\\images\\combined\\00507b5d6fdd6468.jpg", + "response": "An iPhone sitting on a wooden table.", + "id": 30902 }, { - "image_path": "G:\\images\\combined\\002147_jpg.rf.f52dbe4f6ab89613b25a3d7ded2827ec.jpg", - "response": "In the image there is a person wearing a blue jacket and a red helmet. They are crouching down and working on a large piece of concrete. The person is also holding a long tool in their hand. In the background, there are several large, old, white and green containers. The ground around the person and the containers is covered with gray concrete.", - "id": 290 + "image_path": "G:\\images\\combined\\00507_jpg.rf.ffd9413ea6941479b8bbe53a31052040.jpg", + "response": "The image shows a group of men standing on a construction site, wearing hard hats and coats. They are standing in front of a pile of dirt and a partially constructed building. Some of the men are also wearing ties. In the background, there is a mountain.", + "id": 30903 }, { - "image_path": "G:\\images\\combined\\002148_jpg.rf.0e9ae078afe4c9d722da6eea409603a6.jpg", - "response": "In the image there are three men working on a construction site. They are all dressed in orange and blue work clothes and are wearing hard hats. The man in the middle is holding a wire and is in the process of cutting through a concrete wall. The man on the left is crouching down and the man on the right is holding a white device. The sky is bright and white in the background.", - "id": 291 + "image_path": "G:\\images\\combined\\005080_jpg.rf.97db274e81b3059e0d9e3179b66129b4.jpg", + "response": "In the image there are two construction workers wearing blue and red hard hats standing on the right hand side. In front of them is a large metal object on the ground. To the left of the workers is a large metal pipe. In the background there is a forest of trees. In the middle ground there is a dirt road. To the far left of the image there is a yellow flowering plant.", + "id": 30904 }, { - "image_path": "G:\\images\\combined\\002149_jpg.rf.ac34b72a0e0b80a04fd828816eefe8b1.jpg", - "response": "A group of men standing around each other.", - "id": 292 + "image_path": "G:\\images\\combined\\005081_jpg.rf.69164b700991365983d3cde2c25d6146.jpg", + "response": "a group of people standing around each other", + "id": 30905 }, { - "image_path": "G:\\images\\combined\\00214a12ff8112fb.jpg", - "response": "A store with a sign that says Mealtime.", - "id": 293 + "image_path": "G:\\images\\combined\\005082_jpg.rf.6d68baf028da3a359faad5089e45191d.jpg", + "response": "Four men in front of a construction site", + "id": 30906 }, { - "image_path": "G:\\images\\combined\\002150_jpg.rf.150f58a2e277944bd63266a01031a88f.jpg", - "response": "a group of people standing under umbrellas", - "id": 294 + "image_path": "G:\\images\\combined\\005083_jpg.rf.5dc4450d59dfdca49b7c3b911a995b0f.jpg", + "response": "A group of three people standing in front of a substation.", + "id": 30907 }, { - "image_path": "G:\\images\\combined\\002151_jpg.rf.e4ae26be99523d04f2cd2c8e882ba04a.jpg", - "response": "In the image there is a construction site with multiple stacks of steel bars and a worker in a red hat and black clothes standing on the top of a platform. The worker is working on the steel bars with tools in their hands.", - "id": 295 + "image_path": "G:\\images\\combined\\005084_jpg.rf.e446b6a9da9634c8fda627844315a753.jpg", + "response": "A man wearing a blue and red striped shirt and a yellow hard hat sits on the front of a yellow bulldozer. The bulldozer is on a dirt field. The man is holding a set of blueprints.", + "id": 30908 }, { - "image_path": "G:\\images\\combined\\002152_jpg.rf.b8494d0327c386be95d107c6425c9bf6.jpg", - "response": "A group of three construction workers looking at blueprints on a jobsite.", - "id": 296 + "image_path": "G:\\images\\combined\\005085_jpg.rf.851d042d958a3c0f8f6beb7f1e37f7d5.jpg", + "response": "A group of people standing in a construction site wearing high visibility vests and hard hats, looking at a blueprint.", + "id": 30909 }, { - "image_path": "G:\\images\\combined\\002153_jpg.rf.6f055d814d1c08099eb63b7c44016d18.jpg", - "response": "The image shows two men sitting at a table with a red tablecloth. The man on the left is wearing a black jacket and white shirt, and the man on the right is wearing a grey jacket and white shirt. Both men are wearing ties. The room has several chairs, some of which are placed against the wall, which has a red frame. On the wall, there is a large piece of paper with blue characters. The table has two cups and two small packages.", - "id": 297 + "image_path": "G:\\images\\combined\\005086_jpg.rf.501efdef9d2cf2d312ba21f3be077db5.jpg", + "response": "The image shows two workers in a large tunnel. They are standing inside a circular tunnel, which appears to be a pipeline. The tunnel is grey in color. The left worker is wearing a yellow helmet and a blue shirt with his arm raised, he is holding a large wrench over the right worker who is wearing a blue shirt and a yellow helmet, he is holding a small wrench. There is a white arrow on the left side of the tunnel pointing to the right. The tunnel is surrounded by concrete.", + "id": 30910 }, { - "image_path": "G:\\images\\combined\\002154_jpg.rf.224c8d7f08be292e5de5f223dc87d868.jpg", - "response": "A man in a hard hat standing in front of pipes and machinery.", - "id": 298 + "image_path": "G:\\images\\combined\\005087_jpg.rf.d220d37dacf4c96c9dd4d8b97f069a43.jpg", + "response": "The image shows a group of men working in a cave. They are standing on a wooden platform and are working on a large rock formation. The men are wearing helmets and the one on the left is holding a large pick ax.", + "id": 30911 }, { - "image_path": "G:\\images\\combined\\002155_jpg.rf.60ef5d1071381ec5aaab3722371b1f7b.jpg", - "response": "In the image there are three people working on a rock wall. They are wearing hard hats and orange work suits. The person in the foreground is crouching down and is holding a pick ax. They are digging into the rock wall. There is a net to the left of the person in the foreground. The person working on the right side of the image is holding a large tool with a wooden handle. The rock wall is a mustard yellow color with brown stains running down it. There is a wire strung up on the right side of the image.", - "id": 299 + "image_path": "G:\\images\\combined\\005089_jpg.rf.2e97996311ef30c115f5d185caf91be2.jpg", + "response": "A man wearing a grey shirt and orange vest is driving a bulldozer. He is wearing a grey hard hat and glasses. The bulldozer is driving on a construction site and there is a building in the background. There is a yellow pole on the right side of the image.", + "id": 30912 }, { - "image_path": "G:\\images\\combined\\002156_jpg.rf.d5b56330220fa2e3f32db10ac09a04f8.jpg", - "response": "A group of people standing in front of a large sign that says ''\u6837\u677f\u5c55\u793a\u533a\u8d28\u91cf\u610f\u8bc6\u300d\u300c\u63d0\u5347\u8d28\u91cf\u610f\u8bc6\u6837\u677f\u5c55\u793a\u533a\u300d in both English and Chinese. They are all wearing yellow hard hats, which is an item you would wear while construction.", - "id": 300 + "image_path": "G:\\images\\combined\\00508_jpg.rf.67e2bd8d11f27853c9fb303defc76b9e.jpg", + "response": "In the image there are several construction workers wearing orange vests who are working on a construction site. In the foreground, three workers are working on a structure made of concrete and steel rebar. A yellow excavator is parked on the right side of the image. In the background, another excavator is visible. A part of a white building is visible at the top left corner of the image.", + "id": 30913 }, { - "image_path": "G:\\images\\combined\\002158_jpg.rf.48ecf33cf976ea748dba32d313d721f2.jpg", - "response": "A group of men in camouflage and hard hats are huddled around a metal cylinder that is sticking out of the ground. They are all working together to secure the cylinder in the ground.", - "id": 301 + "image_path": "G:\\images\\combined\\00508_jpg.rf.a579c6ea9ebe31fe1fbb979e67aeb34f.jpg", + "response": "In the image there are several construction workers at a construction site. They are working on a structure that appears to be a foundation for a building. There is a bulldozer parked on the right side of the image. The workers are wearing safety gear including hard hats and are standing on a wooden platform.", + "id": 30914 }, { - "image_path": "G:\\images\\combined\\002159_jpg.rf.abd62349ffd51db07253644f4eb85527.jpg", - "response": "A group of men in business attire and hard hats are standing in a construction site. They are all wearing different colored hard hats. One man is wearing a blue hat, one is wearing a red hat, one is wearing a black hat, and one is wearing a red hat with a white chin strap. They are all looking off to the left. In the background, there is a wall with a window and a door. There is also a pipe running along the top of the wall.", - "id": 302 + "image_path": "G:\\images\\combined\\005090_jpg.rf.f4e5297be7d1ba5c5e5b735ae70368cf.jpg", + "response": "a group of men wearing hard hats standing in a unfinished room", + "id": 30915 }, { - "image_path": "G:\\images\\combined\\002160_jpg.rf.7675bafa5b3235e9a7baa4fa3ef24bf0.jpg", - "response": "A couple of men working on a construction site.", - "id": 303 + "image_path": "G:\\images\\combined\\005091_jpg.rf.6bb71349e075a67c97deb247515537ad.jpg", + "response": "A group of men standing in a hallway.", + "id": 30916 }, { - "image_path": "G:\\images\\combined\\002162_jpg.rf.a3249b555bf24b89b0fe14c51301101c.jpg", - "response": "A group of three men wearing blue hard hats are working on a large grey box.", - "id": 304 + "image_path": "G:\\images\\combined\\005092_jpg.rf.f8f94a90ea72fcb73b69544d2451e042.jpg", + "response": "Two men(305,168),(518,892)(568,150),(713,900) wearing yellow vests(582,269),(698,537)(341,275),(460,511) and red helmets(587,149),(665,226)(369,169),(443,236) standing in front of a construction site", + "id": 30917 }, { - "image_path": "G:\\images\\combined\\002163_jpg.rf.3ead86e733adfdaf3f6892264a601b6f.jpg", - "response": "The image shows two workers in blue uniforms and white helmets repairing a transformer. They are standing on a small platform and seem to be working on the transformer which is mounted on a tall pole. The transformer is grey and black and has a sign on it warning of no entry. The workers are accompanied by a co-worker who is holding a tool. The background is a mix of green palm trees and a blue sky.", - "id": 305 + "image_path": "G:\\images\\combined\\005093_jpg.rf.859832742e20857bc4b348808221cbb1.jpg", + "response": "A man(671,256),(975,996) standing in front of a construction site", + "id": 30918 }, { - "image_path": "G:\\images\\combined\\002164_jpg.rf.b99f596b80575758a01a5301ed972b1d.jpg", - "response": "In the image, three people are standing in a construction site wearing red helmets. The person on the left is a woman with a brown coat and a pink helmet. She is writing something in a notebook. The person in the middle is also a woman, she is wearing a red suit and a red helmet with yellow letters on it. She is holding a pencil. The person on the right is a man, he is wearing a black coat and a helmet. He is smiling at the woman on the left. There is a yellow tripod next to him. On the right side of the image, there are two yellow surveying instruments.", - "id": 306 + "image_path": "G:\\images\\combined\\005094_jpg.rf.a1dba20d6e8debea22f28ee3ec7fb8dd.jpg", + "response": "A group of four men standing next to each other wearing hard hats.", + "id": 30919 }, { - "image_path": "G:\\images\\combined\\002165_jpg.rf.018aa94c20a120ef8d82671707c7a1a1.jpg", - "response": "a group of people standing in a field", - "id": 307 + "image_path": "G:\\images\\combined\\005095_jpg.rf.bfb70a4c05dd823a4d30124025c209e5.jpg", + "response": "In the image, there are three people visible, all wearing safety gear. They are working on a power line that is located over a river and a bridge. The two people in the foreground are wearing green and tan uniforms and are focused on their task. The third person, who is further back, is also wearing green and tan but is looking up at the power line. The image was taken in a location with mountains in the background.", + "id": 30920 }, { - "image_path": "G:\\images\\combined\\002166_jpg.rf.2b87281eb23e8291a4baecf80bd8836e.jpg", - "response": "The image shows three workers in orange jumpsuits and yellow hard hats standing in a small pit in a lush green field. They are looking down at something in the pit. One of the workers is holding a large metal pole.", - "id": 308 + "image_path": "G:\\images\\combined\\005096_jpg.rf.f18b4589008c9b859ab552fdf5f2d665.jpg", + "response": "A group of people wearing hard hats are standing in front of a yellow and red banner. Some of the people are wearing red or blue jackets. In the background, there is a building and a forest.", + "id": 30921 }, { - "image_path": "G:\\images\\combined\\002167_jpg.rf.a8452ce483f5bd9d8f25e02b78365a39.jpg", - "response": "In the image two workers are standing under an electrical tower. They are both wearing red helmets and the worker on the right is also wearing a yellow vest. The electrical equipment is grey and the workers are standing on a grey concrete pad. There is a red electrical box to the left of the workers and a yellow and black sticker on the grey electrical tower they are standing next to.", - "id": 309 + "image_path": "G:\\images\\combined\\005097_jpg.rf.9693e694c4faee6a4628016b991e3bd0.jpg", + "response": "A man in a suit holding a rolled up paper and wearing a hard hat points to something in the distance. He is surrounded by several other people, some wearing hard hats as well. They are all standing in a construction area with several buildings under construction. One of the buildings has a large red and white sign on it. There are also several people in the background wearing orange vests.", + "id": 30922 }, { - "image_path": "G:\\images\\combined\\002168_jpg.rf.555625b4d962f7b72ae775944de77835.jpg", - "response": "The image shows a construction site with a large piece of pipe on the ground and two men in the foreground. The men are wearing hard hats and one is holding a long stick. In the background, there is a red and orange piece of heavy equipment, possibly a backhoe, digging up the ground. There are also two smaller pieces of equipment further back. The sky is grey and overcast.", - "id": 310 + "image_path": "G:\\images\\combined\\005098_jpg.rf.e417c7d30c2f21121c9b781fe7e5a5a9.jpg", + "response": "A group of people in uniforms and hard hats are standing around a man who is kneeling down in front of a large pipe. They appear to be working on some kind of construction or repair project.", + "id": 30923 }, { - "image_path": "G:\\images\\combined\\002169_jpg.rf.fc6f9f0a9b579aa2d2e6f86cfb6648b7.jpg", - "response": "A group of people working on a construction site.", - "id": 311 + "image_path": "G:\\images\\combined\\005099_jpg.rf.3ff561fd8f50075b7d02317c63b8d886.jpg", + "response": "A group of four men wearing hard hats stand in front of a tall metal structure. They are looking at plans in a book.", + "id": 30924 }, { - "image_path": "G:\\images\\combined\\002170_jpg.rf.ee27f15f22c59e9d493c4456d710acdf.jpg", - "response": "The image shows a large, long tunnel with a concrete interior. The tunnel is double barrel in shape, with two circular tunnels set side by side. The tunnel is currently under construction, with two workers in blue hard hats inspecting the\u96a7\u9053. The workers are standing in the tunnel, with one on the left and one on the right. They are both holding blue pipes.", - "id": 312 + "image_path": "G:\\images\\combined\\00509_jpg.rf.befec09821f0f2640765bf3f0d22366f.jpg", + "response": "A man in a white shirt and tan pants is talking to a group of people in front of a construction site. They are all wearing white or yellow hard hats. In the background, there is a large yellow and white crane and a hill with trees.", + "id": 30925 }, { - "image_path": "G:\\images\\combined\\002171_jpg.rf.83e44a8aa8e02c76269741a5ce5873da.jpg", - "response": "A group of workers in blue work on a railway.", - "id": 313 + "image_path": "G:\\images\\combined\\0050b38009326935.jpg", + "response": "A busy street at night with many people walking around. There are many signs in the background, including a red sign that says \"Wild One\" in white and red.", + "id": 30926 }, { - "image_path": "G:\\images\\combined\\002172_jpg.rf.c77a42c737f4dc43529950d9712b1422.jpg", - "response": "A man wearing an orange hard hat and an orange and yellow vest standing in front of a fence and power generators.", - "id": 314 + "image_path": "G:\\images\\combined\\0050f1943a5a1a89.jpg", + "response": "A table with a red table cloth on it with a sign that says TDLTC.", + "id": 30927 }, { - "image_path": "G:\\images\\combined\\002173_jpg.rf.1341bad946e36548c61782a80a089583.jpg", - "response": "A man wearing a yellow hat and green pants working on a building.", - "id": 315 + "image_path": "G:\\images\\combined\\005100_jpg.rf.8192e459343b86c750f4b702ae78cfdc.jpg", + "response": "A group of people working on a foundation for a building.", + "id": 30928 }, { - "image_path": "G:\\images\\combined\\002174_jpg.rf.76b076b9e5e39ef8493bc374e42cd8a7.jpg", - "response": "a group of people walking down a sidewalk", - "id": 316 + "image_path": "G:\\images\\combined\\005101_jpg.rf.0064d4f6086da16cb1e26c404a6b6285.jpg", + "response": "A group of people standing in a parking lot.", + "id": 30929 }, { - "image_path": "G:\\images\\combined\\002175_jpg.rf.aef0a198d6610cdfe1585a02493076c0.jpg", - "response": " Two men(156,169),(388,829)(257,10),(764,996) in hard hats(289,9),(513,237)(138,169),(338,318) and high visibility vests(399,286),(763,997)(157,415),(386,818) standing in front of a building", - "id": 317 + "image_path": "G:\\images\\combined\\005102_jpg.rf.f4240e46f927c4b97fbad842f094b95d.jpg", + "response": "a group of men standing under red umbrellas", + "id": 30930 }, { - "image_path": "G:\\images\\combined\\002176_jpg.rf.e029ff8d73b0091c462cee087365743b.jpg", - "response": "A group of four men standing in front of a long row of cement walls.", - "id": 318 + "image_path": "G:\\images\\combined\\005103_jpg.rf.d2985650b8c44548ec910fe675bc9c14.jpg", + "response": "In the image there are two men wearing blue jeans and yellow hard hats. They are standing in front of a building under construction. The man on the left is wearing a white shirt and a tool belt. The man on the right is wearing a plaid shirt and a blue t-shirt. He is also wearing a watch on his left wrist. Both men are holding their hands in a conversational pose.", + "id": 30931 }, { - "image_path": "G:\\images\\combined\\002178_jpg.rf.74668f5ddf2be1d86f751fe9db819b23.jpg", - "response": "a group of men wearing hard hats", - "id": 319 + "image_path": "G:\\images\\combined\\005105_jpg.rf.5eca12dc13aab71bf7f6acfee843f306.jpg", + "response": "The image shows a man working on a construction site. He is wearing a red hard hat, blue shorts, a white shirt with blue stripes, and grey shoes. The man is holding a large pipe in his right hand and appears to be working on it. There are several other pipes lying on the ground around him. The ground is muddy and there is a puddle of water to the left of the man. The background shows a pile of brown dirt and debris.", + "id": 30932 }, { - "image_path": "G:\\images\\combined\\002179_jpg.rf.8b58743fb37af41f915180c8c57d407b.jpg", - "response": " A worker(367,302),(521,904) walks through a section of the tunnel.", - "id": 320 + "image_path": "G:\\images\\combined\\005106_jpg.rf.c674a68a5415883bcb84b99f00aa84fe.jpg", + "response": "There are two people in the image, a man and a woman, both of them are wearing hard hats. The woman is sitting on the floor and looking at a laptop, which is placed in front of her. The man is standing next to her, looking at the laptop screen as well. They are both in a large, unfinished building with a lot of construction materials around them.", + "id": 30933 }, { - "image_path": "G:\\images\\combined\\0021804a9f9d5db6.jpg", - "response": "A black car parked on a brick road.", - "id": 321 + "image_path": "G:\\images\\combined\\005107_jpg.rf.4b4ce9a61a746ce831812d777498f040.jpg", + "response": "A group of six men standing in front of a machine.", + "id": 30934 }, { - "image_path": "G:\\images\\combined\\002180_jpg.rf.dc1edd1143f5efa2e07b67a272f6bc3a.jpg", - "response": "Men walking through a construction site wearing hard hats", - "id": 322 + "image_path": "G:\\images\\combined\\005108_jpg.rf.9c0a5e771e861bb502e0ae3b683870e8.jpg", + "response": "An electrician wearing a hard hat and safety glasses is working on a large piece of equipment. He is holding a tool in his hand and is looking at it while standing in front of the equipment. The electrician is wearing a blue shirt and has a beard.", + "id": 30935 }, { - "image_path": "G:\\images\\combined\\002181_jpg.rf.deec617afb35372b73b19857ce6c80ad.jpg", - "response": "A group of workers in red uniforms and blue helmets are standing on yellow scaffolding on a green bridge that is being built over a river. The bridge is made of bamboo and the river is green. There is a boat in the river.", - "id": 323 + "image_path": "G:\\images\\combined\\005109_jpg.rf.93d3e9d4b8f7b1501db2803ba8e54438.jpg", + "response": "In the image there is a group of workers working on a bridge. The bridge is grey and made of cement. There is a truck on the left side of the image, next to the workers, that is pouring concrete. There are four people in the image, three of them are working on the bridge and the fourth one is standing next to the truck. One of the workers is holding a shovel and there are two hoses coming from the truck. The sky is blue with some clouds and there is greenery in the background.", + "id": 30936 }, { - "image_path": "G:\\images\\combined\\002182_jpg.rf.b9caf1bdc4f5fd0191985cfa78113bfa.jpg", - "response": "The image shows two people hiking up a steep, rocky trail. They are both dressed in bright orange and green coveralls and orange helmets. The person on the left is wearing a green coverall and carrying a pick ax. The person on the right is wearing an orange coverall. They are both wearing orange helmets. The sky in the background is overcast.", - "id": 324 + "image_path": "G:\\images\\combined\\00510a8d1b746d21.jpg", + "response": "The image shows a street scene with a focus on a car and an ambulance. The car is painted in yellow, green, and blue stripes and is parked next to the ambulance. The ambulance is white with green and blue stripes. The car has a yellow circle with a black line through it on the driver's side door.", + "id": 30937 }, { - "image_path": "G:\\images\\combined\\002183_jpg.rf.9d84b89fcbc34d23b44fc8dab6886737.jpg", - "response": "A group of people working on a construction site.", - "id": 325 + "image_path": "G:\\images\\combined\\00510_jpg.rf.d0203944fb25b9fcbd7fc01e9f64e693.jpg", + "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and standing under a large object.", + "id": 30938 }, { - "image_path": "G:\\images\\combined\\002184_jpg.rf.a64630d87f9bd629691871ccca21d7b7.jpg", - "response": "A construction worker in an orange vest and yellow hard hat stands on the side of a road. He is directing a yellow machine, possibly a steamroller, which is working on the road. The road is a two lane highway with a yellow line painted down the center. There are two orange and white traffic cones on the side of the road. The sky is overcast and there are trees in the background.", - "id": 326 + "image_path": "G:\\images\\combined\\00510_jpg.rf.f9a2d489c6000262a825e6c6a3820375.jpg", + "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and are standing in a semi-circle. They are all looking in the same direction.", + "id": 30939 }, { - "image_path": "G:\\images\\combined\\002185_jpg.rf.fcc9ccdbb7b37d288232c1fce8ac7359.jpg", - "response": "a group of people standing around in a field", - "id": 327 + "image_path": "G:\\images\\combined\\005110_jpg.rf.317c3200f32cb67c53fca61282bb8c68.jpg", + "response": "A worker in a red hard hat and camouflage jacket is sitting on a yellow metal platform and holding a large metal hook with a thick rope attached to it. He is looking off to the right of the camera. In the background, there is a forest and a foggy sky.", + "id": 30940 }, { - "image_path": "G:\\images\\combined\\002186_jpg.rf.ee2fc0dd9d56d11d2abdca785cc96598.jpg", - "response": "In the image two workers are climbing a telephone pole. One of the workers is on the bottom and the other one is on the top of the pole. They are wearing blue uniforms and blue helmets. The telephone pole is grey and it is located in front of a green hill. In the background a town with red houses is visible below the hill. The sky is blue with some clouds.", - "id": 328 + "image_path": "G:\\images\\combined\\005111_jpg.rf.936c406f9097bf09897d5243474de703.jpg", + "response": "The image shows two workers in the water, standing in the middle of a river and fixing a power line. They are wearing blue helmets and are in the river up to their waist. The river is green and has a current.", + "id": 30941 }, { - "image_path": "G:\\images\\combined\\002187_jpg.rf.bd02fe891d112b97291b4c8edc64a3b4.jpg", - "response": "In the image there is a building under construction in the background. In the foreground, two people are having a conversation. The person on the left is a man with gray hair and is wearing a blue helmet and a blue shirt with a tie. The person on the right is a woman with blonde hair and is wearing a yellow vest and a blue helmet.", - "id": 329 + "image_path": "G:\\images\\combined\\005112_jpg.rf.0522539d8bfeb0111c4d9b04c36c8c3e.jpg", + "response": "A firefighter in full gear holding a hose.", + "id": 30942 }, { - "image_path": "G:\\images\\combined\\002188_jpg.rf.02b29f58cf502c7c632047c45ba3c153.jpg", - "response": "A construction crew works on a bridge.", - "id": 330 + "image_path": "G:\\images\\combined\\005113_jpg.rf.522036351f1198575dea44ccdd125a2e.jpg", + "response": "a group of people standing around a table", + "id": 30943 }, { - "image_path": "G:\\images\\combined\\002189_jpg.rf.b156f6b26758b1f5e1e2b68204cfe5ff.jpg", - "response": "A group of men standing around a building.", - "id": 331 - }, - { - "image_path": "G:\\images\\combined\\002190_jpg.rf.c1e9c91471ab229f464265768b0de9f9.jpg", - "response": "A group of people wearing hard hats and life vests.", - "id": 332 - }, - { - "image_path": "G:\\images\\combined\\002192_jpg.rf.a51bd75b2d9c1d4d148458b183c19e9d.jpg", - "response": "A man wearing a hard hat and a red vest stands in front of a blue metal structure. He is also wearing a grey and red jacket. There is a mountain visible in the background. In the foreground, there is a backpack and a red and black handled tool.", - "id": 333 + "image_path": "G:\\images\\combined\\005114_jpg.rf.7728003b6d6dc96e6f69385cbf255509.jpg", + "response": "In the image there is a man standing in front of a bulldozer and a white helmeted worker looking at the machine. The bulldozer is blue and it is next to a red bin. The sky is full of clouds and the sun is shining through them. On the ground there are many stones and debris from the demolition.", + "id": 30944 }, { - "image_path": "G:\\images\\combined\\002193_jpg.rf.4a1aaee881e0624b9a1012e41956c1f5.jpg", - "response": "A group of workers in orange shirts and blue hats are pulling on a barbed wire fence. Some of the workers are also wearing red shirts. They are all holding onto the fence with one hand while pulling with the other. The fence is located in a grassy area with trees in the background.", - "id": 334 + "image_path": "G:\\images\\combined\\005115_jpg.rf.9895cc09b0182c8b2b0306226883ef14.jpg", + "response": "A group of six people standing next to each other.", + "id": 30945 }, { - "image_path": "G:\\images\\combined\\002194_jpg.rf.472cc92e2d67cc009710bde42465a586.jpg", - "response": "a group of people standing around each other", - "id": 335 + "image_path": "G:\\images\\combined\\005116_jpg.rf.d2f2dad61d6415f43683ecbc3b8a8805.jpg", + "response": "In the image there are two coils of steel wire, one on the left and one on the right. The steel wire on the left is a bit further left and is darker in color than the one on the right. Both are located in a warehouse like room with a yellow iron pipe in the middle of the scene and a metal beam to the right. Above the room is a bridge-like structure with a yellow iron pipe running along the top. The words '\u9541\u6986\u533a\u65b0\u95fb\u4e2d\u5fc3' are written in white text on the bottom right of the image.", + "id": 30946 }, { - "image_path": "G:\\images\\combined\\002195_jpg.rf.c60e735dcbf5a100efc8f58ca1e1dce3.jpg", - "response": "The image shows a group of workers on a scaffolding system on a building under construction. They are wearing blue uniforms and white helmets. The workers are of Chinese ethnicity. One of the workers is holding a large wrench. The building is yellow in colour and has many windows. The sky is blue and there are a few clouds.", - "id": 336 + "image_path": "G:\\images\\combined\\005118_jpg.rf.e5021dcc6ac14dc4b55d6ecc34a7963a.jpg", + "response": "A man in a green shirt and red helmet is working on a piece of equipment.", + "id": 30947 }, { - "image_path": "G:\\images\\combined\\002196_jpg.rf.5ae38c8c40187c619c0eb24cc3939d9b.jpg", - "response": "A worker in a blue shirt and blue hat with a flashlight in a bush", - "id": 337 + "image_path": "G:\\images\\combined\\005119_jpg.rf.edb02118e75e9d65f6fba917e56a2ac9.jpg", + "response": "The image shows a group of workers in a tunnel. They are all wearing orange tops and yellow hard hats. The workers are working on a steel beam in the foreground. There are two sets of train tracks in the tunnel, one on the left and one on the right. The tunnel is grey and white in color. The workers are all focused on their tasks.", + "id": 30948 }, { - "image_path": "G:\\images\\combined\\002197_jpg.rf.233ba871420196b5bf9a78a28211c51a.jpg", - "response": "A drilling team in red coveralls and yellow hard hats work on a drilling head in the desert.", - "id": 338 + "image_path": "G:\\images\\combined\\00511_jpg.rf.15005b572ed325c843d0edb79794836d.jpg", + "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", + "id": 30949 }, { - "image_path": "G:\\images\\combined\\002198_jpg.rf.faba6471220a895e6067d08fc3fb0958.jpg", - "response": "A group of men in red work clothes are working on a large electrical transformer. They are standing on ladders and using tools to work on the transformer. The transformer is large and grey and is sitting on the ground. There are power lines above the transformer and the sky is overcast.", - "id": 339 + "image_path": "G:\\images\\combined\\00511_jpg.rf.a163590b30cccb8e923c2b5bd274624c.jpg", + "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", + "id": 30950 }, { - "image_path": "G:\\images\\combined\\002199_jpg.rf.ef632a9489d7984106a6db023f6b5074.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint on a construction site.", - "id": 340 + "image_path": "G:\\images\\combined\\005120_jpg.rf.67f0bdd8896330577d53b5415239ebdd.jpg", + "response": "A group of men standing around each other.", + "id": 30951 }, { - "image_path": "G:\\images\\combined\\0021af0b921af690.jpg", - "response": "A police van is parked in front of a building with a sign that says \"POLICE\" on the side of it. There are three people standing behind the police van. One of them is wearing a white shirt and a tie.", - "id": 341 + "image_path": "G:\\images\\combined\\005121_jpg.rf.94049498285e0310387bb7024dda72b3.jpg", + "response": "a group of men standing in front of a construction site", + "id": 30952 }, { - "image_path": "G:\\images\\combined\\002200_jpg.rf.17cdb29bea4af5e6c27802354d5e382d.jpg", - "response": "A group of three people standing on a construction site.", - "id": 342 + "image_path": "G:\\images\\combined\\005122_jpg.rf.5c45ab93b622821507d34538d2b031f2.jpg", + "response": "The image shows a construction site with a number of workers. There is a man in the center of the image who is wearing a yellow hard hat and a gray shirt. He is standing next to a pile of steel bars. Another worker is visible in the background, wearing a white shirt and a red helmet. The construction site is filled with steel bars, some stacked on a table, and some on the ground. There are also a few other people visible in the image, although they are less prominent.", + "id": 30953 }, { - "image_path": "G:\\images\\combined\\002202_jpg.rf.dfe98c06f4cece3ced36d015699c91b2.jpg", - "response": "A man in a grey shirt and blue hard hat is holding a large orange and white pole. He is wearing a black bag and has a black strap across his chest. He is standing in a construction area with a large field behind him. There is a forest of trees in the background to the right. The sky is full of clouds and the field has a layer of dirt on the ground.", - "id": 343 + "image_path": "G:\\images\\combined\\005125_jpg.rf.a3d55e3ffbc20d18933351c109f21166.jpg", + "response": "A shirtless man wearing a yellow hard hat is working in a pit. He is wearing a yellow hard hat, green gloves, and white shorts. He is holding a large rusty pipe with both hands and is climbing out of the pit. The ground around the pit is covered in small wooden posts.", + "id": 30954 }, { - "image_path": "G:\\images\\combined\\002203_jpg.rf.bdcfeaee8231a145b440061028d38f86.jpg", - "response": "In the image there are three workers dressed in red with one wearing a yellow hard hat and the other two wearing red hard hats. They are standing in front of a building under construction with scaffolding around it. In the foreground there is a piece of wood that looks like it has been cut out and a pile of lumber.", - "id": 344 + "image_path": "G:\\images\\combined\\005126_jpg.rf.089e3646a623210575de2f978e637f26.jpg", + "response": "A group of four men wearing hard hats and safety vests.", + "id": 30955 }, { - "image_path": "G:\\images\\combined\\002204_jpg.rf.c32bfb7158a5c4bc9ed0bdbd1e6d4c1c.jpg", - "response": "A group of workers are working on a building.", - "id": 345 + "image_path": "G:\\images\\combined\\005127_jpg.rf.d409bddc9de6cfb8dba2466d8c79e4dc.jpg", + "response": "The image shows a tunnel with two workers inside. They are working on the ground, and one of them is holding a hose. The tunnel is dark, and the workers are wearing hard hats and clothes. The left worker is holding a long tool with a wooden handle, and there is a bucket in the middle of the scene. The workers are wearing black shoes, and one of them has a beard. The ground is wet, and there is a puddle of water on the right side of the image.", + "id": 30956 }, { - "image_path": "G:\\images\\combined\\002205_jpg.rf.6bb3db1f525f03a799b4f535dc5c5e8f.jpg", - "response": "A group of people standing in a room that is under construction.", - "id": 346 + "image_path": "G:\\images\\combined\\005129_jpg.rf.8e791ede6d98089107220cef6d3bd0d0.jpg", + "response": "The image shows a group of people walking in front of a bus. The bus is yellow and white, and is parked in what appears to be a parking lot. The people in the foreground are wearing business attire. One man is wearing a suit and tie, and another man is wearing a black jacket and white shirt. A woman is wearing a black suit. The group is walking in a line, with the man in the suit leading the way. The woman to the far right is wearing a black suit and a red shirt. There are several other people in the background, some of whom are wearing hard hats. The ground appears to be wet.", + "id": 30957 }, { - "image_path": "G:\\images\\combined\\002206_jpg.rf.7dc502706e2d660a996d602f84cdef25.jpg", - "response": "A construction worker is using a large piece of machinery to twist a large black wire into a circular shape. The wire is on the ground next to the worker and a large spool of wire is to the right of the worker. There are also several stacks of rebar scattered around the ground.", - "id": 347 + "image_path": "G:\\images\\combined\\00512_jpg.rf.b209e6f0f21ea322cb6c72621f476787.jpg", + "response": "a group of men standing around each other", + "id": 30958 }, { - "image_path": "G:\\images\\combined\\002207_jpg.rf.f067c82c964b7110b968ade7e6572b30.jpg", - "response": "A group of men in hard hats stand in front of a large orange tarp. Some of the men are pointing at the tarp. One man is wearing a white shirt and glasses. Another man is wearing a white shirt and a red tie. A third man is wearing a white shirt and a blue tie. A fourth man is wearing a white shirt and a black tie. A fifth man is wearing a white shirt and glasses. A sixth man is wearing a white shirt and a black hat. A seventh man is wearing a white shirt and a red hat. A eighth man is wearing a white shirt and a black hat.", - "id": 348 + "image_path": "G:\\images\\combined\\005130_jpg.rf.8d1e95cd72cf91a28f54225910650f0c.jpg", + "response": "A worker is laying bricks to build a wall.", + "id": 30959 }, { - "image_path": "G:\\images\\combined\\002208_jpg.rf.9535a37b5b29c73c02e804d9ec88f260.jpg", - "response": "In the image there is a person wearing a yellow hard hat and red goggles, a plaid shirt and work gloves, working on a large piece of equipment. They are using a tool to make adjustments to the equipment.", - "id": 349 + "image_path": "G:\\images\\combined\\005131_jpg.rf.d63220b673aced7d4ea534dd2f7e4cf2.jpg", + "response": "a group of men walking across a unfinished building", + "id": 30960 }, { - "image_path": "G:\\images\\combined\\002209_jpg.rf.a2fb4ccad6ae750bc3886f75e1d2d66c.jpg", - "response": "A picture of two people working on power lines in front of a building.", - "id": 350 + "image_path": "G:\\images\\combined\\005133_jpg.rf.3f44f18ea22ea87fce6ba608b1d308a0.jpg", + "response": "The image shows a large ship docked at a pier. Several workers in orange and blue uniforms are pulling ropes to secure the ship to the dock. The ship is black and red and has the words \"Xing Hua\" written on the side. The sky is blue with a few clouds. The workers are wearing orange helmets and the ground is covered with dirt and grass.", + "id": 30961 }, { - "image_path": "G:\\images\\combined\\002210_jpg.rf.8589d3ab741f4915b62b2584f8ad046a.jpg", - "response": "In the image, a person is working at a construction site. The person is wearing a yellow hard hat, a black shirt, and grey pants. The person is holding a shovel and is standing next to a pile of grey rocks and a pile of grey rubble. In the background, there is a yellow crane.", - "id": 351 + "image_path": "G:\\images\\combined\\005134_jpg.rf.f0b07016cf508b22cd139928b9b73845.jpg", + "response": "A group of people walking in front of a building with a banner that reads \"\u5b9e\u540d\u5236\u901a\u9053\". Some people are wearing white helmets.", + "id": 30962 }, { - "image_path": "G:\\images\\combined\\002211_jpg.rf.7c3f7421fe605bafe90d9bae85498104.jpg", - "response": "A worker in a red hard hat stands next to a wooden railing.", - "id": 352 + "image_path": "G:\\images\\combined\\005135_jpg.rf.6c01f98d36a0959f5c27cd19a7bf3a94.jpg", + "response": "The image shows two workers in red doing maintenance on a power box. They are wearing safety gear, including hard hats and safety vests. The worker on the left is Climbing a pole to work on the power box, while the worker on the right is inspecting the box. The sky is overcast and there are trees in the background.", + "id": 30963 }, { - "image_path": "G:\\images\\combined\\002212_jpg.rf.bb00f8a21aa01e3722d809514cf7cb79.jpg", - "response": "a man in a blue uniform walking through a factory", - "id": 353 + "image_path": "G:\\images\\combined\\005136_jpg.rf.478152ad65fb41005322920d22bf02ad.jpg", + "response": "A group of men working in a mine with one standing and three sitting in the background all wearing hard hats", + "id": 30964 }, { - "image_path": "G:\\images\\combined\\002213_jpg.rf.8fb71b5fa93962ac163a6a9026a45e0b.jpg", - "response": "A man in a yellow hard hat is driving a tractor in a warehouse.", - "id": 354 + "image_path": "G:\\images\\combined\\005137_jpg.rf.750b0cceb768dec4b96a10a4e4857e6c.jpg", + "response": "A team of workers is seen installing power cables. There are 5 workers in total, 3 of them are installing the cables on a large power cable reel, one is installing cables on a smaller cable reel, and another one is installing cables on the ground. They are all wearing blue work suits with yellow helmets. The sky is a clear blue and there are no other people or objects in the image.", + "id": 30965 }, { - "image_path": "G:\\images\\combined\\002214_jpg.rf.4ff500c4d1b99259a484ee8771767968.jpg", - "response": "A man wearing a red jumpsuit and a red hard hat is welding a piece of metal with a torch. He is hunched over and the flame from the torch is visible. There are other pieces of metal visible in the background.", - "id": 355 + "image_path": "G:\\images\\combined\\005138_jpg.rf.9aac67f9a6c2a595446f26c11874401d.jpg", + "response": "A construction site with multiple workers wearing blue and yellow vests and safety gear.", + "id": 30966 }, { - "image_path": "G:\\images\\combined\\002215_jpg.rf.5027575ee531a22b13e4d920c993e21d.jpg", - "response": "A group of men in hard hats stand in the foreground, looking up at a tall\u70df\u56f1. The men are wearing yellow hard hats and some are wearing black jackets. One of the men is holding a cell phone. The background shows a tall white chimney stack surrounded by a metal scaffolding. The sky is overcast.", - "id": 356 + "image_path": "G:\\images\\combined\\005139_jpg.rf.31befde4cedf30934bfabf6b5777c9b6.jpg", + "response": "An old worker in an orange work suit and a red helmet is posing for the camera with a smile. He is in a construction site with a pile of rubble on his right and a large yellow\u6876 on his left. In the background, there is a residential building on the left and a tower on the right.", + "id": 30967 }, { - "image_path": "G:\\images\\combined\\002216_jpg.rf.9bb0870b71145367b5475e113779f1b7.jpg", - "response": "A group of men working on a construction site.", - "id": 357 + "image_path": "G:\\images\\combined\\00513_jpg.rf.3b8ca29c3832dbf78adcd8145fca5419.jpg", + "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", + "id": 30968 }, { - "image_path": "G:\\images\\combined\\002217_jpg.rf.ea960f25f6b2af6273c3d21f3db21ef3.jpg", - "response": "In the picture there are two workers wearing red work clothes and yellow helmets. They are in a room with brick walls and black iron pipes on the wall. They are working on a machine with two wheels and a pipe in the middle.", - "id": 358 + "image_path": "G:\\images\\combined\\00513_jpg.rf.3d85c07160d0fd920f92ed453f2f384e.jpg", + "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", + "id": 30969 }, { - "image_path": "G:\\images\\combined\\002218_jpg.rf.907fd7c0229463ec702524a727a1e143.jpg", - "response": "Men working on a construction site.", - "id": 359 + "image_path": "G:\\images\\combined\\005140_jpg.rf.572da64c4fd88130a3ff9800b67f795d.jpg", + "response": " Men(524,455),(672,997)(298,445),(496,997)(769,386),(972,997)(698,516),(807,997)(99,509),(262,997) in hard hats(560,453),(630,523)(143,509),(199,573)(369,445),(446,520)(702,521),(756,582)(242,494),(305,566)(478,496),(536,561)(818,386),(902,467) walking in a row", + "id": 30970 }, { - "image_path": "G:\\images\\combined\\002219_jpg.rf.d6da5b693c183a627294f1e7c96469a6.jpg", - "response": "Four workers in yellow work uniforms and hard hats. One worker in the front is carrying a wooden beam on his shoulder. Another worker in the back is carrying two wooden planks. The workers are walking through a construction site. There are pieces of wood scattered around them and rubble on the ground. In the background, there is a building under construction.", - "id": 360 + "image_path": "G:\\images\\combined\\005141_jpg.rf.c7cee36ca5fbf6370114689bee29540a.jpg", + "response": "A group of three workers are building a house. Two of them are wearing blue clothes and red hats, the one on the left is crouching lower than the other two and is holding a blue object in their hands. The two workers on the right are wearing yellow hats and red hats, the one on the right is holding a yellow object in their hands. They are all working on a building site with a brown wooden scaffolding. The building site is in front of a blue sky and behind it, there are some buildings.", + "id": 30971 }, { - "image_path": "G:\\images\\combined\\002220_jpg.rf.325a33167204853b4be376e502376816.jpg", - "response": "a group of men standing on a construction site", - "id": 361 + "image_path": "G:\\images\\combined\\005142_jpg.rf.fb69d3cbdbcd336cb4effe48e42edde4.jpg", + "response": "A group of workers in blue uniforms and hard hats are working on a street. They are repairing a broken road and working with large spools of wire.", + "id": 30972 }, { - "image_path": "G:\\images\\combined\\002221_jpg.rf.02be3bd9f404d82c24dba3226538b962.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, he is pushing a wheelbarrow filled with red bricks. The worker is standing next to a tall stack of red bricks and a pile of bricks is also seen on the ground. The construction site is not finished yet and there are some wooden planks around.", - "id": 362 + "image_path": "G:\\images\\combined\\005143_jpg.rf.cdd0444fe64c26d81a7fb8cdb2c8e83d.jpg", + "response": "A construction site with two workers on scaffolding.", + "id": 30973 }, { - "image_path": "G:\\images\\combined\\002222_jpg.rf.2db65edefc098b74075c5050b19f4b4e.jpg", - "response": "A man in a blue boiler suit and a yellow hard hat is holding a clipboard and making notes on it while he is standing in front of a boiler.", - "id": 363 + "image_path": "G:\\images\\combined\\005144_jpg.rf.d9be7cbff422fb3bd9281b1c8746e757.jpg", + "response": "A group of seven men wearing hard hats are working on a construction site. They are all wearing yellow hard hats and are wearing blue shirts. They are all holding shovels and are digging into a large concrete area. There is a large metal pipe on the right side of the image and a smaller metal pipe on the left.", + "id": 30974 }, { - "image_path": "G:\\images\\combined\\002223_jpg.rf.bd5a2dd5cc294820a6207b2265829ccb.jpg", - "response": "a line of people wearing hard hats and carrying wooden planks", - "id": 364 + "image_path": "G:\\images\\combined\\005145_jpg.rf.97cf721e14220ee8c02d58a522ae20b4.jpg", + "response": "In the image there are three people all wearing yellow construction hats and yellow vests. They are all holding a large pair of scissors cutting a red rope. The person on the left is a woman with a leg tattoo and is cutting the rope. The person in the middle is a man with a mustache and the person on the right is a man with a yellow hard hat and a red beard.", + "id": 30975 }, { - "image_path": "G:\\images\\combined\\002224_jpg.rf.5e6c586eac951bc9f2004291465ece70.jpg", - "response": "A group of six people standing in a parking lot in front of a housing complex.", - "id": 365 + "image_path": "G:\\images\\combined\\005146_jpg.rf.44f00c7b2a35238f9643510a7a4edcd6.jpg", + "response": "A group of five men working on electricity poles in a city street.", + "id": 30976 }, { - "image_path": "G:\\images\\combined\\002225_jpg.rf.e9115837d9a047d0a864f7d4a846d67c.jpg", - "response": "The image shows two workers in blue hard hats and white protective clothing, climbing a metal staircase. They are both holding shovels and appear to be working on a large industrial machine. The machine has a blue and grey color scheme and is covered in white dust. There is a yellow step ladder leaning against the machine. The background shows a wall with a blue pipe running along it. The pipe is connected to the machine. The image is taken on a construction site.", - "id": 366 + "image_path": "G:\\images\\combined\\005147_jpg.rf.8e167492a697cdaefaea3cdfdb8a6c25.jpg", + "response": "A worker is welding inside a ship under construction at a shipyard in Rizhao, east China's Shandong province.", + "id": 30977 }, { - "image_path": "G:\\images\\combined\\002226_jpg.rf.ec8bc2163d846e192717cf34e7f9ca9c.jpg", - "response": "The image shows a group of workers dressed in orange safety jumpsuits and hard hats. They are in the process of setting up a ladder, which is placed diagonally with one end on the ground and the other end resting on a building. The workers are in the process of securing the ladder to the building.", - "id": 367 + "image_path": "G:\\images\\combined\\005149_jpg.rf.2c559284d62effbbc8df7375412b6ae7.jpg", + "response": "The image shows two workers in yellow suits and blue helmets on an oil rig. They are standing on the rig, which has a yellow cover over the floor. One worker is on the left, and the other is on the right. They are both holding pipes and appear to be working together. In the background, there is a desert landscape with a sky that is a mix of blue and orange. There is a red fence in the middle of the rig, and a yellow ladder on the left side of the image.", + "id": 30978 }, { - "image_path": "G:\\images\\combined\\002227_jpg.rf.4469f97e1d13431b370dba6651e00749.jpg", - "response": "A worker is seen here in a scene from the June 2012 issue of \u7ecd\u5174\u7f51\u4e8b magazine. The photo shows the worker, who is wearing a blue helmet and a black vest, suspended in the air while holding onto a rope. He is wearing a harness and appears to be in the process of climbing a steep slope. The background shows a road and a hillside.", - "id": 368 + "image_path": "G:\\images\\combined\\005150_jpg.rf.cef4be4b611e68c6ca47d2efd1e9cbbc.jpg", + "response": "A man is being loaded into an ambulance after a fall from a ladder.", + "id": 30979 }, { - "image_path": "G:\\images\\combined\\002228_jpg.rf.8224f373836afd4aec60844e43654e59.jpg", - "response": "The image shows a woman in a red shirt standing in the middle of a circle of men, all of them wearing hard hats. They are standing on a concrete pad in front of a building. The woman is holding a white hard hat and appears to be explaining something to the men.", - "id": 369 + "image_path": "G:\\images\\combined\\00515166eb5254d4.jpg", + "response": "A large sign advertising an Elvis, Thomas, and Nicholas band.", + "id": 30980 }, { - "image_path": "G:\\images\\combined\\002229_jpg.rf.c4a28df800a005fd0d87b4dbc2bf4f25.jpg", - "response": "A construction worker in a green uniform is handing a tool to another construction worker in a red vest. They are both wearing yellow hard hats and are standing next to a third construction worker who is wearing a red vest and a gray hard hat. They are all standing on a road with a white sky background.", - "id": 370 + "image_path": "G:\\images\\combined\\005151_jpg.rf.fd66d76a0ad921821290c9df72cd1fab.jpg", + "response": "A group of two men in orange work outfits and hard hats are looking at a solar panel.", + "id": 30981 }, { - "image_path": "G:\\images\\combined\\002230_jpg.rf.9b9eb8a5c0f03a68410b3351c972cef2.jpg", - "response": "In the image two workers are seen working on an electricity post. One of them is wearing a blue uniform and yellow hat, both of them are wearing yellow hats. They are working on an electricity post which has many electric wires and electric bulbs. The sky is blue and clear.", - "id": 371 + "image_path": "G:\\images\\combined\\005152_jpg.rf.df19b4f57e2d33a07694b5fd3654cb45.jpg", + "response": "A construction site with multiple workers wearing hard hats. There are large pieces of metal being worked on and a building under construction in the background.", + "id": 30982 }, { - "image_path": "G:\\images\\combined\\002231_jpg.rf.3d11dd13932b80beca5bafbbd94f5799.jpg", - "response": "A group of men working on a construction site.", - "id": 372 + "image_path": "G:\\images\\combined\\005153_jpg.rf.fc34975a40027403bebe78989dbc06eb.jpg", + "response": "A worker in a blue uniform and yellow hat is pouring concrete into a yellow concrete mixer.", + "id": 30983 }, { - "image_path": "G:\\images\\combined\\002232_jpg.rf.28bc6accd37e0beba30aee833b5304d8.jpg", - "response": "A man with a yellow hard hat and a goatee beard.", - "id": 373 + "image_path": "G:\\images\\combined\\005154_jpg.rf.ecad917d2a045a9e977b22599cf6db2a.jpg", + "response": "The image shows a group of rescue workers in white protective suits and yellow hard hats working in a construction site at night. The workers are surrounded by scattered wooden poles and wooden boards on the ground. Some workers are holding wooden poles, and one of them is carrying a red box. A few workers are standing on the wooden poles, and one of them is lifting a red box. The scene is quite busy, with the rescue workers working diligently to save the trapped people.", + "id": 30984 }, { - "image_path": "G:\\images\\combined\\002233_jpg.rf.e954a9be419074bed0af29dbb7b5d6c6.jpg", - "response": "A man wearing a grey shirt and a yellow helmet is welding two steel bars together in front of a pile of wooden planks.", - "id": 374 + "image_path": "G:\\images\\combined\\005155_jpg.rf.df6eb5fd76c18d8eaeaef885a169c606.jpg", + "response": "A group of people standing around each other.", + "id": 30985 }, { - "image_path": "G:\\images\\combined\\002235_jpg.rf.6e1f862e298b778651ff89b4293e335a.jpg", - "response": "A worker in a grey shirt and a man in a blue shirt and white hat stand on a roof. The worker in the grey shirt points to a gold box with white circles on it. In the background there are buildings under construction.", - "id": 375 + "image_path": "G:\\images\\combined\\005156_jpg.rf.234fe8aa3acc2ac6ca873a711e4c75bb.jpg", + "response": "A group of people in hard hats and work clothes stand around, smiling and holding up children's books. Some of the people are of African descent. One person on the left is wearing a yellow helmet and holding a book with a white cover with a red heart on it. Another person in the center is wearing a yellow helmet and holding a book with a white cover with a red heart and yellow sun on it. A person on the right wearing a red helmet is holding a book with a white cover with a blue square on it. A person in the center is wearing a yellow helmet and holding a book with a white cover with a yellow sun on it. Another person on the right is wearing a red helmet and holding a book with a white cover with a yellow square on it. The background shows a blue sky and a tall white tower.", + "id": 30986 }, { - "image_path": "G:\\images\\combined\\002236_jpg.rf.2e885c90fc1009cecef85479354cfea5.jpg", - "response": "An electrician working on a electrical panel.", - "id": 376 + "image_path": "G:\\images\\combined\\005157_jpg.rf.757acf2a82167267dbb6d482af70cac2.jpg", + "response": "In the image, two men are standing in front of a red house. They are both wearing orange work vests and yellow hard hats. One man is on the left and the other is on the right. They are both holding onto a solar panel. The solar panel is black and is located in the center of the image. The men are smiling at the camera. In front of the house, there is a garden with some plants. The sky is blue with some clouds.", + "id": 30987 }, { - "image_path": "G:\\images\\combined\\002238_jpg.rf.425ecc8bbe21b5e1b1f08e0d101f3ec2.jpg", - "response": "The image shows a group of people standing inside a large warehouse that is under construction. They are wearing hard hats and some of them are wearing orange vests. In the foreground, a number of metal bars or steel rebar are stacked together. The word \"\u8d28\u91cf\" is written in red on the wall, and there are several other Chinese characters on the wall as well. The scene appears to be a construction site, with the workers possibly discussing or planning for the next step in the construction process.", - "id": 377 + "image_path": "G:\\images\\combined\\005159_jpg.rf.7334da2032ccc6e22a4545ead0c9d030.jpg", + "response": "A group of men in hard hats stand around a cement beam. They are all wearing different colored hard hats. Some of the men are wearing blue and one is wearing yellow. They are all wearing different colored shirts. Some of them are wearing blue and some are wearing white. They are all wearing pants with different colored work pants. The ground around them is covered in dirt and debris. There are also some cement pillars in the background.", + "id": 30988 }, { - "image_path": "G:\\images\\combined\\002239_jpg.rf.5c84535ac9365d286e8f3cf7b1dcd907.jpg", - "response": " Construction workers(499,404),(608,946)(353,511),(428,781) walk past a construction site", - "id": 378 + "image_path": "G:\\images\\combined\\005160_jpg.rf.46d3fa83d7b1ebd2c556332ff1872fc4.jpg", + "response": "A group of men working on a ship in the water.", + "id": 30989 }, { - "image_path": "G:\\images\\combined\\002240_jpg.rf.85e2ed843f4de611835f320f2e1749ce.jpg", - "response": "A man wearing a blue hard hat and a white shirt is working on a large piece of equipment. He is wearing a blue hard hat and has a tool in his hand. He is also wearing a blue shirt and has a tool belt around his waist. He is standing in front of a large black and grey box with red buttons on it.", - "id": 379 + "image_path": "G:\\images\\combined\\005162_jpg.rf.16bec0db8d016efba6d8f101dd8fda25.jpg", + "response": "A man wearing a yellow hard hat stands in front of a large pile of steel rods. He is wearing a black shirt and jeans. There are several other people in the background, some of them are wearing hard hats as well. The sky is blue and there are no clouds in sight. There are several construction cranes in the distance, on the right side of the image. In the foreground, there is a red and white construction vehicle.", + "id": 30990 }, { - "image_path": "G:\\images\\combined\\002241_jpg.rf.c504d8488e0235661936f8f571633107.jpg", - "response": "a man(657,338),(777,812) working in a cave", - "id": 380 + "image_path": "G:\\images\\combined\\005163_jpg.rf.80d452eed20cb843674b2d54cd3da380.jpg", + "response": "A construction site with two men working on it.", + "id": 30991 }, { - "image_path": "G:\\images\\combined\\002242_jpg.rf.b8afc0357d9a69ce6e8374508ce7c339.jpg", - "response": "A man in an orange uniform is on a yellow piece of equipment in a tunnel.", - "id": 381 + "image_path": "G:\\images\\combined\\005164_jpg.rf.77caefff83d68c788dd955b45f812fd7.jpg", + "response": "The image shows a construction site with several people working. There are two yellow excavators and a large pile driver on the site. The excavators are positioned on the left and right sides of the image, with the pile driver in the center. The people are scattered around the site, with some standing near the excavators and some further back. The sky is grey and overcast, and there is a building in the background.", + "id": 30992 }, { - "image_path": "G:\\images\\combined\\002243_jpg.rf.5956f5226020d72441b7f96bace4693e.jpg", - "response": "A group of men working on a construction site with a yellow crane behind them.", - "id": 382 + "image_path": "G:\\images\\combined\\005165_jpg.rf.b84bd8c6ef13158de8b6a6015e49c172.jpg", + "response": "The image shows a construction worker who has been injured at a building site. He is lying on the ground and is being attended to by emergency services. The worker is fully clothed and appears to be Chinese.", + "id": 30993 }, { - "image_path": "G:\\images\\combined\\002244_jpg.rf.606636bb1d5246463cd5aee28f690cc9.jpg", - "response": "A man in a red vest and yellow hard hat is fixing a power box on the side of a building. Another man in a blue hard hat is standing behind him. There are power lines above them and a few cars in the background.", - "id": 383 + "image_path": "G:\\images\\combined\\005167_jpg.rf.29044ba7d12ff7d744a77279909f1bd0.jpg", + "response": "A group of four people standing around a table in a warehouse. Three of the people are wearing construction type clothing, one man is wearing a yellow and orange safety vest, another man is wearing a blue suit and tie, and the third person is wearing a blue shirt. They are all gathered around a white board with writing on it. There are also several stacks of boxes in the background.", + "id": 30994 }, { - "image_path": "G:\\images\\combined\\002245_jpg.rf.6b49693510a290e3c46a09a8dde34575.jpg", - "response": "The image shows a group of people walking in a courtyard. They are all dressed in business attire. There is a man on the left wearing a white shirt and beige pants, and a man in the center wearing a black suit and white shirt. A woman on the right is wearing a black pants and a blue top. She is also holding a black purse. The rest of the people are wearing a mix of business and casual attire. Some are wearing jeans, some are wearing suits. They are all walking in the same direction. On the right side of the image, there is a building under construction. It has scaffolding around it and the walls are a mix of red and green.", - "id": 384 + "image_path": "G:\\images\\combined\\005169_jpg.rf.44d972f54c5e921173ca153ff7f2739b.jpg", + "response": "The image shows two workers in red uniforms and yellow helmets on a ladder against a blue sky, repairing a power line. They are on a ladder, which is against a power pole. The workers are wearing red uniforms and yellow helmets. The left worker is holding a tool in his right hand and the right worker is holding the other end of the tool. There are several other power poles in the vicinity, with some of them having wires attached to them.", + "id": 30995 }, { - "image_path": "G:\\images\\combined\\002246_jpg.rf.2ec5a7b2b3aaccf7c7f5b9f9728ef35a.jpg", - "response": "A city street with several buildings on either side. There are two workers in red uniforms and blue helmets working on a transformer on the side of the street. They are standing on a ladder and working on the transformer. There is a white car parked on the street and a few people walking around. There is also a sign that says \"fazhan road\" and a traffic light.", - "id": 385 + "image_path": "G:\\images\\combined\\00516bf08cf0cdeb.jpg", + "response": "a blurry photo of a car driving down a street", + "id": 30996 }, { - "image_path": "G:\\images\\combined\\002247_jpg.rf.daaa2dddd626de97064cac1ffeb59659.jpg", - "response": "The image shows a group of men standing on a construction site. They are wearing hard hats and one of them is pointing to something. There is a flag on the left side of the image and a pole with a red flag on it. In the background, there are some buildings.", - "id": 386 + "image_path": "G:\\images\\combined\\00516_jpg.rf.2eb87c6118e62f3984cc1758bf2f3122.jpg", + "response": "A group of four men dressed in blue uniforms and hard hats are working on an electrical device. They are all kneeling down and appear to be focused on the task at hand.", + "id": 30997 }, { - "image_path": "G:\\images\\combined\\002248_jpg.rf.9635e96f0193765bce2792dcf083aabc.jpg", - "response": "A man wearing a yellow hard hat, blue gloves and a yellow vest is carrying a large piece of metal on his shoulder. He is standing in front of a construction site.", - "id": 387 + "image_path": "G:\\images\\combined\\005170_jpg.rf.52a475197a65c26bbefc0d723034d7db.jpg", + "response": "A group of men standing in a room that is still under construction.", + "id": 30998 }, { - "image_path": "G:\\images\\combined\\002249_jpg.rf.3b6a93931c340681f84f9e251fd8962d.jpg", - "response": "A construction site with three workers.", - "id": 388 + "image_path": "G:\\images\\combined\\005171_jpg.rf.362c4df046737a3e64eced8a4d1c2a75.jpg", + "response": "A man in a hard hat and overalls is on a ladder, working on a traffic light.", + "id": 30999 }, { - "image_path": "G:\\images\\combined\\002251_jpg.rf.64d3cc6b84f991c351b05592c6e3304d.jpg", - "response": "A construction site with three men working on a building. The men are working on a red metal beam and a white column. They are wearing hard hats and one man is holding a drill.", - "id": 389 + "image_path": "G:\\images\\combined\\005172_jpg.rf.b80c460cc07613955c190f293c1b2e12.jpg", + "response": "A construction worker wearing a yellow vest and a white helmet is working on a building site. The worker is on a platform and is looking at some rebar.", + "id": 31000 }, { - "image_path": "G:\\images\\combined\\002252_jpg.rf.f8792c990b1cf931d383bad8fb6b473e.jpg", - "response": "An image of two men working on a construction site.", - "id": 390 + "image_path": "G:\\images\\combined\\005173_jpg.rf.e5009340c282a9bb7aaffdca76e679cf.jpg", + "response": "The image depicts a\u63e1\u624b between two\u4e2d\u5e74\u7537\u5973\u3002 The man on the left is wearing a\u767d\u8272\u88e4\u5b50\u548c\u4e00\u4ef6\u84dd\u8272\u4e0a\u8863\uff0c\u5934\u53d1\u67d3\u6210\u4e86\u7070\u8272\u3002\u4ed6\u6234\u7740\u4e00\u4e2a\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e9b\u767d\u8272\u7684\u8bbe\u8ba1\u56fe\u3002 The man on the right is a\u5efa\u7b51\u5de5\u4eba\uff0c\u7a7f\u7740\u9ed1\u8272\u7684T\u6064\u548c\u725b\u4ed4\u88e4\uff0c\u5934\u53d1\u9ed1\u8272\u3002\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u548c\u521a\u521a\u63e1\u624b\u7684\u5973\u58eb\u63e1\u7740\u4e00\u53ea\u63e1\u624b\u3002\u80cc\u666f\u662f\u4e00\u4e2a\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u5176\u4e2d\u6709\u7740\u767d\u4e91\u3002\u5728\u80cc\u666f\u7684\u53f3\u4e0b\u65b9\uff0c\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u6b63\u5728\u65bd\u5de5\u7684\u811a\u624b\u67b6\u3002", + "id": 31001 }, { - "image_path": "G:\\images\\combined\\002253_jpg.rf.58c1f2ea9f0d6e2aa3a930efebc4b3d6.jpg", - "response": "The image shows a group of men in white shirts and some wearing hard hats, walking in a line across a construction site. The men are walking past a large blue construction site fence that has Chinese writing on it. In the background, there is a building under construction with a large white tower crane next to it. The sky is a light blue color and there are a few clouds.", - "id": 391 + "image_path": "G:\\images\\combined\\005174_jpg.rf.b05a09392672e913e69cb37bdf710edb.jpg", + "response": "A group of three men in red hard hats crouching down next to a metal box on a sidewalk.", + "id": 31002 }, { - "image_path": "G:\\images\\combined\\002254_jpg.rf.1743a3eee1ab34da8bc11c766570d81a.jpg", - "response": "The image shows five people standing in a circle in front of a pile of rubble. All of the people are wearing suits. To the far left is a man wearing a black helmet and dark blue suit. To his right is a man wearing a dark suit. In front of him is a man wearing a light blue shirt and dark suit. To the far right is a woman wearing a dark yellow coat and dark blue suit. In front of her is a man wearing a dark suit and a light blue shirt.", - "id": 392 + "image_path": "G:\\images\\combined\\005177_jpg.rf.29bcd0a154426193dfa1514a20ada65f.jpg", + "response": "A woman in a black coat is holding a clipboard and talking to three men. One man is wearing a black coat and holding a pen. Another man is wearing a white hat and a gray jacket. The fourth man is wearing a black jacket and hat. They are standing in front of a building that is covered in green netting.", + "id": 31003 }, { - "image_path": "G:\\images\\combined\\002255_jpg.rf.fd9f8210ea78054feb820f3a1aeb28a0.jpg", - "response": "In the image there is a construction site with multiple workers. The main focus is on a man who is standing on a platform wearing a yellow helmet and a brown uniform. He is looking down at the construction site. There are several other people scattered around the site, some are further away and some are closer to the camera. They are all wearing yellow helmets and some are wearing backpacks. The platform is made of wood and metal and it is supported by many metal bars. The whole construction site is surrounded by many metal bars and there are several red signs on the site.", - "id": 393 + "image_path": "G:\\images\\combined\\005179_jpg.rf.30d96913a6a21d6dd475ed54f47cc184.jpg", + "response": "An electrician in a blue hard hat and safety glasses is working on an electrical box.", + "id": 31004 }, { - "image_path": "G:\\images\\combined\\002256_jpg.rf.a8253f3bc4e0287d71edfa08b45cd353.jpg", - "response": "A group of workers wearing hard hats are working on a brick wall.", - "id": 394 + "image_path": "G:\\images\\combined\\005180_jpg.rf.0145a7ba610d2af3a6df6f05d17fa7c0.jpg", + "response": "A man in a yellow hard hat and a man in a green shirt are standing in a unfinished room.", + "id": 31005 }, { - "image_path": "G:\\images\\combined\\002257_jpg.rf.6b04111155bf811d0ce2cc48a2251265.jpg", - "response": "An electrician is working on power lines.", - "id": 395 + "image_path": "G:\\images\\combined\\005181_jpg.rf.68f336dc5e2d2cdf73919ab09205be6d.jpg", + "response": "The image shows two workers in green uniforms and yellow helmets, climbing on a power pole. They are repairing a power line.", + "id": 31006 }, { - "image_path": "G:\\images\\combined\\002258_jpg.rf.2e03b865bb117c53160e9293f9187814.jpg", - "response": "In the image there are two people wearing orange protective vests, one of them is a woman holding a tablet, and the other one is a man measuring something on the ground. They seem to be working in a construction site.", - "id": 396 + "image_path": "G:\\images\\combined\\005182_jpg.rf.86947e7a47909dcb889448399b9b94bc.jpg", + "response": "The image shows a man in a blue hard hat and work clothes crouched down and working on a piece of equipment. He is holding a screwdriver and appears to be focused on the task at hand. The background is dark and there are a few other details that are hard to make out.", + "id": 31007 }, { - "image_path": "G:\\images\\combined\\002259_jpg.rf.0bf54c7c66cc678eb02ddff758779df2.jpg", - "response": "A man and woman wearing hard hats stand in a construction site. They are standing near a table with wood on it. There are two cups on the table, one closer to the man and one closer to the woman. There are also two bowls on the table, one closer to the man and one closer to the woman. In the background, there is a truck and a forklift.", - "id": 397 + "image_path": "G:\\images\\combined\\005183_jpg.rf.67b0979aad41ea2cb2e9574814dacb19.jpg", + "response": "A construction worker in a yellow hard hat is working on a scaffold.", + "id": 31008 }, { - "image_path": "G:\\images\\combined\\002260_jpg.rf.17aa6db3845550582588967a49bd9636.jpg", - "response": "A man in a blue shirt is talking to a group of men in front of a van.", - "id": 398 + "image_path": "G:\\images\\combined\\005184_jpg.rf.96d471c3d859a92a38a3be1303136fc9.jpg", + "response": "A worker is welding a steel pipe at a factory in Hefei, Anhui province, China. The worker is wearing a grey shirt, a grey hat, and white gloves. He is focused on his work, which is illuminated by a bright light. The background is filled with steel sparks.", + "id": 31009 }, { - "image_path": "G:\\images\\combined\\002261_jpg.rf.97b405ccbd2e3e9327d51613b58fb756.jpg", - "response": "A construction crew works on a damaged guardrail in a tunnel.", - "id": 399 + "image_path": "G:\\images\\combined\\005185_jpg.rf.4d46a073a76855384a04053f5a663a12.jpg", + "response": "A group of workers in grey, blue and yellow uniforms, yellow helmets and red, blue and yellow shoes are standing in a parking lot.", + "id": 31010 }, { - "image_path": "G:\\images\\combined\\002262_jpg.rf.c1823a72e8bfe3501d5e77431c968e9d.jpg", - "response": "The image shows a group of rescuers from a fire station climbing up a steep,\u96ea\u5c71\u822c\u7684\u5c71\u5761. They are wearing yellow, blue, and red uniforms and hard hats. The terrain is rocky and covered in frost, and the rescuers are carrying equipment on their backs. The sky is overcast, and the rescuers are spread out along the slope, with some closer to the top and others in the middle of the scene. The rescuers are determined to reach the top, despite the challenging conditions.", - "id": 400 + "image_path": "G:\\images\\combined\\005187_jpg.rf.557fb56cbcabe7aa85de3c854f241ea1.jpg", + "response": "a man in a yellow suit and yellow hat hanging from a rope and painting a white building", + "id": 31011 }, { - "image_path": "G:\\images\\combined\\002263_jpg.rf.141410279069f689ce2af108b40f2f5d.jpg", - "response": "A line of people walking down a sidewalk.", - "id": 401 + "image_path": "G:\\images\\combined\\005188_jpg.rf.f477436f7e41c0e7f5804b7fa1e130d9.jpg", + "response": "A group of men standing around a machine.", + "id": 31012 }, { - "image_path": "G:\\images\\combined\\002264_jpg.rf.02744268640fd0256d3b54e14366eb80.jpg", - "response": "A group of workers wearing orange helmets are working on a construction site. They are wearing white and orange uniforms. In front of them, there is a pile of grey concrete wire mesh. To the left of the workers, there is a green container. In the distance, there are two green and white containers and a white sky.", - "id": 402 + "image_path": "G:\\images\\combined\\005189_jpg.rf.61471a3e66ec003d833dd3e96ce500fc.jpg", + "response": "A worker is seen here attempting to climb a ladder that has been propped up against a wall. The ladder is positioned near a telephone pole and wires. The worker is positioned on the left side of the image, wearing a blue shirt and hat. They are holding the ladder near the top. The wall the ladder is propped up against is grey and made of concrete. It is located near a house with a red roof. The telephone pole is located behind the ladder and the wires are attached to it. The image is taken outside.", + "id": 31013 }, { - "image_path": "G:\\images\\combined\\002265_jpg.rf.b22ec78cce15aee50497062ba544c3aa.jpg", - "response": "An electrician working on power lines.", - "id": 403 + "image_path": "G:\\images\\combined\\005190_jpg.rf.bd55dd40f06ce5a8622c0b2ec2fb663b.jpg", + "response": "A crane is lifting a large piece of metal.", + "id": 31014 }, { - "image_path": "G:\\images\\combined\\002266_jpg.rf.1c69ce2fe8173b1845b065d631e045f6.jpg", - "response": "A couple of men working on some power lines in the snow.", - "id": 404 + "image_path": "G:\\images\\combined\\005191_jpg.rf.5aacb64189f28fcb4f6edd99bf6a9f44.jpg", + "response": "A group of three men standing next to a piece of machinery.", + "id": 31015 }, { - "image_path": "G:\\images\\combined\\002267_jpg.rf.ff6a695ccfbf0e6b9fba5426a518ad40.jpg", - "response": "In the image there is a factory worker dressed in orange standing next to a large metal container with a stick in his hand. He is standing in front of a large fire and there is sparks flying. He is wearing a hard hat and orange safety suit.", - "id": 405 + "image_path": "G:\\images\\combined\\005192_jpg.rf.b65106362498844fcb54a19c90ceabcc.jpg", + "response": "A man wearing a red helmet is using a circular saw to cut through a metal pipe. The circular saw is on the ground and the man is kneeling down to reach the pipe. The man is also wearing work gloves and camouflage clothing. There is a pile of metal rods in the background.", + "id": 31016 }, { - "image_path": "G:\\images\\combined\\002268_jpg.rf.b861392b1437fdc3c0535834d301e8d2.jpg", - "response": "A group of construction workers are working on a building site. They are all wearing blue and yellow hi vis shirts and yellow hard hats. They are standing on a platform which has scaffolding around it. In the background there is a concrete pillar and a building.", - "id": 406 + "image_path": "G:\\images\\combined\\005193_jpg.rf.b7b7580a58161d5551a10dbf4217947a.jpg", + "response": "A worker walking through the rubble of a demolition site.", + "id": 31017 }, { - "image_path": "G:\\images\\combined\\002269_jpg.rf.5fd0028e1d6210406b3dee9e4e34f3d0.jpg", - "response": "The image shows a group of men in neon yellow vests and white helmets carrying a man on a stretcher. The men are wearing the same neon yellow vests, and the man they are carrying is also wearing a neon yellow vest. The men are walking across a construction site, and there is a large white clock in the background. The photo is taken on a construction site, and there are some buildings in the background.", - "id": 407 + "image_path": "G:\\images\\combined\\005194_jpg.rf.3db46b8ca038575c679191704dac0d86.jpg", + "response": "In the image there is a construction site with three people working. The person in the foreground is wearing a yellow hard hat, a yellow vest, and is holding a brick. Another person in the background is wearing a yellow hard hat and a white vest. There is a cup on the ground in the middle of the scene and a yellow tool box at the bottom right corner of the image. The sky is covered by clouds in the background.", + "id": 31018 }, { - "image_path": "G:\\images\\combined\\002270_jpg.rf.d32f9a0b3a910c2ba2d07b76386bf216.jpg", - "response": "A group of firefighters are putting out a fire in a factory.", - "id": 408 + "image_path": "G:\\images\\combined\\005195_jpg.rf.d97ecc787745ed94c0d2dc6bba49211f.jpg", + "response": "A group of three men working on a electrical box in the rain.", + "id": 31019 }, { - "image_path": "G:\\images\\combined\\002272_jpg.rf.987f826c7d998d989113bfc8882f1006.jpg", - "response": "A group of men sitting around a table.", - "id": 409 + "image_path": "G:\\images\\combined\\005196_jpg.rf.9423b3fd2047ad05ec7792ed9bb13eb5.jpg", + "response": "A man wearing a white hard hat and orange vest standing in a unfinished room.", + "id": 31020 }, { - "image_path": "G:\\images\\combined\\002273_jpg.rf.8c2997f52ba6230673ba4fb3f2f96c39.jpg", - "response": "The image shows a group of men standing in front of a banner. They are all wearing hard hats and some are wearing suits. In the background there is a cliff. To the far right there is a person wearing a grey jacket. In the middle there is a man wearing a black jacket and a red hard hat. To the far left there is a person wearing a red hard hat and a grey jacket.", - "id": 410 + "image_path": "G:\\images\\combined\\005197_jpg.rf.e96ad2465b7227c0cd0e5c0429052082.jpg", + "response": "The image shows three workers in a factory. They are all wearing yellow hard hats and are working with metal. One worker is on the left, crouching down to work on a red piece of metal with a yellow handle, the second worker is in the middle, wearing blue pants and a blue shirt, and is operating a piece of metal bending equipment, and the third worker is on the right, wearing camo pants and a blue shirt, he is reaching into a red piece of metal with a yellow handle. The word \"WORKER\" is in red at the bottom of the image, and there is a white box with the letters \"\u4e2d\u56fd\u7f51\" in black inside it, all centered on the right side of the image.", + "id": 31021 }, { - "image_path": "G:\\images\\combined\\002274_jpg.rf.a408f78ee6445c0fa2695c658d5d54bc.jpg", - "response": "a group of men standing in front of a building", - "id": 411 + "image_path": "G:\\images\\combined\\005198_jpg.rf.91a2fcbc4c72f0466418855c4447f0bf.jpg", + "response": "A group of three men working on a construction site, two of them are on a scaffolding that is placed against a brick wall and the other one is on a ladder against a concrete wall.", + "id": 31022 }, { - "image_path": "G:\\images\\combined\\002275_jpg.rf.6ec746580fb53609730b43da1972cde7.jpg", - "response": "A couple of workers on a yellow machine working on power lines.", - "id": 412 + "image_path": "G:\\images\\combined\\005199_jpg.rf.bf63849d67e9e5267de5c366e563a860.jpg", + "response": "The image shows North Korean leader Kim Jong-un in a small office inside a plane. He is sitting at a desk, which has a folder and a book on it. There is a pen and a cup on the desk as well. Kim Jong-un is talking on a cell phone, which is held close to his ear. He is looking downwards at the phone. The office has a lamp on the left side of the desk and a chair on the right side. The walls of the office are made of wood and there is a picture frame on the wall to the right.", + "id": 31023 }, { - "image_path": "G:\\images\\combined\\002276_jpg.rf.59938972d2a8b2f88568c49a862e52f0.jpg", - "response": "A man in a hard hat and a suit holds a set of blueprints in front of a house that is under construction. There are two other men standing beside the house, both also wearing hard hats.", - "id": 413 + "image_path": "G:\\images\\combined\\00519_jpg.rf.4829fbb5349abb0ebda935d83d343aaf.jpg", + "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and protective gear. The workers are pouring concrete into place, using a long tool to smooth out the surface. The concrete is being poured between two steel rails.", + "id": 31024 }, { - "image_path": "G:\\images\\combined\\002277_jpg.rf.279e5eff49fb017927ad6f924d8c15f3.jpg", + "image_path": "G:\\images\\combined\\00519_jpg.rf.a70403fb30fc6fc1ed0baafdfe085cab.jpg", "response": "A group of men working on a construction site.", - "id": 414 + "id": 31025 }, { - "image_path": "G:\\images\\combined\\002278_jpg.rf.0b0249090e51ed7bd9980e328a2ba4bb.jpg", - "response": "A worker wearing a yellow helmet is seen through the metal grid. He is wearing a green camouflage shirt and is holding a tool in his hand. The background shows a blue sky and a building under construction with a red frame.", - "id": 415 + "image_path": "G:\\images\\combined\\0051a014205dd1f6.jpg", + "response": "A book with the title \"Jimi Hendrix\" on the cover.", + "id": 31026 }, { - "image_path": "G:\\images\\combined\\002279_jpg.rf.adfb753e2e39f38135df986c2e4aadd8.jpg", - "response": "A man in an orange hard hat and blue coveralls standing in front of an oil pump.", - "id": 416 + "image_path": "G:\\images\\combined\\0051b21e3959ff77.jpg", + "response": "A framed picture with a glass front is sitting on a wooden table. The picture is a rectangle and the frame is brown. The glass front has several stickers on it.", + "id": 31027 }, { - "image_path": "G:\\images\\combined\\002280_jpg.rf.11cbe55b6f2db9591d636508814e28e9.jpg", - "response": "A group of five construction workers wearing yellow hard hats are working on a construction site. They are working on a framework of a building with rebar in front of them. In the background there is a cityscape with buildings and trees.", - "id": 417 + "image_path": "G:\\images\\combined\\005200_jpg.rf.e527e9cdaeb562a33ef687006ef2ab1b.jpg", + "response": "A group of men wearing hard hats are standing in a construction site. One man is gesturing towards a concrete pillar while the others listen to him.", + "id": 31028 }, { - "image_path": "G:\\images\\combined\\002281_jpg.rf.6f6abfe2cb808c76d7dbd0afbec0edb6.jpg", - "response": "A man in a blue hard hat standing on a scaffold.", - "id": 418 + "image_path": "G:\\images\\combined\\005201_jpg.rf.431c13f7df709b14d767096900a933dd.jpg", + "response": "A worker is seen at the top of a tower in a green field.", + "id": 31029 }, { - "image_path": "G:\\images\\combined\\002282_jpg.rf.906438b2b8048fb52fb1e002087d8ce2.jpg", - "response": "A worker in green camouflage pants and a blue hard hat is sitting on yellow scaffolding. The worker is on a yellow pipe and is holding a yellow ball. The building behind the worker is brown and the sky is blue.", - "id": 419 + "image_path": "G:\\images\\combined\\005202_jpg.rf.f0f2b560b7850bd4a08fec8559ea626e.jpg", + "response": "A worker in a blue uniform shows a pen to another worker in yellow safety helmet. They are both standing in front of a large pipe.", + "id": 31030 }, { - "image_path": "G:\\images\\combined\\002283_jpg.rf.1d5ada0634785c03c3533f372b08538f.jpg", - "response": "A group of people working on a building site.", - "id": 420 + "image_path": "G:\\images\\combined\\005203_jpg.rf.9a7913c0f345069d54f1bada35feafa3.jpg", + "response": "A man wearing a blue jacket and a red hard hat is standing in front of a large piece of machinery. He is also wearing gloves and jeans. There is a yellow circle of light beneath him and another man wearing a red hard hat is visible to the right of him. There is also another man wearing a blue jacket and a red hard hat visible to the left of him.", + "id": 31031 }, { - "image_path": "G:\\images\\combined\\002284_jpg.rf.339a5c6469d52263b52918f57080236a.jpg", - "response": "The image shows a group of people standing around a construction site. They are all wearing hard hats and high visibility vests. In the foreground, a man in a blue shirt and red hard hat is showing another man in a yellow hard hat something on a piece of paper. To the left of the man in the blue shirt, a man in a blue helmet and orange vest is looking at the paper as well. Another man in a yellow hard hat is standing to the right of the man in the blue shirt. Behind him, a man in a white hard hat is standing to the right of the man in the blue helmet. To the far right of the image, a man in a white hard hat and an orange vest is standing with his hands behind his back.", - "id": 421 + "image_path": "G:\\images\\combined\\005204_jpg.rf.e5e31eb2750bfc43a1179f051063cd6d.jpg", + "response": "A man and woman wearing hard hats are standing in front of a building under construction. The woman is handing the man a piece of paper.", + "id": 31032 }, { - "image_path": "G:\\images\\combined\\002285_jpg.rf.3136445bb8d7771bbf0a7b6014ceafe2.jpg", - "response": "A group of men in suits and hard hats are walking down a dirt road. Some men are carrying a cell phone. In the background there are buildings and construction equipment.", - "id": 422 + "image_path": "G:\\images\\combined\\005205_jpg.rf.f1e05f91a555b7837f6474389af1c58b.jpg", + "response": "A man kneeling down on the ground using a level.", + "id": 31033 }, { - "image_path": "G:\\images\\combined\\002286_jpg.rf.05c1f7666ac80696c0b4d1faaf43e86e.jpg", - "response": "A pair of legs wearing jeans and work boots are standing in a concrete tunnel. They are covered in blue wires. Another person is standing in the background, wearing an orange safety vest with a white shirt and blue pants. They are holding a blue device with two blue wires coming out of it.", - "id": 423 + "image_path": "G:\\images\\combined\\005206_jpg.rf.263cfe3a364c99fedb16c9058c2bc984.jpg", + "response": "A group of people standing in front of a van.", + "id": 31034 }, { - "image_path": "G:\\images\\combined\\002287_jpg.rf.c7c20943498297628578ff2059fe851a.jpg", - "response": "In the image there are two men wearing orange work suits and hard hats. They are standing in a large open pit mine with rocks and dirt all around them. There are two yellow and black earth moving machines working in the background. One is on the left and the other is on the right. There are also clouds in the sky.", - "id": 424 + "image_path": "G:\\images\\combined\\005207_jpg.rf.d6107344dd3bf66c29b3a9243ea46e4d.jpg", + "response": "In the image there are two workers in a factory. They are standing in front of a large metal door with a sign above it that reads International Alloy Group. The workers are both wearing blue shirts and red hats. One of the workers is holding a device in his hand. There is a large amount of machinery around them. To the far left there is a large metal cylinder and a machine with many pipes and valves. To the right there is another large metal cylinder and a machine with a large circular metal door.", + "id": 31035 }, { - "image_path": "G:\\images\\combined\\002288_jpg.rf.1b43bd14e548c2fb278961baf416688e.jpg", - "response": "The photo shows a concrete tube that has been dug out in the ground. In the tube, there are three people working. The one in the middle front is wearing a yellow helmet and black shorts. He is kicking a chair with his right foot. The person to the left of the middle man is wearing a red helmet and holding a long iron bar. The person at the back is wearing a\u5b89\u5168\u5e3d and is sitting on the left side of the concrete tube. There are several chairs placed in the tube, and a iron bar and a piece of wood are placed on the left side of the tube.", - "id": 425 + "image_path": "G:\\images\\combined\\005208_jpg.rf.eb1ff1b8c514dc14edff3a52f2ad2aa5.jpg", + "response": "a group of men standing around talking in a construction area", + "id": 31036 }, { - "image_path": "G:\\images\\combined\\002289_jpg.rf.8397254ae1ba399c52d9a11e421365fb.jpg", - "response": "The image shows two workers, one wearing a white shirt and a yellow safety vest, and the other wearing a red safety vest, cleaning the road inside a tunnel. They are pulling a small cart filled with rocks. The cart has two yellow plastic bags on either side. The left worker is pushing the cart while the right worker is following behind. They are wearing red helmets. The tunnel is dimly lit with orange lights. The road outside the tunnel is empty. The cart has two yellow plastic bags on either side.", - "id": 426 + "image_path": "G:\\images\\combined\\005209_jpg.rf.eda41a6bb1ea78cb271cdbfa5643cad7.jpg", + "response": "A worker in a large warehouse is working with a pile of scrap metal. The worker is wearing a blue shirt and a yellow hat. They are crouching down and appear to be sorting through the pile of metal. The metal is piled up in a large heap and takes up most of the image. There are large metal girders on the walls and ceiling of the warehouse.", + "id": 31037 }, { - "image_path": "G:\\images\\combined\\002290_jpg.rf.e12f39d700557c12f2233389c5b184d1.jpg", - "response": "A large group of workers wearing hard hats and work clothes are standing in a group.", - "id": 427 + "image_path": "G:\\images\\combined\\005210_jpg.rf.3e76bcfbeb83ce663045c267550a4455.jpg", + "response": "A man in a white hard hat is kneeling down and using a blue scoop to pour a black liquid into a black hole in the ground. Another man is standing nearby, watching. They are both wearing blue jeans. In the background, there is a person wearing a red shirt and a yellow hard hat. There is also a yellow hard hat on the ground and a person holding a white sign with black letters.", + "id": 31038 }, { - "image_path": "G:\\images\\combined\\002291_jpg.rf.b4b6f8d0dcac668bc7583b02a0408682.jpg", - "response": "A man wearing a hard hat and holding a rolled up blueprint is standing in a construction site.", - "id": 428 + "image_path": "G:\\images\\combined\\005211_jpg.rf.db1151bd0111b2024f3042d96a628e78.jpg", + "response": "The image shows a group of workers inside a tunnel. They are working on the right side of the tunnel, which has been excavated. Some of them are standing, while others are crouching. They are wearing hard hats and several of them are wearing yellow hard hats. In the right background, there is a large excavator. The tunnel has a white ceiling and walls that are a mix of white and grey. The floor of the tunnel is a mix of brown dirt and some grey rocks. There is a small stream of water running down the middle of the tunnel on the right side.", + "id": 31039 }, { - "image_path": "G:\\images\\combined\\002292_jpg.rf.0231e287bb805f00bdd2354fd117076c.jpg", - "response": "A group of people sitting around a table.", - "id": 429 + "image_path": "G:\\images\\combined\\005212_jpg.rf.d41fcb1db931d2c5bf376313254a101f.jpg", + "response": "A container terminal with two port workers in the foreground. They are wearing yellow reflective vests and hard hats. The woman is looking up and has her hand to her forehead. The man is looking up and holding a walkie talkie. In the background a blue container is stacked up. The sky is a clear blue.", + "id": 31040 }, { - "image_path": "G:\\images\\combined\\0022933cdceee189.jpg", - "response": "A car dashboard with the needle pointing at 33.3 mph.", - "id": 430 + "image_path": "G:\\images\\combined\\005213_jpg.rf.24351d98ce83b57b3d40f3ce51d7f700.jpg", + "response": "The photo shows six men standing in front of a large yellow machine. The men are wearing dark suits and the machine has a red banner with white characters on it. The characters say \"China Railway No. \u4e00\u662f\". The background is a pale blue sky with faint clouds.", + "id": 31041 }, { - "image_path": "G:\\images\\combined\\002293_jpg.rf.a8086fd874ac9e312d9cd04fb4acfaa8.jpg", - "response": " Two men(148,322),(363,783)(339,335),(566,786) walking on a construction site", - "id": 431 + "image_path": "G:\\images\\combined\\005214_jpg.rf.42104f263db0ca776a93e70201a40fa3.jpg", + "response": "A man kneeling down with a hard hat on and another man standing over him.", + "id": 31042 }, { - "image_path": "G:\\images\\combined\\002294_jpg.rf.67e381042655a18da8219a57e2b16e60.jpg", - "response": "A team of five workers is fixing a power pole. One worker is on top of the pole, while the others are on the ground, fixing the wires. They are all wearing blue helmets.", - "id": 432 + "image_path": "G:\\images\\combined\\005215_jpg.rf.0b8223225999a9dd584dae6f7e21d489.jpg", + "response": "A group of men standing in front of a mountain side.", + "id": 31043 }, { - "image_path": "G:\\images\\combined\\002295_jpg.rf.f5d227b77330e8ddd394b8e8de467dcc.jpg", - "response": "A group of people standing around an electrical box wearing hard hats.", - "id": 433 + "image_path": "G:\\images\\combined\\005216_jpg.rf.9d8ca57cd57a8b1d7cece2ee66e82765.jpg", + "response": "A group of men standing around each other.", + "id": 31044 }, { - "image_path": "G:\\images\\combined\\002296_jpg.rf.fd15e38dfd97a37366cd37f45e9ff023.jpg", - "response": "A group of men in red uniforms are working on an electrical box. They are standing on ladders and have tools in their hands. The electrical box is attached to a metal pole and is located next to a wooded area.", - "id": 434 + "image_path": "G:\\images\\combined\\005217_jpg.rf.c306a621afe65b09591ad6e0fce36140.jpg", + "response": "In the image, a worker is seen crouching down in a pit surrounded by wooden sticks and branches. The worker is wearing a yellow hard hat, green gloves, and a blue jacket. The background is a dark grey wall and the scene is bathed in a warm orange light.", + "id": 31045 }, { - "image_path": "G:\\images\\combined\\002297_jpg.rf.05b4ee9d1d8e28b2ee0e65417f2cecf9.jpg", - "response": "In the image two men are working with a drone. The drone is a quad copter style drone with a camera mounted on it. The men are standing in a wooded area and one of them is holding a rope connected to the drone.", - "id": 435 + "image_path": "G:\\images\\combined\\005218_jpg.rf.dfcde98ab8efff3d4801dda2e3d792f3.jpg", + "response": "A city street with two workers on a yellow truck.", + "id": 31046 }, { - "image_path": "G:\\images\\combined\\002298_jpg.rf.55dc88005c8d5b9f15a6216f48d72c2d.jpg", - "response": "In the image, a construction worker is working on a building site. The worker is wearing a grey shirt and a orange hard hat. In front of the worker, there is a yellow crane and a pile of steel rods. To the right of the worker, there are several people standing among the steel rods and the crane. In the background, there are some buildings and a forest.", - "id": 436 + "image_path": "G:\\images\\combined\\005219_jpg.rf.c9b10a04211a7293165db309d3151106.jpg", + "response": "Men(758,426),(869,997)(570,515),(643,683)(829,406),(963,996) working on a construction site", + "id": 31047 }, { - "image_path": "G:\\images\\combined\\002300_jpg.rf.535e8af17e069382845e5c0cb7813361.jpg", - "response": "A construction worker is holding a ladder over his shoulder.", - "id": 437 + "image_path": "G:\\images\\combined\\00521_jpg.rf.1cdcd875955b2653e3daf76938062657.jpg", + "response": "A group of people stand in a field with buildings in the background. They are all wearing yellow hard hats.", + "id": 31048 }, { - "image_path": "G:\\images\\combined\\002301_jpg.rf.90c1eb6dd1b0da23479428a2c5a92212.jpg", - "response": "A group of workers in red and blue hard hats.", - "id": 438 + "image_path": "G:\\images\\combined\\005220_jpg.rf.9971ebc74f629ccaba57e1fdf19ec59c.jpg", + "response": "A group of people walking up a snowy hill.", + "id": 31049 }, { - "image_path": "G:\\images\\combined\\002302_jpg.rf.fad6d77b9f3282a70300e60c24d5ddb2.jpg", - "response": "A man wearing a hard hat and safety vest is holding a metal grate in a warehouse.", - "id": 439 + "image_path": "G:\\images\\combined\\005222_jpg.rf.da5fc932ce820d6f2e9f8db17df58572.jpg", + "response": "a man standing in front of a unfinished house wearing a yellow hard hat", + "id": 31050 }, { - "image_path": "G:\\images\\combined\\002303_jpg.rf.51e73b06dd8fdd674fb0319689e270de.jpg", - "response": "The image shows a smiling construction worker in a yellow hard hat, working on a brick wall. The worker is holding a trowel in his hand and appears to be focused on his task. The wall is made of red bricks and is being built vertically, with the worker sitting on the bottom row. The background shows a partially constructed building with a similar brick wall. There are a few other people in the image, but the main focus is on the smiling worker.", - "id": 440 + "image_path": "G:\\images\\combined\\005223_jpg.rf.e0be8a5cbe482ef581d4766d14f76e02.jpg", + "response": "a group of men in hard hats", + "id": 31051 }, { - "image_path": "G:\\images\\combined\\002305_jpg.rf.ade7a35835cf8aab3315371518b7e4a1.jpg", - "response": "A man in an orange work shirt and a yellow hard hat is looking at something on the ground. He is leaning over and looking down at it. He is wearing a white shirt underneath his work shirt. He is also wearing a pair of glasses on his forehead. He is wearing a ring on his left hand. The man is also wearing a pair of orange work pants. He is wearing a pair of brown work boots.", - "id": 441 + "image_path": "G:\\images\\combined\\005224_jpg.rf.6a5aa3f677fb10e6eae00cf4943813e7.jpg", + "response": "A man wearing a yellow hard hat and work clothes is using a circular saw to cut through a long piece of lumber. The saw is on top of the lumber and the man is behind it, guiding it as it cuts through the wood. There are other pieces of lumber stacked nearby and a cup is placed near the saw.", + "id": 31052 }, { - "image_path": "G:\\images\\combined\\002306_jpg.rf.465902ca4e220ab53888456f63e47e08.jpg", - "response": "A worker is seen here checking power equipment. He is wearing a white shirt, a grey-green vest and a yellow helmet. He is holding a black and blue glove in one hand and is on the phone with a yellow and black cord. In front of him is a grey box with four black buttons on it. To the right of the grey box, there's a grey box with a red button. All these equipment are installed on a grey pole. The background shows a snow-covered mountain.", - "id": 442 + "image_path": "G:\\images\\combined\\005225_jpg.rf.f3195e5e5952b16f63d69130e7b09a3d.jpg", + "response": "a person wearing a blue shirt and a red helmet is working on an electrical tower.", + "id": 31053 }, { - "image_path": "G:\\images\\combined\\002308_jpg.rf.528aa2036ac256cef6726cffd17110bd.jpg", - "response": "In the image, a woman is wearing a yellow hard hat and a blue jacket. She is smiling at the camera while standing in front of a control panel with a whiteboard on the wall behind her. The control panel has various switches and lights. There is a computer monitor to her left with data displayed on it. A notepad and pen are placed on the control panel in front of her. A cell phone is visible on the control panel with a cord attached to it. A keyboard and a mouse are also present on the control panel. To the left of the control panel, there is a drawer with a green box in it.", - "id": 443 + "image_path": "G:\\images\\combined\\005226_jpg.rf.d1c564ec6752d7bc93a20ea7ce33053c.jpg", + "response": "A man in a yellow hard hat and reflective vest stands in front of a large silo. The silo is silver and is made of metal. The man is standing with his back to the camera. He is wearing blue jeans and a yellow hard hat. He is also wearing a reflective vest. The vest is yellow and has black stripes on it.", + "id": 31054 }, { - "image_path": "G:\\images\\combined\\002309_jpg.rf.976c1e48387abeaf91844d04559a8616.jpg", - "response": "Builder wearing safety helmet and high visibility vest using drill to fit window frame in roof space of a house in construction.", - "id": 444 + "image_path": "G:\\images\\combined\\005227_jpg.rf.e0e40223b089dea999bfe83031dc3e1e.jpg", + "response": "A man in a blue shirt and grey pants is hanging from a wire with a harness. He is wearing a grey hat and has a beard.", + "id": 31055 }, { - "image_path": "G:\\images\\combined\\002310_jpg.rf.da39de89324d313eb251ec60934a1305.jpg", - "response": "In the image two workers are on a telephone pole in orange jumpsuits and blue hats. They are fixing the wires on the telephone pole.", - "id": 445 + "image_path": "G:\\images\\combined\\005229_jpg.rf.d99eb9a87fc200d88dfa6dab287e1a24.jpg", + "response": "The image shows a group of men standing in the street. They are all wearing hard hats. Some of them are wearing suits. In the background, there is a car and a construction site with a yellow excavator.", + "id": 31056 }, { - "image_path": "G:\\images\\combined\\002311_jpg.rf.a4b2ce63c11b7b348ee0fb4150042134.jpg", - "response": "A group of men in blue work uniforms and yellow helmets are working on a power line. They are on a metal platform on top of a utility pole. The pole is made of wood and has many wires attached to it. The men are wearing safety ropes and are working on the wires.", - "id": 446 + "image_path": "G:\\images\\combined\\00522_jpg.rf.2aa334ceb6521ed88b8bcc40b15fd19c.jpg", + "response": "In the image, two people are standing next to each other, shaking hands. The person on the left is wearing a white shirt and has long blonde hair. The person on the right is wearing a yellow hard hat, black t-shirt, and is holding a white plan in his hand. They seem to be having a conversation.", + "id": 31057 }, { - "image_path": "G:\\images\\combined\\002313_jpg.rf.27764fe9e8397a3b8c0e49ffe5ad402c.jpg", - "response": "An electrician in a blue uniform and blue hard hat, climbing a ladder to work on power lines.", - "id": 447 + "image_path": "G:\\images\\combined\\00522_jpg.rf.7afc8ea00dc75c37006153a1b83aa065.jpg", + "response": "In the image, two people are standing outside, shaking hands. The person on the left, who is wearing a white shirt, is slightly overlapping the person on the right, who is wearing a yellow hard hat and black shirt. The man in the hard hat is holding a blueprint, which is visible at his lower right. They are both facing each other, and the man in the hard hat is looking slightly towards the left of the camera. They are standing in front of a building under construction. The building has a framework of metal poles and wooden beams, and it appears to be in an advanced state of disrepair. There are several large holes in the side of the building, and it appears to be missing many of its windows. The sky above them is blue with large white clouds.", + "id": 31058 }, { - "image_path": "G:\\images\\combined\\002314_jpg.rf.955f29c4c1e308c2f3e590963c9e62ab.jpg", - "response": "A man in a blue hat and white shirt is on a light post, touching wires.", - "id": 448 + "image_path": "G:\\images\\combined\\005230_jpg.rf.0323485b54a5bf57a785169f20453243.jpg", + "response": "The image shows two men in a cave. They are wearing yellow helmets and red safety vests. The men are standing in front of a waterfall. One of the men is holding a rope with a hook on the end. The man on the left is also holding a hose. The cave walls are covered in a white substance. The image is by Visual China.", + "id": 31059 }, { - "image_path": "G:\\images\\combined\\002316_jpg.rf.d943ecf072c99952147472e47fcbcea1.jpg", - "response": "A group of people standing on a unfinished bridge.", - "id": 449 + "image_path": "G:\\images\\combined\\005231_jpg.rf.3508f6235177e8bfeb0bcba07805254c.jpg", + "response": "A man in a hard hat and grey shirt is using a tool to apply cement to a grey wall.", + "id": 31060 }, { - "image_path": "G:\\images\\combined\\002317_jpg.rf.25afd79c69ff4bb6450b7de818ed3466.jpg", - "response": "A man is cutting a large blue pipe with a circular saw.", - "id": 450 + "image_path": "G:\\images\\combined\\005233_jpg.rf.7984572fdd0dda41c235dacc31dbddc8.jpg", + "response": "An employee works at a coal mine in Datong city, Shanxi province, China, 20 February 2017. The picture shows an employee at a coal mine in Datong city, Shanxi province, China. The picture shows the employee wearing a blue outfit, a red helmet and glasses. The employee is holding a long steel bar with both hands. The background is blurred and the picture is focused on the employee.", + "id": 31061 }, { - "image_path": "G:\\images\\combined\\002318_jpg.rf.5b43915864e9698513bd942cec2d3562.jpg", - "response": " Firefighters(258,446),(493,933)(408,558),(719,997)(798,105),(997,996)(3,133),(257,995) work to free a man trapped in a trench after a wall collapsed in the early hours of the morning.", - "id": 451 + "image_path": "G:\\images\\combined\\005234_jpg.rf.c99b3677a369094516e899c2b9b222ea.jpg", + "response": "In the image, two workers are standing on a metal platform wearing yellow helmets and work clothes. They are working on a large metal structure with power lines and cables behind them. The sky is blue and clear.", + "id": 31062 }, { - "image_path": "G:\\images\\combined\\0023199523656671.jpg", - "response": "A bottle of pink liquid, a pink box and a red box with the word CASTELBEL on it.", - "id": 452 + "image_path": "G:\\images\\combined\\005235_jpg.rf.cc77021326208327a7136f15c29f4f94.jpg", + "response": "A man wearing a yellow vest and a hard hat standing in a warehouse.", + "id": 31063 }, { - "image_path": "G:\\images\\combined\\002319_jpg.rf.c1ec88cee7f7946917184733f20dd38f.jpg", - "response": "A man wearing a tie die shirt, black helmet and white safety shoes is on a blue metal platform. He is holding a rope and wearing a tool belt. The sky is clear blue behind him.", - "id": 453 + "image_path": "G:\\images\\combined\\005236_jpg.rf.ad1bf23e9687b12d4121558c693adfd6.jpg", + "response": "In the image two workers are seen fixing an electricity transformer. They are wearing safety gear and are in the process of fixing a part of the transformer. The sky is blue in color and the workers are wearing white and blue color helmets.", + "id": 31064 }, { - "image_path": "G:\\images\\combined\\002321_jpg.rf.370a2c4f66a813b64f74ccb414c49710.jpg", - "response": "A man in a yellow hard hat is kneeling down in the center of a large circular structure made of steel rebar. The rebar is stacked in a circular pattern around him, with some of it bent into a circular shape. There are other people working in the background, with one person on the left and two more on the right. They are also wearing yellow hard hats.", - "id": 454 + "image_path": "G:\\images\\combined\\005237_jpg.rf.da4cf92cc88a497aa3cc956a048dd269.jpg", + "response": "a group of people standing around talking", + "id": 31065 }, { - "image_path": "G:\\images\\combined\\002322_jpg.rf.609469e61d77cbd6d1aab32b91479fc0.jpg", - "response": "In the image two people are working on a large pipe. The person on the left is wearing a red shirt and yellow hard hat and is using a tool to work on the pipe. The person on the right is wearing a pink shirt and yellow hard hat and is holding the pipe while the other person works on it. There is a second person in the background wearing blue pants and a yellow hard hat. They are both standing on the dirt near the pipe. There is a bucket in the background on the left and a forklift in the background on the right.", - "id": 455 + "image_path": "G:\\images\\combined\\005238_jpg.rf.3919fd15e825c549524f6312061b81cc.jpg", + "response": "A man wearing a red hard hat standing in front of a blue truck filled with wood.", + "id": 31066 }, { - "image_path": "G:\\images\\combined\\002323_jpg.rf.4e471ccaa361e601e4b54ea305ba01be.jpg", - "response": "A group of people working on a building site with scaffolding and smoke stacks in the background.", - "id": 456 + "image_path": "G:\\images\\combined\\005239_jpg.rf.bb8662c8121ff53544dce1fa3514cd87.jpg", + "response": "A group of men standing around a white van.", + "id": 31067 }, { - "image_path": "G:\\images\\combined\\002324_jpg.rf.d63752e2dcea893e880a49b80ee2855f.jpg", - "response": "A group of five men sitting on wood.", - "id": 457 + "image_path": "G:\\images\\combined\\00523_jpg.rf.08869fd21ee190bda45c23e83c993c27.jpg", + "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", + "id": 31068 }, { - "image_path": "G:\\images\\combined\\002325_jpg.rf.2b590fa8f814070f3d3689073a1e0f1c.jpg", - "response": "A construction site with multiple people working on it. There is a man on the left side of the image and another on the right side. They are both wearing white hard hats. In the center of the image, there is a large area of concrete that has been built but not finished. There are rebar sticking up out of the ground in a grid pattern. There are also several tools scattered around the site including a green hard hat, a white rope, and a blue hose.", - "id": 458 + "image_path": "G:\\images\\combined\\00523_jpg.rf.e2f2261e42b21b3a58b865f1959663d6.jpg", + "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", + "id": 31069 }, { - "image_path": "G:\\images\\combined\\002326_jpg.rf.3aab0427986ff91d6f8037dfa375db4f.jpg", - "response": "A group of men walking across a construction site.", - "id": 459 + "image_path": "G:\\images\\combined\\005240_jpg.rf.c2f1b775f26d1df9c7f05aa49fe46de3.jpg", + "response": "a group of men standing around a bus", + "id": 31070 }, { - "image_path": "G:\\images\\combined\\002327_jpg.rf.38d765155d575ac777d24766349ea1e8.jpg", - "response": "A group of construction workers are standing on a sidewalk. They are all wearing hard hats and drinking coffee. One of the workers is drinking from a red cup. In the background, there is a yellow construction vehicle parked on the street.", - "id": 460 + "image_path": "G:\\images\\combined\\005241_jpg.rf.fe8ff728c5da1af05cba7301632798e2.jpg", + "response": "The construction site is located in the city of Xiamen, in the southeastern part of China. In the image, three construction workers are busy working on the site. They are wearing blue helmets and uniforms, indicating that they are construction workers. One of the workers is holding a long white pole, possibly a pole for measuring or supporting. Another worker is standing on the upper level of the site, while the third worker is on the lower level. The workers are focused on their tasks and appear to be engaged in various activities related to the construction of the site.", + "id": 31071 }, { - "image_path": "G:\\images\\combined\\002328_jpg.rf.70d40f1ef55aa079fabee75d0c7ebb27.jpg", - "response": "Rescue workers carry an injured worker from the site of a cave-in at a construction site in Kunming, Yunnan province, China, 24 October 2014. According to local media, at least 19 construction workers were buried alive in the cave-in, and 15 of them were rescued after a 14-hour operation. The rescue operation is still ongoing.", - "id": 461 + "image_path": "G:\\images\\combined\\005242_jpg.rf.2e4f8594daf1f2f5f1072c1b9633fa6c.jpg", + "response": "A man in a dark suit and red hard hat points to a crane operating in the sky. He is standing next to a man in a yellow hard hat who is also looking at the crane. Both men are in front of a large building under construction.", + "id": 31072 }, { - "image_path": "G:\\images\\combined\\002329_jpg.rf.9baea2dec8582a2cf22413a10e7406b7.jpg", - "response": "A scene of a building under construction with a scaffolding around it. There are two workers wearing white hats and blue shirts, one is in the center of the image and the other one is on the right side of the image, climbing the scaffolding.", - "id": 462 + "image_path": "G:\\images\\combined\\005243_jpg.rf.8d1be97cdb296a107f83e45ef1ae8b3d.jpg", + "response": "a group of people standing in front of some cars", + "id": 31073 }, { - "image_path": "G:\\images\\combined\\002331_jpg.rf.327bfc86498be5af3f1dc753746ec62f.jpg", - "response": "A couple of men in hard hats and work clothes are in a factory, standing near a table with bricks on it. They are looking at the camera and one of them is pointing to a brick on the table.", - "id": 463 + "image_path": "G:\\images\\combined\\005244_jpg.rf.628fb4e38b252fdcddc91c3c85e54183.jpg", + "response": "a person wearing a silver helmet and a blue jacket", + "id": 31074 }, { - "image_path": "G:\\images\\combined\\002332_jpg.rf.936b7a914951acf96de9b3387134d2ff.jpg", - "response": "A group of men working on a construction site.", - "id": 464 + "image_path": "G:\\images\\combined\\005246_jpg.rf.5b2c751a1940210894e03ace7da4d6cf.jpg", + "response": "A worker in a red jumpsuit and blue hard hat stands on a metal platform working on a transformer. The transformer is large and metal and is located on a metal pole. There are two other workers visible in the image, one on the right side of the pole and one on the left side. The sky is blue and clear.", + "id": 31075 }, { - "image_path": "G:\\images\\combined\\002333_jpg.rf.10563a5b8065b721ff7646a0ba8f6b22.jpg", - "response": "A construction worker standing in the middle of a construction site. The worker is facing away from the camera and is wearing a yellow hard hat. The construction site is dark and there are many wooden planks and debris scattered around. There are also some metal bars visible in the scene.", - "id": 465 + "image_path": "G:\\images\\combined\\005247_jpg.rf.df92ffac70d61ef62328e3da7adad77a.jpg", + "response": "A man in a white shirt and yellow hard hat watches as a building is torn down.", + "id": 31076 }, { - "image_path": "G:\\images\\combined\\002335_jpg.rf.b819e1a608c5c2236351f528f7655e63.jpg", - "response": "The image shows a group of four men standing in a parking lot. They are all wearing orange hard hats, and the man on the left is also wearing a black jacket. In the background, there is a light blue building on the left, and a yellow building on the right. There are two cars parked in the lot, one in the middle and the other on the right. There is also a white truck parked in the middle of the lot, and a couple of other vehicles parked or driving in the background.", - "id": 466 + "image_path": "G:\\images\\combined\\005249_jpg.rf.289abe20e369a441277263cb8789a787.jpg", + "response": "In the image, a tree is shown falling across power lines. Below the tree, two men are working to remove it. One man is standing on the ground holding a pole and pulling on a tree branch while the other man is standing on a ladder and cutting the tree with a chainsaw. They are both wearing blue shirts and hard hats.", + "id": 31077 }, { - "image_path": "G:\\images\\combined\\002336_jpg.rf.b4fe72e374a8838a9735ab0d89291506.jpg", - "response": "A group of men working in a museum display of a glacier.", - "id": 467 + "image_path": "G:\\images\\combined\\00524_jpg.rf.a24c0b3f1e7a201802f33393cf96d8d1.jpg", + "response": "The image shows two men wearing red helmets and blue work clothes. They are checking a power line. One man is crouching down and looking at something on the power line, while the other man is watching him. They both seem to be focused on their task.", + "id": 31078 }, { - "image_path": "G:\\images\\combined\\002337_jpg.rf.f212f2dbced9e15da2719ef656e823b4.jpg", - "response": "A man in a green shirt and black pants is on a power line.", - "id": 468 + "image_path": "G:\\images\\combined\\00524_jpg.rf.ef82488a584843650f84a5144b3fadda.jpg", + "response": "The image shows two men wearing red helmets and orange safety harnesses, with one standing on a ladder and the other on the ground, both working on a metal structure. They are both wearing blue denim shirts and are focused on their task.", + "id": 31079 }, { - "image_path": "G:\\images\\combined\\002338_jpg.rf.d03545bac38abcab91f83576514f7b0a.jpg", - "response": "A man in a yellow hard hat is pointing to a blueprint while another man in a white hard hat looks at the blueprint.", - "id": 469 + "image_path": "G:\\images\\combined\\005250_jpg.rf.3e73c963b513e0950ee24aae0397dffa.jpg", + "response": "The image shows a group of men standing in a circle in front of a construction site. They are all wearing hard hats, with some wearing blue and others wearing orange. The men are standing in front of a street that has been dug up by a yellow and black backhoe. In the background, there are several buildings, some of which are in the process of being demolished. The image is taken in a city.", + "id": 31080 }, { - "image_path": "G:\\images\\combined\\002339_jpg.rf.23a85a0eba6753fd3664d2fb5b80b290.jpg", - "response": "A group of workers are clearing a fallen tree from a road. There are two construction trucks and two cherry pickers in the scene. One of the trucks is yellow and positioned on the left side of the image, while the other is red and positioned on the right side of the image. The yellow truck is also lifting a fallen tree onto a trailer. The cherry pickers are positioned in the middle of the scene, one on the left side and one on the right side. The workers are holding umbrellas to protect themselves from the rain.", - "id": 470 + "image_path": "G:\\images\\combined\\005251_jpg.rf.462f8a55bfcd42c08f32ba4466ee60f7.jpg", + "response": "A group of men working on oil drills.", + "id": 31081 }, { - "image_path": "G:\\images\\combined\\002340_jpg.rf.c9cf21b267fe6133cb93e3fb9a26ac59.jpg", - "response": "a man in a white shirt(161,268),(386,986)", - "id": 471 + "image_path": "G:\\images\\combined\\005252_jpg.rf.b73662bc7cc0085ceb7bc380b21f4abd.jpg", + "response": "The image shows several construction workers at a construction site. They are wearing yellow hard hats and work clothes. They are working on a large concrete structure, pouring concrete onto rebar. There are several hoses and tools scattered around the area. In the background, there is a crane and a building under construction.", + "id": 31082 }, { - "image_path": "G:\\images\\combined\\002341_jpg.rf.410e830e4464e7d1a934f48b537d56e1.jpg", - "response": "A group of construction workers in hi vis vests and hard hats are sitting on a bench in a construction site. They are wearing safety gear and one of them is checking a phone.", - "id": 472 + "image_path": "G:\\images\\combined\\005253_jpg.rf.a97317b9400248a2591e7240f493759b.jpg", + "response": " Miners(568,469),(728,912)(382,472),(503,788) at work in a mine", + "id": 31083 }, { - "image_path": "G:\\images\\combined\\002342_jpg.rf.5f7c451908a1f3fe3c0c710ce5ee5eba.jpg", - "response": "The picture shows a group of people standing around and talking. Among them, there are three men in the focus of the picture. One man on the left is wearing a white shirt and a black watch. The man in the middle is wearing a black suit. The man on the right is wearing a black overcoat and a black shirt. He is also talking with his hands.", - "id": 473 + "image_path": "G:\\images\\combined\\005254_jpg.rf.d996e6a7ea943da315a7bbb63a2e60f8.jpg", + "response": "A group of rescue workers in protective gear stand around a red piece of mining equipment. They are wearing helmets and some have breathing tubes. They are looking at the equipment and talking to each other. In the background, there is a brick wall and a pipe. There is also a man in an orange jumpsuit standing on a ladder.", + "id": 31084 }, { - "image_path": "G:\\images\\combined\\002343_jpg.rf.e1a1c8cd63a242a45343f4a8e7697425.jpg", - "response": "A man wearing a fire hat and protective gear with sweat on his face and under his hat.", - "id": 474 + "image_path": "G:\\images\\combined\\005255_jpg.rf.d185a239986297307fbf44619b28658b.jpg", + "response": "A group of workers are on a scaffolding that is built around a large tower. They are working on the tower, which is in the mountains. The tower is yellow and red, and is located near a green mountain range. The sky is grey, and the workers are wearing hard hats and safety gear.", + "id": 31085 }, { - "image_path": "G:\\images\\combined\\002345_jpg.rf.eadb164e3e0f147303fd97d3585d6f81.jpg", - "response": "A group of men in blue tops and hats are working on a tower.", - "id": 475 + "image_path": "G:\\images\\combined\\005258_jpg.rf.d49eac23edc94c201b053aaf33f203e0.jpg", + "response": " Men(437,164),(603,976)(649,136),(838,948)(114,249),(300,997)(348,199),(431,502)(821,169),(960,872)(2,196),(177,931) in suits(651,255),(835,894)(439,286),(602,938)(116,368),(298,967) and hard hats(482,162),(571,251)(176,249),(268,332)(697,135),(783,217)(367,199),(410,249)(69,196),(171,281) walking in a construction site", + "id": 31086 }, { - "image_path": "G:\\images\\combined\\002346_jpg.rf.dfad6eb33803e5b06031ac07e28413a6.jpg", - "response": "Men(237,175),(460,969)(673,158),(953,969)(613,53),(789,898) digging up the ground", - "id": 476 + "image_path": "G:\\images\\combined\\005259_jpg.rf.9740885ec29e00c0b840f689ee23098b.jpg", + "response": "A group of men in hard hats and work clothes are holding a large pipe.", + "id": 31087 }, { - "image_path": "G:\\images\\combined\\002347_jpg.rf.e0af7ef7e6e5181d3a2931199b53bf94.jpg", - "response": "The photo shows men in suits standing on a dirt field. There are 10 men in total, ranging from left to right: a man with black hair and a black jacket; a man with gray hair and a gray jacket; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit. In the background, there is a car parked.", - "id": 477 + "image_path": "G:\\images\\combined\\005260_jpg.rf.c1c62c416761fcea039a726dd4c218b0.jpg", + "response": "In the image, a man is working at a factory that produces hot rolled steel. The factory has a large machine that is melting steel and spitting out large red hot pieces of steel. The man is wearing a hard hat and blue overalls and is working with a large metal rod. He is also standing on a platform near the machine. The factory is quite industrial and has a lot of steel equipment and machinery.", + "id": 31088 }, { - "image_path": "G:\\images\\combined\\002348_jpg.rf.c3fecef56daa28ccaed42e8e98545abf.jpg", - "response": "A couple of men in yellow helmets are on top of power lines.", - "id": 478 + "image_path": "G:\\images\\combined\\005261_jpg.rf.134dc3f6201e0218c49425fd330b4545.jpg", + "response": "A group of men in white shirts and red hard hats stand in front of a construction site. In the background there is a hill.", + "id": 31089 }, { - "image_path": "G:\\images\\combined\\002349_jpg.rf.894fb2cf56140add2b21313dd63c3601.jpg", - "response": "A group of people stand behind a table with a model city on it. They are all looking at the model closely. There is a blue dining table in the background. On the table, there are some papers and a laptop. There is a potted plant on the right side of the table. A curtain is covering the window behind the people. Some people are wearing black, some are wearing white, and one person is wearing a pink shirt.", - "id": 479 + "image_path": "G:\\images\\combined\\005262_jpg.rf.760a562929cf719ece82814d7ac7eedc.jpg", + "response": "In the image there are two men working on an electrical panel. One man is on the left and he is wearing a blue helmet and a grey shirt. He is also wearing a watch on his left wrist. The second man is on the right and he is wearing a white helmet and a grey shirt. He is also wearing a watch on his right wrist. They are both working on the electrical panel.", + "id": 31090 }, { - "image_path": "G:\\images\\combined\\002351_jpg.rf.cf71548402429174d8649b78058b652b.jpg", - "response": "A man in a hard hat standing in front of an electrical substation.", - "id": 480 + "image_path": "G:\\images\\combined\\005264_jpg.rf.6fe1d038d39a45d57a0e873d74cda539.jpg", + "response": "The image shows a group of men in green and yellow work clothes carrying a large metal ladder over their shoulders. They are in a forested area with a few trees visible in the background. In the foreground, there is a large pipe and a yellow digger.", + "id": 31091 }, { - "image_path": "G:\\images\\combined\\002353_jpg.rf.ed686a5eb9763053295f36e64d8437eb.jpg", - "response": "A construction site with a dump truck unloading dirt into a hole.", - "id": 481 + "image_path": "G:\\images\\combined\\005265_jpg.rf.c7e746861d1577031bf2ff9c483033ba.jpg", + "response": "In the image there is a female construction worker wearing a blue shirt and a red scarf. She is standing on a construction site holding a black belt with a hook on it. There are several rolls of steel cables next to her. In the background there is a building under construction with several floors built and some scaffolding.", + "id": 31092 }, { - "image_path": "G:\\images\\combined\\002354_jpg.rf.1a6f491386981fce13f6347511a7acfc.jpg", - "response": "a group of people standing in a hallway", - "id": 482 + "image_path": "G:\\images\\combined\\005266_jpg.rf.0f371e76393ad515677c7378ba5ba58d.jpg", + "response": "A construction site with multiple workers and equipment.", + "id": 31093 }, { - "image_path": "G:\\images\\combined\\002355_jpg.rf.4302322dc49142a963545632bcadc199.jpg", - "response": "The image shows a group of men standing inside a large cylindrical device that looks like a giant pipe. The pipe is orange in color and has many nozzles and tubes coming out of it. The men are standing at various positions around the device, with some on the left side, some in the middle, and some on the right side. They are all wearing hard hats, with some wearing orange and some wearing white. The background is a bit blurry, with a wall on the left side and a large machine on the right side.", - "id": 483 + "image_path": "G:\\images\\combined\\005267_jpg.rf.b255620abd1f24b8634abc83747887cd.jpg", + "response": "A woman wearing a pink and white shirt is talking to a group of four men wearing green and yellow hard hats. They are all holding papers and one of the men is holding a pen. They are standing in front of a white truck and a building. There is also a banner in the background that says in red Chinese characters, \"safety first\".", + "id": 31094 }, { - "image_path": "G:\\images\\combined\\002356_jpg.rf.2dd86923a678e1d14f5fb3e37aa56bc5.jpg", - "response": "A group of men carrying a large metal pipe.", - "id": 484 + "image_path": "G:\\images\\combined\\005269_jpg.rf.823eed31e8feb4498986965058804a78.jpg", + "response": "The photo shows a group of men walking down a red carpet. The men are wearing suits and the carpet is located in front of a building. Some of the men are wearing ties.", + "id": 31095 }, { - "image_path": "G:\\images\\combined\\002357_jpg.rf.4e7078b5460605942fcf4591b755cedc.jpg", - "response": "A group of men working on a construction site.", - "id": 485 + "image_path": "G:\\images\\combined\\00526_jpg.rf.1132fb5c61d374a6cef4c1d0cc790ae4.jpg", + "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", + "id": 31096 }, { - "image_path": "G:\\images\\combined\\002358_jpg.rf.d5a76d93ac6786080bc477984742bb9e.jpg", - "response": "In the image there are two people wearing hard hats, one of them is a woman and the other one is a man. They are both dressed in business attire. The woman is holding a tablet and showing it to the man. They are both looking at the tablet and seem to be in a warehouse. The walls of the warehouse are filled with stacks of wooden planks.", - "id": 486 + "image_path": "G:\\images\\combined\\00526_jpg.rf.5d22d0dc6bf6ea8eae18674d41627f1e.jpg", + "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", + "id": 31097 }, { - "image_path": "G:\\images\\combined\\002359_jpg.rf.a0ddd0b40a8c735b30efe85d155cadb8.jpg", - "response": "a group of men working on a power line", - "id": 487 + "image_path": "G:\\images\\combined\\005270c5d6e6b6d6.jpg", + "response": "A black car is parked on the street in front of a building. The building has a Christmas tree inside of it. There is a Fat Head's Saloon on the street corner.", + "id": 31098 }, { - "image_path": "G:\\images\\combined\\002362_jpg.rf.505a2868ff010327ffcad38c67d8fcf8.jpg", - "response": "A group of four people standing around several tanks of gas.", - "id": 488 + "image_path": "G:\\images\\combined\\005270_jpg.rf.3f14bfb99dabc6a3bcb204ba77cf3aeb.jpg", + "response": "A group of people walking down a street.", + "id": 31099 }, { - "image_path": "G:\\images\\combined\\002363_jpg.rf.e9243f0cc2670772f12c2146aebafe03.jpg", - "response": "A group of people stand in front of a large model of a city. They are looking at a model of buildings and streets. Some of the people are wearing ties.", - "id": 489 + "image_path": "G:\\images\\combined\\005271_jpg.rf.7598c216f65bf87d5835c5b68d617e70.jpg", + "response": "A man in a blue shirt and blue hat fixing an electrical box on the side of a building.", + "id": 31100 }, { - "image_path": "G:\\images\\combined\\002364_jpg.rf.e28cc60714418318ce045042b99e2ef9.jpg", - "response": "The image shows two workers at a construction site. They are wearing blue and white hard hats and are working on a large piece of metal. The metal is rusty and they are using a tool to make adjustments. There are many rusty metal pipes around them and several buckets in the background. Some of the buckets are green and some are white. They have a red star on them and are filled with paint.", - "id": 490 + "image_path": "G:\\images\\combined\\005272_jpg.rf.d988e346b8dd77d768c8339776a4dbf5.jpg", + "response": "A group of men standing around a table with a laptop and projector on it.", + "id": 31101 }, { - "image_path": "G:\\images\\combined\\002365_jpg.rf.87bbf624ab440ce41c9a7d49b76d0458.jpg", - "response": "The image depicts a group of men dressed in green and yellow snowsuits and hard hats, working together to clear snow and ice off of power lines. They are standing in a snowy field, surrounded by snow-covered trees and power lines. The sky above them is filled with snowflakes.", - "id": 491 + "image_path": "G:\\images\\combined\\005274_jpg.rf.7a3e2abde6dc057bd8bdce2abe910e6c.jpg", + "response": "A group of workers are working on a construction site. They are wearing yellow hard hats and t-shirts and are standing on a walkway. One worker is on the left holding a tool, one worker is in the middle raising their right arm, and another worker is on the right. In the background, there is a pile of sand.", + "id": 31102 }, { - "image_path": "G:\\images\\combined\\002366_jpg.rf.62c51faa6489f39445ab65549d9fe1cb.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 492 + "image_path": "G:\\images\\combined\\005275_jpg.rf.1c1fcc7873ec51a53f41ac1a080df3e4.jpg", + "response": "a group of people standing around a model city", + "id": 31103 }, { - "image_path": "G:\\images\\combined\\002367_jpg.rf.e817d1fbe84474376e756daefb26990e.jpg", - "response": "A construction site with multiple workers.", - "id": 493 + "image_path": "G:\\images\\combined\\005276_jpg.rf.e6c9ac062281623fc7b1e64bf09285b7.jpg", + "response": "A couple of men in blue work clothes are on a ladder working on power lines.", + "id": 31104 }, { - "image_path": "G:\\images\\combined\\002368_jpg.rf.36d4bb59d18d5436484da6675fb3a806.jpg", - "response": "A worker in a dangerous job setting.", - "id": 494 + "image_path": "G:\\images\\combined\\005277_jpg.rf.fea6d2282fde83b3592bbf69acc8cbe8.jpg", + "response": "A construction worker wearing a yellow shirt and blue pants is on a scaffolding. He is wearing a yellow helmet and holding a blue tool in his right hand. He is in the process of climbing down the scaffolding. The sky is a clear blue and the sun is shining.", + "id": 31105 }, { - "image_path": "G:\\images\\combined\\002370_jpg.rf.748308a6941c1f27916feae114b11218.jpg", - "response": "A group of people working on a construction site.", - "id": 495 + "image_path": "G:\\images\\combined\\005278_jpg.rf.f9b7b7890fb1f09034a483a602957af0.jpg", + "response": "In the image, there is a person wearing a yellow and white safety vest and a white hat standing on a construction site. The person is holding a small device and is inspecting something. There are several other people in the background, some wearing red and yellow hats, and one person is carrying a large bag. The whole scene is set in an unfinished building with lots of steel bars.", + "id": 31106 }, { - "image_path": "G:\\images\\combined\\002371_jpg.rf.42dc9b4ef430dd125e662f4b666c3169.jpg", - "response": "A man and woman are talking to a man in a construction hat while a third man looks on. They are all crouched down and the man in the orange vest and hat is holding a plan. They are in a large, empty room with white walls and concrete floors. There is a large window on the left wall and extension cords are on the floor.", - "id": 496 + "image_path": "G:\\images\\combined\\005279_jpg.rf.ab9c0746159b810e27955c89e02ea73b.jpg", + "response": "In the image there are three people working on the right side of the image. They are wearing yellow helmets and are standing next to a large\u7b3c\u5b50\u7ed3\u6784. The\u7b3c\u5b50 is made of steel and is gray in color. It is being built in front of a blue warehouse. On the right side of the warehouse, there is a red container. In the background, there is a yellow machine. On the floor, there are several wires. The image is taken outside.", + "id": 31107 }, { - "image_path": "G:\\images\\combined\\002373_jpg.rf.152a5a944d668aaa00f3bdbef4ab84c0.jpg", - "response": "A construction site with multiple workers.", - "id": 497 - }, - { - "image_path": "G:\\images\\combined\\002374_jpg.rf.f6836987376242de896537aa0980d0e0.jpg", - "response": "A pair of workers in yellow jackets and hard hats are standing on a bridge, working on the train tracks below. They are wearing yellow jackets and hard hats. The sky is blue with a few clouds. To the left of the bridge is a hill with trees.", - "id": 498 + "image_path": "G:\\images\\combined\\00527_jpg.rf.d3aaec57e3ddb1b0f5cfa5a5a1cbc9b2.jpg", + "response": "A group of people wearing hard hats are looking at a blueprint together outside a construction site.", + "id": 31108 }, { - "image_path": "G:\\images\\combined\\002375_jpg.rf.c3990ab233ad0e075a61d9d6d7717e73.jpg", - "response": "In the image there is a man wearing a red helmet and work clothes standing in a room with a wall on his right and a large white cabinet on his left. The man is looking at a white screen which is part of the large cabinet. The cabinet has several knobs and buttons on it. In the background there are two other people, one in the middle of the room and the other on the left side of the image.", - "id": 499 + "image_path": "G:\\images\\combined\\005280_jpg.rf.de839fe65ff0c2f60e8cb3f60475bf84.jpg", + "response": "A group of men in blue work uniforms are standing on a ladder and climbing on a large metal structure that is part of a power pole. They are all reaching up to work on the metal structure.", + "id": 31109 }, { - "image_path": "G:\\images\\combined\\002376_jpg.rf.796f9b04d642258d7c6852e841253b87.jpg", - "response": "A group of people walking across a construction site.", - "id": 500 + "image_path": "G:\\images\\combined\\005281_jpg.rf.24e8ab22d968f4be2d6d52e9c9ed2163.jpg", + "response": "An electrician is working on power lines.", + "id": 31110 }, { - "image_path": "G:\\images\\combined\\002377_jpg.rf.703fb38eb289935838cdd7ac10378a54.jpg", - "response": "A man wearing a blue shirt and a blue hat is working on an electrical device outdoors. He is kneeling down and has his hands on the device. The device has many wires and metal bars.", - "id": 501 + "image_path": "G:\\images\\combined\\005282_jpg.rf.97d75d4ddc826373748053d7cf98da10.jpg", + "response": "A man wearing a yellow vest and a yellow hard hat is holding a cell phone to his ear. He is standing on a construction site holding a plan.", + "id": 31111 }, { - "image_path": "G:\\images\\combined\\002378_jpg.rf.d104bd331efe1e1f4969400a4f276009.jpg", - "response": "A worker in a hard hat stands in front of a sign that reads \"\u79fb\u52a8\u5438\u6c27\u8f66\" (\u79fb\u52a8\u5438\u6c27\u8f66) at a construction site in Xi'an, Shaanxi province, China, 26 November 2015.", - "id": 502 + "image_path": "G:\\images\\combined\\005283_jpg.rf.cf80559bc187d4e8ddcc370761b69e3b.jpg", + "response": "A group of men are working on a power box.", + "id": 31112 }, { - "image_path": "G:\\images\\combined\\002379_jpg.rf.1eb289f420c1444ad1a4b72e4c764bd3.jpg", - "response": "A group of men in uniforms working on power lines.", - "id": 503 + "image_path": "G:\\images\\combined\\005285_jpg.rf.059c35afb0e14ff0645ee1260514dd63.jpg", + "response": "A worker wearing a yellow hat that says \"30\" on it.", + "id": 31113 }, { - "image_path": "G:\\images\\combined\\002381_jpg.rf.7ab87f3479c9cdf9c17ccd28651ee788.jpg", - "response": "A group of people in blue work clothes and blue safety helmets are standing around a table full of metal bars.", - "id": 504 + "image_path": "G:\\images\\combined\\005286_jpg.rf.4360ec7bf2bd7bd0aaf23b07b1333061.jpg", + "response": "A group of men sitting around a table.", + "id": 31114 }, { - "image_path": "G:\\images\\combined\\002383_jpg.rf.4cf938286bb92486e88e9c2a855ac80f.jpg", - "response": "A man sitting on a yellow table eating a sandwich.", - "id": 505 + "image_path": "G:\\images\\combined\\005287_jpg.rf.67eedf6be6d37dacded6115cbfc7eecd.jpg", + "response": "In the image there is a large tunnel that is unfinished on the right side. In the center of the tunnel there are two workers wearing orange jackets and red hats, one is using a pick and the other is using a shovel. They are working on the ground which is wet and some parts are flooded. There are some yellow barriers on the left side of the workers and a yellow crane in the background. The tunnel walls are gray and white and the ceiling is gray.", + "id": 31115 }, { - "image_path": "G:\\images\\combined\\002385_jpg.rf.8d552b213122d61368134a182daea66b.jpg", - "response": "The image shows three men standing in front of a construction site. They are all dressed in green uniforms and red helmets. The man on the left is holding a green file folder. In front of the men is a red metal box with a white sign that says \"\"Waste oil tank\"\". To the right of the men is a brown building with a white roof, and a large green construction site.", - "id": 506 + "image_path": "G:\\images\\combined\\005288_jpg.rf.880707e9e94b6047ffe0d6123c31136b.jpg", + "response": "A man and a woman wearing hard hats looking at blueprints in a construction site.", + "id": 31116 }, { - "image_path": "G:\\images\\combined\\002386_jpg.rf.288ddd1442095c2f4932f518929ba01e.jpg", - "response": "An image of a construction worker in a orange vest and yellow hard hat standing in front of a unfinished wall.", - "id": 507 + "image_path": "G:\\images\\combined\\00528_jpg.rf.94829cc4ee87f1f983d8441c93a71bce.jpg", + "response": "a group of men standing in front of a building", + "id": 31117 }, { - "image_path": "G:\\images\\combined\\002387_jpg.rf.0519bb940b308293be0da5a27414e5c8.jpg", - "response": "In the image there are two workers wearing blue hats and work clothes. They are working on a wire on the ground. The background is a wall and some rocks.", - "id": 508 + "image_path": "G:\\images\\combined\\005290_jpg.rf.57c7035a779f09856151d941ec5c605e.jpg", + "response": "A worker in a white shirt and wearing a blue hat is sitting on the ground. They are wearing a white mask and are working with a bag of white stuff. There are two other workers in the background. One is in the far background on the left and the other is in the far background on the right. They are both wearing blue hats and one is wearing a white shirt and the other is wearing a blue shirt.", + "id": 31118 }, { - "image_path": "G:\\images\\combined\\002388_jpg.rf.b60b378ad4c7c9ce2e8c12670850be4f.jpg", - "response": "A group of rescue workers in orange uniforms stand in a pile of rubble. They are wearing hard hats and some have helmets on. They are standing on a pile of debris and looking at the remains of a building that is mostly gone. There are also many pieces of wood and debris scattered around them.", - "id": 509 + "image_path": "G:\\images\\combined\\005292_jpg.rf.8ea8d1263a716e26db8c4f0560bbc59a.jpg", + "response": "An elderly worker wearing a red helmet is operating a circular saw at a construction site. He is wearing a grey shirt, a grey vest and a brown apron. There are several other workers at the site, some are standing around, some are working with metal rods and some are standing near a building that is under construction. The sky is dark and it seems to be an overcast day.", + "id": 31119 }, { - "image_path": "G:\\images\\combined\\002389_jpg.rf.c86fa6236ec4f554716117c1fec1ae81.jpg", - "response": "The image shows a group of men working on a construction site in a tunnel. They are wearing hard hats and are working on a train track.", - "id": 510 + "image_path": "G:\\images\\combined\\005294_jpg.rf.89f8b4143b3d7f49dafbd1f824f274a8.jpg", + "response": "In the image there are three people working on a construction site. Two of them are wearing white helmets and are carrying a wooden beam on their shoulders. They are located on a wooden platform that is supported by a metal scaffolding. Another person, wearing a white helmet, is standing below them. Another person, wearing a yellow helmet, is standing below the platform, also working on the construction. The background is blurry, and the image is captured in black and white.", + "id": 31120 }, { - "image_path": "G:\\images\\combined\\002391_jpg.rf.53fa064cd56b7a0aa2e53143b2251519.jpg", - "response": "The image shows a group of six people carrying a bamboo crossbar with a large white container on it. They are walking through a river, with one person at the far left, two people in the middle, and three people on the right. All of them are wearing hard hats.", - "id": 511 + "image_path": "G:\\images\\combined\\005295_jpg.rf.d93fd5bd30bdd91ca6ea31ce88a73e86.jpg", + "response": " Two engineers(411,420),(586,997)(216,311),(421,757) standing in front of a pile(0,578),(997,997) of pipes", + "id": 31121 }, { - "image_path": "G:\\images\\combined\\002394_jpg.rf.a2ed2028f5e8d0929132f9f1138c0e1e.jpg", - "response": "A man wearing a yellow hard hat and work clothes is standing on a roof, installing solar panels.", - "id": 512 + "image_path": "G:\\images\\combined\\005296_jpg.rf.dda8589ee2c798da7280d14556e142f0.jpg", + "response": "a group of people standing in front of a sign", + "id": 31122 }, { - "image_path": "G:\\images\\combined\\002395_jpg.rf.dc710397ac0bd1dec64bd9f2737524fa.jpg", - "response": "a group of men wearing hard hats", - "id": 513 + "image_path": "G:\\images\\combined\\005297_jpg.rf.ee15b6f937098a4149818b185e7c0e38.jpg", + "response": "In the image there is a worker wearing a white uniform and a yellow helmet, who is operating a machine that controls the steel refining process. The worker is surrounded by sparks flying in all directions, some of which are bright yellow and some are white. There are also some red hot steel bars in the scene.", + "id": 31123 }, { - "image_path": "G:\\images\\combined\\002396_jpg.rf.a7a3a05854c9c166f49b138bea290c8b.jpg", - "response": " Workers(248,13),(467,995)(843,11),(997,994) are seen attempting to repair a power transformer at the Phnom Penh electricity substation on Monivong Boulevard in 2012.", - "id": 514 + "image_path": "G:\\images\\combined\\005298_jpg.rf.40be6ba37593027b88c104000bfa97cb.jpg", + "response": "Men working on a train in a tunnel.", + "id": 31124 }, { - "image_path": "G:\\images\\combined\\002397_jpg.rf.080c4b4c098df615f1d474d5b8187fb7.jpg", - "response": "a man is on a power pole", - "id": 515 + "image_path": "G:\\images\\combined\\005298_jpg.rf.e55dc25c5d9460a29beae55f257dfa78.jpg", + "response": "The image shows a group of workers inside a large tunnel. The tunnel is white and grey in color and has a concrete wall. The workers are wearing blue uniforms and yellow helmets. Some of them are working on a rail system inside the tunnel. There are also some white boxes and a red pipe in the foreground.", + "id": 31125 }, { - "image_path": "G:\\images\\combined\\002398_jpg.rf.48fa71e0ce43d6e26a39021c3c6983de.jpg", - "response": "a group of men standing around a construction site", - "id": 516 + "image_path": "G:\\images\\combined\\005299_jpg.rf.3afc600ae068b257160bd4a39052689b.jpg", + "response": "A man is climbing down a mountain using a rope. He is wearing yellow shorts and a yellow hat. He is also barefoot.", + "id": 31126 }, { - "image_path": "G:\\images\\combined\\002399_jpg.rf.4438c671e11b861005497b2871d241ed.jpg", - "response": "A group of people walking in front of a construction site.", - "id": 517 + "image_path": "G:\\images\\combined\\005299_jpg.rf.5c997c11c980a267db4d0375413724cc.jpg", + "response": "A child(456,269),(680,800) climbing a steep mountain path using a long stick(77,233),(999,428)", + "id": 31127 }, { - "image_path": "G:\\images\\combined\\002400_jpg.rf.dbb36aa851a4f3182f9e2a5fdd433c4b.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 518 + "image_path": "G:\\images\\combined\\00529_jpg.rf.32f1fbbe75af7666f6fd63fc33712f28.jpg", + "response": "In the image there are two engineers in safety jackets and blue helmets, one man and one woman, they are talking about the project in front of the brick building.", + "id": 31128 }, { - "image_path": "G:\\images\\combined\\002401_jpg.rf.3b47f6b0240a7d2e7c73871b84194e8e.jpg", - "response": "The image shows a group of construction workers working on a bridge that is currently under construction. The bridge is located near the ocean, and in the background, there is a lighthouse. The workers are engaged in various tasks, such as laying rebar, welding, and pouring concrete. Some of them are wearing hard hats and safety vests. The bridge appears to be made of steel, and the workers are working on different parts of it.", - "id": 519 + "image_path": "G:\\images\\combined\\0052c92026c934e5.jpg", + "response": "The image shows a group of people standing around a track, with a few athletes wearing green and yellow uniforms. There are several other people standing and sitting around the track, and a few camera equipment items are visible in the scene. Some backpacks and other personal items are scattered around the area, indicating that this may be a training or competition setting. The track itself has a red surface and is surrounded by a fence.", + "id": 31129 }, { - "image_path": "G:\\images\\combined\\002402_jpg.rf.f6b362e0698651ff5e7f79fc26ae5707.jpg", - "response": "A man wearing a blue hard hat and sunglasses stands in front of a building under construction. He is holding a long piece of wood and a level.", - "id": 520 + "image_path": "G:\\images\\combined\\005300_jpg.rf.749639f9b4fecd3a762597bdcfd1677e.jpg", + "response": "A construction vehicle with a large front loader.", + "id": 31130 }, { - "image_path": "G:\\images\\combined\\002403_jpg.rf.1fca09011810c6d88e4f244eb4b57cb7.jpg", - "response": "A group of three workers in blue uniforms and hard hats are working on a large piece of equipment. They are all focused on the task at hand. One worker is using a large hammer to remove a piece of equipment. Another worker is using a large wrench to loosen a bolt. The third worker is holding the equipment in place.", - "id": 521 + "image_path": "G:\\images\\combined\\005300_jpg.rf.d0fbafaaac086f0a5a3b90fa919f1dd2.jpg", + "response": "A man in orange standing in front of a yellow bulldozer.", + "id": 31131 }, { - "image_path": "G:\\images\\combined\\002405_jpg.rf.df7fc2b5cbe507585e6be8004ef06960.jpg", - "response": "A group of men in white t-shirts and grey slacks are walking through a construction site. Some of the men are wearing hard hats. The site is unfinished and has no walls and only a floor of dirt.", - "id": 522 + "image_path": "G:\\images\\combined\\005301_jpg.rf.76f27e5611ab711cb6c516a371fa37ff.jpg", + "response": "A group of people sitting around a table.", + "id": 31132 }, { - "image_path": "G:\\images\\combined\\002406_jpg.rf.292124b327771f51af605647b53c8910.jpg", - "response": "A man wearing a yellow hard hat and safety glasses is holding a clipboard and a device with a red and black wire. He is looking down and appears to be focused on what he is doing. He is wearing a yellow hard hat and safety glasses. The background is dark and there is a red light shining on the man and the object he is holding.", - "id": 523 + "image_path": "G:\\images\\combined\\005301_jpg.rf.eebc01f2cf37b818a3cf7851a17beee5.jpg", + "response": "A group of people sitting around a table.", + "id": 31133 }, { - "image_path": "G:\\images\\combined\\002407_jpg.rf.a6d8af43ea48c35ebe9b2142eb6aee0b.jpg", - "response": "A man wearing a yellow hard hat and work clothes is sitting on a ladder. He is working on a piece of wood or metal with a drill. He is wearing white gloves and appears to be focused on his task. The wall behind him is white and there are other ladders in the background.", - "id": 524 + "image_path": "G:\\images\\combined\\005302_jpg.rf.299dfbf20c7baf71ae1b8adfadf21767.jpg", + "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a metal railing and appears to be focused on his work. He is holding a tool in his hand and appears to be working on a power line. The background is hazy and there are some mountains visible in the distance.", + "id": 31134 }, { - "image_path": "G:\\images\\combined\\002408_jpg.rf.9d3f65341b0e18a39207455f7a26f8ed.jpg", - "response": "The image shows two workers in blue hard hats and white gloves, one on the left and one on the right, carrying a large spool of wire in between them. They are walking up a snowy hillside with trees covered in snow behind them.", - "id": 525 + "image_path": "G:\\images\\combined\\005302_jpg.rf.edcea69a36e0d95683d906d8543f7bed.jpg", + "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a ladder and appears to be working on a power line. He is holding a tool in his hand and appears to be focused on his task.", + "id": 31135 }, { - "image_path": "G:\\images\\combined\\002409_jpg.rf.3f4cbe7a97561fefd0e14164041fceee.jpg", - "response": "A construction worker is seen in the image pushing a handcart at a construction site. The sky is blue with clouds. In the background, there are some buildings.", - "id": 526 + "image_path": "G:\\images\\combined\\005303_jpg.rf.2744d56ca67d509837d0308386410c3d.jpg", + "response": "The image shows a construction site where several workers are working. In the foreground, two workers are crouched down working on a square hole in the ground. Another worker is standing in the background, and two more are in the far background. In the middle ground, there is a long white building with Chinese characters on the second floor. The characters say \"\u5f3a\u5316\u5b89\u5168\u6587\u5316\". There is a red roof on the white building. On the right side of the image, there is a long sidewalk.", + "id": 31136 }, { - "image_path": "G:\\images\\combined\\002410_jpg.rf.59e04a45e41f3317e7e8704cf5f1148f.jpg", - "response": "a group of people in orange jumpsuits", - "id": 527 + "image_path": "G:\\images\\combined\\005303_jpg.rf.54be7c16f2ddd8094e4a2fa3bb5e1c82.jpg", + "response": "The image shows a construction site where several workers are working. There are three workers in the foreground, all wearing blue shirts and pants, with the one on the left crouching down and the other two standing further back. They are working on a square hole in the ground. In the background, there are three other workers, one near the left side of the image, one in the center, and one on the right side. There is also a white and red sign on a building in the background.", + "id": 31137 }, { - "image_path": "G:\\images\\combined\\002411_jpg.rf.a48a047896e39e014ab3b2b52ae25593.jpg", - "response": "A man wearing a yellow hard hat and carrying a red flag with the Chinese Communist Party logo on it.", - "id": 528 + "image_path": "G:\\images\\combined\\005304_jpg.rf.503db9e2b279bb8ac286d27e61aac098.jpg", + "response": "A group of people standing next to each other wearing hard hats.", + "id": 31138 }, { - "image_path": "G:\\images\\combined\\002412_jpg.rf.2f990be7a6a0c6397a8ebae1fa231e10.jpg", - "response": "The image shows a group of firefighters in orange uniforms working to rescue a person trapped under a large piece of concrete. The concrete is resting on the person, who is located near the bottom of the image. The firefighters are standing around the concrete and the person, with some of them working on removing the concrete while others look on. The scene has a sense of urgency and teamwork.", - "id": 529 + "image_path": "G:\\images\\combined\\005304_jpg.rf.c6f7a615401fecde737ba67da3cb0441.jpg", + "response": "A group of people wearing hard hats standing in front of a wall of wood.", + "id": 31139 }, { - "image_path": "G:\\images\\combined\\002415_jpg.rf.5d49381b13bf1846acd3a0f8d7246eba.jpg", - "response": "In the image there is a person wearing a hard hat and coveralls, squatting down and working with some metal. They are creating a lot of sparks from the metal work they are doing. The sparks are flying all around them and there is a pile of them on the ground to the left of the person. The person are also holding a metal rod in their hand. The person is also casting a shadow on the ground.", - "id": 530 + "image_path": "G:\\images\\combined\\005305_jpg.rf.0f5e9815eeec8247989af2c312f9cd3c.jpg", + "response": "In the image there is a construction worker wearing a yellow hard hat, who is working on a yellow and orange construction site. The worker is in the process of cutting a red pipe with a hand saw, which is located on a ladder. The sky in the background is a clear blue and the sun is shining.", + "id": 31140 }, { - "image_path": "G:\\images\\combined\\002416_jpg.rf.8d12f2e36ce1bd8bb34f651b6172f70e.jpg", - "response": "The image shows three workers in blue uniforms and safety gear working on a power line. They are standing on top of a metal structure, which appears to be a power pole or transformer. The workers are focused on their task, and one of them is holding a tool. The sky is blue and cloudless, and there are a few tree branches near the power line.", - "id": 531 + "image_path": "G:\\images\\combined\\005305_jpg.rf.fa63e400c407fe9118f913e47721b7eb.jpg", + "response": "In the image there is a construction worker wearing a yellow hard hat, standing next to a yellow building. The worker is holding a hammer and is working on a red pipe. The sky is blue with a few clouds.", + "id": 31141 }, { - "image_path": "G:\\images\\combined\\002417_jpg.rf.6ff5d4af183e090b8f3692aea743d8e7.jpg", - "response": "A group of men working on a flooded area.", - "id": 532 + "image_path": "G:\\images\\combined\\005306_jpg.rf.dede82be4b4f46a2a5ce57c1cd9db487.jpg", + "response": "A man is using a sledge hammer to drive a large spool of wire into the ground. The man is wearing a yellow hard hat and black overalls. Next to him are two large spools of wire, one on the left and one on the right. In the background, there are two more spools of wire, one on the left and one on the right.", + "id": 31142 }, { - "image_path": "G:\\images\\combined\\002418_jpg.rf.bd966faff4de8c88afe174f0cb0469f9.jpg", - "response": "A man in a suit and construction worker point at a building under construction.", - "id": 533 + "image_path": "G:\\images\\combined\\005306_jpg.rf.eb011f3d7414440d61a4699c44fd1b96.jpg", + "response": "A man with a hammer is working on a tower.", + "id": 31143 }, { - "image_path": "G:\\images\\combined\\002420_jpg.rf.b86aaf89153790bdbdcb50a8ff70a051.jpg", - "response": "Three people in suits and hard hats are talking to each other.", - "id": 534 + "image_path": "G:\\images\\combined\\005307_jpg.rf.933bd765b94764b4de3c76100dee3f6b.jpg", + "response": "A man carrying a bag on his shoulder walks past a construction site. In the background, there are buildings and a crane.", + "id": 31144 }, { - "image_path": "G:\\images\\combined\\002421_jpg.rf.1b01c908927a53ef7b96a21d4a587880.jpg", - "response": "a group of people working on a brick wall", - "id": 535 + "image_path": "G:\\images\\combined\\005307_jpg.rf.d6fce62326eb7ee772c3c0bae2dc8f85.jpg", + "response": "The photo shows a demolition site in the city of Xuzhou, East China's Jiangsu province. A large yellow crane is seen on the right, with a man carrying a large bag of sand on his back in the middle of the photo. The background shows a row of houses being demolished.", + "id": 31145 }, { - "image_path": "G:\\images\\combined\\002422_jpg.rf.6cbb8006dbbc1d6ae9cb1e1fc99a09f5.jpg", - "response": "A group of construction workers are sitting on top of a brick wall that they are building. They are wearing yellow hard hats and are eating their lunches. One man is eating a bowl of food, while another man is eating a plate of food. A third man is eating a carton of food. They are all sitting on top of a brick wall that they are building.", - "id": 536 + "image_path": "G:\\images\\combined\\005308_jpg.rf.69527bb7b4977b88ed1bf2d0f13625aa.jpg", + "response": "Three men in hard hats are looking at a set of plans on the ground. They are all holding notebooks and one man is holding a measuring tape. They appear to be in the process of planning a construction project.", + "id": 31146 }, { - "image_path": "G:\\images\\combined\\002423_jpg.rf.071cd16f7760d366298b6ab4d3b16526.jpg", - "response": "In the image there are two men standing in the desert wearing hard hats. They are standing next to a large metal cylinder that is filled with black sand. The sand is spilling out of the cylinder and there is a large shadow being cast by the cylinder. The sky is blue and there are no clouds in the sky.", - "id": 537 + "image_path": "G:\\images\\combined\\005308_jpg.rf.8952a0c38b9a0d877ce7f8cd8b1318e8.jpg", + "response": "Three men looking at a blueprint on the ground. One man is wearing a yellow hard hat, a yellow and gray vest, and a orange safety vest. Another man is wearing a white hard hat and a gray shirt. The third man is wearing a white shirt and gray pants.", + "id": 31147 }, { - "image_path": "G:\\images\\combined\\002424_jpg.rf.9876dd6ecb1b65cebc6db58b924321f8.jpg", - "response": "The image shows a group of four men dressed in blue and yellow hard hats standing outside a brick building. The men are dressed in different colored hard hats and are looking at papers in their hands. The building in the background is white and yellow and is located on the left side of the image. In front of the building, there is a pile of grey stones. To the right of the group of men, there is a large brown gate. The sky in the background is light blue with white clouds.", - "id": 538 + "image_path": "G:\\images\\combined\\005309_jpg.rf.43cf3df41da5d490a1e826bd6347dfac.jpg", + "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and orange helmets. The men are standing side by side and seem to be working on the same task. One of the men is on the left side of the image and the other one is on the right side. The machinery they are working on is black and is connected to a yellow hose. The men are standing on the ground and the sky above them is blue.", + "id": 31148 }, { - "image_path": "G:\\images\\combined\\002425_jpg.rf.3acbd7924e3625ff1afad25fc8bca3a1.jpg", - "response": "The image shows a nighttime construction scene of a worker on the right side of the image welding a large metal object to a concrete wall. The worker is wearing a yellow helmet and dark clothing. Another worker, who is crouching lower, is using a white substance to fill in a crack in the concrete. The road is visible in the background, with a car and a truck driving away. The sky is pitch black and there are no other people visible in the image.", - "id": 539 + "image_path": "G:\\images\\combined\\005309_jpg.rf.6f90ae388763043bb0d2e387b7b9a48b.jpg", + "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and hard hats. The men are standing next to each other and seem to be working on the same task.", + "id": 31149 }, { - "image_path": "G:\\images\\combined\\002426_jpg.rf.2884c4a70766179ff3132e98093fb455.jpg", - "response": "The image shows two workers in a dimly lit, brick\u96a7\u9053. They are wearing yellow hard hats and high visibility vests. One worker is on the left, and is focused on a task at hand, holding a yellow hose in his hand. The other worker is on the right, and is leaning over to operate a yellow control. The tunnel has a metal framework above them, and debris on the floor.", - "id": 540 + "image_path": "G:\\images\\combined\\005310_jpg.rf.17f8d053e5d61387e064fde061c28c92.jpg", + "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow tractor. The man is holding a large rock in his left hand. There is a bucket on the front of the tractor. The tractor is on top of a pile of dirt.", + "id": 31150 }, { - "image_path": "G:\\images\\combined\\002427_jpg.rf.49aaa638c56b605f60b2a784b2a976db.jpg", - "response": "A train is on the tracks and three men are working on a platform above the train.", - "id": 541 + "image_path": "G:\\images\\combined\\005310_jpg.rf.e5225e4620dbcb6efdf19d27e7cb58fb.jpg", + "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow piece of machinery. The man is holding a large rock in his left hand. The sky is blue and there are no other people or animals visible in the image.", + "id": 31151 }, { - "image_path": "G:\\images\\combined\\002428_jpg.rf.0a90dc91f33c4e23585aba6c39af10ce.jpg", - "response": " People(466,469),(658,697)(392,399),(493,611)(240,384),(323,554)(830,436),(965,821) climbing on a rock(1,5),(995,813)", - "id": 542 + "image_path": "G:\\images\\combined\\005311_jpg.rf.0c49375e7458652c18d5c237e2796923.jpg", + "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", + "id": 31152 }, { - "image_path": "G:\\images\\combined\\002429_jpg.rf.5ffb548f67e3b50a23992800561a2d41.jpg", - "response": "Three men in hard hats and safety vests talking in a room under construction.", - "id": 543 + "image_path": "G:\\images\\combined\\005311_jpg.rf.a89d0ac0226ea5e861b957fc5657de16.jpg", + "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", + "id": 31153 }, { - "image_path": "G:\\images\\combined\\002430_jpg.rf.b4a5e73c9b770d4cd817f620cde24e80.jpg", - "response": "A couple of men working on a drilling machine.", - "id": 544 + "image_path": "G:\\images\\combined\\005312_jpg.rf.6ebfc77757c6b070d42d01c1a888daed.jpg", + "response": "A construction site with many tall buildings in the background.", + "id": 31154 }, { - "image_path": "G:\\images\\combined\\002431_jpg.rf.2d0b96a065dba8144124b36d29271146.jpg", - "response": "a group of men standing around a pile of rubble", - "id": 545 + "image_path": "G:\\images\\combined\\005312_jpg.rf.fc5547d2f0bab5f1b59429098dd1355a.jpg", + "response": "A construction site with a man walking on a grate.", + "id": 31155 }, { - "image_path": "G:\\images\\combined\\002432_jpg.rf.97806fd107c34b55daf9405a7bc200f0.jpg", - "response": "A construction worker wearing a bright orange shirt and a red hard hat smiles at the camera. He is wearing work gloves and has a tool in his hand. He is standing in front of a building under construction.", - "id": 546 + "image_path": "G:\\images\\combined\\005313_jpg.rf.744a580cf6a0f68b8a6523c5ee3b2ffe.jpg", + "response": "A man wearing a yellow hard hat and a blue shirt.", + "id": 31156 }, { - "image_path": "G:\\images\\combined\\002434_jpg.rf.faf100bbaf14bfddb44b5d0d220fd118.jpg", - "response": "In the image two workers are seen in a factory. One of them is wearing yellow helmet and is bending over to do some work. Another worker is wearing a red helmet. They are working on a large pipe. The factory has a white ceiling and the walls are white. There is a large window in the background. The factory floor is grey. There is a large gauge on the left and a piece of paper with writing on it on the right. There is a chair in the background. The factory looks under construction.", - "id": 547 + "image_path": "G:\\images\\combined\\005313_jpg.rf.a2534ae67b7f5de2cb18976033ae3ced.jpg", + "response": "A man wearing a yellow hard hat and a blue shirt looks off into the distance. He has a mustache and is wearing a yellow hard hat. He is also wearing a black cord around his neck. He is in front of a building.", + "id": 31157 }, { - "image_path": "G:\\images\\combined\\002435_jpg.rf.f605522196d22b10fe723af4e2e2cdd3.jpg", - "response": " Miners(354,153),(501,619)(425,7),(567,338)(49,222),(338,995) work at night to extract coal from a mine in the city of Shenyang, Liaoning province, China.", - "id": 548 + "image_path": "G:\\images\\combined\\005314_jpg.rf.131cf9b7559a559f57bec50dd1b73160.jpg", + "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a large metal rod, and one of them is using a tool on the end of it. The bridge is a steel arch bridge with a yellow railing. The workers are on the side of the bridge, and there is a steep drop below them. There is also a road next to the bridge, with a car driving on it.", + "id": 31158 }, { - "image_path": "G:\\images\\combined\\002436_jpg.rf.b0b525cc16f4c50b0a457cf31d0dbe4a.jpg", - "response": "A construction worker who fell into a manhole at a construction site in Xingtan, Nanning, was rescued by firefighters on the afternoon of June 10, 2015. The man was working at a construction site when he accidentally fell into a manhole. When he was rescued, he was still alive, with only minor injuries. He was taken to a hospital for treatment.", - "id": 549 + "image_path": "G:\\images\\combined\\005314_jpg.rf.bcc21e0849b1331dbddbea574cfe9c1b.jpg", + "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a bar with one of them using a tool.", + "id": 31159 }, { - "image_path": "G:\\images\\combined\\002437_jpg.rf.7ae62037979b4136dce2499cd8322cc4.jpg", - "response": "In the image two workers are repairing a power line at night. They are wearing blue uniforms and are on a ladder. They are repairing a power line that is tangled. There are trees in the background.", - "id": 550 + "image_path": "G:\\images\\combined\\005315_jpg.rf.25180a61e04ab7fb308eca6aad036e15.jpg", + "response": "A construction site with two workers on ladders.", + "id": 31160 }, { - "image_path": "G:\\images\\combined\\002439_jpg.rf.e09e896158a3f4aae50c0b2a8e36ad45.jpg", - "response": "In the image two electrical workers are examining an electrical power station. They are both wearing blue jackets and yellow hard hats. The power station has grey metal cases and grey wires.", - "id": 551 + "image_path": "G:\\images\\combined\\005315_jpg.rf.80373adda96a6fa50075740416f6376f.jpg", + "response": "A construction site with two workers on ladders.", + "id": 31161 }, { - "image_path": "G:\\images\\combined\\002440_jpg.rf.802149b35d40f68a2ab26e00cb597f95.jpg", - "response": "Some workers are on scaffolding putting together a large decorative piece.", - "id": 552 + "image_path": "G:\\images\\combined\\005316_jpg.rf.191ac10bbedd415f18b70c5971667b87.jpg", + "response": "A group of men standing around a construction site.", + "id": 31162 }, { - "image_path": "G:\\images\\combined\\002441_jpg.rf.450bbd5c13220ba42112e6dc565b6758.jpg", - "response": "A man in a blue shirt and red hard hat is shaking hands with another man in a hard hat. Both men are in front of a group of other men, some of whom are also wearing hard hats. They are all standing in a construction site.", - "id": 553 + "image_path": "G:\\images\\combined\\005316_jpg.rf.7818fadb96e3d2f77daee5282e6b6c10.jpg", + "response": "A group of men standing around a construction site.", + "id": 31163 }, { - "image_path": "G:\\images\\combined\\002442_jpg.rf.b13735c98f61fae91e996c4c3c925e0c.jpg", - "response": "A man is working on a roof, he is on scaffolding.", - "id": 554 + "image_path": "G:\\images\\combined\\005317_jpg.rf.4723d1fcdc32c6fd0ffef86141789ece.jpg", + "response": "The image shows a group of workers in blue uniforms and yellow hard hats gathered around a manhole. The workers are wearing blue uniforms and yellow hard hats. There are several bottles and a bowl on the ground around the manhole.", + "id": 31164 }, { - "image_path": "G:\\images\\combined\\002443_jpg.rf.53f6a3550b58f24ed68b5611c314bf4f.jpg", - "response": " Crews(155,272),(458,997)(550,232),(751,931)(775,134),(953,923)(404,273),(572,997) work to clear snow from power lines.", - "id": 555 + "image_path": "G:\\images\\combined\\005317_jpg.rf.adc7d5b53fb1ef66f2e4a8a4f7f59359.jpg", + "response": "The image shows a group of workers in blue uniforms and hard hats working together to remove a manhole cover. The workers are huddled around the open manhole, with some standing on the cover and others leaning over the edge. There are several bottles and a cup on the ground near the workers, possibly containing tools or drinks. The scene is set outdoors, with trees and a bench visible in the background.", + "id": 31165 }, { - "image_path": "G:\\images\\combined\\002444_jpg.rf.eab8d666bb34680ff258f8ae455213a8.jpg", - "response": "a man wearing a orange hard hat", - "id": 556 + "image_path": "G:\\images\\combined\\005318_jpg.rf.2a4bc11dd908fc7b02b2d0bba51d8b1d.jpg", + "response": "a group of men walking in front of a building under construction", + "id": 31166 }, { - "image_path": "G:\\images\\combined\\002445_jpg.rf.fe1e031f7fbb6d25439805b70346f7d5.jpg", - "response": "A group of men working on a large pipe.", - "id": 557 + "image_path": "G:\\images\\combined\\005319_jpg.rf.5f4f7a39dcceb947c1425e6accf211ba.jpg", + "response": "A worker is working on a construction site with a tunnel in the background.", + "id": 31167 }, { - "image_path": "G:\\images\\combined\\002446_jpg.rf.9d0dd5f23ad70ae945f64ae27ca66d88.jpg", - "response": "A construction worker sitting on a pile of metal rods.", - "id": 558 + "image_path": "G:\\images\\combined\\005319_jpg.rf.a6c69ea3e955dae3048d9d1f7ec55356.jpg", + "response": "A worker is seen here working on the construction of the Jia Bahe Line. The tunnel is situated in the mountains and is being worked on.", + "id": 31168 }, { - "image_path": "G:\\images\\combined\\002447_jpg.rf.c5f5693c36d74f40c76c5b78108b9d0b.jpg", - "response": "A group of men standing around each other", - "id": 559 + "image_path": "G:\\images\\combined\\005320_jpg.rf.cf81d5abb817495e03ae00aa2382916a.jpg", + "response": "A man wearing a yellow hard hat and an orange vest is using a tool to lay bricks.", + "id": 31169 }, { - "image_path": "G:\\images\\combined\\002448_jpg.rf.a1a5e88f6aa7996dec6d5243b9bce058.jpg", - "response": "An overhead view of a warehouse with two men in yellow vests and hard hats walking down stairs. One man is holding a cell phone to his ear. There is a forklift carrying several boxes in the background.", - "id": 560 + "image_path": "G:\\images\\combined\\005321_jpg.rf.045d7cf963d2abc04a2d85234e3fda28.jpg", + "response": "A couple of men in blue overalls and yellow hard hats are working on a large piece of equipment.", + "id": 31170 }, { - "image_path": "G:\\images\\combined\\002449_jpg.rf.353f21b187acb7fb50ed47b3a7a3f8a0.jpg", - "response": "The photo shows two workers in grey clothes and yellow helmets who are building a road. They are standing in a construction site which is located in a rural area. In the background, there is a yellow truck parked. The sky is covered by grey clouds.", - "id": 561 + "image_path": "G:\\images\\combined\\005322_jpg.rf.1b99b1dea9224153a015716851c25321.jpg", + "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", + "id": 31171 }, { - "image_path": "G:\\images\\combined\\002450_jpg.rf.b317e3cf43d352395345425fe7964244.jpg", - "response": "A group of people climbing up a tall metal tower.", - "id": 562 + "image_path": "G:\\images\\combined\\005322_jpg.rf.bf864eadb04eb98b0ca7eb41427568e8.jpg", + "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", + "id": 31172 }, { - "image_path": "G:\\images\\combined\\002451_jpg.rf.aaa73f632242096780892a87db39aa1b.jpg", - "response": "In the image there are two men standing in front of a building under construction. They are both wearing yellow hard hats and reflective vests. The man on the left is holding a blueprint in his hand.", - "id": 563 + "image_path": "G:\\images\\combined\\005323_jpg.rf.4c2b1aa33a79c60307ca5bee4769f598.jpg", + "response": "A group of three workers are working on a construction site. They are all wearing hard hats and are working on a yellow piece of machinery. The man on the left is sitting down and operating a red and yellow machine. The man in the middle is working on the yellow machine and the man on the right is standing behind the red drum. There is a ladder in the bottom right corner of the image.", + "id": 31173 }, { - "image_path": "G:\\images\\combined\\002452a1969ae6a7.jpg", - "response": "In the image, there is a row of empty plastic cups with a logo on them that says \"Second Glass\". The cups are all clear and appear to be empty. They are lined up in a row on a blue table.", - "id": 564 + "image_path": "G:\\images\\combined\\005323_jpg.rf.f515d3a3e2dae60567494781accf7924.jpg", + "response": "A group of three men working on a construction site.", + "id": 31174 }, { - "image_path": "G:\\images\\combined\\002452_jpg.rf.9b88292ee6941c0e031ea4820835ded0.jpg", - "response": "In the image there are two men standing next to each other. They are both wearing hard hats. The man on the left is wearing a yellow hard hat and has a beard. The man on the right is wearing a blue hard hat and has a beard and a mustache. They are both smiling at each other. To the left of the image there is a concrete wall and behind the men there is a room that appears to be under construction.", - "id": 565 + "image_path": "G:\\images\\combined\\00532432aafd3fb7.jpg", + "response": "A large black building with a sign that says Coach and Horses.", + "id": 31175 }, { - "image_path": "G:\\images\\combined\\002453_jpg.rf.19f32016ab610be3b3325b8639fb0e0e.jpg", - "response": "In the image two workers are carrying a metal beam. They are both wearing blue hard hats and have their sleeves rolled up. The worker on the left has a tattoo of a dragon on his right arm. They are standing in front of a white fence that has red tape wrapped around it. There is also a pile of rope to the left of the workers.", - "id": 566 + "image_path": "G:\\images\\combined\\005324_jpg.rf.7445a1847a4e8edec964e3ecfe3959b6.jpg", + "response": "An electrician is working on power lines high up in the air.", + "id": 31176 }, { - "image_path": "G:\\images\\combined\\002454_jpg.rf.f89542f78dd6fd2ab49a9a82d7e3d67f.jpg", - "response": "A construction site with three men standing in the middle. Two of them are wearing red and yellow hats and black clothes. The man on the far right is wearing a yellow hat, a brown jacket and a white shirt. In the background, a grey building with a lot of pipes coming out of it. To the far right, a blue and white sign.", - "id": 567 + "image_path": "G:\\images\\combined\\005325_jpg.rf.24725e4737d81b6a257e5106cf48eabf.jpg", + "response": "The image shows a group of men gathered around a model of a city. They are standing behind a glass model of the city, which includes buildings, a river, and a soccer field. The men are looking down at the model, which is displayed on a table. Some of the men are wearing ties.", + "id": 31177 }, { - "image_path": "G:\\images\\combined\\002455_jpg.rf.2223e8018ea7928e44182b5faa0866cf.jpg", - "response": "A group of men working on fixing a tree that fell on a power line.", - "id": 568 + "image_path": "G:\\images\\combined\\005325_jpg.rf.8ffaf76a6c3691e1686d06af2dc26e8f.jpg", + "response": "A group of men standing around a model of a city.", + "id": 31178 }, { - "image_path": "G:\\images\\combined\\002458_jpg.rf.09b521a0f3fe7bbf3203d1376eb7c0a6.jpg", - "response": "A man in a camo shirt and a hard hat is suspended in the air while holding onto a power line.", - "id": 569 + "image_path": "G:\\images\\combined\\005326_jpg.rf.fd44647274d5619ac283f1956f46a3bd.jpg", + "response": "A construction worker is working on some steel bars.", + "id": 31179 }, { - "image_path": "G:\\images\\combined\\002459_jpg.rf.8793523257447f40b1bfa5c6c90d81f6.jpg", - "response": "A group of workers are working on power lines.", - "id": 570 + "image_path": "G:\\images\\combined\\005327_jpg.rf.0f8d06865d518459828cf8b17db1d738.jpg", + "response": "A group of people working on a building construction site.", + "id": 31180 }, { - "image_path": "G:\\images\\combined\\002460_jpg.rf.92db33fc2e900ddab36cc99fc1719efb.jpg", - "response": "A group of workers are using sledgehammers to break up a concrete surface.", - "id": 571 + "image_path": "G:\\images\\combined\\005327_jpg.rf.4e678ef10ad605affa040323c8f6ef62.jpg", + "response": "The image shows a construction site with several workers present. There are a few buildings in the background, one on the left and another on the right. In the foreground, there is a large structure that appears to be a foundation or a framework for a building. The workers are engaged in various tasks, with one using a tool to make some adjustments to the framework, another holding a hose, and the third working on something on the ground. The fourth worker is further back, almost hidden by the framework. The fifth worker is on the right side of the image, closer to the right edge of the frame.", + "id": 31181 }, { - "image_path": "G:\\images\\combined\\002461_jpg.rf.716e925e9a71ef1b09fc057655f729d2.jpg", - "response": "The image shows Kim Jong-un, the young and relatively unknown heir to the North Korean throne, laughing with a group of men standing around him. He is in the center of the group, wearing a black suit and tie. The men surrounding him are all wearing suits as well. They are standing in front of a building, which appears to be a factory, and there is a large pipe in the background. The photo is taken from a three-quarter angle, looking down at the group.", - "id": 572 + "image_path": "G:\\images\\combined\\005328_jpg.rf.71ab03611dda8a9e2a3a49996679bbea.jpg", + "response": "A man in a red hard hat is kneeling on the ground next to a long white pipe. He is wearing a grey jacket and brown work boots. There is a yellow tool belt around his waist. He is working on a construction site that has metal framing for walls. The ground is wet and there is a large patch of concrete next to him. There is also a small amount of yellow flowers growing in the concrete.", + "id": 31182 }, { - "image_path": "G:\\images\\combined\\002462_jpg.rf.7582fc55e36b166910518dd2518bef04.jpg", - "response": "In the image there are two people working at a construction site. They are wearing yellow and green vests for safety. The person on the left is crouching down and holding a white\u94f2. The person on the right is standing and holding a pink tool. There is a large grey pipe in the background. The ground is a mix of brown dirt and white sand.", - "id": 573 + "image_path": "G:\\images\\combined\\005329_jpg.rf.eacdba8c9558ea8da4830580c71611b7.jpg", + "response": "A man wearing an orange shirt and a red hard hat stands in front of a construction site.", + "id": 31183 }, { - "image_path": "G:\\images\\combined\\002463_jpg.rf.813c45f93fd5fcf6569f689689bfa07e.jpg", - "response": "Rescue workers in China are seen carrying a child in a picture provided by Xinhua News. The picture is taken in a construction site in Xi'an, Shaanxi Province, where a 3 year old boy was rescued after being trapped in a construction site for 18 hours. The boy, named Little Peng, was found alive under a pile of bricks and debris, and was taken to a hospital for treatment. The rescue operation involved over 100 rescue workers and took more than 12 hours to complete.", - "id": 574 + "image_path": "G:\\images\\combined\\005330_jpg.rf.7279bf0bc35125d12f79a05af8b6bdff.jpg", + "response": "A man in a white shirt and orange hard hat is talking to a worker in a white shirt and red hard hat who is sitting on a yellow forklift. The man in the red hard hat has a white rag on his head and a bandage on his left leg, which is wrapped tightly. The man standing is holding a blue bottle in his hand. The background shows a pile of bricks and a white car.", + "id": 31184 }, { - "image_path": "G:\\images\\combined\\0024646120c939de.jpg", - "response": "A poster for the Humphrey Bogart movie Deadline U.S.A.", - "id": 575 + "image_path": "G:\\images\\combined\\005330_jpg.rf.c614f25a2f56017701b01f16cfc87ca4.jpg", + "response": "A man is sitting on a construction site with a bandaged foot. Another man is holding a water bottle in his hand. They are both wearing yellow and red helmets.", + "id": 31185 }, { - "image_path": "G:\\images\\combined\\002464_jpg.rf.c52ce3ae9d2541e8a8e2747041856380.jpg", - "response": "A construction worker standing underneath a yellow crane at a building site.", - "id": 576 + "image_path": "G:\\images\\combined\\005331_jpg.rf.45e006a73cfb5ddaf53acfea587baf5d.jpg", + "response": "a group of men wearing hard hats", + "id": 31186 }, { - "image_path": "G:\\images\\combined\\002465_jpg.rf.2d61ddbb206afcfa10736f541ebe9312.jpg", - "response": "The image shows a group of people standing around a stone structure that looks like a tomb. The tomb is located in a field and is covered in dirt. The tomb is shaped like a rectangular prism and is made of grey stone. The top of the tomb is covered with a large stone slab that is being removed by a group of people who are using shovels to dig around the sides of the tomb. The people are wearing hard hats and one of them is holding a shovel.", - "id": 577 + "image_path": "G:\\images\\combined\\005331_jpg.rf.75963ede3722576112dc4688142a3f55.jpg", + "response": "a group of men wearing hard hats", + "id": 31187 }, { - "image_path": "G:\\images\\combined\\002466_jpg.rf.878abae3dc118bb48ff4e4fa4966e2b6.jpg", - "response": "A group of men walking down a street.", - "id": 578 + "image_path": "G:\\images\\combined\\005332_jpg.rf.fe2a60c5a1c166aa29d4a3c8a9725995.jpg", + "response": "A group of men working in a mine.", + "id": 31188 }, { - "image_path": "G:\\images\\combined\\002467_jpg.rf.7d199de9506b8bd540545d92ba071a90.jpg", - "response": "In the image there is a group of men standing in front of a truck. Some of them are wearing ties and suits, while others are wearing hard hats and work clothes. The man in the far left is wearing a green hard hat, the man second to his left is wearing a yellow hard hat, the man third to his left is wearing a white hard hat, and the man in the far right is wearing a orange hard hat.", - "id": 579 + "image_path": "G:\\images\\combined\\005333_jpg.rf.04725ccb43a3336655a878f13bc28ff1.jpg", + "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with metal rods and other materials. There is a yellow crane in the background.", + "id": 31189 }, { - "image_path": "G:\\images\\combined\\002469_jpg.rf.53c2781e267160eb013a2a2711921525.jpg", - "response": "A group of people working on a building.", - "id": 580 + "image_path": "G:\\images\\combined\\005333_jpg.rf.14ffd35b1c6abf7a78ed9dcee58d12ec.jpg", + "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with red and silver metal bars. There is a yellow crane in the background.", + "id": 31190 }, { - "image_path": "G:\\images\\combined\\002470_jpg.rf.f3cc78d38c4682c7ed47d22d419d0540.jpg", - "response": "The image shows a group of rescue workers standing next to a red fire truck. The fire truck is parked on the right side of the image, near the center, and appears to be a large vehicle with a ladder on the side. The workers are standing in front of the truck, facing the camera, and appear to be wearing uniforms. They are positioned close to the truck, with some of them standing directly in front of it. The workers are wearing uniforms, which may indicate that they are part of a professional rescue team.", - "id": 581 + "image_path": "G:\\images\\combined\\005334_jpg.rf.43614ae79560b15f5e8f77bf6c129f41.jpg", + "response": "The image shows a group of men wearing blue shirts and red helmets working on a construction site. They are building a structure out of concrete blocks and mixing cement in a black bucket. The scene is outdoors and there is a banner in the background.", + "id": 31191 }, { - "image_path": "G:\\images\\combined\\002472_jpg.rf.d716f5fb30f55c9c239cda53808d0e1b.jpg", - "response": "A group of men in business clothes are standing in a field. They are all wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a brown field and a body of water. There is also a forest in the distance.", - "id": 582 + "image_path": "G:\\images\\combined\\005334_jpg.rf.e0fd9cc2ae3b3b2fbaaa64becff3298e.jpg", + "response": "The image shows a construction site with several workers. Some of them are wearing blue shirts and red helmets. They are working on a project that involves laying bricks. There are bricks laid out in a grid pattern on the ground, and workers are mixing concrete in buckets and spreading it on the bricks. In the background, there is a large banner advertising a construction company.", + "id": 31192 }, { - "image_path": "G:\\images\\combined\\002473_jpg.rf.585d49c019ab2e50f3317e9e6139a04c.jpg", - "response": "a group of men standing around each other", - "id": 583 + "image_path": "G:\\images\\combined\\005335_jpg.rf.2aec75b9c98802c65b8997fb6f0696c2.jpg", + "response": "An aerial view of a worker in a blue uniform and blue hard hat, climbing on a metal tower to work on the power lines. The tower is silver and is located in a forest. There are power lines running to the tower from both sides. There is a building visible at the bottom left of the image and a mountain in the background.", + "id": 31193 }, { - "image_path": "G:\\images\\combined\\002474_jpg.rf.47e5682b15438f5f652ee41907c3d37b.jpg", - "response": "A construction site with a man standing in front of a yellow excavator.", - "id": 584 + "image_path": "G:\\images\\combined\\005336_jpg.rf.35d6bfe163ddb1cacbf8b0194a87371f.jpg", + "response": "A man holding a blueprint standing next to another man in front of a building under construction.", + "id": 31194 }, { - "image_path": "G:\\images\\combined\\002475_jpg.rf.8cadf9e2fd088ef5080f6cfb22dde6a0.jpg", - "response": "A worker is on a ladder, fixing something on the wall. He is wearing a blue helmet and a black shirt. The sky is blue with clouds. There are two tall green trees in the background. Some ruins of a house can be seen in the picture, and debris on the ground.", - "id": 585 + "image_path": "G:\\images\\combined\\005336_jpg.rf.3cb3a1a96589e515978816e01ccd2775.jpg", + "response": "A construction worker standing in front of a building under construction holding a blueprint.", + "id": 31195 }, { - "image_path": "G:\\images\\combined\\002476_jpg.rf.00b13076e297c757efea2b4e4957032c.jpg", - "response": "A man and a woman wearing hard hats and safety vests.", - "id": 586 + "image_path": "G:\\images\\combined\\005337_jpg.rf.a27c7631ce3982a243a656823e5da07c.jpg", + "response": "The image shows a large construction site with several workers. In the foreground, three workers are wearing orange jumpsuits and yellow helmets, with one on the left, another in the center, and the third further to the right. They are standing in front of a large piece of equipment, a bright blue backhoe with a red bow on it. The workers appear to be engaged in digging or moving dirt.", + "id": 31196 }, { - "image_path": "G:\\images\\combined\\002478_jpg.rf.882f0f8a5c3c2995422d4d6f65659e97.jpg", - "response": "Two construction workers(278,83),(703,721)(650,5),(996,996) in helmets(355,84),(518,257)(720,3),(996,274) and work clothes(657,263),(997,996)(278,216),(703,722) are shoveling dirt into a hole filled with water.", - "id": 587 + "image_path": "G:\\images\\combined\\005337_jpg.rf.cecc40647b3daff6ba0a2376eda380a4.jpg", + "response": "The image shows a large construction site with a big digger in the middle. The digger is turquoise and grey and is parked on a dirt patch. There are three workers visible, one on the left, one in the middle, and one on the right. They are all dressed in orange suits and yellow helmets. The leftmost worker is also carrying a long wooden board. The workers are surrounded by a lot of dirt and rocks.", + "id": 31197 }, { - "image_path": "G:\\images\\combined\\002479_jpg.rf.831e99f8f193a7694a4036f7a4c5ec52.jpg", - "response": "A construction crew working on some piping.", - "id": 588 + "image_path": "G:\\images\\combined\\005338_jpg.rf.42f7c24d475a3010d97afd21d3042f0b.jpg", + "response": "The image shows two men wearing red hard hats, one standing to the left of the other. They are in front of a building with a sign that says \"\u4e2d\u56fd\u5341\u4e03\u51b6\u96c6\u56e2\". The man on the left is putting a hard hat on the other man's head.", + "id": 31198 }, { - "image_path": "G:\\images\\combined\\00247a79c7cb58a2.jpg", - "response": "The image features a young man wearing sunglasses and a backwards hat. He is staring directly at the camera with a serious expression. The sunglasses have a dark green frame and the man's lips are slightly parted. He has a small mole above his lip and a dimple in his chin. The man's skin is tan and he has a slight beard growth. The image is heavily edited with the words \"Trap Trap\" written in white at the bottom. The background is a collage of red and pink plant imagery.", - "id": 589 + "image_path": "G:\\images\\combined\\005338_jpg.rf.99869826a89cfd40fb7bb6f99c1e5964.jpg", + "response": "The image shows two men wearing red hard hats, one orange and one white, standing in front of a building. The men are both wearing black clothing. One of the men is putting a red hard hat on the other man's head.", + "id": 31199 }, { - "image_path": "G:\\images\\combined\\002480_jpg.rf.aa9306ad6dc86fdf326b9b87b9097b3b.jpg", - "response": "A construction site with two workers.", - "id": 590 + "image_path": "G:\\images\\combined\\005339_jpg.rf.88451ee34e29ad88332635f99e6f97cf.jpg", + "response": "A worker in a blue shirt and yellow hard hat stands in a room with debris on the floor. The room has white walls and debris is scattered across the floor. There is a pile of debris in the center of the room and a large hole in the wall on the right. A man is visible in the background on the left side of the room.", + "id": 31200 }, { - "image_path": "G:\\images\\combined\\002481_jpg.rf.78e3858100f0fdfe4a1f9d7b354aac7f.jpg", - "response": "An electrician fixing an electrical wire on the roof of a house.", - "id": 591 + "image_path": "G:\\images\\combined\\005340_jpg.rf.738fc3f780e8292821fc631146d693da.jpg", + "response": "A man walking in front of a construction site with a green building under construction. There are several cars parked in front of the building and a few people standing around. There are also several flags in the scene.", + "id": 31201 }, { - "image_path": "G:\\images\\combined\\002482_jpg.rf.c6fa9191ed0dbbea5a859c5a5404f2e4.jpg", - "response": "In the image there are three people(253,413),(452,889)(712,228),(913,890)(505,199),(660,673) working on a project. They are in a room with white walls and floor. There is a large hole(418,776),(638,876) in the floor and several pipes sticking out of the ground. There is a orange hard hat(539,197),(599,259) on the left side of the image and a blue one on the right. There is also a green bucket(487,562),(566,693) on the left side of the image and a yellow rope(19,418),(173,965) on the right side.", - "id": 592 + "image_path": "G:\\images\\combined\\005340_jpg.rf.acaa72a8d37c98303ca4af7720fe8695.jpg", + "response": "A man walking in front of a construction site with a few cranes working on a building in the background.", + "id": 31202 }, { - "image_path": "G:\\images\\combined\\002484_jpg.rf.a7756723418f4cfc255dbc174401a9ac.jpg", - "response": "A group of people sitting around a table.", - "id": 593 + "image_path": "G:\\images\\combined\\005341_jpg.rf.68fd142bfc21b547f86415d3603f8739.jpg", + "response": "Two men in red\u5b89\u5168\u5e3d, looking at a paper.", + "id": 31203 }, { - "image_path": "G:\\images\\combined\\002485_jpg.rf.3486eb6bf84ddfeda66e5c2a54b4eed8.jpg", - "response": "a group of people looking at boxes of food", - "id": 594 + "image_path": "G:\\images\\combined\\005341_jpg.rf.e18e7a9ad9e32952d1d7022d417675f2.jpg", + "response": "The image shows two men wearing red\u5b89\u5168\u5e3d, looking at a sheet of paper. They are both dressed in brown, seemingly industrial work clothes. One man is on the left side of the image, and is slightly larger and closer to the left edge of the frame. He is wearing a red safety helmet and holding the paper. The other man is on the right side of the image, closer to the center. He is also wearing a red safety helmet, and is looking at the paper with the first man. He is slightly shorter and appears to be slightly older.", + "id": 31204 }, { - "image_path": "G:\\images\\combined\\002486_jpg.rf.26ac81a72f4d98892d3ae5b201761763.jpg", - "response": "A man in a blue shirt and red hat is pointing to a banner hanging on a building. The banner reads \"\u8ba4\u771f\u8d2f\u5f7b'\u5b89\u5168\u7b2c\u4e00',\u9884\u9632\u4e3a\u4e3b'\u7684\u65b9\u9488,\u6cbb\u7406\u65bd\u5de5\u5b89\u5168\u9690\u60a3\" in black and red characters. The man is wearing a hard hat. Another man in a white shirt is holding a fire extinguisher. A third man is wearing a pink shirt. There is a white truck parked in front of the building.", - "id": 595 + "image_path": "G:\\images\\combined\\005342_jpg.rf.4c587c8c7eef2c666721cbe614023bfd.jpg", + "response": "A group of men working on a construction site.", + "id": 31205 }, { - "image_path": "G:\\images\\combined\\002487_jpg.rf.69f8db6f7cde286c5041baff4d156df4.jpg", - "response": "A construction worker wearing a yellow jacket and orange hat is working on a building site. The worker is standing on a ladder on the right hand side of the image, which is a red brick wall. The ladder is attached to a steel beam which is passing over the worker's head. The steel beam is being held in place by the worker. The cityscape of a city is visible in the background.", - "id": 596 + "image_path": "G:\\images\\combined\\005342_jpg.rf.fb85f925cf2e9522009747461ce9ebe1.jpg", + "response": "A group of men working on a construction site.", + "id": 31206 }, { - "image_path": "G:\\images\\combined\\002489_jpg.rf.ecd2b6ca7750aef9cc556a609d7646d7.jpg", - "response": "A construction worker driving a forklift with another worker sitting on the side.", - "id": 597 + "image_path": "G:\\images\\combined\\005343_jpg.rf.8d8ee011c1172e9173621ad74b600dcf.jpg", + "response": "A group of five construction workers wearing hard hats are working on a construction site. They are working on a large area of metal rebar that is laid out in a grid pattern. In the background there are several buildings under construction.", + "id": 31207 }, { - "image_path": "G:\\images\\combined\\002490_jpg.rf.edd3a6bdd7ea4bcb45fb06b27212d9c1.jpg", - "response": "A man in a red hard hat is measuring a wall with a level. Another man in a black shirt is standing next to him. Both men are wearing hard hats.", - "id": 598 + "image_path": "G:\\images\\combined\\005343_jpg.rf.df787511981e2d0bbdb20756c4b5805b.jpg", + "response": "A group of five construction workers wearing red hats are working on a building.", + "id": 31208 }, { - "image_path": "G:\\images\\combined\\002491_jpg.rf.8a49e829e2434d6448b531cc114573af.jpg", - "response": "A group of men in hard hats stand in a construction site. There is a large building under construction with scaffolding all around it. There is also a pile of wood in the foreground.", - "id": 599 + "image_path": "G:\\images\\combined\\005344_jpg.rf.0202f9bf0d4f40ea7b157eaab68cbbe1.jpg", + "response": "A couple of men standing in a doorway of a blue structure.", + "id": 31209 }, { - "image_path": "G:\\images\\combined\\002492_jpg.rf.4ef178c3be64493b5947f891674c9b25.jpg", - "response": "A picture of a man working on power lines.", - "id": 600 + "image_path": "G:\\images\\combined\\005344_jpg.rf.1aa92da4f326a16e15455b84a44c1533.jpg", + "response": "A large blue metal box with the number 1028 on the side of it.", + "id": 31210 }, { - "image_path": "G:\\images\\combined\\002493_jpg.rf.cc127f71ec610634ef90f049a2635fa4.jpg", - "response": "The image shows a group of people walking through a tunnel. They are wearing hard hats and some are carrying tools. The tunnel is white and has a concrete wall. There is a yellow railing on the left side of the tunnel. On the right side, there is a red pipe. The tunnel is filled with light.", - "id": 601 + "image_path": "G:\\images\\combined\\005345_jpg.rf.8661b1a175917170321480f4a8ffaee2.jpg", + "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is working on a construction site, the wall is made of bricks and the person is working on a piece of wood.", + "id": 31211 }, { - "image_path": "G:\\images\\combined\\002495_jpg.rf.6ebc615f7dffaf3554ea07a39a822afc.jpg", - "response": "A group of people standing around a table with a red table cloth.", - "id": 602 + "image_path": "G:\\images\\combined\\005345_jpg.rf.e7044f6e7fe3ccdf2716659059a38217.jpg", + "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is building a brick wall and is currently working on the second floor of a building that is not yet complete. The person is also wearing a yellow helmet and blue jeans.", + "id": 31212 }, { - "image_path": "G:\\images\\combined\\002496_jpg.rf.b614a7c38dcdb12f6e2c71c0cad4a86a.jpg", - "response": "A couple of men working on a ship or large metal structure.", - "id": 603 + "image_path": "G:\\images\\combined\\005346_jpg.rf.6bbe44db9553dd9962f9dd3c4548cb58.jpg", + "response": "A group of people standing around in a circle. Some of them are wearing hard hats. In the background there is a street with cars. To the far left there is a yellow sign with Chinese characters on it. There is also a blue sign with Chinese characters on it in the background.", + "id": 31213 }, { - "image_path": "G:\\images\\combined\\002498_jpg.rf.65ccb417ada758e3a3646ee5d5f7580c.jpg", - "response": "The image shows two construction workers on a roof, pouring concrete. One worker is holding a long tool with a wooden handle, and the other worker is holding a large tool with a metal handle. They are both wearing yellow helmets and grey uniforms. The sky is grey and overcast, and there is a building in the background with a black roof. There are also rebar grids on the ground.", - "id": 604 + "image_path": "G:\\images\\combined\\005347_jpg.rf.22f0b22db051ee350c3b581d20bf66d3.jpg", + "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a cage. The worker on the left is using a tool to cut rebar, while the worker on the right is operating a jackhammer. The concrete surface is wet and there are several pipes visible in the background.", + "id": 31214 }, { - "image_path": "G:\\images\\combined\\002499_jpg.rf.a0e4fb47fd187035fc9c48246b59bff8.jpg", - "response": "a group of men standing around a construction site", - "id": 605 + "image_path": "G:\\images\\combined\\005347_jpg.rf.4bf6321e3df3b648839a6f38129b65b1.jpg", + "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a wall, with rebar sticking out of it. The worker on the left is using a tool to cut through the concrete, while the worker on the right is operating some machinery. The wall is painted brown and is located inside a large room. There are several pipes on the wall to the left of the workers and a large pipe on the right. The floor of the room is covered in concrete dust.", + "id": 31215 }, { - "image_path": "G:\\images\\combined\\0024fa464b466993.jpg", - "response": "a picture of a man with a mustache and a suit and tie", - "id": 606 + "image_path": "G:\\images\\combined\\005348_jpg.rf.68a154812d426cf0a30282fa8104efec.jpg", + "response": "A train track being worked on by some people.", + "id": 31216 }, { - "image_path": "G:\\images\\combined\\002500_jpg.rf.cc35961ea8763cb41291f841d33fb66f.jpg", - "response": "A group of people standing around a construction site.", - "id": 607 + "image_path": "G:\\images\\combined\\005348_jpg.rf.b2ed12539b4d5d17b42bf824036ae9b0.jpg", + "response": "A group of workers in yellow vests and hard hats are standing on a railway track. They are working on a machine with a box on it.", + "id": 31217 }, { - "image_path": "G:\\images\\combined\\002501_jpg.rf.ee90935d3c8e3a35479204912761d387.jpg", - "response": "An orange truck is driving through a dark tunnel.", - "id": 608 + "image_path": "G:\\images\\combined\\005349_jpg.rf.01a9509534794d88f3d9dc9ff2e14d78.jpg", + "response": "A construction worker in a yellow helmet is standing on a scaffold.", + "id": 31218 }, { - "image_path": "G:\\images\\combined\\002503_jpg.rf.812bbc014c8e01f674f7d9a741fa087b.jpg", - "response": "A man in an orange shirt and a hard hat is standing in front of a sunset. He is looking into the distance, possibly contemplating or observing something. The sky is a mix of orange, red, and purple hues, and there are clouds in the sky. The man is wearing a pair of sunglasses, which are placed on top of his head. He is also wearing a helmet, which is common safety gear for workers in certain industries.", - "id": 609 + "image_path": "G:\\images\\combined\\00534_jpg.rf.0aff2c1f6b059df0940f239cb0a130e8.jpg", + "response": "A group of men standing around each other.", + "id": 31219 }, { - "image_path": "G:\\images\\combined\\002504_jpg.rf.4bfbd5a572fa8119b8c125e41d8bfc20.jpg", - "response": "A worker in a white Nike shirt and a red hard hat reads a piece of paper. The paper is yellow and titled \"\u5b89\u5168\u5e3d\u4f7f\u7528\u53ca\u4fdd\u517b\u624b\u518c\". The worker is standing in front of a pile of wood.", - "id": 610 + "image_path": "G:\\images\\combined\\005350_jpg.rf.b9f92ad5c2cb941710d48bf56bc65f7c.jpg", + "response": "A man wearing a white and red jacket and a hard hat.", + "id": 31220 }, { - "image_path": "G:\\images\\combined\\002505_jpg.rf.b9e6cb7447fe6240ced8e42cf805db77.jpg", - "response": "In the image, there are two people dressed in orange, wearing hard hats and standing in front of a large excavator. The excavator is in front of a large rock and appears to be in the process of digging up some material. There is also a smaller excavator visible in the background on the left side of the image.", - "id": 611 + "image_path": "G:\\images\\combined\\005350_jpg.rf.f86527858349a447a83607f3ff90f8da.jpg", + "response": "A man wearing a white and red jacket and a hard hat.", + "id": 31221 }, { - "image_path": "G:\\images\\combined\\002506_jpg.rf.a331113284784871bfd997152fdbcacd.jpg", - "response": "A group of men in grey and orange uniforms are standing on a field of golden grass and brown straw. They are working on an electrical box that is on a metal platform that is on a pole. The men are wearing hard hats and the uniforms have grey hats on their backs. Some of the men are also wearing black gloves. There are many power lines around the men and the platform they are standing on.", - "id": 612 + "image_path": "G:\\images\\combined\\005351_jpg.rf.ea6c031da03945b7f740b292937f5cf6.jpg", + "response": "A blue crane is lifting a yellow and white object.", + "id": 31222 }, { - "image_path": "G:\\images\\combined\\002507_jpg.rf.01794c66cbbe270fcc37c30d5b78f5b1.jpg", - "response": "A man in a blue uniform and orange hard hat is working on a roof. He is laying red clay tiles and is holding a trowel. The sky is blue with a few clouds.", - "id": 613 + "image_path": "G:\\images\\combined\\005351_jpg.rf.ff9383020b3250764d9daa616094019e.jpg", + "response": "A construction worker in a yellow safety vest and hard hat is standing under a large blue bridge. He is looking up at the bridge, which is suspended over a body of water. The bridge has a yellow crane on it, and there is a small boat nearby. The worker is holding a tool in his hand. The background is very dark, with only a few lights visible in the distance.", + "id": 31223 }, { - "image_path": "G:\\images\\combined\\002510_jpg.rf.6e010228503d632d09d85c0b6ad820c4.jpg", - "response": "The picture shows some workers in a construction site. They are building a large circular structure made of steel rebar. The workers are wearing yellow hats and uniforms. One of the workers is welding two pieces of steel together. On the left side of the picture, there is a red sign that says \"Proper use of the crane hook\". In the background, there are also two buildings.", - "id": 614 + "image_path": "G:\\images\\combined\\005352_jpg.rf.735ced7bac5a2226be9cca07b792bd8a.jpg", + "response": "A group of three men in yellow hard hats and work clothes are standing in a factory. They are standing behind a large machine that has many pipes and knobs.", + "id": 31224 }, { - "image_path": "G:\\images\\combined\\002513_jpg.rf.7b169b6524a042251a82ab58b3cf53bb.jpg", - "response": "A construction worker in a yellow hard hat and green safety vest is working on a wooden structure.", - "id": 615 + "image_path": "G:\\images\\combined\\005352_jpg.rf.74f2cc7a7f7c5ce5b958407e63a345e0.jpg", + "response": "A group of three men in yellow hard hats are working on a large machine. The machine is silver and has many pipes and knobs.", + "id": 31225 }, { - "image_path": "G:\\images\\combined\\002515_jpg.rf.2cb8eac381053b1983bb6f7b88886bda.jpg", - "response": "A construction worker wearing a yellow hard hat crouches down next to a large area of rebar. The worker is wearing a blue sweatshirt and blue jeans.", - "id": 616 + "image_path": "G:\\images\\combined\\005353_jpg.rf.501f143e61e19d17fedf6c7f89e6e21e.jpg", + "response": "In the image there is a construction site with multiple cranes working on building a new city. There is a man working on the construction site wearing a red helmet and gloves. He is working on a roof and is in the foreground of the image. In the background there are buildings under construction and a blue sky with some clouds.", + "id": 31226 }, { - "image_path": "G:\\images\\combined\\002516_jpg.rf.cd6a60bf59fa7a0f13627d92574c45f6.jpg", - "response": "A soldier points to a sign above a door.", - "id": 617 + "image_path": "G:\\images\\combined\\005353_jpg.rf.6ea1fba180c63a8cb8ffc9deca577e5a.jpg", + "response": "In the image there is a construction site with multiple cranes working on building a new city skyline. In the foreground, a worker is working on a roof with a red helmet, safety gloves, and a tool in his hand. The sky is blue with some clouds.", + "id": 31227 }, { - "image_path": "G:\\images\\combined\\002517_jpg.rf.c58954a1cddadf7e837d7ca219b23ee9.jpg", - "response": "A group of people standing around a red fire truck that is shooting out a stream of fire.", - "id": 618 + "image_path": "G:\\images\\combined\\005354_jpg.rf.2087fb0ebb905e8c0b1ea8b1cee0bbf3.jpg", + "response": "A man on a lift working on power lines.", + "id": 31228 }, { - "image_path": "G:\\images\\combined\\002519_jpg.rf.d48b4505938b0bbffaf167450fb66fdf.jpg", - "response": "A group of people sitting at a table with a red table cloth.", - "id": 619 + "image_path": "G:\\images\\combined\\005354_jpg.rf.357432b5ef6fc3ccc528071a1041f4ae.jpg", + "response": "A man on a lift working on power lines.", + "id": 31229 }, { - "image_path": "G:\\images\\combined\\002520_jpg.rf.8b11a06c8ecc104545e1517cff5fe02f.jpg", - "response": "A group of men standing next to a building under construction", - "id": 620 + "image_path": "G:\\images\\combined\\005355_jpg.rf.708eecd7e9c81c5651ea79bc14dd6054.jpg", + "response": "A group of people working on a construction site.", + "id": 31230 }, { - "image_path": "G:\\images\\combined\\002521_jpg.rf.691dc82f416caa834597740770c33fb2.jpg", - "response": "A man wearing a white hard hat and navy blue coveralls stands in a factory with his arms crossed. He is smiling at the camera. In the background, there is a large piece of machinery with sparks flying out of it.", - "id": 621 + "image_path": "G:\\images\\combined\\005355_jpg.rf.fe520fc5b7196012525517b298922a43.jpg", + "response": "A group of people working on a construction site.", + "id": 31231 }, { - "image_path": "G:\\images\\combined\\002523_jpg.rf.117b4ab991f4edc8b0a2dadebcbdd764.jpg", - "response": "a group of men standing around in a construction site", - "id": 622 + "image_path": "G:\\images\\combined\\005356_jpg.rf.4c4cb8b52ecf2f8b9faf7470c0492841.jpg", + "response": "A man in a red hard hat is holding a black trash bag with something in it. He is smiling and looking at the camera. To the left of him is another man also wearing a red hard hat and a black jacket. They are both in front of a mountain.", + "id": 31232 }, { - "image_path": "G:\\images\\combined\\002524_jpg.rf.69392bb9df7be7119d30e421eb16a3c6.jpg", - "response": "A man in a yellow hard hat and camouflage clothing working with a machine on a construction site.", - "id": 623 + "image_path": "G:\\images\\combined\\005357_jpg.rf.2d9aefe77b22d3541f9c687db9042744.jpg", + "response": "An electrician is pointing to something on a circuit board while another electrician looks at it. They are both wearing blue and white hard hats.", + "id": 31233 }, { - "image_path": "G:\\images\\combined\\002526_jpg.rf.8e1c78685b890697a9044ed0006213f6.jpg", - "response": " A painter(12,152),(679,998) holding a roller(1,52),(193,328) in a construction site", - "id": 624 + "image_path": "G:\\images\\combined\\005358_jpg.rf.224bbd320d726768b5c083945cbc5694.jpg", + "response": "a group of people walking across a bridge", + "id": 31234 }, { - "image_path": "G:\\images\\combined\\002527_jpg.rf.d09b73f4d5cedbf09035eea67e5beec4.jpg", - "response": "A group of men in grey and blue clothing stand in a room with white walls and a grey floor. They are wearing red helmets and some of them have ties. In the room, there are three red chairs, two gas cylinders, a bucket and a rope.", - "id": 625 + "image_path": "G:\\images\\combined\\005358_jpg.rf.836636834423c5de0e0e273f1e1ba062.jpg", + "response": "a group of people walking through a construction site", + "id": 31235 }, { - "image_path": "G:\\images\\combined\\0025288e6192dc18.jpg", - "response": "A toy train sitting on top of a table.", - "id": 626 + "image_path": "G:\\images\\combined\\005359_jpg.rf.83282f05c397ce00532edaec2e275adf.jpg", + "response": "A man in a red shirt and white helmet is pointing at a device. Another man in a red shirt and white helmet is standing next to him. They are both in a factory.", + "id": 31236 }, { - "image_path": "G:\\images\\combined\\002528_jpg.rf.e007ab701208b55d8ed13f6cd0324de5.jpg", - "response": "A man in a yellow hard hat is holding a green fire extinguisher. The extinguisher is spraying out white foam. The man is standing in front of a group of people. The group of people is standing behind a pile of wood. The pile of wood is on the ground. There are buildings in the background.", - "id": 627 + "image_path": "G:\\images\\combined\\005360_jpg.rf.5e79e9a1df76dcc3017738d56575f331.jpg", + "response": "The group of people are standing in a room with high, arched ceilings. They are all wearing ties and some of them are wearing hard hats.", + "id": 31237 }, { - "image_path": "G:\\images\\combined\\002529_jpg.rf.4495a38af56671f14434a329bf053937.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 628 + "image_path": "G:\\images\\combined\\005360_jpg.rf.95dd2562a77c6cc989147e3bb399bbae.jpg", + "response": "A group of men standing in a room with hard hats on.", + "id": 31238 }, { - "image_path": "G:\\images\\combined\\00252_jpg.rf.0e38b4d103bd291dbf3d6a6b8efa72c2.jpg", - "response": "An industrial worker in a hard hat and safety vest is checking inventory in a textile factory. The worker is holding a clipboard and pen. The worker is standing in front of a large stack of rolled fabric. Another worker is in the background, holding a clipboard and looking at it.", - "id": 629 + "image_path": "G:\\images\\combined\\005361_jpg.rf.7976fb0d2c0d8681cfa1bf62612b93e5.jpg", + "response": "Two men in red helmets are talking in a construction site.", + "id": 31239 }, { - "image_path": "G:\\images\\combined\\002530_jpg.rf.528ba888cdd77a3fe44d9c9e7b02da27.jpg", - "response": "A man wearing a yellow hard hat and work gloves is holding a long piece of wood. He is smiling at the camera. He is wearing a blue jumpsuit and work boots. He has a yellow hard hat on and his hair is black. He is also wearing work gloves.", - "id": 630 + "image_path": "G:\\images\\combined\\005361_jpg.rf.e817502af4c97c033cc094297f880666.jpg", + "response": "Two men in striped shirts and hard hats are talking in a construction site.", + "id": 31240 }, { - "image_path": "G:\\images\\combined\\002531_jpg.rf.4af257a77a1bb3e0e35b82005d43b8c3.jpg", - "response": "A man wearing a yellow safety helmet and a yellow vest is seen from behind. He is holding a large metal pole and is standing on a construction site. There are some buildings under construction in the background. The sky is blue with some clouds.", - "id": 631 + "image_path": "G:\\images\\combined\\005362_jpg.rf.1866ee3407aa04c78f3625b09459d9e2.jpg", + "response": "A group of students wearing orange vests and white helmets are talking to a worker in an orange vest and yellow helmet who is drinking water. The students are standing next to a large pipe.", + "id": 31241 }, { - "image_path": "G:\\images\\combined\\002532_jpg.rf.989dbee4c7925e442a8970de96c4a962.jpg", - "response": "The image shows a group of people standing in front of a white bus. Some of them are wearing ties, and a few are wearing hard hats. The bus is parked on the side of the road, and in the background there is a forest.", - "id": 632 + "image_path": "G:\\images\\combined\\005362_jpg.rf.84b66168cb95ce9c559a8a6d7931af67.jpg", + "response": "A group of students wearing orange vests and white hats are standing in front of a large pipe. Some students are sitting on the ground next to the pipe. A man in a yellow hat and orange vest is standing to the right of the students, holding a cup. Another man in a yellow hat and orange vest is sitting on the ground to the right of the students. In the background, there is a large piece of construction equipment.", + "id": 31242 }, { - "image_path": "G:\\images\\combined\\002533_jpg.rf.3383c3671db79d8c8cd13a1807819124.jpg", - "response": "A group of people working on a construction site.", - "id": 633 + "image_path": "G:\\images\\combined\\005363_jpg.rf.0df21d3f78bd7492336e56558056cb90.jpg", + "response": "A group of men standing in front of a mining site", + "id": 31243 }, { - "image_path": "G:\\images\\combined\\002534_jpg.rf.19dbb70155e3ff258dd9583dc677cf70.jpg", - "response": "In the image, three men are working on power lines. They are all wearing yellow hard hats, and the man in the center is wearing a white shirt and gray pants. The man on the left is wearing a black shirt and gray pants. The man on the right is wearing a white shirt and gray pants. In the foreground, there is a wooden pole with several wires attached to it.", - "id": 634 + "image_path": "G:\\images\\combined\\005363_jpg.rf.dfa4667cd769ff2bfb4e4958124d23a8.jpg", + "response": " Miners(581,377),(699,827)(674,374),(777,848)(757,388),(915,893) standing in a quarry", + "id": 31244 }, { - "image_path": "G:\\images\\combined\\002535_jpg.rf.ad68b2406f361a08bc9149e6bae0735b.jpg", - "response": "A construction site with multiple people working on it.", - "id": 635 + "image_path": "G:\\images\\combined\\005364_jpg.rf.411c4ed689340ab8afdc6bc4b5f5dcf3.jpg", + "response": "A construction site with multiple workers.", + "id": 31245 }, { - "image_path": "G:\\images\\combined\\002536_jpg.rf.0c6b5f5070315e4e8a5e3ebc7dfb27d1.jpg", - "response": "A group of linemen dressed in army green with blue hard hats(545,209),(639,326)(778,312),(959,537)(175,3),(320,103) on.", - "id": 636 + "image_path": "G:\\images\\combined\\005364_jpg.rf.96c00ef68fc69650c53a78659b3087e7.jpg", + "response": "A construction site with multiple workers visible.", + "id": 31246 }, { - "image_path": "G:\\images\\combined\\002537_jpg.rf.460171c2c0291b42993feafa5b485636.jpg", - "response": "A worker is on a power line in the snow.", - "id": 637 + "image_path": "G:\\images\\combined\\005365_jpg.rf.a0b82283d36605fd4a561bc9df0289da.jpg", + "response": "A group of men in red hats looking at a clipboard.", + "id": 31247 }, { - "image_path": "G:\\images\\combined\\002538_jpg.rf.dbba91e2ccacd77745d888ed6ef1476f.jpg", - "response": "A worker is seen hanging from power lines in the snow.", - "id": 638 + "image_path": "G:\\images\\combined\\005365_jpg.rf.f3d197738847bc75667b4785ab65bf61.jpg", + "response": "A group of men standing around a construction site.", + "id": 31248 }, { - "image_path": "G:\\images\\combined\\002539_jpg.rf.a87edfd700df7cd9bcb7ce0462636e42.jpg", - "response": "A construction site with two people working on it.", - "id": 639 + "image_path": "G:\\images\\combined\\005366_jpg.rf.76b0ea482fa125e465803633939d2ede.jpg", + "response": "An electrician is checking the power box.", + "id": 31249 }, { - "image_path": "G:\\images\\combined\\002540_jpg.rf.75a6a218aac21ca0a682d368be32f37d.jpg", - "response": "A man wearing a hard hat and a yellow jacket stands on a construction site.", - "id": 640 + "image_path": "G:\\images\\combined\\005366_jpg.rf.8d545f8e4b44dfdda533e962a8235a11.jpg", + "response": "An electrician in blue hard hat and grey work shirt looking at an electrical panel.", + "id": 31250 }, { - "image_path": "G:\\images\\combined\\002541_jpg.rf.8337cc3ffa841ecd7da0e87670a31521.jpg", - "response": "A man in a blue shirt and blue hat is working on a machine.", - "id": 641 + "image_path": "G:\\images\\combined\\005367_jpg.rf.78ee14110537f333417260ab05a4602c.jpg", + "response": "A meeting room with several people in it. Two men are sitting at a table and talking. One of the men is wearing a watch. There are a few cups on the table and a pen is on the table. In the background there are other people and a camera.", + "id": 31251 }, { - "image_path": "G:\\images\\combined\\002542_jpg.rf.432fdeb1601e56aba2535d857c7a6e4c.jpg", - "response": "A man in a red shirt and blue jeans is on the roof of a building. He is climbing over a wall. There is another man standing on the scaffolding. The sky is overcast.", - "id": 642 + "image_path": "G:\\images\\combined\\005368_jpg.rf.f42f385623be860404ec2c9f0b542509.jpg", + "response": "A group of men in orange jumpsuits and hard hats are carrying a log over their shoulders. They are walking through tall grass and over a dirt road. In the background, there are power lines and a hill.", + "id": 31252 }, { - "image_path": "G:\\images\\combined\\002543_jpg.rf.c358c8620f1b82b0217532517888f62c.jpg", - "response": "a group of people standing in a field", - "id": 643 + "image_path": "G:\\images\\combined\\005369_jpg.rf.5633199705194cc8b3e378499bd7ae76.jpg", + "response": "In the image there is a group of people wearing hard hats standing in front of a construction site. A man is holding a camera and taking a picture of the construction site. In the construction site there is a large piece of machinery.", + "id": 31253 }, { - "image_path": "G:\\images\\combined\\002544_jpg.rf.be1fa16e6c0a9445b8fbadbd40791651.jpg", - "response": "A group of three people working on a construction site.", - "id": 644 + "image_path": "G:\\images\\combined\\005369_jpg.rf.8b358eeeaab74c10317492e855f17a8b.jpg", + "response": "In the image there is a group of people standing around a construction site. Some of the people are wearing blue jackets and red hats. In front of the people, there is a pile of red hoses on the ground. To the right of the people, there is a large construction vehicle. Behind the construction vehicle, there is a large wooden pole. Under the wooden pole, there is a pile of yellow bricks. In front of the pile of bricks, there is a large cloud of grey smoke. The sky above the construction site is full of clouds.", + "id": 31254 }, { - "image_path": "G:\\images\\combined\\002545_jpg.rf.a1cf44b3c6324961385019977acd4fc7.jpg", - "response": "The image shows a group of people standing around a large pipe that has been buried in the ground. The pipe is white and can be seen extending from the ground at the center of the image. Some people are standing on the left side of the pipe, while others are standing on the right side. Some people are also standing at the top of the image, and one person is wearing an orange vest. The ground around the pipe appears to be muddy, and there is a ladder leaning against the pipe on the right side.", - "id": 645 + "image_path": "G:\\images\\combined\\00536_jpg.rf.1389bad3d1baa9a43404b2084eb02144.jpg", + "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", + "id": 31255 }, { - "image_path": "G:\\images\\combined\\002546_jpg.rf.74eda60c8208d9e08d960e4566740781.jpg", - "response": "A group of three men standing in a room.", - "id": 646 + "image_path": "G:\\images\\combined\\00536_jpg.rf.6bbce0903dc7fd685c5276a956c633e9.jpg", + "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", + "id": 31256 }, { - "image_path": "G:\\images\\combined\\002547_jpg.rf.b555d8327a52e8d2e2acc62d06c13306.jpg", - "response": "The image shows a group of people standing outside a building. There are several men in the group, some wearing ties and others wearing hard hats. The man in the center is wearing a tie and is talking on a cell phone. The other men are standing close by, listening or watching the man on the phone.", - "id": 647 + "image_path": "G:\\images\\combined\\005370_jpg.rf.63349612a3e3ec56532b588c16fb40d6.jpg", + "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a long narrow tool in their right hand. The sky is blue with a few thin clouds. In the background, there is a bridge under construction. The wooden beams of the bridge extend out in the background. There are also a few metal railings in the background.", + "id": 31257 }, { - "image_path": "G:\\images\\combined\\002548_jpg.rf.b42a3633f04fb808df2e7d85914ce1a7.jpg", - "response": "A group of men working on a construction site.", - "id": 648 + "image_path": "G:\\images\\combined\\005370_jpg.rf.eae864da74165cb41bc5edebe17d390c.jpg", + "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a hammer in his right hand and there is a small pile of nails next to him. The worker is also wearing a blue shirt and blue pants. The sky is blue and clear in the background.", + "id": 31258 }, { - "image_path": "G:\\images\\combined\\002549_jpg.rf.5a7357cdfd4647f666b4af8c7752691a.jpg", - "response": "A worker in a yellow hat and blue uniform is climbing a grey pole. The pole has a red and white sign on it. The worker is also wearing a black bag. There are green trees around the pole.", - "id": 649 + "image_path": "G:\\images\\combined\\005371_jpg.rf.c93e573c75d74aa968ae4aac618f5e36.jpg", + "response": "The image shows a group of men standing in front of a construction site. They are wearing hard hats and one of them is holding a red fire extinguisher. The men are standing on a sidewalk and one of them is pointing towards the right. In the background, there are trees and a blue and white building. The word \"\u4e2d\u56fd\u753b\u753b\u7f51\" is written in the bottom right corner of the image.", + "id": 31259 }, { - "image_path": "G:\\images\\combined\\00254_jpg.rf.7094f51fe3f963ac9673469c876e78d9.jpg", - "response": "In the image there are two construction workers wearing hard hats and one of them is holding a clipboard. They are standing in front of a building under construction with steel beams and scaffolding. The sky is blue and there are a few clouds.", - "id": 650 + "image_path": "G:\\images\\combined\\005371_jpg.rf.d70315f5d792615d1e2e0f6637f26e08.jpg", + "response": "a group of men standing around each other", + "id": 31260 }, { - "image_path": "G:\\images\\combined\\002550d790ed010c.jpg", - "response": "A fancy clock with roman numerals sits on a pole.", - "id": 651 + "image_path": "G:\\images\\combined\\005372_jpg.rf.097a4590163e207b172375a35e96f02c.jpg", + "response": "A group of men wearing hard hats are walking down a street.", + "id": 31261 }, { - "image_path": "G:\\images\\combined\\002550_jpg.rf.c9573a66fd200c657af845387ffde7d4.jpg", - "response": "A group of people wearing hard hats are working together to move a large piece of pipe. They are all wearing different colored hard hats and some are also wearing backpacks. The pipe they are moving is white and can be seen stretching across the image. They are all working in a green rice field and there is a small house visible in the background.", - "id": 652 + "image_path": "G:\\images\\combined\\005372_jpg.rf.a786792e006e4ade77cbce3f7253f6b9.jpg", + "response": "A group of men walking down a street.", + "id": 31262 }, { - "image_path": "G:\\images\\combined\\002551_jpg.rf.26d752a5686cb96a37f31f5f210e94a3.jpg", - "response": "A man in a yellow hard hat is using a shovel to spread concrete on a road that is being built on the side of a mountain.", - "id": 653 + "image_path": "G:\\images\\combined\\005373_jpg.rf.3708fb1829cab2068ca44a96e05f8fa7.jpg", + "response": "The image features a group of people sitting on a bench made of ice. They are all dressed in cold weather gear, including jackets, hats, and gloves. Some of the people are wearing red, yellow, blue, and green hats. The group is surrounded by ice formations and snow. They are all holding food items, including bottles and a bowl. The ground is covered in a layer of ice.", + "id": 31263 }, { - "image_path": "G:\\images\\combined\\002552_jpg.rf.64d2eb2d1349c0c3e9f49ff4f274ede1.jpg", - "response": "A man in a blue shirt and tan pants kneeling down on a construction site.", - "id": 654 + "image_path": "G:\\images\\combined\\005373_jpg.rf.e4e9e6be73e287c4ad5c902e09ceaef2.jpg", + "response": "A group of men sitting on ice formations.", + "id": 31264 }, { - "image_path": "G:\\images\\combined\\002553_jpg.rf.bbeed9fa136fd8fdb34e1a7108e30c83.jpg", - "response": "The picture shows a group of people wearing hard hats standing in a large, unfinished room. Some of the people are wearing suits and ties. A man in the center of the group is shaking hands with another man. There are a few people standing to the left of the group, and a few people standing to the right of the group. In the background, there is a door that is open. On the left side of the room, there is a yellow rope with a sign on it. On the right side of the room, there are several concrete walls. On the floor, there are some cables.", - "id": 655 + "image_path": "G:\\images\\combined\\005374_jpg.rf.5d6d1add386c11247bf0bcf07f4e3832.jpg", + "response": "A pair of workers wearing hard hats and grey and black jackets work on a piece of equipment.", + "id": 31265 }, { - "image_path": "G:\\images\\combined\\002555_jpg.rf.0547036c1895b9023ac3782c87ae871a.jpg", - "response": "The image shows a group of men standing in a parking lot. They are all wearing hard hats. One man is on the left, and the man in the center is wearing a black jacket and gray pants. The man on the far right is wearing a black jacket and gray pants with a red tie. There is a fence in the background, and a car is parked behind them.", - "id": 656 + "image_path": "G:\\images\\combined\\005374_jpg.rf.88decaa8fca3ccc4c6fb2579707e18f9.jpg", + "response": "A pair of workers from China Railway No. 2 Engineering Group work on the overhead line at the Beijing South Railway Station.", + "id": 31266 }, { - "image_path": "G:\\images\\combined\\002556_jpg.rf.a1e5d7b6fef30d11eaba544b89830c9e.jpg", - "response": "In the image there is a person wearing a white hard hat and white shirt standing in front of a large industrial furnace that is melting metal. The person is also wearing white overalls. There is another person in the background wearing a white hard hat and white shirt. They are both in a factory setting.", - "id": 657 + "image_path": "G:\\images\\combined\\005375_jpg.rf.39ae73a6199146306212ea1bac7bb911.jpg", + "response": "A worker is working on fixing some wires on the side of a building. The worker is wearing a blue jacket and a red helmet. There are many wires in different colors hanging from the building. Some are blue, some are white, and some are yellow. The worker is holding a tool in his hand.", + "id": 31267 }, { - "image_path": "G:\\images\\combined\\002557_jpg.rf.aa8bf5b6ba335a46a13866172559dbb4.jpg", - "response": "The image shows two men standing outside in front of a large factory or construction site. Both men are wearing hard hats and are looking at a blueprint or plans. The plans are held by one of the men, who is on the left side of the image. The factory or construction site is in the background and takes up the entire right half of the image. The left half of the image is occupied by a man standing next to the other man.", - "id": 658 + "image_path": "G:\\images\\combined\\005375_jpg.rf.4ac9a18b79a47a950405ab6f74e7bd92.jpg", + "response": "A worker is working on some power lines.", + "id": 31268 }, { - "image_path": "G:\\images\\combined\\002558_jpg.rf.cd5ce7ec7177c97ed0540409708d7a5a.jpg", - "response": "A group of people wearing blue hard hats.", - "id": 659 + "image_path": "G:\\images\\combined\\005376_jpg.rf.c64a81911e7ede0fb4df069427805224.jpg", + "response": "A group of people standing around a blueprint.", + "id": 31269 }, { - "image_path": "G:\\images\\combined\\002559_jpg.rf.d197e8eb416b304ca3c9afd0e6ac5f86.jpg", - "response": " Two men(64,150),(538,989)(490,98),(890,994) wearing hard hats(291,150),(448,307)(510,100),(705,283) and safety vests(578,346),(889,996)(248,402),(530,997) looking at a blueprint.", - "id": 660 + "image_path": "G:\\images\\combined\\005376_jpg.rf.c93aad6d4aaf12de230f5208c4a16584.jpg", + "response": "A group of people standing around a blueprint.", + "id": 31270 }, { - "image_path": "G:\\images\\combined\\002560_jpg.rf.d25f4bab6f467bdeed644576c088b0b4.jpg", - "response": "A man wearing a yellow shirt and a yellow hat with a red band around his neck.", - "id": 661 + "image_path": "G:\\images\\combined\\005377_jpg.rf.333144cbe08744bd0bbecfcc5b547da8.jpg", + "response": "In the image there is a person wearing a red helmet and a black suit, this person is standing on a concrete platform. There are some buildings in the background, one in the left side, three in the right side and another in the middle. Also in the image there is a yellow metal fence, a couple of signs, one in the left side and the other in the right side of the image, and finally there is a white and blue theodolite on the concrete platform.", + "id": 31271 }, { - "image_path": "G:\\images\\combined\\002561_jpg.rf.a9eee30ee69cc57635bfbf292718cb3a.jpg", - "response": "A pair of power workers in Guizhou, China, are seen here braving the elements to maintain power lines in a snowy mountainous area.", - "id": 662 + "image_path": "G:\\images\\combined\\005377_jpg.rf.9f5962fe3e322ecb2af8dba77d557f99.jpg", + "response": "In the image there is a person wearing a red helmet and a black suit. They are standing on a construction site holding a ruler. The ruler is being used to measure something. In the background there are buildings.", + "id": 31272 }, { - "image_path": "G:\\images\\combined\\002562_jpg.rf.e0f66efa34c25e6909b6ea850ebebde2.jpg", - "response": "In the image, two men are wearing white safety helmets and are inspecting a brick wall. The man on the left is wearing a grey shirt and is turned slightly to the left, while the man on the right is wearing a white shirt with a blue logo on the chest and is looking at the wall. The wall is made of red bricks and is visible from the waist up. There is a concrete support beam to the right of the wall and a doorway to the left of the wall.", - "id": 663 + "image_path": "G:\\images\\combined\\005378_jpg.rf.9990025a2637a769001d580bd063988c.jpg", + "response": "A group of workers wearing blue and yellow helmets are seen in this image. They are working together to place a large white pipe on the ground. Some of them are kneeling on the ground while others are standing. They are all wearing white working clothes.", + "id": 31273 }, { - "image_path": "G:\\images\\combined\\002563_jpg.rf.ecaeca7e8c7e6c3649a8761c90b48b26.jpg", - "response": "A group of three men working on a train track.", - "id": 664 + "image_path": "G:\\images\\combined\\005378_jpg.rf.afd29d637b2ec4da0dc87db7b8ea4cbb.jpg", + "response": "A group of workers in blue and yellow shirts, some wearing white and red helmets, are working on a white pipeline in a field.", + "id": 31274 }, { - "image_path": "G:\\images\\combined\\002564_jpg.rf.78c6cb1d1e93670b1d0a79403d4389b1.jpg", - "response": "a group of men standing next to each other", - "id": 665 + "image_path": "G:\\images\\combined\\005379_jpg.rf.8b1e65780a316ea27a945b63faf384bb.jpg", + "response": "A group of people are sitting around a table. On the wall behind them is a large screen. On the screen is a presentation.", + "id": 31275 }, { - "image_path": "G:\\images\\combined\\002565_jpg.rf.339a288b7948e5a423b277f19c72432a.jpg", - "response": "The image shows three men standing on scaffolding at a construction site. They are all wearing yellow safety vests and hard hats. The men are positioned at the center of the scene, and the scaffolding extends to the left and right of them. The background shows a large, unfinished building with a concrete structure.", - "id": 666 + "image_path": "G:\\images\\combined\\005379_jpg.rf.e578cc23dbee046ade4c22f2513a3452.jpg", + "response": "A group of people are sitting around a table. On the wall behind them is a screen displaying the words \\\"\u57ce\u6295\u96c6\u56e2\u96c4\u695a\u5927\u8857\u9879\u76ee\u89c2\u6613\u534f\u8c03\u4f1a\\\". There are several potted plants on the table.", + "id": 31276 }, { - "image_path": "G:\\images\\combined\\002566_jpg.rf.8407f82ca6a6c8aee99fd9cedbd61f87.jpg", - "response": "A construction worker is drinking water from a plastic bottle. He is wearing a blue hard hat and a brown uniform. He is standing in front of a building under construction. There are other workers in the background. There is a yellow ladder behind the worker drinking water. There is a crane operating in the distance.", - "id": 667 + "image_path": "G:\\images\\combined\\00537_jpg.rf.dd66e1e5333dc8af8bd04d65dbbd9965.jpg", + "response": "A man and a woman are holding a little girl who is wearing a construction hat. The man is wearing a black shirt and glasses. The woman is wearing a red helmet and has long hair. They are all standing in a construction area.", + "id": 31277 }, { - "image_path": "G:\\images\\combined\\002567_jpg.rf.c0d99157763fb5b6a2608e1a2d62ddec.jpg", - "response": "A worker in a blue hard hat is looking at a laptop and a binder of papers.", - "id": 668 + "image_path": "G:\\images\\combined\\005380_jpg.rf.1216898f2d52ed9cad2744422e47a4dd.jpg", + "response": "A man wearing a hard hat looking at a construction site.", + "id": 31278 }, { - "image_path": "G:\\images\\combined\\002568_jpg.rf.10022fc09106f06aafbfca232394c0eb.jpg", - "response": "The image shows two people standing on a construction site. They are both dressed in business attire and are wearing red hard hats. The man is on the left and the woman is on the right. They are both holding a blueprint and smiling. The blueprint is rolled up and is held in the woman's hand. The man is holding the other end of the blueprint. In the background, there is a building under construction. The sky is overcast and there are construction cranes in the distance.", - "id": 669 + "image_path": "G:\\images\\combined\\005380_jpg.rf.46446b31ff48c739f3f2c7f68ea81789.jpg", + "response": "A man wearing a hard hat is looking at a construction site. He is wearing a black jacket and the collar is turned up. In the background there is a blue crane and a white truck. There are piles of wood on the ground and a building is under construction. The sky is blue with a few clouds.", + "id": 31279 }, { - "image_path": "G:\\images\\combined\\002569_jpg.rf.e7d5210a80eca7b367e2f48a521eff5a.jpg", - "response": "A worker at the China National Nuclear Corporation's (CNNC) Dayawan plant demonstrates the use of a high-temperature resistant glove in a dining hall on the plant site in Dayawan, south China's Hainan Province, Oct. 26, 2017. The CNNC Dayawan plant is the first nuclear power plant in China to adopt the pressurized water reactor (PWR) technology. The plant's first nuclear power unit went into commercial operation on Aug. 26, 2014, and the second unit will be put into commercial operation in 2017. The Dayawan nuclear power plant is designed with a power output of 1,350 megawatts, and it will meet the electricity demand of 30 million Chinese people. (Xinhua/Li Ziheng)", - "id": 670 + "image_path": "G:\\images\\combined\\005381_jpg.rf.3cd22f0e5d0c80496a189eab5a639760.jpg", + "response": " Firefighters(393,307),(749,814)(1,728),(359,997)(2,2),(468,488)(507,610),(992,985) rescue a man who fell into a well.", + "id": 31280 }, { - "image_path": "G:\\images\\combined\\002570_jpg.rf.ef0a394bec51a231d48eaf771c2de379.jpg", - "response": "The photo shows some workers in a construction site. They are all dressed in black work clothes and yellow hats. The ground is wet. In the foreground, on the left, a worker is using a tool to operate a pump, which is connected to a pipe. Another worker is standing to the right of the first one. Further back, on the left, there is a worker operating a machine that sprays liquid on the wall. Another worker is standing behind the first one. In the background, on the right, there is a wall with many square holes in it. The workers seem to be busy and focused on their tasks.", - "id": 671 + "image_path": "G:\\images\\combined\\005381_jpg.rf.570d0b8bb55f2e4224519e666db05ccf.jpg", + "response": "A man is trapped in a hole and firefighters are trying to rescue him.", + "id": 31281 }, { - "image_path": "G:\\images\\combined\\002571_jpg.rf.ac0501cc4aafe1bb58ce1d28008aad96.jpg", - "response": "A group of workers in blue uniforms are working on a power line in an alleyway between two buildings. They are using ladders and pipes to access the power line.", - "id": 672 + "image_path": "G:\\images\\combined\\005382_jpg.rf.d1c7c01fc10d07e8eb805d6d6d371a89.jpg", + "response": "A group of people standing around a construction site.", + "id": 31282 }, { - "image_path": "G:\\images\\combined\\002572_jpg.rf.f5b94c47edba4bb8f6dec66926c969d4.jpg", - "response": "The image shows a construction site with several workers. There is a large concrete pipe on the ground, and a yellow crane is lifting a large piece of metal. The workers are wearing yellow helmets and are standing on a platform. In the background, there is a forest with many green trees.", - "id": 673 + "image_path": "G:\\images\\combined\\005383_jpg.rf.0df16fc1d1a4bb2f740dc7c5033eda3e.jpg", + "response": "A group of men walking down a street.", + "id": 31283 }, { - "image_path": "G:\\images\\combined\\002573_jpg.rf.bc2ad75851c6edf97de94336a102b6d8.jpg", - "response": "The image shows a construction site with several workers. There is a large metal structure in the foreground, and a tower-like structure under construction in the background. The workers are standing on a platform, and one of them is holding a blue and pink flag. The sky is blue with clouds.", - "id": 674 + "image_path": "G:\\images\\combined\\005383_jpg.rf.6d91b3b9bc8fcd6d9c0245b35dc4e8c8.jpg", + "response": "A group of men walking down a street.", + "id": 31284 }, { - "image_path": "G:\\images\\combined\\002574_jpg.rf.5d764a06bf8304cc4d972c4517737643.jpg", - "response": "A group of men in suits and hard hats are walking through a dark tunnel. Some of the men are also wearing red shirts.", - "id": 675 + "image_path": "G:\\images\\combined\\005384_jpg.rf.17bd8789fa92dce1bc4e0e039d979b0c.jpg", + "response": "The image shows a construction site with several workers. There are at least five workers visible, with some standing on the left side of the image and others on the right side. They are all wearing orange vests, with some also wearing yellow vests. The workers are standing on a large grid of metal rods, which are laid out in rows in front of them. The metal rods are connected to form a large grid, and some of the workers are also handling wires. The scene takes place outdoors, with a building visible in the background on the left side of the image. The workers are working on a large construction project, and the metal rods and wires they are handling are likely part of the framework for a new building or other structure.", + "id": 31285 }, { - "image_path": "G:\\images\\combined\\002575_jpg.rf.67784c2171881ada890d227ae4477c83.jpg", - "response": "A group of people standing in front of a white van.", - "id": 676 + "image_path": "G:\\images\\combined\\005384_jpg.rf.2f93bf590f681157ada6d20ce29554f1.jpg", + "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large amount of steel rods and mesh, which are laid out in a large grid pattern. The steel rods are in various sizes and are connected together using the mesh. The workers are wearing safety gear, including hard hats, safety vests, and gloves. They are focused on their work and appear to be in the middle of a construction project.", + "id": 31286 }, { - "image_path": "G:\\images\\combined\\002576_jpg.rf.ff3361f5174e8bb2f549831ea13d1ee7.jpg", - "response": "A construction site with two workers. One worker is on the left and is wearing camouflage pants and a white shirt. He is holding a tool in his right hand and has a white hat on. The other worker is on the right and is wearing a red hat, gray shirt, and dark gray pants. He is holding a tool in his left hand. They are on a scaffold and there is a white building behind them.", - "id": 677 + "image_path": "G:\\images\\combined\\005385_jpg.rf.dae77d5d624e8403241e84029cf812a4.jpg", + "response": "A group of people standing in a parking lot with a van in the background.", + "id": 31287 }, { - "image_path": "G:\\images\\combined\\002577_jpg.rf.10393a91c5a32cefe108b59332b06ce4.jpg", - "response": "In the image there is a person working on a large pipe. The person is wearing a yellow hard hat, safety glasses, and a blue work suit. They are crouching down and appear to be fixing or working on the pipe. The pipe is grey and can be seen running horizontally across the image. It is located on the right side of the image and is connected to a large brown pipe running vertically up the right side of the image. There is also a large chain attached to a hook that is hanging down. The chain can be seen running down the middle of the image. Finally, there is a large circular pipe on the left side of the image, which is also connected to the horizontal pipe.", - "id": 678 + "image_path": "G:\\images\\combined\\005385_jpg.rf.e5208a9dfa237956c7ea6854a8ea524a.jpg", + "response": "A group of people standing in a parking lot with a van in the background.", + "id": 31288 }, { - "image_path": "G:\\images\\combined\\002578_jpg.rf.a4294f963ba931c3bc997f54173c0871.jpg", - "response": "Men(510,427),(636,889)(410,413),(535,958)(328,416),(423,840) standing in front of a large red crane(5,164),(662,679)", - "id": 679 + "image_path": "G:\\images\\combined\\0053860714da4340.jpg", + "response": "The image shows two white ambulances parked next to each other in a garage. The ambulances have red and yellow stripes on them and are labeled \"ambulance service nsw.\" There is a chair in the garage as well. The garage is located inside a brick building.", + "id": 31289 }, { - "image_path": "G:\\images\\combined\\002579_jpg.rf.edf8136cf6f2b826b9fdc9ac89e09d95.jpg", - "response": "Two workers in yellow helmets are repairing an power transmission line.", - "id": 680 + "image_path": "G:\\images\\combined\\005386_jpg.rf.d9853d7252d23216eb53c6eeafc1a71f.jpg", + "response": "The image shows a group of six men standing in a circle talking. They are all dressed in business attire, with the man on the far left wearing a grey suit. The man second from the left is wearing a black suit. The man third from the left is wearing a black suit with a white shirt and tie. The man fourth from the left is wearing a black leather jacket. The man fifth from the left is wearing a black suit. The man on the far right is wearing a black suit. All of the men are standing on a sidewalk in front of a building. The building has several stories and is made of concrete. It also has a sign on the side that says \"\u4e2d\u56fd\u6c5f\u897f\u7f51\".", + "id": 31290 }, { - "image_path": "G:\\images\\combined\\002580_jpg.rf.dd576fad49d00ce50d7a7549d5de6a3f.jpg", - "response": "A tree has fallen across the street, and two men in blue hard hats are cutting it up with a chainsaw. One man is on the left side of the tree and the other is on the right side. They appear to be wearing black clothing and the man on the right has a beard. There is a bucket in the background on the left side of the image.", - "id": 681 + "image_path": "G:\\images\\combined\\005387_jpg.rf.03725efd2460dc0bf20ef5ffeaacad0a.jpg", + "response": "A group of men in hard hats stand in a circle. One of the men is pointing towards the right. The man on the far right is wearing a yellow and black vest.", + "id": 31291 }, { - "image_path": "G:\\images\\combined\\002581_jpg.rf.9b1de550484c0c2fd37b7bccd7acd333.jpg", - "response": "A group of four men standing on a construction site wearing hard hats.", - "id": 682 + "image_path": "G:\\images\\combined\\005387_jpg.rf.58703eb5d05e3c58c6e4fd3dd67f05c9.jpg", + "response": "In the image, a group of men are standing together on a worksite. They are all wearing hard hats. In the background, there is a pile of dirt. To the far left, there is a person's feet wearing black shoes and carrying a backpack. In the far right, there is a person wearing a yellow vest.", + "id": 31292 }, { - "image_path": "G:\\images\\combined\\002582_jpg.rf.c38dc4a1ea27ce10544dd03781d24929.jpg", - "response": "A construction worker in a yellow hard hat crouches on a rooftop. He is wearing a brown jumpsuit and has a hammer in his hand. He is working on a roof, which has wooden beams running across it. In the background, there are other buildings and cranes.", - "id": 683 + "image_path": "G:\\images\\combined\\005388_jpg.rf.4887de7e8f04e0caaaa033d1cb103ce7.jpg", + "response": "A woman in a black leather jacket and red hard hat is pointing to a blueprint. Two men, one wearing a yellow hard hat and one wearing a brown hard hat, are standing next to her and looking at the blueprint. They are all standing in front of a long table with several pieces of metal on it. In the background, there is a large building under construction with several metal frameworks visible.", + "id": 31293 }, { - "image_path": "G:\\images\\combined\\002583_jpg.rf.e809a6fc3bdf5d8a2d580164c099034f.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is grey and white in color and has a concrete wall. In the foreground, there are two workers wearing yellow hard hats. One of the workers is on the left side of the image and is standing next to a piece of equipment. Another worker is further back in the tunnel, closer to the right side of the image.", - "id": 684 + "image_path": "G:\\images\\combined\\005388_jpg.rf.7c7c764c709510f51e84322c469d81bd.jpg", + "response": "A woman in a red hard hat is showing a man in a yellow hard hat a piece of paper. They are both looking at the paper and the man on the right is holding a pen. They are standing in front of a long table with a white cup on it. There are several pieces of wood on the table and even more wood stacked in the background. There is a building under construction in the background with scaffolding and steel beams.", + "id": 31294 }, { - "image_path": "G:\\images\\combined\\002585_jpg.rf.936e61b82a8855eb4870c80c0daac7b4.jpg", - "response": "A group of 13 people, some wearing hard hats, are posing for a photo. They are all sitting on a bench, which is made of wood and appears to be outdoors. Some people are holding small dogs, and all of the people are wearing clothing that suggests it's a cool day.", - "id": 685 + "image_path": "G:\\images\\combined\\005389_jpg.rf.b46b73a0b6ad9ba677b8f1abccea3f48.jpg", + "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground who appear to be sitting on the ground, possibly taking a break. They are wearing hard hats and reflective vests. Another worker is visible in the background, wearing a hard hat as well.", + "id": 31295 }, { - "image_path": "G:\\images\\combined\\002587_jpg.rf.dbeba8577eabb9893ac87cf8367919b3.jpg", - "response": "A man in a yellow hard hat is sweeping the floor of a construction site.", - "id": 686 + "image_path": "G:\\images\\combined\\005389_jpg.rf.e41cc0ea2e2cc7f18c92748af18e181f.jpg", + "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground, both wearing orange vests and white helmets. They are working on a brick wall or foundation, with bricks scattered around them. In the background, there are other workers and construction equipment, including a yellow and black tractor. The scene is set outdoors, with the ground made of dirt and there are traffic cones placed around the area.", + "id": 31296 }, { - "image_path": "G:\\images\\combined\\002588_jpg.rf.9abb6f1969ec152a44da149357ba9ac4.jpg", - "response": "A group of three men in blue jump suits and hard hats are working on power lines. They are on top of a wooden power pole with several other power poles around them.", - "id": 687 + "image_path": "G:\\images\\combined\\00538_jpg.rf.5c313dff90f65c2cce5a9a4c7c4e859c.jpg", + "response": "A group of men in hard hats stand in a large, open building that has been gutted. They are all wearing yellow hard hats and work clothes. In front of them on the ground are two large, round, white objects and a silver and black object. The men are looking at these objects, which appear to be some kind of machinery.", + "id": 31297 }, { - "image_path": "G:\\images\\combined\\002589_jpg.rf.360f5aca26c6dd44812a99bd4b1b3612.jpg", - "response": "A man wearing a hard hat and overalls is looking at a blueprint.", - "id": 688 + "image_path": "G:\\images\\combined\\00538_jpg.rf.ec5299f93fd5cb4ad1b3a2ad4f6d0455.jpg", + "response": "A group of four people stand in a large, open building that has been gutted. They are all wearing hard hats and work clothes. In front of them is a pile of rubble and debris.", + "id": 31298 }, { - "image_path": "G:\\images\\combined\\00258c26da641378.jpg", - "response": "A large blue banner reading \"Design 2013\" is hanging on the side of a tall brick building. The building has many windows and features decorative elements such as circular stone plaques. There is a street lamp attached to the building and a few trees visible in the background.", - "id": 689 + "image_path": "G:\\images\\combined\\005390_jpg.rf.3f068f6fa5785520025005e795b4b277.jpg", + "response": "A man in a yellow hard hat and blue jeans is standing in a house that is under construction. He is wearing a brown shirt and has a tool belt around his waist. He is holding a level in his right hand and a nail gun in his left hand. The walls are made of wood and the roof is made of wood as well. There are blue sky and clouds in the background.", + "id": 31299 }, { - "image_path": "G:\\images\\combined\\002590_jpg.rf.b84e42791346fcade66d8da782c766d1.jpg", - "response": "In the image there are three people working on a construction site. They are wearing yellow hats and are standing near a large machine. The sky is overcast.", - "id": 690 + "image_path": "G:\\images\\combined\\005390_jpg.rf.ffac842bca70c4ef8b7f2a3c0246ba4a.jpg", + "response": "A man in a yellow hard hat standing in a unfinished room.", + "id": 31300 }, { - "image_path": "G:\\images\\combined\\00259130671bd32b.jpg", - "response": "A large clock tower with roman numerals sits in front of a store.", - "id": 691 + "image_path": "G:\\images\\combined\\005391_jpg.rf.c15026328f6546fd63a3814c807d5928.jpg", + "response": "8 people(291,104),(460,775)(117,200),(270,833)(437,169),(578,733)(562,102),(728,768)(821,153),(980,765)(17,183),(147,713)(700,127),(836,755) standing on a rocky hillside", + "id": 31301 }, { - "image_path": "G:\\images\\combined\\002591_jpg.rf.2b2d9ff0d9311d6cc8378d2ae234a175.jpg", - "response": "a group of people standing in a street", - "id": 692 + "image_path": "G:\\images\\combined\\005391_jpg.rf.ed087a2e9d77583713b2ac5dcd86018d.jpg", + "response": " Several people(18,184),(153,713)(118,201),(270,832)(291,105),(462,775)(437,169),(577,729)(563,102),(728,767)(701,128),(838,755)(818,153),(982,766) standing on a rocky hillside", + "id": 31302 }, { - "image_path": "G:\\images\\combined\\002593_jpg.rf.27b04bef7e1b2fbb7d9c8a4332b54d9f.jpg", - "response": "In the image, two workers are seen wearing orange and yellow vests and helmets. They are climbing up a cliff using a rope. The cliff is above a river and the workers are wearing gloves for better grip. There is a truck visible in the background.", - "id": 693 + "image_path": "G:\\images\\combined\\005392_jpg.rf.075674708f9a8309752c8795d4ce1de7.jpg", + "response": "A group of men standing around each other.", + "id": 31303 }, { - "image_path": "G:\\images\\combined\\002594_jpg.rf.0df3d2edd6d6f0b6ad55bd117e215f53.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left and is wearing a blue shirt and is holding a large rock. The other worker is on the right and is wearing a yellow helmet. They are both standing in a pit filled with dark brown mud. There are two yellow pipes running across the top of the pit and a white pipe running across the top of the pit on the left. A yellow hose is running across the top of the pit on the right. In the background, there is a white truck with a yellow stripe on the far left.", - "id": 694 + "image_path": "G:\\images\\combined\\005392_jpg.rf.11b5bf870c407cb820d77ed5a3aa6c8a.jpg", + "response": "A group of men wearing hard hats", + "id": 31304 }, { - "image_path": "G:\\images\\combined\\002595_jpg.rf.4a4cb89e9f5271a42c87c114c54a5e0b.jpg", - "response": "The image shows a group of workers in orange and yellow uniforms and hard hats, working on a power pole or transformer in an outdoor setting. There are several workers in the scene, with some standing on ladders or the power pole itself, and others working on the equipment. The workers are spread out around the pole or transformer, with some working on the top, middle, and bottom sections. The equipment they are working on is electrical in nature, with many wires and connections visible. The scene is set in an open area with grass and power lines in the background.", - "id": 695 + "image_path": "G:\\images\\combined\\005393_jpg.rf.6e6f60b00e91917f01f5740b55d9b472.jpg", + "response": "A group of people wearing hard hats(760,774),(896,960)(141,559),(254,677)(645,622),(731,723)(310,537),(382,618)(509,503),(579,583)(610,553),(691,632)(408,479),(483,558)(333,364),(376,413)(619,622),(731,724)(487,593),(564,673)(343,757),(420,851)(610,812),(764,997) are working together to clear snow from a power line.", + "id": 31305 }, { - "image_path": "G:\\images\\combined\\002596_jpg.rf.6f5d5cbd5b5c9114ce26692343abc8e2.jpg", - "response": "A group of people working on a construction site.", - "id": 696 + "image_path": "G:\\images\\combined\\005393_jpg.rf.c7c8d6a7e9dc50973b262a8f70ecdbad.jpg", + "response": "A group of people wearing hard hats and working clothes are on a snowy mountain side. They are working together to move a large metal pipe.", + "id": 31306 }, { - "image_path": "G:\\images\\combined\\002597_jpg.rf.ddb3f66d11e2c3fb7f8c51f7eacc4668.jpg", - "response": "Three men in construction gear are looking at a blueprint. One man is holding the blueprint and is wearing a yellow safety vest and a yellow hard hat. Another man is wearing a green safety vest and a blue hard hat. The third man is on the right and is wearing a yellow safety vest and a yellow hard hat. He is holding a phone and appears to be talking. The men are standing in front of a window and there are construction beams visible in the background.", - "id": 697 + "image_path": "G:\\images\\combined\\005394_jpg.rf.2c3e4449075947d14748b5a3622fed8a.jpg", + "response": "The image shows two men wearing yellow hard hats and green safety vests. They are working on a construction site, which can be identified by the presence of wooden beams and trusses in the background. One of the men is holding a drill, which is located on the left side of the image. The men appear to be focused on a task, possibly installing or repairing something.", + "id": 31307 }, { - "image_path": "G:\\images\\combined\\002598_jpg.rf.e0b3fcbb02ac319b96e910c1b823869d.jpg", - "response": "a man in a suit is handing a red and white cardboard sign to another man", - "id": 698 + "image_path": "G:\\images\\combined\\005394_jpg.rf.3ed559ff044acaf7c69c9ddbd3dc7022.jpg", + "response": "The image shows two men working on a construction site, wearing yellow hard hats and green safety vests. One man is holding a power drill and the other man is holding a saw. They are both working on a wooden structure, possibly a roof or a frame. The sky is blue and clear.", + "id": 31308 }, { - "image_path": "G:\\images\\combined\\002599_jpg.rf.69c147bdb52cac401cb7e487fc248e9c.jpg", - "response": "A man wearing a blue shirt and a white helmet is holding a walkie-talkie. He is standing next to a large anchor.", - "id": 699 + "image_path": "G:\\images\\combined\\005395_jpg.rf.52e2e254db40de3ec7a701b910e94dc1.jpg", + "response": "A couple of men in a bucket truck working on power lines.", + "id": 31309 }, { - "image_path": "G:\\images\\combined\\002600_jpg.rf.a5f49e731e9463e3042f976c8eae2fac.jpg", - "response": "A group of workers are working on a construction site. They are all wearing yellow hard hats and are working on a wire fence. They are also wearing gloves and some have tools in their hands. In the background, there are more workers and a pile of rocks. There are also some buildings and trees in the distance.", - "id": 700 + "image_path": "G:\\images\\combined\\005395_jpg.rf.893f01c837c44d383c79af58cf80434d.jpg", + "response": "A city street with many cars parked on the side.", + "id": 31310 }, { - "image_path": "G:\\images\\combined\\002601_jpg.rf.86717d3344db892e9a7d1089de7e6488.jpg", - "response": "A group of workers are fixing a blue pipe in the ground. The pipe is located in the middle of the scene and is connected to a red valve on the left. The workers are all wearing black clothing and one of them is wearing a yellow hat. The background shows a large arch-shaped structure built into the ground.", - "id": 701 + "image_path": "G:\\images\\combined\\005396_jpg.rf.122b630593b14b14f9931452440e77bd.jpg", + "response": "A fireman wearing a hard hat is standing in a dark room filled with smoke. He is holding a fire hose and there is rubble in the background.", + "id": 31311 }, { - "image_path": "G:\\images\\combined\\002603_jpg.rf.d8d97a4006c0ac2ed2949688318fe61b.jpg", - "response": "The image shows a man in a red hard hat holding a fire extinguisher and using it to put out a fire in a large bin. The fire extinguisher is located on the left side of the image and the fire is located towards the right. The fire appears to be contained to the large bin and is not spreading to nearby objects. The fire extinguisher is being used to put out the fire and the man is standing in front of the fire.", - "id": 702 + "image_path": "G:\\images\\combined\\005396_jpg.rf.f177692eda1d035d8afe7358b921f174.jpg", + "response": "A firefighter is seen in silhouette as he walks through smoke and debris", + "id": 31312 }, { - "image_path": "G:\\images\\combined\\002604_jpg.rf.d3830cc949547aa8af368b38d8843a06.jpg", - "response": "In the image there is a construction site with multiple steel beams and rods being constructed. There is a worker in a red helmet working on the steel bars. There are also two other people in the image, one on the far left and another near the center, both of which are wearing hard hats.", - "id": 703 + "image_path": "G:\\images\\combined\\005397_jpg.rf.296091edb53268506709fd4214fba77b.jpg", + "response": "A group of men in hard hats stand on a construction site, looking at blueprints.", + "id": 31313 }, { - "image_path": "G:\\images\\combined\\002605_jpg.rf.a420d228f5a9c81a8b6e0fc98f0231d0.jpg", - "response": "A group of three men standing in a factory.", - "id": 704 + "image_path": "G:\\images\\combined\\005397_jpg.rf.a1a2b657de005348e73c67d597921efe.jpg", + "response": "A group of men standing on a construction site holding a rolled up blueprint.", + "id": 31314 }, { - "image_path": "G:\\images\\combined\\002607_jpg.rf.0815e38daf516660a9d4879409b0f4b2.jpg", - "response": "A group of people standing in front of a building.", - "id": 705 + "image_path": "G:\\images\\combined\\005398_jpg.rf.22dc95f199a4a4aff1ceff53342e4912.jpg", + "response": "a group of men walking down a street", + "id": 31315 }, { - "image_path": "G:\\images\\combined\\002608_jpg.rf.827b029d7f1a674be053667f17448cf4.jpg", - "response": "A man wearing a yellow hard hat and carrying a cement filled wheelbarrow.", - "id": 706 + "image_path": "G:\\images\\combined\\005398_jpg.rf.e62bf347c68a6ff14f84f334ef1bce11.jpg", + "response": "a group of men walking down a street", + "id": 31316 }, { - "image_path": "G:\\images\\combined\\002609_jpg.rf.4df360b10fd0814f57e722ad380aa585.jpg", - "response": "In the image there is a group of rescue workers dressed in yellow and grey. They are all wearing hard hats and some are wearing gloves. They are standing in front of a large rock or stone wall. Some of them are crouching or bending over while one of them is shouting.", - "id": 707 + "image_path": "G:\\images\\combined\\005399_jpg.rf.6a3b6c480cdd75c5eb6634e8d4980d54.jpg", + "response": "In the image there are two people working on a construction site. They are wearing hard hats and the background features a green fence. In the foreground, there is a roof that is under construction with wooden beams and wooden struts.", + "id": 31317 }, { - "image_path": "G:\\images\\combined\\002610_jpg.rf.e961d193267d2212551335b22bad35f1.jpg", - "response": "The image shows two workers from the China Southern Power Grid Corporation, one holding a red tool and the other holding a clipboard. They are both wearing blue hard hats and red safety gloves. The worker on the left is also wearing a red and white safety belt. They are standing next to a grey electric box.", - "id": 708 + "image_path": "G:\\images\\combined\\005399_jpg.rf.ee410e6748b7772ff2819a7ed639745a.jpg", + "response": "In the image there are two people working on a construction site. They are wearing hard hats and are standing on a roof. The roof is made of wooden beams and they are working on it.", + "id": 31318 }, { - "image_path": "G:\\images\\combined\\002611_jpg.rf.e8149f797fb3c9434a54e07112e8590f.jpg", - "response": "A worker on a lift repairs a power line covered with snow in this file photo.", - "id": 709 + "image_path": "G:\\images\\combined\\00539_jpg.rf.08a5e47fa27ec30b11415341882f9b16.jpg", + "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", + "id": 31319 }, { - "image_path": "G:\\images\\combined\\002612_jpg.rf.7b166a28692ae1ea8c9e1e24a50bacdb.jpg", - "response": "A miner(668,128),(918,996) is using a drilling machine to drill a hole in the wall of a coal mine.", - "id": 710 + "image_path": "G:\\images\\combined\\00539_jpg.rf.827dbdeb126a73dc017aafd9a4bfe96c.jpg", + "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", + "id": 31320 }, { - "image_path": "G:\\images\\combined\\002613_jpg.rf.6d1ca9249a32dcda0b4630f43dc17df0.jpg", - "response": "A group of workers in orange vests and grey pants are working on a train track. They are standing on the tracks and working on the rail. There are a few people in the background wearing green and orange vests. The sky is dark and there are a few clouds. In the background, there is a mountain covered in green trees. To the right of the workers, there is a blue wall.", - "id": 711 + "image_path": "G:\\images\\combined\\0053a650ec50c21f.jpg", + "response": "The image depicts a busy city street with a Dominos Italian sausage food truck parked on the side of the road. There are several people walking around, some of which are carrying handbags and suitcases. A few cars are also parked or driving on the street.", + "id": 31321 }, { - "image_path": "G:\\images\\combined\\002614_jpg.rf.3c1c5e121c8d35c4fc235d3aaf6072a0.jpg", - "response": "A group of men in green uniforms and blue hats are working on an electricity pole in a foggy area.", - "id": 712 + "image_path": "G:\\images\\combined\\005400_jpg.rf.8740e2f6a781e40c131d867fb3430f3f.jpg", + "response": "In the image two workers are in a flooded room. They are wearing blue helmets and are holding flashlights. The floor is knee deep in water and the walls are white. There is a sign on the wall that says \"CAUTION DANGEROUS VOLTAGE\" and another sign that says \"DO NOT TOUCH\".", + "id": 31322 }, { - "image_path": "G:\\images\\combined\\002615_jpg.rf.84a38a40e22f95d5f43679033ae2f075.jpg", - "response": " Workers(676,40),(962,913)(108,99),(249,758)(228,73),(372,451)(117,433),(531,957)(1,251),(100,767) in hard hats and orange jackets(229,158),(371,449)(1,253),(79,758)(712,224),(938,627)(287,162),(368,441) are working on a construction site.", - "id": 713 + "image_path": "G:\\images\\combined\\005400_jpg.rf.c1b94d94aa572d974723848fd56b6a1f.jpg", + "response": "In the image two workers are working in an area that is flooded with water. They are standing in the water and appear to be working on something. They are both wearing blue helmets and the man on the left is also wearing a yellow jacket. The wall to the right has several stickers on it. The room they are in has a bright light on the wall and the floor is visible through the water.", + "id": 31323 }, { - "image_path": "G:\\images\\combined\\002616_jpg.rf.50e1f50746d2c26e1ac5c4147d540fa0.jpg", - "response": "a group of men standing in a room that has a ladder, a window, and a table in it", - "id": 714 + "image_path": "G:\\images\\combined\\005401_jpg.rf.27d9da50f53cdc103fc8d7fc6ed1870f.jpg", + "response": "A group of men in orange work overalls and hard hats are gathered around a large metal valve. They are all wearing the same orange hard hats and some are wearing matching orange shirts. The men are standing in a field with a dirt road behind them and a concrete structure to their left. In the foreground, they are working on a large metal valve that is part of a gas or oil well.", + "id": 31324 }, { - "image_path": "G:\\images\\combined\\002617_jpg.rf.f29f869a66017834a6caaae6d8d6aed8.jpg", - "response": "a group of people walking across a bridge", - "id": 715 + "image_path": "G:\\images\\combined\\005401_jpg.rf.851d2ffd7a38a9fbc1dabfd12791504e.jpg", + "response": "A group of men in orange work overalls and orange hard hats are gathered around a large metal valve.", + "id": 31325 }, { - "image_path": "G:\\images\\combined\\002618_jpg.rf.9586e219d1474de9ef426911c79ef4d7.jpg", - "response": "A lineworker is suspended from a power line, making repairs to a power pole. He is wearing a gray shirt, gray pants, and a blue hat with yellow reflective tape. He is also wearing safety ropes and a tool belt.", - "id": 716 + "image_path": "G:\\images\\combined\\005402_jpg.rf.054cb39d4d4b175f6dede9938cdb03a6.jpg", + "response": " Firefighters(433,326),(597,602)(436,49),(557,448)(367,588),(629,949) working in a confined space", + "id": 31326 }, { - "image_path": "G:\\images\\combined\\002619_jpg.rf.939434efb87caa731f438d43e625e697.jpg", - "response": "A man in a red shirt and a yellow hard hat stands in front of a construction site.", - "id": 717 + "image_path": "G:\\images\\combined\\005403_jpg.rf.05d2beb6c676f7ad4c66a7890163b4cd.jpg", + "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", + "id": 31327 }, { - "image_path": "G:\\images\\combined\\002620_jpg.rf.08d5300f02ea657a1aaa69200e9eeb2a.jpg", - "response": "The image shows two workers in a construction site setting up a yellow scaffolding. Both workers are wearing red helmets and green and brown camouflage uniforms. The left worker is a middle-aged male with a mustache and beard, and the right worker is a young male with a red helmet and a white T-shirt under the camouflage uniform. The two workers are interacting with the scaffolding, with the left worker holding a yellow pipe and the right worker reaching for a yellow pipe. In the background, there is a pink building and a few other workers.", - "id": 718 + "image_path": "G:\\images\\combined\\005403_jpg.rf.2f9b5ce355db14fc30f35b804c8694cb.jpg", + "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", + "id": 31328 }, { - "image_path": "G:\\images\\combined\\002621_jpg.rf.5702a9caec96f8f5c12c67d74c219663.jpg", - "response": "The image shows a group of rescue workers in orange uniforms carrying a snow shovel. They are walking up a snow-covered slope, which appears to be quite steep. The workers are wearing red helmets and some of them are carrying rope. The sky in the background is grey and overcast. The rescue workers are heading towards something, but it is not clear what their exact task is.", - "id": 719 + "image_path": "G:\\images\\combined\\005404_jpg.rf.1d32b962984c526944d51c07b8989502.jpg", + "response": "A group of people standing around a table looking at items on it.", + "id": 31329 }, { - "image_path": "G:\\images\\combined\\002622_jpg.rf.469897280128f1ed206592d2c2f52277.jpg", - "response": "a group of men standing on a dirt and grass field", - "id": 720 + "image_path": "G:\\images\\combined\\005404_jpg.rf.52a32d74ed41c23529a0eedce1817be9.jpg", + "response": "The image shows a group of people gathered around a table with several books and binders on it. The table has a blue cover and is filled with various materials. There is also a laptop on the table. In front of the table, there is a chair. On the wall behind the table, there is a poster with the words \"Let's do it\" written on it. The room has a Chinese flag hanging on the left side of the wall.", + "id": 31330 }, { - "image_path": "G:\\images\\combined\\002623_jpg.rf.ba695d275c71d74988a0a92efde61be2.jpg", - "response": "a group of men standing next to each other", - "id": 721 + "image_path": "G:\\images\\combined\\005405_jpg.rf.13b9aeb665fb2d0a9e074c68a44f0b3b.jpg", + "response": "A construction worker wearing a hard hat and a pair of jeans is using a hose at a construction site.", + "id": 31331 }, { - "image_path": "G:\\images\\combined\\002624_jpg.rf.5afc461be31ee33c6b6419f65e442e25.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 722 + "image_path": "G:\\images\\combined\\005405_jpg.rf.d2736965da2e639304d4e5f058389a2e.jpg", + "response": "A construction worker is using a hose at a construction site.", + "id": 31332 }, { - "image_path": "G:\\images\\combined\\002625_jpg.rf.a8316d727bd1707c3732c6015e74d696.jpg", - "response": "A construction worker in a white shirt and green pants is on the left, attaching a piece of rebar to a frame of rebar. A second construction worker in a red hard hat and light blue shirt is on the right, holding a piece of rebar that the first worker is attaching.", - "id": 723 + "image_path": "G:\\images\\combined\\005406_jpg.rf.db3739ae94d1815056ab7da9ccd3e8b3.jpg", + "response": "A man and a woman in orange vests and hard hats standing on a construction site.", + "id": 31333 }, { - "image_path": "G:\\images\\combined\\002626_jpg.rf.433edd242b9778a86e4cf43a6648efde.jpg", - "response": "A group of five men working on a scaffolding.", - "id": 724 + "image_path": "G:\\images\\combined\\005406_jpg.rf.e7661961c09c84deea87c36063a1b934.jpg", + "response": "A man and woman in orange vests and hard hats standing on a construction site.", + "id": 31334 }, { - "image_path": "G:\\images\\combined\\002627_jpg.rf.0865df6f43a2598be768efce0efdc347.jpg", - "response": "A few linemen are working on power lines in a blue sky.", - "id": 725 + "image_path": "G:\\images\\combined\\005407_jpg.rf.22aaa351638841711b9a2d82068318ce.jpg", + "response": "A group of men standing in a unfinished building.", + "id": 31335 }, { - "image_path": "G:\\images\\combined\\002628_jpg.rf.90f8e32ad48c2db07836e3df80e17d77.jpg", - "response": "Some men in orange jumpsuits and white hardhats are working on a stretch of railroad track. They are in various poses, kneeling or crouching as they focus on different parts of the track. One man is holding a small device while another man inspects the track beside him.", - "id": 726 + "image_path": "G:\\images\\combined\\005407_jpg.rf.b09fc18de1cd1961f29eb796c9d14809.jpg", + "response": " Men(129,250),(370,997)(626,284),(857,997)(442,197),(658,997) in hard hats(202,250),(302,358)(549,196),(629,278) looking at a wall", + "id": 31336 }, { - "image_path": "G:\\images\\combined\\002629_jpg.rf.7db44ff48b15336c3e65fb4c6c2498a5.jpg", - "response": "A man in a red hard hat is squatting down in front of a red and yellow bulldozer. He is wearing a white shirt and has a pen in his pocket. He is in front of a pile of rubble and there is a second pile of rubble to his right. In the background, there is a street and a pile of dirt.", - "id": 727 + "image_path": "G:\\images\\combined\\005408_jpg.rf.766b1e5ae104191c7d6d74cb0e091678.jpg", + "response": "A group of three workers in red doing some work in a factory.", + "id": 31337 }, { - "image_path": "G:\\images\\combined\\002630_jpg.rf.7f9583170625a87fd3236346b04f6234.jpg", - "response": "In the image two workers are standing in a factory. They are both wearing safety hats and the one on the left is holding a long tool and the one on the right is holding a torch. The factory has a large grey\u7089 with two white pipes sticking out of it and a large grey\u7f50. There is a small black pipe coming out of the grey\u7089 and another black pipe further to the left. There is a white pipe sticking out of the grey\u7f50. The workers are casting something into a mould which is sitting on the floor.", - "id": 728 + "image_path": "G:\\images\\combined\\005408_jpg.rf.a7a4986c748c40adf8a406d4d32ac564.jpg", + "response": "A group of three workers in red doing some work in a factory.", + "id": 31338 }, { - "image_path": "G:\\images\\combined\\002631_jpg.rf.3f7e4a8cedb15ecbde655f2066627d6b.jpg", - "response": "A man in a yellow jacket and red hard hat is sitting on a pile of bricks.", - "id": 729 + "image_path": "G:\\images\\combined\\005409_jpg.rf.88499a2c1333c23a7ceab6a36886ea44.jpg", + "response": "A group of workers wearing hard hats are shoveling and moving dirt and rocks.", + "id": 31339 }, { - "image_path": "G:\\images\\combined\\002632_jpg.rf.efb1423e159090ffed213b04ea627c36.jpg", - "response": "The image shows three people in a room wearing hard hats and checking a grey box with a meter. One person is holding a meter and checking the output, while another person is holding a smartphone. A third person is standing in the background.", - "id": 730 + "image_path": "G:\\images\\combined\\005410_jpg.rf.209e0bf5132c11441f157b5c1294b209.jpg", + "response": "A pair of workers, one on a ladder and one on the wall, are repairing a brick wall.", + "id": 31340 }, { - "image_path": "G:\\images\\combined\\002633_jpg.rf.8f7026337789233193e5c2607c61d0d4.jpg", - "response": "A group of people standing on a road.", - "id": 731 + "image_path": "G:\\images\\combined\\005411_jpg.rf.2a0f3fc5581055ef7a025ddf64f8f906.jpg", + "response": "In the image there are three construction workers at a construction site. They are all wearing yellow vests and hard hats. Two of the workers are in the foreground, one on the left and one on the right, and the third worker is in the background on the left. There are two cranes in the background, one on the left and one on the right. The sky is blue with clouds.", + "id": 31341 }, { - "image_path": "G:\\images\\combined\\002634_jpg.rf.73c795fbcb44e48a540de0049ed411c2.jpg", - "response": " A worker(237,547),(543,997) in a hard hat(322,547),(438,711) stands in front of a cement factory(4,7),(995,996)", - "id": 732 + "image_path": "G:\\images\\combined\\005412_jpg.rf.a10f0e80d207ee20d963a374088959e2.jpg", + "response": "A group of four people standing on a dirt road.", + "id": 31342 }, { - "image_path": "G:\\images\\combined\\002635_jpg.rf.399c88041390ae93f4c5b2ce5bbb62d5.jpg", - "response": " Men(583,3),(995,719)(384,20),(636,690)(4,50),(299,997) loading a dead pig(227,347),(933,948) into the back of a truck(495,550),(996,997)", - "id": 733 + "image_path": "G:\\images\\combined\\005412_jpg.rf.f997eaaff81b8f2d574292d18ca9989c.jpg", + "response": "A group of four people standing on a dirt road.", + "id": 31343 }, { - "image_path": "G:\\images\\combined\\002636_jpg.rf.223238ab25c15411a9f3bdc6f8d0006c.jpg", - "response": "A couple of men in grey work uniforms and blue hard hats.", - "id": 734 + "image_path": "G:\\images\\combined\\005413_jpg.rf.0da0f610bbe4925412e6f8b9a3367adf.jpg", + "response": "In the image two men wearing orange vests and white hard hats are talking to each other. One man is holding a clipboard. They are standing in front of a large ship that is docked at a large terminal. In front of the men and the ship there is a forklift.", + "id": 31344 }, { - "image_path": "G:\\images\\combined\\002637_jpg.rf.5c17d83877342692031da64b850f0d31.jpg", - "response": "A group of men wearing hard hats and raincoats are working in the snow. They are wearing blue and green hard hats and are holding a large wooden pole. There is a rope attached to the pole and some men are holding it. There is a man in a red hard hat and a man in a grey sweatshirt in the background. The snow is knee deep in some places and the ground is covered in snow.", - "id": 735 + "image_path": "G:\\images\\combined\\005413_jpg.rf.5dceab994e735c5d4ad75af85a667df8.jpg", + "response": "In the foreground, two men in high visibility vests and white hard hats stand next to a forklift. The man on the left is holding a clipboard. In the background, a large ship is docked at a terminal. The ship is white and blue and is much taller than the men and the forklift.", + "id": 31345 }, { - "image_path": "G:\\images\\combined\\00263823ccb13e72.jpg", - "response": "A large screen that says \"Devilishly charming bots\" on it.", - "id": 736 + "image_path": "G:\\images\\combined\\005414_jpg.rf.99f800ed4f0e7d7575b7d04b0b7ea458.jpg", + "response": "a group of men standing in a driveway", + "id": 31346 }, { - "image_path": "G:\\images\\combined\\002639_jpg.rf.23284ab055f1ed2631773d75e4e043e3.jpg", - "response": "A construction worker is working on a building.", - "id": 737 + "image_path": "G:\\images\\combined\\005415_jpg.rf.851e17b934e70d1060470bcf81438e2d.jpg", + "response": "A construction site with multiple people working on it.", + "id": 31347 }, { - "image_path": "G:\\images\\combined\\002640_jpg.rf.b929f16dfae865372a577fc192f628d3.jpg", - "response": "A group of people standing around a blue box on a bridge.", - "id": 738 + "image_path": "G:\\images\\combined\\005415_jpg.rf.b50c060a9a0cb6d3a234e0b5dc85cc9a.jpg", + "response": "A construction site with multiple cranes and several people working on different tasks.", + "id": 31348 }, { - "image_path": "G:\\images\\combined\\002641_jpg.rf.609f8b97b97e4cf299fce3078dfea2a0.jpg", - "response": "A construction site with multiple cranes working on a building.", - "id": 739 + "image_path": "G:\\images\\combined\\005416_jpg.rf.26403633c61e55ff010b800609b3195b.jpg", + "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and camouflage uniforms. One of the linemen is climbing a pole to work on the power lines, and the other is holding onto the pole to provide support. They are both wearing safety harnesses, which are attached to the pole to ensure their safety during the climb.", + "id": 31349 }, { - "image_path": "G:\\images\\combined\\002642_jpg.rf.e106e46daf51c856fa81a3352fbc4e03.jpg", - "response": " Four people(268,388),(393,803)(413,436),(518,851)(557,360),(692,919)(203,419),(318,744) standing on a platform(2,583),(997,997)", - "id": 740 + "image_path": "G:\\images\\combined\\005416_jpg.rf.4caa0659c28347d3f7a6a49f3538265f.jpg", + "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and green camouflage shirts. One of the linemen is climbing a pole to work on the power lines, and the other man is securing the pole. They are both holding onto the pole with their hands. In the background, there is a building with Chinese characters on the sign.", + "id": 31350 }, { - "image_path": "G:\\images\\combined\\002643_jpg.rf.0fcd694624b1a14beb4603701efc15cd.jpg", - "response": "A group of three men working on a construction site.", - "id": 741 + "image_path": "G:\\images\\combined\\005417_jpg.rf.257b7fdd02e0243945b5bffe67bcb60d.jpg", + "response": "A group of men standing around a construction site", + "id": 31351 }, { - "image_path": "G:\\images\\combined\\002644_jpg.rf.a640b5620095748caf6dd7d3813f9de2.jpg", - "response": "A man wearing a hard hat and safety glasses standing next to a large metal beam on a construction site.", - "id": 742 + "image_path": "G:\\images\\combined\\005417_jpg.rf.2c4d375770c6d3c0b8d3df245507b1f8.jpg", + "response": "A group of men standing around a construction site", + "id": 31352 }, { - "image_path": "G:\\images\\combined\\002645_jpg.rf.c92fc10c98fd7945fabe1a42342373db.jpg", - "response": "A man wearing a white shirt and a green hat is using a tool to dig into a pile of black coal.", - "id": 743 + "image_path": "G:\\images\\combined\\005418_jpg.rf.2e5a1eff04f2bba4a6634188b462edbd.jpg", + "response": " Firefighters(439,21),(872,996)(33,52),(387,996) rescue a man who fell into a manhole", + "id": 31353 }, { - "image_path": "G:\\images\\combined\\002646_jpg.rf.b72ffbcdaea432f3552e2ab8bb786a5d.jpg", - "response": "A group of men in front of a large pile of dirt.", - "id": 744 + "image_path": "G:\\images\\combined\\005418_jpg.rf.714a8c512e4f808b5ea5934bf5deb61d.jpg", + "response": " Firefighters(33,50),(388,996)(437,16),(872,997) in China rescued a 22-year-old man who had been trapped in a pit for 15 hours after a cave-in.", + "id": 31354 }, { - "image_path": "G:\\images\\combined\\002647_jpg.rf.d374508f6827d37fb1c9a9aeae776408.jpg", - "response": "The three men in the image are wearing blue hard hats. They are dressed in green camouflage clothing. The man on the left is pulling on a brown rope. The man in the middle is holding the rope with his left hand while the man on the right has his right hand on the rope. There is a black iron fence behind the men. There are also two cars parked behind the fence. The ground is covered in green grass and small trees.", - "id": 745 + "image_path": "G:\\images\\combined\\005419_jpg.rf.1c3cba4b79efc02dd0976cf25391acf6.jpg", + "response": "In the image there is a large construction site with multiple workers wearing hard hats and safety gear. They are working on a large building that has not yet been constructed. The building is surrounded by wooden scaffolding and metal poles. In the background there is a mountain range.", + "id": 31355 }, { - "image_path": "G:\\images\\combined\\002648_jpg.rf.9274f769523916c26ca424302a013fc6.jpg", - "response": "The image shows two workers in a large tunnel. They are standing on a platform and appear to be working on a construction project. The workers are wearing hard hats and one of them is holding a light. The light illuminates the area around them and the workers are focused on their task. The tunnel is filled with dirt and the workers are surrounded by equipment.", - "id": 746 + "image_path": "G:\\images\\combined\\005419_jpg.rf.5bc57848d26ba65cc402dcb50768fa7b.jpg", + "response": "In the image there is a large group of people working at a construction site. They are wearing blue or red hard hats and are standing on a yellow scaffolding. Some of them are also wearing blue or red shirts. There are many wooden poles in the scene, some are arranged in a square shape while others are placed in a row. There are also many steel bars in the scene, some are arranged in a vertical manner while others are placed on the right side of the image. In the background, there is a large crane operating in the distance.", + "id": 31356 }, { - "image_path": "G:\\images\\combined\\002649_jpg.rf.a80a5fd5f744be8791a88f2468febda3.jpg", - "response": "A man(369,46),(838,692) in a suit and tie looking down at a man in a hole.", - "id": 747 + "image_path": "G:\\images\\combined\\00541_jpg.rf.2cb58b3df11e614a2a1e66648e7738eb.jpg", + "response": "A construction worker in a yellow jacket and blue hard hat is pointing to a wooden beam that another construction worker is holding. They are both wearing yellow jackets and blue hard hats.", + "id": 31357 }, { - "image_path": "G:\\images\\combined\\00264fb0bf48ff9a.jpg", - "response": "A man and a woman pose in front of a sports arena.", - "id": 748 + "image_path": "G:\\images\\combined\\00541_jpg.rf.f8bde4311d7010c62f2a9b1459f44228.jpg", + "response": "In the image there are two people wearing blue and yellow work wear. They are working on a construction site and are wearing blue hard hats. They are working on a wooden structure.", + "id": 31358 }, { - "image_path": "G:\\images\\combined\\002650_jpg.rf.766c53b65f8a2aa03c1cd7afc01f4ece.jpg", - "response": "A construction site with three men working on a building.", - "id": 749 + "image_path": "G:\\images\\combined\\005420_jpg.rf.00a27a6a8330f7f665994c9c02f18336.jpg", + "response": "A man in a white shirt is pointing at something.", + "id": 31359 }, { - "image_path": "G:\\images\\combined\\002652_jpg.rf.5dc1363a3f025b26866fe2e331ccc8ca.jpg", - "response": "The image shows a group of men in blue overalls and yellow hard hats standing in a large room with several metal cabinets. The men are wearing similar blue overalls and holding tools. One of the men is holding a clipboard and a drill. The room has a red brick floor and walls that are a mix of red and white brick. There is a large metal circular device on the right side of the room.", - "id": 750 + "image_path": "G:\\images\\combined\\005420_jpg.rf.f803b85686ca4c76ed0cf06dab311bef.jpg", + "response": "A man in a white shirt is pointing at something.", + "id": 31360 }, { - "image_path": "G:\\images\\combined\\002653_jpg.rf.83d6f445e2d17b3e77515cc25ff173f8.jpg", - "response": "A man wearing a red helmet and work clothes is on a telephone pole.", - "id": 751 + "image_path": "G:\\images\\combined\\005421_jpg.rf.5f71f3ec9e8ea4a3d895d688e376c4cb.jpg", + "response": "A couple of men working on a wall.", + "id": 31361 }, { - "image_path": "G:\\images\\combined\\002654_jpg.rf.76da509c588ef5d621a5484db912c71b.jpg", - "response": "A group of three men working on a large electrical box.", - "id": 752 + "image_path": "G:\\images\\combined\\005422_jpg.rf.12503de8d361b81079b0b96f0f844881.jpg", + "response": "In the image there is a factory in which a worker is wearing a hard hat and looking at a blueprint. The factory has several large metal objects and the worker is standing next to a metal object. There are also two other people in the factory, one in the background on the right and the other in the far background on the left.", + "id": 31362 }, { - "image_path": "G:\\images\\combined\\002655_jpg.rf.030e5f248a13ae700880c8ee59ea9af7.jpg", - "response": "A man in a red hard hat is standing on a metal platform working on a large white water tower. The platform is elevated and is in front of a brick wall. The man has a tool belt around his waist and is wearing a white shirt.", - "id": 753 + "image_path": "G:\\images\\combined\\005423_jpg.rf.061378b6306f26e3f55feb002afff685.jpg", + "response": "A group of workers in orange are working on a large pipe.", + "id": 31363 }, { - "image_path": "G:\\images\\combined\\002656_jpg.rf.4d44a06d548009f5a238af55463069d3.jpg", - "response": "A man in a yellow hard hat and blue shirt is handing a tool to another man in a yellow hard hat and orange vest.", - "id": 754 + "image_path": "G:\\images\\combined\\005423_jpg.rf.abd008e43e127c42c9594ec0fcde2f4f.jpg", + "response": "A crew of three men in orange work uniforms and yellow hard hats are working on a large metal pipe. They are all holding tools and one man is cutting into the pipe with a saw. They are wearing gloves and the man in the foreground is also wearing a pair of safety glasses. The pipe is on the ground and the men are standing around it.", + "id": 31364 }, { - "image_path": "G:\\images\\combined\\002657_jpg.rf.f8f86007637df2df1472fe9267a4edfa.jpg", - "response": " Men(680,5),(996,997)(3,39),(610,996) in green and blue shirts(683,285),(997,999)(3,463),(354,997) and red helmets(24,39),(281,286)(719,3),(943,157) standing in a field", - "id": 755 + "image_path": "G:\\images\\combined\\005424_jpg.rf.06e22ae9ec20942093e959b17cb68eae.jpg", + "response": "A group of men standing in front of a building.", + "id": 31365 }, { - "image_path": "G:\\images\\combined\\002658_jpg.rf.88bc0d63161e60103e424060ce55c0d7.jpg", - "response": "The image shows a construction site with a group of workers present. There are multiple people in the image, some of them are wearing yellow helmets and white working clothes. They are working on a large yellow machine with a concrete bucket on the front. The bucket is filled with concrete and a large tube is connected to it. The workers are standing around the machine, some of them are closer to the front, and some are standing further back. There are also a few people standing further to the right of the machine. In the background, there is a white building visible in the distance.", - "id": 756 + "image_path": "G:\\images\\combined\\005424_jpg.rf.7c2a46dbe4f2fda5b298ee040cec56e3.jpg", + "response": "A group of men standing in front of a building.", + "id": 31366 }, { - "image_path": "G:\\images\\combined\\002659_jpg.rf.6154c51cb9ae8070c78d2e100bfc8836.jpg", - "response": "Four people with yellow hard hats on a construction site.", - "id": 757 + "image_path": "G:\\images\\combined\\005425_jpg.rf.4cb76cf93f7680c766abfab72f69c2dd.jpg", + "response": "A group of men working on a construction site.", + "id": 31367 }, { - "image_path": "G:\\images\\combined\\002660_jpg.rf.424404df1570136a1c72567c2fd23c29.jpg", - "response": "A group of people in hard hats stand in front of a fence with a poster on it. They are looking at the poster and talking to each other.", - "id": 758 + "image_path": "G:\\images\\combined\\005425_jpg.rf.8e2dde395c855159643a7c744690d2db.jpg", + "response": "a group of men working on a construction site", + "id": 31368 }, { - "image_path": "G:\\images\\combined\\002662_jpg.rf.3265619692e7a894934d21a00fc3e7de.jpg", - "response": "A man in a red jumpsuit and a hard hat is working on a large pipe.", - "id": 759 + "image_path": "G:\\images\\combined\\005426_jpg.rf.3037ad6dff4903c1fbfde510bdcb14e3.jpg", + "response": "A group of men in suits walking across a yard.", + "id": 31369 }, { - "image_path": "G:\\images\\combined\\002663_jpg.rf.0678608e9a5d60d09992edc8033c2fbd.jpg", - "response": "An electrician is working on power lines.", - "id": 760 + "image_path": "G:\\images\\combined\\005426_jpg.rf.f96b66b427fc5a5c707798aa11a76011.jpg", + "response": "A group of men in suits walking across a yard.", + "id": 31370 }, { - "image_path": "G:\\images\\combined\\002664_jpg.rf.85d5bd563a270831c1916e8c057ba38e.jpg", - "response": "In the image there are three miners working in a cave. They are all wearing hard hats and using pickaxes to break apart a large boulder. The first miner is on the left side of the image and is crouching down with their pickaxe. The second miner is behind the first one and is also crouching down. The third miner is behind the second one and is also crouching down. They are all wearing yellow hard hats and have their pickaxes stuck into the rock.", - "id": 761 + "image_path": "G:\\images\\combined\\005427_jpg.rf.7612f871864baa7c85f07dc3e55eca0a.jpg", + "response": "A man in a hard hat and safety vest is standing on a ladder next to a large red piece of equipment. He is wearing a helmet and looking down at the ground.", + "id": 31371 }, { - "image_path": "G:\\images\\combined\\0026652e5ce138ff.jpg", - "response": "A collage of photos of Sinful Colors nail polish in pink. The polish is in a bottle and on a nail. The bottle has a black cap and the nail has a bar code on it. There is also a No Top Coat label on the nail polish bottle.", - "id": 762 + "image_path": "G:\\images\\combined\\005427_jpg.rf.9248e80a1434dfd85036f391fa9ec823.jpg", + "response": "A man in a suit and hard hat climbing a ladder.", + "id": 31372 }, { - "image_path": "G:\\images\\combined\\002666_jpg.rf.066ae80cdba7325b6266023f0b73e0c4.jpg", - "response": "a group of people standing in front of a bus", - "id": 763 + "image_path": "G:\\images\\combined\\005428_jpg.rf.9247bb3a7312220ef513974c386cce3e.jpg", + "response": "A woman in a flowered shirt is being handed a hard hat.", + "id": 31373 }, { - "image_path": "G:\\images\\combined\\002667_jpg.rf.1679d404c85fd0c2e24b2569a37f08db.jpg", - "response": "Some workers are building a house. Some grey bricks are stacked in front of a building. Some workers are wearing yellow helmets.", - "id": 764 + "image_path": "G:\\images\\combined\\005428_jpg.rf.f059430796904f79af8011fc80941014.jpg", + "response": "A woman in a floral dress is holding a white helmet.", + "id": 31374 }, { - "image_path": "G:\\images\\combined\\002668_jpg.rf.6cba07fdc4883fa3b6f142a81c131604.jpg", - "response": "A group of construction workers wearing yellow hard hats are standing on top of a building. They are working on a metal framework and a concrete slab.", - "id": 765 + "image_path": "G:\\images\\combined\\005429_jpg.rf.24f85476514a1c86a120d9a5929204e5.jpg", + "response": "A group of construction workers are standing around in a circle.", + "id": 31375 }, { - "image_path": "G:\\images\\combined\\002669_jpg.rf.f77b5c9fd0761b7500e96ff547ae2719.jpg", - "response": "A man in a grey jumpsuit and blue hard hat is in the process of cutting a tree with a chainsaw. The tree is blocking a power line.", - "id": 766 + "image_path": "G:\\images\\combined\\005429_jpg.rf.4c6c09fcd3551ce084ab3b7a2f69f909.jpg", + "response": "A group of people wearing hard hats are sitting on the ground.", + "id": 31376 }, { - "image_path": "G:\\images\\combined\\00266_jpg.rf.568ebcc4c15d821afc75da7d338d6373.jpg", - "response": "In the image, there are two men sitting on a bench in a warehouse. One man is wearing a suit and a hard hat, and is holding a coffee cup. The other man is wearing a yellow vest and is also holding a coffee cup. They are both looking at each other and talking. The warehouse has racks of shelves on the walls, and there are several other racks of shelves in the background. The floor is covered with large cardboard boxes.", - "id": 767 + "image_path": "G:\\images\\combined\\00542_jpg.rf.1d5daac9d4fd989df9ce92c0915cf250.jpg", + "response": "The image shows a group of men in blue shirts and white shorts standing on a bridge that is under construction. They are wearing hard hats and looking over the unfinished bridge. The bridge is a brown color and is located in China.", + "id": 31377 }, { - "image_path": "G:\\images\\combined\\00266_jpg.rf.d3c3caa2ae80faa9b7db47bdaf6e88cf.jpg", - "response": "In the image, there are two men wearing hard hats. They are both holding cups of coffee. One man is wearing a suit and is sitting on a pallet in a warehouse. The other man is wearing a safety vest and is sitting next to him. They are both looking at each other and talking. The background is filled with shelves and racks of goods in the warehouse.", - "id": 768 + "image_path": "G:\\images\\combined\\005430_jpg.rf.67e530da1d3f4e8de26f442900cc14af.jpg", + "response": "An electrician in a yellow shirt and yellow hat is showing a woman in a white shirt how to use a grey digital meter. They are both standing in a stairwell.", + "id": 31378 }, { - "image_path": "G:\\images\\combined\\002671_jpg.rf.42a39211baa3d498d39cf8fc9dab9a3a.jpg", - "response": "In the image there is a person wearing a blue shirt and a blue hat who is working in an underground pit filled with water. The person is holding two hoses that are connected to a pump that is removing the water from the pit. The pit is filled with water up to the person's knees.", - "id": 769 + "image_path": "G:\\images\\combined\\005430_jpg.rf.8897a7e3b17656a931991ebeed9a5c6a.jpg", + "response": "In the image, a man is wearing a yellow shirt and a yellow helmet. He is standing next to a woman and is touching the wires of an electrical panel. The woman is holding a cell phone in her hand. They are both in front of a staircase.", + "id": 31379 }, { - "image_path": "G:\\images\\combined\\002672_jpg.rf.30622efc1ef6b5685df498181a869c73.jpg", - "response": "A group of people walking through a warehouse", - "id": 770 + "image_path": "G:\\images\\combined\\005431_jpg.rf.061ebe895ede4505f6400d5afef48b13.jpg", + "response": "In the image, several workers are\u4fee\u590d\u8457\u88ab\u6d2a\u6c34\u51b2\u6bc1\u7684\u516c\u8def\u3002 They are wearing white hard hats and yellow reflective vests. One worker is holding a rope, another is holding a large spool of wire, and the third worker is carrying a tool bag. The sky is overcast and there is a mountain in the background. The ground is wet and muddy from the flood waters.", + "id": 31380 }, { - "image_path": "G:\\images\\combined\\002673_jpg.rf.8236a661f7e6de925f0f4d971b091b98.jpg", - "response": "A group of men standing around each other.", - "id": 771 + "image_path": "G:\\images\\combined\\005431_jpg.rf.d07e2b571c583558c1ec398614446c33.jpg", + "response": "In the image, several workers are seen standing on a muddy road. Some of them are wearing green and yellow uniforms, and yellow helmets are also visible. Some workers are holding sticks, and there are two black cables visible on the left side of the image. The background shows a mountain and a green field. The workers are wearing yellow helmets and white shirts.", + "id": 31381 }, { - "image_path": "G:\\images\\combined\\002675_jpg.rf.93404c78e262d56e0886a50e66ddf20d.jpg", - "response": "A man working on a construction site.", - "id": 772 + "image_path": "G:\\images\\combined\\005432_jpg.rf.4015b32bc3339df9eb0195b03cc3e4de.jpg", + "response": "A group of men in suits and construction hats are walking across a bridge. One of the men is wearing a red construction hat and a white shirt. Another man is wearing a blue construction hat. They are all walking together.", + "id": 31382 }, { - "image_path": "G:\\images\\combined\\002676_jpg.rf.6c2dfe727ccd15dce407e12cc0d3ad24.jpg", - "response": "In the image there is a group of five people working on a construction site. They are all wearing yellow hard hats and are focused on their task. They are building some steel frameworks and one of the frames has blue pipes running through it.", - "id": 773 + "image_path": "G:\\images\\combined\\005432_jpg.rf.e46ad2694baab552d7e9ac8bd42b4dd4.jpg", + "response": "A group of men in suits and construction hats are walking down a sidewalk. Some of the men are holding pink papers. In the background, there are buildings and a city skyline.", + "id": 31383 }, { - "image_path": "G:\\images\\combined\\002677_jpg.rf.de7344ef674553f97603616d5ee94404.jpg", - "response": "Four people standing in a factory, three men and one woman. The man in the middle is holding a clipboard. The man on the right is wearing a hard hat and a yellow vest. The woman on the left is crossing her arms.", - "id": 774 + "image_path": "G:\\images\\combined\\005433_jpg.rf.6a31f90591cae4f649e7d551ce6f8532.jpg", + "response": "The image shows three men working on a piece of equipment in a factory. One man is using a cutting torch, which is producing a bright flame, while the other two are standing nearby. They are all wearing hard hats.", + "id": 31384 }, { - "image_path": "G:\\images\\combined\\002678_jpg.rf.be5736b3966b8c967ac32ab4a1bc41f9.jpg", - "response": "A worker from the city's Department of Urban and Rural Development removes illegal\u5e7f\u544a", - "id": 775 + "image_path": "G:\\images\\combined\\005433_jpg.rf.c4681467429201c3e7999c630574e703.jpg", + "response": "The image shows three men working in a room. One man is on the left, wearing a black shirt and a red helmet and is using a cutting torch on a piece of metal. Another man is in the middle, wearing a white and brown checkered shirt and a red helmet. He is standing closer to the right side of the room. The third man is on a platform on the right side of the room, wearing a white shirt and a black hat. He is using a tool to hold a large metal pipe in place. The room is dimly lit and has a concrete floor. There is a large metal pipe running across the middle of the room and a second metal pipe on the right side of the room.", + "id": 31385 }, { - "image_path": "G:\\images\\combined\\002679_jpg.rf.9a09b47782b2eac9e953f381371ad9d9.jpg", - "response": "The image shows a group of rescue workers in camouflage uniforms and white hard hats standing around a hole in the ground. They are holding shovels and other tools. Some of them are near a large piece of equipment with a long arm and a bucket on the end. In the background, there is a large pile of dirt and debris. Some of the workers are wearing backpacks.", - "id": 776 + "image_path": "G:\\images\\combined\\005434409d2a7602.jpg", + "response": "a man wearing a black shirt with the words \"they've left it with no choice, be to start a revolution\" written on it.", + "id": 31386 }, { - "image_path": "G:\\images\\combined\\002681_jpg.rf.6e5d568679eb19de4a7380e4d8219a05.jpg", - "response": "A group of workers are working on a bridge.", - "id": 777 + "image_path": "G:\\images\\combined\\005434_jpg.rf.cec8a1243d32a27a46accc92ccf17995.jpg", + "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching down and appears to be working on a large construction site. There are many steel rods scattered around the worker and the site appears to be a large grid of steel rebar.", + "id": 31387 }, { - "image_path": "G:\\images\\combined\\002682_jpg.rf.2a7c0fbe2936312d6d0f311d3b7bb978.jpg", - "response": "A group of men standing in front of a map.", - "id": 778 + "image_path": "G:\\images\\combined\\005434_jpg.rf.dc6386c967adb653cdbaf907ef87c248.jpg", + "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching on a construction site surrounded by iron rods. The iron rods extend out in all directions and some of them are connected together.", + "id": 31388 }, { - "image_path": "G:\\images\\combined\\002683_jpg.rf.e958525127d58c58e670f8456870ad3b.jpg", - "response": "A group of workers in red and white hard hats working on a drilling machine in a construction site.", - "id": 779 + "image_path": "G:\\images\\combined\\005435_jpg.rf.532943f088b2e45948c722cd93d6ecf6.jpg", + "response": "A group of people standing in front of a building site with a white and red sign that says '\u4e2d\u570b\u5efa\u7bc9' (Zg\u00f9ch\u00e1 J\u00ecsh\u00f9) which is the Chinese characters for 'China Building'. They are all wearing red hats.", + "id": 31389 }, { - "image_path": "G:\\images\\combined\\002684_jpg.rf.9851ea42d670952a556cbb0f9c0d2ab8.jpg", - "response": " Men(325,263),(458,779)(77,215),(295,996)(238,274),(339,747) standing in a dark tunnel with a bright light(439,293),(517,397) shining on them", - "id": 780 + "image_path": "G:\\images\\combined\\005435_jpg.rf.e24725565bacd98395c2449ee3d538d6.jpg", + "response": "A group of people standing in front of a building site wearing high visibility jackets and hard hats.", + "id": 31390 }, { - "image_path": "G:\\images\\combined\\002685_jpg.rf.fb58124ee92a79c0aea01474fc714453.jpg", - "response": "The image shows a group of people standing in a construction site. They are wearing hard hats and some of them are holding a long stick. The people are of different ages and are standing next to a large window. The window frame is white and some of the people are wearing white. In the background, there is a wall that is in the process of being painted green. The image also shows a ladder against the wall.", - "id": 781 + "image_path": "G:\\images\\combined\\005436_jpg.rf.878b0dcda5dc5a0add260f27c7609c70.jpg", + "response": "A man in a uniform and hard hat is welding two pieces of metal together. He is wearing a yellow hard hat, safety goggles, and work gloves. He is crouching down over the metal and holding a welding rod. The background shows a construction site with a metal structure and other metal frameworks in the distance.", + "id": 31391 }, { - "image_path": "G:\\images\\combined\\002686_jpg.rf.ab3a9d96ece52f2596fd0d3259a7d468.jpg", - "response": "A group of men standing in a room that is under construction.", - "id": 782 + "image_path": "G:\\images\\combined\\005436_jpg.rf.ce866001c85649d4d376e2a60fad605f.jpg", + "response": "A man in a uniform and hard hat is welding a metal bar on a construction site. He is wearing a yellow hard hat and dark sunglasses. There are several other metal bars visible in the scene. In the background, there is a large structure under construction. The sky is overcast and there are no other people visible in the image.", + "id": 31392 }, { - "image_path": "G:\\images\\combined\\002687_jpg.rf.ace81774f1cfb7c7061dd4235a0524ef.jpg", - "response": "A worker checks equipment at a power plant.", - "id": 783 + "image_path": "G:\\images\\combined\\005437_jpg.rf.4fff0b3a7c7e723465f1c7a85d183d9a.jpg", + "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is sitting on the structure while others are standing on the ground and on a ladder. They are working on a metal frame that is white and silver. The sky is blue and there are no clouds in the sky.", + "id": 31393 }, { - "image_path": "G:\\images\\combined\\002688_jpg.rf.15c5fb6f3ffeae37e0e9466a5aace36e.jpg", - "response": "A group of construction workers working on a building site with one man down on the ground.", - "id": 784 + "image_path": "G:\\images\\combined\\005437_jpg.rf.d4f4a6fef01f793c459ab64cd759ff55.jpg", + "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is on a ladder working on the metal structure.", + "id": 31394 }, { - "image_path": "G:\\images\\combined\\002689_jpg.rf.81f6f7850242adfcc4e3438542a6039e.jpg", - "response": "A group of people standing in front of a building under construction. The people are standing in a semi-circle and some of them are wearing hard hats. There is a blue and white sign in the foreground that says \"\u5b89\u5168\u901a\u9053 18#\" and has a picture of a person wearing a hard hat. In the background, there is a yellow crane operating near the building.", - "id": 785 + "image_path": "G:\\images\\combined\\005438_jpg.rf.2012689ebd602b4adc60603afb563cdc.jpg", + "response": "The image shows a group of technicians working on a power line in a small village. There are five technicians in the picture, four of them are wearing yellow hard hats and white T-shirts, and the fifth one is wearing a blue T-shirt. They are standing in a line on the right side of the image, with one technician in the middle holding a tool. In the background, there is a tall house with a grey roof and walls, and a few other technicians are working on the power line in front of the house. The sky is blue, and the ground is covered with green grass and red bricks.", + "id": 31395 }, { - "image_path": "G:\\images\\combined\\002690_jpg.rf.f68ecbbc41297a7403a308421b6a108f.jpg", - "response": "A worker(251,137),(838,996) points to something in the distance", - "id": 786 + "image_path": "G:\\images\\combined\\005438_jpg.rf.a43a70cb45ad640acc833bd561d9f235.jpg", + "response": "A few men in blue jumpsuits and yellow hard hats are working on a power line on the side of a road. There is a house in the background.", + "id": 31396 }, { - "image_path": "G:\\images\\combined\\002693_jpg.rf.4292cc19ff5f114781e464d208536177.jpg", - "response": "A couple of people on bikes on a road.", - "id": 787 + "image_path": "G:\\images\\combined\\005439_jpg.rf.184bb558a77ed9452b7916d425dbed34.jpg", + "response": "A group of workers in red uniforms and yellow helmets are working on a power tower and a transformer. The sky is covered with white clouds.", + "id": 31397 }, { - "image_path": "G:\\images\\combined\\002694_jpg.rf.1c3a44dd98b02f2165ad549acc6804d1.jpg", - "response": "A man in a blue hard hat and work clothes is working on a large wooden wheel. He is pulling on a chain that is attached to a large wooden spool. The man has a beard and is wearing work gloves.", - "id": 788 + "image_path": "G:\\images\\combined\\005439_jpg.rf.1d4c0c25d467c0d62d55d78183c24279.jpg", + "response": "A group of workers in red uniforms and yellow helmets are working on a power pole. They are installing equipment on the transformer.", + "id": 31398 }, { - "image_path": "G:\\images\\combined\\002695_jpg.rf.5dbcf625c0df17e60862ac3941c07a0d.jpg", - "response": "A man in an orange hard hat and orange coveralls is working on a red valve on a ship.", - "id": 789 + "image_path": "G:\\images\\combined\\00543_jpg.rf.3346a3821f7b61542a0ea50856b9b143.jpg", + "response": "Two business men in suits looking at a blueprint of a construction site.", + "id": 31399 }, { - "image_path": "G:\\images\\combined\\002696_jpg.rf.97b8ac75cb3769bd883c7aac55b971dd.jpg", - "response": "A construction worker in a white hard hat is sitting on scaffolding. He is wearing brown work clothes and has a white beard. The sky is blue with a few clouds.", - "id": 790 + "image_path": "G:\\images\\combined\\00543_jpg.rf.4477718389bb08cab03046ac81019bdf.jpg", + "response": "Two business men in suits looking at a blueprint of a construction site.", + "id": 31400 }, { - "image_path": "G:\\images\\combined\\002698_jpg.rf.2485c1ffae3e30b2839f3e9d1f38b512.jpg", - "response": "A group of men wearing blue hats and carrying a rope.", - "id": 791 + "image_path": "G:\\images\\combined\\005440_jpg.rf.36e216fac2682ef7885c0c964f0f7240.jpg", + "response": "A man in a suit and a red hard hat is walking with a group of people. They are all wearing hard hats. The man in front is also wearing a black suit. To the left of the group is a red and white sign. Behind the group is a building under construction. There is also a tree to the left of the group.", + "id": 31401 }, { - "image_path": "G:\\images\\combined\\002699_jpg.rf.98bf6384955ba26837c3994d552880c9.jpg", - "response": "A group of men wearing yellow vests and hard hats are looking at blueprints in a construction site.", - "id": 792 + "image_path": "G:\\images\\combined\\005440_jpg.rf.b7000595508c88f31397a8a2a9d37570.jpg", + "response": "A group of people walking down a street.", + "id": 31402 }, { - "image_path": "G:\\images\\combined\\0026f46000c19b0a.jpg", - "response": "A book with the title The Trouble with Tribbles signed by David Gerrold and dedicated to his friend Bill.", - "id": 793 + "image_path": "G:\\images\\combined\\005441_jpg.rf.c1bc2837fc2ad7176a434b7b6294fe51.jpg", + "response": "The image shows a construction site in a city. A red and white crane is operating in the background, and two workers are pouring concrete on the ground. The workers are wearing yellow helmets, and one of them is holding a hose. In the foreground, there is a large mass of red rebar mesh, and the workers are standing on it. The sky is overcast, and there are a few buildings in the vicinity, including one on the far left and another on the far right.", + "id": 31403 }, { - "image_path": "G:\\images\\combined\\002700_jpg.rf.446dd8a6e6355812a43cad6fff96273a.jpg", - "response": "A group of men in uniforms carrying a man on a stretcher.", - "id": 794 + "image_path": "G:\\images\\combined\\005441_jpg.rf.c37ded12f012eab4816bacebe2c7b5c9.jpg", + "response": "A construction site with a crane and workers.", + "id": 31404 }, { - "image_path": "G:\\images\\combined\\002701_jpg.rf.8aea00afba2171480fcdaf4ad360680e.jpg", - "response": "a group of men standing in a field", - "id": 795 + "image_path": "G:\\images\\combined\\005442_jpg.rf.669e8059f855b0f6e9b9526afe6aaefa.jpg", + "response": "A group of people in red and grey hard hats are gathered in a large hole in the ground. The people are wearing a variety of different colored hard hats, with some wearing red, some wearing grey, and one person wearing yellow. They are standing in ankle-deep mud and water.", + "id": 31405 }, { - "image_path": "G:\\images\\combined\\002702_jpg.rf.f2e735a1575c60bc56157e17284da1c5.jpg", - "response": "a group of people standing in a room with a brick wall and white ceiling", - "id": 796 + "image_path": "G:\\images\\combined\\005442_jpg.rf.a713136990a33365665911426887c31f.jpg", + "response": "A group of people in red and grey clothes and yellow helmets are standing in a pit in the ground. The pit is filled with water and mud and there are rocks and boulders around. Some people are holding tools.", + "id": 31406 }, { - "image_path": "G:\\images\\combined\\002704_jpg.rf.f66ee64779ea0aa1c7ae6442bfbc454e.jpg", - "response": "A worker wearing a white shirt and blue pants is operating a machine in a factory. The worker is wearing a white shirt and blue pants. The background is black.", - "id": 797 + "image_path": "G:\\images\\combined\\005443_jpg.rf.d146ff235f39f3ad6383624da367abcf.jpg", + "response": "A construction worker with a big smile on his face.", + "id": 31407 }, { - "image_path": "G:\\images\\combined\\002706_jpg.rf.599ccaee75203efce1b02ac82c77d24a.jpg", - "response": "a man standing in a field", - "id": 798 + "image_path": "G:\\images\\combined\\005443_jpg.rf.fb3b5212b89584861580ce02a6f2450f.jpg", + "response": "A construction worker with a yellow hard hat and orange jacket.", + "id": 31408 }, { - "image_path": "G:\\images\\combined\\002707_jpg.rf.1e7bbbb5a12c22a41a881b6e487492bc.jpg", - "response": "A group of people standing next to a guardrail that has been damaged.", - "id": 799 + "image_path": "G:\\images\\combined\\005444_jpg.rf.7cc394b2b3c91b27e59eabfb6bfb5d4d.jpg", + "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform and appear to be focused on their tasks. In the background, there is a truck and another piece of machinery. The sky is dark and there are a few stars visible.", + "id": 31409 }, { - "image_path": "G:\\images\\combined\\002708_jpg.rf.86cc7c55ebf8696b286b049dcb9d47fe.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 800 + "image_path": "G:\\images\\combined\\005444_jpg.rf.ce22776effddce6fe2a9c006cfc0959a.jpg", + "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform above the ground, and there is a large drill bit attached to a piece of machinery. The workers are wearing orange safety gear, including hard hats and safety boots. There is a large storage tank visible in the background. The image is taken at a distance and the workers are small in relation to the large machinery.", + "id": 31410 }, { - "image_path": "G:\\images\\combined\\002709_jpg.rf.6be1b4fae4f4c2d324a2b00a24082c25.jpg", - "response": "a group of people wearing hard hats(859,222),(925,285)(109,296),(181,369)(376,526),(435,588)(588,233),(675,319)(367,327),(429,388)(298,334),(369,402)", - "id": 801 + "image_path": "G:\\images\\combined\\005445_jpg.rf.6ad2883451b523ea87155d686df53943.jpg", + "response": "a group of people standing in a construction site", + "id": 31411 }, { - "image_path": "G:\\images\\combined\\00270_jpg.rf.8c8f0dd3c0c4dc3439ab3617a2ce72c6.jpg", - "response": "A row of four children all wearing yellow hard hats and white gloves.", - "id": 802 + "image_path": "G:\\images\\combined\\005445_jpg.rf.f216afc93c49631004a29b3432bc3e4c.jpg", + "response": "a group of people standing in front of a large construction site", + "id": 31412 }, { - "image_path": "G:\\images\\combined\\00270_jpg.rf.ba11bcc231ad430af73d6c6f759ab597.jpg", - "response": "A row of four children all wearing yellow hard hats and white gloves.", - "id": 803 + "image_path": "G:\\images\\combined\\005446_jpg.rf.ab2363a04a14adc1f446098ad56d7742.jpg", + "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the power box. The man on the right is also looking at the power box. There is a crowd of people in the background.", + "id": 31413 }, { - "image_path": "G:\\images\\combined\\002710_jpg.rf.9897e45cd118d821fd29247cd1c8a79a.jpg", - "response": "A group of three men standing in front of a building under construction. They are all wearing yellow hard hats. The man on the left is wearing a white shirt and has a mustache. The man in the middle has a yellow hard hat and is wearing a blue shirt. The man on the right is wearing a white shirt and has a goatee. He is also wearing work gloves. They are all smiling at the camera.", - "id": 804 + "image_path": "G:\\images\\combined\\005446_jpg.rf.d2edcf998e2b4dffda505d4b4a3d2b74.jpg", + "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the box. The man on the right is also looking at the box. There is a crowd of people in the background. The power box says MNS on it.", + "id": 31414 }, { - "image_path": "G:\\images\\combined\\002712_jpg.rf.30898b4ae735460487744e51575b4291.jpg", - "response": " Two workers(376,292),(593,935)(649,108),(835,528) in a construction site", - "id": 805 + "image_path": "G:\\images\\combined\\005447_jpg.rf.e14102efda2bf83fdfa9263c9cdaf066.jpg", + "response": "A construction crew working on a large construction site.", + "id": 31415 }, { - "image_path": "G:\\images\\combined\\002713_jpg.rf.44254c58a6e7ace147ccdf72f2dda5c6.jpg", - "response": "A group of men working on a road.", - "id": 806 + "image_path": "G:\\images\\combined\\005447_jpg.rf.e9d932b77cc3a1a698d78b50826dc94c.jpg", + "response": "A construction crew is working on a construction site. There is a man operating a large piece of machinery, and three other men standing near the machinery. One of the men is holding a large ruler. There is a shovel on the ground near the men.", + "id": 31416 }, { - "image_path": "G:\\images\\combined\\002714_jpg.rf.82f3653f4260fcc762f43c07201fa2f8.jpg", - "response": "A worker is seen on a power tower in this undated photo. The photo(11,7),(989,994) shows a worker in a white uniform and blue helmet working on a power tower. The sky is a clear blue and the worker is seen from the waist up.", - "id": 807 + "image_path": "G:\\images\\combined\\005448_jpg.rf.acd1619e0925a5336cac854549ca2f8a.jpg", + "response": "A group of men in camouflage uniforms and hard hats are working on a construction site. They are climbing down a steep set of stairs and one man is holding a large metal bar. The men are also wearing gloves and some have backpacks.", + "id": 31417 }, { - "image_path": "G:\\images\\combined\\002716_jpg.rf.d6b76e7ed10b2fe41d02cd0e4fc29f59.jpg", - "response": "A man wearing a red hard hat and a green camouflage jacket sits on a curb and uses a grinding wheel to cut something. There are sparks flying from the wheel.", - "id": 808 + "image_path": "G:\\images\\combined\\005449_jpg.rf.6604212736c75e7eb57e39909bbffdb9.jpg", + "response": "The image shows a worker in a yellow and white jacket and blue hard hat welding two metal pipes together with a torch. The worker is on a concrete floor and there is a bucket to the right of the pipe on the left. There are also sparks flying from the welding.", + "id": 31418 }, { - "image_path": "G:\\images\\combined\\002717_jpg.rf.2478028c607bd2d91dd716faa095a19f.jpg", - "response": "A man and a woman wearing white hard hats are looking at blueprints. The woman is wearing a navy shirt and khaki pants. The man is wearing a brown shirt and an orange safety vest. They are standing in a room that is under construction. There are wood beams on the wall and a ladder leaning against the wall.", - "id": 809 + "image_path": "G:\\images\\combined\\005449_jpg.rf.c3c0f1c26ce6dbf3f5b55f9ff9bbd96b.jpg", + "response": "In the image, a worker is welding steel in an industrial setting. They are wearing a yellow and white jacket, a blue hard hat, and grey pants. They are focused on their work, which involves using a yellow tool with sparks flying. The background is a bit blurry, but there is a wooden pole on the left and a black container on the right.", + "id": 31419 }, { - "image_path": "G:\\images\\combined\\002719_jpg.rf.11a921e2fa0a61b6fce3fc766dace72d.jpg", - "response": "a man sitting in a chair inside of a plane", - "id": 810 + "image_path": "G:\\images\\combined\\005450_jpg.rf.039dda471357548a38c52a7b2282de05.jpg", + "response": "The photo shows men in suits standing in front of a white and red building. There is a red banner on the right with white characters.", + "id": 31420 }, { - "image_path": "G:\\images\\combined\\002720_jpg.rf.af630caec2cb8e80e2d0a3a91bed0472.jpg", - "response": "A worker in a yellow hard hat is using a long red tool to work on a power line. The power line is attached to a wooden pole. The sky is grey and snowy.", - "id": 811 + "image_path": "G:\\images\\combined\\005450_jpg.rf.c8547097f7bb5e7197470fd366f4083b.jpg", + "response": "A group of men in suits standing in front of a white building.", + "id": 31421 }, { - "image_path": "G:\\images\\combined\\002721_jpg.rf.0a001f2789a506576c13ef21f39bffed.jpg", - "response": "The image shows a group of rescue workers in a construction site that has collapsed. The workers are wearing helmets and uniforms. Some of them are standing, while others are crouching or bending over. They are holding tools such as shovels and axes. In the background, there are scaffolding and debris. The workers are focused on their task, and some of them are talking to each other. The scene is quite chaotic, with the workers scattered around the site.", - "id": 812 + "image_path": "G:\\images\\combined\\005451_jpg.rf.14b7e759f76ff92a165efd0c31e2e073.jpg", + "response": "The photo shows a group of people wearing black, yellow and orange helmets. They are dressed in clothes and some of them are wearing gloves. In their hands, they are holding a newspaper, a card and a magazine. The background shows a power pole and a road.", + "id": 31422 }, { - "image_path": "G:\\images\\combined\\002722_jpg.rf.8a9342afa86075418c4614f70655efec.jpg", - "response": "The image shows two construction workers at a building site. They are wearing hard hats and working clothes. One worker is carrying a large white bag filled with concrete, while the other worker is using a mobile phone. They are standing on a pile of grey rubble in the foreground. In the background, there is a large building under construction. There are several steel beams and rebar visible. The sky is grey and overcast.", - "id": 813 + "image_path": "G:\\images\\combined\\005451_jpg.rf.cf19151ea18e4e8a2737cad8510958df.jpg", + "response": "A group of people standing around each other.", + "id": 31423 }, { - "image_path": "G:\\images\\combined\\002723_jpg.rf.54642b5008fb9d59e51cf78db6ef6071.jpg", - "response": "In the image there is a group of people wearing hard hats and coveralls inside a factory. They are working on a project that involves cutting metal with a welding torch. There are sparks flying all around and some people are kneeling on the ground. There are also some people in the background, some of them are holding tools.", - "id": 814 + "image_path": "G:\\images\\combined\\005452_jpg.rf.549d572aa245e1048fcb301332964873.jpg", + "response": "In the picture there are workers in a tunnel. Some writing on the wall is not clear, but there seems to be a signature on the right. The ground is covered with coal\u6e23, and some large steel pipes are placed on the right side of the picture. Some workers in yellow and orange protective clothing are standing or crouching in the tunnel, watching something.", + "id": 31424 }, { - "image_path": "G:\\images\\combined\\002724_jpg.rf.f70998bf20bcef8c5bc846b212e35af5.jpg", - "response": "A construction site with three men working on a building.", - "id": 815 + "image_path": "G:\\images\\combined\\005452_jpg.rf.c26a89355ac0a6e5aabf73b32342fe8f.jpg", + "response": "The image shows a group of workers in a tunnel. They are wearing yellow, orange, and gray vests and hard hats of various colors. Some workers are standing in the foreground, while others are in the background. The tunnel has a white ceiling and walls that are a mix of white and gray. There is a large piece of equipment in the middle of the floor, and several long pipes are laid out next to it. The floor is covered in small rocks and debris. The image is taken in a construction site.", + "id": 31425 }, { - "image_path": "G:\\images\\combined\\002727_jpg.rf.5a18d2487050c088097da9948572f457.jpg", - "response": "A group of people working on a construction site.", - "id": 816 + "image_path": "G:\\images\\combined\\005453_jpg.rf.9aa928af9b6711ce76a66bf401c84e2d.jpg", + "response": "In the image there is a person wearing a yellow hard hat and a black shirt. They are holding a metal rod with a purple torch on the end of it. The person is also standing next to a large metal girder. In the background there is a large factory with yellow and blue machinery.", + "id": 31426 }, { - "image_path": "G:\\images\\combined\\002729_jpg.rf.e6aa4eb86066ebad6b83d6c964812495.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 817 + "image_path": "G:\\images\\combined\\005454_jpg.rf.90c55d93e1eac8819eeaee8a1b58ccbc.jpg", + "response": "A group of men standing around each other.", + "id": 31427 }, { - "image_path": "G:\\images\\combined\\002730_jpg.rf.614a6a95028c52a19df1fd99a7dac0ea.jpg", - "response": "A man in a hard hat sits at a desk in front of a wall of clocks and control panels.", - "id": 818 + "image_path": "G:\\images\\combined\\005454_jpg.rf.f2759c5b1c2afe2d638ce673d86ae5f9.jpg", + "response": "A group of men standing around each other", + "id": 31428 }, { - "image_path": "G:\\images\\combined\\002731_jpg.rf.c3254eda3fd8feffca25c9b0627e89d0.jpg", - "response": "A group of men standing next to a brick wall.", - "id": 819 + "image_path": "G:\\images\\combined\\005455_jpg.rf.289046515cf9f6a2b19efcb53f1010f2.jpg", + "response": "A group of people working on a construction site.", + "id": 31429 }, { - "image_path": "G:\\images\\combined\\002732_jpg.rf.534520b0f11abd55d824233324f536eb.jpg", - "response": "A worker is seen here putting finishing touches to the ceiling of the train tunnel. The worker is wearing a yellow shirt, a white hard hat, and a gas mask. He is kneeling on a metal platform and is holding a tool in his hands. The tunnel is grey and the worker is the only person in the image.", - "id": 820 + "image_path": "G:\\images\\combined\\005455_jpg.rf.2ee46feea7d17f58b9ade2d97414c20d.jpg", + "response": "In the image, there are several people working in a construction site. They are wearing uniforms and helmets. Some of them are welding steel bars, while others are doing other tasks. In the background, there is a large banner with Chinese characters written on it.", + "id": 31430 }, { - "image_path": "G:\\images\\combined\\002733_jpg.rf.e38597d85474dcfb514fd709ff8acc7d.jpg", - "response": "In the image, a factory worker is seen in a hard hat and work clothes, working with a large spool of wire. The worker is bending over and appears to be focused on the task at hand. The background is a bit blurry, but there are a few other spools of wire visible in the scene.", - "id": 821 + "image_path": "G:\\images\\combined\\005456_jpg.rf.1c54bf80d90c94709ea5c0122f3892ef.jpg", + "response": "A group of men standing next to each other.", + "id": 31431 }, { - "image_path": "G:\\images\\combined\\002734_jpg.rf.92196ad40b627eb69ec7353985813739.jpg", - "response": "A man wearing a hard hat and work clothes is welding on the side of a blue boat. He is standing on the boat and is focused on his work. There are several other boats visible in the background, docked at a pier.", - "id": 822 + "image_path": "G:\\images\\combined\\005457_jpg.rf.bca13d6b988714fd15bf7ca41290a73a.jpg", + "response": "a group of people standing around each other", + "id": 31432 }, { - "image_path": "G:\\images\\combined\\002735_jpg.rf.ba45c66eaf42af657ebc044db04634d0.jpg", - "response": "In the image there are two construction workers, one is on the left and the other is on the right. They are both wearing hard hats and one of them is also wearing an orange safety jacket. They are working on a construction site that has a large pile of grey rocks and some of the rocks have metal bars sticking out of them. In front of the workers there is a large pile of grey rocks and on top of the rocks there is a metal framework that looks like a tree.", - "id": 823 + "image_path": "G:\\images\\combined\\005457_jpg.rf.f13c6a06399d44b9a24f5cf8503b01d9.jpg", + "response": "a group of men standing around talking to each other", + "id": 31433 }, { - "image_path": "G:\\images\\combined\\002736_jpg.rf.3e8d7dace284181c83fedc023cacaacf.jpg", - "response": "A group of four workers are working on a construction site. They are all wearing hard hats and are focused on their tasks. One worker is standing and holding a large metal pipe while another worker is squatting down and welding two pieces of metal together. The third worker is also squatting down and holding a large metal pipe. The fourth worker is crouching down at the far right of the image. The entire group of workers are wearing grey uniforms.", - "id": 824 + "image_path": "G:\\images\\combined\\005458_jpg.rf.a919b51362776eaeb310eef7f962d990.jpg", + "response": "A group of men are working on fixing a power line that is covered in ice. They are standing on a snowy hillside and are dressed in black. One man is wearing a red hard hat. Another man is using a tool to help remove the ice from the power line. There is a pile of snow and ice to the left of the men. In the background, there are trees covered in ice.", + "id": 31434 }, { - "image_path": "G:\\images\\combined\\002737_jpg.rf.29c9b8196f087b5dc9a4d6606c444b67.jpg", - "response": "A group of men working on a power line in the snow.", - "id": 825 + "image_path": "G:\\images\\combined\\005458_jpg.rf.b86703b6ed51d39bca57092094f866f7.jpg", + "response": "A group of men are working on fixing a power line that is leaning over. They are standing on a snowy hillside and there is a large tree covered in ice nearby.", + "id": 31435 }, { - "image_path": "G:\\images\\combined\\002738_jpg.rf.614faac8b5ef9324d71857048be31642.jpg", - "response": "A man in a red hard hat is looking at a machine.", - "id": 826 + "image_path": "G:\\images\\combined\\005459_jpg.rf.506d414be02cf4b00d50c18cddcaccc3.jpg", + "response": "In the image there are five men(107,618),(469,988)(409,537),(538,928)(608,567),(996,997)(459,552),(686,938) working on a snowy mountain side. They are wearing hard hats(437,535),(515,582)(797,566),(978,687)(293,618),(408,695) and orange jumpsuits(410,589),(537,919)(696,670),(996,941)(461,601),(684,927). They are standing on a rocky cliff and appear to be working on a large metal structure.", + "id": 31436 }, { - "image_path": "G:\\images\\combined\\002739_jpg.rf.cdc631cc20e3a4ed1ebcc9b761edd081.jpg", - "response": "A gas company worker in a blue uniform and hard hat kneeling down next to a gas meter. He is connecting a device to the meter.", - "id": 827 + "image_path": "G:\\images\\combined\\005459_jpg.rf.6b18961fb36ae776d6000b614d5e26ab.jpg", + "response": "A group of people working on a power line in the snow.", + "id": 31437 }, { - "image_path": "G:\\images\\combined\\002741_jpg.rf.f0e54cc3edae31cbecb796e222c55337.jpg", - "response": "A construction site with three workers visible. They are working on a large structure made of metal. One of the workers is holding a large metal funnel. There are buildings in the background.", - "id": 828 + "image_path": "G:\\images\\combined\\00545ded62f5d8e0.jpg", + "response": "A street sign that says \"Ministry of Birthdays\" on it with an arrow pointing up.", + "id": 31438 }, { - "image_path": "G:\\images\\combined\\002742_jpg.rf.6c48dcf3fd93631bad399394613aecb3.jpg", - "response": " Two engineers(42,229),(378,997)(379,212),(732,997) looking at a blueprint(307,549),(456,723) in a tunnel", - "id": 829 - }, - { - "image_path": "G:\\images\\combined\\002743_jpg.rf.470d5d46ff98d1e5d4a0e2a40fa1c572.jpg", - "response": "A worker in a yellow hard hat is working on some steel.", - "id": 830 + "image_path": "G:\\images\\combined\\00545_jpg.rf.25a3f0d888c2494b178109029a378a20.jpg", + "response": "A construction worker crouches down and uses a tool to make adjustments to a metal beam. The metal is painted silver and the worker is wearing a grey shirt, dark grey pants, a blue hat, and brown shoes. He is working on a construction site that has large pieces of concrete.", + "id": 31439 }, { - "image_path": "G:\\images\\combined\\002744_jpg.rf.afe0c141c540520fbfcd815623f41e00.jpg", - "response": "Men(619,442),(829,997)(68,485),(464,997)(699,498),(995,997) standing in a kitchen under construction", - "id": 831 + "image_path": "G:\\images\\combined\\005460_jpg.rf.364f17513aa24fbd573f92628992dc69.jpg", + "response": "In the image there are three people, two of them are wearing yellow and white safety vests and yellow and white hard hats. They are standing on a construction site which has scaffolding and lumber stacked around. They are looking at blueprints which are placed on a wooden table.", + "id": 31440 }, { - "image_path": "G:\\images\\combined\\002745_jpg.rf.e3c5c1fa0a1ad7a9776eba977bf666a6.jpg", - "response": "The men are walking through the unfinished building.", - "id": 832 + "image_path": "G:\\images\\combined\\005460_jpg.rf.c192e4210b0271c87b0c88ad0c170c42.jpg", + "response": "In the image there are three people, all of them are wearing yellow vests and helmets. They are on a construction site, two of them are looking at a blueprint that is placed on a wooden table. The table is located in the foreground, left of the people. The people are standing on a platform that is made of wood, it is located in the background, center of the image. There are several wooden planks around the platform, some of them are cut in size. In the background, there are scaffolding and a wooden structure.", + "id": 31441 }, { - "image_path": "G:\\images\\combined\\002747_jpg.rf.88723b6e0328936670254c135846eaa6.jpg", - "response": " Five men(259,99),(449,436)(618,140),(910,780)(464,152),(631,466)(622,141),(995,997)(3,98),(314,833) sitting around a table(218,419),(602,723)", - "id": 833 + "image_path": "G:\\images\\combined\\005461_jpg.rf.579e36a711b457b3d078d56a28567025.jpg", + "response": " A man(392,109),(804,996) wearing a yellow hard hat(495,109),(670,273) and blue shirt(505,388),(805,997) with yellow writing(532,494),(629,629) on it is carrying a long rod(273,449),(566,567) over his shoulder while standing in a cave.", + "id": 31442 }, { - "image_path": "G:\\images\\combined\\002748_jpg.rf.8d00e863b7df2f0527cab4b14194c19b.jpg", - "response": "A group of three men in red hard hats and coveralls are working on a red metal frame with metal pipes and red tarps around it. They are holding and operating various equipment.", - "id": 834 + "image_path": "G:\\images\\combined\\005461_jpg.rf.b2019668a08ab2890d2d5b26c86866ff.jpg", + "response": "A man wearing a yellow hard hat and work clothes, carrying a long rod over his shoulder. He is standing in a large tunnel with a shovel leaning against the wall behind him.", + "id": 31443 }, { - "image_path": "G:\\images\\combined\\00274_jpg.rf.2479c797a712e3a695d0fad8d9b15820.jpg", - "response": "In the image there are two construction workers wearing yellow vests and hard hats. They are standing in a construction site that has a large building under construction. The building has a concrete framework and rebar visible in the foreground. There is a large tower block visible in the background on the left hand side. The sky is blue and there are no clouds in the sky.", - "id": 835 + "image_path": "G:\\images\\combined\\005462_jpg.rf.63b248d6dbe9c84f2a9175dc6c4001d3.jpg", + "response": "The image shows three people standing next to a dark SUV with an open trunk. The people are loading bags, specifically red ones, into the trunk. There are two bags visible, one on the left and one on the right, and another bag in the trunk in the middle. The people are all wearing winter coats, with one person on the left wearing a dark gray one, the person in the middle wearing a dark brown one, and the person on the right wearing a light blue one. The person on the left is also wearing glasses. The background includes a building with a red and white facade, and a white rectangular structure with a row of four white squares on it.", + "id": 31444 }, { - "image_path": "G:\\images\\combined\\002750_jpg.rf.d6710f5ae26606ccac3ee8d5b215ce64.jpg", - "response": "In the image two men are seen holding a drone i.e. a quadcopter between them. Both the men are dressed in green and brown color uniforms. One of the men is seen wearing a brown color helmet. Both the men are seen holding the drone in front of an electricity tower which is seen in the background. The electricity tower is grey in color and is surrounded by green trees in the background. The trees are of different sizes and are green in color. The sky is blue in color and it appears to be a bright sunny day.", - "id": 836 + "image_path": "G:\\images\\combined\\005462_jpg.rf.e33fc4dd0c555697ed68e4f8722975d3.jpg", + "response": "The image shows three people standing next to a dark SUV with its hatchback open. The person on the left, who is wearing a brown jacket and glasses, is handing an orange bag to the person in the middle, who is wearing a dark grey jacket. The person in the middle is in turn handing an orange bag to the person on the right, who is wearing a light blue jacket. The person on the right is also holding an orange bag. The three people are standing quite close to one another, with the person on the left being on the left side of the car and the person on the right being on the right side of the car. The person in the middle is standing between the two other people.", + "id": 31445 }, { - "image_path": "G:\\images\\combined\\002751_jpg.rf.74b99fbfd07bc388600aee232370740f.jpg", - "response": "A group of three men wearing hard hats are walking through a construction site. They are wearing yellow pants and jackets.", - "id": 837 + "image_path": "G:\\images\\combined\\005463_jpg.rf.ac05402581957d7f85676195cc02ddcb.jpg", + "response": "A large pipe is being worked on by several men. The pipe is brown and is in the ground, with a large section of it dug out and being worked on by men wearing hard hats. There is a yellow and gray bulldozer next to the pipe, and a man in a black jacket is watching the work. The background is filled with dirt and rocks.", + "id": 31446 }, { - "image_path": "G:\\images\\combined\\002752_jpg.rf.b25842e4ffeb9a44a89faa18591a4e87.jpg", - "response": "A group of people standing around pointing at things.", - "id": 838 + "image_path": "G:\\images\\combined\\005463_jpg.rf.e29ebad6f6b497f5924abc4db9158f80.jpg", + "response": "A large pipe is being worked on by several men. The pipe is located in a large pit in the ground and is surrounded by construction equipment. Some men are standing on the pipe itself, while others are standing around the pit.", + "id": 31447 }, { - "image_path": "G:\\images\\combined\\002753_jpg.rf.08440158dbf3fb050ecc9ef6f2e351cf.jpg", - "response": "A worker in a red uniform and yellow hard hat is standing in front of a tunnel. They are holding a yellow hard hat and giving a thumbs up. In front of them is a large tunneling machine with a big drill on the front. To the right of the tunnel is a building.", - "id": 839 + "image_path": "G:\\images\\combined\\005464_jpg.rf.d3fb1b8851c85730c631c85840d662a7.jpg", + "response": "An image of a construction site with two workers in yellow hats. There is a pile of sand in the middle of the site and a pile of gravel on the right side. There are hoses on the ground and a few wooden boards.", + "id": 31448 }, { - "image_path": "G:\\images\\combined\\002754_jpg.rf.c8c8390ccc0898de35945f3eac53fd44.jpg", - "response": "A worker in a white mask and blue hard hat(323,107),(458,316) is kneeling down in a dark room. They are scooping a white powder out of a bag with a metal scoop and transferring it to another bag. There is a white bag and a black bag on the floor next to them. In the background, there is a wooden platform and a concrete wall.", - "id": 840 + "image_path": "G:\\images\\combined\\005465_jpg.rf.09f3b242ea4bb1f02859b4d3eda721d8.jpg", + "response": "A worker(0,442),(487,999) is fixing a pipe", + "id": 31449 }, { - "image_path": "G:\\images\\combined\\002755_jpg.rf.2a19b15554521d89b8c48b2725d19759.jpg", - "response": "The image shows two men wearing blue helmets and yellow reflective vests, discussing blueprints at a construction site. The men are standing near a table with the blueprints on it, and there is a brick building under construction in the background. The men are wearing blue helmets and yellow reflective vests.", - "id": 841 + "image_path": "G:\\images\\combined\\005466_jpg.rf.4f4842e15be4a7d05852271ef3d1e784.jpg", + "response": "The image shows three men in yellow hard hats and orange work vests, standing in front of a yellow piece of heavy machinery. The men are all wearing similar clothing, with their hair cut short. The middle man has a faint mustache and is looking straight ahead. The man on the left is smiling slightly and has a small amount of hair on his forehead. The man on the right has a double chin and his hair is sticking up.", + "id": 31450 }, { - "image_path": "G:\\images\\combined\\002756_jpg.rf.7e21dd597e77e411ed5da3b5cef52ff3.jpg", - "response": "An electrician repairs power lines from a boom lift.", - "id": 842 + "image_path": "G:\\images\\combined\\005467_jpg.rf.3df6f13e41e3918b9a553dab593a9a1f.jpg", + "response": "Men(478,517),(696,997)(169,426),(414,997) in front of a building", + "id": 31451 }, { - "image_path": "G:\\images\\combined\\002757_jpg.rf.4e0b7e6723f019939e1cc002477bf47d.jpg", - "response": "In the image, there are three people standing in a room with a sloping ceiling. Two of the people are male, one on the left is wearing a white helmet and an orange vest, while the one in the middle is wearing a dark shirt. The other person is a female, she is wearing a light blue top and a dark jacket. They are looking at a plan in the hands of the person on the left.", - "id": 843 + "image_path": "G:\\images\\combined\\005467_jpg.rf.8cf6246344f473d62b0c2daec1ee0087.jpg", + "response": "Men(478,516),(698,997)(169,425),(414,997) in front of a building", + "id": 31452 }, { - "image_path": "G:\\images\\combined\\002758_jpg.rf.3dc242712400fe8047058f71d1150da0.jpg", - "response": "A group of workers in white coveralls and yellow hard hats are working on a construction site in the mud. They are standing on wooden beams and ladders, and there is a large black box on a wooden structure behind them. There is also a pile of wooden planks on the ground. The workers are wearing clear safety glasses and the sky is blue.", - "id": 844 + "image_path": "G:\\images\\combined\\005468_jpg.rf.02d77db2759a78afad73655aaeafb7ad.jpg", + "response": "An older man wearing a grey shirt and a orange hard hat.", + "id": 31453 }, { - "image_path": "G:\\images\\combined\\002759_jpg.rf.26612aaaff02c0f32e65f0780aac3ab3.jpg", - "response": " Workers(601,638),(934,909)(19,719),(421,997)(788,284),(850,412) are seen in a tunnel", - "id": 845 + "image_path": "G:\\images\\combined\\005468_jpg.rf.693b7ed32e953a7fbbe02a2760ecf6ea.jpg", + "response": "An older man wearing a grey work shirt and a orange hard hat is sitting on a concrete form with a trowel in his hand.", + "id": 31454 }, { - "image_path": "G:\\images\\combined\\002760_jpg.rf.dcc563945f5a61b2a43c40e644cde9d0.jpg", - "response": "Three men in high visibility vests and hard hats looking at a building plan on a construction site.", - "id": 846 + "image_path": "G:\\images\\combined\\005469_jpg.rf.19263bbc983120caa2973bb341a4d2ee.jpg", + "response": "An electrician is standing on a ladder next to a large transformer. He is wearing a gray shirt, a blue hat, and a tool belt around his waist. He is holding a red tool in his hand. The sky above him is overcast.", + "id": 31455 }, { - "image_path": "G:\\images\\combined\\002761_jpg.rf.66fe8332433d402bdfea31f8531ad8e8.jpg", - "response": "a group of people standing in the snow holding umbrellas", - "id": 847 + "image_path": "G:\\images\\combined\\005469_jpg.rf.d2ceb255c93d7534033a9fa62585910a.jpg", + "response": "An electrician is on a ladder working on an electrical box.", + "id": 31456 }, { - "image_path": "G:\\images\\combined\\002762_jpg.rf.eacf2c6db89be8acc9472c3c891a9a23.jpg", - "response": "A group of workers in blue uniforms and white helmets are working in a hole in the ground. They are holding a black hose and there is a concrete slab over the hole. The workers are wearing white gloves and the ground is wet around the hole.", - "id": 848 + "image_path": "G:\\images\\combined\\00546_jpg.rf.cf45c094fb087ce80d7c5db82923bc0b.jpg", + "response": "A group of men in hard hats and work clothes are standing in a large room. Some men are wearing orange and blue work clothes, while others are wearing navy blue work clothes. They are standing in front of a large concrete wall and a metal beam. There is a large metal pipe on the left side of the room and a door on the right side. There is also a large screen on the wall behind the men.", + "id": 31457 }, { - "image_path": "G:\\images\\combined\\002763_jpg.rf.c16e435a23120f86baa320bf830f1d82.jpg", - "response": "The image features two men dressed in business suits and wearing hard hats. They are standing on a construction site, and one man is pointing towards something in the distance. The man holding the plans is looking at the plans while the other man looks in the direction the first man is pointing. They both appear to be discussing the plans or the construction site.", - "id": 849 + "image_path": "G:\\images\\combined\\005470_jpg.rf.5561cb7e1cbef3146c1daf68c4ce125a.jpg", + "response": "two construction engineers observing a construction site with cranes in the background", + "id": 31458 }, { - "image_path": "G:\\images\\combined\\002764_jpg.rf.7bd21f63dc92a508d17d91eb7488ec5e.jpg", - "response": "A worker is working on a construction site.", - "id": 850 + "image_path": "G:\\images\\combined\\005470_jpg.rf.b89bf3e697d7f2e81f267e43b7d545e1.jpg", + "response": "In the image there are two men wearing orange safety helmets and one of them is wearing a high visibility vest. They are both standing in front of a construction site with three cranes working.", + "id": 31459 }, { - "image_path": "G:\\images\\combined\\002766_jpg.rf.ca2fdb415d12d9931d99b7e97f0c6850.jpg", - "response": "Rescuers are trying to save a worker who fell into a construction site well. The worker is in a blue construction uniform. There are several firemen and police officers trying to save the worker. There are two ladders placed against the walls of the construction site well.", - "id": 851 + "image_path": "G:\\images\\combined\\005471_jpg.rf.2a355fa3e89ca30faf6cbc9dbdb8c4c0.jpg", + "response": "A group of three men standing in a room that is under construction. They are all wearing hard hats and masks. The room has a wooden beam on the ceiling and walls that are being torn down. There are also two ladders in the room.", + "id": 31460 }, { - "image_path": "G:\\images\\combined\\002767_jpg.rf.43410b9a35b534774502a661e56c4146.jpg", - "response": "In the image, a group of people are seen holding a banner that says, \"\u5b89\u5168\u7b2c\u4e00\" (safety first). The photo appears to have been taken in front of a building with a sign that says \"\u5b89\u5168\u627f\u8bfa\u7b7e\u540d\u6d3b\u52a8\" (safety commitment signature activity). The people in the photo are wearing what appears to be construction gear, including hard hats and possibly safety vests. Some of them are also holding a large blue banner.", - "id": 852 + "image_path": "G:\\images\\combined\\005471_jpg.rf.cf1ce46d2ebaf9dfdae2791586ba1860.jpg", + "response": "A group of three men in hard hats and masks stand in a room with exposed brick walls and debris on the ground. The room has a wooden roof that has been partially removed. There are ladders on the left side of the room.", + "id": 31461 }, { - "image_path": "G:\\images\\combined\\002769_jpg.rf.36d0013395ba814a66b41747d1fab9eb.jpg", - "response": "A group of people standing in front of a blue banner.", - "id": 853 + "image_path": "G:\\images\\combined\\005472_jpg.rf.52b80aed4d419933c814a86d1a4b296d.jpg", + "response": "A group of men in suits standing around a table with a model city on it.", + "id": 31462 }, { - "image_path": "G:\\images\\combined\\00276_jpg.rf.7105b525928c0b38852dacb1d0593851.jpg", - "response": "A man standing next to a car filled with many construction hats.", - "id": 854 + "image_path": "G:\\images\\combined\\005473_jpg.rf.479354716aa3a983418ac23648e7fcac.jpg", + "response": "A construction worker in a yellow hard hat and orange uniform sits on the ground next to a pile of rebar. They are holding a large flat shovel and appear to be working on the rebar.", + "id": 31463 }, { - "image_path": "G:\\images\\combined\\00276_jpg.rf.b48b82fdc6ae18c7c409192c35ce40c5.jpg", - "response": "A man standing next to a car filled with many construction hats.", - "id": 855 + "image_path": "G:\\images\\combined\\005473_jpg.rf.76468b7a8922cd67142fc1dd0513462a.jpg", + "response": "A construction worker in a red uniform and yellow hard hat is kneeling down and holding a long wooden stick. They are in a construction area with a concrete floor and many metal bars. There is a bucket behind the worker and some writing on the floor.", + "id": 31464 }, { - "image_path": "G:\\images\\combined\\002770_jpg.rf.1abe10043fc255a41b4944007b2579ec.jpg", - "response": "A group of people working on a construction site.", - "id": 856 + "image_path": "G:\\images\\combined\\005474_jpg.rf.f5d94c4da0884a262cf0d64e9726d53d.jpg", + "response": "A man in a black jacket and a hard hat is hosing off the deck of a ship.", + "id": 31465 }, { - "image_path": "G:\\images\\combined\\002771_jpg.rf.423062bc6a27f1f412ae80a4c823c392.jpg", - "response": "A group of men standing next to a yellow truck.", - "id": 857 + "image_path": "G:\\images\\combined\\005475_jpg.rf.a04fd7b7cd6d9a57cf415ff4a2f048d8.jpg", + "response": "A man in a white shirt and red hard hat is talking to another man in a white shirt and red hard hat. They are standing in front of a wall of pipes and scaffolding.", + "id": 31466 }, { - "image_path": "G:\\images\\combined\\002772_jpg.rf.59c381262e210885a3ea2bfaba1a8048.jpg", - "response": "A lineworker for the City of San Diego is seen here in a 2013 file photo.", - "id": 858 + "image_path": "G:\\images\\combined\\005475_jpg.rf.b3fd836975a1616480646ff62198c554.jpg", + "response": "A construction worker in a red hard hat is showing another construction worker something on the wall.", + "id": 31467 }, { - "image_path": "G:\\images\\combined\\002773_jpg.rf.886b2249316d233b76b957e8ee59f46f.jpg", - "response": "A construction crew works on the underside of the bridge.", - "id": 859 + "image_path": "G:\\images\\combined\\005476_jpg.rf.547d2d1d9f3bca79caf2e1adacf14762.jpg", + "response": "A construction worker is using a long tool to smooth out the concrete.", + "id": 31468 }, { - "image_path": "G:\\images\\combined\\002774_jpg.rf.ffcb349d79610827d7ab61af0680751a.jpg", - "response": "The image shows a group of men working inside a dark tunnel. They are wearing hard hats and some of them are holding blowtorches. In the tunnel, there is a bulldozer and a person on a motorbike. The workers are standing around the tunnel and one of them is holding a light.", - "id": 860 + "image_path": "G:\\images\\combined\\005476_jpg.rf.a812d4120c5f1a819c3f8b267fe7033b.jpg", + "response": "A construction worker is using a long tool with a wooden handle to smooth out concrete.", + "id": 31469 }, { - "image_path": "G:\\images\\combined\\002776_jpg.rf.2ae8ec15358de3a40f764c5fd441ed54.jpg", - "response": "The image features two men, one in the foreground and one in the background, both wearing white helmets and orange safety vests. The man in the foreground is using a walkie-talkie, holding it up to his ear, while the other man is looking off into the distance. They are standing in front of a large red shipping container.", - "id": 861 + "image_path": "G:\\images\\combined\\005477_jpg.rf.05dbd77854ecacd57337fc9cc70b1466.jpg", + "response": "A group of people standing around a van.", + "id": 31470 }, { - "image_path": "G:\\images\\combined\\002777_jpg.rf.1f966f3c797e9ab5b84b401af2fd9b8e.jpg", - "response": "The image shows a group of rescue workers standing around a man who is being lowered into a bucket by a crane. The man in the bucket is being held by two rescuers, while others look on. The scene takes place outdoors and there are several people present, some wearing hard hats. The bucket is gray and is located towards the center of the image, while the man in the bucket is towards the right side of the image. The crane is not visible in this view, but it is the means by which the man in the bucket is being lowered.", - "id": 862 + "image_path": "G:\\images\\combined\\005477_jpg.rf.700d15bcb6b81ee570873797e69b96b7.jpg", + "response": "a group of people standing in front of a van", + "id": 31471 }, { - "image_path": "G:\\images\\combined\\002778_jpg.rf.98fff69d1d15adb76ecaa7ce82bedf4f.jpg", - "response": "A worker is using a long tool to bend a long piece of orange glowing metal. Another worker is bending over and looking at the first worker. They are both wearing blue work clothes and red helmets. The background is very dark.", - "id": 863 + "image_path": "G:\\images\\combined\\005478_jpg.rf.1d18aec7eaa05d5122af0e370e61fdae.jpg", + "response": "A man wearing a yellow hard hat and holding a power drill stands in front of a building under construction. The building is a large structure with many tall cranes around it. The man is standing on a construction site and is wearing a blue shirt and blue jeans. He is also holding a yellow and black power drill.", + "id": 31472 }, { - "image_path": "G:\\images\\combined\\002779_jpg.rf.2e684d7e87c3974f953d2f73cd479625.jpg", - "response": "In the image there is a person wearing a blue hard hat and a black jacket. They are holding a device in their right hand and are inspecting a red piece of metal. The person is standing in a warehouse-like room with a lot of tools around.", - "id": 864 + "image_path": "G:\\images\\combined\\005478_jpg.rf.28abad5a60147ef9cd54bd2c57978f63.jpg", + "response": "A man in a blue shirt and yellow hard hat stands in front of a construction site. He is holding a power tool.", + "id": 31473 }, { - "image_path": "G:\\images\\combined\\002780_jpg.rf.ffecdc5b9ada0a1fdf73f217512f320e.jpg", - "response": "a man in a red hat and orange coveralls looks into a large eye piece of a machine. The machine is on a tripod and has a large button on top.", - "id": 865 + "image_path": "G:\\images\\combined\\005479_jpg.rf.9903a767a49137e4119b6c0923b3eb75.jpg", + "response": "The image shows five men in red\u5b89\u5168\u5e3d\u7ad9\u5728\u5de5\u5730\u524d\u9762\u3002 They are most likely construction workers or managers. In the background, there are several buildings under construction. There are also several red and white pipes placed on the right. On the left, there are several people who are working at the construction site.", + "id": 31474 }, { - "image_path": "G:\\images\\combined\\002781_jpg.rf.13c9e68ba12d71d6be650e032c83d333.jpg", - "response": " A worker(688,467),(775,838) stands in the middle of a long tunnel.", - "id": 866 + "image_path": "G:\\images\\combined\\005479_jpg.rf.df7d3b7554bf977fb8baf99d0e0bcd8a.jpg", + "response": "A group of men standing in front of a construction site", + "id": 31475 }, { - "image_path": "G:\\images\\combined\\002782_jpg.rf.0d8b674f2f103e5232cb78e208950d8e.jpg", - "response": "A man and a woman in hard hats looking at a building site.", - "id": 867 + "image_path": "G:\\images\\combined\\00547_jpg.rf.1ccef08a34a9dcb3f030438e81adc31a.jpg", + "response": "A group of people standing around a construction site", + "id": 31476 }, { - "image_path": "G:\\images\\combined\\002783_jpg.rf.3bdaaecfcd1a513d5046fe7ff6247f6a.jpg", - "response": "In this image two workers are fixing the ceiling of a tunnel. They are both wearing yellow helmets and orange vests. The man on the left is holding a long tool in his right hand while the man on the right is leaning over and looking at something. There are some wires coming down from the ceiling and a red box on the left side of the image.", - "id": 868 + "image_path": "G:\\images\\combined\\00547_jpg.rf.c87789e413aa6777d28df6cb89b2166c.jpg", + "response": "The image shows a group of four people standing in a construction site. They are all wearing red helmets. One man on the left is holding a blue folder and appears to be explaining something to another man on the right. A woman in the middle is watching the two men speak. In the background, there is a building under construction. To the far right, there are also two other men wearing red helmets. In the middle of the construction site, there is a pile of yellow sand.", + "id": 31477 }, { - "image_path": "G:\\images\\combined\\002784_jpg.rf.552b0e68271b682315f26d7c2c9da662.jpg", - "response": "Two workers in blue uniforms and white helmets are discussing a blueprint. One worker is standing on a ladder in a yellow bathroom, showing the plan to the other worker.", - "id": 869 + "image_path": "G:\\images\\combined\\005480_jpg.rf.b04c8bc62fbf7e411105e83227e3fa6f.jpg", + "response": "An electrician wearing a blue uniform and a yellow hard hat is working on a power line. He is holding a pair of pliers and is in the process of installing a new piece of equipment. The sky is blue with a few clouds and the electrician is high up on a metal structure. In the background, there is a lush green forest.", + "id": 31478 }, { - "image_path": "G:\\images\\combined\\002785_jpg.rf.ab5b7acc4012beff27ab566d96fd2634.jpg", - "response": "a group of people walking through the snow", - "id": 870 + "image_path": "G:\\images\\combined\\005480_jpg.rf.f0ac14398d2dd74f5d9ffb84bb1f1d06.jpg", + "response": "An electrician is working on a power line.", + "id": 31479 }, { - "image_path": "G:\\images\\combined\\002786_jpg.rf.34858ed2cad51d9c08db2f8e99becb07.jpg", - "response": "A group of men in hard hats walking together.", - "id": 871 + "image_path": "G:\\images\\combined\\005481_jpg.rf.8ce3d0b29fb1b2c1af8629ba9d09143c.jpg", + "response": "The image shows two workers at a construction site. They are building a brick wall and laying bricks. The wall is high and takes up most of the image. The workers are wearing yellow helmets and are at different positions on the wall. One is on the left side and the other is on the right side. The workers are also wearing grey uniforms. In the background, there is a building with scaffolding. The sky is grey and overcast.", + "id": 31480 }, { - "image_path": "G:\\images\\combined\\002787_jpg.rf.633d70a97aa6b64ab8c0b11cbd0256c0.jpg", - "response": "A building with a sign that reads \"\u56db\u5ddd\u534e\u897f\u6587\u5316\u9986\" is being renovated with bamboo scaffolding. In front of the building, three workers are digging up debris from the ground. One of them is holding a shovel and a broom, while another is carrying a large piece of wood. A fourth worker is on the right side of the image, leaning against the scaffolding.", - "id": 872 + "image_path": "G:\\images\\combined\\005482_jpg.rf.118b9feb4f9063fbbaa453f18c50ef0d.jpg", + "response": "A worker is seen in the image, he is wearing a blue jumpsuit and a blue hat with a yellow stripe. He is holding a box and is working on a large spool of black cable. The sky is a clear blue and there are no clouds in sight. The worker is in an open field with some power lines in the background.", + "id": 31481 }, { - "image_path": "G:\\images\\combined\\002788_jpg.rf.0f90bcb282533c2ea6c03b7e79ec3d9b.jpg", - "response": "A group of linemen are running through a grassy field carrying equipment. They are all wearing green, yellow, and gray uniforms and yellow helmets. One of the linemen is carrying a black pole and another has his hand on a black pole. Another linemen is carrying a bag. In the background, there are several utility poles and power lines.", - "id": 873 + "image_path": "G:\\images\\combined\\005482_jpg.rf.231c97924377d7c5288ecf6bddcd80fd.jpg", + "response": "In the image there is a worker wearing blue overalls and a blue hat, who is pulling a large spool of black cable. The worker is located on a patch of grass, and there are several power poles visible in the background. The sky is a clear blue and the sun is shining.", + "id": 31482 }, { - "image_path": "G:\\images\\combined\\002789_jpg.rf.14487eb5dfe31fa82063f0168df360b8.jpg", - "response": "A construction crew working on a steep hillside. They are building a metal structure on the side of the hill. There are several people working on the structure, some are standing on ladders and some are working on the structure itself. They are wearing safety harnesses and helmets.", - "id": 874 + "image_path": "G:\\images\\combined\\005483_jpg.rf.20fece88ffd679854add67f255b53869.jpg", + "response": "A group of people working on a bridge that is orange in color.", + "id": 31483 }, { - "image_path": "G:\\images\\combined\\002790511b9920a5.jpg", - "response": "A group of people standing around a large sculpture.", - "id": 875 + "image_path": "G:\\images\\combined\\005483_jpg.rf.82daeed76d164994b6f4e112252243c6.jpg", + "response": "A group of workers are working on a bridge.", + "id": 31484 }, { - "image_path": "G:\\images\\combined\\002790_jpg.rf.30b2290de30405966db6dee08d7944ab.jpg", - "response": "In the image there is a worker wearing a white helmet and orange work clothes. The worker is standing on some train tracks and is using a cutting tool to cut some steel. The tool is making a bright orange flame as it cuts through the steel. In the background there is a large red and yellow construction vehicle.", - "id": 876 + "image_path": "G:\\images\\combined\\005484_jpg.rf.95c97d748602b5e6ba937593f425b8be.jpg", + "response": "A group of people standing in front of a yellow machine.", + "id": 31485 }, { - "image_path": "G:\\images\\combined\\002791_jpg.rf.23e1e5fcd45692023e649b8cfbc1134c.jpg", - "response": "The image shows a group of people dressed in work clothes and wearing hard hats. They are holding a large red flag with Chinese characters on it. Some of the people are also holding a large black ring. In the background, there are a few cars and a person with a red umbrella.", - "id": 877 + "image_path": "G:\\images\\combined\\005484_jpg.rf.c5749bd20babcd50b9cf806461970c32.jpg", + "response": "A group of people standing in front of a yellow machine.", + "id": 31486 }, { - "image_path": "G:\\images\\combined\\002792_jpg.rf.ae9970a6cc9bf40ecd287c98db8d3dbd.jpg", - "response": "A man in a white shirt and a yellow hard hat is working on a power box.", - "id": 878 + "image_path": "G:\\images\\combined\\005485_jpg.rf.454c7a7813f76cb2db61960b3bfe4e5b.jpg", + "response": "A man wearing a red helmet is on a scaffolding. He is standing on a black platform and is working on a building. There are several other people on the scaffolding working on the building as well. The building has many windows and one of them has an air conditioner in it. There is a bamboo ladder on the right side of the scaffolding and a yellow and red flag on the left side.", + "id": 31487 }, { - "image_path": "G:\\images\\combined\\002793_jpg.rf.b2ee986622ea07d7c85136e0afccb51e.jpg", - "response": "A worker(610,170),(996,996) rides a bicycle(398,699),(995,996) past a cargo ship(1,146),(626,837) at a port in Lianyungang, east China's Jiangsu province.", - "id": 879 + "image_path": "G:\\images\\combined\\005485_jpg.rf.f4e6ed59a19c7c22cf61e0d92a32e2af.jpg", + "response": "A man wearing a red helmet is on a scaffolding.", + "id": 31488 }, { - "image_path": "G:\\images\\combined\\002794_jpg.rf.a54b2fb1afab521c711d12f2fc55c9dc.jpg", - "response": "a man in a yellow helmet and black jumpsuit is on a wire with a blue sky background", - "id": 880 + "image_path": "G:\\images\\combined\\005486_jpg.rf.7bbc1bc0c303be01ee9b259dc5af5f75.jpg", + "response": "The image shows a group of workers in front of a large building under construction. There are two main groups of workers, one on the left and one on the right. Some workers are standing, while others are sitting on a truck. The workers are wearing uniforms and yellow hats. There are also a few workers inside the large building. In the foreground, there is a fence with a metal railing. On the right side of the image, there is a yellow truck with a cage on the back. The truck is filled with drilling machines.", + "id": 31489 }, { - "image_path": "G:\\images\\combined\\002795_jpg.rf.69b106173d71c4444f409cdc0771f2bd.jpg", - "response": "A man wearing a hard hat and coveralls standing in a room filled with pipes.", - "id": 881 + "image_path": "G:\\images\\combined\\005487_jpg.rf.66c9d3a1c420ce10cedcc1738ee496ac.jpg", + "response": "At a construction site, two engineers are standing next to a cement wall. They are both holding rolled up blueprints. The man is wearing a white hard hat and a blue shirt. The woman is wearing a white helmet and a beige suit.", + "id": 31490 }, { - "image_path": "G:\\images\\combined\\002796_jpg.rf.91bc625b455b4088756a02ddab583115.jpg", - "response": "A man in a yellow hard hat is working on a red piece of material. He is crouching down and using a tool.", - "id": 882 + "image_path": "G:\\images\\combined\\005487_jpg.rf.7fe694f0f63a2f863aca08d477daf917.jpg", + "response": "At a construction site, two engineers wearing hard hats stand next to a concrete wall. They are holding blueprints and talking.", + "id": 31491 }, { - "image_path": "G:\\images\\combined\\002797_jpg.rf.4cc15219631d7e4fb6fefe0740951c4b.jpg", - "response": "A worker in a white hard hat shines a flashlight at a blueprint.", - "id": 883 + "image_path": "G:\\images\\combined\\005488_jpg.rf.4397feca727f497c29b3ee43e7a37a85.jpg", + "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", + "id": 31492 }, { - "image_path": "G:\\images\\combined\\002798_jpg.rf.28e317f90f65e7a85ac27082a0c8abf9.jpg", - "response": "A worker(370,239),(693,996) in a hard hat climbing into a manhole.", - "id": 884 + "image_path": "G:\\images\\combined\\005488_jpg.rf.fc35f81fbb922931866ebf7c93462eca.jpg", + "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", + "id": 31493 }, { - "image_path": "G:\\images\\combined\\002799_jpg.rf.845d1987ff8276de042656c08b902c7e.jpg", - "response": "The image shows three workers in blue uniforms and hard hats installing a large pipe into the ground. They are all crouched down and appear to be focused on the task at hand. In the background, there is a building with a yellow wall and a chimney. The sky appears to be overcast.", - "id": 885 + "image_path": "G:\\images\\combined\\005489_jpg.rf.c3eaf0c8f7367d166fb10a7e2378ab00.jpg", + "response": "A man in a white shirt and grey pants is carrying a large cement block. He is wearing a yellow hat and has a orange band around his arm. He is standing in a construction area with a wheel barrel to his right and a pile of cement to his left. In the background there is a forest of trees and a building.", + "id": 31494 }, { - "image_path": "G:\\images\\combined\\0027b41fcd4fa63d.jpg", - "response": "A group of people standing around a table with a white divider wall in the middle. There are several bottles on the table, including two blue ones and one green one. There are also several cups on the table, including two green ones. In the background, there is a microwave and a TV.", - "id": 886 + "image_path": "G:\\images\\combined\\005489_jpg.rf.fa69009d4ded498fbec42099afd0438c.jpg", + "response": "A man wearing a white shirt and a yellow hat is holding a concrete block in a construction area. He is standing next to a wheelbarrow and there are piles of grey concrete to his left. In the background there is a forest of trees and a white building.", + "id": 31495 }, { - "image_path": "G:\\images\\combined\\0027bf6a5d8c382d.jpg", - "response": "A car with the trunk open showing a blue and white interior.", - "id": 887 + "image_path": "G:\\images\\combined\\00548dfc8ec76f5d.jpg", + "response": "A city bus is stopped at a bus stop.", + "id": 31496 }, { - "image_path": "G:\\images\\combined\\0027c1c20a989257.jpg", - "response": "A casino marquee that says \"BLOH-TONIGHT\" is lit up at night.", - "id": 888 + "image_path": "G:\\images\\combined\\00548_jpg.rf.2b0292f5551e8770e1aaf658d2529bac.jpg", + "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", + "id": 31497 }, { - "image_path": "G:\\images\\combined\\0027c29d6d10d65a.jpg", - "response": "A group of people walking down a street.", - "id": 889 + "image_path": "G:\\images\\combined\\00548_jpg.rf.95dfeb5fea89230e4a983124a218aaec.jpg", + "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", + "id": 31498 }, { - "image_path": "G:\\images\\combined\\0027cc0afe9b2a05.jpg", - "response": "A store front with a red and white wall.", - "id": 890 + "image_path": "G:\\images\\combined\\005490_jpg.rf.dc826ed9b0158c49ac1c5d17f049cfe0.jpg", + "response": "In the image, a group of people is standing in front of a construction site. Among them, there are three men in suits, two of them closer to the left, one in the center and another one to their right. A woman is standing between them, closer to the left. To their right, there is a man in a brown suit. In front of the group, there is a blackboard with some writing on it. The background shows a large building under construction. In the far distance, there are two cranes working.", + "id": 31499 }, { - "image_path": "G:\\images\\combined\\002800_jpg.rf.e50750d9209d2bdbe262bbe8642f5cae.jpg", - "response": "In the image there are two people standing around a pile of cement rubble. The man on the left is wearing an orange hard hat, a black jacket with yellow reflective strips, and black pants. The man on the right is wearing a black jacket and blue jeans. Both men are looking down at the pile of rubble.", - "id": 891 + "image_path": "G:\\images\\combined\\005491_jpg.rf.4dd1053153eb227b44d9c0d95b17869b.jpg", + "response": "A man and woman wearing hard hats and looking at blueprints.", + "id": 31500 }, { - "image_path": "G:\\images\\combined\\002801_jpg.rf.f94646bf326d816e9e97f5811c2a47a8.jpg", - "response": "a group of men in blue coveralls and hard hats are working on a large pipe", - "id": 892 + "image_path": "G:\\images\\combined\\005491_jpg.rf.cbead6e91577890213361d6a3af6541f.jpg", + "response": "A man and woman wearing hard hats and looking at blueprints.", + "id": 31501 }, { - "image_path": "G:\\images\\combined\\002802_jpg.rf.040a12309b84ef96f7e3093a8259a050.jpg", - "response": "A group of people standing around a construction site that has scaffolding around it.", - "id": 893 + "image_path": "G:\\images\\combined\\005492_jpg.rf.2af08370a561e8a7fe61a5d182f04ba8.jpg", + "response": "A group of workers are at a construction site. They are all wearing hard hats. One man is in the foreground, he is wearing a blue shirt and a red hard hat. Another man is behind him, he is wearing a white shirt and a white hard hat. The third man is further back, he is wearing a yellow shirt and a red hard hat. They are all working on a construction project. In the background, there are other buildings and construction equipment.", + "id": 31502 }, { - "image_path": "G:\\images\\combined\\002803_jpg.rf.5eb28d86d71ce47512444dc58e2e1393.jpg", - "response": "Two men in business suits and wearing hard hats shake hands in front of a construction site.", - "id": 894 + "image_path": "G:\\images\\combined\\005492_jpg.rf.6487cb1803389b4ca006134df137203f.jpg", + "response": "A group of workers are working on a construction site. They are building a bamboo scaffolding. One of the workers is wearing a red helmet. There are three workers in total. One is wearing a blue shirt and holding a red bar. Another worker is wearing a white shirt and holding a bamboo stick. The third worker is wearing a white shirt and holding a bamboo stick as well. In the background, there are some buildings and a crane.", + "id": 31503 }, { - "image_path": "G:\\images\\combined\\002805_jpg.rf.9c0e06e2b0b793eac4df404e35089acc.jpg", - "response": "two engineers in front of a large shipping container", - "id": 895 + "image_path": "G:\\images\\combined\\005493_jpg.rf.af365ad4dfeee44fea7fd30b08adf001.jpg", + "response": "A group of men are in a field with some sticks. They are standing near a pile of smoke. The men are wearing blue shirts and yellow hard hats.", + "id": 31504 }, { - "image_path": "G:\\images\\combined\\002806_jpg.rf.e741136cfe905fddb86b4fee695a1b9b.jpg", - "response": "The image shows two construction workers near a yellow machine. They are wearing yellow helmets and work clothes in green and blue. They are holding a steel bar with both hands and discussing.", - "id": 896 + "image_path": "G:\\images\\combined\\005493_jpg.rf.fa9380890197aa1a14a7e480685d1250.jpg", + "response": "A group of men in a field with one of them holding a stick.", + "id": 31505 }, { - "image_path": "G:\\images\\combined\\002807_jpg.rf.595d5983f3e180e340df36c400800128.jpg", - "response": "A group of men in blue uniforms are working on a power pole. They are repairing a power line. There is a yellow vehicle behind the pole. There are two red gates in the background. One gate is on the right side and the other is on the left side. There is a black and yellow sign on the left side of the gate. The word \"prohibited\" is written in yellow on the sign.", - "id": 897 + "image_path": "G:\\images\\combined\\005494_jpg.rf.83e91c1a8b323196556dcae56d67e3d9.jpg", + "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a saw to cut through a large piece of grey plastic. The plastic is located on the ground and there are several saw horses around the man and the plastic. In the background, there is a red wall and a door. The floor of the construction site is covered with various tools such as a yellow level, a hammer, a screwdriver and a tape measure.", + "id": 31506 }, { - "image_path": "G:\\images\\combined\\002808_jpg.rf.3ddc65c442718f415de44fa3fb3b8273.jpg", - "response": "A worker in a green uniform and yellow helmet standing in front of a grey box with a sticker that says danger.", - "id": 898 + "image_path": "G:\\images\\combined\\005494_jpg.rf.a108140b71190ef48d7443d9f7e5cdba.jpg", + "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a tool to cut through a large sheet of plastic. The sheet of plastic is on the ground and there are two saw horses supporting it. There are also several other tools on the ground around the sheet of plastic. The background is a red wall and a grey floor.", + "id": 31507 }, { - "image_path": "G:\\images\\combined\\002810_jpg.rf.dad47f6e28722615919904d65f2f8963.jpg", - "response": "A group of people working on a construction site.", - "id": 899 + "image_path": "G:\\images\\combined\\005495_jpg.rf.219ba17547ea8b8bcc4dbbad681099b7.jpg", + "response": "a group of men standing around", + "id": 31508 }, { - "image_path": "G:\\images\\combined\\002811_jpg.rf.1710c8c3b29ecbb3e68494b88db3e472.jpg", - "response": " Several men(120,165),(319,803)(298,220),(489,767)(561,326),(678,573)(237,254),(340,641) in blue hard hats(367,220),(443,283)(158,163),(258,241) are standing in a river(0,332),(997,999) with a rope(0,439),(959,999) and buoys(657,332),(711,435).", - "id": 900 + "image_path": "G:\\images\\combined\\005495_jpg.rf.c15b2f95a5427f8dea196d15e7898d23.jpg", + "response": "a group of men standing next to each other", + "id": 31509 }, { - "image_path": "G:\\images\\combined\\002813_jpg.rf.927c5b43a983112fef8a9fa39e8d6430.jpg", - "response": "A worker is standing in a pool of red liquid. He is wearing a black shirt, a helmet, and safety goggles. He is holding a long stick that is almost as long as he is tall. The helmet and goggles are all black. The worker is also standing in a cloud of red sparks. The helmet and goggles are also protecting his face from the intense heat.", - "id": 901 + "image_path": "G:\\images\\combined\\005496_jpg.rf.171f36a0163807708e4d4a9a84480ff8.jpg", + "response": "The image shows three men standing in front of a construction site. The man on the left is wearing a beige jacket and a beige shirt with dark grey pants. The man in the middle is wearing a black jacket over a dark green shirt and dark grey pants. The man on the right is wearing a beige suit and a dark green shirt. They are all standing on a construction site with a brown dirt ground and a blue and white building in the background. There are also some construction materials on the ground. In the background, there is a brown mountain.", + "id": 31510 }, { - "image_path": "G:\\images\\combined\\002814_jpg.rf.7918fabeefac65c0b6cfa320d49ff837.jpg", - "response": "A group of men working on electricity poles in the middle of a river.", - "id": 902 + "image_path": "G:\\images\\combined\\005497_jpg.rf.706f8e5079e2c0bb162b30d818b61e0b.jpg", + "response": "A woman(2,6),(401,997) in a pink shirt and yellow hard hat(64,3),(345,177) is holding a long tool and pointing it at something.", + "id": 31511 }, { - "image_path": "G:\\images\\combined\\002815_jpg.rf.6bf5b794a0cdce9d24906b775bdf615c.jpg", - "response": "A worker(473,566),(690,848) trapped in a manhole", - "id": 903 + "image_path": "G:\\images\\combined\\005497_jpg.rf.71244db396bd9ab18bfc1c5591418827.jpg", + "response": "A woman(2,4),(400,997) in a pink shirt and yellow hard hat(63,3),(319,173) is working with two men(312,282),(567,996)(424,446),(794,997) in a cave.", + "id": 31512 }, { - "image_path": "G:\\images\\combined\\002816_jpg.rf.c5c1be2b7b45753298bd628704140210.jpg", - "response": "\u5de5\u7a0b\u5e08\u5728\u9ad8\u538b\u7ebf\u4e0a\u5de5\u4f5c\u3002\u5de5\u7a0b\u5e08\u5728\u767d\u96ea\u8986\u76d6\u7684\u9ad8\u538b\u7ebf\u4e0a\u5de5\u4f5c\u3002\u7535\u529b\u5de5\u4eba\u5728\u51b0\u51bb\u7684\u6811\u68a2\u4e0a\u4f5c\u4e1a\u3002\u7535\u529b\u5de5\u4eba\u5728\u79ef\u96ea\u7684\u7535\u5854\u4e0a\u5b89\u88c5\u8bbe\u5907\u3002", - "id": 904 + "image_path": "G:\\images\\combined\\005498_jpg.rf.8dd70d7a696f9c8f12c2669e01f76b47.jpg", + "response": "The image shows three men sitting on the ground in the dark. They are wearing hard hats and masks, and are holding tools. One of the men is holding a light source in his hand.", + "id": 31513 }, { - "image_path": "G:\\images\\combined\\002817_jpg.rf.d527d9c39828a22d46ec5ec17441347d.jpg", - "response": "A construction worker wearing a blue shirt and a red helmet is working with concrete bricks. Some bricks are stacked neatly on the ground while others are placed on a yellow table. In the background, another worker is working on a scaffolding. There are also a few other people in the scene but they are not working with concrete. A yellow table is placed in the middle of the scene and a yellow box is placed on the right side of the table. The worker is looking at the bricks and seems to be organizing them.", - "id": 905 + "image_path": "G:\\images\\combined\\005498_jpg.rf.ff556fc304a968412bca9cd79270e405.jpg", + "response": "In the image there are three people sitting in a tent. They are all wearing black and have something in their mouth. Two of them are wearing all black and one is wearing light colored pants. They are all holding something in their hand, it could be a stick, a torch or a phone. The picture is so dark that it's hard to tell the details.", + "id": 31514 }, { - "image_path": "G:\\images\\combined\\002818_jpg.rf.5cf313640814d01ba10ada03d7ebc1b1.jpg", - "response": "A group of men working on a pole.", - "id": 906 + "image_path": "G:\\images\\combined\\005499_jpg.rf.d6f7a5b87fd38a9b01556cc9d9d27fa3.jpg", + "response": "A man in a grey shirt is holding a yellow folder and pointing towards a building. There are three men in blue shirts and yellow hard hats walking behind him. There is a car parked on the left side of the frame and a brown building with many windows in the background.", + "id": 31515 }, { - "image_path": "G:\\images\\combined\\002819_jpg.rf.f49ed169454cc05fb8e67908e2bddc41.jpg", - "response": "A group of men in hard hats walking on a construction site.", - "id": 907 + "image_path": "G:\\images\\combined\\00549_jpg.rf.becf138dc0661629cce80b6e89021316.jpg", + "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", + "id": 31516 }, { - "image_path": "G:\\images\\combined\\002820_jpg.rf.f334cfc1503489d5cee11abcd000b9f1.jpg", - "response": "A group of people working on a construction site.", - "id": 908 + "image_path": "G:\\images\\combined\\00549_jpg.rf.d828056bffad354b4b793573046c8a8d.jpg", + "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", + "id": 31517 }, { - "image_path": "G:\\images\\combined\\002821_jpg.rf.8ab00df119a1659a39476d050d825ba7.jpg", - "response": "A group of men standing next to a blue wall.", - "id": 909 + "image_path": "G:\\images\\combined\\0054b16219469dd7.jpg", + "response": "The image shows a group of men standing on a soccer field. They are all wearing different colored uniforms, with some wearing red and black striped shirts and others wearing yellow. The men are standing in a huddle near the center of the field.", + "id": 31518 }, { - "image_path": "G:\\images\\combined\\002822_jpg.rf.c2af7c84273c8fb4d8b01a2247bdf6a2.jpg", - "response": "A woman wearing a green coat and a red helmet is seen in the image holding a fire extinguisher. She is in the process of using the extinguisher on a fire. The fire extinguisher is red and white in color. There are several other people in the image, some of them are wearing red helmets and coats. They are all standing around the woman and the fire. The background shows a building under construction.", - "id": 910 + "image_path": "G:\\images\\combined\\0054c91397f2fe05.jpg", + "response": "In the image there is a rectangular black and brown cell phone from the early 2000s. It has a small screen and a few buttons. The phone is turned off and placed on a white surface.", + "id": 31519 }, { - "image_path": "G:\\images\\combined\\002823_jpg.rf.da8414d78c58ef2788ba29e3fa7205f3.jpg", - "response": "A group of men looking at a map or blueprint.", - "id": 911 + "image_path": "G:\\images\\combined\\0054d8bdd83c2537.jpg", + "response": "A lit up theater sign that says Prince Charles Cinema on it.", + "id": 31520 }, { - "image_path": "G:\\images\\combined\\002824_jpg.rf.ffc93e2f72f932be0c5d9c71d4192aa4.jpg", - "response": "A group of three men standing on a construction site.", - "id": 912 + "image_path": "G:\\images\\combined\\0054eaf0da3320f6.jpg", + "response": "The image features a red and white soda bottle with the name Nestlitts of California on it. The soda is orange flavored and sweetened with cane sugar. The bottle is 12 fluid ounces in size.", + "id": 31521 }, { - "image_path": "G:\\images\\combined\\002825_jpg.rf.9332487a3c351440e68cd9fa49618d3d.jpg", - "response": "A group of three construction workers are working on a building. One worker is sitting on a ladder, another worker is standing on a platform and the third worker is working on a metal beam. They are all wearing yellow and orange hard hats and safety vests.", - "id": 913 + "image_path": "G:\\images\\combined\\005500_jpg.rf.0f7c2c0e7809913eebd66e45c5cecaf4.jpg", + "response": "A man in a yellow hard hat is reaching up to a wooden beam. He is wearing a blue uniform and is in the process of building a wooden structure. There is scaffolding in the background.", + "id": 31522 }, { - "image_path": "G:\\images\\combined\\002826_jpg.rf.cb2264dbe30646f75e20bbec2a204f05.jpg", - "response": "A group of men in blue uniforms and hard hats are working on a power pole. They are all wearing blue uniforms and hard hats. One man is sitting on the ground and holding a tool, while the others are standing around him. There is a large transformer in the background.", - "id": 914 + "image_path": "G:\\images\\combined\\005500_jpg.rf.4e8aab4daa4506f99492dede797de8cf.jpg", + "response": "A man in a yellow hard hat is working on a wooden structure. He is wearing a blue shirt and has a yellow hard hat with a red, white, and blue brim. He is also wearing a yellow safety vest. The man is looking up at a wooden beam and appears to be in the process of building something. There is a ladder in the background and the sky is blue with a few clouds.", + "id": 31523 }, { - "image_path": "G:\\images\\combined\\002827_jpg.rf.fd914ee18d01448bebbffe4290364009.jpg", - "response": "In the image there is a group of people standing in a factory. They are all wearing hard hats and some are wearing grey and yellow clothing. They are standing in front of a large industrial machine that has a red and black crate in front of it. There are two sets of stairs leading up to the left of the image and a pile of dirt and debris to the far left. In the background behind the group there is a large industrial machine with a door that is open and a fire burning in the distance.", - "id": 915 + "image_path": "G:\\images\\combined\\005501_jpg.rf.2152a981b8ec8d10180f8bcd35d67b6f.jpg", + "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all wearing blue work clothes and hard hats. Some of them are kneeling down and digging with shovels. In front of them is a large hole filled with dirt and some bamboo shoots. To the far left of the image is a red bin and a small pile of dirt. To the far right of the image is a large rock. In the background, there is a green hill.", + "id": 31524 }, { - "image_path": "G:\\images\\combined\\002828_jpg.rf.9c705bfc6b312145c02f4f6f2764f4ca.jpg", - "response": "A man wearing a yellow hard hat and a black jacket is holding a blueprint in front of a construction site. There are several other people scattered around the site, some of them are standing on scaffolding, and one is wearing a white hard hat. There are three cranes operating in the background.", - "id": 916 + "image_path": "G:\\images\\combined\\005501_jpg.rf.f00e56190aaa23b6ae8148f3ac0138c8.jpg", + "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all holding shovels and are digging in a muddy area. Some of them are also pulling on a rope. In the background, there is a small hill with grass on it.", + "id": 31525 }, { - "image_path": "G:\\images\\combined\\002829_jpg.rf.92e57119d91423a2f4dcf60384981d63.jpg", - "response": "A man wearing a yellow hard hat is holding a piece of paper with a building plan on it. He is looking at the construction site where several large cranes are working.", - "id": 917 + "image_path": "G:\\images\\combined\\005502_jpg.rf.58b51747e68fe6912916d459e87c1cc2.jpg", + "response": "The image shows a group of people standing in a snow covered field. They are all wearing hard hats and some are wearing orange vests. In the background, snow covered trees can be seen. A power line is visible, with some of the wires down. A few people are working on fixing the power line.", + "id": 31526 }, { - "image_path": "G:\\images\\combined\\002830_jpg.rf.6a0797759655e29fb4e8f948b998dae7.jpg", - "response": "The photo shows a group of people standing under a sign that reads \"Sichuan Pengxi Foreign Language School\". The people are standing in front of a building with a large gate and a sign that reads \"Welcome\". Some of the people are wearing ties and the whole scene has a very official feel to it.", - "id": 918 + "image_path": "G:\\images\\combined\\005503_jpg.rf.29d2aa343d28c7887a0a3fdc8a03f875.jpg", + "response": "A factory worker in a blue jumpsuit and white apron is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal barrel into the large metal cylinder. There are other workers in the background, one on the left and two on the right. There are also two large metal vats in the foreground, one on the left and one on the right. The room is filled with metal shavings and there are large metal objects in the background.", + "id": 31527 }, { - "image_path": "G:\\images\\combined\\002831_jpg.rf.8d7dce692374ba2d15e74143fea302d6.jpg", - "response": "A worker wearing a yellow helmet is welding a pipe in a construction site. The worker is squatting on the ground and the welding torch is emitting sparks. In the background, there is a blue and white building and a yellow excavator is parked on the left. The ground is covered with brown soil and some rocks are scattered around.", - "id": 919 + "image_path": "G:\\images\\combined\\005503_jpg.rf.35701808fd97adf1c9e03c9e7972fccf.jpg", + "response": "A factory worker in a blue jumpsuit and hard hat is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal cylinder into a large metal bin. There are other workers in the background, one on the left and two on the right. There are also two large metal cylinders in the background. The factory floor is covered in metal shavings.", + "id": 31528 }, { - "image_path": "G:\\images\\combined\\002832_jpg.rf.4bf509662675e63ac1404b9acef7dc2c.jpg", - "response": "A group of men working on a piece of equipment.", - "id": 920 + "image_path": "G:\\images\\combined\\005504_jpg.rf.37a465c62f60f9f5744a7c90a7440c34.jpg", + "response": "Three men are standing in front of a blue wall. They are all wearing hard hats. The man in the middle has his arms crossed. The man on the far left is wearing a red vest and looking straight ahead. The man on the far right is wearing a yellow vest with his arms behind his back.", + "id": 31529 }, { - "image_path": "G:\\images\\combined\\002833_jpg.rf.db6aa5deeafbb8ffe9e9635768c02aa0.jpg", - "response": "Four construction workers in safety gear standing in a construction site.", - "id": 921 + "image_path": "G:\\images\\combined\\005504_jpg.rf.41dd1221f6433c80182d3c880e46d0b9.jpg", + "response": "Three men are standing in front of a construction site. They are all wearing hard hats and reflective vests. The man in the middle has a mustache. The man on the far left is also wearing a white helmet. The man on the far right is wearing a yellow helmet.", + "id": 31530 }, { - "image_path": "G:\\images\\combined\\002834_jpg.rf.ee0351b231bb8b0284d3ad3e0955bd06.jpg", - "response": "In the image two workers are repairing a power line. They are wearing yellow helmets and black uniforms. The workers are on a tower and one of them is holding a tool in his hand.", - "id": 922 + "image_path": "G:\\images\\combined\\005505_jpg.rf.35bdf9216bc5125d03186dd1a9c5c3b8.jpg", + "response": "A group of people working on a construction site.", + "id": 31531 }, { - "image_path": "G:\\images\\combined\\002836_jpg.rf.ce25ea276fe694ea680c446366605dbb.jpg", - "response": "A man in a yellow shirt and red hat is working on a large red pipe. The pipe is on the ground and the man is leaning over it. There are also four other red pipes on the wall next to the man.", - "id": 923 + "image_path": "G:\\images\\combined\\005505_jpg.rf.e41c1b8177d8e3125bccd404cf629144.jpg", + "response": "The image shows a group of construction workers inside a building that is under construction. They are working on the fifth floor of the building, which has wooden beams and scaffolding. Some workers are wearing yellow hard hats, and there is a red hard hat on the floor. A cup is also visible in the scene.", + "id": 31532 }, { - "image_path": "G:\\images\\combined\\002837_jpg.rf.372eb1b6435909451e005b0c196c5b1b.jpg", - "response": "A young man wearing a high visibility vest and a hard hat is standing in front of a wheelbarrow. He is smiling at the camera.", - "id": 924 + "image_path": "G:\\images\\combined\\005506_jpg.rf.55a7caae0f8b8d524e1f11931ef09c65.jpg", + "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both bearded and one of them has a beard of orange color. The one on the left is holding a tablet in his hand and the one on the right a pen. In the background, behind them, there is a construction site with many metal bars.", + "id": 31533 }, { - "image_path": "G:\\images\\combined\\002838_jpg.rf.11db65218681db0e026fb02d0d10383e.jpg", - "response": "A group of men in red work uniforms and yellow hard hats are working on a large piece of equipment. They are all holding different tools and are focused on the task at hand.", - "id": 925 + "image_path": "G:\\images\\combined\\005506_jpg.rf.5e259788198ba2d53e120adedf2d8d59.jpg", + "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both holding white blueprints and looking at a construction site. The man on the left is bearded and has a beard, the man on the right has a mustache.", + "id": 31534 }, { - "image_path": "G:\\images\\combined\\002839_jpg.rf.4958a1d0c24ae6b7a75b6c9dc49407b1.jpg", - "response": "The image shows a group of workers working on a streetlight. The streetlight is a tall, grey pole with a white, rectangular base. The workers are wearing blue uniforms and helmets. They are installing a metal frame on the streetlight. In the background, there are buildings and a truck.", - "id": 926 + "image_path": "G:\\images\\combined\\005507_jpg.rf.6e254b223b80c42b43174e78152c3148.jpg", + "response": "A man on a ladder repairs power lines in the snow", + "id": 31535 }, { - "image_path": "G:\\images\\combined\\002840_jpg.rf.44a9fb20330b60ca4652e9aceb61ba97.jpg", - "response": "A group of men standing around a construction site wearing hard hats.", - "id": 927 + "image_path": "G:\\images\\combined\\005507_jpg.rf.823d3143b7fb1c1dcc03f9fbec406852.jpg", + "response": "A man on a ladder is fixing a power line.", + "id": 31536 }, { - "image_path": "G:\\images\\combined\\002842_jpg.rf.2d54cdea82646642f99863885008b7f5.jpg", - "response": "The image shows a construction site with a large truck unloading concrete. There are several workers standing around the truck and the concrete. Some of them are using shovels to scoop the concrete out of the truck. In the background, there is a mountain of concrete.", - "id": 928 + "image_path": "G:\\images\\combined\\005508_jpg.rf.454ba8ec2ce546bb13503e27b7ff19c6.jpg", + "response": "A man in an orange shirt is on a scaffolding.", + "id": 31537 }, { - "image_path": "G:\\images\\combined\\002843_jpg.rf.09f943b7d76c457a70b58003b46a5848.jpg", - "response": "A group of linemen from the electric company are working on a power line in the rain. They are all wearing safety gear and are standing on and around a pole. One of the linemen is using a tool to work on the power line.", - "id": 929 + "image_path": "G:\\images\\combined\\005508_jpg.rf.c264f753bc3b21bc1b0af5b3922e08f3.jpg", + "response": "A man in an orange shirt is on a scaffolding.", + "id": 31538 }, { - "image_path": "G:\\images\\combined\\002844_jpg.rf.d17f745be4290fe534ee6f33671b7a8e.jpg", - "response": "A couple of men in the air fixing a power line in the snow.", - "id": 930 + "image_path": "G:\\images\\combined\\005509_jpg.rf.0813489ac7580eb4553b894012a0452b.jpg", + "response": "The image shows two workers in blue uniforms and yellow hard hats repairing a power box. They are kneeling on the ground, focused on the task at hand. The sky is blue and there are a few clouds in the sky. The workers are wearing safety goggles and there is a screwdriver on the ground.", + "id": 31539 }, { - "image_path": "G:\\images\\combined\\002845_jpg.rf.02d763549e444b03c6880169a9635607.jpg", - "response": "a group of men standing around a construction site", - "id": 931 + "image_path": "G:\\images\\combined\\005509_jpg.rf.2a7465e6946db7db7a2ade814ef6f462.jpg", + "response": "An electrician is working on a power line", + "id": 31540 }, { - "image_path": "G:\\images\\combined\\002846_jpg.rf.42563795e1145b62ee45e75a7706b5e9.jpg", - "response": "A group of men are working on a power box in a green field. They are wearing blue hard hats and work clothes. There are many power lines around them and the sky is clear.", - "id": 932 + "image_path": "G:\\images\\combined\\00550_jpg.rf.048fe80a722b9520e2c0b1070acba211.jpg", + "response": "a group of men walking down a hallway", + "id": 31541 }, { - "image_path": "G:\\images\\combined\\002847_jpg.rf.373295b432722687b3de24cb1ad8883a.jpg", - "response": "A group of people standing around a scaffolding.", - "id": 933 + "image_path": "G:\\images\\combined\\00550_jpg.rf.239ea2ed4b2a2f3a15d2adeb9f009fda.jpg", + "response": "A group of men in white shirts and red hats are walking down a hallway. One man is carrying a black bag. The walls of the hallway are made of red brick.", + "id": 31542 }, { - "image_path": "G:\\images\\combined\\002848_jpg.rf.d522c7a9057f97efa40bb8f59337442c.jpg", - "response": "The image shows three men working on an electricity pylon. They are wearing white and grey tops and are suspended from harnesses. They are on a red ladder which is attached to the pylon. There are several buckets hanging from the pylon and the sky is blue.", - "id": 934 + "image_path": "G:\\images\\combined\\005510_jpg.rf.d421690025fa27af2cf1e9add2227d57.jpg", + "response": "two men(207,567),(449,996) standing in front of a building", + "id": 31543 }, { - "image_path": "G:\\images\\combined\\002849_jpg.rf.f908aaec83345b79c492d349902891df.jpg", - "response": "A group of men in yellow safety jackets are on a power line.", - "id": 935 + "image_path": "G:\\images\\combined\\005511_jpg.rf.acf1a90d0b1880c128f48c8492aa8a13.jpg", + "response": "The image shows a large tunnel with a group of workers inside. There are large pipes in the foreground and construction equipment in the background. The tunnel is lit up by lights and the walls are concrete.", + "id": 31544 }, { - "image_path": "G:\\images\\combined\\002850_jpg.rf.7d9b172739ddf35c373e3aa3aafb3356.jpg", - "response": "A woman is cleaning the floor with a broom in a room with white walls and a window.", - "id": 936 + "image_path": "G:\\images\\combined\\005511_jpg.rf.d8260fc2fe394012d9d10aa5aabea7e9.jpg", + "response": "The image shows a large tunnel with a group of workers inside. There are two large pipes in the foreground, and a truck is visible on the left side of the tunnel. The tunnel is lit up by several lights, causing the walls to appear white. The workers are wearing hard hats and can be seen standing at various points inside the tunnel.", + "id": 31545 }, { - "image_path": "G:\\images\\combined\\002851_jpg.rf.447e6e1e54e98085dc5f953dcf610746.jpg", - "response": "a group of men standing around each other", - "id": 937 + "image_path": "G:\\images\\combined\\005512_jpg.rf.2b81d2d50ff50d603b176d851517826a.jpg", + "response": "A group of men walking down a street.", + "id": 31546 }, { - "image_path": "G:\\images\\combined\\002852_jpg.rf.555dcabecd2a0d47a4f7266c965665c6.jpg", - "response": "a group of men standing in front of a bulldozer", - "id": 938 + "image_path": "G:\\images\\combined\\005512_jpg.rf.7d26f4b344875825538509a5ba38a3c2.jpg", + "response": "A group of men walking down a street.", + "id": 31547 }, { - "image_path": "G:\\images\\combined\\002854_jpg.rf.991989eb76020d6a998d4a5f1dce8033.jpg", - "response": "In the image two workers in red are working on an oil rig. They are both wearing red helmets and the worker on the left is also wearing a red shirt. They are working on a valve that is yellow and red. In the background there is a blue sky with some clouds.", - "id": 939 + "image_path": "G:\\images\\combined\\005513_jpg.rf.29f79676c519decffceca5d680f7ff37.jpg", + "response": "A group of people standing around a pole in the rain.", + "id": 31548 }, { - "image_path": "G:\\images\\combined\\002855_jpg.rf.2aff06d6283343ce5f133ac2855019c4.jpg", - "response": "A group of people working on a building.", - "id": 940 + "image_path": "G:\\images\\combined\\005513_jpg.rf.9c4d4c63da1db9fdf383c5671d5e9a02.jpg", + "response": " Men(660,318),(780,745)(439,192),(615,835)(156,286),(269,813) working on a construction site at night.", + "id": 31549 }, { - "image_path": "G:\\images\\combined\\002856_jpg.rf.9f0a0b1c1e788f7dc2c2e881e27da0b2.jpg", - "response": "a group of people wearing hard hats", - "id": 941 + "image_path": "G:\\images\\combined\\005514_jpg.rf.7a0fd0050bc9c98cb1c0beb6123adc55.jpg", + "response": "A group of workers wearing hard hats", + "id": 31550 }, { - "image_path": "G:\\images\\combined\\002857_jpg.rf.a2b0f5621bc8d574cf280802201060b1.jpg", - "response": "A group of men working on a pipe at night.", - "id": 942 + "image_path": "G:\\images\\combined\\005514_jpg.rf.f6dcc558ad001b5bb3a2bbd65008118a.jpg", + "response": "A group of people wearing hard hats", + "id": 31551 }, { - "image_path": "G:\\images\\combined\\002858_jpg.rf.a6f51c5303070841342dd157ce7b376f.jpg", - "response": "The Changde Industrial Park is located in the high-tech zone of Changde, and is the largest industrial park in the Changde area. The park covers an area of 1000 acres, with planned investment of 10 billion yuan. The park is divided into seven areas: electronic information, new materials, new energy, biological medicine, modern service, modern agriculture, and logistics.", - "id": 943 + "image_path": "G:\\images\\combined\\005515_jpg.rf.49e3019d5ed170efba4b2d142b83fb4c.jpg", + "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air repairing power lines.", + "id": 31552 }, { - "image_path": "G:\\images\\combined\\002859_jpg.rf.b38ce7b84a4984e9f94bfdee41348b1c.jpg", - "response": "In the image two men are wearing yellow hard hats and standing in a room filled with metal pipes. They are looking at a clipboard and discussing something.", - "id": 944 + "image_path": "G:\\images\\combined\\005515_jpg.rf.d02cd78fef4da42c6ff307ca72d9ddf4.jpg", + "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air, working on power lines.", + "id": 31553 }, { - "image_path": "G:\\images\\combined\\002860_jpg.rf.5b1b59b6be6fabeb7bc8ee097400e308.jpg", - "response": "A group of people working on a bridge", - "id": 945 + "image_path": "G:\\images\\combined\\005516_jpg.rf.3a58f8a6ce73e27a1058e1fbebd79165.jpg", + "response": "The image shows Kim Jong-un, the leader of North Korea, standing in front of a dam. He is wearing a black uniform and is smiling. The sky above him is overcast, and there are trees and a body of water in the background. There are also several flags in the distance.", + "id": 31554 }, { - "image_path": "G:\\images\\combined\\002861_jpg.rf.9267969035ecd40c978c7cb8c14a176a.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are building a large building with many floors. In the background, there are other workers and a crane. The sky is blue and there are no clouds.", - "id": 946 + "image_path": "G:\\images\\combined\\005516_jpg.rf.b179ef0596d2a5bca9142ab37ad42f56.jpg", + "response": "This image is of a man standing in front of a dam. He is smiling and looking into the camera. He is wearing a black military uniform. There are green bushes behind him and a fence in front of him. There are also several signs in the background.", + "id": 31555 }, { - "image_path": "G:\\images\\combined\\002862_jpg.rf.e9327da0d0c47ed3a163eb7b4beba0db.jpg", - "response": "The image shows the scene of the April 11, 2009, Wenzhou bridge collapse in Wenzhou, Zhejiang Province, China. The photo shows the bridge's shattered remains in the water. In the foreground, three workers in yellow hard hats are using some equipment. One of them is sitting on the ground, another one is standing to the left, and the third one is standing to the right. They seem to be in the process of repairing something.", - "id": 947 + "image_path": "G:\\images\\combined\\005517_jpg.rf.dadff8cb1b0e648196a0f52b45a64964.jpg", + "response": "A construction worker is being rescued by firefighters after being trapped in a construction site.", + "id": 31556 }, { - "image_path": "G:\\images\\combined\\002863_jpg.rf.8743cbc363452e3e1a23de724316f1b4.jpg", - "response": "A man is leaning on a metal ladder. He is wearing a blue shirt, a hard hat, and has a yellow hard hat on his head. He is also wearing a yellow uniform. He has his hand under his chin and is smiling at the camera. The background is white.", - "id": 948 + "image_path": "G:\\images\\combined\\005518_jpg.rf.ec2cbed7f762e1b60c0bfd38eab739fd.jpg", + "response": "a group of men wearing white shirts and red hats", + "id": 31557 }, { - "image_path": "G:\\images\\combined\\002864_jpg.rf.bef1279b39c2386d1e4f07d7da062126.jpg", - "response": "In the image there is a man wearing a red jacket and a red hat, likely a hard hat, working on a power line. The man is on a ladder and appears to be focused on his work. The sky above the man is covered in clouds and it appears to be a cold day. The power line that the man is working on is covered in ice and snow, indicating that it has been snowing recently.", - "id": 949 + "image_path": "G:\\images\\combined\\005518_jpg.rf.f5f169ad13bdf7f1ca16d34d38eb72f9.jpg", + "response": "a group of men wearing white shirts and red helmets", + "id": 31558 }, { - "image_path": "G:\\images\\combined\\002865_jpg.rf.8aabd543dc24a063dd158a35685e9824.jpg", - "response": "A dozer is pushing snow in a parking lot.", - "id": 950 + "image_path": "G:\\images\\combined\\005519_jpg.rf.1fccb8b6a93f38b62e093897647b246e.jpg", + "response": " Rescuers(4,4),(700,998)(511,3),(798,840) work to free a person trapped in the rubble of a building that was destroyed in an earthquake in Lushan county, Ya'an, Sichuan province, China, April 20, 2013.", + "id": 31559 }, { - "image_path": "G:\\images\\combined\\002866_jpg.rf.ba705df3dbe5e7f8a911fab292c05f6e.jpg", - "response": "A group of workers in orange jumpsuits and white hard hats are working on a bridge. They are standing on a lift and working on a metal frame.", - "id": 951 + "image_path": "G:\\images\\combined\\005519_jpg.rf.cf968a28520e183191515b158ffcb0c3.jpg", + "response": " Rescuers(5,4),(797,995)(512,3),(799,848) are seen working at the site of a collapsed hotel in China's Yunnan province.", + "id": 31560 }, { - "image_path": "G:\\images\\combined\\002867_jpg.rf.05b0bb90eb795d1fbeb0bd25633185cc.jpg", - "response": "a group of people standing around a red table", - "id": 952 + "image_path": "G:\\images\\combined\\00551_jpg.rf.7c4812e4305414519b298473bb072590.jpg", + "response": " A man(321,88),(540,536) is digging a hole in the ground with a shovel(384,260),(527,503).", + "id": 31561 }, { - "image_path": "G:\\images\\combined\\002868_jpg.rf.335bd9bb4d4334fa361e7917c9bd91f9.jpg", - "response": "A group of men standing around a field.", - "id": 953 + "image_path": "G:\\images\\combined\\00551_jpg.rf.94e81b469373f178c36bdba6aefd5a13.jpg", + "response": " A man(321,88),(541,529) is digging a hole in the ground with a shovel(392,256),(536,506).", + "id": 31562 }, { - "image_path": "G:\\images\\combined\\002870_jpg.rf.9a7f22eda5d5a47bd888923de594c238.jpg", - "response": "In the image there is a person wearing a black shirt with a yellow hard hat, kneeling on the ground next to a large metal cutting machine. They are operating the machine and cutting through a metal bar. There is a pile of steel rods in the background.", - "id": 954 + "image_path": "G:\\images\\combined\\005520_jpg.rf.370182c2dc79fa6e438bbfd37b144c01.jpg", + "response": "In the image there are two men standing on a platform inside a factory. They are both wearing yellow hard hats and grey and red uniforms. The man on the left is giving a thumbs up. They are standing in front of a large machine.", + "id": 31563 }, { - "image_path": "G:\\images\\combined\\002871_jpg.rf.52309e1683dc9f61c6c50f50edcff869.jpg", - "response": "The image shows a construction site with two workers visible. They are wearing red shirts and white hats. In the background, there is a fence, a building under construction, and several large steel pipes. There are also many deformed steel bars in the foreground. The photo is accompanied by a\u62cd\u6444\u8bf4\u660e:\u5de5\u4eba\u4eec\u6b63\u5728\u5207\u5272\u94a2\u7b4b and a\u62cd\u6444\u65f6\u95f4:2014.08.08.", - "id": 955 + "image_path": "G:\\images\\combined\\005520_jpg.rf.6b50e0196122817cdffdb2b6f5630598.jpg", + "response": "A couple of men standing in front of a factory machine.", + "id": 31564 }, { - "image_path": "G:\\images\\combined\\002872_jpg.rf.5af2dc4dc07cd9b04d5f5563b2300deb.jpg", - "response": "A group of workers fixing a black water pipe in the ground.", - "id": 956 + "image_path": "G:\\images\\combined\\005521_jpg.rf.08061171dc59d16d819262e8bbbfab76.jpg", + "response": "The photo shows a group of workers in the construction site. They are all dressed in red and yellow, wearing yellow helmets. They are working in the construction site underground. On the left side of the photo, there is a steel ladder, and in the middle and right side of the photo, there are two iron bars. There is a pile of sand in the upper left corner of the photo, and a pile of black stones in the lower left corner. In the upper middle of the photo, there is a yellow machine with two black wheels.", + "id": 31565 }, { - "image_path": "G:\\images\\combined\\002873_jpg.rf.1f63bdad5beb085397ca7cb2e3db6a81.jpg", - "response": "A worker is seen in a blue jumpsuit and a blue hat, working on a power line. He is standing on a metal platform, installing or fixing the line. He is wearing a tool belt with various tools in it. The sky is grey and overcast.", - "id": 957 + "image_path": "G:\\images\\combined\\005521_jpg.rf.6f1d0565841e9d966f0f315a29c76d3d.jpg", + "response": "The photo shows a group of workers in the foreground wearing red uniforms and yellow hard hats. They are working on a silver metal framework that covers the floor of a\u96a7\u9053. Behind the workers, the tunnel continues to the right, with a silver metal framework covering the floor on the left. In the background, on the right, a machine is digging into the ground. The photo is taken indoors, with the workers likely\u4fee\u5efa\u5730\u94c1.", + "id": 31566 }, { - "image_path": "G:\\images\\combined\\002874_jpg.rf.d119626b914324b03c54d23ebda8e8e9.jpg", - "response": "A group of workers are working on a construction site.", - "id": 958 + "image_path": "G:\\images\\combined\\005522_jpg.rf.61055b7a6a2ca9233f4cb9f8daabb24b.jpg", + "response": "A worker is working on the construction site of the stadium. The stadium is under construction and is made of concrete. There are many steel beams and cables visible in the image. The sky is overcast and there are some clouds in the sky.", + "id": 31567 }, { - "image_path": "G:\\images\\combined\\002875_jpg.rf.30b31ff28fb2dc5570523d08b060752f.jpg", - "response": "a group of people standing in front of a unfinished building", - "id": 959 + "image_path": "G:\\images\\combined\\005522_jpg.rf.6422817f3b594031c11ae98fd603fb3f.jpg", + "response": "A worker is working on the construction site of the stadium.", + "id": 31568 }, { - "image_path": "G:\\images\\combined\\002876_jpg.rf.1939bf8f0dfca9025fb3c489d23bf801.jpg", - "response": "A group of three men working on a project in a dark room. They are all wearing hard hats and one man is kneeling down. They are working on a project that involves pipes and a light is shining on the man kneeling down.", - "id": 960 + "image_path": "G:\\images\\combined\\005523_jpg.rf.2d4cac2c31e9219158e513039a460575.jpg", + "response": "A couple of men in hard hats are looking at a large white box. They are standing in a room with a brick wall. There is a yellow web address in the corner of the image.", + "id": 31569 }, { - "image_path": "G:\\images\\combined\\002877_jpg.rf.9b1422f9907357f7d24d1e0822ab6d58.jpg", - "response": "A worker in a green shirt and blue hat is holding three different colored wires and is working on an electrical box.", - "id": 961 + "image_path": "G:\\images\\combined\\005524_jpg.rf.23a0c238f867e3dfb8a928d506668d49.jpg", + "response": "In the image two electrical workers are wearing blue hard hats and are checking the settings on a control box. They are both dressed in blue and yellow vests. In the background there is a large concrete structure with many metal electrical poles sticking out of it. The sky is blue with a few white clouds.", + "id": 31570 }, { - "image_path": "G:\\images\\combined\\002878_jpg.rf.5256359df9ca2c628751694651d6f3b5.jpg", - "response": " A worker(297,227),(687,966) is seen in a large metal cylinder.", - "id": 962 + "image_path": "G:\\images\\combined\\005524_jpg.rf.c486963a53e06a8b91c9ca3cd3230c5e.jpg", + "response": "In the image two workers are wearing blue helmets and are checking the control cabinet of a power plant. The power plant is made of metal and has many high voltage poles in the background.", + "id": 31571 }, { - "image_path": "G:\\images\\combined\\002880_jpg.rf.b9dc1b1371bd1725b2c8e45f941aaa6e.jpg", - "response": "In the image there are two people working on a brick wall. They are both wearing blue hard hats and are constructing a brick wall. The wall is made of many different colored bricks and is being built on a concrete foundation. The two workers are using a level to make sure the bricks are straight.", - "id": 963 + "image_path": "G:\\images\\combined\\005525_jpg.rf.3647f645fae7ab63bb1877aa2cee542a.jpg", + "response": "A group of men working on a construction site.", + "id": 31572 }, { - "image_path": "G:\\images\\combined\\002881_jpg.rf.6fb3ce1aa39d6ab53ddbf5aa96dc6188.jpg", - "response": "Three construction workers(277,149),(513,609)(546,217),(862,916)(498,231),(693,649) sitting on a building site.", - "id": 964 + "image_path": "G:\\images\\combined\\005525_jpg.rf.f056f5e0916de5b1276386723903c7ca.jpg", + "response": "A group of workers wearing hard hats are working on a brick wall.", + "id": 31573 }, { - "image_path": "G:\\images\\combined\\002882_jpg.rf.49025b361d25870c2b59584e0e3fbed0.jpg", - "response": "A worker in a grey jacket and red helmet is working on a large piece of steel. They are holding a large circular piece of steel and using a tool to work on it.", - "id": 965 + "image_path": "G:\\images\\combined\\005526b210837e4d.jpg", + "response": "A yellow and blue airplane with the numbers 5021 on the side.", + "id": 31574 }, { - "image_path": "G:\\images\\combined\\002883_jpg.rf.e965e228cff31543b3324021e88e6140.jpg", - "response": "A group of men walking across a dirt field.", - "id": 966 + "image_path": "G:\\images\\combined\\005526_jpg.rf.2c9c4610c88a67bb4f2c9c1042d88f46.jpg", + "response": "The image shows three workers in black uniforms and yellow helmets who are repairing an electricity pylon. They are on a suspension bridge, connecting to the pylon with tools.", + "id": 31575 }, { - "image_path": "G:\\images\\combined\\002885_jpg.rf.1a522b4db6f9b7108a29367fbb6d4718.jpg", - "response": "A construction worker in a red hard hat is looking up at a large metal structure. He is holding a device in his hand.", - "id": 967 + "image_path": "G:\\images\\combined\\005527_jpg.rf.19bef1d0d988f4ec4e3410ed07867feb.jpg", + "response": "A worker in a factory wearing an orange jumpsuit and a yellow hard hat is standing over a large pile of steel. They are holding a large steel coil and looking at it. There are many more steel coils stacked around them, as well as a few stacks of steel in the background.", + "id": 31576 }, { - "image_path": "G:\\images\\combined\\002886_jpg.rf.d1251a506797e44c2e7cd895029df0fd.jpg", - "response": "An engineer in a blue uniform and a red helmet sits on the ground in front of a dry grass field and a mountain. He is holding a tool in each hand.", - "id": 968 + "image_path": "G:\\images\\combined\\005527_jpg.rf.60fb6001f245376a1851ee21b10f73f8.jpg", + "response": "A worker in a factory is checking some steel.", + "id": 31577 }, { - "image_path": "G:\\images\\combined\\002887_jpg.rf.c96f5d9eb88402307737d2d87db2f112.jpg", - "response": "The photo shows a group of workers in yellow and orange vests standing on the right side of the image, facing a tunnel that is under construction. In the foreground, there is a truck on the left side of the image, and a few people walking on the right side of the image. In the background, there is a mountain.", - "id": 969 + "image_path": "G:\\images\\combined\\005528_jpg.rf.a92066e5b8a0d5b3570ca5e50c8125e8.jpg", + "response": " Men(426,346),(737,996)(699,285),(997,995)(0,239),(441,996) in hard hats(232,239),(394,433)(543,344),(680,481)(94,340),(195,468)(690,423),(755,491)(937,297),(998,456) standing in front of a mountain", + "id": 31578 }, { - "image_path": "G:\\images\\combined\\002888_jpg.rf.7de20730bdea8e7bbb893eb71f3863bd.jpg", - "response": "In the image, a worker is seen wearing a white helmet and is in the process of climbing a ladder that is placed against a large power pole. The power pole has many electrical components attached to it. The background shows a wall painted red and white.", - "id": 970 + "image_path": "G:\\images\\combined\\005529_jpg.rf.681472f1cc65e4a781ec4ae885b56c67.jpg", + "response": "In the image there are two people working on a piece of equipment. The people are wearing orange work vests and the man on the right is wearing a yellow hard hat. They are working on an emergency mobile\u53d8\u7535\u7ad9 which is yellow and black. The word\u53d8\u6362 is written in black on the emergency mobile\u53d8\u7535\u7ad9.", + "id": 31579 }, { - "image_path": "G:\\images\\combined\\002889_jpg.rf.1fee2af19c2f80dcf9b9a76bf2c283bb.jpg", - "response": "A group of workers fixing a power box in a field.", - "id": 971 + "image_path": "G:\\images\\combined\\005529_jpg.rf.cab3bbced8dcd0a479274d569784b395.jpg", + "response": "In the image there are two people working on a piece of yellow equipment. They are both wearing orange work vests and yellow hard hats. The person on the left is holding a large grey cable while the person on the right is connecting a black plug to the cable. There is a yellow trailer in the background with the words \"\u5e94\u6025\u79fb\u52a8\u53d8\u7535\u7ad9\" written on it.", + "id": 31580 }, { - "image_path": "G:\\images\\combined\\002890_jpg.rf.3a29db4240f0335f5ad5119ebc2ddf4c.jpg", - "response": "A construction worker in a red hard hat and yellow safety vest stands in front of a building under construction. The worker is wearing a red bracelet with the words \"\u96c4\u5b89\u7279\u52e4\" in yellow. The worker is also wearing a blue short-sleeved shirt and a white apron. The worker is gesturing with his thumbs up.", - "id": 972 + "image_path": "G:\\images\\combined\\00552_jpg.rf.604805fa5d5441a61d398cc9ace89f02.jpg", + "response": " Three men(277,268),(424,998)(441,337),(547,967)(1,189),(105,997) in yellow hard hats(312,266),(424,382)(458,335),(534,422)(1,189),(88,287) standing in front of a construction site", + "id": 31581 }, { - "image_path": "G:\\images\\combined\\002891_jpg.rf.baf5299bf136c8534079e877cf53697f.jpg", - "response": "An electrician in a red uniform and white hard hat is working on a power line next to a river.", - "id": 973 + "image_path": "G:\\images\\combined\\005530_jpg.rf.237aaf00c33c92bce6ec9d9ce9d2d1f7.jpg", + "response": "The image shows a group of men working on a snowy mountain. They are wearing hard hats and are engaged in various tasks. Some men are climbing up the mountain, while others are working on a structure made of metal. The mountain is covered in snow and ice, and the weather appears to be cold and overcast. There are also some tools visible in the snow, including a hammer and a pair of pliers.", + "id": 31582 }, { - "image_path": "G:\\images\\combined\\002892_jpg.rf.967a0f1e1e1ee54285f00895b7b6faa7.jpg", - "response": "A group of four engineers in a factory setting. One engineer is a woman and she is holding some blueprints. Another engineer is holding a clipboard. They are all wearing hard hats.", - "id": 974 + "image_path": "G:\\images\\combined\\005531_jpg.rf.747799ed9decfd77f0cd8c8d18b3eca0.jpg", + "response": "A construction worker is using a level to check the alignment of the train tracks.", + "id": 31583 }, { - "image_path": "G:\\images\\combined\\002894_jpg.rf.22aa6a2cff2eccd76a524ed99f904dad.jpg", - "response": "A group of three people walking down a street.", - "id": 975 + "image_path": "G:\\images\\combined\\005532_jpg.rf.05d565f9586010556f198ce3d66862d3.jpg", + "response": "A man wearing a hard hat standing in front of a construction site.", + "id": 31584 }, { - "image_path": "G:\\images\\combined\\002895_jpg.rf.62fd373b20433bfa4fe0fba4a9b78e59.jpg", - "response": "A group of men in blue work clothes and white hard hats stand around a large pipe. Some of them are wearing suits and ties.", - "id": 976 + "image_path": "G:\\images\\combined\\005532_jpg.rf.2cb8f82438da3966446945844bf655b2.jpg", + "response": "A man wearing a hard hat standing in front of a construction site.", + "id": 31585 }, { - "image_path": "G:\\images\\combined\\002896_jpg.rf.3dedc0b302f2e7a93f75adfc6c270073.jpg", - "response": "In the image there are two workers wearing yellow helmets and work clothes. They are working in a construction site filled with debris and white bags. One worker is using a yellow helmet and a yellow tool while the other worker is using a blue helmet and a purple tool. There is also a white steam coming from the debris.", - "id": 977 + "image_path": "G:\\images\\combined\\005533_jpg.rf.387912fa4a0ddde8bd3d1f070e290687.jpg", + "response": "A man in a blue hard hat, white shirt, yellow safety vest and a clear face mask.", + "id": 31586 }, { - "image_path": "G:\\images\\combined\\002897_jpg.rf.714d5ed222c08f2a89f6db83fcb8796f.jpg", - "response": "In the image two workers are seen repairing an electricity tower. They are wearing blue and yellow color uniforms. The sky is blue and there are a few clouds. The workers are holding safety equipment like belts and are wearing helmets.", - "id": 978 + "image_path": "G:\\images\\combined\\005533_jpg.rf.bd34aa62040827d636a279972bddc69a.jpg", + "response": "A man wearing a blue hard hat, a yellow safety vest, and a face mask.", + "id": 31587 }, { - "image_path": "G:\\images\\combined\\002898_jpg.rf.1c3c75d44dd876c779f38da050a72727.jpg", - "response": "A group of men working on a brick wall.", - "id": 979 + "image_path": "G:\\images\\combined\\005534_jpg.rf.8dc04d4e0b228be4b4f9f990136567b3.jpg", + "response": "A man in a hard hat stands on a balcony overlooking a construction site. He is wearing a grey shirt and black pants. The construction site is in the background and there are several tall buildings there. There is also a yellow crane operating in the distance. The sky is overcast.", + "id": 31588 }, { - "image_path": "G:\\images\\combined\\002899_jpg.rf.ef6067a54e43c3b6bae8563bd7f38e90.jpg", - "response": "Men working on a construction site with large buildings in the background.", - "id": 980 + "image_path": "G:\\images\\combined\\005534_jpg.rf.8e9032a4dbb0e621b81946d85b17792c.jpg", + "response": "A man in a hard hat is standing on a balcony. He is wearing a grey shirt, black pants and is holding a white coffee cup. He is looking out over a construction site that has several buildings under construction. There are several cranes working on the buildings and a large amount of rebar and other construction materials visible. The sky is grey and overcast.", + "id": 31589 }, { - "image_path": "G:\\images\\combined\\0028a855a27cf5ce.jpg", - "response": "A bathroom with a roll of toilet paper on a silver holder.", - "id": 981 + "image_path": "G:\\images\\combined\\005535_jpg.rf.40f270b3f4c062596228a37360deb571.jpg", + "response": " Several men(382,392),(526,821)(577,398),(709,689)(786,409),(886,610)(524,338),(591,495)(713,369),(787,597) carrying wood(207,311),(808,538) over their heads(394,392),(457,479)(622,398),(672,477)", + "id": 31590 }, { - "image_path": "G:\\images\\combined\\0028cfeb1d0ec7ce.jpg", - "response": "Two children standing on the side of the road holding small umbrellas.", - "id": 982 + "image_path": "G:\\images\\combined\\005535_jpg.rf.f74ad9b4313d9c4a0aad672465b2234e.jpg", + "response": "A group of men wearing hard hats are carrying a large metal bar through a field.", + "id": 31591 }, { - "image_path": "G:\\images\\combined\\0028f4e42f29ff21.jpg", - "response": "A white and red long sleeve rugby shirt with the letter O2 on the front.", - "id": 983 + "image_path": "G:\\images\\combined\\005536_jpg.rf.2d576f050cc863dad8a9f0401e05943f.jpg", + "response": "Gansu provincial party secretary and provincial government chairman Liu Yandong, Gansu provincial vice party chairman and provincial government vice chairman Zhang Xiaoming, Gansu provincial government vice party chairman and provincial government vice chairman Zhang Yujun, and Gansu provincial department of housing and urban-rural development party branch secretary and director Zhang Jinping visited Tianshui to investigate the construction site of the new city.", + "id": 31592 }, { - "image_path": "G:\\images\\combined\\002900_jpg.rf.5c6b3284df898d2662d67c2d819d954e.jpg", - "response": "A group of workers in a tunnel.", - "id": 984 + "image_path": "G:\\images\\combined\\005537_jpg.rf.5dc8263d64b1944d77ab7086cba276d2.jpg", + "response": "A man in a red hard hat is working on a large piece of industrial equipment. The equipment is made of steel and has a brownish color. The man is sitting on the equipment and using a tool. There is a pile of red bricks next to the equipment. Another man is working further back in the scene. The room has white walls and brick floors. There are also two windows in the room.", + "id": 31593 }, { - "image_path": "G:\\images\\combined\\002901d9d194c4fb.jpg", - "response": "A blue and white car with a British flag on the back.", - "id": 985 + "image_path": "G:\\images\\combined\\005537_jpg.rf.f8a383c4c41ed099a1c17861589180cb.jpg", + "response": "A man in a red hard hat is standing in front of a large brick building. He is next to a large piece of industrial equipment that is being used to destroy another piece of industrial equipment. The destroyed equipment is sitting on the ground and is being broken apart by the industrial machine. There is a pile of red bricks next to the man and the industrial equipment. There are also two other people in the background, one closer to the left and one closer to the right. The sky outside the building appears to be overcast.", + "id": 31594 }, { - "image_path": "G:\\images\\combined\\002901_jpg.rf.28489669190813140e524998718ca035.jpg", - "response": "The image shows a snowy scene with three men working on a power line. They are all dressed in black and yellow winter gear and are standing on a ladder and on the ground. The ladder they are standing on is positioned next to a large metal pole and a power box. The ground around them is covered in snow.", - "id": 986 + "image_path": "G:\\images\\combined\\005538_jpg.rf.636cc94e166d89b2ec392aaf9e805916.jpg", + "response": "A man in a red hat and blue shirt is holding a white cloth. He is crouching down and looking at the camera. He is wearing red gloves. There is a yellow car parked in the background. There are some motorcycles and a bush. There is a red and white rope on the left side of the image.", + "id": 31595 }, { - "image_path": "G:\\images\\combined\\002903_jpg.rf.9a90efe85a432529dc2e155e33834184.jpg", - "response": "A man on a ladder working on power lines.", - "id": 987 + "image_path": "G:\\images\\combined\\005538_jpg.rf.813b1e443210d4bc5186c2261d8fdd7c.jpg", + "response": "A man in a red hat and work clothes is on a porch holding a white pipe.", + "id": 31596 }, { - "image_path": "G:\\images\\combined\\002904_jpg.rf.6408f1936e42565726d4f955e874d257.jpg", - "response": "People(22,334),(109,663)(372,310),(438,676)(433,319),(520,677)(220,322),(286,659)(279,319),(348,665)(546,323),(609,673)(327,343),(386,673)(516,323),(569,671)(395,319),(446,674) standing on a bridge(1,397),(997,997)", - "id": 988 + "image_path": "G:\\images\\combined\\005539_jpg.rf.6f72f7c973b4f72025ab0f303619f993.jpg", + "response": "A couple of men are working on a power line at night.", + "id": 31597 }, { - "image_path": "G:\\images\\combined\\002905_jpg.rf.04a8aa7bc7c5d92d8e30bb6b96041f64.jpg", - "response": "A man in a hard hat and coveralls stands on a metal beam in a warehouse.", - "id": 989 + "image_path": "G:\\images\\combined\\00553_jpg.rf.3d757ab13432e69e78445f2497caf248.jpg", + "response": "In the image there is a man wearing a red hard hat sitting on a white barrel. The man is also wearing a navy blue jacket and camouflage pants. He is taking a drink from a can and has a white shirt underneath. In the background there is a truck and some wooden pallets.", + "id": 31598 }, { - "image_path": "G:\\images\\combined\\002906_jpg.rf.a6a7bb6e60781f9bcad7cd0a48a1c45f.jpg", - "response": "A man in a red hard hat is using a machine to take measurements in a field.", - "id": 990 + "image_path": "G:\\images\\combined\\005540_jpg.rf.223da59113932f30ed93635fd958e409.jpg", + "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is made of clear glass. The building is made of concrete and has a brick wall visible outside the window. There are several other windows in the building, some of which are open. There is a ladder on the side of the building. The man's arms are crossed and he is looking out the window.", + "id": 31599 }, { - "image_path": "G:\\images\\combined\\002907_jpg.rf.3ba230c882bc4a701444e5487cc59319.jpg", - "response": "The image shows two workers in blue uniforms and white helmets, one of them is on the left and the other one is on the right, they are repairing the power supply equipment on a high place.", - "id": 991 + "image_path": "G:\\images\\combined\\005540_jpg.rf.f46693d4ade95592186904f0bcbbd20d.jpg", + "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is a small square cut out of a concrete wall. The wall is made of concrete and red bricks. The building is made of concrete and has a few windows. There is a ladder on the side of the building.", + "id": 31600 }, { - "image_path": "G:\\images\\combined\\002908_jpg.rf.faf09a7732705e9912a5d958d3e2e37b.jpg", - "response": "A group of four men in a construction site wearing white and yellow helmets. They are standing on the concrete ground with a lot of steel bars in front of them. There are also two cranes in the background.", - "id": 992 + "image_path": "G:\\images\\combined\\005542_jpg.rf.3282d9eab479b02e66ce68cca0eb3952.jpg", + "response": "A group of three men working on an oil rig together.", + "id": 31601 }, { - "image_path": "G:\\images\\combined\\002909_jpg.rf.e90887239fea22fa310d05987e0e2f4f.jpg", - "response": "In the image a man is working on some power lines. He is wearing a white helmet and green work clothes. He is holding a tool in his hand and there is a power line support in the middle of the picture. The sky is a clear blue and the whole scene has a sense of danger about it.", - "id": 993 + "image_path": "G:\\images\\combined\\005542_jpg.rf.b7f2a98f5f9c20b23a4e1bcb2d02ec16.jpg", + "response": "A group of three men working on an oil rig.", + "id": 31602 }, { - "image_path": "G:\\images\\combined\\00290_jpg.rf.12551c9b70f0bc9b52d73cbdb54130bc.jpg", - "response": "A man in a white hard hat holding rolled up plans in front of a graffitied wall.", - "id": 994 + "image_path": "G:\\images\\combined\\005543_jpg.rf.213f13eca61d2615897c3674a4658170.jpg", + "response": "The image shows two workers in a construction site, one of them is holding a hose and the other one is using some tool. They are working on a cement floor, the floor is grey and the whole scene appears to be in black and white. The workers are wearing red and yellow helmets and the background shows a building under construction. The date of the picture is November 12th, 2013.", + "id": 31603 }, { - "image_path": "G:\\images\\combined\\00290_jpg.rf.86b32aed7071360e2752e1545b585991.jpg", - "response": "A man wearing a white hard hat and a black coat standing in front of a concrete wall with graffiti on it. The man is holding a rolled up piece of white paper.", - "id": 995 + "image_path": "G:\\images\\combined\\005543_jpg.rf.42706a0c11e4ea3cf4cea81e4028924a.jpg", + "response": "A construction worker is using a tool to clean the floor.", + "id": 31604 }, { - "image_path": "G:\\images\\combined\\002911_jpg.rf.0b1d0a14fe4c4ca64b61cdd923b03616.jpg", - "response": "a group of men standing around each other", - "id": 996 - }, - { - "image_path": "G:\\images\\combined\\002912_jpg.rf.a7e879879ba7d4db31d143da3c48429a.jpg", - "response": "Two men in red\u5b89\u5168\u5e3d are standing on some stairs.", - "id": 997 - }, - { - "image_path": "G:\\images\\combined\\002913_jpg.rf.7dc07c0e4dcb5a067071d13abc23b0a9.jpg", - "response": "A large bridge structure under construction with a group of people working on it. They are standing on various ladders and scaffolding around the structure.", - "id": 998 + "image_path": "G:\\images\\combined\\005544_jpg.rf.71c37fabf82a4f988090654f1450a415.jpg", + "response": "A group of people sitting around a table.", + "id": 31605 }, { - "image_path": "G:\\images\\combined\\002914_jpg.rf.a31f8da3be802dba3a9dd42a1b49ba7c.jpg", - "response": "A group of workers in protective gear are standing under a large tree. They are working together to move the tree which is wrapped in a green tarp. There are two ladders leaning against the wall and a tire on the ground. The workers are wearing hard hats and one of them is wearing a yellow vest.", - "id": 999 + "image_path": "G:\\images\\combined\\005544_jpg.rf.97766ad3b2be94c14824c89455695015.jpg", + "response": "A group of people sitting around a table with papers and water bottles in front of them.", + "id": 31606 }, { - "image_path": "G:\\images\\combined\\002915_jpg.rf.0543e72aff5e1b52fd93b03d7183e250.jpg", - "response": "A group of people standing on a construction site wearing high vis vests and hard hats.", - "id": 1000 + "image_path": "G:\\images\\combined\\005545_jpg.rf.17320258f530eb6cf427bd13803416f7.jpg", + "response": "A male construction worker in an orange jumpsuit and yellow hard hat stands in front of a large construction site. He is holding a camera and looking off to the side.", + "id": 31607 }, { - "image_path": "G:\\images\\combined\\002916_jpg.rf.c398a26ae9a0b90c22b7db446bd58e12.jpg", - "response": "A train is passing over a railway bridge that is under construction. Some workers are standing on the rails and one of them is wearing a yellow helmet. Another worker is holding a yellow helmet in his hand. There are some cranes on the left side of the image.", - "id": 1001 + "image_path": "G:\\images\\combined\\005545_jpg.rf.3edf6a4d2e1270522e4cfebad1885c2f.jpg", + "response": "A male construction worker in an orange jumpsuit and a yellow hard hat stands in front of a large red and yellow billboard. He is holding a camera and looking off to the side.", + "id": 31608 }, { - "image_path": "G:\\images\\combined\\002917_jpg.rf.cb3bcdfa3f9f73ea01fff7858d5d0ab7.jpg", - "response": "A man in a hard hat(244,265),(384,433) and white gloves(482,376),(581,498) is using a crowbar(428,455),(564,724) to pry open a brick wall(348,5),(996,999).", - "id": 1002 + "image_path": "G:\\images\\combined\\005546_jpg.rf.17e53861de9c549781be4deb1f2c03e4.jpg", + "response": "The image shows a large tree that has been cut down in the middle of a street. The tree trunk is lying on its side in the street, and several workers in orange vests are standing around it. One of the workers is holding a large power tool, and another is holding a red and white traffic cone.", + "id": 31609 }, { - "image_path": "G:\\images\\combined\\002918_jpg.rf.315c38192622c0d12590e0aa75ac48d2.jpg", - "response": "In the image there is a person wearing a hard hat and orange and white safety jacket standing inside a factory. The factory worker is operating heavy machinery that is spitting out sparks. The sparks are coming from the machinery and are covering the entire right half of the image. There is also a large metal cylinder to the left of the person that is covered in sparks.", - "id": 1003 + "image_path": "G:\\images\\combined\\005546_jpg.rf.3ecc2f75154258788ff802f1eb528c28.jpg", + "response": "The image shows a group of workers in orange vests and blue helmets standing around a large concrete pole on the side of a road. The workers seem to be in the process of setting up the pole. There are also other workers in the background, some of them are carrying tools. In the foreground, there is a traffic cone placed on the ground. There are also a few trucks in the background, one of them is a large white truck with a crane on its roof. Another truck is a red and white truck with a large concrete mixer. There is also a white van parked on the side of the road.", + "id": 31610 }, { - "image_path": "G:\\images\\combined\\002919_jpg.rf.eca18c346f68e9bcf2ea93ce68e446b1.jpg", - "response": "A worker in a red uniform and a hardhat stands in a large tunnel. The tunnel is dirty and has a large circular opening at the far end, which looks like a well. The worker is standing on the right side of the image, wearing a red shirt with a white logo on the left side and a yellow stripe on the right side. He is also wearing a red hardhat. The worker is looking into the tunnel, which is filled with light.", - "id": 1004 + "image_path": "G:\\images\\combined\\005547_jpg.rf.0ef674801e0159b64550981cedffdec2.jpg", + "response": "a group of people working on a construction site", + "id": 31611 }, { - "image_path": "G:\\images\\combined\\00291_jpg.rf.432f15a9aba4b29f362084b15b9a60c3.jpg", - "response": "In the image there is a person wearing a white helmet and a yellow vest. They is standing in front of a laptop that is placed on a suitcase. The person seems to be working on a construction site.", - "id": 1005 + "image_path": "G:\\images\\combined\\005547_jpg.rf.54d69f8e0e275cba026f2b5e5d9476f0.jpg", + "response": "A group of people working on a construction site.", + "id": 31612 }, { - "image_path": "G:\\images\\combined\\002920_jpg.rf.4e48719a999ed198b5a1bc2849102706.jpg", - "response": "a group of men standing around talking", - "id": 1006 + "image_path": "G:\\images\\combined\\005548_jpg.rf.9ef91735346142790ec4d4b2442bb813.jpg", + "response": "In the image there is a person wearing a blue shirt and a hard hat, this person is working with a large device of some sort. The device is grey in color and the person is holding it in their hands. The person is also wearing yellow work boots. There is some text on the image that says \"\u8bbe\u5907\u57fa\u7840\u704c\u6d46\" which is Chinese writing and it is in the bottom right corner of the image.", + "id": 31613 }, { - "image_path": "G:\\images\\combined\\002921_jpg.rf.82ff54f9f5a693185fdbf74234486e25.jpg", - "response": "A man in a yellow hard hat is working on a power box.", - "id": 1007 + "image_path": "G:\\images\\combined\\005549_jpg.rf.0951867df212bce3d051d8b50a961e9a.jpg", + "response": "A worker in a blue shirt and orange safety belt is installing a street light.", + "id": 31614 }, { - "image_path": "G:\\images\\combined\\002922_jpg.rf.2d9a431cb2f2ec2f92f5d64e256e009f.jpg", - "response": "A worker stands in the debris of a partially collapsed pedestrian bridge in China.", - "id": 1008 + "image_path": "G:\\images\\combined\\00554_jpg.rf.736f45f0935a1fc72edbc6dadb720d67.jpg", + "response": "A group of five workers in orange, yellow and red hard hats and matching shirts standing in front of two large shipping containers.", + "id": 31615 }, { - "image_path": "G:\\images\\combined\\002923_jpg.rf.602c94f6c129f415a2ceafdc6341e93a.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing yellow and orange safety vests and hard hats. One man is taller and has a beard, the other man is shorter. They are shaking hands, and the taller man is looking at the shorter man. The shorter man is also holding a set of plans. They are standing in front of a fence and in the background, there is a shipping container and a red crane.", - "id": 1009 + "image_path": "G:\\images\\combined\\00554_jpg.rf.9a804de75a8e160ad09cc2c31381009f.jpg", + "response": "A group of five workers in orange, wearing yellow helmets, standing in front of two large shipping containers.", + "id": 31616 }, { - "image_path": "G:\\images\\combined\\002924_jpg.rf.5f7fb7560d6239c1166bcc12345c9b77.jpg", - "response": "The image shows two men wearing hard hats, one red and one yellow, sitting on the ground. They are both wearing orange shirts. One of the men is holding a walkie talkie in his right hand. They are in a construction area with metal bars in the background.", - "id": 1010 + "image_path": "G:\\images\\combined\\005550_jpg.rf.db87b9be20f28e07b3defad0cc14e494.jpg", + "response": "In the image there is a group of construction workers working on a construction site. They are all wearing orange and yellow vests and yellow hard hats. There is a large piece of machinery behind them, and they are all working on a large wooden structure. The sky is grey and overcast.", + "id": 31617 }, { - "image_path": "G:\\images\\combined\\002925_jpg.rf.e29993124785d4e65dbab2d303c27080.jpg", - "response": "Four men working on a construction site.", - "id": 1011 + "image_path": "G:\\images\\combined\\005551_jpg.rf.1d719301fd83511e998673af013fbfa9.jpg", + "response": "The image shows a large tunneling machine that has carved out a large round hole in the ground. The tunneling machine is covered in rocks and has a series of large wheels on the top. The tunneling machine is standing in a large tunnel and there are four people standing around it, three of them are wearing yellow helmets and are working on the tunneling machine and the fourth one is standing further back. There is a red sign with white writing on the left side of the image and a large red ribbon on the right side of the image.", + "id": 31618 }, { - "image_path": "G:\\images\\combined\\002926_jpg.rf.52248416623d7600c2566447eb2ca048.jpg", - "response": "A group of men standing next to each other wearing hard hats and work clothes.", - "id": 1012 + "image_path": "G:\\images\\combined\\005552_jpg.rf.954aee6149a739df214fea027f5ffa85.jpg", + "response": "The image shows a group of three construction workers at a site where a concrete bridge is being built. They are working on the bottom of a tall, circular metal structure, tying rebar together. The sky is blue and there are mountains in the background.", + "id": 31619 }, { - "image_path": "G:\\images\\combined\\002927_jpg.rf.b497a26ffa470ec1e3ac0c7011204bb6.jpg", - "response": "A worker in an orange jumpsuit and blue hard hat is kneeling down next to a tree covered in ice.", - "id": 1013 + "image_path": "G:\\images\\combined\\005554_jpg.rf.d1fbe3919ff2263e564dd37b664c253b.jpg", + "response": "In the image there are two people wearing yellow hats and one of them is holding a clipboard. They are standing in front of a wall with a white pipe and three signs on the wall. The first sign is in the left top of the wall and it's a square sign with blue border and white writing saying Standard Practice. The second sign is in the right top of the wall and it's a square sign with red border and white writing saying Waterproof. The third sign is in the right bottom of the wall and it's a rectangle sign with white writing saying Attention, long pipe.", + "id": 31620 }, { - "image_path": "G:\\images\\combined\\002928_jpg.rf.c330e47d66962e8ca1d5d916724c4cb5.jpg", - "response": "A group of four men in hard hats stand on a construction site looking at blueprints. In the background there is a ship being built and a mountain.", - "id": 1014 + "image_path": "G:\\images\\combined\\005556_jpg.rf.0e7f9d307ed6495773c7e850b1150cd9.jpg", + "response": "A man wearing a hard hat and a yellow safety vest standing in front of a pile of rocks.", + "id": 31621 }, { - "image_path": "G:\\images\\combined\\002929_jpg.rf.1bdc671f0c3c836348fe8be233f45fee.jpg", - "response": "The image shows three men working on a construction site. They are all wearing orange hard hats and are focused on their tasks. The man in the foreground is crouched down and is working on a piece of wood. The man in the middle is standing and is working on something in the background. The man on the far right is also standing and is working on something. There are several other people in the background, some of them are further away and some are partially obscured. The sky is blue and there are no clouds in the sky.", - "id": 1015 + "image_path": "G:\\images\\combined\\005558_jpg.rf.1d1fb2f70a45441c52c3e7ba68b650fb.jpg", + "response": "A worker operates a drone to inspect a building site in Handan, Hebei province, China, 17 October 2017. Handan is one of the first groups of cities in China to use drones for building site safety inspections. The drones can cover a wider area and detect hazards more efficiently than human inspectors. The data collected by the drones is transmitted in real-time to a control center, where it is analyzed and used to improve safety. Handan has over 100 drones being used for building site safety inspections. According to the city's construction safety authority, the drones have detected over 2000 hazards and prevented 150 potential accidents. The drones have also reduced the time and cost of building site safety inspections by over 50%. The drones used in Handan are equipped with high-resolution cameras, LIDAR (Light Detection and Ranging) and other sensors to collect data on building site conditions. The data is then analyzed using artificial intelligence to identify hazards such as unsecured scaffolding, overloaded cranes and blocked emergency exits. The drones are also used to monitor construction workers' safety vests, hard hats and other protective gear to ensure they are being worn correctly. The drones are expected to be used in more Chinese cities for building site safety inspections in the future.", + "id": 31622 }, { - "image_path": "G:\\images\\combined\\002931_jpg.rf.bd3679bcad2979d9531b97cd44b26933.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow helmets and reflective vests. Some of them are using tools such as shovels and hammers. In the background, there is a partially constructed building with a red structure on top. There are also a few people in the distance wearing blue and white clothes.", - "id": 1016 + "image_path": "G:\\images\\combined\\005559_jpg.rf.f828773d78fc846258fa16e9587fc1d3.jpg", + "response": "An electrician in a yellow hard hat is working on top of a power pole.", + "id": 31623 }, { - "image_path": "G:\\images\\combined\\002932_jpg.rf.788a1d5f5fc56658cbdd7eba6c906b4f.jpg", - "response": "A group of workers are working on a construction site. They are wearing hard hats and uniforms. Some of them are using tools such as crowbars and hammers. They are building a structure that resembles a wall or a bridge support. The sky is grey and overcast.", - "id": 1017 + "image_path": "G:\\images\\combined\\005560_jpg.rf.f9948f817d4008ce1851c3d331bc35f9.jpg", + "response": "In the image, there is a construction site with scaffolding and steel beams. In the center of the image, there is a female construction worker wearing a yellow hard hat and orange shirt, kneeling on the ground. She has a yellow hard hat on her head, her arms are crossed in front of her, and she is looking at the camera. There is a bottle on the ground next to her, and a backpack is placed to the left of her. The background shows a large construction site with steel beams and scaffolding in various shapes and sizes.", + "id": 31624 }, { - "image_path": "G:\\images\\combined\\002933_jpg.rf.9e8661473aa16e99ea318480912859cc.jpg", - "response": "A man in a yellow vest standing next to a wall.", - "id": 1018 + "image_path": "G:\\images\\combined\\005561_jpg.rf.a464051d3eb382069773a34d87ac855b.jpg", + "response": "Three men in high visibility vests and hard hats are standing on a construction site, looking at a blueprint. The man on the left is holding a tablet computer.", + "id": 31625 }, { - "image_path": "G:\\images\\combined\\002934_jpg.rf.24de25c1ce2a32c94be45ed2ee21f11b.jpg", - "response": "A man is being lowered by a crane with a man holding the end of the crane. The man being lowered is wearing a black shirt and has a stick in his hand.", - "id": 1019 + "image_path": "G:\\images\\combined\\005562_jpg.rf.faa9401b508994fd716ff1df134671cf.jpg", + "response": "A group of men in hard hats are standing around a large metal box. They are wearing work clothes and are standing on a construction site.", + "id": 31626 }, { - "image_path": "G:\\images\\combined\\002935_jpg.rf.8bdd414e2d51573cee8cf654fc6740c4.jpg", - "response": "A group of firefighters are standing outside a factory. They are wearing yellow helmets and black uniforms. In the background, there is a large building with a white wall and a brown roof. There is smoke coming out of the building and a ladder is placed against it. To the left of the building, there is a large white tank. In the foreground, there are green plants and a tree.", - "id": 1020 + "image_path": "G:\\images\\combined\\005563_jpg.rf.9da54f7949ce449108b06baa47fb06e1.jpg", + "response": "A group of men in blue hard hats are holding a large wooden pole over their heads. They are standing in a lush green forest.", + "id": 31627 }, { - "image_path": "G:\\images\\combined\\002936_jpg.rf.eadb881e6a405e9b7a352bbdfc581ed5.jpg", - "response": "In the image there is a group of people wearing hard hats and blue or yellow work clothes. Some of them are holding a green bag of fruit, possibly watermelons. A man in a white shirt and black pants is handing out these bags of fruit to the workers. The background is a blue sky with some white clouds.", - "id": 1021 + "image_path": "G:\\images\\combined\\005565_jpg.rf.65fc1b3598009561998d3bcb00e7196c.jpg", + "response": "The image shows two construction workers on a building site. They are wearing yellow and orange safety gear and are working on a large building. The building is made of concrete and has a grid-like structure. The workers are working on a red grid as well. One of the workers is kneeling down and appears to be working on the building. The other worker is further back, working on the red grid.", + "id": 31628 }, { - "image_path": "G:\\images\\combined\\002937_jpg.rf.38576e85402e85702c819f858e50918e.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 1022 + "image_path": "G:\\images\\combined\\005567_jpg.rf.d5a4fa2bf895c00c1a3259d513fc9844.jpg", + "response": "A large crane is lifting a large concrete beam into place over a dirt road. The beam is being held by several men in hard hats. The sky is overcast and there are a few clouds in the sky.", + "id": 31629 }, { - "image_path": "G:\\images\\combined\\002938_jpg.rf.f997c255c133f1e9133ca3def60b626c.jpg", - "response": "Some people are working on a construction site. There is a yellow tower with drills on the bottom. A man is working on a large drill that is stuck in the ground. Another man is wearing a red hat and holding a yellow stick. There is a blue fence in the background. A yellow building is also visible in the background.", - "id": 1023 + "image_path": "G:\\images\\combined\\005568_jpg.rf.e184f476de9d2b32517cac48370135e0.jpg", + "response": "A man in a grey suit and a man in a black coat and red hard hat stand in a room with a large blue and silver piece of machinery.", + "id": 31630 }, { - "image_path": "G:\\images\\combined\\002939_jpg.rf.dc1f7e806bfd9ecf773280b18b9d09c8.jpg", - "response": "A worker is spraying water inside a tunnel.", - "id": 1024 + "image_path": "G:\\images\\combined\\00556_jpg.rf.2d91292ca003e4418ebb11010adc577c.jpg", + "response": "The picture shows a scene on the top of a building in Changsha. There are three people in the picture, all wearing red hard hats. In the middle, there is a man with glasses, a white shirt and grey trousers, he is likely the person being interviewed. To the far left of the image is a man in a white T-shirt and blue jeans. To the far right of the image is a man in a red hard hat. In front of the three people is a green fence. Behind the fence is a building that has been built but has not been finished. It is currently covered with grey corrugated iron sheets and red bricks. On the left side of the building, there is a tower with a black metal frame and a glass observation deck.", + "id": 31631 }, { - "image_path": "G:\\images\\combined\\002940_jpg.rf.954d113912280b23eced13dc0963b69a.jpg", - "response": "A group of people standing around each other", - "id": 1025 + "image_path": "G:\\images\\combined\\00556_jpg.rf.ceb4e56300e873ab713857309471aee5.jpg", + "response": "The photo shows a group of people standing on a rooftop in the city. They are all wearing hard hats. In the foreground on the left, a man in a white shirt and grey pants is talking. He is wearing a red hard hat. To the right of him, a man in a blue shirt is also wearing a white hard hat. In the background, a man in a yellow shirt is wearing a yellow hard hat. The man in the middle is wearing a white shirt, a grey vest and a white helmet. He is talking to the man in the white shirt. In the far distance, you can see the skyline of the city.", + "id": 31632 }, { - "image_path": "G:\\images\\combined\\002941_jpg.rf.eebb1ca01d2e14082bcd5b0f15bcc9cf.jpg", - "response": "A man pushing a cart of bricks", - "id": 1026 + "image_path": "G:\\images\\combined\\005570_jpg.rf.f3a77b4a690e0ff99e2144f3b765b8ae.jpg", + "response": "A group of men standing in the snow", + "id": 31633 }, { - "image_path": "G:\\images\\combined\\002942_jpg.rf.5a39406addc8323be6700e4734a8165a.jpg", - "response": " A worker(400,233),(938,997) is using a machine to drill into a wall of rock(3,4),(999,995)", - "id": 1027 + "image_path": "G:\\images\\combined\\005571_jpg.rf.eff431f95573c3877bd44576f930b391.jpg", + "response": "A group of four men in red work clothes are working on a piece of equipment outdoors. They are all wearing red helmets and the ground is snowy. There are two red metal bars in the foreground and a red metal pipe in the background. A large red metal pipe has snow on it and is connected to a yellow piece of equipment. A man on the far left is using a tool to adjust a yellow and black valve on the pipe. Another man is pulling on a chain next to the first man. A third man is pulling on a rope attached to a yellow metal hook. The fourth man is pulling on a chain attached to the same hook.", + "id": 31634 }, { - "image_path": "G:\\images\\combined\\002943_jpg.rf.d5f5e4c19606ee3e2cd42d251a09ef3c.jpg", - "response": "In the image there are three men(140,421),(329,775)(850,292),(967,613)(27,366),(182,702) working in a factory. They are standing in front of a large metal door with a fire inside. The fire is orange and they are using long handled tools to move the fire. The floor is covered in dirt and there is a large pipe above the fire.", - "id": 1028 + "image_path": "G:\\images\\combined\\005572_jpg.rf.69ef8b13477fd49d881f30515294c4fc.jpg", + "response": "A group of workers are working on a construction site.", + "id": 31635 }, { - "image_path": "G:\\images\\combined\\002944_jpg.rf.a55b73329632fb89aa8797ee8f62e81c.jpg", - "response": " Men(229,168),(433,877)(499,408),(682,883) working on a tower", - "id": 1029 + "image_path": "G:\\images\\combined\\005574_jpg.rf.310a5662fba9a23f394123853c5bdf07.jpg", + "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", + "id": 31636 }, { - "image_path": "G:\\images\\combined\\002945_jpg.rf.a7a2e1cc6c451c82628b48d8e92700f0.jpg", - "response": "A man in a red work suit is working on a pipe with steam coming out of it. He is wearing a red work suit and a tan hat. He is kneeling down and appears to be focused on his task. There is a yellow and black triangle shaped sign in the background. There is also a blue and white machine in the background and a pile of dirt and debris on the ground.", - "id": 1030 + "image_path": "G:\\images\\combined\\005575_jpg.rf.0c50dd4fa4d3541866756c9cdc846ade.jpg", + "response": "An electrician is working on power lines in a rural area. He is standing on a small shed or box, wearing a yellow helmet and overalls. There are two other people in the scene, one on the left and one on the right. They are both wearing yellow helmets. In the background, there is a road and a field of green grass.", + "id": 31637 }, { - "image_path": "G:\\images\\combined\\002946_jpg.rf.34243810fa8edd3724d7bf79d43a12d0.jpg", - "response": "A man wearing a yellow vest and a yellow helmet is holding a blueprint in his left hand while talking on a cell phone. He is standing on a construction site.", - "id": 1031 + "image_path": "G:\\images\\combined\\005576_jpg.rf.cad70e6730d17c73b4ca4462264d4f93.jpg", + "response": "A group of people working in a foundry. They are wearing hard hats and some are holding shovels. The ground is wet and there is a large piece of metal in the middle of the room that is glowing red.", + "id": 31638 }, { - "image_path": "G:\\images\\combined\\002947_jpg.rf.98126960612b05df424e83fdf840c72f.jpg", - "response": "Two workers in yellow vests and white helmets are checking the solar panels. They are holding a clipboard and a pen. The solar panels are installed on the roof and cover the entire background.", - "id": 1032 + "image_path": "G:\\images\\combined\\005577_jpg.rf.375ed9509e16cbca9d5e6c03578283c7.jpg", + "response": "A group of three men standing next to each other wearing hard hats.", + "id": 31639 }, { - "image_path": "G:\\images\\combined\\002948_jpg.rf.beb251b14f413ea73c617193aebe436b.jpg", - "response": "Men in a factory with one of them welding some metal.", - "id": 1033 + "image_path": "G:\\images\\combined\\005578_jpg.rf.726b8088a182f97643867c22ff03ba24.jpg", + "response": "A group of people wearing blue hats are holding a large metal pole.", + "id": 31640 }, { - "image_path": "G:\\images\\combined\\002949_jpg.rf.91909806ddba9671dea2a6e164c1a198.jpg", - "response": "A group of men working on power lines.", - "id": 1034 + "image_path": "G:\\images\\combined\\005579186e95c20a.jpg", + "response": "A group of men are standing around a table with a laptop on it. There are two more tables in the room, one of which has a cup on it, and another that has a bowl on it. There are chairs around the tables, and a backpack is placed on the floor. There is also a bottle on one of the tables.", + "id": 31641 }, { - "image_path": "G:\\images\\combined\\002950_jpg.rf.e3676edcd813a1a659c5d0b8898939c1.jpg", - "response": "A construction site with three men in red hard hats standing in front of a wall of blue fencing. One of the men is holding a grey gas cylinder.", - "id": 1035 + "image_path": "G:\\images\\combined\\005579_jpg.rf.f86a59cc2e33fe8f3b550f6144f0c828.jpg", + "response": "A group of men standing around each other.", + "id": 31642 }, { - "image_path": "G:\\images\\combined\\002951_jpg.rf.6a7b00cd96a582a2cf4764932f1b20ea.jpg", - "response": "A construction site with two men standing next to a large hole in the ground. The men are wearing hard hats and one of them is holding a flashlight.", - "id": 1036 + "image_path": "G:\\images\\combined\\00557_jpg.rf.75fdd1abb0ef26b73a97a96f1ab82b9e.jpg", + "response": "A group of four men standing in front of a power station. They are all dressed in blue and white, and they are wearing hard hats. The power station is large and made of metal. There are many metal towers and wires in the background.", + "id": 31643 }, { - "image_path": "G:\\images\\combined\\002952_jpg.rf.4732fe076cb7d44ad87b4aad4b56404b.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is long and has a brown color. In the foreground, two workers are working on the right side of the tunnel. One worker is squatting and the other is standing. They are both wearing green work suits and yellow helmets. In front of them, there is a metal pipe. To the right of the pipe, there are several drain holes in a row. In the distance, there is a yellow excavator parked in the tunnel. The tunnel has a brown color and looks very long.", - "id": 1037 + "image_path": "G:\\images\\combined\\005580_jpg.rf.88d54cfd0fa7771bd55c1dd547f2e9a0.jpg", + "response": "A group of three men standing in front of a tarp and a pile of rubble. They are all wearing hard hats.", + "id": 31644 }, { - "image_path": "G:\\images\\combined\\002953_jpg.rf.58802b59e487fd96e786d78ce03276fd.jpg", - "response": "A group of people stand on the street corner.", - "id": 1038 + "image_path": "G:\\images\\combined\\005582_jpg.rf.db007e79618be8ac8ad7f9bdb0b0b04b.jpg", + "response": "In the image, US President Barack Obama is speaking at a podium in front of a group of workers wearing hard hats. The workers are standing behind a large American flag that is draped over the podium. Obama is wearing a blue shirt and tie, and is holding a microphone. He appears to be speaking about manufacturing jobs.", + "id": 31645 }, { - "image_path": "G:\\images\\combined\\002955_jpg.rf.81d62bbcfcb8cc7b25192c3d4089c512.jpg", - "response": "Three men in blue uniforms and hard hats are posing for the camera. They are all smiling and crossing their arms in front of them. The man in the middle is wearing a white shirt and has his hands crossed in front of him. The man on the far left is wearing a blue uniform and has his hands in his pockets. The man on the far right is wearing a blue uniform and has his hands in his pockets as well. They are all standing in front of a building that is under construction.", - "id": 1039 + "image_path": "G:\\images\\combined\\005583_jpg.rf.c8d1bef4b4e431bc5876463a10d0799f.jpg", + "response": "A worker in a steel factory in China.", + "id": 31646 }, { - "image_path": "G:\\images\\combined\\00295689562e67a7.jpg", - "response": "a little girl(593,153),(829,996) sitting at a table(0,389),(751,998) with a game(79,587),(689,997)", - "id": 1040 + "image_path": "G:\\images\\combined\\005584_jpg.rf.661dab718bf434041f5826d95d6f870f.jpg", + "response": "A worker in a red hard hat crouches in a corridor between two rows of large concrete pipes. He is holding a light and appears to be examining the pipes.", + "id": 31647 }, { - "image_path": "G:\\images\\combined\\002956_jpg.rf.b345a1c7fb7dfff052217f71ad91e13e.jpg", - "response": "a man in a pink shirt and a hard hat holding a metal object", - "id": 1041 + "image_path": "G:\\images\\combined\\005586_jpg.rf.f695cd388e9b78286729cd8ec2d12935.jpg", + "response": "A group of three workers are working on a building site. They are all wearing yellow hard hats. The man in the middle is wearing a white shirt and grey pants. The man on the left is wearing a white shirt and grey pants. The man on the right is wearing a yellow shirt and grey pants. They are all wearing yellow hard hats. The building site has several wooden poles and some wires running across them.", + "id": 31648 }, { - "image_path": "G:\\images\\combined\\002958_jpg.rf.dbff57d918c97ca51075eeb15dfa008b.jpg", - "response": "The image shows a large tunnel under construction. The tunnel is circular and has a blue steel frame supporting it. The tunnel is wide and has a sign on it that says \"\u4e13\u9879\u6cbb\u7406\u884c\u52a8\". There are three workers in the image, two on the left and one on the right. They are wearing orange work suits and yellow helmets. The ground around the tunnel is bare and dusty. There are also two white tanks on the left and a pile of grey rocks on the right.", - "id": 1042 + "image_path": "G:\\images\\combined\\005587_jpg.rf.5c9dcf837321cb2d114aea600aa7e8a6.jpg", + "response": "In the image there are three people wearing yellow and orange work clothes and helmets. They are walking around a large pile of red bricks.", + "id": 31649 }, { - "image_path": "G:\\images\\combined\\002959_jpg.rf.4eb9ada87efccf34666fdf6037e23929.jpg", - "response": "In the image there are several people standing on a construction site, several of them are wearing hard hats. There are several cranes in the background, one is on the far left and another one is on the far right. In the middle there is a white building and a yellow crane. There are several buildings in the background, some of them are tall and white, some are tall and brown. In the foreground there is a blue and white sign, it says \"\u62a4\u5bc6\u5de5\u7a0b\".", - "id": 1043 + "image_path": "G:\\images\\combined\\005589_jpg.rf.77f9b8d74eb57b6dbc028230770791e3.jpg", + "response": "A pair of workers are suspended from a bridge, working on power lines. They are wearing hard hats and camouflage clothing. The bridge is located in a mountainous area, and the river below is green and visible through the suspension cables. There are also two other people visible in the distance, further away from the workers.", + "id": 31650 }, { - "image_path": "G:\\images\\combined\\00295fe2b9988a90.jpg", - "response": "A boy in a black shirt and red shorts looking at a fountain.", - "id": 1044 + "image_path": "G:\\images\\combined\\00558_jpg.rf.64a0c684acc3bf0016a5ba12c68f311f.jpg", + "response": "A man is working on a construction site. He is wearing a brown vest and a dark shirt. He is holding a tool in his hand. In front of him is a pile of bricks. To his right is a pile of wooden poles. In the background are a few buildings and a mountain.", + "id": 31651 }, { - "image_path": "G:\\images\\combined\\002960_jpg.rf.b0517698b6189a1bd0ee193b12e6d707.jpg", - "response": "A man in a high visibility jacket and blue hard hat stands in front of a large pile of concrete blocks. The blocks are arranged in two neat stacks behind the man. He is standing in front of the left-hand stack and appears to be looking at the camera.", - "id": 1045 + "image_path": "G:\\images\\combined\\00558_jpg.rf.9faf5b041c42311b3fd30a71b7cdb4c6.jpg", + "response": "A man wearing a brown vest and a light blue shirt is building a brick wall. He is holding a long tool with a red handle and is working on a concrete slab. The sky is grey and overcast.", + "id": 31652 }, { - "image_path": "G:\\images\\combined\\002961_jpg.rf.7e53995d9a94ec7f1f39b22c8697c05d.jpg", - "response": "The image shows two men wearing yellow reflective vests and yellow hard hats standing in a construction site. They are both holding tools and are wearing work boots. The man on the left is pointing towards something, possibly discussing the progress of the construction work. The men are standing in a large room with concrete walls and floors, and there are scaffolding and a pile of sand visible in the background.", - "id": 1046 + "image_path": "G:\\images\\combined\\005590_jpg.rf.a2af78c24c6e1dd8b1dc46b3f994e68d.jpg", + "response": "A man in a hard hat and high visibility jacket stands in front of a large cylindrical metal object, which is sitting on a steel work table. The man is smiling at the camera. There are three other people visible in the background, two of which are standing further to the right and the other one further to the left. The wall behind the large metal object is brown and there are two large metal support beams to the right and left of the object.", + "id": 31653 }, { - "image_path": "G:\\images\\combined\\002962_jpg.rf.d9b446959346d9c129523087a6ee8280.jpg", - "response": " Kim Jong Un(462,282),(702,989) inspects the construction site of a new ice rink in Pyongyang (Photo: KCNA).", - "id": 1047 + "image_path": "G:\\images\\combined\\005591_jpg.rf.0ef78e76559f5261ef8d00c828c5bdcb.jpg", + "response": "A group of men standing around a plot of land.", + "id": 31654 }, { - "image_path": "G:\\images\\combined\\002963_jpg.rf.44c8ac8d6b900e52ebc726c5d6a09e7e.jpg", - "response": "A man in a blue shirt and a hard hat is pointing at a green wire. Another man in a blue shirt and a hard hat is looking at the first man. A man in a white shirt and a red hard hat is standing behind the two men in hard hats.", - "id": 1048 + "image_path": "G:\\images\\combined\\005592_jpg.rf.d3f4d1a4eba3b030e8b477b06a032a17.jpg", + "response": "Stock Photography of Miner using a walkie talkie in a mine tunnel", + "id": 31655 }, { - "image_path": "G:\\images\\combined\\002965_jpg.rf.6dee5b1e8d631f2bc049c3db57e6fb83.jpg", - "response": "a group of men standing around each other", - "id": 1049 + "image_path": "G:\\images\\combined\\005593_jpg.rf.59469ff3b755ecd3810770dea83b2057.jpg", + "response": "a group of men standing in front of a model of a city", + "id": 31656 }, { - "image_path": "G:\\images\\combined\\002968_jpg.rf.9fd65ff45011cf506fd5b4548c6e0c74.jpg", - "response": "A construction site with three workers in front of a power pole.", - "id": 1050 + "image_path": "G:\\images\\combined\\005594_jpg.rf.e0175bf77d26ba00b6213259aef5cd89.jpg", + "response": "a group of people standing in front of a brick building", + "id": 31657 }, { - "image_path": "G:\\images\\combined\\002969_jpg.rf.c80c2fc4aad5cf8ace98e4dd89696f34.jpg", - "response": "A man in a snowy field is working on power lines.", - "id": 1051 + "image_path": "G:\\images\\combined\\005595_jpg.rf.5ab16a321c915da56553e0e34aa313df.jpg", + "response": "A man wearing a hard hat and a yellow safety vest is holding a large set of blueprints in front of a construction site. The man is standing next to a vehicle, possibly a truck, and there are two cranes in the background. The sky is blue and the sun is shining.", + "id": 31658 }, { - "image_path": "G:\\images\\combined\\002970_jpg.rf.dc9ea486bc69848e5c746ab3f5db19a4.jpg", - "response": "The image shows two construction workers wearing yellow helmets and working on a construction site. They are both kneeling on the floor and are focused on their work. One of them is holding a large square metal and the other one is holding a small rectangular metal. They are surrounded by wooden planks and metal rods. In the background, there is a blue sky and a few green hills.", - "id": 1052 + "image_path": "G:\\images\\combined\\005596_jpg.rf.0915be9121b119478faef5de29446710.jpg", + "response": "A worker wearing a blue hat is looking at a folder of papers while holding a device.", + "id": 31659 }, { - "image_path": "G:\\images\\combined\\002971_jpg.rf.79e7f84b14df6df3028301d34efc9b5e.jpg", - "response": "A group of three people standing in front of a house that is under construction. They are all wearing hard hats and are looking at a blueprint.", - "id": 1053 + "image_path": "G:\\images\\combined\\005597_jpg.rf.cbca37eb2f947efc6296910465c76ec5.jpg", + "response": "A couple of men wearing hard hats sitting in front of a computer.", + "id": 31660 }, { - "image_path": "G:\\images\\combined\\002972_jpg.rf.33a391f80a5fac01fee1aa01c2864865.jpg", - "response": "The image shows two construction workers wearing hard hats and carrying a large piece of metal. They are standing on a construction site, which is filled with dirt and debris. In the background, there is a building that has a sign that says \"AECOM\". There are also some wooden planks and a pile of them on the left side of the image.", - "id": 1054 + "image_path": "G:\\images\\combined\\00559_jpg.rf.0a6b45eeb924ab80be7bdb1b354ac2cc.jpg", + "response": "A group of men standing in a construction site", + "id": 31661 }, { - "image_path": "G:\\images\\combined\\002973_jpg.rf.58e715fb37663a44f58289f0577f4aed.jpg", - "response": "The image shows two workers wearing white helmets and grey clothes who are standing in front of a brown dock and a large rusty platform. The workers are holding blue and white sprayers in their hands. The rusty platform is next to a red tower and a black car is parked under the tower. The workers and the car are on a grey concrete ground.", - "id": 1055 + "image_path": "G:\\images\\combined\\00559_jpg.rf.8eb4587fd7efacde44789790de1906a1.jpg", + "response": "A group of men standing around a construction site", + "id": 31662 }, { - "image_path": "G:\\images\\combined\\002974_jpg.rf.56b58f85bbcab90e9f156066c67c54f2.jpg", - "response": "In the image there are two workers wearing red helmets and black uniforms, they are using surveying equipment. In the background there is a building under construction with a metal framework of a large building. There is also a car in the background.", - "id": 1056 + "image_path": "G:\\images\\combined\\0055f3b771d53fe2.jpg", + "response": "The image shows the front desk of Nutmeg State Federal Credit Union. The desk is brown and wooden and has a large sign above it that says \"Nutmeg State Federal Credit Union\" in black. The letters are arched and the sign is lit up with green lights. There are also two blue lights above the desk. The desk has several items on it including a keyboard, a mouse, a laptop, and a cup. There are also two TVs on the wall, one on the left and one on the right. The TVs are turned on and are displaying information.", + "id": 31663 }, { - "image_path": "G:\\images\\combined\\002975_jpg.rf.5ed5186899cbc0ae23e356db75c5fde2.jpg", - "response": "A group of people sitting around a table.", - "id": 1057 + "image_path": "G:\\images\\combined\\005600_jpg.rf.23f7f802ffdee132c75c1e36ff968618.jpg", + "response": "A group of men working on a ladder.", + "id": 31664 }, { - "image_path": "G:\\images\\combined\\002976_jpg.rf.c94b0abeea2524950ab5d7113ee9a90b.jpg", - "response": "A man wearing a hard hat and work clothes sitting on a beam with a tool in his hand.", - "id": 1058 + "image_path": "G:\\images\\combined\\005601_jpg.rf.ff9ff5dac9e10caaac410192ab51dd64.jpg", + "response": "A group of men standing around a covered object.", + "id": 31665 }, { - "image_path": "G:\\images\\combined\\002978_jpg.rf.a2c618561485cea609bcb2a3490073a3.jpg", - "response": "In the image there is a male construction worker wearing a grey and yellow helmet. He is crouching down between iron rods that are part of a construction site. He is smiling at the camera.", - "id": 1059 + "image_path": "G:\\images\\combined\\005602_jpg.rf.9be8df78d620efa4415cd295f164ae65.jpg", + "response": "A group of men standing on a road in the mountains. Some of the men are wearing hard hats and one is wearing a red one. They are all wearing different colored jackets. In the background are mountains and a red flag.", + "id": 31666 }, { - "image_path": "G:\\images\\combined\\002979_jpg.rf.ac67b583e8959cad4207ab42015c1fdb.jpg", - "response": "Rescue workers and bystanders try to free a construction worker trapped in a trench at a construction site in Tainan, Taiwan, Wednesday, Aug. 27, 2014. The worker was buried up to his waist when a wall collapsed at the construction site in Tainan, Taiwan's largest city, police said. The worker was eventually freed by rescue workers and taken to a hospital, where he was listed in stable condition. (AP Photo/Taiwan News, Chen Chih-kuo) TAIWAN OUT, MANDATORY CREDIT", - "id": 1060 + "image_path": "G:\\images\\combined\\005603_jpg.rf.07966a38d9d588e756b5570bb280e184.jpg", + "response": "In the image, there are two people standing underneath a sign that reads \"\u660e\u5149\u8857\u9053\u5f20\u6e7e\u6751\u8d75\u5bb6\u6e7e\u6392\u6d9d\u5de5\u7a0b\" in black lettering. The sign is red and white and is located in front of a field. The two people are standing quite close to each other and are both wearing black.", + "id": 31667 }, { - "image_path": "G:\\images\\combined\\002980_jpg.rf.0e8bca514df47a69f1c0439d6a3b0b1a.jpg", - "response": "The image shows four people in white working clothes are working at night, clearing the drainage of the water. The ground is wet, with water flowing through a metal grating. On the left is a fence, and in the background is a building with a sign that says \"Sam's Club\".", - "id": 1061 + "image_path": "G:\\images\\combined\\005604_jpg.rf.e6666a320fb5db1fb15c01fbac085e2e.jpg", + "response": "In the image, there is a worker wearing a blue hat and shirt, working on a piece of metal with a welding tool. The worker is focused on their task, and there is a bright\u95ea\u5149 coming from the welding tool. The background is blurred, with a chair and a TV visible in the distance. There are also several bottles and a cup in the scene.", + "id": 31668 }, { - "image_path": "G:\\images\\combined\\002982_jpg.rf.5e3d9de61bef33032bee21419fe149ca.jpg", - "response": "A Cummins employee in China works on an engine.", - "id": 1062 + "image_path": "G:\\images\\combined\\005605_jpg.rf.4990a8466547bae1895adf701a35b30e.jpg", + "response": "A man in a blue shirt and red hard hat is handing a blue bag to a man in a white shirt and white hard hat. Both men are on a construction site.", + "id": 31669 }, { - "image_path": "G:\\images\\combined\\002983_jpg.rf.285e684b76c9ea027fc3fcfa9d72e547.jpg", - "response": "a group of men walking down a dirt road", - "id": 1063 + "image_path": "G:\\images\\combined\\005608_jpg.rf.f9d3a52f62ebb2754c5d63a6d870f2b6.jpg", + "response": "The image shows three workers in blue uniforms and white helmets who are repairing power lines. They are standing on ladders and using tools.", + "id": 31670 }, { - "image_path": "G:\\images\\combined\\002984_jpg.rf.293a2762ba0ed08d77e14727fa8965ee.jpg", - "response": "A construction worker in a yellow hard hat hammers on rebar.", - "id": 1064 + "image_path": "G:\\images\\combined\\00560c3045b4f1d5.jpg", + "response": "A book with a green cover and gold lettering. The title is \"Seaside Walks of a Naturalist\" and there is an illustration of a man raking the shore.", + "id": 31671 }, { - "image_path": "G:\\images\\combined\\002985_jpg.rf.84db61d601a2dd30059bef48781b335a.jpg", - "response": "In the image, a group of rescue workers are working together to remove debris and rescue a person who is trapped. They are using various tools and equipment, including a chainsaw and a jackhammer, to remove the debris and reach the trapped person. Some of the workers are wearing orange and yellow safety jackets, while others are wearing hard hats and helmets. The scene is filled with various tools and equipment, such as a chainsaw, a jackhammer, and other rescue gear. The workers are focused and determined, working together to rescue the trapped person.", - "id": 1065 + "image_path": "G:\\images\\combined\\005610_jpg.rf.524d9eb7729e14da5c2727049000ea10.jpg", + "response": "A man wearing a red hard hat is kneeling down and using a circular saw. Another man is standing behind him.", + "id": 31672 }, { - "image_path": "G:\\images\\combined\\002986_jpg.rf.6fe3c92ee197906a92a6f5413cf3a040.jpg", - "response": "In the image there is a large group of people dressed in hard hats and orange or blue work clothes. They are gathered in a tunnel and are clapping. In the foreground on the right, a man is proposing marriage to a woman, who is holding a small box in her hand. The man is wearing a suit and is also holding a small box.", - "id": 1066 + "image_path": "G:\\images\\combined\\005611_jpg.rf.dfbbf015698c0291caf3861970cfa77f.jpg", + "response": "A group of construction workers in hard hats and safety vests are working on a construction site.", + "id": 31673 }, { - "image_path": "G:\\images\\combined\\002987_jpg.rf.588ba04a6455475c1aec953a1c1ee6d2.jpg", - "response": "Men(658,331),(756,738)(542,343),(617,769)(338,533),(436,858)(63,539),(148,768) standing on a construction site", - "id": 1067 + "image_path": "G:\\images\\combined\\005612_jpg.rf.07e12ab4444eb6d83f7a176151a48612.jpg", + "response": "a group of people wearing hard hats(96,453),(243,669)(2,43),(159,329)(696,413),(771,492)(350,413),(433,491)(498,401),(595,501)(239,429),(349,547)(756,589),(851,749)", + "id": 31674 }, { - "image_path": "G:\\images\\combined\\002989_jpg.rf.4a84268cc886182a1475cbdb421257ac.jpg", - "response": "a group of people standing outside in the rain.", - "id": 1068 + "image_path": "G:\\images\\combined\\005613_jpg.rf.f20e195ba77f5520d0f7d6da46bfc1de.jpg", + "response": "In the image there are two people standing in front of a pile of white pipes. They are both wearing red jackets and white helmets. The person on the left is holding a clipboard. On the right side of the image there is a table with several buckets on it. In the background there is a building under construction.", + "id": 31675 }, { - "image_path": "G:\\images\\combined\\002990_jpg.rf.3f246a1cab48f590f7351f50c5fcd6db.jpg", - "response": "A group of men in hard hats are standing next to a building under construction. They are all wearing different colored hard hats. One man is pointing to something on the building and another man is looking at his cell phone. There is a red and white sign on the building that says \"\u5b89\u5168\u7f51\".", - "id": 1069 + "image_path": "G:\\images\\combined\\005614_jpg.rf.91935374767b1fb7138d856137a077f8.jpg", + "response": "An electrical crew works on power lines in a field.", + "id": 31676 }, { - "image_path": "G:\\images\\combined\\002992_jpg.rf.cbaa8d4b8c13938b661987d17784e960.jpg", - "response": "In the image two workers are working on a wall. They are both wearing orange work suits and yellow helmets. The wall they are working on is white and they are fixing something on it. There is a light on the left side of the wall and the ceiling is brown.", - "id": 1070 + "image_path": "G:\\images\\combined\\005615_jpg.rf.c05288c4fa03a82cb101e8e13d334328.jpg", + "response": "A man in blue coveralls and a blue hat is sitting on some power lines.", + "id": 31677 }, { - "image_path": "G:\\images\\combined\\002993_jpg.rf.8481c88adce3ce6da7a69781594de5e0.jpg", - "response": "The photo shows a group of workers in a tunnel. They are working on a construction site. In front of them, there is a large pile of yellow sand. To the left of the workers, there is a large machine. The workers are wearing red hats and uniforms. One of the workers is holding a large blue pipe in his hand.", - "id": 1071 + "image_path": "G:\\images\\combined\\005616_jpg.rf.1db01b8d2ea24f749d34a1933ab176f6.jpg", + "response": "A construction site with three people working on a building frame. They are working on a blue and white structure with rebar. One person is wearing a yellow shirt and a white hard hat, another person is wearing a blue shirt and a white hard hat, and the third person is wearing a yellow shirt and a green hard hat. They are all working on a metal structure.", + "id": 31678 }, { - "image_path": "G:\\images\\combined\\002994_jpg.rf.72886662a2139ba58ff9641e02394f39.jpg", - "response": "A group of people stand in a field of dirt. They are all wearing business clothes. In the background are a few buildings.", - "id": 1072 + "image_path": "G:\\images\\combined\\005617_jpg.rf.51f7226d59f2c4cfb97edfdf6703fb0a.jpg", + "response": "The image shows a group of seven men wearing red hard hats, with one man on the left and the others in a line to his right. They are all dressed in dark clothes, and the man at the right end is also wearing a black suit. The men are walking on a dirt ground with a row of buildings under construction on their left and ahead. The leftmost building is brown and has four floors, while the others are still under construction and have scaffolding and blue netting. In the background, there are tall buildings of various heights and colors, including a few that are recognizably cranes.", + "id": 31679 }, { - "image_path": "G:\\images\\combined\\0029951a71460d1c.jpg", - "response": "Two grave stones side by side with ivy growing over them.", - "id": 1073 + "image_path": "G:\\images\\combined\\005618_jpg.rf.1e213c88d0b23fd4ca24a498c821e0ca.jpg", + "response": "The picture shows the party secretary, Chen Jinhua, in the middle, with his arm raised, indicating his leadership and management. He is accompanied by Cai Weiguo, the head of the party committee of the construction site, and other leaders of the party committee of the construction site. They are visiting the construction site to investigate and guide work.", + "id": 31680 }, { - "image_path": "G:\\images\\combined\\002995_jpg.rf.6b3faed815afecae2e38b7c91fdf7fc0.jpg", - "response": " Two firemen(401,778),(568,998)(400,339),(823,998) in white helmets(559,426),(700,610)(427,778),(568,938) are digging a hole in the ground.", - "id": 1074 + "image_path": "G:\\images\\combined\\005619_jpg.rf.66a172c18d98ac3829e87b0f8953fc83.jpg", + "response": "A man in a red jacket is hanging from a power line.", + "id": 31681 }, { - "image_path": "G:\\images\\combined\\00299661bf57253d.jpg", - "response": "A clock sitting on a table with a stuffed animal next to it.", - "id": 1075 + "image_path": "G:\\images\\combined\\00561_jpg.rf.0e9ce7fb7fdcdbc48f128c397597a4ab.jpg", + "response": "A man wearing a yellow hard hat pushing a wheelbarrow filled with concrete.", + "id": 31682 }, { - "image_path": "G:\\images\\combined\\002996_jpg.rf.685bc2c499d89d33a40fe2090db3603c.jpg", - "response": "A man wearing a yellow hat and work clothes is standing on a construction site.", - "id": 1076 + "image_path": "G:\\images\\combined\\00561_jpg.rf.b8ef6d001d342b46d25ee0ded61052c1.jpg", + "response": "A man in a yellow hard hat pushing a wheel barrel.", + "id": 31683 }, { - "image_path": "G:\\images\\combined\\002997_jpg.rf.e56d1437b981811611127935e9bc691f.jpg", - "response": "A worker is climbing a ladder and smiling.", - "id": 1077 + "image_path": "G:\\images\\combined\\005620_jpg.rf.0ba9cf9c3f668df9eaad1065689feb61.jpg", + "response": "In the image there is a worker wearing a yellow hard hat, orange safety vest and white gloves. They are working on a pile of scrap metal which includes steel and aluminum. The worker is in front of a large pile of metal and is leaning over a piece of machinery.", + "id": 31684 }, { - "image_path": "G:\\images\\combined\\002998_jpg.rf.29eb4f3e99df50218c2b70db49a41c22.jpg", - "response": "The image shows a construction site with three workers present. They are working on a building that is in the process of being constructed. The building has a green netting on it, and some of the workers are wearing yellow and red helmets. There are also some wood and metal rods scattered around the site.", - "id": 1078 + "image_path": "G:\\images\\combined\\005621_jpg.rf.2f7833bb41680a2758bbdd47e470a03b.jpg", + "response": "a group of people standing around a construction site", + "id": 31685 }, { - "image_path": "G:\\images\\combined\\002999_jpg.rf.8191a160969717c51ccf2f5e2a87414b.jpg", - "response": "Two men in hard hats standing next to each other looking at a mobile device.", - "id": 1079 + "image_path": "G:\\images\\combined\\005622_jpg.rf.c1079ad832b8cec3758de1e2869053d2.jpg", + "response": "A group of people standing on top of a metal staircase.", + "id": 31686 }, { - "image_path": "G:\\images\\combined\\0029cb5bf907f89e.jpg", - "response": "A police car with the words \"Police\" on the hood is parked in front of a building.", - "id": 1080 + "image_path": "G:\\images\\combined\\005623_jpg.rf.90ea82d7d9935ed497584d9b9714d8e2.jpg", + "response": "A construction site with a man in the center wearing a orange hard hat. He is standing in front of a unfinished brick building with a orange crane in the background. There is a unfinished black roof on the left with a black tower in the middle. There are wood planks and concrete everywhere.", + "id": 31687 }, { - "image_path": "G:\\images\\combined\\0029d81d0f4ac3d0.jpg", - "response": "a person holding a white shirt that says no flash pictures please on it", - "id": 1081 + "image_path": "G:\\images\\combined\\005625_jpg.rf.d0485b6954b124bade91853a4cad448e.jpg", + "response": "A worker wearing a yellow hat and black clothes is seen in front of power distribution equipment. The sky is clear and blue.", + "id": 31688 }, { - "image_path": "G:\\images\\combined\\002a1fb97133ae95.jpg", - "response": "A wooden table with a laptop on it and a sign that says \"I'm a musician and I support file sharing\" on the laptop.", - "id": 1082 + "image_path": "G:\\images\\combined\\005627_jpg.rf.ef00ae322cb37d7c61235299fd056913.jpg", + "response": "a man(293,356),(746,995) in an orange jumpsuit(291,423),(613,991) is working in a large hole", + "id": 31689 }, { - "image_path": "G:\\images\\combined\\002a41de49c574f5.jpg", - "response": "A vintage postcard image of the Lenawee County Fair in Adrian, Michigan. The fair is held in a field with several tents set up around the area. There is a large crowd of people walking around the tents and the fair grounds. Some of the people are wearing ties and hats, suggesting a more formal occasion. In the background, there are trees and a few houses scattered around the fairgrounds.", - "id": 1083 + "image_path": "G:\\images\\combined\\005628_jpg.rf.b869934b6b014942850e8919a5982fd0.jpg", + "response": "In the image there are two workers installing solar panels on the roof of a building. The solar panels are dark blue in color and are installed on the roof of the building. The workers are wearing blue helmets and are in the process of installing the solar panels. One of the workers is kneeling on the roof while installing the panels and the other worker is in the background.", + "id": 31690 }, { - "image_path": "G:\\images\\combined\\002a76c5142a4b1c.jpg", - "response": "A run down building with broken windows and bullet holes.", - "id": 1084 + "image_path": "G:\\images\\combined\\005629_jpg.rf.e1b5d405d603a860c9f594f4970a6b2b.jpg", + "response": "A group of workers standing inside a large tunnel.", + "id": 31691 }, { - "image_path": "G:\\images\\combined\\002a7f5f38b19e2f.jpg", - "response": "A man standing at a podium with a screen behind him.", - "id": 1085 + "image_path": "G:\\images\\combined\\00562_jpg.rf.4cbda13cda6c2ab742d53450d40a8264.jpg", + "response": "A pair of men wearing red helmets stand on a pile of rock.", + "id": 31692 }, { - "image_path": "G:\\images\\combined\\002a8796056e1bf5.jpg", - "response": "The image features a large red box sitting on a table. The box is square and has the words \"THE OFFICIAL MICHAEL JACKSON OPUS\" written on the front in black ink. There is also a black silhouette of a man on the cover of the box. The man is in a crouched position and appears to be jumping. The box is open and there is a small amount of black text visible on the inside cover. The image is set in a living room with a Christmas tree in the background. The tree has lights on it and is located in the top right corner of the image. The floor is carpeted and the box is sitting on a wooden table.", - "id": 1086 + "image_path": "G:\\images\\combined\\005630_jpg.rf.67266222285f5f7537729277b77302e4.jpg", + "response": "A worker in a red hard hat is working on a large concrete structure.", + "id": 31693 }, { - "image_path": "G:\\images\\combined\\002b62079277c846.jpg", - "response": "A Casio G-Shock watch in black and white with a green light up logo.", - "id": 1087 + "image_path": "G:\\images\\combined\\005632_jpg.rf.011b91c5249aaf772408c7dac79c96ed.jpg", + "response": "A man in a red suit and a white helmet standing in front of a stack of wooden planks.", + "id": 31694 }, { - "image_path": "G:\\images\\combined\\002b637b560edcc3.jpg", - "response": "The image shows three cans of beer sitting on a couch. The couch is a deep purple color with gold stripes. The cans are lying on their sides and are slightly crushed.", - "id": 1088 + "image_path": "G:\\images\\combined\\005633_jpg.rf.df557ac413f987aa555a947c9058dce7.jpg", + "response": "A group of people walking in front of a tall building.", + "id": 31695 }, { - "image_path": "G:\\images\\combined\\002b6c5e434980df.jpg", - "response": "The image shows a close-up view of a smart device, most likely a phone, with several app icons visible on its screen. The device is running several messaging apps, including Telegram, BBM, and Hangouts. The Telegram app icon is located in the center of the screen, with the BBM app icon to its right and the Hangouts app icon below it. The device is running on Android and has a resolution of 1080 x 1920 pixels.", - "id": 1089 + "image_path": "G:\\images\\combined\\005635e119b9f32f.jpg", + "response": "A small airplane sitting on a dirt field.", + "id": 31696 }, { - "image_path": "G:\\images\\combined\\002c889f155ecfeb.jpg", - "response": "A white building with a red and white BJs Wholesale Club sign on the side.", - "id": 1090 + "image_path": "G:\\images\\combined\\005635_jpg.rf.12d792f7bf85922bfceee851555ec95e.jpg", + "response": "A construction crew of men in blue hard hats are working on a pole.", + "id": 31697 }, { - "image_path": "G:\\images\\combined\\002cc8bb1d50cde0.jpg", - "response": "A postcard of a large white house with a green roof and a garage. The house is set in a forest with many trees around it.", - "id": 1091 + "image_path": "G:\\images\\combined\\005636_jpg.rf.4da856e52407a3b7d8a0e2a93fc43e77.jpg", + "response": "A couple of men working on a telephone pole with many power lines.", + "id": 31698 }, { - "image_path": "G:\\images\\combined\\002ce32086fb7258.jpg", - "response": "A white sign with black lettering in front of a shop.", - "id": 1092 + "image_path": "G:\\images\\combined\\005637_jpg.rf.338aaa9ab03aabde06d8322eea8f0c6f.jpg", + "response": "In the image there is a person wearing a yellow hard hat and a blue jacket, they are crouching down and working with some metal rods. There are several bundles of grey metal rods stacked on the ground around them, and they have a pair of pliers in their hand.", + "id": 31699 }, { - "image_path": "G:\\images\\combined\\002d7d220a042075.jpg", - "response": "A brick wall with a sign advertising a restaurant called Thorns Showcase Lounge. The sign features a picture of a beer bottle and reads \"Home of the World Renowned Bucket of Butt.\"", - "id": 1093 + "image_path": "G:\\images\\combined\\005638_jpg.rf.a6334534e0c6b72b978b10bbd143e6b1.jpg", + "response": "The image shows two workers at a construction site, standing on a red concrete floor and surrounded by metal bars. They are wearing yellow hard hats and blue shirts. One of the workers is on the left, and the other is on the right. They are both focused on the task at hand.", + "id": 31700 }, { - "image_path": "G:\\images\\combined\\002dd4662cbb4ba2.jpg", - "response": "A bike turn out sign on a wooden pole.", - "id": 1094 + "image_path": "G:\\images\\combined\\005639_jpg.rf.8f6f09e500e808cba41eae80577a8c37.jpg", + "response": "In the image, there is a group of people standing around a small SUV. Some of the people are wearing hard hats and one of them is wearing a red hat. There are also two other people wearing white hats. In the background, there is a car and a mountain. A few of the people are holding orange ribbons.", + "id": 31701 }, { - "image_path": "G:\\images\\combined\\002e3dbb6a9cb03c.jpg", - "response": "A group of people in a large auditorium playing a game of Judo.", - "id": 1095 + "image_path": "G:\\images\\combined\\00563_jpg.rf.0fe40558bb48b914b040284686ead382.jpg", + "response": "The image shows a group of seven men standing in front of a building under construction. They are all wearing hard hats, with four men on the left and three on the right. In the center of the group, three men are wearing blue shirts and standing closer together. The ground in front of the group is covered with wood debris.", + "id": 31702 }, { - "image_path": "G:\\images\\combined\\002ed4b2e22b51e6.jpg", - "response": "A bus is parked on the side of the street.", - "id": 1096 + "image_path": "G:\\images\\combined\\005640_jpg.rf.acd1a54e6fee2c7e41d0953cc9a929b1.jpg", + "response": "The image shows three workers in yellow and orange, wearing hard hats and working on a bridge. The bridge is made of concrete and has a brown color. In the background, there is a brown mountain. The sky is blue with clouds.", + "id": 31703 }, { - "image_path": "G:\\images\\combined\\002f860e692757f7.jpg", - "response": "a boy standing in front of a car", - "id": 1097 + "image_path": "G:\\images\\combined\\005641_jpg.rf.419ed4d61a23a058781709be24bd0a95.jpg", + "response": "A group of three men standing and looking at a piece of paper.", + "id": 31704 }, { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.1fbd35fcde5c777bdcbf2a30531b7ff9.jpg", - "response": "A woman in a red shirt is holding a picture.", - "id": 1098 + "image_path": "G:\\images\\combined\\005642_jpg.rf.4e1932144ed26f0aa5272f81f97bf7cc.jpg", + "response": "A construction site with two workers visible in the image. One worker is sitting on a metal bar and the other worker is crouching down. They are both wearing orange hard hats. In the background, there is a city skyline.", + "id": 31705 }, { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.814f757444106b3e2db79fd2944b186a.jpg", - "response": "A woman in a red shirt is holding a picture. She is wearing a black mask. Next to her is a woman in a blue and white shirt. They are both wearing glasses. In front of them is a bottle of water. To the right of the bottle is a cup. Behind them is a yellow poster with Chinese writing on it.", - "id": 1099 + "image_path": "G:\\images\\combined\\005643_jpg.rf.5443109369df4654fe0928c31e567214.jpg", + "response": "A construction site with two workers.", + "id": 31706 }, { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.d9763069fd90dce4855d594387ab4520.jpg", - "response": "A woman in a red shirt is holding a picture.", - "id": 1100 + "image_path": "G:\\images\\combined\\005644_jpg.rf.4031602b996fb8a3b01343ac1750419a.jpg", + "response": "a group of men in white shirts and red hard hats", + "id": 31707 }, { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.df3a5c6455dc9f8026bf3e44819b18b4.jpg", - "response": "A woman in a red shirt is holding a picture. Another woman in a blue shirt is wearing a hat. They are sitting at a table with a bottle of water on it. They are in front of a sign that says \" Hong Kong Subdivided Flats\"", - "id": 1101 + "image_path": "G:\\images\\combined\\005646_jpg.rf.1a863c08499311bc3d9fb8559e1db721.jpg", + "response": "A man wearing a yellow hard hat is carrying a large black tube over his shoulder. He is walking on a dirt road that is being built. There is a yellow piece of heavy machinery in the background. In the foreground, there is a large rock and a piece of rebar.", + "id": 31708 }, { - "image_path": "G:\\images\\combined\\003001_jpg.rf.ea1cb42c342bf0956f6530f86f886c11.jpg", - "response": "An electrician in a blue uniform and yellow hard hat is working on an electrical transformer.", - "id": 1102 + "image_path": "G:\\images\\combined\\005647_jpg.rf.4b6af2a3d103653b74f9b5f6b908c87d.jpg", + "response": "A group of men in suits standing together.", + "id": 31709 }, { - "image_path": "G:\\images\\combined\\003002_jpg.rf.3b59ecbc6f7304689866c7ad0bff1bfe.jpg", - "response": "A man is working on some power lines.", - "id": 1103 + "image_path": "G:\\images\\combined\\005648_jpg.rf.16081b69fa71a2db099e37326e9236a7.jpg", + "response": "A man wearing a yellow helmet and a yellow and grey top is standing in a field. He is smiling at the camera. In the background there is another person wearing a yellow helmet and a yellow and grey top. They are standing in front of a building site with a crane in the background. There are also two other people in the image.", + "id": 31710 }, { - "image_path": "G:\\images\\combined\\003003_jpg.rf.dfcbc6bc3f9f0d18f4f46e92b69ff765.jpg", - "response": "A collage of construction workers building a bridge over a river.", - "id": 1104 + "image_path": "G:\\images\\combined\\005649_jpg.rf.72aa3d7642c435d7941bc3712e73ed57.jpg", + "response": "The image shows two men wearing hard hats standing on a construction site. They are both holding a blueprint, and one of them is pointing towards something.", + "id": 31711 }, { - "image_path": "G:\\images\\combined\\003004_jpg.rf.24d24760ab7e55bf8839ce7157bbad77.jpg", - "response": "A miner with a flashlight in a dark tunnel.", - "id": 1105 + "image_path": "G:\\images\\combined\\00564_jpg.rf.1ffccca0c6bf93871f58d3840cb1700a.jpg", + "response": "In the image two men wearing hard hats, one wearing a mask and both wearing blue jackets are looking at a piece of paper. The paper is yellow and black and has some writing on it. They are standing in a room with a yellow wall and some shelves on the wall. There is a truck in the background. They are also standing in front of a large metal structure.", + "id": 31712 }, { - "image_path": "G:\\images\\combined\\003005_jpg.rf.f590d6ff79bd1de3eb55dc85798b4600.jpg", - "response": "A man in a red jacket and white shoes sitting on a ledge of a building.", - "id": 1106 + "image_path": "G:\\images\\combined\\00564_jpg.rf.c062b602187943cddbe338a105de5872.jpg", + "response": "In the image two men wearing hard hats, one wearing a mask and one not, are looking at a paper. They are in a room with a yellow line on the floor. In the background there is a large factory with a lot of pipes and metal structures. On the right side of the image there is a blue box with two white dials.", + "id": 31713 }, { - "image_path": "G:\\images\\combined\\003006_jpg.rf.d88e2e158507545cb168fd7a2f9845de.jpg", - "response": "An engineer in a blue helmet is talking on his cell phone.", - "id": 1107 + "image_path": "G:\\images\\combined\\005650_jpg.rf.0d592ad43f7725264f25671134903032.jpg", + "response": "A man in a suit and tie standing next to a man in a construction uniform and hard hat. They are standing in front of a stack of stacked cargo containers.", + "id": 31714 }, { - "image_path": "G:\\images\\combined\\003007_jpg.rf.077a9d630ad8f0630cf0db17f806b4fc.jpg", - "response": "A group of men wearing hard hats are standing in a large room under construction. Some of the men are holding handrails. The room has unfinished walls and floor. There are several boxes in the room.", - "id": 1108 + "image_path": "G:\\images\\combined\\005652_jpg.rf.849dc1c1c7510b37030dce9946d7cf9f.jpg", + "response": "A construction worker is sitting in a small space, wearing a yellow hard hat, a green jacket, and an orange vest. They are holding a shovel and appear to be working on a construction site.", + "id": 31715 }, { - "image_path": "G:\\images\\combined\\003008_jpg.rf.ac098dcfa9605a65c04b9137536efb0d.jpg", - "response": "A group of people stand inside a tunnel. They are wearing hard hats and some are wearing light blue shirts. One person is using a tool to chip away at a rock.", - "id": 1109 + "image_path": "G:\\images\\combined\\005653_jpg.rf.fb1ac26c9ff1747d91dfff5df62c237b.jpg", + "response": "The image shows a construction site with several workers dressed in blue uniforms and red helmets. They are standing near a dump truck that is loaded with blue material. In the background, there is a large building under construction with a blue fence around it. There are also two chimneys in the distance. The ground is covered in dirt and there are a few bags lying around.", + "id": 31716 }, { - "image_path": "G:\\images\\combined\\003009_jpg.rf.82adcc710d002a05a5b7f6c5f7e26ee5.jpg", - "response": "A construction site with two workers on it.", - "id": 1110 + "image_path": "G:\\images\\combined\\005656_jpg.rf.edb698a273da0fa0d3fb08f134fb6a2f.jpg", + "response": "The image shows a group of construction workers wearing yellow vests and yellow hats working on a building site. The workers are standing on a concrete foundation and are working on a framework of steel rebar. They are building a structure that resembles a framework for a bridge.", + "id": 31717 }, { - "image_path": "G:\\images\\combined\\003010_jpg.rf.80fac143926a5d4c0ae739bf33615a67.jpg", - "response": "A worker is walking through a shop filled with machinery. The sun is shining through a window and a fan is on the wall. There are many pieces of machinery in the shop, including a large piece of equipment with a red handle. The machinery is on the ground and on tables.", - "id": 1111 + "image_path": "G:\\images\\combined\\005657_jpg.rf.266bd62433fd17698cfa369611e506c1.jpg", + "response": "A man in a blue shirt is holding a white rolled up paper and pointing to the right. He is wearing a blue and white shirt and glasses.", + "id": 31718 }, { - "image_path": "G:\\images\\combined\\003011_jpg.rf.cf137b4f7e5d555ec38009dfd859b5f2.jpg", - "response": "The image shows a construction site in a city. There are two people visible, both wearing green construction gear and helmets. One of the people is standing on a black and white checkered mat, which is placed on the ground. A large red crane is operating in the background, lifting a red object. There are some buildings visible in the background, but the main focus is on the construction site.", - "id": 1112 + "image_path": "G:\\images\\combined\\00565e236c7c8f5f.jpg", + "response": "A case of Coca Cola Life sits on a store shelf.", + "id": 31719 }, { - "image_path": "G:\\images\\combined\\003012_jpg.rf.7159d7aee312287ca6093f8db1a40c93.jpg", - "response": "The image shows a group of people working on a large piece of metal, which is either a ship or a large metal structure. The people are wearing hard hats and masks, and are focused on their tasks. Some of them are using tools such as drills and hammers. The background shows a blue sky with clouds.", - "id": 1113 + "image_path": "G:\\images\\combined\\00565_jpg.rf.1b584fb63cb0e02e80f3c6744fc12fb6.jpg", + "response": "A group of three people standing in a rocky area.", + "id": 31720 }, { - "image_path": "G:\\images\\combined\\003013_jpg.rf.86086842e9420dbfea87e5f4775373e0.jpg", - "response": "A man in a yellow hard hat is building a brick wall. He is wearing a black jacket and has a yellow hard hat on. He is holding a hammer and has a brick in his hand. He is building a wall with red bricks.", - "id": 1114 + "image_path": "G:\\images\\combined\\00565_jpg.rf.732767cf7d09dcaf011172b848d1bf1c.jpg", + "response": "A group of three people standing in a mine.", + "id": 31721 }, { - "image_path": "G:\\images\\combined\\003014_jpg.rf.e3b2da9f3508dfcc7389e7bffd2a5acf.jpg", - "response": "Two engineers discussing over a blueprint in a factory setting", - "id": 1115 + "image_path": "G:\\images\\combined\\005660_jpg.rf.f94f89230ad9470acaf10f43e06c6bd9.jpg", + "response": "In the image there are two people, one is wearing a helmet and is dressed in a construction outfit and is holding a set of plans in his hand, the other person is wearing a suit and is also wearing a helmet. They are both pointing at something in the distance, towards the right. There are three construction cranes in the image, one on the left, one in the middle and one on the right. There is a building under construction in the background, it is a tall building that is mostly built and has a few windows in the middle floors.", + "id": 31722 }, { - "image_path": "G:\\images\\combined\\003015_jpg.rf.446b35f433b0e0fca7f4ddc449ba7da0.jpg", - "response": "A worker in a yellow hard hat is on a metal platform, holding a thick rope with a metal hook at the end of it. The worker is also wearing a black jacket, yellow hard hat, and has a tool belt around their waist. They are standing on a blue metal platform and there is a white and blue wall behind them. The wall has several metal brackets on it and the worker is reaching for one with the rope.", - "id": 1116 + "image_path": "G:\\images\\combined\\005661_jpg.rf.7eb48e4784d09b2514bad56aae2ad904.jpg", + "response": "An electrician repairs a power pole in this undated photo. A worker(224,258),(665,994) from the state-owned China Power Grid Corporation is seen here working on a power line in this undated photo.", + "id": 31723 }, { - "image_path": "G:\\images\\combined\\003016_jpg.rf.43c6083142fb1233664a0bfa4c08699f.jpg", - "response": "The image shows a construction site with several people working on a building that is still in the early stages of construction. The building is surrounded by a fence and there is a sign on it that says \"\u4e2d\u56fd\u6842\u67f3\u9ad8\u901f\u516c\u8def\u6709\u9650\u516c\u53f8\". In the foreground, there is a man kneeling down next to some rebar. Another man is standing to the left of the man who is kneeling, and two more men are standing further back. A yellow and white construction vehicle is parked in the background on the right side of the image.", - "id": 1117 + "image_path": "G:\\images\\combined\\005662_jpg.rf.76e2d6c0e0afb14a0cd1bc5517c6e9b5.jpg", + "response": "The image shows two men dressed in business suits and yellow hard hats, standing in front of a construction site. One man is on a cell phone, while the other is holding a blueprint. They are both wearing sunglasses.", + "id": 31724 }, { - "image_path": "G:\\images\\combined\\003017_jpg.rf.724aec52adcd6645303e2dadcd80caab.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 1118 + "image_path": "G:\\images\\combined\\005663_jpg.rf.fbf7ff7c01562c545cf8cf874ce9c52a.jpg", + "response": "The image shows two workers on a ladder, repairing a power line. They are wearing safety gear, including helmets and gloves. The ladder is placed against a large pole and the workers are standing on it. The city skyline is visible in the background.", + "id": 31725 }, { - "image_path": "G:\\images\\combined\\003019_jpg.rf.c44a65eb46758b06b3a1bb8d02458642.jpg", - "response": "A group of men standing on a construction site wearing hard hats.", - "id": 1119 + "image_path": "G:\\images\\combined\\005664_jpg.rf.c28c57e905614edcbbb2d41f3770de9e.jpg", + "response": "A couple of men in blue uniforms trimming the green bushes around the power pole.", + "id": 31726 }, { - "image_path": "G:\\images\\combined\\003020_jpg.rf.d85e243e1cee2a6fceb49dea5fa482aa.jpg", - "response": "The image shows two female workers posing with brooms in a\u96a7\u9053. They are both wearing yellow hard hats and yellow and gray work clothes. The left worker is a Chinese woman with her hair tied back in a ponytail, while the right worker is an Asian woman with her hair tied in a bun. They both appear to be in their 30s.", - "id": 1120 + "image_path": "G:\\images\\combined\\005665_jpg.rf.33d94b898a0836c170807288a7686688.jpg", + "response": "A man in a wheelchair and a woman stand next to a fence. Both are wearing orange vests and white hard hats. The woman has her hand on a tripod and is looking at a clipboard the man is holding.", + "id": 31727 }, { - "image_path": "G:\\images\\combined\\003021_jpg.rf.e2ce910eaf354f885476cd86f73da9b7.jpg", - "response": "In the image two men are in the water wearing hard hats. One man is on the left and is wearing a red hard hat and is holding a silver helmet in his hands. The other man is on the right and is wearing a blue hard hat. They are in the water up to their knees. In the foreground there is a brown pole and a rope. In the background there is a forest of grass.", - "id": 1121 + "image_path": "G:\\images\\combined\\005666_jpg.rf.123ddfb993182afe4ac433329f927d73.jpg", + "response": "The image shows a group of workers in blue uniforms and yellow hard hats working on a sidewalk at night. They are using tools such as a sledgehammer and a pickaxe.", + "id": 31728 }, { - "image_path": "G:\\images\\combined\\003022_jpg.rf.e6b8bbe72dab2d3b211d68ffda0b2a83.jpg", - "response": "3 workers(668,188),(860,610)(523,174),(713,647)(206,225),(473,840) riding motorcycles(132,372),(483,995)(504,310),(693,701)(676,316),(831,629) on a muddy road", - "id": 1122 + "image_path": "G:\\images\\combined\\005667_jpg.rf.81fe6ee3ef4a4809a2097085f53b9920.jpg", + "response": "The image shows two men wearing yellow hard hats and green and orange work jackets, with their hands in their pockets. They are both holding trowels and are standing on a rooftop near a brick wall. In the background, there is a partially constructed building with a crane working on it. The sky is blue and there are no other people in the image.", + "id": 31729 }, { - "image_path": "G:\\images\\combined\\003023_jpg.rf.d7800df57120b403a2d9e59b44c6815f.jpg", - "response": "A couple of linemen are working on fixing a power line that is down in a rural area.", - "id": 1123 + "image_path": "G:\\images\\combined\\005668_jpg.rf.1dc29649b5ffc337a4d0c9c94dd79421.jpg", + "response": "A group of people working on a construction site.", + "id": 31730 }, { - "image_path": "G:\\images\\combined\\003024_jpg.rf.87321ada772dc5427c0f1dd4fbe843e9.jpg", - "response": "In the image there are three people standing on a pile of rubble. The person on the left is wearing a black and orange uniform and a blue hat. The person in the middle is wearing an orange and blue uniform and a blue hat. The person on the right is also wearing an orange and blue uniform and a blue hat. They are all holding a plan in front of them. In the background there is a yellow and black bulldozer moving rubble.", - "id": 1124 + "image_path": "G:\\images\\combined\\00566_jpg.rf.4d8ada94285647a5322cb6096efafc06.jpg", + "response": "A couple of men working on a building.", + "id": 31731 }, { - "image_path": "G:\\images\\combined\\003025_jpg.rf.bccbb5e4e68210ad168ac77d3f19e051.jpg", - "response": "A worker in a snowy field repairs a power line.", - "id": 1125 + "image_path": "G:\\images\\combined\\00566_jpg.rf.961e9b754c42003b7bf82b3ed76f0573.jpg", + "response": "Two workers(286,149),(482,707)(382,257),(723,878) in red helmets(385,148),(482,245)(464,256),(571,359) are working on a pipe", + "id": 31732 }, { - "image_path": "G:\\images\\combined\\003026_jpg.rf.293b7bc07e4b99b7b342f2942725858a.jpg", - "response": "A group of men working on a construction site.", - "id": 1126 + "image_path": "G:\\images\\combined\\005670_jpg.rf.08a8984de8b6be4759f8dd4a855810c7.jpg", + "response": "The image shows two workers in a coal mine. They are standing in a passageway between two large rocks, wearing black coats and hats. The left worker is holding a large mining tool, while the right worker is holding a flashlight. The passageway is lit by a bright orange light from the right. The miners are wearing black gloves and are focused on their tasks.", + "id": 31733 }, { - "image_path": "G:\\images\\combined\\003027_jpg.rf.da34f7f4debd3e8ab84d5100d8b0e96b.jpg", - "response": "In the image there are three men working on an electrical box. Two of the men are wearing grey jumpsuits and blue helmets. The third man is wearing a grey suit and a blue helmet. They are all wearing the same brand of blue gloves. In the background there is a pile of grey rocks and debris. There is a brown brick building that is half built and has no roof. The building is made of brown bricks and is to the left of the men. There is a green tree in the top left corner of the image.", - "id": 1127 + "image_path": "G:\\images\\combined\\005671_jpg.rf.87ce6218ed91c14277cb26017dc3c2c0.jpg", + "response": "In the image there is a person wearing a helmet and a jacket, who is standing in front of a fire and a large amount of smoke. The person is also standing in front of a large amount of red hot coals.", + "id": 31734 }, { - "image_path": "G:\\images\\combined\\003029_jpg.rf.f167d42609c03705e85f1d186a2cd393.jpg", - "response": " A miner(368,127),(825,996) in a hard hat is talking on a cell phone.", - "id": 1128 + "image_path": "G:\\images\\combined\\005672_jpg.rf.2ca4279bfeeed5d7e7f71eb9d51f4452.jpg", + "response": "A group of men in orange vests and red hats pose for a photo in front of a construction site.", + "id": 31735 }, { - "image_path": "G:\\images\\combined\\003030_jpg.rf.199fadecc403a905cce6cf25c929e623.jpg", - "response": "In the image two men are working on a power line that is on the side of a road. The men are wearing grey jumpsuits and blue helmets. The left most man is wearing a yellow helmet. They are standing on the side of the road and one of them is holding a tool in his right hand. In the background there is a truck. The power line is attached to a wooden post.", - "id": 1129 + "image_path": "G:\\images\\combined\\005674_jpg.rf.0d49a0b947139c761be1fb2858ac2aa1.jpg", + "response": "The image shows a snowy scene with three workers in front of a large metal box containing electrical equipment. The workers are dressed in blue uniforms and have safety gear on. They are standing on a snow-covered ground and appear to be working on the electrical equipment. There are also some trees and a tower in the background.", + "id": 31736 }, { - "image_path": "G:\\images\\combined\\003031_jpg.rf.a009865ebc4c0064491c67e5148f4bfa.jpg", - "response": "A worker in a grey shirt and yellow hat is standing on a ladder next to a brick wall. He is holding a plastic bag in his hand. There is a grey brick wall to the right of him and another behind him. There is a yellow hat on the ground in front of him. In the background, there is a motorcycle to the left and two people to the right. There is a red flag hanging from a building in the background on the left.", - "id": 1130 + "image_path": "G:\\images\\combined\\005675_jpg.rf.ae4e713154dc11e4a1bab8d5c0cdbe96.jpg", + "response": "A man kneeling down with a camera", + "id": 31737 }, { - "image_path": "G:\\images\\combined\\003032_jpg.rf.3fc16d354e27a8d59c6cebafd47a6e18.jpg", - "response": "A worker in a blue uniform and a green hard hat stands on a platform with a yellow top. The worker is looking down at the ground. To the right of the worker are two other workers, one in the background and one closer to the middle of the image. All three workers are wearing safety gear. In the background to the left, there are two other people wearing red and yellow safety gear. In front of the three workers, there is a pile of metal parts. To the right of the image, there is a large metal cylinder with a red top.", - "id": 1131 + "image_path": "G:\\images\\combined\\005676_jpg.rf.bcf2638d1e5b0c06b457a97fcfa4e9e0.jpg", + "response": "In the picture a construction site is seen, with two men wearing green and orange vests. One man is pointing to a piece of paper, which is on the other man's hand. Both of them are wearing red helmets. On the right man's paper, there's a bar code and a black square with a photo and some words.", + "id": 31738 }, { - "image_path": "G:\\images\\combined\\003033_jpg.rf.c95de522cc3e053894617996a7c1bf0f.jpg", - "response": " Construction workers(23,140),(429,988)(243,44),(352,294) in a tunnel, drilling into the rock with a large drill(258,363),(548,522).", - "id": 1132 + "image_path": "G:\\images\\combined\\005677_jpg.rf.0cf45c1245f5202707bf82be1db21b10.jpg", + "response": "The image shows a group of men working on a sidewalk at night. They are all wearing hard hats and some are carrying tools. The men are standing in a patch of grass next to a curb.", + "id": 31739 }, { - "image_path": "G:\\images\\combined\\003034_jpg.rf.a110342be9e44b24192128cfe4205446.jpg", - "response": "A group of men in suits and hard hats stand in a construction site. They are looking at a concrete structure.", - "id": 1133 + "image_path": "G:\\images\\combined\\005678cab46fcec5.jpg", + "response": "A hand pushing a row of dominoes on a wooden table. The words \"Supreme Court of the United States\" are at the bottom of the image. The dominoes are labeled with the names of past supreme court justices. There is a quarter next to the first domino.", + "id": 31740 }, { - "image_path": "G:\\images\\combined\\003035_jpg.rf.b4d2225bfb214793662c995ae40abce5.jpg", - "response": "A man standing next to a large yellow machine.", - "id": 1134 + "image_path": "G:\\images\\combined\\005678_jpg.rf.96597121b2a828ea94985829cd66326f.jpg", + "response": "A man in a hard hat and safety goggles is standing in front of a large fire. He is holding a long metal rod that is glowing orange. The fire is also glowing orange and is spewing out of a large metal pipe. The man is wearing a white shirt and a red hard hat. He also has a beard and is wearing work gloves. The fire is happening in a factory setting and there is a staircase in the background.", + "id": 31741 }, { - "image_path": "G:\\images\\combined\\003036_jpg.rf.a7e2175fe0ee2037c5a1d2a3360a8ec9.jpg", - "response": "A man in an orange vest and orange helmet standing in front of a pile of grey gravel.", - "id": 1135 + "image_path": "G:\\images\\combined\\005680_jpg.rf.92f0e84330edc63679adfdd8889c76df.jpg", + "response": "\u516d\u5b89\u6574\u4f53\u5bb6\u5c45\u603b\u7ecf\u7406\u674e\u6653\u660e\u5148\u751f(468,142),(866,996)\u81f4\u6b22\u8fce\u8bcd", + "id": 31742 }, { - "image_path": "G:\\images\\combined\\003037_jpg.rf.ca666e47bbad0fbfd22233096f5ba118.jpg", - "response": "A man wearing a yellow hard hat and grey work suit standing in front of a pile of dirt with a radio in his hand.", - "id": 1136 + "image_path": "G:\\images\\combined\\005681_jpg.rf.02204e7379a524249d2c7303ee6ed972.jpg", + "response": "A group of workers wearing hard hats and standing in a factory.", + "id": 31743 }, { - "image_path": "G:\\images\\combined\\003038_jpg.rf.529629d67b6edfedf2b49feedfe6237a.jpg", - "response": "A worker is standing in a room filled with smoke and red light. They are wearing a red jacket, a hat, and orange goggles. They are walking towards a large circular machine that is spewing out flames.", - "id": 1137 + "image_path": "G:\\images\\combined\\005682_jpg.rf.a67a81a6feacba9d2c4d8bc57fbe69da.jpg", + "response": "A group of men standing next to each other.", + "id": 31744 }, { - "image_path": "G:\\images\\combined\\003039_jpg.rf.a59a7ee960313e83bc500905f78b2f14.jpg", - "response": "A group of workers are repairing a transformer on a power pole. They are wearing blue uniforms and hard hats. The sky is blue with clouds.", - "id": 1138 + "image_path": "G:\\images\\combined\\005683_jpg.rf.b1d395d3c411ca6464fc32aaa0a48d29.jpg", + "response": " Two workers(238,530),(446,997)(571,385),(718,997) are working on a construction site", + "id": 31745 }, { - "image_path": "G:\\images\\combined\\003040_jpg.rf.029e76cd2b0a561690e29a8089fb57af.jpg", - "response": "A man in a blue shirt and yellow hat is working in a field. He is pulling on a cable while wearing a yellow hat and glasses. He is also wearing a watch on his left wrist.", - "id": 1139 + "image_path": "G:\\images\\combined\\005684_jpg.rf.5a78391969dcdb703f5bc12d2f2285fc.jpg", + "response": "A construction worker in a yellow safety helmet is working on a large wall that is being built. The worker is standing on a walkway that is built on top of the wall they are working on. The wall is made of metal rods and the worker is securing it with a tool in their hand. There is a light on in the background that illuminates the area.", + "id": 31746 }, { - "image_path": "G:\\images\\combined\\003042_jpg.rf.8732f8c20e1eeaedfee7012a101bc89c.jpg", - "response": "a man in a blue shirt and yellow helmet", - "id": 1140 + "image_path": "G:\\images\\combined\\005685_jpg.rf.cf8f9075d7326b703a010afa85ff3ad7.jpg", + "response": "The picture shows a group of seven men standing in front of a large brick building with lots of windows. They are all dressed in black suits. In front of the men is some grey steps and to their right is a patch of bare ground. To the far right of the group is a large tree.", + "id": 31747 }, { - "image_path": "G:\\images\\combined\\003043_jpg.rf.713c046c27fa44bd32f31adfcd00046d.jpg", - "response": "The image shows three workers on a ladder, repairing a transformer at night. The workers are wearing blue work clothes and yellow reflective vests. They are standing on a metal ladder, with two of them at the top of the ladder and one at the bottom. The ladder is positioned against a tall building. In the foreground, a sign that says \" Danger, Keep Out\" is visible.", - "id": 1141 + "image_path": "G:\\images\\combined\\005686_jpg.rf.55ce6e8f247a23e2be58f4de0c841d54.jpg", + "response": "A man in a red hard hat is holding a tape measure and pointing to a spot on a ceiling. Two other men in yellow hard hats and orange safety vests are looking at the ceiling with him.", + "id": 31748 }, { - "image_path": "G:\\images\\combined\\003044_jpg.rf.965662c49025bd50fe2770409b471035.jpg", - "response": "A construction site with a few men standing around. There is a truck on the right side of the image and a few people in the background. One man is wearing a red helmet and pointing to the right. Another man is wearing a pink shirt and a red helmet. There is a green fence in the foreground and a few buildings under construction in the background.", - "id": 1142 + "image_path": "G:\\images\\combined\\005687_jpg.rf.d2fae54007959a3991b3836009ef2129.jpg", + "response": "In the image there are two people wearing red helmets and work clothes, standing next to a yellow car with the words \"\u53d1\u51fa\u660e\u5fb7\" on it. The two people are checking something with a multi-meter.", + "id": 31749 }, { - "image_path": "G:\\images\\combined\\003045_jpg.rf.4471c90c8b8891c9a01703973910ae4d.jpg", - "response": "A group of men in hard hats stand in a circle in a construction area. Some of the men are wearing ties. One man is wearing a red hard hat.", - "id": 1143 + "image_path": "G:\\images\\combined\\005688_jpg.rf.5d492594899b0de132abb8d704e288e5.jpg", + "response": "A coal mine with two men in orange work suits standing in front of a pile of coal.", + "id": 31750 }, { - "image_path": "G:\\images\\combined\\003046_jpg.rf.00fe81c72cb3bc82fa3de10025799279.jpg", - "response": "The image shows a group of workers inside a large\u96a7\u9053. They are standing on some stairs at the bottom of the tunnel, which is lit up blue. The workers are wearing hard hats and some of them are wearing yellow hard hats. One worker is on the left, another is in the middle, and the third is on the right. The first worker is holding a tool in their right hand. The second worker is holding a tool in their left hand. The third worker is also holding a tool in their right hand. The workers are looking forward into the tunnel, which is grey and white in color. The walls of the tunnel are lined with bricks and there are pipes on the right side of the tunnel. The floor of the tunnel is brown and has some wooden planks. The stairs are made of metal and are leading upwards.", - "id": 1144 + "image_path": "G:\\images\\combined\\005689_jpg.rf.2ebeee38edcd06f6217fe2cd04ec0a55.jpg", + "response": "In the image there is a group of people standing on a construction site. They are wearing hard hats and one of them is wearing a red helmet. The person in the foreground is wearing a black jacket with a yellow logo on the left chest and a backpack. The person in the middle is wearing a black jacket with a yellow logo on the left chest and a black hat. The person on the far left is wearing a grey sweatshirt and a black jacket with a yellow logo on the left chest. He is also wearing a white helmet. In the background there is a yellow and grey crane. The ground is made of steel rods and there are green netting in the background.", + "id": 31751 }, { - "image_path": "G:\\images\\combined\\003047_jpg.rf.5aea32dc1edd42d637c69041b508aeb4.jpg", - "response": "a group of people standing in front of some cars", - "id": 1145 + "image_path": "G:\\images\\combined\\005690_jpg.rf.6379a9bf21720b8ba149fb9afae3d21a.jpg", + "response": "A man in a white hard hat and orange safety vest is standing on a yellow ladder. He is looking at the back of a truck. Another man is sitting in the back of the truck.", + "id": 31752 }, { - "image_path": "G:\\images\\combined\\003048_jpg.rf.c056e174cc3ce33122b506ce979b315e.jpg", - "response": "a worker in a blue shirt and red helmet is checking the temperature of a machine with a gauge and a device with a screen.", - "id": 1146 + "image_path": "G:\\images\\combined\\005691_jpg.rf.2fccd8f8de9bc9e66efb7f551747c84c.jpg", + "response": "A group of workers are standing around each other, all wearing hard hats. One man is signing a clipboard held by another man in front of him. A yellow hard hat is being held by a man on the left, who is wearing a red one. Another man on the right is wearing a black and white checkered hard hat. In the background, there is a construction site with a yellow tower and a white building.", + "id": 31753 }, { - "image_path": "G:\\images\\combined\\003049_jpg.rf.48bf2bd9fe101149832c23776534df52.jpg", - "response": "A worker in a purple sweatshirt and a red hard hat smiles while holding a piece of red pipe.", - "id": 1147 + "image_path": "G:\\images\\combined\\005692cba860a493.jpg", + "response": "a car with a steering wheel and a speedometer", + "id": 31754 }, { - "image_path": "G:\\images\\combined\\003050_jpg.rf.db5685ff86af0c4398a583f754db9e4f.jpg", - "response": "A man sitting at a table with a grey and black checkered shirt on.", - "id": 1148 + "image_path": "G:\\images\\combined\\005692_jpg.rf.08f3279ec9dee37fb20d78a8b4c58a36.jpg", + "response": "In the image there are four workers in blue uniforms and white hard hats. They are all working on a power line with tools.", + "id": 31755 }, { - "image_path": "G:\\images\\combined\\003051_jpg.rf.8d4cee13b75b744dce9ec9941d01330b.jpg", - "response": "A group of construction workers wearing yellow and orange vests and hard hats are working on a construction site.", - "id": 1149 + "image_path": "G:\\images\\combined\\005693_jpg.rf.31752c573a7eb4f9a660b8afba99a89e.jpg", + "response": "A man in a brown jacket and white helmet is holding a clipboard and talking to another man in a blue shirt. They are standing next to a white van. There are wind turbines in the background against a blue sky with clouds.", + "id": 31756 }, { - "image_path": "G:\\images\\combined\\003052_jpg.rf.8b9c7f01a113d314954cd9fcee1eae51.jpg", - "response": "A group of workers in blue shirts and hard hats are using a long piece of wood to heave on a red wall.", - "id": 1150 + "image_path": "G:\\images\\combined\\005694_jpg.rf.292af2203cf861bd4ee7200bcff4f0aa.jpg", + "response": "The image shows two workers in a factory who are working on a large cylindrical object. The object is wrapped in green and white material and is sitting on a large white and blue cylinder. The workers are standing around the object, which appears to be some kind of pipe or tube. One of the workers is holding a large white object while the other is looking at the camera. The background is blurred out and there are several logos and text scattered throughout the image.", + "id": 31757 }, { - "image_path": "G:\\images\\combined\\003054_jpg.rf.32e47285007f6db35b86cd5aafd958f7.jpg", - "response": "The image shows a large bridge with a train track going across it. The bridge has a very long arch and it is painted white. There are two workers on the bridge, one on the left and one on the right. They are both wearing yellow jackets and white helmets. One of them is holding a red tool. In front of the workers, there is a red train on the track. To the left of the train, there is a red bag on the ground.", - "id": 1151 + "image_path": "G:\\images\\combined\\005695_jpg.rf.e78463e3db4970e06cfbf2bc45786142.jpg", + "response": "A man standing in front of stacks of blue wood with his arms crossed.", + "id": 31758 }, { - "image_path": "G:\\images\\combined\\003055_jpg.rf.150580ac0acd7bb309f3aa2fc2a4ed38.jpg", - "response": "a group of men standing in front of a van", - "id": 1152 + "image_path": "G:\\images\\combined\\005696_jpg.rf.1dec24875221696cdc14b32041fe5a28.jpg", + "response": "A man in a blue jumpsuit and a blue hard hat is welding a large metal structure. He is wearing red safety gloves and is crouched down while doing so. There is another man in a blue hard hat and safety glasses watching the man welding. There are sparks flying from the welding.", + "id": 31759 }, { - "image_path": "G:\\images\\combined\\003056_jpg.rf.cc14366fa2437a7dc33fddafea5b88a4.jpg", - "response": "A group of workers are working on a construction site.", - "id": 1153 + "image_path": "G:\\images\\combined\\005697_jpg.rf.3faea38c2a49f2d33bd6faed390a625c.jpg", + "response": "a group of people walking down a street", + "id": 31760 }, { - "image_path": "G:\\images\\combined\\003057_jpg.rf.7837d1ca09470e208339805dd5f5f1fa.jpg", - "response": "A group of men working on a large green piece of machinery.", - "id": 1154 + "image_path": "G:\\images\\combined\\005698_jpg.rf.0964f4ddeafa7266e7a9bedefe98c307.jpg", + "response": "a person wearing a orange jacket and a helmet is holding a laptop and is checking the pressure gauge of an oil well.", + "id": 31761 }, { - "image_path": "G:\\images\\combined\\003058_jpg.rf.b5fab60f89b6c3663bfdc1c226629a37.jpg", - "response": "In the image there are three people working on a building construction site. Two of them are wearing yellow and orange helmets and are working on a structure made of blue, red and white bars. They are also wearing blue and white shirts. The third person is sitting on a small ladder wearing a grey helmet and a blue shirt. They are looking at the two other workers. On the left side of the image there is a blue metal bar and a wooden pole.", - "id": 1155 + "image_path": "G:\\images\\combined\\00569_jpg.rf.a98ca6fe27b41619a0374a7655169028.jpg", + "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several cupboards with glass doors. In the middle of the room, there is a whiteboard with a stand. On the right side of the room, there is a pile of cardboard boxes and on the left side, there is a large box.", + "id": 31762 }, { - "image_path": "G:\\images\\combined\\003059_jpg.rf.44ebf02b444d401d4c5c8cf450870a67.jpg", - "response": "In the image there is a group of workers at a construction site. They are working on a road that has large rocks and debris on it. Some of the workers are standing near a large rock that is being moved by a yellow digger. Some of the workers are also standing near a pile of rocks. In the background there is a mountain.", - "id": 1156 + "image_path": "G:\\images\\combined\\00569_jpg.rf.b51de4774ca76eea78b1586e782f8f37.jpg", + "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several windows with white frames. In the foreground, there is a brown wooden cabinet. On the right side of the room, there is a desk with a computer monitor and a keyboard on it. On the floor, there are several cardboard boxes.", + "id": 31763 }, { - "image_path": "G:\\images\\combined\\003060_jpg.rf.8ac65c3f7c688a550eab6c61c27ca994.jpg", - "response": "A group of people standing around a pile of rubble.", - "id": 1157 + "image_path": "G:\\images\\combined\\0056b6f30e44474e.jpg", + "response": "A page with three sections. The first section is titled Composites. The second section is titled Maps. The third section is titled Bounce Location.", + "id": 31764 }, { - "image_path": "G:\\images\\combined\\003061_jpg.rf.7a3c03dae266e49fe6db97b9cf132a9a.jpg", - "response": "A man in an orange jacket and red hat is using a large blue tool to cut through a frozen branch.", - "id": 1158 + "image_path": "G:\\images\\combined\\005700_jpg.rf.d6b897f32557dd87a5f4ee14a397226d.jpg", + "response": "In the image there are two people standing in front of a building under construction. The woman is wearing a yellow vest and a blue helmet and is pointing to something on the right. The man is wearing a blue helmet and a white safety vest and is looking at the woman. They are both holding tablet computers in their hands.", + "id": 31765 }, { - "image_path": "G:\\images\\combined\\003062_jpg.rf.563decb4fc1e252cf7cd34f096aba7b8.jpg", - "response": "A man in a red jacket and orange helmet is holding a walkie talkie. He is standing in front of a truck and some large metal containers.", - "id": 1159 + "image_path": "G:\\images\\combined\\005701_jpg.rf.b60f9fcdb7b3335b975e8ade3c658327.jpg", + "response": "A worker in a safety orange jumpsuit and yellow helmet is suspended in the air while working on a power line.", + "id": 31766 }, { - "image_path": "G:\\images\\combined\\003063_jpg.rf.717d26e119c2536536f50778de647e43.jpg", - "response": "The image shows a construction site with several people standing around a man who is lying on the ground. The man appears to be injured and is being attended to by another man who is holding a first aid kit. The scene is set on a construction site with a large piece of equipment visible in the background.", - "id": 1160 + "image_path": "G:\\images\\combined\\005702_jpg.rf.feb468513b74b12c50e4805c85ba6c44.jpg", + "response": "In the image, there is a construction worker wearing a red hat and holding a walkie-talkie. The worker is standing in front of a yellow scaffolding and a white pole. In the background, there is another worker wearing a red hat and a green shirt. They are standing next to a white pole and a yellow tower. The sky is overcast and there are a few clouds in the sky.", + "id": 31767 }, { - "image_path": "G:\\images\\combined\\003064_jpg.rf.561902c102e9598f3de67197071361b5.jpg", - "response": "A construction site with a building under construction.", - "id": 1161 + "image_path": "G:\\images\\combined\\005703_jpg.rf.566d0f92d78a7bc687c7e7a79161e6d1.jpg", + "response": "The image shows a construction site with a number of workers. There are three workers standing in the middle of the picture, all wearing yellow hard hats. To the left of these workers, there is a man wearing a white helmet and blue overalls, holding a tool. To the right of this worker, there is a man wearing a blue helmet and grey overalls, also holding a tool. To the right of this man, there are two workers lying on the ground, one wearing a green helmet and green overalls, the other wearing a white helmet and grey overalls. The workers are building a structure of red steel rods and there are several bags of concrete scattered around the site.", + "id": 31768 }, { - "image_path": "G:\\images\\combined\\003065_jpg.rf.cf4f7d02a292e0fc9ee3a3aa2199fbec.jpg", - "response": "A man in a blue hard hat is sitting on a suspension bridge, working on a power line. He is wearing a blue uniform and has a tool belt around his waist. The bridge is made of metal and is suspended over a large body of water. The water is a dark green and is filled with islands. In the distance, there is a small town that is surrounded by water. The sky is blue and clear.", - "id": 1162 + "image_path": "G:\\images\\combined\\005704_jpg.rf.b48e87d3c706e067064f224f44294f62.jpg", + "response": "A construction site with two men in front of it.", + "id": 31769 }, { - "image_path": "G:\\images\\combined\\003068_jpg.rf.d97d0cc86e84fe195ebd6cdf93faff18.jpg", - "response": "A man(526,75),(783,999) wearing a yellow helmet(538,75),(643,182) and black jacket(549,242),(758,688) walking on a rocky trail(0,488),(999,997)", - "id": 1163 + "image_path": "G:\\images\\combined\\005706_jpg.rf.58270160575604ad2a6ef11e570d1886.jpg", + "response": "In the image there is a large construction site with three workers present. They are working on a large building that is under construction. The workers are positioned on a platform that is elevated and they are working on a beam. There are pipes and tubes attached to the beam and workers are pouring concrete into them. There is a blue and white hard hat on the ground in the bottom right corner of the image.", + "id": 31770 }, { - "image_path": "G:\\images\\combined\\003069_jpg.rf.3b75ecde5b2bb5870c4bcd0b8b0e1be0.jpg", - "response": "A worker in a yellow hard hat is standing in a large room filled with equipment. He is looking at a machine with a red and white sticker that says OEF. He is standing in front of a machine with a yellow label that says Emergency stop. He is wearing a blue shirt and glasses.", - "id": 1164 + "image_path": "G:\\images\\combined\\005707_jpg.rf.b374786d62f510c0688d865cd221156f.jpg", + "response": "The image shows a group of five men in gray clothes and yellow hard hats, working on a power line. They are wearing gray pants, gray shirts, and yellow safety belts. Four of the men are wearing gray pants and gray shirts, but one man is wearing dark gray pants and a dark gray shirt. They are all wearing yellow hard hats. In the background, there is a building with a glass facade and a balcony. On the right side of the image, there are green plants.", + "id": 31771 }, { - "image_path": "G:\\images\\combined\\00306_jpg.rf.67fe0f9b4705a655784a2d11ab57c344.jpg", - "response": "An engineer wearing an orange safety vest and orange hard hat is sitting on some rocks.", - "id": 1165 + "image_path": "G:\\images\\combined\\005708_jpg.rf.0af79dc0647457c8e5084e2ecbc4cffd.jpg", + "response": "A worker measures the wall of a room.", + "id": 31772 }, { - "image_path": "G:\\images\\combined\\003070_jpg.rf.496d2bd8bbf840a3a33aebc88ec1e197.jpg", - "response": "The image shows a large construction site with two workers. One worker is on the left, wearing a red hard hat and grey shirt, and is sitting on a red metal scaffold. Another worker is on the right, wearing a black shirt and is climbing up a red metal scaffold. They are both in front of a large wall of red metal scaffolding.", - "id": 1166 + "image_path": "G:\\images\\combined\\00570_jpg.rf.04757bf1ffa405c99b06ea22a4284176.jpg", + "response": "A man works at a construction site in Handan, Hebei province, China.", + "id": 31773 }, { - "image_path": "G:\\images\\combined\\003072_jpg.rf.c6c05e50956afe16497084d2dfe5db28.jpg", - "response": "A group of men standing around a construction site.", - "id": 1167 + "image_path": "G:\\images\\combined\\00570_jpg.rf.5d923276ffa3d40a72a30a464eebce8f.jpg", + "response": "A man works at a construction site in Huaibei, Anhui province, China.", + "id": 31774 }, { - "image_path": "G:\\images\\combined\\003073_jpg.rf.4409630d553fd3c4f78e9290914e6447.jpg", - "response": "A steel worker in a green hat is looking at a crucible on a steel works production line.", - "id": 1168 + "image_path": "G:\\images\\combined\\005710_jpg.rf.72a5ab7dc6387b3f60232471f35ecab2.jpg", + "response": "Three men are working on a project, two of them are wearing red shirts and are measuring and cutting a long piece of material while the third man is standing in the background, watching what they are doing.", + "id": 31775 }, { - "image_path": "G:\\images\\combined\\003074_jpg.rf.e8636d6665a9196929ffd3086ab76834.jpg", - "response": "A couple of men working on a pipe together.", - "id": 1169 + "image_path": "G:\\images\\combined\\005711_jpg.rf.40bc59e585b52c8da288cda9d7e9d915.jpg", + "response": "A group of men wearing hard hats.", + "id": 31776 }, { - "image_path": "G:\\images\\combined\\003076_jpg.rf.11343697c760ffefc8a2ef7a5b5c0786.jpg", - "response": "A group of people standing around a bike.", - "id": 1170 + "image_path": "G:\\images\\combined\\005712_jpg.rf.ba5b5078bef1892dcd25852dcc0c19e6.jpg", + "response": "a long red bridge with mountains in the background.", + "id": 31777 }, { - "image_path": "G:\\images\\combined\\003077_jpg.rf.38c8db3f3dd07270a70b19bb356c6ead.jpg", - "response": "a group of men standing around in front of a building", - "id": 1171 + "image_path": "G:\\images\\combined\\005714_jpg.rf.9e42cf63b96c2577bcb2bbe170e5a04e.jpg", + "response": "An electrician working on power lines.", + "id": 31778 }, { - "image_path": "G:\\images\\combined\\003079_jpg.rf.08ce6eb3f0a7a2f934cf670822c51eb7.jpg", - "response": "A man in a grey shirt is in a small grey box.", - "id": 1172 + "image_path": "G:\\images\\combined\\005715_jpg.rf.89a9b758e0bcd72185d3f58ff7e496dc.jpg", + "response": "A group of men are standing in a tunnel. They are all wearing hard hats. Some of them are holding cell phones. One man is pointing towards the ceiling. The tunnel is filled with construction materials.", + "id": 31779 }, { - "image_path": "G:\\images\\combined\\003080_jpg.rf.a074a324412c72969aef29489d9086f9.jpg", - "response": "A man wearing a yellow hard hat and blue shirt is working on a brick wall in the sun. He is crouching down and is holding a trowel.", - "id": 1173 + "image_path": "G:\\images\\combined\\005716_jpg.rf.52bb7222a77c38c1b05308d66786fb3d.jpg", + "response": "A group of rescue workers stand in a large underground tunnel. The tunnel is filled with debris and there are rail tracks in the foreground.", + "id": 31780 }, { - "image_path": "G:\\images\\combined\\003081_jpg.rf.6fb8deb4efd41e730fa3ff0766caf57f.jpg", - "response": "A group of workers are working on an electrical station.", - "id": 1174 + "image_path": "G:\\images\\combined\\005717_jpg.rf.ce5c026d876d06211b842579d93928b8.jpg", + "response": "a group of people standing inside of a building", + "id": 31781 }, { - "image_path": "G:\\images\\combined\\003082_jpg.rf.0df9a704766e318f7a4b8237c6283130.jpg", - "response": "A collage of two pictures, both showing workers in blue uniforms. In the left picture, a worker is on a ladder installing equipment on a power pole. In the right picture, several workers are standing in a construction area, also near power poles.", - "id": 1175 + "image_path": "G:\\images\\combined\\005718_jpg.rf.0723246558fb010a101a9c2ec27fed85.jpg", + "response": "A construction worker in a yellow hard hat is standing in front of a construction vehicle. The worker is holding a long white object. There is another person visible through the window of the construction vehicle.", + "id": 31782 }, { - "image_path": "G:\\images\\combined\\003083_jpg.rf.79ed1fd8adef684274f7e0a57cffdc44.jpg", - "response": "A construction worker in a yellow hard hat and grey jacket is putting up a brick wall.", - "id": 1176 + "image_path": "G:\\images\\combined\\005719_jpg.rf.87909b79c7ec5a93785bb9dba18ad789.jpg", + "response": "A man in grey jumpsuit and red helmet on a power line.", + "id": 31783 }, { - "image_path": "G:\\images\\combined\\003084a19c441534.jpg", - "response": "A small metal tin with a metal lid and a paper label around the middle. The label shows the tin was found in Drayton, New South Wales, Australia. The tin is open and contains a white powder. The powder is spilling out of the tin onto a table.", - "id": 1177 + "image_path": "G:\\images\\combined\\00571_jpg.rf.78cfaa834f867557f4f8f1767d7a4402.jpg", + "response": "A construction worker in a grey shirt and grey pants is showing a tablet to a construction worker in a yellow hard hat and grey shirt. They are both holding a rolled up blueprint.", + "id": 31784 }, { - "image_path": "G:\\images\\combined\\003084_jpg.rf.f361656f69cd37c239bd11794ced9249.jpg", - "response": "A group of six men standing around each other in a construction site.", - "id": 1178 + "image_path": "G:\\images\\combined\\00571_jpg.rf.9304c3d21b89aae92f950c7118ec5d71.jpg", + "response": "A construction worker in a grey shirt and grey pants is showing a man in a yellow hard hat something on a tablet. The man in the yellow hard hat is wearing a yellow hard hat and has a beard. They are both holding a rolled up blueprint.", + "id": 31785 }, { - "image_path": "G:\\images\\combined\\003085_jpg.rf.cdbfb0d4e9ea9e6ab601dcf278e7e7f1.jpg", - "response": "The image shows a group of workers at a construction site. They are working on a building that is under construction. The building has a wooden framework and is surrounded by wooden supports. The workers are standing on the ground, and one of them is holding a large grey rock. The sky is blue and clear.", - "id": 1179 + "image_path": "G:\\images\\combined\\005720_jpg.rf.3b68a2e65b9c5d4a7cc291729f248cfd.jpg", + "response": " A worker(116,92),(882,838) is standing in a hole.", + "id": 31786 }, { - "image_path": "G:\\images\\combined\\003086_jpg.rf.9c62a63bd7897c32b0e69ff54ab72050.jpg", - "response": "The image shows three workers in blue and red uniforms, wearing grey helmets, setting up a grey and red pole in a snowy forest. The pole is labeled \"Jingmei Water Supply\". The workers are in the foreground, and the pole they are working on is in the middle ground. The background is a snowy forest.", - "id": 1180 + "image_path": "G:\\images\\combined\\005721_jpg.rf.681b7482ee6040c1d88d644efa497bdb.jpg", + "response": "The image shows three men in red uniforms and safety gear working on a utility pole. The man in the middle is hanging from the pole while the other two are climbing up to join him. They are all wearing hard hats and the man at the bottom of the pole is also wearing a safety harness. The pole is made of wood and is located near many power lines.", + "id": 31787 }, { - "image_path": "G:\\images\\combined\\003087_jpg.rf.83dbba850541b3468bdbb54fb1d33329.jpg", - "response": "The image shows two workers in black uniforms and blue hats repairing a power line in a forest. They are standing on the power line and one of them is using a tool to make repairs. The power line is attached to a wooden pole and there are several other poles in the background. The workers are surrounded by falling raindrops and the forest in the background is lush and green.", - "id": 1181 + "image_path": "G:\\images\\combined\\005722_jpg.rf.a84e6a10185cd5897dd62e6c6712a766.jpg", + "response": "A worker wearing a yellow hat is using a tool to make adjustments to a metal grid. Another worker is in the background, bending over. They are both wearing blue pants.", + "id": 31788 }, { - "image_path": "G:\\images\\combined\\003088_jpg.rf.e9d9682d4b077b67de0f06753938bc23.jpg", - "response": "A man and woman wearing hard hats and safety vests looking at a blueprint in a warehouse.", - "id": 1182 + "image_path": "G:\\images\\combined\\005723_jpg.rf.bcb35da39e569be01d5626617971984e.jpg", + "response": "The image shows a group of workers wearing yellow and grey hard hats and high visibility vests working on a construction site. They are standing on a dirt patch and there are several wooden poles nearby. Some of the workers are shoveling debris onto a pile. In the background, there is a person walking a dog. The image is taken in an urban setting and there are several people in the background going about their daily activities.", + "id": 31789 }, { - "image_path": "G:\\images\\combined\\003089_jpg.rf.3e44e57ad6c2c33f61e95d461cf9d4d1.jpg", - "response": "A construction worker is pouring concrete onto a metal grid.", - "id": 1183 + "image_path": "G:\\images\\combined\\005724_jpg.rf.05fe0645316e544521bbd51a89ed0614.jpg", + "response": "A man in a yellow hard hat and safety vest is kneeling down next to a tire on a forklift. He is looking at the tire and is in front of a stack of shipping containers.", + "id": 31790 }, { - "image_path": "G:\\images\\combined\\003090_jpg.rf.9a915ec4446ed28578e6952fa831be7c.jpg", - "response": "In the image there are several people wearing hard hats and orange or yellow work vests. They are in a tunnel or pit. One person is kneeling down and holding a large pipe. Another person is kneeling down and holding a large carrot. There are two people in the background, one is wearing a white helmet and a blue vest, the other is wearing a white helmet and a black vest. There is a red curtain on the right side of the image.", - "id": 1184 + "image_path": "G:\\images\\combined\\005725_jpg.rf.5277e68b127209ee748046eb443fccee.jpg", + "response": "A worker in a red shirt and a worker in a yellow shirt are working on a ship. The worker in the red shirt is standing on the side of the ship and holding a tool. The worker in the yellow shirt is in the background and is holding a tool as well. They are both wearing hard hats.", + "id": 31791 }, { - "image_path": "G:\\images\\combined\\003091_jpg.rf.bb70a7067aafcefa8b7a80fd8e4bb6ef.jpg", - "response": "A factory worker in an orange jumpsuit and yellow hard hat is welding something together while sitting on a step.", - "id": 1185 + "image_path": "G:\\images\\combined\\005726_jpg.rf.a4eee9dc632260a456c3bc0add13dc00.jpg", + "response": "Some workers are building a large structure. They are wearing yellow helmets and are working on a structure that resembles a bridge. They are using metal rods and concrete to build the structure. The workers are crouching or kneeling on the ground as they work.", + "id": 31792 }, { - "image_path": "G:\\images\\combined\\003092_jpg.rf.340f23da9d138294839c65bd2fb56c35.jpg", - "response": "A worker talks on his mobile phone as he stands in front of steel coils at a steel market in Wuxi, Jiangsu province, China.", - "id": 1186 + "image_path": "G:\\images\\combined\\005727_jpg.rf.6c3b9ac11a51e54f4950430404f30b5b.jpg", + "response": "The image shows a group of men standing next to each other. They are all wearing black suits and ties. Some of them are closer to the front, while others are further back. In the background, there is a bridge visible. A man on the far right is holding a camera, and has a camera strap around his neck.", + "id": 31793 }, { - "image_path": "G:\\images\\combined\\003093_jpg.rf.6b64f55d3635534a478ceccbbe24da39.jpg", - "response": "A man is working on fixing a power line.", - "id": 1187 + "image_path": "G:\\images\\combined\\005728_jpg.rf.e0c639777e7ab7be30515f745e2e9589.jpg", + "response": "A worker wearing a yellow helmet is using a tool on a piece of wood.", + "id": 31794 }, { - "image_path": "G:\\images\\combined\\003094_jpg.rf.e4e97e8f725c917702d8d5f10715a20c.jpg", - "response": "In the image, two workers are seen working on electrical wires and equipment at a power station. One worker is standing on a ladder and the other one is standing in front of him. Both the workers are wearing blue color helmets and black color uniform. The power station has white color wires and thick wooden poles. The sky appears to be blue with no clouds.", - "id": 1188 + "image_path": "G:\\images\\combined\\005729_jpg.rf.0858fb65e7a7b6e0b1ed15d559ad7724.jpg", + "response": "\u6d77\u53e3\u4e00\u7535\u7f06\u4e95\u5185\u53d1\u751f\u7535\u7f06\u71c3\u70e7\u4e8b\u6545 \u7535\u7f06\u70e7\u7126\u53ea\u5269\u7a7a\u58f3", + "id": 31795 }, { - "image_path": "G:\\images\\combined\\003095_jpg.rf.a2f710421d7e6a8ce6a0948c631c92f4.jpg", - "response": "A group of people standing around a construction site.", - "id": 1189 + "image_path": "G:\\images\\combined\\00572_jpg.rf.abd9d89364a55467bbdf02edb03bc7b6.jpg", + "response": "In the image there are two men wearing blue and yellow hard hats standing in front of a control panel. The control panel has many buttons and switches and two screens.", + "id": 31796 }, { - "image_path": "G:\\images\\combined\\003096_jpg.rf.c62c6a2221e503eff5fc694860f2ba16.jpg", - "response": "A group of men in white jumpsuits and hard hats are holding onto a wire in a river.", - "id": 1190 + "image_path": "G:\\images\\combined\\005730_jpg.rf.79eca749fefcb803963f3f58e83e7c12.jpg", + "response": "A group of workers in hard hats are working on a building.", + "id": 31797 }, { - "image_path": "G:\\images\\combined\\003097_jpg.rf.4daef428d30fe3fd675f9a25ee44fd8c.jpg", - "response": "A worker is in a confined space, wearing a hard hat and holding a rope.", - "id": 1191 + "image_path": "G:\\images\\combined\\005732_jpg.rf.be1328b7c4d090d6b380265aded3af51.jpg", + "response": "The image shows two workers wearing blue uniforms and white helmets who are installing steel roof trusses for a new building. The trusses are light blue in color. In the background, there is a forest of trees and a yellow truck with a white trailer parked on the right side of the image.", + "id": 31798 }, { - "image_path": "G:\\images\\combined\\003098_jpg.rf.a8f755080e69d5a04fdeda385c655272.jpg", - "response": "A construction site with a large building under construction. The building is mostly green and has a red sign on the front. There are several construction workers in the foreground, some standing and some riding a cement mixer.", - "id": 1192 + "image_path": "G:\\images\\combined\\005733_jpg.rf.78836023a5aad6ae59a045af5b2b7149.jpg", + "response": "In the image there are two workers in yellow reflective vests and yellow hard hats, one on the left and one on the right. They are standing on a small yellow crane which is placed in front of a building. The workers are high up, on the third floor of the building. In front of the building, there is a group of people, some are walking, some are standing, and some are talking. There is a white pipe sticking out from the building on the left.", + "id": 31799 }, { - "image_path": "G:\\images\\combined\\003101_jpg.rf.085a461ab8ca17671682542c8b348431.jpg", - "response": "A worker in a white hard hat and wearing a green shirt is working on a machine. The worker is wearing a white glove on their left hand and is looking at a red box with a white screen. The worker is also wearing a pair of safety glasses. The background is a grey wall with many red and black switches.", - "id": 1193 + "image_path": "G:\\images\\combined\\005734_jpg.rf.b6b7af1ec4307f13430493f846ee8cf1.jpg", + "response": "The photo shows workers in yellow uniform and blue cap. They are working on the train tracks. There are seven workers in total, some are installing the tracks, some are checking the tracks, and one is talking to a man in a grey suit. The workers are in a outdoor setting, and the sky is grey. There are also two benches in the scene, one is under a tree on the right side, and the other is on the far left side.", + "id": 31800 }, { - "image_path": "G:\\images\\combined\\003102_jpg.rf.b4a68c26f2aa0506caaebcfe854c2edb.jpg", - "response": "A couple of workers in red uniforms and white helmets are working on a power line tower.", - "id": 1194 + "image_path": "G:\\images\\combined\\005735_jpg.rf.5bb78bc4bb7bc4728ad81824edadb084.jpg", + "response": "The night operation to fix the damaged power line.", + "id": 31801 }, { - "image_path": "G:\\images\\combined\\003103_jpg.rf.37a65d72d8c610fb20cfcd28f04f785e.jpg", - "response": "An engineer in a red hard hat crouches down next to a large piece of machinery. He is wearing a navy blue jumpsuit and has a white corded ear bud in his right ear. He has a black pen in his left hand and is looking at the camera. The background is a green and white machine.", - "id": 1195 + "image_path": "G:\\images\\combined\\005736_jpg.rf.e23d8f10b0dfcf820c569de86bdafeb2.jpg", + "response": "A man in a blue helmet and black jacket is on the back of a yellow truck working on a large transformer. He has a tool in his hand. The truck is parked in front of a tall building.", + "id": 31802 }, { - "image_path": "G:\\images\\combined\\003105_jpg.rf.a4f3cb9a7dd76855f2871fc4a8f16e69.jpg", - "response": "A man wearing a yellow helmet stands in front of a blue wall with the word TATA STEEL on it. The man has a red bag over his shoulder and his hand is on his chest. He is wearing a green shirt.", - "id": 1196 + "image_path": "G:\\images\\combined\\005737_jpg.rf.06ac52b3835602a6a51174300ef4be7a.jpg", + "response": "A man wearing a white hard hat is holding a large set of architectural plans. He is standing in front of a building with a metal structure above his head.", + "id": 31803 }, { - "image_path": "G:\\images\\combined\\003106_jpg.rf.de78935f7c1c6fe3676fd39312d14da3.jpg", - "response": "a group of men standing in front of a green and white building", - "id": 1197 + "image_path": "G:\\images\\combined\\005738_jpg.rf.7ddc8db4eb8c712533aa9673aa8442a4.jpg", + "response": "A man wearing a hard hat is talking to two women who are also wearing hard hats. They are standing in front of a construction site.", + "id": 31804 }, { - "image_path": "G:\\images\\combined\\003107_jpg.rf.d38bd26c2015ec39cc9a0da161002769.jpg", - "response": "a group of men walking in a line", - "id": 1198 + "image_path": "G:\\images\\combined\\005740_jpg.rf.e27aad29419011d3ff23272e92214731.jpg", + "response": "A group of workers are working on a power line.", + "id": 31805 }, { - "image_path": "G:\\images\\combined\\003108_jpg.rf.d676b3b02a00885e9bff26542e794c1f.jpg", - "response": "A line of workers in blue uniforms and yellow hard hats are pulling a black cable through the snow. There are a few cars and a bus in the background. There is also a person in a red jacket in the background.", - "id": 1199 + "image_path": "G:\\images\\combined\\005742_jpg.rf.b74268e4e62562505587bcf20bf7ddd1.jpg", + "response": "The image shows a construction site in a residential area. There are a few workers visible, one of whom is pulling on a long black hose while wearing a blue hat. Another worker is further back, wearing a yellow helmet and holding a long tool. In the background, there is a tall building with balconies on its side. The ground is dirt and there are a few large rocks visible. The sky is blue and there are a few clouds.", + "id": 31806 }, { - "image_path": "G:\\images\\combined\\003109_jpg.rf.4065982449551d6da8ea9b81f3722b72.jpg", - "response": "A man in a yellow hard hat stands on a building under construction. He is wearing a tan jacket and grey pants. He is also wearing green work boots. He is standing on a wooden beam holding a tool in his hand. In the background, there is a river and a city.", - "id": 1200 + "image_path": "G:\\images\\combined\\005743_jpg.rf.7bb1d5f0fbba0473f908b7e19ea88d64.jpg", + "response": "A group of men standing in a field next to a sign.", + "id": 31807 }, { - "image_path": "G:\\images\\combined\\003110_jpg.rf.897832662c5892532baf8c18564fe316.jpg", - "response": "A worker in camouflage pants and a yellow hard hat is sitting on a metal platform. They are holding a large metal pipe and are in the process of lowering it onto a large metal structure. The sky is blue and there are a few clouds in the distance. There is a body of water visible in the background.", - "id": 1201 + "image_path": "G:\\images\\combined\\005744_jpg.rf.78ea8803bb25b257de844bbda99c5a68.jpg", + "response": "A group of people standing around talking.", + "id": 31808 }, { - "image_path": "G:\\images\\combined\\003111_jpg.rf.c5bebafc2b8ab810ac7eab6daa3c1715.jpg", - "response": "The picture shows a group of people gathered around a long row of pipes. Some of the people are wearing suits and one is wearing a blue jacket. In their hands, they are holding items such as a camera, a yellow box, and a pen. Under the pipe, there is a sign that says \" Hangang \". To the right side of the picture, there is a row of four air conditioning units.", - "id": 1202 + "image_path": "G:\\images\\combined\\005745_jpg.rf.4918d48fc98532e4a55c2e59928dc8fd.jpg", + "response": "A group of workers are on top of a building. They are working on a scaffolding around the top of the building. The building has a green roof.", + "id": 31809 }, { - "image_path": "G:\\images\\combined\\003112_jpg.rf.56f7b163b848908f5a6eb47598184d4e.jpg", - "response": "In the image there are two workers wearing brown uniforms and safety harnesses. They are working on a construction site that is mostly under them. They are standing on a red metal framework and appear to be building or repairing it. There are a few cars around the site, one on the left, two in the center, and one on the right. In the background, there is a white van and a bus. The sky is a clear blue color.", - "id": 1203 + "image_path": "G:\\images\\combined\\005747_jpg.rf.2daf7f1238cf40b6c5ecd5ef0f63ef21.jpg", + "response": "A worker(493,367),(824,996) in a red hard hat(643,367),(802,493) is standing in a shaft of a building", + "id": 31810 }, { - "image_path": "G:\\images\\combined\\003113_jpg.rf.0ea85b4464f61c9b0b8fc7caf9a674b7.jpg", - "response": "A group of workers are working on a dark tunnel. They are all wearing hard hats and work clothes. One worker is holding a tool in his right hand, and the other workers are standing around him.", - "id": 1204 + "image_path": "G:\\images\\combined\\005748_jpg.rf.efcc27a3ac6655a9b33438eb567c94bb.jpg", + "response": "In the image there is a man and a woman wearing blue helmets. They are standing in front of a building which is under construction. The building is made of bricks and has a scaffolding around it. The woman has her arms crossed and is looking into the distance. The man has his hand on his chin and is talking to the woman.", + "id": 31811 }, { - "image_path": "G:\\images\\combined\\003114_jpg.rf.0ff5c2ad3050889d36c5fb97349cb054.jpg", - "response": "A construction worker is using a theodolite to take a measurement on a construction site. He is wearing a yellow shirt and a red hard hat. There are other workers in the background.", - "id": 1205 + "image_path": "G:\\images\\combined\\005749_jpg.rf.2219169f6f5448d72700bc1049f205c6.jpg", + "response": "A man wearing a white t-shirt and a white hard hat is holding a yellow tape measure and measuring a wooden structure. The man has short black hair and a faint beard. He is looking intently at the wooden frame he is measuring. The sky is blue and can be seen through the gaps in the wooden structure.", + "id": 31812 }, { - "image_path": "G:\\images\\combined\\003115_jpg.rf.5f04339187069131123f642a2d5c9460.jpg", - "response": "A worker in a blue helmet is up on a power pole, working on the wires.", - "id": 1206 + "image_path": "G:\\images\\combined\\005750_jpg.rf.5aa54d65dc51b24f5b016a5143521ff3.jpg", + "response": "A worker in a factory is using a hose to control the flow of molten metal. The metal is glowing orange and spewing out of a large door. The worker is wearing a white hard hat and a protective apron.", + "id": 31813 }, { - "image_path": "G:\\images\\combined\\003116_jpg.rf.04a35367f8c13f6bd282c9803250a664.jpg", - "response": "A group of workers wearing hard hats are standing on a construction site. They are wearing grey, yellow and orange jackets and pants. Some of them are holding yellow and red sticks. In the distance, there are a few buildings under construction.", - "id": 1207 + "image_path": "G:\\images\\combined\\005751_jpg.rf.fc25df520569cb48e46d02354787de65.jpg", + "response": "A man wearing a red hard hat stands on top of a green metal structure. He is holding a long stick and appears to be working on a building.", + "id": 31814 }, { - "image_path": "G:\\images\\combined\\003117_jpg.rf.db758907e468f99a05879174c7bcd234.jpg", - "response": "In the image there are two workers wearing blue overalls and white helmets. They are working on a yellow tower. One worker is on the left of the tower and is holding a yellow drill. The other worker is on the right of the tower and is holding a blue tool. There is a white bucket on the floor and a black and white helmet on the left side of the tower. In the background, there is a white and green truck.", - "id": 1208 + "image_path": "G:\\images\\combined\\005752_jpg.rf.a3bde25a3a9c6c9a5dbdb2ee2d2d560a.jpg", + "response": "A group of three men wearing yellow hard hats are working on a construction site. They are all wearing black shirts and orange or red pants. They are standing behind a long, large metal pipe or tube that has been bent into a circular shape. They are holding and working with the metal. In the background, there is a large building with lots of windows.", + "id": 31815 }, { - "image_path": "G:\\images\\combined\\003118_jpg.rf.bc0c68ecc89009eaef2809057df3f550.jpg", - "response": "A man wearing a yellow hard hat with a white light on top is holding a flashlight in a tunnel. He is wearing a yellow vest and red headphones around his neck.", - "id": 1209 + "image_path": "G:\\images\\combined\\005753_jpg.rf.99704ed61f6364b66114bcfc9bb77053.jpg", + "response": "Oil worker in red work clothes and helmet at the oil well. poster", + "id": 31816 }, { - "image_path": "G:\\images\\combined\\003119_jpg.rf.28c62eebfe9dc480b0144fc80f21e328.jpg", - "response": "In the image there is a construction worker wearing a white shirt and a white hard hat. They are working on a construction site that appears to be a house being built. The worker is on a wooden platform and is working on a structure that appears to be a large rebar cage for a concrete beam. The sky is a clear, bright blue.", - "id": 1210 + "image_path": "G:\\images\\combined\\005754_jpg.rf.74305afa6ffe66560dda8041604cc0d6.jpg", + "response": "A group of three men standing in a room that is under construction. The man in the middle is wearing an orange safety vest and an orange hard hat. The man on the left is wearing a yellow hard hat and a yellow safety vest. The man on the right is wearing a blue hard hat and a gray long sleeve shirt. The man on the right is also holding a red hard hat.", + "id": 31817 }, { - "image_path": "G:\\images\\combined\\00311da3fafdc55a.jpg", - "response": "A vintage stereoview card showing a crowd of people on a street, possibly at the St. Louis World's Fair.", - "id": 1211 + "image_path": "G:\\images\\combined\\005755_jpg.rf.756ac38b3b1a169bea40e8337e58cdc4.jpg", + "response": "A construction worker(586,404),(687,898) standing in front of a blue fence(314,361),(997,916)", + "id": 31818 }, { - "image_path": "G:\\images\\combined\\003120_jpg.rf.7019f13cada78582acd11860b62162a3.jpg", - "response": "The image shows two construction workers inside a tunnel. They are working on a steel beam that is propped up with wooden planks. The left worker is standing on some planks and is directing the other worker who is using a tool on the steel beam. The workers are wearing yellow and orange vests for safety. The tunnel is filled with smoke and the workers are wearing hard hats and masks.", - "id": 1212 + "image_path": "G:\\images\\combined\\005756_jpg.rf.23668590b36487b6bd9f7b122ea71b06.jpg", + "response": "An electrician is working on a power line.", + "id": 31819 }, { - "image_path": "G:\\images\\combined\\003121_jpg.rf.a8e8d2948185d7cd9f425d8b8ffbf801.jpg", - "response": "In the image two workers are seen wearing orange helmets and work clothes. They are seen working on a power line in the mountains. The mountains are green and have some buildings in between. The sky is blue with clouds.", - "id": 1213 + "image_path": "G:\\images\\combined\\005759_jpg.rf.0c4db03428b098e00c4765640c93286a.jpg", + "response": "The image shows two men working on an electrical panel. One man is on the left and is wearing a blue shirt and a blue hat with a red logo on it. He is holding a blue drill with a yellow handle. The other man is on the right and is wearing a red helmet with a white logo on it. He is wearing a white shirt and is also wearing a blue hat. He is holding a blue cord with a yellow end. The men are standing in front of the electrical panel, which is a metal box filled with wires and other equipment.", + "id": 31820 }, { - "image_path": "G:\\images\\combined\\003122_jpg.rf.58d9d8cf567b8aea4d814c3bbd50de31.jpg", - "response": "A man wearing a hard hat and holding a set of plans in front of a bulldozer.", - "id": 1214 + "image_path": "G:\\images\\combined\\005760_jpg.rf.137a6500e4f6018c5ed7fbe004326e54.jpg", + "response": "A man wearing a yellow shirt and blue pants is working on a roof. He is holding a hammer and has his knee bent and hand on the wooden roof board.", + "id": 31821 }, { - "image_path": "G:\\images\\combined\\003123_jpg.rf.e30653f596890259be7382c68f409157.jpg", - "response": "A worker is seen in a grey top and a blue helmet, working on a power line in the snow.", - "id": 1215 + "image_path": "G:\\images\\combined\\005761_jpg.rf.40ec8a4f74d5c5eeeccf58f17604a9c6.jpg", + "response": " A worker(298,172),(945,867) from the local power company stands on a snow-covered power pole(6,1),(996,999) in the town of Huangling, in China's central Anhui province.", + "id": 31822 }, { - "image_path": "G:\\images\\combined\\003125_jpg.rf.f504e2c80ed40c5f448d0768fb44eb01.jpg", - "response": "A group of men in business attire are standing in front of a large construction site. They are all wearing hard hats. One man is holding a cell phone. To the right of the group, there is a large green and white sign that says \"\u5b89\u5168\u901a\u9053\" in yellow font. Behind the group, there is a large wall with a painting of an expressway. The wall also has a blue and white banner that says \"\u5b89\u5eb7\u5927\u9053\" in yellow font. The whole scene is taking place in front of a large construction site.", - "id": 1216 + "image_path": "G:\\images\\combined\\005762_jpg.rf.6587167b51faf01841244a65b60cbdea.jpg", + "response": "a group of men working on a large object", + "id": 31823 }, { - "image_path": "G:\\images\\combined\\003126_jpg.rf.dff8747e8795edfdac1a127f64edb8ba.jpg", - "response": "A group of people standing around a blueprint.", - "id": 1217 + "image_path": "G:\\images\\combined\\005763_jpg.rf.3665870dc14e577c1cfe802bbc67973b.jpg", + "response": "A group of men standing around a construction site.", + "id": 31824 }, { - "image_path": "G:\\images\\combined\\003127_jpg.rf.0f8e165c410e0a0224d12e3913dda91e.jpg", - "response": "a group of men walking down a street", - "id": 1218 + "image_path": "G:\\images\\combined\\005764_jpg.rf.ca17f909fdbc62ca736fcf5c9b76addb.jpg", + "response": "A man in a yellow helmet is on a boat.", + "id": 31825 }, { - "image_path": "G:\\images\\combined\\003128_jpg.rf.702577135e5925c6b92559d832794341.jpg", - "response": "The image shows a group of workers standing on a large concrete structure, removing a section of it. The workers are wearing safety gear, including hard hats and safety vests. Some of them are using tools to remove the concrete, while others are holding onto the structure to ensure its stability. A crane is also visible in the background, lifting a large piece of concrete.", - "id": 1219 + "image_path": "G:\\images\\combined\\005765_jpg.rf.55005959e2e25b232ea0dabe3aacd725.jpg", + "response": "A couple of men are working on power lines.", + "id": 31826 }, { - "image_path": "G:\\images\\combined\\003129_jpg.rf.bc1246186318506658c533e6e283d247.jpg", - "response": "a man(545,239),(944,996) is working on a construction site", - "id": 1220 + "image_path": "G:\\images\\combined\\005766_jpg.rf.1753af082a9c4373872261237a7ee441.jpg", + "response": "a couple(418,527),(478,739)(469,520),(542,757) of people working in a construction site", + "id": 31827 }, { - "image_path": "G:\\images\\combined\\003130_jpg.rf.f8d8eb73f5ecdb832a0a6f70aeffe036.jpg", - "response": "In the image two workers are seen wearing blue and yellow helmets. One of them is holding a blue helmet in his hand and other is wearing it on his head. They are working in a village with two white residential houses on the left and right side of the image. A black cable is seen on a wooden table in the middle of the image. A man is seen standing on the right side of the table with a black cable in his hand. Another worker is seen on the left side of the table.", - "id": 1221 + "image_path": "G:\\images\\combined\\005767_jpg.rf.81804cbdad728533d10a99f2c7609a8f.jpg", + "response": "In the image there are several workers wearing hard hats and working on a construction site. They are building a large structure with lots of metal rods and rebar. There are also several large buildings visible in the background. One worker is using a tool to cut through some metal rods, creating a spray of white sparks. Another worker is standing nearby, and a third worker is further in the background. The workers are all wearing different colored hard hats, with some wearing yellow hats and others wearing red hats.", + "id": 31828 }, { - "image_path": "G:\\images\\combined\\003132_jpg.rf.7dde890a74fdede11edccfcc9e59fe42.jpg", - "response": "In the picture two workers are seen wearing blue and red color uniforms and helmet. They are repairing the pipes of a big machine which is grey in color. The machine is seen in a room with grey color walls and floor. The room is also having some iron color pipes and fans. The workers are also seen carrying some tools in their hands.", - "id": 1222 + "image_path": "G:\\images\\combined\\005768_jpg.rf.cf8369b77ee24e8aea62c8b10b2b36e7.jpg", + "response": "A man and a woman wearing yellow and orange hard hats are standing on a construction site. They are both carrying wooden planks. In the background, there is a city skyline.", + "id": 31829 }, { - "image_path": "G:\\images\\combined\\003135_jpg.rf.fbd5b843b680549696a5de31adf36722.jpg", - "response": "In the image there are two construction workers wearing yellow helmets and safety gear. They are working on a construction site that has a large white building in the background. They are standing on wooden boards and are in the process of drilling into a large black pole. There are other workers visible in the background.", - "id": 1223 + "image_path": "G:\\images\\combined\\005769_jpg.rf.a7672d6109f174e04e6e91928ac742bb.jpg", + "response": "A group of people working on a bridge.", + "id": 31830 }, { - "image_path": "G:\\images\\combined\\003136_jpg.rf.5d1e2a8e2d042414e53c7a592e9db514.jpg", - "response": " A worker(318,414),(459,887) walks through the tunnel of the Crossrail project, which is currently under construction in central London.", - "id": 1224 + "image_path": "G:\\images\\combined\\005770_jpg.rf.92bf8b1a0bcbb810af6087e3eb98d0d5.jpg", + "response": "An electrician repairs a power line in rural China. He is wearing a black t-shirt, grey pants, a red helmet and a tool belt. He is in the process of replacing a insulator on a power pole.", + "id": 31831 }, { - "image_path": "G:\\images\\combined\\003137_jpg.rf.29fbb670d44abb8fb9913bf107b232a2.jpg", - "response": "A group of people standing on top of a building site.", - "id": 1225 + "image_path": "G:\\images\\combined\\005771_jpg.rf.cca2b0230f94f06b0654dab97afc5947.jpg", + "response": "A group of men in hard hats stand around a man who is gesturing.", + "id": 31832 }, { - "image_path": "G:\\images\\combined\\003138_jpg.rf.5e4888bc570e396e3d81f8316c15eac6.jpg", - "response": "A group of workers are working on a scaffold on a large metal cylinder. They are wearing blue uniforms and red hats. The metal cylinder is grey and it is located outdoors. The sky is blue and there are no clouds.", - "id": 1226 + "image_path": "G:\\images\\combined\\005773_jpg.rf.971331305db8125640128913f67e6d8f.jpg", + "response": "A man sitting on a swing made of rope.", + "id": 31833 }, { - "image_path": "G:\\images\\combined\\003139_jpg.rf.d1d4725f6c2a74962f610d38b718c7fa.jpg", - "response": "A group of people working on a construction site.", - "id": 1227 + "image_path": "G:\\images\\combined\\005775_jpg.rf.941a7aba17c7aeeb27276f16020897f2.jpg", + "response": "In the image, there is a worker in a factory working near a large pile of what looks like gray rocks. The worker is wearing a blue shirt, a hard hat, and orange shoes. The factory setting has a large machine on the left side of the worker and a large rock wall on the right side. The worker is actively working on the rocks with a tool in their hand.", + "id": 31834 }, { - "image_path": "G:\\images\\combined\\003141_jpg.rf.8a3f937ef1513b13509433f3a89c70ca.jpg", - "response": "A group of men standing in front of a large map.", - "id": 1228 + "image_path": "G:\\images\\combined\\005776_jpg.rf.a0ad84a47826612bb6e1d8ff1a05def7.jpg", + "response": "The image shows a construction site in a rural area. There are a few buildings on the right side of the image, and a large hill in the background. In the foreground, a group of workers are standing around a pile of rubble and debris. Some of them are holding shovels and other tools. There is a small orange machine in the middle of the scene, and a few bags are scattered around the area. The sky is overcast, and the workers are wearing hard hats.", + "id": 31835 }, { - "image_path": "G:\\images\\combined\\003143_jpg.rf.24577ce5c2ed97d2384b1ff0bae7390e.jpg", - "response": "A man in coveralls and a yellow hard hat stands on a wooden walkway between stacks of wooden planks and disassembled scaffolding. The ground is covered in scattered wooden planks and debris. The scene is very dark.", - "id": 1229 + "image_path": "G:\\images\\combined\\005777_jpg.rf.682982999851df01ab83a81b5ff92d04.jpg", + "response": "A worker in an orange jacket and yellow hard hat is sitting on a metal ladder that is placed against a metal structure. The worker is holding a pair of pliers in their left hand and is wearing yellow gloves on their hands. The metal structure has several metal wires attached to it. The sky is overcast and the worker is the only person in the image.", + "id": 31836 }, { - "image_path": "G:\\images\\combined\\003144_jpg.rf.3db7298fb09a87a2f659087f64523334.jpg", - "response": "A group of men standing around a construction site.", - "id": 1230 + "image_path": "G:\\images\\combined\\005778_jpg.rf.09fb341e9593b76dc6063338fd0009d6.jpg", + "response": "The image shows a group of men wearing hard hats standing in a large room. Some of the men are wearing yellow hard hats, some are wearing red hard hats, and others are wearing blue or white hard hats. They are gathered around a large piece of machinery, which is located on the left side of the room. The men are standing quite close to the machinery, and some of them are leaning on it. There are also a few men wearing yellow hard hats who are standing further back in the room.", + "id": 31837 }, { - "image_path": "G:\\images\\combined\\003145_jpg.rf.f75415915aa0463909fe70a63634bd70.jpg", - "response": "A group of men working on a roof of a building.", - "id": 1231 + "image_path": "G:\\images\\combined\\005779_jpg.rf.3e803213653d3185f477837d817a7988.jpg", + "response": "a group of people standing around a model of a plant", + "id": 31838 }, { - "image_path": "G:\\images\\combined\\003146_jpg.rf.a52bd884a3c470931c3aed98c91550f4.jpg", - "response": "a group of people standing in a room that has no walls, only wooden beams", - "id": 1232 + "image_path": "G:\\images\\combined\\00577aade86fc041.jpg", + "response": "In the image, there is a large passenger airplane on the runway. The airplane has a blue and white color scheme with gold designs on the tail. The words \"Vietnam Airlines\" are written on the side of the plane. The airplane is on the runway, and it appears to be preparing for takeoff.", + "id": 31839 }, { - "image_path": "G:\\images\\combined\\003148_jpg.rf.61084272d880718132ece6ce0569394f.jpg", - "response": "A group of people working on a ship, two of them are wearing yellow hard hats and brown and blue coveralls, the other one is wearing a blue hat and a white helmet and a uniform with a blue bag. They are pulling on a black rope that is tied around a metal bar.", - "id": 1233 + "image_path": "G:\\images\\combined\\00577_jpg.rf.31b225e45d453547265cc70c81d90094.jpg", + "response": "A woman in a red construction hat and a red shirt with Chinese characters on it is showing a man in a grey suit and a red hard hat a grey door. Another man in a red hard hat is on the right side of the woman.", + "id": 31840 }, { - "image_path": "G:\\images\\combined\\003149_jpg.rf.3d14ec561dbee6d28ee3e854663419dd.jpg", - "response": "A man in a white hard hat is standing in front of a blue and yellow bulldozer. The bulldozer is in the process of demolishing a brick building. There is rubble and debris scattered around the bulldozer and building. The sky is blue with white clouds and the sun is shining brightly.", - "id": 1234 + "image_path": "G:\\images\\combined\\00577_jpg.rf.a8074fcb58fe5149752e23fe978fce70.jpg", + "response": "A woman in a red construction hat and a red coat is showing a man in a blue suit how to use a fire door closer. Another man in a red construction hat is watching the two of them.", + "id": 31841 }, { - "image_path": "G:\\images\\combined\\003150_jpg.rf.0036a868bbd41d212e9a101f3eab7612.jpg", - "response": "A worker in a yellow hard hat crouches on the ground, holding a large orange hose. He is working on a construction site, and there is a pile of red metal rebar next to him. He is wearing a black jacket and blue jeans, and has a orange hard hat on.", - "id": 1235 + "image_path": "G:\\images\\combined\\005780_jpg.rf.1e858558c4f81838b950242c6288fe9e.jpg", + "response": "a group of men wearing hard hats", + "id": 31842 }, { - "image_path": "G:\\images\\combined\\003151_jpg.rf.bc1809fd80d8a429cc951ab6b00ae01b.jpg", - "response": "A man in a white shirt and yellow hat working on power lines.", - "id": 1236 + "image_path": "G:\\images\\combined\\005783_jpg.rf.f7a6c520b2cca4c9e203e559f14a39c2.jpg", + "response": "A power line tower under construction with workers on it.", + "id": 31843 }, { - "image_path": "G:\\images\\combined\\003152_jpg.rf.16a54c041a5596c714e53981becca4b5.jpg", - "response": "The image shows a group of three men in hard hats standing in a large underground cavern. The cavern has a curved ceiling and walls, and is filled with rubble and debris on the floor. The men are standing near the center of the cavern, looking at something.", - "id": 1237 + "image_path": "G:\\images\\combined\\005784_jpg.rf.da0686735610e4d8f2dfd9f95b5a46e0.jpg", + "response": "A man in a blue uniform and a hard hat is leaning over the back of a yellow dump truck. He is wearing white gloves and is next to a pile of rope. There is a car parked in front of a house and another car parked behind the dump truck. There is a white and red fire hydrant next to the house and a stop sign on the left side of the street. There are two people standing in front of the house and another two people standing behind the dump truck.", + "id": 31844 }, { - "image_path": "G:\\images\\combined\\003153_jpg.rf.32cf6af667a8c5a022be265e8aff7221.jpg", - "response": "A group of people standing around pointing at something.", - "id": 1238 + "image_path": "G:\\images\\combined\\005785_jpg.rf.1d86599d9ffc76e9df07e322e546166a.jpg", + "response": "A group of people looking at a model of a city.", + "id": 31845 }, { - "image_path": "G:\\images\\combined\\003154_jpg.rf.756862e34c309645ba35245fa3e4d1f2.jpg", - "response": "A large tree is being built into a brick structure.", - "id": 1239 + "image_path": "G:\\images\\combined\\005786_jpg.rf.f76b70c5a066a3e2d1a95e0eeeba7420.jpg", + "response": "a group of people standing in front of a building", + "id": 31846 }, { - "image_path": "G:\\images\\combined\\003155_jpg.rf.3d89ab176f5ee5ff8afc32043538968c.jpg", - "response": "A woman points to a posterboard with Chinese characters on it. It is standing on a patch of dirt.", - "id": 1240 + "image_path": "G:\\images\\combined\\005787_jpg.rf.021b168687c6e3bc140c00b644f6dde2.jpg", + "response": "A man and a woman wearing hard hats are looking at blueprints.", + "id": 31847 }, { - "image_path": "G:\\images\\combined\\003156_jpg.rf.0b25613792fc859f365386d4bea8c25d.jpg", - "response": "In the image two workers are talking to each other. They are both wearing white helmets and blue overalls. In the background, on the left, there is a red tower crane and on the right a yellow tower crane. Above the workers there are some power lines.", - "id": 1241 + "image_path": "G:\\images\\combined\\005789_jpg.rf.f7fe3408c7c10c7bf18a33be9f133fca.jpg", + "response": "A man in a white shirt is pointing to something in front of him.", + "id": 31848 }, { - "image_path": "G:\\images\\combined\\003157_jpg.rf.20861fe18a77094788183cff59a3b802.jpg", - "response": "In the image there are three workers wearing safety harnesses and hard hats. They are standing on a scaffolding that is placed against a white wall. The scaffolding is made of metal and is in the process of being built. The workers are focused on their task and are dressed in blue work clothes with red and yellow accents. They are also wearing safety boots.", - "id": 1242 + "image_path": "G:\\images\\combined\\00578_jpg.rf.a0f44ab3af247ef8cd303eb9407eaa05.jpg", + "response": "A man wearing a white shirt and a red helmet is using a piece of surveying equipment in a construction area.", + "id": 31849 }, { - "image_path": "G:\\images\\combined\\003158_jpg.rf.b5fdcbac47c98db952bd3157f90c69cb.jpg", - "response": "Four workers in hi-vis vests and hard hats pose for a photo on a construction site.", - "id": 1243 + "image_path": "G:\\images\\combined\\005790_jpg.rf.cc5cdfd9036e67174895d356a5487c64.jpg", + "response": "A group of people standing around a hole in the ground.", + "id": 31850 }, { - "image_path": "G:\\images\\combined\\003159_jpg.rf.1f62f641e4b6419089265ac9e906c83a.jpg", - "response": "In the image two men are working on a construction site. They are both wearing yellow hard hats and the man on the left is holding a shovel and has a red and white checkered shirt. The man on the right is wearing a green shirt and is holding a shovel as well. They are both working on digging up the ground. In the background there is a building under construction with several floors and columns.", - "id": 1244 + "image_path": "G:\\images\\combined\\005791_jpg.rf.fe634d06aeea4ddac11504cb5fb129d3.jpg", + "response": "A man in a fire suit holding a hose in a dark room with smoke", + "id": 31851 }, { - "image_path": "G:\\images\\combined\\003160_jpg.rf.95fa6b7ce7b71d219f0e6abaa8014ea3.jpg", - "response": "A construction worker in a yellow helmet and orange vest is working on a construction site. He is bent over and looking at something on the ground. There is a bird on the ledge of the construction site.", - "id": 1245 + "image_path": "G:\\images\\combined\\005792_jpg.rf.ce46fdabce04055113e3d89159aedd14.jpg", + "response": "A construction site with several people working on it. There are piles of wood and metal in the foreground and a small building in the background.", + "id": 31852 }, { - "image_path": "G:\\images\\combined\\003161_jpg.rf.2c7bf941a76625dfc64a160854449dfb.jpg", - "response": "The image shows a large construction vehicle, a blue Kobelco SK210LC-10 excavator, parked on dirt in the foreground. It is\u6316\u571f\u673a, with a red arrow on the top of the vehicle pointing to the right. In the background, there is a forest of green trees. In front of the forest, there is a blue and white construction sign with yellow and red characters. The sign is placed on a blue wall. The wall is in turn, placed on a white curved wall. The curved wall is part of a tunnel. There are several workers in orange vests standing in the tunnel, working on the wall.", - "id": 1246 + "image_path": "G:\\images\\combined\\005793_jpg.rf.3be64c1de8d0ecb4691e09948ead4b97.jpg", + "response": "A group of workers are working on a train track.", + "id": 31853 }, { - "image_path": "G:\\images\\combined\\003162_jpg.rf.f5cf0186388ffb3cb1ea2c16a6b45522.jpg", - "response": "A man in a black jacket and yellow helmet is holding a stick with a hook on the end. He is looking up at a power line.", - "id": 1247 + "image_path": "G:\\images\\combined\\005794_jpg.rf.9c561697aea719b71b4da274b5bf4d3c.jpg", + "response": "A group of people sitting around a table with papers, water, and a plant on it.", + "id": 31854 }, { - "image_path": "G:\\images\\combined\\003163_jpg.rf.5be6a44ee53df0af31832a0af92e12a6.jpg", - "response": "a group of men standing around a hole in the ground", - "id": 1248 + "image_path": "G:\\images\\combined\\005796_jpg.rf.c2e03239c28b583cee55668bda19004b.jpg", + "response": "Two workers in orange uniform and blue helmet are repairing the power transformer.", + "id": 31855 }, { - "image_path": "G:\\images\\combined\\003168_jpg.rf.d6963f8e58c3e4be14d6fccf1aece556.jpg", - "response": "a group of men(231,183),(766,935) walking", - "id": 1249 + "image_path": "G:\\images\\combined\\005797_jpg.rf.fe9fa289f351bc9757e5e8cf9d10ec26.jpg", + "response": "A worker in a blue hard hat is using a tool to cut through a black cable. Another worker is standing in the background, wearing a white shirt and a yellow hard hat. They are both working under a cement ceiling and are focused on the task at hand.", + "id": 31856 }, { - "image_path": "G:\\images\\combined\\003169_jpg.rf.e4bcd8c55c6d99e00a79d763e1064867.jpg", - "response": "A line of people stand on a construction site, wearing red hard hats. They are all facing away from the camera. In the background, there are several buildings under construction.", - "id": 1250 + "image_path": "G:\\images\\combined\\005798_jpg.rf.981601fbfb10a59da6d23398ee7b69b2.jpg", + "response": "A worker in an orange uniform and yellow hard hat is standing between two large wheels made of black rubber. The wheels are white metal frames with green pipes coming out of them. The worker is also holding a large black tube.", + "id": 31857 }, { - "image_path": "G:\\images\\combined\\003171_jpg.rf.a4431d7c65aba9f6f4b7fcab1c7ce85d.jpg", - "response": "In the image there is a group of people dressed in orange wearing hard hats. They are walking across a bridge that is yellow and made of wood. There is a person on the right side of the image who is walking towards the camera wearing a helmet and carrying a yellow tool bag. There is a red and yellow tower in the background on the right side of the image. In front of the people there is a white fence. On the right side of the image there is a person who is not dressed in work clothes.", - "id": 1251 + "image_path": "G:\\images\\combined\\005799_jpg.rf.9046cd38f2e4c6fea4a8ce96995877da.jpg", + "response": "Men(300,366),(397,786)(509,336),(612,791)(648,344),(751,769)(390,341),(487,783)(785,337),(887,828) in camouflage(301,427),(395,770)(651,407),(750,756)(511,399),(612,777)(391,410),(487,769) standing in front of a bulldozer(111,124),(468,558)", + "id": 31858 }, { - "image_path": "G:\\images\\combined\\003172_jpg.rf.23eb538c5cf8ea0910289030f2b9259a.jpg", - "response": "a group of people standing around a large piece of machinery", - "id": 1252 + "image_path": "G:\\images\\combined\\00579_jpg.rf.70d04fd2c0b16e9765e972f1e8a497be.jpg", + "response": "A group of men in hard hats stand in front of a large concrete structure with power lines above them.", + "id": 31859 }, { - "image_path": "G:\\images\\combined\\003173_jpg.rf.523ca025882382e8ca2e61ee88a723cb.jpg", - "response": "a group of people standing in front of a bus", - "id": 1253 + "image_path": "G:\\images\\combined\\00579_jpg.rf.af91debed4374397e17f668e9f7262d9.jpg", + "response": "A group of men in hard hats stand in front of a large concrete structure with a lot of wires and machinery attached to it. They are standing on the grass and some of them are carrying tools.", + "id": 31860 }, { - "image_path": "G:\\images\\combined\\003174_jpg.rf.4e9b3e94ac260afcddb83d1496c641d7.jpg", - "response": " several people(676,220),(828,958)(79,153),(293,995)(300,222),(418,821)(469,259),(610,955)(802,260),(912,915)(918,253),(1000,936) holding umbrellas(2,3),(177,249)(609,135),(850,303)(203,85),(417,229)(381,162),(605,325)(413,268),(561,378)(615,237),(759,347)", - "id": 1254 + "image_path": "G:\\images\\combined\\0057a54eb95ccae6.jpg", + "response": "A street sign pointing to the Brooklyn Bridge in a city.", + "id": 31861 }, { - "image_path": "G:\\images\\combined\\003175_jpg.rf.e3fc7e50bb8f3c581f59dcd6b7ebdf18.jpg", - "response": "a group of men in hard hats", - "id": 1255 + "image_path": "G:\\images\\combined\\0057ab1c0a3e8a8f.jpg", + "response": "a man in a black shirt reading a magazine", + "id": 31862 }, { - "image_path": "G:\\images\\combined\\003180_jpg.rf.d4bf0dca00b066d6570b75b2d5f3e08d.jpg", - "response": "A group of men working on a building construction site.", - "id": 1256 + "image_path": "G:\\images\\combined\\0057ab2abc09c62f.jpg", + "response": "The image is a cover for a music album titled \"Cracker Barrel Old Country Store Presents J.D. Crowe and the New South\". The cover features a close-up of a banjo, which is the main focus of the image. The banjo is in the foreground and takes up most of the cover. The background is a sepia-toned picture of the banjo, giving the cover a vintage feel. The banjo has a string across the middle and four other strings on either side. The name \"J.D. Crowe and the New South\" is written in blue on the banjo, with \"Cracker Barrel Old Country Store Presents\" written in black above it. The word \"Heritage\" is written in blue below the banjo. The cover also includes the logo of Cracker Barrel and a circular logo that says \"Music Dialogue Heritage\".", + "id": 31863 }, { - "image_path": "G:\\images\\combined\\003181_jpg.rf.10d06c7bfb4147626b1d5437890c4101.jpg", - "response": "The image is a black and white photograph of three men working on a water pipe. The man in the center is holding a pipe wrench and is in the process of connecting a pipe to the water main. The man on the left is crouched down and appears to be digging in the dirt. The man on the right is also crouched down and is wearing a camouflage uniform.", - "id": 1257 + "image_path": "G:\\images\\combined\\005800_jpg.rf.93c04e3253d196378932f07c93e7f138.jpg", + "response": "The image shows a group of men working on a large piece of equipment. They are all wearing blue uniforms and hard hats. In the foreground, a man is sitting on a large black tire while holding a rope wrapped around it. Another man is standing behind him, holding a large wooden pole. A third man is standing to the right of the man in the foreground. They are all working on the equipment together.", + "id": 31864 }, { - "image_path": "G:\\images\\combined\\003182_jpg.rf.80955c779230e30ee4749214fae2c801.jpg", - "response": "In the image there is a construction worker wearing a grey uniform and a white helmet. The construction worker is in the process of pulling on a thick rope which is attached to a metal rebar. The background shows a tall yellow building under construction and another building in the distance that has been completed. There is also a blue shirted man standing below the construction worker and a black and yellow construction vehicle parked further back.", - "id": 1258 + "image_path": "G:\\images\\combined\\005801_jpg.rf.5287faca6eacf4b343a5e98d60d5bd9a.jpg", + "response": "The image shows two men wearing yellow hard hats and looking at a blueprint. The man on the left is wearing a yellow hard hat and a plaid shirt, and is holding the blueprint in his right hand. The man on the right is wearing a yellow hard hat and a brown shirt, and is standing behind the first man. They are both looking at the blueprint, which is crumpled and held in the left hand of the man on the left.", + "id": 31865 }, { - "image_path": "G:\\images\\combined\\003184_jpg.rf.f7e4964bcfc6b18611977a67b04410a3.jpg", - "response": "A group of construction workers standing in front of a car.", - "id": 1259 + "image_path": "G:\\images\\combined\\005802_jpg.rf.696cf226dd1025e8dbcfe93a7f58a557.jpg", + "response": "The image shows two construction workers wearing yellow helmets and orange work clothes, one is on the left and the other is on the right, they are working on a building site. The building site has a silver metal fence on the left and a white sky background. In the foreground, there are several steel bars that the two workers are working on, one of them is using a small tool to adjust the steel bar.", + "id": 31866 }, { - "image_path": "G:\\images\\combined\\003185_jpg.rf.ad47201f9b17ad031382ca9de5468539.jpg", - "response": "A man in a yellow hard hat is lifting a piece of wood over a truck.", - "id": 1260 + "image_path": "G:\\images\\combined\\005803_jpg.rf.6f0edc87668a7177935e75833542496d.jpg", + "response": "The image shows a construction site with three workers. One worker is in the center of the image, wearing a yellow hat and grey shirt. Another worker is in the top left of the image, wearing a white shirt and grey pants. The third worker is in the top right of the image, wearing a white shirt and grey pants. They are all working on the construction site. In front of the workers, there are several rusty metal bars on the ground. To the left of the workers, there is a large pile of wooden boards. On the right side of the image, there are several large containers filled with metal sheets. The whole scene is surrounded by a yellow fence.", + "id": 31867 }, { - "image_path": "G:\\images\\combined\\003186_jpg.rf.e784f9e23096985d70a90025cd9547de.jpg", - "response": "An older man wearing a hard hat and a yellow safety vest stands in front of a large building under construction. He is wearing a suit and tie and appears to be the head of the construction site.", - "id": 1261 + "image_path": "G:\\images\\combined\\005805_jpg.rf.8e343731b5841800bbb0bc824498c99c.jpg", + "response": "A group of three men standing on a construction site looking at a blueprint.", + "id": 31868 }, { - "image_path": "G:\\images\\combined\\003187_jpg.rf.a1b5858e0765dc3ca8595aa9350e69d3.jpg", - "response": "A group of people standing around a ladder.", - "id": 1262 + "image_path": "G:\\images\\combined\\005806_jpg.rf.b16a1be28af9bb701f51acc490f5212f.jpg", + "response": "Men(557,119),(817,997)(338,100),(618,919)(847,113),(998,999) in a construction site", + "id": 31869 }, { - "image_path": "G:\\images\\combined\\003190_jpg.rf.d6b38a68ff4a730abe60bca9ee1907ae.jpg", - "response": "In the image there is a construction site with a worker in a yellow helmet and a yellow crane in the background. The worker is sitting on some scaffolding and there are some wooden planks around him. The sky is blue and the sun is shining.", - "id": 1263 + "image_path": "G:\\images\\combined\\005807_jpg.rf.f72d7c420e84733a5777d061f107ad47.jpg", + "response": "A man(448,593),(607,885) kneeling down in front of two trucks(103,307),(304,476)(604,273),(879,506)", + "id": 31870 }, { - "image_path": "G:\\images\\combined\\003193_jpg.rf.c62281717c1058f2dc28fe403f9a40dc.jpg", - "response": "In the image there are two construction workers wearing yellow jackets and red helmets. They are standing in the mud in front of a construction site. There is a large crane operating in the background. In front of the crane is a truck. Further down the road there are two cars.", - "id": 1264 + "image_path": "G:\\images\\combined\\005809_jpg.rf.037b538f0780418dec8331db205d5d76.jpg", + "response": "A construction worker is on the ground, working on a metal beam while two other workers look over the metal structure they are building. They are all wearing orange vests and red hard hats.", + "id": 31871 }, { - "image_path": "G:\\images\\combined\\003195_jpg.rf.7b0e5fb96e02fd48d0a30872dc86e9fd.jpg", - "response": "A train on a track with workers on a yellow platform above it.", - "id": 1265 + "image_path": "G:\\images\\combined\\00580_jpg.rf.2288a2e22d4c8f1825b0cc2aada22c9a.jpg", + "response": "A group of people working on a construction site.", + "id": 31872 }, { - "image_path": "G:\\images\\combined\\003197_jpg.rf.b8b1a2f370789cf49400b812376ed5b3.jpg", - "response": "A group of people standing around a construction site.", - "id": 1266 + "image_path": "G:\\images\\combined\\00580_jpg.rf.bfc632dce88ce4d7adef2718fb10a564.jpg", + "response": "A group of people working on a construction site.", + "id": 31873 }, { - "image_path": "G:\\images\\combined\\003198_jpg.rf.eafc5a8e447d4b6eefd4727276ff1a85.jpg", - "response": "The image shows a group of people standing in front of a white and blue building with a sign that reads \"Caizhong\". The people are wearing hard hats and some are wearing suits. The background features a hill with trees.", - "id": 1267 + "image_path": "G:\\images\\combined\\005810_jpg.rf.60d46cc77185da5127fb457be70756c1.jpg", + "response": "The image shows a group of construction workers in blue and yellow work clothes and yellow hard hats, working on a building. The building is a large concrete structure with a roof supported by metal beams. The workers are standing on a walkway and working on the roof. There are several wooden planks on the right side of the image, and a pile of them in the background.", + "id": 31874 }, { - "image_path": "G:\\images\\combined\\003199_jpg.rf.9678a1f8fe46c35448b1398737565f16.jpg", - "response": "A group of men working on a building site.", - "id": 1268 + "image_path": "G:\\images\\combined\\005811_jpg.rf.516c1c537adb1e5f9b4fb23de061d218.jpg", + "response": "a group of people standing around talking to each other", + "id": 31875 }, { - "image_path": "G:\\images\\combined\\0031abbb357b6fa1.jpg", - "response": "A wooden boardwalk with the words supercruise written on it.", - "id": 1269 + "image_path": "G:\\images\\combined\\005812_jpg.rf.5d0f895e24754ba1ece3ff25c5cecfe5.jpg", + "response": "In the image, several construction workers are working on a construction site. They are wearing orange and yellow work clothes and helmets. Some of them are standing on the ground, while others are standing on a steel girder. In the foreground, a man is working on a large piece of concrete, and several people are working around him. Some of them are digging into the ground, while others are holding onto a large metal beam. In the background, there is a pile of sand and a pile of bricks.", + "id": 31876 }, { - "image_path": "G:\\images\\combined\\0031bff54b02c9c1.jpg", - "response": "A table with a pink and white table cloth and a pink and white table runner.", - "id": 1270 + "image_path": "G:\\images\\combined\\005813_jpg.rf.fa7fde02230278b19005847e3f2c0988.jpg", + "response": "A couple of men standing in front of a fence.", + "id": 31877 }, { - "image_path": "G:\\images\\combined\\003200_jpg.rf.967b68905ffe5c26bbdfda160fad177f.jpg", - "response": "In the image there are two people standing in front of a large white tank. The tank has a grey metal structure on top of it. The people are both wearing yellow and orange helmets. The man on the left is wearing a yellow shirt and the man on the right is wearing a yellow and orange shirt.", - "id": 1271 + "image_path": "G:\\images\\combined\\005814_jpg.rf.e8547c186bc981e95ab4380123f1fcfe.jpg", + "response": "Two men(680,196),(896,943)(18,89),(587,999) working on a pipe in a cave", + "id": 31878 }, { - "image_path": "G:\\images\\combined\\003201_jpg.rf.6eb3f1c572d72f1fceedfd82571ebf12.jpg", - "response": "A room with a large open doorway. On the left is a large white box with the words '\u76d1\u7406\u67dc' on it. To the right of the cabinet is a woman wearing a black shirt and purple shorts. She is holding a piece of white paper. On the wall behind her is blue text.", - "id": 1272 + "image_path": "G:\\images\\combined\\005815_jpg.rf.f4a925d6c1c011e30371fc4954a7fbc9.jpg", + "response": "a group of men walking across a wooden floor", + "id": 31879 }, { - "image_path": "G:\\images\\combined\\003202_jpg.rf.4ac41458b3073e3a4b9d186e67835751.jpg", - "response": "The image shows two men in blue hard hats and work clothes, looking at an electrical panel. They are both holding a clipboard. The man on the left is taller and is partially visible, only his profile and shoulders are visible. The man on the right is shorter and is looking at the electrical panel. The panel has many wires and knobs.", - "id": 1273 + "image_path": "G:\\images\\combined\\005816_jpg.rf.d340fbc314d1706ad1caf94b607c723b.jpg", + "response": "In the image there is a person wearing a helmet and camouflage clothing, standing next to a concrete structure and cutting through a steel beam with a large grinder. The person is creating many sparks as they work.", + "id": 31880 }, { - "image_path": "G:\\images\\combined\\003203_jpg.rf.d1f294fc8f6fa4ddd7953595ef68df96.jpg", - "response": "A construction site with a few people working. There are yellow metal poles on the ground and a pile of wooden materials. Some people are wearing yellow helmets.", - "id": 1274 + "image_path": "G:\\images\\combined\\005817_jpg.rf.9d71fae899ed3e4538a80f8c9fdbfc06.jpg", + "response": "Some workers are building a structure in the image. There are four workers in total. They are building the structure using bamboo. The building in the background is tall with many windows. The sky is clear.", + "id": 31881 }, { - "image_path": "G:\\images\\combined\\003204_jpg.rf.e0153e7ef15030b75ccb22943332275d.jpg", - "response": "A man in a blue hard hat is kneeling down next to a white pole. The man is wearing a grey jumpsuit and is holding a blue glove. There is another person behind him, dressed in black and wearing a blue hat. They are both crouched down and looking at the pole. The sky is blue and clear in the background. There is snow on the ground around the pole and some grass is visible in the foreground.", - "id": 1275 + "image_path": "G:\\images\\combined\\005818_jpg.rf.3cc93ae9f43e133fd5ac52b5c12f9702.jpg", + "response": "a group of men walking down a sidewalk", + "id": 31882 }, { - "image_path": "G:\\images\\combined\\003205_jpg.rf.c4347931ab993cccd8a010b2767ba5b5.jpg", - "response": "A group of people standing around a pile of dirt.", - "id": 1276 + "image_path": "G:\\images\\combined\\005819_jpg.rf.0ba27ee88a344d04cffa736f1511b843.jpg", + "response": "The image shows five people standing on a construction site. They are all wearing hard hats. One person on the left is holding a banner with the characters \"Fujian Police\". Another person on the left is holding a red piece of paper with the characters \"shou sui\". Two people on the right are holding books. The background shows a portion of the construction site with steel frameworks.", + "id": 31883 }, { - "image_path": "G:\\images\\combined\\003206_jpg.rf.bff906150917c2d048f00d2c877a663d.jpg", - "response": "The image shows a group of rescue workers in red uniforms working together to rescue a person trapped in a cave. The person is located on the right side of the image, and there are several rescue workers surrounding them. Some of the workers are kneeling on the ground, while others are standing. They are all wearing white helmets and appear to be focused on the task at hand. In the background, there are some rocks and a piece of machinery that appears to be used for rescue operations. The photo is taken at night, as indicated by the dark background.", - "id": 1277 + "image_path": "G:\\images\\combined\\00581_jpg.rf.799417445d31c0788b0e6da29b989c74.jpg", + "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", + "id": 31884 }, { - "image_path": "G:\\images\\combined\\003208_jpg.rf.64735861379b81547b6a29ac2596a271.jpg", - "response": "A group of people working on a construction site.", - "id": 1278 + "image_path": "G:\\images\\combined\\00581_jpg.rf.853c199bcd73717fc05c2c7b02d097e3.jpg", + "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", + "id": 31885 }, { - "image_path": "G:\\images\\combined\\003210_jpg.rf.283e2346263bcdb08c0338a840acd41d.jpg", - "response": "A man wearing a yellow hard hat and work clothes is working on a construction site. He is laying bricks or cinder blocks on the ground. In the background, there is a bulldozer and a yellow truck. There are also some buildings under construction. The sky is blue with white clouds.", - "id": 1279 + "image_path": "G:\\images\\combined\\005820_jpg.rf.397c0c5a6c215a84176d19621c500442.jpg", + "response": "In the image, two men are standing in the middle of a building under construction. The man on the left is wearing a red hard hat and neon yellow vest. The man on the right is wearing a yellow hard hat and a neon yellow vest. They are both holding tools. The man on the right is also holding a clipboard with papers on it. They are both looking at the camera. The walls of the building are made of wood and the floor is unfinished. There are also two bicycles in the background.", + "id": 31886 }, { - "image_path": "G:\\images\\combined\\003211_jpg.rf.4722b94e653d08e9db5a6c5c3899099c.jpg", - "response": " An engineer(83,189),(854,998) poses for a photo in front of a large metal door.", - "id": 1280 + "image_path": "G:\\images\\combined\\005821_jpg.rf.4813594ae8826d6bd3151b0ae61ed6bb.jpg", + "response": "A construction worker on scaffolding working on a building.", + "id": 31887 }, { - "image_path": "G:\\images\\combined\\003212_jpg.rf.445b2bcc322a1a14b09d66bfaeef3ccb.jpg", - "response": "The image shows a construction site in China. There are two workers on the green metal scaffolding, one on the left and one on the right. They are wearing white T-shirts and grey pants. There is a red banner with white writing on the scaffolding. It says \"Time to\u6ce8\u610f safety,\u5904\u7406\u9884 \u9632\u4e8b\u6545\". The banner is placed horizontally and spans the width of the scaffolding. The background is a construction of concrete pillars and beams.", - "id": 1281 + "image_path": "G:\\images\\combined\\005823_jpg.rf.2ea57835f0f76fa04ea517fd1dfb1e50.jpg", + "response": "A Chinese steelworker is shown crying in this undated photo. The photo, taken by a photographer for the official China Daily newspaper, shows the worker wiping away tears as he operates a crane at a steel factory in Hebei province. The photo was published on the newspaper's website on September 28, 2009. The photo is said to have been taken to highlight the difficulties faced by Chinese workers, especially those in heavy industry.", + "id": 31888 }, { - "image_path": "G:\\images\\combined\\003213_jpg.rf.b97ce480f6627989557e2e02488c1aba.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats, adjusting wires on a metal frame. They are both working on the same task and are focused on their work.", - "id": 1282 + "image_path": "G:\\images\\combined\\0058241de1f2e430.jpg", + "response": "A baseball player wearing a green jersey with the number twenty nine on the back.", + "id": 31889 }, { - "image_path": "G:\\images\\combined\\003214_jpg.rf.5c9a4c71ca1f447dc33bfad42cc05f89.jpg", - "response": "A couple of workers are on a cherry picker working on some power lines.", - "id": 1283 + "image_path": "G:\\images\\combined\\005825_jpg.rf.87aaa0707af47b1d749098b612404c45.jpg", + "response": "A man in a blue shirt and a yellow hat is carrying a ladder. A woman in a black and white striped shirt is carrying a box. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A", + "id": 31890 }, { - "image_path": "G:\\images\\combined\\003215_jpg.rf.62069d2ba54e81906a3b9b6d838f79b3.jpg", - "response": "A group of four people standing in front of a yellow machine with red stripes.", - "id": 1284 + "image_path": "G:\\images\\combined\\005826_jpg.rf.891659dc3a9094ab5175d9f8db5370b0.jpg", + "response": "A construction site with several people working on it.", + "id": 31891 }, { - "image_path": "G:\\images\\combined\\003216_jpg.rf.7ed7e1dbdfb8e055ff10aeb0b2fa904a.jpg", - "response": "A man in a white hard hat is sitting on a ladder. Another man is standing on the ladder and a third man is standing on the ground. They are working on a large building with many pillars.", - "id": 1285 + "image_path": "G:\\images\\combined\\005827_jpg.rf.90756cf4bcd48c2f068f4dc94d579d3b.jpg", + "response": "A group of men standing around each other.", + "id": 31892 }, { - "image_path": "G:\\images\\combined\\003217_jpg.rf.e0d9e249cc66b16b08f3862dbf374b2e.jpg", - "response": "a group of men standing around a board", - "id": 1286 + "image_path": "G:\\images\\combined\\005828_jpg.rf.04412046f0b5dccf9831a213db24ac81.jpg", + "response": "The image shows two men standing on a wooden fence, going over blueprints in a field. The field has several solar panels in it. The men are both wearing white helmets and the man on the left is wearing a white shirt and a white helmet. The man on the right is wearing a blue shirt and a white helmet.", + "id": 31893 }, { - "image_path": "G:\\images\\combined\\003219_jpg.rf.985309e33aab014c2ce831d66b6c9cab.jpg", - "response": "In the image there are two men wearing orange protective clothing and white hard hats. They are crouched down next to train tracks. In the background there is a yellow tractor. To the left of the tractor there is a large black container.", - "id": 1287 + "image_path": "G:\\images\\combined\\005829_jpg.rf.54ae1f2dd9fcafee792881500026890d.jpg", + "response": "\u8003\u53e4\u4eba\u5458\u5728\u5bf9\u6c49\u664b\u5d16\u5893\u8fdb\u884c\u53d1\u6398\u3002\u8bb0\u8005\u6628\u65e5\u4ece\u5e02\u6587\u7269\u8003\u53e4\u7814\u7a76\u6240\u83b7\u6089,\u6211\u5e02\u53d1\u73b0\u7684\u6c49\u664b\u5d16\u5893\u7fa4,\u662f\u76ee\u524d\u6211\u5e02\u53d1\u73b0\u7684\u5e74\u4ee3\u6700\u65e9\u7684\u5d16\u5893\u3002", + "id": 31894 }, { - "image_path": "G:\\images\\combined\\003220_jpg.rf.07feaa27f5c9a747677d6b825fb3f14a.jpg", - "response": "A group of three men working on a red piece of machinery.", - "id": 1288 + "image_path": "G:\\images\\combined\\00582_jpg.rf.7a724035aba6416ff9b461e6642960b7.jpg", + "response": "a group of men standing on a dirt road", + "id": 31895 }, { - "image_path": "G:\\images\\combined\\003221_jpg.rf.70abd545193cbce692b0fd9457980827.jpg", - "response": "A man and a woman wearing red helmets stand in front of a construction site. The woman is holding a cell phone to her ear. The man is holding a red bucket filled with various tools.", - "id": 1289 + "image_path": "G:\\images\\combined\\00582_jpg.rf.9f966489f23aedbab342470e506cd898.jpg", + "response": "A group of four men standing on a dirt road.", + "id": 31896 }, { - "image_path": "G:\\images\\combined\\003223_jpg.rf.be7168cb80e12a91c0d9d0d26ad8fc16.jpg", - "response": "A construction site with a worker operating a machine that is cutting metal.", - "id": 1290 + "image_path": "G:\\images\\combined\\005830_jpg.rf.fabc4cc4c77f111881d27943717eab5a.jpg", + "response": "In the image you can see a group of men standing in front of a construction site. They are all wearing hard hats. Some of them are wearing suits and ties. In the background you can see several cranes working on the construction. To the right of the group of men there is a small body of water, which is fenced off.", + "id": 31897 }, { - "image_path": "G:\\images\\combined\\003224_jpg.rf.0f0d7e2493ad96883a9ed9eecff35b58.jpg", - "response": "An electrician is working on a power line.", - "id": 1291 + "image_path": "G:\\images\\combined\\005831_jpg.rf.6ae7efc78997992cf22b721167e9dddc.jpg", + "response": "A construction site with multiple workers wearing hard hats and working on a building that has not yet been completed.", + "id": 31898 }, { - "image_path": "G:\\images\\combined\\003225_jpg.rf.ff972478f1bb35668a2d38c89ee7983a.jpg", - "response": "In the image, a worker is using a demolition hammer to perform maintenance on a bridge. The worker is wearing a yellow helmet and a mask to protect themselves from debris and dust. They are standing on a ladder and are in the process of drilling into the concrete of the bridge. The bridge itself is grey in color and has a concrete support column on the right side of the image.", - "id": 1292 + "image_path": "G:\\images\\combined\\005832_jpg.rf.3509ec74a51b696fc05dfaacb158a305.jpg", + "response": "The image shows a group of men walking across a construction site. They are all dressed in business attire, with some wearing suits and others appearing more casual in button-down shirts and slacks. The men are walking across a large patch of dirt, with a few small buildings and a car visible in the background. The sky is overcast, with grey clouds filling the sky. The ground is covered in small rocks and dirt, and the overall atmosphere appears to be one of construction and development.", + "id": 31899 }, { - "image_path": "G:\\images\\combined\\003226_jpg.rf.ebbd67f8eea9302cebaee29a91c46789.jpg", - "response": "The image shows two men standing next to a large roll of what appears to be metal. Both men are wearing hard hats, and one of them is wearing a red hard hat while the other is wearing a yellow one. They seem to be discussing something related to the metal.", - "id": 1293 + "image_path": "G:\\images\\combined\\005833_jpg.rf.9bd790de23f125872cc275b08bca8f3a.jpg", + "response": "In the image there are several construction workers at a construction site. They are working on a foundation for a building. Some of the workers are wearing yellow hard hats and there is a white hard hat on the ground. There is a person on the far left wearing a green shirt and grey pants. They are standing on a wooden platform. There is a person in the bottom right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top left corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well.", + "id": 31900 }, { - "image_path": "G:\\images\\combined\\003227_jpg.rf.55c7c13460e5f352449d48e1a53232f4.jpg", - "response": "man(419,188),(684,980)", - "id": 1294 + "image_path": "G:\\images\\combined\\005834_jpg.rf.4605f2876362137eb795205c109cc734.jpg", + "response": "a group of people standing around a dirt field", + "id": 31901 }, { - "image_path": "G:\\images\\combined\\003228_jpg.rf.9aa0b7d75272185e12165eafcd28e18c.jpg", - "response": "A man in orange standing in front of a bulldozer on a construction site.", - "id": 1295 + "image_path": "G:\\images\\combined\\005835_jpg.rf.3c98b527e77450b813afbcd988284fc1.jpg", + "response": "A group of people working on a construction site.", + "id": 31902 }, { - "image_path": "G:\\images\\combined\\003229_jpg.rf.e1ebd46e8d9002e599cb61b8e1d17c9d.jpg", - "response": "A group of construction workers wearing safety gear stand on a platform.", - "id": 1296 + "image_path": "G:\\images\\combined\\005836_jpg.rf.c3112d161db67d2143215fe55edc5756.jpg", + "response": "A train is in the process of being worked on by several men. The train is yellow and black and is located on the tracks. The men are wearing hard hats and some are wearing yellow vests. They are working on the train tracks near the train.", + "id": 31903 }, { - "image_path": "G:\\images\\combined\\003230_jpg.rf.da0c1a41877ca5eac85065c7d556d28b.jpg", - "response": "A group of four workers are seen working on an electrical station with tools in their hands. They are wearing blue overalls.", - "id": 1297 + "image_path": "G:\\images\\combined\\005837_jpg.rf.87e51bb8f8fde0c9c5d1d68e24d7a2d8.jpg", + "response": "A construction worker in an orange vest and hat is working on a project.", + "id": 31904 }, { - "image_path": "G:\\images\\combined\\003231_jpg.rf.b77223bce637bd04f7a344155024726f.jpg", - "response": "A group of men are holding a rope and pulling it.", - "id": 1298 + "image_path": "G:\\images\\combined\\005838_jpg.rf.c4b8d8caa0e1a9f156fb83aed56bc2c0.jpg", + "response": "Men are working on a construction site with wheelbarrows and shovels.", + "id": 31905 }, { - "image_path": "G:\\images\\combined\\003232_jpg.rf.2cc122f2d234b19a648f88f78aae378b.jpg", - "response": "Two men in high visibility vests and hard hats, one holding a clipboard and the other with his back turned, standing in front of a white wall.", - "id": 1299 + "image_path": "G:\\images\\combined\\005839_jpg.rf.d07e83861a0324d0b43d3dbe380778fd.jpg", + "response": " Two workers(140,179),(400,996)(427,285),(628,996) in a factory", + "id": 31906 }, { - "image_path": "G:\\images\\combined\\003234_jpg.rf.37e434fdb615aedb3722aa3bb1e44b04.jpg", - "response": "A construction worker and a supervisor looking at a blueprint on a job site.", - "id": 1300 + "image_path": "G:\\images\\combined\\00583_jpg.rf.7a53563f6d0997d4bf250f97567e0825.jpg", + "response": "A group of people standing around talking.", + "id": 31907 }, { - "image_path": "G:\\images\\combined\\003235_jpg.rf.94e4c82aaf2b64b9ffebf3f75e4c333f.jpg", - "response": "In the image there is a man wearing a red helmet and a mask, goggles and green and gray clothes. The man is on a red bridge and is working on a red wall. The bridge has a metal red railing.", - "id": 1301 + "image_path": "G:\\images\\combined\\005840_jpg.rf.a98f757f66ae16ebc7fb2f2b986351ea.jpg", + "response": "In the image two workers are repairing an electricity pole. They are wearing blue and grey clothes and helmets. The background shows a part of a tall building.", + "id": 31908 }, { - "image_path": "G:\\images\\combined\\003236_jpg.rf.985a01eb4818ec4cf82aea9751ec2563.jpg", - "response": "In the image two workers are seen repairing an electricity post. One of the worker is wearing a helmet and is standing on a metal ladder. Another worker is wearing a white uniform and is seen holding a tool. Both the workers are wearing yellow and red color helmets. There are two electric wires coming from the post and a blue color sky is seen in the background.", - "id": 1302 + "image_path": "G:\\images\\combined\\005841_jpg.rf.e0eeb2797d97e1410ac431757147c3f3.jpg", + "response": "Men in suits and hard hats stand around a large hole in the ground.", + "id": 31909 }, { - "image_path": "G:\\images\\combined\\003237_jpg.rf.fbcdb3ffba1160899e4fac4e25620624.jpg", - "response": "A man in a blue shirt and red helmet is pointing to a white building. Another man in a green shirt and red helmet is standing to the left of the man in the blue shirt. They are both standing in front of a white building. There is a ladder propped up against the building.", - "id": 1303 + "image_path": "G:\\images\\combined\\005843_jpg.rf.9899e839ec7599e7d3583869af899db2.jpg", + "response": "A man and woman in front of a building under construction.", + "id": 31910 }, { - "image_path": "G:\\images\\combined\\003238_jpg.rf.7a7fb4d192301d12fc5923bd59ffab62.jpg", - "response": "A man wearing a blue jacket and a red hard hat is pointing to a glass insulator on a power transmission line. He is wearing work gloves and has a backpack on. The sky is light blue in the background.", - "id": 1304 + "image_path": "G:\\images\\combined\\005844_jpg.rf.7450035cfd5faf6c0c1ad03db7d84f05.jpg", + "response": "a group of men standing around each other", + "id": 31911 }, { - "image_path": "G:\\images\\combined\\003239_jpg.rf.5f1317fe8ce357b0b265e70ee13d406b.jpg", - "response": "In the image there is a construction site with multiple workers. There is a man pushing a wheelbarrow full of bricks. Another man is working on a scaffold. There are multiple bricks and a red umbrella in the scene. A building with many floors is under construction in the background.", - "id": 1305 + "image_path": "G:\\images\\combined\\005846_jpg.rf.c74ac84bf3b0eefa00715cf43e088b62.jpg", + "response": "The image shows two workers in the snow, working on a power transmission line. They are both wearing blue and yellow work clothes and have their hair covered in brown hair ties. One of the workers is on the left and is crouching down, while the other worker is on the right and is standing up. They are both working on the yellow part of the transmission line. In the background, there are many power lines made of black wires, hanging from a frame made of black metal. The sky is a mix of blue and white snow clouds.", + "id": 31912 }, { - "image_path": "G:\\images\\combined\\003240_jpg.rf.bfa014c602fabd220b54e3a8138f2197.jpg", - "response": "a person wearing a yellow hard hat", - "id": 1306 + "image_path": "G:\\images\\combined\\005847_jpg.rf.3e959fc8ca52503685b72d6a8312abaf.jpg", + "response": "a group of men walking down a hallway", + "id": 31913 }, { - "image_path": "G:\\images\\combined\\003241_jpg.rf.fb7d859635053f9cf52fad07ad4e44c8.jpg", - "response": "A group of men in orange work clothes and red hats are walking down a set of train tracks. They are all wearing red work clothes and red hats. One man is walking in front of the others. The man in the middle is wearing a white hard hat. The man on the far right is carrying a tool bag. The men are all wearing gloves.", - "id": 1307 + "image_path": "G:\\images\\combined\\005848_jpg.rf.1a44503990bec040551b4d904bfcb2ab.jpg", + "response": " People(596,624),(683,845)(428,633),(538,863)(329,632),(426,848)(284,637),(353,793)(182,638),(273,778) walking in the snow in front of a house(3,115),(995,406)", + "id": 31914 }, { - "image_path": "G:\\images\\combined\\003242_jpg.rf.2df58e8ff67a6fe7c83d5e8209beec19.jpg", - "response": "A group of rescue workers in yellow helmets are standing on a construction site.", - "id": 1308 + "image_path": "G:\\images\\combined\\005849_jpg.rf.d2ca3401c9975324c8b19d3b0e40a7bb.jpg", + "response": "a man wearing a orange and black jacket(188,316),(329,882)", + "id": 31915 }, { - "image_path": "G:\\images\\combined\\003243_jpg.rf.41e69eddc0accedf67b3ef72bb463f57.jpg", - "response": "A man in a blue helmet and orange vest is working on a power line. He is standing on a wooden ladder and has a tool in his hand. He is repairing a wire on a wooden electrical pole.", - "id": 1309 + "image_path": "G:\\images\\combined\\005850_jpg.rf.584b10bfd2de86c3a4637c3ee2228cfe.jpg", + "response": "In the image there is a blue and white sign that says '\u8212\u57ce\u53bf\u91cd\u70b9\u5de5\u7a0b\u5efa\u7ba1\u5c40\u6c38\u5b89\u5b89\u7f6e\u5c0f\u533a\u5de5\u7a0b'. Underneath this sign there is a group of people walking towards a construction site. The construction site has several cranes working on it and the scaffolding is green. To the right of the construction site there is a tall building that is under construction.", + "id": 31916 }, { - "image_path": "G:\\images\\combined\\003245_jpg.rf.3612d3e750448a5a208b0c21890dd8f1.jpg", - "response": "A worker is pointing at a wall while another worker is holding a gun with a yellow and red liquid. Both of them are wearing safety helmets and the worker holding the gun is also wearing a vest. They are standing in a room that has wooden walls and the floor is being constructed. There is a blueprint in the worker's hand who is pointing at the wall.", - "id": 1310 + "image_path": "G:\\images\\combined\\005851_jpg.rf.31ea7643295cdae5f37dd5daf8e78a18.jpg", + "response": "A worker in a yellow helmet is using a shovel to move a large rock in a small, dark and wet room. The room is filled with water and black sediment. The worker is standing on a ladder.", + "id": 31917 }, { - "image_path": "G:\\images\\combined\\003246_jpg.rf.726fe6cf2713b12ec42ee8faf2c6fed4.jpg", - "response": "a group of people standing around talking", - "id": 1311 + "image_path": "G:\\images\\combined\\005852_jpg.rf.b11d5248aec848c8a6a39054e3334478.jpg", + "response": "A group of three workers are working on a construction site. They are wearing hard hats and are standing on a scaffold. The man in the middle is working on something on the top of the scaffold. The man on the left is holding a red tool box. The man on the right is wearing a yellow hard hat and is holding a blue tool box. There are several other workers visible in the background.", + "id": 31918 }, { - "image_path": "G:\\images\\combined\\003247_jpg.rf.21f411b5751d64cf27bf68e9565f0ff9.jpg", - "response": "a group of people standing in front of a building", - "id": 1312 + "image_path": "G:\\images\\combined\\005853_jpg.rf.bd9e4a60cfc13b2dc9c1586002283cf8.jpg", + "response": " Several construction workers(549,216),(808,935)(124,365),(423,997)(2,582),(178,997)(798,6),(996,994) in blue uniforms and red helmets(261,363),(355,452)(656,214),(753,313)(828,3),(988,127)(53,582),(128,662) are working on a construction site.", + "id": 31919 }, { - "image_path": "G:\\images\\combined\\003248_jpg.rf.f0d499cbaf1328e203fca4b0541fcb38.jpg", - "response": "Four men in red work clothes and red helmets are pulling a red pipe.", - "id": 1313 + "image_path": "G:\\images\\combined\\005854_jpg.rf.ef4e1529471af1e326d2373ec6a9d2b6.jpg", + "response": "A man in a yellow hard hat and grey work suit crouches on a construction site. He has a yellow hard hat, black work boots, and a yellow tool belt around his waist. He is holding a tool in his right hand and there is a second tool to his left. The background shows a city skyline with many tall buildings.", + "id": 31920 }, { - "image_path": "G:\\images\\combined\\003249_jpg.rf.337265202686049fc7a1622da082dee2.jpg", - "response": "A couple of men working on a power line.", - "id": 1314 + "image_path": "G:\\images\\combined\\005855_jpg.rf.eb49eccaa4e692f9f18cd831022d2c72.jpg", + "response": "A group of men working on a machine in the snow.", + "id": 31921 }, { - "image_path": "G:\\images\\combined\\003251_jpg.rf.30304a26dce210915d3a846fb53a3956.jpg", - "response": "a group of men standing under umbrellas", - "id": 1315 + "image_path": "G:\\images\\combined\\005856_jpg.rf.9537d8f5b65c85b5f774b4c41fe3c20d.jpg", + "response": "Two men are wearing yellow hard hats and smiling at the camera. They are in front of a brick wall and one man has his arm around the other.", + "id": 31922 }, { - "image_path": "G:\\images\\combined\\003252_jpg.rf.644232f4230c6afaf41d2d27bb3514e4.jpg", - "response": "The image shows two workers repairing a power line. They are both wearing blue jeans and white helmets. One worker is sitting on the power pole, and the other one is standing beside him. They are both holding tools in their hands. The sky is white in the background.", - "id": 1316 + "image_path": "G:\\images\\combined\\005857_jpg.rf.151dec57573386fd67ce178b8d5f5a53.jpg", + "response": "A group of people looking at a model of a city.", + "id": 31923 }, { - "image_path": "G:\\images\\combined\\003253_jpg.rf.6ba2860761cb46ac4817cf34c0eb7337.jpg", - "response": "A man wearing a hard hat and work clothes is using a power drill to attach a metal bar to a concrete wall. He is wearing a yellow safety vest and black gloves. There is a yellow ladder in the background.", - "id": 1317 + "image_path": "G:\\images\\combined\\005858_jpg.rf.0be7658040191191ed1e7f5ba6dc5bed.jpg", + "response": "A few men are working on power lines.", + "id": 31924 }, { - "image_path": "G:\\images\\combined\\003255_jpg.rf.28c782b54ac1f24e50a4b40a331ffffb.jpg", - "response": "two workers in yellow vests and orange hard hats standing on a construction site looking at blueprints", - "id": 1318 + "image_path": "G:\\images\\combined\\005859_jpg.rf.dc0096aee24e14b39b70bb6b38c8a89e.jpg", + "response": "In the image there is a man smiling and wearing a white helmet and an orange vest. He is holding a blueprint in front of a construction site. There are several houses under construction in the background. In the foreground, there are yellow piles of wooden planks and two yellow pipes.", + "id": 31925 }, { - "image_path": "G:\\images\\combined\\003256_jpg.rf.81d20bdfa4d37ab2c314c14ac08716eb.jpg", - "response": "A construction worker in a orange outfit and yellow hat points to the right. Two yellow and grey excavators are to the left of the worker. One of the excavators has a grey bucket on the front. In the background there is a mountain.", - "id": 1319 + "image_path": "G:\\images\\combined\\005861_jpg.rf.e3395f74c35b0e686fbbfb90a71ba2f0.jpg", + "response": "A construction worker wearing a red hard hat is shoveling sand behind a long grey wall.", + "id": 31926 }, { - "image_path": "G:\\images\\combined\\003258_jpg.rf.4580f2576004d8d068de7cd9f46d1c72.jpg", - "response": "A man in a yellow vest and white helmet is looking at solar panels in a field. The sun is shining brightly and there are blue skies with a few clouds.", - "id": 1320 + "image_path": "G:\\images\\combined\\005862_jpg.rf.ea40ac6dc1de1fc18188456697601c38.jpg", + "response": "A group of men standing in front of a electrical box wearing hard hats.", + "id": 31927 }, { - "image_path": "G:\\images\\combined\\003259_jpg.rf.530226d6989dadf8314b523b7d382ead.jpg", - "response": "A group of workers are working on a large metal structure.", - "id": 1321 + "image_path": "G:\\images\\combined\\005863_jpg.rf.a6183e1198b2eac6c501c55ce463e82d.jpg", + "response": "A worker in a hard hat and blue coveralls is holding a tablet and looking away from the camera. Another worker is standing behind them and is also wearing a hard hat. They are both standing in front of a large concrete dam.", + "id": 31928 }, { - "image_path": "G:\\images\\combined\\00325fc8496cde98.jpg", - "response": "A black and white image of a newspaper advertisement for Barcroco, a board game. The text is in English and is set in a serif font. The advertisement features soldiers and a tank.", - "id": 1322 + "image_path": "G:\\images\\combined\\005864_jpg.rf.9fd1ed919faf4b3f74750876679cfc57.jpg", + "response": "A construction site with two people and a yellow tractor.", + "id": 31929 }, { - "image_path": "G:\\images\\combined\\003260_jpg.rf.e1972e1ecf0ade2c5e510193f601816e.jpg", - "response": " Firefighters(587,481),(701,655)(494,472),(596,606)(729,459),(839,656) in boats(433,570),(954,743) inside the flooded tunnel", - "id": 1323 + "image_path": "G:\\images\\combined\\005865_jpg.rf.4cbf8904c04b0cca20833837289e492e.jpg", + "response": "a group of men standing in front of a building under construction", + "id": 31930 }, { - "image_path": "G:\\images\\combined\\003261_jpg.rf.2c157b80404d8dd836b6d8a42286a7e9.jpg", - "response": "A bus is on its side in a field, and rescue workers are standing around it.", - "id": 1324 + "image_path": "G:\\images\\combined\\005866_jpg.rf.fc99df1f86f86f899e5cbf676d31253b.jpg", + "response": "Four men in hard hats are in a tunnel. One man is sitting on the ground, another is pouring a liquid from a bottle into a cup that the sitting man is holding. Another man is standing on the left side of the image, and the fourth man is standing on the right side of the image.", + "id": 31931 }, { - "image_path": "G:\\images\\combined\\003262_jpg.rf.18057ad003fe9fa8648410c4db9dfd04.jpg", - "response": "A group of people standing around a yellow pipe.", - "id": 1325 + "image_path": "G:\\images\\combined\\005867_jpg.rf.78fbe6eec2ed55627049903d251a7cbf.jpg", + "response": "A man in orange is working on a brick wall.", + "id": 31932 }, { - "image_path": "G:\\images\\combined\\003264_jpg.rf.418aba4b508b9752dfbc4d08d0f76a4a.jpg", - "response": "An electrician wearing a blue hat and grey protective suit is working on fixing a power line.", - "id": 1326 + "image_path": "G:\\images\\combined\\005868_jpg.rf.f91ef82fc2943d4ad935febfefb8abaf.jpg", + "response": "A man in an orange work suit and a red helmet(708,196),(861,350) is using a crowbar(428,456),(999,999) to remove debris from a muddy street. Another man is using a shovel to clear mud from the street. A few people are standing on the street, and a few people are standing on the sidewalk. A few cars are parked on the street. A few trucks are parked on the sidewalk. A few bags of what look like construction materials are scattered around the street. A few bags of what look like trash are scattered around the street. A few people are carrying brooms. A few people are carrying shovels. A few people are carrying axes. A few people are carrying ropes. A few people are carrying helmets. A few people are carrying other tools. A few people are carrying large bags. A few people are carrying large sticks. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are", + "id": 31933 }, { - "image_path": "G:\\images\\combined\\00326537f57449d0.jpg", - "response": "A close up of a bottle of Rockando Single Malt Scotch Whisky. The label is yellow and brown and has a bar code and nutrition facts.", - "id": 1327 + "image_path": "G:\\images\\combined\\005869_jpg.rf.287c130ccf5edb3a365a75c8cf6dfb12.jpg", + "response": "The image shows a pile of grey sand with three men working in the background. They are wearing blue, yellow, and orange work clothes and helmets. The man in the middle is using a shovel to dig into the pile of sand. There are also two hoses on the ground to the left of the sand pile. In the background, there is a street light and some trees.", + "id": 31934 }, { - "image_path": "G:\\images\\combined\\003265_jpg.rf.469d9d115ecc3e3e4ed6c264f24ed4fd.jpg", - "response": "A man in a uniform and blue helmet is working on a power line attached to a tall wooden pole. The building behind him has many windows and is painted blue and white. There are many electrical boxes and wires attached to the building.", - "id": 1328 + "image_path": "G:\\images\\combined\\005870_jpg.rf.a77dad3807061ee6a42c2da8c0245a50.jpg", + "response": "A group of men standing next to each other wearing hard hats", + "id": 31935 }, { - "image_path": "G:\\images\\combined\\003266_jpg.rf.e9f31f7594160bc7ff9b19eef3b8f314.jpg", - "response": "A man wearing a yellow hard hat standing in front of a blue dumpster.", - "id": 1329 + "image_path": "G:\\images\\combined\\005871_jpg.rf.969ca9004064568463f7374aabc68f7c.jpg", + "response": "A man wearing a yellow hard hat, a white t-shirt and a pair of sunglasses on his head, standing in a construction site.", + "id": 31936 }, { - "image_path": "G:\\images\\combined\\003267_jpg.rf.d5a8be41772470d4d8b518da617d445b.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 1330 + "image_path": "G:\\images\\combined\\005872_jpg.rf.537579d04f82bf29de2ce4307ca1a361.jpg", + "response": "A couple of men working on power lines.", + "id": 31937 }, { - "image_path": "G:\\images\\combined\\003268_jpg.rf.9ce067eeb87e61248bb787c660e115ff.jpg", - "response": "A construction worker wearing a yellow shirt and a hard hat is pouring concrete into a large yellow bin. The worker is standing on a platform and using a large yellow funnel to pour the concrete. The concrete is being poured into a large structure that is under construction. The sky is blue and there are no other people in the image.", - "id": 1331 + "image_path": "G:\\images\\combined\\005873_jpg.rf.a8628de1d07eae402b4a1e4902356e34.jpg", + "response": "Three people standing in a construction site, two of them are men and one is a woman. They are all wearing yellow safety vests and hard hats. The man on the left is pointing at something on a set of plans he is holding, the man on the right is also holding plans and looking in the same direction. The woman is looking straight ahead.", + "id": 31938 }, { - "image_path": "G:\\images\\combined\\003269_jpg.rf.baae8dd5cdb60e43123de0346f6f33e8.jpg", - "response": "A man in a blue hard hat standing in front of a construction site.", - "id": 1332 + "image_path": "G:\\images\\combined\\005874_jpg.rf.408f30e90c1e60bcdd6ef250df1bf94b.jpg", + "response": "A worker in a cherry picker repairs a power line.", + "id": 31939 }, { - "image_path": "G:\\images\\combined\\003270_jpg.rf.e505cad6b8610d10d6c99e85bd3b61a6.jpg", - "response": "a group of men working on a snowy hill", - "id": 1333 + "image_path": "G:\\images\\combined\\005875_jpg.rf.34a64498e5ad98faef8a81afc22dd387.jpg", + "response": "An engineer is seen in the picture wearing a yellow helmet and a mask. He is holding a black device with a antenna. Behind him, there are power poles and power cables.", + "id": 31940 }, { - "image_path": "G:\\images\\combined\\003271_jpg.rf.8969b0391c0fc64e12a50be8d844e1f7.jpg", - "response": "The picture shows a group of people walking on a pedestrian road. Most of the people are dressed in white and blue, and some are carrying briefcases. Among them, there are two men in white shirts and black suits who seem to be in the front. There are also two women walking on the right side. The road is flanked by green trees and a building on the left.", - "id": 1334 + "image_path": "G:\\images\\combined\\005876_jpg.rf.59527ab6fa7bc7ab8282b8247b21f54c.jpg", + "response": "Two construction workers(358,142),(500,478)(499,151),(729,629) in orange vests(365,226),(496,439)(613,249),(728,538) are working on a small engine on a trailer(213,457),(823,995).", + "id": 31941 }, { - "image_path": "G:\\images\\combined\\003272_jpg.rf.a469c8b40f100d3a3eef67580dae383b.jpg", - "response": "A group of men walking through a construction site.", - "id": 1335 + "image_path": "G:\\images\\combined\\005877_jpg.rf.f3e4df688d8011c311a6da0b0a27bb48.jpg", + "response": "The picture shows a group of people standing in front of a construction site. Some of the people are wearing blue hats, and the ground in front of them has been excavated.", + "id": 31942 }, { - "image_path": "G:\\images\\combined\\003273_jpg.rf.a9ebcc5086f1116e95e134a5cc8dc2c5.jpg", - "response": "The image shows a construction site with two men working on a large pipe. The pipe is situated in the center of the image and runs from the bottom to the top. It is wrapped in a black material and is connected to another pipe running horizontally to the left. The men are sitting on the ground and working on the pipe. They are wearing black jackets and there is a yellow machine in the background. The scene is filled with various objects including a bench, a backpack, a handbag and a bottle. The whole scene is surrounded by a wire fence.", - "id": 1336 + "image_path": "G:\\images\\combined\\005879_jpg.rf.8fc97d07e35caea46f5ed4cd5b6a55cf.jpg", + "response": "A construction worker wearing a yellow shirt and a pink hard hat is working on a scaffold.", + "id": 31943 }, { - "image_path": "G:\\images\\combined\\003274_jpg.rf.19a4f9112138d721a3af774920b47679.jpg", - "response": "a group of men standing in front of a tunnel", - "id": 1337 + "image_path": "G:\\images\\combined\\00587_jpg.rf.66b3f6db9f6aa93d21325942a1b3189e.jpg", + "response": "The image shows two women standing next to a railroad. They are both dressed in yellow vests and white helmets. The woman on the left is holding a pen and a clip board, while the woman on the right is operating a\u6d4b\u91cf\u4eea\u5668. Both women are looking at the clip board.", + "id": 31944 }, { - "image_path": "G:\\images\\combined\\003275_jpg.rf.9e9d5cf7b62214fe7b636b74aac4f98d.jpg", - "response": "A group of people working on a construction site.", - "id": 1338 + "image_path": "G:\\images\\combined\\00587_jpg.rf.c68bf84edb954b81a4aeecfa4ca2f8de.jpg", + "response": "In the image, two women are working on the railroad tracks. They are wearing yellow vests and white helmets. The woman on the left is holding a pen and a notebook, and she is looking at the camera. The woman on the right is operating a piece of\u6d4b\u91cf\u4eea\u5668. The background is a wall of railroad tracks and a forest.", + "id": 31945 }, { - "image_path": "G:\\images\\combined\\003276_jpg.rf.060db21e5d39bd83022439986f8f70cb.jpg", - "response": "The image shows two men in yellow hats and grey jumpers working on a ladder next to a pink shop front with a sign above it saying 'Opening Soon'. The men are standing on a white ladder and appear to be working on a grey air conditioning unit. There is a red and white Chinese lantern hanging from the pink shop front.", - "id": 1339 + "image_path": "G:\\images\\combined\\005880_jpg.rf.54ec4000f929bbeb770dffaa5efd648f.jpg", + "response": "A group of men in blue and white shirts and red hats are walking together. Some of the men are holding umbrellas. In the background there is a building under construction.", + "id": 31946 }, { - "image_path": "G:\\images\\combined\\003277_jpg.rf.76ad07815e79882d76279fab7e7e1adf.jpg", - "response": "A group of men standing around each other.", - "id": 1340 + "image_path": "G:\\images\\combined\\005881_jpg.rf.370e921e46176ae45d31611b61efcd1b.jpg", + "response": "A man in a blue shirt and hard hat is working on an electricity pylon.", + "id": 31947 }, { - "image_path": "G:\\images\\combined\\003278_jpg.rf.c81e93a1f41cdc884c13a7c6a4f6c5fe.jpg", - "response": "The image shows two men in work clothes, one red and one blue, working on an electrical wire in a wooded area. They are using equipment to work on the wire.", - "id": 1341 + "image_path": "G:\\images\\combined\\005882_jpg.rf.d3ea4794dba4e192c902b4b9739aa507.jpg", + "response": "A construction site with multiple workers.", + "id": 31948 }, { - "image_path": "G:\\images\\combined\\003280_jpg.rf.15d72c30670068bb79ff43faa41f6a42.jpg", - "response": "A construction worker wearing a grey shirt and blue jeans is welding a large piece of metal while squatting down on a concrete platform. The worker is wearing a grey hard hat and orange safety vest. There is a large cinder block next to them and another worker in the background, wearing a yellow safety vest and grey pants. They are standing on a concrete platform and there is a large piece of metal next to them. There is also a yellow pipe sticking out of the ground. The background is a grey sky.", - "id": 1342 + "image_path": "G:\\images\\combined\\005883_jpg.rf.ecb11202508ea1d9ba1880e9c51e36cb.jpg", + "response": "A group of men stand on a bridge holding umbrellas.", + "id": 31949 }, { - "image_path": "G:\\images\\combined\\003281_jpg.rf.e0808bf329e38964857d49ed324c34db.jpg", - "response": "A man in a small mechanical\u81c2\u91cc", - "id": 1343 + "image_path": "G:\\images\\combined\\005884_jpg.rf.44db0dc14a449777eeff40f05f3a80c2.jpg", + "response": "A man wearing a yellow hard hat with the words \u201c\u5e78\u798f\u5341\u4e00\u5c40\u201d (happiness eleventh division) printed on it.", + "id": 31950 }, { - "image_path": "G:\\images\\combined\\003283_jpg.rf.23d8fd60c418e73b9a85b904feaef528.jpg", - "response": "a snowy street with two men wearing hard hats and jackets", - "id": 1344 + "image_path": "G:\\images\\combined\\005885_jpg.rf.33b0200772d64e8c2e4e959609636ec1.jpg", + "response": "In the image, a worker is suspended in the air, fixing a traffic light. The worker is wearing a yellow uniform and is in the process of fixing a traffic light that is hanging from a red cable. The worker is also holding a yellow helmet in his hand. The sky is overcast and there are some power lines in the vicinity.", + "id": 31951 }, { - "image_path": "G:\\images\\combined\\003284_jpg.rf.0dabdbd18e54e505f69b50badb2f0aa6.jpg", - "response": "A worker in an orange jacket and blue hat is holding a large spool of grey wire in a field.", - "id": 1345 + "image_path": "G:\\images\\combined\\005886_jpg.rf.666263e2e3628899f3e8c4e2dc3d2c01.jpg", + "response": "a group of men standing on a street", + "id": 31952 }, { - "image_path": "G:\\images\\combined\\003285_jpg.rf.c3452f3e240a452c7cb64d94fec3b5df.jpg", - "response": "A couple of men in green uniforms and orange helmets are working on power lines.", - "id": 1346 + "image_path": "G:\\images\\combined\\005887_jpg.rf.367f784072f8b146d57db1e753dc5564.jpg", + "response": "A group of men standing next to each other wearing hard hats.", + "id": 31953 }, { - "image_path": "G:\\images\\combined\\003286_jpg.rf.b7d14fe6bb17853873fdcd407308c9bf.jpg", - "response": "A group of people sitting around a table looking at papers.", - "id": 1347 + "image_path": "G:\\images\\combined\\005888_jpg.rf.a8989ee6fb8b31bcde610c220f8506f1.jpg", + "response": "An elderly couple is climbing a steep mountain. The man is wearing a blue baseball cap, a brown coat, and a pair of black pants. He is also wearing a pair of grey shoes. The woman is wearing a yellow top and a grey jacket. She is carrying a blue bag on her back. They are both wearing blue hats. They are using a rope to climb the mountain.", + "id": 31954 }, { - "image_path": "G:\\images\\combined\\003287_jpg.rf.96b62523b09ff953d32bd543295b0b18.jpg", - "response": "a group of men standing around each other", - "id": 1348 + "image_path": "G:\\images\\combined\\00588_jpg.rf.f4516e531bd7843ac3cc1beb35830cf4.jpg", + "response": "A group of workers standing around a small mirror looking at themselves. Each of them are wearing blue and orange work clothes and blue helmets. In front of the mirror there is a board with the words \"\u5b89\u5168\u8b66\u793a\u955c\" (Safety mirror) and a drawing of a person wearing a safety belt.", + "id": 31955 }, { - "image_path": "G:\\images\\combined\\003288_jpg.rf.4d90f3badb2a31f42bb9390b1be9e38c.jpg", - "response": "In the image there is a person wearing a red helmet and a black jacket. The person is reading a book. There is a yellow construction vehicle in the background. The person is standing in front of a grey fence.", - "id": 1349 + "image_path": "G:\\images\\combined\\005890_jpg.rf.b523cf71130fa211565c64c2c90b768e.jpg", + "response": "In the image two power line workers are in the process of changing a insulator on a telephone or power line tower. The two workers are wearing yellow hard hats and are in the process of replacing a insulator on the power tower.", + "id": 31956 }, { - "image_path": "G:\\images\\combined\\003289_jpg.rf.36f1658ebe5fc1df33e53909e579596a.jpg", - "response": "The image shows two workers in gray uniforms and black hats standing on a roof near power lines. They are working on an electrical box.", - "id": 1350 + "image_path": "G:\\images\\combined\\005891_jpg.rf.2345a56be628930d9d10177fa984f5ba.jpg", + "response": "A man wearing a blue shirt, orange hard hat, and white gloves is working on a construction site. He is measuring a metal bar with a measuring tape. He is standing next to a large metal grid structure. In the background, there is a green fence and a white building.", + "id": 31957 }, { - "image_path": "G:\\images\\combined\\003290_jpg.rf.ada5ac7d6b7de953dbf7cd661e10ecc7.jpg", - "response": "The image shows two construction workers on a building construction site. They are wearing safety helmets and standing near some scaffolding. In front of them is a yellow and white generator and a concrete cutter. There are several wires on the ground and a pile of bricks to the left. The whole scene is framed by a grey sky.", - "id": 1351 + "image_path": "G:\\images\\combined\\0058928240fe1561.jpg", + "response": "A man in a suit and tie is holding a framed award.", + "id": 31958 }, { - "image_path": "G:\\images\\combined\\003291_jpg.rf.9bb69ba19fbe3210cb7e18fe6c3432e1.jpg", - "response": "man in blue(578,278),(732,933)", - "id": 1352 + "image_path": "G:\\images\\combined\\005893_jpg.rf.5fa66e145310c69b869a3bb6ca4d11af.jpg", + "response": "In the image two people are working in a cave. They are both wearing blue shirts, white and blue hard hats, and are holding tools. The person on the left is wearing glasses and has a beard. They are holding a device with a wire connected to it. The person on the right has black hair and is looking at the device the other person is holding. They are holding a large stick with a meter on the end.", + "id": 31959 }, { - "image_path": "G:\\images\\combined\\003292_jpg.rf.2ac4bc8701ff474a6875ec372cb4c552.jpg", - "response": "A group of workers are working on a power station.", - "id": 1353 + "image_path": "G:\\images\\combined\\005894_jpg.rf.f1ec92cedb8d158f1e8778ed2916dafb.jpg", + "response": "A group of workers fixing some power lines.", + "id": 31960 }, { - "image_path": "G:\\images\\combined\\003293_jpg.rf.bee49802212929fbb4332eef6824249e.jpg", - "response": "A group of construction workers in hard hats and orange vests are standing around a large hole in the ground. Some of them are in the hole, and others are standing on the ground around the hole. They are all wearing hard hats.", - "id": 1354 + "image_path": "G:\\images\\combined\\005895_jpg.rf.f21b293a2737dbe3afbaef2a60f6bc98.jpg", + "response": "A group of men wearing hard hats are working on a tree.", + "id": 31961 }, { - "image_path": "G:\\images\\combined\\003294_jpg.rf.7d9b33b013106e7e242eb86bd2ed4038.jpg", - "response": "The image shows a large room filled with pipes and valves of various sizes. The room has a yellow floor and is filled with equipment. There are two people in the room, both dressed in black and wearing hats and protective gear. One of the people is standing near the middle-left of the image, while the other is further to the right. They are both holding equipment and looking at something.", - "id": 1355 + "image_path": "G:\\images\\combined\\005896_jpg.rf.b617c5cd89ad7d1cc45b8a5d62a25732.jpg", + "response": "A close up of a man wearing a orange hard hat.", + "id": 31962 }, { - "image_path": "G:\\images\\combined\\003295_jpg.rf.35cf2e7d2f5051c442cccaba5f6ca405.jpg", - "response": "A picture of workers fixing a power line against a blue and white sky with clouds.", - "id": 1356 + "image_path": "G:\\images\\combined\\005899_jpg.rf.89ffc0f07bfb563cbe2a60254d7b6b03.jpg", + "response": "The image shows a group of people standing in front of a construction site. They are all wearing hard hats and some of them are also wearing red ties. In the background, there is a partially constructed building with scaffolding. There are also several cranes working in the background. The sky is overcast and the ground is dry.", + "id": 31963 }, { - "image_path": "G:\\images\\combined\\003296_jpg.rf.d7cc79c1cced4ef7069923e276b0c454.jpg", - "response": "In the image there are two men dressed in red overalls, one of which is wearing a helmet. They are standing on a ladder next to a large metal pole with power lines above them. They are working on a transformer which is on top of the pole. The transformer is square in shape and is dark grey in color. The men are wearing red helmets and red overalls. The pole is made of wood and the transformer is attached to it.", - "id": 1357 + "image_path": "G:\\images\\combined\\00589_jpg.rf.0920908376b2ad85d247813037229b6c.jpg", + "response": "A group of people standing around a construction site.", + "id": 31964 }, { - "image_path": "G:\\images\\combined\\003297_jpg.rf.f5f527baaf6895ecc2d789547fae6546.jpg", - "response": "A couple of men wearing hard hats are working on a power box.", - "id": 1358 + "image_path": "G:\\images\\combined\\00589_jpg.rf.8b2b2cbb9f68162fe11bf72acee71307.jpg", + "response": "A group of people standing around a construction site", + "id": 31965 }, { - "image_path": "G:\\images\\combined\\003298_jpg.rf.b27a9e39f2da1c3fe4348e050273457b.jpg", - "response": "An electrician repairs a power line.", - "id": 1359 + "image_path": "G:\\images\\combined\\005900_jpg.rf.75d3f94189eb4f601ae357e73cfd889d.jpg", + "response": "A construction worker uses a jackhammer to break up concrete.", + "id": 31966 }, { - "image_path": "G:\\images\\combined\\003299_jpg.rf.4d774ab9fc9082e5e62c3e86c28ad767.jpg", - "response": "Two men in yellow vests and hard hats are walking through a large warehouse. They are both holding clipboards and looking at them. The man on the left is also holding a laptop. The room has metal racks filled with boxes on the shelves.", - "id": 1360 + "image_path": "G:\\images\\combined\\005901_jpg.rf.b311b7363fce1817a87d7cb2dacd781b.jpg", + "response": "A group of three men dressed in yellow and grey safety vests, hard hats and one man has a beard. They are pointing at a blueprint that is posted on a wall.", + "id": 31967 }, { - "image_path": "G:\\images\\combined\\0032a741dee9449b.jpg", - "response": "A collage of three photos, one of a person on a cell phone, one of a Jack Daniels bottle, and one of a man lighting a cigarette.", - "id": 1361 + "image_path": "G:\\images\\combined\\005902_jpg.rf.f4169193be63da8d234afc5aac99c89a.jpg", + "response": "A group of men standing on top of a mountain.", + "id": 31968 }, { - "image_path": "G:\\images\\combined\\0032d6fe69014669.jpg", - "response": "A bottle of Mitteix Challenger on a white counter.", - "id": 1362 + "image_path": "G:\\images\\combined\\005903_jpg.rf.03e03d6f3479c75adfc1712ef13d989a.jpg", + "response": "A man in a yellow helmet and blue shirt is operating a cement mixer.", + "id": 31969 }, { - "image_path": "G:\\images\\combined\\003300_jpg.rf.44f4a53c08762f2913df77ffac83c6b7.jpg", - "response": "A group of people working on a construction site.", - "id": 1363 + "image_path": "G:\\images\\combined\\005904_jpg.rf.0da13579757a24a45bf3fc33e6f8a6aa.jpg", + "response": "The image shows two workers in blue uniforms and safety gear working on a power line. They are standing on a metal platform that is attached to the power pole, and they are repairing a damaged part of the line. The sky above them is overcast, with dark clouds visible.", + "id": 31970 }, { - "image_path": "G:\\images\\combined\\003301_jpg.rf.a989285b34a488755eb86ce7b4fe7074.jpg", - "response": "The image shows three construction workers on scaffolding. They are all wearing yellow hard hats and there is a fourth worker, who is not on scaffolding, visible in the bottom right corner of the image. The scaffolding is made of yellow pipes and the sky is blue.", - "id": 1364 + "image_path": "G:\\images\\combined\\005905_jpg.rf.4530134d251bb4ed7e89f9e08369a4fb.jpg", + "response": "In the image two men are working on power lines. They are both wearing blue helmets and coveralls. The coveralls have yellow writing on the legs. The men are standing on a platform that is connected to the power lines. They are holding onto the power lines and wires and appear to be working on them. The sky is blue and clear.", + "id": 31971 }, { - "image_path": "G:\\images\\combined\\003302_jpg.rf.5a0555bddb202cb8bf51859f1205cc4b.jpg", - "response": "A man in a red jumpsuit and a hard hat is leaning against a red shipping container. He is holding onto a metal bar and appears to be trying to close the door of the container. The container has several written instructions on it, including one that says \"DOOR FIRST OPEN CLOSE\" and another that says \"UNLATCH TO CLOSE DOOR\". The man is also wearing brown work boots.", - "id": 1365 + "image_path": "G:\\images\\combined\\005907_jpg.rf.a0f0912a115e29f4f763d8f8320ccfcf.jpg", + "response": " Men(728,371),(899,946)(597,387),(767,899)(501,388),(633,828) in hard hats(736,369),(799,447)(505,386),(565,455)(629,387),(695,457) and rain gear(597,389),(767,898)(729,441),(899,942) stand on a muddy road in the rain.", + "id": 31972 }, { - "image_path": "G:\\images\\combined\\003303_jpg.rf.c3244136307ef102696af3eed843d6fa.jpg", - "response": "a group of people standing in front of a small white building", - "id": 1366 + "image_path": "G:\\images\\combined\\005909_jpg.rf.3ecd0d36d3833f183a35c5a62977c3dc.jpg", + "response": "An electrician scales a transmission tower to make repairs.", + "id": 31973 }, { - "image_path": "G:\\images\\combined\\003304_jpg.rf.a77536249c7883c7b57e4fbfb45ea3fa.jpg", - "response": "In the image there are three people standing in a field. They are all wearing hard hats and yellow and green vests. The person on the left is the shortest and is holding a blue clipboard. The person in the middle is of medium height and is holding a yellow hard hat. The person on the right is the tallest and is holding a tablet. In front of them is a yellow tripod with a device on top. To the right of the people is a red rope fence. In the background are green trees and a mountain range. To the far right is a blue sky with white clouds.", - "id": 1367 + "image_path": "G:\\images\\combined\\005911_jpg.rf.d29999cd6d42569d65d62497aca28c99.jpg", + "response": "In the image there are two construction workers wearing yellow and white hard hats, one worker is sitting on the ground and the other worker is standing next to him. They are both wearing reflective vests. In front of them, there is a large pipe and a piece of paper with a plan on it is placed on the ground in front of them. In the background, there is a large building under construction and a red and white safety barrier.", + "id": 31974 }, { - "image_path": "G:\\images\\combined\\003305_jpg.rf.49d2a935820d4f56f7eba78da8d1100e.jpg", - "response": "The image depicts two workers posing for a photo in a workshop. Both are wearing yellow hard hats and tool belts. The worker on the left is a bit taller and has a goatee. They are both smiling at the camera. The worker on the right has a mustache and is looking to the side. The background consists of a white bathtub and a pile of wrapped packages.", - "id": 1368 + "image_path": "G:\\images\\combined\\005912_jpg.rf.37e66257514c74d64c39444d9bc2c8cf.jpg", + "response": "A group of men standing around and talking.", + "id": 31975 }, { - "image_path": "G:\\images\\combined\\003307_jpg.rf.27236c9c5409927d54881d3a214c7180.jpg", - "response": "The image shows a group of men in a room wearing hard hats. They are gathered around a table, looking at a piece of glass. One man is holding a tape measure. The room has a lot of windows and is painted white.", - "id": 1369 + "image_path": "G:\\images\\combined\\005913_jpg.rf.c0ddaaa53a16608dc61ae94d7e56064b.jpg", + "response": "In the image there is a construction site where a worker is building a structure made of iron and wood. The worker is dressed in a grey uniform and is wearing a helmet. He is putting up a iron structure, which is supported by a few iron pipes. The background shows a wall made of concret and wooden bars. The worker is standing in a pool of liquid.", + "id": 31976 }, { - "image_path": "G:\\images\\combined\\003308_jpg.rf.295fb90e0b79480a399ba6f269f29dc4.jpg", - "response": "The image shows two workers in blue uniforms and hard hats repairing a piece of machinery. They are standing side by side, with one worker holding a large metal rod and the other holding a pair of pliers. The workers are focused on the task at hand, and there is a close-up view of the machinery they are working on, which includes a wheel and some gears.", - "id": 1370 + "image_path": "G:\\images\\combined\\005914_jpg.rf.fbc1044d4cf76395073c9d1f5e7cdb0b.jpg", + "response": "A construction worker is shoveling concrete onto a unfinished road.", + "id": 31977 }, { - "image_path": "G:\\images\\combined\\003309_jpg.rf.78d715e5010e7faf8a863ae3a3c17f0c.jpg", - "response": "In the image two construction workers are working on the railroad tracks. They are wearing orange vests and hard hats. One of the workers is sitting on the tracks and the other one is kneeling next to him. They have tools with them and there are railroad spikes around them. The ground is made of gravel and there are some railroad ties in the foreground.", - "id": 1371 + "image_path": "G:\\images\\combined\\005915_jpg.rf.5a81bfc0ddd6cbd717bc32c8d927ae5c.jpg", + "response": "A group of people in hard hats pulling a rope together in a large building.", + "id": 31978 }, { - "image_path": "G:\\images\\combined\\003310_jpg.rf.0cf207b3b1fd960b16acddc157b28c84.jpg", - "response": "In the image, a group of people are walking together. They are all wearing suits and appear to be Chinese. Some of them are wearing ties. In the background, there is a partially constructed concrete building. The ground is dirt, and there are a few rocks visible. The overall lighting appears to be overcast.", - "id": 1372 + "image_path": "G:\\images\\combined\\005916_jpg.rf.6396ed2c31343fd229b4626c28bb6807.jpg", + "response": "A man in a blue shirt and grey pants is sitting on a wooden ladder that is attached to a power pole. He is wearing a black helmet and grey gloves. There are many wires and cables attached to the pole and the man. There is a sky background with clouds.", + "id": 31979 }, { - "image_path": "G:\\images\\combined\\003311_jpg.rf.41b6b8e9839d2ee102afd25e7986f71f.jpg", - "response": "The image shows two men wearing hard hats standing together at a table. One man is wearing a purple shirt and the other is wearing a green shirt. They are both looking at a blueprint that is spread out on the table. The table also has various tools on it, including a pair of pliers, a hammer, and a screwdriver. There is a cup on the table as well.", - "id": 1373 + "image_path": "G:\\images\\combined\\005918_jpg.rf.7d004e9e0946a870f7e997a37746a007.jpg", + "response": "The image shows two construction workers at a construction site, one of them is holding a large yellow concrete bucket and is about to pour concrete into a large wheelbarrow. The concrete is mixed in a large metal mixer. The workers are wearing yellow and red hard hats and grey uniforms. The ground is covered with snow.", + "id": 31980 }, { - "image_path": "G:\\images\\combined\\003312_jpg.rf.9f9ac1ec1b4e72b8acaa3714140aa89c.jpg", - "response": "An electrician repairs a power line.", - "id": 1374 + "image_path": "G:\\images\\combined\\005919_jpg.rf.215a9e08d6c7f8de69e842ff44ec7f42.jpg", + "response": "A group of men standing around each other.", + "id": 31981 }, { - "image_path": "G:\\images\\combined\\003313_jpg.rf.5589fc75e1e24a1cdf7328ff8d9f2ae6.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is using a jack hammer. The jack hammer is corded and is embedded in a concrete floor. The worker is standing between two orange cones.", - "id": 1375 + "image_path": "G:\\images\\combined\\00591_jpg.rf.7394d15002c6f71d138b1641ac6a3040.jpg", + "response": "The image shows a group of six people wearing hard hats sitting around a table in a patio setting. They all appear to be wearing the same outfit of dark clothing and hard hats. The table is surrounded by benches and there are several cups and a bottle on the table. In the background, there is a building with a white exterior and a patio area. There are also a few potted plants in the scene.", + "id": 31982 }, { - "image_path": "G:\\images\\combined\\003315_jpg.rf.bc57814e78a5ad59efa4c5d43f70aa8f.jpg", - "response": "A construction worker and a man in a hard hat look at a blueprint.", - "id": 1376 + "image_path": "G:\\images\\combined\\005920_jpg.rf.9259b4068a4621c02d5d4d5a45b6808c.jpg", + "response": "A worker in white uniform and white hat is on a cherry picker fixing a power box on a pole.", + "id": 31983 }, { - "image_path": "G:\\images\\combined\\003316_jpg.rf.d2cc65d384792fa251c4e03a84b99773.jpg", - "response": "A group of workers in orange jumpsuits and hard hats are on a blue boat.", - "id": 1377 + "image_path": "G:\\images\\combined\\005922_jpg.rf.e33c63d88d1168d5021c043843701776.jpg", + "response": "The picture shows two Chinese workers in hard hats carrying a metal sheet. They are working on a construction site with a white metal building in the background. The sky is blue with clouds.", + "id": 31984 }, { - "image_path": "G:\\images\\combined\\003317_jpg.rf.e910940beb755442aac47a38d14976f5.jpg", - "response": "A worker in a dark room is handling a glowing piece of metal with tongs.", - "id": 1378 + "image_path": "G:\\images\\combined\\005923_jpg.rf.0be973e6a746b5ece3c21a04f28b717f.jpg", + "response": "The image shows three men standing in front of a staircase. All three are wearing safety helmets. To the far left is a man in an orange jumpsuit and white helmet. To the right of him is a man in a navy blue jacket and red helmet. To the far right is a man in a brown jacket and white helmet.", + "id": 31985 }, { - "image_path": "G:\\images\\combined\\003318_jpg.rf.ad0befd82c0d503b77991b2e8ae891bc.jpg", - "response": "A group of people working on a construction site.", - "id": 1379 + "image_path": "G:\\images\\combined\\005924_jpg.rf.4f0def0010d310dae83ff221f95e9670.jpg", + "response": "The image shows three engineers or construction workers wearing white helmets, looking at a blueprint spread out on the ground. They are all smiling and seem to be having a good time on the job site.", + "id": 31986 }, { - "image_path": "G:\\images\\combined\\003320_jpg.rf.fbf10b63768fcef0d154e933a8177da7.jpg", - "response": "A man in a red helmet and white gloves is on a power line.", - "id": 1380 + "image_path": "G:\\images\\combined\\005925_jpg.rf.0d053f5d517e9ee355970f56c0768bf0.jpg", + "response": "An engineer in an orange uniform and yellow hard hat points to the right as two yellow excavators dig into a large pile of brown dirt.", + "id": 31987 }, { - "image_path": "G:\\images\\combined\\003321_jpg.rf.8610d63b8854f12ba51695e8169b518e.jpg", - "response": "In the image there are two men wearing yellow hard hats and work clothes. They are walking side by side. One man has a white glove on and is holding a tool. They are walking in front of a brick building with a sign that says \"Railway Labor School\".", - "id": 1381 + "image_path": "G:\\images\\combined\\005926_jpg.rf.45e07524ec6b8823a401abc8c4473d07.jpg", + "response": "The image shows two workers in white protective clothing and blue helmets repairing a power pole. They are standing on the pole, which is made of grey wood and has several black wires. One worker is on the left side of the pole and is holding a tool in his right hand. The other worker is on the right side of the pole and is holding a tool in his left hand. They are both wearing white protective masks and have their legs wrapped in safety straps. The sky is white and cloudless.", + "id": 31988 }, { - "image_path": "G:\\images\\combined\\003322_jpg.rf.f1fbeb561662e3b445d4e9b90821b34f.jpg", - "response": "A construction worker standing next to a metal framework.", - "id": 1382 + "image_path": "G:\\images\\combined\\005927_jpg.rf.4a5c50466323085b90a22a4643d66f47.jpg", + "response": "Two workers in yellow hard hats and grey and yellow uniforms are working with machinery. They are standing in a large factory and there is a yellow machine to their left. They are working with a green and grey machine that has a brick pattern on it. There are many more machines like this in the background. The floor of the factory is grey and there are many bricks laid around the factory.", + "id": 31989 }, { - "image_path": "G:\\images\\combined\\003323_jpg.rf.9e8db74af0456b13eee66e3c0fb1680b.jpg", - "response": "A group of men standing around each other.", - "id": 1383 + "image_path": "G:\\images\\combined\\005928_jpg.rf.5dbc11b63300e0009f14beb8fa2efe46.jpg", + "response": "An electrician working on an electrical transformer wearing a yellow hard hat and other safety gear.", + "id": 31990 }, { - "image_path": "G:\\images\\combined\\003324_jpg.rf.50727e608b4107eaaccd1dc09a1162ad.jpg", - "response": "a group of men sitting in a room", - "id": 1384 + "image_path": "G:\\images\\combined\\005929_jpg.rf.c3bd2521ed3b3674d099c2b4b4e91c5c.jpg", + "response": "a group of people standing in a construction site", + "id": 31991 }, { - "image_path": "G:\\images\\combined\\003325_jpg.rf.c1a04fd188a0d0c842cccc815960970c.jpg", - "response": "A group of people sitting around a table.", - "id": 1385 + "image_path": "G:\\images\\combined\\00592_jpg.rf.59077c38477aa6a881e0cf5a90296f72.jpg", + "response": "A group of people standing around a construction site", + "id": 31992 }, { - "image_path": "G:\\images\\combined\\003326_jpg.rf.5c76e8aa5a0b62a88bd5c5987610a37d.jpg", - "response": "The image shows two workers from a cable company installing cables on the exterior wall of a white building. One worker is standing on a ladder and appears to be reaching for a cable while the other worker is on the ground holding the ladder. They are both wearing uniforms and the one on the ladder is also wearing a white hard hat. The building to the right of the workers is a two-story white building with a small balcony on the second floor. The sky is overcast and there are several other buildings in the background.", - "id": 1386 + "image_path": "G:\\images\\combined\\005930_jpg.rf.b36a2fb0d06fc676922b6d62d898429e.jpg", + "response": "a group of people standing in a dirt road", + "id": 31993 }, { - "image_path": "G:\\images\\combined\\003327_jpg.rf.2d44b6937868e91612b42a7d4323c75e.jpg", - "response": "A group of people standing on a boat.", - "id": 1387 + "image_path": "G:\\images\\combined\\005931_jpg.rf.714c1832ea9a3e6fb260f363e1694b28.jpg", + "response": "A woman in a green dress is pointing towards something to a group of men. They are standing on a unfinished road next to a building under construction. There is a blue sky in the background.", + "id": 31994 }, { - "image_path": "G:\\images\\combined\\003328_jpg.rf.0a7aba76d1a6443b842f072929e600ef.jpg", - "response": " Two men(622,160),(996,989)(2,159),(577,988) in hard hats(268,160),(456,405)(716,161),(921,367) looking at a paper(482,633),(642,792)", - "id": 1388 + "image_path": "G:\\images\\combined\\005932_jpg.rf.efcfd90716ef90281a252d026cffab1e.jpg", + "response": "A man in a blue jumpsuit and a yellow hard hat is working in a factory. He is pushing a dolly with a large metal cylinder on it. The background is a wall and a window. There is also a chair in the scene.", + "id": 31995 }, { - "image_path": "G:\\images\\combined\\003329_jpg.rf.789cc91f140e0a9065a193810216b6e9.jpg", - "response": "A construction site with heavy machinery and workers.", - "id": 1389 + "image_path": "G:\\images\\combined\\005933_jpg.rf.7a820b10b70ece35a7899b6fe5ea1f29.jpg", + "response": "A man in a red vest and yellow hard hat standing next to a man in a red vest and orange hard hat. Both are wearing yellow safety vests and are standing in front of a large metal object. They are both wearing gloves and the man on the left is also wearing a blue hard hat.", + "id": 31996 }, { - "image_path": "G:\\images\\combined\\003330_jpg.rf.aa277d2fef2f33976aa99e0066d97298.jpg", - "response": "In the image there are several workers at a construction site. They are working on a large grid of steel rebar. There are three workers in the image, one near the top left, one in the middle and one on the bottom right. The workers are wearing helmets and the one in the middle is wearing yellow gloves. The steel rebar is in various states of construction, some of it is laid out, some of it is being worked on and some of it is being supported by wooden poles. In the background, there is a cityscape with many buildings.", - "id": 1390 + "image_path": "G:\\images\\combined\\005934_jpg.rf.8ad52d678b4102974ccb19ddde80fc83.jpg", + "response": "a group of people standing outside of a van", + "id": 31997 }, { - "image_path": "G:\\images\\combined\\003332_jpg.rf.cce64f027cda1f246a367aea02c7117a.jpg", - "response": "A group of people working on a construction site.", - "id": 1391 + "image_path": "G:\\images\\combined\\005935_jpg.rf.274e4cc823d01beb925fb29c4edcb730.jpg", + "response": "The image shows two workers in yellow jackets and blue hard hats, one yellow and one green, standing on a construction site with a building under construction in the background. They are both looking at a window frame on a building under construction.", + "id": 31998 }, { - "image_path": "G:\\images\\combined\\003333_jpg.rf.bbe60d3f51756a9d2a6ec0adb4f7202f.jpg", - "response": "A group of rescue workers in orange and black uniforms and red helmets are working to remove a large piece of concrete from a hole in the brick wall. The workers are hunched over and focused on their task.", - "id": 1392 + "image_path": "G:\\images\\combined\\005936_jpg.rf.ce96cb7f39c92b0ad47da6382aa3ed2c.jpg", + "response": "A group of men standing around a white board looking at it. They are all wearing hard hats.", + "id": 31999 }, { - "image_path": "G:\\images\\combined\\003334_jpg.rf.0c374010dde4386f3c475d4cc5d58cb8.jpg", - "response": "A group of men walking down a hallway.", - "id": 1393 + "image_path": "G:\\images\\combined\\005937_jpg.rf.43bbc5284de33aab8a1ee5e769ec52dc.jpg", + "response": "The workers are wearing yellow helmets. The workers are wearing black uniforms. The workers are wearing orange gloves. The workers are wearing red protective shoes. The workers are wearing white safety belts. The workers are wearing yellow hats. The workers are using red hammers.", + "id": 32000 }, { - "image_path": "G:\\images\\combined\\003335_jpg.rf.c9eaf5e42e3a9eff07243ed5582d5bd6.jpg", - "response": "A worker is suspended from a wire, working on a power line.", - "id": 1394 + "image_path": "G:\\images\\combined\\005938_jpg.rf.60bd21f5f1bac94b7f94ddd746e56d1f.jpg", + "response": "A group of people in camouflage and hard hats are sitting in a cave. They are wearing masks and have red helmets.", + "id": 32001 }, { - "image_path": "G:\\images\\combined\\003336_jpg.rf.c6c9fef88ea85e86861089859632f3f9.jpg", - "response": "A group of men are standing in a field. They are all wearing suits. One man is wearing a yellow hard hat and is looking at a piece of equipment.", - "id": 1395 + "image_path": "G:\\images\\combined\\00593_jpg.rf.18bf2353ef50d5f66a01c9339c2b6811.jpg", + "response": "Three women standing in front of a building site, all wearing red hard hats.", + "id": 32002 }, { - "image_path": "G:\\images\\combined\\003337_jpg.rf.5eeb9a4e2fda7d2c32e9fd78e18fd720.jpg", - "response": "In the image there are two people wearing orange work clothes and orange helmets. They are standing next to each other and smiling. The person on the left is a bit taller and is looking to the right. The person on the right is looking to the left. In the background, there is a dirt field and a factory building.", - "id": 1396 + "image_path": "G:\\images\\combined\\00593_jpg.rf.ddbe4cfa86ed6da3ce1a3a9960b8226c.jpg", + "response": "Three women standing next to each other, all wearing red hard hats.", + "id": 32003 }, { - "image_path": "G:\\images\\combined\\003338_jpg.rf.82836d2384cfb4ea1efdf6f6e9c48e62.jpg", - "response": "A man wearing a hard hat and work clothes is using a device to pump water from a hole in the ground. The man is standing on a ladder in the hole. The water is being funneled into a bucket. There is a fence around the hole to keep people out. In the background, there are yellow trucks.", - "id": 1397 + "image_path": "G:\\images\\combined\\005940_jpg.rf.16d821c9f7087cf0bb544ad22e248f22.jpg", + "response": "A group of men wearing red helmets are having a discussion in a room under construction. One of the men is pointing to the ceiling.", + "id": 32004 }, { - "image_path": "G:\\images\\combined\\003339_jpg.rf.623740d57c31ad7119849e95de00d9f3.jpg", - "response": " Two workers(269,369),(433,997)(398,412),(488,926) are seen using a rock drill to drill holes into the rock face of a cliff.", - "id": 1398 + "image_path": "G:\\images\\combined\\005941_jpg.rf.ca3491d86befc485997530325d588993.jpg", + "response": "A construction worker wearing a yellow hard hat and a black jacket is in the middle of a construction site. The worker is in the process of lifting a metal beam over their head while standing on a wooden scaffolding. The sky is grey and overcast.", + "id": 32005 }, { - "image_path": "G:\\images\\combined\\003340_jpg.rf.5a40e8f41825304f1e504506f0c3e2ca.jpg", - "response": "A man in a plaid shirt and a man in a yellow hard hat are standing on a concrete structure. They are both holding a blueprint and looking at it. The man in the plaid shirt is also wearing a yellow hard hat. They are both on a construction site.", - "id": 1399 + "image_path": "G:\\images\\combined\\005942_jpg.rf.cbb69231ed01822d0b441fe963636934.jpg", + "response": "Four men(33,180),(570,997)(438,271),(627,998)(700,268),(963,997) in hard hats(778,267),(953,430)(487,271),(605,398)(202,179),(371,407) standing in a construction site", + "id": 32006 }, { - "image_path": "G:\\images\\combined\\003341_jpg.rf.096522ea2053ddaf6caaf81489e5eb88.jpg", - "response": "A construction site with two workers standing on scaffolding. They are wearing yellow hard hats and work clothes. The site is under construction with many metal bars in the background.", - "id": 1400 + "image_path": "G:\\images\\combined\\005943_jpg.rf.f9d795dadd5df2a0509db41aabde9118.jpg", + "response": "An elderly man wearing a red helmet and a brown jacket stands on a ladder on a steep mountain. He is holding a bamboo stick in each hand. Another man is behind him, wearing a red helmet and a black jacket. They are both wearing black pants. In the background, there is a mountain range with a valley between the mountains. There are also several trees in the valley. To the left of the image, there is a pile of rocks.", + "id": 32007 }, { - "image_path": "G:\\images\\combined\\003342_jpg.rf.cc2aa3df79ba0941879636733d945bfa.jpg", - "response": "A man in a blue hard hat is working on a large metal structure.", - "id": 1401 + "image_path": "G:\\images\\combined\\005944_jpg.rf.5ad114f7b6d2857cab44e275b153f38c.jpg", + "response": "The image shows a group of workers dressed in yellow and orange vests and yellow helmets who are shoveling a white substance on the ground. The workers are in a tunnel and one of them is holding a large spoon. The spoon is filled with the white substance.", + "id": 32008 }, { - "image_path": "G:\\images\\combined\\003343_jpg.rf.ceab14245552c7aa98a37c2c938d1fd8.jpg", - "response": "Two men wearing yellow hard hats and safety goggles, one older with a goatee and one younger standing in front of a metal garage door.", - "id": 1402 + "image_path": "G:\\images\\combined\\005946_jpg.rf.33d2d3970d524e0fa73f0c71e4120199.jpg", + "response": "\u5730\u8d28\u5de5\u4f5c\u8005\u5728\u5c71\u6d1e\u5185\u8fdb\u884c\u5ca9\u82af\u94bb\u63a2\u3002", + "id": 32009 }, { - "image_path": "G:\\images\\combined\\003344_jpg.rf.79563606bba4f2a2dd4fc8991b35766c.jpg", - "response": "A group of people standing in front of a building.", - "id": 1403 + "image_path": "G:\\images\\combined\\005947_jpg.rf.89b88bbafcd77007253f47eb6fa3dac2.jpg", + "response": "A group of men in blue work uniforms and yellow hard hats are climbing a metal tower. They are each holding on to a rope while they ascend. The tower is metal and has a lattice structure. The sky is blue with a few white clouds.", + "id": 32010 }, { - "image_path": "G:\\images\\combined\\003345_jpg.rf.adb1832149fb84e320af964152e31a3c.jpg", - "response": "A black and white photo of a group of men standing next to each other. In the foreground, there is a man wearing a striped polo shirt and glasses, pointing towards something off camera. He is flanked by another man wearing a white shirt and glasses, and another man wearing a black shirt. In the background, there is a mountain.", - "id": 1404 + "image_path": "G:\\images\\combined\\005948_jpg.rf.5fde493aaaa0d2bbaa764ce16b25f5bb.jpg", + "response": "A woman wearing a red hard hat and blue coveralls.", + "id": 32011 }, { - "image_path": "G:\\images\\combined\\003346_jpg.rf.5bae7657bad74e35a16c48c6d94515de.jpg", - "response": "A group of people standing around a table in a factory. They are all wearing yellow hard hats. One person is showing another person a piece of paper. There are two other people standing behind them. To the far right, there is a person in a grey jacket and black pants. In the background, there is a yellow metal pole. To the far left, there are two other people standing. One is wearing a grey sweatshirt and black pants, the other is wearing a yellow hard hat.", - "id": 1405 + "image_path": "G:\\images\\combined\\00594e9c5e6d67b6.jpg", + "response": "A woman with red hair and a black shirt is drawing on a white board.", + "id": 32012 }, { - "image_path": "G:\\images\\combined\\003347_jpg.rf.4d786a0c0d3483779168cce064651021.jpg", - "response": "A man wearing a purple shirt and a yellow hard hat sits in the driver seat of a blue construction vehicle.", - "id": 1406 + "image_path": "G:\\images\\combined\\00594_jpg.rf.9ff4ab82bf16edb27214b41ed51bb484.jpg", + "response": "The image shows a group of people standing outside a bus. Some of them are holding shopping bags and one of them is holding a camera. There are two handbags visible in the scene. A man in a tie is talking to the group. The bus is a double-decker red bus. In the background, there are some buildings and a tree.", + "id": 32013 }, { - "image_path": "G:\\images\\combined\\003349_jpg.rf.0f4891578ffd0e3fc38aa81392c01742.jpg", - "response": "A worker scans a QR code on a wall at a construction site in Xinjiang. The QR code links to a database of the building's structural information.", - "id": 1407 + "image_path": "G:\\images\\combined\\005950_jpg.rf.a60ef370698fdc80313dec6e14a7cc96.jpg", + "response": "A group of three people standing in a room wearing hard hats.", + "id": 32014 }, { - "image_path": "G:\\images\\combined\\003351_jpg.rf.1cb8e734adf91cd6f79d9010cbaeb79f.jpg", - "response": "In the image, two construction workers are standing in front of a building under construction. The man on the left is wearing a grey shirt and a yellow hard hat. The man on the right is wearing a white shirt and a red hard hat. They are both smiling at the camera.", - "id": 1408 + "image_path": "G:\\images\\combined\\005951_jpg.rf.3032f20eba39da39369a96db25285573.jpg", + "response": " Two workers(170,554),(273,905)(504,347),(646,582) inside a dark tunnel", + "id": 32015 }, { - "image_path": "G:\\images\\combined\\003352_jpg.rf.bc9eb025f30f1dc2ecfac7fbc9a99422.jpg", - "response": "A group of three men are talking about a blueprint in a construction site. The man in the middle is wearing a yellow hard hat and a blue shirt. The man on the far left is wearing a red hard hat and a red shirt. The man on the right is wearing a yellow hard hat and a blue shirt. They all look serious and focused on the blueprint.", - "id": 1409 + "image_path": "G:\\images\\combined\\005952_jpg.rf.295fc51b18994ebe743e0674b4c0ea94.jpg", + "response": "Two men in a control room with a lot of buttons and switches.", + "id": 32016 }, { - "image_path": "G:\\images\\combined\\003353_jpg.rf.918d503608d213617ef4e784e109047d.jpg", - "response": "A group of construction workers are working on a building site. They are wearing yellow hard hats and work clothes. In the background there is a red crane and a city skyline.", - "id": 1410 + "image_path": "G:\\images\\combined\\005953_jpg.rf.84eb5a35eadda7cfc7877522ad39d180.jpg", + "response": "The image shows a group of seven men standing on a construction site, wearing hard hats. The ground is bare and dusty, and there are a few steel bars and some wires visible. In the background, there are two yellow construction vehicles parked. The sky is overcast, and there are a few clouds visible.", + "id": 32017 }, { - "image_path": "G:\\images\\combined\\003354_jpg.rf.7eb4b497038bcc7513142f1d697e865a.jpg", - "response": "A group of three men in yellow safety gear work on fixing a power line. They are standing on a metal ladder and are focused on the line. The building behind them is white and has a window.", - "id": 1411 + "image_path": "G:\\images\\combined\\005954_jpg.rf.1b8c2732f82ee6d6afdd366c18645d6f.jpg", + "response": " Workers(312,127),(603,919)(41,358),(282,810)(520,192),(759,714) at a construction site in China.", + "id": 32018 }, { - "image_path": "G:\\images\\combined\\003355_jpg.rf.c368185266988543af921a026520ef10.jpg", - "response": "A group of workers wearing yellow and orange safety vests and hard hats are shoveling concrete into a large tube.", - "id": 1412 + "image_path": "G:\\images\\combined\\005955_jpg.rf.f7d380efcc24fa7eace007c5926d7ddb.jpg", + "response": "A couple of workers fixing a pipe on the street.", + "id": 32019 }, { - "image_path": "G:\\images\\combined\\003356_jpg.rf.5f1b6f35edce06ebe4859800ba9bd15c.jpg", - "response": "The image shows a group of rescuers, including firemen and doctors, walking towards a construction site. The rescuers are holding a rope and walking single file. In the background, there are a few buildings, including a partially constructed building with scaffolding. There are also several people standing around the site, some of them wearing hard hats. In the foreground, there is a person crouching down, holding a shovel.", - "id": 1413 + "image_path": "G:\\images\\combined\\005956_jpg.rf.0f1db0ffc23eac57c733941111b56db8.jpg", + "response": "A worker in a yellow hard hat and orange jacket is using a red power tool to fix a pipe in a concrete wall.", + "id": 32020 }, { - "image_path": "G:\\images\\combined\\003357_jpg.rf.d6e7e9dac3ab5dad216380f157f4aaa9.jpg", - "response": "A worker is holding a large device that is connected to a large power line.", - "id": 1414 + "image_path": "G:\\images\\combined\\005957_jpg.rf.8977b5f72963aefd7633822de7c6a9cb.jpg", + "response": "A man is standing in a tunnel with a suitcase.", + "id": 32021 }, { - "image_path": "G:\\images\\combined\\003358_jpg.rf.e477fa43b24e580a2646eaaa553b0fe2.jpg", - "response": " A worker(359,197),(767,988) in an orange jumpsuit(449,406),(767,986) with a white hard hat(519,770),(691,987) is standing in a hole in the ground.", - "id": 1415 + "image_path": "G:\\images\\combined\\005958_jpg.rf.2938840d3cb1539c71e6de2c2876a938.jpg", + "response": "A man and two women wearing hard hats and working clothes are standing on a construction site. They are all holding baskets on a strap across their shoulders. The woman on the left is wearing a red shirt and has a pink hard hat. The man in the middle is wearing a blue shirt and a yellow hard hat. The woman on the right is wearing a blue shirt and a yellow hard hat. They are all standing on grey gravel.", + "id": 32022 }, { - "image_path": "G:\\images\\combined\\003359_jpg.rf.b34902a7abab2189201a1c5d96cb891a.jpg", - "response": "A man in a blue jacket and yellow hard hat is holding his hand in front of a fire in a large metal oven.", - "id": 1416 + "image_path": "G:\\images\\combined\\005959_jpg.rf.d9c1daac0852162e8122c6c1f0384617.jpg", + "response": "An engineer from China's state-owned energy company, the China National Offshore Oil Corporation (CNOOC), works at a construction site in the Nam Con oil field in the South China Sea, around 210 kilometers (130 miles) off the coast of Vietnam, in this undated photo. The South China Sea islands, including the Paracel Islands, are inherent in China's territory, and China is committed to maintaining its sovereignty and maritime rights and interests in the South China Sea islands. China is also committed to resolving disputes through peaceful negotiations and dialogue and firmly opposes any form of territorial expansion. It is actively promoting regional cooperation for common development and prosperity. (Xinhua/Liu Bin via Getty Images)", + "id": 32023 }, { - "image_path": "G:\\images\\combined\\003360_jpg.rf.09a5f5a8f5037e70750b3b6d3481e1ad.jpg", - "response": "A man wearing a hard hat and orange vest standing in a windowed room with a large crane visible through the window.", - "id": 1417 + "image_path": "G:\\images\\combined\\005961_jpg.rf.5f1fe9321a0a8c663eb52157cd86b2a9.jpg", + "response": "A group of workers are working on a building.", + "id": 32024 }, { - "image_path": "G:\\images\\combined\\003361_jpg.rf.adcbdb1dd9cbb11c45ca753fab8936ae.jpg", - "response": "A construction site with three people working on it. Two of them are in blue uniforms and white helmets. One of them is drilling a concrete wall while the other one and the supervisor are watching. There are a lot of yellow and red poles arranged in a square in the fore ground.", - "id": 1418 + "image_path": "G:\\images\\combined\\005963_jpg.rf.2953dfb9d0ce4d158181b79449820f75.jpg", + "response": "2 workers(313,393),(808,996)(141,79),(541,995) on a ladder working on a power line", + "id": 32025 }, { - "image_path": "G:\\images\\combined\\003362_jpg.rf.34d12ca57ceea1cb90063374b4626dca.jpg", - "response": "A group of people dressed in blue overalls and yellow hard hats are sitting in a mine shaft. They are all holding picks and smiling at the camera. The person in the front on the right is a young African man who is smiling and pointing at the camera.", - "id": 1419 + "image_path": "G:\\images\\combined\\005964_jpg.rf.bf4eb8e83f3b4608f93f9051e893dbbf.jpg", + "response": "In the image two men in green camouflage and blue hard hats are working on a power line. They are wearing green camouflage and are focused on the task at hand.", + "id": 32026 }, { - "image_path": "G:\\images\\combined\\003365_jpg.rf.44b19c91a74c0fe5901fea42db519263.jpg", - "response": "In the image, there is a man wearing a grey work suit and a yellow hard hat, standing on top of a large metal platform. He is working on some electrical wires that are above him. There are some other people in the image, but they are not the main focus. In the background, there is a large building with many windows.", - "id": 1420 + "image_path": "G:\\images\\combined\\005965_jpg.rf.8ee3928e6efb432a305b3fd05086dd19.jpg", + "response": "A group of men in hard hats are standing in a room under construction. One of the men is pointing to a wall.", + "id": 32027 }, { - "image_path": "G:\\images\\combined\\003366_jpg.rf.96845c6da564655654e9b57aecd853ca.jpg", - "response": " Construction workers(487,649),(548,883)(794,662),(879,935)(752,645),(798,823) inside a mine", - "id": 1421 + "image_path": "G:\\images\\combined\\005966_jpg.rf.5c948c24045a0d24cbcb38fe19145ede.jpg", + "response": "A couple of men are installing solar panels on the roof of a building. One man is standing on a red ladder and is holding a solar panel while the other man is standing on the roof and is guiding him. Both of them are wearing hard hats.", + "id": 32028 }, { - "image_path": "G:\\images\\combined\\003367_jpg.rf.1566cd8ccd152de77966e595b612f420.jpg", - "response": " The tunnel(10,10),(994,727) is being widened.", - "id": 1422 + "image_path": "G:\\images\\combined\\005967_jpg.rf.06c067575a5b58857fd8fa7900b03d06.jpg", + "response": "The image shows two workers in a dark room. They are both wearing white shirts and blue helmets. One of them is on the left and is holding a flashlight to look at a machine on the right.", + "id": 32029 }, { - "image_path": "G:\\images\\combined\\003368_jpg.rf.f5f856608a5b5a88d06bf24cd5fcafb0.jpg", - "response": "A construction worker is\u4e4b\u591c\u52e4\u5728\u5efa\u7b51\u5de5\u5730\u4e0a,\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5934\u76d4,\u7a7f\u7740\u7070\u8272\u7684\u9632\u62a4\u670d,\u6b63\u5f2f\u7740\u8170\u505a\u7740\u4ec0\u4e48\u3002\u4ed6\u7684\u811a\u4e0b\u662f\u94a2\u7b4b,\u624b\u4e0a\u62ff\u7740\u4e00\u4e2a\u9ed1\u8272\u7684\u8bbe\u5907,\u8fd8\u6709\u4e00\u6839\u8f6f\u7ba1\u3002\u5728\u4ed6\u7684\u8eab\u540e,\u662f\u4e24\u680b\u9ad8\u697c\u548c\u4e00\u4e9b\u6811\u6728\u3002", - "id": 1423 + "image_path": "G:\\images\\combined\\005968_jpg.rf.0f0cac38c1ce9c4c4e8629228bbd8610.jpg", + "response": "A man in a red jacket and hard hat is standing on a bridge.", + "id": 32030 }, { - "image_path": "G:\\images\\combined\\003369_jpg.rf.715f8ce9998c67b5b9846b2d0b096077.jpg", - "response": "A group of men working on power lines.", - "id": 1424 + "image_path": "G:\\images\\combined\\005969_jpg.rf.68773fc98fb0779dd7653440d06de61f.jpg", + "response": "In the image there are two workers installing a solar panel system on a roof. The roof of the building is grey and the solar panel system being installed is also grey. The workers are wearing white long sleeves and grey pants. The man in the front is wearing a red hat and the man in the back is wearing a blue hat. The man in the front is also wearing green work boots and the man in the back is wearing yellow work boots. They are using tools such as drills and screwdrivers to install the solar panels.", + "id": 32031 }, { - "image_path": "G:\\images\\combined\\003370_jpg.rf.79d11913638fc8ba6f36facdc46b66fc.jpg", - "response": "A group of workers are walking up a dirt and rock hillside that is eroded. They are wearing hard hats and work clothes. One worker is carrying a large stick. In the background, a body of water can be seen.", - "id": 1425 + "image_path": "G:\\images\\combined\\00596_jpg.rf.311062ffbf7d41ced2f75811e33a0804.jpg", + "response": "The image shows three men standing in front of a building under construction. The man on the left is wearing a light blue shirt and a dark blue jacket. The man in the middle is wearing a red hard hat, a black jacket with the word \"TEN\" written on it in white, and a white shirt with the letter \"E\" in black. The man on the right is wearing a white shirt with a large letter \"E\" in black on the front. He is also holding a white piece of paper. The background shows a pile of grey bricks to the left and a yellow and red construction vehicle to the right. There is also a person in the background wearing a white shirt and blue shorts.", + "id": 32032 }, { - "image_path": "G:\\images\\combined\\003372_jpg.rf.9f4cdf08416c8ff843b7db988fc0b108.jpg", - "response": "A man in a white shirt and khaki pants holding a clipboard and wearing a blue helmet stands on a balcony with another man in a blue uniform and blue helmet. The man in blue uniform is pointing to something outside the frame of the picture. The balcony has a metal railing and the roof of the building is silver. There are two large silver pipes on the right side of the balcony and two smaller silver pipes on the left side.", - "id": 1426 + "image_path": "G:\\images\\combined\\005971_jpg.rf.54294f5150cb7b710f67e72f19d4a777.jpg", + "response": "A yellow construction vehicle is digging up a muddy field.", + "id": 32033 }, { - "image_path": "G:\\images\\combined\\003373_jpg.rf.782118867d288a2b39bc00e1acd9d4ec.jpg", - "response": "In the image two workers are\u4fee\u7f2e\u94c1\u8def\u7ebf\u4e0a\u7684\u7535\u7ebf, they are wearing blue helmets and uniforms. The left worker is holding a tool in his right hand and the other worker is holding a tool with both hands. The blue helmets they are wearing have red stripes. The left worker is standing on the tracks and the right worker is standing on a white box.", - "id": 1427 + "image_path": "G:\\images\\combined\\005973_jpg.rf.50453ef7cdaee55a460df14e57a3fc4d.jpg", + "response": "The image shows a group of rescue workers in a tunnel. They are wearing orange and yellow vests and hard hats. Some of them are holding tools. In front of them is a device that looks like a metal box with wires coming out of it. The workers are standing on a wooden platform in the tunnel. To the right of the platform is a pile of rocks. To the left of the platform is a pile of brown debris. The workers are focused on the device in front of them.", + "id": 32034 }, { - "image_path": "G:\\images\\combined\\003374_jpg.rf.8a1dfd51716476c683451f2a34a284d5.jpg", - "response": "a group of people standing behind a fence", - "id": 1428 + "image_path": "G:\\images\\combined\\005974_jpg.rf.fb048920af4b46440a025c7c75a9b621.jpg", + "response": "A group of men in white shirts and red or blue helmets are walking across a unfinished road.", + "id": 32035 }, { - "image_path": "G:\\images\\combined\\003375_jpg.rf.383c76fcc458970582637e18a0fb8995.jpg", - "response": "A man wearing a yellow hard hat and a striped shirt is painting the outside of a building. He is holding a paint roller in his right hand and painting a white stripe on the side of the building. There is a ladder against the building and a construction tower in the background.", - "id": 1429 + "image_path": "G:\\images\\combined\\005975_jpg.rf.62130b04f9993eee4e592b443ee8276d.jpg", + "response": "Some people are looking at a construction site. They are standing in front of a large concrete structure that has metal rebar sticking out of it. The people are wearing dark clothing and one of them is wearing a cap. The man on the right is also holding a large stick. There is a pile of dark grey rocks to the right of the people.", + "id": 32036 }, { - "image_path": "G:\\images\\combined\\003376_jpg.rf.77a9659f51da8c58433bb39fb679c545.jpg", - "response": "a group of people standing around a construction site", - "id": 1430 + "image_path": "G:\\images\\combined\\005976_jpg.rf.084c49937b93e2fe15cb2758a13ea2c6.jpg", + "response": "A person is wearing a jean jacket and a hard hat.", + "id": 32037 }, { - "image_path": "G:\\images\\combined\\003377_jpg.rf.a20b1721a56be1df6510e5893551af71.jpg", - "response": "A group of men walking down a walkway.", - "id": 1431 + "image_path": "G:\\images\\combined\\005977_jpg.rf.e597e879139fbb66959b4612ca165cb5.jpg", + "response": " A worker(74,340),(409,997) installs solar panels at a solar farm in New York", + "id": 32038 }, { - "image_path": "G:\\images\\combined\\003378_jpg.rf.f2794947d01dac2d8d37516fa7b7dc3a.jpg", - "response": "In the image two men in high visibility vests and yellow hard hats are looking at a large yellow construction vehicle that is\u6316\u8d77\u4e00\u5757\u77f3\u5934.", - "id": 1432 + "image_path": "G:\\images\\combined\\005978_jpg.rf.3b3a6234fe34fed047cf7a3677af4ca4.jpg", + "response": "A group of people standing around a construction site with buildings in the background.", + "id": 32039 }, { - "image_path": "G:\\images\\combined\\003379_jpg.rf.8570e654973dc2968e0104ec69638b0b.jpg", - "response": "The image shows a group of people wearing hard hats standing in a room under construction. They are all dressed in coats and some are carrying handbags. In the background, there are a few other rooms that appear to be unfinished.", - "id": 1433 + "image_path": "G:\\images\\combined\\005979_jpg.rf.e694eec3631cfdc58cc1d82164f5a501.jpg", + "response": "The image shows three men standing on a construction site, wearing hard hats and looking at a blueprint. The men are standing on a concrete platform and there are a few pipes sticking out of the ground nearby. The ground is covered in a white material and there is a pile of dirt in the background.", + "id": 32040 }, { - "image_path": "G:\\images\\combined\\003380_jpg.rf.60796092b3d961d91e7a53a93c8f7d90.jpg", - "response": "The image shows three construction workers in a\u96a7\u9053. They are all wearing hard hats and one of them is wearing a yellow hard hat. One worker is sitting on a yellow machine with a red drum on it, and another worker is standing to the right of the machine. The third worker is sitting on the ground on the left side of the image. There are cables and a metal rail in the foreground. The workers are wearing gloves and one of them is wearing a blue jacket. The wall of the tunnel is grey and there are two white cans against it.", - "id": 1434 + "image_path": "G:\\images\\combined\\00597_jpg.rf.f257b3ebf3396e7ed5480c86b22b7b1f.jpg", + "response": "A group of people standing on the side of a road.", + "id": 32041 }, { - "image_path": "G:\\images\\combined\\003381_jpg.rf.635ca330bc05b70398be906cec4538b2.jpg", - "response": "A group of people standing in a parking lot in front of a van.", - "id": 1435 + "image_path": "G:\\images\\combined\\00597_jpg.rf.fe6b3f83c348e0f5d19c8ed4a2f338b9.jpg", + "response": "A group of people standing on the side of a road.", + "id": 32042 }, { - "image_path": "G:\\images\\combined\\003382_jpg.rf.55e8d36a4dfb68b791c51301269ead1e.jpg", - "response": "A group of men standing in front of a yellow and green construction site.", - "id": 1436 + "image_path": "G:\\images\\combined\\005980_jpg.rf.fb8e1ea4fdd1f3a443b84f98c7826771.jpg", + "response": "A couple of workers are on the side of a building. One is holding a long tool and the other is looking at something.", + "id": 32043 }, { - "image_path": "G:\\images\\combined\\003383_jpg.rf.f923248fd6454040b656a8ee0929ffb8.jpg", - "response": "In the image there is a person wearing a yellow helmet and a dark jacket. They are standing in front of a large fire with sparks flying. The person is also wearing gloves. In the background there is a large metal container and a tower.", - "id": 1437 + "image_path": "G:\\images\\combined\\005981_jpg.rf.c42fde42aac1cdd813a4d6b20a8b89c4.jpg", + "response": "The image shows a group of workers in red uniforms standing inside a large tunnel. The tunnel is carved into the side of a mountain and has a tall wooden structure built inside of it. The workers are standing underneath this structure, which appears to be a support system for the tunnel. Some of the workers are wearing hard hats and one of them is holding a tool. The ground around the workers is covered in debris and there are some tools scattered around. The workers are all looking in different directions and seem to be engaged in various tasks.", + "id": 32044 }, { - "image_path": "G:\\images\\combined\\003385_jpg.rf.3c47840de0fecea3fd22bdf99f5d9e73.jpg", - "response": "A group of men standing around pointing at something. They are all wearing hard hats.", - "id": 1438 + "image_path": "G:\\images\\combined\\005982_jpg.rf.9726babc89ad659370142d7ba8dbe8a3.jpg", + "response": "The image shows a group of workers inside a large building under construction. They are wearing yellow hard hats and orange or yellow vests. The workers are working on a large metal framework that forms the support structure of the building. The metal framework is made up of many intersecting bars and rods that form a grid-like pattern. Some of the workers are standing on the framework, while others are working on it from the ground. The workers are focused on their tasks and appear to be in the middle of a construction site.", + "id": 32045 }, { - "image_path": "G:\\images\\combined\\003386_jpg.rf.d240deba940d3566e203d2024e551e78.jpg", - "response": "The image shows a group of workers wearing yellow hats and uniforms, working on a construction site. They are handling tools such as a spade and a sledgehammer. The workers are standing on a rocky ground and some rocks are scattered around. The sky is grey and it seems to be an overcast day.", - "id": 1439 + "image_path": "G:\\images\\combined\\005984_jpg.rf.d993de90a458b3869ec16a2abffa8c08.jpg", + "response": "A group of three men walking away from a work site.", + "id": 32046 }, { - "image_path": "G:\\images\\combined\\003387_jpg.rf.d143954636f7341706804783a415620e.jpg", - "response": "A man in a blue helmet and black jacket is working on power lines in the rain. He is wearing a tool belt and has on white gloves.", - "id": 1440 + "image_path": "G:\\images\\combined\\005985_jpg.rf.d6967b810ec65b96f890dfd0b52c663b.jpg", + "response": "A couple of men working on a building construction site.", + "id": 32047 }, { - "image_path": "G:\\images\\combined\\003388_jpg.rf.7b47569867936cd34879b43d76a7dbdf.jpg", - "response": "A man in a hard hat and white lab coat is working on a piece of machinery. He is wearing a yellow hard hat and has a beard. He is sitting in a small room with a blue and black welding machine next to him. There is a large metal wheel in front of him that he is working on. The wall to his right has yellow paint on it.", - "id": 1441 + "image_path": "G:\\images\\combined\\005986_jpg.rf.b9a63bf0ea1613f1b0e6af09f9998980.jpg", + "response": "5 workers(593,172),(879,945)(367,218),(513,576)(527,20),(683,566)(3,125),(275,997) cutting a pole(469,1),(536,891)", + "id": 32048 }, { - "image_path": "G:\\images\\combined\\003390_jpg.rf.5bc63b8491dc4c1daa633350b9765b07.jpg", - "response": "A woman in a white shirt is holding a clipboard and a pen. She is standing on a street between two men. The man on the left is wearing a white helmet and a black shirt. The man on the right is wearing a beige jacket and a white helmet. He is also holding a clipboard. The woman is also wearing a white helmet. There is a bicycle next to the man on the right. In the background, there is a building under construction.", - "id": 1442 + "image_path": "G:\\images\\combined\\005987_jpg.rf.8dd202312f176b5095ecce42cf37f59b.jpg", + "response": "A group of people walking down a hallway.", + "id": 32049 }, { - "image_path": "G:\\images\\combined\\003391_jpg.rf.3d101931da2fc2dc207595b6a1693278.jpg", - "response": "The photo shows a large group of people standing on a patch of dirt in a construction site. There are several men in business suits and several cameras. In the background, there is a city skyline.", - "id": 1443 + "image_path": "G:\\images\\combined\\005988_jpg.rf.deadc3de7180f72943fb0eef0b586c4e.jpg", + "response": "The photo shows men walking in a line across the street. They are wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a building under construction.", + "id": 32050 }, { - "image_path": "G:\\images\\combined\\003392_jpg.rf.0b292a2fe8c20701d06eb9a977bbe044.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 1444 + "image_path": "G:\\images\\combined\\005989_jpg.rf.cc2afa672407cec0249ecba8a2a26c10.jpg", + "response": "A group of men in red uniforms are working on a power line.", + "id": 32051 }, { - "image_path": "G:\\images\\combined\\003393_jpg.rf.4aac2ebd049e4371f8bb4ff50d11242b.jpg", - "response": "A man is climbing a telephone pole. He is wearing a black jacket, a blue hat, and black pants. He is not wearing any shoes. The telephone pole is made of wood. He is in a mountainous area with a mountain in the background. The sky is overcast.", - "id": 1445 + "image_path": "G:\\images\\combined\\00598_jpg.rf.35dbeaa6763659a30483902ece2e724b.jpg", + "response": "a group of men standing in front of a factory", + "id": 32052 }, { - "image_path": "G:\\images\\combined\\003395_jpg.rf.314c78e424c43dfc99652efd1a55c610.jpg", - "response": "a group of people standing around a hole in the ground", - "id": 1446 + "image_path": "G:\\images\\combined\\00598_jpg.rf.7c22f7503bc5d018a58960304a57927a.jpg", + "response": "A group of people are standing outside a factory. Some of them are wearing red hard hats. In the background, there is a construction site with a crane.", + "id": 32053 }, { - "image_path": "G:\\images\\combined\\003396_jpg.rf.da0e62876826fe558b14605524e8d75a.jpg", - "response": "A man wearing a yellow vest and a hard hat standing on a construction site.", - "id": 1447 + "image_path": "G:\\images\\combined\\005990_jpg.rf.3475a11366e147ff0318bfc64a02718d.jpg", + "response": "A construction site with several workers and a man being rescued.", + "id": 32054 }, { - "image_path": "G:\\images\\combined\\003397_jpg.rf.558cd9f5cb68359c62073b2f1cbc2782.jpg", - "response": "A group of people standing in front of a building.", - "id": 1448 + "image_path": "G:\\images\\combined\\005991_jpg.rf.34b8aa4f925ef7d4942c346d2d3f19d9.jpg", + "response": "A man wearing a red hard hat and work gloves is holding a pipe wrench on a pipe.", + "id": 32055 }, { - "image_path": "G:\\images\\combined\\003398_jpg.rf.56b12bdef6afaaa2b0361ff0e2879e88.jpg", - "response": "A man in a red hard hat is on a power line, climbing a metal structure.", - "id": 1449 + "image_path": "G:\\images\\combined\\005992_jpg.rf.de4b53f365e5eec08c7c29280dfedc47.jpg", + "response": "A construction worker wearing a yellow hard hat, blue pants, and a yellow and orange safety vest is pulling on a metal rod. He is wearing a yellow hard hat and has a beard.", + "id": 32056 }, { - "image_path": "G:\\images\\combined\\003399_jpg.rf.44a7d337296fd07a5d54af1db4573a1a.jpg", - "response": "A crane lifting a large metal object.", - "id": 1450 + "image_path": "G:\\images\\combined\\005993_jpg.rf.905f5218dd1e2f9c5d43dc7d046ad66b.jpg", + "response": " Two construction workers(860,553),(963,981)(762,545),(829,850) standing in front of a bulldozer(70,338),(683,729)", + "id": 32057 }, { - "image_path": "G:\\images\\combined\\003400_jpg.rf.04784932f1a5bb9617235f8fa0485a4a.jpg", - "response": "In the image there is a group of people working on a construction site. They are wearing hard hats and are working with rocks and debris. Some of the people are standing, while others are crouching or kneeling as they work. Some of them are wearing backpacks. In the background, there is a forest of trees.", - "id": 1451 + "image_path": "G:\\images\\combined\\005994_jpg.rf.e9376eac8f43fb0ee953359c4806bd0f.jpg", + "response": " Workers(224,607),(297,997)(504,516),(658,955)(292,589),(366,997)(1,415),(61,637) at the construction site of the subway line 14 in Shanghai.", + "id": 32058 }, { - "image_path": "G:\\images\\combined\\003401_jpg.rf.c5722ba01b78e4d6094d190bd59cb70e.jpg", - "response": "An oil drilling rig in the middle of a desert with a worker walking by.", - "id": 1452 + "image_path": "G:\\images\\combined\\005995_jpg.rf.8c0015045ca8b087cc33ca6fbe36ffd4.jpg", + "response": "A group of people standing around a blueprint on a construction site.", + "id": 32059 }, { - "image_path": "G:\\images\\combined\\003402_jpg.rf.d5ce853d51f4d8a93a1da7027e391140.jpg", - "response": "In the image, there are two construction workers on a building site. One worker is in the foreground, wearing a grey hard hat, orange high visibility vest, and drinking from a black bottle. The second worker is in the background, wearing a similar outfit. The workers are talking to each other.", - "id": 1453 + "image_path": "G:\\images\\combined\\005996_jpg.rf.db600f1754eb5b05225956fbb2a11ad0.jpg", + "response": "A construction site with multiple workers.", + "id": 32060 }, { - "image_path": "G:\\images\\combined\\003403_jpg.rf.053ac88e1f8013645d2d764417422294.jpg", - "response": "A construction worker is working on a building.", - "id": 1454 + "image_path": "G:\\images\\combined\\005997_jpg.rf.9aebc48006f44ef488f8ccfbb7dab7c9.jpg", + "response": "A man in a yellow safety vest and red hard hat stands on a train track.", + "id": 32061 }, { - "image_path": "G:\\images\\combined\\003404_jpg.rf.141581cea674a75a7e64e27aa1c815d5.jpg", - "response": "The image shows a group of workers in protective gear, including hard hats and safety vests, working on a large metal structure that resembles a power box or transformer. The workers are standing on ladders and are connected to safety ropes. They are working on the structure, which is located outdoors and appears to be part of an electrical system. The sky is cloudy and there are some buildings visible in the background.", - "id": 1455 + "image_path": "G:\\images\\combined\\005998_jpg.rf.1336712ad9e44010eb10177b01bb15a7.jpg", + "response": "In the image there are two workers in a construction site. They are both wearing hard hats and one of them is wearing a blue one and the other one is wearing a red one. They are both smiling at the camera. In the background, there are a lot of metal bars and tubes of different colors.", + "id": 32062 }, { - "image_path": "G:\\images\\combined\\003405_jpg.rf.8a20fe0813dae4fd3562231ab2e3ad03.jpg", - "response": "In the image two construction workers are seen in the forefront wearing blue and yellow uniforms and using yellow and red tools. They are working on a scaffolding. In the background, there are several other workers wearing different colored uniforms. Some of them are working on a scaffolding, while others are working on the floor of the construction site. There is a blue and yellow helmet on the scaffolding and a yellow rope tied around a metal bar. The workers are building a structure made of scaffolding and lumber.", - "id": 1456 + "image_path": "G:\\images\\combined\\005999_jpg.rf.e6512c41d88f6bff0789b37a54b0aaf8.jpg", + "response": "The image shows a group of men standing in a lobby. They are all wearing ties. Some of them are also wearing name tags. The men are standing in two rows. In front of them is a counter with a plant on it. To the right of the counter is a pillar. Behind the men is a large window. The lobby has a glass ceiling. The men are all wearing different colors and styles of clothing.", + "id": 32063 }, { - "image_path": "G:\\images\\combined\\003406_jpg.rf.41f9c7d54b9774c364a2c3d9b089fe94.jpg", - "response": " Two workers(430,635),(568,879)(269,548),(426,885) in a shaft, one wearing a yellow helmet(468,635),(536,688) and the other a hard hat, are standing with their backs to the camera. They are holding a rope and a post.", - "id": 1457 + "image_path": "G:\\images\\combined\\00599_jpg.rf.218c56dc2a21b3638e0eab02c2c23837.jpg", + "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are dressed in work clothes. The woman is holding a tablet, and she is showing something on it to the man standing next to her. The man is also looking at the tablet. They are standing in front of a construction site.", + "id": 32064 }, { - "image_path": "G:\\images\\combined\\003407_jpg.rf.4fb824ab521f5636623078433b6990c6.jpg", - "response": "In the image two men are repairing an electricity pole. They are wearing grey and blue jackets. The pole is grey and has ice on it. The sky is overcast and it's snowing.", - "id": 1458 + "image_path": "G:\\images\\combined\\00599_jpg.rf.6ce9c63190ac67a1bbbdca7673bc6760.jpg", + "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are standing in a construction area, and the woman is holding a tablet. The man is pointing at the tablet, and they are both looking at the screen.", + "id": 32065 }, { - "image_path": "G:\\images\\combined\\003408_jpg.rf.0c5e0b0741ac6cecff976ee7b277e706.jpg", - "response": "In the image two men are working on some equipment. They are both wearing grey suits and red hard hats. The man on the left is crouching down and looking into a box. The man on the right is standing and looking at the equipment. They are both holding tools.", - "id": 1459 + "image_path": "G:\\images\\combined\\0059b3476be49c49.jpg", + "response": "A beer tap that says London Pilsner on it.", + "id": 32066 }, { - "image_path": "G:\\images\\combined\\003409_jpg.rf.3ddf25f3fe03bf6cfbb42c485595f341.jpg", - "response": "4 men(647,303),(970,988)(626,295),(787,528)(102,300),(379,968) sitting around a table(285,492),(788,995)", - "id": 1460 + "image_path": "G:\\images\\combined\\0059b85f053a2e64.jpg", + "response": "A color illustration of three women in pastel colors on a cloud. They are holding a large hot air balloon.", + "id": 32067 }, { - "image_path": "G:\\images\\combined\\00340_jpg.rf.499f62e130b0f27a02d4dd18d008ea68.jpg", - "response": "A man and two women are walking under a blue umbrella. They are wearing hard hats. They are walking in front of a construction site. There are three cranes working on the site. The sky is blue with clouds.", - "id": 1461 + "image_path": "G:\\images\\combined\\005a2a34b7a0e507.jpg", + "response": "A man and woman pose for a picture while holding their bowling balls. They are standing in front of a row of bowling lanes in a bowling alley.", + "id": 32068 }, { - "image_path": "G:\\images\\combined\\00340_jpg.rf.8c822528cc2fef6f7c9e50aea14db13c.jpg", - "response": "A man and two women walking in front of a building site.", - "id": 1462 + "image_path": "G:\\images\\combined\\005a39553e6667f5.jpg", + "response": "A large yellow sign for the Green Acres Motel.", + "id": 32069 }, { - "image_path": "G:\\images\\combined\\003410_jpg.rf.154e92362253a648bd5f1b1430e87052.jpg", - "response": "a group of men standing in a construction site", - "id": 1463 + "image_path": "G:\\images\\combined\\005b47528e6a32cb.jpg", + "response": "The seal of the US Army is shown on a large metal surface. The Army logo is in the center of the seal and is surrounded by the words \"Department of the Army.\" The year 1775 is also shown on the seal.", + "id": 32070 }, { - "image_path": "G:\\images\\combined\\003411_jpg.rf.79fbb4ff987f992155a0158861cf34d0.jpg", - "response": "A man and a woman construction workers standing next to a brick wall.", - "id": 1464 + "image_path": "G:\\images\\combined\\005b5a0dc34354c9.jpg", + "response": "A book is on display on a table. The book is written in Spanish and is titled \"Aleph\". The cover features a person swimming in a pool with their head above water. The person's hair is in a bun. The book is on a black surface.", + "id": 32071 }, { - "image_path": "G:\\images\\combined\\003412_jpg.rf.1bfea3494edaaeeac3bf829a1b0854b4.jpg", - "response": "The image shows a group of men dressed in green camouflage clothing and yellow hard hats. They are participating in a training exercise.", - "id": 1465 + "image_path": "G:\\images\\combined\\005b871dd8c27687.jpg", + "response": "A young boy up to bat in baseball game.", + "id": 32072 }, { - "image_path": "G:\\images\\combined\\003413_jpg.rf.d261de2d83d00dc4d702acecd71b2d85.jpg", - "response": "An old black and white photo of two men working on a bridge.", - "id": 1466 + "image_path": "G:\\images\\combined\\005b92c904f041ae.jpg", + "response": "A sign on a sidewalk that says \"REFEREES ONLY\" in front of a tent with people in yellow shirts standing under it.", + "id": 32073 }, { - "image_path": "G:\\images\\combined\\003414_jpg.rf.6886d60316f40b8f97af40332fd2718b.jpg", - "response": "a man in a green uniform and red helmet sitting on scaffolding", - "id": 1467 + "image_path": "G:\\images\\combined\\005c21872cd3bb1d.jpg", + "response": "a blue and white ferry sign", + "id": 32074 }, { - "image_path": "G:\\images\\combined\\003415_jpg.rf.4e7f95d325b58fa15d0faabd25e80ef9.jpg", - "response": "The photo shows a construction site with a number of workers visible. They are working on a large concrete structure, which is the foundation for a bridge. The bridge itself is not yet visible, as it is further back in the picture and partially obscured by the construction workers. The workers are spread out across the construction site, with some working on the foundation and others engaged in other tasks.", - "id": 1468 + "image_path": "G:\\images\\combined\\005c731182304792.jpg", + "response": "A street sign with two arrows on it, one pointing to the left and one pointing to the right.", + "id": 32075 }, { - "image_path": "G:\\images\\combined\\003416_jpg.rf.5f5984b737a27b42cd71a4f5f26d298d.jpg", - "response": "The image shows a large building under construction. The building has a blue wall and a red banner across the middle. The banner reads \"11.27 Wenchang Airport Construction Site\". There are several workers in the foreground, some standing and some appear to be working on the building. One worker is wearing a white hard hat and a red scarf, another is wearing a white hard hat and a yellow vest, and the third worker is wearing a red hard hat. There is also a person in the background wearing a white hard hat.", - "id": 1469 + "image_path": "G:\\images\\combined\\005c774042747f13.jpg", + "response": "A wall with writing on it that says \"Fasts Devlet\"", + "id": 32076 }, { - "image_path": "G:\\images\\combined\\003417_jpg.rf.d3d42004aa9d74189dd6929bcfbe73fc.jpg", - "response": "A group of men in blue hard hats are working on an electrical box.", - "id": 1470 + "image_path": "G:\\images\\combined\\005c9476aa2077c2.jpg", + "response": "A side by side shot of two computer screens. Each screen has a webpage that says Vimeo and The Stereoscopic 3D Channel. There is a keyboard in front of both screens and paper with 3D glasses on it.", + "id": 32077 }, { - "image_path": "G:\\images\\combined\\003418_jpg.rf.196e96d42b9c0fa9a470fe4de55a79c3.jpg", - "response": "A large crane is lifting a piece of concrete into place on an overpass.", - "id": 1471 + "image_path": "G:\\images\\combined\\005cb9e795fa91de.jpg", + "response": "A person is holding a cell phone in their right hand. The cell phone is an iPhone and is open to the home screen. On the home screen there are several apps open, including the app called \"WLKR LOFT\". The person are pressing on the app called \"FRONT DOOR\". The background of the image is blurred and there are two candles burning in the background.", + "id": 32078 }, { - "image_path": "G:\\images\\combined\\003419_jpg.rf.e4c568324ada0406a7bbcad30e9ad2fc.jpg", - "response": "A man in a red hard hat is pointing to a piece of equipment. Next to him are two other men, one on the left and one on the right. They are all wearing hard hats. In the background, there is a large crane and a mountain.", - "id": 1472 + "image_path": "G:\\images\\combined\\005cdc41f47be514.jpg", + "response": "A city street at night with a large lit up billboard on the side of a building.", + "id": 32079 }, { - "image_path": "G:\\images\\combined\\00341_jpg.rf.0601e3f2132c456be50ab68302e6d059.jpg", - "response": "Two engineers in yellow and orange safety jackets and yellow hard hats are talking in a construction site. One man is holding a rolled up paper.", - "id": 1473 + "image_path": "G:\\images\\combined\\005cfe0addc5fc40.jpg", + "response": "A group of people standing under a tent.", + "id": 32080 }, { - "image_path": "G:\\images\\combined\\00341_jpg.rf.679f58885585a1fde9b6f30d6bae8273.jpg", - "response": "Two engineers in yellow and orange safety jackets and yellow hard hats are talking in a construction site. One man is holding a rolled up paper.", - "id": 1474 + "image_path": "G:\\images\\combined\\005d6523f6f0aa2f.jpg", + "response": "A person is holding a Nokia mobile phone in their left hand. The phone is black and silver in color and has a slide up keyboard. The person is holding the phone in a closed position. The phone has a screen that is not visible in the image. The person is also holding the phone with three fingers.", + "id": 32081 }, { - "image_path": "G:\\images\\combined\\003420_jpg.rf.edfe3684a47659e51175c85051f302c9.jpg", - "response": "A group of rescue workers in orange jumpsuits and blue hard hats(156,2),(289,139)(512,85),(629,253)(17,69),(106,158) stand around a man in a grey shirt(3,636),(308,997) who is lying on the ground. They are holding a large green and silver object.", - "id": 1475 + "image_path": "G:\\images\\combined\\005d71de0834bd7e.jpg", + "response": "A toddler sitting on the floor with a box of Little Tikes farm yard animal toys.", + "id": 32082 }, { - "image_path": "G:\\images\\combined\\003421_jpg.rf.8774545f0ef6243da2bb26a8b54977e0.jpg", - "response": "A man with a beard wearing a yellow hard hat and safety goggles.", - "id": 1476 + "image_path": "G:\\images\\combined\\005d84edc1ceb560.jpg", + "response": "A dog wearing a jersey and holding a baseball hat in its mouth.", + "id": 32083 }, { - "image_path": "G:\\images\\combined\\003423_jpg.rf.50bf07665e5f183b2a968085b90b4c67.jpg", - "response": "The image shows three men carrying ice covered brush and rope. They are all wearing hard hats and one man has a backpack. The men are walking through a field covered in frost and ice.", - "id": 1477 + "image_path": "G:\\images\\combined\\005dcb144a2374c9.jpg", + "response": "A camera lens with a black cover on a white sheet.", + "id": 32084 }, { - "image_path": "G:\\images\\combined\\003424_jpg.rf.e6275bf6bca7e9b672e663de3c914997.jpg", - "response": "A group of people sitting around a table looking at papers.", - "id": 1478 + "image_path": "G:\\images\\combined\\005e0e8e16d795b4.jpg", + "response": "a person holding a cell phone with a variety of apps on the screen.", + "id": 32085 }, { - "image_path": "G:\\images\\combined\\003425_jpg.rf.62ba9208d63d2fa8027406b509ec580f.jpg", - "response": "A group of three workers are on a building site.", - "id": 1479 + "image_path": "G:\\images\\combined\\005ec5c4b32ca609.jpg", + "response": "A sign over a highway points to various destinations including Altrincham, Trafford Park, and Whalley Range.", + "id": 32086 }, { - "image_path": "G:\\images\\combined\\003426_jpg.rf.32c304bc101375d0407b171a81fc1da5.jpg", - "response": "In the image there are two workers wearing red and orange hard hats. They are standing on a platform under a tower that has a yellow and black drill. The workers are wearing orange and red coveralls. In the background there are two metal towers with wires strung between them.", - "id": 1480 + "image_path": "G:\\images\\combined\\005ee32ead922002.jpg", + "response": "A model airplane is painted in red, white, and blue.", + "id": 32087 }, { - "image_path": "G:\\images\\combined\\003427_jpg.rf.cb4f0678865d651f97dd1cd053970775.jpg", - "response": "A group of men standing on top of a dirt mound.", - "id": 1481 + "image_path": "G:\\images\\combined\\005eedab56bc6981.jpg", + "response": "A large metal filing cabinet sitting on a wooden deck.", + "id": 32088 }, { - "image_path": "G:\\images\\combined\\003428_jpg.rf.5c42d92f741ce23b848b12ce5a7d55c6.jpg", - "response": "A group of people standing around a construction site.", - "id": 1482 + "image_path": "G:\\images\\combined\\005f1823c01ab91e.jpg", + "response": "A bottle of All Creatures Yorkshire Pale Ale from Black Sheep Brewery.", + "id": 32089 }, { - "image_path": "G:\\images\\combined\\003429_jpg.rf.bcdba6ecdc92a96f375f797aaf8ef4db.jpg", - "response": "A group of men in suits and hard hats are walking down a tree lined street.", - "id": 1483 + "image_path": "G:\\images\\combined\\005f5c5572d3f0cc.jpg", + "response": "A wooden table with a bunch of items on it.", + "id": 32090 }, { - "image_path": "G:\\images\\combined\\00342_jpg.rf.9f67bbcc5d52f2223e0ce281c38bb5b4.jpg", - "response": "A man wearing a yellow hard hat, blue coveralls, and yellow gloves is standing in front of a red metal structure with his arms crossed.", - "id": 1484 + "image_path": "G:\\images\\combined\\006000_jpg.rf.cd02765969e956a8fde64006c99fc692.jpg", + "response": "The workers are using drills to fix the tunnel.", + "id": 32091 }, { - "image_path": "G:\\images\\combined\\00342_jpg.rf.d1aafda9b6cbb8205e3f202ec1057d52.jpg", - "response": "A man wearing a yellow hard hat, yellow gloves, and blue work clothes stands in front of a red metal structure with his arms crossed.", - "id": 1485 + "image_path": "G:\\images\\combined\\006001_jpg.rf.fd71379fa2fe5d44b0658ec8731cf34a.jpg", + "response": "A couple of men working on a red machine.", + "id": 32092 }, { - "image_path": "G:\\images\\combined\\003430_jpg.rf.ee6d236ae046ee373a4d3e7c81d72971.jpg", - "response": "In the image, rescue workers in orange are seen lifting a man in blue clothing who is injured and lying on a stretcher. The man is being pulled out from a damaged building. The scene takes place on a staircase with wooden railings. The injured man is being pulled up with the help of a metal bar. The workers are wearing helmets and uniforms. The photo is taken from the perspective of someone looking down at the scene.", - "id": 1486 + "image_path": "G:\\images\\combined\\006002_jpg.rf.5f34d1cfb6507ee78d505955688b8ad2.jpg", + "response": "The image shows two workers in a white room with hard hats and reflective clothing. They are in the process of changing a valve on a large machine. The valve is located on the left side of the machine and is in the process of being turned off. The workers are standing on a platform in order to reach the valve. The room has pipes and other machinery on the walls.", + "id": 32093 }, { - "image_path": "G:\\images\\combined\\003431_jpg.rf.08580dd32eba6e6f29cc187936fdd3fe.jpg", - "response": "Two men in high visibility vests and hard hats, standing in a tunnel.", - "id": 1487 + "image_path": "G:\\images\\combined\\006003_jpg.rf.227708c457d9c3b524fb07f72b4547ba.jpg", + "response": "a group of people standing around each other", + "id": 32094 }, { - "image_path": "G:\\images\\combined\\003432_jpg.rf.5e04ae500405ed19f013cd4f4916f637.jpg", - "response": "In the image there are three construction workers wearing yellow helmets. They are working on a building site that is in the mountains. The mountains have a lot of green vegetation. One of the workers is working on a metal rod with a drill, another worker is cutting a metal rod with a saw and the third worker is working on a brick.", - "id": 1488 + "image_path": "G:\\images\\combined\\006004_jpg.rf.f1b74f86fa57b4fa8d4b7e5c88c3a045.jpg", + "response": "A group of people standing around each other.", + "id": 32095 }, { - "image_path": "G:\\images\\combined\\003433_jpg.rf.a657a3d87358b1cb6c57d759eaad687b.jpg", - "response": "The image shows a group of people dressed in snow gear and hard hats, working together to pull a large wooden pole through the snow. They are all standing in the snow, which is knee-deep in places. Some of the people are holding onto the pole with ropes. In the background, there are power lines and a few trees.", - "id": 1489 + "image_path": "G:\\images\\combined\\006005_jpg.rf.8c53ef06855925aa6c27f3612669379b.jpg", + "response": "A construction worker is working on site with a red drill.", + "id": 32096 }, { - "image_path": "G:\\images\\combined\\003434_jpg.rf.ea48d4bd2e9e397fd00aae8ac4aaba80.jpg", - "response": "In the image there is a construction site with a man wearing a yellow helmet standing next to a cannon. The cannon is Shoots out sand to clear the air pollution.", - "id": 1490 + "image_path": "G:\\images\\combined\\006006_jpg.rf.788fe0bcf070d2bd8826e621e508b06e.jpg", + "response": "A couple of workers wearing blue helmets are looking at a large metal object.", + "id": 32097 }, { - "image_path": "G:\\images\\combined\\003435_jpg.rf.a0a5f21283e4521082f009f556cb983e.jpg", - "response": "A group of men in business attire wearing red helmets are walking down a sidewalk. They are all carrying black bags. In the background, there is a city skyline with tall buildings. To the far left, there is a construction site with a red crane.", - "id": 1491 + "image_path": "G:\\images\\combined\\006007_jpg.rf.40fb75882fbb29df8352f4f67b7c546a.jpg", + "response": "A group of men working on a power line in a residential area.", + "id": 32098 }, { - "image_path": "G:\\images\\combined\\003436_jpg.rf.8078dc9861370ad26ce2caf60ef9c8e2.jpg", - "response": "The photo shows three workers in a tunnel. They are all wearing yellow hats and camouflage shirts. The one in the middle is pulling a wooden board with both hands, the one on the left is wearing white gloves and the one on the right is crouching down. The wooden board is covered with dust. On the right side of the photo, you can see a yellow wall and two iron rails on the left side.", - "id": 1492 + "image_path": "G:\\images\\combined\\006008_jpg.rf.f63f78c4a617557f4bcd1bb67ce56cf0.jpg", + "response": "The image shows a middle aged man wearing a white hardhat and blue coveralls standing in front of a large yellow crane that is digging in a field. The sky is blue with clouds.", + "id": 32099 }, { - "image_path": "G:\\images\\combined\\003437_jpg.rf.30b03b6aee583d8509fd0a69abc0fb30.jpg", - "response": "A man in a suit is speaking to a group of people in front of a white bus.", - "id": 1493 + "image_path": "G:\\images\\combined\\006009_jpg.rf.e8f9c83c06ec54ee883bee14603872fc.jpg", + "response": "A worker with his face painted like a clown is standing in a bridge.", + "id": 32100 }, { - "image_path": "G:\\images\\combined\\003439_jpg.rf.36cb128f837c894672b5e5ca80097e24.jpg", - "response": "In the image there are several construction workers wearing hard hats, one of them is carrying a shovel and there are two of them working inside a large pipe or tunnel.", - "id": 1494 + "image_path": "G:\\images\\combined\\00600_jpg.rf.d3b026bb4c92549f2f52ee20ebd44e59.jpg", + "response": "The image shows a group of seven men standing on a construction site. They are all wearing hard hats, with some of them also wearing suits. The men are standing in a semi-circle, with two of them on the left side and three on the right side, and the remaining two on the left and center of the right side. They are all looking in the same direction, towards the left side of the image. In the background, there is a large building under construction with a blue and green construction fence in front of it. There are also two cranes operating in the distance.", + "id": 32101 }, { - "image_path": "G:\\images\\combined\\00343_jpg.rf.0836445b196ebe904098630afbf3fbcc.jpg", - "response": " Two men(304,143),(683,996)(619,43),(981,996) wearing hard hats(719,42),(905,197)(336,142),(491,269) and orange safety vests(309,334),(537,712)(719,232),(981,727) standing in front of a Caterpillar Excavator(143,3),(749,785)", - "id": 1495 + "image_path": "G:\\images\\combined\\00600_jpg.rf.dba5174493ae055f1ae0223e63b11a01.jpg", + "response": "A group of men standing around each other.", + "id": 32102 }, { - "image_path": "G:\\images\\combined\\00343_jpg.rf.5b83df079a1b4151092853de5f0b21f2.jpg", - "response": " Two men(302,142),(683,997)(616,43),(981,997) wearing hard hats(717,42),(906,197)(336,141),(493,269) and orange safety vests(309,332),(535,713)(718,236),(981,729) standing in front of a Caterpillar Excavator(142,3),(748,781)", - "id": 1496 + "image_path": "G:\\images\\combined\\006010_jpg.rf.986788c45e6fa82863c4479a5af0afb9.jpg", + "response": "In the image, a worker is smiling while working on a large metal structure. The worker is wearing a yellow hard hat, a white shirt, and yellow work gloves. They are kneeling on the ground and appear to be working on the metal structure, which is a large, silver, metal pipe. The worker is the main focus of the image, and they appear to be the only person in the scene. The background is blurry, with a blue ceiling in the foreground and a white wall in the background. There are also several other metal structures in the background.", + "id": 32103 }, { - "image_path": "G:\\images\\combined\\003441_jpg.rf.11117d0263b21820c696b1edfc423827.jpg", - "response": "A group of men are gathered around a large board. They are looking at a map of a city.", - "id": 1497 + "image_path": "G:\\images\\combined\\006012_jpg.rf.eb875ec54f92cd4364cc18e3a2a6028e.jpg", + "response": "The image shows two workers at a construction site. They are wearing yellow hard hats and are working on a building. The building has a steel reinforcement cage on the side of it. There are several wooden planks leaning against the building, and a couple of them are in the foreground of the image. The workers are standing on the ground, and one of them is walking towards the left side of the image.", + "id": 32104 }, { - "image_path": "G:\\images\\combined\\003442_jpg.rf.773c9e57f29f5d69a300f76cfd89e3ca.jpg", - "response": "A worker clears snow from a power line in Harbin, capital of Heilongjiang province, Feb. 13, 2009. A new snowfall hit the province, causing some trouble in transportation.", - "id": 1498 + "image_path": "G:\\images\\combined\\006013_jpg.rf.11b17fa66323fb77ccf8afa93f7527ab.jpg", + "response": "A group of men in hard hats stand in front of a pile of rubble and a yellow back hoe.", + "id": 32105 }, { - "image_path": "G:\\images\\combined\\003443_jpg.rf.02852581ac60f6d302ad0cdbc70dab94.jpg", - "response": "A group of people standing around a piece of paper.", - "id": 1499 + "image_path": "G:\\images\\combined\\006014_jpg.rf.ab7ffc3141b8fa5395f67865b7f7ad16.jpg", + "response": "A man in a red hard hat hammers a large stone.", + "id": 32106 }, { - "image_path": "G:\\images\\combined\\003444_jpg.rf.af8b41d148d3ff962d7333a901c722d7.jpg", - "response": "A group of workers in blue uniforms and hard hats are standing in front of a large ship that is being built. They are all wearing white safety glasses in addition to their hard hats. One of the workers is wearing a white shirt and a blue jacket, while another worker is wearing a blue hat with the word STS on it. A third worker is wearing a blue hat with the word Hyundai on it. The fourth worker is wearing a blue hat with the word JM on it. They are all standing on a yellow floor. In front of the workers is a silver ladder that is leaning against a large metal pole. Next to the workers is a large red ship that is being built.", - "id": 1500 + "image_path": "G:\\images\\combined\\006015_jpg.rf.7bb66bcb3d77605e1a6e8217e1e1fb3e.jpg", + "response": "A worker in a red hat is working on an electrical tower.", + "id": 32107 }, { - "image_path": "G:\\images\\combined\\003445_jpg.rf.48ca86b7a23c5401a9a324998ae9db05.jpg", - "response": "In the image two workers are repairing an electrical transformer. The transformer is grey and is located on the side of a pole. The workers are wearing blue and yellow helmets and are wearing blue and yellow jackets. They are also wearing black pants.", - "id": 1501 + "image_path": "G:\\images\\combined\\006016_jpg.rf.b20e736512bd777032eea23346a8a130.jpg", + "response": "A man in a blue jacket and yellow hard hat is digging a hole in the ground with a shovel. He is wearing a red shirt and blue pants. The ground around him is a mix of brown dirt and green grass. There is a person's foot visible in the bottom right corner of the image.", + "id": 32108 }, { - "image_path": "G:\\images\\combined\\003446_jpg.rf.271355b5e431af0bcceaeb8eebb48164.jpg", - "response": "A group of workers are working on a hole in the street.", - "id": 1502 + "image_path": "G:\\images\\combined\\006017_jpg.rf.a2ac874185ffefab6fa211eb08c239a6.jpg", + "response": "A construction worker in a grey shirt and blue hat is using a tool to work on a large pole.", + "id": 32109 }, { - "image_path": "G:\\images\\combined\\003447_jpg.rf.3d818dfacc5f116444959c1b21a9cb45.jpg", - "response": "A worker in a blue helmet is standing on a yellow truck with a crane. The truck is parked in a forest with a large tree in front of it. The worker is looking up at a tree that has fallen on a blue bus. The bus is parked on the side of the road and the tree is covering part of it. The scene is dark and there are some red lights on the truck.", - "id": 1503 + "image_path": "G:\\images\\combined\\006018_jpg.rf.262dbe728df851dcd870ebd337f1f7bd.jpg", + "response": "Four construction workers are working on a building site. They are all wearing hard hats and are working on a structure that is made up of steel rods and concrete. They are standing on a ledge and appear to be working on the bottom half of a large building.", + "id": 32110 }, { - "image_path": "G:\\images\\combined\\003448_jpg.rf.ab0dce3e9bf3780856a88fefe3e3c92c.jpg", - "response": "In the image two Asian men are working on a piece of machinery. They are both wearing blue coveralls and red hard hats. The man on the left is taking notes on a clipboard and the man on the right is talking on a phone. The machinery they are working on is grey and yellow in color.", - "id": 1504 + "image_path": "G:\\images\\combined\\006019_jpg.rf.077296493d36e989bd0e39a7b3405d98.jpg", + "response": "A man is driving a small vehicle in a dark tunnel.", + "id": 32111 }, { - "image_path": "G:\\images\\combined\\003449_jpg.rf.5186b2bcd8cdbb49a8d128b2538fcd3f.jpg", - "response": "The image shows a group of people sitting around a large dining table. The table has several bottles, a bowl of fruit, and a few oranges on it. The people are wearing jackets and sweaters, and some have their hands in their pockets. They seem to be having a meeting or a discussion. There are also a few chairs around the table. In the background, there are a few more people standing, watching the meeting.", - "id": 1505 + "image_path": "G:\\images\\combined\\00601_jpg.rf.ae9621c2f8c2fd2afb934509298ab5b3.jpg", + "response": "The image shows a group of seven people standing in a construction area. They are all wearing red hard hats, with one person on the left and another on the right. In the center, there is a woman holding a piece of paper and talking to a man in a black jacket. The man is also wearing a red hard hat. The woman is wearing a white jacket and a pink scarf. The other four people are wearing similar clothing, with red hard hats and black jackets. The background is a red wall and a drain in the ground.", + "id": 32112 }, { - "image_path": "G:\\images\\combined\\003450_jpg.rf.e868132bdeac0e8395e1b5dd1e144e4f.jpg", - "response": "A man(528,292),(624,723) standing in front of a blue object", - "id": 1506 + "image_path": "G:\\images\\combined\\00601_jpg.rf.fe095aaf68af054060d4e28cea4bb06b.jpg", + "response": "A group of people in hard hats stand in a circle. They are all dressed in winter clothing. One person is holding a blue folder.", + "id": 32113 }, { - "image_path": "G:\\images\\combined\\003451_jpg.rf.256de7f79cd063572fae293fe1cbe187.jpg", - "response": "A construction site with three workers visible. They are working on a large blue structure with red scaffolding. The sky is blue and there are buildings in the background.", - "id": 1507 + "image_path": "G:\\images\\combined\\006020_jpg.rf.73e082b69709cc785d24e62ed8138404.jpg", + "response": "Two workers in a warehouse, one holding a clipboard and the other pointing at it.", + "id": 32114 }, { - "image_path": "G:\\images\\combined\\003452_jpg.rf.2b6f7abefea5714f943da152e0c75d6b.jpg", - "response": "A group of rescue workers in a room.", - "id": 1508 + "image_path": "G:\\images\\combined\\006021_jpg.rf.bd0a4ab99723baa23d8776b2ecbfa254.jpg", + "response": "A group of people stand on a balcony wearing hard hats.", + "id": 32115 }, { - "image_path": "G:\\images\\combined\\003454_jpg.rf.e400cbe4d02242c5e7f14210cf6e3691.jpg", - "response": "A group of men standing around talking to each other.", - "id": 1509 + "image_path": "G:\\images\\combined\\006022_jpg.rf.18d557e2f95c8042458c72158f5901ee.jpg", + "response": "A group of men walking in front of a building under construction. They are all wearing hard hats.", + "id": 32116 }, { - "image_path": "G:\\images\\combined\\003455_jpg.rf.2676c0a54e9eabdafa7417fb3aaaee40.jpg", - "response": "A group of people in hard hats are in a cave.", - "id": 1510 + "image_path": "G:\\images\\combined\\006023_jpg.rf.57696548fe9698567eeda4c33ac4d843.jpg", + "response": "A picture of three men in hard hats, with the middle man wearing a blue shirt and the two others wearing white shirts. They are standing in front of a building site.", + "id": 32117 }, { - "image_path": "G:\\images\\combined\\003456_jpg.rf.3721558065a8bfdd510fa15b9472a8a7.jpg", - "response": "A construction site with several people working on it. They are working on a large metal structure that appears to be a bridge or some sort of large support structure. The people are wearing hard hats and are focused on their work. Some of them are welding or cutting metal. There is a river or large body of water visible in the background.", - "id": 1511 + "image_path": "G:\\images\\combined\\006026_jpg.rf.e5c724f1de14669d19a86c24a7ad4b7e.jpg", + "response": "A group of people posing for a photo in front of a stage.", + "id": 32118 }, { - "image_path": "G:\\images\\combined\\003457_jpg.rf.da474dd5fed91ae51b79cec900dc1fed.jpg", - "response": "Three men in yellow vests and hard hats are talking in an unfinished building.", - "id": 1512 + "image_path": "G:\\images\\combined\\006027_jpg.rf.e547130bf3d91816c349eb966164dd8d.jpg", + "response": "A group of men working on a construction site.", + "id": 32119 }, { - "image_path": "G:\\images\\combined\\003459_jpg.rf.dc7a2e35946ee0fd3ed7c7a3123d5075.jpg", - "response": "A man(306,369),(919,996) wearing a hard hat(581,367),(734,493) and safety vest(529,585),(835,997) is holding a blue light(218,439),(383,659) in a tunnel.", - "id": 1513 + "image_path": "G:\\images\\combined\\006028_jpg.rf.e7e9b2da407414f7638f2ec3ebc226ab.jpg", + "response": "A man wearing a yellow hard hat and carrying a long object on his shoulder walks through a muddy construction site. The ground is mostly dirt and mud, and there are a few steel beams scattered around. In the background, there is a partially constructed building with metal framing.", + "id": 32120 }, { - "image_path": "G:\\images\\combined\\00345_jpg.rf.57838a0f8f073bec393efc79e34d451e.jpg", - "response": "two engineers, one holding a clipboard and pen, the other holding rolled up plans, standing in a half finished room", - "id": 1514 + "image_path": "G:\\images\\combined\\006029_jpg.rf.a14ef5d1bb66f2f9723c9a9431255b3f.jpg", + "response": "A worker is seen here making adjustments to the control box of a container.", + "id": 32121 }, { - "image_path": "G:\\images\\combined\\00345_jpg.rf.94da8bb232863c8a22410ec6e6e02449.jpg", - "response": "two engineers, one holding a clipboard and pen, the other holding blueprints, standing in a half finished room", - "id": 1515 + "image_path": "G:\\images\\combined\\00602_jpg.rf.82deac27d36b12db2ba2d232282d5404.jpg", + "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", + "id": 32122 }, { - "image_path": "G:\\images\\combined\\003460_jpg.rf.c84980ce20c4c02a052d12bb006fbaa0.jpg", - "response": " Firefighters(425,268),(803,997)(406,19),(620,623) cut through a bamboo structure(2,12),(999,999)", - "id": 1516 + "image_path": "G:\\images\\combined\\00602_jpg.rf.abfcd2fb6cb309e69e5f1173ffc90ed4.jpg", + "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", + "id": 32123 }, { - "image_path": "G:\\images\\combined\\003461_jpg.rf.2c0fb469c46a880ac976fdd749ac0718.jpg", - "response": "A man in a blue hard hat is holding a sheet of paper and talking to a group of men in front of a yellow and red truck. They are standing on a dirt field with a small hill in the background.", - "id": 1517 + "image_path": "G:\\images\\combined\\006030_jpg.rf.4114187d335cc531651d4ce427db6e44.jpg", + "response": "In the image two workers are fixing an transformer. The transformer is green and is located in the middle of the picture. The workers are wearing blue helmets and are standing on either side of the transformer. One worker is on the left and is holding a tool in his right hand. The other worker is on the right and is looking at the first worker. There are two red lines coming from the transformer, one on the left and one on the right. There is a red and white sign on the right side of the transformer. The background shows two buildings.", + "id": 32124 }, { - "image_path": "G:\\images\\combined\\003462_jpg.rf.ba6410507f04db7baec52a9fe1317854.jpg", - "response": "A rescue team is seen hiking through the snow", - "id": 1518 + "image_path": "G:\\images\\combined\\006031_jpg.rf.ff2d600fabeed50ef56504f0db5f4c33.jpg", + "response": "A group of construction workers in yellow uniforms and hard hats are working on a construction site. They are carrying a large rock and a shovel.", + "id": 32125 }, { - "image_path": "G:\\images\\combined\\003463_jpg.rf.7f652748bf2ced95d72134e5f43d156e.jpg", - "response": "A worker stands in front of a wall of pipes at the Intermountain Power Plant in Delta, Utah.", - "id": 1519 + "image_path": "G:\\images\\combined\\006032_jpg.rf.9e2cafb05fe9fa81e9ddbfee7cd996f2.jpg", + "response": "The image shows a group of workers on a construction site at night. They are gathered around a large metal pole, which has a white sign attached to it. The sign has black writing on it and is readable. The workers seem to be discussing something, as some of them are pointing at the sign. The background is quite dark, with some lights from the city in the distance.", + "id": 32126 }, { - "image_path": "G:\\images\\combined\\003464_jpg.rf.088f0e217f5f77c68a3ed6d2a808164a.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 1520 + "image_path": "G:\\images\\combined\\006033_jpg.rf.0b98d118f66f573f0d8baf58c481e6af.jpg", + "response": "In the image there is a man wearing a blue hard hat and tan clothes, climbing on a snowy telephone pole. He is standing on a ladder and appears to be fixing the power lines. The pole is covered in snow and ice, as are the branches around it.", + "id": 32127 }, { - "image_path": "G:\\images\\combined\\003465_jpg.rf.51a1c2fe4ab515cf1489d5e38425b6b3.jpg", - "response": "a group of men standing around each other", - "id": 1521 + "image_path": "G:\\images\\combined\\006034_jpg.rf.d6effcc9eb7505d8bf74a69a15342dbf.jpg", + "response": "A carpenter wearing a hard hat and work gloves is holding a level against a wooden beam. The man is building a house and is standing in front of a partially constructed wooden frame. The sky is blue and clear.", + "id": 32128 }, { - "image_path": "G:\\images\\combined\\003466_jpg.rf.c64bb2e22c79f3c3937549682d97cbd2.jpg", - "response": "The three men in the front are walking. The one on the left is wearing a black suit and is closest to the camera. The man in the middle is also wearing a black suit but is slightly further away from the camera. The man on the right is wearing a grey suit. The man in the middle is waving at the camera. In the background there are several other men walking in the same direction. There is a bus parked in the background on the right side of the image. There is a building under construction in the background on the right side of the image.", - "id": 1522 + "image_path": "G:\\images\\combined\\006035_jpg.rf.cca5043fa34d538bbab9266f175132fe.jpg", + "response": "A construction worker is seen here moving steel rods(353,322),(563,570) at a construction site in the city of Shenyang, capital of northeastern China's Liaoning Province.", + "id": 32129 }, { - "image_path": "G:\\images\\combined\\003467_jpg.rf.e555b1cccb4ef8529799e5f63ee8c575.jpg", - "response": "A man wearing a yellow hard hat stands on a construction site. He is wearing a blue shirt and khaki pants. In the background, there is a large yellow crane. There are several wooden planks scattered around the area. A pile of rusty metal pipes is in the foreground.", - "id": 1523 + "image_path": "G:\\images\\combined\\006036_jpg.rf.560a86b59c4af9e24f006aa353576cfb.jpg", + "response": "In the image there is a man standing in an unfinished building. He is wearing a yellow hard hat, a white shirt, and black pants. He is also wearing black shoes. He has his hands crossed in front of him and is looking to the side. He has a clipboard attached to his shirt. The building has a lot of concrete pillars and the floor is wet in some places. There is also graffiti on the wall in the background.", + "id": 32130 }, { - "image_path": "G:\\images\\combined\\003468_jpg.rf.611180ae2fc1785d75dba9cf5371bf0c.jpg", - "response": "A man holding a black umbrella in front of a building.", - "id": 1524 + "image_path": "G:\\images\\combined\\006037_jpg.rf.764f2056744e14884a7d0888fb5dc364.jpg", + "response": " People(547,198),(699,837)(417,233),(517,676)(278,183),(436,733)(482,146),(586,657)(70,156),(342,898) stand in a field of dirt and weeds", + "id": 32131 }, { - "image_path": "G:\\images\\combined\\003469_jpg.rf.aa44cb8aa2a3855bd60d0d2dc6d334bf.jpg", - "response": "A concrete pump is used to pour concrete into a post.", - "id": 1525 + "image_path": "G:\\images\\combined\\006038_jpg.rf.954c6a65278bed980d6c34e705a42553.jpg", + "response": "a group of people standing around each other", + "id": 32132 }, { - "image_path": "G:\\images\\combined\\003470_jpg.rf.7a1cfb365901c4373bbd18c6738f436e.jpg", - "response": "A group of three men working on a piece of mining equipment.", - "id": 1526 + "image_path": "G:\\images\\combined\\006039_jpg.rf.51424f7befbb497c168101c36daac760.jpg", + "response": "A woman wearing a yellow hard hat and sunglasses is sitting in the driver seat of a truck. She is smiling and has her arm on the door frame.", + "id": 32133 }, { - "image_path": "G:\\images\\combined\\003471_jpg.rf.39606dd5bb3e10faa81c4659cb736ce2.jpg", - "response": "A couple of men in orange hard hats are standing next to a tall metal structure. They are both wearing brown work clothes. One of the men is reaching for a valve on a large metal cylinder. The sky above them is blue.", - "id": 1527 + "image_path": "G:\\images\\combined\\00603_jpg.rf.ecd4ecb0fb88052abed49b41b583e615.jpg", + "response": "A group of people stand in a unfinished room. They are all wearing hard hats. In the front of the group a man points to something on the left. To the right of the man is a woman and a child. Behind the woman is a man in a black shirt and red hat. Behind the man in the red hat is another man in a black shirt. Behind the man in the red hat is a woman in a black shirt. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man", + "id": 32134 }, { - "image_path": "G:\\images\\combined\\003472_jpg.rf.b59428ccc060b0fe8b45306faf490a33.jpg", - "response": "a group of men standing around talking to each other", - "id": 1528 + "image_path": "G:\\images\\combined\\00603_jpg.rf.ff079f1c34072ffc31d780665eecdc0e.jpg", + "response": "A man wearing a white hard hat points to something in the distance while a group of people wearing hard hats stand around him.", + "id": 32135 }, { - "image_path": "G:\\images\\combined\\003473_jpg.rf.d911f3ecd574db5a80270206f933420c.jpg", - "response": "A man sitting on a step wearing a hard hat and drinking from a bottle.", - "id": 1529 + "image_path": "G:\\images\\combined\\006040_jpg.rf.7d37eb04353914a7bede5418520bde68.jpg", + "response": "A man in a hard hat is kneeling down next to a gurney. There is a person on the gurney who is being attended to by paramedics. There is a crowd of people standing around the gurney and the man in the hard hat. There is a fire truck in the background.", + "id": 32136 }, { - "image_path": "G:\\images\\combined\\003475_jpg.rf.8035607128cdd6fc50b4c57dca3be855.jpg", - "response": "a group of people standing in front of a building", - "id": 1530 + "image_path": "G:\\images\\combined\\006041_jpg.rf.a6bbeea1033f6fe7b0b7fd2bdf4d683b.jpg", + "response": "A construction site with two workers in orange vests and hard hats. They are standing on a platform with a blue sky and clouds in the background. There is a crane lifting a large piece of steel above the platform.", + "id": 32137 }, { - "image_path": "G:\\images\\combined\\003476_jpg.rf.743d40de3f3fb81653c2b3237b410fcd.jpg", - "response": "A worker is seen here working on the unfinished overpass.", - "id": 1531 + "image_path": "G:\\images\\combined\\006042_jpg.rf.c682683a59a07af32ac5d3ca99099148.jpg", + "response": "a group of men standing around a blueprint in a field", + "id": 32138 }, { - "image_path": "G:\\images\\combined\\003477_jpg.rf.e088ea708862bb15a75e5b2c5ae47176.jpg", - "response": "A group of men standing around a large cement block.", - "id": 1532 + "image_path": "G:\\images\\combined\\006043_jpg.rf.69779df0ccb9c47da242cd8cadd4dc8f.jpg", + "response": "In the image two men are using a theodolite to survey a site. The theodolite is a transit level and total station device used for measuring distances, angles and elevations. The men are standing in front of a tall brown earthen embankment that is part of a construction site. The sky is blue with some clouds.", + "id": 32139 }, { - "image_path": "G:\\images\\combined\\003478_jpg.rf.441730b526d618de6d1e3d52fb629407.jpg", - "response": "A group of people standing in a unfinished building.", - "id": 1533 + "image_path": "G:\\images\\combined\\006044_jpg.rf.9ef65577698481ab2e03c798fa4c8906.jpg", + "response": "A group of people are sitting on a step.", + "id": 32140 }, { - "image_path": "G:\\images\\combined\\003479_jpg.rf.deda8c1f413845f2f48dcbac6909ace2.jpg", - "response": "a group of men in uniforms", - "id": 1534 + "image_path": "G:\\images\\combined\\006045_jpg.rf.effc8fbd349fee0a99b5d110e2b1d272.jpg", + "response": "A worker is working on the wall.", + "id": 32141 }, { - "image_path": "G:\\images\\combined\\003480_jpg.rf.c93e9b1c888f5a8f5f9792fbd599fc97.jpg", - "response": "A man in a red hat and plaid shirt sits on a ladder in front of a brick wall. The wall is covered in scaffolding and the man appears to be working on it.", - "id": 1535 + "image_path": "G:\\images\\combined\\006047_jpg.rf.9244fe30951c95e152cb1fb08f75c311.jpg", + "response": "Firefighters and paramedics work to free a man who was trapped in a stairwell after a fire broke out at a home in the 100 block of 82nd Avenue in Northglenn on Tuesday, July 26, 2016. The fire was reported at 12:45 a.m. and was quickly extinguished. The man was taken to a local hospital with non-life-threatening injuries. (Kathleen Black/KUSA)", + "id": 32142 }, { - "image_path": "G:\\images\\combined\\003481_jpg.rf.cda9a2e30476c436e47d7c0ffc775eec.jpg", - "response": "In the image there is a person working on a construction site. The person is wearing a green shirt, grey pants and a red hard hat. The person is crouched down and is holding a large piece of material that is wrapped in plastic. The plastic appears to be clear. The person is also wearing a yellow tool belt. The construction site has scaffolding around the area where the person is working. There are also several other people working in the background. Some of them are further away and appear as small dots. There is also a white animal, that is either a dog or a cat, in the background. It is sitting on the ground and looking towards the right.", - "id": 1536 + "image_path": "G:\\images\\combined\\006048_jpg.rf.63775497e2922cc98918f92ba75504ef.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 32143 }, { - "image_path": "G:\\images\\combined\\003482_jpg.rf.e2179be28cf3dca063b99d3d7e29e8dd.jpg", - "response": "A group of men working on a bridge.", - "id": 1537 + "image_path": "G:\\images\\combined\\006049_jpg.rf.63d7f7d66987744f9693855cce5b851c.jpg", + "response": "In the image, multiple workers are seen working on a stretch of railroad tracks. They are using various tools like hammers and crowbars to work on the tracks. Some of the workers are wearing yellow hard hats and safety glasses. The tools they are using are also visible in the image.", + "id": 32144 }, { - "image_path": "G:\\images\\combined\\003483_jpg.rf.fd3581edafe24b82a10ae2728a650798.jpg", - "response": "A group of men in blue work uniforms and blue hard hats are gathered around a piece of equipment. The men are looking at the controls and are focused on their task.", - "id": 1538 + "image_path": "G:\\images\\combined\\006050_jpg.rf.9b02f05f43b478baa946660a8e24d2b1.jpg", + "response": "a group of men walking down a street", + "id": 32145 }, { - "image_path": "G:\\images\\combined\\003484_jpg.rf.0bd81b00ec45a33ea3b88cae8e18473b.jpg", - "response": "In the image, a man is working on a piece of farm equipment. He is wearing a black and yellow shirt, a yellow hat, and has a tool in his hand. The man appears to be happy and smiling. He is working on a piece of farm equipment that has two wheels and a large metal piece with a handle that the man is holding. The background shows a field of bright green grass.", - "id": 1539 + "image_path": "G:\\images\\combined\\006051_jpg.rf.ae41556ef935cb7d9d91d656ffa4e983.jpg", + "response": "A group of people walking down a street some are wearing hard hats.", + "id": 32146 }, { - "image_path": "G:\\images\\combined\\003485_jpg.rf.7ad29618de6fc972987ebc4316d2f412.jpg", - "response": "a group of people sitting around a table", - "id": 1540 + "image_path": "G:\\images\\combined\\006052_jpg.rf.3790f01ef98faf102f4919ee3873666f.jpg", + "response": "A group of construction workers(595,243),(995,996)(112,376),(636,997) in orange vests(113,649),(402,997)(656,563),(995,997) and yellow helmets(246,361),(423,583)(1,930),(78,1000) are working on a construction site.", + "id": 32147 }, { - "image_path": "G:\\images\\combined\\003487_jpg.rf.5baa59b85dd9c3f11b33489632d7a72a.jpg", - "response": "Two construction workers in hard hats standing next to a pile of steel beams on a construction site.", - "id": 1541 + "image_path": "G:\\images\\combined\\006053_jpg.rf.e2b3dfbf6c3161efb000d0714bdd2040.jpg", + "response": "A group of men standing in a unfinished building.", + "id": 32148 }, { - "image_path": "G:\\images\\combined\\003488_jpg.rf.e713991a9247ece1a08d61ed4061cfbc.jpg", - "response": "A construction site with two workers in blue shirts and yellow hats. They are standing on a platform near a large concrete pillar and a red metal structure. There is a green fence in the foreground and a yellow and white safety sign. A pile of wooden boards is visible in the background.", - "id": 1542 + "image_path": "G:\\images\\combined\\006054_jpg.rf.b7b3c798ed1c456e0acafc117cf0531d.jpg", + "response": "a group of people standing in front of a car", + "id": 32149 }, { - "image_path": "G:\\images\\combined\\003489_jpg.rf.faf37d81a6ecb205707094d05da87308.jpg", - "response": "In the image there is a worker wearing a blue hard hat and an orange vest who is welding a large piece of metal that makes up part of a large metal structure. The worker is on a ladder and the metal being welded is a bright red color. The background is a bit blurry and there are some metal bars in the foreground that appear to be part of a safety barrier.", - "id": 1543 + "image_path": "G:\\images\\combined\\006055_jpg.rf.05ed585172a0618a468e806cda733d7b.jpg", + "response": "A man in a yellow hard hat and yellow safety vest is smiling and holding a thumbs up. He is standing in front of a large truck.", + "id": 32150 }, { - "image_path": "G:\\images\\combined\\003491_jpg.rf.381140e87102e332f6227943ba3557db.jpg", - "response": "The image shows a group of men standing in a large, unfinished building. They are all wearing white hard hats. Some of the men are also wearing blue or white shirts. One man is wearing a watch on his left wrist. The floor of the building is covered in light brown dirt. There are also two doors in the background, one on the left and one on the right. The walls of the building are made of concrete and have not been finished.", - "id": 1544 + "image_path": "G:\\images\\combined\\006056_jpg.rf.12a92d130813b3a820d227a7f36d65e7.jpg", + "response": "a group of men standing in front of a large hill", + "id": 32151 }, { - "image_path": "G:\\images\\combined\\003492_jpg.rf.10fb96968f9c91b8aa07586d8568c9f0.jpg", - "response": "A group of men are carrying a large pole.", - "id": 1545 + "image_path": "G:\\images\\combined\\006057_jpg.rf.98bc42315e79491db36285dad55da656.jpg", + "response": "A group of people working on a construction site.", + "id": 32152 }, { - "image_path": "G:\\images\\combined\\003493_jpg.rf.e84ff66edc0d6f941420e2c7a7333b2f.jpg", - "response": "The image shows two workers standing on a sidewalk near a street. They are both wearing blue helmets and uniforms. The man on the left is holding a cell phone and appears to be looking at it. The street is dark, but a vehicle with its headlights on is traveling in the background. There are also a few trees and a light pole in the scene.", - "id": 1546 + "image_path": "G:\\images\\combined\\006058_jpg.rf.031bfadb2eaa1d7f86006449f5134fb7.jpg", + "response": "The image shows a group of people walking in a line across a construction site. They are all wearing red hard hats, and some are also wearing suits. In the background, there are a few buildings, including one that has been partially constructed. There is also a pile of bricks on the right side of the image. A banner with Chinese writing can be seen above the group, and the writing is in blue. The people in the front are wearing ties.", + "id": 32153 }, { - "image_path": "G:\\images\\combined\\003495_jpg.rf.d1d10d097f8d9d9992643facfec2ad07.jpg", - "response": "Men(653,215),(819,804)(284,204),(419,789)(452,210),(598,898)(38,183),(191,844) standing on a construction site", - "id": 1547 + "image_path": "G:\\images\\combined\\00605_jpg.rf.2544fce159f6f9578f8fb3a31beb7d76.jpg", + "response": "A construction site with three men in red hard hats standing in front of a blue wall. One of the men is holding a grey oxygen tank.", + "id": 32154 }, { - "image_path": "G:\\images\\combined\\003496_jpg.rf.54420695df0ae274d18b1de3e43b6a68.jpg", - "response": "A construction worker in a red hard hat is sitting on the ground and looking at another worker who is standing on a platform and fixing some metal rods. They are both wearing red hard hats and the worker on the ground has a pen in his shirt pocket. They are working on a building construction site with unfinished concrete floors and walls and a lot of metal rods and frameworks.", - "id": 1548 + "image_path": "G:\\images\\combined\\006060_jpg.rf.2a7cfbfc57a01bed4543c274c29fa165.jpg", + "response": "A group of people working on a building site.", + "id": 32155 }, { - "image_path": "G:\\images\\combined\\003497_jpg.rf.8eee19ca84ec647bb6f1ee6f948c4bff.jpg", - "response": "The image shows men in blue and white shirts and red safety helmets standing in front of a building under construction. The building has a lattice structure and there are several large cranes visible in the background. Some people are wearing ties and the whole scene has a sense of purpose and coordination.", - "id": 1549 + "image_path": "G:\\images\\combined\\006061_jpg.rf.28eb584f90b57fa1e8d3dee77ec31a9a.jpg", + "response": "a group of people walking", + "id": 32156 }, { - "image_path": "G:\\images\\combined\\003498_jpg.rf.9f35e6612c8ffa14ad5a30ebf4616fa5.jpg", - "response": "A man in a hard hat is pointing to a sign on a wall. The wall is concrete and has a sign on it that says, \u201cUnderground Exit\u697c\u68af\u201d\u3002 There is a group of people standing around the man, also wearing hard hats. Some of the people are partially visible and are wearing yellow hard hats.", - "id": 1550 + "image_path": "G:\\images\\combined\\006062_jpg.rf.eaeec3defd18f8350074ad7c8608474c.jpg", + "response": "A group of men sitting around a table.", + "id": 32157 }, { - "image_path": "G:\\images\\combined\\003499_jpg.rf.c1177a65d8db53aa01aece1462f6c70a.jpg", - "response": "A worker is on a power line in the snow.", - "id": 1551 + "image_path": "G:\\images\\combined\\006063_jpg.rf.f63b9aa133b804c4ec1c1b1d8bd3b961.jpg", + "response": "The image shows three men in blue work clothes standing in a green forest. They are holding equipment and appear to be conducting an inspection or test.", + "id": 32158 }, { - "image_path": "G:\\images\\combined\\0034b21c3eae565d.jpg", - "response": "A silver trash can with a bag in it.", - "id": 1552 + "image_path": "G:\\images\\combined\\006065_jpg.rf.951e94e3e4da9505a081c80cbbfa3df5.jpg", + "response": "A group of men standing next to each other wearing hard hats.", + "id": 32159 }, { - "image_path": "G:\\images\\combined\\0034d9db4b18a474.jpg", - "response": "a poster of a kid with his hands up and the words \"what if the hokey pokey really is what it's all about\" above him", - "id": 1553 + "image_path": "G:\\images\\combined\\006066_jpg.rf.14565f096e07e57f823bac5190bdadc8.jpg", + "response": "A woman in a hard hat and safety vest stands on a platform with metal railings, looking out over a city.", + "id": 32160 }, { - "image_path": "G:\\images\\combined\\0034f52bcd0a54be.jpg", - "response": "A caliper is measuring a piece of equipment.", - "id": 1554 + "image_path": "G:\\images\\combined\\006067_jpg.rf.41e592d5713fde18a777435f71e03b50.jpg", + "response": "A person in a blue jacket and yellow hard hat is leaning over a piece of metal railing. They are wearing a yellow hard hat and glasses. There is a person in a white and blue striped shirt and jeans standing on a red and white platform. There is a person in a white shirt and jeans standing on a green and white platform. There is a green and white platform behind them. There is a truck in the background.", + "id": 32161 }, { - "image_path": "G:\\images\\combined\\0034f7f4d1a6f9e2.jpg", - "response": "A group of people are sitting at a round table in a large room. There is a man standing at a podium giving a presentation. The room has a projector screen displaying slides.", - "id": 1555 + "image_path": "G:\\images\\combined\\006068_jpg.rf.28611cbed5853be6474d0d8650b03f7c.jpg", + "response": "The picture shows two workers in a tunnel. They are both dressed in black uniforms and are wearing white hard hats. One worker is on the left and the other is on the right. The worker on the right is holding a cigarette and has a flashlight on his helmet. The light is shining on the left worker who is working with a tool in his hand. The left worker is blowing steam from his tool.", + "id": 32162 }, { - "image_path": "G:\\images\\combined\\003500_jpg.rf.5b349107919083a80c93bb6559b90e67.jpg", - "response": "A group of people standing around a large circular structure that is under construction. The structure is made of metal and has wooden beams around it. The people are wearing hard hats and are standing at various spots on the beams. In the distance there are mountains.", - "id": 1556 + "image_path": "G:\\images\\combined\\006069_jpg.rf.6d3c91679d842ab85896221a5813dcbf.jpg", + "response": "The image shows two construction workers on a building site. They are wearing yellow hard hats and are working on the roof of a building. One of the workers is drinking water from a bottle. The sky is blue with some clouds.", + "id": 32163 }, { - "image_path": "G:\\images\\combined\\003501_jpg.rf.9d84ebfdb8e1ba4a1dffcb48e4a86aef.jpg", - "response": "A construction worker in a yellow hard hat and grey jumpsuit is on a red ladder. He is reaching for a metal bar with a tool in his hand. There are several people in the background, one of them is wearing a white shirt and white hat. They are standing on the ground. The construction worker is also wearing a yellow helmet. The background is a yellow wall and a red ladder.", - "id": 1557 + "image_path": "G:\\images\\combined\\00606_jpg.rf.38e46e81d726bebe87ff3319fdcf83f4.jpg", + "response": "The image shows two workers wearing red helmets and carrying tools while working on a high-rise building. They are standing on the ledges of the building, one on the left and the other on the right. They are both holding onto ropes with red carabiners. The left worker is wearing a blue shirt, beige trousers, and white shoes. The right worker is wearing a blue shirt, dark blue trousers, and yellow shoes. The sky above them is yellow.", + "id": 32164 }, { - "image_path": "G:\\images\\combined\\003502_jpg.rf.dfef26421db972ef444e5c80cf9bc5b1.jpg", - "response": "The image shows two workers in a factory that produces roof tiles. They are standing in front of a large machine that is placing roof tiles onto a conveyor belt. The workers are both wearing yellow hard hats and work clothes.", - "id": 1558 + "image_path": "G:\\images\\combined\\00606_jpg.rf.baa5766cc2eb8768e09710691d815594.jpg", + "response": "The image shows two workers wearing red helmets and work clothes while hanging from ropes. They are in the process of cleaning windows on a tall building. One worker is on the left and the other is on the right. They are both holding ropes and tools. The left worker has a red helmet and is wearing a white shirt, dark blue pants, and white shoes. The right worker has a red helmet and is wearing a yellow shirt, dark blue pants, and brown shoes. The ropes they are hanging from are gray. The building they are working on is gray and has several floors. The sky above the building is yellow.", + "id": 32165 }, { - "image_path": "G:\\images\\combined\\003503_jpg.rf.c684c51567fe8cdfba908b65a2c9ac0f.jpg", - "response": "a group of men standing around a table", - "id": 1559 + "image_path": "G:\\images\\combined\\006071_jpg.rf.1e70d5671f8b90cc8a30775ab2bae4f6.jpg", + "response": "A construction worker in an orange jacket and red hard hat stands in front of a large crane. The crane is lifting a large piece of metal and is in the process of building a large concrete structure. The sky is blue and there are no clouds in sight.", + "id": 32166 }, { - "image_path": "G:\\images\\combined\\003504_jpg.rf.c34edacc1e93533e5c837586e3071979.jpg", - "response": "A man wearing a yellow hard hat and a plaid shirt is working on a construction site. He is holding a saw and sawing through a piece of wood. The sky is blue and there are no clouds. He is wearing a watch on his left wrist.", - "id": 1560 + "image_path": "G:\\images\\combined\\006072_jpg.rf.149eab0d8d81ea72530fe7729ea675b9.jpg", + "response": "A construction worker wearing a yellow hard hat is working on a large construction site. They are crouched down and wearing a yellow hard hat, blue jeans, and a grey shirt. The worker is working on a large grid of rebar, which is supported by a large concrete structure. The rebar is laid out in a grid pattern and is made up of many thin, long steel bars.", + "id": 32167 }, { - "image_path": "G:\\images\\combined\\003505_jpg.rf.05efea5d2a7115bd27d895cbe1cc5cef.jpg", - "response": "A group of people standing around a building site.", - "id": 1561 + "image_path": "G:\\images\\combined\\006073_jpg.rf.1bd06c4539f0bc9dbc7377ebecdba263.jpg", + "response": "The picture shows a group of people in total 12 persons gathered in front of a construction site. They are all wearing red helmets. In the middle of the group, there is a man holding a small book. To the far left, there is a car with a bicycle on the back. To the far right, there are two buildings in the background.", + "id": 32168 }, { - "image_path": "G:\\images\\combined\\003507_jpg.rf.91a8c167149fc2ed1ed3ce7b8d66eb0c.jpg", - "response": "A man wearing a yellow hard hat is kneeling down on a rooftop. He is wearing a yellow vest, grey sweater, yellow gloves, and dark grey pants. He is holding a pair of pliers in his left hand and there is a wall of concrete blocks behind him. The sky is clear and blue.", - "id": 1562 + "image_path": "G:\\images\\combined\\006074_jpg.rf.d29fa82f728c112b068325d2c0205b3b.jpg", + "response": "A pair of workers dangle from power lines in a city in China.", + "id": 32169 }, { - "image_path": "G:\\images\\combined\\003508_jpg.rf.59a146f8c08902169529c7dc43937c52.jpg", - "response": "A building that has been wrapped in scaffolding.", - "id": 1563 + "image_path": "G:\\images\\combined\\006075_jpg.rf.b75834d5433b887cf92fcea1ab2e520e.jpg", + "response": "A group of people stand in a snowy field.", + "id": 32170 }, { - "image_path": "G:\\images\\combined\\003509_jpg.rf.33a96e095be15321b62ddd255c43213c.jpg", - "response": "The image shows three construction workers in red uniforms at a construction site. They are standing in front of a large piece of concrete that is being lowered from a crane. The concrete appears to be a segment of a bridge. The workers are standing on the ground and one of them is holding a long tool while the other two are holding a metal plate that is being lowered from the crane. In the background, there is a red crane and a large white crane.", - "id": 1564 + "image_path": "G:\\images\\combined\\006076_jpg.rf.5b47e7e6ef0bd7a5bf51472aac1117b1.jpg", + "response": "a group of people standing around a construction site", + "id": 32171 }, { - "image_path": "G:\\images\\combined\\003510_jpg.rf.204205ced59dcf73ae979d52c56831b8.jpg", - "response": "A group of men standing next to each other.", - "id": 1565 + "image_path": "G:\\images\\combined\\006077_jpg.rf.19e4ad8a52c1238d182f0db1ba397fc9.jpg", + "response": "A group of men standing in front of a sign.", + "id": 32172 }, { - "image_path": "G:\\images\\combined\\003511_jpg.rf.0dd9d4d89e76077ae50beefc981e70d2.jpg", - "response": "A group of men standing around each other.", - "id": 1566 + "image_path": "G:\\images\\combined\\006078_jpg.rf.84238145fe397ae44df9468fc763a887.jpg", + "response": "A man wearing a yellow hard hat and work gloves, holding a hammer and working on a wall made of wooden beams.", + "id": 32173 }, { - "image_path": "G:\\images\\combined\\003512_jpg.rf.abd6809f4e14a4b7a0276fc56cc5e549.jpg", - "response": "A man in a red hard hat is pushing a large rock out of the way. Another man is lying on the ground behind him. They are both wearing orange shirts. In the background, a river is flowing to the right. To the left, there is a yellow construction vehicle with Chinese writing on it.", - "id": 1567 + "image_path": "G:\\images\\combined\\006079_jpg.rf.44754316124767d3406362438d0ffb0d.jpg", + "response": "a group of people standing on a soccer field", + "id": 32174 }, { - "image_path": "G:\\images\\combined\\003513_jpg.rf.ca665aba80c5f23af25a9ea2268fea44.jpg", - "response": "A man in a blue shirt and blue hat is up on a power line, working on it.", - "id": 1568 + "image_path": "G:\\images\\combined\\006080_jpg.rf.0a89cf6dda60d2ee2ef51c7de95f6ce6.jpg", + "response": " A worker(506,176),(602,436) repairs a power line in the aftermath of Super Typhoon Mangkhut in Tuguegarao city, Cagayan province, Philippines, September 17, 2018.", + "id": 32175 }, { - "image_path": "G:\\images\\combined\\003514_jpg.rf.54fea6c667b03f791cb4b4ba47976587.jpg", - "response": "In the image two men wearing orange work suits and hard hats are talking to each other. They are both holding something, possibly a tablet, and looking at it. They are standing in front of a factory or power plant with a conveyor belt behind them.", - "id": 1569 + "image_path": "G:\\images\\combined\\006081_jpg.rf.db4e17219e65b92f5c8e7be4fefe01e4.jpg", + "response": "In the image two workers are seen wearing yellow helmets and working. In one tent which is seen in the image, one worker is holding a yellow container and another worker is coming out of the tent. In the other tent, one worker is holding a rope and the other worker is holding a machine. Both the tents are seen in a mountain area.", + "id": 32176 }, { - "image_path": "G:\\images\\combined\\003515_jpg.rf.049a6fe63d1f34d356f6cdcc2a263940.jpg", - "response": "The picture shows a group of people standing in front of a building. They are all wearing hard hats. In the foreground on the left, the man is wearing a light blue shirt and a dark blue cap. To the right of him, the man is wearing a white shirt and a dark blue cap. To the right of him, the man is wearing a white shirt and a grey cap. To the right of him, the man is wearing a white shirt and a red cap. To the right of him, the man is wearing a white shirt and a black cap. In the background, a yellow and blue flag is flying. In the background, a brown mountain can be seen.", - "id": 1570 + "image_path": "G:\\images\\combined\\006083_jpg.rf.f12a590cfb98d9769adde10ba303abe1.jpg", + "response": "5 men standing in front of a building site holding a flag with Chinese writing on it", + "id": 32177 }, { - "image_path": "G:\\images\\combined\\003516_jpg.rf.f3c44a2561ffee2d398e8504bb843948.jpg", - "response": "Men in white and black clothes and red hats are walking through a large cement room with steel beams on the ceiling.", - "id": 1571 + "image_path": "G:\\images\\combined\\006084_jpg.rf.68c4745d5ebe0c776f03483f61a57e34.jpg", + "response": "In the image two workers are seen fixing the pillars of a building. The man on the left is wearing red helmet and has a beard. The man on the right is wearing yellow helmet and has a beard also. Both the workers are wearing blue color shirt. The man on the right is also wearing yellow color helmet. The wall of the building can be seen in the background which is under construction. The building has green color metal fencing. The floor of the building can be seen in the foreground.", + "id": 32178 }, { - "image_path": "G:\\images\\combined\\003517_jpg.rf.b4728f0ad2e687e920e9f98a1eb283b7.jpg", - "response": "A group of men in hard hats and blue coveralls are gathered around a red fence. They are standing on a concrete slab with a number 36 on it. The men are wearing yellow, orange, white, and red hard hats. In the background, there is a large white building with many electrical components visible through a window.", - "id": 1572 + "image_path": "G:\\images\\combined\\006085_jpg.rf.503e9049dba91396458785114bdbd8be.jpg", + "response": "A group of workers are working on a brick wall.", + "id": 32179 }, { - "image_path": "G:\\images\\combined\\003518_jpg.rf.fe69ecfba06d669c1cd185332f7eea8d.jpg", - "response": "A construction worker sitting on a pile of steel rods at a construction site. The worker is wearing a yellow hard hat, a grey shirt, and camouflage pants. The steel rods are in various sizes and are piled up in front of a concrete structure that is under construction. There are other workers visible in the background.", - "id": 1573 + "image_path": "G:\\images\\combined\\006086_jpg.rf.1c84a846e6e18e21f7f37616eba08088.jpg", + "response": "A group of men in suits and hard hats stand on a construction site. One man points to a building in the distance.", + "id": 32180 }, { - "image_path": "G:\\images\\combined\\003519_jpg.rf.fc25c85caf5c3ac35487393596df58ee.jpg", - "response": "A couple of men in white helmets are standing in front of a building under construction. The building has a green and yellow striped scaffold around it. One of the men is holding a clipboard and checking the building.", - "id": 1574 + "image_path": "G:\\images\\combined\\006087_jpg.rf.f65b14611f6212f81f812d9102cb8769.jpg", + "response": "In the image there is a person wearing a blue shirt and a yellow hard hat. They are holding a large metal bolt and are putting it into a metal square. The sky is blue and there are power lines in the background.", + "id": 32181 }, { - "image_path": "G:\\images\\combined\\00351a1451e059a5.jpg", - "response": "A grey headstone with the word Famille Privat on it.", - "id": 1575 + "image_path": "G:\\images\\combined\\006088_jpg.rf.e01708b4c81d4fd6c2b4eae5024c0e38.jpg", + "response": "The image shows two men standing in front of a building under construction. The man on the left is wearing a red cap and a green jacket. The man on the right is wearing a yellow shirt and a gray helmet. They are both holding yellow books and talking. The background is a white wall and a piece of yellow scaffolding.", + "id": 32182 }, { - "image_path": "G:\\images\\combined\\003520_jpg.rf.b2a8573a6f7e16166bbf3326de37b2f7.jpg", - "response": "The image shows a group of workers in green camouflage uniforms and blue hardhats standing around a white pipe. The pipe is suspended on a chain, and is being lowered onto a waiting truck. The workers are standing around the pipe, some of them holding onto the chain that is lowering the pipe. One worker is on the left, another is on the right, and the third is further back. One of the workers on the right is also holding a large metal tool.", - "id": 1576 + "image_path": "G:\\images\\combined\\006089_jpg.rf.24141e34e66fd8de158d234032d7bbb5.jpg", + "response": "The image shows two construction workers wearing blue hard hats and reflective vests, with one of them holding a red tool. They are standing on a construction site with a building under construction in the background. The sky is blue and clear.", + "id": 32183 }, { - "image_path": "G:\\images\\combined\\003521_jpg.rf.6c363a1dc9c6a74775aad4714cc6e136.jpg", - "response": "a group of men wearing hard hats and orange jumpsuits", - "id": 1577 + "image_path": "G:\\images\\combined\\00608_jpg.rf.62920c57775c1ce0e17bbb67babbc20b.jpg", + "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", + "id": 32184 }, { - "image_path": "G:\\images\\combined\\003522_jpg.rf.8d5b7d5a015894bccb4f46675446374a.jpg", - "response": "A man wearing a yellow hard hat and work gloves walking on a construction site.", - "id": 1578 + "image_path": "G:\\images\\combined\\00608_jpg.rf.b9d87d952952b865e2dc517e10885a1a.jpg", + "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", + "id": 32185 }, { - "image_path": "G:\\images\\combined\\003523_jpg.rf.368aee4273b7d04a13249715d44287c6.jpg", - "response": "A worker measures a steel rebar cage at the construction site of the Beipanjiang B\u51fdgk Bridge, which is the world's highest bridge, in southwest China's Guizhou Province. The bridge, with a height of 1,800 meters above sea level, is expected to be completed next year.", - "id": 1579 + "image_path": "G:\\images\\combined\\006090_jpg.rf.a1d3c460d2ce02bc560b5183566e912c.jpg", + "response": " Workers(232,124),(452,797)(168,364),(306,720)(92,355),(202,756) in a tunnel.", + "id": 32186 }, { - "image_path": "G:\\images\\combined\\003524_jpg.rf.852536c1e14452fd38a7a87f97e1969b.jpg", - "response": "A man in a hard hat and a woman in a dress and hard hat are talking to another man in a street.", - "id": 1580 + "image_path": "G:\\images\\combined\\006091_jpg.rf.4a6486801218b66b6a12d807d7172ab1.jpg", + "response": "A group of people sitting around a table.", + "id": 32187 }, { - "image_path": "G:\\images\\combined\\003526_jpg.rf.9ebf382dac5feb0a5cdf72cf79d64086.jpg", - "response": "The image shows a group of three men working in a tunnel. They are all wearing hard hats and one man is wearing a black t-shirt and grey pants, another man is wearing a red shirt and grey pants, and the third man is wearing a blue shirt and grey pants. The man on the far left is crouching down and is working on a piece of metal with a tool in his hand. The man in the middle is standing and looking at something. The man on the far right is also standing and looking at something. They are all in a tunnel with a rocky floor and the walls are made of concrete. There is a bright light coming from somewhere in the tunnel and a steel beam in the foreground.", - "id": 1581 + "image_path": "G:\\images\\combined\\006094_jpg.rf.c285788258a24ddc558d148deee3ca63.jpg", + "response": "A man in a hard hat looking up at a very tall industrial plant.", + "id": 32188 }, { - "image_path": "G:\\images\\combined\\003527_jpg.rf.e7d8778f0d9c6bffa3bdf55c35d7cb79.jpg", - "response": "A group of men standing in front of a building.", - "id": 1582 + "image_path": "G:\\images\\combined\\006095_jpg.rf.a8dd7f011441ffb26d7a807fb6363084.jpg", + "response": "The image shows a large tunnel that is unfinished on the left side and is lined with white concrete on the right side. The tunnel has a white ceiling and white floor. The floor is covered with dark grey train tracks that go into the distance. There are two workers in the tunnel, one is in the middle of the left side and the other is on the right side of the image. They are both dressed in red and white safety gear.", + "id": 32189 }, { - "image_path": "G:\\images\\combined\\003528_jpg.rf.2915f526b7b76b000baaa8c73663bd68.jpg", - "response": "A group of men standing around a computer screen.", - "id": 1583 + "image_path": "G:\\images\\combined\\006096_jpg.rf.0594cc16a14178516095e5476875bc71.jpg", + "response": "A group of workers in hard hats and safety vests are standing on a bridge. They are holding and moving a large metal beam.", + "id": 32190 }, { - "image_path": "G:\\images\\combined\\003530_jpg.rf.c06dba81c087766729c3ea6a97177954.jpg", - "response": "In the image there are two workers wearing white coveralls and yellow hard hats. They are on a platform working on a large metal structure. One of the workers is holding a blower and pointing it at the other worker. There is a hose running from a blue tank to the workers. There is a backpack vacuum behind the workers. The metal structure they are working on is black.", - "id": 1584 + "image_path": "G:\\images\\combined\\006098_jpg.rf.68524e1d268593bf3e2bf8eba9854633.jpg", + "response": "The image shows three men dressed in orange work clothes and blue helmets sitting on a yellow and black machine. They are all looking at a small black box the man on the left is holding. The street is blocked off with orange and white barriers and there are many people in the background, some standing and some sitting on chairs. There is a crowd of people on the right hand side of the image and another smaller crowd further in the background. In the very background, there are red lanterns hanging.", + "id": 32191 }, { - "image_path": "G:\\images\\combined\\003531_jpg.rf.b7b7ff8a9bf2cb9799a85cfb13a5c91f.jpg", - "response": "In the image there are two main subjects, a man wearing a suit and a man wearing a yellow safety vest. They are both wearing hard hats. The man wearing the suit is on the left side of the image and the man wearing the safety vest is on the right side. They are both looking at a blueprint which is either on a book or a piece of paper. The book or paper is located at the bottom of the image. In the background, there are some pipes.", - "id": 1585 + "image_path": "G:\\images\\combined\\006099_jpg.rf.8f6be92a92955f7416d7a834327a2668.jpg", + "response": "A group of four men standing and looking at a blueprint.", + "id": 32192 }, { - "image_path": "G:\\images\\combined\\003532_jpg.rf.3a8e5ea3f127757c0d0bdcb64bfdbf7f.jpg", - "response": "A man in a blue shirt and a red helmet is talking to a man in a brown shirt and a yellow helmet. They are both standing in front of a street.", - "id": 1586 + "image_path": "G:\\images\\combined\\00609_jpg.rf.a8d9fd38b7c5646c00ff7fdc22b83efd.jpg", + "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a tablet and is wearing a black safety jacket with the hood on. The man second from the left is wearing a blue hard hat and is holding a walkie talkie. The man in the middle is wearing a white hard hat and a yellow safety jacket, he is also holding a walkie talkie. The woman on the far right is wearing a yellow safety jacket and a white hard hat, she is holding a rolled up piece of paper. On the table to the right of the group, there are several cups and a laptop.", + "id": 32193 }, { - "image_path": "G:\\images\\combined\\003533_jpg.rf.78f340ca3092bca36ec0d98ccedc9611.jpg", - "response": "The image shows a group of workers inside a large tunnel. They are working on a construction project and are standing on a walkway that is built inside the tunnel. The workers are wearing hard hats and some of them are carrying tools.", - "id": 1587 + "image_path": "G:\\images\\combined\\00609_jpg.rf.fc7ba35a54bbb72e41981b0979205de6.jpg", + "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a walkie talkie and the man second from the left is scratching his head. The man in the middle is holding a blueprint. The woman on the right is wearing a yellow hard hat and holding the blueprint. There are two rooms in the background, one is almost finished and the other one is still under construction.", + "id": 32194 }, { - "image_path": "G:\\images\\combined\\003535_jpg.rf.ec73091b3a943596d28c75b3de1a5371.jpg", - "response": "The leader of North Korea, Kim Jong-un, waves to the crowd. He is wearing a black suit and a hat. He is standing on a red carpet in front of a large crowd. There are other people around him, including some in military uniform. The room is filled with people sitting in chairs and standing around. There are also some people in the background wearing suits and ties.", - "id": 1588 + "image_path": "G:\\images\\combined\\0060bd3d509fba0f.jpg", + "response": "A sign for The House off Licenced is on the side of a building.", + "id": 32195 }, { - "image_path": "G:\\images\\combined\\003536_jpg.rf.3e107eb0074881e266ea01dfed2c0ca6.jpg", - "response": "A worker in a cherry picker repairs power lines.", - "id": 1589 + "image_path": "G:\\images\\combined\\006100_jpg.rf.8e14167538e51b6c5f1f5688d60a2a96.jpg", + "response": "a group of people in front of a building", + "id": 32196 }, { - "image_path": "G:\\images\\combined\\003537_jpg.rf.d6ff33da5f134e16e25495b3dbf4a654.jpg", - "response": "A construction worker in front of a building site with a small orange excavator.", - "id": 1590 + "image_path": "G:\\images\\combined\\006101_jpg.rf.8797de2d4e19932f9c5eae5376aa1e68.jpg", + "response": "The image shows two workers in a room filled with industrial equipment. They are standing near a large pipe and a black valve. The pipe is on the left side of the image, and the valve is on the right side. Both workers are wearing red hard hats. One of the workers is holding a flashlight and is looking into the pipe. The other worker is standing behind them, and there is a chair in the room. The room also contains several other pipes and valves, some of which are connected to the large pipe and valve. The walls of the room are made of red brick, and there is a window in the background.", + "id": 32197 }, { - "image_path": "G:\\images\\combined\\003539_jpg.rf.5364a2ed78dde7960ad213bcb81179b0.jpg", - "response": "In the image two workers are wearing blue uniforms and red helmets. They are looking at a large metal cylinder that is a part of a blue machine. There are many other metal parts around them and a ruler is placed near the metal cylinder. The background is blurred out and there is a light green machine in the left top corner of the image.", - "id": 1591 + "image_path": "G:\\images\\combined\\006103_jpg.rf.c87eef4f53b2c2414d631f5da92b9eb7.jpg", + "response": "A group of men in blue uniforms and red hard hats are working on a ladder on a power line.", + "id": 32198 }, { - "image_path": "G:\\images\\combined\\003540_jpg.rf.054d35490b418282ca63cb779422a325.jpg", - "response": "A group of seven men and one woman are standing in a construction site. They are all wearing red hard hats. In the background, there are trees.", - "id": 1592 + "image_path": "G:\\images\\combined\\006104_jpg.rf.1db0fb41129d0f6da1bd674fd93310b9.jpg", + "response": "The image shows two men standing on a construction site. They are wearing hard hats and one of them is holding a rolled-up blueprint. In the background, there are other people and a few vehicles, including a bulldozer and a car. The site is marked with a sign that says \"lot for sale.\"", + "id": 32199 }, { - "image_path": "G:\\images\\combined\\003541_jpg.rf.399b3ed73273ef9ab9834b6ae4b99a1c.jpg", - "response": "A worker in a yellow hat working on a machine.", - "id": 1593 + "image_path": "G:\\images\\combined\\006105_jpg.rf.5b7b116e0c7eeba3b4c883abaf32fc04.jpg", + "response": "A couple of men in orange work clothes and yellow hard hats are working on a piece of machinery.", + "id": 32200 }, { - "image_path": "G:\\images\\combined\\003542_jpg.rf.230261dd73cc2dcaf5c1592d9ac59602.jpg", - "response": "A large bridge under construction with many large metal beams and pipes on the ground in front of it.", - "id": 1594 + "image_path": "G:\\images\\combined\\006106_jpg.rf.2aca2de9a50c6db3d91c0d02703ac45b.jpg", + "response": "A worker in a yellow hard hat is working on a large pipe.", + "id": 32201 }, { - "image_path": "G:\\images\\combined\\003543_jpg.rf.1bd62cba13dcc4fe482a883674c1ddf1.jpg", - "response": "The image shows two workers in blue shirts and yellow reflective vests standing in front of a grey box with the word \"Electrical\" written on it. Both of them are wearing blue helmets. One of them is opening the grey box with his left hand while the other is watching. The box has some writing and a red lightning bolt on it.", - "id": 1595 + "image_path": "G:\\images\\combined\\006107_jpg.rf.7a7959bf2499962f2e20d58ac44ce2cd.jpg", + "response": "The image shows a group of four men standing in an unfinished room. They are all wearing hard hats. One man is pointing to the right, presumably showing something of interest. The man on the far left is holding a cell phone. The man second from the left is wearing a black suit and a white helmet. The man on the right is wearing a red helmet. The walls of the room are made of concrete blocks and the floor is bare.", + "id": 32202 }, { - "image_path": "G:\\images\\combined\\003544_jpg.rf.1d90c1bddcbf679531a34f431abe67cc.jpg", - "response": "A group of people standing around each other.", - "id": 1596 + "image_path": "G:\\images\\combined\\006108_jpg.rf.34052cb5c25d4de6cdbfdefcaf8bae96.jpg", + "response": "A construction worker using a machine to cut through a concrete wall.", + "id": 32203 }, { - "image_path": "G:\\images\\combined\\003545_jpg.rf.f84a56c9087ec499adac7c0202793f7f.jpg", - "response": "The photo shows several construction workers working on a site at night. They are wearing yellow hard hats and are focused on their tasks. In the foreground, there is a yellow piece of machinery with a large drill on it. To the right of the machinery, there are two men working on a rock. In the background, there are several other workers scattered around the site.", - "id": 1597 + "image_path": "G:\\images\\combined\\006110_jpg.rf.a812eae3c179d43d1eff20c719cdbb04.jpg", + "response": "A group of men standing around a building site wearing hard hats.", + "id": 32204 }, { - "image_path": "G:\\images\\combined\\003546_jpg.rf.b7e6cdd62d797ccbae07f75ed24e2406.jpg", - "response": "The image shows a group of workers standing on a stretch of railway track. They are all wearing yellow hard hats and some are holding red and yellow shovels. The railway track is a mix of brown sleepers and silver metal rails. To the left of the image, there are red and yellow flags fluttering in the wind. In the background, there is a green hill and a grey sky.", - "id": 1598 + "image_path": "G:\\images\\combined\\006111_jpg.rf.3475659e93ff77746ff04a16b4740994.jpg", + "response": "A group of people standing in a room with two men looking at a computer screen.", + "id": 32205 }, { - "image_path": "G:\\images\\combined\\003547_jpg.rf.201700d51c32145de13bf451da9cf98c.jpg", - "response": "A construction site with several workers visible. There are at least four workers, all wearing some form of hard hat. One worker is standing on the left, wearing a grey shirt and blue jeans, and is holding a tool. Another worker is standing in the center, wearing a black shirt and grey pants, and is holding a tool. The third worker is standing on the right, wearing a white shirt and yellow pants, and is also holding a tool. The fourth worker is standing on a platform made of metal rods, wearing a red hat and a grey shirt. There are many metal rods sticking up from the platform, which appears to be a support structure for a building.", - "id": 1599 + "image_path": "G:\\images\\combined\\006113_jpg.rf.ed92f4239bcf6dfa87e110637a5c0ceb.jpg", + "response": "The image shows a group of workers in blue jumpsuits and yellow hard hats at a construction site. They are gathered around a large piece of equipment, which appears to be a large piece of electrical equipment. The workers are standing in front of a tall structure with power lines above them. One of the workers is holding a large tool and pointing towards something. The text at the top of the image reads \"People.com\" and \"Anhui\" and the bottom text reads \"\u4eba\u6c11\u7db2 \u5b89\u5fbd\u9891\u9053\".", + "id": 32206 }, { - "image_path": "G:\\images\\combined\\003548_jpg.rf.f5469ddea09c9b8a48c519f8ebad0d80.jpg", - "response": "A worker in China is seen moving a large sculpture of a woman with a kite in her mouth. The sculpture is grey in color and the woman is laying on the ground. In the background, there is a truck.", - "id": 1600 + "image_path": "G:\\images\\combined\\006114_jpg.rf.5f26a1e0a1e7bf7d308ceec91f904198.jpg", + "response": "In the image there is a group of men working in a factory. They are wearing hard hats and are working with metal. There are several metal beams and bars in the factory. Some of the metal is cut and ready to be put to use. There is also a truck visible in the background.", + "id": 32207 }, { - "image_path": "G:\\images\\combined\\003549_jpg.rf.36e7b0e211f0cb8ee735a3a260cf3dfc.jpg", - "response": "Two men in construction hats looking at a blueprint.", - "id": 1601 + "image_path": "G:\\images\\combined\\006115_jpg.rf.5121fc4d7e368062e24b16e239a6d695.jpg", + "response": "A group of workers are working on a large pipeline.", + "id": 32208 }, { - "image_path": "G:\\images\\combined\\00354_jpg.rf.4220394e1e4dbca859218f36cd6b0307.jpg", - "response": "In the image, a man is wearing a yellow safety vest and a yellow helmet. He is also wearing a white shirt and black pants. The man appears to be standing in front of a building with an ornate fence. The man is also holding a smartphone in his right hand, with his thumb on the screen.", - "id": 1602 + "image_path": "G:\\images\\combined\\006116_jpg.rf.3b0a93ff015b8e90f96f799dfcee0cec.jpg", + "response": "In the image there are two people wearing blue work clothes and safety harnesses. They are working on an electrical box. One person is climbing a ladder and the other person is working on the electrical box. They are both wearing white gloves to be able to work safely.", + "id": 32209 }, { - "image_path": "G:\\images\\combined\\00354_jpg.rf.a51b15095d3745bac18f228cbb2d0b74.jpg", - "response": "In the image, a man is wearing a yellow safety vest and a yellow helmet. He is also wearing a white shirt and black pants. The man appears to be standing in front of a building with an ornate fence. The man is also holding a smartphone in his right hand, with his thumb on the screen.", - "id": 1603 + "image_path": "G:\\images\\combined\\006117_jpg.rf.576f73fbddf3bfdc4e06788d42e289e5.jpg", + "response": " Workers(372,322),(557,916)(746,294),(988,997)(612,359),(672,598)(509,367),(585,680) in a tunnel, working on the construction of the railway tunnel.", + "id": 32210 }, { - "image_path": "G:\\images\\combined\\003550_jpg.rf.683cc47c249e737dba2920a3668fc13c.jpg", - "response": "A man in a blue jumpsuit and orange hard hat is sitting on a metal bar attached to a telephone pole. He is holding a pair of pliers in one hand and a cell phone in the other. The sky is white.", - "id": 1604 + "image_path": "G:\\images\\combined\\006118_jpg.rf.24a7ca8df1f49d47d83a89f07a78a2d0.jpg", + "response": "A man sitting on the ground in front of a pile of metal rods.", + "id": 32211 }, { - "image_path": "G:\\images\\combined\\003552_jpg.rf.979b190dc936af1189f997fe9f5f5427.jpg", - "response": "A group of men in red work uniforms are on top of power lines.", - "id": 1605 + "image_path": "G:\\images\\combined\\006120_jpg.rf.e199e14c7b55a849b331c0c3dc4817dc.jpg", + "response": "A worker in a yellow hard hat is operating a piece of equipment.", + "id": 32212 }, { - "image_path": "G:\\images\\combined\\003553_jpg.rf.3ea6884c44f76af6a97d01278ca2d4cb.jpg", - "response": "A group of men walking across a parking lot.", - "id": 1606 + "image_path": "G:\\images\\combined\\006121_jpg.rf.291bc736a335c2baead37c7f0c8574ac.jpg", + "response": "A group of men standing in front of a pile of rubble.", + "id": 32213 }, { - "image_path": "G:\\images\\combined\\003554_jpg.rf.87e7040f4c3a056cb7cb587191f12ed8.jpg", - "response": "A man is using a rock drilling machine in a dusty construction site.", - "id": 1607 + "image_path": "G:\\images\\combined\\006122_jpg.rf.b0c5a942a23ec461be1f113b400d6d84.jpg", + "response": "In the image two technicians are working on a roof. They are wearing orange work uniforms and yellow hard hats. They are standing on a roof and working on a piece of equipment.", + "id": 32214 }, { - "image_path": "G:\\images\\combined\\003555_jpg.rf.b6154d0b387ba2bdcc5b56546bf8cf55.jpg", - "response": "A construction site with two workers in yellow and green vests and yellow and orange hard hats.", - "id": 1608 + "image_path": "G:\\images\\combined\\006123_jpg.rf.2183e9055eb8d44a733214c16e9b5c1e.jpg", + "response": "A man in a hard hat and orange safety jacket is working on a construction site. He is standing on a ladder, working on a concrete wall. There are yellow pipes running along the side of the wall. In the background, there are more buildings and a sky with clouds.", + "id": 32215 }, { - "image_path": "G:\\images\\combined\\003556_jpg.rf.68d66fdf5ac559fb0a5b0d75c2d23a10.jpg", - "response": "A group of workers in blue work uniforms and white protective hats are working on an electricity substation. They are standing on a platform that is built around the top of a tall metal structure. They are working on a transformer with a bright flash of white light coming from it. The sky is overcast.", - "id": 1609 + "image_path": "G:\\images\\combined\\006124_jpg.rf.84d67cbbdf32583278a301932c694261.jpg", + "response": "A man and woman wearing blue hard hats are standing in front of a building under construction. The man is wearing a blue shirt and has a tie. The woman is wearing a yellow vest. They are both holding cigarettes.", + "id": 32216 }, { - "image_path": "G:\\images\\combined\\003557_jpg.rf.db8c5bd00e701dddc6f32b98564afe13.jpg", - "response": "In the image two workers are seen. One is wearing a yellow helmet and is crouching down on the ground. Another worker is standing on the right side of the image. On the ground there are several things like a red and white striped cloth, a yellow helmet, a toothbrush and a book. There are also several long iron pipes and some signs on the wall.", - "id": 1610 + "image_path": "G:\\images\\combined\\006125_jpg.rf.ce11c146e4766360f97b0054f61afa56.jpg", + "response": "A man in a blue shirt and orange hard hat is working on a piece of machinery. He is wearing glasses and has a orange hard hat with a yellow sticker on it. He is also wearing a black glove on his left hand. He is looking at the camera while working on the machinery.", + "id": 32217 }, { - "image_path": "G:\\images\\combined\\003558_jpg.rf.036375d5d9d2e554bbb45c1814de6a10.jpg", - "response": "A construction site with multiple workers. There is a large crane in the background and a few men working on the ground. The workers are wearing hard hats and the crane is lifting a large object.", - "id": 1611 + "image_path": "G:\\images\\combined\\006126_jpg.rf.b84e67e82b3b33f8194203b0009622bc.jpg", + "response": "An employee works on power lines covered with snow in Lhasa, capital of southwest China's Tibet Autonomous Region, Jan. 25, 2016. The heavy snowfall this week has affected electricity and telephone services in some areas of Tibet. However, the overall situation is under control and the power and telephone services have been gradually restored, the local authorities said. (Xinhua/Li Bin)", + "id": 32218 }, { - "image_path": "G:\\images\\combined\\003559_jpg.rf.6bbb1deca2463f8ff961d22863021680.jpg", - "response": "A group of three men wearing hard hats are crouched down looking at something on the ground. They are all wearing blue jackets and the man on the right is also wearing a red hard hat. They appear to be looking at some pipes on the ground.", - "id": 1612 + "image_path": "G:\\images\\combined\\006127_jpg.rf.5af12613b0a2a90184835ccf6a00dc44.jpg", + "response": "A group of people standing in front of a building under construction.", + "id": 32219 }, { - "image_path": "G:\\images\\combined\\003560_jpg.rf.10e6f8f8404fa5f1cd9f116a19c3896d.jpg", - "response": "A worker stands on a bridge that is under construction.", - "id": 1613 + "image_path": "G:\\images\\combined\\006128_jpg.rf.5c7a4fd0c3c0f819b7aba94626754ae5.jpg", + "response": "An older Chinese man wearing a blue hat and a blue and red shirt smiles at the camera.", + "id": 32220 }, { - "image_path": "G:\\images\\combined\\003561_jpg.rf.dd9b00241e3f5104ad76dde42ab32905.jpg", - "response": "A man wearing a blue shirt and a yellow hard hat is pushing a wheelbarrow of bricks. He is standing on a construction site and is the only person in the image.", - "id": 1614 + "image_path": "G:\\images\\combined\\006129_jpg.rf.219b274a8e0802c7c0350a0d3719145e.jpg", + "response": "In the image there is a construction site with two workers present. They are working on a building, possibly a hotel, and are in the process of laying bricks. The bricks are being laid on a wooden platform. There are also several other workers in the image, some of which are holding tools, while others are working on the building. The building is grey in color and the sky above it is white.", + "id": 32221 }, { - "image_path": "G:\\images\\combined\\003563_jpg.rf.7f3a8605ae7e814486b818b7dd904f1c.jpg", - "response": "A group of men walking across a muddy field.", - "id": 1615 + "image_path": "G:\\images\\combined\\00612_jpg.rf.175a0841ccb252e5cf869c814c6ac4a8.jpg", + "response": "A group of people working on a construction site, pouring concrete.", + "id": 32222 }, { - "image_path": "G:\\images\\combined\\003564_jpg.rf.76c40aa4db4bd4831b1b3a52b842397f.jpg", - "response": "The image shows a snow-covered field with a large, damaged transmission tower in the middle of it. The tower appears to be partially destroyed, with wires and other debris scattered around it. There are several people in the field, with some standing near the tower and others further away. Some of the people are wearing hard hats and jackets, suggesting that they are workers or rescuers. There is also a dog in the field, standing near the tower. The sky above the field is overcast, adding to the wintry atmosphere.", - "id": 1616 + "image_path": "G:\\images\\combined\\00612_jpg.rf.a33554dbc7cd3e7832612770277d5930.jpg", + "response": "A group of people working on a construction site, pouring concrete.", + "id": 32223 }, { - "image_path": "G:\\images\\combined\\003565_jpg.rf.4b5fa2267744bd87430ee01a2e0cd4c5.jpg", - "response": "In the image two workers are seen repairing the wires of a\u53d1\u7535\u673a. One worker is seen wearing a helmet and gloves and the other one is wearing a helmet. They are both wearing blue and white color helmets. They are holding different tools in their hands. One of the worker is holding a pair of pliers and the other one is holding a screwdriver. They are wearing black color dress. There are many wires and cables seen in the image. Some of the wires are white and some are red and black. There is a yellow color pipe seen in the image. The background of the image is filled with many boxes.", - "id": 1617 + "image_path": "G:\\images\\combined\\006130_jpg.rf.79a573a943f704029c6e693055c577fe.jpg", + "response": "The workers in the photo are dressed in green camouflage uniforms. In the background, there is a large sign that reads \"\u6709\u79cd\u660e\u4eae\u70ed\u529b \u7164\u6539\u6c14\" with a project launch ceremony held under it. The workers are carrying large copper buckets on their shoulders, which are connected to a large copper pipe.", + "id": 32224 }, { - "image_path": "G:\\images\\combined\\003566_jpg.rf.3aa1641c877d959c4e8103beaaf8e2fc.jpg", - "response": "A group of men standing under a large umbrella.", - "id": 1618 + "image_path": "G:\\images\\combined\\006131_jpg.rf.78274ad224e766a44c343a58d21c0412.jpg", + "response": "The scene of the accident in which a man was killed after a crane carrying a power transformer fell on a truck in Xingyi city, Guizhou province, Aug. 24, 2013. A crane carrying a power transformer fell on a truck in southwestern China's Guizhou province on Monday, killing a man and injuring three others, local media reported. The accident occurred in Xingyi city at around 11:30 a.m. (1:30 a.m. GMT), according to the official Weibo account of the local traffic police. The crane driver and two workers on the truck were injured, the report said, without saying where the accident happened.", + "id": 32225 }, { - "image_path": "G:\\images\\combined\\003567_jpg.rf.929515b4f40ee5c77773b6fc0e2f4ed1.jpg", - "response": "A group of people working on a construction site.", - "id": 1619 + "image_path": "G:\\images\\combined\\006132_jpg.rf.016d09a241af5f631aae842d09d94258.jpg", + "response": " People(657,196),(894,996)(862,277),(997,996)(307,271),(413,830)(514,307),(716,985)(123,273),(285,988)(55,293),(179,837) in hard hats and coats stand in a large, dark room with a concrete floor.", + "id": 32226 }, { - "image_path": "G:\\images\\combined\\003568_jpg.rf.c48779f687616b9cdf9b0e2a1009c402.jpg", - "response": "This image shows a man standing in front of a building under construction. The man has black hair and is wearing a white shirt with a red emblem on the left side. He is smiling and has his hands behind his back. In the background, there is a car parked near the building. The sky is blue and there are a few clouds in the distance. The man's hair is styled in a high and tight style, which is a popular hairstyle among men in North Korea.", - "id": 1620 + "image_path": "G:\\images\\combined\\006133_jpg.rf.f109773970d5c4033487e6d5a77e414e.jpg", + "response": "In the image two workers in orange safety jackets are handling steel wool on a construction site. They are standing behind a yellow container and in front of a ship with Chinese characters on it. The ship is carrying a large amount of steel wool on it's side.", + "id": 32227 }, { - "image_path": "G:\\images\\combined\\003570_jpg.rf.5f243740d35237874e7714820f0559d7.jpg", - "response": "A man in a yellow hard hat is working outside, standing next to a large stack of wooden pallets. He is also standing next to a large stack of what look like roof tiles, wrapped in plastic. They are piled up in front of him and to his right. The sky above him is blue with a few thin clouds.", - "id": 1621 + "image_path": "G:\\images\\combined\\006134_jpg.rf.58174d4c72693b94375e38990bc4d6ec.jpg", + "response": "A man sitting down and another standing both wearing blue helmets and work clothes.", + "id": 32228 }, { - "image_path": "G:\\images\\combined\\003571_jpg.rf.3e294f0d046cfaaf42bed7a61ea4ea77.jpg", - "response": "A construction worker in a yellow jacket and orange shirt, holding a large metal pole.", - "id": 1622 + "image_path": "G:\\images\\combined\\006135_jpg.rf.3df08ce2be69190d5eeeeb7870854a20.jpg", + "response": "A city street with some trees and buildings on it. Some workers are on a cherry picker fixing a power line.", + "id": 32229 }, { - "image_path": "G:\\images\\combined\\003572_jpg.rf.55f9237cd2c642bb2f82f92490204adc.jpg", - "response": "In the image there are two men wearing hard hats. One man is on the left and he is holding a clipboard with a paper on it and a stick in his hand. The other man is on the right and he is holding a hard hat. They are standing in front of a yellow construction vehicle and they are talking. They are both wearing long sleeved shirts.", - "id": 1623 + "image_path": "G:\\images\\combined\\006136_jpg.rf.b069bf552937476ac0d047366ccda4ea.jpg", + "response": "In the image two workers are seen repairing an electricity post. Both of them are wearing safety gear. One of them is wearing a yellow helmet and the other one is wearing a red helmet. Both of them are wearing white clothes. One of them is holding a tool in his right hand which he is using to repair the electricity post.", + "id": 32230 }, { - "image_path": "G:\\images\\combined\\003574_jpg.rf.083018ce074e1acb4649f3db79fa470d.jpg", - "response": "a group of people standing on a road", - "id": 1624 + "image_path": "G:\\images\\combined\\006137_jpg.rf.8423f98c87ed3569ca3c56dd749ae9ff.jpg", + "response": "a man in an orange shirt and red hat is operating a piece of equipment", + "id": 32231 }, { - "image_path": "G:\\images\\combined\\003576_jpg.rf.bfadee11652322ac6041ebed43e43c93.jpg", - "response": "A worker in a blue jacket and yellow hard hat stands on a red bridge. He is holding a lunchbox and appears to be taking a break. In the background, a portion of the Olympic stadium can be seen.", - "id": 1625 + "image_path": "G:\\images\\combined\\006138_jpg.rf.e3092c2557a67d075c52f368b8e6732f.jpg", + "response": "a group of men standing in front of a building under construction", + "id": 32232 }, { - "image_path": "G:\\images\\combined\\003577_jpg.rf.7d07c13a9350abab00f9676a269518c0.jpg", - "response": "The image features a group of people sitting around a large brown table. They are all wearing black clothing. On the table, there are several red hard hats, a cup, a bowl, and a book. There are two chairs, one on the left side of the table and another on the right side. In the background, there are three framed pictures hanging on the wall. The middle picture is larger and is accompanied by two smaller pictures on either side. The room also features several signs on the wall, possibly indicating safety precautions or rules.", - "id": 1626 + "image_path": "G:\\images\\combined\\00613913be1b88d2.jpg", + "response": "The image shows a group of men wearing blue baseball uniforms with red and white caps. They are standing on a baseball field, and some of them are smiling. The men are standing close to each other, and some of them are shaking hands. One of the men is wearing a blue shirt and has a beard. Another man is wearing sunglasses and has a big smile on his face.", + "id": 32233 }, { - "image_path": "G:\\images\\combined\\003578_jpg.rf.8e5565eb96f0d9732a3d141bd2159b9c.jpg", - "response": "A group of workers wearing yellow hats are building a brick wall.", - "id": 1627 + "image_path": "G:\\images\\combined\\006139_jpg.rf.cf58b6ba1cc0e0de20f60e56f94adcc1.jpg", + "response": "A group of men standing around each other", + "id": 32234 }, { - "image_path": "G:\\images\\combined\\003579_jpg.rf.17496461c7be29ec8e75bf9507c4b54f.jpg", - "response": "A group of men standing around a hole in the ground.", - "id": 1628 + "image_path": "G:\\images\\combined\\006142_jpg.rf.bf5db353c153f4d0d8b8b99b00eb5279.jpg", + "response": "In the image there are two technicians working on a HVAC system. They are both dressed in blue work clothes and white helmets. The person on the left is leaning over a counter and looking at the pipe the person on the right is working on. There is a red pipe going across the image near the top. There is a white pipe going up the wall in the middle of the image and a black pipe going up the black in the upper right corner.", + "id": 32235 }, { - "image_path": "G:\\images\\combined\\003580_jpg.rf.f1db5f6a0babb99266b65d1ce33d23e3.jpg", - "response": "In the image two men in orange suits are standing next to a conveyor belt. The belt is black and runs along a rail. The men are both wearing orange helmets. One of the men is also wearing an orange jacket. They are standing on a field with a sky in the background that is filled with clouds. The field is surrounded by green hills.", - "id": 1629 + "image_path": "G:\\images\\combined\\006143_jpg.rf.17c9b41bcf57447c8e755a3f18453a00.jpg", + "response": "Men(510,223),(667,863)(649,105),(789,928)(727,62),(996,996) looking at a stadium(0,4),(997,999)", + "id": 32236 }, { - "image_path": "G:\\images\\combined\\003581_jpg.rf.b3e82b54173b095e6d12b895e32c3013.jpg", - "response": "A city that has been destroyed by a disaster.", - "id": 1630 + "image_path": "G:\\images\\combined\\006144_jpg.rf.7f4d654bbf0e1e68c7f0ebc38abc3463.jpg", + "response": "A group of people working on a ship docked at a port.", + "id": 32237 }, { - "image_path": "G:\\images\\combined\\003582_jpg.rf.c7ba942176f27fc9d7f33ff8c1c2b581.jpg", - "response": "A group of people standing around a car.", - "id": 1631 + "image_path": "G:\\images\\combined\\006145_jpg.rf.b546365ee0f4fc0f5a456814847a5dd1.jpg", + "response": "A group of rescue workers in red jackets huddle around a silver pot in a snowy forest.", + "id": 32238 }, { - "image_path": "G:\\images\\combined\\003583_jpg.rf.f14e73d90a4372830a6edcd9d5ba6c88.jpg", - "response": "A group of men in hard hats and black uniforms are working in a snowy forest. They are standing around a small sapling and one of them is holding a large tool. The ground is covered in a thick layer of snow.", - "id": 1632 + "image_path": "G:\\images\\combined\\006146_jpg.rf.e0a34ccf893dc0f1974407f57d5cb3f9.jpg", + "response": "An engineer in a white helmet and green vest points to a pipe in a white corridor.", + "id": 32239 }, { - "image_path": "G:\\images\\combined\\003584_jpg.rf.72577044b1ecbfdb9de7e49c40ca3a01.jpg", - "response": "In the image there is a group of six people posing for a photo in a construction site. Three of them are wearing yellow vests and construction hats, and three of them are wearing business suits. The woman in the middle is also wearing a construction hat. They are all smiling at the camera.", - "id": 1633 + "image_path": "G:\\images\\combined\\006147_jpg.rf.776dc9315508da30e524cd3cd0eb1584.jpg", + "response": "A man is using a machine to level concrete.", + "id": 32240 }, { - "image_path": "G:\\images\\combined\\003585_jpg.rf.66c116879c04d68086fd4ed358a7b9a5.jpg", - "response": "A man wearing an orange hard hat and carrying a broom stands in front of a wire fence. He is wearing a grey shirt with thin blue stripes and grey pants. The man's back is turned to the camera. The fence is grey and made of wire. There is a house in the background with a red roof and white walls. The image is slightly blurred.", - "id": 1634 + "image_path": "G:\\images\\combined\\006148_jpg.rf.a4521472c79be0b5e3ee0d4a55bc0d4b.jpg", + "response": "A group of men sitting around a table.", + "id": 32241 }, { - "image_path": "G:\\images\\combined\\003586_jpg.rf.b43aa65eaf77285ed0c3671eea20b8c7.jpg", - "response": "The image shows a group of workers standing on a construction site. They are wearing yellow helmets and are digging a ditch. In the foreground, a man is using a shovel to dig into the ground, while another man is holding a shovel and looking at something. A few more men are standing in the background, with one of them holding a shovel.", - "id": 1635 + "image_path": "G:\\images\\combined\\00614_jpg.rf.50c987a424d84264c9412d23a90f0fc6.jpg", + "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", + "id": 32242 }, { - "image_path": "G:\\images\\combined\\003587_jpg.rf.b6f5882b8155bebe3899428b73d62c21.jpg", - "response": "A group of people standing around a construction site.", - "id": 1636 + "image_path": "G:\\images\\combined\\00614_jpg.rf.85a31443e5160ea9685a27c8049cc41b.jpg", + "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", + "id": 32243 }, { - "image_path": "G:\\images\\combined\\003590_jpg.rf.0d2f05c85c86d05f97141b1513745451.jpg", - "response": "A man in a yellow hard hat is driving a forklift.", - "id": 1637 + "image_path": "G:\\images\\combined\\006150_jpg.rf.6e6e35855aab73f13a302719bd5da8d1.jpg", + "response": "A group of people walking through a construction site.", + "id": 32244 }, { - "image_path": "G:\\images\\combined\\003592_jpg.rf.61972b72d52846ce356d472088c53b05.jpg", - "response": "A worker is seen on the roof of the Anan\u8d77\u5bfa, working on restoring the roof. The roof is made of dark green tiles and there are several yellow and orange balls decorating the roof. The worker is wearing a yellow helmet and grey clothes.", - "id": 1638 + "image_path": "G:\\images\\combined\\006151_jpg.rf.740b7dd0c79aef8b1a0d5a2d446b279a.jpg", + "response": "A group of men in blue uniforms working on power lines.", + "id": 32245 }, { - "image_path": "G:\\images\\combined\\003593_jpg.rf.a7cec43ab3d645f5e29e048b3b463689.jpg", - "response": "A group of men in grey and yellow uniforms and hard hats are working on power lines in a green field.", - "id": 1639 + "image_path": "G:\\images\\combined\\006152_jpg.rf.fb77629cd8e9fa7a6bd347e988d813f4.jpg", + "response": "A group of men working on a large piece of equipment.", + "id": 32246 }, { - "image_path": "G:\\images\\combined\\003594_jpg.rf.d8d1cb7df1f8bfd1f3213e7c472b3519.jpg", - "response": " linemen(323,523),(541,997)(214,498),(333,997) in the forest looking at a fallen tree blocking the power line", - "id": 1640 + "image_path": "G:\\images\\combined\\006153_jpg.rf.8b156f8f1313bbadfcf2ec1f2a8d3f6e.jpg", + "response": "A worker in a blue uniform and yellow hat is standing in front of a machine that has several bags of a product on it. The bags are blue and have white writing on them. The worker is holding a blue hose and is standing next to a yellow machine.", + "id": 32247 }, { - "image_path": "G:\\images\\combined\\003595_jpg.rf.9f09570fc49b4d1e1f197c6e51b470d4.jpg", - "response": "A man in a yellow shirt stands in front of a white wall with the words \"\u51fa\u552e\u65fa\u94fa\" (For Sale) written in red. He is speaking into a microphone. There are three other people standing to his right. To his left are two men, one standing closer to the front and one further back. To the far right are two women, one standing closer to the front and one further back.", - "id": 1641 + "image_path": "G:\\images\\combined\\006154_jpg.rf.c5ba22a008375d22225eddd90cd892d2.jpg", + "response": "A construction worker pulling a cable across a construction site.", + "id": 32248 }, { - "image_path": "G:\\images\\combined\\003596_jpg.rf.9379951f3d59d92cce38c001dd8fe724.jpg", - "response": "A man in a white shirt is pointing to a wall. Two men in striped shirts are standing next to him and looking at the wall. They are all wearing red helmets.", - "id": 1642 + "image_path": "G:\\images\\combined\\006156_jpg.rf.e2805ad0c51db38c205f206205e256aa.jpg", + "response": " A man(488,142),(919,995) in a hard hat(568,141),(753,333) standing in front of a large building under construction.", + "id": 32249 }, { - "image_path": "G:\\images\\combined\\003597_jpg.rf.896b62f069484941278c02f4467a03d3.jpg", - "response": "The image shows a group of rescue workers in orange jumpsuits and white hard hats standing around a green net. They are in a construction area with a large pile of dirt in the background. Some of the workers are standing on ladders. One worker is lying on a stretcher, and another worker is holding a yellow helmet.", - "id": 1643 + "image_path": "G:\\images\\combined\\006157_jpg.rf.61b3e5fa82b2c5ed18e372b99d6268b5.jpg", + "response": "A group of workers are cutting a tree with a chainsaw. The tree is blocking a road and leaning on power lines. The workers are dressed in orange and blue work clothes and hard hats. It is snowing heavily while they work.", + "id": 32250 }, { - "image_path": "G:\\images\\combined\\003599_jpg.rf.9feaf145c808852c3d1617511403299e.jpg", - "response": "The image shows four workers in yellow and orange vests and yellow helmets who are working on a bridge. They are all focused on a task, with two of them on the left and two on the right, wearing the same uniform. The bridge is a grey concrete structure with a concrete support in the middle, and two workers are fixing a metal part of the support.", - "id": 1644 + "image_path": "G:\\images\\combined\\006158_jpg.rf.4f0bb79f5f53bba6e18de613cce1604b.jpg", + "response": "Three men are talking next to an empty road. The man on the left is wearing a white shirt and grey pants. The man in the middle is wearing a white shirt and black pants. The man on the right is wearing a blue shirt and grey pants.", + "id": 32251 }, { - "image_path": "G:\\images\\combined\\0035c3d72f2715d3.jpg", - "response": "The image features a group of seven young men standing in front of a black banner with a white writing. Three of the men are wearing white shirts, while the other four are wearing blue shirts. They are all posing for a picture, with some of them standing closer to the camera and others a bit farther back.", - "id": 1645 + "image_path": "G:\\images\\combined\\006159_jpg.rf.aede2e2b1428caeac84b5b590c9dbb2d.jpg", + "response": "A worker is on a scaffolding, painting the eves of a building. He is wearing a grey suit, a blue hat, and a glove on his left hand. He is holding a brush in his right hand and a cell phone is in his left pocket. The sky is grey and overcast.", + "id": 32252 }, { - "image_path": "G:\\images\\combined\\003600_jpg.rf.882d2ed8298740bfe0df1f70e094f216.jpg", - "response": "A construction site with two men working on a roof.", - "id": 1646 + "image_path": "G:\\images\\combined\\006160_jpg.rf.6999479274a6ca768e580b88baf164e5.jpg", + "response": "In the image there is a group of workers wearing yellow helmets and green work clothes, they are working in a field. In the foreground, a worker in a green work clothes and yellow helmet is fixing a power pole, there is a power pole on the ground, and another one in the background.", + "id": 32253 }, { - "image_path": "G:\\images\\combined\\003601_jpg.rf.4fdbb9d0ae581cd6215044cb72f4dec3.jpg", - "response": "A man in a yellow hard hat holding a rolled up blueprint and looking up.", - "id": 1647 + "image_path": "G:\\images\\combined\\006164_jpg.rf.acdcd95a1cb3c6fc4d909dd632a914d7.jpg", + "response": "A man in a yellow hard hat and orange vest is working on a cement mixer. He is pouring cement into the mixer from a bag.", + "id": 32254 }, { - "image_path": "G:\\images\\combined\\003602_jpg.rf.57fc6edda29d5090f6ab07f3dcf71820.jpg", - "response": "a group of men standing around each other", - "id": 1648 + "image_path": "G:\\images\\combined\\006165_jpg.rf.6a6c0d15bc759b0e70b83f9ada1976e8.jpg", + "response": "The photo shows two workers in a dimly lit tunnel. They are wearing hard hats and standing on rubble near the entrance to the tunnel. In the background, there is a bright light coming from inside the tunnel.", + "id": 32255 }, { - "image_path": "G:\\images\\combined\\003603_jpg.rf.bf88e884147382297db8309e0fa3c1c3.jpg", - "response": "A crew of three men are working on a scaffolding outside a red brick building. They are in the process of installing windows on the second floor of the building.", - "id": 1649 + "image_path": "G:\\images\\combined\\006166_jpg.rf.40f52eb941d5643b17f29f5b30057b59.jpg", + "response": "In the image, US President Barack Obama is wearing a white shirt and a purple tie, and is also wearing a white helmet. He is talking to a man in front of him, also wearing a white helmet. The man to the right of Obama is wearing a black jacket. On the wall behind them, there is a blue display. On the right lower corner, there is a blue word \"CHINA DAILY\".", + "id": 32256 }, { - "image_path": "G:\\images\\combined\\003604_jpg.rf.0704357388bab2075af004e74c7d334d.jpg", - "response": "In the image, there is a construction site with a few workers. There are two cranes working in the background, one on the left and the other on the right. A yellow hard hat is placed on the ground in the foreground. A man is crouched down on the left side of the image, working on a project. In the far distance, there is a city skyline visible.", - "id": 1650 + "image_path": "G:\\images\\combined\\006167_jpg.rf.001c381ea07c53212bf51bb0110f4785.jpg", + "response": "A construction worker in a yellow hard hat and blue work jacket is using a tool to cut through a black pipe. Another worker in a brown jacket and blue jeans is bending over and holding the tool. They are both working on a construction site.", + "id": 32257 }, { - "image_path": "G:\\images\\combined\\003605_jpg.rf.d2470a6656991240f0862e81fa92d8ed.jpg", - "response": "a group of people walking across a mining site", - "id": 1651 + "image_path": "G:\\images\\combined\\006168_jpg.rf.605e77f484bfb8e2dbe1ea9d5435e7cb.jpg", + "response": "A man in a blue shirt and a red hard hat is holding a blueprint and talking to another man in a yellow hard hat. They are standing in front of a bulldozer.", + "id": 32258 }, { - "image_path": "G:\\images\\combined\\003607_jpg.rf.118875e410f4f4b82def3e6fca0b2687.jpg", - "response": "A group of men in front of a yellow and white construction site.", - "id": 1652 + "image_path": "G:\\images\\combined\\006169_jpg.rf.9be9a6f0423a0146df5924c3e690ec9e.jpg", + "response": "A couple of men working on an electrical tower.", + "id": 32259 }, { - "image_path": "G:\\images\\combined\\003609_jpg.rf.e2cc064f6d7b007a0ec810f77178ba69.jpg", - "response": "A man wearing a red hard hat and a white shirt is working on a construction site. He is holding a tool in his right hand and there is a green building under construction in the background.", - "id": 1653 + "image_path": "G:\\images\\combined\\006170_jpg.rf.78a9ed5035d4e0c3aa7c6b747ba52a2f.jpg", + "response": "A group of workers in blue and orange uniforms and hard hats are lined up on the side of a train track. They are working on the track.", + "id": 32260 }, { - "image_path": "G:\\images\\combined\\00360_jpg.rf.c0669b658b27a0078e65fc95cee03c1e.jpg", - "response": "In the image two men are wearing yellow helmets and reflective vests. They are both holding rolled up blueprints in front of a large stack of materials.", - "id": 1654 + "image_path": "G:\\images\\combined\\006171_jpg.rf.6d97b6b5f25bb88857bbf7b5a712bc36.jpg", + "response": "A group of people standing around talking.", + "id": 32261 }, { - "image_path": "G:\\images\\combined\\003610_jpg.rf.98fc33dedf3ab106623dfe8eafae4d56.jpg", - "response": "A man in a red shirt and orange hat is working on a power line.", - "id": 1655 + "image_path": "G:\\images\\combined\\006172_jpg.rf.93a7594efe07990cd70b679656fb3cac.jpg", + "response": "a group of people standing in front of a building under construction", + "id": 32262 }, { - "image_path": "G:\\images\\combined\\003612_jpg.rf.6b46fa03eff0df8b60a3e95e26e457b4.jpg", - "response": "The image shows a group of five men wearing hard hats and orange safety jackets standing in front of a white building with a sign on the wall. The sign has two parts, one says ' Danger' in black bold letters and the other part is a poster with more details. The men are standing in two groups, one group of three and another group of two. The man on the far right in the blue outfit is wearing a yellow hard hat. In the background, there is a fire hydrant.", - "id": 1656 + "image_path": "G:\\images\\combined\\006173_jpg.rf.ea8cdeb4814e0c25a9cd476cab34edbe.jpg", + "response": "The image shows a group of men standing in front of a construction site. They are all wearing suits and appear to be businesspeople. In the background, there is a large building under construction. The building has a lot of pillars and appears to be quite tall. There are also some cranes visible in the background. The sky is overcast and there are a few birds flying in the sky.", + "id": 32263 }, { - "image_path": "G:\\images\\combined\\003613_jpg.rf.e480b6ab9c113dab9d9ad80aa0fbfab2.jpg", - "response": "In the image two men are working on a battery. One man is on the left and he is wearing a grey shirt with a blue logo on the front, a black hat and glasses. He is holding a blue helmet and a small device with a light on it. The other man is on the right and he is wearing a red shirt with a yellow logo on the front, a yellow hat and glasses. He is holding black helmet and a black and grey cable. In front of the men is a grey battery with the word YUASA on it.", - "id": 1657 + "image_path": "G:\\images\\combined\\006174_jpg.rf.0bc96aada01b010d71d405c1c9741ed2.jpg", + "response": "The image shows three men standing in front of a factory. The man on the left is wearing a white lab coat, while the man in the middle is wearing a plaid shirt. The man on the right is wearing a black jacket and an orange safety vest. They are all wearing hard hats. The man in the middle and the man on the right are shaking hands.", + "id": 32264 }, { - "image_path": "G:\\images\\combined\\003615_jpg.rf.298b867ef2c3dc926fe14d625060f50a.jpg", - "response": "The photo shows men in white and pink shirts standing in two rows. In front of them is a table with several bottles on it. They are all standing in a room with a blue wall.", - "id": 1658 + "image_path": "G:\\images\\combined\\006176_jpg.rf.1d7fec4d46e7c5787ad2cb7ffd6c0637.jpg", + "response": "A worker in a blue shirt and hard hat is suspended in the air by a crane. He is working on a large blue sign that says \"\u4e2d\u91ab\u901f\u99a8\" on a building under construction. The building is made of glass and steel and has red and white barriers around it. The worker is standing on a red ladder and is hanging from a hook on the crane.", + "id": 32265 }, { - "image_path": "G:\\images\\combined\\003616_jpg.rf.8e352503bb911db5b0bbb82c5948eb95.jpg", - "response": "A man in a white shirt and red helmet is standing in the middle of a construction site with two other men. They are all wearing hard hats. In the background, there is a patch of blue sky and some greenery.", - "id": 1659 + "image_path": "G:\\images\\combined\\006177_jpg.rf.df985f1b0c03ee0b1ff3e82232698c32.jpg", + "response": "In the image there is a man wearing a hard hat and a yellow vest. He is standing in a large warehouse filled with boxes and shelves. The man is smiling and seems to be in a happy mood. He is standing between two tall shelves that are filled with boxes. Some of the boxes are stacked three high and there are many different sized boxes. The man is wearing blue jeans and has a watch on his left wrist. The background is a bit blurry but it seems to be a bright sunny day.", + "id": 32266 }, { - "image_path": "G:\\images\\combined\\003617_jpg.rf.79d41882beae40c60de935f4dd34dc54.jpg", - "response": "The image shows a room with a white ceiling and a shiny black table. There are several people standing around the table, dressed in business attire. Some of the people are wearing ties. There are chairs around the table, and a few bottles are placed on the table. In the background, there is a map hanging on the wall.", - "id": 1660 + "image_path": "G:\\images\\combined\\006178_jpg.rf.ff97754e9e0c0c3f834752da8556df1b.jpg", + "response": "A yellow and black wheel loader is parked next to a concrete archway. Two men in uniforms are standing next to the wheel loader. One of them is holding a large wrench.", + "id": 32267 }, { - "image_path": "G:\\images\\combined\\003618_jpg.rf.479c8737d3b018c352c7c127de236ecf.jpg", - "response": "A group of men sitting around a table in a room.", - "id": 1661 + "image_path": "G:\\images\\combined\\006179_jpg.rf.2c8ff31ba1c03b9ecb6889eddd01bcc3.jpg", + "response": "The image shows a group of rescue workers standing around a hole in the ground. The workers are wearing safety gear including hard hats, and some are wearing orange jumpsuits. They are standing on top of a dirt mound with a large rock visible in the hole. There are also two smaller rocks visible in the hole. The workers are engaged in the process of rescue, with some of them holding long sticks.", + "id": 32268 }, { - "image_path": "G:\\images\\combined\\003620_jpg.rf.e8392a88cacac326b6c0d2e98e78f9c4.jpg", - "response": "The image shows a group of people standing around a man who is laying on the ground. The man appears to be injured, as he is being attended to by several people around him. Some of these people are holding a large metal object, possibly a piece of debris from a building that has collapsed. The man is lying on the ground with his head near the yellow helmet of one of the people attending to him. The scene appears to be taking place in a construction area.", - "id": 1662 + "image_path": "G:\\images\\combined\\00617_jpg.rf.871b7a38c75efac9e9d70b1c68cdc23e.jpg", + "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cellphone, and one of them is showing it to the other. The background is out of focus, but it appears to be a large warehouse-like room with metal structures and machinery. There are also several hanging metal objects, possibly parts or components.", + "id": 32269 }, { - "image_path": "G:\\images\\combined\\003621_jpg.rf.f5082987681672a7c69ffd07d7759282.jpg", - "response": "A group of four men in hard hats stand on a unfinished walkway.", - "id": 1663 + "image_path": "G:\\images\\combined\\00617_jpg.rf.8f2cb550c0450d7302f2942e1c680e56.jpg", + "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cell phone, and one of them is showing it to the other. The background is a large industrial space with metal shelves and machinery.", + "id": 32270 }, { - "image_path": "G:\\images\\combined\\003622_jpg.rf.97f49b0d82ed4726a9908f1ade532701.jpg", - "response": "In the image two workers are seen repairing an electricity transformer. Both of them are wearing white clothes and blue color helmets. One of them is holding a tool in his right hand while the other one is on the ladder. Both of them are in white color clothes. There is a building near them and a crane is also visible in the image.", - "id": 1664 - }, - { - "image_path": "G:\\images\\combined\\003624_jpg.rf.0950268e33a006a7b7ff261650a3d025.jpg", - "response": "A man in a black jacket and black pants is pointing towards a large pile of dirt. Another man in a black jacket and pants is walking towards the first man. In the background, there are buildings.", - "id": 1665 + "image_path": "G:\\images\\combined\\006180_jpg.rf.e68a88431395cbfcd2c6f4e9dd62021e.jpg", + "response": "In the image, several construction workers are working on a construction site. A man is working at the bottom of a hole and several other workers are standing around him. Some of them are wearing orange and yellow suits, and one of them is wearing a helmet. On the left side of the image, there are several people in black and white clothes, some of them are standing and some are sitting. In the middle of the image, there is a large shovel, and several ropes are connected to it. On the right side of the image, there are some green plants and a white and black sign.", + "id": 32271 }, { - "image_path": "G:\\images\\combined\\003625_jpg.rf.cd6584230c1a22011e1b398889f90acd.jpg", - "response": "A group of men in green work clothes and hard hats are working on a mountain side. They are using shovels and working on a rock.", - "id": 1666 + "image_path": "G:\\images\\combined\\006181_jpg.rf.aa964cc056e0d058f3b60fdbe9a346c7.jpg", + "response": "a group of men standing next to a pile of dirt", + "id": 32272 }, { - "image_path": "G:\\images\\combined\\003626_jpg.rf.335127278a9b7edf7aaf1803db663f4e.jpg", - "response": "A group of three people in red work clothes and hard hats are looking into a large metal circular device. They are all focused on the task at hand.", - "id": 1667 + "image_path": "G:\\images\\combined\\006182_jpg.rf.2b0592eb116e78f224f682f72b1c006e.jpg", + "response": "The image shows a residential area with a building on the left and another on the right. In the middle of the scene, there is a large pile of rubble in front of a building. A power pole is leaning against this building, with several wires attached to it. A few workers can be seen in the scene, with one on the ground and two others on the power pole.", + "id": 32273 }, { - "image_path": "G:\\images\\combined\\003627_jpg.rf.ffa5571c32b6107e2dd7631c86df2ff4.jpg", - "response": "An electrician fixing an electrical panel.", - "id": 1668 + "image_path": "G:\\images\\combined\\006183_jpg.rf.e078dde5895e2ab076dbe6f62d25e06e.jpg", + "response": "The image shows a group of men standing on a cement area with a bridge in the background. There are five men in the foreground, dressed in business attire. One man is wearing a blue shirt and black pants, another man is wearing a white shirt and khaki pants, and the third man is wearing a white shirt and dark pants. The fourth man is wearing a white shirt and black pants, and the fifth man is wearing a white shirt and dark pants. The man on the far right is wearing a blue shirt, a blue hat, and dark pants.", + "id": 32274 }, { - "image_path": "G:\\images\\combined\\003628_jpg.rf.de6cd188aaf752662132601591dd6cdf.jpg", - "response": "In the image there are multiple people working on a construction site. They are all wearing orange helmets, some are wearing bright orange vests as well. On the ground, there are several metal pipes and tubes, some are arranged in a grid, and some are\u5f2f\u66f2\u6210\u5706\u5f27\u5f62\u72b6. There is a lot of dirt on the ground, and a couple of trees in the background. On the right bottom corner, there's a logo and some text, but only a small part of it is visible.", - "id": 1669 + "image_path": "G:\\images\\combined\\006184_jpg.rf.c6c473e93cdcb9c4452eaaf68bf4f797.jpg", + "response": "A man in blue coveralls is on a ladder, working on a house. He is standing on top of a large pile of tree branches.", + "id": 32275 }, { - "image_path": "G:\\images\\combined\\003629_jpg.rf.59dd833123f45e1c9346b4b51208511e.jpg", - "response": "A construction worker wearing a yellow hard hat and blue gloves is pouring concrete into a large tube.", - "id": 1670 + "image_path": "G:\\images\\combined\\00618561e219c7f8.jpg", + "response": "A shiny Christmas ornament hanging from a tree.", + "id": 32276 }, { - "image_path": "G:\\images\\combined\\00362_jpg.rf.ea6e9e5050aec4df8f7590c47dee9112.jpg", - "response": " Two men(191,82),(421,997)(469,221),(713,996) wearing hard hats(295,82),(416,252)(534,221),(628,368) and yellow vests(498,428),(712,838)(200,287),(395,797) standing on a construction site", - "id": 1671 + "image_path": "G:\\images\\combined\\006185_jpg.rf.fb5ef5342c78432ee2668fb56f989c4c.jpg", + "response": "A group of three men standing on a construction site looking at a blueprint.", + "id": 32277 }, { - "image_path": "G:\\images\\combined\\003631_jpg.rf.f7f6a2b6f21682839be49932a094c895.jpg", - "response": "A pair of workers stand on a ladder, one of them reaches up to the side of a brick wall with a long tool.", - "id": 1672 + "image_path": "G:\\images\\combined\\006186_jpg.rf.ddb75bd4c6f57f27e1a2f319cc6fbbcd.jpg", + "response": "A man in a hard hat and red overalls is using a piece of equipment to work on a ladder. He is wearing safety glasses and has a tool in his hand. There are other tools and equipment around him. The room he is in has a concrete floor and white walls. There is also a ladder leaning against a wall.", + "id": 32278 }, { - "image_path": "G:\\images\\combined\\003632_jpg.rf.fd3bcbfc9cf0c5f844f3d08341bff81d.jpg", - "response": "A group of people on a boat in the ocean.", - "id": 1673 + "image_path": "G:\\images\\combined\\006187_jpg.rf.6933c9ee3c54d360e9cf2ab7836a7b0c.jpg", + "response": "In the image, a worker is being carried away by workers after he was injured at a construction site in Xiamen, Fujian Province, China. The workers are using stretchers to carry the injured worker. The scene is quite chaotic, with several workers in the area, some carrying the injured worker, and others standing around. There are also several construction tools, such as shovels and a large bucket, scattered around the site. The sky above the site is overcast, and there are a few trees nearby.", + "id": 32279 }, { - "image_path": "G:\\images\\combined\\003633_jpg.rf.1b39410b808878472c1a8b99f0b61951.jpg", - "response": " Rescuers(508,313),(804,996)(287,236),(577,996) carry a rescued miner from a flooded coal mine in China's Henan province.", - "id": 1674 + "image_path": "G:\\images\\combined\\006188_jpg.rf.2ed16537013901d5daf807ee0a764121.jpg", + "response": "A group of men standing next to a pile of dirt.", + "id": 32280 }, { - "image_path": "G:\\images\\combined\\003634_jpg.rf.ffb992585b9ee6c1f6211ee0ddeaae09.jpg", - "response": "A group of workers are working on a building. The building is not yet fully constructed and is grey in color. There are four workers in total, each working at different levels of the building. One worker is on the second floor, one is on the third floor, one is on the fifth floor, and one is on the sixth floor. They are each wearing orange vests. There is also a yellow hard hat on the fifth floor. The workers are attached to the building through a suspended metal structure that also has a orange safety net. The net is attached to the building through a metal cable.", - "id": 1675 + "image_path": "G:\\images\\combined\\006189_jpg.rf.3fe68f697b0b91b6c747b2473857205b.jpg", + "response": "A painting of three men working on a railway.", + "id": 32281 }, { - "image_path": "G:\\images\\combined\\003635_jpg.rf.313141cb5dfcc2108b2ae83b20ded5ee.jpg", - "response": "A man is walking up a staircase that is surrounded by scaffolding. He is wearing a yellow hard hat and grey coveralls.", - "id": 1676 + "image_path": "G:\\images\\combined\\00618_jpg.rf.a4faff5f7fc19de9ec07411e21300427.jpg", + "response": "In the image there are two workers standing on a construction site wearing hard hats. One worker is wearing a grey top and the other is wearing a yellow top. They are both holding a piece of white material. The background shows the corner of a large building that has multiple floors and columns. There is a black fence in the foreground and the floor they are standing on is dark grey.", + "id": 32282 }, { - "image_path": "G:\\images\\combined\\003636_jpg.rf.fe33397ccec2de0918a38fc899beade5.jpg", - "response": "a group of men(376,388),(536,758)(547,376),(754,805)(2,289),(338,998)(257,367),(390,910) in hard hats(124,289),(283,373)(548,386),(624,435)(630,375),(718,428) standing in a construction site", - "id": 1677 + "image_path": "G:\\images\\combined\\00618_jpg.rf.fcb235b044a40cff72825fa53647c236.jpg", + "response": "In the image there are two workers, one on the left and one on the right, both are wearing yellow helmets. They are standing on a construction site wearing blue and yellow clothes. The ground is covered with black plastic and there are many steel bars sticking out of it. On the left side of the image, there is a white ladder and a black bag. In the background, you can see a building with several walls built but no roof.", + "id": 32283 }, { - "image_path": "G:\\images\\combined\\003637_jpg.rf.dff0e28188332665ac4b74cb59dfba1c.jpg", - "response": "A group of people working on a construction site.", - "id": 1678 + "image_path": "G:\\images\\combined\\006190_jpg.rf.c62110eff55ceb7e80d5bb5f78a4a9aa.jpg", + "response": "A man wearing a blue shirt and a orange helmet is welding a large boat. The boat is rusty and is being worked on next to a stone wall. The man is standing on a small dock and is holding a welding torch. Another man is standing on the wall above him, and there is a third man standing further back near the wall. The sky is blue and cloudless.", + "id": 32284 }, { - "image_path": "G:\\images\\combined\\003639_jpg.rf.504e97edba7470e98e4b0a1b633c22b7.jpg", - "response": "A group of men standing on top of a building working on a transformer at night.", - "id": 1679 + "image_path": "G:\\images\\combined\\006191_jpg.rf.32be112f5cecddb0bf35cf08daafd81a.jpg", + "response": "A man in a white shirt and tan hat is sitting on a power line, hanging from a tower. He is wearing a black and yellow jacket and tan pants. Another man in a brown jacket and tan hat is standing on the ground holding the first man's harness.", + "id": 32285 }, { - "image_path": "G:\\images\\combined\\003640_jpg.rf.52a77eda361cbb6f9cad3ffeeadaa455.jpg", - "response": "A train on a track with three people in orange vests working on the top of a yellow train car.", - "id": 1680 + "image_path": "G:\\images\\combined\\006193_jpg.rf.590f7d76b1532989d033bc8c6b3dec88.jpg", + "response": "The image shows a group of workers at a construction site for a railway. They are working on a bridge that is under construction. The bridge is located in a rural area with a forest in the background. The workers are standing on the side of the bridge, which is made of concrete. They are working on the bridge's railings. In the foreground, there is a pile of cinder blocks next to the railway tracks.", + "id": 32286 }, { - "image_path": "G:\\images\\combined\\003641_jpg.rf.6119660964ca9f5871626a5f14c140c7.jpg", - "response": "In the image there are three construction workers at a building site. One worker is in the center of the image, he is a white man wearing a yellow vest and a white hard hat. He is holding a long aluminum rod and looking up. Another worker is on the left side of the image, he is a black man wearing a yellow vest and a white hard hat. He is holding a long aluminum rod as well and looking up. The third worker is on the right side of the image, he is a blonde haired man wearing a yellow vest and a yellow hard hat. He is holding a long aluminum rod as well and looking up.", - "id": 1681 + "image_path": "G:\\images\\combined\\006194_jpg.rf.73573ccaa13753d05fae9c925f9da0e9.jpg", + "response": "A group of men wearing hard hats are walking together. Some of them are wearing suits and ties. One man is wearing a red hard hat. In the background, there is a building with a blue roof.", + "id": 32287 }, { - "image_path": "G:\\images\\combined\\003643_jpg.rf.9d115ea67cf2803fafb8768e13b8861b.jpg", - "response": "The picture is in black and white. Five people are in the picture. Three of them are wearing hard hats. One man is showing something to another man. They are both in uniform. Another man is wearing a white helmet. He is looking at the thing the two men are looking at. The last man is wearing a white helmet and a white hard hat. He is wearing a black jacket and a backpack. He is looking up at the other four men.", - "id": 1682 + "image_path": "G:\\images\\combined\\006195_jpg.rf.9e5b058ec134b32012ac331d1b240331.jpg", + "response": "A worker wearing a red helmet and blue uniform is welding in a factory. There is a red helmet and a blue uniform lying on the floor next to the worker. A chair is placed in the background. The worker is creating a lot of light and sparks are flying in all directions.", + "id": 32288 }, { - "image_path": "G:\\images\\combined\\003644_jpg.rf.1c03d2aa8b7ae9ac6d61a49e6e254268.jpg", - "response": "A group of men standing around each other wearing hard hats.", - "id": 1683 + "image_path": "G:\\images\\combined\\006196_jpg.rf.d47319892a27017dd48adb80b20c2d62.jpg", + "response": "The image shows two men working on a construction site in the process of drilling a hole in the ground. They are wearing hard hats and the man on the right is wearing a black shirt. There are several pipes and wires on the ground in front of them and a red and white bag to the left of the men. The background shows a patch of dirt and some rocks.", + "id": 32289 }, { - "image_path": "G:\\images\\combined\\003645_jpg.rf.7a2655df63e43f0f630016fa7aa3bd82.jpg", - "response": "The image shows a group of people standing around a construction site. There are several men wearing hard hats and coats, and one man is wearing a black coat and a blue hat. A large machine is in the background, and there are some rocks on the ground. In the distance, there are also several cars parked.", - "id": 1684 + "image_path": "G:\\images\\combined\\00619_jpg.rf.7e8131778c4c91078552cf8dd437dc51.jpg", + "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and is looking towards a new housing development.", + "id": 32290 }, { - "image_path": "G:\\images\\combined\\003646_jpg.rf.47cccf7b4191c4aa173374311d46299b.jpg", - "response": "A group of men walking across a construction site.", - "id": 1685 + "image_path": "G:\\images\\combined\\00619_jpg.rf.9939998a9ed179c2dd8c24c2947fde81.jpg", + "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and appears to be measuring something with a piece of surveying equipment.", + "id": 32291 }, { - "image_path": "G:\\images\\combined\\003647_jpg.rf.77f4d370a61577385791d3502f957a05.jpg", - "response": "A worker is standing on a yellow vehicle while fixing a power line.", - "id": 1686 + "image_path": "G:\\images\\combined\\0061dd442c6d9467.jpg", + "response": "A baseball player for the Blue Jays runs across the field.", + "id": 32292 }, { - "image_path": "G:\\images\\combined\\003651_jpg.rf.327d5979faa6f8cc5411e5536a0c4324.jpg", - "response": "In the image, there is a construction site with multiple workers. One worker is in the foreground, wearing a green jumpsuit and a yellow hard hat. They are working on a construction project that involves building a large structure out of steel rebar. The rebar is being built in a cage-like structure and is attached to a blue steel beam. The workers are wearing yellow hard hats and are focused on their tasks. In the background, there is a blue staircase and a pile of steel rods.", - "id": 1687 + "image_path": "G:\\images\\combined\\006201_jpg.rf.0ca83c3f1c43b9bd625e28ce79305a1c.jpg", + "response": " Two miners(646,207),(810,971)(502,162),(675,997) standing in a mine shaft", + "id": 32293 }, { - "image_path": "G:\\images\\combined\\003654_jpg.rf.80e7b77d03f04233816171b20fe919db.jpg", - "response": "The image shows a construction site where several workers are busy. In the center of the scene, three workers are wearing yellow helmets and are working on a red brick wall. They are surrounded by a large number of steel bars, steel plates, and other construction materials. Some workers are also wearing red and yellow safety belts. In the upper left corner of the image, a worker is holding a blue umbrella, and another worker is sitting on the ground with his back to the camera. The entire scene is surrounded by a large number of steel rebar, making the site look like a complex network.", - "id": 1688 + "image_path": "G:\\images\\combined\\006202_jpg.rf.bec5da28029fff50d6bb1f0f67f355e9.jpg", + "response": "In the image two men are working on a roof. They are wearing hard hats and work clothes. The roof is brown and made of wood.", + "id": 32294 }, { - "image_path": "G:\\images\\combined\\003655_jpg.rf.9543a88be1e0b9bccc6178e7431a5a38.jpg", - "response": "A group of workers wearing yellow hard hats are working on a construction site. They are all bent over, some of them are standing on wooden planks and the others are working on a concrete wall. There are several pieces of wood and a metal rod visible in the image. The workers are all focused on their tasks.", - "id": 1689 + "image_path": "G:\\images\\combined\\006203_jpg.rf.64ae7b827bc3adda82e34b6e5965ba36.jpg", + "response": "A man wearing a white helmet and a green vest is kneeling down next to solar panels. He is holding a digital tablet and checking the solar panels. The solar panels are blue and are installed on a roof. The sky is a clear blue with no clouds.", + "id": 32295 }, { - "image_path": "G:\\images\\combined\\003657_jpg.rf.22490d4794194f5a5ea95e8920ce040f.jpg", - "response": "A group of men in blue hard hats looking at a blueprint.", - "id": 1690 + "image_path": "G:\\images\\combined\\006204_jpg.rf.67b313bc22f7c9cc621a295427bea9ff.jpg", + "response": "A construction site with a yellow crane and a yellow truck.", + "id": 32296 }, { - "image_path": "G:\\images\\combined\\003658_jpg.rf.89036ed0be3b1eb452477a09dfa3140e.jpg", - "response": "A cement truck is parked on the street next to a group of men. The men are working on a construction site that has a large amount of concrete being poured. The concrete is being poured into place and is still liquid. The workers are standing on the wet concrete and are using long tools to level it out.", - "id": 1691 + "image_path": "G:\\images\\combined\\006206_jpg.rf.4471e596888d40457bc36e6768f767a2.jpg", + "response": "A group of workers wearing hard hats are working on a construction site.", + "id": 32297 }, { - "image_path": "G:\\images\\combined\\003659_jpg.rf.4d86de99ea47fc54c85dfa29f601f54a.jpg", - "response": "An architect and a construction worker looking at blueprints in front of a construction site.", - "id": 1692 + "image_path": "G:\\images\\combined\\006207_jpg.rf.d90d8283f31209c03bb67f69d886257c.jpg", + "response": "A collage of two images, one of two construction workers looking at scaffolding and one of three hard hats on a table.", + "id": 32298 }, { - "image_path": "G:\\images\\combined\\003660_jpg.rf.0dd1d972b6f8ceeb382805c16e4539e5.jpg", - "response": "The image shows two workers in blue shirts and blue hats, working on a power line. They are standing in front of a building and there are other workers in the background. The sky is blue and there are trees in the background.", - "id": 1693 + "image_path": "G:\\images\\combined\\006209_jpg.rf.8388fa7b75e3ffb5c0cfa9f796d4cb44.jpg", + "response": "In the image there is a construction site with multiple workers. The workers are wearing yellow helmets and are working on a building that has not yet been finished. They are working on a concrete structure and some of them are connected to wires that are likely for electric power. There is a bottle on the ground and a person in the background is holding a cellphone.", + "id": 32299 }, { - "image_path": "G:\\images\\combined\\003661_jpg.rf.136fc23f74196da1ba2f8dd38eb03332.jpg", - "response": "A group of men standing around a construction site", - "id": 1694 + "image_path": "G:\\images\\combined\\00620_jpg.rf.ec09ed5a3b22f47784cc95fffd72527c.jpg", + "response": "The image depicts two men wearing yellow and white hard hats, looking at a blueprint in front of a construction site. The blueprint they are examining is rolled up and appears to be focused on a building under construction. The two men are standing together, with one on the left and the other on the right, both appear to be discussing the plans. The left most man has his left hand on the blueprint while the right most man has his right hand on top of the left most man's left hand. The background shows a partially constructed building with scaffolding in place.", + "id": 32300 }, { - "image_path": "G:\\images\\combined\\003662_jpg.rf.9e5b1aabb5ec1ceb404c7910ffea9f5f.jpg", - "response": "A group of men in green and white uniforms are standing in a room. Some of them are wearing ties. One man is wearing a white shirt and grey pants. Another man is wearing a white shirt and black pants. One man is wearing a white shirt and grey shorts. One man is wearing a white shirt and grey pants. One man is wearing a white shirt and grey shorts. One man is wearing a white shirt and grey pants.", - "id": 1695 + "image_path": "G:\\images\\combined\\006210_jpg.rf.9f5f4cc2f06cbe0987d9b9705c516bd8.jpg", + "response": "The image shows two workers inside a large pipe. They are wearing hard hats and one of them is holding a smartphone. The pipe is dark and the workers are reflected in its shiny surface. The background is blurred and the pipe appears to be going off into the distance.", + "id": 32301 }, { - "image_path": "G:\\images\\combined\\003663_jpg.rf.400197f26f69666a691bf7467b402751.jpg", - "response": "a group of men in suits and hard hats", - "id": 1696 + "image_path": "G:\\images\\combined\\006211_jpg.rf.600434c146a97a0be5aaf4e159d570fe.jpg", + "response": "A group of workers in a large warehouse.", + "id": 32302 }, { - "image_path": "G:\\images\\combined\\003664_jpg.rf.5b8940510e374ab51c3e4b40a684b17c.jpg", - "response": "A window washer suspended from ropes on the outside of a skyscraper.", - "id": 1697 + "image_path": "G:\\images\\combined\\006212_jpg.rf.efb035c35008ba7a4bb2632a9a9d9369.jpg", + "response": "5 people standing in a construction site(23,135),(909,830)", + "id": 32303 }, { - "image_path": "G:\\images\\combined\\003665_jpg.rf.a600e1994d665b019ae2036bd44a8cba.jpg", - "response": "In the image, there are several workers in yellow and orange vests standing on a mountain road. They are working together to remove debris and restore the road after a mountain slide. The workers are wearing helmets for safety. In the background, there are several cars parked on the right side of the road. The workers are using shovels and other tools to clear the debris.", - "id": 1698 + "image_path": "G:\\images\\combined\\006213_jpg.rf.67a542251da19434fc6335d155b72492.jpg", + "response": "A man wearing a yellow hard hat and orange safety vest is driving a forklift.", + "id": 32304 }, { - "image_path": "G:\\images\\combined\\003667_jpg.rf.40f5b1513dbd52e71729fb9e2e723ed5.jpg", - "response": "A man and a woman are standing outdoors, looking at a blueprint. The man is wearing a yellow hard hat and looking at the woman, who is holding the blueprint. They are both standing in front of a white cloud in a blue sky.", - "id": 1699 + "image_path": "G:\\images\\combined\\006214_jpg.rf.7d665eeb5123bb2c07490a38b8624c30.jpg", + "response": "A group of men standing around each other", + "id": 32305 }, { - "image_path": "G:\\images\\combined\\003668_jpg.rf.e6f94623fb06fdd5c44851a1b61eb8bf.jpg", - "response": "A group of men standing in a doorway.", - "id": 1700 + "image_path": "G:\\images\\combined\\006215_jpg.rf.ee8012af21a52885afda48e04a9c896e.jpg", + "response": "In the image, there are several construction workers wearing orange work uniforms and safety helmets. They are working on a construction site that has wooden scaffolding and wooden roof trusses. The sky is blue with few clouds.", + "id": 32306 }, { - "image_path": "G:\\images\\combined\\003670_jpg.rf.b01c301ffffc4ccb7416567ed71105b8.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 1701 + "image_path": "G:\\images\\combined\\006216_jpg.rf.6607f0f46734acdac03cecc2f4c0d582.jpg", + "response": "A group of people working on a construction site.", + "id": 32307 }, { - "image_path": "G:\\images\\combined\\003671_jpg.rf.3c74e724efca0e53c324bb27d4ee926e.jpg", - "response": "In the image there is a large excavator or drilling machine with a large bucket at the front, a caterpillar track at the bottom and a long, vertical post sticking out of the ground beside it. The excavator is located in the desert, in front of a sand dune. In the background, to the left, there is a man wearing a yellow hard hat and orange vest, walking towards the excavator.", - "id": 1702 + "image_path": "G:\\images\\combined\\006217_jpg.rf.1292234fa32a18bc00c32191940f1168.jpg", + "response": "The image shows two workers in blue work uniforms and green safety vests, with one worker wearing a helmet and the other one not. They are working on a large white pipe with black insulation and red wires connected to it, in front of a blue sky and power transmission tower.", + "id": 32308 }, { - "image_path": "G:\\images\\combined\\003673_jpg.rf.a3227b6dc47c09feb7ce7aaaca17205d.jpg", - "response": "An older man and a younger man in blue work clothes, the older man is wearing a yellow hard hat and the younger man is pointing at something. They are both smiling at the camera. In the background there is a forklift.", - "id": 1703 + "image_path": "G:\\images\\combined\\006218_jpg.rf.6aea02bcd54b1e833593b81dfc0a9a52.jpg", + "response": "The image shows Kim Jong-un, the leader of North Korea, in a bedroom. He is wearing a black suit and is crouched over a bed, which has a pink and brown floral patterned sheet. The bed has a wooden frame with a red headboard. To the left of the bed is a wooden chair. To the right of the bed is a wooden dresser with a door. The room is sparsely furnished, with no other chairs or furniture visible in the image. The walls are white, and the floor is grey.", + "id": 32309 }, { - "image_path": "G:\\images\\combined\\003674_jpg.rf.0d1add84f3c5151a9241f4f53078a1a0.jpg", - "response": "A group of people standing around each other.", - "id": 1704 + "image_path": "G:\\images\\combined\\006219_jpg.rf.f0ccdca47ae546458d23d851ba143841.jpg", + "response": "In the image there are two men standing next to a white truck. Both men are wearing hard hats and blue coveralls. One man is leaning against the passenger side door of the truck while the other is standing behind him. They both appear to be looking at something in the distance.", + "id": 32310 }, { - "image_path": "G:\\images\\combined\\003675_jpg.rf.38b78d09d3d6700ff80117aa849012c6.jpg", - "response": "The image shows two men in a room with a large machine. The men are standing on the left side of the image, both wearing white shirts and hats. They are both looking at the large machine, which is on the right side of the image. The machine has many pipes and valves of different sizes. Some of the pipes are silver and shiny, while others are black and dull. The machine also has a control panel with many buttons and switches. The control panel is white and has a small screen. The men are standing close to the control panel, with one of them holding a clipboard.", - "id": 1705 + "image_path": "G:\\images\\combined\\006220_jpg.rf.583b3262e20ef766309a5746df7d0bdf.jpg", + "response": "A group of three men working on a road.", + "id": 32311 }, { - "image_path": "G:\\images\\combined\\003678_jpg.rf.48c1bf3aca49f083cdb6a8c6e4467235.jpg", - "response": "A group of three workers are working on a building. They are on scaffolding, one is on a ladder and two are on the scaffolding. They are all wearing yellow and grey construction gear.", - "id": 1706 + "image_path": "G:\\images\\combined\\006222_jpg.rf.028acb3136429e25d3704de5aef681e2.jpg", + "response": "A man in a red hard hat is showing a group of people a wall.", + "id": 32312 }, { - "image_path": "G:\\images\\combined\\003679d4dc2e6856.jpg", - "response": "A baseball game is being played on a grass and dirt field. Players are wearing white uniforms and one player is holding a bat.", - "id": 1707 + "image_path": "G:\\images\\combined\\006223_jpg.rf.b22191e1bcbff6fce6d15166f9f9f024.jpg", + "response": "In the image there is a person wearing a blue uniform and a red helmet. They are standing in front of a wall with many dials and meters. The wall has a control panel with many different meters and dials of varying sizes. Some of the meters are round and have a white face and black numbers. Others are circular and have a white face with black markings. The person is reaching out to turn one of the dials on the wall.", + "id": 32313 }, { - "image_path": "G:\\images\\combined\\003679_jpg.rf.a07afb6936c89e0fc5f3827e637fdc7a.jpg", - "response": "A man(329,4),(893,684) is in a pit of water", - "id": 1708 + "image_path": "G:\\images\\combined\\006224_jpg.rf.5de18dc94ced526d59a94237520642bc.jpg", + "response": "A group of men in suits and hard hats are standing in a construction site. Some of the men are wearing ties. One man is carrying a black bag. The sky is blue and clear. There are two signs on the left and right side of the image. One of the signs is for China National Offshore Oil Corporation.", + "id": 32314 }, { - "image_path": "G:\\images\\combined\\003680_jpg.rf.a26194cbb35089f4931f27f9fd98bfb9.jpg", - "response": "A man in a suit and tie standing in front of a building under construction.", - "id": 1709 + "image_path": "G:\\images\\combined\\006225_jpg.rf.05ae09004f845b2dd050a53d3abfa0c1.jpg", + "response": "A man in a yellow hard hat and work clothes is kneeling in rubble. He is wearing work gloves and using a tool to cut through rebar. In the background, a yellow Caterpillar tractor is digging through the rubble. There are buildings in the distance, and a few trees in the foreground.", + "id": 32315 }, { - "image_path": "G:\\images\\combined\\003681_jpg.rf.6f9a15e843d609fce8608518c7e9b5b1.jpg", - "response": "A group of people sitting around a table.", - "id": 1710 + "image_path": "G:\\images\\combined\\006226_jpg.rf.41748d8beae264caa19f604b2f458fbd.jpg", + "response": "A man wearing a yellow hard hat is working on a construction site. He is standing on a ladder and is in the process of sawing a long piece of wood. He is wearing a red shirt and blue shorts. There is a green building under construction in the background.", + "id": 32316 }, { - "image_path": "G:\\images\\combined\\003682_jpg.rf.886b1789981f1d8d8e6aa19c74f6204f.jpg", - "response": "A blue train pulling into a mountain side tunnel.", - "id": 1711 + "image_path": "G:\\images\\combined\\006227_jpg.rf.0fca3e73ad9566d163ac875b8b2386fe.jpg", + "response": "A man wearing a grey shirt, blue hat and orange gloves is working with a torch and some metal. He is sitting on a stool and the torch is on the ground in front of him. There are many metal objects stacked up behind him and sparks are flying from the torch.", + "id": 32317 }, { - "image_path": "G:\\images\\combined\\003683_jpg.rf.ea2c64da9ec1b2e943ce862b8e0bace2.jpg", - "response": "An electrician wearing a blue hard hat is working on some wires in a field. He is holding a tool in his right hand and a wire in his left hand. Another electrician is in the background, wearing a blue hard hat and holding a tool. They are both in the middle of a green field.", - "id": 1712 + "image_path": "G:\\images\\combined\\006228_jpg.rf.069e6869b863cabc63fe31df2af20ab6.jpg", + "response": "The image shows a group of people standing in a large hole in the ground. Some of them are wearing hard hats. In the background, a wall is visible. In front of the group of people, a large piece of wood is lying on the ground. To the left of the group, a large piece of metal is also lying on the ground.", + "id": 32318 }, { - "image_path": "G:\\images\\combined\\003684_jpg.rf.f6881e5ae5ee671d328a728081e0a92f.jpg", - "response": "The image shows three construction workers working on a project. They are all wearing hard hats and are focused on their task. In the foreground, a man is pouring concrete into a wooden form while another man looks on. A third man is kneeling down and working on something else. In the background, a cement truck is visible.", - "id": 1713 + "image_path": "G:\\images\\combined\\006229_jpg.rf.2058c36964ebc73b31d5ac04f8489ca5.jpg", + "response": "The image shows two workers in orange hard hats and blue uniforms, climbing on a metal structure. They are both holding onto the structure and appear to be in the process of installing or fixing something. The metal structure is silver and appears to be a part of a power line or transmission tower. In the background, there is a lush green hillside and a small town or city.", + "id": 32319 }, { - "image_path": "G:\\images\\combined\\003686_jpg.rf.10e9a27ac0ea3709d6ee51b52d0703ac.jpg", - "response": "The image shows a group of three men standing in a pile of rubble. The man in the center is wearing a white hard hat, a blue shirt, and gray pants. The man on the left is wearing a white shirt with black stripes, a black backpack, and dark gray pants. The man on the right is wearing a white shirt with a black logo on the left chest, dark gray pants, and a blue backpack. They all appear to be looking at something in the rubble.", - "id": 1714 + "image_path": "G:\\images\\combined\\00622_jpg.rf.5374c1326bf09e4ef3ba12fae4bb09e5.jpg", + "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", + "id": 32320 }, { - "image_path": "G:\\images\\combined\\003687_jpg.rf.78993238b6b27e35aef7ede85f1c160d.jpg", - "response": "A man wearing a white hard hat and an orange safety vest looking at blueprints on a table. The man is wearing a watch on his left wrist and a white hard hat on his head. He is bent over the table with his hands on the table. There is a yellow tape measure on the table and a white hard hat next to it. The man is standing in a room that is under construction. There are wooden beams in the background and a wall that is only partially framed in.", - "id": 1715 + "image_path": "G:\\images\\combined\\00622_jpg.rf.658bd11258e1e48893e2c119bf214a40.jpg", + "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", + "id": 32321 }, { - "image_path": "G:\\images\\combined\\003688_jpg.rf.bd984fb9c9dcc71d19c5212cd3ae4e94.jpg", - "response": "In the image two technicians are working on a power box. One is holding a flashlight and the other a multi meter. They are wearing blue helmets and white shirts.", - "id": 1716 + "image_path": "G:\\images\\combined\\006230_jpg.rf.64e8006fea60d180110c8339e9df6b0b.jpg", + "response": " Three people(172,89),(447,996)(547,0),(803,999)(409,116),(613,999) in hard hats(289,93),(432,209)(432,115),(537,193) stand on a ship", + "id": 32322 }, { - "image_path": "G:\\images\\combined\\003690_jpg.rf.a75d341d4483903a7010d0cc10a90baf.jpg", - "response": "A man in a dark coal mine is using a pick axe to chip away at a large rock.", - "id": 1717 + "image_path": "G:\\images\\combined\\006231_jpg.rf.0f31e5604e5711347d30302caa0aadd5.jpg", + "response": "A group of people working on a large pipe in the ground.", + "id": 32323 }, { - "image_path": "G:\\images\\combined\\003691_jpg.rf.55d64e650708cce29672d953c4507e40.jpg", - "response": "In the image there is a man wearing a blue helmet and a green shirt, he is working on a construction site. The site is in an alleyway between two buildings. There is a wheelbarrow on the left side of the image and a pile of grey stones on the ground. The stones are scattered around the man and the wheelbarrow. The ground is wet in this area.", - "id": 1718 + "image_path": "G:\\images\\combined\\006232_jpg.rf.359307445c71bcce7d33b2ae15f549b3.jpg", + "response": "A man wearing a yellow hard hat and a yellow safety vest stands in front of a forklift. The man has his arms crossed in front of him.", + "id": 32324 }, { - "image_path": "G:\\images\\combined\\003692_jpg.rf.84ccb7ed91d28a121d9af34f69570a11.jpg", - "response": "In the image, a worker is welding a large anchor chain in a warehouse. The worker is wearing a red helmet and protective glasses. They are squatting down and holding a welding tool in their right hand. The chain is on the ground and the worker is working on a section of it that is lying horizontally in front of them. The chain is made of iron and is in various shades of brown. It is scattered across the floor of the warehouse.", - "id": 1719 + "image_path": "G:\\images\\combined\\006234_jpg.rf.ae7da6e4f2c54d8c097e42f9bb520f90.jpg", + "response": "An engineer holding a blueprint in front of a construction site.", + "id": 32325 }, { - "image_path": "G:\\images\\combined\\003693_jpg.rf.de7bfd8713b1e7d171a388a43ffc7664.jpg", - "response": "The image shows a construction site with several construction workers visible. There are three excavators present, one on the left, one in the middle, and one on the right. A large yellow one is visible towards the left side of the image. There is a brown one towards the right side of the image. In total, there are nine construction workers visible. Seven of them are wearing yellow hard hats and are working on the site. Two workers are visible towards the left side of the image, and the other two are visible towards the right side of the image. The workers are engaged in various tasks, such as working with metal rods and using shovels.", - "id": 1720 + "image_path": "G:\\images\\combined\\006235_jpg.rf.a776030b6b96219423884fd87e95c299.jpg", + "response": "A man having his helmet adjusted by another man in front of a construction site sign.", + "id": 32326 }, { - "image_path": "G:\\images\\combined\\003694_jpg.rf.66f886b8bcfb85cf65be88ddceee0359.jpg", - "response": "The image shows an electrician wearing a red uniform and a blue helmet. The electrician is working on some wires and equipment, with a flashlight shining on the wires. The electrician is also holding a screwdriver. The background shows another person wearing a red shirt and a blue cap, with their back to the camera. There is also a wall-mounted white box containing wires and switches. The electrician is working on this box as well.", - "id": 1721 + "image_path": "G:\\images\\combined\\006236_jpg.rf.577ab39e72d744a2a074610beafc6b38.jpg", + "response": "The image shows two workers clearing snow from a path next to a snowy hillside. They are wearing hard hats and work clothes. One worker is on the left, holding a rope while the other is on the right, walking away. In the background, there are several trees covered in hoarfrost. To the right, there is a small building with a door and two windows. In the distance, there are two power poles.", + "id": 32327 }, { - "image_path": "G:\\images\\combined\\003695_jpg.rf.e7237b1b4abb54f34900a19d9a3a4d45.jpg", - "response": "A man wearing a hard hat and holding a set of blueprints, standing in front of a building under construction.", - "id": 1722 + "image_path": "G:\\images\\combined\\006237_jpg.rf.dc9e5ad103399bb55e4527a83af07653.jpg", + "response": "A construction worker in a white helmet stands in front of a section of blacktopped road. To the left of the worker is a yellow construction vehicle with a black wheel. To the right of the worker is a stand of trees.", + "id": 32328 }, { - "image_path": "G:\\images\\combined\\003696_jpg.rf.5e9b1fb5409d74059506f5dd35aacdbd.jpg", - "response": "Three men(363,236),(487,520)(35,285),(139,629)(450,207),(593,417) standing on a stone bridge(2,287),(996,998)", - "id": 1723 + "image_path": "G:\\images\\combined\\006238_jpg.rf.42e009ce4bde3e2cbadbd5a5087758af.jpg", + "response": "A worker in a red hard hat smiles as he works on a construction site. He is wearing a grey shirt and has a tool in his left hand. He is working on some metal bars that are in front of him and some are in the background. The sky is grey and overcast.", + "id": 32329 }, { - "image_path": "G:\\images\\combined\\003697_jpg.rf.ee17919a8fc41655ec082158d71b6381.jpg", - "response": "A construction site with two workers in yellow and blue uniforms and yellow helmets. They are working on a piece of metal scaffolding.", - "id": 1724 + "image_path": "G:\\images\\combined\\006239_jpg.rf.161223804ef023d687f2546764895908.jpg", + "response": "A man wearing a white hard hat and an orange safety vest is smiling at the camera. He is standing in front of a large stack of wooden planks.", + "id": 32330 }, { - "image_path": "G:\\images\\combined\\003698_jpg.rf.2a336065d097ae5533e7e35c9f18a15e.jpg", - "response": "In the image there are two workers wearing yellow and green jackets and red and yellow hard hats. They are working on a construction site that has a large concrete structure with many metal bars and rebar. They are standing on a ladder and using a long tool to make adjustments to the metal bars.", - "id": 1725 + "image_path": "G:\\images\\combined\\00623_jpg.rf.3199245b9f3c7c1bed2aa05cb6fb2983.jpg", + "response": "A man in a white shirt and red helmet is pointing to a blue and white sign on a pole. He is wearing a watch on his left wrist. To the left of him are four other men, all wearing hard hats. One man is wearing a white shirt and grey shorts, another man is wearing a white shirt and grey pants, the third man is wearing a white shirt and black pants, and the fourth man is wearing a white shirt and blue pants.", + "id": 32331 }, { - "image_path": "G:\\images\\combined\\003699_jpg.rf.e3a793d9174ac139c49c656c27110d39.jpg", - "response": "A group of workers are standing on a snowy mountain top. They are all wearing hard hats and are eating lunch.", - "id": 1726 + "image_path": "G:\\images\\combined\\00623_jpg.rf.6cb005e2d39c6f28ea1d98cb76893ccc.jpg", + "response": "A man in a white shirt and red helmet is pointing to a piece of metal. He is wearing a white shirt and standing in front of a group of men in the same outfit. They are all standing under a large white structure and the man in the foreground is holding a white object. They are all wearing name tags.", + "id": 32332 }, { - "image_path": "G:\\images\\combined\\0036b3607d3b7358.jpg", - "response": "A bottle of Marston's Oyster Stout sits on a wooden table next to a plastic bottle of water. The Oyster Stout bottle has a gold and white label.", - "id": 1727 + "image_path": "G:\\images\\combined\\006241_jpg.rf.8621c69b7f43816326054e36809d507f.jpg", + "response": "In the image there is a worker wearing a black hat and orange jacket who is on a silver pole. The worker is also wearing a harness. Underneath the worker, there is a black wire leading to a black helmet. Next to the worker, there is a red crane lifting a metal beam. The sky is blue with some clouds. On the right side of the image, there are two grey metal bars connected by a black wire leading to the worker.", + "id": 32333 }, { - "image_path": "G:\\images\\combined\\003700_jpg.rf.92eded73dfb46066a14491a43a9b1755.jpg", - "response": "A construction worker wearing a yellow hard hat is standing on a ladder.", - "id": 1728 + "image_path": "G:\\images\\combined\\006242_jpg.rf.0bd7a66dd368e909bbe606f86182237e.jpg", + "response": "The image shows a construction site with several workers. There is a large drilling machine in the foreground, and a man with a yellow hard hat is operating it. Another man with a yellow hard hat is standing nearby. There is a pile of wooden boards to the left of the drilling machine. In the background, there is a white building with a red door and a window. There is a black fence in front of the building. To the right of the building, there is a pile of grey rocks. The workers are wearing red and yellow hard hats, and they are wearing red and white shirts. The ground is dirt and there are two shovels lying on the ground.", + "id": 32334 }, { - "image_path": "G:\\images\\combined\\003702_jpg.rf.994a85efa305cccf17d56d26e0b0327f.jpg", - "response": "A group of workers(523,368),(740,865)(428,396),(557,893) are using a long tool(488,620),(978,808) to chip away at the side of a building.", - "id": 1729 + "image_path": "G:\\images\\combined\\006245_jpg.rf.b2dce8eb83509ad0efd6b2d492009835.jpg", + "response": "A smiling worker standing with his arms crossed in a warehouse.", + "id": 32335 }, { - "image_path": "G:\\images\\combined\\003703_jpg.rf.89bcc8c141854b0b655304ee100893a5.jpg", - "response": "A man in a blue uniform and climbing gear is hanging from a telephone pole, repairing wires.", - "id": 1730 + "image_path": "G:\\images\\combined\\006246_jpg.rf.d7d1e358db235035484e79cae7a411c1.jpg", + "response": "In the image there are three men working on a gas tank. Two of the men are wearing yellow hats and the other one is wearing a red hat. They are all wearing blue work clothes. One of the men is holding a blue rope while the other one is holding a red one. They are all working on a gas tank that is situated in the middle of a sidewalk. The tank is made of metal and is in the shape of a large cylinder.", + "id": 32336 }, { - "image_path": "G:\\images\\combined\\003704_jpg.rf.2dc808e5a53374bb8626012033128bd5.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt holding a large wooden stick over his shoulder.", - "id": 1731 + "image_path": "G:\\images\\combined\\006247_jpg.rf.20f08053aa8205a59db3b73de790560e.jpg", + "response": "A construction site with two men standing in front of a yellow truck with a crane.", + "id": 32337 }, { - "image_path": "G:\\images\\combined\\003705_jpg.rf.bca05ef252f3cf75a5f0499a0b65c6c3.jpg", - "response": "The image shows two construction workers wearing blue and yellow work clothes. They are both holding a plan or blueprint and looking at it. The worker on the left is also wearing a white helmet and a pair of red headphones around his neck. They are both wearing white helmets.", - "id": 1732 + "image_path": "G:\\images\\combined\\006248_jpg.rf.32c586bbffeb38733c6ab199672e6686.jpg", + "response": "a group of men standing around outside", + "id": 32338 }, { - "image_path": "G:\\images\\combined\\003707_jpg.rf.4f178c14efc651eb780c1b13d22d90b5.jpg", - "response": "A man in a blue shirt and blue hat is standing in a construction site. He is giving a thumbs up. There are other people in the background. There are many steel rods stacked on the ground. There are other machines and equipment around. There are buildings in the background.", - "id": 1733 + "image_path": "G:\\images\\combined\\006249_jpg.rf.574f725b08492d8b8e600eb0e1cad512.jpg", + "response": "A man wearing a hard hat and holding a large piece of wood in front of a house under construction.", + "id": 32339 }, { - "image_path": "G:\\images\\combined\\003708_jpg.rf.3d1bed801eb080c1553547b7635c2259.jpg", - "response": "In the image, a group of workers are standing on a large dock. They are wearing orange construction suits. In the background, there is a large body of water and a crane is lifting a long wooden plank.", - "id": 1734 + "image_path": "G:\\images\\combined\\00624_jpg.rf.52539d9c7a413f8c6bc5102a158e8426.jpg", + "response": "The image features a group of men standing next to each other. They are all wearing hard hats, with some of them wearing bright yellow and orange vests as well. The men are standing in front of a body of water, which can be seen in the background. There are also two cars visible in the image, one on the right side and another further back. The men are posing for the camera, with one of them sitting in a chair that is placed among them.", + "id": 32340 }, { - "image_path": "G:\\images\\combined\\003709_jpg.rf.48f2cd4c89c83b9537af7a8fe9c287aa.jpg", - "response": "A man and woman standing in a room that is under construction. They are both wearing white helmets and looking at blueprints. The woman is also holding a cell phone.", - "id": 1735 + "image_path": "G:\\images\\combined\\00624_jpg.rf.cf0e19d89d00feb603c0d73d87b1bdde.jpg", + "response": "A group of men standing next to each other.", + "id": 32341 }, { - "image_path": "G:\\images\\combined\\003710_jpg.rf.23690be19e65c76d67939be81a5b55e8.jpg", - "response": "The image shows two men working on a transmission tower. They are wearing green and brown camouflage uniforms and yellow helmets. The man in the foreground is kneeling on a metal ladder and fixing a metal bar on the left side of the tower. The man on the right is climbing the tower, wearing a tool belt with a drill and other tools. They are both in the process of installing a metal bar on the tower.", - "id": 1736 + "image_path": "G:\\images\\combined\\006250_jpg.rf.de0e6f6cefde3034f8628f82241f8115.jpg", + "response": "a group of men standing around each other", + "id": 32342 }, { - "image_path": "G:\\images\\combined\\003712_jpg.rf.07d79113714afa6742ea9c90c6a1c5ee.jpg", - "response": "A worker in a blue uniform and a hard hat is working on a piece of equipment. They are holding a large wrench and are standing on a ladder. They are making adjustments to the equipment.", - "id": 1737 + "image_path": "G:\\images\\combined\\006251_jpg.rf.8b7cd01736748af27c5830e9506cd91d.jpg", + "response": "A construction worker wearing a yellow vest and red helmet is working on a large construction site.", + "id": 32343 }, { - "image_path": "G:\\images\\combined\\003713_jpg.rf.b810d696fc9c784fd6348a30b257b913.jpg", - "response": "a group of people standing around talking", - "id": 1738 + "image_path": "G:\\images\\combined\\006254_jpg.rf.9ba04ce1679bb6ce730c7a877c1c3182.jpg", + "response": "In the image two workers are seen\u4fee\u7406ing an electricity pole. They are wearing blue and black uniforms. The sky is white and it seems to be a winter day. There are many wires coming from the electricity pole and the workers are handling them.", + "id": 32344 }, { - "image_path": "G:\\images\\combined\\003714_jpg.rf.5fee9432173e499ae4f068aacb6160c9.jpg", - "response": "A group of men in hard hats eat a meal on the ground.", - "id": 1739 + "image_path": "G:\\images\\combined\\006255_jpg.rf.bbc90149f077d7bed9b301221af6e3ab.jpg", + "response": "A group of men in white shirts and red hard hats are standing on a dirt patch.", + "id": 32345 }, { - "image_path": "G:\\images\\combined\\003715_jpg.rf.7f2de1dee16a203d49e5a0f30ce7911d.jpg", - "response": "A man in a green shirt and yellow hard hat is operating a machine with a large drill on it. The man is standing in front of a white tarp and there are other workers in the background. The man is also wearing a yellow hard hat.", - "id": 1740 + "image_path": "G:\\images\\combined\\006258_jpg.rf.90ee3ffa54789acdbac745c94454f55e.jpg", + "response": "The image shows a group of people gathered around a man holding a red hard hat. The man is on the left side of the image, while the group is standing around him. They are all wearing white shirts and red hard hats. In the background, there is a truck on the left side and a building on the right side. Some people are also carrying umbrellas.", + "id": 32346 }, { - "image_path": "G:\\images\\combined\\003716_jpg.rf.80392b8a10793b8d08dfb7089fcadb24.jpg", - "response": "A group of four people working on a construction site.", - "id": 1741 + "image_path": "G:\\images\\combined\\006259_jpg.rf.795d43e8cfb346ecfafa924e237a102e.jpg", + "response": "The image shows two workers in blue shirts and blue helmets who are repairing a pipe. They are crouched down in a large hole, and one of them is using a tool to work on the pipe. The pipe is painted red and black, and there is a large piece of red and black material wrapped around it. The workers seem to be focused on their task, and the scene gives a sense of the hard work and skill involved in this type of repair work.", + "id": 32347 }, { - "image_path": "G:\\images\\combined\\003717_jpg.rf.daaf2b2b41024fe9d5829f80092de763.jpg", - "response": "In the image two workers are wearing yellow and orange hard hats. They are standing in front of a white board with a blue frame. The worker on the left is writing something on the board. They are writing in Chinese. The white board has two signs on it. One says \"CAUTI\" at the top and has a red circle around it. The other sign is blue and says \"0\" in a green circle. The workers are standing in front of a yellow and orange scaffolding.", - "id": 1742 + "image_path": "G:\\images\\combined\\006260_jpg.rf.cf465933944ef2c39226d51101f23b94.jpg", + "response": "The photo shows a group of men standing in an unfinished building. They are all wearing red hard hats. The man in the foreground on the left is wearing a dark grey suit and has a beard. He is talking to the man to his left, who is also wearing a red hard hat. They are both talking and pointing towards the right. To their right, there are two men wearing black suits and red hard hats. They are both looking towards the camera. In the background, there are two men wearing yellow hard hats and black suits. One man is wearing a red tie and the other man is wearing a yellow hard hat. In the far background, there are two men wearing red hard hats and grey suits. They are both looking towards the right. There is a sign on the wall that says \"Caution, men at work\".", + "id": 32348 }, { - "image_path": "G:\\images\\combined\\003718_jpg.rf.eacb5d008614fa73dc9bc1bebcb5bbce.jpg", - "response": "In the image two men are seen wearing hard hats and life jackets while standing in flood waters. They are holding bamboo poles. The water is up to their knees.", - "id": 1743 + "image_path": "G:\\images\\combined\\006261_jpg.rf.718e27cefaae738f7299ce66b47f1381.jpg", + "response": "A group of people walking down a sidewalk.", + "id": 32349 }, { - "image_path": "G:\\images\\combined\\003719_jpg.rf.c06339ff3255ec01d7fec9a7f5e6155b.jpg", - "response": "A group of five people are working on a brick wall together. They are all wearing hard hats and are standing on the ground. Some of them are holding tools such as a shovel and a trowel. The sky is blue and there are a few clouds in the sky.", - "id": 1744 + "image_path": "G:\\images\\combined\\006262_jpg.rf.f0ad50f3ef93e3bade1bea90630d48e9.jpg", + "response": "A man in a yellow shirt and white hat is on a yellow lift. He is working on a power line.", + "id": 32350 }, { - "image_path": "G:\\images\\combined\\003720_jpg.rf.607dc0e25d64195cd40196f6794e0658.jpg", - "response": "A construction worker wearing an orange hard hat is working on a piece of metal on a construction site. The worker is wearing a camouflage shirt and coveralls. They are sitting on a wooden platform and are cutting into a metal beam with a pair of pliers. There is a pile of grey rocks next to the worker.", - "id": 1745 + "image_path": "G:\\images\\combined\\006263_jpg.rf.464c05063a3b91feeb310304981ef136.jpg", + "response": "A group of men in hard hats stand on a construction site.", + "id": 32351 }, { - "image_path": "G:\\images\\combined\\003721_jpg.rf.89bb97593febe517a94c57dfda15bf5a.jpg", - "response": "A group of men working on a large metal box on a ladder.", - "id": 1746 + "image_path": "G:\\images\\combined\\006264_jpg.rf.8a8b8951abe5787b50737a38c82b493d.jpg", + "response": "The image shows two men wearing hard hats and looking at a blueprint. The man on the left is holding the blueprint and smiling, while the man on the right is wearing a gray shirt and a white helmet. Both men are wearing yellow shirts, jeans, and orange and yellow hard hats. They appear to be construction workers.", + "id": 32352 }, { - "image_path": "G:\\images\\combined\\003722_jpg.rf.021b65406c39b03ecea2544521b34da1.jpg", - "response": "A group of people standing on a dirt road", - "id": 1747 + "image_path": "G:\\images\\combined\\006265_jpg.rf.9a0f855a5e2dd6de907f067c556a1cc5.jpg", + "response": "In the image two people are seen wearing orange snowsuits and green life jackets. They are standing in the snow with one person pointing at a power line. The sky is covered with clouds and it appears to be snowing. The trees around them are covered in snow.", + "id": 32353 }, { - "image_path": "G:\\images\\combined\\003723_jpg.rf.3746d752de427411312cd13c0009e762.jpg", - "response": "A construction worker crouches next to a large metal grate, smiling at the camera. Another worker is visible in the background, crouching to the left of the first worker. They are both wearing hard hats. In front of them is a large concrete structure with rebar sticking out of it. The rebar has been bent into a grid pattern. Next to the workers is a white bucket and several pieces of wood.", - "id": 1748 + "image_path": "G:\\images\\combined\\006266_jpg.rf.c7b4a47bf235b7c18d8ed38f6aa99b2f.jpg", + "response": "A group of three workers in hard hats and coveralls are working on a yellow piece of machinery. They are standing on a step and appear to be working on a red barrel.", + "id": 32354 }, { - "image_path": "G:\\images\\combined\\003724_jpg.rf.3cfe6148c9a95658621b4704c98e066a.jpg", - "response": "A group of construction workers are working on a large project. They are standing in a construction site that has large pipes and machinery. Some of the workers are wearing yellow hard hats and red vests. In the background, there is a large pile of rubble and debris.", - "id": 1749 + "image_path": "G:\\images\\combined\\006267_jpg.rf.d60ac3c0b0a2eb883a39d84d516c3114.jpg", + "response": "A group of men in blue work uniforms and yellow hard hats are on a platform working on power lines.", + "id": 32355 }, { - "image_path": "G:\\images\\combined\\003725_jpg.rf.ae9536c68b291bc2f3ef44929f46ae55.jpg", - "response": " Two mining industry workers(450,133),(730,996)(2,136),(411,996) discussing their day's work in front of a dump truck(343,3),(997,571)", - "id": 1750 + "image_path": "G:\\images\\combined\\006268_jpg.rf.17ac65e357072094b8b0c111b3633578.jpg", + "response": "A group of people are sitting around a large table. The wall behind the table has a banner that says \"\u83f2\u79d1\u5b66\u7ba1\u7406\u6253\u9020\u7cbe\u54c1\u5de5\u7a0b\" in red and yellow characters. Several people are wearing ties. There are several cups on the table, some are filled with a light yellow liquid. There are several books and papers on the table. A laptop is opened on the table. In the background, there is a whiteboard with some writing on it.", + "id": 32356 }, { - "image_path": "G:\\images\\combined\\003727_jpg.rf.a16ebabf4aa74393c61d1fd4f656478e.jpg", - "response": "A group of people sitting around a table.", - "id": 1751 + "image_path": "G:\\images\\combined\\006269_jpg.rf.0e60eb1a8844870d02b070971576fb61.jpg", + "response": "A construction worker wearing a yellow vest and red helmet working on a large construction site.", + "id": 32357 }, { - "image_path": "G:\\images\\combined\\003729_jpg.rf.dbbbaec105efc91fe3f39432c8a90f50.jpg", - "response": "A man standing in front of a yellow and orange sign that says LDXC-100T.", - "id": 1752 + "image_path": "G:\\images\\combined\\00626_jpg.rf.00eb1f6552b6a9760fc7b5eb71be66ce.jpg", + "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a clipboard. The plans are for a building that is currently under construction.", + "id": 32358 }, { - "image_path": "G:\\images\\combined\\00372_jpg.rf.5a34f3e4a097ecf93494abd7dc582770.jpg", - "response": "The image shows a group of five men posing for a photo in front of a construction site. They are all wearing yellow or orange high visibility jackets and white or yellow hard hats. The man on the far left is wearing a white hard hat and a black vest with a yellow reflective stripe. The man to his right, who is wearing a yellow hard hat and a white hat, is wearing a white shirt with a red cross on it. The man standing in front of him is wearing a black shirt with a yellow star on it and has a white star painted on his helmet. The man on the right, who is wearing a black shirt and a yellow hard hat, is wearing a black vest with five white stars on it. The man on the far right, who is wearing a black shirt and a yellow hard hat, is wearing a black vest with five yellow stars on it. The background of the photo is a yellow construction site.", - "id": 1753 + "image_path": "G:\\images\\combined\\00626_jpg.rf.4ccbf0b2addd491e7265a588c343266f.jpg", + "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a set of plans in a red binder. The man in the middle is wearing a white hard hat. The man on the right is wearing a yellow hard hat. The wall to the right is green and the wall to the left is being renovated with boxes stacked against it.", + "id": 32359 }, { - "image_path": "G:\\images\\combined\\00372_jpg.rf.9c16d062487566bcb3cd3553e0323270.jpg", - "response": "The image shows a group of five men posing for a photo in front of a construction site. They are all wearing yellow or orange high visibility jackets and white or yellow hard hats. The man on the far left is wearing a white hard hat and a white shirt with a blue or grey chest pocket. The man second from the left is wearing a yellow hard hat and a yellow safety vest with a red star on it. The man in the middle is wearing a white hard hat and a white shirt with a blue or grey chest pocket. The man on the right is wearing a black hard hat and a black shirt with a yellow star on it. The man in the bottom is wearing a white hard hat and a black shirt with red letters.", - "id": 1754 + "image_path": "G:\\images\\combined\\006270_jpg.rf.57a458a15ede0808a88007c9174d748d.jpg", + "response": "A group of men standing next to each other wearing hard hats.", + "id": 32360 }, { - "image_path": "G:\\images\\combined\\003730_jpg.rf.0052ba39abb15cd0973afc3e41c90d49.jpg", - "response": "A group of people working on a construction site.", - "id": 1755 + "image_path": "G:\\images\\combined\\006271_jpg.rf.c4f04430203925bb1fac0b625774b663.jpg", + "response": "a group of men standing in front of a building under construction", + "id": 32361 }, { - "image_path": "G:\\images\\combined\\003731_jpg.rf.2b79b75ee06bd82fd5e36558c5e0dc1e.jpg", - "response": "A man is working on a roof with solar panels. He is wearing a red shirt and has a tool in his hand. The roof is blue and has many solar panels on it. The sky is blue and clear.", - "id": 1756 + "image_path": "G:\\images\\combined\\006272_jpg.rf.c8a5de0111c6bfe6e4b7c0bc17c57c70.jpg", + "response": "The image shows workers in a cement tunnel. They are wearing yellow and orange vests and white helmets. Some are standing on ladders or on the debris on the floor, and others are handling hoses. The workers are repairing the tunnel walls.", + "id": 32362 }, { - "image_path": "G:\\images\\combined\\003732_jpg.rf.4a4d59d9f4f400dfbf7f2f16cde8a41d.jpg", - "response": "A worker wearing a yellow hard hat and camouflage jacket is working on a construction site. They are cutting through a red metal pipe with a yellow grinder. There are sparks flying all around.", - "id": 1757 + "image_path": "G:\\images\\combined\\006273_jpg.rf.cfea500cc2455107450cde8c0d7e3bd0.jpg", + "response": "A group of men standing around talking.", + "id": 32363 }, { - "image_path": "G:\\images\\combined\\003733_jpg.rf.a8eb8c4ba636368c3c3be6fbb1e163ef.jpg", - "response": "A woman wearing a hard hat and holding a cordless drill.", - "id": 1758 + "image_path": "G:\\images\\combined\\006274_jpg.rf.1f3f699b3f0a3dee0e1edb76ede8fe20.jpg", + "response": "A worker in a hard hat and orange vest is standing on a bridge in front of a large metal pipe. They are looking at a tablet and holding a clipboard. There are two other people in the background, one near the left side and one near the right side of the image. There is a forest of trees in the distance.", + "id": 32364 }, { - "image_path": "G:\\images\\combined\\003734_jpg.rf.b39c00a81539b43b0cb72ad06c55ba90.jpg", - "response": "A group of workers are working on a construction site.", - "id": 1759 + "image_path": "G:\\images\\combined\\006275_jpg.rf.c0f8245e2547b1477b5e22bffb7f344e.jpg", + "response": "A construction site with a yellow scaffolding and two workers. One worker is on the right side of the image, wearing a red hat and shirt, and grey pants. He is operating a machine. Another worker is on the left side of the image, wearing a white helmet and grey pants. There are several yellow scaffolding in the image, some yellow pipes and some steel bars. Some of the steel bars are placed on the ground, and some are on the scaffolding. There is a yellow machine operated by the worker on the right side of the image. In the background, there is a tall building with a white wall on the left side of the image and a building under construction with green walls on the right side of the image.", + "id": 32365 }, { - "image_path": "G:\\images\\combined\\003735_jpg.rf.d04a5551370ecef2da9bc430f136e2ff.jpg", - "response": "A group of people standing in front of a building.", - "id": 1760 + "image_path": "G:\\images\\combined\\006276_jpg.rf.524a63fac533aedaaa986e4d1513e762.jpg", + "response": "A couple of men in hard hats are working on power lines. They are standing on ladders and have tools in their hands.", + "id": 32366 }, { - "image_path": "G:\\images\\combined\\003737_jpg.rf.10512bbf8864564c71477283a58420b1.jpg", - "response": "A man wearing a hard hat, orange ear muffs, and work gloves.", - "id": 1761 + "image_path": "G:\\images\\combined\\006277_jpg.rf.e1e3df8381e1bc310bd8f7dc984aa45c.jpg", + "response": "The image shows a construction site with two workers. One worker is on the left wearing a grey uniform and a red hat and glasses. He is operating a yellow machine with a circular cutting wheel on a silver pole, which is cutting into a grey road. The worker is kicking up dust. To the right of the worker is a black wire running across the image. Further down the image, there is a green fence. In the background, there is a brown mountain. On the right side of the image, there are a few people standing behind a yellow fence. A person in a red vest is standing towards the right. In the background, there is a forest of green trees.", + "id": 32367 }, { - "image_path": "G:\\images\\combined\\003738_jpg.rf.f8b6af26a7107a68456a61a0229282ac.jpg", - "response": "A worker on a cherry picker repairs power lines.", - "id": 1762 + "image_path": "G:\\images\\combined\\006278_jpg.rf.12170c70f60f81e1eb754c1a6a3ffe59.jpg", + "response": "a worker in a grey suit and yellow hat", + "id": 32368 }, { - "image_path": "G:\\images\\combined\\003739_jpg.rf.2819ebdaec3019af662d2c14fc0af25a.jpg", - "response": "A man in a suit and a yellow hard hat is talking on a cell phone.", - "id": 1763 + "image_path": "G:\\images\\combined\\006279_jpg.rf.862d01fb5c0b9eaaab253b9201123a70.jpg", + "response": "People(412,266),(996,787) standing in front of a building", + "id": 32369 }, { - "image_path": "G:\\images\\combined\\003740_jpg.rf.67b97e194f4479197e7990285e9e85a6.jpg", - "response": "A group of three multi-ethnic construction workers wearing hard hats and safety vests standing over a set of plans at a construction site", - "id": 1764 + "image_path": "G:\\images\\combined\\00627_jpg.rf.8e592a6a61856d100b070843e97271ac.jpg", + "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", + "id": 32370 }, { - "image_path": "G:\\images\\combined\\003742_jpg.rf.12cb443530a070c630799868085bc4a0.jpg", - "response": "A construction worker in a yellow hard hat and orange safety vest points out something to a colleague in a white shirt and hard hat. They are standing on a bridge overlooking a construction site with a large pile of coal visible in the background. There are yellow and white construction vehicles parked near the site.", - "id": 1765 + "image_path": "G:\\images\\combined\\00627_jpg.rf.c5febab588e9a200024c72b1d43eefa1.jpg", + "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", + "id": 32371 }, { - "image_path": "G:\\images\\combined\\003744_jpg.rf.7b87bc8e1f71be46589987f8476f3d1a.jpg", - "response": "A group of men standing around each other", - "id": 1766 + "image_path": "G:\\images\\combined\\006284_jpg.rf.da15721860a53aa3c0a5e0024a5270ac.jpg", + "response": " Rescue workers(473,329),(623,996)(268,356),(422,926)(593,301),(749,823)(436,291),(531,745)(82,281),(255,717) carry a wooden beam(374,513),(999,979) to be used as a support for the roof of the damaged tunnel.", + "id": 32372 }, { - "image_path": "G:\\images\\combined\\003746_jpg.rf.e3876f24f5853f666b55b02fa7f855ad.jpg", - "response": "A man in a green shirt and red helmet is working on an electrical line.", - "id": 1767 + "image_path": "G:\\images\\combined\\006285_jpg.rf.49fd7602be792f2e057f82e5468daf32.jpg", + "response": "A worker points to a crack in the wall of the 1300-year-old brick kiln in the city of Xi'an, capital of Shaanxi province. The crack is about 10 centimeters long and 1 centimeter wide.", + "id": 32373 }, { - "image_path": "G:\\images\\combined\\003747_jpg.rf.cdbcd94d28bb0eeee400af80f9d69e20.jpg", - "response": " Men(587,328),(936,996)(393,319),(611,997) in hard hats(452,318),(570,445)(685,282),(786,406)(758,296),(910,422)(890,116),(997,310) standing in a cave", - "id": 1768 + "image_path": "G:\\images\\combined\\006286_jpg.rf.8da14e805a0ace0c1dd949717ce30a29.jpg", + "response": "A group of men standing on a construction site.", + "id": 32374 }, { - "image_path": "G:\\images\\combined\\003748_jpg.rf.a64edea18462a109ba9c46d0f51a9abb.jpg", - "response": "An electrician is working on a power station.", - "id": 1769 + "image_path": "G:\\images\\combined\\006287_jpg.rf.f09342a0b9ac348d5f20831c7459b670.jpg", + "response": "A group of people standing in front of a wall with Chinese writing on it. Some of the people are wearing yellow jackets. One person is on a motorcycle.", + "id": 32375 }, { - "image_path": "G:\\images\\combined\\003749_jpg.rf.85b5a88c0af33305abae4a0d737218f0.jpg", - "response": "A group of rescue workers in a pile of rubble.", - "id": 1770 + "image_path": "G:\\images\\combined\\006288_jpg.rf.d09f1dcd3e0f88bcde954c9817dcd941.jpg", + "response": "A group of workers are working on a construction site. They are working on a building that has scaffolding around it. The building is in the process of being constructed.", + "id": 32376 }, { - "image_path": "G:\\images\\combined\\003750_jpg.rf.798b07a7e5b3a6c0fe3f8a7f0d8ae365.jpg", - "response": "A group of three men working on a power line.", - "id": 1771 + "image_path": "G:\\images\\combined\\006289_jpg.rf.203585dec2254567dabfb34728e497f9.jpg", + "response": "A man with a microphone is speaking to a crowd of men.", + "id": 32377 }, { - "image_path": "G:\\images\\combined\\003752_jpg.rf.1f8c7cd2cd5798fa23038e1bf39efb8f.jpg", - "response": "A group of men working on a construction site.", - "id": 1772 + "image_path": "G:\\images\\combined\\00629079b8556680.jpg", + "response": "A beige Mercury truck parked in front of a wooden fence.", + "id": 32378 }, { - "image_path": "G:\\images\\combined\\003753_jpg.rf.ddc984a6d50a057699314bd6e5bbbf16.jpg", - "response": "A group of workers in a factory.", - "id": 1773 + "image_path": "G:\\images\\combined\\006290_jpg.rf.d248e74b7a040b036109d592872d3cb0.jpg", + "response": "In the image there is a worker in a blue uniform and a blue hat who is crouching down and working on a metal rail that is in a tunnel. The tunnel has a white and green light at the end of it. The worker is also holding a crow bar and a hammer.", + "id": 32379 }, { - "image_path": "G:\\images\\combined\\003754_jpg.rf.b59acb74c0505d03c5558423e3a048d0.jpg", - "response": "In the image there are two construction workers. They are both wearing orange work vests and helmets. One of the workers is holding a walkie-talkie and a clipboard, the other one is pointing at something in the distance. They are standing in a construction site with a big pile of rubble in the background.", - "id": 1774 + "image_path": "G:\\images\\combined\\006291_jpg.rf.7bbeff9b57b148d9cb7c2b1096e07239.jpg", + "response": "A construction site with a man in a blue jumpsuit and a hard hat on a cell phone.", + "id": 32380 }, { - "image_path": "G:\\images\\combined\\003755_jpg.rf.4c1a48424c75b1b6d5b3c375816449b8.jpg", - "response": "The image shows a group of workers in the mountains, carrying a large metal pole. They are wearing hard hats and the sky is blue with a few clouds. There is a mountain in the background.", - "id": 1775 + "image_path": "G:\\images\\combined\\006292_jpg.rf.f9100543c6fc93b30ea1c82e960fe862.jpg", + "response": "A couple of men in blue hard hats are standing in a stream.", + "id": 32381 }, { - "image_path": "G:\\images\\combined\\003756_jpg.rf.b9b7eb22e023d3a64ea4d00fc902eae8.jpg", - "response": "A man in an orange shirt is working on a large piece of machinery. The machinery is a dark grey color and has many pipes and tubes. The man is standing in a large pit and is working on a large pipe that is laying on top of the machinery. The pipe is a dark grey color and has some rust on it. The man is holding a tool in his hand.", - "id": 1776 + "image_path": "G:\\images\\combined\\006293_jpg.rf.3c1b6e500021be4f184747bab2e2e32a.jpg", + "response": "The image shows a group of five men standing in front of a building under construction. They are all wearing hard hats, with one man holding a clipboard. To the left of the group, there is a car parked next to a building. In the background, there is a large pile of dirt and a pipe. The sky is overcast, and the image is taken in what appears to be a construction site.", + "id": 32382 }, { - "image_path": "G:\\images\\combined\\003759_jpg.rf.897d7e043a924bf010e62f326e5089a2.jpg", - "response": "In the image there is a man wearing a red helmet standing in front of a large pile of dirt. There are two yellow and black bulldozers in the background, one on the left and one on the right. They are both digging dirt and spreading it to the left. There is also a white truck in the background on the left.", - "id": 1777 + "image_path": "G:\\images\\combined\\006294_jpg.rf.a9424f363ced7ffd2d3902c261c6872b.jpg", + "response": "People(245,319),(457,920)(490,328),(648,859)(3,322),(339,995)(755,254),(987,995)(387,353),(475,747) standing in a room", + "id": 32383 }, { - "image_path": "G:\\images\\combined\\003760_jpg.rf.658d3a8e286c93352e7036ad42854663.jpg", - "response": "In the image, three workers are seen in a crane, fixing the power lines. They are wearing orange jumpsuits. One of the workers is on the left side of the image, another one is in the middle and the third one is on the right side of the image. They are holding different tools in their hands. One of the workers is holding a tool in his left hand and another one is holding a tool in his right hand. One of the workers is also seen wearing a helmet. The sky above them is blue.", - "id": 1778 + "image_path": "G:\\images\\combined\\006296_jpg.rf.d2fa5e1b0c47305dbeb73cab0ee05f60.jpg", + "response": "A group of people walking around a construction site.", + "id": 32384 }, { - "image_path": "G:\\images\\combined\\003761_jpg.rf.78d5d909c8933884b07a1cb03cd1b9b3.jpg", - "response": "The image shows a construction site for a railway. There are two workers visible, both wearing yellow hard hats and working on a section of track. They are both crouched down, one on the left and one on the right, both wearing grey and yellow hard hats.", - "id": 1779 + "image_path": "G:\\images\\combined\\006297_jpg.rf.c0136a07ec51c427109dd1e1c3d72400.jpg", + "response": "An oil field with two pumpjacks in the background. In the foreground, two people are shaking hands. The person on the left is a woman with red hair and a red helmet. She is wearing a white shirt, red and yellow reflective vest, and a pink bandana tied around her neck. The person on the right is a man with a beard and orange helmet. He is wearing a blue shirt, orange and yellow reflective vest, and a black tool belt.", + "id": 32385 }, { - "image_path": "G:\\images\\combined\\003762_jpg.rf.d9b71f2d4c5aa877007bb0e8decce4bf.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left, wearing a red hard hat and a grey top. He is looking at a large concrete pipe that is being lowered into a large pit in the ground. The pit is filled with dark grey concrete. The pipe is white and has a large red pipe at the end. Another worker is on the right, wearing a blue top and a red hard hat. He is looking up at the pipe and talking to the worker on the left.", - "id": 1780 + "image_path": "G:\\images\\combined\\006298_jpg.rf.21d06283df68a72fe6ca05dca5dee0b8.jpg", + "response": "A construction worker is working on some yellow beams.", + "id": 32386 }, { - "image_path": "G:\\images\\combined\\003763_jpg.rf.b9135cbeed54edd4d2883da4d52d3b84.jpg", - "response": "A group of men working on a building that is not finished.", - "id": 1781 + "image_path": "G:\\images\\combined\\006299_jpg.rf.7e6023daadf1dc53b924e2820ccd99b1.jpg", + "response": "The image shows two workers wearing yellow hard hats, one on the left and one on the right, working on a piece of equipment. The equipment is a large, metal, white and red piece of machinery with many bolts and nuts. The workers are focused on their task, which involves using a wrench to adjust a part of the machinery. The sky is grey and overcast in the background.", + "id": 32387 }, { - "image_path": "G:\\images\\combined\\003764_jpg.rf.f6e882476c918c2789aad56a29d4cc99.jpg", - "response": "A construction worker is working on a building.", - "id": 1782 + "image_path": "G:\\images\\combined\\00629_jpg.rf.6b4670a1cd16ea4d6524dd8b6b805554.jpg", + "response": "A group of people standing around a wheelbarrow filled with bricks.", + "id": 32388 }, { - "image_path": "G:\\images\\combined\\003765_jpg.rf.ac92ce2fa60b169edb6f9c76d7510604.jpg", - "response": "In the image there are several people working on machinery. They are working on a large piece of equipment that is on a set of train tracks. The equipment is mostly grey in color and has a large white cabinet with a lot of buttons and knobs on the front. The people are working on the equipment with tools and are focused on their task.", - "id": 1783 + "image_path": "G:\\images\\combined\\00629_jpg.rf.e17736754eeafbd17fa2731839e8c643.jpg", + "response": "A group of people standing around a wheelbarrow filled with bricks.", + "id": 32389 }, { - "image_path": "G:\\images\\combined\\003766_jpg.rf.8d1c6e66fe5a1de61bb9492338efc1b1.jpg", - "response": "a group of men standing around a pile of wood", - "id": 1784 + "image_path": "G:\\images\\combined\\0062d9a5fb4913ce.jpg", + "response": "A street sign that says \"Jerusalem Plank Rd\" and another street sign that says \"Main Point Rd\" with a stop sign in the foreground.", + "id": 32390 }, { - "image_path": "G:\\images\\combined\\003767_jpg.rf.c2b51716f2a830c805b7258b43366bed.jpg", - "response": "A group of workers are working on a construction site.", - "id": 1785 + "image_path": "G:\\images\\combined\\006300_jpg.rf.8b1340e60b8b7a92e3c6dbc86e1de382.jpg", + "response": "A man in a white shirt is pointing to a map.", + "id": 32391 }, { - "image_path": "G:\\images\\combined\\003768_jpg.rf.1b8a78aab8b5a7ff5072ed5a36f9cd31.jpg", - "response": "US President Barack Obama (R) talks with workers as he tours the DTE Energy\u7ba1\u7406\u4e2d\u5fc3 on May 8, 2014 in Detroit, Michigan. Obama is in Michigan to highlight the importance of the auto industry in the state's economy.", - "id": 1786 + "image_path": "G:\\images\\combined\\006301_jpg.rf.58ce9d4c28f27172df2a97e1394d3573.jpg", + "response": "A man in a yellow and blue shirt, a yellow and black hat, and safety goggles is drinking water from a clear plastic water bottle.", + "id": 32392 }, { - "image_path": "G:\\images\\combined\\00376_jpg.rf.252c8d6b870de4120efd5a35352cecac.jpg", - "response": "A group of three men standing in a construction site wearing safety gear such as yellow hard hats, orange safety jackets and high visibility clothing. The man on the left is holding a set of plans and a pencil. The man in the middle is holding a tape measure. The man on the right is holding a device that is a mix of a laser level and a scanner.", - "id": 1787 + "image_path": "G:\\images\\combined\\006302_jpg.rf.8ea6c2e60a9920dba5bc4a6c9fcec433.jpg", + "response": "A group of men wearing hard hats are standing in a construction site. They are all wearing different outfits and the men on the left are wearing yellow and orange hard hats. The men in the center and on the right are wearing red hard hats. The men in the center are also wearing grey jackets. The man in the middle is wearing a grey jacket and a white helmet. The man on the right who is wearing a camo jacket and a red hard hat is also holding a clipboard.", + "id": 32393 }, { - "image_path": "G:\\images\\combined\\00376_jpg.rf.dfada58a04d3cd78c605c2e4d478d56d.jpg", - "response": "A group of three men dressed in construction gear.", - "id": 1788 + "image_path": "G:\\images\\combined\\006303_jpg.rf.e2df00c2e4000da0b53c78bfc274aea7.jpg", + "response": "A group of people in blue and orange clothes with yellow and red helmets are standing in front of a large crane. Some of them are holding shovels and brooms.", + "id": 32394 }, { - "image_path": "G:\\images\\combined\\003771_jpg.rf.e468b47e72ea3761cd6dbc7d82f59f80.jpg", - "response": "A group of people standing in a tunnel.", - "id": 1789 + "image_path": "G:\\images\\combined\\006304_jpg.rf.3f250b9d560a4d501f5a3acb430dc712.jpg", + "response": "A construction worker is working on a large hole in the ground. He is wearing a yellow hard hat and orange safety vest. He is sitting on the ground and welding a large pipe. He is surrounded by sparks flying in all directions. In the background, there is a yellow and orange construction fence. Behind it, there is a concrete road. On the right side of the fence, there is a yellow pillar. In the distance, there are also two green trees and a white bus.", + "id": 32395 }, { - "image_path": "G:\\images\\combined\\003772_jpg.rf.6532a4df8fee0aa06124a74eb37338aa.jpg", - "response": "The picture shows a group of men standing around and talking. Among them, there are three men in suits, one in a dark blue suit, one in a black suit, and one in a gray suit. These three men are surrounded by other people, some of whom are shaking hands. In the background, there are a few cars and a red tower. The sky is overcast.", - "id": 1790 + "image_path": "G:\\images\\combined\\006305_jpg.rf.2f4f8343e54bb4539581eff162e3cda9.jpg", + "response": "a group of men standing around each other", + "id": 32396 }, { - "image_path": "G:\\images\\combined\\003773_jpg.rf.68fa1ff2db5d97331e677356aa97dc15.jpg", - "response": "a group of men wearing hard hats", - "id": 1791 + "image_path": "G:\\images\\combined\\006306_jpg.rf.317fdecd5e0358824d45f3b921d77203.jpg", + "response": "a group of men standing around a blueprint", + "id": 32397 }, { - "image_path": "G:\\images\\combined\\003774_jpg.rf.87bf9a6e958e7360c984a6a314d6b168.jpg", - "response": "In the image two workers are wearing blue and white clothes and blue and white helmets. They are working on a power distribution cabinet. There are many switches and relays in the cabinet. One worker is holding a screwdriver in his right hand and is pointing to a relay, the other worker is watching him. There is a sign with the character \u7535 (\u7535\u529b) on the cabinet.", - "id": 1792 + "image_path": "G:\\images\\combined\\006307_jpg.rf.b7918784435606b69b564e1756d0ef5c.jpg", + "response": "The image shows a nighttime scene with rescue workers in orange jumpsuits standing around a man lying on the ground. The man is wearing a black shirt and grey pants. There is a suitcase next to him. A green laser light is being shone at the man from above.", + "id": 32398 }, { - "image_path": "G:\\images\\combined\\003775_jpg.rf.3ebaa1e5abe84f94b479a116824e570a.jpg", - "response": "A group of men working on a train track", - "id": 1793 + "image_path": "G:\\images\\combined\\006308_jpg.rf.011565c408f2d4c353d37c7e93f8ae79.jpg", + "response": "A lineworker on a power pole with his right arm raised in the air.", + "id": 32399 }, { - "image_path": "G:\\images\\combined\\003776_jpg.rf.a21ac358c0e625b4f4cad059ea186499.jpg", - "response": "A group of people are walking on a green surface.", - "id": 1794 + "image_path": "G:\\images\\combined\\006309_jpg.rf.c8bfe20da1080c699a72d50a6b761a4c.jpg", + "response": "A construction worker is being rescued after a fall at a construction site. Firefighters and other workers are working together to save the man.", + "id": 32400 }, { - "image_path": "G:\\images\\combined\\003777_jpg.rf.6cba00dd337f21a5b71b9f2367651af3.jpg", - "response": "A man in a blue shirt and a man in a white shirt are standing in front of a yellow truck. They are both wearing safety gear.", - "id": 1795 + "image_path": "G:\\images\\combined\\00630_jpg.rf.7b102cc17f3ecfa9de80a1bab5ca9efc.jpg", + "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue work uniforms. One of the people is holding a grey and black electrical wrench. They are standing in front of a large building with a sign that says \u201cState Grid\u201d.", + "id": 32401 }, { - "image_path": "G:\\images\\combined\\003780_jpg.rf.b2c8e3bcd2fad5127418d92aa2255812.jpg", - "response": "A group of five people standing in front of a building that is under construction. They are all wearing hard hats and looking at a blueprint.", - "id": 1796 + "image_path": "G:\\images\\combined\\00630_jpg.rf.99b5b9d642720a26efc872728b8237de.jpg", + "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue shirts. One of the people is holding a white tool in their hand. They are both wearing blue hats. In the background, there is a large building that says \u201c\u56fd\u5bb6\u7535\u7f51\u201d on it.", + "id": 32402 }, { - "image_path": "G:\\images\\combined\\003781_jpg.rf.bf9eff0d1d926e3ff68ffbcc8c93b323.jpg", - "response": "In the image there are two construction workers wearing blue and orange helmets. They are working on a construction site that has a lot of concrete and bricks. One of the workers is using a tool to cut through some bricks and a hose is attached to it. There is a blue barrel and a white barrel on the ground and a person with a white shirt and red hat is working in the background. The sky is blue and clear.", - "id": 1797 + "image_path": "G:\\images\\combined\\006311_jpg.rf.2e6e69790350e916a071c2a48a3e9bc4.jpg", + "response": "The image shows a group of six men standing on a construction site. They are all wearing hard hats, and some are holding a discussion. In the background, there are two completed buildings and a building under construction. The ground is bare and the sky is grey.", + "id": 32403 }, { - "image_path": "G:\\images\\combined\\003782_jpg.rf.14671023cdfbc5b9a8a01d6f32f1a4e5.jpg", - "response": "A group of men standing around each other.", - "id": 1798 + "image_path": "G:\\images\\combined\\006312_jpg.rf.59b17dae4e64aa733cfddda7878786c1.jpg", + "response": "A group of men in blue shirts are gathered in a room with a large pipe in the foreground. The men are wearing safety helmets and the floor is red.", + "id": 32404 }, { - "image_path": "G:\\images\\combined\\003783_jpg.rf.78b1120f3c94385573e060869e7f9a5f.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 1799 + "image_path": "G:\\images\\combined\\006313_jpg.rf.d48704ad924d3261475028ce9c774e66.jpg", + "response": "A group of people standing around each other.", + "id": 32405 }, { - "image_path": "G:\\images\\combined\\003784_jpg.rf.ca0d1b588eefd601942b4c10107009a0.jpg", - "response": "In the image there are several people standing next to a large construction site. They are all wearing yellow hard hats. In the foreground, there is a concrete circle that is being constructed with a metal grid on the bottom. A metal structure is being built on top of the grid. There is a orange pipe running up the side of the metal structure. In the background, there is a brown fence and a blue sky with no clouds.", - "id": 1800 + "image_path": "G:\\images\\combined\\006314_jpg.rf.88a06533d1824ddacf7c32bbd2bd4f7c.jpg", + "response": "Three construction workers(2,294),(232,988)(216,324),(535,889)(458,225),(646,633) are shown using a fire hose(598,368),(726,560) to extinguish a fire.", + "id": 32406 }, { - "image_path": "G:\\images\\combined\\003785_jpg.rf.2e6fbd203eac6754d91e2d34510f64d0.jpg", - "response": "A couple of men in orange jumpsuits and hard hats are working on a power line. They are standing on a metal platform that is connected to the power line tower. The tower is silver and has many wires attached to it. There are also some more wires in the sky above the platform.", - "id": 1801 + "image_path": "G:\\images\\combined\\006315_jpg.rf.c554924038631afe19226e33c49f17b1.jpg", + "response": "A construction site with workers in white and yellow helmets.", + "id": 32407 }, { - "image_path": "G:\\images\\combined\\003786_jpg.rf.144488cf63419ebe0d64ddc395470662.jpg", - "response": "A group of three men working on a construction site.", - "id": 1802 + "image_path": "G:\\images\\combined\\006316_jpg.rf.3283db83cf8ea8dbe69755a8c055e6cd.jpg", + "response": "The image shows two workers in a room that is under construction. They are wearing blue overalls and yellow helmets. One of them is holding a tool with a black cable, which is connected to a yellow helmet. The room has a stone wall and the floor is covered with debris.", + "id": 32408 }, { - "image_path": "G:\\images\\combined\\003787_jpg.rf.f4b9e44bd4b80dac7c57e51e91f3a3a0.jpg", - "response": "A man wearing a white hard hat is climbing a ladder. He is wearing brown clothes and has a white shirt. He has a white helmet on. Behind him is a building that is in the process of being built. There are many wooden beams in the background. To the far left of the image is a yellow ladder. In the foreground there is a green ladder.", - "id": 1803 + "image_path": "G:\\images\\combined\\006318_jpg.rf.fa28d976d834b5b9bf30f2657fd19b3d.jpg", + "response": "In the image there are three workers wearing blue jumpsuits and yellow hard hats. They are working on a large grey metal pipe. There are several other grey metal pipes around them. In the background, there is a grey building and some trees.", + "id": 32409 }, { - "image_path": "G:\\images\\combined\\003788_jpg.rf.5877a9cc76c42927c95540a978988e04.jpg", - "response": "In the image two people are standing next to a back hoe. They are both wearing blue uniforms and white helmets. One of the people is writing something down in a book.", - "id": 1804 + "image_path": "G:\\images\\combined\\006319_jpg.rf.34862cf2c4c1affe1465f3288ce45d0c.jpg", + "response": "A group of men working on an electrical tower.", + "id": 32410 }, { - "image_path": "G:\\images\\combined\\003789_jpg.rf.70fd43136643bbc2d0bfe6769a89ba06.jpg", - "response": "A man in a blue uniform and blue hat is working on an electrical pole.", - "id": 1805 + "image_path": "G:\\images\\combined\\006320_jpg.rf.d73839739fcc3e34dad52f406cb021c2.jpg", + "response": "A construction worker wearing a yellow hard hat is looking down at a piece of wood. The worker is wearing a yellow hard hat, a blue shirt, and a black bracelet. The worker is also wearing glasses. There are several wooden bars stacked next to the worker.", + "id": 32411 }, { - "image_path": "G:\\images\\combined\\003790_jpg.rf.699df3d9bf24d24107ec699e14059961.jpg", - "response": "a man in a blue shirt and a red hard hat standing in front of a stairway", - "id": 1806 + "image_path": "G:\\images\\combined\\006321_jpg.rf.0413e97cda9c4a8f7f3033f54c87b689.jpg", + "response": "A group of four men wearing yellow and white vests and blue hats are standing in front of a large white machine. The men are wearing yellow and white vests and blue hats. The machine has a screen on it and the words \"\u898f\u7bc4\u7528\u96fb\" (Standardize\u7528\u7535) are written on it. The men are touching some sort of device on the front of the machine.", + "id": 32412 }, { - "image_path": "G:\\images\\combined\\003791_jpg.rf.306896bf597c15e12aaeeb1bcfa9b5b6.jpg", - "response": "A man in a black shirt and dark pants is standing in front of a blue barrier. He is talking to another man who is wearing a yellow hat and black pants. There are several other people standing behind the barrier, which is set up like a gate. Some of the people are holding cell phones and one is wearing a hard hat. The sky is white and it appears to be a cloudy day.", - "id": 1807 + "image_path": "G:\\images\\combined\\006323_jpg.rf.590b1409ad4bafab1ad5fdda352ae597.jpg", + "response": "A construction site with workers.", + "id": 32413 }, { - "image_path": "G:\\images\\combined\\003792_jpg.rf.52eecb71b527ea60cf33763375ba1a89.jpg", - "response": "The image shows two men standing in a construction area. Both men are wearing orange hard hats and orange safety vests. One man is smiling and looking at a clipboard. In the background, there is a bulldozer.", - "id": 1808 + "image_path": "G:\\images\\combined\\006324_jpg.rf.77d19a51e8225c59992372e4432aea91.jpg", + "response": "A group of men standing around a large spool of wire.", + "id": 32414 }, { - "image_path": "G:\\images\\combined\\003793_jpg.rf.2213c5b36dabdf9d7b27a298bdcce410.jpg", - "response": "A man with a red cloth over his mouth holding a yellow hard hat.", - "id": 1809 + "image_path": "G:\\images\\combined\\006326_jpg.rf.e620890d148586a5510c8c38ecfb1dbe.jpg", + "response": "A group of men standing in front of a white board.", + "id": 32415 }, { - "image_path": "G:\\images\\combined\\003794_jpg.rf.775e79336789db803a0cd07ed6056461.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is working on a construction site. He is using a handsaw to cut through a wooden beam. The wooden beams are made of wood and are in different sizes. The worker is standing on a wooden platform. The background is blurred and there are other workers visible in the distance. The worker is the main focus of the image.", - "id": 1810 + "image_path": "G:\\images\\combined\\006327_jpg.rf.64557db467c649632c1fad233800a9d3.jpg", + "response": "In the image, a group of workers wearing white, blue or yellow helmets are working on a rocky hillside next to a bridge. Some of them are using shovels and there is a pile of wood in the foreground. The sky is overcast and there are some green trees in the background.", + "id": 32416 }, { - "image_path": "G:\\images\\combined\\003796_jpg.rf.30612a796bf439b93a0c2b98a71184d8.jpg", - "response": "In the image, two people are working at a construction site. One person is wearing a yellow hard hat and is smiling while pulling on a wire. They are also wearing a pair of yellow gloves and have a yellow tool belt around their waist. They are standing on a metal platform and there is a puddle of water to their left. The person behind them is wearing an orange and yellow plaid shirt and is working further back on the platform. In the background, there is a large building under construction.", - "id": 1811 + "image_path": "G:\\images\\combined\\006328_jpg.rf.07bcc1ea22078fc040cc59d30dff5755.jpg", + "response": "A man in a hard hat is on a ladder against a blue sky.", + "id": 32417 }, { - "image_path": "G:\\images\\combined\\003797_jpg.rf.b92eed213ec1785bd4733ae90361eb71.jpg", - "response": "A group of people looking at a model train set.", - "id": 1812 + "image_path": "G:\\images\\combined\\006329_jpg.rf.3bfe34e9de2330426f2cc545e410c8ce.jpg", + "response": "A man wearing a yellow hard hat is standing next to a ladder.", + "id": 32418 }, { - "image_path": "G:\\images\\combined\\003798_jpg.rf.7503d763bc7246f01f97724cd78c88a4.jpg", - "response": "A sinkhole in the middle of a sidewalk has caused the city to close off the area.", - "id": 1813 + "image_path": "G:\\images\\combined\\00632_jpg.rf.759be877c48022ef66d2ebeabd1c879d.jpg", + "response": "In the image there are four people, three of them are wearing construction hats and one is wearing a white hat. They are standing in front of a building that is under construction. The person on the right in the front is holding a yellow safety helmet and a phone in his hands. There's a red utility trailer with some tools on it on the left side of the image.", + "id": 32419 }, { - "image_path": "G:\\images\\combined\\003799_jpg.rf.5417f8ccace8b34231068c821a21ed9a.jpg", - "response": "a construction worker in a red shirt and black pants standing on a bridge", - "id": 1814 + "image_path": "G:\\images\\combined\\006330_jpg.rf.4bcc6c2ff6a99f6cddc5ce2cab9189e5.jpg", + "response": "a person wearing a helmet and scarf standing in front of a building", + "id": 32420 }, { - "image_path": "G:\\images\\combined\\00379_jpg.rf.b6ac530ebafa6772d1870dd6b1bd2517.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a blueprint. The man on the left is holding the blueprint and the man on the right is talking on a cell phone. They are all standing in a construction site.", - "id": 1815 + "image_path": "G:\\images\\combined\\006331_jpg.rf.6fb403e79771378586ab4731e04ad9af.jpg", + "response": "The image shows four workers perched on a red bridge. They are wearing yellow helmets and work clothes. The bridge appears to be a red suspension bridge, with cables and metal frameworks visible. The workers are positioned at various points along the bridge, with two of them working on the left side and two more on the right. They seem to be engaged in maintenance or construction work. The sky is blue and cloudless in the background.", + "id": 32421 }, { - "image_path": "G:\\images\\combined\\0037aba41ecc724d.jpg", - "response": "a man in a suit speaking into a microphone", - "id": 1816 + "image_path": "G:\\images\\combined\\006332_jpg.rf.9b08757a362df735a8a6e43d7c7877dd.jpg", + "response": "In the image there are three people working on a construction site. Two of the people are wearing yellow vests and two of them are wearing blue vests. They are working on a blue structure that has Chinese characters on it. The characters say \"udosu\" on the left and \"zhanshi hua\" on the right. The people are wearing yellow, blue, and white hard hats. One person is using a blue tool on the ground and another person is using a blue tool that is suspended in the air.", + "id": 32422 }, { - "image_path": "G:\\images\\combined\\0037d767f56bf167.jpg", - "response": "A woman with glasses and a pink sweater stands in front of a wooden paneling wall. She is smiling and holding a certificate of appreciation. Another woman stands next to her, both of them looking at the camera.", - "id": 1817 + "image_path": "G:\\images\\combined\\006333_jpg.rf.03c3f457afdbbca686486d217804c738.jpg", + "response": "The image shows three men in blue shirts and yellow hats standing in front of a white building. They are wearing yellow helmets and red labor insurance helmets. The man on the left is holding a pen and paper, the man in the middle is wearing a watch, and the man on the right is standing next to a sign with a hand icon and the words \"\u7981\u6b62\u89e6\u6478\". There is also a red box next to the sign with the words \"\u5b89\u5168\u8b66\u544a\".", + "id": 32423 }, { - "image_path": "G:\\images\\combined\\0037ff28a4dfff25.jpg", - "response": "A red Pontiac GTO is parked on the side of the street. The hood of the car is up and the engine is visible. There is a green trash can next to the car. A store called \"The Common's Market\" is across the street and a restaurant called \"Asia Cup\" is next door. There are several signs on the buildings and a bench is visible in front of the restaurant.", - "id": 1818 + "image_path": "G:\\images\\combined\\006334_jpg.rf.0ae36caeeac3282248b318a8616d3b76.jpg", + "response": "The image shows two men wearing blue work clothes and yellow high visibility vests. The man on the left is wearing a red hard hat and is holding a piece of paper. The man on the right is wearing a helmet and has a QR code on the right side of his helmet. They are both standing in front of a construction site.", + "id": 32424 }, { - "image_path": "G:\\images\\combined\\003801_jpg.rf.28037efe7afd3a26f863d9000039a099.jpg", - "response": "The image shows three men in climbing gear and hard hats, climbing up a white metal tower. The tower is white and has three levels, with the three men climbing up the third level. The men are spread out, with one on the left side of the tower, one in the middle, and one on the right. They are all wearing blue helmets and some of them are also wearing gray jackets. The background is blue sky.", - "id": 1819 + "image_path": "G:\\images\\combined\\006335_jpg.rf.5027b5de827f8c0198ea9187c0a76f26.jpg", + "response": "A worker in an orange uniform and yellow hard hat is working on a large spool of black wire outdoors. He is wearing a white glove on his left hand and is holding a knife in his right hand. He is standing next to a large wooden spool of wire. There are power lines in the background.", + "id": 32425 }, { - "image_path": "G:\\images\\combined\\003802_jpg.rf.1cee61ec5eb0dd26948a74d42bbd743e.jpg", - "response": "A group of workers in hard hats and safety vests working on a large electrical transformer.", - "id": 1820 + "image_path": "G:\\images\\combined\\006336_jpg.rf.8427f17630ffc3341e8d7add855bac89.jpg", + "response": "A group of men in hard hats and work clothes are working on an electricity pylon in the mountains.", + "id": 32426 }, { - "image_path": "G:\\images\\combined\\003803_jpg.rf.6724e7bcc5ba05e9f83b4b62cc6068d2.jpg", - "response": "A man wearing a hard hat and a red helmet stands in front of a cement mixer. He holds a sign that says \"\u65b0\u9020\u5927\u6865\u670984\u5e74\u6842\u9f8430\u8f7d\" which I believe translates to \"The new bridge has been built for 84 years.\"", - "id": 1821 + "image_path": "G:\\images\\combined\\006337_jpg.rf.554e3fec9edb6dfde2e52950e4fcfe34.jpg", + "response": "A group of people working on machinery inside a factory.", + "id": 32427 }, { - "image_path": "G:\\images\\combined\\003804_jpg.rf.d1a23deab9724e5999e55fc805a7ed07.jpg", - "response": "The image shows a construction site with several workers. There is a large crane operating in the background and several smaller cranes are also visible. The workers are wearing yellow helmets and can be seen working on the construction site. There are also several other people in the image, some of them are standing and some are walking around the site. The construction site is located next to a field with a blue sky above.", - "id": 1822 + "image_path": "G:\\images\\combined\\006338_jpg.rf.b0232d62e5c2f4bdfbfd3976fce78430.jpg", + "response": "A worker is on a ladder and is working on a wall.", + "id": 32428 }, { - "image_path": "G:\\images\\combined\\003805_jpg.rf.fa85c6855d446ec8279c95d809364ee6.jpg", - "response": "A group of people looking at a map of a city.", - "id": 1823 + "image_path": "G:\\images\\combined\\006339_jpg.rf.5e9fd5a9b817ec6372ef93c088bf7277.jpg", + "response": "A group of workers wearing yellow and blue helmets are building a steel structure. Some of them are kneeling on the structure and secure some wires with pliers. In the background, a city is visible.", + "id": 32429 }, { - "image_path": "G:\\images\\combined\\003806_jpg.rf.52ed4c437f822caccbd77b8a292892af.jpg", - "response": "A man wearing a yellow hard hat is standing on some rocks, he is reaching up to grab a large bundle of steel rods that are being lowered to him by a crane. The steel rods are black and they are piled up on the ground next to the man. He is wearing brown pants and a grey shirt. In the background, there is a building under construction with a grey roof and several cranes working on it. There are also some white clouds in the blue sky.", - "id": 1824 + "image_path": "G:\\images\\combined\\006340_jpg.rf.df43be812b79d1a712fe2ac29b859f8d.jpg", + "response": "In the image two men are standing on a hillside wearing orange jackets and white helmets. They are standing next to a large piece of equipment that looks like a drone. They are working on the equipment, one of them is adjusting a yellow cable.", + "id": 32430 }, { - "image_path": "G:\\images\\combined\\003807_jpg.rf.1cc8042df17ec83c2593d59116f3a65e.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats repairing a black box mounted on the side of a building. The box appears to be an electrical panel. The workers are focused on the task at hand, with one of them using a tool to make adjustments. The scene is set outdoors, with a few wires and cables visible in the background. The photo is accompanied by a Weibo post, indicating that it was taken in Wenzhou, China.", - "id": 1825 + "image_path": "G:\\images\\combined\\006341_jpg.rf.56e9263d2575c2b3ae2f00bba1f086a4.jpg", + "response": "The image shows a group of people standing in a room. There are two men on the left and three men in the center of the image. One of the men in the center is wearing a white shirt and a tie. Another man on the right is wearing a grey shirt and glasses. A woman on the right is wearing a grey shirt and black pants. A man in the center is wearing a white shirt and a tie. Another man on the right is wearing a white shirt and black pants. A third man on the right is wearing a white shirt and black pants. A fourth man on the right is wearing a white shirt and black pants. A fifth man on the right is wearing a white shirt and black pants. A sixth man on the right is wearing a white shirt and black pants. A seventh man on the right is wearing a white shirt and black pants. A eighth man on the right is wearing a white shirt and black pants. A ninth man on the right is wearing a white shirt and black pants. A tenth man on the right is wearing a white shirt and black pants. A eleventh man on the right is wearing a white shirt and black pants. A twelfth man on the right is wearing a white shirt and black pants. A thirteenth man on the right is wearing a white shirt and black pants. A fourteenth man on the right is wearing a white shirt and black pants. A fifteenth man on the right is wearing a white shirt and black pants. A sixteenth man on the right is wearing a white shirt and black pants.", + "id": 32431 }, { - "image_path": "G:\\images\\combined\\003812_jpg.rf.5068d7a41f3e22afe94130b33a014f4f.jpg", - "response": "The image shows rescue workers in yellow vests and helmets standing on debris of a collapsed bridge. The bridge appears to be made of wood and has a structure that looks like a large A-frame. The debris is scattered across the ground and some of it is piled up on the left side of the image. The workers are standing on a long wooden beam that is placed on the debris. The photo was taken at night and the workers are wearing headlamps.", - "id": 1826 + "image_path": "G:\\images\\combined\\006342_jpg.rf.6a0dd1e014e22108ebcfb31b2b58b00c.jpg", + "response": "A construction worker in a grey t-shirt and white hard hat is showing a page of blueprints to another worker in a yellow hard hat. They are both standing in front of a construction site with a red and white fence.", + "id": 32432 }, { - "image_path": "G:\\images\\combined\\003813_jpg.rf.616bc00dbc01d53f35534e9593941d81.jpg", - "response": "A man in grey coveralls and a red hard hat is on a ladder working on power lines.", - "id": 1827 + "image_path": "G:\\images\\combined\\006343_jpg.rf.fe0fa1c987924871e009392136821b8e.jpg", + "response": "A worker in a red and grey jacket and a red helmet is handling some metal rods. He is in a construction site and there are some other metal rods around him.", + "id": 32433 }, { - "image_path": "G:\\images\\combined\\003814_jpg.rf.9cf067faa842d58b08c69cbda2c24f75.jpg", - "response": "In the image there are two workers wearing red and yellow hard hats. They are standing next to a large piece of machinery. The machinery is a yellow and black machine with a long black tube. The workers are standing on a dirt patch and there is a stone wall in the background. There is also a pile of grey rocks to the right of the workers.", - "id": 1828 + "image_path": "G:\\images\\combined\\006345_jpg.rf.85d5060b744f66b97ada4072de8e8cae.jpg", + "response": "The image shows a man in a hard hat drinking water from a clear plastic bottle. He is wearing a red hard hat, a striped shirt, and has a mustache. He is also wearing a blue watch. In the background, there is a bridge that the man is working on. The sky is blue with some clouds.", + "id": 32434 }, { - "image_path": "G:\\images\\combined\\0038158cb6a95317.jpg", - "response": "On a table, there are four bottles of different types of rum from the brand Brugal. The one on the left is the black rum, the one in the middle is the 1844, the one on the right is the 1888, and the last one is the 1938. Next to the bottles, there is a wooden box with the brand name on it. On the left side of the table, there is a gold-framed certificate with the word Brugal on it. On the right side of the table, there is a potted palm plant.", - "id": 1829 + "image_path": "G:\\images\\combined\\006346_jpg.rf.65b64089786a0a29a10183bc8b4969de.jpg", + "response": "The image shows a group of six men standing in front of a brick building. They are all wearing jackets and the men on the left and right are wearing dark colors, while the man in the center is wearing a red and black jacket. The men are all standing close together and are all looking in the same direction.", + "id": 32435 }, { - "image_path": "G:\\images\\combined\\003815_jpg.rf.b1294c1c3dce45b344b5e5e9d5027f98.jpg", - "response": "A worker in a safety uniform and yellow hat is seen from the waist up, holding a device and taking a reading from a power line. They are standing on a red and grey brick path, with a large white building and multiple grey power lines in the background.", - "id": 1830 + "image_path": "G:\\images\\combined\\006347_jpg.rf.daad684f56899bbd8f32a658391e784b.jpg", + "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a tunnel and looking into the distance. The man on the left is younger and has a concerned look on his face. The man on the right is older and also looks serious. They are both holding a blueprint in front of them.", + "id": 32436 }, { - "image_path": "G:\\images\\combined\\003816_jpg.rf.0fc1065ca88a543f98fabc6c6c7356cd.jpg", - "response": "A man wearing a red hard hat standing in front of a construction site.", - "id": 1831 + "image_path": "G:\\images\\combined\\006348_jpg.rf.263f535d604485586be47b37ce9e1ed4.jpg", + "response": "A group of people working on a construction site with a yellow excavator.", + "id": 32437 }, { - "image_path": "G:\\images\\combined\\003817_jpg.rf.ed60dcec39765aa72b91be62b0401f4f.jpg", - "response": "The image shows a group of construction workers gathered around a large crack in the concrete. There are seven people in the image, all wearing hard hats and safety vests. Some of the workers are standing, while one is kneeling down to inspect the crack. The workers are gathered around the crack, which is running diagonally across the concrete surface. There is a large building visible in the background, as well as a few cars parked nearby. The workers appear to be discussing the crack and planning how to repair it.", - "id": 1832 + "image_path": "G:\\images\\combined\\00634_jpg.rf.13c7f0103e08954306a49c8e43a508c7.jpg", + "response": "The photo shows a construction site in the city of Chongqing, with a pile of rubble in the foreground. In the background, a group of people are gathered, with one of them holding a yellow sign. There is also a large pipe in the scene.", + "id": 32438 }, { - "image_path": "G:\\images\\combined\\003818_jpg.rf.47bf0dbc4b914dd428e3893337afba70.jpg", - "response": "A worker in a red hard hat is using a large drill to bore into a red pipe. The pipe is located on the floor and the worker is standing over it. There is a red dolly located to the left of the pipe and a pile of red pipes located to the right of the pipe. The wall in the background is made of concrete.", - "id": 1833 + "image_path": "G:\\images\\combined\\00634_jpg.rf.2dbaf1d8b57e0d804f09100dd06e2edb.jpg", + "response": "The image shows a group of men standing on a construction site. They are wearing yellow and white reflective vests. In the background, there is a large pipe. To the left of the image, there is a sign that says \"\u4e2d\u56fd\u4e2d\u9752\u5c40\u52a0\u7eb3\u7b2c\u4e00\" in blue and white. In the foreground, there is a piece of paper with a yellow stripe that says \"\u6ce8\u610f\" in black.", + "id": 32439 }, { - "image_path": "G:\\images\\combined\\003819_jpg.rf.51f9e737f7e5d328377185fb0cdb46d1.jpg", - "response": "A man in grey shirt and gray pants with blue helmet on is working on a power line.", - "id": 1834 + "image_path": "G:\\images\\combined\\006350_jpg.rf.7d3dd194bf91182b3da038471648878d.jpg", + "response": "The image shows two men wearing yellow and white safety helmets, discussing a construction site. The man on the left is darker-skinned and wearing a yellow helmet, while the man on the right is lighter-skinned and wearing a white helmet. The man on the right is pointing to something on the construction site, and the other man is holding a plan in his hand. The plan is rolled up and shows a blueprint of the site. In the background, there is a yellow excavator.", + "id": 32440 }, { - "image_path": "G:\\images\\combined\\003820_jpg.rf.1f09d554afcd9de245f359643634f207.jpg", - "response": "A group of men standing in front of a building.", - "id": 1835 + "image_path": "G:\\images\\combined\\006351_jpg.rf.1c7034cb39b4d0619a88f8e0b702bcef.jpg", + "response": "A group of men walking down a sidewalk.", + "id": 32441 }, { - "image_path": "G:\\images\\combined\\003821_jpg.rf.ee00de6e4f54dfa9def2cc713b29820e.jpg", - "response": "A man wearing a yellow shirt and a yellow hard hat is working on a construction site. He is building a structure of metal rods and is holding a tool in his hand. There are other metal rods stacked around the structure and a large crane is visible in the background. The sky is blue and the building in the background is yellow and blue.", - "id": 1836 + "image_path": "G:\\images\\combined\\006352_jpg.rf.36ed04cebb036282f464d2f4101b24e1.jpg", + "response": "In the image two people are standing in a factory wearing hard hats. They are both holding notepads and are looking into a oven.", + "id": 32442 }, { - "image_path": "G:\\images\\combined\\003823_jpg.rf.ae4ce2afdc6b604199377c4abe822a31.jpg", - "response": "a group of men walking down a dirt road", - "id": 1837 + "image_path": "G:\\images\\combined\\006353_jpg.rf.be7b7c8a977deb8b5a0c2b23a768de29.jpg", + "response": "The image shows two miners working in a cave. They are both shirtless and wearing yellow helmets. One miner is on the left, holding a large wooden beam while the other is on the right, holding a metal mesh net. They are both in the process of installing a metal fence. The cave is dimly lit and the floor is covered with a layer of yellow sand. The wall on the right is white with black spots and the left wall is grey with black spots and a brown layer at the bottom. The left wall also has a square metal fence installed. The miners are very skinny and have strong muscles.", + "id": 32443 }, { - "image_path": "G:\\images\\combined\\003824_jpg.rf.66742a557434f134a71767db3da89673.jpg", - "response": "a yellow dump truck(11,205),(895,767)", - "id": 1838 + "image_path": "G:\\images\\combined\\006354_jpg.rf.6d14758f4e491f0210cde5cef6309960.jpg", + "response": "In the image there is a group of men working on a pole. The men are wearing orange jumpsuits. In the background there is a forest. There is a yellow truck parked next to the men.", + "id": 32444 }, { - "image_path": "G:\\images\\combined\\003825_jpg.rf.fc8466272f90e5ae3b9a7b40d2ed303c.jpg", - "response": "Two workers(148,452),(650,995)(328,221),(600,647) in a mine shaft, one of them is holding a large pickaxe.", - "id": 1839 + "image_path": "G:\\images\\combined\\006355_jpg.rf.7bd8df350bb937a62a2468600f9d57b7.jpg", + "response": "A worker is using a tool to chip away at ice that has formed on a power line. The ice is a few inches long and is hanging from the power line. The worker is wearing a yellow jacket and a blue hat with a white stripe.", + "id": 32445 }, { - "image_path": "G:\\images\\combined\\003826_jpg.rf.8ca49f80a59c1d146820e682191d57ed.jpg", - "response": "A man in a blue hat and orange vest is working on a power line. Another man in a blue hat and orange vest is watching him. There are two power poles with wires attached to them. There are also two other power poles in the background. The sky is overcast and there are trees in the foreground.", - "id": 1840 + "image_path": "G:\\images\\combined\\006356_jpg.rf.1c8771bbe40e301202af45ca202e85c8.jpg", + "response": "In the image there is a man on the left wearing a black suit and a tie, he is shaking hands with a man on the right who is wearing a grey suit. They are both shaking hands. In the background there is a black car. To the left of the image there is a stack of news papers with the date 20141022. Underneath the image there is a logo that says \"zhong jin jia you shang hang ke\" and the characters \"\u4e2d\u6c5f\u56fd\u9645\u5546\u8d38\u57ce\"", + "id": 32446 }, { - "image_path": "G:\\images\\combined\\003827_jpg.rf.5a9204f782c17f0c83301cbcd55a4502.jpg", - "response": "A man wearing a yellow hard hat and a orange and yellow safety vest.", - "id": 1841 + "image_path": "G:\\images\\combined\\006357_jpg.rf.fdd49226966265a0beda45ac2e99814b.jpg", + "response": "A pair of linemen work together to remove a bamboo shoot from a power line.", + "id": 32447 }, { - "image_path": "G:\\images\\combined\\003828_jpg.rf.251c89375e50b517897057b62078f8ed.jpg", - "response": "An electrician wearing a red jumpsuit and a yellow hard hat is working on a power line. He is kneeling down and looking at the equipment.", - "id": 1842 + "image_path": "G:\\images\\combined\\006359_jpg.rf.beeebce5500e9b99e3dac05205918e7d.jpg", + "response": "a man in a blue shirt is standing in a field", + "id": 32448 }, { - "image_path": "G:\\images\\combined\\003829_jpg.rf.8efc88dc208ca5744fe3c90db39b2e8d.jpg", - "response": "A man in a construction vest and hard hat is on a construction site. He is near a yellow piece of heavy machinery and is lifting a black cylinder or barrel. There is a second yellow piece of heavy machinery in the background. There are trees in the distance and a car is parked on the site.", - "id": 1843 + "image_path": "G:\\images\\combined\\00635_jpg.rf.28b76c1a0a237e58f3fe21be4dce7c16.jpg", + "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", + "id": 32449 }, { - "image_path": "G:\\images\\combined\\003831_jpg.rf.9fe4c42a120153acb16fb5b186e2a0e6.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 1844 + "image_path": "G:\\images\\combined\\00635_jpg.rf.4948e3e2169cbab0c2b23888194f02a7.jpg", + "response": "Three men in high visibility vests and hard hats are discussing plans while on a building site. One man is holding a set of plans and a cup.", + "id": 32450 }, { - "image_path": "G:\\images\\combined\\003832_jpg.rf.6d8a3b1ec3b4d4d92aed3fac129b1808.jpg", - "response": "A group of three men in blue hats and grey jumpsuits are working on a power line in a green, hilly area. They are digging up the ground with a shovel and fixing the power line.", - "id": 1845 + "image_path": "G:\\images\\combined\\006360_jpg.rf.2f660238b01d51f049e21fe605e0cc1f.jpg", + "response": "A group of men standing around a yellow truck.", + "id": 32451 }, { - "image_path": "G:\\images\\combined\\003834_jpg.rf.d356d06959305bf5536e6b6f14f1214c.jpg", - "response": "The image shows a large ship docked in a shipyard. The ship is green and red, and is labeled \"Jia Li Li 22\" on the side. There are several people in the foreground, with one person holding a rope and pulling on it. The other people are spread out, with some walking and some standing. There is a large red tower in the background, and another ship is visible in the far distance. The sky is white and overcast.", - "id": 1846 + "image_path": "G:\\images\\combined\\006361_jpg.rf.572be4627bb1433a202c68bbdc722745.jpg", + "response": "The image shows a group of men walking together. They are all wearing hard hats, and some of them are wearing suits. In the background, there are several buildings under construction. There is also a car parked on the right side of the image.", + "id": 32452 }, { - "image_path": "G:\\images\\combined\\003835_jpg.rf.a36daf1365375e4f824ca1191b5ecf4d.jpg", - "response": " Construction worker(78,366),(518,802) in a white hard hat(133,403),(281,598) with a red helmet(792,359),(997,629) on", - "id": 1847 + "image_path": "G:\\images\\combined\\006362_jpg.rf.5f99102b15b5525d6f0f2f8462facf2f.jpg", + "response": "A worker in a blue helmet is walking on the train tracks.", + "id": 32453 }, { - "image_path": "G:\\images\\combined\\003836_jpg.rf.5057783a36db17be5bc58a1f55979ddc.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing yellow hard hats and are focused on their tasks. One of the workers is kneeling on the ground and is holding a long piece of wood with a vice grip, possibly preparing to cut it. The other worker is standing and is swinging a tool over the long piece of wood. In the background, there is a building under construction with many metal bars visible. The sky is grey and overcast.", - "id": 1848 + "image_path": "G:\\images\\combined\\006363_jpg.rf.6fdf3d88f2465bdd8f3c9a2d2af6ea76.jpg", + "response": "a man wearing a exoskeleton suit holding a hard hat", + "id": 32454 }, { - "image_path": "G:\\images\\combined\\003837_jpg.rf.e1291d0be7c4030d53f1163913bd80a5.jpg", - "response": "In the image there is a group of rescue workers dressed in red and white hard hats standing around a rescued worker. The rescued worker is being held up by the rescue team and has a white helmet on. The background is blurry and there are more workers in the background dressed in different colored hard hats.", - "id": 1849 + "image_path": "G:\\images\\combined\\006364_jpg.rf.ccadbea7e267bd8dc6c8f1c25c595bb0.jpg", + "response": "A group of people, mostly men, are wearing red hard hats. They are standing in a tunnel. One man is wearing a white shirt and has his hand out to another man who is wearing an orange outfit. There are also two people in the background wearing black.", + "id": 32455 }, { - "image_path": "G:\\images\\combined\\003838_jpg.rf.5661d1dfd1864d14204514b6e000e912.jpg", - "response": "A worker in a red hard hat and blue coveralls is standing next to a large piece of equipment. The worker is looking at a control panel on the machine. There is a yellow hand rail next to the machine and a large metal cylinder on top of the machine. There are also several hoses and pipes connected to the machine.", - "id": 1850 + "image_path": "G:\\images\\combined\\006365_jpg.rf.c91eeb9c4ab20ccbbcdf1e7d20471404.jpg", + "response": "A construction site with several people working on it. There are four people working on a grid of rebar, with two of them in the center and one on each side. Another person is working on the left side of the image. In the background, there are two people working on the right side of the image. There are also two white chairs in the bottom left corner of the image.", + "id": 32456 }, { - "image_path": "G:\\images\\combined\\003839_jpg.rf.67cdbf6b98304cee39a71c31a64e93c4.jpg", - "response": "A group of men standing underneath a bent over power line.", - "id": 1851 + "image_path": "G:\\images\\combined\\006366_jpg.rf.0f98c13ec28f1188c68b97c8f5894b96.jpg", + "response": "A construction worker is working on a long white wall.", + "id": 32457 }, { - "image_path": "G:\\images\\combined\\003840_jpg.rf.2f3dcfd5fdd6340909e67a32b0048ae3.jpg", - "response": "A construction worker working on a large pipe in the ground.", - "id": 1852 + "image_path": "G:\\images\\combined\\006367_jpg.rf.8234a1a3b39fcf4e05b6a275f9eeca02.jpg", + "response": "A group of men standing in front of a building with one of them holding a whiteboard.", + "id": 32458 }, { - "image_path": "G:\\images\\combined\\003841_jpg.rf.4ea5c18e12ff2048c05744a8d3905510.jpg", - "response": "A construction site with two workers standing on a frame made of steel rods.", - "id": 1853 + "image_path": "G:\\images\\combined\\006368_jpg.rf.8bf8e7445636723ecd06c795f3f5b58e.jpg", + "response": "The image shows two men standing at a construction site, both wearing yellow jackets and white helmets. They are both looking at a blueprint that is spread out on the ground in front of them. The blueprint is large and takes up most of the image. The two men are standing quite close together, with one man to the left and the other to the right. They both have their arms resting on the blueprint, and they seem to be discussing something.", + "id": 32459 }, { - "image_path": "G:\\images\\combined\\003843_jpg.rf.507d7c71fc534929cbfbd250673d3c56.jpg", - "response": "In the image, workers are seen in a factory environment. They are wearing blue uniforms and protective gear. One worker is seen welding a large metal cylinder, while another worker is seen checking a machine. A third worker is seen in the background. There are two other workers visible in the image. The factory floor is filled with various machinery and equipment. A red light is seen emanating from the welding work.", - "id": 1854 + "image_path": "G:\\images\\combined\\006369_jpg.rf.f5c499b1e6643038857901f355c9e358.jpg", + "response": "A man in a red shirt and yellow hat working on a power line.", + "id": 32460 }, { - "image_path": "G:\\images\\combined\\003845_jpg.rf.92540a282a1abe243da00a5ca7752e91.jpg", - "response": "A woman with short black hair and a blue jacket standing next to a man with black hair and a brown jacket. They are both looking at a wall with signs on it.", - "id": 1855 + "image_path": "G:\\images\\combined\\00636_jpg.rf.c465cd9e1e3da8643b43aff2f551bd99.jpg", + "response": "A man wearing a hard hat and holding a book and rolled up plans, standing in front of a pile of rocks and with buildings in the background", + "id": 32461 }, { - "image_path": "G:\\images\\combined\\003847_jpg.rf.707e9bcd41df4ec8a0dd9870474710b6.jpg", - "response": "A man in a black shirt and white gloves is using a trowel to level some bricks. He is wearing a yellow hard hat and has a toothbrush moustache.", - "id": 1856 + "image_path": "G:\\images\\combined\\006370_jpg.rf.dcc73f5e2326dc56dc70efe2b9097123.jpg", + "response": "A man in a red work suit and a yellow hard hat stands on a construction site. He is wearing a pair of work gloves on his hands. In the background, there is a mountain.", + "id": 32462 }, { - "image_path": "G:\\images\\combined\\003848_jpg.rf.61413f741a5b04cc77081b5015562b05.jpg", - "response": "A group of workers are working on a construction site.", - "id": 1857 + "image_path": "G:\\images\\combined\\006371ab5d547d81.jpg", + "response": "A living room with a black flat screen TV mounted on a wall. The TV is showing a video game with two characters on the screen. The room has a Wii console and a Wii game displayed on the TV. There are chairs and a bench in the room.", + "id": 32463 }, { - "image_path": "G:\\images\\combined\\003849_jpg.rf.8b70bd8b9d0d34ed0f618993cdc05341.jpg", - "response": "A group of three men working on a large ship in the water. They are all wearing hard hats and are crouched down working on the ship. There are many pipes in the foreground of the image and the ship is still under construction.", - "id": 1858 + "image_path": "G:\\images\\combined\\006373_jpg.rf.a4a110c42cfdbcce49f3bb5f2d59d0fe.jpg", + "response": "A cement truck is unloading its load into a large ditch.", + "id": 32464 }, { - "image_path": "G:\\images\\combined\\003850_jpg.rf.eca02e9369b9e02bc20f05814d2cfcd2.jpg", - "response": "A worker is seen on a ladder in the foreground, working on the left wall of the photo. The wall is grey and the worker is wearing a yellow jacket. In the distance, another worker is seen on the right wall, wearing a white helmet and a yellow vest. They are standing on a ladder. In the middle of the photo, a long stretch of train tracks is seen, running from the foreground to the middle of the photo. The tracks are brown and made of steel.", - "id": 1859 + "image_path": "G:\\images\\combined\\006374_jpg.rf.c96b06a681cee6c11aec5308cf000205.jpg", + "response": "A man wearing a hard hat standing in front of a small building.", + "id": 32465 }, { - "image_path": "G:\\images\\combined\\003851_jpg.rf.240b36f409493998c78b6612e0e3a546.jpg", - "response": "A worker is seen in a factory, standing in front of a large metal machine that looks like a square oven with a large opening in the middle, with flames coming out from it. The worker is wearing a blue uniform and a red helmet, and is holding a long metal rod. The background shows other workers and machines in the factory.", - "id": 1860 + "image_path": "G:\\images\\combined\\006375_jpg.rf.9fbd652c6fd507c76236ce4f8f17c35f.jpg", + "response": "A construction worker wearing a white hard hat and work clothes is working on a construction site. He is standing next to a large concrete pillar and appears to be pulling on a metal rod that is sticking out of the pillar. There is a large amount of mud on the ground around the pillar and the worker.", + "id": 32466 }, { - "image_path": "G:\\images\\combined\\003852_jpg.rf.664b060565fedfb11ffcc9e43422b0e7.jpg", - "response": "A woman wearing a helmet and harness, walking across a tightrope over a rocky cliff.", - "id": 1861 + "image_path": "G:\\images\\combined\\006377_jpg.rf.a24fc117a614c2b0a7530574f71dcaba.jpg", + "response": "A line of workers wearing yellow hard hats and orange safety harnesses.", + "id": 32467 }, { - "image_path": "G:\\images\\combined\\003853_jpg.rf.dab2bc8f02c3fc1420494d4662722bd0.jpg", - "response": "a group of men standing on a building", - "id": 1862 + "image_path": "G:\\images\\combined\\006378_jpg.rf.6ef15eeb86f163045d59c4bae2f5c05e.jpg", + "response": "A crane is lifting a large piece of metal over a city street.", + "id": 32468 }, { - "image_path": "G:\\images\\combined\\003854_jpg.rf.b9603c583c58de709eec5010054b5ff0.jpg", - "response": "The image shows two men standing in front of a construction site. They are both wearing yellow hard hats and black vests. The man on the left is holding a clipboard and pen, and both men are looking at the clipboard. In the background, there is a large excavator digging the ground. To the right of the men, there is a blue fence. On the fence, there are several posters. In the upper right corner, there are several advertising boards. The ground is covered with debris.", - "id": 1863 + "image_path": "G:\\images\\combined\\006380_jpg.rf.b0f8c91464148b49a1c3eb61f0c8d2ad.jpg", + "response": "An electrician is working on some power lines.", + "id": 32469 }, { - "image_path": "G:\\images\\combined\\003855_jpg.rf.8875013d2579c323f056fa54aa61277a.jpg", - "response": "a group of people sitting around a table", - "id": 1864 + "image_path": "G:\\images\\combined\\006381_jpg.rf.7ed6e492d778f8227bd1ff9dafad046a.jpg", + "response": "A power line tower with two men working on it.", + "id": 32470 }, { - "image_path": "G:\\images\\combined\\003856_jpg.rf.9420c890bded4490231cc13f5c6eb953.jpg", - "response": "A man in a yellow helmet is working on a power line in the snow.", - "id": 1865 + "image_path": "G:\\images\\combined\\006383_jpg.rf.bdafec43cb3e5b6a4a0083fedcee8765.jpg", + "response": "The image shows two workers in a tunnel, with one of them using a tool to break up rocks. The workers are wearing yellow helmets and the one using the tool is also wearing a white shirt. The tunnel is filled with rocks and debris on the floor.", + "id": 32471 }, { - "image_path": "G:\\images\\combined\\003857_jpg.rf.b1c8432b82267298100351f779f41980.jpg", - "response": "In the image there are two workers wearing orange and blue uniforms and hard hats. They are on a construction site with a city skyline in the background. The workers are standing on a platform and appear to be working on a large piece of machinery. There are also train tracks and a crane in the background.", - "id": 1866 + "image_path": "G:\\images\\combined\\006384_jpg.rf.616e19b24f7a5f54e714354837156697.jpg", + "response": "In the image, two men are working on a pole in the ground. The men are wearing blue and orange hard hats. To the left of the men, there is a green cornfield. Behind the cornfield, there is a building with a sign on it. The sign has Chinese characters on it. To the right of the men, there are red chairs and a table.", + "id": 32472 }, { - "image_path": "G:\\images\\combined\\003859_jpg.rf.a155a01292578b406d7bfa7164e6abc6.jpg", - "response": "A group of four men looking at blueprints in front of a building that says \"\"And\u7530\u5f00\u5143\u5efa\u7b51\u5b89\u88c5\u5de5\u7a0b\u6709\u9650\u516c\u53f8\"\" on it.", - "id": 1867 + "image_path": "G:\\images\\combined\\006385_jpg.rf.734abfa5951e5fe694919ccccceb3f6d.jpg", + "response": "A worker wearing a yellow hard hat and green work gear is suspended from a metal pole by a safety harness. He is wearing a yellow hard hat and has a hook in each hand. He is standing on a construction site with a building in the background.", + "id": 32473 }, { - "image_path": "G:\\images\\combined\\003860_jpg.rf.4a1a3baf4cdc1748fe9f6caefe19e45e.jpg", - "response": "A group of men in hard hats are walking together. They are all wearing different colored shirts and pants. One man is wearing a red hard hat, one man is wearing a blue shirt, one man is wearing a white shirt, one man is wearing a white shirt and khaki pants, one man is wearing a white shirt and black pants, one man is wearing a white shirt and grey pants, one man is wearing a black shirt and grey pants, one man is wearing a black shirt and grey pants, one man is wearing a white shirt and khaki pants, one man is wearing a blue shirt and khaki pants, and one man is wearing a white shirt and khaki pants. They are all walking in front of a blue wall and a building that is under construction with scaffolding.", - "id": 1868 + "image_path": "G:\\images\\combined\\006386_jpg.rf.42757bcec6ec07e2c688a695a3c35be7.jpg", + "response": "A group of people standing around a man who is showing them something on a map.", + "id": 32474 }, { - "image_path": "G:\\images\\combined\\003861_jpg.rf.d527076e7a58735e0ea59541dea69740.jpg", - "response": "A woman in a hard hat and grey jumpsuit is pointing to a large white and grey transformer. Another woman in a hard hat is standing behind her. The transformer is on a trailer and is located in front of a building. There are two large grey columns next to the transformer.", - "id": 1869 + "image_path": "G:\\images\\combined\\006387_jpg.rf.8513f8a332a37f5efc5f090a0b72324a.jpg", + "response": "The image shows two men standing on a scaffolding platform against a dark roof. The roof is made of grey tiles and has some wooden beams showing. The sky is white and there are no other people or objects in the image.", + "id": 32475 }, { - "image_path": "G:\\images\\combined\\003862_jpg.rf.86c3ef685d6b82286b86b623536d7b5f.jpg", - "response": "A worker on a roof in the process of building a house.", - "id": 1870 + "image_path": "G:\\images\\combined\\006388_jpg.rf.ad48475749fa1aa196c3cbe36768584b.jpg", + "response": "A worker in a factory, surrounded by smoke.", + "id": 32476 }, { - "image_path": "G:\\images\\combined\\003863_jpg.rf.953430bb018d1f5f8b8b50c4921459da.jpg", - "response": "An electrician in a blue shirt and orange hard hat working on a red and black machine with a pressure gauge and a pump.", - "id": 1871 + "image_path": "G:\\images\\combined\\006389_jpg.rf.6692646b01df33481da015a6dcac69f9.jpg", + "response": " Miners(447,153),(905,886)(10,44),(458,952) in a cave", + "id": 32477 }, { - "image_path": "G:\\images\\combined\\003864_jpg.rf.470b5f22155414505620027b40678e58.jpg", - "response": "A group of three workers are working on a ship. One is working on the left side of the ship, one is in the center, and one is on the right side. They are all wearing hard hats and the person in the center is wearing a white shirt. The person on the right is wearing a blue shirt. The person on the left is holding a tool and the person in the center is welding. There is a large ship in the background.", - "id": 1872 + "image_path": "G:\\images\\combined\\00638b89f1c6c142.jpg", + "response": "A page from an anime show with the heading Scene 4 Attacking Ramsus' vessel.", + "id": 32478 }, { - "image_path": "G:\\images\\combined\\003865_jpg.rf.122e6bc76612c382ebc1bea551024c12.jpg", - "response": "a woman(353,237),(470,999) wearing a black skirt", - "id": 1873 + "image_path": "G:\\images\\combined\\00638_jpg.rf.d97607aa4996bdeb93840c8cd485f2a3.jpg", + "response": "A construction worker wearing a blue hard hat and an orange safety vest.", + "id": 32479 }, { - "image_path": "G:\\images\\combined\\003866_jpg.rf.9161c148d55dea6f15ba408aa18f0f8d.jpg", - "response": "A rescue team of 16 people from the fire station in the city of Shangri-La went missing in the mountains of Yunnan Province, China. The rescue team was last seen on a mountain trail at 11:30 a.m. on July 14. The mountainous area where the rescue team went missing is known for its dangerous trails and extreme weather conditions. The rescue team had planned to search for a missing person in the area. The missing rescue team included 6 experienced mountaineers, 2 local guides, and 8 other members. The rescue team had all the necessary equipment and supplies for a multi-day mission. The rescue team had also informed the local police and rescue center about their mission and planned route. The rescue center has deployed additional rescue teams and rescue equipment to search for the missing rescue team. The rescue center is also in touch with the missing rescue team's communication device to track their location and status. The rescue center is working round-the-clock to ensure the safety and successful rescue of the missing rescue team.", - "id": 1874 + "image_path": "G:\\images\\combined\\00638_jpg.rf.e2dc077fa164b6f345bd387590a281f6.jpg", + "response": "A construction worker wearing a blue hard hat and an orange safety vest.", + "id": 32480 }, { - "image_path": "G:\\images\\combined\\003867_jpg.rf.65ecdd11ff96819df1ca6f912d1eccfe.jpg", - "response": "An oil worker in camouflage and a red helmet is operating an oil drilling rig in the desert.", - "id": 1875 + "image_path": "G:\\images\\combined\\006390_jpg.rf.9cb8ece094310741fd51ebda0f50b707.jpg", + "response": "A man in a blue shirt and blue hat working on a power line.", + "id": 32481 }, { - "image_path": "G:\\images\\combined\\003868_jpg.rf.7e23a441fbc2f3a3df2ab8a11905de3e.jpg", - "response": "The image shows a large building under construction. The building has a metal framework on the outside, and two workers can be seen in the foreground, wearing hard hats and looking up at the structure. The sky is grey and overcast.", - "id": 1876 + "image_path": "G:\\images\\combined\\006391_jpg.rf.918d442021f13888d45e696d7dc7ebe6.jpg", + "response": "A woman in black and white is talking to a man with a microphone.", + "id": 32482 }, { - "image_path": "G:\\images\\combined\\003869_jpg.rf.415d06b56e74fa7e4e087c53b6eb1995.jpg", - "response": "A group of people standing around a construction site looking at a blueprint.", - "id": 1877 + "image_path": "G:\\images\\combined\\006392_jpg.rf.4e97f36bd5eaffcbe10d9557342c47fe.jpg", + "response": "The image shows two workers in blue hard hats and white protective masks, with one worker carrying a large sledgehammer and the other worker holding a longhandled tool. They are both wearing yellow work vests and are on a steel staircase and platform.", + "id": 32483 }, { - "image_path": "G:\\images\\combined\\003871_jpg.rf.bab5f752db9d5cfd55a408e2e756abc0.jpg", - "response": "In the image, two workers are constructing a footpath on the side of a cliff. The footpath is made of dirt and rock, and the cliff is high. The workers are wearing yellow helmets and uniforms. One of the workers is holding a hose, and there is a backpack on the ground. The background shows a mountain range.", - "id": 1878 + "image_path": "G:\\images\\combined\\006394_jpg.rf.876c1b1575b9eb352538e793e1990702.jpg", + "response": "A busy street scene with a power pole with a traffic light on it. There are many people walking around and some are riding motorcycles. There are buildings on both sides of the street and a few cars are parked or driving.", + "id": 32484 }, { - "image_path": "G:\\images\\combined\\003872_jpg.rf.4242e00673cdb78c9067e6ea4dc107de.jpg", - "response": "A group of people standing around a bulldozer at a construction site.", - "id": 1879 + "image_path": "G:\\images\\combined\\006395_jpg.rf.27e81814420057dc95181f6be512edcf.jpg", + "response": "In the image there are two construction workers on a building site. They are both smiling at the camera. The man on the left is wearing a yellow high visibility vest and a red hard hat. The man on the right is wearing a blue hard hat and a yellow high visibility vest. In the background there is a yellow tractor.", + "id": 32485 }, { - "image_path": "G:\\images\\combined\\003873_jpg.rf.8098043422187b030d02e9a70feea26a.jpg", - "response": "The image shows several construction workers wearing hard hats and high visibility vests, working on a building site. They are constructing a large metal framework, with some of them pulling on a rope to secure a section of rebar.", - "id": 1880 + "image_path": "G:\\images\\combined\\006396_jpg.rf.534782629cd14f7f8f8ce80c02109be5.jpg", + "response": "In the image there are two people wearing yellow and orange safety vests and white helmets. They are talking about a blueprint that is lying on a construction site. The man on the left is wearing a blue helmet and his right hand is on the table, while his left hand is supporting the blueprint. The man on the right is wearing a white helmet and his left hand is on the table, while his right hand is holding a pen. They are both looking at the blueprint.", + "id": 32486 }, { - "image_path": "G:\\images\\combined\\003874_jpg.rf.d9573e2dac6b93344c80851e20f4487f.jpg", - "response": "A man in a green uniform and yellow hat is climbing a metal tower.", - "id": 1881 + "image_path": "G:\\images\\combined\\006398_jpg.rf.c8c89b56c438920e3a6b64e012781ea5.jpg", + "response": "A construction site with two workers.", + "id": 32487 }, { - "image_path": "G:\\images\\combined\\003875_jpg.rf.a0e9673e38a61dbff32c219a4c0a9942.jpg", - "response": "A group of men in hard hats walking down a street.", - "id": 1882 + "image_path": "G:\\images\\combined\\006399_jpg.rf.a36a9744f1e095a0463135365e1222c7.jpg", + "response": "A construction worker wearing a grey shirt and grey jeans with a orange hard hat on.", + "id": 32488 }, { - "image_path": "G:\\images\\combined\\003876_jpg.rf.f7941bd0d64ba3cafbe7547bbdaa9083.jpg", - "response": "A group of men standing on the shore of a body of water.", - "id": 1883 + "image_path": "G:\\images\\combined\\0063cc2c5f7d82ed.jpg", + "response": "A bright blue colored car is parked on the side of the road. The car has a pink sticker on the windshield. There is a yellow car parked next to the blue car. There are two people in the background. One person is wearing a blue shirt and has blonde hair. The other person is wearing a pink shirt. There is a tan building in the background. There is a sign on the building. There is a black and white sign on the building. There is a yellow and black sign on the building. There is a blue and white sign on the building. There is a red and white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the", + "id": 32489 }, { - "image_path": "G:\\images\\combined\\003877_jpg.rf.e49ed05793388ae16c7cf7e3de55e7dc.jpg", - "response": "a group of people standing together holding boxes of food and water", - "id": 1884 + "image_path": "G:\\images\\combined\\006400_jpg.rf.d4799cb344778a62837dc8afff57090f.jpg", + "response": "Three men in hard hats standing together with their arms around each other at a construction site", + "id": 32490 }, { - "image_path": "G:\\images\\combined\\003878_jpg.rf.0f2c06591d8c60483b9c1f4d8aa3fb74.jpg", - "response": "A group of linemen in orange jumpsuits and blue hardhats are in a field, holding onto power lines.", - "id": 1885 + "image_path": "G:\\images\\combined\\006401_jpg.rf.ca7d00b767925caf5713336deee17d5b.jpg", + "response": "A firefighter(138,133),(584,867) wearing a white helmet(342,315),(473,490) and a yellow oxygen tank(437,555),(587,797) is climbing down into a hole in the ground.", + "id": 32491 }, { - "image_path": "G:\\images\\combined\\003879_jpg.rf.34de44fa77f0deec712825afcc8ca8bc.jpg", - "response": "A man wearing a yellow hard hat is working with a cutting tool that is creating sparks. He is wearing a white shirt and is working on a construction site.", - "id": 1886 + "image_path": "G:\\images\\combined\\006402_jpg.rf.048946cc720eb3a6ff71f80105033725.jpg", + "response": "A group of men working on a yellow and black truck.", + "id": 32492 }, { - "image_path": "G:\\images\\combined\\00387_jpg.rf.02d3e58848f307e050328ef88000ae0f.jpg", - "response": "A woman in a suit and hard hat talking to two men in orange vests in a warehouse.", - "id": 1887 + "image_path": "G:\\images\\combined\\006403_jpg.rf.a94a8ed5ecf98a3fbc5fd2f420384aec.jpg", + "response": "A worker wearing a yellow hat is working on a pipe with a red hose. He is sitting on a stool and holding a pair of pliers. There are several other workers in the background, some are wearing yellow hats and some are wearing blue. They are all working on pipes.", + "id": 32493 }, { - "image_path": "G:\\images\\combined\\00387_jpg.rf.f98a36c6e1de71b1deeccd57c15206fc.jpg", - "response": "A woman in a suit and hard hat talking to two men in orange vests in a warehouse.", - "id": 1888 + "image_path": "G:\\images\\combined\\006404_jpg.rf.0a1bc78ffc304afef68b0270716ce644.jpg", + "response": "A group of men standing around a construction site", + "id": 32494 }, { - "image_path": "G:\\images\\combined\\003880_jpg.rf.8806e67412d33c766c12a43dafa42d2b.jpg", - "response": "A man in a yellow hard hat is on a construction site. He is using a power tool and standing on a ladder. The man is also wearing a grey jacket and green pants. In the background, there is a city and a mountain.", - "id": 1889 + "image_path": "G:\\images\\combined\\006405_jpg.rf.e350f4461f21535518f6a24f58e7f4c3.jpg", + "response": "In the image there is a person wearing a yellow hard hat, safety glasses, and work gloves. They are working on a construction site, using a saw to cut through a metal rod. The person are kneeling down on a brick surface and there is a lot of metal pieces and construction tools around.", + "id": 32495 }, { - "image_path": "G:\\images\\combined\\003881_jpg.rf.e251fd07b68f138f769a3fc9db9b5555.jpg", - "response": "A group of four people walking down a street.", - "id": 1890 + "image_path": "G:\\images\\combined\\006406_jpg.rf.990c8f003508cf61e10f05354a4ba841.jpg", + "response": "An engineer in a red hat sitting on the ground next to a power pole.", + "id": 32496 }, { - "image_path": "G:\\images\\combined\\003882_jpg.rf.6f6524f56f8bd7abc3a93e67fd9375d3.jpg", - "response": "An electrician is working on a telephone pole.", - "id": 1891 + "image_path": "G:\\images\\combined\\006408_jpg.rf.953c7a6e5ecb6e33f11e5bbefa8a94a3.jpg", + "response": "A group of men in suits and hard hats are walking in a line. They are on a construction site with a building under construction. There is a banner with Chinese characters on it hanging on the left side of the image. In the background there is a partially constructed building with several floors and a steel scaffolding. There are also some plants in the foreground.", + "id": 32497 }, { - "image_path": "G:\\images\\combined\\003883_jpg.rf.22bb074116729fda17888fe56f0d4508.jpg", - "response": "A man and a woman wearing orange and yellow vests and hard hats are looking at a clipboard the woman is holding. They are standing in front of a large construction site with a crane and rusted metal structures in the background.", - "id": 1892 + "image_path": "G:\\images\\combined\\006409_jpg.rf.4a0eb67428bdc87f29da1bbddc5f1f0f.jpg", + "response": "The image shows a group of men standing in front of a bus, shaking hands. Some of the men are wearing ties and one is wearing a white helmet. The bus is a white color and is parked on the left side of the image. In the background, there is a blue sky with no clouds.", + "id": 32498 }, { - "image_path": "G:\\images\\combined\\003884_jpg.rf.f05c4796c0e04f291357f2dc2942dbd9.jpg", - "response": "The image shows a group of firefighters in blue uniforms and yellow helmets digging a hole in the ground with shovels. The firefighters are wearing black uniforms with yellow helmets and yellow reflective stripes on their shoulders. They are standing in a pit that they have dug with their shovels. The ground is covered in dirt and there are trees visible in the background.", - "id": 1893 + "image_path": "G:\\images\\combined\\00640_jpg.rf.1b496544d47573344bf674669004d563.jpg", + "response": "A group of men(380,337),(469,622)(128,480),(231,807)(339,396),(391,586)(688,328),(775,653)(2,483),(128,858) standing in front of a building under construction", + "id": 32499 }, { - "image_path": "G:\\images\\combined\\003885_jpg.rf.fce4f2644cce44f3d6f47925386dc7cd.jpg", - "response": "a group of men walking down a street", - "id": 1894 + "image_path": "G:\\images\\combined\\00640_jpg.rf.ccf1b031dc1d371dd4f961031d37eec0.jpg", + "response": "Men(127,480),(233,806)(380,337),(469,622)(337,397),(390,586)(686,328),(776,653)(2,482),(129,858) standing in front of a building that is under construction", + "id": 32500 }, { - "image_path": "G:\\images\\combined\\003886_jpg.rf.165583d71a3140f49b84797ab72b34cd.jpg", - "response": "An electrician repairs a power line.", - "id": 1895 + "image_path": "G:\\images\\combined\\006410_jpg.rf.f5fe30f9357af57730a6d732842aba6d.jpg", + "response": "A group of men standing in a dirt lot.", + "id": 32501 }, { - "image_path": "G:\\images\\combined\\003887_jpg.rf.40f1f7ef54c8bfabe0f27d4e40c78c53.jpg", - "response": "A group of men in suits and hard hats are gathered around a man who is pointing to a posterboard that says \"\u57ce\u5efa\u676f\u9879\u76ee\u89c2\u6469\u4f1a\". The man pointing is wearing a suit and a red hard hat.", - "id": 1896 + "image_path": "G:\\images\\combined\\006411_jpg.rf.d6ef20627f49a11bc5cc900046635ca7.jpg", + "response": "The image shows a group of men gathered around a large metal door with a window. They are all wearing hard hats and one of them is holding a long, red rod with a flame on the end. The flame is being used to light the room, which has a few pieces of metal machinery in it. The background is a blue wall and a brick wall.", + "id": 32502 }, { - "image_path": "G:\\images\\combined\\003888_jpg.rf.0399babb7864f30c0525adb605548191.jpg", - "response": "A group of workers standing in front of a large ship.", - "id": 1897 + "image_path": "G:\\images\\combined\\006412_jpg.rf.201dff8f0c4b82efa566a1c1125ffc7e.jpg", + "response": "The image shows a tunnel with two workers inside. One worker is on the left and is wearing a white helmet and dark clothes. The other worker is on the right and is wearing a yellow helmet and coveralls. In the background, a yellow machine is working in the tunnel. It appears to be\u6316ing the ground.", + "id": 32503 }, { - "image_path": "G:\\images\\combined\\003889_jpg.rf.47990fd74db0f081174f21c331f48856.jpg", - "response": "A worker wearing a yellow helmet is using a green machine with two yellow handles and a black cord with yellow cables to cut through a concrete road.", - "id": 1898 + "image_path": "G:\\images\\combined\\006414_jpg.rf.df4e566b8b9fa67bd2b207ac445dc8b1.jpg", + "response": "In the image, two men are standing in front of a construction site. The man on the left is wearing camouflage clothing and a red hard hat. The man on the right is wearing a black suit and a red hard hat. They are both holding hands. In the background, there is a green construction tent with a red sign that reads \"Safety First, People Always Come First\". There are also several other people in the background.", + "id": 32504 }, { - "image_path": "G:\\images\\combined\\003890_jpg.rf.a3b2ef189ba81f928fabf8bf29eaddc1.jpg", - "response": "a group of men standing on the street", - "id": 1899 + "image_path": "G:\\images\\combined\\006415_jpg.rf.1c258ecd01167aa459d5d1df8ee1425a.jpg", + "response": "Two construction workers dressed in hi vis vests and hard hats are talking in a building site.", + "id": 32505 }, { - "image_path": "G:\\images\\combined\\003891_jpg.rf.2e4ce2144e96617444fd973ad61c630a.jpg", - "response": "In the image there are two engineers in blue and yellow work wear with blue helmets. They are talking in front of a building under construction. The building is brown and grey and made of bricks. There are also red scaffolding around the building and a blue sky.", - "id": 1900 + "image_path": "G:\\images\\combined\\006416_jpg.rf.12e50a33b76f25fb1009e959ede29e92.jpg", + "response": "A group of people standing in front of a bridge holding a banner that says 'China Hong Kong Railway Institution' on it.", + "id": 32506 }, { - "image_path": "G:\\images\\combined\\003892_jpg.rf.0f948cd949868af274220421481e8512.jpg", - "response": "A group of men working on a large black metal object.", - "id": 1901 + "image_path": "G:\\images\\combined\\006417_jpg.rf.eee22e42c120d6cfe477461e9117609d.jpg", + "response": "A large tunnel with a man standing in it.", + "id": 32507 }, { - "image_path": "G:\\images\\combined\\003893_jpg.rf.d27dac61e5e64ac4f12ce515db92b654.jpg", - "response": "A group of men walking down a street.", - "id": 1902 + "image_path": "G:\\images\\combined\\006418_jpg.rf.eea2e3efe8944087874ea0e5887c4986.jpg", + "response": "The image shows a train track with train tracks on both sides. In the middle of the image, there are four workers wearing blue helmets and clothes. They are working on the train tracks, with two of them holding tools and standing on the tracks, and the other two holding the other end of the tool. There is a car next to the workers, and a red object is placed on the ground near the workers.", + "id": 32508 }, { - "image_path": "G:\\images\\combined\\003894_jpg.rf.c1e1c25f08685d43c57be97215385a96.jpg", - "response": "The three workers in front of the electricity transmission tower.", - "id": 1903 + "image_path": "G:\\images\\combined\\006419_jpg.rf.9142e9d696af5851536994222d001026.jpg", + "response": "In the image, a worker is seen crouching down in a factory. The factory is filled with steel pipes and machinery. The worker is wearing a blue shirt, a yellow helmet, and glasses. The background shows a yellow and white building.", + "id": 32509 }, { - "image_path": "G:\\images\\combined\\003895_jpg.rf.b5e363199ac0daa4a3fc88bc6d36f7c6.jpg", - "response": "The image shows four men working in a stone cave. They are wearing yellow helmets and uniforms. The men are removing soil and rock from a cart.", - "id": 1904 + "image_path": "G:\\images\\combined\\006421_jpg.rf.f4b3ce0ebe74b98c0b7feaa868ffe68d.jpg", + "response": "A group of police officers standing around.", + "id": 32510 }, { - "image_path": "G:\\images\\combined\\003896_jpg.rf.1ea5f4755d573fc3efbd65aa1087f6ec.jpg", - "response": "In the image, several men wearing hard hats are walking through a lush green forest at night. They are carrying shovels and backpacks. The forest is full of lush green plants and there are some fallen branches on the ground.", - "id": 1905 + "image_path": "G:\\images\\combined\\006422_jpg.rf.1c02d7feeca207c0774f0df5de616740.jpg", + "response": "a group of men walking across a bridge", + "id": 32511 }, { - "image_path": "G:\\images\\combined\\003897_jpg.rf.d3bd00a11f67c82ef0c9aeeab63232e7.jpg", - "response": "A man in a yellow hard hat is using a shovel to dig a hole in the ground. He is wearing a black jacket and white gloves. The ground is covered in dirt and there is a small wooden post sticking out of the ground next to the hole. There is a pile of grey rocks to the left of the hole and a pile of dirt to the right. In the background, there is a roof of a house covered in snow.", - "id": 1906 + "image_path": "G:\\images\\combined\\006423_jpg.rf.9d9026772fcf9bac1a9657ccabbc92d4.jpg", + "response": "A man in a high visibility vest and hard hat is standing in a quarry with two diggers working in the background. The man is pointing to the left and is on a cell phone.", + "id": 32512 }, { - "image_path": "G:\\images\\combined\\003898_jpg.rf.bc5a97caf93bfa20f57a382f87977ee5.jpg", - "response": "a group of men standing on a basketball court", - "id": 1907 + "image_path": "G:\\images\\combined\\006424_jpg.rf.f94c1281a3cad627e3498c129df493bf.jpg", + "response": "The image shows two men crossing a river. They are wearing yellow hard hats and carrying backpacks. The men are barefooted and are walking on rocks and pebbles. The river is shallow and rocky, with snow on the ground around it. The sky is overcast and there are some trees in the background.", + "id": 32513 }, { - "image_path": "G:\\images\\combined\\003899_jpg.rf.3a161b8d48b64b3bc29041b4f8124eb5.jpg", - "response": "A man wearing a blue, red and white striped shirt and a yellow hard hat is sitting on the arm of a yellow and orange bulldozer. The man is holding blueprints in his hand.", - "id": 1908 + "image_path": "G:\\images\\combined\\006425_jpg.rf.741ca41620036fb791686e6b79fc1c3a.jpg", + "response": "The image shows three construction workers standing on a bridge at night. They are all wearing yellow hard hats and grey construction vests. The worker on the left is holding a large red pipe while the worker in the middle is pouring concrete into a bucket. The worker on the right is holding two buckets, one in his right hand and the other on the ground. The bridge appears to be made of steel and has wooden planks laid across it. The sky is dark and there are no other people or vehicles visible in the image.", + "id": 32514 }, { - "image_path": "G:\\images\\combined\\0038c797a3708652.jpg", - "response": "A group of four people standing together in front of a black backdrop.", - "id": 1909 + "image_path": "G:\\images\\combined\\006426_jpg.rf.0633d38753d4bfe60f7a010c1fd84a2e.jpg", + "response": "A construction worker in a yellow hard hat and orange work vest.", + "id": 32515 }, { - "image_path": "G:\\images\\combined\\003900_jpg.rf.6b668035e80aa92877719382dd08218b.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 1910 + "image_path": "G:\\images\\combined\\006427_jpg.rf.1330f7f3f1f4b72dbbbea2e8afbfd242.jpg", + "response": "A man wearing a white shirt and a red helmet stands in a construction area. He is holding a blue folder and looking through a piece of surveying equipment.", + "id": 32516 }, { - "image_path": "G:\\images\\combined\\003901_jpg.rf.f624299281730343d3173248b510f446.jpg", - "response": "The image shows two workers repairing a power pole. They are wearing safety gear, including hard hats and safety belts. One worker is standing on the ground, while the other worker is standing on a ladder. The workers are repairing the insulators on the power pole.", - "id": 1911 + "image_path": "G:\\images\\combined\\006428_jpg.rf.abf2b11402333c71356f4be30884d807.jpg", + "response": "A group of people standing around each other", + "id": 32517 }, { - "image_path": "G:\\images\\combined\\003902_jpg.rf.cf2eff57413e67a3cc123f0b5d8a0f18.jpg", - "response": "A couple of men working on power lines.", - "id": 1912 + "image_path": "G:\\images\\combined\\006429_jpg.rf.c743baef08ca335eca77aa528c311622.jpg", + "response": "A group of rescue workers in orange jumpsuits and yellow helmets are in a flooded street. They are wearing orange jumpsuits and yellow helmets. Some of them are holding blue plastic pipes. In the background, there are buildings on both sides of the street. Some of the buildings have orange doors and windows. There is a white boat in the middle of the street. A man in a white shirt is standing in the background on the right side of the street. There is a black and yellow striped pole in the foreground on the right side of the street. There is a large silver object on the pole. There is a white sign on the side of a building in the background on the right side of the street.", + "id": 32518 }, { - "image_path": "G:\\images\\combined\\003903_jpg.rf.b9cc7352c85439722fae3e69a3055f17.jpg", - "response": " Miners(357,379),(561,997)(788,350),(997,997)(614,429),(686,740)(527,441),(600,860) working in a mine", - "id": 1913 + "image_path": "G:\\images\\combined\\006430_jpg.rf.2ccdb4e1a99e9d0a7a93282d41f34d22.jpg", + "response": "The image shows a group of three Chinese miners in a dark coal mine. They are wearing hard hats and one of them is holding a long, thick steel beam. Another miner is using a drill to work on the steel beam. The miners are hunched over and appear to be focused on their task. The background is blurred, emphasizing the focus on the miners.", + "id": 32519 }, { - "image_path": "G:\\images\\combined\\003904_jpg.rf.2d9b019215418236fc31e798e7a93efd.jpg", - "response": "a group of men in suits and hard hats are walking", - "id": 1914 + "image_path": "G:\\images\\combined\\006431_jpg.rf.892f36c8a627d458337f73d148bb91dd.jpg", + "response": "A large group of workers dressed in green camouflage clothing and red hard hats are lined up. Some of the workers are carrying shovels.", + "id": 32520 }, { - "image_path": "G:\\images\\combined\\003905_jpg.rf.afe7e4d7d4424627a34fb6c532830d65.jpg", - "response": "An elderly Chinese man wearing a yellow hard hat and camouflage jacket sits on a construction site. He is wearing a yellow hard hat and camouflage jacket. His hands are resting on a\u7b3c, a mesh construction material. In the background, there are other construction sites and a blue sky.", - "id": 1915 + "image_path": "G:\\images\\combined\\006432_jpg.rf.68ebd7419b38ee2d797dd2c2f6cfda1f.jpg", + "response": "A group of people standing around a large orange and grey tunneling machine.", + "id": 32521 }, { - "image_path": "G:\\images\\combined\\003907512c0624c9.jpg", - "response": "A framed picture of a man and his name is Ke Pualok.", - "id": 1916 + "image_path": "G:\\images\\combined\\006433_jpg.rf.75542d870000ab129dea38d0c6818f83.jpg", + "response": "A group of workers in yellow hard hats are working on a bridge.", + "id": 32522 }, { - "image_path": "G:\\images\\combined\\003907_jpg.rf.692e29c1c0f48c4e927f233902f489ec.jpg", - "response": "A construction site with a man wearing a yellow hard hat and a blue shirt crouching down and welding two steel beams together. He is wearing a black tool belt and has a yellow hard hat on. There is a yellow and grey crane operating in the background and a mountain in the distance. There are several other people scattered around the site some are further away and some are closer. There are piles of steel beams and rebar in various sizes around the site. The sky is blue with white clouds.", - "id": 1917 + "image_path": "G:\\images\\combined\\006436_jpg.rf.bd0919d4967f8e087b5a2b803f7cada0.jpg", + "response": " Rescuers(387,511),(483,996)(315,537),(397,996)(93,548),(209,996)(1,517),(83,996) at the scene of the gold mine collapse in Yantai, in eastern China's Shandong province", + "id": 32523 }, { - "image_path": "G:\\images\\combined\\003908_jpg.rf.bbd87416e15e338831e23ab3320b4a65.jpg", - "response": "A man on a ladder pointing to a ceiling.", - "id": 1918 + "image_path": "G:\\images\\combined\\006437_jpg.rf.27055e4e037c21c625ae466ba21a5b66.jpg", + "response": "A group of men in blue jackets and yellow hard hats are standing around a telephone pole. They are in front of a village and it is raining.", + "id": 32524 }, { - "image_path": "G:\\images\\combined\\003909_jpg.rf.69caac442333c840087a75d659a156b0.jpg", - "response": "Men walking down a sidewalk next to a large building under construction.", - "id": 1919 + "image_path": "G:\\images\\combined\\006438_jpg.rf.135daf912ac0d56abf807da656ea4ebb.jpg", + "response": "The image shows a group of people standing on a metal staircase. Some of them are wearing yellow, blue, and red hard hats. The staircase is located inside a cave or an underground space. The people seem to be rescue workers or miners, as they are equipped with tools and wearing specialized headwear. The scene appears to be a rescue operation or an exploration in a challenging environment.", + "id": 32525 }, { - "image_path": "G:\\images\\combined\\00390_jpg.rf.0185c7818217e54c0a2c5f00edf4d930.jpg", - "response": "Two men in a room with various pieces of equipment. One of the men is holding a doll.", - "id": 1920 + "image_path": "G:\\images\\combined\\006440_jpg.rf.4aaef3a419154819e6252742b7147c35.jpg", + "response": "The workers are working on the large metal structure.", + "id": 32526 }, { - "image_path": "G:\\images\\combined\\00390_jpg.rf.43d9d93729c03c736466a0c2f0c13fe0.jpg", - "response": "Two men in a room with a hard hat on.", - "id": 1921 + "image_path": "G:\\images\\combined\\006441_jpg.rf.b9afd7aa98cb08e071ac346ab6ef819b.jpg", + "response": "The image shows an older man wearing a yellow hard hat and safety glasses, standing in front of a construction site. He is looking down at the ground, which has a small rectangular hole in it. The man is wearing a white shirt and has a mustache. He is standing on the right side of the frame.", + "id": 32527 }, { - "image_path": "G:\\images\\combined\\003910_jpg.rf.e13cdd45cc0c4baa7b5b79d81971ad98.jpg", - "response": "A group of people working in a hole in the ground.", - "id": 1922 + "image_path": "G:\\images\\combined\\006442_jpg.rf.319dcd55b6f0d583ea1efb215e1d617a.jpg", + "response": "The image shows a group of construction workers on a building site. They are all wearing hard hats and high visibility clothing. Some of them are standing on a walkway, while others are working on a steel girder. There is a large concrete pipe on the left side of the image, and a smaller one on the right. In the background, there is a hill with some power lines on it.", + "id": 32528 }, { - "image_path": "G:\\images\\combined\\003913_jpg.rf.3368f7db02a38626cb891ada48c335ec.jpg", - "response": "The image shows a group of 12 men standing on a platform at a construction site. They are wearing hard hats and appear to be posing for a photo. The platform they are standing on is a deep red color, and there is a banner above them that reads \"\u6c5f\u897f\u4e30\u57ce\u7535\u5382\u4e09\u91cc\u5468\u6269\u5efa\u5de5\u7a0b100\u5929\u52a8\u5458\u5927\u4f1a\". There is also a red and white banner to the far left that reads \"\u79d1\u6280\u662f\u7b2c\u4e00\u751f\u4ea7\u529b\".", - "id": 1923 + "image_path": "G:\\images\\combined\\006443_jpg.rf.472179ccfb6702a5987ebaab0d3675fd.jpg", + "response": "A worker in a yellow hard hat is holding a clipboard and looking up at a power line. Another worker is on a ladder working on the power line.", + "id": 32529 }, { - "image_path": "G:\\images\\combined\\003914_jpg.rf.4b684705bf39d13f8ab7bd52c9c93d46.jpg", - "response": "The photo shows a group of men standing on a red carpet. The men are wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a building. The sky is white.", - "id": 1924 + "image_path": "G:\\images\\combined\\006445_jpg.rf.8d63c2cff95eb3bdd394593ccf6a5df7.jpg", + "response": "A man in a blue uniform is standing on a bridge. There are two other men standing next to him, one wearing a orange shirt and a blue hard hat, and the other wearing a grey shirt and a yellow hard hat. In front of them is a table covered in various items including multiple bottles and a cup.", + "id": 32530 }, { - "image_path": "G:\\images\\combined\\003915_jpg.rf.8ea067b991ffa8996259e44d6ac71778.jpg", - "response": "The image shows a group of people working on a road. There are two people in the foreground, both wearing green camouflage clothing and red hats, and they are breaking up large rocks with sledgehammers. Another six people are visible in the background, working on the road in the mountain.", - "id": 1925 + "image_path": "G:\\images\\combined\\006447_jpg.rf.311e1fa04a8b918a2afe1076860efe7a.jpg", + "response": "A group of people standing in front of a building site.", + "id": 32531 }, { - "image_path": "G:\\images\\combined\\003916_jpg.rf.4566ed8618b647b856680cc48fdca05e.jpg", - "response": "A construction worker in an orange uniform and yellow hard hat is using a hose to pour concrete onto a grid of rebar.", - "id": 1926 + "image_path": "G:\\images\\combined\\006448_jpg.rf.d3309a41b3166c3744542e92abce676e.jpg", + "response": "The image shows a group of workers in blue uniforms and red hats standing on a section of train tracks. They are all holding onto a long metal bar, which appears to be a piece of train track. The workers are in various positions, with some standing on the left side of the tracks and others on the right. Some are closer to the front, while others are further back. There is a crowd of people in the background, watching the workers from a safe distance. They are standing on both sides of the tracks, near the edge of the image.", + "id": 32532 }, { - "image_path": "G:\\images\\combined\\003917_jpg.rf.c7ee7c783b5e8095d45d9a95c7801b34.jpg", - "response": "The image shows three Chinese workers in front of a large ship. They are all wearing yellow hard hats and work clothes. The man on the left is wearing a white shirt and beige pants. The man in the middle is wearing a brown shirt and grey pants. The man on the right is wearing a blue shirt and blue jeans. They are all wearing black belts. In the background, there is a large black and orange ship. To the right of the ship, there is a white yacht. In front of the ships, there is a yellow and green striped curb. The sky is a light blue color.", - "id": 1927 + "image_path": "G:\\images\\combined\\006449_jpg.rf.0cd701d0e226903d68b84ae58bdad2fe.jpg", + "response": "A worker is standing in a tunnel with two trucks.", + "id": 32533 }, { - "image_path": "G:\\images\\combined\\003918_jpg.rf.7d01d4e7cd17068b214a2fd1d990cc68.jpg", - "response": "A man in a red suit and red hat working on an oil well.", - "id": 1928 + "image_path": "G:\\images\\combined\\00644_jpg.rf.761f43734ec33b7b894b5bde6fe33ccc.jpg", + "response": "A group of three men walking down a street.", + "id": 32534 }, { - "image_path": "G:\\images\\combined\\003919_jpg.rf.cb6706b43e80ce976aa5f616a521c00f.jpg", - "response": "A man in a blue shirt and blue hat working on a power line.", - "id": 1929 + "image_path": "G:\\images\\combined\\00644_jpg.rf.cb2b501cdef6d001e432c414a1581bd9.jpg", + "response": "a group of men walking in front of a truck", + "id": 32535 }, { - "image_path": "G:\\images\\combined\\003920_jpg.rf.059ccfcc264aa3dc8403a5074324054e.jpg", - "response": "In the image there are several people standing around a large sign that says \u201cChina Southern Power Grid\u201d. Under the sign there is a hole in the ground where two men are working. They are wearing blue and orange work clothes and are using a large tool to fix something in the ground. There is also a traffic cone placed near the hole.", - "id": 1930 + "image_path": "G:\\images\\combined\\006450_jpg.rf.6cc21d2472b86a87e15cef74b4b71d8e.jpg", + "response": "The image shows a scene of a construction site with several people present. In the foreground, a worker is laying bricks while a woman is observing the process. Another worker is on the left side of the image. A few onlookers are also present, one of them is holding a cup. Everyone, including the workers are wearing yellow helmets. In the background, there are a few other people and a building.", + "id": 32536 }, { - "image_path": "G:\\images\\combined\\003921_jpg.rf.b176ad6bcb6ddf92cc52f5298310a2ed.jpg", - "response": " Construction workers(460,334),(685,925)(457,7),(650,466)(3,73),(210,685) in China have been spotted using a rather unconventional method of laying pipes.", - "id": 1931 + "image_path": "G:\\images\\combined\\006451_jpg.rf.063b10e6d168e58ec882d41f77aad94f.jpg", + "response": " Men(762,307),(948,997)(359,306),(612,692)(576,299),(748,999)(101,300),(350,738)(0,303),(173,997)(297,363),(397,699)(0,300),(61,999) standing around a piece of glass(89,476),(957,999)", + "id": 32537 }, { - "image_path": "G:\\images\\combined\\003922_jpg.rf.e7b1f1bd7e2fb5ef53ffb9e510020fd3.jpg", - "response": "A worker in a white suit and hard hat is using a long stick to stir a large pool of glowing yellow liquid. The liquid is spewing out of a large pipe and is spreading across the floor. There is a large piece of equipment behind the worker and another person can be seen in the background. The room is filled with an orange glow from the liquid metal.", - "id": 1932 + "image_path": "G:\\images\\combined\\006453_jpg.rf.a7b7fc722b0d4b2c11698db0c4602911.jpg", + "response": "A group(620,326),(844,996)(430,380),(617,997)(379,371),(526,997)(595,301),(710,996) of men standing in a tunnel", + "id": 32538 }, { - "image_path": "G:\\images\\combined\\003923_jpg.rf.d8c79edffc77259a7842ffa2d45d0309.jpg", - "response": "In the image two men are working on a construction site building a house. The men are both wearing yellow hard hats and yellow and grey safety vests. The man on the left is also wearing light blue jeans. They are standing next to each other and smiling. In front of them is a blue sky and a house that is still in the process of being built.", - "id": 1933 + "image_path": "G:\\images\\combined\\006454_jpg.rf.9cde12fe407145189287cd96eec45f79.jpg", + "response": " Two men(396,346),(640,997)(588,273),(909,997) in hard hats(600,272),(744,423)(467,346),(599,469) and high visibility vests(420,555),(635,997)(128,616),(209,758) standing in front of a piece(0,358),(431,869) of construction equipment", + "id": 32539 }, { - "image_path": "G:\\images\\combined\\003924_jpg.rf.1ed911eae89e4f6ddd10fa2bf4e61d71.jpg", - "response": "A worker is welding some steel in a factory. He is wearing a grey top, a brown hat, and a white mask over his face to protect himself from the sparks and smoke. He is standing on a brown stool and leaning over some steel, which is lying on the floor in front of him. He is holding a welding tool in his right hand and there is a bright orange glow coming from the welding and sparks are flying in all directions. The sparks are also visible on the steel and some smoke is rising from it. The background is blurry and there is a person in the far left corner of the image.", - "id": 1934 + "image_path": "G:\\images\\combined\\006456_jpg.rf.01a539193e375fdd7b37f3fef42f2921.jpg", + "response": "A construction site with several people working on it. They are working on a large grid of metal rebar. There is a man in a red hard hat holding a large tool. Another man is in the bottom right corner wearing a red hard hat. There is a person in the top left corner wearing a white shirt and a red hat. There is a person in the top right corner wearing a white shirt and a blue hat.", + "id": 32540 }, { - "image_path": "G:\\images\\combined\\003925_jpg.rf.77876e8511476acef73a1b43341bd2a4.jpg", - "response": "a wall on the side of a building", - "id": 1935 + "image_path": "G:\\images\\combined\\006457_jpg.rf.a8e2cce7bb13f39f37eef1bf5566c6c8.jpg", + "response": "In the image there are two men walking through a mine tunnel. They are both wearing blue coveralls and white helmets. In front of them on the right side of the image there are several steel pipes. Some of them are orange and others are silver. In the background there are grey stone walls and the roof of the tunnel is white. There is also a ladder on the left side of the image.", + "id": 32541 }, { - "image_path": "G:\\images\\combined\\003926_jpg.rf.b76af67721f55903c094c7a18d7f1173.jpg", - "response": "In the image two men are standing next to a yellow building. They are wearing construction gear. One man is wearing a black leather jacket and the other is wearing a grey jacket. The man on the left is also wearing a white glove. They are standing in front of a white trailer. To the right of the men there is a pile of wooden planks. In front of the building there is a large square hole in the ground.", - "id": 1936 + "image_path": "G:\\images\\combined\\006458_jpg.rf.8f400640fcf005804a99099cc05e5ba6.jpg", + "response": "A construction site with a group of men working on a building.", + "id": 32542 }, { - "image_path": "G:\\images\\combined\\003927_jpg.rf.68a4d83df0db8e3f3be8c5605ee627bd.jpg", - "response": "A man in a red hard hat is measuring the ceiling with a tape measure while another man watches.", - "id": 1937 + "image_path": "G:\\images\\combined\\006459_jpg.rf.06651f2c7ba18b9d00afee3d4e699a66.jpg", + "response": "Two men in high visibility clothing and hard hats stand in front of a large white dome. They are both holding clipboards and talking.", + "id": 32543 }, { - "image_path": "G:\\images\\combined\\003928_jpg.rf.a2ababec01df5388e4bc217012b9d107.jpg", - "response": "In the image there are two workers wearing yellow helmets and work clothes. They are working on a construction site with a large pile of steel parts next to them. The background is a large mountain and a white tunnel.", - "id": 1938 + "image_path": "G:\\images\\combined\\006460_jpg.rf.c6ba719539adbdae5d820e9e82003bce.jpg", + "response": "The image shows a group of men working on a snowy day. They are all dressed in safety gear, including hard hats and safety vests. The men are standing under a power line, and snow is falling around them. One of the men is pointing towards the right, possibly indicating something to his colleagues. The image focuses on the group of men, but it also shows a portion of the power line and the snowfall in the background.", + "id": 32544 }, { - "image_path": "G:\\images\\combined\\003929_jpg.rf.4232c5b915ca395121e96d7f8eb15faf.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and safety helmets. The machinery they are working on is covered in oil and mud. There are several oil pipes in the foreground.", - "id": 1939 + "image_path": "G:\\images\\combined\\006461_jpg.rf.60737a2fbc9d5778df63e3bc69e9b9ab.jpg", + "response": "A group of three men standing in front of a bulldozer. They are all wearing hard hats and one man is wearing a yellow safety vest. They are all smiling at the camera.", + "id": 32545 }, { - "image_path": "G:\\images\\combined\\00392_jpg.rf.7d7aead6344f3a2afa09a0e2dc24ee7b.jpg", - "response": "A man wearing a hard hat and high visibility vest, standing with his arms crossed in front of a construction site.", - "id": 1940 + "image_path": "G:\\images\\combined\\006462_jpg.rf.c8f92bcde3f6ff45990d1642b81e4003.jpg", + "response": "In the image there is a person wearing a white hard hat and work clothes. They are standing next to a large pipe with a wheel on it. The person is also wearing work gloves. The background shows a lot of pipes.", + "id": 32546 }, { - "image_path": "G:\\images\\combined\\003930_jpg.rf.de3b67242f522c41723ed9bba18352e3.jpg", - "response": "Four workers in front of a red storage container.", - "id": 1941 + "image_path": "G:\\images\\combined\\006463_jpg.rf.b78293980a04e04789df3e1e1ac80863.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 32547 }, { - "image_path": "G:\\images\\combined\\003931_jpg.rf.876ca7f92e8146e11edd9601177a61c8.jpg", - "response": "A man in a harness is high up in the air, hanging from a wire by a pole.", - "id": 1942 + "image_path": "G:\\images\\combined\\006464_jpg.rf.39301aaff950f561b371daa91c428b16.jpg", + "response": "A group of men working on a scaffold.", + "id": 32548 }, { - "image_path": "G:\\images\\combined\\003932_jpg.rf.5aa2a607a72d4c7eb24fd2cc0380f8be.jpg", - "response": "A worker wearing a orange jacket and a yellow helmet is welding two steel bars together. The sparks from the welding are flying in all directions. There are more steel bars stacked in the background.", - "id": 1943 + "image_path": "G:\\images\\combined\\006465_jpg.rf.2c06617245a5739b3a88025635513fb0.jpg", + "response": "A man in a blue uniform and yellow hard hat is walking across a concrete floor carrying a metal framework. The metal is stacked up against a yellow support beam on the right side of the room. The man is walking with the metal framework towards the left side of the room. There is a yellow ladder against the wall on the left side of the room and another one on the right side. In the background, there is a building that is under construction.", + "id": 32549 }, { - "image_path": "G:\\images\\combined\\003933_jpg.rf.9261aa65d1aaf9f391b9282947cbc7e4.jpg", - "response": "The image shows three workers in blue and orange work clothes and yellow helmets. They are holding large hoses that are connected to a yellow truck. The truck is in the background, and the workers are in the foreground. The workers are crouching down, possibly preparing to use the truck. The ground around them is wet.", - "id": 1944 + "image_path": "G:\\images\\combined\\006466_jpg.rf.75d3c14efd3d7240341bfdec496842eb.jpg", + "response": "A group of three workers are working on a construction site. Two of the workers are on the ground and one is high up on a scaffolding. The worker at the top of the scaffolding is wearing a white hard hat and has a tool belt around their waist. The two workers on the ground are also wearing hard hats. One of the workers on the ground is holding a clipboard and a pencil and the other worker is pointing towards something on the building they are working on.", + "id": 32550 }, { - "image_path": "G:\\images\\combined\\003934_jpg.rf.2a6d31a7442c1198735791093fbbe5ca.jpg", - "response": "A man in a black shirt and orange hard hat is using a shovel to dig into the ground. He is standing in a pile of dirt and there is a large stick with a stone embedded in it next to him. He is also holding a hose in his other hand. There is a large rock in the pile of dirt and a small shovel is sticking out of it.", - "id": 1945 + "image_path": "G:\\images\\combined\\006467_jpg.rf.28e3f2f1a79a20ea4bb09281b1f95cb9.jpg", + "response": " A worker(2,392),(190,996) surveys the damage after a 12-story building under construction in the eastern Chinese city of Wenzhou suddenly collapsed on Sunday night. The cause of the collapse is under investigation.", + "id": 32551 }, { - "image_path": "G:\\images\\combined\\003935_jpg.rf.dd7bf8cd31d7d98763a87df2d5790c48.jpg", - "response": "The image depicts two men dressed in business suits and yellow hard hats, standing in front of a construction site. Both men are holding a rolled-up blueprint, and one of them is pointing at it. The man pointing is wearing a watch on his left wrist. They are both wearing sunglasses, with the man on the left wearing black shades and the man on the right wearing silver shades. The left man is also holding a smartphone with a black case. The construction site is fenced off and currently under scaffolding.", - "id": 1946 + "image_path": "G:\\images\\combined\\006468_jpg.rf.eff4d979a4a4a39b285cbc22930441d4.jpg", + "response": "A group of four men standing around a large metal bin.", + "id": 32552 }, { - "image_path": "G:\\images\\combined\\003936_jpg.rf.62bcc57b8b4cb1bf612fe182701f9795.jpg", - "response": "A worker in a yellow hard hat is using a tool to make adjustments to a concrete wall. The wall is grey and has various markings on it. To the left of the worker is a yellow pole. In the background, there is a ladder and a pipe.", - "id": 1947 + "image_path": "G:\\images\\combined\\006469_jpg.rf.6c9a7e47d9eb080356ab605fbf980d51.jpg", + "response": "A man and a woman carrying wood on a construction site.", + "id": 32553 }, { - "image_path": "G:\\images\\combined\\003937_jpg.rf.fafaa6619984c973e310408c88aa64cb.jpg", - "response": "The picture shows two workers in a large pipe. The pipe is grey and white, and is circular. The workers are both wearing yellow hard hats, with one on the left holding a long tool and the other on the right. The one on the right is also wearing a white coat. The pipe is dirty, with some dark grey patches. The workers are at the bottom of the pipe, which is dark grey.", - "id": 1948 + "image_path": "G:\\images\\combined\\006470_jpg.rf.2755733dd1a760aa0117545c2ff756e2.jpg", + "response": "a group of people standing together", + "id": 32554 }, { - "image_path": "G:\\images\\combined\\003938_jpg.rf.77c443425606987ed305577e3c233dfe.jpg", - "response": "Three workers in orange protective clothing and orange hard hats, standing in front of a large metal\u8f6e\u6bc2.", - "id": 1949 + "image_path": "G:\\images\\combined\\006471_jpg.rf.42e61ddcbe612b7ebeb65ade348e01c2.jpg", + "response": "The image shows a group of men standing around a white car. Some of them are shaking hands. The car is parked in front of a building. The men are wearing different colored shirts and ties. Some of them are wearing blue, white, red, yellow and black. One of the men is wearing a blue shirt and a tie. Another man is wearing a white shirt and a tie. The background is a building with a white wall and a window. The image also shows a handbag on the ground near the men.", + "id": 32555 }, { - "image_path": "G:\\images\\combined\\003939_jpg.rf.cbd6a5ac634cbe3577a8840993cf69a4.jpg", - "response": "A construction worker is working on a scaffolding above a busy city street. He is wearing a yellow hard hat and a green shirt. He is standing on a green net and is wearing a safety harness. He is working on a white pipe. The city street is busy with traffic. There are many cars on the street, some driving and some parked. There is also a bus on the street. In the background, there are tall buildings.", - "id": 1950 + "image_path": "G:\\images\\combined\\006472_jpg.rf.42a3ec8a59b089ffecc6d4b39cb28049.jpg", + "response": "Three men in yellow safety vests and hard hats looking at a blueprint on a jobsite.", + "id": 32556 }, { - "image_path": "G:\\images\\combined\\003940_jpg.rf.82c3e4f3980aaec1353c9a0f802f6202.jpg", - "response": "A group of three people working on a building that is still under construction.", - "id": 1951 + "image_path": "G:\\images\\combined\\006473_jpg.rf.946e6979e188e5d099822eef862b9cde.jpg", + "response": "A worker in a red uniform and red helmet is operating machinery at an oil well.", + "id": 32557 }, { - "image_path": "G:\\images\\combined\\003942_jpg.rf.0ae4092287402f025cca51e6328260dd.jpg", - "response": "A couple of men standing on a stairwell in a factory.", - "id": 1952 + "image_path": "G:\\images\\combined\\006474_jpg.rf.df7de16bcde46d7eaba655855726b091.jpg", + "response": "A worker is looking at a glowing orange light.", + "id": 32558 }, { - "image_path": "G:\\images\\combined\\003943_jpg.rf.92bc710734a5d5f92ce46417e01aafe0.jpg", - "response": "A group of people standing in a tunnel.", - "id": 1953 + "image_path": "G:\\images\\combined\\006475_jpg.rf.058e7dbd85742b7bdff7cdb916e2f8c2.jpg", + "response": "A worker in a red helmet is on a ladder and is reaching up to a machine. Another worker in a blue helmet is crouching under the machine. They are both wearing work clothes. The wall behind them is red and has many square holes in it. There is a table in front of the workers with some tools on it.", + "id": 32559 }, { - "image_path": "G:\\images\\combined\\003944_jpg.rf.1a14c019a587e19134f14726c3788d06.jpg", - "response": "A couple of men in orange jumpsuits and red hard hats are working on pipes at a construction site.", - "id": 1954 + "image_path": "G:\\images\\combined\\006476_jpg.rf.306cbc4a5401f52921e5f57a407ef399.jpg", + "response": " Three men(171,183),(502,997)(428,153),(863,997)(329,183),(514,909) in hard hats(359,182),(456,255)(625,151),(761,258) shake hands(415,526),(521,615) on a construction site", + "id": 32560 }, { - "image_path": "G:\\images\\combined\\003945_jpg.rf.2cc6ba7e3d15917f4c8ab7ad8b02862e.jpg", - "response": "The image shows three workers from the power company standing in a lush green forest. They are all dressed in blue uniforms and are wearing blue helmets. One of them is holding a large pole. The workers are standing under a fallen tree which has been cut off at the top. The tree is green and has a thick trunk. The workers are all focused on their task of removing the fallen tree.", - "id": 1955 + "image_path": "G:\\images\\combined\\006477_jpg.rf.90bbd9edd7dfd47c0173765f93c1c1ca.jpg", + "response": "A group of people working on a construction site.", + "id": 32561 }, { - "image_path": "G:\\images\\combined\\003946_jpg.rf.d620eac5afc3beefb139ae0009e974a1.jpg", - "response": "a group of people standing around each other", - "id": 1956 + "image_path": "G:\\images\\combined\\006478_jpg.rf.a0f99a55affd9dad9b0bd4026382f664.jpg", + "response": "A construction worker wearing a yellow hard hat and a plaid shirt is working on a construction site. He is wearing a yellow hard hat and has a yellow tool belt around his waist. He is working on a piece of wood with a large saw. In the background, there are blue skies with white clouds.", + "id": 32562 }, { - "image_path": "G:\\images\\combined\\003947_jpg.rf.81d04bd5d418ba269e9a3470823aac08.jpg", - "response": "The image features a group of people standing in the street. There is a woman wearing a grey suit and a tie standing to the left of the image. She is talking to a group of men. One of the men is wearing a green shirt and a black tie. Another man is wearing a brown shirt and a black tie. There is a man wearing a black suit and a tie standing to the right of the image. In the background, there are a few cars and buildings.", - "id": 1957 + "image_path": "G:\\images\\combined\\006479_jpg.rf.e443a56cc3505ef28c4a7bf5d478ee07.jpg", + "response": "A construction worker in a red jumpsuit and a yellow safety vest with a red hard hat on. They are on a construction site and are working on a building. They are on a concrete pillar holding a tool.", + "id": 32563 }, { - "image_path": "G:\\images\\combined\\003948_jpg.rf.d900ede2fc994ec013cd2f45e9032cf8.jpg", - "response": "a group of men working on a power line", - "id": 1958 + "image_path": "G:\\images\\combined\\006480_jpg.rf.1dc5d99defe76ac9a474c21645b92fef.jpg", + "response": "The image shows a group of people gathered around a model of a large building complex. The model is on a glass table and features a landscape garden with a river running through it. The people are standing in front of a large staircase that is curved and leads to the second floor. The wall behind the staircase features a painting hanging on it. The people are looking at the model attentively. At the bottom right of the image, there is a white rectangular logo forfang.com.", + "id": 32564 }, { - "image_path": "G:\\images\\combined\\003949_jpg.rf.24907fd5b77e00f0c4eec0708139646d.jpg", - "response": "In the image there are two workers in green and white uniforms and white helmets. They are working on power lines and repairing a transformer. The transformer is white and says '\u78d0\u77f3\u6709\u6a5f\u8fb2\u6cd5' on it. There are many power lines around them and they are on a lift.", - "id": 1959 + "image_path": "G:\\images\\combined\\006482_jpg.rf.886d2e2f55b1d0df3d07a6e33109c6e1.jpg", + "response": "A construction crew works on a large rock wall.", + "id": 32565 }, { - "image_path": "G:\\images\\combined\\003950_jpg.rf.e47944c01980c3fa15dd4eed2320d084.jpg", - "response": "A group of men in suits and hard hats stand on a construction site.", - "id": 1960 + "image_path": "G:\\images\\combined\\006483_jpg.rf.7c39d692ca77202afce5dbe9fa8da965.jpg", + "response": "A man and woman in hard hats looking at a clipboard.", + "id": 32566 }, { - "image_path": "G:\\images\\combined\\003951_jpg.rf.a31a7164bf053330e34fa266238b9f94.jpg", - "response": "The image shows two construction workers wearing yellow helmets and gray shirts, who are working on a construction site in the sun. They are standing on a pile of sand and concrete, and one of them is holding a large metal bar. In the background, there is a pile of yellow sandbags, a large piece of rusty metal, and a yellow and orange excavator. There are also several people in the distance, some of them wearing white or light-colored clothes. The sky is a clear blue color, and the sun is shining brightly.", - "id": 1961 + "image_path": "G:\\images\\combined\\006484_jpg.rf.786700d2c8219eed9489172aeb3688b0.jpg", + "response": "a group of people standing around each other", + "id": 32567 }, { - "image_path": "G:\\images\\combined\\003952_jpg.rf.8a4b5432941fdd527617fe6dc21b8935.jpg", - "response": "A group of men and women wearing hard hats are climbing up a hill. They are wearing blue and black clothing and carrying tools. They are walking up a path next to a tower.", - "id": 1962 + "image_path": "G:\\images\\combined\\006485_jpg.rf.b3db45e5801c4d6449c948efd7c92f9e.jpg", + "response": "The image shows two workers in yellow helmets who are repairing power lines. They are wearing white shirts and are currently focused on the task at hand. The background shows a grey sky and a tower.", + "id": 32568 }, { - "image_path": "G:\\images\\combined\\003953_jpg.rf.f351b7f973073776d3e39d1f6bdfc5e6.jpg", - "response": "a group of people walking on a dirt road", - "id": 1963 + "image_path": "G:\\images\\combined\\006486_jpg.rf.4065d7913fd89c99232754d040541a3b.jpg", + "response": "A man in a grey suit and yellow hard hat is using a saw to cut a brick. He is standing on a pile of bricks and there are other workers in the background. They are all wearing hard hats.", + "id": 32569 }, { - "image_path": "G:\\images\\combined\\003954_jpg.rf.2d67370999b6068002cf70fbc208cbe3.jpg", - "response": "A group of four men standing in front of a construction site.", - "id": 1964 + "image_path": "G:\\images\\combined\\006487_jpg.rf.5769379167a5c7b1ba5d2980fa11f7c8.jpg", + "response": "Some construction workers are on a construction site. They are working on a foundation that has rebar in it. There is a mountain in the background.", + "id": 32570 }, { - "image_path": "G:\\images\\combined\\003955_jpg.rf.9dc46c254571f986fddaba0274045ce8.jpg", - "response": "In the image two workers are fixing a part of a power plant. They are wearing blue uniforms and helmets. The power plant is grey and has many black wires coming out of it. The sky is clear and blue.", - "id": 1965 + "image_path": "G:\\images\\combined\\0064880cfb7b82ac.jpg", + "response": "A large building with many windows is at an intersection. There are traffic lights at the intersection and on the corners. There are several signs and benches in the area.", + "id": 32571 }, { - "image_path": "G:\\images\\combined\\003956_jpg.rf.9b8e826c1b90b71943071ee25cff1fe9.jpg", - "response": "The image shows a group of construction workers standing in front of a red and white banner. They are all wearing hard hats and some are also wearing yellow and blue shirts. In front of the workers, there are several red fire extinguishers arranged in a row. In the background, there is a forest and a white building. On the right side of the scene, there are three people wearing red hats and yellow and blue clothes.", - "id": 1966 + "image_path": "G:\\images\\combined\\006488_jpg.rf.754038916d3319ff97d12ed4515f41c4.jpg", + "response": "A man wearing a hard hat and safety vest is working on a large machine.", + "id": 32572 }, { - "image_path": "G:\\images\\combined\\003957_jpg.rf.ac5a79b76796196a56441cd861e0c708.jpg", - "response": "A group of people standing around a wheel barrel filled with dirt.", - "id": 1967 + "image_path": "G:\\images\\combined\\006489_jpg.rf.72564d46ce90894b548624dd46711a06.jpg", + "response": "In the image two men are working on a construction site. They are wearing white and green shirts and yellow helmets. They are welding two large pieces of metal together. There is a lot of steel in the picture, some of it is brown and some is white. There is also a large amount of sparks flying around. The background is a large wooden structure.", + "id": 32573 }, { - "image_path": "G:\\images\\combined\\003958_jpg.rf.408590b41df13d55f38a44c999b6f13f.jpg", - "response": "A man wearing a yellow vest and a red helmet is using a drill to make holes in a wall. He is in the process of renovating a room with a ladder placed against the wall.", - "id": 1968 + "image_path": "G:\\images\\combined\\006490_jpg.rf.a3df6c8ce1f85f3edf0616fa6f5966d9.jpg", + "response": "A fireman standing in front of a fire.", + "id": 32574 }, { - "image_path": "G:\\images\\combined\\003959_jpg.rf.7b3557d30484754c0a0b13a3ed5d2278.jpg", - "response": "A man in a hard hat is standing in a narrow passage between two rows of what appear to be pipes or wooden sticks. The man is looking up and to the left, as if he has just realized that he is not alone. There is a light on in the narrow passage, which illuminates the man's face.", - "id": 1969 + "image_path": "G:\\images\\combined\\006491_jpg.rf.9b725da4545de740dc74e9e9e18823ab.jpg", + "response": "A group of men in grey work clothes and blue hats are working on an electrical box.", + "id": 32575 }, { - "image_path": "G:\\images\\combined\\003961_jpg.rf.3f669edd30cb2056ffc70bd71a996a6d.jpg", - "response": "A construction site with two workers.", - "id": 1970 + "image_path": "G:\\images\\combined\\006492_jpg.rf.3ccc542a26831fe30b6946d485681240.jpg", + "response": "A female worker at the site of the China-Pakistan Economic Corridor's Gwadar Port.", + "id": 32576 }, { - "image_path": "G:\\images\\combined\\003963_jpg.rf.08bc1ca2ae630b7ccbcc01f61b91e661.jpg", - "response": "In the image there are two men both wearing yellow hard hats. The man on the left is holding a clipboard and looking down at it. The man on the right is smiling at the camera. They are both wearing green and red clothing. In the background there are some windows and machinery.", - "id": 1971 + "image_path": "G:\\images\\combined\\006493_jpg.rf.82e869c389971e30b97568a62a120bc4.jpg", + "response": "A couple of men work on power lines in a rural area. They are wearing blue shirts and gray pants. One man is on a tall power pole and the other is on the ground. They are repairing the power lines.", + "id": 32577 }, { - "image_path": "G:\\images\\combined\\003964_jpg.rf.562cf55ff03dff4aa96ce12845be7ae4.jpg", - "response": "In the image there is a man standing next to a wall. The man is wearing a white hard hat, a red and white striped shirt, and blue jeans. He is also wearing a tool belt. The man appears to be of African American descent. He is looking off into the distance, possibly examining the wall or planning something. The wall the man is standing next to is made of metal framing.", - "id": 1972 + "image_path": "G:\\images\\combined\\006494_jpg.rf.de5cded1b6f71a0f7e480532466964e4.jpg", + "response": "A group of men standing around a red rope.", + "id": 32578 }, { - "image_path": "G:\\images\\combined\\003965_jpg.rf.0bc6f862fc1ca2a037aea4dd93a74fa2.jpg", - "response": "A group of four men standing in front of a building under construction.", - "id": 1973 + "image_path": "G:\\images\\combined\\006495_jpg.rf.cb3b58265173a0bb25f6ab61ff4bd079.jpg", + "response": "A man is laying on the ground with a yellow hat on.", + "id": 32579 }, { - "image_path": "G:\\images\\combined\\003966_jpg.rf.0bd7d17b982271943ee1be8c932fa315.jpg", - "response": "A city street with a yellow police tape across it.", - "id": 1974 + "image_path": "G:\\images\\combined\\006497_jpg.rf.0c134d3905d873e56e5c51d8765d7e08.jpg", + "response": "In the image there are multiple people working on a construction site that is covered in concrete. They are all working on a large area of concrete that is being finished. There are several levels of concrete curing in different areas of the photo.", + "id": 32580 }, { - "image_path": "G:\\images\\combined\\003967_jpg.rf.9477a5980e5eca645356629fb980b7aa.jpg", - "response": "A group of people are standing on a stone path near a body of water. Some of them are carrying handbags and a camera. There is a man in a white shirt and black pants, a man in a blue shirt and jeans, a woman in a white shirt and black pants, and another woman in a pink shirt and black pants. There is a man in a white shirt and black pants standing near the water.", - "id": 1975 + "image_path": "G:\\images\\combined\\006498_jpg.rf.a446add1b49f5525cec374f071f81f3c.jpg", + "response": "a group of people standing around a construction site", + "id": 32581 }, { - "image_path": "G:\\images\\combined\\003968_jpg.rf.82fa7d26a35c46c2ec475f5e1a6120b9.jpg", - "response": " Two construction workers(409,326),(527,891)(498,339),(601,855) in a tunnel", - "id": 1976 + "image_path": "G:\\images\\combined\\006499_jpg.rf.733af0294b995becdb8864bf10be09d9.jpg", + "response": "A man in a red jacket and a white hard hat is using a device to test a brick wall.", + "id": 32582 }, { - "image_path": "G:\\images\\combined\\003969_jpg.rf.57f3c94c642088466d88723e3dc0b3ac.jpg", - "response": "In the image two workers are in a factory. One worker is dressed in orange and is using a grinder to create sparks. The sparks are flying everywhere and are covering the other worker. The factory has a lot of metal and steel objects and equipment. The workers are wearing helmets and safety gear. The factory is quite dark and the workers are the only things that are in focus.", - "id": 1977 + "image_path": "G:\\images\\combined\\006500d2b983306e.jpg", + "response": "A large billboard for LG, featuring their TV's, is shown on a building.", + "id": 32583 }, { - "image_path": "G:\\images\\combined\\003970_jpg.rf.b3d953e62e468eccf6baff84093297ab.jpg", - "response": "The image shows two workers in safety gear, climbing on a set of power lines. They are wearing harnesses and one has a tool belt. The sky is blue and cloudless.", - "id": 1978 + "image_path": "G:\\images\\combined\\006500_jpg.rf.4deef8887a138ed791dd2e56244efb2f.jpg", + "response": "A construction worker wearing a red hard hat is operating a piece of machinery. He is standing on a construction site with a city skyline visible in the background. There are several stacks of steel beams and other construction materials on the ground around him.", + "id": 32584 }, { - "image_path": "G:\\images\\combined\\003971_jpg.rf.bb237271a21eb466300689def6c0b1aa.jpg", - "response": "A man(733,386),(888,996) standing in front of a fence(2,261),(997,759)", - "id": 1979 + "image_path": "G:\\images\\combined\\006501_jpg.rf.6c4fdb30acd895f8737736e36b0ff0d6.jpg", + "response": "A man wearing a yellow safety vest and a red helmet is holding a blueprint in a construction site.", + "id": 32585 }, { - "image_path": "G:\\images\\combined\\003972_jpg.rf.534468aec57349571207d51ddaea6398.jpg", - "response": "In the image there are four people wearing white and yellow hard hats. They are working in a large room with white walls and concrete floors. The room has a lot of pipes and machinery in it. The three people in the middle of the photo are working together; the one on the left is holding a large blue pipe and the one in the middle is holding a long white pipe while the one on the right is holding a small pipe. The fourth person is on the far right of the image. Outside of the room, there are three pieces of white cloth on the floor.", - "id": 1980 + "image_path": "G:\\images\\combined\\006502_jpg.rf.bae670705c628959b8389a1302391eb9.jpg", + "response": "A group of people standing around a white car that is parked on some construction site. The car is located in the middle of the site, and the people are standing around it on different positions. There are some bamboo sticks on the foreground, and a person is holding a cell phone. The photo is taken from above, and there are some rubble on the ground.", + "id": 32586 }, { - "image_path": "G:\\images\\combined\\003973_jpg.rf.56df6cdf6324ec5b1bf032fd5d36d946.jpg", - "response": "A group of workers are standing on a yellow crane.", - "id": 1981 + "image_path": "G:\\images\\combined\\006504_jpg.rf.59b6fde37b952de358d911487424e6f3.jpg", + "response": "A man standing in front of a train car with a sign on it that says \"China\".", + "id": 32587 }, { - "image_path": "G:\\images\\combined\\003974_jpg.rf.74504eca6174e5c9445ea7fbec794150.jpg", - "response": "A group of people standing inside a large tunnel.", - "id": 1982 + "image_path": "G:\\images\\combined\\006505_jpg.rf.39a61e9c95bc4d981309fe1bb2260384.jpg", + "response": "A man in a black jacket is showing two other men something on a map. They are standing next to a white SUV. There is a hill in the background.", + "id": 32588 }, { - "image_path": "G:\\images\\combined\\003975_jpg.rf.2872af20b7fd47bcfc66d99b0e378f04.jpg", - "response": "A group of three men in orange and white work clothes are working on a power line. They are standing underneath a large metal pole that is holding up a power line. They are all holding onto the pole and working on the wires. There is a yellow and black crane next to the pole. In the background, there are two other men, one on the left and one on the right, who are not working on the power line.", - "id": 1983 + "image_path": "G:\\images\\combined\\006506_jpg.rf.acaf1c33a1c0daf35c1d6e91056e98c4.jpg", + "response": "A man and two women in safety gear look at blueprints in a construction site.", + "id": 32589 }, { - "image_path": "G:\\images\\combined\\003977_jpg.rf.2d826e29bdf650d75ae7835ed617f7ae.jpg", - "response": "Some construction workers are working on a building.", - "id": 1984 + "image_path": "G:\\images\\combined\\006507_jpg.rf.c6b63341cd2eaf385ccb26671888918d.jpg", + "response": "A man with a camera is standing in front of a tall building. The building is under construction and there is a crane operating next to it. The man is holding a camera and appears to be taking a picture of the building.", + "id": 32590 }, { - "image_path": "G:\\images\\combined\\003979_jpg.rf.90b796ee803c4c7c771944357e9a0138.jpg", - "response": "A group of four men in business-casual attire and hard hats stand on a flooded street. The street is covered in trash and debris, and the water is knee-deep. In the background, there are trees and a streetlight.", - "id": 1985 + "image_path": "G:\\images\\combined\\006508_jpg.rf.71debd82bec56ce5e1291782b533a80a.jpg", + "response": "A group of workers are working on a construction site. They are working on a large building that is under construction. The workers are wearing yellow hard hats and some of them are wearing blue jackets. They are working on a large concrete slab with a machine that looks like a cement mixer. There are several people in the picture and some of them are carrying tools. In the background, there is a large building with lots of windows.", + "id": 32591 }, { - "image_path": "G:\\images\\combined\\003980_jpg.rf.ca88d1edb40449fad5a990fa7fab81a9.jpg", - "response": "Two workers in yellow shirts and yellow helmets are working on a power line.", - "id": 1986 + "image_path": "G:\\images\\combined\\006509_jpg.rf.40e73d3cffc2b82baab4e2a8fb97b3bb.jpg", + "response": "An engineer in a yellow hard hat and orange safety vest points towards a large crane in the background.", + "id": 32592 }, { - "image_path": "G:\\images\\combined\\003981_jpg.rf.7e2ba492411dfae096787a2aaa195e41.jpg", - "response": "The image shows a group of seven men standing on a construction site. They are all wearing hard hats, with some also wearing suits and ties. The men are standing on a patch of unfinished concrete, and looking around. In the background, there are a few buildings under construction, as well as some trees and a city skyline.", - "id": 1987 + "image_path": "G:\\images\\combined\\00650_jpg.rf.286ce9ab49662d1b6b2036b0993f1fe3.jpg", + "response": "A construction worker with a bowl on his head and a friend stand in front of the construction site.", + "id": 32593 }, { - "image_path": "G:\\images\\combined\\003983_jpg.rf.c04b659d1936a0c08d4a86e38b1ee0cc.jpg", - "response": "In the image two people are working on a large piece of metal. They are standing on a platform that is raised above the ground. They are wearing hard hats and one of them is wearing a blue hat and a mask. They are both working on the metal with one of them using a welding tool. There are sparks flying from the welding tool. The ground can be seen below them and to the left of the platform.", - "id": 1988 + "image_path": "G:\\images\\combined\\00650_jpg.rf.d50f9de873b78071865201b0d0b9901e.jpg", + "response": "Two workers standing in front of a construction site. One man is carrying a heavy bowl on his head.", + "id": 32594 }, { - "image_path": "G:\\images\\combined\\003985_jpg.rf.09a417c118952cbd60d208d7017dcf36.jpg", - "response": "In the image, a person wearing a white shirt and a blue helmet is working on an electrical box. They are holding a black and red cable in their hands and are in the process of plugging it into the box. The person is focused on their task and there are several other cables visible in the scene. The background is a bit blurry and there is a white structure behind the person.", - "id": 1989 + "image_path": "G:\\images\\combined\\006510_jpg.rf.7b84a161373a2332a6628bb8455596f1.jpg", + "response": "A miner is working in a cave, holding a mining tool.", + "id": 32595 }, { - "image_path": "G:\\images\\combined\\003986_jpg.rf.13d428315a0d9e3c3e892cffcd6e07ef.jpg", - "response": "An image of two men working on power lines in a field.", - "id": 1990 + "image_path": "G:\\images\\combined\\006511_jpg.rf.a532cce8f07928bc02e0d8d40102d35a.jpg", + "response": "A worker is seen in a cage of steel. He is crouching down and looking up. He is wearing a yellow hard hat, a brown vest, and brown pants. He is holding a tool in his right hand. The background shows a blue sky with white clouds. To the right of the image is the logo of the website and the words \"\u5317\u7eac\u7f51\".", + "id": 32596 }, { - "image_path": "G:\\images\\combined\\003987_jpg.rf.0805a47fe2c994f73597283dcca161c2.jpg", - "response": "A group of men standing around a unfinished building.", - "id": 1991 + "image_path": "G:\\images\\combined\\006512_jpg.rf.aec17ff94f7d527d215495b4fec2d9c9.jpg", + "response": "A construction worker is lifting a large metal crate with a crane. The crate is filled with steel rebar and is suspended in the air. The worker is reaching up to grab the crate. The crate is located in the center of the image and the worker is on the right hand side of the image. There is a yellow crane in the background on the left side of the image. The sky is overcast and the building site is under construction.", + "id": 32597 }, { - "image_path": "G:\\images\\combined\\003988_jpg.rf.19061de401a77dc706e4a90548fda1c6.jpg", - "response": "a group of men working on a project", - "id": 1992 + "image_path": "G:\\images\\combined\\006513_jpg.rf.86adbdf89b3c33e23b147583aceaefea.jpg", + "response": "The image shows two workers in yellow hard hats and blue uniforms standing on the side of a road. They are holding a long white rope that is attached to a black box. The workers are looking at the rope and the box.", + "id": 32598 }, { - "image_path": "G:\\images\\combined\\003989_jpg.rf.4c5787aae9d9b9d9b92be9f8fb9b73ed.jpg", - "response": "A man in a red hard hat is standing in front of a large metal boiler. The boiler is grey and silver, and has a lot of pipes and valves. The man is holding a clipboard and looking at the boiler.", - "id": 1993 + "image_path": "G:\\images\\combined\\006514_jpg.rf.2fe869bd674679d456f5194fdf1f15f2.jpg", + "response": "The image shows a group of workers in orange jumpsuits and yellow hard hats carrying a large piece of metal at a construction site. They are all holding the metal together, which is shaped rectangular with rounded corners. They are all wearing the hard hats and the worker on the far left is wearing a white helmet under his hard hat. The workers are standing on a rocky surface with a blue sky and some clouds in the background. There are power lines in the background on the left side of the image.", + "id": 32599 }, { - "image_path": "G:\\images\\combined\\00398_jpg.rf.4cb1da33d8b077db00e15d9406a58b94.jpg", - "response": "A man in a yellow vest and red helmet is walking down the street. He is smiling and appears to be in a good mood.", - "id": 1994 + "image_path": "G:\\images\\combined\\006515_jpg.rf.759434fb8ccf4dae2bac20e13139c532.jpg", + "response": "The picture shows the interior of the new Jiangmen City People's Hospital. The hospital is located on the People's Road in the city, and is the main medical center for the city. The hospital has a very large number of medical staff and a variety of medical equipment. The hospital also has a very good transport system, with a large number of buses stopping at the door of the hospital, making it very convenient for patients to go to the hospital.", + "id": 32600 }, { - "image_path": "G:\\images\\combined\\003991_jpg.rf.2746e6c05a1c7b5a53ffc666bd37993b.jpg", - "response": "A group of people wearing yellow vests and red helmets are gathered in a white hallway. Some of the people are wearing red helmets, and many are wearing yellow vests. A few people are also wearing white helmets. The group is standing around and appears to be looking at something.", - "id": 1995 + "image_path": "G:\\images\\combined\\006516_jpg.rf.e4d8f0972f878e641fcc91bad55aed76.jpg", + "response": "A couple of men standing in front of a building that is under construction.", + "id": 32601 }, { - "image_path": "G:\\images\\combined\\003992_jpg.rf.b83465b7f80a9f3bdb8ab5d1fd5ebd5f.jpg", - "response": "A construction worker in a yellow hard hat and orange jacket is kneeling down on a street. They are applying a grey substance with a trowel to the street.", - "id": 1996 + "image_path": "G:\\images\\combined\\006518_jpg.rf.b4db4675166e3fd1de889edbbd5b82a3.jpg", + "response": "A construction worker is pouring concrete on a bridge that is being built over a river.", + "id": 32602 }, { - "image_path": "G:\\images\\combined\\003993_jpg.rf.4c8d9f5828415da5b6af8bed3ba46818.jpg", - "response": "The photo shows a group of people standing in a construction area. They are wearing hard hats and one of the men is holding a cell phone. There is a wall in the background and a sign that says \"no entry\".", - "id": 1997 + "image_path": "G:\\images\\combined\\006519_jpg.rf.aa182e03c81e597b01a062c6ad20dbc4.jpg", + "response": "A group of workers are working on a construction site. They are wearing yellow helmets and are focused on their task. The ground is white and the sky is grey. There are several pillars in the scene and some steel bars.", + "id": 32603 }, { - "image_path": "G:\\images\\combined\\003995_jpg.rf.f8980c68b0a7c100d41ce1b3e5088901.jpg", - "response": "Four people standing in a construction site, three of them wearing yellow vests.", - "id": 1998 + "image_path": "G:\\images\\combined\\006520_jpg.rf.6edb2bab9105482a5551f206f4df6820.jpg", + "response": "A group of men in uniforms and hard hats are working on a power line in a mountainous area. They are standing on a mountain trail and one man is holding a power box while another man is operating a crane to lift a metal beam. There is a man in a blue uniform and yellow hard hat on the right side of the scene and another man in a red uniform and yellow hard hat on the left side of the scene.", + "id": 32604 }, { - "image_path": "G:\\images\\combined\\003996_jpg.rf.1f1caccabea5f6387bdb5a7eb463d00e.jpg", - "response": "In the image there are two people sitting next to each other, both are wearing hard hats and work clothes. They appear to be taking a break as they are sitting on cinder blocks and one of them has their feet up on a metal surface.", - "id": 1999 + "image_path": "G:\\images\\combined\\006521_jpg.rf.8189158bfaad391aff11a9951e6806c8.jpg", + "response": "A man wearing a hard hat and a high visibility vest stands in the entrance of a large tunnel. There is a large pipe in the background on the right hand side of the image and two people in the background on the right wearing high visibility vests.", + "id": 32605 }, { - "image_path": "G:\\images\\combined\\003997_jpg.rf.869faf04aca733dfe295299ba4d9d51c.jpg", - "response": "a group of men standing around talking to each other", - "id": 2000 + "image_path": "G:\\images\\combined\\006522_jpg.rf.5dc29b076a90927c04867249dc647f91.jpg", + "response": "a group of people standing in front of a bus", + "id": 32606 }, { - "image_path": "G:\\images\\combined\\003998_jpg.rf.c36399ca9a7df0b0ad4afcd4d596a524.jpg", - "response": "The image shows a construction site with several workers digging holes for the foundation of a building. There are at least three workers visible, all wearing yellow hard hats and working with shovels and other tools. The ground is dirt and there are several large rocks scattered around the site. In the background, there are trees and a sky that is a mix of blue and white.", - "id": 2001 + "image_path": "G:\\images\\combined\\006523_jpg.rf.0e9896192749d630b382d6e136b7abf0.jpg", + "response": "In the image there is a person wearing a blue hard hat and work clothes, who is welding some metal with a torch. The person is kneeling on the ground and the torch is producing bright sparks as it welds the metal. The welding is being done outside, in the dark. There are some bricks and a pipe nearby.", + "id": 32607 }, { - "image_path": "G:\\images\\combined\\003999_jpg.rf.13b50e70172303e46f473f99a949f66f.jpg", - "response": "A woman in a green uniform is putting something on a mans head.", - "id": 2002 + "image_path": "G:\\images\\combined\\006524_jpg.rf.86534acfcb3eb92c20623dca50762548.jpg", + "response": "A man wearing a yellow hard hat and an orange vest standing in a warehouse next to a large metal cylinder.", + "id": 32608 }, { - "image_path": "G:\\images\\combined\\003a2b5030034d00.jpg", - "response": "A building with a number 39 on it.", - "id": 2003 + "image_path": "G:\\images\\combined\\006526_jpg.rf.c95ef6df21eb8aaeccfa4360da562251.jpg", + "response": "A man in a blue shirt and orange hard hat is working on a train track.", + "id": 32609 }, { - "image_path": "G:\\images\\combined\\003a8ae2ef43b901.jpg", - "response": "A Dakota Digital single-use camera with a silver and blue color scheme.", - "id": 2004 + "image_path": "G:\\images\\combined\\006527_jpg.rf.132e03937ef8a1652024fa01521b137d.jpg", + "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large pile of metal rods, which are used to reinforce concrete. The workers are wearing orange and yellow vests, and one of them is wearing a hat. The metal rods are arranged in a grid-like pattern, and the workers are focused on their task. In the background, there are some buildings and a street.", + "id": 32610 }, { - "image_path": "G:\\images\\combined\\003a9640bb92c0c9.jpg", - "response": "A collage of three photos. The top left photo is of a street view with a building on the left and a tree in the middle. The top right photo is of a street with rain. The bottom photo is of a white cup with the BibCamp logo on it.", - "id": 2005 + "image_path": "G:\\images\\combined\\006528_jpg.rf.a4a942662a3e6ef2858c65688fb1fc73.jpg", + "response": "A man and a woman in orange work vests and red helmets stand in front of an oil well. The woman is holding a clipboard and pen and both are looking at the clipboard.", + "id": 32611 }, { - "image_path": "G:\\images\\combined\\003aed6b07578bf1.jpg", - "response": "a bunch of people standing in line outside of a restaurant called Ben's Chili Bowl.", - "id": 2006 + "image_path": "G:\\images\\combined\\006529_jpg.rf.d516347d49ad03e26a48af0212073b3b.jpg", + "response": "A group of four men standing in an unfinished building.", + "id": 32612 }, { - "image_path": "G:\\images\\combined\\003af0ec415e7b9a.jpg", - "response": "A pink and red poster advertising a concert with a schedule of events.", - "id": 2007 + "image_path": "G:\\images\\combined\\00652_jpg.rf.0347e1f23d26aa72cdda6f0e42f380f2.jpg", + "response": "A woman wearing a hard hat and safety glasses stands in a shop with other workers in the background.", + "id": 32613 }, { - "image_path": "G:\\images\\combined\\003b73b07cfb6d58.jpg", - "response": "A man sitting behind a counter at a Rizgin Products booth.", - "id": 2008 + "image_path": "G:\\images\\combined\\00652_jpg.rf.e37a9f3051bba15fbb104f5eef9f032c.jpg", + "response": "A woman wearing a hard hat and safety glasses stands in a shop with three other men wearing hard hats and safety glasses. They are all standing behind her.", + "id": 32614 }, { - "image_path": "G:\\images\\combined\\003bed7fa4de9fd9.jpg", - "response": "A woman walking down a street next to a yellow van.", - "id": 2009 + "image_path": "G:\\images\\combined\\006531_jpg.rf.23f8f0d9bbfa2e91a2dde33e7b11f54c.jpg", + "response": "A man in a blue hard hat is on a cherry picker.", + "id": 32615 }, { - "image_path": "G:\\images\\combined\\003c0cac1ea19d3e.jpg", - "response": "A man sitting at a poker table with a woman standing behind him.", - "id": 2010 + "image_path": "G:\\images\\combined\\006533_jpg.rf.b4a608c561d8c9fca4b0e18ad0a838e7.jpg", + "response": "In the image there are two men working in a mine. They are both wearing orange vests and yellow hard hats. One of the men is holding a large pick axe and is standing in front of a large wheel. The men are in a tunnel and there is a ladder on the wall to their left. The tunnel is filled with rocks and there is a lantern hanging in the foreground.", + "id": 32616 }, { - "image_path": "G:\\images\\combined\\003c79998bb42640.jpg", - "response": "A sepia photograph of a town square in Saigon. There are several people in the square, some riding bicycles and others walking. There are also a few cars in the square. In the background, there are a few buildings, including a large one on the left and another on the right. A street light is located in the middle of the square.", - "id": 2011 + "image_path": "G:\\images\\combined\\006535_jpg.rf.cefb964800cb364facd307fe0226a63a.jpg", + "response": "In the image three people are working on a construction site. They are all squatting and appear to be welding or cutting metal. The person on the left is wearing a white helmet and a brown jacket, the person in the middle is wearing a yellow helmet and a yellow and white jacket, and the person on the right is wearing a black helmet and a dark blue jacket. There are sparks flying from the welding and cutting.", + "id": 32617 }, { - "image_path": "G:\\images\\combined\\003ceac72cb29c12.jpg", - "response": "A man sitting at a table with a beer in front of him.", - "id": 2012 + "image_path": "G:\\images\\combined\\006536_jpg.rf.3c15aeafcec3b5284680c7e9327b15b4.jpg", + "response": "A couple of men are working on power lines.", + "id": 32618 }, { - "image_path": "G:\\images\\combined\\003d25460307a847.jpg", - "response": "a person standing in a room", - "id": 2013 + "image_path": "G:\\images\\combined\\006537_jpg.rf.12c50f2b1b7dd5798dada6600512c579.jpg", + "response": "The image shows a group of men walking together in a construction site. They are all wearing black suits and one of them is wearing a red hard hat. There are several construction cranes in the background and a yellow fence is visible on the right side of the image. The ground is bare and dusty and there are a few people in the distance.", + "id": 32619 }, { - "image_path": "G:\\images\\combined\\003d7090ca7e9fc9.jpg", - "response": "A bucket filled with ice and several bottles of beer. The beer bottles are placed on top of the ice and some of them are visible at the bottom of the bucket. There is also a white sticker with a logo on it placed on top of the ice and bottles.", - "id": 2014 + "image_path": "G:\\images\\combined\\006539_jpg.rf.e5727c72e38a7db85b5bdb39f12315b1.jpg", + "response": "A worker is working on a construction site.", + "id": 32620 }, { - "image_path": "G:\\images\\combined\\003df657f0316e11.jpg", - "response": "A pole with several signs attached to it.", - "id": 2015 + "image_path": "G:\\images\\combined\\006540_jpg.rf.265c5027da05aab15c0cf4abb4029e3d.jpg", + "response": "The image shows two men in camouflage and orange work gear, one wearing a yellow hard hat and the other wearing a green hard hat, working on a street light.", + "id": 32621 }, { - "image_path": "G:\\images\\combined\\003df8cf2effae50.jpg", - "response": "A van with the words Blue Sheep on the side of it.", - "id": 2016 + "image_path": "G:\\images\\combined\\006542_jpg.rf.713c2ff41cf3f1cbffee87c35c23700b.jpg", + "response": "The image shows a group of workers walking on train tracks. There are five people in the picture, four of them wearing yellow jackets and orange helmets, and the fifth one is holding a drone. The train tracks are in the foreground and extend to the back of the picture. In the background, there is a mountain. To the left of the picture, there is a tall white electric pole.", + "id": 32622 }, { - "image_path": "G:\\images\\combined\\003e8ba237cc7842.jpg", - "response": "A busy city street at night with a woman riding a bike down the street. There are many people walking around and cars parked on the side of the street. There is a Vietnamese flag hanging from a building.", - "id": 2017 + "image_path": "G:\\images\\combined\\006543_jpg.rf.845cb7b5eab49226eb81f7b6791cb144.jpg", + "response": "A construction worker in a yellow hard hat and a black jacket is using a tool to repair a concrete pillar in a building. The worker is on a ladder and there is a second worker in the bottom right corner of the image. The background is a dark grey sky and a yellow light on the right side of the image.", + "id": 32623 }, { - "image_path": "G:\\images\\combined\\003edf91acea710b.jpg", - "response": "An orange Lego crab is sitting on a desk next to a phone. The crab has two white Lego eyes and a smiley face.", - "id": 2018 + "image_path": "G:\\images\\combined\\006544_jpg.rf.cec7ae59e705f09b4cf28fcb7d68a683.jpg", + "response": "The image shows a train track under construction. There are two workers wearing yellow hard hats and safety vests, one on the left and one on the right, both welding steel bars on the tracks. The sky is dark and the mountains behind are green, but the rest of the scene is not very detailed.", + "id": 32624 }, { - "image_path": "G:\\images\\combined\\003ef1b57db7ce3d.jpg", - "response": "A cartoon of two men standing on the cover of a magazine. The word \"Luck\" is written in the center of the cover. One of the men is labeled \"Self-Supporter Samm\" and is leaning on a barrel. The other man is labeled \"Tilden\" and is holding a newspaper with the headline \"Mr. Tilden will not accept nor canvass candidates to be on his personal ticket.\"", - "id": 2019 + "image_path": "G:\\images\\combined\\006545_jpg.rf.ebc7a8c8ad4a85117fb285d6f04bcb7a.jpg", + "response": "A man wearing a yellow hard hat and a white shirt with black writing on it.", + "id": 32625 }, { - "image_path": "G:\\images\\combined\\003ef4b48082cec9.jpg", - "response": "A book cover with a greenish background and a feather on it.", - "id": 2020 + "image_path": "G:\\images\\combined\\006546_jpg.rf.ae9826b92f1f4fba2a3c639eacb176f6.jpg", + "response": "The image shows a group of people standing on a partially completed bridge. Some of the people are wearing hard hats and one is holding a clipboard. There are several pairs of shoes in the scene, but the people's clothing is not visible. In the background, a truck is parked on the bridge.", + "id": 32626 }, { - "image_path": "G:\\images\\combined\\003f3bfa30c1a41c.jpg", - "response": "The image features a purple flower on a branch.", - "id": 2021 + "image_path": "G:\\images\\combined\\006548_jpg.rf.d925e055a44907f3b65a5db4d60da438.jpg", + "response": "A group of men in white shirts and some in red safety helmets are standing in a room that has concrete walls and floor. Some men are holding tools.", + "id": 32627 }, { - "image_path": "G:\\images\\combined\\003f4abfabbfe188.jpg", - "response": "A gas station with multiple cars and a drive through service sign.", - "id": 2022 + "image_path": "G:\\images\\combined\\006549_jpg.rf.de9a9395e826cfcf4b4f7d6e1562d263.jpg", + "response": "The image shows a group of men standing on a rooftop. They are all dressed in business suits and are standing in a semi-circle. Some of them are holding cell phones. In the background, there are mountains and a cloudy sky. On the right side of the image, there is a white tarp being held up by a rope. Underneath the tarp, there is a car parked.", + "id": 32628 }, { - "image_path": "G:\\images\\combined\\003faed0bbb2129e.jpg", - "response": "a soccer player(318,106),(699,996)", - "id": 2023 + "image_path": "G:\\images\\combined\\006551_jpg.rf.573d5e01c599ae55ca529d72838b89fc.jpg", + "response": "The image shows a construction site with several workers around a cement truck. The truck is pouring concrete into a large cylindrical container, which is filled about halfway. The workers are standing around the container, with some near the front and others near the side. They are all wearing yellow hard hats and orange vests. In the background, there is a fence and a blue wall. The ground is covered in dirt and small rocks.", + "id": 32629 }, { - "image_path": "G:\\images\\combined\\003_1024_jpeg_jpg.rf.065707f06eace34777348645b59f6ddc.jpg", - "response": "A man in a black shirt and wearing a face mask is pointing to a piece of paper. The paper has a graph on it and the man is standing in front of a laptop. There is a person to the right of the man and another person to the right of that person. There is a microphone in front of the man on the right.", - "id": 2024 + "image_path": "G:\\images\\combined\\006552_jpg.rf.a8191b19e496e9ec063f4d997e65b443.jpg", + "response": "A group of workers wearing hard hats are working on a construction site. They are pouring concrete on the ground.", + "id": 32630 }, { - "image_path": "G:\\images\\combined\\003_1024_jpeg_jpg.rf.fdf8fe0f18e4d54d44ca607a3d6f905f.jpg", - "response": "In the image, a man in a black shirt is pointing to a chart on a piece of paper. The man is wearing a black shirt and a face mask. Next to him, there is another man wearing a mask. They are both standing in front of a screen that says \"\u9999\u6e2f\u500b\u5225\u623f\u5e02\u8857\u574a\u9632\u7bc4\".", - "id": 2025 + "image_path": "G:\\images\\combined\\006553_jpg.rf.19f87244aa154497b22dfc94c14ba9e0.jpg", + "response": "A worker is on a power line in China.", + "id": 32631 }, { - "image_path": "G:\\images\\combined\\004000_jpg.rf.9b432381f2065981c95d57b9a91dc919.jpg", - "response": "A worker in a yellow hard hat is on a metal beam.", - "id": 2026 + "image_path": "G:\\images\\combined\\006554_jpg.rf.ffe5125bc63d788f396e56f4ea263c78.jpg", + "response": "A group of men in blue shirts and hats are working on a power line. They are standing on a ladder and are working on the power line.", + "id": 32632 }, { - "image_path": "G:\\images\\combined\\004002_jpg.rf.9ffd04e07565d5e510f2607936091165.jpg", - "response": "A construction worker is seen in front of a highway under construction in this undated photo. The photo was taken by photographer Liang Xiaowen, who won the first prize in the singles category of the News Photo award for his work.", - "id": 2027 + "image_path": "G:\\images\\combined\\006555_jpg.rf.02208b6c8cf4e2c8d0f8572b6816a1da.jpg", + "response": "A group of men working on a construction site.", + "id": 32633 }, { - "image_path": "G:\\images\\combined\\004003_jpg.rf.5cd158694bade1e704f90383dde247ae.jpg", - "response": "In the image there are two people wearing white and blue hard hats, looking at a clipboard with building plans on it. They are standing in a tunnel or underpass.", - "id": 2028 + "image_path": "G:\\images\\combined\\006556_jpg.rf.3b7f083820b23d619c8b3192e9fa0978.jpg", + "response": "A woman wearing a red hard hat with the words \"\u4e2d\u9a6c\u5efa\u8bbe\" on it, and a red nose mask.", + "id": 32634 }, { - "image_path": "G:\\images\\combined\\004004_jpg.rf.70c28c5d160deca96c244278fa4a58ef.jpg", - "response": "A worker in front of a large building under construction.", - "id": 2029 + "image_path": "G:\\images\\combined\\006557_jpg.rf.e527f0b08ee4c5a929158fca9a7c486b.jpg", + "response": "A man wearing a yellow hard hat and carrying a hammer stands in front of a large pile of wooden planks. He is lifting a long, wooden beam over his head. In the background, there are other workers and stacks of wooden planks.", + "id": 32635 }, { - "image_path": "G:\\images\\combined\\004005_jpg.rf.1441dbcd5313f867907974d1bd8a37ce.jpg", - "response": "In the image there is a construction site with several construction workers. They are working on a wooden structure, which is supported by many wooden pillars. The workers are wearing yellow hats and red uniforms. Some tools are placed around the site, including a ruler and a bucket. In the distance, there are some mountains and houses.", - "id": 2030 + "image_path": "G:\\images\\combined\\006558_jpg.rf.d8f470e74b6684bb2df9eb377a543ade.jpg", + "response": "A worker in a yellow hard hat working on a wall of rebar.", + "id": 32636 }, { - "image_path": "G:\\images\\combined\\004007_jpg.rf.5c3a1f82d40d4ae0c890371acb3d88bd.jpg", - "response": "Three engineers in yellow and green vests, and hard hats, are looking at a blueprint in a construction site.", - "id": 2031 + "image_path": "G:\\images\\combined\\006561_jpg.rf.8c424d4a96fabab8e065ffd8087ace54.jpg", + "response": "A group of people wearing SeaWorld hard hats stand in a construction area.", + "id": 32637 }, { - "image_path": "G:\\images\\combined\\004008_jpg.rf.1a66a9954477e02da9801fc70e0f4ce6.jpg", - "response": "A group of four men in orange jumpsuits are working on a power line.", - "id": 2032 + "image_path": "G:\\images\\combined\\006562_jpg.rf.da743047c9402a35591823d1581ea8f6.jpg", + "response": "A group of four men are walking together. They are all wearing red helmets. The man on the left is wearing a red and white shirt and khaki pants. The man second from the left is wearing a red and white shirt and grey pants. The man in the middle is wearing a blue and white shirt and grey pants. The man on the right is wearing a blue and white shirt, blue jeans, and white sneakers. They are all walking on a unfinished road. In the background, there are buildings under construction.", + "id": 32638 }, { - "image_path": "G:\\images\\combined\\004009_jpg.rf.932b84ba39643534635ad0935316a269.jpg", - "response": "A man wearing a yellow hard hat is working on a construction site. He is standing on a platform and is in the process of cutting a metal bar with a pair of pliers. There is another person visible behind him, wearing a yellow hard hat and a white shirt. They are both working on a construction project.", - "id": 2033 + "image_path": "G:\\images\\combined\\006563_jpg.rf.f9b917443bb15dfa86f80456445c4996.jpg", + "response": "A group of three construction workers are standing in front of a building. They are all wearing hard hats and white shirts. The man in the middle is wearing a yellow hard hat with the number 5944 on the brim. The man on the far left is also wearing a yellow hard hat. The man on the far right is wearing a blue hard hat. They are all looking up at the building.", + "id": 32639 }, { - "image_path": "G:\\images\\combined\\004010_jpg.rf.f2598155f3902a50077e763b254bea8c.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing yellow hard hats and gray uniforms. Some of them are using tools, such as shovels and long handled hammers, to work in the tunnel. The workers are standing in a group in the lower right corner of the image, with one worker on the far left and another worker standing next to him. Another worker is standing to the right of the first two workers, and the third worker is standing to the right of the second two workers. There is a hose being used by the workers in the lower right corner of the image. The tunnel is filled with debris, including what looks like charred debris on the left side of the tunnel.", - "id": 2034 + "image_path": "G:\\images\\combined\\006565_jpg.rf.f5e6d5349f379fb93d6767fa74adbe82.jpg", + "response": "In the image there are three workers wearing blue work clothes and yellow hats. They are working on a construction site which can be described as a grey concrete ground with a lot of steel bars sticking out of it. There is a red and white banner hanging on a metal bar which says \"\u4e2d\u94c1\u6e2f\u822a\u5c40\u845b\u6d32\u575d\u5730\u94c12\u53f7\u7ebf\u957f\u5cad\u8def\u8f66\u8f86\u6bb5\" in yellow font. There are also two red flags on the left and right sides of the image. On the ground, there is a single sandal which is facing the right side of the image.", + "id": 32640 }, { - "image_path": "G:\\images\\combined\\004011_jpg.rf.88e5273a1808e9a9c6560166bfb1b4b5.jpg", - "response": "A man in a suit and hard hat looking up at a unfinished building.", - "id": 2035 + "image_path": "G:\\images\\combined\\006566_jpg.rf.379f71a03eecc2f7b1876ae77dbcfe18.jpg", + "response": "The image shows a group of workers standing inside a large tunnel. They are wearing yellow and blue jackets and are working on the side of the tunnel. The tunnel is made of concrete and has a curved wall. The workers are standing at various points along the curved wall, with some closer to the foreground and others further back. There is also a large circular hole in the foreground, and the word \"people\" is written in bottom right corner.", + "id": 32641 }, { - "image_path": "G:\\images\\combined\\004012_jpg.rf.fb4c031e231eb933573428b9ffbf4c25.jpg", - "response": "A man wearing a white helmet and an orange vest is smiling while holding a cell phone to his ear. He is also holding a plan in his other hand. The man is standing in front of a pile of lumber.", - "id": 2036 + "image_path": "G:\\images\\combined\\006568_jpg.rf.5887138a5110569b13316c548d7ace17.jpg", + "response": "The image shows two men standing behind a piece of blue machinery with the words GDCJ-40 on the side. The machine appears to be some sort of\u94a2\u7b4b\u52a0\u5de5\u8bbe\u5907. There are several wires scattered around the floor and a couple of people are holding steel bars.", + "id": 32642 }, { - "image_path": "G:\\images\\combined\\004013_jpg.rf.bc8b1b7738cb3831010a1f132f6b7410.jpg", - "response": "In the image, two construction workers are working on a construction site. They are wearing yellow and orange vests and are standing on a large grid of rebar. In the background, there are a few buildings under construction.", - "id": 2037 + "image_path": "G:\\images\\combined\\006569_jpg.rf.4e84d9850f0a1ec14a557eefb16e003b.jpg", + "response": "The image shows two men in orange work suits and red hard hats walking through a large pile of coal. The background shows more coal piles and machinery.", + "id": 32643 }, { - "image_path": "G:\\images\\combined\\004014_jpg.rf.c90660e600f07269b7b8ebab89426b90.jpg", - "response": "An employee of China's state-owned power grid company, China Power Grid Corporation, is seen here working on a power transmission line in this undated photo. The photo was taken in Anhui province, eastern China.", - "id": 2038 + "image_path": "G:\\images\\combined\\006570_jpg.rf.bcd9c0fa39c23131cff5a959dc703517.jpg", + "response": "A worker in a safety harness and blue hard hat is working on a power line. He is climbing a ladder that is secured to a tall power pole. He is holding a tool in his mouth and working on the insulator of the power line. The power line is black and the insulator is white. The worker is wearing a green camouflage shirt and tan pants. There is a rope attached to the pole and a tool belt around his waist. The sky is blue with white clouds.", + "id": 32644 }, { - "image_path": "G:\\images\\combined\\004015_jpg.rf.a21333205fa6e1cd1e14ab12fc689065.jpg", - "response": "a group of men standing in a sandy construction site", - "id": 2039 + "image_path": "G:\\images\\combined\\006571_jpg.rf.bb8f6fee187bba6d4a97be11f64f9ed0.jpg", + "response": "The image shows a group of construction workers working on a road. They are building a concrete structure, possibly a guardrail, along the side of the road. There are five workers in the picture, all wearing yellow helmets. One worker is holding a large piece of wood, while another worker is operating a machine. The workers are located near the side of the road, which is visible at the top of the image. The background shows a field with crops, giving the impression that the construction work is taking place in a rural area.", + "id": 32645 }, { - "image_path": "G:\\images\\combined\\004016_jpg.rf.15c7345db64e805d5c93f7d02b2214a1.jpg", - "response": "In the image there are two people, both wearing hard hats, one on the left and one on the right. They are crouched down looking at a piece of paper. The paper is on the ground in front of them. Behind the people are buildings under construction. There are at least three cranes working on the buildings. The sky is blue with clouds.", - "id": 2040 + "image_path": "G:\\images\\combined\\006572_jpg.rf.0945d3e58db0c5ec8425323a4b22b0bf.jpg", + "response": "a group of people standing around a table", + "id": 32646 }, { - "image_path": "G:\\images\\combined\\004017_jpg.rf.0689272e602773ba1be55ca16e4e945f.jpg", - "response": "A worker in a white uniform and a yellow hard hat is on a ladder, working on a power pole at night. The pole is grey and the worker is wearing a red harness. There are several wires attached to the pole and a transformer at the base of the pole. The worker is standing on a metal platform and is looking down. The sky is pitch black and there are no other people or objects in the image.", - "id": 2041 + "image_path": "G:\\images\\combined\\006573_jpg.rf.c55f5b2024df69384fa2679188e558d4.jpg", + "response": "A construction site with a Hitachi orange and black excavator digging up a pile of dirt and\u6e23\u571f. Two construction workers are operating the excavator.", + "id": 32647 }, { - "image_path": "G:\\images\\combined\\004018_jpg.rf.0b898ed87dfb647252ef1947575d24b4.jpg", - "response": "A worker is seen in a darkened room, working on a large metal box. The worker is wearing a white helmet and a neon green vest. The metal box the worker is working on is large and silver. There is a sign on the wall next to the worker that says \"Caution: High Voltage Keep Away 5\u7c73\"", - "id": 2042 + "image_path": "G:\\images\\combined\\006574_jpg.rf.26bb09c7c1d564629a48e987d7a0dd73.jpg", + "response": "The image shows two workers in blue uniforms and yellow reflective vests, with one worker holding a long tool while the other worker is holding a rope. They are both smiling and looking up at a power line.", + "id": 32648 }, { - "image_path": "G:\\images\\combined\\004021_jpg.rf.0c439c9cccef25addd24091c6b19f403.jpg", - "response": "A construction worker in a yellow helmet is crouched down working on a grey wall. The worker is wearing a grey shirt and green shoes. They are using a tool with a blue handle to work on the wall. The wall is made of concrete and is grey in color. The worker is squatting down and appears to be focused on their task.", - "id": 2043 + "image_path": "G:\\images\\combined\\006575_jpg.rf.66ed7e83d20718e22476661c43e17a77.jpg", + "response": "A group of men working on a construction site.", + "id": 32649 }, { - "image_path": "G:\\images\\combined\\004022_jpg.rf.77a50283f44cc031111fbc6b09c41c26.jpg", - "response": "A man standing in front of a forklift that is parked next to a shipping container. The forklift has the word TOYOTA on the door.", - "id": 2044 + "image_path": "G:\\images\\combined\\006576_jpg.rf.a3be4975d79ee0e2613b64e25a7af080.jpg", + "response": "The image shows a group of people wearing yellow and orange vests and white helmets. They are standing in front of a building under construction. In the foreground, a man is handing another man a box of bricks. The scene is quite busy, with many people standing around and interacting with each other.", + "id": 32650 }, { - "image_path": "G:\\images\\combined\\004023_jpg.rf.d5217bd539f3964db5038df7436c9cc0.jpg", - "response": "The image shows two women standing in a\u96a7\u9053. They are both dressed in yellow and grey construction worker uniforms and yellow safety helmets. They are both holding brooms. To the right of the women, there are two white and black air-coolers. To the left of the women, there is a yellow truck. The tunnel they are in is grey and white in color. The right wall of the tunnel is full of grey rocks. The left wall of the tunnel has a brown layer at the top and a grey layer at the bottom, with a white layer in the middle. The floor of the tunnel is also grey.", - "id": 2045 + "image_path": "G:\\images\\combined\\006577_jpg.rf.0ab98b67d7c4effc47fff9f0e0545f8e.jpg", + "response": "a group of people standing in a room that is under construction", + "id": 32651 }, { - "image_path": "G:\\images\\combined\\004024_jpg.rf.42ade4d6eca6eab20d55597a2654e73c.jpg", - "response": " several men(12,21),(237,568)(756,577),(926,997)(138,76),(356,852)(888,638),(997,997) working on a rock tunnel", - "id": 2046 + "image_path": "G:\\images\\combined\\006579_jpg.rf.db4f4fb4bea172c91b683d7f9141325c.jpg", + "response": "A group of men standing in a room.", + "id": 32652 }, { - "image_path": "G:\\images\\combined\\004025_jpg.rf.ad802d1294d1b56e45c1015f3ec1efce.jpg", - "response": "A group of men in suits and hard hats are walking through a construction site. One man is pointing towards a building in the background.", - "id": 2047 + "image_path": "G:\\images\\combined\\006580_jpg.rf.9707cd2862739ea4fa315eb7f336b87a.jpg", + "response": "A construction worker in a hard hat working on a building.", + "id": 32653 }, { - "image_path": "G:\\images\\combined\\004026_jpg.rf.40ca4362a9df78248bba595049ae5cf9.jpg", - "response": "The image shows a group of four men standing in front of a building with a sign that reads \"Jiemin North Bridge\". The men are dressed in orange life jackets. A boat is visible in the foreground, and there are patches of ice on the water. The sky is overcast.", - "id": 2048 + "image_path": "G:\\images\\combined\\006581_jpg.rf.a70bcfd9f67f00bbdba1927ffe170e2f.jpg", + "response": " Two construction workers(386,178),(549,979)(612,87),(795,962) walking towards a truck(563,55),(872,550) that is driving away", + "id": 32654 }, { - "image_path": "G:\\images\\combined\\004028_jpg.rf.ea614e36d3dd4193d0170d14780fde25.jpg", - "response": "A group of three men in red jumpsuits and hard hats are working on a power line. They are standing on a metal platform that is attached to a telephone pole. They are in the process of fixing a part of the power line.", - "id": 2049 + "image_path": "G:\\images\\combined\\006582_jpg.rf.c0f7821fbba36ae417eadb45862c07b4.jpg", + "response": "A construction site with several people working on it. There are many metal rods and red pipes scattered around the site. A man is working on the left side of the image, and another man is working on the right side. In the background, there are mountains and a cloudy sky. There are also a few buildings visible in the distance.", + "id": 32655 }, { - "image_path": "G:\\images\\combined\\004029_jpg.rf.d5fd59adf4cd9d88266c00db21479d65.jpg", - "response": "The image shows two construction workers wearing yellow hard hats standing on a yellow scaffold. They are both dressed in red and grey clothing. One of the workers is on the left, and the other is on the right. They are both looking down at something. In the background, there is a red wall with wooden planks. To the far left, there is a yellow crane.", - "id": 2050 + "image_path": "G:\\images\\combined\\006583_jpg.rf.da886c46dd79d721d72dbf040742bc26.jpg", + "response": "A man sitting on a stool on a construction site, talking on a cell phone. He is wearing a white helmet, a red jacket, a white shirt, and a tie. He is also wearing a watch and a pair of blue jeans.", + "id": 32656 }, { - "image_path": "G:\\images\\combined\\004030_jpg.rf.940927feb102c30ef2d8947f6af3263b.jpg", - "response": "A group of workers are working on a building site.", - "id": 2051 + "image_path": "G:\\images\\combined\\006584_jpg.rf.f7e32b51e40adcec4cbea7f003c2f691.jpg", + "response": "A group of men standing on a construction site.", + "id": 32657 }, { - "image_path": "G:\\images\\combined\\004031_jpg.rf.b7e7c6caeab5d554d9fb533d7f4fec4c.jpg", - "response": "A group of five smiling industrial workers standing in a warehouse wearing white hard hats and yellow hi-vis vests.", - "id": 2052 + "image_path": "G:\\images\\combined\\006585_jpg.rf.141ef1262fc041188367a02a5aed8f48.jpg", + "response": "The image shows a group of workers in orange vests and blue helmets who are installing a power cable on the sea. They are on a ship with a white superstructure. In front of the ship, there are two large wheels with red spokes. On the left side of the ship, there is a row of boxes with the characters \"WDG\".", + "id": 32658 }, { - "image_path": "G:\\images\\combined\\004032_jpg.rf.b0f00cd6d051376ff84878c8965a63a3.jpg", - "response": "A woman in a hard hat and safety vest is holding a clipboard and smiling while standing in front of a large piece of machinery.", - "id": 2053 + "image_path": "G:\\images\\combined\\006586_jpg.rf.2d445a52d4508ac5a41bd41efda9bfbc.jpg", + "response": "The image shows a factory scene with two workers in the foreground, one on the left and one on the right, both wearing yellow hard hats. They are working on a large piece of equipment, a red boiler, which takes up most of the middle ground of the image. The boiler has a door in the middle and a pipe sticking out on each side. In the foreground, there is a pile of red bricks and some metal debris.", + "id": 32659 }, { - "image_path": "G:\\images\\combined\\004033_jpg.rf.4ee094089a591a21c3709e42cd9eb0f6.jpg", - "response": "The image shows a tunnel with a train traveling through it. Two workers can be seen on the right side of the tunnel, dressed in yellow vests and blue hard hats. The tunnel is made of concrete and steel, and there is a clock mounted above the train tracks. The train is silver and has two cars. It is traveling away from the camera. There are also two large pipes on the left side of the tunnel.", - "id": 2054 + "image_path": "G:\\images\\combined\\006587_jpg.rf.5c6084b4a5e9c419172d9aefc98aeb54.jpg", + "response": "A group of three multi-racial engineers or construction workers looking at blueprints outside on a sandy beach or construction site.", + "id": 32660 }, { - "image_path": "G:\\images\\combined\\004034_jpg.rf.75a92fd8cfbed6f35887c8e610e47fd5.jpg", - "response": "a group of men standing inside a building", - "id": 2055 + "image_path": "G:\\images\\combined\\006588_jpg.rf.c05e518ea0df7630118d70d12ce70798.jpg", + "response": "A man in an orange hard hat is working on a construction site. He is holding a hammer and kneeling down next to a piece of wood. He appears to be the only person in the image. There are other people in the background, but they are too small and far away to make out any details. There are many wooden boards scattered around the floor, some of which are in the foreground and some of which are in the background. There are also many pipes on the floor, some of which are in the foreground and some of which are in the background. The room the man is working in has a high ceiling and appears to be under construction.", + "id": 32661 }, { - "image_path": "G:\\images\\combined\\004035_jpg.rf.e94d1718fba1a2daaa2eeac1e34316da.jpg", - "response": "A man in a hard hat and yellow safety vest, smiling and leaning on a wooden board. He is standing in front of a building under construction.", - "id": 2056 + "image_path": "G:\\images\\combined\\006590_jpg.rf.49230ff1781b717dbffbc0ad3570da82.jpg", + "response": "Two workers in yellow and red hard hats, one with a goatee, are talking next to a building. One is holding a wooden plank and a pipe.", + "id": 32662 }, { - "image_path": "G:\\images\\combined\\004036_jpg.rf.7e8e7f21f07d3b59fd836617cd4f8809.jpg", - "response": "A crane is lifting a large concrete mixer into place.", - "id": 2057 + "image_path": "G:\\images\\combined\\006591_jpg.rf.b8463ade05d647cf93a0b99b711ff84b.jpg", + "response": "The image shows a group of people gathered around a man who is lying on the ground in the dirt. The man appears to be injured and is being attended to by the group of people. Some of the people are wearing hard hats, and there is a rope nearby. The scene likely takes place outdoors and during the day.", + "id": 32663 }, { - "image_path": "G:\\images\\combined\\004037_jpg.rf.a72c8440e071ccc69771c62999ead95a.jpg", - "response": "An elderly power supply technician is wearing a yellow hat and glasses, with his mouth slightly open as if he is about to say something. He is smiling and has a hook on his left hand.", - "id": 2058 + "image_path": "G:\\images\\combined\\006594_jpg.rf.d5edad3b3096d5a72412f8414c9403b4.jpg", + "response": "A construction worker in a blue uniform and orange hard hat is working on a construction site. He is wearing a blue uniform and has a tool in his hand. He is standing next to a wall and a road. In the background, there are trees.", + "id": 32664 }, { - "image_path": "G:\\images\\combined\\004038_jpg.rf.9cb721de5050d1023d856944afdecb2c.jpg", - "response": "An electrician in a red helmet is working on a power line.", - "id": 2059 + "image_path": "G:\\images\\combined\\006595_jpg.rf.e9f2179011f3ffa4b4aead7fc98709e9.jpg", + "response": "a group of men standing around each other", + "id": 32665 }, { - "image_path": "G:\\images\\combined\\004039_jpg.rf.bb0bdafbfa59fe98270abb35c2936a64.jpg", - "response": "a group of men standing on a red carpet", - "id": 2060 + "image_path": "G:\\images\\combined\\006596_jpg.rf.99c33bdd3ef44f3a961177f18c64ff90.jpg", + "response": "The image shows two men standing on a construction site, both of them dressed in business suits. One man is wearing a yellow hard hat and pointing towards the left, while the other man is wearing a yellow hard hat and looking in the same direction. Both men are wearing sunglasses.", + "id": 32666 }, { - "image_path": "G:\\images\\combined\\004041_jpg.rf.1856a7480c55748a253cf0efc9f6d10a.jpg", - "response": "A group of men looking at blueprints.", - "id": 2061 + "image_path": "G:\\images\\combined\\00659725b6fc87d5.jpg", + "response": "A group of women playing a game of indoor basketball.", + "id": 32667 }, { - "image_path": "G:\\images\\combined\\004042_jpg.rf.d3d1167f42c7a1fc9dda4786659ab3ee.jpg", - "response": "In the image there is a man wearing a red hard hat and a blue tie. He is standing in a warehouse with his arms crossed in front of him. The background is blurred and there are metal rods stacked on the right.", - "id": 2062 + "image_path": "G:\\images\\combined\\006597_jpg.rf.7fb4cea9c27b0fc6f0e9b18350bb25ef.jpg", + "response": "A worker walks past oil drums at a Pertamina fuel depot in Jakarta, Indonesia.", + "id": 32668 }, { - "image_path": "G:\\images\\combined\\004043_jpg.rf.1187f16a2fb6d23591283d7cf26e3e64.jpg", - "response": "A worker in a hard hat and face shield is standing in front of a large circular metal manufacturing machine that is creating long orange metal coils. The metal is very hot and is being controlled by the worker. The background is blurry and there is a mat with Chinese characters on the floor.", - "id": 2063 + "image_path": "G:\\images\\combined\\006598_jpg.rf.fac4f5357ecf34f3cb57a089bfcca1dd.jpg", + "response": "A couple of men wearing hard hats are sitting on a curb eating food.", + "id": 32669 }, { - "image_path": "G:\\images\\combined\\004044_jpg.rf.8735db51b94cc1bb2902b8109156838d.jpg", - "response": "A picture of two workers wearing hard hats and backpacks, using blowers to clear debris off an asphalt road.", - "id": 2064 + "image_path": "G:\\images\\combined\\006599_jpg.rf.379af078478c1d54e48d4a7feb829f22.jpg", + "response": "In the image you can see a group of people. Among them, there are men wearing blue suits and yellow helmets. Some of them are wearing ties. In the background, there is a train.", + "id": 32670 }, { - "image_path": "G:\\images\\combined\\004045_jpg.rf.3a1696e3c5663b3c9878d61b8631809f.jpg", - "response": "In the image two men are working on a construction site. They are wearing red helmets and holding a fishing net. The net is stretched between them and they seem to be preparing to work with it. The construction site is located in an urban area with buildings in the background.", - "id": 2065 + "image_path": "G:\\images\\combined\\0065bfca13dd4b6b.jpg", + "response": "The image shows a selection of soda bottles on a shelf. There are four bottles in total, arranged in a row. The first two bottles on the left are labeled \"Genuine Jamaican Kola Champagne\" and are orange in color. The second two bottles on the right are labeled \"Genuine Jamaican Ginger Beer\" and are green in color. The labels on the bottles feature the DG logo.", + "id": 32671 }, { - "image_path": "G:\\images\\combined\\004046_jpg.rf.729a8a0da72cc4bc03a7d5637e126c8e.jpg", - "response": "In the image, there is a construction worker wearing a yellow hard hat and blue work clothes. The worker is standing on a sidewalk and is looking over his shoulder. The worker has a walkie-talkie attached to his belt. There are two cars on the street, one is a mini Cooper and the other is a brown sedan. There are two other people on the street, one is a woman in a white shirt and black pants and the other is a man in a red shirt and white pants. There is also a motorcycle parked on the street.", - "id": 2066 + "image_path": "G:\\images\\combined\\006600_jpg.rf.6de4288d1a095b8786aaeb675dfffda1.jpg", + "response": "A group of men sitting around a table.", + "id": 32672 }, { - "image_path": "G:\\images\\combined\\004048_jpg.rf.ccdb095457c0a06bb63c295c6aea8c16.jpg", - "response": "The image shows two workers in orange jumpsuits and blue helmets, climbing on a tower to work on the power lines. The tower is made of metal and is grey in color. There are several power lines coming off the tower in different directions.", - "id": 2067 + "image_path": "G:\\images\\combined\\006602_jpg.rf.931fc2f9ead4f4fcf5ce1cf808e97e1c.jpg", + "response": "In the image there are three men dressed in blue and yellow work clothes and yellow helmets. They are suspended on a wire, which is part of a power line. They are in the process of installing a power line. Below them, there is a large crowd of people watching the event. In the distance, there are also two excavators working.", + "id": 32673 }, { - "image_path": "G:\\images\\combined\\004049_jpg.rf.5b19a24a7e62fd6d7e3a17f235ec8248.jpg", - "response": "The image shows four Chinese workers posing for a photo in front of a large pipe. They are all wearing hard hats and one is holding a pipe. They seem to be in a factory setting.", - "id": 2068 + "image_path": "G:\\images\\combined\\006603_jpg.rf.0a2d171576322597a508d7b38cfb1e8f.jpg", + "response": " a person(533,345),(962,997) wearing a hard hat(639,345),(781,496)", + "id": 32674 }, { - "image_path": "G:\\images\\combined\\004050_jpg.rf.7d95daf84ea7838eebea47447276a53a.jpg", - "response": "a group of people standing in front of a bridge", - "id": 2069 + "image_path": "G:\\images\\combined\\006604_jpg.rf.028631cb408f94364cd521daf0fd2705.jpg", + "response": "A group of people standing around each other.", + "id": 32675 }, { - "image_path": "G:\\images\\combined\\004051_jpg.rf.ec61c81b8a9712fcb3c5c4c3dbf52542.jpg", - "response": "a group of men walking across a parking lot", - "id": 2070 + "image_path": "G:\\images\\combined\\006605_jpg.rf.cb09816774f18da80aab69794764278c.jpg", + "response": "In the image there are two men working in a factory. They are both wearing hard hats and green coveralls. The man on the left is bent over and appears to be sweeping up debris with a broom. The man on the right is standing in the background. In front of them is a pile of debris consisting of bricks and wood. To the far right of the image there is a large red cylinder.", + "id": 32676 }, { - "image_path": "G:\\images\\combined\\004052_jpg.rf.4827d129cacca8af0da60212b47e6617.jpg", - "response": "In the image there is a man wearing a yellow hard hat and work clothes, possibly blue, standing in front of a power line. He is holding onto a tool and appears to be working on the power line.", - "id": 2071 + "image_path": "G:\\images\\combined\\006606_jpg.rf.f915353ccc99a5f7f423d29b53e51cd2.jpg", + "response": "The image shows a man wearing a yellow hard hat sitting in a small, dark space. He is looking at a large pipe with a flashlight on his forehead. The space is dirty and the walls are concrete. The man has a pen in his pocket and there is a bottle on the ground. He is wearing a blue shirt with a small logo on the pocket and has a tattoo on his right arm. The background is blurry and the image is focused on the man.", + "id": 32677 }, { - "image_path": "G:\\images\\combined\\004053_jpg.rf.ae5d594a8ec0720d26160dad253eb083.jpg", - "response": "A group of three men working on a street.", - "id": 2072 + "image_path": "G:\\images\\combined\\006607_jpg.rf.50c2f72b5d5ddeb46d474497f69a6d49.jpg", + "response": "In the image there is a construction site with a person working on it. The person is wearing a yellow helmet and is standing on a red metal framework. The metal framework consists of horizontal and vertical red pipes. The person is building the framework, possibly placing or adjusting a red pipe. The background is a light grey sky.", + "id": 32678 }, { - "image_path": "G:\\images\\combined\\004054_jpg.rf.156426d1266ff0a676c198420b8664ea.jpg", - "response": "In the image there are three men dressed in construction gear. One man is sitting on a step and is wearing a hard hat and a clipboard. Another man is standing next to him and is wearing a yellow and orange safety vest and a hard hat. They are all talking.", - "id": 2073 + "image_path": "G:\\images\\combined\\006608_jpg.rf.f66b776f3b2051e8cbaf518818b4a7a1.jpg", + "response": "A group of men standing around a large metal container.", + "id": 32679 }, { - "image_path": "G:\\images\\combined\\004055_jpg.rf.e7530bd719fc372bd9b327907ff58a1f.jpg", - "response": "The Chinese characters at the bottom of the image read \"tielu.com\".", - "id": 2074 + "image_path": "G:\\images\\combined\\006609_jpg.rf.ce9e2971e1c3e9ff6aaa979ad9db3a7a.jpg", + "response": "The two men are wearing yellow jackets.", + "id": 32680 }, { - "image_path": "G:\\images\\combined\\004056_jpg.rf.5bccd185f179f1e7fd81c4183e596f13.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is using a yellow measuring tape to measure something. He is standing in a unfinished room with wooden beams on the ceiling. There are white pipes on the right side of the room and blueprints are on the ground.", - "id": 2075 + "image_path": "G:\\images\\combined\\006610_jpg.rf.eb0ef62c3cd457abd0fdd4dccd6f0e10.jpg", + "response": "a group of people standing around a tree", + "id": 32681 }, { - "image_path": "G:\\images\\combined\\004057_jpg.rf.a750b87f665de7c8d07fde9733d7d24b.jpg", - "response": "A row of construction workers wearing yellow hats and orange vests are lined up on a bridge. They are all holding a long pipe in one hand and a rope in the other. They are all looking in the same direction.", - "id": 2076 + "image_path": "G:\\images\\combined\\006611_jpg.rf.25802835457e02aaa8cdcddf01ad470c.jpg", + "response": "A worker is seen at a steel factory in China's Hebei province.", + "id": 32682 }, { - "image_path": "G:\\images\\combined\\004058_jpg.rf.9aa56513b2d1375db83c9d143a50ca1b.jpg", - "response": "The image shows a group of people, most of them wearing yellow hard hats, standing around a man in green camouflage uniform who is using a shovel. The man in the green uniform is kneeling on the ground and appears to be digging a hole. The group of people is standing around the man and the hole, watching what he is doing. Some of the people are wearing ties. In the background, there is a pile of grey rocks. The image also shows a camera, with a person holding it, pointed at the group of people.", - "id": 2077 + "image_path": "G:\\images\\combined\\006612_jpg.rf.8d7b791714235216127c23d1ef70c9bb.jpg", + "response": "A group of people walking through a tunnel under construction. The tunnel is under a blue and white sign that says \"\u5b89\u5168\u901a\u9053\" which translates to \"Safety Corridor\". There is a large sign above the tunnel that says \"\u8d28\u91cf\u662f\u4f01\u4e1a\u7684\u751f\u547d\" which translates to \"Quality is the life of the enterprise\". The people walking through the tunnel are wearing hard hats and the tunnel itself is a bright yellow color.", + "id": 32683 }, { - "image_path": "G:\\images\\combined\\004059_jpg.rf.a404687bfeceaf9cd5526b64aabb5eeb.jpg", - "response": "A group of three men walking down a sidewalk in front of a building under construction. They are all wearing white construction hats.", - "id": 2078 + "image_path": "G:\\images\\combined\\006613_jpg.rf.5cec28fa9ff6d61b13880f57fd8471b3.jpg", + "response": "A man wearing a yellow safety vest and a orange hard hat is holding a blue paper while looking at the camera. He is standing underneath a scaffolding.", + "id": 32684 }, { - "image_path": "G:\\images\\combined\\004060_jpg.rf.6a1acd54f90cf200682821be62dfcce1.jpg", - "response": "a group of men standing in front of a building", - "id": 2079 + "image_path": "G:\\images\\combined\\006614_jpg.rf.78694838e91d09fba7945348810d0be0.jpg", + "response": "A group of three men are working on a house. Two of them are on a ladder, one of them is holding it and the other is either fixing something on the ceiling or painting. There is a bucket on the ground and a chair in the room.", + "id": 32685 }, { - "image_path": "G:\\images\\combined\\004061_jpg.rf.12860d7a4abfc0fc3c6e3ef2fa871d1d.jpg", - "response": "The image shows a bridge construction site. A large yellow crane is on the left, and two construction workers are visible, one on the left and one on the right. The bridge appears to be in the middle of construction.", - "id": 2080 + "image_path": "G:\\images\\combined\\006615_jpg.rf.7b907977a28a58b45d33980050dfac6d.jpg", + "response": "The image shows a group of people working at a construction site. They are wearing hard hats and are focused on their tasks. The workers are standing on a large framework of metal rods and concrete, which appears to be the foundation of a building. Some of the workers are closer to the foreground, while others are further away. A few of them are engaged in conversations with each other. In the background, there is a crane operating in the distance.", + "id": 32686 }, { - "image_path": "G:\\images\\combined\\004062_jpg.rf.45115c54e00a5ce3be88a21a6a1da939.jpg", - "response": "A man is working on a piece of metal with a level.", - "id": 2081 + "image_path": "G:\\images\\combined\\006617_jpg.rf.85746cbbb251ec333bcd1ab2e1b96c06.jpg", + "response": "A man wearing a blue shirt and blue shoes is on a zipline.", + "id": 32687 }, { - "image_path": "G:\\images\\combined\\004063_jpg.rf.6c37250f06b81942d84fd59c8a36798d.jpg", - "response": "The image shows a group of men working on an electrical line in a rural area. There are five men in the picture, all wearing backpacks and working on the line. One man is standing on a ladder, while the others are holding the line or working on the wires.", - "id": 2082 + "image_path": "G:\\images\\combined\\006618_jpg.rf.5fc3b24deffe963131d06236e6419e2e.jpg", + "response": "The picture shows a group of people gathered in a room. They are standing behind a model of a building. On the wall, there is a large advertising board saying \"City King\". There are also some advertising boards showing the features of the project. A man in a suit is explaining something to a group of people. One of the people is taking photos with a smartphone.", + "id": 32688 }, { - "image_path": "G:\\images\\combined\\004064_jpg.rf.43d27dc5886994b4aaf10f0dca1a3348.jpg", - "response": "A couple of women wearing hard hats and glasses looking at a blueprint.", - "id": 2083 + "image_path": "G:\\images\\combined\\006619_jpg.rf.bdbc1c251b54502b7460bfec72b45861.jpg", + "response": "A group of people standing on a boat.", + "id": 32689 }, { - "image_path": "G:\\images\\combined\\004065_jpg.rf.19bc5b9ea09b560e3894cd36dd55a844.jpg", - "response": "A worker in a white mask and hard hat is kneeling down in a dark room. They are holding a scoop and filling a bag with a grey powder. There is a white bag on the floor next to them and another one further to the right. To the left of the worker, there is a large bag that is mostly out of the frame. The room has a concrete wall and the floor is covered with grey powder.", - "id": 2084 + "image_path": "G:\\images\\combined\\006620_jpg.rf.5e5f1f3e0c605ca195cbe776a5f392f0.jpg", + "response": "The image shows a group of men standing in a large, unfinished warehouse. They are all dressed in business suits and are standing in a loose circle. Some of the men are holding cell phones, and one of them has a hand in his pocket. The warehouse has a bare concrete floor and large open beams on the walls. There are also some pieces of machinery visible in the background.", + "id": 32690 }, { - "image_path": "G:\\images\\combined\\004066_jpg.rf.510951e443dece6638ff9435b24541e0.jpg", - "response": "A worker is standing on a scaffold.", - "id": 2085 + "image_path": "G:\\images\\combined\\006621_jpg.rf.6a48029f7366989fbfb14d75607e6a1f.jpg", + "response": "A group of men standing around a red flag.", + "id": 32691 }, { - "image_path": "G:\\images\\combined\\004067_jpg.rf.c8b0a02cae0bef04225eb742d7218b37.jpg", - "response": "A group of three men in hard hats and work clothes.", - "id": 2086 + "image_path": "G:\\images\\combined\\006624_jpg.rf.50602eac360c74f28320a406e715f344.jpg", + "response": "The image shows a construction site in a city. Several workers are working on a grid of steel bars, which are laid out in a grid on the ground. The workers are wearing yellow hard hats and are focused on their tasks. In the background, there are several buildings under construction, including one that has been completed and has a yellow sign on it. The sky is grey and overcast, and there is a street light on the left side of the image.", + "id": 32692 }, { - "image_path": "G:\\images\\combined\\004068_jpg.rf.64aa82877e917fd788a1e48b80baef27.jpg", - "response": "A group of men working on a building.", - "id": 2087 + "image_path": "G:\\images\\combined\\006625_jpg.rf.513cf3a2157e6060f416dfc39f981871.jpg", + "response": "A construction site with several people working on the structure.", + "id": 32693 }, { - "image_path": "G:\\images\\combined\\004069_jpg.rf.2f81526d3f9dc8dafc20f22d4c747d7e.jpg", - "response": "A woman wearing a blue hard hat and a yellow safety vest is holding a clipboard.", - "id": 2088 + "image_path": "G:\\images\\combined\\006626_jpg.rf.1f46ea063bb0d881a20bb34cef39df89.jpg", + "response": " Two men(456,454),(602,997)(629,425),(770,997) standing in front of a sign that reads \" \u4e2d\u94c1\u4eba\u6c11\u91cd\u5efa\u7389\u6811\u4e8c\u4e00\u5de5\u7a0b\"", + "id": 32694 }, { - "image_path": "G:\\images\\combined\\00406d1a5405c5a6.jpg", - "response": "The image features two women standing in front of a large mural on the ground. They are both wearing green shirts and have their hands on their heads. The mural depicts a large machine digging into the ground, pulling up coal. The women are looking at the mural, which covers the entire width of the image and about half the height.", - "id": 2089 + "image_path": "G:\\images\\combined\\006627_jpg.rf.ca677bfb3e769d11570dbb51c2312a51.jpg", + "response": "A group of men in suits standing in a circle in a lot.", + "id": 32695 }, { - "image_path": "G:\\images\\combined\\004071_jpg.rf.4eac60fc97093ddc7d97cecbb5c62be0.jpg", - "response": "A man in a blue shirt and red hard hat is pointing to a wall. He is standing in front of a building with a lot of scaffolding on it. There are several other people standing behind him, all wearing hard hats. Some of them are wearing red shirts. In the background, there is a road with a car on it.", - "id": 2090 + "image_path": "G:\\images\\combined\\006628_jpg.rf.d733dd6ebe1dafe792ac5e344b8f4161.jpg", + "response": "In the image, a worker is seen wearing a blue shirt and a blue helmet. The worker is working on a large yellow valve, which is part of a large yellow pipeline. The pipeline is filled with a dark liquid. The worker is holding a green tool in his hand, and he is looking at the camera. The background is a concrete wall and a yellow pipeline.", + "id": 32696 }, { - "image_path": "G:\\images\\combined\\004072_jpg.rf.de287879e98000648beb48d9c74aa821.jpg", - "response": "The image shows a large tunnel with a circular tunnel boring machine in the center. The tunnel is grey and white in color and has a concrete wall. There are workers in the tunnel, some are standing on a platform at the bottom of the tunnel and some are standing on a crane operating the tunnel boring machine. They are wearing yellow helmets and work clothes. In the foreground, a worker is holding a rope.", - "id": 2091 + "image_path": "G:\\images\\combined\\006630_jpg.rf.58507ab23bd00ceb4def78a1a30de324.jpg", + "response": "A worker in a yellow hard hat and blue coveralls is standing on a work platform. He is wearing a yellow hard hat and is looking down at a work surface. He is also wearing a blue glove on his left hand. In the background, there is a large red and white construction vehicle. To the far right, there is a red metal box. In the far distance, there is a mountain range.", + "id": 32697 }, { - "image_path": "G:\\images\\combined\\004073_jpg.rf.b5263ccd5292ac2f82098088b445bccd.jpg", - "response": "a man standing in a field", - "id": 2092 + "image_path": "G:\\images\\combined\\006631_jpg.rf.8e6a674f0e6eb2fc85600f461d37e008.jpg", + "response": "The image shows a construction crew working on a road project. The workers are wearing yellow hard hats and are installing\u8def\u8fb9\u77f3 along the road. The image is taken at a construction site with a red and yellow building in the background.", + "id": 32698 }, { - "image_path": "G:\\images\\combined\\004074_jpg.rf.bb6933d99898089d7a494a054217647d.jpg", - "response": "A worker is standing on a scaffolding with a large blue metal gate in the foreground. The gate has two large white characters on it, possibly the gate to a park. The worker is wearing a red helmet and a blue jacket.", - "id": 2093 + "image_path": "G:\\images\\combined\\006632_jpg.rf.389e6ec17516c553c80bb17b6e995887.jpg", + "response": "In the image there are two people standing next to a large piece of equipment. The equipment has many hoses and wires coming out of it. The people are wearing hard hats and one of them is holding a drill. They are also standing next to a truck.", + "id": 32699 }, { - "image_path": "G:\\images\\combined\\004075_jpg.rf.bad312d7f420bda6dc3e6aa4db9e7913.jpg", - "response": "A construction site with steel beams and concrete pillars in the process of being built.", - "id": 2094 + "image_path": "G:\\images\\combined\\006633_jpg.rf.f013d495c1c5c7ad176f0a0de066b9b8.jpg", + "response": "The image shows a city street scene with a road on the left and a sidewalk on the right. A row of trees, some with yellow ribbons on them, are being worked on by a crew of four men wearing orange vests. One man is on the left, two others are in the middle, and the fourth is on the right. A truck is parked next to the sidewalk on the right. In the background, there are tall buildings and a hedge.", + "id": 32700 }, { - "image_path": "G:\\images\\combined\\004076_jpg.rf.7537593ae62e3c5c79d0eca575ffe266.jpg", - "response": "A coal miner is operating heavy machinery in a coal mine.", - "id": 2095 + "image_path": "G:\\images\\combined\\006634_jpg.rf.05f5a9b0598e2eba17a3b04ce4246223.jpg", + "response": "Men in front of a large poster on the sidewalk.", + "id": 32701 }, { - "image_path": "G:\\images\\combined\\004078_jpg.rf.dadaa470c15bb86c0e210d883cf3a30a.jpg", - "response": "A man in a red helmet stands in front of a grey tower. There are a few other people around the tower, some of them are near the tower base and some are near the top of the tower. The tower has many wires coming from it. In the background, there are a few buildings and a blue sky with some clouds.", - "id": 2096 + "image_path": "G:\\images\\combined\\006635_jpg.rf.4d29dec068f1a2d20e014694cf758e2f.jpg", + "response": "The image shows two workers in a cave. They are wearing yellow and red hard hats, green raincoats and orange rain pants. One worker is on the left holding a drill while the other is on the right. They are both working in the rain. The word \"WORKER\" is in red on the bottom right of the image.", + "id": 32702 }, { - "image_path": "G:\\images\\combined\\00407_jpg.rf.71b45c2b24fb08cab12ee36290210aef.jpg", - "response": "In the image, two men are wearing orange vests and hard hats. They are standing in a factory setting, with one man holding a blue vial. They are wearing gloves and one man is holding a pair of goggles. There is a saw in the background.", - "id": 2097 + "image_path": "G:\\images\\combined\\006636_jpg.rf.1e3d0af4daa65816431954e1c64d86ab.jpg", + "response": "A worker in a red uniform and blue hard hat is standing on a platform in a substation, working on a transformer. The platform is surrounded by yellow caution tape. The worker is wearing white gloves and has a tool belt around his waist. The background shows a large transformer and many power lines.", + "id": 32703 }, { - "image_path": "G:\\images\\combined\\004080_jpg.rf.e1eca613efcea53cb55a32310ce46828.jpg", - "response": "A group of men in blue hats are working on a fallen power line.", - "id": 2098 + "image_path": "G:\\images\\combined\\006637_jpg.rf.0089681bd14e0ec728506cc2bdd3da77.jpg", + "response": "In the image there are two workers wearing orange and red clothes and hardhats, one worker is on the left and the other is on the right. They are both crouching down and working on a piece of machinery. The worker on the left is holding a black pipe and the worker on the right is holding a black pipe with a red handle.", + "id": 32704 }, { - "image_path": "G:\\images\\combined\\004081_jpg.rf.d623aa4579d5e027d6318247d172e35c.jpg", - "response": "In the image there is a man wearing a hard hat and holding a chainsaw. He is standing in a forest that has been heavily logged. The trees around him are mostly dead and many have been cut down. The ground is covered in debris and tree stumps. The sky above the forest is grey and overcast.", - "id": 2099 + "image_path": "G:\\images\\combined\\006638_jpg.rf.1701bfa3ad274105f6501787485be4b6.jpg", + "response": "A man wearing a yellow hard hat and carrying two pieces of wood over his shoulder. He is standing in front of a building that is under construction.", + "id": 32705 }, { - "image_path": "G:\\images\\combined\\004082_jpg.rf.a6a8f338114e31993e9e1d05765882ce.jpg", - "response": "The image shows two smiling construction workers wearing orange safety vests and white helmets. They are crouching on a construction site, looking at a blueprint. The man on the left is pointing at the blueprint, and the other man is laughing. The background shows wooden beams and debris.", - "id": 2100 + "image_path": "G:\\images\\combined\\006639_jpg.rf.c753839d112bce7ff23586cc52b6d375.jpg", + "response": "a group of people standing around each other", + "id": 32706 }, { - "image_path": "G:\\images\\combined\\004083_jpg.rf.afb888dfb288b2cd9df5c9b4173767d0.jpg", - "response": "a group of people walking across a construction site", - "id": 2101 + "image_path": "G:\\images\\combined\\006640_jpg.rf.78312633ca8b6c9a032ae82ca31f08e8.jpg", + "response": "A group of people working on a bamboo structure.", + "id": 32707 }, { - "image_path": "G:\\images\\combined\\004084_jpg.rf.0ce2137fd120ac64c2649eed97867005.jpg", - "response": "In the image two construction workers are working on building a bridge. They are wearing yellow helmets and grey uniforms. The bridge is still under construction and has a lot of metal rods and frameworks.", - "id": 2102 + "image_path": "G:\\images\\combined\\006642_jpg.rf.65d7ab5ea0bd473f638cf98ea57f0f8c.jpg", + "response": "A construction worker wearing a white helmet is working on a building.", + "id": 32708 }, { - "image_path": "G:\\images\\combined\\004085_jpg.rf.a4e0266d9db3df69405e44cddf67a9b8.jpg", - "response": "A man in a yellow hard hat is working on a power line.", - "id": 2103 + "image_path": "G:\\images\\combined\\006643_jpg.rf.8c365ecb4b718563efc747bba6edd90a.jpg", + "response": "A construction site with three people working on it.", + "id": 32709 }, { - "image_path": "G:\\images\\combined\\004086_jpg.rf.a8ddd957f2961d4a721d2c89ae7fa836.jpg", - "response": "A man in a suit and red helmet is pointing at something in front of him. Next to him are two men in blue work shirts and red helmets. In the background are trees.", - "id": 2104 + "image_path": "G:\\images\\combined\\006644_jpg.rf.4d6e9f55927ca361afa9f8685dbd6be6.jpg", + "response": "In the image there are two people working on a construction site, wearing hard hats and building a large structure of concrete.", + "id": 32710 }, { - "image_path": "G:\\images\\combined\\004087_jpg.rf.ffc184a4aa50d6c7f8e09bf27535090b.jpg", - "response": "The image shows a group of workers inside a large tunnel. They are all wearing hard hats and some are wearing orange hard hats while others are wearing blue. One of the workers is holding a large tool in his hands while the others are holding onto a large pipe.", - "id": 2105 + "image_path": "G:\\images\\combined\\006645_jpg.rf.44c3815c98c32459d76666cd2de80ef1.jpg", + "response": "Two men in grey uniforms and yellow hard hats are looking at a large white and grey transformer. The man on the left is wearing a yellow hard hat with a red and grey sticker on the right side and a yellow hard hat with a red sticker on the left side. The man on the right is taking a picture of the transformer with a camera.", + "id": 32711 }, { - "image_path": "G:\\images\\combined\\004088_jpg.rf.d9debd62de10d12bbf320c9893b61e17.jpg", - "response": "In the image there is a large group of people wearing hard hats and sitting around tables with food and bowls. Some people are wearing orange hard hats and some are wearing white hard hats. There are many cars parked around the area and a few umbrellas set up. Some people are standing around and eating while others are sitting and eating.", - "id": 2106 + "image_path": "G:\\images\\combined\\006646_jpg.rf.d93a4b551bbb1e8a8a5e7279fe9f08b6.jpg", + "response": "A construction worker standing on a bridge with a yellow hard hat on.", + "id": 32712 }, { - "image_path": "G:\\images\\combined\\004089_jpg.rf.a231bc5949437670664c5e034232c831.jpg", - "response": "The picture shows a snowy mountain with trees and a blue sky. In the foreground, there are three men shaking hands. Two of them are wearing black suits and red helmets, while the other one is wearing a black suit and a blue helmet. The man on the left is also wearing a black suit, but he is only wearing a red helmet. They are all shaking hands.", - "id": 2107 + "image_path": "G:\\images\\combined\\006647_jpg.rf.607aae3e65157cd8b346d389ddd15511.jpg", + "response": "In the image there is a group of people working on a construction site. They are working on a foundation for a building. Some of the people are wearing yellow vests for safety. In the background there is a blue sky with clouds. There is also a machine that looks like it is used for construction.", + "id": 32713 }, { - "image_path": "G:\\images\\combined\\004090_jpg.rf.827425ea0752ecdd804a54b207e40faf.jpg", - "response": "A worker in a hard hat and orange overalls sprays down the side of a large ship with a red and black hose. The ship is grey and has a white streak down the middle of it. In the background there is a large ship with a white superstructure and a dark grey hull. There are several people visible on the ship and a large crane is visible on the left hand side.", - "id": 2108 + "image_path": "G:\\images\\combined\\006648_jpg.rf.538288f94538d47b4fcf31968163a72d.jpg", + "response": "The image shows two men in a room measuring a wall. They are wearing hard hats and one of the men is also wearing a white shirt. In front of them is a black tripod with a device on top, which appears to be a level or a measuring device. The wall they are measuring is grey and the room appears to be unfinished.", + "id": 32714 }, { - "image_path": "G:\\images\\combined\\004091_jpg.rf.92038644253b790c632815644916adc2.jpg", - "response": "A group of four people working at a construction site.", - "id": 2109 + "image_path": "G:\\images\\combined\\006649_jpg.rf.c9ddc382e546760a246eaba0b2ae1f0e.jpg", + "response": "a group of men wearing hard hats", + "id": 32715 }, { - "image_path": "G:\\images\\combined\\004092_jpg.rf.557c8f4f581d82e15be832288f596d35.jpg", - "response": "A group of men standing around a map.", - "id": 2110 + "image_path": "G:\\images\\combined\\006650_jpg.rf.02ca2d0df1782cf5d475fd20231edd20.jpg", + "response": "In the image there are two people wearing blue and white helmets, they are both dressed in work clothes. One person has a bag with yellow and orange stripes hanging on their shoulder. They are discussing a blueprint that is held by the other person. The person on the right is sitting on a white box. The background shows a wall that is only half built, it appears to be made of brick.", + "id": 32716 }, { - "image_path": "G:\\images\\combined\\004093_jpg.rf.538b8e147d9cf28585819cb59579eb8a.jpg", - "response": "In the image there are two people standing in a construction site. The woman on the right is wearing a yellow safety vest and a blue helmet. She is holding a plan in her hands and is smiling. The man on the left is wearing a red helmet and a yellow safety vest. They are both looking at the plan. The floor around them is wet and there are large pools of water. There are also some cranes working in the background.", - "id": 2111 + "image_path": "G:\\images\\combined\\0066511fff0f1419.jpg", + "response": "A black car is driving down the street next to a red double decker bus. There are multiple people walking on the sidewalk and crossing the street. One person is carrying a black bag and wearing a white shirt. There is a traffic light visible in the scene.", + "id": 32717 }, { - "image_path": "G:\\images\\combined\\004095_jpg.rf.838ac52c8fc37b8ab37833900b2638db.jpg", - "response": "A man in a white hard hat is holding a device while two other men watch.", - "id": 2112 + "image_path": "G:\\images\\combined\\006651_jpg.rf.801635a01e7461769eae62fea1b73f01.jpg", + "response": "A group of three men are hiking through the snow in a wooded area. They are all wearing hard hats and one of the men is carrying a large red and white pole. They appear to be wearing winter clothing and one of the men has a backpack on. The snow on the ground is knee deep in some places and the trees are covered in a light layer of snow.", + "id": 32718 }, { - "image_path": "G:\\images\\combined\\004096_jpg.rf.01f7d6d197b468b730d7a34aba40032c.jpg", - "response": "The image shows two workers wearing orange vests standing on a railway. They are holding a long wooden beam above their heads and are in the process of placing it on the tracks. The sky is overcast and there are a few clouds in the sky. The workers are in the foreground and the railway tracks are in the middle ground with some gravel scattered around. In the background, there is a building with a red roof and a church steeple in the far distance.", - "id": 2113 + "image_path": "G:\\images\\combined\\006652_jpg.rf.58fcfefaf1ea712e1713344c4a4d853d.jpg", + "response": "The image shows a street scene with two workers wearing orange uniforms and yellow helmets standing on the left side of the frame. They are standing in front of a row of white houses. There are four red lanterns hanging from a light pole in the middle of the frame. Each lantern has gold writing on it. The topmost lantern reads \"\u606d\u559c\u53d1\u8d22\", the second reads \"\u4e07\u4e8b\u5982\u610f\", the third reads \"\u798f\u661f\u9ad8\u7167\", and the bottom most lantern reads \"\u5e74\u5e74\u6709\u4f59\". The sky is blue and the street is empty.", + "id": 32719 }, { - "image_path": "G:\\images\\combined\\004097_jpg.rf.035c1de7087c438de4422052afd0b3c0.jpg", - "response": "An electrician is working on power lines in a white sky. He is wearing a blue helmet and is sitting on a power box. There are many wires and cables in the scene.", - "id": 2114 + "image_path": "G:\\images\\combined\\006653_jpg.rf.9202167813e108c0d96868637c3112e4.jpg", + "response": "The image shows a group of people walking in front of a grey building with a red sign that says \"\u5b89\u5168\u751f\u4ea7\". The people are wearing winter clothes and one of them is carrying a black bag. There is a large pile of dark grey rocks or soil to the left of the people and the building.", + "id": 32720 }, { - "image_path": "G:\\images\\combined\\004098_jpg.rf.1ac9c9d3ad579071617daad58018f724.jpg", - "response": "The photo shows a group of men walking together. They are all wearing white safety helmets. Some of them are wearing suits, and one of them is wearing a white shirt and grey shorts. They are walking on a walkway between two buildings that are under construction. To the right of the walkway, there is a yellow and red advertisement.", - "id": 2115 + "image_path": "G:\\images\\combined\\006654_jpg.rf.63987beea1441399362adfd519977588.jpg", + "response": "A man in a red hard hat standing in a construction site.", + "id": 32721 }, { - "image_path": "G:\\images\\combined\\004099_jpg.rf.dc073cb4e9eb3dfe2218e5123932762d.jpg", - "response": "A man in a blue hard hat is sitting on a concrete slab atop a utility pole. He is wearing a blue shirt and blue pants. There is a yellow ladder leaning against the pole and a sign on the side of the pole. The sky is overcast.", - "id": 2116 + "image_path": "G:\\images\\combined\\006655_jpg.rf.0d271df675d8f5ed84d6a94affad3296.jpg", + "response": "A construction worker is working on a construction site, placing a white mat on the ground.", + "id": 32722 }, { - "image_path": "G:\\images\\combined\\00409_jpg.rf.b76a0d2e3ea56b1565a005d7146e3941.jpg", - "response": "A man in a grey shirt and grey pants is standing in front of a construction site. He is wearing a grey hat and a grey shirt. He is holding a cell phone in his right hand and a small object in his left hand.", - "id": 2117 + "image_path": "G:\\images\\combined\\006656_jpg.rf.3f3bcdf1a5311ad9d0250deb38d02c79.jpg", + "response": "A man in a suit and a man in a hard hat are shaking hands in a house that is still under construction. The man in the suit is holding a clipboard.", + "id": 32723 }, { - "image_path": "G:\\images\\combined\\0040a7bee9e9acf0.jpg", - "response": "A close up of a book on a wooden table. The book is a large hardcover book with a bright red cover. The title of the book is \"New Machina\" and it is written in black. There is a large red flower on the cover with two green dots in the center of it. The flower has a stem that goes through the center of the book. The book has a band running along the top with pictures of people. The book is sitting on a wooden table.", - "id": 2118 + "image_path": "G:\\images\\combined\\006657_jpg.rf.4a0f3db6c6906838c1e1b38ba1f7b0cd.jpg", + "response": "A group of men standing around talking in a room that has no walls and is being built. They are all wearing hard hats.", + "id": 32724 }, { - "image_path": "G:\\images\\combined\\0040aa9c1660068e.jpg", - "response": "A blue and yellow train engine is on the tracks in front of a brick building.", - "id": 2119 + "image_path": "G:\\images\\combined\\006658_jpg.rf.2586208d9c7eb97e37858c4d5601d8ce.jpg", + "response": "a group of people standing in the snow", + "id": 32725 }, { - "image_path": "G:\\images\\combined\\0040f82025f05b6c.jpg", - "response": "A book is open and displayed on a shelf.", - "id": 2120 + "image_path": "G:\\images\\combined\\006660_jpg.rf.e07673c29c0f9c41efc3015525a0491c.jpg", + "response": "The picture shows a group of people in a room. All the people in the picture wear black clothes and red hats. The room they are in is currently under construction. The walls have not been finished, only the white cement foundation was painted. In the far right corner of the room, there is a door with a red frame.", + "id": 32726 }, { - "image_path": "G:\\images\\combined\\004100_jpg.rf.66216cf1eb048e0947a031a6030d1d72.jpg", - "response": "The image shows a group of men standing in a large, unfinished room. The men are wearing hard hats and some are wearing light-colored, short-sleeved shirts. One man is holding a cell phone to his ear. The floor is white and the walls are bare. There are a few people in the background and a sign on the wall reads \"Luyuan Energy Group\".", - "id": 2121 + "image_path": "G:\\images\\combined\\006662_jpg.rf.303a1d8ad1d5e353636c93483547a558.jpg", + "response": "A construction worker wearing a yellow helmet and a yellow vest is sitting on the ground. He is surrounded by broken bricks and there are more bricks on the ground in different sizes. There are also some brooms in the scene.", + "id": 32727 }, { - "image_path": "G:\\images\\combined\\004101_jpg.rf.34bcf81a3619da0c8c24706e47e7877d.jpg", - "response": "A man wearing a blue hard hat and work gloves is using a jack-hammer to cut through a concrete step. Another person is visible in the background, standing on the concrete step. The jack-hammer is being used on the ground, with a pile of concrete dust visible around it. The photo is taken from a side angle, with the man's legs visible below the image frame.", - "id": 2122 + "image_path": "G:\\images\\combined\\006663_jpg.rf.218f99bc6195d1c7a67474776d6bdaf6.jpg", + "response": "A man in a white shirt and blue hat crouching down in the sand and pulling on a string.", + "id": 32728 }, { - "image_path": "G:\\images\\combined\\004102_jpg.rf.e74442729a026b69b2e5615494f4dd00.jpg", - "response": "In the image there are two men dressed in orange jumpsuits and white hard hats. They are standing on a staircase in a large building. One of the men is holding a clipboard.", - "id": 2123 + "image_path": "G:\\images\\combined\\006664_jpg.rf.d83956da4984b195df280dbde76e885c.jpg", + "response": "The image shows two workers standing on a yellow ladder, working on a grey wall. They are wearing yellow and white helmets, and the man in front is wearing a white shirt. The wall has several square holes in it, and the workers are applying cement with brushes. In the background, there are other workers and a yellow loader. The sky is light blue with clouds.", + "id": 32729 }, { - "image_path": "G:\\images\\combined\\004104_jpg.rf.9f69bf9ad0516dcc13340b62ced45f0b.jpg", - "response": "A man wearing a red helmet and a tool belt is working on a construction site. He is climbing a ladder and has a rope attached to his waist. He is wearing a blue shirt and jeans.", - "id": 2124 + "image_path": "G:\\images\\combined\\006665_jpg.rf.c198de145c0148c0adba01ba6b086e94.jpg", + "response": "A group of people working on a large object in the ground.", + "id": 32730 }, { - "image_path": "G:\\images\\combined\\004105_jpg.rf.39f44bed8bea71113ad85054831b1609.jpg", - "response": "A group of men in hard hats are walking through a room. Some of the men are wearing white hard hats, some are wearing blue and some are wearing white. They are all wearing badges around their necks. In the background there is a table with a whiteboard on it.", - "id": 2125 + "image_path": "G:\\images\\combined\\006666_jpg.rf.847afdd7e0d2939a3ff581ab2b96e4f4.jpg", + "response": "A construction site with several people working on it.", + "id": 32731 }, { - "image_path": "G:\\images\\combined\\004106_jpg.rf.9b8efdbd7f115bfe2faf5d4b67753849.jpg", - "response": "The image shows three workers in yellow jackets and orange helmets working on power lines. They are on cherry pickers, and one of the workers is handing another worker a tool. The sky is overcast.", - "id": 2126 + "image_path": "G:\\images\\combined\\006667_jpg.rf.dcca6537503792a362ff7c0622dff49b.jpg", + "response": "A group of men and women standing next to each other.", + "id": 32732 }, { - "image_path": "G:\\images\\combined\\004108_jpg.rf.c0f04ade34981ff9bc333c8efe188ca6.jpg", - "response": "A couple of men in orange suits standing in a mine.", - "id": 2127 + "image_path": "G:\\images\\combined\\006668_jpg.rf.373dd7be1dc7446f5470c600b824a300.jpg", + "response": "A man is using a chainsaw to cut through a large tree trunk. He is wearing an orange safety helmet and an orange safety vest. The vest has a yellow reflective stripe on it. He is also wearing brown pants. The man is standing in a clearing that is filled with tree trunks and branches. Some of the branches are on the ground, and some are still attached to the tree trunks. The ground is covered in leaves and small twigs.", + "id": 32733 }, { - "image_path": "G:\\images\\combined\\004109_jpg.rf.fcb516d3734fa078d57e4e5683e9f014.jpg", - "response": "A group of people standing around a man wearing a hard hat and a tie.", - "id": 2128 + "image_path": "G:\\images\\combined\\006669_jpg.rf.4f0970025cceec77f0f3705abd4678a3.jpg", + "response": "A man(457,494),(623,636) is working in a pit of sand", + "id": 32734 }, { - "image_path": "G:\\images\\combined\\004110_jpg.rf.4aa5ed338f40f0a4e5d95040e2b887a5.jpg", - "response": "In the image two workers are seen working on an electricity tower. They are wearing yellow helmets and are seen wearing white uniforms. The tower has many electric wires and electric current transformer.", - "id": 2129 + "image_path": "G:\\images\\combined\\006670be1d10e0b3.jpg", + "response": "a sign that has the number 11 on it", + "id": 32735 }, { - "image_path": "G:\\images\\combined\\004111_jpg.rf.c4be485c091fdb2e3791bfa486b6cf64.jpg", - "response": "A construction worker(371,363),(606,781) digging in the ground", - "id": 2130 + "image_path": "G:\\images\\combined\\006671_jpg.rf.a47f4a4f7b81d839db561c8dd6f4a3f8.jpg", + "response": "In the image there is a group of people standing in front of a pile of goods. The people are wearing hard hats and some of them are wearing backpacks. In front of the people, there are several stacks of goods, including several black boxes and several bags. The people and the goods are located on a construction site.", + "id": 32736 }, { - "image_path": "G:\\images\\combined\\004112_jpg.rf.731bc8b61c060d2de059998225ed0087.jpg", - "response": "A group of men in white protective clothing and hard hats are cutting a tree with a chainsaw. They are all holding the tree together with their hands. The tree is being held up by two men at the bottom and one man at the top. The men are standing on a steep slope with the tree.", - "id": 2131 + "image_path": "G:\\images\\combined\\006672_jpg.rf.ac06b9f545dfa7b481228e1c48911d05.jpg", + "response": "A group of people wearing yellow jackets and hard hats stand in front of a power substation.", + "id": 32737 }, { - "image_path": "G:\\images\\combined\\004113_jpg.rf.138df23714e696485cc5a7cace276e04.jpg", - "response": "A man and a woman construction workers sitting on cinder blocks having a drink in hard hats and work clothes.", - "id": 2132 + "image_path": "G:\\images\\combined\\006673_jpg.rf.0a81b71d45bbdaf09790171a2e6ea55a.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 32738 }, { - "image_path": "G:\\images\\combined\\004114_jpg.rf.68b5fb26b0417484b695454d96f6da0f.jpg", - "response": "In the image a man is working in a narrow passage, he is standing on a ladder and holding a tool in his hand. He is wearing a green uniform and a yellow helmet. The wall to his left is a stone wall and the wall to his right is a concrete wall. The passage he is in is a very narrow and low passage.", - "id": 2133 + "image_path": "G:\\images\\combined\\006674_jpg.rf.f736cfdba5baf010140877523b951ff0.jpg", + "response": "A group of men working on a train in a tunnel.", + "id": 32739 }, { - "image_path": "G:\\images\\combined\\004115_jpg.rf.087152d0320d444576235ec9fe39f1fe.jpg", - "response": "The photo shows workers repairing a water main on the corner of a street. There are two workers, one on the left and one on the right, and both are wearing orange safety vests. In the middle of the street, there is a machine with two wheels and a long arm with a circular blade at the end, which appears to be cutting through the pavement. There is also a person on the right side of the photo, wearing all black and facing away from the camera. The photo is taken at night, as evidenced by the darkness of the street.", - "id": 2134 + "image_path": "G:\\images\\combined\\006675_jpg.rf.77789af7aa52a8a2ecefd7297b501a1f.jpg", + "response": "a group of people standing around each other", + "id": 32740 }, { - "image_path": "G:\\images\\combined\\004117_jpg.rf.3c6360083dc19c6b1ff5757f6b8f9c6b.jpg", - "response": " Two men(474,234),(529,331)(662,714),(746,958) on a platform(450,267),(592,345) in the air surrounded by trees(2,6),(995,999)", - "id": 2135 + "image_path": "G:\\images\\combined\\006676_jpg.rf.3f71b6ae75b83cd55b132c88e1f047e5.jpg", + "response": "In the image there is a group of men working in a mine. They are all wearing hard hats and some are also wearing backpacks. They are working together to move a large piece of mining equipment. The ground they are standing on is covered in coal.", + "id": 32741 }, { - "image_path": "G:\\images\\combined\\004118_jpg.rf.7d2db01b81e8fd3bc5fdf0f62a880f69.jpg", - "response": "A group of people wearing hard hats are gathered around a man in a white shirt and brown jacket. The man in the white shirt is pointing to something in the distance. In the background, there are green trees.", - "id": 2136 + "image_path": "G:\\images\\combined\\006677_jpg.rf.4383b3707bc836690cef4f5ceb91e75d.jpg", + "response": "An image of a man wearing a yellow hard hat in a unfinished wooden framed building.", + "id": 32742 }, { - "image_path": "G:\\images\\combined\\00411_jpg.rf.83b425f98ab56d593457d585db6e9bc2.jpg", - "response": "The image shows three men in safety gear walking together. They are all wearing hard hats and reflective vests. The man on the left is taller and has his hands in his pockets. The man in the middle has a beard and is wearing a yellow vest. The man on the right is shorter and is wearing a black suit. They are all walking on a bridge that is under construction. The sky is grey and overcast.", - "id": 2137 + "image_path": "G:\\images\\combined\\006678_jpg.rf.a718665ca9bd858efe9de264bc7869c2.jpg", + "response": "A group of four men standing next to each other.", + "id": 32743 }, { - "image_path": "G:\\images\\combined\\00411_jpg.rf.b7421e855f216ea021b9cdebf838b460.jpg", - "response": "Three men in safety gear walking in front of a bridge.", - "id": 2138 + "image_path": "G:\\images\\combined\\006679_jpg.rf.d63648a4b726e6a871876d396af4025c.jpg", + "response": "A man wearing a hard hat and gloves is using a jackhammer to chip away at a cement wall.", + "id": 32744 }, { - "image_path": "G:\\images\\combined\\004120_jpg.rf.60d2324d84bdad04ce255fda81442929.jpg", - "response": "A group of men standing around a large piece of machinery.", - "id": 2139 + "image_path": "G:\\images\\combined\\006680_jpg.rf.4eb46738949bc514f0b0af7674b0759a.jpg", + "response": "A group of people working on a building construction site.", + "id": 32745 }, { - "image_path": "G:\\images\\combined\\004123_jpg.rf.339135c19e7bbd2c893066d8996791fb.jpg", - "response": "The image shows two workers in white and blue uniforms and blue helmets, who are repairing power lines. They are wearing safety harnesses and are focused on their task. One worker is standing on a ladder and is repairing a power line, while the other worker is helping him and is also holding a tool. The sky is blue and there are some leaves of a tree in the foreground.", - "id": 2140 + "image_path": "G:\\images\\combined\\006683_jpg.rf.b1fd3a507de9b22b5ce77387821c7925.jpg", + "response": "a group of men walking in front of a building", + "id": 32746 }, { - "image_path": "G:\\images\\combined\\004124_jpg.rf.cf44d50578d1ec478a111403126dba95.jpg", - "response": "A group of three men sitting in front of a red wall.", - "id": 2141 + "image_path": "G:\\images\\combined\\006684_jpg.rf.db8733e39a3fd5489420b3a0949315d5.jpg", + "response": "A man working on a building site wearing a yellow helmet and high visibility vest.", + "id": 32747 }, { - "image_path": "G:\\images\\combined\\004125_jpg.rf.1b5a92687b32c85ac9e369d2500c142f.jpg", - "response": "A man in a suit is speaking to a crowd of people. They are all wearing suits and standing on a wooden platform. In the background, there are several red buildings.", - "id": 2142 + "image_path": "G:\\images\\combined\\006685_jpg.rf.80f12f86806dacda0334e13c657f83f1.jpg", + "response": " Two linemen(473,809),(589,998)(727,572),(842,943) work on fixing a power line in the snow", + "id": 32748 }, { - "image_path": "G:\\images\\combined\\004126_jpg.rf.1ed25156827e03b2eae2e05c533bc6bb.jpg", - "response": "A man in an orange shirt and blue hat is on a telephone pole. He is wearing a tool belt and is in the process of climbing the pole. There are multiple wires attached to the pole and the man is reaching for one of them. The sky is blue and clear in the background.", - "id": 2143 + "image_path": "G:\\images\\combined\\006686_jpg.rf.f299fb7f50a230a81299029f78094a4b.jpg", + "response": "The image shows a group of three men working in a large tunnel. They are all wearing hard hats and the\u96a7\u9053 is lit with green and purple lights. The floor of the tunnel is covered in a layer of earth.", + "id": 32749 }, { - "image_path": "G:\\images\\combined\\004127_jpg.rf.4f524da6897ee8fd06b8d6b4c0b9a2de.jpg", - "response": "The image shows two men standing in front of a large, red, metal wall, which appears to be a part of a factory. The men are looking at a blueprint together, and both are wearing white helmets. The man on the left is holding the blueprint, and the one on the right is slightly behind him. Both men are dressed in a workman's uniform of dark clothing.", - "id": 2144 + "image_path": "G:\\images\\combined\\006687_jpg.rf.b6eabf6a4481be8b6a2635bd572001ab.jpg", + "response": "A worker on a building site wearing a hard hat and using a level to check the vertical plumb of a steel beam.", + "id": 32750 }, { - "image_path": "G:\\images\\combined\\004128_jpg.rf.ed61994ec5a5e8912951cf41c73038e0.jpg", - "response": "In the image there is a worker standing in front of a foundry with a large amount of fire and smoke. The worker is wearing a white shirt, a grey vest, black pants and a yellow helmet. The worker is also holding a water gun. The background shows a red hot metal furnace with a bright yellow flame and smoke.", - "id": 2145 + "image_path": "G:\\images\\combined\\006688_jpg.rf.d7bfac1f3a2af53ea130c610ea0b0d05.jpg", + "response": "A worker in a red jacket and yellow helmet is sitting on a black chair. They are surrounded by water and have their hands covered in red gloves. They are spraying water from a pipe with a black nozzle. The background is a concrete wall and a dark grey pipe.", + "id": 32751 }, { - "image_path": "G:\\images\\combined\\004129_jpg.rf.84fd795ff1306c246ac39d206b72b6b5.jpg", - "response": "The image shows two workers in grey winter gear clearing ice and snow from power lines. They are standing on a ladder and using ice axes to cut and remove the frozen ice. The ice has formed on the power lines and is also covering the nearby trees.", - "id": 2146 + "image_path": "G:\\images\\combined\\006690_jpg.rf.85fc20f7fbc4e5fa5c1745b22cbde5b2.jpg", + "response": "a man wearing a blue shirt and a yellow helmet", + "id": 32752 }, { - "image_path": "G:\\images\\combined\\004130_jpg.rf.c66a756e4341863a70283afcdd718cc3.jpg", - "response": "A group of four people standing in a unfinished building wearing hard hats.", - "id": 2147 + "image_path": "G:\\images\\combined\\006691_jpg.rf.9f8ef38ebca224db491640c92c585cbe.jpg", + "response": "a group of men standing on the sidewalk", + "id": 32753 }, { - "image_path": "G:\\images\\combined\\004131_jpg.rf.43a8db99d08538e2bfbfb1d286901358.jpg", - "response": "The image shows two men standing together on a construction site, looking at blueprints. They are both wearing hard hats. One man is on the left side of the image, and he is wearing a plaid shirt and blue jeans. The other man is standing to his right and is wearing a red hard hat and a light blue shirt. They are both closely examining the blueprints, which are placed on a table in front of them.", - "id": 2148 + "image_path": "G:\\images\\combined\\006692_jpg.rf.c4d388a1163840f1fdad4756927080e6.jpg", + "response": "In the image there are two people wearing construction gear. The person on the left is a man and is wearing a yellow vest and a blue helmet. The person on the right is a woman and she is wearing a white helmet. They are both holding a blueprint and looking at it. The blueprint is rolled up and is being held by the woman. They are both standing in a construction site.", + "id": 32754 }, { - "image_path": "G:\\images\\combined\\004132_jpg.rf.e721dff3be0d00a107df2f8a2f4822ba.jpg", - "response": "A group of men standing in front of a building under construction.", - "id": 2149 + "image_path": "G:\\images\\combined\\006693_jpg.rf.6c342f0aa8bdf594da62b0d94d325ce5.jpg", + "response": "a group of people standing around each other", + "id": 32755 }, { - "image_path": "G:\\images\\combined\\004133_jpg.rf.5a1862710670813c4bf73ded53665329.jpg", - "response": "Two men in orange shirts and hard hats are standing on a roof with solar panels. One man is looking at the solar panels while the other man is looking to the right.", - "id": 2150 + "image_path": "G:\\images\\combined\\006694_jpg.rf.453343c49ff2523464b55a84c80f37c3.jpg", + "response": "a group of men standing around a table with a large piece of paper on it", + "id": 32756 }, { - "image_path": "G:\\images\\combined\\004134_jpg.rf.901f37b4c60cb0093efa0a189c3fe28b.jpg", - "response": "A construction site with two men working on it.", - "id": 2151 + "image_path": "G:\\images\\combined\\006695_jpg.rf.ce8496e22d46cc61b3ade571ab8dcc89.jpg", + "response": "A group of workers in orange vests and helmets are working in a construction site. They are removing debris and dismantling parts of the structure. In the foreground, a worker is carrying a large bag of concrete. To the right, another worker is using a tool to remove debris. In the background, another worker is using a broom to clear the area. The walls of the structure are grey concrete and the roof is open.", + "id": 32757 }, { - "image_path": "G:\\images\\combined\\004136_jpg.rf.70ade99d07cb2ceea2492adb538fdf45.jpg", - "response": "A man in a red hard hat holding a stack of wood.", - "id": 2152 + "image_path": "G:\\images\\combined\\006696_jpg.rf.de5e7f9d8b4b5ec86e5d32c3295ca191.jpg", + "response": "A train track being worked on by many workers.", + "id": 32758 }, { - "image_path": "G:\\images\\combined\\004137_jpg.rf.7cd8c8d3dde58d32cbe96f2fdab2a9d6.jpg", - "response": "A worker in a yellow hat and jacket is on a yellow ladder, working on a power box in a dark room. The worker is using a small flashlight to illuminate the work area. There are several wires and cables visible in the room, both near the worker and extending from the power box. The wall next to the power box is made of concrete blocks and has a white sheet covering it.", - "id": 2153 + "image_path": "G:\\images\\combined\\006697_jpg.rf.ab6ee7a33cd65c1f66b25c0f99a86dc5.jpg", + "response": "A construction worker wearing a red hard hat and carrying a red metal bar. He is wearing a grey jacket and yellow work gloves. He has a large scar on his face. There are two buildings under construction in the background, one on the left and one on the right. The one on the left is taller and has many glass windows. The one on the right is taller and covered with a green net. The sky is clear and blue.", + "id": 32759 }, { - "image_path": "G:\\images\\combined\\004138_jpg.rf.65f8ac7f13f7e1432728a3d243b0e038.jpg", - "response": "A group of people standing around talking.", - "id": 2154 + "image_path": "G:\\images\\combined\\006698_jpg.rf.242285e3001222c9de9fe0e6e54a43a2.jpg", + "response": "The image shows a construction site with multiple cranes in operation. There are several construction workers visible, some of them wearing hard hats. The ground is covered in wooden supports and red mesh, and there are several unfinished concrete structures. The sky is blue with some white clouds.", + "id": 32760 }, { - "image_path": "G:\\images\\combined\\004139_jpg.rf.0db49c308255f976119e777ffae58543.jpg", - "response": "A man in a yellow jacket and orange hard hat is standing in front of a large metal structure. He is holding a tablet and looking into the camera.", - "id": 2155 + "image_path": "G:\\images\\combined\\0066ea5c6b26c5e2.jpg", + "response": "A group of five men are standing on a stage. They are all wearing baseball caps and jeans. The man on the far left is wearing a black shirt with white writing on it. The man second from the left is wearing a white shirt with black writing on it. The third man from the left is wearing a black shirt with white writing on it. The man in the center is not wearing a shirt. The man on the far right is wearing a jean jacket with no shirt underneath. They are all holding their arms up in the air.", + "id": 32761 }, { - "image_path": "G:\\images\\combined\\004140_jpg.rf.98998dc43256a32ecef6ad0db58e22ce.jpg", - "response": "A group of men standing around a construction site.", - "id": 2156 + "image_path": "G:\\images\\combined\\006700_jpg.rf.49d50dd849a095fe2ebe8757b6568c33.jpg", + "response": "A group of five men working on a construction site. They are all wearing hard hats and the site is filled with wooden poles and steel bars.", + "id": 32762 }, { - "image_path": "G:\\images\\combined\\004141_jpg.rf.e577fd7eef830c0d6e53a7c6fa8186ab.jpg", - "response": "The image shows a construction site where workers are busy. There are three workers in the image, all wearing yellow and green reflective jackets. They are working on a building that has wooden beams and metal rebar. The workers are positioned at different points on the building, with one on the left side, one in the middle, and one on the right side of the image. The workers are wearing helmets, with two of them wearing yellow helmets and one wearing a white helmet. The workers are also wearing boots, with two of them wearing yellow boots and one wearing black boots.", - "id": 2157 + "image_path": "G:\\images\\combined\\006701_jpg.rf.223343085f601ddbdc679827a7ca39af.jpg", + "response": "A construction site with three people present. One person is wearing a yellow vest and blue hard hat, standing in the center of the image, looking at a blueprint. Another person is standing in the background, wearing a yellow vest and a white hat. The third person is on the far left of the image, wearing a yellow vest and a white hat. There are two tables present in the scene, one in the foreground and one in the background. The tables have several items on them, including a cup, a book, a mouse, and a keyboard. There is also a backpack on the ground in the foreground.", + "id": 32763 }, { - "image_path": "G:\\images\\combined\\004142_jpg.rf.a11e18ca0b522bf42554786fd231660c.jpg", - "response": "A worker is welding a steel bar on the construction site. (Photo/\u5357\u56fd\u4eca\u62a5)", - "id": 2158 + "image_path": "G:\\images\\combined\\006702_jpg.rf.e54e8b6cdd9dadbb74a37b277799d239.jpg", + "response": "A group of three people looking at a blueprint.", + "id": 32764 }, { - "image_path": "G:\\images\\combined\\004144_jpg.rf.490656ccb71f71a58c54be3222e8fe95.jpg", - "response": "A worker in a yellow hard hat and blue uniform is working on an electrical component.", - "id": 2159 + "image_path": "G:\\images\\combined\\006703_jpg.rf.445f9a8efaaa81e7eaf1c429bacf8c30.jpg", + "response": "The image shows a group of construction workers wearing orange vests, working on a building site. The workers are on a scaffolding, and some of them are standing on it. They are working on a tall structure made of steel rebar. The sky is overcast, and there are a few clouds in the sky.", + "id": 32765 }, { - "image_path": "G:\\images\\combined\\004145_jpg.rf.4523b4c788d96d73cd351505ec4fd1ef.jpg", - "response": "A man in a suit and hard hat talking to a man in a construction vest and hard hat. They are standing in front of a shipping yard with a red trailer and a large crane in the background.", - "id": 2160 + "image_path": "G:\\images\\combined\\006704_jpg.rf.6a7342de179fb7a1c7a39985b6e9410b.jpg", + "response": "A group of linemen working on power lines.", + "id": 32766 }, { - "image_path": "G:\\images\\combined\\004146_jpg.rf.884d56c10d7c6bbe75519cbb8d18dc5d.jpg", - "response": "The image shows two men sitting on beige armchairs in a room with a red and black dragon patterned wallpaper. The two men are dressed in black suits. One man is sitting on the left side of the image and the other on the right side of the image. They are both looking at each other and smiling. There is a low table between them with two cups and two red and white vases on it. The background also features a large red and black dragon painting.", - "id": 2161 + "image_path": "G:\\images\\combined\\006705_jpg.rf.77955e8b6beca0a6b722e480c8859c1c.jpg", + "response": "An electrician repairs a transformer on the side of a building.", + "id": 32767 }, { - "image_path": "G:\\images\\combined\\004147_jpg.rf.b3b20a7ce25df36546e9a539690c1da6.jpg", - "response": "A couple of workers in orange and white are working on a transformer. They are both wearing blue helmets. The sky is grey and overcast.", - "id": 2162 + "image_path": "G:\\images\\combined\\006706_jpg.rf.d24abc63d6a55add38fd9034a444e6cc.jpg", + "response": "A group of men standing in a room with one man pointing at a device on the wall.", + "id": 32768 }, { - "image_path": "G:\\images\\combined\\004148_jpg.rf.a87881810afec6750d2fb415f53fafb5.jpg", - "response": "The image shows two construction workers sitting on a metal structure, which appears to be a part of a bridge under construction. Both of them are wearing yellow hard hats and gray shirts. The man on the left is holding a cell phone in his hands. They are both looking to their right, towards the right side of the image. In the background, there is a red tower crane operating in the construction site. The sky is blue with clouds.", - "id": 2163 + "image_path": "G:\\images\\combined\\006707_jpg.rf.40ef8f3a6b6687c27d56b8f3d3c5e1ce.jpg", + "response": " A miner(235,124),(523,997) is working in a mine shaft.", + "id": 32769 }, { - "image_path": "G:\\images\\combined\\004149_jpg.rf.cd0c2b9c7315bb71b811cc34eaf8b770.jpg", - "response": "A worker stands next to a tunnel boring machine (TBM) at the construction site of the", - "id": 2164 + "image_path": "G:\\images\\combined\\006708_jpg.rf.1b95c1212f23c1154485b5822b4edfe6.jpg", + "response": "A man with a yellow hard hat and a yellow hard hat are working on a house.", + "id": 32770 }, { - "image_path": "G:\\images\\combined\\004150_jpg.rf.d880403ca357ca68dda17908106fe596.jpg", - "response": "A group of men in white shirts and hard hats are gathered around a computer screen. They are all wearing ties.", - "id": 2165 + "image_path": "G:\\images\\combined\\006709_jpg.rf.7e65c985d0f0c4b88d8d8f156da4fcaf.jpg", + "response": "A train(4,77),(879,459) on the tracks", + "id": 32771 }, { - "image_path": "G:\\images\\combined\\004151_jpg.rf.0c877c88d29694f9f52e1ac1ab59c51a.jpg", - "response": "A group of men in work clothes and hard hats are working on an electricity pylon in a wooded area. They are all wearing blue hard hats.", - "id": 2166 - }, - { - "image_path": "G:\\images\\combined\\004152_jpg.rf.3a0695e1fe58093a13cc5c79dd7b6292.jpg", - "response": "Some construction workers are working on a large pile of dirt. In the background there is a large building under construction.", - "id": 2167 + "image_path": "G:\\images\\combined\\006710_jpg.rf.b54a2da2d744984889d036922f2854c1.jpg", + "response": "The photo shows a group of workers at a construction site. They are all wearing yellow hard hats and some are wearing orange safety jackets. They are standing inside a large\u7b3c\u5b50 of iron rods, which forms the framework for a bridge. In the background, there is a pile of wooden planks.", + "id": 32772 }, { - "image_path": "G:\\images\\combined\\004153_jpg.rf.ca2b861f26687249cee718f81098b7ea.jpg", - "response": "In the image there is a worker wearing a hard hat and blue coveralls. The worker is in a factory setting and is looking at a piece of machinery. The machinery is a large piece of equipment with a rounded top and a middle section that is open and has a large circular piece of machinery inside. The worker is standing in front of the machinery and is holding a tool. The factory floor is yellow and the walls are green. There are also some other workers in the background.", - "id": 2168 + "image_path": "G:\\images\\combined\\006711_jpg.rf.fc0428aeb162f5686d4f1e8e4cf491c9.jpg", + "response": "The image shows a group of construction workers working on a bridge. They are all wearing hard hats and are focused on their tasks. The bridge appears to be under construction, with some parts already completed and others still in the process of being built. The workers are spread out across the bridge, with some working on the left side and others on the right. The background shows a red truck parked on the right side of the image, and a river can be seen flowing below the bridge.", + "id": 32773 }, { - "image_path": "G:\\images\\combined\\004154_jpg.rf.d0d603e7eda6c77a15004f44c22e76ae.jpg", - "response": "A group of workers in blue uniforms and safety gear are working on an oil or water well. They are standing around the well, which is a metal structure with a red truck in the background. There are also some tools around the well, such as a shovel and a broom.", - "id": 2169 + "image_path": "G:\\images\\combined\\006712_jpg.rf.a07944052add4de117948a70a0c1ccd9.jpg", + "response": "A group of people in hard hats stand in a large, unfinished room. Some of them are wearing suits and ties.", + "id": 32774 }, { - "image_path": "G:\\images\\combined\\004155_jpg.rf.85592f20a3d477cc6e8bf270aef80411.jpg", - "response": "A group of linemen are working on power lines.", - "id": 2170 + "image_path": "G:\\images\\combined\\006713_jpg.rf.55a72ebc355160e9bc5c5a380dd1e9ec.jpg", + "response": "A worker is on a telephone pole, fixing some wires. He is using a ladder to reach the top of the pole. There are two motorcycles parked next to the pole. One is parked on the left side and the other one is parked on the right side. Both motorcycles are of the same model. In front of the pole, there is a small car parked. On the right side of the scene, there is a building with a sign that says \"\u6d77\u5357\u7535\u7f51\". The building is made of concrete and has two doors.", + "id": 32775 }, { - "image_path": "G:\\images\\combined\\004156_jpg.rf.be8502f763b805f371142f2c3278b332.jpg", - "response": "A worker in a red hat and white outfit is standing next to a large green and yellow machine. They are holding a red tool and appear to be making adjustments to the machine. The worker are in a room with a concrete floor and walls painted a dark grey. There is a red tool that the worker is holding.", - "id": 2171 + "image_path": "G:\\images\\combined\\006714_jpg.rf.b17f1ffa24bf82e71f5e69ee3b3d3164.jpg", + "response": "The image shows three workers in a room with green pipes on the walls. They are all dressed in green work clothes. Two of them are wearing white helmets. One of them is holding a large drill, while the other two are standing nearby. One of them is holding a large rock. They are all looking at something on the ground.", + "id": 32776 }, { - "image_path": "G:\\images\\combined\\004157_jpg.rf.9cf16e33b51d37ad1ad3fd15b17bcecc.jpg", - "response": "In the image two men are talking about the blueprints in front of a yellow bulldozer. Both men are wearing hard hats. One man is wearing a red hard hat and a white shirt and is on the right side of the image. The other man is wearing a yellow hard hat and a striped red and blue shirt and is in the center of the image. The bulldozer is in the background on the left side of the image.", - "id": 2172 + "image_path": "G:\\images\\combined\\006715_jpg.rf.9f9def4534ce8b3a835ac9592abb6ab2.jpg", + "response": "A construction site with two workers in hard hats and blue and yellow work clothes. They are working on a large structure made of steel rebar.", + "id": 32777 }, { - "image_path": "G:\\images\\combined\\004158_jpg.rf.b1e700e6d6263c8b82e1a666b4be12e9.jpg", - "response": "A construction worker operating a piece of machinery on a city street.", - "id": 2173 + "image_path": "G:\\images\\combined\\006716_jpg.rf.3e5f27091f0075af81ee2a1fd294313e.jpg", + "response": "The image shows two workers, one wearing blue helmet and dark green clothes, the other wearing a blue helmet and clothes with a little brown on it, pulling a black cable on the side of a road. The road is grey and there are some trees without leaves in the background. To the right of the scene, a blue truck is parked.", + "id": 32778 }, { - "image_path": "G:\\images\\combined\\004159_jpg.rf.622180a10a58333d827a9d92b9c08af9.jpg", - "response": "A pair of workers are installing glass on a skyscraper.", - "id": 2174 + "image_path": "G:\\images\\combined\\006717_jpg.rf.95554395f85e7aa6cf97f4b01b87c420.jpg", + "response": "A couple of men in camouflage uniforms and hard hats working on a metal rod at night.", + "id": 32779 }, { - "image_path": "G:\\images\\combined\\00415a985d812ecd.jpg", - "response": "A black, scuffed manual for a Super Nintendo game called Dog Squadron. The cover features a pilot in a jet with the words \"Dog Squadron\" in red above them.", - "id": 2175 + "image_path": "G:\\images\\combined\\006718_jpg.rf.56b53b798542eec0b216fb01db03c82a.jpg", + "response": "A man in a yellow hard hat and orange vest standing in front of a power line tower with his arms crossed.", + "id": 32780 }, { - "image_path": "G:\\images\\combined\\004160_jpg.rf.6982babcdb646caf0470ba3832caa504.jpg", - "response": "a group of men standing in front of a building", - "id": 2176 + "image_path": "G:\\images\\combined\\006720_jpg.rf.980bc7bcc62c79a9902abde0d08d1c78.jpg", + "response": "A worker is painting a wall with a roller. The wall is being painted with a green and blue color scheme. The worker is standing on a ladder and there are some wooden scaffolding nearby. The worker is wearing a red helmet and a pair of dark green overalls.", + "id": 32781 }, { - "image_path": "G:\\images\\combined\\004161_jpg.rf.5b2038a94d1570d14ff149db883c30ca.jpg", - "response": " two men(458,40),(740,480)(374,478),(788,793) in a hole in the ground", - "id": 2177 + "image_path": "G:\\images\\combined\\006721_jpg.rf.cd29883ad454c77a384bafda44d74822.jpg", + "response": "The image shows three construction workers at a construction site. They are all wearing hard hats and one of them is wearing a green camouflage jacket. The middle worker is holding a large orange pipe and is pouring liquid concrete into a large metal rebar grid. The worker on the far left is holding a long tool and is wearing a blue hard hat. The worker on the far right is also holding a long tool and is wearing a yellow hard hat. The scene is set at a construction site with a yellow metal fence in the background.", + "id": 32782 }, { - "image_path": "G:\\images\\combined\\004162_jpg.rf.7f3febf7d54c398fab3607b90cf9bf94.jpg", - "response": "A man and woman in safety gear look at a clipboard while a third person watches.", - "id": 2178 + "image_path": "G:\\images\\combined\\006722_jpg.rf.e2197ed113bcf9476f1d67cda40e1f32.jpg", + "response": "In the image there are three men wearing construction clothes and hard hats. They are working on a construction site which is in the mountains. There is a yellow and orange construction vehicle in the background. On the ground there is a black box and a yellow pipe.", + "id": 32783 }, { - "image_path": "G:\\images\\combined\\004163_jpg.rf.8d017067572292b37b1514a59e5a7775.jpg", - "response": "A worker in a blue uniform and red helmet is hugging a light pole.", - "id": 2179 + "image_path": "G:\\images\\combined\\00672399e1e9e074.jpg", + "response": "A close up of a Detecto analog clock face with a red second hand. The numbers on the clock are dirty and the second hand is covered in dust. The second hand is red and has a circular silver bolt in the middle. The Detecto logo is visible on the clock face.", + "id": 32784 }, { - "image_path": "G:\\images\\combined\\004164_jpg.rf.b358fb1be4e643a3b89b7a8eada635b2.jpg", - "response": "A man wearing a safety helmet and orange vest is using a chainsaw to cut through a tree trunk. The man is standing in a clearing with trees in the background. There is saw dust in the air and tree branches on the ground.", - "id": 2180 + "image_path": "G:\\images\\combined\\006723_jpg.rf.a12a1d62d07eb9ccacfc21c56109de83.jpg", + "response": "A man in a grey shirt and a white helmet looking off into the distance.", + "id": 32785 }, { - "image_path": "G:\\images\\combined\\004165_jpg.rf.be47457507f29421104029ff453b78ac.jpg", - "response": "A group of men in suits and hard hats stand in front of a construction site. In the background, there are several cranes and piles of concrete.", - "id": 2181 + "image_path": "G:\\images\\combined\\006724_jpg.rf.b0183f6c649c05607cce0cd56b1617f7.jpg", + "response": "A construction worker is seen in the image, wearing a yellow hard hat and a grey shirt. The worker is on a mountain side, standing on a ladder and using a shovel to pour concrete into a mold. The ladder is placed on the left side of the image and the mountain side is steep. The worker is positioned near the center of the image and the sky is filled with clouds in the background.", + "id": 32786 }, { - "image_path": "G:\\images\\combined\\004166_jpg.rf.6be1c3c9577d4e5211ede1937d0bfcb9.jpg", - "response": "The image shows three workers in yellow helmets who are carrying a large piece of metal on their shoulders and walking up a hill. The workers are all wearing blue overalls. One is on the left, the other on the right, and the third in the middle. In the background, there is a mountain in the distance with a white cloud in the sky. On the right side of the image, there is a red fence with a white border.", - "id": 2182 + "image_path": "G:\\images\\combined\\006725_jpg.rf.9100ef8aa242e0a5b902295531533d6a.jpg", + "response": "a group of men standing in front of a building that is being built", + "id": 32787 }, { - "image_path": "G:\\images\\combined\\004167_jpg.rf.610836a73b27cd86ca88ac02f412bdbd.jpg", - "response": "A group of men standing around and talking.", - "id": 2183 + "image_path": "G:\\images\\combined\\006726_jpg.rf.ae5c6a4a55a699b7bc4f3beddf7fe398.jpg", + "response": "The image shows a group of construction workers working on a building site. They are all wearing hard hats and are focused on their tasks. The workers are scattered around the site, with some sitting on a concrete block and others standing or crouching. They are all wearing blue jackets and red hard hats. In the foreground, a red hard hat is placed on a wooden plank.", + "id": 32788 }, { - "image_path": "G:\\images\\combined\\004168_jpg.rf.4dfe2bc6fa1102b1087629db2664171a.jpg", - "response": "The image shows two men in suits and hard hats standing on a construction site. The man on the left is pointing to something to the left of the frame, and the man on the right is holding a large sheet of plans in his hands. Both men are wearing yellow and red hard hats. The background contains a partially constructed building and some scaffolding.", - "id": 2184 + "image_path": "G:\\images\\combined\\006727_jpg.rf.3d5dea93abbf618c549b678c3aeb7e55.jpg", + "response": "A group of men in hard hats walking in front of a large back hoe.", + "id": 32789 }, { - "image_path": "G:\\images\\combined\\004169_jpg.rf.f7ab7c852a53d2ca18c169c3969ad298.jpg", - "response": "In the image there are two workers in the foreground, both wearing orange. They are working on a large metal object, which is most likely a piece of machinery. The metal object is bolted to a concrete foundation. In the background, there is an oil well with a large red pump. The sky is overcast and there are some mountains in the distance.", - "id": 2185 + "image_path": "G:\\images\\combined\\006728_jpg.rf.1320e363db8b96e618b1d5e4bc1b8086.jpg", + "response": " Men(501,495),(697,997)(801,462),(997,997)(387,592),(460,723) working on a ship at night", + "id": 32790 }, { - "image_path": "G:\\images\\combined\\004170_jpg.rf.d6da2dcddbddaf32dd283b46cb8a7bd2.jpg", - "response": "A group of people working on a ship in the water.", - "id": 2186 + "image_path": "G:\\images\\combined\\006729_jpg.rf.d52e436086905806d7262ea27f401261.jpg", + "response": "A group of men wearing hard hats stand in a construction site.", + "id": 32791 }, { - "image_path": "G:\\images\\combined\\004171_jpg.rf.8fa19a7eb14c7916f926e8e3743bbefd.jpg", - "response": "A group of workers in blue uniforms and hard hats are sitting on the ground, some have their feet up and are chatting. They are sitting on the ground, and there is a bottle of water on the ground in front of them. There is a cup on the ground to the left of the group and a bottle of beer to the right of the group. In the background, there is a banner with Chinese characters on it.", - "id": 2187 + "image_path": "G:\\images\\combined\\006730_jpg.rf.eb20d91e80e49a8ba03bb7136a4ee29a.jpg", + "response": "A construction worker wearing a yellow hard hat is working on a construction site. He is wearing a yellow hard hat, a grey shirt, a brown belt and is holding a yellow tool. He is squatting down and working on a red structure. There are many orange and yellow rods in the foreground. In the background, there are a few other workers, some buildings and a blue sky.", + "id": 32792 }, { - "image_path": "G:\\images\\combined\\004173_jpg.rf.a59d11aba80cdbe94d4d0b88d80d5b5f.jpg", - "response": "A crane is lifting a large metal bird into the air. The bird is in the process of being installed.", - "id": 2188 + "image_path": "G:\\images\\combined\\006731_jpg.rf.03d2acd1ff9faecd35138515d8c5eb86.jpg", + "response": "A group of three workers wearing orange jumpsuits and red helmets are working on a scaffold at a construction site. They are standing on the scaffold, which is built around a large concrete structure. The workers are focused on their tasks, and the one in the center of the group is climbing a ladder. The two others are engaged in other tasks. The sky is visible through the top of the image, and the sunlight is shining on the workers and the scaffold.", + "id": 32793 }, { - "image_path": "G:\\images\\combined\\004174_jpg.rf.1d9b60f90518db24791850e0fe141f2b.jpg", - "response": "In the image there are two construction workers in yellow helmets who seem to be working on a construction site. They are surrounded by iron rods and concrete. On the left side of the image, a yellow ladder is placed against a wall and a piece of iron is sawed off. On the right side of the image, a concrete mixer is placed and a hose is connected to it. The wall next to the workers is in a poor condition and seems to be ready to collapse.", - "id": 2189 + "image_path": "G:\\images\\combined\\006732_jpg.rf.765e7ff3b24c7aa41519d80781a409fd.jpg", + "response": "The image shows a group of men wearing hard hats and coats standing in a large, unfinished building. They are all wearing ties. Some of the men are pointing at something in the distance. In the foreground, one man is wearing a watch on his left wrist.", + "id": 32794 }, { - "image_path": "G:\\images\\combined\\004175_jpg.rf.c10776e64a963450811fb011282b2436.jpg", - "response": "An engineer in a hard hat crouches down next to a large piece of machinery. He is holding a small device in his right hand and is looking at it. The background is a greyish-blue color.", - "id": 2190 + "image_path": "G:\\images\\combined\\006733_jpg.rf.0a3e4a9b53e765be65b2f0bddcde2cff.jpg", + "response": "A construction site with a large pile of wood and metal in the foreground. There is a bridge in the background.", + "id": 32795 }, { - "image_path": "G:\\images\\combined\\0041761f98d08f66.jpg", - "response": "A blurry image of a pepsi cup sitting on a table.", - "id": 2191 + "image_path": "G:\\images\\combined\\006735_jpg.rf.f26c23b585e7b871ccde89234027d71b.jpg", + "response": "A group of workers are working on an electricity pylon in a field. They are all wearing yellow hard hats and work clothes. One man is on the left, he is wearing a yellow hard hat and over the shoulder bag. He is holding a large tool in his hands. Another man is on the right, he is not wearing a hat but his sleeves are rolled up. A third man is in the middle, he is wearing a yellow hard hat and has a tool in his hands. He is looking at the pipe the men on the left and right are working on. The fourth man is behind the third, he is not wearing a hat but his sleeves are rolled up. He is holding a large tool as well.", + "id": 32796 }, { - "image_path": "G:\\images\\combined\\004176_jpg.rf.b4a543aaaf16a26dbd6ad60fa9848eae.jpg", - "response": "A group of three men working on an oil pump.", - "id": 2192 + "image_path": "G:\\images\\combined\\006736_jpg.rf.2967e29ab6758b25d6ba3d5bfb4e6797.jpg", + "response": "A worker is seen wearing a blue hard hat and standing in front of a bank of servers.", + "id": 32797 }, { - "image_path": "G:\\images\\combined\\004177_jpg.rf.f7ab1eda6d6be2b0a60f3b38c03f5050.jpg", - "response": "A miner is seen working at a coal mine in China's Shanxi province.", - "id": 2193 + "image_path": "G:\\images\\combined\\006737_jpg.rf.cd6eaf51beec111224b3b67d58557b59.jpg", + "response": " A man(478,103),(689,935) leaning against a pillar(258,3),(493,837)", + "id": 32798 }, { - "image_path": "G:\\images\\combined\\004178_jpg.rf.0e206e1bb6d7f4f0e2bb44440d563f57.jpg", - "response": "A group of three men working on a boat in the water.", - "id": 2194 + "image_path": "G:\\images\\combined\\006738_jpg.rf.f84132154ad3741d31711ac3bb807a6b.jpg", + "response": "A group of rescue workers stand under a waterfall of water.", + "id": 32799 }, { - "image_path": "G:\\images\\combined\\004179_jpg.rf.7941b1308ece34de75aa768ad4e9f58b.jpg", - "response": "The image shows a group of workers in orange vests and helmets working on clearing bags of soil and other materials next to a dirt road. They are standing near a pile of bags and appear to be in the process of clearing them. In the background, there is a tunnel and a pile of construction materials.", - "id": 2195 + "image_path": "G:\\images\\combined\\006739_jpg.rf.87c5753e4ccf9c4c91350afeedaac43d.jpg", + "response": "A man wearing a yellow hard hat is holding a rolled up blueprint in front of a house that is under construction. The man is wearing a plaid shirt and jeans.", + "id": 32800 }, { - "image_path": "G:\\images\\combined\\00417_jpg.rf.6bf661bdf568677a72662b14d862be60.jpg", - "response": "A man wearing a white hard hat and a blue shirt is speaking to a reporter. The man is wearing a white hard hat and has a mustache. He is standing in front of a yellow construction site with a sign that says \"\u5927\u6e7e\u94c1\u8def\". There is a yellow tower in the background.", - "id": 2196 + "image_path": "G:\\images\\combined\\006740_jpg.rf.c57e1c72889a81777dfd4d349b7af044.jpg", + "response": " Workers(297,172),(618,910)(177,207),(363,998)(10,70),(257,997) in safety gear stand in a large underground tunnel", + "id": 32801 }, { - "image_path": "G:\\images\\combined\\00417_jpg.rf.b207fa843335bd5914b3c954a70b9cfd.jpg", - "response": "A man wearing a white hard hat and a blue shirt is speaking to a reporter. The man is wearing a white hard hat and has a mustache. He is standing in front of a yellow construction site with a sign that says \"\u5927\u6e7e\u94c1\u8def\". There is a yellow tower in the background.", - "id": 2197 + "image_path": "G:\\images\\combined\\006741_jpg.rf.15781a5f8982f63ba5b6eae524323e76.jpg", + "response": "a group of people standing under a wet parking lot", + "id": 32802 }, { - "image_path": "G:\\images\\combined\\004180_jpg.rf.d0ecc5caeac470ec41a659960ccec2eb.jpg", - "response": "A group of men working on a building site on a cliff side.", - "id": 2198 + "image_path": "G:\\images\\combined\\006743_jpg.rf.ad81ef135985b1ee6d2a4ef845b74f0c.jpg", + "response": "A man(238,128),(372,642) in a red jumpsuit standing in a cave.", + "id": 32803 }, { - "image_path": "G:\\images\\combined\\004181_jpg.rf.480440bb407ad3d7e64aedf377e41e99.jpg", - "response": "A group of workers are seen carrying a large metal beam up a steep hill. They are all wearing hard hats and work clothes. In the background, there is a city visible.", - "id": 2199 + "image_path": "G:\\images\\combined\\006744_jpg.rf.6b6e697eb2616a4e9aa31b46838be3ce.jpg", + "response": " Two men(618,267),(997,770)(235,167),(645,821) working in a cave", + "id": 32804 }, { - "image_path": "G:\\images\\combined\\004182_jpg.rf.b6823ce715f21f2e850336673b3c5245.jpg", - "response": "A man in a red hard hat is working on a counter in a room that is under construction. There is another person in the background. The walls are bare and the floor is unfinished. There are several tools on the floor, including a hammer, a level, and a bucket. There is also a piece of wood sitting on the counter.", - "id": 2200 + "image_path": "G:\\images\\combined\\006745_jpg.rf.abdc7f18607f53a8f3617c4fe7372a48.jpg", + "response": "In the image, two workers are standing in a factory. They are both wearing yellow hard hats and blue work clothes. The worker on the left is holding a tablet and a pen, while the worker on the right is holding a clipboard. They are both looking up at a wall-mounted control panel. In front of them is a yellow control cabinet. To the left of the workers, there is a large orange pipe.", + "id": 32805 }, { - "image_path": "G:\\images\\combined\\004183_jpg.rf.6233ac30a59c981b4343ef7617aebc8e.jpg", - "response": "A group of rescue workers in orange uniforms and white helmets are working on a construction site. There are several workers in the scene, some are working on the rubble of a building, and others are standing on the site. The workers are wearing orange uniforms and white helmets. They are using tools such as crowbars and shovels to clear debris and search for survivors. The site is surrounded by barbed wire fencing to keep people away.", - "id": 2201 + "image_path": "G:\\images\\combined\\006746_jpg.rf.8807cb17d31c21350d868ffede3c3518.jpg", + "response": "The image shows three construction workers in a construction site. They are all wearing blue work clothes and yellow helmets. The middle worker is pointing at something on a concrete column, and the other two workers are looking at it. There are several tools around them, including a shovel, a broom, and a bucket. The ground is covered with metal grating, and a piece of red rope is tied to a metal bar. The background shows a steel rebar structure of a building.", + "id": 32806 }, { - "image_path": "G:\\images\\combined\\004184_jpg.rf.da0c2dc8be870112760332127baa0bfd.jpg", - "response": "In the image there are two people working on a machine. The people are wearing yellow hard hats, grey jumpsuits and orange safety shoes. The machine they are working on is silver and grey and is located in a room with pipes on the ceiling.", - "id": 2202 + "image_path": "G:\\images\\combined\\006748_jpg.rf.faabaed98c74230a5fc98882af2107e4.jpg", + "response": "A construction site with multiple cranes and a large pile of grey pipes.", + "id": 32807 }, { - "image_path": "G:\\images\\combined\\004185_jpg.rf.5dff2c945314abb2d225371399206a98.jpg", - "response": "A couple of men working on a large transformer.", - "id": 2203 + "image_path": "G:\\images\\combined\\006749_jpg.rf.1f5d33484454faddf35b21cc22a54bed.jpg", + "response": "A group of men working with a large spool of black cable.", + "id": 32808 }, { - "image_path": "G:\\images\\combined\\004186_jpg.rf.fa0c7d3e97a85d7f0e02671b5e8b3df6.jpg", - "response": "A group of men standing around a construction site.", - "id": 2204 + "image_path": "G:\\images\\combined\\00674_jpg.rf.b842e9a799a4cdb5c4ee08ad298251d9.jpg", + "response": "In the image there is a woman wearing a yellow vest and a blue helmet. She is holding a tablet in her hands. In the background there is a building under construction. The building has a lot of scaffolding in front of it.", + "id": 32809 }, { - "image_path": "G:\\images\\combined\\004187_jpg.rf.e4fc602df26f365bd83cfaa58c8d615b.jpg", - "response": "A construction site with a tall building under construction. The building is made of concrete and has a cage-like structure on the outside. There is a worker in a yellow helmet standing in front of the building, and a few more workers are in the site. There are also a few trucks and a crane.", - "id": 2205 + "image_path": "G:\\images\\combined\\006752_jpg.rf.8b2a135eb64ccd10f40b63966b604fc1.jpg", + "response": "In the image there are three workers wearing yellow helmets and overalls. They are installing a silver solar panel on a stand in a desert-like mountain area. The stand is made of metal and the solar panel is almost completely installed. In the background, there are several other solar panels installed on the ground and on the stand. There are also some buildings in the distance.", + "id": 32810 }, { - "image_path": "G:\\images\\combined\\004188_jpg.rf.3f8b3e0b4395bce2f755ef329ecdb4b6.jpg", - "response": "A man in a red and blue striped shirt and yellow hard hat smoking a cigarette.", - "id": 2206 + "image_path": "G:\\images\\combined\\006753_jpg.rf.6cf1c04a39a03d771119320e7f11a254.jpg", + "response": "A group of people walking in front of a building under construction", + "id": 32811 }, { - "image_path": "G:\\images\\combined\\004189_jpg.rf.1133c7400ede57b857b474a1fa0707ba.jpg", - "response": "A man in a grey shirt is standing in front of a group of other men. They are all standing in front of a blue fence and a red and white barricade. In the background there is a mountain. The man in the grey shirt has his hands behind his back and is looking to the left.", - "id": 2207 + "image_path": "G:\\images\\combined\\006754_jpg.rf.f411f656e45de585d5781c5fd7695264.jpg", + "response": "A group of men standing around each other", + "id": 32812 }, { - "image_path": "G:\\images\\combined\\004190_jpg.rf.1522f0b149ba141f9f5e4cdaaa33da77.jpg", - "response": "A group of four men dressed in high visibility vests and hard hats are standing on a construction site. They are all holding a clipboard and looking at the paper on it.", - "id": 2208 + "image_path": "G:\\images\\combined\\006755_jpg.rf.7b14f641da7c7cf715f78c7584c1b80c.jpg", + "response": "A group of three men standing in a room that is filled with rubble and debris. They are all wearing hard hats and one of them is holding a flashlight.", + "id": 32813 }, { - "image_path": "G:\\images\\combined\\004191_jpg.rf.3c8d4b9ab90bf78f679df4b7211fa165.jpg", - "response": "A group of men are working on power lines in the snow.", - "id": 2209 + "image_path": "G:\\images\\combined\\006756_jpg.rf.cdebc0c73c286e257a056683b0e14b81.jpg", + "response": "Four men in high visibility vests and hard hats, standing in a construction site.", + "id": 32814 }, { - "image_path": "G:\\images\\combined\\004192_jpg.rf.0a56443d5bda5945ca267be041af4658.jpg", - "response": "In the image two workers are seen working on a railway line. The railway is seen from the middle and is grey in color. It has railway tracks on both sides. The workers are seen wearing orange uniforms and are wearing blue helmets. One worker is seen on the left and the other on the right. They are holding tools in their hands. There is a truck visible at the far end of the railway line.", - "id": 2210 + "image_path": "G:\\images\\combined\\006757_jpg.rf.c451ab8e8e78233bd99f9f0fc9a871c5.jpg", + "response": "a group of people standing around in a construction site", + "id": 32815 }, { - "image_path": "G:\\images\\combined\\004193_jpg.rf.eaa338051c2d1abeb275e9bccd4da019.jpg", - "response": "A group of men in suits standing in front of a gate that says, \\\"\u7cbe\u81f4\u9c81\u8fdb,\u6210\u5c31\u4eba\u624d\u68a6\u60f3,\u52c7\u6500\u897f\u5317\u5fb7\u8005\u897f\u5357\u5317\\\".", - "id": 2211 + "image_path": "G:\\images\\combined\\006759_jpg.rf.ce0f72f1e46dea674d841c69e10e5d8e.jpg", + "response": "A group of three men in hard hats working on a power box.", + "id": 32816 }, { - "image_path": "G:\\images\\combined\\004194_jpg.rf.77ee73c17fc0bb52080f7859cc9470c6.jpg", - "response": "A man wearing a red hat and no shirt is using a shovel to dig into the ground. He is standing in a construction area with a pile of dirt next to him. In the background, there is a tall building.", - "id": 2212 + "image_path": "G:\\images\\combined\\006760_jpg.rf.a783c562064d5d475a83030ebedc1564.jpg", + "response": "a group of people sitting around a large wooden dining table", + "id": 32817 }, { - "image_path": "G:\\images\\combined\\004195_jpg.rf.31f6a8ebbd24277fabcc899288a896b0.jpg", - "response": "A construction worker digging up the ground with a shovel.", - "id": 2213 + "image_path": "G:\\images\\combined\\006761_jpg.rf.8c01bd1566d3d5ae2970d72621f11522.jpg", + "response": "A man in blue standing on a metal platform in front of a tall building under construction.", + "id": 32818 }, { - "image_path": "G:\\images\\combined\\004196_jpg.rf.48a2265528af30d12dda26f5d7dcfb08.jpg", - "response": "The image shows two men working on an oil drilling rig. They are wearing orange work suits and red helmets. One man is on the left and is pulling on a cable while the other man is on the right and is holding a large metal pipe. They are both looking at the pipe. In the background, there is a white building with a wooden frame. The ground is covered in dirt and mud.", - "id": 2214 + "image_path": "G:\\images\\combined\\006762_jpg.rf.c03dd414d7cb7084029a813a3969c435.jpg", + "response": "A group of men in hard hats are standing on a staircase in a factory. They are wearing dark blue clothing and some of them also have on white hard hats. One man is on the third step from the bottom of the staircase and is looking to the left. Another man is on the second step from the bottom and is looking to the right. The third man is on the bottom step and is looking to the right. The man at the top of the staircase is looking down. There is a large pipe on the left side of the image that is painted blue and has a yellow pipe attached to it. There is also a brown pipe attached to the blue pipe.", + "id": 32819 }, { - "image_path": "G:\\images\\combined\\004197_jpg.rf.ea9ef77dda716ef0964e7ade3fc794b3.jpg", - "response": "A close-up of a piece of equipment is shown with a mountain in the background.", - "id": 2215 + "image_path": "G:\\images\\combined\\006763_jpg.rf.c53024135d54f23bafa8d5a54d0c34b8.jpg", + "response": "A group of people working on a construction site.", + "id": 32820 }, { - "image_path": "G:\\images\\combined\\004198_jpg.rf.f65bdf915227a20766e0dcd55b0577cd.jpg", - "response": "A man wearing a hard hat and work clothes is working on a street light. He is leaning over and appears to be adjusting a metal piece on the side of the pole. The sky is blue behind him.", - "id": 2216 + "image_path": "G:\\images\\combined\\006764_jpg.rf.0b30c3ef50f83d1b1f62ed0ccdeea264.jpg", + "response": "The image shows three people standing in front of a small construction site. They are all wearing red helmets, with the person on the left wearing a white shirt and grey shorts. The person in the middle has long dark hair and is wearing a white top and blue jeans. The person on the right is taller and has short dark hair, he is wearing a black top and grey pants. They all seem to be deep in conversation. In the background, there is a small construction site with a yellow excavator parked on the left and a orange digger on the right. Behind the diggers, there is a white sign with black letters. The ground in front of the people is bare and dusty.", + "id": 32821 }, { - "image_path": "G:\\images\\combined\\004199_jpg.rf.524648ae5a421923cdeeb16a23d16252.jpg", - "response": "A group of people walking across a construction site.", - "id": 2217 + "image_path": "G:\\images\\combined\\006765_jpg.rf.be7d3466ef32fa8db705528180617137.jpg", + "response": "A large tunnel with two workers in orange safety jackets and hard hats looking at the camera.", + "id": 32822 }, { - "image_path": "G:\\images\\combined\\00419_jpg.rf.75ea982fa8fd31ffede8caa505a69f5c.jpg", - "response": "A man and woman are standing with a construction worker. They are all holding a blueprint and smiling. The walls are bare and the room is full of furniture.", - "id": 2218 + "image_path": "G:\\images\\combined\\006766_jpg.rf.f44937d5c79fcd215d4c8560167524a3.jpg", + "response": "A group of people standing in a unfinished building.", + "id": 32823 }, { - "image_path": "G:\\images\\combined\\00419_jpg.rf.899934c254f1d35c80481fff7a7f3619.jpg", - "response": "A man and woman are standing with a construction worker who is holding a rolled up blueprint. They are all smiling at the camera. The walls are bare and the room is in the process of being built.", - "id": 2219 + "image_path": "G:\\images\\combined\\006768_jpg.rf.51dc5e3336361000992766480d9de67d.jpg", + "response": "The image shows a group of men walking in a line. They are all wearing white or blue shirts and are of varying heights and builds. They are all walking in the same direction, towards the right of the image. Most of the men are Chinese, and some are wearing ties. They are walking on a grey sidewalk in front of a large building under construction. The building has many tall grey pillars and a grey roof. It is currently being built and has scaffolding and construction materials scattered around it.", + "id": 32824 }, { - "image_path": "G:\\images\\combined\\004200_jpg.rf.23a41bc335e6a598680eeaa8fbb153e3.jpg", - "response": "A group of people standing in front of a mountain.", - "id": 2220 + "image_path": "G:\\images\\combined\\006769_jpg.rf.bf53e9acbcf342137a643a6247fabc60.jpg", + "response": "A construction worker pouring concrete into a grid of rebar.", + "id": 32825 }, { - "image_path": "G:\\images\\combined\\004201_jpg.rf.0c55671a82cca4c3f21a264a7af664e9.jpg", - "response": "The image shows a construction site with several people working. There is a large building in the background and a concrete floor with steel rebar in the foreground. Some of the steel rebar is laid out in a grid pattern, while other sections are tangled together. A few people are standing in the concrete floor area, with one person wearing a yellow hard hat and another person wearing a white hard hat. There is a person on the far left wearing a red helmet and another person wearing a yellow shirt further back in the scene. In the background, there is a large building that looks like it's in the middle of construction.", - "id": 2221 + "image_path": "G:\\images\\combined\\006770_jpg.rf.af4a7e5269e8334ac289df07a4a79ca7.jpg", + "response": "A man is on a ladder, working on some wires. There are several other people around him, some standing and some crouching. They are all wearing hard hats. In front of them is a pile of equipment, including a box and some wires. There are also a few boxes on the ground. In the background, there is a building with many windows.", + "id": 32826 }, { - "image_path": "G:\\images\\combined\\004202_jpg.rf.168607e684653e55ae2cab5529bafad6.jpg", - "response": "A man in an orange vest and blue hat is on a telephone pole at night.", - "id": 2222 + "image_path": "G:\\images\\combined\\006771_jpg.rf.218ff651582c8f0e1106c944604aad1e.jpg", + "response": "In the image there is a man who is working on a construction site. He is wearing a white shirt, a white helmet, and a red handkerchief around his neck. The man is holding a long tool in his right hand, which he is using to level out some concrete. The man is also wearing black pants. The whole scene seems to be taking place on a construction site.", + "id": 32827 }, { - "image_path": "G:\\images\\combined\\004203_jpg.rf.9a5c24dc58be027f330de48e3056d3d7.jpg", - "response": "A construction worker in a red jacket and hat is working on a building. There are several buckets and a large spool of wire on the ground. The worker is kneeling down and working on something. The sun is shining on the building and the worker.", - "id": 2223 + "image_path": "G:\\images\\combined\\006772_jpg.rf.dbc02166907c297434f409aae3d3206c.jpg", + "response": "The image shows three men in red uniforms and orange helmets working on a power line. They are standing on a metal platform that is attached to a wooden pole. The man in the middle is pulling on a wire while the man on the left is holding a tool. The man on the right is reaching for a wire. The power box at the bottom of the pole has many wires and knobs. The sky is overcast.", + "id": 32828 }, { - "image_path": "G:\\images\\combined\\004205_jpg.rf.444d7847551eb34a2e5124fd901e6a3e.jpg", - "response": "A man in a yellow hard hat is measuring a wall.", - "id": 2224 + "image_path": "G:\\images\\combined\\006773_jpg.rf.08b59b3b7cb47f5c1df9fe3f892623d8.jpg", + "response": "In the image there are three miners working in a coal mine. They are wearing yellow helmets and are dirty. In front of them is a large rock with a hole in it. They are using long tools to work on the rock.", + "id": 32829 }, { - "image_path": "G:\\images\\combined\\004206_jpg.rf.20f7b87f905bb7c2f1d200fbd04dfd0c.jpg", - "response": "A construction site with two workers wearing yellow vests and hard hats.", - "id": 2225 + "image_path": "G:\\images\\combined\\006774_jpg.rf.7b6e47ab0b24f8657969de188641195a.jpg", + "response": "The image shows a group of workers at a construction site. They are wearing hard hats and working on a large concrete structure. There are several workers spread out across the scene, with some standing on the ground and others on a small platform. They are all focused on their tasks, which include pouring concrete and connecting rebar. The sky is a clear blue color and the sun is shining brightly.", + "id": 32830 }, { - "image_path": "G:\\images\\combined\\004208_jpg.rf.bcb11cd1946d8d6d31ace847697fe1d5.jpg", - "response": "An electrician and an apprentice work on a circuit board.", - "id": 2226 + "image_path": "G:\\images\\combined\\006776_jpg.rf.2e83b6804487cf0f2f9ee6d0fa9c4fff.jpg", + "response": "A group of people walking out of a large tunnel.", + "id": 32831 }, { - "image_path": "G:\\images\\combined\\004209_jpg.rf.94325401ac4d8a97a21fd9f5266c6dc5.jpg", - "response": "A construction site with three men in yellow and green jackets and one man in a blue jacket. They are wearing hard hats and the men in the middle and the one on the right are holding papers. There is a drill in the middle man's hand. The room they are in has a concrete floor and walls and a window in the background.", - "id": 2227 + "image_path": "G:\\images\\combined\\006777_jpg.rf.26c16da0739a90bb81b0f21e9cc152e3.jpg", + "response": "A group of three workers in yellow safety gear are standing in a field. They are dressed in blue work clothes and are looking into a piece of surveying equipment.", + "id": 32832 }, { - "image_path": "G:\\images\\combined\\00420_jpg.rf.3d4a0194e425b83c1be1bda72d624fda.jpg", - "response": "The image shows three men standing in front of a blackboard. The two men on the left are standing closer to the left side of the blackboard, while the man on the right is standing closer to the right side of the blackboard. They are all wearing white shirts. The man on the left is holding a microphone and speaking. The man on the right is also holding a microphone but has his hand by his chest.", - "id": 2228 + "image_path": "G:\\images\\combined\\006778_jpg.rf.0cffcd429591132541872d332cea66c4.jpg", + "response": "a group of people walking down a street", + "id": 32833 }, { - "image_path": "G:\\images\\combined\\00420_jpg.rf.68b32bbf37ac3e3daca1c86ae1920c09.jpg", - "response": "The image shows three men standing in front of a blackboard. The two men on the left are both wearing white shirts and are standing closer to the left side of the blackboard. The man on the right is also wearing a white shirt and is standing closer to the right side of the blackboard. They all appear to be looking at a screen that is mounted on the wall above the blackboard. The screen is showing an image and there is an mp3 player mounted on top of it. The three men are looking in the same direction, probably at the screen on the wall.", - "id": 2229 + "image_path": "G:\\images\\combined\\006779_jpg.rf.6ecc672e6f23a9b12c5cd8b0c081af6f.jpg", + "response": "A man in a hard hat, red shirt and coveralls is holding a paint roller. He is smiling at the camera.", + "id": 32834 }, { - "image_path": "G:\\images\\combined\\004210_jpg.rf.eca7ba00a934e619920b1f0a5c44a41a.jpg", - "response": "A group of workers wearing red vests and helmets are working in a park. One worker is pointing to the left while another worker is pointing to the right. A man in a blue vest is kneeling down in the background.", - "id": 2230 + "image_path": "G:\\images\\combined\\006780_jpg.rf.5e7240a2393dfafcee20673240a1df6c.jpg", + "response": "A group of men standing around a table with laptops on it.", + "id": 32835 }, { - "image_path": "G:\\images\\combined\\004211_jpg.rf.d3e62947f3e2fc006fbd74586e800b94.jpg", - "response": "The image shows a construction site with several workers wearing blue uniforms and yellow helmets. They are working on a building that is still in the early stages of construction. The building has a metal framework, and some workers are standing on it. One worker is using a tool on a large metal rod, while another worker is operating a crane in the background. There are also some workers standing near the metal framework of the building.", - "id": 2231 + "image_path": "G:\\images\\combined\\006781_jpg.rf.75331f4b67d55948895a1f11fae6a3a5.jpg", + "response": "A worker is seen hanging from a power line in the image. He is wearing a blue shirt and blue pants. He is holding onto the power line with both hands. He is in the process of climbing a wooden power pole.", + "id": 32836 }, { - "image_path": "G:\\images\\combined\\004212_jpg.rf.2a48758a92083ba472df5e0ccbbdaf90.jpg", - "response": "In the image, several people are performing first aid on a person who is lying on the ground. The person lying on the ground is wearing a white shirt and is in the process of being given chest compressions. There are two other people wearing yellow and red who are also giving first aid. One of the people giving first aid is holding a walkie-talkie. In the background, there is a large truck parked on the right side of the image.", - "id": 2232 + "image_path": "G:\\images\\combined\\006782_jpg.rf.e7a8f8cb2a82a07a111649bd411adfa9.jpg", + "response": "A group of men in white shirts and ties, some wearing hard hats, stand in a construction site. In the background there are two buildings under construction. To the right there is a yellow and black construction site fence. In the bottom right corner there is a website logo and the text Fang.com.", + "id": 32837 }, { - "image_path": "G:\\images\\combined\\004213_jpg.rf.d31b43e63d544f504e22dd4dabc6201e.jpg", - "response": "Man(246,330),(389,861) in a cave filled with debris(2,632),(993,997)", - "id": 2233 + "image_path": "G:\\images\\combined\\006785_jpg.rf.49eec245c84dcb1bfe2dde1b7086c776.jpg", + "response": "In the image there are two workers wearing orange hard hats and safety vests, they are working on a construction site made of wood and metal. In the background there are tall buildings under construction. There is a blue sky with clouds in the upper part of the image.", + "id": 32838 }, { - "image_path": "G:\\images\\combined\\004214_jpg.rf.059de090f6c8ce09954f90c3c834aec4.jpg", - "response": "The image shows four workers in blue uniforms and red hardhats walking and talking in front of a large under-construction factory. The factory is in the background and is surrounded by several cranes. In the foreground, the workers are holding blueprints and there is a red and white sign that says \"Power China\". The sign is to the left of the workers and the ground is grey. There are also two red oil cans in the image, one on the right and one on the left.", - "id": 2234 + "image_path": "G:\\images\\combined\\006786_jpg.rf.99f9458884296a54af63620162918009.jpg", + "response": "Two workers in blue uniforms and safety gear are working on an electrical panel. They are kneeling on the floor, one on the left and one on the right, with the electrical panel in front of them. The electrical panel is a metal box with several wires and cables coming out of it. The worker on the left is fixing a red and black cable that is tangled up, while the worker on the right is fixing a green and white cable. They both have blue helmets on and are wearing blue uniforms.", + "id": 32839 }, { - "image_path": "G:\\images\\combined\\004215_jpg.rf.362b9a83d56258554b24a52ad8085e5c.jpg", - "response": "A woman in a black coat is standing in a room with several other people. There is a set of stairs in the background on the right side of the room. On the left side of the room, there is a window with the sun shining through it. In front of the window, there is a table with several bottles on it. On the right side of the room, there are several other bottles.", - "id": 2235 + "image_path": "G:\\images\\combined\\006787_jpg.rf.4352fe682385ec2782fd2fcec8acc46d.jpg", + "response": "A group of workers wearing yellow helmets are huddled together, pulling on a large piece of concrete. They are all wearing yellow and grey jackets and have their hands protected by thick gloves. One worker has a white beard and is wearing blue jeans, while another worker is wearing a white hat and has a beard. They are all working on a construction site that has concrete pillars and ropes on the ground.", + "id": 32840 }, { - "image_path": "G:\\images\\combined\\004216_jpg.rf.207b930ebad69505e8cd93d82eabd995.jpg", - "response": "A lineworker is suspended from a safety line while working on a power pole. He is wearing a harness and has a tool belt. He is repairing a damaged power line.", - "id": 2236 + "image_path": "G:\\images\\combined\\006788_jpg.rf.da296db3b41ddcb83c2be929c1396061.jpg", + "response": "In the image two men are working on a large piece of equipment. One man is on top of the equipment and the other is on the bottom. They are both wearing hard hats and the man on the bottom is also wearing a red hard hat. The man on top is welding something on the equipment.", + "id": 32841 }, { - "image_path": "G:\\images\\combined\\004217_jpg.rf.8d8708df171d84030503f7fe1156c7b4.jpg", - "response": "The image shows a construction site with a building under construction in the background. The building has a sign that says \"7\u697c\" (7th floor). There are several people standing in the foreground, some of them wearing hard hats. A few people are also wearing orange vests. In the distance, there is a red truck parked next to the building. The sky is blue with some clouds.", - "id": 2237 + "image_path": "G:\\images\\combined\\006789_jpg.rf.da433e35347d48c6648f3d3bc5f4e9c1.jpg", + "response": "a group of men standing around a man in a suit", + "id": 32842 }, { - "image_path": "G:\\images\\combined\\004218_jpg.rf.f01c5cb87d55ed9a8276f0412df47ecc.jpg", - "response": "A woman in a pink helmet and a white shirt is pointing to something on a yellow fence. The fence is in front of a yellow building.", - "id": 2238 + "image_path": "G:\\images\\combined\\006791_jpg.rf.32a45e763dc08ede5a797cf967006094.jpg", + "response": "A group of men standing around a bus.", + "id": 32843 }, { - "image_path": "G:\\images\\combined\\004219_jpg.rf.1cca73cf236590ae6dc1e3974880a398.jpg", - "response": "A man in a white shirt and a hard hat points to something in the distance while another man in a yellow hard hat looks up at him. They are standing in front of a large solar panel installation.", - "id": 2239 + "image_path": "G:\\images\\combined\\006792_jpg.rf.c6b6abd363d9d93a6b1f5762733e6758.jpg", + "response": "A construction worker in a yellow vest and a man in a white hard hat are standing on a construction site. The man in the white hard hat is holding a rolled up piece of paper.", + "id": 32844 }, { - "image_path": "G:\\images\\combined\\004221_jpg.rf.f60ae21d9da3ad63a07685b4f914c127.jpg", - "response": "A worker in a yellow vest stands on a track at a construction site.", - "id": 2240 + "image_path": "G:\\images\\combined\\006794_jpg.rf.8e4a86ca39827469b50be3df420791f9.jpg", + "response": "A group of people sitting around a table.", + "id": 32845 }, { - "image_path": "G:\\images\\combined\\004222_jpg.rf.f83bd1c23d84c017d2a43922f4f4b3ba.jpg", - "response": "A construction worker wearing a white shirt and yellow apron is using a hose to spray concrete into a hole. He is standing on a wooden platform and wearing a white hard hat.", - "id": 2241 + "image_path": "G:\\images\\combined\\006795_jpg.rf.b948abd822ee604a81f03b709b468a9d.jpg", + "response": "The image shows a group of construction workers wearing yellow hard hats and safety vests, working on a large construction project in a desert setting. They are standing next to a massive sandbag that has been filled and is being held together by a large strap. The sandbag is filling with sand and appears to be almost fully constructed. The workers are standing in a line, with some closer to the foreground and others further back. The background is a barren desert landscape with no visible features.", + "id": 32846 }, { - "image_path": "G:\\images\\combined\\004223_jpg.rf.5edf4410f10f18e665e1cfa82eb92a47.jpg", - "response": " Two construction workers(388,136),(798,996)(722,213),(970,996) standing in front of a bulldozer(17,456),(362,996)", - "id": 2242 + "image_path": "G:\\images\\combined\\006796_jpg.rf.195a5457537566002fa65671c7ebe396.jpg", + "response": "A man in a blue jumpsuit and hat is climbing on a power pole. He is holding a tool in his hand.", + "id": 32847 }, { - "image_path": "G:\\images\\combined\\004225_jpg.rf.8ec01feac294047f8167cfb2f94f4814.jpg", - "response": "A group of men standing in front of a building.", - "id": 2243 + "image_path": "G:\\images\\combined\\006797_jpg.rf.831f7acb8f6f62749f1b904bcd867ccd.jpg", + "response": "In the image there is a large pipe that is orange in color and has a metal structure around it. The pipe is connected to a valve that also has a metal structure around it. The whole scene is set in a factory with several people present, two of which are wearing yellow helmets and are working on the large pipe. The background is a bit blurry and there are several pipes and tubes in the scene.", + "id": 32848 }, { - "image_path": "G:\\images\\combined\\004226_jpg.rf.31dd75939bd766c6339073f151aca292.jpg", - "response": "An electrician in camouflage clothing and a yellow helmet is in the process of climbing a telephone pole. They are wearing climbing gear and have a tool belt around their waist. They are gripping the pole with one hand and have another hand on a rope that is attached to their tool belt. In the background, there are power lines and a green field.", - "id": 2244 + "image_path": "G:\\images\\combined\\006798_jpg.rf.b223b5875afb18056d38a3cbfa91a3b2.jpg", + "response": "Men(673,209),(920,996)(544,209),(660,860)(124,164),(320,996)(10,241),(187,957) standing in a construction site", + "id": 32849 }, { - "image_path": "G:\\images\\combined\\004227_jpg.rf.fa717eb7eed2b754dcdf2880fecd6125.jpg", - "response": "A worker with the city's electric department inspects a power box on a street corner in the city of Xinjiang, China.", - "id": 2245 + "image_path": "G:\\images\\combined\\006799_jpg.rf.22c87cf68a364f0c902a946c0f627daf.jpg", + "response": "An electrician is working on a power line.", + "id": 32850 }, { - "image_path": "G:\\images\\combined\\004228_jpg.rf.20dc8045f7af3785a600dc66210463d4.jpg", - "response": "A man in a white shirt and blue jeans is wearing a yellow construction hat and holding a white tablet. He is smiling at the camera. Behind him is a building under construction with a crane working in the background.", - "id": 2246 + "image_path": "G:\\images\\combined\\006800_jpg.rf.2556fcb5c849aaf2aceb8ff9aee30595.jpg", + "response": "A man wearing a white t-shirt and a yellow hard hat, holding a yellow drill. He is standing on a red ladder, which is placed on a wooden floor. He is smiling at the camera.", + "id": 32851 }, { - "image_path": "G:\\images\\combined\\004229_jpg.rf.e66fa5238300ab209c37e81d8018dfff.jpg", - "response": "A man in a hard hat and camouflage clothing is on a scaffolding working on the side of a red building.", - "id": 2247 + "image_path": "G:\\images\\combined\\006801_jpg.rf.dad078e1e46cafd1e670ddb62485fc37.jpg", + "response": "A man in a red hard hat is on a power line.", + "id": 32852 }, { - "image_path": "G:\\images\\combined\\004230_jpg.rf.b9f44d5b70cb6f4b7505ca2af68b383e.jpg", - "response": "In the image there is a construction worker in a orange safety helmet and blue work clothes crouched down looking at a set of plans. The worker also has a white hard hat in his pocket and a orange safety vest. The plans the worker is looking at are held in his left hand and are covered with a white plastic bag. The worker is on a construction site which has several metal girders on the ground and a white building in the background. There is also a red and white construction sign in the background on the left side of the image.", - "id": 2248 + "image_path": "G:\\images\\combined\\006802_jpg.rf.e68eab85741536f27244ca4fd8c94706.jpg", + "response": "A group of people walking together, all wearing hard hats. They are in front of a construction site with a partially built building.", + "id": 32853 }, { - "image_path": "G:\\images\\combined\\004231_jpg.rf.bab678ded3e902ccdc0441aae5269a07.jpg", - "response": "A group of four people standing on a construction site with two of the people wearing red hard hats.", - "id": 2249 + "image_path": "G:\\images\\combined\\006803_jpg.rf.47cfc9a7aea97a50b9c3a6767c8fdd24.jpg", + "response": "A man is working on some wires.", + "id": 32854 }, { - "image_path": "G:\\images\\combined\\004232_jpg.rf.4d628841cfd94ba5e3731c2b84cb950c.jpg", - "response": "The image shows two workers at a construction site, pouring concrete for a building's foundation. They are wearing yellow hard hats and are focused on their task. The ground is covered in a network of steel rebar, which is being poured with concrete. The workers are in the center of the frame, with the rebar extending out to the edges of the image.", - "id": 2250 + "image_path": "G:\\images\\combined\\006804_jpg.rf.f22b0afa7ab577873c9c9308d6f3abac.jpg", + "response": "The image shows a group of men standing next to each other. They are all wearing green hard hats, and some of them are also wearing suits. The men are standing in front of a construction site, which can be seen in the background.", + "id": 32855 }, { - "image_path": "G:\\images\\combined\\004233_jpg.rf.0ead2387bf6f992263b6fa19864442fd.jpg", - "response": "A group of men working on a construction site.", - "id": 2251 + "image_path": "G:\\images\\combined\\006805_jpg.rf.b8e94e91c88dc082733a5706da03a138.jpg", + "response": "A man wearing a hard hat standing in front of a large boat that is in the process of being built.", + "id": 32856 }, { - "image_path": "G:\\images\\combined\\004234_jpg.rf.4202fa082d3206dcd4b8fbe6da3a208a.jpg", - "response": "The picture shows a scene of a city street. On the left side of the picture, there are several people wearing white shirts and black suits. Some of them are wearing red ties. In the middle of the picture, there is a group of people standing in front of a white building. One person in the middle is wearing a white shirt and a black suit. Another person on the right side of the picture is wearing a grey shirt and a black suit. In the background, there are many high-rise buildings. On the right side of the picture, there is a person wearing a red scarf and a yellow hat.", - "id": 2252 + "image_path": "G:\\images\\combined\\006806_jpg.rf.549b9a45d5e4742f6f5d91f9fc614941.jpg", + "response": "In the image there are three men working on a construction site. They are all wearing orange protective clothing, including coveralls and hard hats. They are standing in front of a piece of machinery, possibly a digger, and there are several metal pipes in the foreground. The sky is light grey in color.", + "id": 32857 }, { - "image_path": "G:\\images\\combined\\004236_jpg.rf.c9923cee0895caa412a51e7433b26c4d.jpg", - "response": "Two men in high visibility vests and hard hats stand in front of a bulldozer. One man is smiling at the camera and is holding a rolled up piece of paper.", - "id": 2253 + "image_path": "G:\\images\\combined\\006807670831da4d.jpg", + "response": "A black book cover with the title Tales from Underwood by David H Keller.", + "id": 32858 }, { - "image_path": "G:\\images\\combined\\004237_jpg.rf.083fc1c2331c90d4f934c933450e0f98.jpg", - "response": " People(263,508),(828,996) wearing helmets(428,532),(546,663)(589,582),(799,881)(293,577),(430,706)(538,550),(638,662) and protective gear are standing in a dark cave.", - "id": 2254 + "image_path": "G:\\images\\combined\\006807_jpg.rf.c57c7c49a742bdda47360f5520491681.jpg", + "response": "A group of people working on a construction site.", + "id": 32859 }, { - "image_path": "G:\\images\\combined\\004238_jpg.rf.53969e0e0addb4963a8a4214c2c9d456.jpg", - "response": "The image shows a construction site with a yellow excavator digging a hole in the ground. The excavator is in the center of the image, with a small blue shed visible to the left. There are two construction workers standing in the foreground, both wearing yellow hard hats. One of the workers is on the left, and the other is in the center of the image. A car is parked on the left side of the image, partially obscured by a person. The ground is bare and covered in dirt, with a few trees visible in the background. The sky is blue, and the sun is shining.", - "id": 2255 + "image_path": "G:\\images\\combined\\006809_jpg.rf.dbacf56d8fd5467005fe905c95840d6d.jpg", + "response": "The image shows three men wearing blue coveralls and white hard hats, walking in a field near a large white storage tank. The men are all holding white tablets and are positioned in front of the tank, which has a ladder on the right side of it. The middle man is holding a tablet in his right hand and looking to the left. The man on the left is also holding a tablet and looking to the right. The man in the back is also holding a tablet and looking to the left.", + "id": 32860 }, { - "image_path": "G:\\images\\combined\\004239_jpg.rf.4f13f2455ef266a5b00600e3c4653df3.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints at a construction site.", - "id": 2256 + "image_path": "G:\\images\\combined\\006811_jpg.rf.9e3856de4cbbd9ae05fa4030fca2e6ce.jpg", + "response": "In the image there is a factory worker wearing a hard hat and orange safety goggles. They are working on a factory assembly line, cutting and welding metal. There is a bright orange hue to the sparks flying from the cutting tool. In the background, there is a yellow forklift and a few other people working.", + "id": 32861 }, { - "image_path": "G:\\images\\combined\\004240_jpg.rf.a20a79182130c27d8c0ac3d640a7e917.jpg", - "response": "A group of men in hard hats and safety gear are working on an electrical grid. They are sitting on top of the grid, which is made of metal and has many electrical components attached to it. Some of the men are holding tools and appear to be focused on their work. The sky above them is overcast.", - "id": 2257 + "image_path": "G:\\images\\combined\\006812_jpg.rf.86fabe1785e8f09e103e2f2c09485c9a.jpg", + "response": "A group of four people, two men and two women, wearing hard hats are looking at blueprints on the ground. They are standing in a construction site with a building under construction in the background.", + "id": 32862 }, { - "image_path": "G:\\images\\combined\\004241_jpg.rf.5a18823f7117145a8d675ff805feece2.jpg", - "response": "In the image two workers are seen\u4fee\u7406ing an electricity transformer. They are wearing blue uniforms and are in a field of yellow flowers.", - "id": 2258 + "image_path": "G:\\images\\combined\\006813_jpg.rf.5772812e46db7792dc9e7aba983041a0.jpg", + "response": "In the image two workers are seen carrying a large grey cable. They are both dressed in blue and are wearing blue helmets. The background shows a power tower and some transmission lines.", + "id": 32863 }, { - "image_path": "G:\\images\\combined\\004242_jpg.rf.0860f52e48c4b33cfdf94a4df597f1c4.jpg", - "response": " Three men(352,497),(402,713)(268,473),(344,694)(400,474),(456,720) in hard hats(386,473),(426,517)(275,472),(314,513)(318,473),(356,513) standing on a construction site", - "id": 2259 + "image_path": "G:\\images\\combined\\006814_jpg.rf.587bd0c1c6e72cbaa1b77b35a4ab1986.jpg", + "response": "A construction worker wearing a red hat is sitting on scaffolding.", + "id": 32864 }, { - "image_path": "G:\\images\\combined\\004243_jpg.rf.efd620dcae74740aaddde946b2fe7db7.jpg", - "response": "In the image there are two people working on a construction site building a structure. The two people are wearing yellow hats and the person on the left is also wearing a green shirt. They are working on a grid of steel rebar.", - "id": 2260 + "image_path": "G:\\images\\combined\\006815_jpg.rf.5be2f7b19f646745efd07629652e0e28.jpg", + "response": "A man is working on a wooden beam while another man is working on a wooden beam. They are both wearing hard hats.", + "id": 32865 }, { - "image_path": "G:\\images\\combined\\004244_jpg.rf.9b41f269a8163ceab2ae0bb71a6b1452.jpg", - "response": "A man and a woman standing in an unfinished brick building.", - "id": 2261 + "image_path": "G:\\images\\combined\\006816_jpg.rf.11739e3be9b159390afd584b37f73c52.jpg", + "response": "The image shows a group of men wearing hard hats and business attire, walking down a narrow corridor. Some of the men are carrying white cords. The walls of the corridor are white and the ceiling has exposed pipes. The men are standing in a large open room with unfinished walls on the right side.", + "id": 32866 }, { - "image_path": "G:\\images\\combined\\004245_jpg.rf.ed1b76ee7aae6ad3ed2d4c8cb6b5973d.jpg", - "response": "The image shows a group of workers in a large tunnel. They are working on a large piece of equipment that resembles a train, but with a large circular saw blade on the front. The workers are standing on both sides of the machine, which is located in the center of the room. They are wearing hard hats and the room is filled with debris, including many bags of it. The walls of the tunnel are white and the floor is a dirty grey.", - "id": 2262 + "image_path": "G:\\images\\combined\\006817_jpg.rf.45f98441159b54bd2441597bb227685e.jpg", + "response": "A group of people wearing hard hats are gathered around a cell phone. Some of the people are looking at the phone while others are looking at the camera. They are all dressed in work clothes.", + "id": 32867 }, { - "image_path": "G:\\images\\combined\\004246_jpg.rf.a80a7168f1e07ab5c7fb3c266b915a2d.jpg", - "response": "A group of men in blue work uniforms are working on power lines. They are standing on a cherry picker and a ladder. They are wearing hard hats and safety gear.", - "id": 2263 + "image_path": "G:\\images\\combined\\006818_jpg.rf.9e2bde6cc035141a001eec4167599515.jpg", + "response": "A group of men standing in front of a construction site", + "id": 32868 }, { - "image_path": "G:\\images\\combined\\004247_jpg.rf.7288af6f821aad2deb97b3e613e4ec1e.jpg", - "response": "In the image there are two men wearing blue helmets and white work clothes. They are both working on a large piece of equipment that is open and plugged in. The equipment is grey and black and has red and yellow wires attached to it. The men are standing in front of the equipment and one of them is holding a yellow and black screwdriver.", - "id": 2264 + "image_path": "G:\\images\\combined\\006819_jpg.rf.893e8ced78f6eb311f90a3b2ed441209.jpg", + "response": "A group of men standing under a red and blue umbrella.", + "id": 32869 }, { - "image_path": "G:\\images\\combined\\004248_jpg.rf.846fd3bccd9f294c31c6b4d5e20a680b.jpg", - "response": "A man standing in a large concrete tunnel.", - "id": 2265 + "image_path": "G:\\images\\combined\\006820_jpg.rf.49b802fa601f5f5a63f4f2b08c416cb7.jpg", + "response": "A construction worker wearing a yellow helmet and a blue shirt is working on a metal bar. He is holding a large wrench and is standing on a building. The background shows a cityscape with tall buildings.", + "id": 32870 }, { - "image_path": "G:\\images\\combined\\004249_jpg.rf.323b8a12e853862e464153f75738bc0d.jpg", - "response": "A worker repairs a power line covered with ice in the town of Xuanen, northwest China's Gansu province, January 23, 2011. REUTERS/China Daily", - "id": 2266 + "image_path": "G:\\images\\combined\\006821_jpg.rf.9ea9450cd47f017ffd258ce2cd17c69c.jpg", + "response": "The image shows a group of people walking through a large warehouse. The warehouse has a high ceiling and is filled with various machinery and equipment. There is a large machine on the left side of the image, and another machine on the right side. In the center of the room, there is a white box surrounded by people. The people are wearing jackets, with some of them wearing black and others wearing other colors. The room is also filled with various bags and boxes.", + "id": 32871 }, { - "image_path": "G:\\images\\combined\\004250_jpg.rf.9b20395306bc38b56f32ad2bb6ac0d03.jpg", - "response": " Two workers(689,270),(879,996)(15,125),(583,988) are working in a mine.", - "id": 2267 + "image_path": "G:\\images\\combined\\006822_jpg.rf.4d4f7a3b44dc8ed486f3457733687630.jpg", + "response": "A man in a hard hat and orange work suit is pointing to something in the distance to a man in a hard hat, blue shirt and jeans. They are standing in a large, open building that appears to be in disrepair. There are several cinderblocks lying on the ground and debris scattered about. The two men are the only people in the image.", + "id": 32872 }, { - "image_path": "G:\\images\\combined\\004251_jpg.rf.f6cda4cc7016c83a4fa93fa4aad50220.jpg", - "response": "A worker in a yellow hard hat stands next to a large pipeline. The pipeline is black and yellow and runs through a lush green valley. The worker is looking over the top of the pipeline and is wearing a blue shirt with a white logo on the left chest. There is a truck parked in the background on the left side of the pipeline and a road cutting through the valley. The worker is standing on a bridge that runs over the pipeline.", - "id": 2268 + "image_path": "G:\\images\\combined\\006823_jpg.rf.a75b887abb4e9561ebc8baf68ae8e36e.jpg", + "response": "In the image there are three people working on a metal structure. Two of the people are wearing orange vests and yellow hats. The person on the left is wearing a red vest and hat, the person in the middle is wearing a camouflage vest and no hat. The third person is on the far right and is wearing a yellow hat but no other information can be ascertained about this person. The metal structure they are working on has many wires and pipes running through it.", + "id": 32873 }, { - "image_path": "G:\\images\\combined\\004252_jpg.rf.40ffc33103e7e6f8a97df6d2b190c717.jpg", - "response": "In the image there is a construction site with a worker wearing blue overalls and a yellow hard hat. The worker is holding a long piece of metal with both hands and appears to be working on a yellow and red piece of machinery. There are other workers in the background and a white building under construction can be seen in the distance.", - "id": 2269 + "image_path": "G:\\images\\combined\\006824_jpg.rf.fbd4ba1b30624414bb9db6b3aff7acff.jpg", + "response": "An overhead view of a city street with a worker fixing a power line. The worker is wearing a blue helmet and clothes and is standing on a ladder. The street is filled with people and cars. There is a tree branch on the ground and a group of people standing on the sidewalk.", + "id": 32874 }, { - "image_path": "G:\\images\\combined\\004253_jpg.rf.58f42d57eb6f08e44d0606f789f6ada6.jpg", - "response": "A group of men wearing hard hats.", - "id": 2270 + "image_path": "G:\\images\\combined\\006825_jpg.rf.c02f3a2e282cb30c985fc0150ed29d14.jpg", + "response": "The image shows three construction workers standing on a construction site. They are all wearing green hard hats and yellow jackets. The workers are positioned at different spots on the site, with one on the left, one in the center, and one on the right.", + "id": 32875 }, { - "image_path": "G:\\images\\combined\\004254_jpg.rf.899696ab1e72c14c7a0904cf6023f36a.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest standing in a room that is under construction. The walls are green and the man is standing in front of a large window. He is holding a cell phone in his hand.", - "id": 2271 + "image_path": "G:\\images\\combined\\006826_jpg.rf.bd4023bbb583aac0304aada540b1cbfc.jpg", + "response": "A worker wearing a yellow vest and a blue helmet is seen in this photo. He is working on an electricity meter that is installed on the wall of a wooden house. The worker is using a drill to fix the meter. There are also other workers in the background, but they are not in focus. In the foreground, there is a pile of grey rocks and a yellow rope.", + "id": 32876 }, { - "image_path": "G:\\images\\combined\\004255_jpg.rf.84eaf860d226389de4b185ea68165d5f.jpg", - "response": "The image shows a large vehicle, possibly a truck, in a tunnel. There are three workers in the tunnel, one on the left, one in the center, and one on the right. The workers are wearing orange and blue uniforms and yellow hard hats. The vehicle has a large drill on the front of it. The tunnel walls are white and grey stone.", - "id": 2272 + "image_path": "G:\\images\\combined\\00682742582c3ae9.jpg", + "response": "A white board with a diagram of the Janzen-Connell model of plant community dynamics. The diagram is a simple line drawing of a forest with a tree labeled \"seedling recruitment\" and a line coming from it that branches into two lines, one labeled \"propability of survival\" and the other labeled \"seedling recruitment\". Below the diagram is a paragraph of text that explains the model.", + "id": 32877 }, { - "image_path": "G:\\images\\combined\\004256_jpg.rf.288f6421b53df50cb96b95bd7e91edde.jpg", - "response": "The picture shows the chief secretary of Xinxiang, Zhen silin, to investigate the work . In the picture, Zhen silin is on the right side, wearing a black suit, a white shirt and black trousers. Xinxiang is in the lower right corner of the picture.", - "id": 2273 + "image_path": "G:\\images\\combined\\006827_jpg.rf.1cd705561b90cd33cc27a20436a3c008.jpg", + "response": "A group of men standing in front of a building.", + "id": 32878 }, { - "image_path": "G:\\images\\combined\\004257_jpg.rf.467431bfda9839057a8557b975a52285.jpg", - "response": "a man wearing a green hard hat and yellow overalls standing in a tunnel", - "id": 2274 + "image_path": "G:\\images\\combined\\006828_jpg.rf.bf467e8bad4b864c5b0ac1353d888b06.jpg", + "response": "A group of people standing on a construction site.", + "id": 32879 }, { - "image_path": "G:\\images\\combined\\004258_jpg.rf.a730c6f7585bff632063c84be69ff5a4.jpg", - "response": "A construction worker walking towards a yellow tractor with a large scoop on the front.", - "id": 2275 + "image_path": "G:\\images\\combined\\006829_jpg.rf.209df07d2632f1a1e6804bdba7ef18b5.jpg", + "response": "The image shows two workers in a cave. They are standing on a platform and are equipped with safety gear, including green and yellow jackets, yellow helmets, and green masks. The worker on the left is holding a yellow pipe, while the one on the right is holding a black pipe. The cave is filled with water, and there are tools and a pump on the platform. The background shows the cave's rough walls.", + "id": 32880 }, { - "image_path": "G:\\images\\combined\\004259_jpg.rf.566c5f2c9ceefd60e28fe4c391dd8419.jpg", - "response": "A group of three people standing on a construction site with blue prints in front of them.", - "id": 2276 + "image_path": "G:\\images\\combined\\006832_jpg.rf.09af7572253aef6b3038e3c928670249.jpg", + "response": "a man(237,258),(499,994) wearing a red shirt and a red hard hat(381,258),(491,377) is using a telescope on a tripod.", + "id": 32881 }, { - "image_path": "G:\\images\\combined\\004260_jpg.rf.37a40ac68dc53b325288c6b4a4c91922.jpg", - "response": "A group of workers are carrying a gurney with a body on it. They are wearing hard hats and uniforms. The room they are in has scaffolding and construction materials all around.", - "id": 2277 + "image_path": "G:\\images\\combined\\006834_jpg.rf.2bd76d8b9c95a1fdda5f2a60d8a66c67.jpg", + "response": "A group of five men in yellow shirts and red helmets are standing on a construction site. They are wearing red helmets and yellow shirts. The site has many buildings in the background. One man is sitting on the ground and two others are standing behind him. They are all looking at a blueprint.", + "id": 32882 }, { - "image_path": "G:\\images\\combined\\004262_jpg.rf.40b8a69466cb780aa3218358e80c2404.jpg", - "response": "A group of men standing next to each other near a construction site.", - "id": 2278 + "image_path": "G:\\images\\combined\\006835_jpg.rf.f724a23a18e7c466366d4bd025e9fa88.jpg", + "response": "Two men wearing hard hats, one.", + "id": 32883 }, { - "image_path": "G:\\images\\combined\\004263_jpg.rf.b309f7a35ae8e86d94a5cd175709abc2.jpg", - "response": "Men in white and red shirts standing on a sidewalk", - "id": 2279 + "image_path": "G:\\images\\combined\\006836_jpg.rf.a9218e019a30de90b1e5a06c347c767d.jpg", + "response": "In the image two workers dressed in orange jumpsuits and white helmets are crouched down inspecting a train track. They are holding a grey tablet in their hands. The sky is blue with some white clouds. In the background there is a yellow and grey building.", + "id": 32884 }, { - "image_path": "G:\\images\\combined\\004265_jpg.rf.1d28a40b6964a8c6676550b4ac433d64.jpg", - "response": "The image shows three workers in orange jumpsuits and hard hats on a snowy mountain. They are working together to use a large chain and a tool with an orange handle to attach something to a rope.", - "id": 2280 + "image_path": "G:\\images\\combined\\006837_jpg.rf.c14c5434aa61b965c9599c1f55f20af4.jpg", + "response": "A worker welding inside a large circular metal structure.", + "id": 32885 }, { - "image_path": "G:\\images\\combined\\004266_jpg.rf.700378f3dbc656371a89732cc753d222.jpg", - "response": "A group of workers in orange and yellow work wear with helmets.", - "id": 2281 + "image_path": "G:\\images\\combined\\006838_jpg.rf.c5d9c2db4b377d12d2d7f67cd28710aa.jpg", + "response": "A group of men in suits and hard hats are standing in a large, unfinished building. The walls are bare and the floor is unfinished. In the background, there are a few other unfinished buildings.", + "id": 32886 }, { - "image_path": "G:\\images\\combined\\004267_jpg.rf.0019400faaf2a8fa98078d4b04044b23.jpg", - "response": "A man in a white lab coat and red helmet sitting at a desk using a machine.", - "id": 2282 + "image_path": "G:\\images\\combined\\006839_jpg.rf.5b0af7f4507730539b64a3c597f8351a.jpg", + "response": "A construction worker wearing a yellow vest and blue hard hat is kneeling down on the street. He is holding a long tool and shining a light on the street. He is wearing a blue hard hat, a yellow vest, and black shoes. He is kneeling on the street next to a large metal beam.", + "id": 32887 }, { - "image_path": "G:\\images\\combined\\004268_jpg.rf.3ec83bd10a97ae6ae37dee8ed21de5e1.jpg", - "response": "A man and a woman wearing hard hats and safety vests standing in a unfinished room.", - "id": 2283 + "image_path": "G:\\images\\combined\\006840_jpg.rf.f7cefe20baf5fc4da4f930b566c931dc.jpg", + "response": "A group of six people standing next to each other in a dirt lot at night. They are all wearing hard hats and orange safety vests. The person on the far left is wearing a red safety hat and an orange safety vest. The person second from the left is wearing a blue hat and a blue coat. The third person from the left is wearing a red hat and a red coat. The person fourth from the left is wearing a blue hat and a blue coat. The person fifth from the left is wearing a white hat and a blue coat. The person on the far right is wearing a black coat and a black hat.", + "id": 32888 }, { - "image_path": "G:\\images\\combined\\004269_jpg.rf.2548b44f49c05d543d307e5a2842a8dc.jpg", - "response": "The image shows a group of six men standing in a mine shaft. They are all wearing orange coveralls and red hard hats. The men are holding flashlights and looking into the distance. The leftmost man is holding a flashlight in his right hand, and the second man from the left is holding a flashlight in his left hand. The third man is holding a flashlight in his right hand, and the fourth man is also holding a flashlight in his left hand. The fifth man is holding a flashlight in his right hand, and the man on the right is holding a flashlight in his right hand. The men are standing in front of a large cave entrance.", - "id": 2284 + "image_path": "G:\\images\\combined\\006841_jpg.rf.804ef96777fa61db48e2959b8fdc87b4.jpg", + "response": "A group of three men in orange jumpsuits and blue hard hats are climbing a metal tower. They are wearing safety harnesses and are in the process of climbing a metal ladder attached to the tower. The sky is blue and clear behind them.", + "id": 32889 }, { - "image_path": "G:\\images\\combined\\004270_jpg.rf.c7d1ce1a7c8891616bdef33b7f5c0e5e.jpg", - "response": "A group of workers are working on a construction site.", - "id": 2285 + "image_path": "G:\\images\\combined\\006842_jpg.rf.35815d72d1987825d59a8a699800b414.jpg", + "response": "A man in blue overalls is hanging from a power line, working on a power box.", + "id": 32890 }, { - "image_path": "G:\\images\\combined\\004271_jpg.rf.8e5e5fc0bce5b31b7dcfe5013be2d62b.jpg", - "response": "A worker in a yellow hard hat and black jacket and pants crouches down to work on a section of track.", - "id": 2286 + "image_path": "G:\\images\\combined\\006843_jpg.rf.c1abc72b44617d886f91625616d41318.jpg", + "response": "A group of three men standing next to each other wearing hard hats.", + "id": 32891 }, { - "image_path": "G:\\images\\combined\\004272_jpg.rf.2760ef47202d8cc4b95d3aa03d777089.jpg", - "response": "The image shows a smiling man wearing a red hard hat and an orange work vest standing in a room. The room has a shelf with various items on it, including a yellow roll of tape, a brown box, and a red box. There is also a white and black coffee mug on the shelf. The man is wearing a red and white helmet and has a mustache. The background is white.", - "id": 2287 + "image_path": "G:\\images\\combined\\006844_jpg.rf.b215de9c5242951032f48e4de51117f9.jpg", + "response": "A group of firefighters are gathered around a metal ladder. They are wearing yellow and black suits and red helmets. Some of them are holding hoses while one of them is pointing towards something. There is a car parked in the background.", + "id": 32892 }, { - "image_path": "G:\\images\\combined\\004273_jpg.rf.4a68c5292db404235c1e124cb59c0995.jpg", - "response": "A man wearing a yellow hard hat standing in front of a brick wall with scaffolding.", - "id": 2288 + "image_path": "G:\\images\\combined\\006845_jpg.rf.286910f52eb65e846470a257f856d2ee.jpg", + "response": "A man is working on a construction site with a large drill.", + "id": 32893 }, { - "image_path": "G:\\images\\combined\\004274_jpg.rf.0221f06e5303f2e958c6f22e3b93c3fb.jpg", - "response": "Two construction workers wearing helmets are working on a building. The worker on the left is wearing a grey top and blue pants, while the worker on the right is wearing a brown top and black pants. The worker on the right is also wearing a yellow helmet. They are working on a building that has scaffolding around it. The building itself is grey and has a white pillar in the middle of it.", - "id": 2289 + "image_path": "G:\\images\\combined\\006846_jpg.rf.13494396fa8b9cae8b97cd776ea3a8ad.jpg", + "response": "In the image two construction workers are standing underneath a sky. They are both wearing blue jackets and white helmets. In front of them is a large piece of machinery. To the left of the workers is a large grey pole. In the background there is a large building with brick walls. The sky is a clear blue.", + "id": 32894 }, { - "image_path": "G:\\images\\combined\\004275_jpg.rf.a659abb1c9d66efb4218bcf6606ae5a8.jpg", - "response": "The image shows a man trapped under a large piece of construction equipment. He is lying on the ground, with the equipment on top of him. Several rescue workers are working to free him. One worker is kneeling over him, while another worker is standing to the side. There is a third worker standing further to the side, and a fourth worker is kneeling closer to the man. There is also a police officer standing further to the side. The workers and police officer are all wearing orange or yellow shirts.", - "id": 2290 + "image_path": "G:\\images\\combined\\006847_jpg.rf.ddb2642e7c659f747c4a542b00b9b5aa.jpg", + "response": "A construction worker is receiving a box of food from a nurse.", + "id": 32895 }, { - "image_path": "G:\\images\\combined\\004276_jpg.rf.bc2f700a66a2919de8c14136715bd92c.jpg", - "response": "In the image there are two construction workers. They are wearing orange hard hats and are both wearing black shirts. One of the workers has a mustache and is holding a yellow tool. The background is a building under construction with scaffolding and wooden beams. There are also street lights in the distance.", - "id": 2291 + "image_path": "G:\\images\\combined\\006848_jpg.rf.a3bced6b2e6c24bb8fd91289a8abb0ee.jpg", + "response": "Four men in hard hats looking at a blueprint in a construction area.", + "id": 32896 }, { - "image_path": "G:\\images\\combined\\00427709-156Booooox_jpg.rf.48fa213765bf3c877e348abd89602815.jpg", - "response": "A cardboard box with the word Asics on it.", - "id": 2292 + "image_path": "G:\\images\\combined\\006849_jpg.rf.a44ef80569e83a6b3899f2b57071abfa.jpg", + "response": "A construction site with multiple workers visible. There are multiple stacks of bamboo poles on the ground, and a few workers are standing around, one of them is carrying a bamboo pole. There are also a few workers further away near the buildings.", + "id": 32897 }, { - "image_path": "G:\\images\\combined\\00427709-156Booooox_jpg.rf.7b445d20df44d1905a20dee0b8b25afd.jpg", - "response": "A large cardboard box is on the floor. The box is made by Asics. There is a smaller box with the Asics logo on it next to the larger box. There is a plastic bag with a white object inside it on the floor next to the smaller box. The floor is made of wood.", - "id": 2293 + "image_path": "G:\\images\\combined\\006850_jpg.rf.cf32d66442e624e3a96223062c415ce0.jpg", + "response": "A man in a hard hat and coveralls is on a construction site. He is standing on a ladder and holding a trowel.", + "id": 32898 }, { - "image_path": "G:\\images\\combined\\004277_jpg.rf.690a23fef0d171ba58ea814966ef5667.jpg", - "response": "A group of people wearing hard hats and carrying a yellow object.", - "id": 2294 + "image_path": "G:\\images\\combined\\006851_jpg.rf.6db0da686c4a4e223575c5ee6aaf1794.jpg", + "response": "In the image, three men are working on fixing a power line. They are all dressed in red safety jumpsuits and are wearing hard hats. The men are working on a metal platform that is attached to a utility pole. One of the men is working on the power line while the other two are holding the platform steady. The sky is overcast in the background.", + "id": 32899 }, { - "image_path": "G:\\images\\combined\\004278_jpg.rf.d368f0b8ad84e386235b7b73b5245b1b.jpg", - "response": "The image shows a construction site with a number of workers. There is a man in the center of the image who is wearing a yellow shirt and has his arm raised, holding a long tool. Another man is visible, wearing a white shirt and blue jeans, he is on the left of the image. A third man is visible, wearing a red hard hat and blue jeans, he is on the far right of the image. The fourth man is visible, wearing a white shirt and blue jeans, he is on the far left of the image. The fifth man is visible, wearing a white shirt and blue jeans, he is on the far right of the image. The sixth man is visible, wearing a white shirt and blue jeans, he is on the far left of the image.", - "id": 2295 + "image_path": "G:\\images\\combined\\006852_jpg.rf.892253ce53e72ddfa06bd2f3542a7d48.jpg", + "response": "A man in a yellow vest and yellow hard hat stands in a tunnel. He is holding a sledge hammer.", + "id": 32900 }, { - "image_path": "G:\\images\\combined\\004279_jpg.rf.b0f7699ea2083d7748a80f0c6b383fb4.jpg", - "response": "A man working at a factory, using a tool to manipulate a large piece of metal that is on fire. The metal is glowing orange and\u5ef6\u4f38\u5230 other parts of the factory.", - "id": 2296 + "image_path": "G:\\images\\combined\\006853_jpg.rf.33a62484cd3bd09acac7600c139dcd82.jpg", + "response": "A roofer in a yellow vest and hard hat standing on a roof with a hammer in his hand.", + "id": 32901 }, { - "image_path": "G:\\images\\combined\\004280_jpg.rf.1f6a8245c97ba664a3d6ee0c9f8b3de9.jpg", - "response": "The image shows two men shaking hands on a construction site. Both men are wearing yellow vests and helmets. The man on the left is smiling and has a beard. The man on the right has gray hair and is wearing a blue helmet. They are shaking hands in front of a wooden structure. The sky is blue with clouds in the background.", - "id": 2297 + "image_path": "G:\\images\\combined\\006854_jpg.rf.947f3d4f949e044d8486aa3539f10c5e.jpg", + "response": "The image shows two workers standing next to a large orange and grey piece of equipment. The machine has black wheels and is holding a large spool of grey wire. The workers are both dressed in blue and have hard hats on. One of the workers is holding a drill.", + "id": 32902 }, { - "image_path": "G:\\images\\combined\\004281_jpg.rf.f19f289e8ee0a3f3ba1c09c316c79749.jpg", - "response": "A man working in a construction site", - "id": 2298 + "image_path": "G:\\images\\combined\\006855_jpg.rf.133dc7d5bdb11c82217c51cd96266cc5.jpg", + "response": "A group of men in blue hard hats are standing in a muddy field. They are each holding a large metal pole. There is a pile of tree branches to the left of the men.", + "id": 32903 }, { - "image_path": "G:\\images\\combined\\004282_jpg.rf.fb54767669f3e3879178db557f692a42.jpg", - "response": "A group of people walking through a tunnel.", - "id": 2299 + "image_path": "G:\\images\\combined\\006856_jpg.rf.7b442afa35ce3038ed48c163cb9a900d.jpg", + "response": "A man in a blue uniform and hard hat is working on an electrical box on a metal platform. He is wearing a tool belt and has a backpack. He is standing on the platform and appears to be working on the electrical box.", + "id": 32904 }, { - "image_path": "G:\\images\\combined\\004283_jpg.rf.5712dac80b362ab730091a64966834df.jpg", - "response": "A group of men in hard hats are working on a machine.", - "id": 2300 + "image_path": "G:\\images\\combined\\006857_jpg.rf.cd55fb21553e99090ae1d9b6a442aff2.jpg", + "response": "In the image there are two construction workers observing a building site. They are both wearing orange helmets and green and orange work clothes. The man on the left is looking towards the right while the man on the right is looking towards the camera. They are both standing in front of a large white pillar. To the right of the workers there is a large crane lifting a grey object. Under the crane there is a patch of brown ground with a few tracks in it. In the background, to the left, there is a white building.", + "id": 32905 }, { - "image_path": "G:\\images\\combined\\004284_jpg.rf.faeb8b6019b56b2db9602e6dfda3575d.jpg", - "response": "In the image there is a group of people working on a construction site. They are wearing hard hats and working with large spools of wire. Some of the people are also working with a large hose. The construction site is located next to a building and a street.", - "id": 2301 + "image_path": "G:\\images\\combined\\006858_jpg.rf.356f90aa86bd475a5f0cd61113a65e15.jpg", + "response": "A group of people standing around each other.", + "id": 32906 }, { - "image_path": "G:\\images\\combined\\004285_jpg.rf.a4cb28b0eb7c9aa0c4252f6b9a59462c.jpg", - "response": "In the image, there is a construction worker wearing a yellow hard hat and a red safety jacket. The worker is holding a large object with both hands, which is resting on their shoulder. The worker is looking into the distance, seemingly contemplating. The background shows a wooden structure, possibly a part of a building under construction. The sky is clear and blue, indicating a sunny day.", - "id": 2302 + "image_path": "G:\\images\\combined\\006859_jpg.rf.68eeb9258e67585917a5c13e5c3add2a.jpg", + "response": "A man in an orange helmet and yellow jacket is working on a red and white metal structure. He is standing on a platform that is part of the red and white metal structure. He is working on a metal beam that is part of the structure. The metal structure is located on top of a building. The man is wearing a tool belt and has a tool in his hand. The background shows a cityscape and a river.", + "id": 32907 }, { - "image_path": "G:\\images\\combined\\004286_jpg.rf.e907422727530bab3818d6d976598b20.jpg", - "response": "a man wearing a white hard hat and a orange safety vest is measuring a wooden beam with a yellow tape measure", - "id": 2303 + "image_path": "G:\\images\\combined\\00685bc495504d61.jpg", + "response": "A Virgin plane sits on the tarmac next to a Qantas plane.", + "id": 32908 }, { - "image_path": "G:\\images\\combined\\004287_jpg.rf.cd8bc4e223ea69806897be6cd6e58a86.jpg", - "response": "A couple of men standing on a construction site looking at a blueprint.", - "id": 2304 + "image_path": "G:\\images\\combined\\00685d2d846c9052.jpg", + "response": "A tall red brick building with many windows.", + "id": 32909 }, { - "image_path": "G:\\images\\combined\\004288_jpg.rf.e076ab6354cc225df078564865650a97.jpg", - "response": "The image shows a group of six workers in green work clothes and yellow hard hats, standing on a rusty railway track. They are working on the track, which is made of steel and has a series of concrete sleepers. Some tools, including a small red tool box and a yellow level, are placed on the track in front of the workers. The background shows a mountain road.", - "id": 2305 + "image_path": "G:\\images\\combined\\006860_jpg.rf.5dc6845c80aa151097d2dbce2be8b5a6.jpg", + "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and are working on a large construction project. The workers are of various heights and are positioned at different levels throughout the image. One worker is in the foreground and is leaning on a large tool, possibly a shovel or a large rod. Another worker is visible in the background, wearing a green shirt and a white helmet. They are crouching down and appear to be working on a large piece of metal. The construction site is filled with steel rebar, giving the scene an industrial feel.", + "id": 32910 }, { - "image_path": "G:\\images\\combined\\004289_jpg.rf.f7146c62ca9f0095474d566575bb1abd.jpg", - "response": "A man in a red work suit and yellow hard hat is cutting into a large orange hose with a pair of shears. He is standing next to a tree and there are other people in the background, one of which is wearing a yellow hard hat. There are also two other men in yellow hard hats standing behind the man cutting the hose.", - "id": 2306 + "image_path": "G:\\images\\combined\\006861_jpg.rf.4cd6f947aa424c28ded14c1ad84688d5.jpg", + "response": "A group of workers in hard hats standing around looking at a clipboard.", + "id": 32911 }, { - "image_path": "G:\\images\\combined\\004290_jpg.rf.6084dd22e7df1aeb27b4b81e9985861c.jpg", - "response": "In the image, there is a worker dressed in orange, wearing a helmet and gloves. They are standing in front of a wall of different colored steel bars stacked vertically. The wall has multiple rows of steel bars, each row a different color and size. The worker is reaching up to the top left of the image, touching the topmost bar of a stack.", - "id": 2307 + "image_path": "G:\\images\\combined\\006864_jpg.rf.c4c4b0e01cdb5fc33090f13b8c596392.jpg", + "response": "A group of men standing around each other.", + "id": 32912 }, { - "image_path": "G:\\images\\combined\\004291_jpg.rf.6cf87f39cdcba9ce3ca87d5038be9217.jpg", - "response": "A construction site with several people working on it.", - "id": 2308 + "image_path": "G:\\images\\combined\\006865_jpg.rf.194500d3ecbcf718565e1a336165e3b5.jpg", + "response": "A construction site with workers.", + "id": 32913 }, { - "image_path": "G:\\images\\combined\\004292_jpg.rf.87a106d15ccc6b27f40cb3cc1867ae59.jpg", - "response": "In the image two workers are seen repairing an transformer. The transformer is grey in color and has a red triangle with an arrow pointing downwards. There is a text written on the transformer which says \"\u9ad8\u538b\u5371\u9669\u7981\u6b62\u6500\u767b!\" which is in black color. Both the workers are wearing blue hard hats and are wearing dark blue uniforms. One worker is on the left and the other one is on the right. The worker on the right is holding a black pipe with both his hands.", - "id": 2309 + "image_path": "G:\\images\\combined\\006866_jpg.rf.1841a6bd4821e4ca5b9a34b7d9fd6d69.jpg", + "response": "In the image there is a man wearing a yellow hard hat who is walking through a large, unfinished building that has a lot of concrete and scaffolding. The man is wearing a plaid shirt and jeans. He is holding a cell phone in his hand. The building has a lot of windows and is not yet finished.", + "id": 32914 }, { - "image_path": "G:\\images\\combined\\004294_jpg.rf.32a36ff309f4d20173e89f3c8afd1033.jpg", - "response": "A group of four men in white lab coats and yellow hard hats are working on a large piece of equipment. The equipment is silver and grey and has many pipes and valves. They are all working on the same piece of equipment and are focused on their tasks.", - "id": 2310 + "image_path": "G:\\images\\combined\\006867_jpg.rf.9c89e864e87d619ea5559a79b4d449fc.jpg", + "response": "A group of railway workers wearing yellow vests and safety helmets are working on a railway. They are using different tools like spades and other railway tools. The railway is surrounded by some buildings and a city road.", + "id": 32915 }, { - "image_path": "G:\\images\\combined\\004295_jpg.rf.d68286d1b733eab93fd081c14e630d06.jpg", - "response": "A group of people(93,427),(270,998)(191,398),(435,998)(758,400),(984,988)(648,443),(810,928)(423,425),(627,998) standing in front of a sign", - "id": 2311 + "image_path": "G:\\images\\combined\\006868_jpg.rf.f1984118890bf53c67f5ea2dc44004d8.jpg", + "response": "The image features two men wearing helmets and harnesses, standing on a ropes course. They are smiling and appear to be enjoying themselves. The ropes course is set in a lush green forest.", + "id": 32916 }, { - "image_path": "G:\\images\\combined\\004296_jpg.rf.69672b4bb7acb47cfd134156484cc512.jpg", - "response": "A conference room with a large table and many chairs. On the wall there is a poster and a sign that says\u300c\u540c\u5fc3\u540c\u5fb7 \u5171\u5546\u5171\u8d62\u300d. In the room there are also many bottles, cups, and flowers on the table.", - "id": 2312 + "image_path": "G:\\images\\combined\\006869_jpg.rf.27c584befa0ae8e4e8b3d2ec8db9aae6.jpg", + "response": "The image shows a large room with a high, arched ceiling. The floor is covered in debris, and there are large, rusted metal coils stacked on the left side of the room. Several people are in the room, some wearing hard hats and some sitting on a bench against the back wall. A light is shining on the back wall, which has a sign that says \"14\" on it. The room is dark, with only the light shining on the back wall illuminating the space.", + "id": 32917 }, { - "image_path": "G:\\images\\combined\\004298_jpg.rf.0e1572965186fcf1c593221d0f8975ee.jpg", - "response": "A construction site with three men working on a scaffold. They are all wearing hard hats and the man in the middle is also wearing a green shirt. The men are working on a concrete building and there are pipes visible in the image.", - "id": 2313 + "image_path": "G:\\images\\combined\\006870_jpg.rf.9042a70de243d561b8bc3a51b4dda277.jpg", + "response": "Xiaogang, the first village of China's reform, today is a prosperous and modern village. The village has a history of 3,000 years, and was listed as a national AAA level tourist village in 2012. It is also the hometown of Xiaogang Declaration, the first rural contract that was signed in China.", + "id": 32918 }, { - "image_path": "G:\\images\\combined\\004299_jpg.rf.dc0e0bdd25f79bcf4cceea1ac590fb92.jpg", - "response": "A group of people working on a construction site.", - "id": 2314 + "image_path": "G:\\images\\combined\\006871_jpg.rf.8a37afae6692a5de9715dbaede0eda4d.jpg", + "response": "A man and woman in hard hats and safety vests are shaking hands in front of a factory. The woman is holding a clipboard.", + "id": 32919 }, { - "image_path": "G:\\images\\combined\\0042e31fe2bbe16f.jpg", - "response": "a group of people standing in a room.", - "id": 2315 + "image_path": "G:\\images\\combined\\006872_jpg.rf.8255a7a59bb2bcc772a1779a578878dd.jpg", + "response": "In the image two workers are crouched down working on a drain. One worker is on the left and is wearing a brown shirt and is in the process of lifting a metal cover over the drain. The other worker is on the right and is wearing a yellow shirt and is also working on the drain. Both workers are wearing white helmets.", + "id": 32920 }, { - "image_path": "G:\\images\\combined\\004300_jpg.rf.7a0387201cebf2396c8b087d58589116.jpg", - "response": "A group of workers are working on a tall metal structure.", - "id": 2316 + "image_path": "G:\\images\\combined\\00687364c5c2f57e.jpg", + "response": "A yellow school bus with a red stop sign on the side.", + "id": 32921 }, { - "image_path": "G:\\images\\combined\\004301_jpg.rf.d3c79d1d9072710a319c27c60a2377c8.jpg", - "response": " Workers(268,141),(512,439)(519,135),(831,827) at the scene of the cave-in", - "id": 2317 + "image_path": "G:\\images\\combined\\006873_jpg.rf.a137ccbbbc53c1352baac48256b842c1.jpg", + "response": "a group of people standing on a track", + "id": 32922 }, { - "image_path": "G:\\images\\combined\\004303_jpg.rf.d2def9d0059d7e88f429904c7f46b66b.jpg", - "response": "A\u96a7\u9053\u5185\u7684\u5efa\u7b51\u5de5\u4eba\uff0c\u80a9\u4e0a\u625b\u7740\u4e00\u6839\u7070\u8272\u7684\u7ba1\u5b50\uff0c\u53e6\u4e00\u4e2a\u5de5\u4eba\u5728\u5bf9\u7740\u706f\u5149\u68c0\u67e5\u5730\u9762\u3002", - "id": 2318 + "image_path": "G:\\images\\combined\\0068742ad35c2586.jpg", + "response": "The image shows a city street scene with a crowd of people standing around a fire truck and a bus. There are several firemen in the scene, some of them wearing yellow jackets and safety helmets. The fire truck is parked on the street, and there is a ladder on top of it. A red and yellow striped cone is placed on the street near the fire truck. The crowd of people is standing behind a rope barrier, and there are two handbags visible among them. The street is lined with buildings, and a few cars are parked along the side of the road.", + "id": 32923 }, { - "image_path": "G:\\images\\combined\\004304_jpg.rf.ef6a0047c63120c9181882a6fc3411a9.jpg", - "response": "A group of men in red doing work on a metal tower.", - "id": 2319 + "image_path": "G:\\images\\combined\\006874_jpg.rf.d3d96c7e7a037e32a34c8eb8998fddb1.jpg", + "response": "In the image there is a group of people wearing hard hats and uniforms. They are working together to remove debris and clear a river of water. Some of the people are using shovels and some are using hoses to help with the cleanup. In the background there is a crane and a pile of rubble. The sky is overcast and there are a few trees visible in the background.", + "id": 32924 }, { - "image_path": "G:\\images\\combined\\004306_jpg.rf.cb9d854e0283240db9afc0bbb6ba4541.jpg", - "response": "A man wearing a hard hat, white t-shirt, grey and red overalls, and green and red gloves, standing in front of a yellow and white building, smiling and holding a clipboard. There is a pile of grey bricks to the man's left and a pile of grey bricks and some yellow bricks to his right.", - "id": 2320 + "image_path": "G:\\images\\combined\\006875_jpg.rf.fc89dc0fd095237793395fc7161d6b94.jpg", + "response": "An electrician working on a large electrical box.", + "id": 32925 }, { - "image_path": "G:\\images\\combined\\004307_jpg.rf.0e407d8176fbcaf5441f15807d22ea0e.jpg", - "response": "The image shows a group of men standing in a unfinished building. They are all wearing hard hats. One man is holding a set of plans and talking to another man. The men are wearing a variety of shirts, including blue, red, and white. Some men are also wearing ties. The building appears to be made of concrete and has no walls yet.", - "id": 2321 + "image_path": "G:\\images\\combined\\006876_jpg.rf.23be329bc5c356ba11daca0b0e8382c7.jpg", + "response": "The photo shows a group of men standing in a large room under construction. They are wearing orange vests and hard hats. In front of them is a table with several boxes on it. The boxes are labeled \"CRH\".", + "id": 32926 }, { - "image_path": "G:\\images\\combined\\004308_jpg.rf.3663f06000596345bc667c831895be79.jpg", - "response": "A group of men in green uniforms and hard hats are working on an electrical line in a grassy field.", - "id": 2322 + "image_path": "G:\\images\\combined\\006877_jpg.rf.38fec4899c8ab556513889182e89d052.jpg", + "response": "A man and a woman working on a construction site.", + "id": 32927 }, { - "image_path": "G:\\images\\combined\\004310_jpg.rf.271ff5452978b1d1be15793ecb716486.jpg", - "response": "A group of men wearing hard hats standing in a yard with a tree.", - "id": 2323 + "image_path": "G:\\images\\combined\\006878_jpg.rf.f2f31fb267c05a6122392a33ffc76518.jpg", + "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a dark underground tunnel and looking at a plan or blueprint. The man on the left is younger and is wearing a safety vest with a yellow reflective stripe. The man on the right is older and is wearing a white hard hat with a blue and white safety vest. He has grey hair and is also wearing glasses.", + "id": 32928 }, { - "image_path": "G:\\images\\combined\\004311_jpg.rf.f1dbee348194f6aa299b495d32b72b3a.jpg", - "response": "In the image two men are carrying wooden boards on a construction site. The man in front is smiling and looking at the camera. Both the men are wearing yellow helmets. The sky is clear and the\u592a\u9633\u5f88\u4eae.", - "id": 2324 + "image_path": "G:\\images\\combined\\006879_jpg.rf.b45dae32b36a1c2bb4ea6c1212dc465b.jpg", + "response": "A group of workers in blue uniforms and orange helmets are working on a water main. They are standing in a hole in the street and there is a large pipe leading to the hole. They are working on a fire hydrant that is covered with orange and green hoses. There is a large truck behind them and a few cars parked on the street. The sky is overcast and there are a few trees in the background.", + "id": 32929 }, { - "image_path": "G:\\images\\combined\\004312_jpg.rf.0d84f3a8982e5c2790cc549379f35bb5.jpg", - "response": " Two workers(213,419),(411,997)(377,443),(523,997) in a tunnel", - "id": 2325 + "image_path": "G:\\images\\combined\\006881240855f4a9.jpg", + "response": "Three women are holding up eight LG LTE smartphones in front of an LG booth at the Mobile World Congress.", + "id": 32930 }, { - "image_path": "G:\\images\\combined\\004313_jpg.rf.9b79b3e1838882145c396f8df7b6c1f3.jpg", - "response": "Two construction workers, one wearing a green shirt and one wearing a black shirt, are working on a building site. They are standing on a metal grid and are wearing harnesses. The one on the left is holding a cell phone.", - "id": 2326 + "image_path": "G:\\images\\combined\\006881_jpg.rf.0110d1d7e5d1f81653e5b78b56baec39.jpg", + "response": "A group of men in gray uniforms are working on an electrical box on a pole.", + "id": 32931 }, { - "image_path": "G:\\images\\combined\\004314_jpg.rf.165a988db50f9cd616af15de96e536db.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing hard hats and some are wearing suits. In the background, there is a partially constructed building with scaffolding.", - "id": 2327 + "image_path": "G:\\images\\combined\\006883_jpg.rf.903e5d43474fe475d21b0ee088a36d17.jpg", + "response": "A large crane is working on a dock.", + "id": 32932 }, { - "image_path": "G:\\images\\combined\\004315_jpg.rf.03c565dd8765b97dcb82772f7ec4e513.jpg", - "response": "A construction site with workers(432,448),(563,941)(204,10),(357,663) in Ethiopia", - "id": 2328 + "image_path": "G:\\images\\combined\\006886_jpg.rf.f3fb8cfd055e6408c8d08b85ba09f769.jpg", + "response": "A worker in an orange jumpsuit and a blue hard hat is using a ladder to fix a wire on the side of a building. Another worker in an orange jumpsuit and a blue hard hat is standing on the ground next to the ladder.", + "id": 32933 }, { - "image_path": "G:\\images\\combined\\004316_jpg.rf.292e5326637f892554b457e4b9358bb8.jpg", - "response": "The image shows a group of five men dressed in work clothes and hard hats, pulling on a rope together. They are all in various states of action, with some crouching and some standing on the grass. The man in the far left is in the process of letting go of the rope, the man second from the left is pulling hard, the man in the center is crouching and pulling with both hands on the rope, the man second from the right is also crouching and pulling and the man on the far right is in the process of starting to pull. In the background, there is a cityscape with tall buildings in the middle and a smaller one on the far right.", - "id": 2329 + "image_path": "G:\\images\\combined\\006887_jpg.rf.534837e1b0eaf864c29dfd68b6e65f29.jpg", + "response": "A construction worker in an orange uniform working on a scaffolding.", + "id": 32934 }, { - "image_path": "G:\\images\\combined\\004318_jpg.rf.5e5fe4386d401d3afe865c11cf8055d1.jpg", - "response": "The image shows a scene of two workers in blue overalls and yellow safety helmets, high up on a metal tower. They are working on a power line, with one worker holding a tool and the other one pulling on a rope. The sky is overcast and there are clouds in the background. The tower is surrounded by a mountain range.", - "id": 2330 + "image_path": "G:\\images\\combined\\006888_jpg.rf.8eba3756553e9b193d1dff1c1fd16d35.jpg", + "response": "A group of men working in a cave.", + "id": 32935 }, { - "image_path": "G:\\images\\combined\\004319_jpg.rf.4acc5461295ae895a2b4133493ad0a3a.jpg", - "response": "A construction worker wearing a black shirt and a red hard hat is operating a large piece of machinery. He is standing on a construction site with a city skyline visible in the background. There are many stacks of steel rods scattered around the site.", - "id": 2331 + "image_path": "G:\\images\\combined\\006889_jpg.rf.3739f967d287934eca9d3fe985c5fddf.jpg", + "response": "A man wearing a hard hat and high visibility vest is smiling at the camera while holding a walkie talkie and a set of plans. He is standing in a tunnel.", + "id": 32936 }, { - "image_path": "G:\\images\\combined\\004320_jpg.rf.2a86fa9d0c0af6e3cb4d1ff3660267d2.jpg", - "response": "Four women in red jackets and hard hats pose in front of a construction site.", - "id": 2332 + "image_path": "G:\\images\\combined\\006892_jpg.rf.0a0e10d36c576824499943846e3e6078.jpg", + "response": "The image shows a construction site with several large, black, cylindrical oil tanks. The tanks are made of glass and are visible from the ground. In the foreground, there are four men working on the site. One man is wearing a yellow helmet and is standing near the left side of the image. Another man is wearing a blue helmet and is standing near the center of the image. A third man is wearing a yellow helmet and is standing near the right side of the image. The fourth man is kneeling on the ground and is wearing a blue helmet. There are pipes and other equipment on the site, and the sky is overcast.", + "id": 32937 }, { - "image_path": "G:\\images\\combined\\004321_jpg.rf.1587be3cd7a2f897a166bd20248c5115.jpg", - "response": "The image shows a large construction site with several workers visible. They are working on a large, open area that has been prepared for the construction of a building. The ground is covered in red wire mesh, and several rebar cages have been set up in preparation for pouring concrete. In the background, a few buildings can be seen, as well as a large white cloud formation in the sky. The workers are wearing blue uniforms and are scattered across the construction site.", - "id": 2333 + "image_path": "G:\\images\\combined\\006894_jpg.rf.821ce238071a5bfaefcf91fddc297e51.jpg", + "response": "In the image there are two workers in a factory. One of them is on the left and the other one is on the right. They are both wearing blue and yellow helmets. The left worker is wearing a blue shirt and is bending over to look at some wires on the factory floor. The right worker is wearing a red helmet and a black jacket. They are crouching down to look at a green object on the floor. In front of them are many wires scattered on the floor. To the left of the workers are white metal shelves.", + "id": 32938 }, { - "image_path": "G:\\images\\combined\\004322_jpg.rf.5e3060159da24872ab6e56bc012ad736.jpg", - "response": "In the image two workers are seen wearing blue helmets and are working on a pipeline. The pipeline is grey in color and is situated in the center of the image. One of the workers is seen using a machine to fix the pipeline. Another worker is seen in the background. The pipeline is connected to a metal box which is brown in color. The workers are wearing gloves which are white in color. One of the workers is also wearing a black jacket. The background is blurred out and the workers are in focus.", - "id": 2334 + "image_path": "G:\\images\\combined\\006895_jpg.rf.0c2a379f00667d6891b1fd2dd8052e34.jpg", + "response": "a man wearing a black jacket(103,296),(513,995)", + "id": 32939 }, { - "image_path": "G:\\images\\combined\\004323_jpg.rf.e94c35a4e30f6fea6688a03c46e097fa.jpg", - "response": "a group of people standing in front of a van", - "id": 2335 + "image_path": "G:\\images\\combined\\006896_jpg.rf.7cda90eff0d54c08c2100336b8c08877.jpg", + "response": "The image shows a group of people standing in front of a construction site. There is a yellow excavator working in the background. The people are wearing hard hats and business attire. Some of them are pointing towards the construction site. In the foreground, there is a pile of dirt and a pile of rocks.", + "id": 32940 }, { - "image_path": "G:\\images\\combined\\004324_jpg.rf.4e7ae261bef0647ff394edde912f7a3c.jpg", - "response": "A group of workers are working on a construction site.", - "id": 2336 + "image_path": "G:\\images\\combined\\006897_jpg.rf.7afebc6282124ff402c21290a9d9df18.jpg", + "response": "A man in a orange vest and helmet is talking on a cell phone.", + "id": 32941 }, { - "image_path": "G:\\images\\combined\\004325_jpg.rf.291e64d54887c84745d41356d70b2837.jpg", - "response": "A construction worker is rescued by firefighters after he fell into a concrete mixer at a construction site in Xiamen, Fujian Province, China. The worker, named Zhang, was working at the construction site when he accidentally fell into the concrete mixer. He was trapped inside the mixer and was unable to get out. Firefighters arrived at the scene and used hydraulic rescue tools to carefully cut open the mixer and finally rescued Zhang. He was taken to a nearby hospital and is currently in a stable condition.", - "id": 2337 + "image_path": "G:\\images\\combined\\006899_jpg.rf.8a3305f0347dee7eaf8d7409c8c030ea.jpg", + "response": "A group of people working on a building.", + "id": 32942 }, { - "image_path": "G:\\images\\combined\\004326_jpg.rf.d645f3401a49a83e80b342b1e5644103.jpg", - "response": "A group of workers are working on a train track.", - "id": 2338 + "image_path": "G:\\images\\combined\\00689c649b17c484.jpg", + "response": "The image features a black computer keyboard with red LED lights. The keys on the keyboard are black and have red letters and symbols. The spacebar is also black and has a red border. The keyboard is sitting on a white surface. There is a black cord coming from the right side of the keyboard. The end of the cord is curled up. The keyboard is in focus and the background is blurred.", + "id": 32943 }, { - "image_path": "G:\\images\\combined\\004327_jpg.rf.7b1cea23a88665ed4abe735d771ed8c3.jpg", - "response": "A group of people sitting around a table.", - "id": 2339 + "image_path": "G:\\images\\combined\\006900_jpg.rf.46de56b801692e272438b7840626d545.jpg", + "response": "A construction worker in a yellow hard hat and uniform\u6500\u767b\u67b6\u3002", + "id": 32944 }, { - "image_path": "G:\\images\\combined\\004330_jpg.rf.7a356a8b5f75d3ab4a376605933f078d.jpg", - "response": "In the image there are two workers in orange jumpsuits and blue helmets on a boat. They are handling a black pipe and one of them is pulling the pipe while the other one is holding it. They are located on the right side of the boat.", - "id": 2340 + "image_path": "G:\\images\\combined\\006901_jpg.rf.ca4ded97861e30827357707620365123.jpg", + "response": "A group of men working on a construction site at night.", + "id": 32945 }, { - "image_path": "G:\\images\\combined\\004331_jpg.rf.7a659e600db181055703173a3349e670.jpg", - "response": "The picture shows some men in a room. On the right wall, there is a white box with some papers in it. The men are standing around the box and talking. Some of them are wearing blue or black clothes. One of them is wearing a black top and black\u88e4\u5b50. Another man is wearing a dark blue top and dark blue\u88e4\u5b50. They are talking about something.", - "id": 2341 + "image_path": "G:\\images\\combined\\006902_jpg.rf.0a1be89c981241318a7a24537d11045b.jpg", + "response": "The image shows a large unfinished bridge with a tall pylon. In the foreground, there are several workers, some of whom are wearing yellow vests. One worker is carrying a tool on his shoulder. In the background, there is a crane and a bulldozer. The sky is cloudy, and the ground is bare and dusty. There is a sign in the middle of the scene.", + "id": 32946 }, { - "image_path": "G:\\images\\combined\\004332_jpg.rf.9c62654424231c173074ed4c6bf1fa8b.jpg", - "response": "An electrician is working on power lines.", - "id": 2342 + "image_path": "G:\\images\\combined\\006903_jpg.rf.e8c870a264bf67f846ca6dc27b283ab5.jpg", + "response": "A man wearing a hard hat is sitting on a pile of wood.", + "id": 32947 }, { - "image_path": "G:\\images\\combined\\004335_jpg.rf.e678c3fbb71d708fa3005eb0ed727384.jpg", - "response": "a man that is on a power line", - "id": 2343 + "image_path": "G:\\images\\combined\\006904_jpg.rf.6f8838caf95d77f2bdc80ed492deafac.jpg", + "response": "In the image, there are two workers wearing orange jumpsuits and yellow helmets who are installing a white net on a rocky hillside. The rocks in the hillside are brown and grey in color. There are also some white ropes and black arrows on the net. The workers seem to be in the middle of a steep slope.", + "id": 32948 }, { - "image_path": "G:\\images\\combined\\004336_jpg.rf.1208bdd0324b656c5b33a9cb9a463ee2.jpg", - "response": "A man is on a telephone pole with wires and equipment.", - "id": 2344 + "image_path": "G:\\images\\combined\\006906_jpg.rf.539949a0eee0f7f6c2256d009cc92012.jpg", + "response": "a group of men wearing hard hats", + "id": 32949 }, { - "image_path": "G:\\images\\combined\\004337_jpg.rf.d294a00db657265b3f800bf08451a549.jpg", - "response": "The image shows a group of six people dressed in orange snow suits and hard hats walking across a snow-covered slope. They are pulling a large spool of wire behind them. The snow is white and appears to be deep.", - "id": 2345 + "image_path": "G:\\images\\combined\\006907_jpg.rf.8a9b7831b1781a3b65f91edac001ebc1.jpg", + "response": "A worker is seen standing on a power pole covered in ice, working on the power lines. The sky is overcast and snow is falling.", + "id": 32950 }, { - "image_path": "G:\\images\\combined\\004339_jpg.rf.effb482226dfe5ae4df89c32ef41a584.jpg", - "response": "The image shows four men standing in front of a large green net. They are all dressed in business attire.", - "id": 2346 + "image_path": "G:\\images\\combined\\006908_jpg.rf.ff154ac653013c8041ffa77fdcc5cbd5.jpg", + "response": "A man standing in a room with a yellow hat and a jacket.", + "id": 32951 }, { - "image_path": "G:\\images\\combined\\00433_jpg.rf.4cbc6a61504507319e5553016baff10c.jpg", - "response": "A group of men in high visibility jackets and hard hats stand in a line holding spades.", - "id": 2347 + "image_path": "G:\\images\\combined\\006909_jpg.rf.1f99b1ad2b3c580e4f3008ea985a2887.jpg", + "response": "A man is lying on a stretcher and is being carried away by firefighters. The man is covered in dirt and has a large gash on his head. There are several other people standing around the man, some of them in construction gear. In the background, there is a building under construction.", + "id": 32952 }, { - "image_path": "G:\\images\\combined\\004340_jpg.rf.e2feaea4aa0bb55493d6720f155f65ed.jpg", - "response": "A worker digging a hole in the ground.", - "id": 2348 + "image_path": "G:\\images\\combined\\006910_jpg.rf.8c4ceeb6a286e5e33878da96206d7f05.jpg", + "response": "A group of men in business attire and construction hats.", + "id": 32953 }, { - "image_path": "G:\\images\\combined\\004341_jpg.rf.38da50d9dbe349a3ff0c9be0d76c7a9a.jpg", - "response": "The image shows a group of men standing outside a concrete structure. The men are wearing blue or black uniforms and white hard hats. They are gathered in front of a large, open-air concrete structure that resembles a tunnel or a large, open-air basement. The structure is made of concrete and is located in a desert-like setting. The sky is blue and cloudless.", - "id": 2349 + "image_path": "G:\\images\\combined\\006911_jpg.rf.f94f5c797537ebc11538829c0cebce50.jpg", + "response": "A man wearing a yellow hard hat and a brown tool belt.", + "id": 32954 }, { - "image_path": "G:\\images\\combined\\004342_jpg.rf.3724b1e8799d569c8386f35fe8168113.jpg", - "response": "A group of men in hard hats stand on a construction site holding a rolled up blueprint.", - "id": 2350 + "image_path": "G:\\images\\combined\\006912_jpg.rf.c5f7c528bbc9b12956bcf6cb731243d2.jpg", + "response": "In the image two workers are seen repairing an electricity tower. The sky is blue and there are a few clouds. The workers are wearing blue uniforms and are repairing the electricity tower. The tower is made of metal and has power cables and electrical components.", + "id": 32955 }, { - "image_path": "G:\\images\\combined\\004343_jpg.rf.b4b0487792cb94eecb114b5f124d6215.jpg", - "response": "A construction worker welding steel at a construction site.", - "id": 2351 + "image_path": "G:\\images\\combined\\006913_jpg.rf.2cc7e9be4451d7dfc859626967fea94c.jpg", + "response": "A group of workers in blue uniforms are on a bridge. They are working on a large white pipe that is either being lowered or raised. The pipe is in the process of being lowered and is bent at the middle. The workers are holding the pipe with a crane above them.", + "id": 32956 }, { - "image_path": "G:\\images\\combined\\004344_jpg.rf.b136a2ea643bb2aceb221a7296f43070.jpg", - "response": "A man and a woman wearing helmets and harnesses are standing on a wooden platform in a forest. They are on a ropes course and the woman is smiling.", - "id": 2352 + "image_path": "G:\\images\\combined\\006914_jpg.rf.39abbc969fe20774abf9bcc10c461e16.jpg", + "response": "A group of men standing in front of a dirt field", + "id": 32957 }, { - "image_path": "G:\\images\\combined\\004345_jpg.rf.a1b4731b5a46b553a6e28073e30f63c3.jpg", - "response": "A worker in a hard hat and tan coveralls is working on a large blue metal structure.", - "id": 2353 + "image_path": "G:\\images\\combined\\006915_jpg.rf.96c9149afcee86ee30868e93b28d2110.jpg", + "response": "The image shows a large machine with yellow and white colors. The machine has a large circular piece that is being worked on by several people. The machine is surrounded by a metal net. In the background, there are three people, two of them are wearing orange safety jackets. The person on the left is holding a yellow helmet. The person in the center is wearing a blue safety jacket and a white helmet. The person on the right is also wearing an orange safety jacket.", + "id": 32958 }, { - "image_path": "G:\\images\\combined\\004346_jpg.rf.675a3dc70b39e6aa0de06088e9bcdfe0.jpg", - "response": "A group of men standing around each other.", - "id": 2354 + "image_path": "G:\\images\\combined\\006917_jpg.rf.00d56a2b9343b17ab450c1eecaab12a4.jpg", + "response": "A worker in a blue uniform is talking to another worker in a yellow uniform. They are both standing in front of a large pipe.", + "id": 32959 }, { - "image_path": "G:\\images\\combined\\004347_jpg.rf.2a4cb68b0a0fffb6ea10174cad7f056f.jpg", - "response": "The image shows a construction site with several workers wearing hard hats and blue work clothes. They are working on digging up a large pipe.", - "id": 2355 + "image_path": "G:\\images\\combined\\006918_jpg.rf.9393f2f67b17b9de165d5be4a15ffebe.jpg", + "response": "A group of workers in a\u96a7\u9053 working on a yellow piece of equipment.", + "id": 32960 }, { - "image_path": "G:\\images\\combined\\004348_jpg.rf.e16c78c26723a5f68395fc6e95a50d7d.jpg", - "response": "A forklift is used to move a large piece of concrete.", - "id": 2356 + "image_path": "G:\\images\\combined\\006919_jpg.rf.c40e340f4beace41d1545da1ed4536df.jpg", + "response": "A man wearing a hard hat and safety glasses is working on a structure made of pipes. He is climbing a ladder made of pipes and has a tool belt around his waist. He is wearing brown overalls and has a tool in his hand. The sky is bright white behind the man and pipes.", + "id": 32961 }, { - "image_path": "G:\\images\\combined\\004350_jpg.rf.1b61597d21b95e088f6682d3c5f13ed8.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and one of the men is welding some steel while the other man is watching. There is also some wood in the background.", - "id": 2357 + "image_path": "G:\\images\\combined\\006921_jpg.rf.bd7e0285555163741b0da877f76d712c.jpg", + "response": "A group of men standing in a field talking.", + "id": 32962 }, { - "image_path": "G:\\images\\combined\\004351_jpg.rf.baf7cbe4843666a8949b74c790b66293.jpg", - "response": "A group of men working on a roof.", - "id": 2358 + "image_path": "G:\\images\\combined\\006922_jpg.rf.20c5c0df5622c02ea05271937b836375.jpg", + "response": "A group of men working on a construction site.", + "id": 32963 }, { - "image_path": "G:\\images\\combined\\004353_jpg.rf.9247103482d8908dad82e976c3633c0c.jpg", - "response": "The image shows Kim Jong-un, the young and relatively unknown heir to his father's North Korean leadership, smiling and laughing as he tours the construction site of a building. He is dressed in a black suit and is holding a cigarette. Surrounding him are several other men, some of whom are wearing ties. The background shows the roof of the building, which appears to be under construction. The image is accompanied by a watermark that reads \"www.dfcn.com\u7248\u6743\u4f5c\u54c1\u8bf7\u52ff\u8f6c\u8f7d\".", - "id": 2359 + "image_path": "G:\\images\\combined\\006923_jpg.rf.46802b252c4d95c7d38c7d0100224f80.jpg", + "response": "A group of people working on a bridge.", + "id": 32964 }, { - "image_path": "G:\\images\\combined\\004354_jpg.rf.2df5a8176dd5e7972fe55b56c52ed6d9.jpg", - "response": "In the image two men are wearing hard hats and one of them is pointing at a screen. They are in a warehouse with a shelf of rolled fabric to the right of them.", - "id": 2360 + "image_path": "G:\\images\\combined\\006924_jpg.rf.f8ea2e451097ab3133c23311a23ceb5d.jpg", + "response": "The image shows two men standing in front of a house under construction. Both men are wearing hard hats, and one of them is holding a set of plans. They are smiling at the camera.", + "id": 32965 }, { - "image_path": "G:\\images\\combined\\004355_jpg.rf.998e3659802097f461b01a154a2bb941.jpg", - "response": "The image shows a group of workers wearing hard hats and working on a large construction site. They are crouched down over a large grid of steel rebar, which is laid out in a large grid on the ground. The workers are focused on their task, and some of them are standing in the middle of the rebar grid while others are working on the edges. The scene is set in a large warehouse-like structure, with the workers' activity taking place under a series of signs written in Chinese characters.", - "id": 2361 + "image_path": "G:\\images\\combined\\006925_jpg.rf.5863ad418dd7a6de2f217c739852329c.jpg", + "response": "a group of men standing in front of a building", + "id": 32966 }, { - "image_path": "G:\\images\\combined\\004357_jpg.rf.c8ad1bf6c922ca50bf5afb29bd4f9bbf.jpg", - "response": "In the image, two men are working on a building site. One man is working on the left, wearing a black jacket and a helmet with the word \"Police\" written on it. He is bending over and looking at something. The other man is working on the right, wearing a red helmet and a black and yellow jacket. He is crouching down and looking at something as well. They are both working on a building site that has scaffolding around it.", - "id": 2362 + "image_path": "G:\\images\\combined\\006928_jpg.rf.ce68f295310c539224d3797f1e5605fa.jpg", + "response": "a group of men wearing hard hats", + "id": 32967 }, { - "image_path": "G:\\images\\combined\\004358_jpg.rf.fc1d73b9a5b57b4989717f392da7d19e.jpg", - "response": "A woman in a grey shirt is adjusting the chin strap of a man's red helmet. They are standing on a unfinished floor with a few other people in the background. They are all wearing red helmets.", - "id": 2363 + "image_path": "G:\\images\\combined\\006929_jpg.rf.958dd2b9a1aee9f10e439a974c7b86c2.jpg", + "response": "A snowy hillside with two people holding a large bamboo stick.", + "id": 32968 }, { - "image_path": "G:\\images\\combined\\004359_jpg.rf.e76f195b488d41fb1b13a296dcddd8e2.jpg", - "response": "The image shows two workers on a construction site. One worker is on the left, wearing a white hard hat, grey shirt, and black pants. He is holding a yellow helmet. The other worker is in the center of the image, wearing a white hat, grey shirt, and black pants. He is reaching up to the roof of a building. The building in the background has a glass facade. There is a car visible through the glass. The workers are standing on a wooden platform.", - "id": 2364 + "image_path": "G:\\images\\combined\\006931_jpg.rf.9db4d586ada850f82d7f86249eeb1f31.jpg", + "response": "A group of men working on a bridge.", + "id": 32969 }, { - "image_path": "G:\\images\\combined\\004360_jpg.rf.8f7be06f4a29a002ce0d975542c417e1.jpg", - "response": "A construction site with two men in hard hats looking at blueprints.", - "id": 2365 + "image_path": "G:\\images\\combined\\006932_jpg.rf.c484c0e8b26812056fc60dabe4f17631.jpg", + "response": "A construction worker in a yellow hard hat points to a metal structure. Another construction worker in a blue hard hat stands next to him. They are both wearing grey coveralls.", + "id": 32970 }, { - "image_path": "G:\\images\\combined\\004362_jpg.rf.ed7c6c66c2b641e0a3ca398b6b10e9fa.jpg", - "response": "A group of three people standing in front of a tunnel.", - "id": 2366 + "image_path": "G:\\images\\combined\\006933_jpg.rf.eff7d715ce07b7b9d2a05ff86b65d084.jpg", + "response": "A group of men standing around each other talking.", + "id": 32971 }, { - "image_path": "G:\\images\\combined\\004363_jpg.rf.bd82fb12e24720fa9a76efcc5162db00.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow helmets and work clothes. In front of them, there is a large object wrapped in netting and covered with a black plastic bag. Next to this object, there is a yellow forklift. In the background, there are a few cars and a truck. The sky is overcast and there are mountains in the distance.", - "id": 2367 + "image_path": "G:\\images\\combined\\006934_jpg.rf.0cb634650fc2d1189c39a2e612340e2e.jpg", + "response": "A group of five construction workers are working on a building site, four of them are wearing blue and yellow hard hats and are focused on the task at hand, tying rebar for a foundation.", + "id": 32972 }, { - "image_path": "G:\\images\\combined\\004364_jpg.rf.a2ef094999c42a0821ad4e95febbdb70.jpg", - "response": "A man in a yellow safety helmet is kneeling down and looking at the underside of a bridge. Another man in a yellow safety helmet and a reflective vest is standing next to him. He is also holding a clipboard.", - "id": 2368 + "image_path": "G:\\images\\combined\\006936_jpg.rf.31450ce0cba0bad1ca8a6a37d3e8c043.jpg", + "response": "In the image there are two construction workers wearing yellow helmets. They are working on a building site wearing grey work clothes. The sky is grey and overcast.", + "id": 32973 }, { - "image_path": "G:\\images\\combined\\004365_jpg.rf.6de5e0faebc6ba12d0271eb350b7970f.jpg", - "response": "A group of five people are standing in a large room. They are all wearing yellow hard hats and safety glasses. In the center of the room, there is a large circular pit with a black cover in the middle of it. The ground is covered in fine black dust.", - "id": 2369 + "image_path": "G:\\images\\combined\\006937_jpg.rf.d21b5404f63ad171b11aadf8fab8659a.jpg", + "response": "A group of men wearing blue hard hats are working on a roof. They are wearing camouflage and blue hard hats.", + "id": 32974 }, { - "image_path": "G:\\images\\combined\\004366_jpg.rf.8182d2cc0de6e170b2b70566d9c90f7e.jpg", - "response": " Men(413,150),(716,988)(251,264),(432,727)(143,364),(262,699) walking through a muddy field(2,329),(999,997)", - "id": 2370 + "image_path": "G:\\images\\combined\\006938_jpg.rf.e31bf96223e5e078fcafad6ade2823e2.jpg", + "response": "A man wearing a hard hat and work clothes is standing on a ladder. He is looking upwards and holding a tool in his right hand. He appears to be working on a ceiling.", + "id": 32975 }, { - "image_path": "G:\\images\\combined\\004367_jpg.rf.4c27b970656f4c34ebfcaae59f12c80d.jpg", - "response": "A man and a woman standing in front of a building under construction.", - "id": 2371 + "image_path": "G:\\images\\combined\\006939_jpg.rf.374cb5fa9c3ce869a33c02c8deae7274.jpg", + "response": "A worker wearing a red hard hat is drinking water from a clear plastic bottle. The worker is also wearing a white shirt and gloves. The bottle is almost empty.", + "id": 32976 }, { - "image_path": "G:\\images\\combined\\004368_jpg.rf.57657e3b9be940640825ac286bc02908.jpg", - "response": "A man in a blue shirt and hard hat working on a valve.", - "id": 2372 + "image_path": "G:\\images\\combined\\006941_jpg.rf.e8b1db992a6d425533919b2cc279ffdb.jpg", + "response": "The image shows two workers sitting on a railing overlooking a river and a construction site. The river is brown and appears to be dirty. The sky is overcast and there are clouds in the distance. The workers are wearing yellow hard hats and orange vests. One of them is holding a tool. The construction site has several buildings of various sizes in the background. Some of the buildings have blue roofs. The workers are looking off to the right of the frame.", + "id": 32977 }, { - "image_path": "G:\\images\\combined\\004371_jpg.rf.783eec10814e8ee6324db6812d95add0.jpg", - "response": "A construction site with two men standing on it.", - "id": 2373 + "image_path": "G:\\images\\combined\\006943_jpg.rf.426d4bfb1c4fc250e7e14ceb11cc8e04.jpg", + "response": "A train is passing by as two workers look at a machine.", + "id": 32978 }, { - "image_path": "G:\\images\\combined\\004373_jpg.rf.3e7c901152182b9d8e132ef05518babe.jpg", - "response": "The image shows two workers crouching in front of a large piece of equipment. They are both wearing yellow hard hats and work clothes. The machine they are working on is a grey metal pipe with a red and white tip. The pipe is mounted on a wooden platform and is surrounded by various tools and equipment. The workers are smiling at the camera and appear to be in a good mood.", - "id": 2374 + "image_path": "G:\\images\\combined\\006946_jpg.rf.b989234f0047267edae18a18918f8edf.jpg", + "response": "An electrician working on an electrical panel.", + "id": 32979 }, { - "image_path": "G:\\images\\combined\\004374_jpg.rf.fa32f2dbd75f48875097d94f03d40125.jpg", - "response": "A group of workers are working on a construction site. They are working on a grid of steel. One worker is crouching down and is wearing a white hard hat. Another worker is sitting on the steel grid and is wearing a blue and white shirt. Another worker is wearing a blue and white shirt and is crouching down. There is a person in the background wearing a black shirt and grey pants. They are holding a white cup. There is a person in the background wearing a black shirt and grey pants. They are holding a white cup.", - "id": 2375 + "image_path": "G:\\images\\combined\\006947_jpg.rf.e4d29e54f5108136977c4209f49b5781.jpg", + "response": "A group of people standing in a parking lot next to a white car.", + "id": 32980 }, { - "image_path": "G:\\images\\combined\\004375_jpg.rf.47325033df04a3c6818b97afe703f7e7.jpg", - "response": "A man in a hard hat and a woman standing in front of a unfinished house.", - "id": 2376 + "image_path": "G:\\images\\combined\\006948_jpg.rf.61ee0446239dc03488bdd798b84dc020.jpg", + "response": "A group of three people looking at blueprints inside a building.", + "id": 32981 }, { - "image_path": "G:\\images\\combined\\004376_jpg.rf.9666a4476b94fe2ea059303611c1e243.jpg", - "response": "The image shows a snowy road in a forest. There are two people in the picture. One person is in the middle of the picture, wearing a black top and blue pants, with their left hand on a power pole and their right hand is holding a rope. Another person is at the bottom right of the picture, wearing a black and yellow jacket and a black hat. There are also two power poles in the picture, one is in the middle of the picture and the other is on the right side of the picture.", - "id": 2377 + "image_path": "G:\\images\\combined\\006949_jpg.rf.685d7561332fff0805e7a26fd1ba174c.jpg", + "response": "In the image there is a group of three men working in a factory. They are all dressed in blue work clothes and one of them is wearing a yellow hard hat. The two men on the right are working on a large piece of machinery while the man in the middle is working on a conveyor belt. There are several large metal wheels and machinery parts visible in the factory scene.", + "id": 32982 }, { - "image_path": "G:\\images\\combined\\004377_jpg.rf.05950bd82cd107a09149ca5f5075d49d.jpg", - "response": "A group of people wearing hard hats stand on a rocky hillside.", - "id": 2378 + "image_path": "G:\\images\\combined\\006950_jpg.rf.f81eba024fe4a22422fb3907e8cade6b.jpg", + "response": "A group of men standing next to a large crane.", + "id": 32983 }, { - "image_path": "G:\\images\\combined\\004378_jpg.rf.df87cf8850fe6f98c93680484f4b23cf.jpg", - "response": "a man in a blue hard hat is working on a power line", - "id": 2379 + "image_path": "G:\\images\\combined\\006951_jpg.rf.d0021dc1917217203c5348c566cb0083.jpg", + "response": "Two workers(357,274),(475,862)(500,270),(660,824) in blue uniforms(359,330),(469,829)(501,336),(629,815) and orange helmets(527,269),(593,336)(400,272),(469,339) stand next to a tree(619,4),(797,996) with a yellow and blue cord(329,259),(786,996).", + "id": 32984 }, { - "image_path": "G:\\images\\combined\\004380_jpg.rf.e0d6b65ed4dad6e76c52ee818d0afc81.jpg", - "response": "A man in a white hard hat is looking at a blueprint. He is wearing a black jacket and glasses. He is standing in front of a yellow fence.", - "id": 2380 + "image_path": "G:\\images\\combined\\006952_jpg.rf.7702e4da6eba267528bb4879b164729c.jpg", + "response": "The image shows three workers in yellow safety vests and hard hats standing in a tunnel. They are working on the right side of the image, and there is a fourth worker on the left side of the image. The three workers on the right side are focused on a task, and one of them is holding a tool that has red liquid on it. The liquid appears to be dripping on the right side of the tunnel wall, which has a lot of etchings on it. The etchings are arranged in a grid pattern and include red lines and dots.", + "id": 32985 }, { - "image_path": "G:\\images\\combined\\004381_jpg.rf.c8c959afd51fd7edec7c55e6e6a1c4b3.jpg", - "response": " Two men(268,570),(423,905)(399,607),(545,863) in hard hats(444,606),(508,682)(300,570),(369,652) and work clothes(271,659),(422,904)(399,676),(544,857) in a snowy forest", - "id": 2381 + "image_path": "G:\\images\\combined\\006953_jpg.rf.2b30751cfb58f9d89795ff9d6d99125b.jpg", + "response": "A worker in a red hard hat is reaching into a yellow box filled with fire. Another worker in a yellow hard hat is watching the first worker. Both workers are wearing blue jeans.", + "id": 32986 }, { - "image_path": "G:\\images\\combined\\004382_jpg.rf.de5cc100e6171a9049586b4346381a3d.jpg", - "response": "A pair of workers can be seen on a bamboo scaffolding. The scaffolding is located in front of a three-storey building. The building has a white upper floor and a lower floor with glass windows. There is a signboard on the left side of the building. The sky is overcast.", - "id": 2382 + "image_path": "G:\\images\\combined\\006954_jpg.rf.048ccf625a1c276bedfd524c888f2206.jpg", + "response": "In the image two construction workers are working on a project. They are wearing orange and yellow reflective vests. One worker is sitting on a large piece of equipment, and the other worker is directing water from a hose into a large pipe. The sky is blue, and there is a building in the background.", + "id": 32987 }, { - "image_path": "G:\\images\\combined\\004383_jpg.rf.6c9b254e2c1ee826da97023ade1da06d.jpg", - "response": "A group of men standing on a fire escape.", - "id": 2383 + "image_path": "G:\\images\\combined\\006958_jpg.rf.ebb4edf53a75ba10d5a23bbf4b682668.jpg", + "response": "A worker wearing a yellow hard hat and a grey shirt is working on a piece of equipment. The equipment is grey and has two wheels. The worker is also wearing a yellow hard hat and grey pants. In the background there is a large blue tower with Chinese writing on it. There are also two other people in the background, one wearing a blue shirt and one wearing a white shirt. They are both standing further back. There are also several other people in the scene but they are all further back and blurred. There are also several other pieces of equipment in the scene.", + "id": 32988 }, { - "image_path": "G:\\images\\combined\\004384_jpg.rf.dc080a4678722169dad9d90d69d0ed30.jpg", - "response": "A man wearing a yellow hard hat and orange safety vest stands in front of a red backhoe with its arm raised. The man has his arms crossed in front of him.", - "id": 2384 + "image_path": "G:\\images\\combined\\006959_jpg.rf.09302e124ef78b30dd5dfefed2a1eaef.jpg", + "response": "A group of men working on machinery outside.", + "id": 32989 }, { - "image_path": "G:\\images\\combined\\004385_jpg.rf.14366c40f5a2a64098076ace7486a554.jpg", - "response": "A group of people standing under a bridge.", - "id": 2385 + "image_path": "G:\\images\\combined\\006960_jpg.rf.7103c7d7395710de8b2374aef2b84f3d.jpg", + "response": "a group of men standing on a street corner", + "id": 32990 }, { - "image_path": "G:\\images\\combined\\004386_jpg.rf.32f766ff17975961422f55a8f9979f53.jpg", - "response": "There are four construction workers in the image. They are all wearing yellow safety vests and hard hats. They are working on a construction site that has a web of steel rebar laid out on the ground. There is a white crane operating in the background. There are also two other people in the image, one on the far left and one on the far right. The person on the far left is wearing a blue shirt and grey pants, while the person on the far right is wearing a white shirt and grey pants.", - "id": 2386 + "image_path": "G:\\images\\combined\\006961_jpg.rf.3bbca561a4079c816af6b3cfa4464d95.jpg", + "response": "The image shows a person standing in a small yellow room with some yellow machines. The person is wearing a yellow helmet and a red shirt. There are several yellow machines in the room, some placed on the left side and some on the right side. The person is holding a blue device with a red handle. The room has a yellow door and a yellow frame. The floor is covered with grey stones. The background is a dark tunnel.", + "id": 32991 }, { - "image_path": "G:\\images\\combined\\004387_jpg.rf.b2d6c37fc6ff41e3e6cc0f3e3aefd634.jpg", - "response": "a group of people walking down a sidewalk", - "id": 2387 + "image_path": "G:\\images\\combined\\006962_jpg.rf.939c96b1ea6ee9b76dd28e87becc49c4.jpg", + "response": "A man in a yellow vest(277,636),(362,984) walking through a tunnel.", + "id": 32992 }, { - "image_path": "G:\\images\\combined\\004388_jpg.rf.6aed72c06fd800cca41147e6eb61b0e5.jpg", - "response": "The image shows two workers in a dark room. They are wearing orange work suits and blue helmets. One worker is on the left, and the other is on the right. They are both engaged in welding. A blue light is shining on the spot where they are welding. There are also sparks flying.", - "id": 2388 + "image_path": "G:\\images\\combined\\006963_jpg.rf.15b7c21de9fc91670f92be59c3aafb79.jpg", + "response": "A group of workers are working on a building. The building is made of concrete and has many windows. The workers are wearing hard hats and are standing on a wooden platform. Some of them are working on a metal framework.", + "id": 32993 }, { - "image_path": "G:\\images\\combined\\004389_jpg.rf.89ee94151825d0ea63a59fe75ffeacdd.jpg", - "response": "a group of men standing on a train track", - "id": 2389 + "image_path": "G:\\images\\combined\\006964_jpg.rf.25fc1accc50d014766c658d480dc3584.jpg", + "response": "A man in a yellow hard hat carrying a large piece of wood.", + "id": 32994 }, { - "image_path": "G:\\images\\combined\\00438_jpg.rf.1b72a85d317f10877c4e9a64c3170980.jpg", - "response": "In the image, two workers are standing on a precarious-looking walkway that has been carved into the side of a mountain. They are both wearing hard hats and masks, and are focused on the camera. The walkway is made of wooden planks and leads to a ladder that disappears over a cliff. The workers are looking up at the camera, and one of them is holding a tool. The background shows a mountainous landscape with a river far below.", - "id": 2390 + "image_path": "G:\\images\\combined\\006965_jpg.rf.17b5cf24c1cbcb903b09f647131b3462.jpg", + "response": "Four Chinese miners sit in a mine shaft, wearing hard hats and headlamps. They are covered in a layer of black soot.", + "id": 32995 }, { - "image_path": "G:\\images\\combined\\00438_jpg.rf.a466fa450b0fe68762b240cfbf1b1581.jpg", - "response": "The image shows two men standing on a narrow mountain path. They are wearing hard hats and masks. The man on the left is wearing a yellow hard hat and has a beard. The man on the right is wearing a green hard hat with a yellow helmet. They are both wearing uniforms. In front of them is a ladder made of wood. To the right of the men, there is a large cliff with a white stone column embedded in it. The sky above them is grey and cloudy. The mountain path is very narrow and there are steep cliffs on both sides.", - "id": 2391 + "image_path": "G:\\images\\combined\\006966_jpg.rf.16df50ca02375cf46be4bf29da4ff9e7.jpg", + "response": "A group of people stand on a sidewalk in front of a building. Some of the people are wearing hard hats. In the background, there are several buildings and a crane.", + "id": 32996 }, { - "image_path": "G:\\images\\combined\\004391_jpg.rf.0697d3ce32f04a03f7e46cf20c6fed5b.jpg", - "response": "[ centrally managed state-owned enterprise ] party secretary and chairman of the board of directors liu yong visited the construction site of the zhengzhou bozhou railway freight station to\u68c0\u67e5\u5de5\u4f5c", - "id": 2392 + "image_path": "G:\\images\\combined\\006967_jpg.rf.557335ba8e4655aa476532e0c2c0a87a.jpg", + "response": "A group of four people standing next to each other.", + "id": 32997 }, { - "image_path": "G:\\images\\combined\\004392_jpg.rf.b74125882e5df22de0d17fb156c5265a.jpg", - "response": "A group of men in hard hats are standing in a construction site. They are standing on a mesh platform and looking at something on the ground.", - "id": 2393 + "image_path": "G:\\images\\combined\\006968_jpg.rf.b902d5c54799fa257ac1e51a95dface1.jpg", + "response": "In the image two workers are seen wearing blue helmets and carrying out some maintenance work. They are standing next to a tower and a power cable. The sky is blue and the workers are wearing blue uniforms.", + "id": 32998 }, { - "image_path": "G:\\images\\combined\\004393_jpg.rf.b25d77a0194ebd926af20e85b74ea4ea.jpg", - "response": "In the image two men wearing hard hats are standing in front of a snowy power line.", - "id": 2394 + "image_path": "G:\\images\\combined\\006969_jpg.rf.0f09259fa3f20f8c0e597d9d8f8e2ca3.jpg", + "response": "In the image there are two people wearing blue overalls and yellow helmets. They are working on a power box that has many wires and black boxes. They are sitting on a metal platform that is placed on a brick wall.", + "id": 32999 }, { - "image_path": "G:\\images\\combined\\004394_jpg.rf.66bdb117d9be4057d16124e21cb06859.jpg", - "response": "A worker in an orange jumpsuit and blue hard hat repairs a power line.", - "id": 2395 + "image_path": "G:\\images\\combined\\006970_jpg.rf.9d9bdf82afe2d728f6b59bfdc83efdc6.jpg", + "response": "The image shows a scene of a meeting. There are 8 people sitting around a conference table. Each person is wearing a name tag. In front of the people, there is a TV. On the wall behind the people, there is a large sign that says \"Welcome to the 18th Beijing Railway Bureau\". The meeting seems to be about the construction of the 16th Beijing-Shanghai high-speed railway.", + "id": 33000 }, { - "image_path": "G:\\images\\combined\\004395_jpg.rf.0d9ecfb50444f210b92619f1b8776b47.jpg", - "response": "a group of people standing in front of a sign that says KVOT2", - "id": 2396 + "image_path": "G:\\images\\combined\\006971_jpg.rf.2c1a79cbe68579821b55788c95093072.jpg", + "response": "In the image there are two engineers standing on a bridge in a factory. They are both wearing blue work clothes and white helmets. The left engineer is leaning on a railing and smiling at the camera, while the right engineer is looking forward. They both have a yellow safety belt around their waists.", + "id": 33001 }, { - "image_path": "G:\\images\\combined\\004396_jpg.rf.54c4c1d110818ee7f68e386797c7a2e9.jpg", - "response": "A group of five men working on a construction site.", - "id": 2397 + "image_path": "G:\\images\\combined\\006972_jpg.rf.cd97bd4587f0cdcb8102ba0149cfacee.jpg", + "response": "A man is up a telephone pole, fixing a power line.", + "id": 33002 }, { - "image_path": "G:\\images\\combined\\004397_jpg.rf.976043fe098746a88bb877a98ddc9061.jpg", - "response": "A man in a green coat and yellow hard hat is using a large yellow tool to chip away at ice on a power box.", - "id": 2398 + "image_path": "G:\\images\\combined\\006973_jpg.rf.90876914d40766b4a5954d2fa2278cb3.jpg", + "response": " A group(123,378),(245,809)(556,409),(657,778)(446,374),(562,787)(358,382),(453,796)(252,448),(338,793)(630,425),(768,790)(298,400),(370,775) of men standing outside a building", + "id": 33003 }, { - "image_path": "G:\\images\\combined\\004398_jpg.rf.428321009854a5f84e2f526f31f3f5e9.jpg", - "response": "A group of three men standing next to a wall with two of them wearing hard hats.", - "id": 2399 + "image_path": "G:\\images\\combined\\006974_jpg.rf.622ee1bae80d3cbf37940ee4a9d08eb7.jpg", + "response": "The image shows a worker in a white shirt and grey pants standing on a platform holding a black and white solar panel. The worker is wearing a blue hat and grey pants. In the background, another worker is installing a solar panel on the roof of a building. The sky is overcast and the ground is covered in a light layer of snow.", + "id": 33004 }, { - "image_path": "G:\\images\\combined\\004399_jpg.rf.931b995be831dcfc2ce280be93994a5a.jpg", - "response": "The image shows a large, open construction site with a group of people working inside. The site appears to be made of wood and metal frameworks, and the workers are wearing hard hats and clothes. Some of the workers are engaged in various tasks, such as standing or squatting, while others appear to be taking a break. The image is taken from a perspective looking down onto the construction site.", - "id": 2400 + "image_path": "G:\\images\\combined\\006975_jpg.rf.15d9e7c19ba33c21d513c67dfb6719d4.jpg", + "response": "In the image two workers are in a factory working on a large piece of equipment. The equipment is a red and green color and is sitting on a table. The workers are standing around the equipment with one on the left and one on the right. They are both wearing hard hats and blue jumpsuits. In front of the equipment on the table are several pipes. On the left side of the equipment there is a step ladder.", + "id": 33005 }, { - "image_path": "G:\\images\\combined\\0043d22a2fda508c.jpg", - "response": "A group of people are standing close together and posing for a picture. They are all smiling and seem to be enjoying themselves. Some of them are holding drinks, and there is a cup visible in the scene. The group is made up of people of various heights and they are all close to one another.", - "id": 2401 + "image_path": "G:\\images\\combined\\006976_jpg.rf.76a005f956857ae2a9761b1f3d74eea1.jpg", + "response": "The image shows a group of workers on a red and yellow crane. There are three workers in total, with one on the left side of the crane, another on the right side, and the third in the middle. They are all wearing yellow hard hats and orange vests. The crane is lifting a large tire, which is attached to a cable. The tire is black with a white rim. The workers are all focused on the task at hand.", + "id": 33006 }, { - "image_path": "G:\\images\\combined\\004400_jpg.rf.6a5a15cfff0f2bba1dc98ac3607a0ec5.jpg", - "response": "In the image two workers are seen wearing yellow helmets and grey uniforms, they are working on a metal tower. The tower is grey in color and has wires all around it. The workers are on it and it also has some glass like materials on it. The background of the image has mountains and a town visible.", - "id": 2402 + "image_path": "G:\\images\\combined\\006977_jpg.rf.b0024994a7d326bad5727356ec840022.jpg", + "response": "A man in a yellow safety vest and a yellow hard hat points at a wall with a group of people standing around him.", + "id": 33007 }, { - "image_path": "G:\\images\\combined\\004401_jpg.rf.1373ba31188765a607d0beda9ed0c3e4.jpg", - "response": "A group of men in blue uniforms lowering a man down a well.", - "id": 2403 + "image_path": "G:\\images\\combined\\006978_jpg.rf.1741e5efbc21f6946ca81f84e5a94650.jpg", + "response": "A worker(431,329),(546,800) walks on the railway tracks of the Standard Gauge Railway (SGR) line under construction between Nairobi and Naivasha, Kenya, in this file photo.", + "id": 33008 }, { - "image_path": "G:\\images\\combined\\004403_jpg.rf.c0bc87ffe43ad4676ac3e79083d038c0.jpg", - "response": "A construction site with two people working. There is a large roll of steel in the background and two cranes in the distance. There is a yellow crane in the middle of the scene and a green one on the right. There is a wooden post being carried by a man in the foreground and a pile of bamboo in the middle of the scene. The ground is dirt and there are several pieces of wood scattered around.", - "id": 2404 + "image_path": "G:\\images\\combined\\006979_jpg.rf.c7c1ad7decf93954161611acaacd7a03.jpg", + "response": "A group of men in white shirts and safety gear are working on a power box on a pole.", + "id": 33009 }, { - "image_path": "G:\\images\\combined\\004405_jpg.rf.474e43a53c9a438526c7789199aaa346.jpg", - "response": "A worker is seen in a factory in this undated file photo. VCG", - "id": 2405 + "image_path": "G:\\images\\combined\\006980_jpg.rf.2707e42ca98423f4390be9cc1662881f.jpg", + "response": " Two people(454,294),(623,998)(598,337),(736,974) standing in front of a yellow construction vehicle(486,4),(997,858)", + "id": 33010 }, { - "image_path": "G:\\images\\combined\\004407_jpg.rf.db27a9da3d312b04b635aa1907bc6d9b.jpg", - "response": "two men walking side by side", - "id": 2406 + "image_path": "G:\\images\\combined\\006981_jpg.rf.e6be3e2af2a21c17521457ff11d999a1.jpg", + "response": "A construction worker wearing a white hard hat and a yellow safety vest is using a shovel to remove debris from a large hole in the ground. The worker is standing on a ladder and has a flashlight in his hand. He is looking down into the hole.", + "id": 33011 }, { - "image_path": "G:\\images\\combined\\004409_jpg.rf.9c3c0832db26a221bd64e29b8129278e.jpg", - "response": "A group of people sitting around a table with water bottles on it.", - "id": 2407 + "image_path": "G:\\images\\combined\\006982_jpg.rf.d78ff4c0112beeb8f3b37e44ce1b9c3e.jpg", + "response": "In the image two workers are fixing a yellow and black truck. The man on the left is wearing a yellow safety vest and a blue hat, the man on the right is wearing a grey shirt and a blue hat. They are both working on the yellow and black truck.", + "id": 33012 }, { - "image_path": "G:\\images\\combined\\004410_jpg.rf.effe04e22da3f813384c032e82d00222.jpg", - "response": "A worker is using a large tool to work on a large piece of equipment. The equipment is a large, industrial machine with a long, cylindrical shape. The machine is painted yellow and grey and is located in a large, open warehouse. There are several other workers in the warehouse, although they are not visible in the image. The walls of the warehouse are lined with large windows and there are several pieces of machinery and equipment scattered around the floor.", - "id": 2408 + "image_path": "G:\\images\\combined\\006983_jpg.rf.7a83258c62fe867a48b7508406e4b38e.jpg", + "response": "A man pushing a cart down a sidewalk.", + "id": 33013 }, { - "image_path": "G:\\images\\combined\\004411_jpg.rf.ed4d867d6ba38f2de9d8284c14b948a8.jpg", - "response": "There are six people in the image, all wearing hard hats and work clothes. They are standing on a set of stairs that are made of metal. The stairs lead up to a structure that has metal beams and scaffolding. The people are all looking in the same direction, possibly at the camera.", - "id": 2409 + "image_path": "G:\\images\\combined\\006984_jpg.rf.0a88ba1c6ca99dae800d343882dc6dda.jpg", + "response": "A group of men standing in front of a bulldozer", + "id": 33014 }, { - "image_path": "G:\\images\\combined\\004412_jpg.rf.21eb7f8ecc68efc473e91d6cc556839c.jpg", - "response": "A man wearing a red jumpsuit, a red hard hat, and white gloves sits on a cinder block on a construction site. He is smiling at the camera. He has a trowel in his hand. To the left of the frame are several white cinder blocks stacked in a column. To the right of the frame are the legs of a building that has several windows. In the background, outside the frame, are several trees.", - "id": 2410 + "image_path": "G:\\images\\combined\\006986_jpg.rf.af1e53992bbb53cbc9fd6470a2a4f396.jpg", + "response": "A group of workers working on a train track in a tunnel.", + "id": 33015 }, { - "image_path": "G:\\images\\combined\\004413_jpg.rf.e43c17351c117762828ec7f43cf7a646.jpg", - "response": "An oil rig worker in a red jumpsuit, white hard hat, and white gloves is holding a tool in front of a drilling rig.", - "id": 2411 + "image_path": "G:\\images\\combined\\006987_jpg.rf.8a4f3ee8f3526462b185304d347e1827.jpg", + "response": "A group of men standing around a construction site.", + "id": 33016 }, { - "image_path": "G:\\images\\combined\\004414_jpg.rf.b40c75fb55ae9eeaf45aefde57caff33.jpg", - "response": "A man and woman standing in front of a construction site with blueprints and a hard hat.", - "id": 2412 + "image_path": "G:\\images\\combined\\006988_jpg.rf.2d39b9f1637c01042ef47d6b7dacfac0.jpg", + "response": "The photo shows a group of people walking in front of a building under construction. The people are wearing hard hats, and some of them are carrying a black bag. The building in the background is also visible. There are two benches in the scene, one on the left side and the other on the right side of the photo. The background also shows a close-up of a hand holding a flower.", + "id": 33017 }, { - "image_path": "G:\\images\\combined\\004415_jpg.rf.51ce0638acba70c3e03b8765cb156332.jpg", - "response": "A construction site with two men working on a scaffolding platform below a bridge. The bridge has a sign on it that says \"no vehicles, pedestrians, or animals allowed\". There are also several other signs on the bridge, including a speed limit sign that says \"20t\" and a height limit sign that says \"4m\".", - "id": 2413 + "image_path": "G:\\images\\combined\\006989_jpg.rf.3da630a793c05027c0b196f8a1a6806d.jpg", + "response": "A group of people working on a construction site.", + "id": 33018 }, { - "image_path": "G:\\images\\combined\\004416_jpg.rf.2fcb9b13dedc6c87c086d47895f26833.jpg", - "response": "The image shows a person in a yellow jacket standing in a tunnel. The tunnel is under construction and has a large drill in it. The drill is yellow and white and is located towards the right side of the image. The person is standing near the middle of the image and is looking at a control panel in front of them. The control panel has many buttons and levers on it. The person is wearing a yellow hard hat and is positioned slightly above the control panel. The tunnel appears to be large and has a concrete archway above the person. There are also two birds visible in the tunnel, one on the left and one on the right.", - "id": 2414 + "image_path": "G:\\images\\combined\\006990_jpg.rf.2c24df37fa3b8c4f58b2c3b1690f0496.jpg", + "response": "A group of people wearing hard hats and orange or blue coveralls are working in the snow. They are pulling on a rope and some have backpacks.", + "id": 33019 }, { - "image_path": "G:\\images\\combined\\004418_jpg.rf.1c7d76ce622a5ad3a6f91260cd212326.jpg", - "response": "A group of men working on a construction site.", - "id": 2415 + "image_path": "G:\\images\\combined\\006991_jpg.rf.f2db345fd471ebf98db950d5082a43b5.jpg", + "response": "A worker is working on a large piece of equipment that resembles a giant metal gear or motor. The worker is in the center of the equipment, which is covered in metal pieces and has a circular shape. The worker is wearing a yellow hard hat and appears to be holding a flashlight. The background is out of focus and appears to be cluttered with more metal pieces.", + "id": 33020 }, { - "image_path": "G:\\images\\combined\\004419_jpg.rf.3c220a81f62a0967c37c16cdfdd25dae.jpg", - "response": "A construction worker wearing a hard hat and orange vest stands on a construction site.", - "id": 2416 + "image_path": "G:\\images\\combined\\006992_jpg.rf.ca221397e54d13d877b6c2f98afcaf8a.jpg", + "response": "A man in a red jacket and a hardhat is holding a fire extinguisher and showing it to another man. Both men are wearing hard hats.", + "id": 33021 }, { - "image_path": "G:\\images\\combined\\004420_jpg.rf.e2f715ad2c5f8ca368cc726c0382cc7c.jpg", - "response": "A group of workers in hard hats are gathered around a small device. They are all wearing construction gear, including yellow and orange vests. Some of the workers are holding the device, while others are looking at it with interest. The device appears to be a small, blue and silver object.", - "id": 2417 + "image_path": "G:\\images\\combined\\006994_jpg.rf.719a6aee977dd16dda5757558827120f.jpg", + "response": "The image shows three men working in a factory. They are all shirtless and wearing yellow hard hats and green pants. The men are focused on a task, with one of them holding a large metal pipe. The pipe is covered in dirt and appears to be dirty. The men are standing in a large room with a metal structure above them.", + "id": 33022 }, { - "image_path": "G:\\images\\combined\\004421_jpg.rf.446cf89d89cadfd795f194d86604ad90.jpg", - "response": "Men working on a construction site to make a road.", - "id": 2418 + "image_path": "G:\\images\\combined\\006995_jpg.rf.429e3679e3a3c7c0c83fe38e1ca7be1e.jpg", + "response": "A lineworker scales a telephone pole to repair a power line.", + "id": 33023 }, { - "image_path": "G:\\images\\combined\\004422_jpg.rf.d3dcbc9ab1483b18e07c4e445d091d73.jpg", - "response": "A group of people walking in front of a building under construction.", - "id": 2419 + "image_path": "G:\\images\\combined\\006998_jpg.rf.5ef0a8d21b840b95ff9464f0c0d5f8c1.jpg", + "response": "The image shows a group of workers in blue uniforms and hard hats, working on a power pole in a forest. The pole is made of metal and has a red substance running down the side of it. The workers are standing around the pole, with one of them using a drill to work on the pole. There are also two other workers standing to the right of the first worker, and a fourth worker further back in the image. The workers appear to be focused on their task.", + "id": 33024 }, { - "image_path": "G:\\images\\combined\\004423_jpg.rf.d6ffa10d0c5197e565e50cfefb28dfdf.jpg", - "response": "A group of men in blue work uniforms are working on a power tower. They are wearing yellow hard hats and some have on red and white striped safety vests. They are working on the metal framework of the tower.", - "id": 2420 + "image_path": "G:\\images\\combined\\006999_jpg.rf.e64cac9a20646303439032fb0375467f.jpg", + "response": "A worker is pulling a long piece of cable across a concrete floor. The worker is in the center of the image, wearing a red helmet and holding the cable in his hands. The concrete floor is in the background and the worker is casting a shadow on the floor.", + "id": 33025 }, { - "image_path": "G:\\images\\combined\\004424_jpg.rf.899703d355a18bf03cac637bfeaf2265.jpg", - "response": "A man in a camouflage jacket and orange hard hat is on a ladder, climbing up to the top of a white metal tower. He is wearing a tool belt and has a tool in his hand. The ladder is secured to the tower with a strap.", - "id": 2421 + "image_path": "G:\\images\\combined\\0069bac022daedf4.jpg", + "response": "A green city bus with the back door open and several men standing around it.", + "id": 33026 }, { - "image_path": "G:\\images\\combined\\004425_jpg.rf.b3a4994bb993d32580a824b7cdd76509.jpg", - "response": "a group of men wearing hard hats", - "id": 2422 + "image_path": "G:\\images\\combined\\0069ec40a8a43caa.jpg", + "response": "A black and white photograph of a woman smiling with her mouth open. She has dark hair and is looking towards the upper right corner of the image. The photograph is cut off at the bottom, showing hands holding flowers. To the right of the woman, starting from the top, there is a red rectangle with the words \"I Want You!\" written in white. The letters appear to be hand written and are not perfectly aligned.", + "id": 33027 }, { - "image_path": "G:\\images\\combined\\004427_jpg.rf.ddb7cf4eb3373eee6bba90c3437f6620.jpg", - "response": "A man wearing a white hard hat with the words\u6cf0\u5c71\u8def\u6865.", - "id": 2423 + "image_path": "G:\\images\\combined\\0069ee6a94eca6d8.jpg", + "response": "The image shows a group of athletes standing together on a court. They are all wearing red and white uniforms. In the background, there are several other people, some of whom are holding cameras. There is also a large eagle costume in the scene, and a mascot wearing a bird head is present as well.", + "id": 33028 }, { - "image_path": "G:\\images\\combined\\004429_jpg.rf.dce8d537fc33ed1feee731b3ca15aea0.jpg", - "response": "A man wearing a white shirt and a red helmet is holding a walkie talkie and looking at a total station.", - "id": 2424 + "image_path": "G:\\images\\combined\\0069f56c0a0c1709.jpg", + "response": "A purple and black CD cover for a concert for Lidice.", + "id": 33029 }, { - "image_path": "G:\\images\\combined\\004431_jpg.rf.110403e2fb079560bcfdd61ed9ec7763.jpg", - "response": "The image shows a group of people working on a construction site. They are all wearing blue hard hats and some are also wearing white T-shirts. The people are standing around a large pipe, which is lying on the ground, and some of them are holding tools. There are two red flags on the right side of the image. In the background, there are several other people wearing yellow vests. On the left side of the image, there is a yellow truck.", - "id": 2425 + "image_path": "G:\\images\\combined\\006aad90e11a5d73.jpg", + "response": "A person is holding a yellow smartphone in their left hand. The phone is a Nokia Lumia 1020. The person is using the phone to demonstrate the time and distance settings. The phone has a black screen with white text. The text on the screen says \"time 1 minute, time 2 minutes, time 5 minutes, time 10 minutes, distance 0.5 Km, distance 1 km.\" The person's hand is in the foreground of the image and the background is blurry.", + "id": 33030 }, { - "image_path": "G:\\images\\combined\\004434_jpg.rf.8528ae5bb3b18c3a544ae34c6a3bcd73.jpg", - "response": "The picture shows a group of people(647,454),(744,893)(346,452),(437,915)(570,427),(666,893)(424,445),(508,902)(490,454),(587,897)(737,443),(848,892)(76,411),(191,972)(269,455),(358,929) standing in front of a building.", - "id": 2426 + "image_path": "G:\\images\\combined\\006af52d76f913db.jpg", + "response": "A black Samsung smart phone with a home screen that has several apps on it.", + "id": 33031 }, { - "image_path": "G:\\images\\combined\\004435_jpg.rf.590c4c994f17ee4e334116e9fc0cd2db.jpg", - "response": "A construction site with a building under construction. The building is white and has many windows. There is scaffolding around the building. In the foreground, two workers are visible, one is wearing a red helmet and a red vest, and is walking towards the camera, the other is further back and is wearing a blue helmet. There is a pile of sandbags in front of the building, and a yellow hand truck.", - "id": 2427 + "image_path": "G:\\images\\combined\\006b842efa5ea895.jpg", + "response": "In the image there is a man standing in front of a large projector screen. The man has a beard and is wearing a black lanyard. He is wearing a grey shirt and has his hands clasped together in front of him. He is also wearing a red and white name tag. The projected slide behind him says \"patrocinado bbva\" in purple and white writing.", + "id": 33032 }, { - "image_path": "G:\\images\\combined\\004436_jpg.rf.db0e1b0ce9fcb31957adfec1a5397c5a.jpg", - "response": "A man wearing a yellow safety helmet and a yellow vest is standing in a room filled with construction materials and tools. He is smiling at the camera and has his hand on a yellow tool box. There are several red ladders in the room and a pile of copper pipes on a metal table. Another metal table is covered with more tools and a bucket is placed on the floor.", - "id": 2428 + "image_path": "G:\\images\\combined\\006b9f2a7fd32e6b.jpg", + "response": "A young boy sitting at a table with three cups of coffee.", + "id": 33033 }, { - "image_path": "G:\\images\\combined\\004439_jpg.rf.a370229c52e9b48c47f207cff0ba2f81.jpg", - "response": "An electrician wearing a high visibility vest and a hard hat stands in the middle of a construction site. He is holding a large angle grinder on his shoulder.", - "id": 2429 + "image_path": "G:\\images\\combined\\006c36098228cd2c.jpg", + "response": "A large white sign advertising a berry farm and a brand called Sundance.", + "id": 33034 }, { - "image_path": "G:\\images\\combined\\004440_jpg.rf.adbf76f138b50101c62dc6253b214334.jpg", - "response": "A group of people working on a construction site.", - "id": 2430 + "image_path": "G:\\images\\combined\\006c3e319fe1880f.jpg", + "response": "A field of flowers with a mix of purple, white, yellow, and orange blossoms.", + "id": 33035 }, { - "image_path": "G:\\images\\combined\\004441_jpg.rf.6995a12e27d8d7bda70f5ec894effaa8.jpg", - "response": "A group of construction workers sitting on the ground.", - "id": 2431 + "image_path": "G:\\images\\combined\\006cd1e731a9f6be.jpg", + "response": "A person crossing the street at a red traffic light.", + "id": 33036 }, { - "image_path": "G:\\images\\combined\\004442_jpg.rf.cc5af31cb90e3f4a60c0c1f3d58db967.jpg", - "response": "A man and a woman in yellow jackets and hard hats are in a bucket above a power line.", - "id": 2432 + "image_path": "G:\\images\\combined\\006d10667d17b924.jpg", + "response": "A large crowd of people are sitting in front of a large screen. On the screen is a picture of a man with a cross around his neck. The event is called Meeting and has the year 2011 on it. The event is held on August 23rd.", + "id": 33037 }, { - "image_path": "G:\\images\\combined\\004443_jpg.rf.14b1cbe63fe496979c91e29d616e89fb.jpg", - "response": "The image shows a construction site with two workers visible. One worker is on the left, crouching down and appears to be a woman. She is wearing a green shirt and a yellow hard hat. The other worker is on the right, standing and wearing a white shirt and a yellow hard hat. They are both working near the foreground of the image.", - "id": 2433 + "image_path": "G:\\images\\combined\\006d2faf17385144.jpg", + "response": "The image shows a large building with a billboard on the side of it. The billboard has a large Apple logo on it and the words \"Where a whole new World is developing.\" The building is next to a street with traffic lights and people walking on the sidewalk. There are also cars parked along the street.", + "id": 33038 }, { - "image_path": "G:\\images\\combined\\004444_jpg.rf.b9ca8455aa30865e1e768abec9281f4e.jpg", - "response": "A man in a green shirt and white hard hat is checking lumber at a construction site. He is smiling and looking up at a stack of lumber. The lumber is yellow and brown and is made of wood. There are several stacks of lumber in the scene and a blue sky in the background. The man is wearing a white hard hat and has a pen in his pocket.", - "id": 2434 + "image_path": "G:\\images\\combined\\006d7a5a2009230f.jpg", + "response": "A man in a black shirt is using a mixer to make something in a bowl. Another man is standing next to him.", + "id": 33039 }, { - "image_path": "G:\\images\\combined\\004445_jpg.rf.db7c712ae66cecbf44c2c8833b663f9d.jpg", - "response": "The image shows three men standing in front of a building. The man on the left is wearing a black jacket and a red hard hat. The man in the middle is wearing a blue hard hat and a light blue jacket. The man on the right is wearing a grey hard hat and a grey jacket. They are all looking at a white piece of paper the man in the middle is holding.", - "id": 2435 + "image_path": "G:\\images\\combined\\006da1281d1bf763.jpg", + "response": "A wooden game board with a map of a city on it. There are also wooden pieces on the board and a small tower made of blocks.", + "id": 33040 }, { - "image_path": "G:\\images\\combined\\004446_jpg.rf.e29612a70c1a06d86ffbddb0f80bf0f5.jpg", - "response": "The image shows three workers in yellow helmets who are repairing a black pipeline on the ground. The pipeline is located in the middle of an empty construction site with yellow earth and some construction vehicles, including a yellow truck and a yellow loader, in the background. The workers are focused on their task, and one of them is holding a blowtorch to repair the pipeline. The photo is accompanied by a caption in Chinese that reads \"China Times\".", - "id": 2436 + "image_path": "G:\\images\\combined\\006f378c1ca56fd9.jpg", + "response": "A stained glass window of a king and a bishop.", + "id": 33041 }, { - "image_path": "G:\\images\\combined\\004447_jpg.rf.ef0b941ec30a4feeef120c67681d4a5d.jpg", - "response": "A group of three men working on a construction site wearing blue and yellow hard hats.", - "id": 2437 + "image_path": "G:\\images\\combined\\006f4870f0a038de.jpg", + "response": "Anne Hathaway in a pink Prada dress with a bow on the back", + "id": 33042 }, { - "image_path": "G:\\images\\combined\\004448_jpg.rf.e272ba58daacf8865b183a9bb9ca6fc0.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 2438 + "image_path": "G:\\images\\combined\\006fb71bc42db8d3.jpg", + "response": "a book with a green cover", + "id": 33043 }, { - "image_path": "G:\\images\\combined\\004449_jpg.rf.f257b2a2668160e53a069e163b965564.jpg", - "response": "A large group of workers in yellow vests and hard hats are huddled together, holding a large black hose and operating a yellow machine with a long arm on a city street.", - "id": 2439 + "image_path": "G:\\images\\combined\\007000_jpg.rf.4d71858319096975e650eaf3b1a575e1.jpg", + "response": "The image shows a group of rescue workers in orange uniforms working together to lift a man who is trapped in a large pit. The man is wearing a grey sweater and is on the ground. The workers are using a large metal tube to lift the man out of the pit. The pit is filled with brown mud and there are several workers standing in it, with some of them holding onto the man as he is lifted out. The workers are wearing hard hats and the man is wearing a pair of glasses. The scene is set in an outdoor location and the weather appears to be overcast.", + "id": 33044 }, { - "image_path": "G:\\images\\combined\\004450_jpg.rf.54c8e7ceac78e7a27cce14ed5d01959e.jpg", - "response": "A man is standing in front of a pile of gravel with a red hard hat on. He is wearing a blue jacket and a red hard hat.", - "id": 2440 + "image_path": "G:\\images\\combined\\007002_jpg.rf.42a2b925e5d3cd876e0b9a74fcb177fa.jpg", + "response": "A group of four men sitting on a stone wall.", + "id": 33045 }, { - "image_path": "G:\\images\\combined\\004451_jpg.rf.e63add1801bf45174965c002e86d1a18.jpg", - "response": "In the image, there is a construction worker wearing an orange hard hat and jacket. He is smiling and scratching his head with his hand. In the background, there is a large construction site with a crane and trucks. The sky is overcast.", - "id": 2441 + "image_path": "G:\\images\\combined\\007005_jpg.rf.de998c8315829b8f43e4ea6d8f0f1d16.jpg", + "response": "An electrician fixing an electrical box with a red hard hat on.", + "id": 33046 }, { - "image_path": "G:\\images\\combined\\004452_jpg.rf.b7dd2846db2b793959d6c07709a406ec.jpg", - "response": "A group of men standing around a table.", - "id": 2442 + "image_path": "G:\\images\\combined\\007006_jpg.rf.40565d2c04f5b0b9720055ec7d114d6d.jpg", + "response": "A worker wearing a yellow hat is looking through the metal grid.", + "id": 33047 }, { - "image_path": "G:\\images\\combined\\004453_jpg.rf.4245548be881440107eeea68c65b17f0.jpg", - "response": "In the image there is a worker wearing a red helmet who is pulling on a wire. The wire is connected to a wooden post. The worker is standing next to a wooden cage made of rods. The background shows a concrete floor and a wooden construction site.", - "id": 2443 + "image_path": "G:\\images\\combined\\007007_jpg.rf.b70db8d4bd35b5dd986dc86b60e6f6ab.jpg", + "response": "A group of men in orange jumpsuits and hard hats stand in a row on a dirt road.", + "id": 33048 }, { - "image_path": "G:\\images\\combined\\004454_jpg.rf.e8ebf172d93241b4ee3f521463e5fe3b.jpg", - "response": "A man in a yellow hard hat is pushing a large wooden cart with two wheels. He is standing on a construction site with a pile of dirt and debris in the background. There are also two other people on the site, one in the far distance and another near the right edge of the image. There is a large yellow crane operating in the far distance. There are also two buildings visible, one on the left and one on the right. In the background, there is a city skyline visible on the horizon.", - "id": 2444 + "image_path": "G:\\images\\combined\\007008_jpg.rf.d031f677c72c06eb0fd2f48c71afab5a.jpg", + "response": "A man wearing a blue shirt and a yellow hard hat is walking away from the camera. He has a small tattoo on his left arm and a large scar on his back. Another man, wearing a red hard hat, is visible in the background. They are both on a construction site.", + "id": 33049 }, { - "image_path": "G:\\images\\combined\\004455_jpg.rf.6e7160ebc5d521069a41d9e9f928baa7.jpg", - "response": "A worker in a red jumpsuit stands in front of a piece of machinery.", - "id": 2445 + "image_path": "G:\\images\\combined\\007009_jpg.rf.97c89d13196a9a114596aabb24f17631.jpg", + "response": "The image shows a group of people standing in front of a red wall. The man in the center is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To his left, the man in the front is wearing a black suit and a white shirt. In front of these three men, the woman on the right is wearing a gray suit and a red shirt. To her right, the man in the front is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To the far right, the woman is wearing a gray suit and a red shirt. She is holding a microphone.", + "id": 33050 }, { - "image_path": "G:\\images\\combined\\004456_jpg.rf.5e9f993ef720c7825292f022d2892ad3.jpg", - "response": "A group of people working on a hole in the ground with a orange tractor behind them.", - "id": 2446 + "image_path": "G:\\images\\combined\\007010_jpg.rf.572549d02b1db1768219bb487c8a6149.jpg", + "response": "The photo shows two men standing outdoors, wearing navy blue windbreakers. One man is on the left and is wearing glasses. Both men are facing the camera and appear to be speaking to an individual with a video camera, who is not in the frame of the picture. The man on the right is holding a camera and has dark hair. In the background, there is a rocky, barren landscape with a red building and a white structure further back.", + "id": 33051 }, { - "image_path": "G:\\images\\combined\\004457_jpg.rf.473d15fbe0e24df23705cf1136885e8a.jpg", - "response": "A group of men standing in front of a building.", - "id": 2447 + "image_path": "G:\\images\\combined\\007011_jpg.rf.c00a5047df7274ce6c83fa7487e7629e.jpg", + "response": "A group of people working on a construction site.", + "id": 33052 }, { - "image_path": "G:\\images\\combined\\004458_jpg.rf.9b37abe6d1bcc970482a192a3be4ca22.jpg", - "response": "A construction site with multiple workers.", - "id": 2448 + "image_path": "G:\\images\\combined\\007012_jpg.rf.288f00ebfa5e8014c9bdbc1179b567c2.jpg", + "response": "A woman in a yellow hard hat is holding a tablet. She is standing in front of a building under construction. There are two cars visible in the background, one on the left side and one on the right side of the image. The woman is wearing a grey and white shirt and a grey and white scarf. She is also wearing a yellow hard hat.", + "id": 33053 }, { - "image_path": "G:\\images\\combined\\004459_jpg.rf.f9148febcb153790daceef99ae14f247.jpg", - "response": "A group of men working on a scaffolding.", - "id": 2449 + "image_path": "G:\\images\\combined\\007013_jpg.rf.9da4df50346d4cadba16f376f3fade63.jpg", + "response": "The image shows a team of workers in a dark\u957f\u6c99\u5730\u94c1\u96a7\u9053. They are wearing yellow and green vests and hard hats. Some of them are kneeling on the ground, working on the tracks. There are several pairs of hands visible in the image, indicating that the workers are actively engaged in their tasks. In the background, there are cables and pipes on the walls of the tunnel. The lighting in the tunnel is provided by several flashlights and work lamps.", + "id": 33054 }, { - "image_path": "G:\\images\\combined\\004461_jpg.rf.47195b373f9236f68ac946ec5a8d8be8.jpg", - "response": "The image shows a construction site with several people working. There is a large area of red soil with wooden beams and metal rebar laid out in a grid pattern. The workers are wearing grey uniforms and blue or red helmets. Some of them are standing on the beams, while others are working on them. In the background, there are more people standing and some trees.", - "id": 2450 + "image_path": "G:\\images\\combined\\007014_jpg.rf.316bab74f1f78e0340902025510ad431.jpg", + "response": "A man wearing a white shirt and blue pants is working on a construction site. He is wearing a white shirt, a white hat, and blue and white boots. He is also wearing a tool belt and a harness. He is on a metal ladder, which is leaning against a yellow wall. The man is on the second rung of the ladder. He is holding a tool in his right hand. The ladder is attached to a wire that is running from the top of the ladder to the building. The man is also connected to the building with a safety line that is attached to a metal pole.", + "id": 33055 }, { - "image_path": "G:\\images\\combined\\004462_jpg.rf.79fba98f886907f885c601741e7e00c2.jpg", - "response": "In the image there is a man kneeling down next to a red box. He is wearing a blue shirt, a white helmet, and white gloves. In the background, there is a bridge under construction. To the left of the man, there is a field with a dirt path going through it.", - "id": 2451 + "image_path": "G:\\images\\combined\\007017_jpg.rf.55c5b6dd1f766d58542570a9a945a8f5.jpg", + "response": " A worker(92,266),(303,561) repairs a damaged pedestrian bridge in Taiwan after Typhoon Soudelor.", + "id": 33056 }, { - "image_path": "G:\\images\\combined\\004463_jpg.rf.5b0072c46af596b569776e7733ae2008.jpg", - "response": "A construction worker is using a power trowel to smooth concrete at a construction site. In the background, there are several buildings under construction. There are also several other workers at the site, with one of them wearing a yellow hard hat. There are several other people scattered around the site, some of them carrying tools. There are also several orange and white construction barrels placed around the site.", - "id": 2452 + "image_path": "G:\\images\\combined\\007018_jpg.rf.8668b83a6be9302c3ced569e43b5d949.jpg", + "response": "An oil worker stands in front of an oil pump in the oil field.", + "id": 33057 }, { - "image_path": "G:\\images\\combined\\004464_jpg.rf.862bbb50fe14519f825466b5705aaef4.jpg", - "response": "In the image there is a construction worker wearing an orange jacket and a yellow helmet. The worker is in the middle of a construction site, bending over a grid of metal rods. There are also orange safety barriers visible on the right side of the image.", - "id": 2453 + "image_path": "G:\\images\\combined\\007020_jpg.rf.a99b5b2e17a1a22c9bb273ebfea2b9f0.jpg", + "response": "A construction site with multiple workers.", + "id": 33058 }, { - "image_path": "G:\\images\\combined\\004465_jpg.rf.f466fa86d521d6bd598a2e4e851e7706.jpg", - "response": "A man(383,282),(487,707) in a red suit(385,352),(485,696) and blue helmet(393,280),(443,338) walking down a stairwell", - "id": 2454 + "image_path": "G:\\images\\combined\\007021_jpg.rf.8b8235f9b7ff92ba88bd8b502ffe3957.jpg", + "response": "The image shows two workers in red coveralls and red helmets, working on a pipe in the desert. They are both wearing gloves and one of them is holding a tool. The sky in the background is blue and cloudless.", + "id": 33059 }, { - "image_path": "G:\\images\\combined\\004466_jpg.rf.f651b012b4d67ec99efa907a0cc81127.jpg", - "response": "A group of men are working on a power line.", - "id": 2455 + "image_path": "G:\\images\\combined\\007022_jpg.rf.b83caf5801dc9e16e42c02f52d9c3599.jpg", + "response": "A couple of men in green and white hard hats.", + "id": 33060 }, { - "image_path": "G:\\images\\combined\\004467_jpg.rf.138a291a7fdb2323facd43a350e48008.jpg", - "response": "A group of people standing around looking at a paper.", - "id": 2456 + "image_path": "G:\\images\\combined\\007023_jpg.rf.6ee3514d734e715001e9ce6fe81bee01.jpg", + "response": "A man in a red hard hat and blue shirt is working on a piece of machinery. He is wearing gloves and has a tool in his hand. He is in a factory setting and there is a wall in the background.", + "id": 33061 }, { - "image_path": "G:\\images\\combined\\004468_jpg.rf.cb4d7df3b1063d2164801e7674addee2.jpg", - "response": "The image shows a group of workers wearing hard hats and eating lunch on the side of a mountain. They are sitting on the ground, surrounded by trees and snow. There are five people in the picture, each with a container of food in front of them. One person is holding a spoon in their hand. The containers are labeled \"KFC\", \"M\", and \"S\". The workers are engaged in their meal, with two people looking down at their food and three others looking at the camera. The snow on the ground adds to the wintry atmosphere of the scene.", - "id": 2457 + "image_path": "G:\\images\\combined\\007025_jpg.rf.9c6eb007f2c28816c4bb57f8d6a0bf1d.jpg", + "response": "An electrician in a yellow shirt and blue hard hat is\u4fee\u7f2e\u7535\u7ebf", + "id": 33062 }, { - "image_path": "G:\\images\\combined\\004469_jpg.rf.747ca6bca6bf440dbb6162e9ebd015d2.jpg", - "response": "A group of people standing around a construction site.", - "id": 2458 + "image_path": "G:\\images\\combined\\007026_jpg.rf.263c6bfb04daa88be5579bd692dee867.jpg", + "response": "The image shows two men wearing camouflage uniforms and hard hats, working on an electrical wire. They are both holding tools and one of them has a red flag attached to the wire they are working on. The sky is blue and there are buildings in the background.", + "id": 33063 }, { - "image_path": "G:\\images\\combined\\00446_jpg.rf.1c5201ccffaa9c028e681f3bbbe41c10.jpg", - "response": "a group of people standing in front of a tunnel", - "id": 2459 + "image_path": "G:\\images\\combined\\007027_jpg.rf.a5d878b8df025f53a678aba4d1c92256.jpg", + "response": "The image shows three workers installing solar panels on the roof of a residential building. The building is a light brown color and the roof appears to be made of concrete. There are two blue solar panels already in place on the roof. The workers are wearing yellow hard hats and are standing on the roof. One of the workers is on the left, another is in the center, and the third is on the right.", + "id": 33064 }, { - "image_path": "G:\\images\\combined\\00446_jpg.rf.74db43f7f519149ccb516799aef18125.jpg", - "response": "a group of people standing in front of a tunnel", - "id": 2460 + "image_path": "G:\\images\\combined\\007028_jpg.rf.295e29c64eea7be796f1b054424f2f96.jpg", + "response": "The image shows two men working on power lines. One man is in a bucket crane, and the other man is on a power line. Both men are wearing orange and white safety gear. The sky is blue, and there are no other visible features in the image.", + "id": 33065 }, { - "image_path": "G:\\images\\combined\\004470_jpg.rf.fa2227137d122f7c72bb798f90697762.jpg", - "response": "A man in a red and white shirt is shaking hands with another man.", - "id": 2461 + "image_path": "G:\\images\\combined\\007029_jpg.rf.4136a7b72f61d5711a83ceaac5e259c4.jpg", + "response": "A man wearing a hard hat and holding a drill.", + "id": 33066 }, { - "image_path": "G:\\images\\combined\\004471_jpg.rf.fbbeae3094993ea768e671bbd6130aaf.jpg", - "response": "a group of people walking on a street", - "id": 2462 + "image_path": "G:\\images\\combined\\007030_jpg.rf.865fdce45c9d616aa9dbe51f7982de8a.jpg", + "response": "A man wearing a yellow hard hat and a yellow vest is holding a large solar panel. He is wearing a white shirt and a yellow vest. He is standing on a roof and the sky behind him is blue.", + "id": 33067 }, { - "image_path": "G:\\images\\combined\\004472_jpg.rf.0c425efaed6d4f763c94c812925913ca.jpg", - "response": "The image shows two workers in white shirts and grey pants, one of them is on the left and the other one is on the right, they are climbing a grey pole.", - "id": 2463 + "image_path": "G:\\images\\combined\\007031_jpg.rf.8fbb7b1e5edd6d63a340d0fc89ccb7ed.jpg", + "response": "A construction site with two workers on scaffolding.", + "id": 33068 }, { - "image_path": "G:\\images\\combined\\004474_jpg.rf.2c8bbc838b557dd56b56e6a4311dbaa8.jpg", - "response": "An employee of a clean energy company repairs an electrical component.", - "id": 2464 + "image_path": "G:\\images\\combined\\007032_jpg.rf.e77dfeb03bcb16981f6c301e4b1ffc4c.jpg", + "response": "The image shows a group of men in blue work clothes standing in a gravel lot filled with power equipment. They are standing around a large wooden post with a black and orange wire wrapped around it. The men are looking at the wire and talking. In the background, there are several utility poles and power lines. To the right of the group, there is a yellow truck with a large crane on it. The truck is parked next to a paved road.", + "id": 33069 }, { - "image_path": "G:\\images\\combined\\004476_jpg.rf.061b3c97541a3635f86a4aca3996bdbc.jpg", - "response": "In the image there is a worker wearing a blue uniform and a white mask who is working with some machinery. The worker is on the left side of the image and the machinery they are working on is on the right. The worker is grinding a large metal cylinder and sparks are flying from the grinding wheel. The metal cylinder is grey and has some red writing on it. The worker is also wearing a grey helmet for safety. The background of the image is a bit blurry and there is a green machine behind the worker.", - "id": 2465 + "image_path": "G:\\images\\combined\\007033_jpg.rf.4b13c07bdea5857a7e2be40e517e6990.jpg", + "response": "In the image there are three construction workers at a construction site. They are all wearing yellow hard hats and the one on the right is also wearing a blue shirt. In front of them is a large circle made of steel rods that are stuck in the ground. They appear to be measuring or inspecting something. The background shows a large pile of brown dirt and a little bit of green grass.", + "id": 33070 }, { - "image_path": "G:\\images\\combined\\004477_jpg.rf.1275285cf12f52c1c658912d327b06fe.jpg", - "response": "A man in a blue shirt and a red hard hat is standing in front of a large cement mixer. The mixer is a large, cement-colored cylinder with a large metal platform and machinery attached to it. There is a yellow and red crane next to the mixer. The man is looking at the crane and the mixer. There are several other people in the background, some of them are wearing hard hats. The sky is overcast and there is a building in the background.", - "id": 2466 + "image_path": "G:\\images\\combined\\007035_jpg.rf.0294583e7be1cb455f0ae5f82e05a081.jpg", + "response": "A group of workers are working on power lines.", + "id": 33071 }, { - "image_path": "G:\\images\\combined\\004479_jpg.rf.d754a54871477d6fc549acef8b7ee5e8.jpg", - "response": "A worker wearing a yellow hat and work clothes is fixing a power line.", - "id": 2467 + "image_path": "G:\\images\\combined\\007036_jpg.rf.e37a879d5342974dfe817a7ca5e534be.jpg", + "response": "A group of people sitting around a table.", + "id": 33072 }, { - "image_path": "G:\\images\\combined\\004480_jpg.rf.ad9411247b3e4994557a440b12a097ab.jpg", - "response": "A woman wearing a white hard hat and a yellow safety vest is looking at a blueprint. She is smiling and wearing a white shirt.", - "id": 2468 + "image_path": "G:\\images\\combined\\007038_jpg.rf.afc7e66192b6a51b186d8dfd4d42af0e.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 33073 }, { - "image_path": "G:\\images\\combined\\004481_jpg.rf.db45e0a29099413c82f554bd0acbffe6.jpg", - "response": "In the image, three men wearing hard hats are carrying a metal beam up a snowy slope. They are all dressed in black. One man is on the left, carrying the beam above his head, another man is in the middle, and the third man is on the right. They are walking up a steep, snowy hill. In the background, there are some trees covered with snow.", - "id": 2469 + "image_path": "G:\\images\\combined\\007039_jpg.rf.7e797f128ed4cc2167d5156bd65bda94.jpg", + "response": "A group of men in hard hats are working on a metal structure.", + "id": 33074 }, { - "image_path": "G:\\images\\combined\\004482_jpg.rf.603dd2e1fbaaf47146c89b9c791449cd.jpg", - "response": "Four men in blue hard hats are working on a construction site. They are wearing work clothes and are using a tool. Some pipes are visible in the scene.", - "id": 2470 + "image_path": "G:\\images\\combined\\00703d37145300bc.jpg", + "response": "A person is holding a smartphone in front of a laptop and a computer monitor. The smartphone screen displays the words \"You Win!\" in green and yellow letters. The person is also holding a pen in their other hand.", + "id": 33075 }, { - "image_path": "G:\\images\\combined\\004483_jpg.rf.aae6b8d6f665717aeec019dd8196b823.jpg", - "response": "The photo shows a group of men standing on a wet road near a structure. They are dressed in business suits and hard hats. In the foreground, a camera man is holding a camera and microphone, and a person is holding a cable. In the background, there are several other people standing at a distance. The sky is overcast, and there are some power lines in the background.", - "id": 2471 + "image_path": "G:\\images\\combined\\007040_jpg.rf.d541ff06a85a0be1a9d43d3cb0d9d9ab.jpg", + "response": "Three men in yellow and green vests and hard hats are crouched down looking at blueprints on a construction site.", + "id": 33076 }, { - "image_path": "G:\\images\\combined\\004484_jpg.rf.e823b3ffc2aea15e357c451301d4e931.jpg", - "response": "In the image there is a construction worker wearing a white hard hat who is working on a construction site. The worker is sitting on a red and white structure which appears to be a foundation or a frame for a building. The worker is holding a square tool and appears to be measuring or marking something on the structure. The background of the image is blurred and there are a few other people working in the distance.", - "id": 2472 + "image_path": "G:\\images\\combined\\007041_jpg.rf.045b50a4658a1b4c761b0eb9b0e74372.jpg", + "response": "Two workers in red and blue uniforms are standing in front of a large metal cylinder. They are both holding walkie-talkies and smiling at the camera. The worker on the left is wearing a blue helmet and has a white remote control in his hand. The worker on the right is wearing a blue helmet and has a white object in his hand. They are both standing on a yellow and red platform.", + "id": 33077 }, { - "image_path": "G:\\images\\combined\\004485_jpg.rf.1ab212d94cc49eb0ac412a7eda02cd4c.jpg", - "response": "Men(426,297),(648,996)(635,392),(742,895)(201,350),(396,997)(395,325),(495,996) walking in front of construction trucks(105,122),(648,578)(899,223),(998,546) in a dirt lot", - "id": 2473 + "image_path": "G:\\images\\combined\\007042_jpg.rf.c0cf799c0cffcc55c734f40eafe7961f.jpg", + "response": "In the image two workers wearing orange jumpsuits and blue helmets are repairing an electrical transformer. The transformer is located outdoors, on the side of a building, and is covered in a protective cage. The workers are standing on a ladder and are focused on the task at hand. They are surrounded by many wires and cables, which are connected to the transformer. The scene is set in an outdoor environment with trees in the background.", + "id": 33078 }, { - "image_path": "G:\\images\\combined\\004486_jpg.rf.0706c06b6ae6c208ee44e60b76bb0c26.jpg", - "response": "An engineer in a hard hat stands in front of a crane that is lifting a shipping container. The shipping container is being lifted by a crane and is in the process of being placed on a truck. The engineer is standing on a dock and is looking at the action. The sky above is blue and cloudless.", - "id": 2474 + "image_path": "G:\\images\\combined\\007044_jpg.rf.2752a2f31a3300d93ca21043f59a2332.jpg", + "response": "A group of men standing on top of a dirt field.", + "id": 33079 }, { - "image_path": "G:\\images\\combined\\004487_jpg.rf.8ec027bb364538113b9bd5196e37d955.jpg", - "response": "A worker is seen in the image wearing a blue jumpsuit and a white helmet. He is standing on a large metal box with electrical wiring and equipment around him. He is holding a tool in his hand and appears to be working on the electrical components. The background shows a lush green forest.", - "id": 2475 + "image_path": "G:\\images\\combined\\007045_jpg.rf.ebf218b9ae41cf99f407e80dfba35f84.jpg", + "response": "A construction worker wearing a yellow hat and vest.", + "id": 33080 }, { - "image_path": "G:\\images\\combined\\004489_jpg.rf.45fb6a68fc0df921c5f99660f38bf4e8.jpg", - "response": "The image shows a group of people standing around a flatbed trailer full of stainless steel pots. There are at least five people in the scene, all wearing hard hats. Some people are closer to the left side of the trailer, while others are closer to the right side. A few people are also standing near the front of the trailer, and one person is at the far right edge of the image.", - "id": 2476 + "image_path": "G:\\images\\combined\\007046_jpg.rf.d0fbfa44911e7202e289b628e1c88503.jpg", + "response": "The picture shows a group of people gathered in a field. There are 9 people in total, standing in a rough circle. They are all dressed in black, with the exception of one person on the far left who is wearing a red coat. Most of the people are wearing black coats. In the background, there are some buildings and a crane. The sky is filled with clouds and it appears to be a bright and sunny day.", + "id": 33081 }, { - "image_path": "G:\\images\\combined\\004490_jpg.rf.9d90250d4deb1d3fe945a7fe0e590b16.jpg", - "response": "In the image there are two men wearing hard hats and blue coveralls. They are standing on a balcony overlooking a large industrial space with a walkway and pipes. There is a yellow tank in the room below them. They are both holding on to a metal railing.", - "id": 2477 + "image_path": "G:\\images\\combined\\007047_jpg.rf.a3a465fd0119e1abacdc1d3869cc6edb.jpg", + "response": " Two men(558,509),(907,997)(388,350),(577,997) in a tunnel, one pointing upwards", + "id": 33082 }, { - "image_path": "G:\\images\\combined\\004491_jpg.rf.1ae716bdb65cc3ae82c56d006517370b.jpg", - "response": "The picture shows a group of people standing in front of a large construction site. There are several men in the picture, all dressed in business attire. One man is speaking into a microphone, which is held in his right hand. The man second from the left is wearing a tie and has his hands crossed in front of him. The man third from the left is wearing glasses and has his hands in his pockets. The man on the far right is wearing a suit and is looking to the right. In the background, there are several tall buildings under construction. The ground around the people is covered in dirt and there are several construction vehicles parked to the right of the picture.", - "id": 2478 + "image_path": "G:\\images\\combined\\007048_jpg.rf.99669f74494ef4570a4222159376cf32.jpg", + "response": "A group of men are working on an electrical box.", + "id": 33083 }, { - "image_path": "G:\\images\\combined\\004493_jpg.rf.cbb2dc134cca77967c5d8344c24904ab.jpg", - "response": " Rescuers(588,373),(693,793)(415,618),(547,997)(213,645),(352,997)(475,446),(579,787)(92,534),(183,802)(568,149),(643,378)(669,510),(758,777)(407,588),(478,997) work to free a man who fell 20 feet into a crevasse while ice climbing in the Cascades.", - "id": 2479 + "image_path": "G:\\images\\combined\\007049_jpg.rf.c9bf57f9ebacca671a3fcbf71eac8a33.jpg", + "response": "An oil rig worker in a red jumpsuit and orange hard hat is working on a piece of equipment.", + "id": 33084 }, { - "image_path": "G:\\images\\combined\\004494_jpg.rf.7a013d1e27e14ee801d66caa89874a88.jpg", - "response": "Three men in yellow vests and hard hats are talking about a construction site. They are all holding white papers and one of them is holding a red book. They are standing in front of a building under construction with wooden beams and steel bars. The building has only a few floors built and is located next to a street.", - "id": 2480 + "image_path": "G:\\images\\combined\\007050_jpg.rf.d7d5d3991f27065d382e39e7e6b74df3.jpg", + "response": "Builder at the construction site drills a hole in the wall with a perforator.", + "id": 33085 }, { - "image_path": "G:\\images\\combined\\004495_jpg.rf.6bc40d081ff068a4532c3ad2fce218f6.jpg", - "response": "The image shows a group of construction workers at a construction site. They are working on a building that is still under construction. The building has not yet been completed, and it is a large building with many floors. The workers are wearing hard hats and uniforms, and some of them are using tools such as hammers and drills. The scene is set on a construction site, and there are steel bars visible in the foreground.", - "id": 2481 + "image_path": "G:\\images\\combined\\007051_jpg.rf.e0e3180c04c7a4fac9b7a75b6a537017.jpg", + "response": " A man(679,503),(857,997) wearing a yellow helmet(689,503),(825,636) is standing in front of a conveyor belt(167,223),(995,691)", + "id": 33086 }, { - "image_path": "G:\\images\\combined\\004496_jpg.rf.53aab25992a679d0d3475cb9b289ebac.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is working on a metal scaffolding.", - "id": 2482 + "image_path": "G:\\images\\combined\\007053_jpg.rf.a031960bafa60fdbcece37cca8575621.jpg", + "response": "A construction worker wearing a yellow hard hat and jacket is welding a steel rebar on the ground. He is crouching down and holding the steel rebar with one hand while holding the welding machine with the other hand. The steel rebar is placed on the ground and the worker is wearing a yellow hard hat and black shoes. The background shows a large area of concrete with steel rebar laid out across it.", + "id": 33087 }, { - "image_path": "G:\\images\\combined\\004497_jpg.rf.c8e08da53ebe4da945625e30e22295b7.jpg", - "response": "a man(199,144),(536,986) in a white shirt(199,377),(532,983)", - "id": 2483 + "image_path": "G:\\images\\combined\\007054_jpg.rf.7edbe9f02260a412942fdc10a7fed033.jpg", + "response": "A group of construction workers sitting on the ground.", + "id": 33088 }, { - "image_path": "G:\\images\\combined\\004498_jpg.rf.e8cecdeff014e0e2a816366c6e6893d2.jpg", - "response": "A group of men standing around talking.", - "id": 2484 + "image_path": "G:\\images\\combined\\007055_jpg.rf.7defda9a6f4036e1dad24d21564c5872.jpg", + "response": "A group of workers are on a telephone pole.", + "id": 33089 }, { - "image_path": "G:\\images\\combined\\004499_jpg.rf.eeb903d25a8917a8906a4f18d32a4f13.jpg", - "response": "A group of people working on a construction site.", - "id": 2485 + "image_path": "G:\\images\\combined\\007056_jpg.rf.c97477da3a59a37aa1e3aab020a820bc.jpg", + "response": "A group of people stand in a parking lot in front of a bridge under construction. In the foreground, a woman with dark hair and a black top is looking at the camera. To her left, a balding man with a brown shirt looks to the left. Another man with a yellow shirt and grey hair looks to the right. A man with glasses and a blue shirt looks to the left. A man with black hair and a yellow shirt looks to the right. A man with a blue shirt and black hair looks to the right. A man with glasses and a grey shirt looks to the left. In the background, a bridge under construction can be seen.", + "id": 33090 }, { - "image_path": "G:\\images\\combined\\0044daa150229eea.jpg", - "response": "A man standing at a podium in front of a large screen.", - "id": 2486 + "image_path": "G:\\images\\combined\\007058_jpg.rf.dc615f56a1e8b5eb0a62cfb0ae4724df.jpg", + "response": "The image shows a man digging a hole in the ground with a shovel. He is wearing a green shirt and a red hard hat. The ground around him is dirt and he is standing next to a hole that he has dug. There is a white bag in the hole. Another man is standing behind him, also digging a hole. In the background, there are several other people working further away. There are also a few shovels and a broom scattered around the scene.", + "id": 33091 }, { - "image_path": "G:\\images\\combined\\004500_jpg.rf.8c29331f7e48df4257e40ec713bf7581.jpg", - "response": "A group of men in orange vests standing on a road.", - "id": 2487 + "image_path": "G:\\images\\combined\\007059_jpg.rf.f084ad528b0de785a654b5023a2ffd89.jpg", + "response": "In the image, a factory worker is wearing an orange vest and hat, standing behind a table with a circular saw on it. The worker is cutting a metal pipe and sparks are flying from the saw. The sparks are covering the entire image and there are multiple sparks in different sizes and directions. The background is blurry and the main focus is on the worker and the sparks.", + "id": 33092 }, { - "image_path": "G:\\images\\combined\\004501_jpg.rf.f596cc1bc624bc84f4a88604c3b35369.jpg", - "response": "A man in a red hard hat is putting a yellow hard hat on a woman's head.", - "id": 2488 + "image_path": "G:\\images\\combined\\007060_jpg.rf.21fbabfc3321f8adabf98087a38ba73a.jpg", + "response": "A group of men standing on a bridge that is under construction.", + "id": 33093 }, { - "image_path": "G:\\images\\combined\\004502_jpg.rf.d65f95506e86d09b72ac16fcda95b574.jpg", - "response": "A group of men standing in front of a building under construction.", - "id": 2489 + "image_path": "G:\\images\\combined\\007061_jpg.rf.1d5989d265a295622c5c68eb972ba9be.jpg", + "response": "A man in a blue uniform and hard hat is working on a yellow pipe.", + "id": 33094 }, { - "image_path": "G:\\images\\combined\\004504_jpg.rf.66b62df7f5cd526d1f4fb818293ff6e0.jpg", - "response": "A group of people working on a construction site.", - "id": 2490 + "image_path": "G:\\images\\combined\\007062_jpg.rf.cd43818274b1b9816427c0c86549a2f9.jpg", + "response": "A couple of workers are standing on a building site.", + "id": 33095 }, { - "image_path": "G:\\images\\combined\\004505_jpg.rf.eb706d0a401c43474d2d79f9941517c2.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left and the other is on the right. They are both wearing yellow hard hats and are\u94bb\u4e95\u7684\u5de5\u4eba\u3002", - "id": 2491 + "image_path": "G:\\images\\combined\\007063_jpg.rf.82bcc9a16b400409f2586602f8bfb3ca.jpg", + "response": "An electrician is working on a power line in a residential area. He is wearing a white uniform and a blue helmet. He is standing on a wooden ladder, which is leaning against a tall concrete pole. The pole is filled with electrical equipment and wires. In the background, there are several tall buildings with balconies.", + "id": 33096 }, { - "image_path": "G:\\images\\combined\\004506_jpg.rf.5ce992a2a4bd43cdce5dfca8c9696069.jpg", - "response": "A group of men are walking up a snowy hill carrying large metal cables. They are all wearing orange hats and some are wearing orange vests. The snow around them is knee deep and the trees behind them are covered in snow.", - "id": 2492 + "image_path": "G:\\images\\combined\\007085c9466545f6.jpg", + "response": "A table with a typewriter on it and a deck of playing cards.", + "id": 33097 }, { - "image_path": "G:\\images\\combined\\004507_jpg.rf.1a10ee701e507a624774e249729dc8f8.jpg", - "response": "a group of men sitting in a living room", - "id": 2493 + "image_path": "G:\\images\\combined\\007191c09b7f8548.jpg", + "response": "A male and female model are sitting on white chairs on a stage, presenting the LG Optimus Chic and the LG Optimus One (G1) smartphones. The female model is on the left and the male model is on the right.", + "id": 33098 }, { - "image_path": "G:\\images\\combined\\004508_jpg.rf.07e214d8ea7b1195083755ad20c69a40.jpg", - "response": "A group of three men working in a warehouse.", - "id": 2494 + "image_path": "G:\\images\\combined\\0071cc12dfe35d22.jpg", + "response": "A dirty yellow car with a white license plate is parked on the side of the road.", + "id": 33099 }, { - "image_path": "G:\\images\\combined\\004509_jpg.rf.439785efda810c812bc02fe1333e6cbb.jpg", - "response": "A construction worker is using a power trowel to smooth concrete at a construction site. In the background, there is a large building under construction. There are also several cranes working in the area.", - "id": 2495 + "image_path": "G:\\images\\combined\\0071dc035a60427e.jpg", + "response": "A black, white and orange cat with a purple collar and gold bell around its neck.", + "id": 33100 }, { - "image_path": "G:\\images\\combined\\004510_jpg.rf.bb9dc31d3f19a1118c31e0249dbaaa56.jpg", - "response": "The image shows a construction site where a building is being built. The building is in the middle of the picture and is grey in colour. It is a multistoried building and appears to be made of concrete. There is a man standing in front of the building, facing away from the camera. Another man is standing further back in the picture, also facing the building. There is a pile of dirt in the foreground of the picture, and a pile of bricks to the right of the man. There is also a pile of sand to the left of the man. The sky above the building is grey.", - "id": 2496 + "image_path": "G:\\images\\combined\\0071dcd83ec7f9e2.jpg", + "response": "A red trolley car is going down the tracks in a city.", + "id": 33101 }, { - "image_path": "G:\\images\\combined\\004511_jpg.rf.07f100a3992916c9f504911e4daf309c.jpg", - "response": "The image shows a group of people standing in a large, unfinished room. They are all wearing hard hats, and some of them are also wearing suits. The room has a bare concrete floor and ceiling, and there are several pieces of construction equipment visible in the background. The people are standing in a rough circle, with some of them looking at the camera and others looking in different directions.", - "id": 2497 + "image_path": "G:\\images\\combined\\0071e67f53f3dc39.jpg", + "response": "A street light with a sign attached to it.", + "id": 33102 }, { - "image_path": "G:\\images\\combined\\004512_jpg.rf.5b48f32e2b4c72f1d7094f85f7861841.jpg", - "response": "A group of people walking down a walkway.", - "id": 2498 + "image_path": "G:\\images\\combined\\0072006110d73f8d.jpg", + "response": "A hand is holding four different cryptocurrency keychains. The first one is for Litecoin, it is an acrylic keychain with the Litecoin symbol on it. The second keychain is for Bitcoin, it is a gold keychain with the Bitcoin symbol on it. The third keychain is for Bitcoin, it is a bronze keychain with the Bitcoin symbol on it. The fourth keychain is for Bitcoin, it is a clear keychain with the Bitcoin symbol on it.", + "id": 33103 }, { - "image_path": "G:\\images\\combined\\004513_jpg.rf.ccd8c43723d2a25c8913b4709589f71a.jpg", - "response": "The rescue team is working on extracting the miners.", - "id": 2499 - }, - { - "image_path": "G:\\images\\combined\\004514_jpg.rf.962f4768b11d1192f6b4e5d0e5087234.jpg", - "response": "A man in a hard hat is standing in front of a construction site. There are other people standing around him, also wearing hard hats. The man is pointing at something on a wall of iron bars. In the background, there is a red and white building and a few cranes.", - "id": 2500 + "image_path": "G:\\images\\combined\\00737efc6f6a967e.jpg", + "response": "A man standing at a podium with several signs behind him.", + "id": 33104 }, { - "image_path": "G:\\images\\combined\\004515_jpg.rf.a34c78dd420994cdcb8494ed86890cdb.jpg", - "response": "In the image two workers are seen working on an electricity cable. They are wearing green and brown camouflage uniforms. The workers are at work on a sunny day and are wearing caps to protect themselves from the sun. The background has a tall building under construction.", - "id": 2501 + "image_path": "G:\\images\\combined\\00738_jpg.rf.6cbd32019d5706da2809f71556908dbf.jpg", + "response": "A group of men walking across a roof top.", + "id": 33105 }, { - "image_path": "G:\\images\\combined\\004516_jpg.rf.791d46fe5e82a0546c1123c583e7550b.jpg", - "response": "A group of men working on a construction site.", - "id": 2502 + "image_path": "G:\\images\\combined\\00738_jpg.rf.77f152606f7fe8f4f353ed979eb96731.jpg", + "response": "A group of men walking across a roof top.", + "id": 33106 }, { - "image_path": "G:\\images\\combined\\004517_jpg.rf.3b92696754763af65fa817f24ec43946.jpg", - "response": "A construction worker is using a tool to measure the depth of a hole in the ground. Another worker is kneeling down in front of a large pipe. They are both wearing yellow vests and hard hats. In the background, there is a pile of sand and a pile of red and white striped caution tape.", - "id": 2503 + "image_path": "G:\\images\\combined\\00739_jpg.rf.b046491ebd73ea60d1cfe0c50d15cfc8.jpg", + "response": "A group of four men standing on a rooftop.", + "id": 33107 }, { - "image_path": "G:\\images\\combined\\004518_jpg.rf.a4911082dbd78724b54f3ce9ca103b00.jpg", - "response": "A man wearing a blue hard hat is using a yellow ruler to measure a wooden wall. He is wearing a white shirt and blue pants. He is standing on a ladder. There is a house in the background.", - "id": 2504 + "image_path": "G:\\images\\combined\\00739_jpg.rf.dd5bd2d3061d0ae0b78b45f2cc900001.jpg", + "response": "A group of four men standing on a rooftop.", + "id": 33108 }, { - "image_path": "G:\\images\\combined\\004521_jpg.rf.d8db86a809d7b074ae0d5de32f542659.jpg", - "response": " Dilma Rousseff(698,165),(960,995), Brazil's president, center, holds a hard hat(534,681),(633,853) as she tours the construction site of the Olympic Park in Rio de Janeiro, Brazil, on Tuesday, April 15, 2014. Rousseff visited the site to see the progress of the construction of the Olympic Park, which is scheduled to be completed in 2015.", - "id": 2505 + "image_path": "G:\\images\\combined\\00742cd468e40de6.jpg", + "response": "A can of coffee that says Fire on it in English and Japanese.", + "id": 33109 }, { - "image_path": "G:\\images\\combined\\004522_jpg.rf.0013554991310aaa9640c0eee2a7866d.jpg", - "response": "A construction worker in orange coveralls and a hard hat is pulling on a large pipe. Another worker is in the background, and they are both standing in a large pit.", - "id": 2506 + "image_path": "G:\\images\\combined\\00742_jpg.rf.9a82928d33657948dbec086b19e4465e.jpg", + "response": "a group of people standing around a pile of grey rocks(337,533),(999,996)", + "id": 33110 }, { - "image_path": "G:\\images\\combined\\004523_jpg.rf.9d721d11cce5f619dc7b6c85856e5561.jpg", - "response": "a group of people standing in a construction site", - "id": 2507 + "image_path": "G:\\images\\combined\\00743_jpg.rf.b8de9e8c27f787f1fab6a696498d166d.jpg", + "response": "A group of men in hard hats walking across a construction site.", + "id": 33111 }, { - "image_path": "G:\\images\\combined\\004524_jpg.rf.215f238ae940a2a61caafc76c70c5d0c.jpg", - "response": "A man in a hard hat and sunglasses sits on a yellow vehicle.", - "id": 2508 + "image_path": "G:\\images\\combined\\00743_jpg.rf.fccdbc70d359aa015dbe99fed0502914.jpg", + "response": "A group of men in hard hats walking across a construction site.", + "id": 33112 }, { - "image_path": "G:\\images\\combined\\004525_jpg.rf.4a6ba11d84e525d86207eb5e4aecad32.jpg", - "response": "A group of workers stand in front of a yellow and orange construction vehicle. Some of them are wearing hard hats and one is wearing a white helmet. They are standing on a bridge that is under construction.", - "id": 2509 + "image_path": "G:\\images\\combined\\00744_jpg.rf.04a574d98b1da119b153dd4b863727f7.jpg", + "response": "In the image there are three people wearing blue hard hats(370,264),(446,348)(468,281),(538,362)(534,272),(590,340), one of them is wearing a red shirt(419,375),(536,634), they are checking a pool of water. There is a yellow metal handrail in the foreground and a yellow metal walkway. In the background there is a yellow building with a lot of windows and a white roof. There is also a brown building with a blue roof in the background.", + "id": 33113 }, { - "image_path": "G:\\images\\combined\\004526_jpg.rf.9e659e9a922f18a694386d9bca93450f.jpg", - "response": "A group of rescue workers in orange uniforms and yellow hard hats are working to free a trapped worker. The workers are standing on a pile of rubble and debris. Some of the workers are using large tools to cut through the debris. There is a fire coming from the rubble.", - "id": 2510 + "image_path": "G:\\images\\combined\\00746_jpg.rf.0911488b4d568419fe1de791bf820f49.jpg", + "response": "A group of men working on a pipe in the ground.", + "id": 33114 }, { - "image_path": "G:\\images\\combined\\004527_jpg.rf.0343a2533293fcf98608c8cbd80005b8.jpg", - "response": "A man in a white shirt and hard hat looking at a building under construction.", - "id": 2511 + "image_path": "G:\\images\\combined\\00746_jpg.rf.315f345b0c9fd1ae0dc4e2dc5fdbcce5.jpg", + "response": "A group of men working on a pipe in the ground.", + "id": 33115 }, { - "image_path": "G:\\images\\combined\\004528_jpg.rf.673e0538331d7606ce307e797ceeebd4.jpg", - "response": "a man(218,135),(693,996) wearing a blue hat(348,135),(645,427)", - "id": 2512 + "image_path": "G:\\images\\combined\\00747_jpg.rf.18ca273fd552c218749644c532998807.jpg", + "response": "The image shows a group of people carrying a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is surrounded by people. Some people are wearing hard hats, and there are several people standing around the stretcher. The ground is dirt, and there are wooden planks on the ground around the stretcher.", + "id": 33116 }, { - "image_path": "G:\\images\\combined\\004531_jpg.rf.659e5b5c3f7b7a12641b5fefe6f60a10.jpg", - "response": "In the image, a group of railway workers in orange jumpsuits and yellow helmets are working on a section of train tracks. They are standing on the tracks, with one person on each side of the tracks and two in the middle. They appear to be focused on their work.", - "id": 2513 + "image_path": "G:\\images\\combined\\00747_jpg.rf.83ec7d749a6e8b5ec3ddf32e56910104.jpg", + "response": "The image shows a group of people standing around a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is placed on wooden beams. The group of people is standing around the stretcher, with some of them holding it and others standing around it. Some of the people are wearing orange uniforms, and there are also some backpacks and a bottle in the scene. The ground is covered with dirt, and there are also some chairs and a bench in the background.", + "id": 33117 }, { - "image_path": "G:\\images\\combined\\004532_jpg.rf.3d024daae531a60751d6f789fd5e26a5.jpg", - "response": "A group of workers are working on a building that is not yet fully constructed. They are standing on scaffolding that is attached to the building. The building is made of concrete and has a greenish color. The workers are wearing yellow helmets and red shirts. One of them is pointing towards something on the second floor of the building. There are also two people standing outside the scaffolding, one of them is wearing a white shirt. The sky is overcast and there are no other people in the image.", - "id": 2514 + "image_path": "G:\\images\\combined\\00755ed1ee443a35.jpg", + "response": "A van with the word Yomtai on the side of it.", + "id": 33118 }, { - "image_path": "G:\\images\\combined\\004533_jpg.rf.dab4d20b05e2a4e65c3fbafe185d30ae.jpg", - "response": "In the image two workers are\u4fee\u7406ing electrical components. They are wearing hard hats and work clothes. One worker is in the front of the image and is focused on the task at hand. The second worker is in the background and is also working on the components. There are multiple electrical components in the foreground that the workers are working on.", - "id": 2515 + "image_path": "G:\\images\\combined\\007575a3d2399034.jpg", + "response": "a man wearing a red jersey is holding a baby dressed in a tiny soccer uniform", + "id": 33119 }, { - "image_path": "G:\\images\\combined\\004534_jpg.rf.e81b9b16fd2e30393f644600947f04c6.jpg", - "response": "The image shows two workers standing in a large warehouse-like space, surrounded by large blocks of ice. The blocks are piled up in the foreground, and there are bags of ice in the background. The workers are standing near the pile of ice, which is spread out in front of them. They are both wearing yellow hard hats and safety vests.", - "id": 2516 + "image_path": "G:\\images\\combined\\00757ab42ca415d8.jpg", + "response": "A white delivery truck with a advertisement for JP Wisers on the side.", + "id": 33120 }, { - "image_path": "G:\\images\\combined\\004535_jpg.rf.96dff44b6521f4bbf76f23516d670ad4.jpg", - "response": "a group of men standing in front of a van", - "id": 2517 + "image_path": "G:\\images\\combined\\0075f28d995930da.jpg", + "response": "A motorcycle is parked on a gravel shore next to a lake. The bike is facing the mountains in the background.", + "id": 33121 }, { - "image_path": "G:\\images\\combined\\004536_jpg.rf.e20c5d9c9148244e80b9e87e6c916d0d.jpg", - "response": " a man(237,131),(371,658) in a red suit", - "id": 2518 + "image_path": "G:\\images\\combined\\00763053203c207f.jpg", + "response": "The image shows a pile of various items, including a small white plastic cat figurine with a rainbow tail, a few boxes of Photo Kano, and photos of a girl with blue hair. The plastic cat figurine is sitting on top of one of the Photo Kano boxes. The pile of items also includes a few boxes with anime characters on them.", + "id": 33122 }, { - "image_path": "G:\\images\\combined\\004537_jpg.rf.5925c2bdb31912ea5805764a4510012b.jpg", - "response": "\u5c71\u4e1c\u8363\u6210\u5e02\u6c14\u8c61\u5c40\u5e72\u90e8\u804c\u5de5(524,383),(798,830)\u8fde\u7eed\u594b\u6218\u5728\u6297\u51fb\u53f0\u98ce\u4e00\u7ebf\u3002\u53f0\u98ce\u201c\u6d77\u71d5\u201d\u7ed9\u8363\u6210\u5e02\u9020\u6210\u4e25\u91cd\u635f\u5931\uff0c\u622a\u81f33\u670812\u65e518\u65f6\uff0c\u5171\u9020\u62101\u4eba\u6b7b\u4ea1\uff0c2\u4eba\u5931\u8e2a\uff0c\u76f4\u63a5\u7ecf\u6d4e\u635f\u5931\u8fbe1.5\u4ebf\u5143\u3002\u76ee\u524d\uff0c\u5168\u5e02\u5df2\u6062\u590d\u4f9b\u753511\u4e07\u6237\uff0c\u6062\u590d\u4f9b\u6c346\u4e07\u6237\uff0c\u6062\u590d\u901a\u4fe110\u4e07\u6237\uff0c\u9053\u8def\u57fa\u672c\u6062\u590d\u7545\u901a\u3002", - "id": 2519 + "image_path": "G:\\images\\combined\\0077cfc1390df0e6.jpg", + "response": "A wooden clock with metal spokes and a white face.", + "id": 33123 }, { - "image_path": "G:\\images\\combined\\004538_jpg.rf.263433e4be783c28a37300d533bda3a8.jpg", - "response": "The image shows a group of men standing in a large underground cavern. They are all wearing hard hats and some are also wearing suits. The cavern has a gravel floor and there are large boulders and mining equipment scattered around. The men are standing in the center of the cavern, facing each other, and appear to be engaged in a discussion or tour.", - "id": 2520 + "image_path": "G:\\images\\combined\\00780778116614e0.jpg", + "response": "A man in a yellow jacket standing in front of a small building with two doors. The building has the word \"gentle\" on one door and \"lady\" on the other. There is a red pipe on the left side of the building and a pile of rocks next to it. The sky is white and there is a mountain in the background.", + "id": 33124 }, { - "image_path": "G:\\images\\combined\\004539_jpg.rf.e132895f544f3d194be574c1db7c1915.jpg", - "response": "The picture shows a group of people walking on a yellow dirt road. There are four people in the picture, two men and two women. The two men are wearing white and blue striped shirts, and the two women are wearing summer dresses. The man on the left is wearing glasses and a black watch. The woman on the left is holding a phone in her hand and looking at it. The two men walking behind are both wearing suits. The background is a construction site with several multi-story buildings under construction. There are several red and yellow construction cranes in the background. On the right side of the picture, there is a green grassy area with some yellow plants.", - "id": 2521 + "image_path": "G:\\images\\combined\\0078338406ed7aa8.jpg", + "response": "A group of men are huddled together in a room with a yellow wall. They are all wearing sports jerseys and have their arms around each other. Some of the men are wearing backpacks and ties. There are several American flags strung across a doorway and some are placed around the room. A TV is in the room and a few books are stacked on a shelf.", + "id": 33125 }, { - "image_path": "G:\\images\\combined\\00453fcb4e869350.jpg", - "response": "A man and a woman standing in a room.", - "id": 2522 + "image_path": "G:\\images\\combined\\00784ef6ad094836.jpg", + "response": "The image shows a large room filled with people sitting at long tables. There are multiple chairs and tables throughout the room, and the tables are covered with various items such as backpacks, laptops, and books. The people in the room are engaged in a variety of activities, including talking to each other and working on their laptops. Some people are sitting alone, while others are sitting in groups. The room has a modern and industrial feel to it, with white walls and large windows.", + "id": 33126 }, { - "image_path": "G:\\images\\combined\\004540_jpg.rf.048b1181bb6624da37c66aab2fab7fed.jpg", - "response": "The image shows a group of men standing in a circle in a construction area. They are all wearing red hard hats. Some of the men are wearing white shirts and grey pants, while others are wearing light blue or white shirts and dark blue or dark grey pants. One man on the right is wearing a dark grey shirt and dark grey pants. The men are standing on a light brown concrete area with several construction materials around them. To the far left, there are several stacks of light brown wood planks. To the right, there is a pile of dark grey stones. In the background, there is a large mountain range covered in green trees. To the far left, there is a white building with red stripes. On the right side of the image, there is a tall green building with several red flags flying from it.", - "id": 2523 + "image_path": "G:\\images\\combined\\00792db6bb86e0e2.jpg", + "response": "A hockey team stands on the ice in a stadium.", + "id": 33127 }, { - "image_path": "G:\\images\\combined\\004541_jpg.rf.a6daffdc41ad6307e820cfbab67569c3.jpg", - "response": "A man in a grey shirt and orange vest with a white hard hat on.", - "id": 2524 + "image_path": "G:\\images\\combined\\0079626afbcf18b9.jpg", + "response": "A close up of a smartphone with a yellow case. The screen displays data from a fitness app. The time is 11:10 and the temperature is 12 degrees Celsius. The altitude is 1200 meters. The heart rate is 123 beats per minute. The speed is 10.5 kilometers per hour. The distance is 9.6 kilometers. The altitude gain is 963 meters. There is a button with a picture of a person running. Below this is a button with a picture of a bag.", + "id": 33128 }, { - "image_path": "G:\\images\\combined\\004542_jpg.rf.3ef7c6ef0f6c319f1bef8f58a8ebfe55.jpg", - "response": "In the image two workers wearing yellow hard hats are standing in front of a large electrical box. The electrical box is grey with a control panel on the front. The workers are both holding yellow and grey check lists. One worker is on the left side of the image and is pointing to a control on the electrical box. The other worker is on the right side of the image and is looking at the first worker.", - "id": 2525 + "image_path": "G:\\images\\combined\\007968e74e3c5ddc.jpg", + "response": "A man standing in front of a classroom, giving a lecture.", + "id": 33129 }, { - "image_path": "G:\\images\\combined\\004543_jpg.rf.0138dfc7fa3f96c4c22052eee5645706.jpg", - "response": "A group of three people standing together in front of a building that is under construction. They are all dressed in different colored work clothes and are holding a blueprint.", - "id": 2526 + "image_path": "G:\\images\\combined\\0079cc61e4ade96f.jpg", + "response": "A green dumpster with the words \"I love you\" written on it in yellow spray paint.", + "id": 33130 }, { - "image_path": "G:\\images\\combined\\004544_jpg.rf.8d2cda682555074008477eab14ad761b.jpg", - "response": "The image shows two workers clearing snow from power lines in a snowstorm. They are wearing black uniforms and blue helmets. One worker is on the left, pulling on a rope while the other is on the right, pulling on a cable. They are surrounded by snow, with a snow-covered hill in the background. There are also several trees covered in ice in the background.", - "id": 2527 + "image_path": "G:\\images\\combined\\007a0eaa8594488c.jpg", + "response": "The image features a pink and white Hello Kitty sugar syrup bottle sitting on a counter. The bottle is clear and tall, with a label featuring the iconic Hello Kitty character. The bottle is almost empty, with only a small amount of syrup remaining.", + "id": 33131 }, { - "image_path": "G:\\images\\combined\\004545_jpg.rf.87252350de6e21b62949bc0d8a9b8f7c.jpg", - "response": "a man(437,227),(824,996) working on pipes in a dark tunnel", - "id": 2528 + "image_path": "G:\\images\\combined\\007a2a20d20b99c4.jpg", + "response": "A large video screen displays information about Epson's Pulsense line of activity monitors. Two devices are shown, a Pulsense Watch and a Pulsense Band. The Pulsense Watch is shown in more detail, with a price of $199.", + "id": 33132 }, { - "image_path": "G:\\images\\combined\\004546_jpg.rf.9c05ce03da94ea2c03a27e0b993a2b66.jpg", - "response": "The image shows two construction workers in yellow reflective vests and orange hard hats, walking away from the viewer down a sidewalk. They are pulling a small orange and black generator on a cart behind them. The sidewalk is cluttered with several large sandbags, and there is a pile of sandbags to their left. In the background, there are a few trees and a row of buildings with glass windows. A few cars are parked or driving on the street.", - "id": 2529 + "image_path": "G:\\images\\combined\\007a4e97abc192b9.jpg", + "response": "A black Mars candy vending machine with a wrapper design on it.", + "id": 33133 }, { - "image_path": "G:\\images\\combined\\004547_jpg.rf.e0827650398b70670b7c44c4652347d3.jpg", - "response": "a group of men walking across a road", - "id": 2530 + "image_path": "G:\\images\\combined\\007ac6a42d3b93e5.jpg", + "response": "A man wearing a grey shirt and khaki shorts is pointing towards a bird bath.", + "id": 33134 }, { - "image_path": "G:\\images\\combined\\004548_jpg.rf.132ec2365938905517a999792b1ca869.jpg", - "response": "A worker in a red shirt and blue hat is working on a power line. They are hanging from a thick black wire and are wearing a yellow tool belt. They have a pair of black gloves and are wearing a pair of grey pants.", - "id": 2531 + "image_path": "G:\\images\\combined\\007b13712b157445.jpg", + "response": "A tire with a green rim is being inflated with a green pump.", + "id": 33135 }, { - "image_path": "G:\\images\\combined\\004549_jpg.rf.129714df07e8515ed4fae9296c6b7023.jpg", - "response": "A group of men in suits and hard hats are gathered around a cement block wall. One of the men is holding a cell phone. They appear to be in a construction site.", - "id": 2532 + "image_path": "G:\\images\\combined\\007b26babc057f54.jpg", + "response": "A table with a cell phone, picture frames, and brochures on it.", + "id": 33136 }, { - "image_path": "G:\\images\\combined\\004550_jpg.rf.904b5b2ac8a80929f169c12f0e3be28e.jpg", - "response": "A man in a hard hat standing on scaffolding.", - "id": 2533 + "image_path": "G:\\images\\combined\\007b3b91e66b0689.jpg", + "response": "A baseball pitcher for the New York Yankees celebrates after getting a batter to hit a fly ball during a game.", + "id": 33137 }, { - "image_path": "G:\\images\\combined\\004552_jpg.rf.cbe7356a89e2aa93ca856ac65125f44d.jpg", - "response": "A man wearing a hard hat and an apron is sitting down and eating a sandwich.", - "id": 2534 + "image_path": "G:\\images\\combined\\007c3047f0237443.jpg", + "response": "A baseball game is being played on a field. There are three players on the field, one of them is running towards home plate. The catcher is standing behind the runner, and the umpire is standing behind the catcher. The runner is wearing a red jersey and the catcher is wearing a red helmet. The umpire is wearing a blue shirt.", + "id": 33138 }, { - "image_path": "G:\\images\\combined\\004553_jpg.rf.f396bdce6e17c74fbe71bf85e43d5861.jpg", - "response": "A construction worker is trapped beneath a pile of steel rebar. He is wearing an orange construction uniform and is kneeling on the ground. There are several people around him, including a woman in a blue shirt and a man in a pink shirt. Some of the people are kneeling on the ground while others are standing. There are also several pairs of shoes in the scene.", - "id": 2535 + "image_path": "G:\\images\\combined\\007c5073fc9774bc.jpg", + "response": "A thermometer that is on a table.", + "id": 33139 }, { - "image_path": "G:\\images\\combined\\004554_jpg.rf.7ab920fc51aa52fe09c7ea10da9f5f83.jpg", - "response": "A group of people standing around a machine.", - "id": 2536 + "image_path": "G:\\images\\combined\\007c8c28e1f149b1.jpg", + "response": "A box for a Lego set called The Lego Movie. The box features a Lego Batman figure and a Lego cat figure fighting.", + "id": 33140 }, { - "image_path": "G:\\images\\combined\\004555_jpg.rf.384506fce0701ad872af634ab0363c62.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing hard hats and are working on a construction project. The project involves pouring concrete, and several workers are actively involved in the process.", - "id": 2537 + "image_path": "G:\\images\\combined\\007ce03e56abd3f6.jpg", + "response": "The image shows a wall covered in various items. On the wall, there are multiple makeup brushes, including a large brush and a small one, a compact mirror, a cell phone, and a pair of glasses. There are also multiple beauty products, including two bottles of foundation, a tube of lipstick, and two eyeshadow palettes. A pink hair tie is also attached to the wall. The wall is white and the items are arranged in a haphazard manner.", + "id": 33141 }, { - "image_path": "G:\\images\\combined\\004556_jpg.rf.f259216499f42d40ed08e10f4c21732a.jpg", - "response": "A group of five men working on a building construction site.", - "id": 2538 + "image_path": "G:\\images\\combined\\007ce7eca014eae6.jpg", + "response": "A woman holding a Seattle snow globe in front of her face.", + "id": 33142 }, { - "image_path": "G:\\images\\combined\\004557_jpg.rf.1f2f480df113ca04dd5d27d06d7f02e7.jpg", - "response": "The image shows two workers in a green rice field. One worker is on the left side of the image and is wearing a blue helmet, blue work clothes with a white apron, and is working on an electrical component. The other worker is on the right side of the image and is wearing a blue helmet, blue work clothes, and is connecting wires to the electrical component. They are both in the middle of the field and there are power lines above them.", - "id": 2539 + "image_path": "G:\\images\\combined\\007d8de02b273320.jpg", + "response": "A bus with a design of yellow and blue leaves on the side.", + "id": 33143 }, { - "image_path": "G:\\images\\combined\\004558_jpg.rf.3b87872e5e6cf1ab345b980d7d521c7e.jpg", - "response": "In the image there is a construction site with two workers. One worker is wearing a red jacket and blue pants, and is using a tool with a long handle to break up grey concrete. The other worker is wearing a yellow hat and grey suit, and is using a white mask to protect themselves from the concrete dust. There is a large pile of brown dirt to the right of the workers. In the background, there are a few buildings under construction that have red frameworks and white walls. There is a long grey pipe on the left side of the image, and a few smaller pipes running horizontally in the foreground.", - "id": 2540 + "image_path": "G:\\images\\combined\\007db4299e52668a.jpg", + "response": "Four men are wearing uniforms and posing for a picture.", + "id": 33144 }, { - "image_path": "G:\\images\\combined\\004560_jpg.rf.05fb30faa8adfb9aa0816b9dc7aebb3a.jpg", - "response": "The picture shows a scene of men gathered together in front of a large blue metal structure. The men are wearing everything from suits to jeans and sneakers. In the background, there are two trucks parked. One is white and has a large windshield and two large headlights on the front. The other is larger and is mostly covered in a blue tarp.", - "id": 2541 + "image_path": "G:\\images\\combined\\007e5ddf6555e6dd.jpg", + "response": "A silver Mercedes Benz is parked on the side of the street.", + "id": 33145 }, { - "image_path": "G:\\images\\combined\\004561_jpg.rf.2d093290ac4c3f9d35a36624945c5332.jpg", - "response": "The image shows a construction site with several workers. There is a large pipe on the ground, and two workers are handling it. One worker is on the left, holding the pipe while the other is on the right, standing behind him. They are both wearing yellow vests and hard hats. In the background, there are power lines and a blue sky.", - "id": 2542 + "image_path": "G:\\images\\combined\\007f097678571e5d.jpg", + "response": "A display of several Lego sets, including a toy story set and a racers set.", + "id": 33146 }, { - "image_path": "G:\\images\\combined\\004564_jpg.rf.34060b6cd161f45679265a95fd4472be.jpg", - "response": "A group of men standing around each other.", - "id": 2543 + "image_path": "G:\\images\\combined\\007f51fd92c14610.jpg", + "response": "An open book with a variety of green and black images on the pages.", + "id": 33147 }, { - "image_path": "G:\\images\\combined\\004565_jpg.rf.dcbd6b00445366075df111993e6f7cf3.jpg", - "response": "A group of men working on a construction site.", - "id": 2544 + "image_path": "G:\\images\\combined\\008078930b01bc50.jpg", + "response": "A flower shop with a large variety of flowers and plants on display.", + "id": 33148 }, { - "image_path": "G:\\images\\combined\\004566_jpg.rf.2406bdd5183963e259b8ecd16d1410cf.jpg", - "response": "A group of men standing around each other.", - "id": 2545 + "image_path": "G:\\images\\combined\\0080a7dfda1e078f.jpg", + "response": "A black cat sitting in a cardboard box on the floor.", + "id": 33149 }, { - "image_path": "G:\\images\\combined\\004567_jpg.rf.13ea5d4103cb83b214b2c9104ddac10a.jpg", - "response": " An excavator(339,123),(661,705) is being used to try and free the trapped workers", - "id": 2546 + "image_path": "G:\\images\\combined\\0080ab49662c727c.jpg", + "response": "a board with post it notes with writing on it", + "id": 33150 }, { - "image_path": "G:\\images\\combined\\004568_jpg.rf.95385858fa34a6af66d9b7a52318e5c0.jpg", - "response": "A man wearing a red helmet and a yellow vest is holding a blueprint in a construction site.", - "id": 2547 + "image_path": "G:\\images\\combined\\008125630eaf4f05.jpg", + "response": "A street sign that says Clifden Hwy on it.", + "id": 33151 }, { - "image_path": "G:\\images\\combined\\004569_jpg.rf.c908bc1c01cd904d219a6fad01146ef3.jpg", - "response": "A group of men in hard hats stand on a construction site. They are wearing white, beige, and blue hard hats. In the background, there is a yellow and white crane. To the far right, there are two concrete pillars. In the far background, there is a building under construction.", - "id": 2548 + "image_path": "G:\\images\\combined\\00819_jpg.rf.c6d57d2e813850068cfa85682b6dc9b3.jpg", + "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a yellow hard hat on. He is standing on a rocky surface with a pile of dirt and rocks in front of him. There is a truck parked in the background. In the distance, there are several wind turbines on a mountain.", + "id": 33152 }, { - "image_path": "G:\\images\\combined\\004570_jpg.rf.5c40638f1144de27cafcfa4b2f58b165.jpg", - "response": "In the image there are two people wearing neon green jackets and blue hats. They are both looking at a building under construction. The building has red scaffolding around it and a red crane is in the background. The sky is blue with some clouds.", - "id": 2549 + "image_path": "G:\\images\\combined\\00819_jpg.rf.f225722465f3d09c4b0bc919674ba49a.jpg", + "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a beard. He is standing on a brown rocky hillside. In the background, behind the man and to his right, there are several wind turbines on a mountain. The sky is a mix of blue and white clouds. There is a yellow truck parked in the bottom right corner of the image.", + "id": 33153 }, { - "image_path": "G:\\images\\combined\\004571_jpg.rf.ca440fb01d4367f13b1b34321a58932e.jpg", - "response": "A group of people standing around a fire at night.", - "id": 2550 + "image_path": "G:\\images\\combined\\0081a04e410013db.jpg", + "response": "A case of cans of WD-40.", + "id": 33154 }, { - "image_path": "G:\\images\\combined\\004573_jpg.rf.bbbf0717a5cfbd45d0e0e5ae64448bc9.jpg", - "response": "a group of men standing inside a building under construction", - "id": 2551 + "image_path": "G:\\images\\combined\\00826474a7efc217.jpg", + "response": "A black piece of fabric is next to a pair of red and silver sewing shears. There is a small square of red fabric with a black pattern on it, and it is pinned to the black fabric. There are also a few pieces of white thread on the fabric.", + "id": 33155 }, { - "image_path": "G:\\images\\combined\\004574_jpg.rf.babb687dbd0621092fc4762e48d3cc35.jpg", - "response": "The photo shows two men in white shirts and red and white hard hats standing in a large hole in the ground. The walls of the hole are mud and the roof is a tunnel arch. The ground around the hole is filled with mud.", - "id": 2552 + "image_path": "G:\\images\\combined\\00831662d2ba731a.jpg", + "response": "The image shows the rear end of a silver car parked in a parking space. The license plate has the letters \"JIBA\" on it. There is a bicycle visible in the reflection of the car.", + "id": 33156 }, { - "image_path": "G:\\images\\combined\\004575_jpg.rf.6500d68c3ddd4d20dce935ada76d6fc9.jpg", - "response": "The image shows firefighters working to rescue a trapped worker in a construction site in Changsha. The worker is trapped beneath a pile of debris, including wood and metal. The firefighters are using tools to carefully remove the debris and reach the trapped worker.", - "id": 2553 + "image_path": "G:\\images\\combined\\00837e895ee4701f.jpg", + "response": "A blue building with a sign that says Pustaka Mukmin.", + "id": 33157 }, { - "image_path": "G:\\images\\combined\\004576_jpg.rf.09af8e7afc725ed11c7f6f828dc34919.jpg", - "response": "A man in a blue shirt and yellow hat standing in front of a large boat.", - "id": 2554 + "image_path": "G:\\images\\combined\\0083e919337aebb0.jpg", + "response": "A silver car with the license plate 44 41 is parked in a parking lot.", + "id": 33158 }, { - "image_path": "G:\\images\\combined\\004577_jpg.rf.cb0d0ae888afdaffe6c3960528b52489.jpg", - "response": "a group of people standing inside a building under construction", - "id": 2555 + "image_path": "G:\\images\\combined\\00841_jpg.rf.61ecb34c38d0f2406e52bdbe878af808.jpg", + "response": "A couple of men in blue hard hats are working on an electrical tower.", + "id": 33159 }, { - "image_path": "G:\\images\\combined\\004578_jpg.rf.5a1c7cd4f8f4d2de3b45d1ac2ed2fc40.jpg", - "response": " a man(343,202),(742,995) working on a construction site", - "id": 2556 + "image_path": "G:\\images\\combined\\00841_jpg.rf.a07757f20c0863f76a8c30089c34cffd.jpg", + "response": "In the image two workers are repairing an electrical component. They are wearing blue and white hard hats and are kneeling on the ground. The man on the left is using a tool to repair the component.", + "id": 33160 }, { - "image_path": "G:\\images\\combined\\004579_jpg.rf.5c90c7c6b4e0720b12be098f405c1ad9.jpg", - "response": "a man climbing a telephone pole with wires attached to his body", - "id": 2557 + "image_path": "G:\\images\\combined\\0084491e91492c18.jpg", + "response": "A cell phone, a timer, and a meter are laying on a checkered surface.", + "id": 33161 }, { - "image_path": "G:\\images\\combined\\004581_jpg.rf.9e4cf899552f0e3f62a01bc0bb452818.jpg", - "response": "a couple of men wearing orange hard hats", - "id": 2558 + "image_path": "G:\\images\\combined\\00845f16b7c1e9b1.jpg", + "response": "The image is of a salsa music album cover for Dura Salsa Vol. 2. The cover features a woman with blonde hair and a full red lip. The woman has a number 133 written on her cheek. The album cover is in black and white.", + "id": 33162 }, { - "image_path": "G:\\images\\combined\\004582_jpg.rf.6f899bd07c0173d9146e66349e1405f3.jpg", - "response": "A man in a hard hat and blue coveralls is using a device to inspect a large metal cylinder. The cylinder is located on a rooftop and is made of metal. The man is standing next to the cylinder and is holding a device in his hand. The device appears to be a meter or a gauge of some sort. The man is wearing a white hard hat and appears to be focused on his work.", - "id": 2559 + "image_path": "G:\\images\\combined\\00846_jpg.rf.16020e863b28c18f7a5e177befc13003.jpg", + "response": "Three men in blue work shirts and blue helmets are standing in a field.", + "id": 33163 }, { - "image_path": "G:\\images\\combined\\00458395ec2ae964.jpg", - "response": "A person walking a bike down a sidewalk next to a building.", - "id": 2560 + "image_path": "G:\\images\\combined\\00846_jpg.rf.f0a4f74937eda504f5b7e9f9d13e6341.jpg", + "response": "Three men in blue jeans and hard hats are standing in a field.", + "id": 33164 }, { - "image_path": "G:\\images\\combined\\004584_jpg.rf.6bfa428542b8e3850cc7065ecf55d37c.jpg", - "response": "A group of men wearing hard hats stand around a control box.", - "id": 2561 + "image_path": "G:\\images\\combined\\0085245e85b9815d.jpg", + "response": "A wall made of many different cell phones.", + "id": 33165 }, { - "image_path": "G:\\images\\combined\\004585_jpg.rf.c8771aba5f2cc5677a1d3c5bc3735ec8.jpg", - "response": "In the image, a factory worker is directing a crane operator to move a large piece of metal. The worker is wearing a red hard hat and blue coveralls and is standing on the factory floor. The factory is filled with metal beams, steel pipes, and other metal parts. There are several other people in the factory, some of them are standing, and some are operating machinery. The factory is well lit with bright lights hanging from the ceiling.", - "id": 2562 + "image_path": "G:\\images\\combined\\00853aa7e26dc77f.jpg", + "response": "In the image a person is holding an iPhone which is displaying a German website for an online shop. The website is for a company called \"Produkt- Vergleich\" and is showing a comparison of different deodorants. The person is comparing the Bebe Young Care deodorant spray with the Dry deodorant by Rexona. The iPhone is in front of a blurred out shelf with various deodorants and other beauty products.", + "id": 33166 }, { - "image_path": "G:\\images\\combined\\004587_jpg.rf.c4d6fd4b4c5d6326fc89935d72fac849.jpg", - "response": "A group of three people in a factory setting. Two of the people are wearing yellow safety jackets and hard hats, while the third person is wearing a green safety vest and a red hard hat. The person in the green vest is holding a laptop.", - "id": 2563 + "image_path": "G:\\images\\combined\\00854_jpg.rf.505165734a624453b9ab5c798c5cb221.jpg", + "response": "Three men in front of a building.", + "id": 33167 }, { - "image_path": "G:\\images\\combined\\004588_jpg.rf.cf7a994d7dadda2548675d9921edc9fb.jpg", - "response": "In the image there are two workers wearing orange helmets. They are working on a construction site that has not yet been built upon. The site is filled with wooden scaffolding and rebar. In the background there are houses with red roofs.", - "id": 2564 + "image_path": "G:\\images\\combined\\00860d45e849ec0c.jpg", + "response": "a black and white photo of a city street with tall buildings", + "id": 33168 }, { - "image_path": "G:\\images\\combined\\004589_jpg.rf.86f0d0de99c4f415921c2c81e4efe3dd.jpg", - "response": "A worker installs glass railings on the balconies of a new apartment building in Hubei's provincial capital, Wuhan, on May 20, 2013. The building, with 1,048 apartments, is expected to be completed by the end of this year. (Photo/China News Service)", - "id": 2565 + "image_path": "G:\\images\\combined\\00868a00547307b0.jpg", + "response": "a group of people walking on a busy street", + "id": 33169 }, { - "image_path": "G:\\images\\combined\\004590_jpg.rf.340ebefb5914aed1e9ce0610e9b956f0.jpg", - "response": "The image shows two workers repairing the roof of a wooden building. The building has a curved roof made of wooden beams, and the workers are working on the right side of the roof. One worker is standing on the roof and is holding a hammer, while the other worker is below him, kneeling on the ground. They are both wearing yellow helmets to ensure their safety.", - "id": 2566 + "image_path": "G:\\images\\combined\\00869f0facebd0eb.jpg", + "response": "The image shows three different views of an iPod Nano. The middle view is a side view of the iPod Nano, which is a rectangular shape with a flat front and back. The front of the iPod has a screen with four icons at the bottom, and the back of the iPod has the Apple logo. The left and right views are top and bottom views of the iPod Nano, respectively. The left view shows the top of the iPod Nano, which has a small speaker grill and a power button. The right view shows the bottom of the iPod Nano, which has a dock connector.", + "id": 33170 }, { - "image_path": "G:\\images\\combined\\004591_jpg.rf.c04389026636d67adcd55b0fdf61ba62.jpg", - "response": "The man is standing in front of a screen.", - "id": 2567 + "image_path": "G:\\images\\combined\\0086c62d24fc6827.jpg", + "response": "A book display of several books including one by William Morris.", + "id": 33171 }, { - "image_path": "G:\\images\\combined\\004592_jpg.rf.fed13e0d35fb72619bd4aec201d0636f.jpg", - "response": "An electrician wearing a blue hard hat is sitting on a ladder in a residential street. He is holding a digital multimeter and appears to be measuring something. There is a red and black wire in front of him and he is adjusting a dial on the multimeter. The background shows a residential street with buildings on both sides. There is a traffic light in the distance and a car parked further back.", - "id": 2568 + "image_path": "G:\\images\\combined\\00875c7f30a72189.jpg", + "response": "A red can of S-Tack insulation adhesive with a white label on it.", + "id": 33172 }, { - "image_path": "G:\\images\\combined\\004593_jpg.rf.560e58708a33328601f66fb668f834f0.jpg", - "response": "The image shows a man and a woman standing side by side, both dressed in work clothes and wearing hard hats. The woman is taller and has her hair in a bun. They are both looking straight ahead. In the background, there is a building with a tower in the distance.", - "id": 2569 + "image_path": "G:\\images\\combined\\008780d91774e5f1.jpg", + "response": "An iPhone 6 Plus sitting on a wooden table.", + "id": 33173 }, { - "image_path": "G:\\images\\combined\\004594_jpg.rf.c40544565ee7d6367524f33b2c6da06d.jpg", - "response": " Two workers(624,523),(734,830)(80,534),(198,907) in orange snowsuits stand in a snowy field.", - "id": 2570 + "image_path": "G:\\images\\combined\\00878e1cb55d4c2f.jpg", + "response": "A red and white can of Cocos brand light meat tuna.", + "id": 33174 }, { - "image_path": "G:\\images\\combined\\004595_jpg.rf.7615fca2dfd49a9145d78435fe85f6d1.jpg", - "response": "An electrician is working on telephone wires. He is wearing a blue shirt and grey pants. He has a tool belt around his waist. He is repairing a damaged insulator on a telephone pole. There is a Chinese flag on the left side of the pole.", - "id": 2571 + "image_path": "G:\\images\\combined\\00886_jpg.rf.23291cedaab04e839c1441600d8a7f09.jpg", + "response": "A group of three men in white and blue uniforms and white helmets are walking across a parking lot carrying a couple of fire extinguishers.", + "id": 33175 }, { - "image_path": "G:\\images\\combined\\004596_jpg.rf.84d2ed1ae5560eab55e5cf4748e0856c.jpg", - "response": "A group of people standing in a muddy field.", - "id": 2572 + "image_path": "G:\\images\\combined\\00886_jpg.rf.b63983b05d62136725d909da1996eb59.jpg", + "response": "A group of three men in white and blue uniforms carrying a total of three fire extinguishers.", + "id": 33176 }, { - "image_path": "G:\\images\\combined\\004598_jpg.rf.18af182ebc46217bb16d91a835a63079.jpg", - "response": "The image shows four construction workers in hard hats working on a construction site. They are all holding tools and working on a foundation.", - "id": 2573 + "image_path": "G:\\images\\combined\\0088be963439e57d.jpg", + "response": "A car parked on the side of a street.", + "id": 33177 }, { - "image_path": "G:\\images\\combined\\00459f3bf70283d3.jpg", - "response": "A large knife with a black handle and a sheath and a smaller knife with a tan handle and a sheath.", - "id": 2574 + "image_path": "G:\\images\\combined\\00890186fcebe7c7.jpg", + "response": "A man and a boy pose for a picture in a boxing gym. The boy has a red and black jacket on and the man has a grey North Dumfries Boxing Club sweatshirt on. They are both standing in front of a boxing ring.", + "id": 33178 }, { - "image_path": "G:\\images\\combined\\0045f0e526dcf63b.jpg", - "response": "A man standing in front of a large screen giving a presentation.", - "id": 2575 + "image_path": "G:\\images\\combined\\00895_jpg.rf.235e2cab1906d6ad1d47ad28fcf953d5.jpg", + "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of green bushes. In the background, there are four high-rise buildings. The sky is blue with clouds.", + "id": 33179 }, { - "image_path": "G:\\images\\combined\\004600_jpg.rf.800171cc67af8d2e05ed6a407d3c738d.jpg", - "response": "A worker is repairing a power line in the snow. He is wearing a blue jacket, a yellow hard hat, and white gloves. There are several wires coming out of the top of a power pole and the worker is reaching up to one of them with his tool. The ground is covered in a light snow.", - "id": 2576 + "image_path": "G:\\images\\combined\\00895_jpg.rf.9cd21060fe93956fd115515fb577cd21.jpg", + "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of hedges. In the background, there are four high-rise buildings. The sky is blue with some clouds.", + "id": 33180 }, { - "image_path": "G:\\images\\combined\\004601_jpg.rf.0f68dbf272ebf6cd75bfa7bc2137e34a.jpg", - "response": "In the image two workers are seen wearing blue and yellow color jacket and yellow color helmet. They are seen standing on the snow. They are wearing harness and one of them is holding a tool in his right hand. The tool is white in color with red and white color wire at the end. The workers are seen wearing white color shoe. The background is of snow and sky.", - "id": 2577 + "image_path": "G:\\images\\combined\\008969c238c6917e.jpg", + "response": "A box with a green ribbon and a bow on it.", + "id": 33181 }, { - "image_path": "G:\\images\\combined\\004602_jpg.rf.06ce827d061d1ab141949a7baa6fe736.jpg", - "response": "The image shows a group of people standing on a wall, holding bamboo poles and wearing red jackets with yellow helmets. The wall is made of grey bricks and the scene looks like a historical one, with a red Chinese flag placed on the wall. The people are engaged in some kind of activity, possibly cleaning the moat. The water in the moat is dirty and muddy, and there are some debris floating in it. The sky is overcast and it seems to be an overcast day.", - "id": 2578 + "image_path": "G:\\images\\combined\\0089a3be4691c3eb.jpg", + "response": "A man in a blue racing suit stands next to a woman in a black leather jacket. Both are standing in front of a white wall.", + "id": 33182 }, { - "image_path": "G:\\images\\combined\\004603_jpg.rf.c697874b825f1aa9e511248108bd1bfa.jpg", - "response": "A group of five men posing for a picture.", - "id": 2579 + "image_path": "G:\\images\\combined\\0089b0863da21af6.jpg", + "response": "A bookshelf filled with books and binders.", + "id": 33183 }, { - "image_path": "G:\\images\\combined\\004604_jpg.rf.2cc236987fc6de5e2e74eb2911bcc23a.jpg", - "response": "A group of people stand under a few umbrellas as they look at a few pictures on an easel.", - "id": 2580 + "image_path": "G:\\images\\combined\\008a0794559548ee.jpg", + "response": "The image shows a baseball field with a group of men standing on it. There are several people present, some of whom are holding baseball gloves, and others are holding a hose. The men are hosing down the field, and the hose can be seen stretching across the scene. The image also shows a large banner in the background, advertising a business called Soft Signs.", + "id": 33184 }, { - "image_path": "G:\\images\\combined\\004605_jpg.rf.e3edd4ecdba15276bb95e0acae8386a2.jpg", - "response": "A group of men in hard hats and work clothes are standing in a room. They are standing around a large metal door that is open. They are all wearing gloves and some have blue hard hats.", - "id": 2581 + "image_path": "G:\\images\\combined\\008a63bd711aab86.jpg", + "response": "A large video game display in a store filled with many different video games.", + "id": 33185 }, { - "image_path": "G:\\images\\combined\\004606_jpg.rf.7b2a325772b43bcde60efd571990eff4.jpg", - "response": "A worker is seen working on a power transformer in this undated photo. A new power plant(4,6),(995,993) in the Xinjiang region is expected to start operating soon.", - "id": 2582 + "image_path": "G:\\images\\combined\\008a7856b1861aaf.jpg", + "response": "The runner is running to the first base.", + "id": 33186 }, { - "image_path": "G:\\images\\combined\\004607_jpg.rf.26729b9c80062b7b1dbdaa415f6f2bd2.jpg", - "response": "A man wearing a blue hard hat and a grey jacket is repairing a machine. He is holding a screwdriver and has a blue glove on his left hand. There are many wires connected to the machine and some are disconnected. The wires are purple, yellow, blue, red, and green. The screwdriver is grey and has a yellow handle.", - "id": 2583 + "image_path": "G:\\images\\combined\\008aabb43f244552.jpg", + "response": "A blue car parked in a driveway next to a pile of sandbags.", + "id": 33187 }, { - "image_path": "G:\\images\\combined\\004608_jpg.rf.23a526f1dae5091f36c55916bd5e5ff8.jpg", - "response": "A group of people standing in front of a building that is under construction. The building has scaffolding around it and there is debris on the ground.", - "id": 2584 + "image_path": "G:\\images\\combined\\008b8556a73601ae.jpg", + "response": "A black and white cat is sitting on a wooden table. The cat has yellow eyes and is looking at the camera. It is sitting on top of a magazine, which is titled \"Politics\". There is another magazine under the first one, and a book is visible in the background.", + "id": 33188 }, { - "image_path": "G:\\images\\combined\\004609_jpg.rf.207ebccfc8dc85ad32bd8de14dce1643.jpg", - "response": "A man in a blue jumpsuit and yellow helmet is on a power pole, working on wires.", - "id": 2585 + "image_path": "G:\\images\\combined\\008bc1ff39714379.jpg", + "response": "The image features a basketball game in progress with two teams playing against each other. One player from the team in white is holding the basketball and appears to be about to shoot it. Another player from the same team is guarding the player with the ball. There are several other players on the court, some holding basketballs and others in various positions. The court has a wood grain design and the game is being played in front of an audience.", + "id": 33189 }, { - "image_path": "G:\\images\\combined\\004610_jpg.rf.8c943fe4e3983651ef3ab652e3a8c5e3.jpg", - "response": "In the image two workers are standing in a factory. They are both wearing blue shirts, grey pants, and red helmets. The worker on the left is holding a long tool and the worker on the right is holding a walkie talkie. In front of them is a large metal door with a square hole in the middle. Through the hole you can see a bright orange flame. To the left of the workers is a large metal cylinder and to the right is a larger grey cylinder.", - "id": 2586 + "image_path": "G:\\images\\combined\\008c34315d9775ee.jpg", + "response": "A street view of a city with many cars parked on the side of the road. There are also many buildings lining the street.", + "id": 33190 }, { - "image_path": "G:\\images\\combined\\004611_jpg.rf.299f8f7f5fef6ebc3f90ae67b8ee5950.jpg", - "response": "In the image, there are two workers wearing brown and orange hardhats. They are working together to operate a piece of machinery. The sky is blue and cloudless in the background. One of the workers is grabbing a large pipe with two hands while the other worker is holding a control panel. There is water splashing out of the pipe and flying in all directions.", - "id": 2587 + "image_path": "G:\\images\\combined\\008cfef3402609bf.jpg", + "response": "A flat screen television displays the BBC iPlayer on its screen.", + "id": 33191 }, { - "image_path": "G:\\images\\combined\\004612_jpg.rf.22304be3ea5f45f8fac4823ec7e545ee.jpg", - "response": "A man in a yellow uniform and white gloves is sitting on a metal bar, working on a power line. He is wearing safety gear, including a helmet and safety shoes. The man appears to be focused on his work, which involves connecting wires to the power line.", - "id": 2588 + "image_path": "G:\\images\\combined\\008d0681123bcdf1.jpg", + "response": "A white van with a crane on top is driving down a busy street.", + "id": 33192 }, { - "image_path": "G:\\images\\combined\\004613_jpg.rf.cb2d706eecf0c207114656f944cfaae2.jpg", - "response": "The photo shows two workers at a construction site. They are wearing yellow hard hats and camouflage uniforms. They are working on a large metal structure that will likely become a support for a building. The sky is blue and cloudless. In the background, there are two large orange gantries. To the left of the workers, there is a large pile of wooden planks.", - "id": 2589 + "image_path": "G:\\images\\combined\\008d100b4f31c031.jpg", + "response": "A polo shirt in sky blue color with the brand name Victorinox on the left side of the chest.", + "id": 33193 }, { - "image_path": "G:\\images\\combined\\004614_jpg.rf.70a2001ac3e9014253f15830b75428cc.jpg", - "response": "A group of three men dressed in blue and yellow work clothes with helmets on their heads. They are standing in a field with a body of water behind them.", - "id": 2590 + "image_path": "G:\\images\\combined\\008e36a5a0623445.jpg", + "response": "A red double decker bus is driving down the street.", + "id": 33194 }, { - "image_path": "G:\\images\\combined\\004615_jpg.rf.fdbd41ac2296987161436318d094cba4.jpg", - "response": "A group of men working on a construction site.", - "id": 2591 + "image_path": "G:\\images\\combined\\008e55e8866c3a92.jpg", + "response": "A translucent OpenUP trophy for OpenUP winners of 2011.", + "id": 33195 }, { - "image_path": "G:\\images\\combined\\004616_jpg.rf.4ef5e3460aea720a11e60cb55c115c5c.jpg", - "response": "The image shows a group of men wearing hard hats and work clothes, with some of them holding tools. They are standing in a construction site, which appears to be a forest. There are several people in the picture, with some of them holding ropes and others holding tools like axes and drills. The men are all focused on their work, which appears to be clearing vegetation and preparing the site for construction.", - "id": 2592 + "image_path": "G:\\images\\combined\\008e92ff98f6f209.jpg", + "response": "A blue and yellow double decker bus is parked on the street.", + "id": 33196 }, { - "image_path": "G:\\images\\combined\\004617_jpg.rf.736f143fd995cc9026292e2ca4cfe509.jpg", - "response": "The image shows two workers inside a large tunnel. They are both wearing yellow hard hats and appear to be working on a drainage system. One worker is on the left side of the image and is holding a long tool with a wooden handle. The other worker is on the right side of the image and is crouching down to work on the drainage system. There is a large pipe running along the left wall of the tunnel. In front of the workers is a large puddle of water and a scoop. To the right of the workers is a bag of white sand. The background of the image is a concrete wall of the tunnel.", - "id": 2593 + "image_path": "G:\\images\\combined\\008e95a340972b70.jpg", + "response": "A man in a suit and hat standing in front of a bus.", + "id": 33197 }, { - "image_path": "G:\\images\\combined\\004618_jpg.rf.b44e963387f5a69c04d738e56dfbd6d8.jpg", - "response": "A group of men in black suits and purple hats stand in a line in a dirt field.", - "id": 2594 + "image_path": "G:\\images\\combined\\008eb1db3d98439e.jpg", + "response": "A gold watch with a white face and brown leather strap.", + "id": 33198 }, { - "image_path": "G:\\images\\combined\\004619_jpg.rf.8e7c4de32ca376833cdf8ea1abc569ca.jpg", - "response": "A group of people sitting around a table.", - "id": 2595 + "image_path": "G:\\images\\combined\\008eb91158d943f8.jpg", + "response": "Two bottles of Franciacorta wine, one of which is a bottle of Ros\u00e9.", + "id": 33199 }, { - "image_path": "G:\\images\\combined\\004621_jpg.rf.e35687735cd2f0c6d07e8a01468ef17f.jpg", - "response": "A group of four people standing in a warehouse.", - "id": 2596 + "image_path": "G:\\images\\combined\\008ed85b989a36ec.jpg", + "response": "A yellow Chevrolet school bus is driving down the street.", + "id": 33200 }, { - "image_path": "G:\\images\\combined\\004623_jpg.rf.3b4a4c32bed914c30af2e7e7146edf3d.jpg", - "response": "A group of people working on a construction site.", - "id": 2597 + "image_path": "G:\\images\\combined\\008f94a81fa356cf.jpg", + "response": "A shelf with a variety of soda and energy drinks.", + "id": 33201 }, { - "image_path": "G:\\images\\combined\\004626_jpg.rf.ccf162284da66c34db7810e6e5976e72.jpg", - "response": "A man wearing a red hard hat stands on a sidewalk. He is holding a device on a tripod. He is standing in front of a pile of dirt and a construction site.", - "id": 2598 + "image_path": "G:\\images\\combined\\008fc0a1f69b52fb.jpg", + "response": "A man in a uniform standing at a podium.", + "id": 33202 }, { - "image_path": "G:\\images\\combined\\004627_jpg.rf.e789d9880fc03bc12ed536f00722f05f.jpg", - "response": "A group of workers are working on power lines.", - "id": 2599 + "image_path": "G:\\images\\combined\\00900_jpg.rf.27ae9b4bee9a2213e3dc17d9deaef3e8.jpg", + "response": "A group of three men standing next to each other.", + "id": 33203 }, { - "image_path": "G:\\images\\combined\\004628_jpg.rf.fb6ceb71e9b753b3b02463c6244acd33.jpg", - "response": "A woman in tight jeans is handing a card to a man in a white shirt.", - "id": 2600 + "image_path": "G:\\images\\combined\\00900_jpg.rf.cbac4160d201dd464e1ebe7ceb286ea0.jpg", + "response": "A group of three men standing next to each other drinking from small bowls.", + "id": 33204 }, { - "image_path": "G:\\images\\combined\\004629d0dcad55df.jpg", - "response": "A coffee machine with a large window and the word \"coex\" on it.", - "id": 2601 + "image_path": "G:\\images\\combined\\00901a3bf99aecb6.jpg", + "response": "A superman toy in the shape of a plane.", + "id": 33205 }, { - "image_path": "G:\\images\\combined\\004629_jpg.rf.26a42d7ee24312e084df079a1bc825d6.jpg", - "response": "An electrician repairs a power box while standing on a ladder.", - "id": 2602 + "image_path": "G:\\images\\combined\\00907da87b13210f.jpg", + "response": "A baseball player wearing a white uniform with red lettering is running on the field.", + "id": 33206 }, { - "image_path": "G:\\images\\combined\\00462a09546c3df2.jpg", - "response": "In the image, a man wearing glasses and a red shirt is running on a track. The man is wearing a red shirt with a yellow M on it. He is running on a red track with white stripes. There are other people in the background, but they are not the main focus of the image.", - "id": 2603 + "image_path": "G:\\images\\combined\\00915dbaa395904c.jpg", + "response": "A room with a blue ball in the corner and a window letting in sunlight. There is a bookshelf with many books on it and a desk with papers on it.", + "id": 33207 }, { - "image_path": "G:\\images\\combined\\004630_jpg.rf.d096a68a4af45d450d59e948ea0db312.jpg", - "response": "A group of men in business attire standing in front of a brick building.", - "id": 2604 + "image_path": "G:\\images\\combined\\00918f59a42f88f5.jpg", + "response": "The image shows a basketball game in progress with players from two opposing teams on the court. The players are spread out across the court, with some near the sides and others closer to the center. There is a large crowd of people in the stands, watching the game. The score is displayed at the top left of the image, indicating that the game is in the final seconds.", + "id": 33208 }, { - "image_path": "G:\\images\\combined\\004631_jpg.rf.fb1299385529e553cfa1173066de9be5.jpg", - "response": "A man in a yellow hard hat and camouflage jacket is on a construction site, climbing a ladder. He is smiling at the camera.", - "id": 2605 + "image_path": "G:\\images\\combined\\00919b81c44a6146.jpg", + "response": "A man is holding a book with a woman on the cover.", + "id": 33209 }, { - "image_path": "G:\\images\\combined\\004632_jpg.rf.f0bfaee1058ecc3604cc0a52609f7649.jpg", - "response": "A worker in a blue shirt and blue hard hat is working on a large yellow piece of equipment. The worker is standing in front of the equipment and is focused on what he is doing. There are two wires behind the worker and a yellow pipe to the right of the worker. The background is a yellow wall and a gray wall behind the worker.", - "id": 2606 + "image_path": "G:\\images\\combined\\00922ab06cc71238.jpg", + "response": "A black and white photo of an engine block with the word Invader on it.", + "id": 33210 }, { - "image_path": "G:\\images\\combined\\004633_jpg.rf.9c35e46f52593718fd1891d490f9ffc4.jpg", - "response": "The image shows three workers in a mountainous region pulling a wire along a path. The workers are all wearing yellow hard hats and grey jumpers. One worker is on the left, another is in the middle and the third is on the right. There are two coiled wires on the ground in the foreground. The background shows a hilly landscape with trees and bushes. The sky is white.", - "id": 2607 + "image_path": "G:\\images\\combined\\00927c18ac896fc1.jpg", + "response": "A white t-shirt is displayed on the left and right side of the image. The t-shirt on the left has a pocket on the left side and the text \"indie bands with a mission dazzle\" printed on the front. The t-shirt on the right has a pocket on the left side and the text \"If you can't dazzle them with your BRILLIANCE, baffle them with your B.S.\" printed on the front.", + "id": 33211 }, { - "image_path": "G:\\images\\combined\\004634_jpg.rf.d482e601e2bfe1047634044966664d98.jpg", - "response": "A man in a red hat is kneeling on a mat in front of a group of workers.", - "id": 2608 + "image_path": "G:\\images\\combined\\00927_jpg.rf.f6870cf949efaff7ed98871269448667.jpg", + "response": "A group of five men in yellow vests and hard hats are standing in a room. The men are looking at a man who is pointing to a wall of grey electrical panels.", + "id": 33212 }, { - "image_path": "G:\\images\\combined\\004635_jpg.rf.8839b8f75937cf0cd69a05eb8aca98ba.jpg", - "response": "A group of construction workers wearing orange vests are working on a large tree branch that has fallen on a street. The workers are standing around the tree branch and appear to be cutting it up with large tools. There are also a few cars and motorcycles parked on the street.", - "id": 2609 + "image_path": "G:\\images\\combined\\0092a20b63799744.jpg", + "response": "A black car with a smashed front is parked on the street.", + "id": 33213 }, { - "image_path": "G:\\images\\combined\\004636433aa3ef48.jpg", - "response": "A variety of beer bottles and a can of beer are lined up on a carpet.", - "id": 2610 + "image_path": "G:\\images\\combined\\00932_jpg.rf.28cc0633a3aabab008e59f9852d190c2.jpg", + "response": "A man in a blue hard hat and coveralls is standing on a metal structure. He is holding a red and white beverage bottle and drinking from it. He is also wearing a white glove on his left hand. The man is on top of a metal structure and appears to be at a great height.", + "id": 33214 }, { - "image_path": "G:\\images\\combined\\004637_jpg.rf.76866918aabf6e9e18e645491f9a8a1c.jpg", - "response": "A man in a hard hat is standing in front of a large container ship. He is talking on a cell phone. In the background there are large cranes and many containers stacked on the dock.", - "id": 2611 + "image_path": "G:\\images\\combined\\0093ebae4fb8b5cf.jpg", + "response": "A book with the title \"Erich Maria Remarque im Westen nichts Neues\" written on the cover.", + "id": 33215 }, { - "image_path": "G:\\images\\combined\\004638_jpg.rf.aceeed73d64484d11e8dd3a6f90d2842.jpg", - "response": "a group of men standing under umbrellas", - "id": 2612 + "image_path": "G:\\images\\combined\\0095c71d8fbe4462.jpg", + "response": "a basketball player holding a ball on a court", + "id": 33216 }, { - "image_path": "G:\\images\\combined\\004639_jpg.rf.17f20467bfa566839c1c7813ef8602c7.jpg", - "response": "A group of men working on an oil well.", - "id": 2613 + "image_path": "G:\\images\\combined\\00963eaad91c7da8.jpg", + "response": "A group of people standing behind a wall holding flags and banners.", + "id": 33217 }, { - "image_path": "G:\\images\\combined\\004640_jpg.rf.5b6fa4b05f61b953c61581b046e1d784.jpg", - "response": "An electrician in blue overalls and a blue hat is sitting on a brown electrical tower. They are working on the tower, which has many wires and components.", - "id": 2614 + "image_path": "G:\\images\\combined\\00968589ac02a00b.jpg", + "response": "The image shows the exterior of a Lush store. The storefront has a large window display with a variety of products. There are several people walking in and out of the store. One person is carrying a handbag and a backpack. There is a poster on the wall with the words \"They do exist.\" written on it. The store is located in a mall.", + "id": 33218 }, { - "image_path": "G:\\images\\combined\\004641_jpg.rf.3b0d99acd0ba4ef3238a8fd60b741d87.jpg", - "response": "A group of men in hard hats are lifting a white pole.", - "id": 2615 + "image_path": "G:\\images\\combined\\0096b618e500e24b.jpg", + "response": "A baseball player is running on a field.", + "id": 33219 }, { - "image_path": "G:\\images\\combined\\004642_jpg.rf.eb851247cedc50ef2479b699538a014a.jpg", - "response": "Men in hard hats and overalls work on a large tower.", - "id": 2616 + "image_path": "G:\\images\\combined\\00971_jpg.rf.3bd478ce8795b809f122987fc8dfb835.jpg", + "response": "A group of men working on a road.", + "id": 33220 }, { - "image_path": "G:\\images\\combined\\004643_jpg.rf.f0c9827a8ef1b6185955fae490d58a78.jpg", - "response": "A construction site with a pile of rubble and a building under construction. A group of men are standing around, wearing hard hats and looking off to the side. One of the men is wearing a blue shirt and holding a water bottle. Another man is wearing a black shirt and glasses. A third man is wearing a brown shirt and has a pen in his pocket. A fourth man is wearing a pink shirt and a blue hat.", - "id": 2617 + "image_path": "G:\\images\\combined\\00971_jpg.rf.6c155d526f9f58bf3b9902cdaeef9f96.jpg", + "response": "The image shows three men wearing red hard hats and work clothes, pulling a large black pipe along a road. The men are in the process of rolling the pipe, which is covered in dirt. They are all wearing red hard hats and one of the men is also wearing a white t-shirt. The men are in the process of rolling the pipe and it appears to be quite heavy.", + "id": 33221 }, { - "image_path": "G:\\images\\combined\\004646_jpg.rf.896edd6c196e52dbe7d396420753afe2.jpg", - "response": "The picture shows a middle-aged man with black hair and a beard, wearing a black and grey coat with a fur collar. He is holding a microphone and appears to be speaking. To the left of the man, there is a man wearing a black coat with a white collar. Behind the man with the microphone, there is a bus. To the right of the man, there is a group of motorbike riders. In the background, there are some buildings under construction.", - "id": 2618 + "image_path": "G:\\images\\combined\\00974_jpg.rf.42a863ab64e32af2e660cd84fd31a91a.jpg", + "response": "a group of men standing in front of a building", + "id": 33222 }, { - "image_path": "G:\\images\\combined\\004647_jpg.rf.22025cfbb862621086238b08ee715985.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is looking up while holding onto a rope. He is wearing a white headband and has a white bumper sticker on his helmet. He is also wearing a yellow shirt and a pair of grey pants.", - "id": 2619 + "image_path": "G:\\images\\combined\\00974_jpg.rf.c1f66e944881a1e7e6f85c5a6c222e15.jpg", + "response": "A group of three men standing in front of a building.", + "id": 33223 }, { - "image_path": "G:\\images\\combined\\004648_jpg.rf.7fa2fc5813643b1dc259a2e7b6cfd6c2.jpg", - "response": "a man(423,142),(778,986) in a red shirt.", - "id": 2620 + "image_path": "G:\\images\\combined\\0097683580838f04.jpg", + "response": "A white semi truck with a lion sticker on the front.", + "id": 33224 }, { - "image_path": "G:\\images\\combined\\004650_jpg.rf.ed40cd1a602e0d98422f9719d23b34c9.jpg", - "response": "Two workers are pouring concrete on the construction site.", - "id": 2621 + "image_path": "G:\\images\\combined\\00977_jpg.rf.1f8db8f5c8fba619cc39589e339848d1.jpg", + "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", + "id": 33225 }, { - "image_path": "G:\\images\\combined\\004651_jpg.rf.bf004f91db3df89e5f7c8906a604c59c.jpg", - "response": "The image shows a group of three men working at a factory. They are standing around a large piece of equipment that looks like a metal forge or perhaps a steam engine. Two of the men are wearing hard hats and one is wearing a red shirt. They are all standing quite close to the machine, which is spewing out large amounts of heat.", - "id": 2622 + "image_path": "G:\\images\\combined\\00977_jpg.rf.9189470d6ac4ebdfb4c28cce2e624860.jpg", + "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", + "id": 33226 }, { - "image_path": "G:\\images\\combined\\004652_jpg.rf.6185a65c010c912d7e39aec90596c889.jpg", - "response": "A group of men standing on top of a rock filled hillside.", - "id": 2623 + "image_path": "G:\\images\\combined\\0097b316726906d7.jpg", + "response": "A bottle of champagne sits on a wooden floor. The bottle is green and has a red, white and green ribbon tied around it. The ribbon is tied in a bow. The bottle is closed. The floor is made of wood and has a brown color. There is a chair next to the bottle.", + "id": 33227 }, { - "image_path": "G:\\images\\combined\\004653_jpg.rf.c32216d52141a66e82ae26227bdc2704.jpg", - "response": "A woman wearing a blue jacket and a yellow hard hat is working in a factory. She is holding a claw hammer and is working on a piece of metal.", - "id": 2624 + "image_path": "G:\\images\\combined\\009816444496f09c.jpg", + "response": "A bottle of Hoegaarden beer sitting on a table.", + "id": 33228 }, { - "image_path": "G:\\images\\combined\\004654_jpg.rf.25d8bcfe746b2ef6c8e38469edc07d37.jpg", - "response": "A group of men working on a construction site with piles of dirt and gravel in the background. They are wearing hard hats and some are wearing backpacks.", - "id": 2625 + "image_path": "G:\\images\\combined\\009817f6e8bcd068.jpg", + "response": "The image features a vintage yellow car parked on the side of the road. The car has a chrome bumper and silver hubcaps. There is a man visible in the driver's side window. The car is positioned in front of a building and a grassy area is visible in the background.", + "id": 33229 }, { - "image_path": "G:\\images\\combined\\004656_jpg.rf.a836b72d1ae6698111919f7273d69f85.jpg", - "response": "A group of people working in a scrap metal yard.", - "id": 2626 + "image_path": "G:\\images\\combined\\0098344405a26bde.jpg", + "response": "Two women are standing in a kitchen. One of them is wearing a white apron. One of them is holding a cell phone. On the table in front of them are various food items and utensils.", + "id": 33230 }, { - "image_path": "G:\\images\\combined\\004657_jpg.rf.d104baec0f809bc71f3bc656adde7883.jpg", - "response": "A construction worker digging a hole in the ground.", - "id": 2627 + "image_path": "G:\\images\\combined\\009847496908a1ad.jpg", + "response": "A basketball player in a blue uniform dribbles the ball while another player in a white uniform looks on.", + "id": 33231 }, { - "image_path": "G:\\images\\combined\\004659_jpg.rf.ef5f8d1440b8578d684e1b178e48ab86.jpg", - "response": "The image shows two workers in black uniforms and yellow helmets who are repairing a power pole. They are on a wooden platform that is attached to the pole. The sky is overcast.", - "id": 2628 + "image_path": "G:\\images\\combined\\00988_jpg.rf.0f9a11b6dbbc85b719898c763d5ed6fe.jpg", + "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", + "id": 33232 }, { - "image_path": "G:\\images\\combined\\004661_jpg.rf.42123b3178c55c29c43aa2c9a6764680.jpg", - "response": "In the image two men are wearing blue shirts and red overalls. They are both wearing blue helmets and are looking at an electrical panel. The electrical panel is made of metal and is brown in color. There are many wires coming out of it.", - "id": 2629 + "image_path": "G:\\images\\combined\\00988_jpg.rf.c3379c2b6ad5781f99ecb8666c124c39.jpg", + "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", + "id": 33233 }, { - "image_path": "G:\\images\\combined\\004662_jpg.rf.4245066b1f42020111ae7a98816eff15.jpg", - "response": "A couple of men in business suits and safety vests looking at a stack of red shipping containers.", - "id": 2630 + "image_path": "G:\\images\\combined\\00990_jpg.rf.26276f360ac1d29428c4ed242c33ce5f.jpg", + "response": "An elderly woman is standing next to a refrigerator.", + "id": 33234 }, { - "image_path": "G:\\images\\combined\\004663_jpg.rf.10759fe3499a486c05ff1ff3a5529df0.jpg", - "response": "A group of men standing in front of a pile of bricks and debris.", - "id": 2631 + "image_path": "G:\\images\\combined\\00993_jpg.rf.d1774f6773b79f07cefb863dc00555cf.jpg", + "response": "In the image there are three men standing next to each other all in blue hats. One man is on the left, he is wearing a grey shirt and a grey and blue cap. The man in the middle is wearing a black shirt and a light blue hat. The man on the right is wearing a brown shirt and a green and blue hat. They all have blue and grey hats.", + "id": 33235 }, { - "image_path": "G:\\images\\combined\\004664_jpg.rf.85b9a79390e40f9b4097c5bc2ac63e25.jpg", - "response": "An electrician working on power lines in the pouring rain.", - "id": 2632 + "image_path": "G:\\images\\combined\\00993_jpg.rf.d808a636700f1e7647386c2cc76f5e22.jpg", + "response": "A construction site with three men in hard hats standing next to a sign that says, \\\"\u4e0b\u6709\u7535\u7f06,\u4e25\u7981\u5f00\u6316\\\".", + "id": 33236 }, { - "image_path": "G:\\images\\combined\\004665_jpg.rf.5187747dde38cb247e3c7dcfb45cc2da.jpg", - "response": "In the image two people are sitting on a red beam. They are wearing uniforms. The person on the left is wearing green and has a hat. The person on the right is wearing red and has a helmet. They are both looking at the camera. Under them there is a red stone platform. To the right of the platform there is a large red tower made of 4 red poles. Between the two first poles there is a hook hanging. Above the hook and between the two poles there is a chain. In the distance to the left there is a white wall and a brown pole.", - "id": 2633 + "image_path": "G:\\images\\combined\\0099945c5e49aae9.jpg", + "response": "A store with a nokia display case and a lucaioli display case.", + "id": 33237 }, { - "image_path": "G:\\images\\combined\\004666_jpg.rf.9633a89fcf76cd8de0ee353edd0ca835.jpg", - "response": "The image shows a large underground cave with a circular opening at the top. The cave is made of brick and has a metal staircase leading up to it. There are three people in the cave, two of them are wearing hard hats and one is wearing a blue jacket. The cave is dimly lit with a few lights on.", - "id": 2634 + "image_path": "G:\\images\\combined\\0099ad671d4484c0.jpg", + "response": "A bottle of Rogue Voodoo Doughnut chocolate peanut butter banana ale sits on a table.", + "id": 33238 }, { - "image_path": "G:\\images\\combined\\004667_jpg.rf.820845f8fa0b91723a1ffd8436fce506.jpg", - "response": "In the image there is a man wearing a white mask and a red helmet. He is working on a construction site wearing grey clothes. He is using a machine with a red handle to cut through a metal beam. The metal is being cut on a concrete platform. There is a yellow tower to the left of the man and a web address at the bottom of the image.", - "id": 2635 + "image_path": "G:\\images\\combined\\009a1573c01ff327.jpg", + "response": "The album cover for Cream's Disraeli Gears. The cover is a very colorful and trippy image with the band members' faces at the top. The three band members are Jack Bruce, Ginger Baker, and Eric Clapton. They are depicted with their heads stacked on top of each other. The word \"Cream\" is written in large letters in the center of the image. The letters are yellow and outlined in orange. The \"r\" in the word \"Cream\" is replaced with a red and yellow rose. The image is filled with many different colorful patterns and designs. There are two clocks visible in the bottom right corner. One of the clocks is white and has black hands. The other clock is blue and has black hands. There is a pink and yellow bird with red eyes and a red beak flying over the word \"Cream\". The bird has a yellow body and red wings. The wings are spread wide and there are pink flowers on the wings. The background of the image is filled with many different colorful patterns and designs.", + "id": 33239 }, { - "image_path": "G:\\images\\combined\\004668_jpg.rf.3bffe547011a41c87d26b65218f588f4.jpg", - "response": "A man wearing a grey shirt and a hard hat is holding wooden beams on a construction site.", - "id": 2636 + "image_path": "G:\\images\\combined\\009a716f953692ba.jpg", + "response": "The man is wearing a suit.", + "id": 33240 }, { - "image_path": "G:\\images\\combined\\00466f2d1b617884.jpg", - "response": "A page from a magazine, with an article about Burman Gearboxes.", - "id": 2637 + "image_path": "G:\\images\\combined\\009b425ad3b868b6.jpg", + "response": "A woman standing in front of a white board.", + "id": 33241 }, { - "image_path": "G:\\images\\combined\\004670_jpg.rf.9657df574b2692f5869f6473b09410cc.jpg", - "response": "A close up of a man wearing a yellow hard hat and a blue and white striped shirt. He is pulling on a steel cable with both hands. To the right of the man, another man is pulling on a steel cable as well. In the background, there are white and grey metal scaffolding.", - "id": 2638 + "image_path": "G:\\images\\combined\\009ba461026271c3.jpg", + "response": "An ambulance is parked in a garage with another ambulance behind it. The ambulance in the forefront is white with a red checkered pattern on the side. It has a yellow stripe across the front and the words Ambulance Service NSW on the side. There is a logo on the door and a red cross on the back. The ambulance has a tire on the passenger side and a yellow license plate on the front. There are two large headlights on the front of the ambulance.", + "id": 33242 }, { - "image_path": "G:\\images\\combined\\004671_jpg.rf.e75efbdc18886440fede9393ae70eb26.jpg", - "response": "Three workers in yellow vests and hard hats are looking at a clipboard.", - "id": 2639 + "image_path": "G:\\images\\combined\\009bf5ad19cd8f72.jpg", + "response": "A tea bag that looks like a small golden house is in a cup of tea.", + "id": 33243 }, { - "image_path": "G:\\images\\combined\\004672_jpg.rf.f60c1aad5ac1f2efa0b7514f86a8a169.jpg", - "response": "A man in a hard hat stands in front of a building under construction.", - "id": 2640 + "image_path": "G:\\images\\combined\\009dd8288bf5ce4a.jpg", + "response": "A red train is on the tracks at a train station.", + "id": 33244 }, { - "image_path": "G:\\images\\combined\\004674_jpg.rf.0ac2026984d1e98fde16164c3a2c7a3e.jpg", - "response": "A pair of workers wearing hard hats crouch down and use a tool to cut through a thick rope that is on the ground.", - "id": 2641 + "image_path": "G:\\images\\combined\\009e76edf23c89df.jpg", + "response": "a white wall with a paper on it", + "id": 33245 }, { - "image_path": "G:\\images\\combined\\004675_jpg.rf.f16b25f67ce9922e4f79be5509cf6bf0.jpg", - "response": "A man in white overalls and a red harness is working on an electrical tower. He is standing on a metal platform that is suspended from the tower. He is holding a tool in his right hand and there is a second man in the background. The sky is blue and there are several power lines in the air.", - "id": 2642 + "image_path": "G:\\images\\combined\\009f259e443a58b8.jpg", + "response": "A cardboard background with a blue and white toy robot ball called Ollie and a blue toy ball.", + "id": 33246 }, { - "image_path": "G:\\images\\combined\\004681_jpg.rf.3d9ac7a476ac57ac5b842fc34499cafd.jpg", - "response": "A man wearing a red hard hat, a black jacket, and a white mask is welding two pieces of steel together while standing in a warehouse. He is on a platform and there is another platform to his left. The floor is a dark grey and there are sparks flying. There are two red columns to his right and two brown racks to his left.", - "id": 2643 + "image_path": "G:\\images\\combined\\00a035ff3a86e058.jpg", + "response": "The image shows a stove with three pots on it. The pots are filled with food and are sitting on the stove burners. The pots are placed on the stove burners and are sitting on a white stove.", + "id": 33247 }, { - "image_path": "G:\\images\\combined\\004682_jpg.rf.5fbc803af31ab1709693ce7a22054391.jpg", - "response": "a group of men standing around in front of a building under construction", - "id": 2644 + "image_path": "G:\\images\\combined\\00a09b822d470896.jpg", + "response": "a red and white bus on a city street", + "id": 33248 }, { - "image_path": "G:\\images\\combined\\004683_jpg.rf.ebe8ddb43e8a5cc32359a460f64c6bb8.jpg", - "response": "A man wearing a hard hat and white uniform is using a tool to touch a hot piece of metal.", - "id": 2645 + "image_path": "G:\\images\\combined\\00a09ecdb91450d6.jpg", + "response": "A Canticle for Leibowitz by Walter M. Miller, Jr.", + "id": 33249 }, { - "image_path": "G:\\images\\combined\\004684_jpg.rf.82c6668116189566d75c8d66ae48dc27.jpg", - "response": "The image shows a group of people standing in front of a yellow wall with Chinese characters on it. Some of the people are wearing suits and hard hats. In the background, there are mountains.", - "id": 2646 + "image_path": "G:\\images\\combined\\00a0d2280595043f.jpg", + "response": "A man and woman are sitting together in a restaurant. The woman is holding a glass of wine and both are smiling. They are wearing black shirts and have short hair. There are other people in the background, sitting at tables and standing around.", + "id": 33250 }, { - "image_path": "G:\\images\\combined\\004685_jpg.rf.5f462b4b7f3d41ecab5e9475812a96db.jpg", - "response": "The image shows two men standing in a dark room, working on something. They are wearing hard hats and the room has a brick wall and floor. In the room, there is a small orange machine with two wheels, a steering wheel and a control panel. The control panel has several buttons and a screen. There is also a cable connected to the machine. The room has a clock on the wall and a window on the right side. The wall is partially painted white.", - "id": 2647 + "image_path": "G:\\images\\combined\\00a0db6495982c1d.jpg", + "response": "A baseball player in a teal jersey and white pants catches a ball in front of a wall with a KeyBank logo on it.", + "id": 33251 }, { - "image_path": "G:\\images\\combined\\004686_jpg.rf.a4ce88c38f146783b4687dc7d38d4706.jpg", - "response": "The image shows two workers in a yard filled with tree branches and debris. They are both wearing yellow hard hats and work clothes. One worker is on the left and is holding a tree branch with a green vine growing on it. The other worker is on the right and is pulling a white wire through a red pipe.", - "id": 2648 + "image_path": "G:\\images\\combined\\00a108e5e2160b20.jpg", + "response": "a man in a black jacket with the word Canada on it", + "id": 33252 }, { - "image_path": "G:\\images\\combined\\004687_jpg.rf.ad4bbdd1a04e3e2cd4a92cb8f2aaa630.jpg", - "response": "A group of people stand in front of a fence. The fence has a picture of a building on it. In the background there is a large building under construction.", - "id": 2649 + "image_path": "G:\\images\\combined\\00a1568f9906eaa8.jpg", + "response": "A close up of a tree branch with a silver necklace that says \"Trust\" hanging from it.", + "id": 33253 }, { - "image_path": "G:\\images\\combined\\004688_jpg.rf.530fb614d573ee4ff6b14524061e6741.jpg", - "response": "The image shows a group of workers standing near a large circular pipe. There are several people in the scene, some are wearing yellow hard hats and work clothes. The pipe is the main focus of the image, it is large and grey and has a red stripe. It is located on the right side of the image and appears to be made of metal. The workers are standing behind the pipe and appear to be working on it. There are also several other pipes in the scene, some are large and grey and others are large and blue.", - "id": 2650 + "image_path": "G:\\images\\combined\\00a16465603c7d44.jpg", + "response": "A red can of coffee with coffee beans on it.", + "id": 33254 }, { - "image_path": "G:\\images\\combined\\004689_jpg.rf.216d9803a2c674f47aaf8f69db54b250.jpg", - "response": "This image shows Kim Jong-un, the leader of North Korea, pointing to a building in the background. He is wearing a black coat and has his hair styled in a\u7279\u5b9a way, with the top of his hair raised up. He is standing in front of a wall painted with a cityscape, which includes a large body of water and several buildings. Some of the buildings have red or blue roofs. Kim Jong-un appears to be giving an interview, as a microphone is visible in the foreground.", - "id": 2651 + "image_path": "G:\\images\\combined\\00a1a5c20b0d8e28.jpg", + "response": "In the image there is a person pouring olive oil into a cup. The oil is yellow and there are several bottles of oil and wine in the background. There are also some fruits, such as apples and oranges, and several cups in the scene.", + "id": 33255 }, { - "image_path": "G:\\images\\combined\\004690_jpg.rf.6b62f4ab2301ad15474afd3bce6302da.jpg", - "response": "The image shows a group of workers inside a building that appears to be under construction. The workers are standing on scaffolding, which is surrounding the building. Some of the workers are wearing hard hats and are focused on a task at hand. There are also pipes visible in the image, running along the walls of the building.", - "id": 2652 + "image_path": "G:\\images\\combined\\00a209837c2bbec5.jpg", + "response": "A red double decker bus driving down the street.", + "id": 33256 }, { - "image_path": "G:\\images\\combined\\004692_jpg.rf.9c3710c49fd15410979935532566ef33.jpg", - "response": "A group of people in white and yellow hard hats are gathered around a large electrical panel. They are all holding clipboards and appear to be examining the panel. One person is shining a flashlight into an electrical box.", - "id": 2653 + "image_path": "G:\\images\\combined\\00a2ac61646c039e.jpg", + "response": "A toy car of the Guardia Civil Trafico on a blue surface.", + "id": 33257 }, { - "image_path": "G:\\images\\combined\\004693_jpg.rf.fb20c65e39a4740097cedae0053e50c2.jpg", - "response": "A group of three workers wearing blue uniforms and hard hats are building a scaffold.", - "id": 2654 + "image_path": "G:\\images\\combined\\00a309828c1dcb84.jpg", + "response": "A snack tray with various snacks and drinks on it.", + "id": 33258 }, { - "image_path": "G:\\images\\combined\\004694_jpg.rf.c3d607ecae04ef259e6810720e655375.jpg", - "response": "\u5de5\u7a0b\u5e08\u548c\u5de5\u4eba\u5728\u5b89\u88c5\u6c34\u5904\u7406\u8bbe\u5907.", - "id": 2655 + "image_path": "G:\\images\\combined\\00a36cacbd3d2070.jpg", + "response": "A man wearing a brown suit and pink tie standing in front of a pink and white backdrop.", + "id": 33259 }, { - "image_path": "G:\\images\\combined\\004695_jpg.rf.efbf7b7f64ebf2fb83a8bfe9ef162664.jpg", - "response": "A worker is seen wearing a blue shirt and a red helmet, he is working on a steel structure.", - "id": 2656 + "image_path": "G:\\images\\combined\\00a39c7f39870a5c.jpg", + "response": "A watch with a black band and a note that says 0153 John.", + "id": 33260 }, { - "image_path": "G:\\images\\combined\\004696_jpg.rf.986b206378fe34b13ee01d15f0079d43.jpg", - "response": "A man in a hard hat and blue overalls is using a device to measure something.", - "id": 2657 + "image_path": "G:\\images\\combined\\00a40156a2843195.jpg", + "response": "a red box with the word peace on it", + "id": 33261 }, { - "image_path": "G:\\images\\combined\\004697_jpg.rf.a15f7313a7294816c557295058a5ea41.jpg", - "response": "A man wearing a blue hard hat and an orange jumpsuit is working on a power line.", - "id": 2658 + "image_path": "G:\\images\\combined\\00a42fc158bbdc03.jpg", + "response": "A bus is driving down the street next to a tall building.", + "id": 33262 }, { - "image_path": "G:\\images\\combined\\004698_jpg.rf.4020ba8f3f3230e0a726e77116511566.jpg", - "response": "A man standing next to a dog in front of a building under construction. The building is made of brick and has scaffolding around it. There is a grey concrete mixer on the right side of the image and a pile of sand on the left. There are two workers in the image, one on the left and one on the right. They are both wearing hard hats.", - "id": 2659 + "image_path": "G:\\images\\combined\\00a4decd12ae97b9.jpg", + "response": "A red and white double decker bus is driving down the street.", + "id": 33263 }, { - "image_path": "G:\\images\\combined\\004699_jpg.rf.495d2935c5c63c980541afe24619b374.jpg", - "response": "In the image there are two people working on a construction site. They are wearing yellow hard hats and are building a steel structure. The background is blurry and there are sparks flying in the air. There is a yellow crane in the background and a yellow net in the foreground. The people are standing on a yellow platform and the text \"\u6cb3\u5317\u7db2\" is written in white at the bottom right corner of the image.", - "id": 2660 + "image_path": "G:\\images\\combined\\00a4e8944cc8ad7b.jpg", + "response": "A city skyline with a mix of old and new buildings.", + "id": 33264 }, { - "image_path": "G:\\images\\combined\\0046c3d8bf9d64fd.jpg", - "response": "a black sony camera on a table", - "id": 2661 + "image_path": "G:\\images\\combined\\00a5dbacb0654efd.jpg", + "response": "A woman wearing a white shirt is sitting at a table with a coke in front of her. She is holding a toothbrush in her hand. Another person is sitting across from her at the table. There is a chair behind the woman and another chair to her right. The table is surrounded by greenery.", + "id": 33265 }, { - "image_path": "G:\\images\\combined\\0046c69cb87e655c.jpg", - "response": "The image depicts a large office with many people working at computers. There are at least 12 people visible in the scene, all sitting at their respective desks and working on computers. The office has multiple rows of desks, each equipped with a computer and a keyboard. Additionally, there are several cups placed on the desks, and a few bottles can be seen as well. A few books are also present on the desks, indicating that some people might be working on research or reading materials while at their computers.", - "id": 2662 + "image_path": "G:\\images\\combined\\00a5e66a7d17a02b.jpg", + "response": "a man wearing a black jacket with the letters AM on it", + "id": 33266 }, { - "image_path": "G:\\images\\combined\\004700_jpg.rf.2ba792eff5ce50be3d1d474f7f523c5f.jpg", - "response": "A man wearing a hard hat is looking at a blueprint in a construction area.", - "id": 2663 + "image_path": "G:\\images\\combined\\00a66ef9770f9d2d.jpg", + "response": "The image shows a city street at night with cars parked along the side of the road. There are two taxis among the parked cars. In the background, there is a building with a sign that reads \"BARNES & NOBLE BOOKSELLERS\". The street appears to be quite and undisturbed.", + "id": 33267 }, { - "image_path": "G:\\images\\combined\\004701_jpg.rf.af5ddd5ca0234b2823c95a1460882331.jpg", - "response": "A group of workers in orange and blue uniforms and helmets are working on an electricity pylon. They are in different positions on the structure, with some on the top and others in the middle and bottom. The sky is blue and clear behind them.", - "id": 2664 + "image_path": "G:\\images\\combined\\00a698ae7a2bb13d.jpg", + "response": "A silver watch band on a green cloth.", + "id": 33268 }, { - "image_path": "G:\\images\\combined\\004703_jpg.rf.db0f31af251d69c49cfc8db982da9ba1.jpg", - "response": "An oil well worker in camouflage and a red hard hat is operating machinery.", - "id": 2665 + "image_path": "G:\\images\\combined\\00a7b3204ec349a9.jpg", + "response": "A digital display on a wall that is blue and black.", + "id": 33269 }, { - "image_path": "G:\\images\\combined\\004705_jpg.rf.84ac6d862f08c6ad55fb1c7705381603.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 2666 + "image_path": "G:\\images\\combined\\00a7bd25e5b5cc48.jpg", + "response": "a camera with a light on top of it", + "id": 33270 }, { - "image_path": "G:\\images\\combined\\004706_jpg.rf.35c68cf2a787f83fc8b02f7cd7ffa488.jpg", - "response": "People(559,355),(734,985)(435,348),(572,995)(242,392),(353,997)(869,312),(998,985)(371,255),(441,418) standing in front of a van(0,87),(882,863)", - "id": 2667 + "image_path": "G:\\images\\combined\\00a8d9ab7c3b9c0e.jpg", + "response": "A group of cars driving down a street next to a McDonalds.", + "id": 33271 }, { - "image_path": "G:\\images\\combined\\004707_jpg.rf.6b7e601a6a249430f344278e4d8b9e41.jpg", - "response": "A worker in a yellow hard hat is using a device to inspect the inside of a\u96a7\u9053. They are dressed in orange safety gear and are standing on a platform in the tunnel. There are cables and wires visible in the scene.", - "id": 2668 + "image_path": "G:\\images\\combined\\00a92b45ef93bdb0.jpg", + "response": "A blue car is parked in front of a red building.", + "id": 33272 }, { - "image_path": "G:\\images\\combined\\004708_jpg.rf.77c702f358f3c8ff39d98d3ebd251c68.jpg", - "response": "An employee of the state-owned China Power Grid Corporation checks equipment at a substation in Fuyuan County, east China's Jiangsu Province, Jan. 12, 2017. Despite the cold weather and snow, the power supply to the area remained stable and secure.", - "id": 2669 + "image_path": "G:\\images\\combined\\00a96e7f361d71e2.jpg", + "response": "A bottle of Diet Coke sits next to a mirror.", + "id": 33273 }, { - "image_path": "G:\\images\\combined\\004709_jpg.rf.9d5b457492ab16b656fc63a89c7d085b.jpg", - "response": " A worker(109,4),(731,997) is drenched in water as he works on the construction site of the world's longest high-speed rail link in China.", - "id": 2670 + "image_path": "G:\\images\\combined\\00a9eb4c3cd8622c.jpg", + "response": "Men standing on top of a podium with a sky background", + "id": 33274 }, { - "image_path": "G:\\images\\combined\\004710_jpg.rf.58dcbdacbcb64a1f0849a01674da7428.jpg", - "response": "A group of workers in orange jumpsuits and yellow hard hats are sitting on a metal frame on a beach.", - "id": 2671 + "image_path": "G:\\images\\combined\\00ab9f2e1a54dc14.jpg", + "response": "A poster of Thomas Dry Howie is on display.", + "id": 33275 }, { - "image_path": "G:\\images\\combined\\004711_jpg.rf.e6e352d5b0287af1f0c2ea3a2a945fe0.jpg", - "response": "A group of workers in hard hats and safety vests stand in a dimly lit tunnel. There are several workers visible, with some standing closer to the left side of the image and others further to the right. In the middle of the scene, there is a long row of grey metal pipes, some of which are lying horizontally and others are standing vertically. The pipes appear to be covered in dirt. In the background, there is a large rectangular opening in the wall of the tunnel, and the floor of the tunnel is covered in dark grey rocks that have been excavated. There is also a spotlight shining on the ground to the right of the pipes.", - "id": 2672 + "image_path": "G:\\images\\combined\\00abf276002161e1.jpg", + "response": "A blue and white bus is driving down the street.", + "id": 33276 }, { - "image_path": "G:\\images\\combined\\004712_jpg.rf.53ca46e052e0c56121b53fa3ab3bb017.jpg", - "response": "A man and a boy wearing hard hats and work clothes are on a metal scaffolding. The man is holding a drill and the boy is sitting on the scaffolding.", - "id": 2673 + "image_path": "G:\\images\\combined\\00ac03de349a3c5b.jpg", + "response": "A banana with the word \"BANANA\" written on it in black ink.", + "id": 33277 }, { - "image_path": "G:\\images\\combined\\004714_jpg.rf.6a0131217346b9168f1c53ee3f286257.jpg", - "response": "The image shows a group of people working together to install a large pipe into the ground. The pipe is a brown color and is located in the center of the frame. It is being held in place by several people who are standing around it. Some of the people are using what look like large wooden tools to dig into the ground around the pipe. The foggy hillside is a dark red color and the sky is a light gray color. The website address for the image is written in the lower left corner.", - "id": 2674 + "image_path": "G:\\images\\combined\\00ac8697a36e875a.jpg", + "response": "a pitcher on the mound wearing a glove and uniform", + "id": 33278 }, { - "image_path": "G:\\images\\combined\\004715_jpg.rf.8dc034d5fca6a9f73a7eb6d6abec437b.jpg", - "response": "A group of men working on a bamboo structure.", - "id": 2675 + "image_path": "G:\\images\\combined\\00ac944a31bbe0cc.jpg", + "response": "An older man wearing a white baseball jersey with the word Orioles on it.", + "id": 33279 }, { - "image_path": "G:\\images\\combined\\004716_jpg.rf.0746c78d9050ae3519b7a2837dba62f7.jpg", - "response": "A group of four people standing in front of a building under construction", - "id": 2676 + "image_path": "G:\\images\\combined\\00ad17e05c1a1bf5.jpg", + "response": "A man sitting in the stands at a baseball stadium.", + "id": 33280 }, { - "image_path": "G:\\images\\combined\\004717_jpg.rf.6006584af9baaf5e7375442716a23916.jpg", - "response": "A couple of workers in red uniforms are on a street light.", - "id": 2677 + "image_path": "G:\\images\\combined\\00ae4925aa2e84d3.jpg", + "response": "A close up of a wooden pen sitting on top of a piece of paper with writing on it.", + "id": 33281 }, { - "image_path": "G:\\images\\combined\\004718_jpg.rf.11615611969b46af1c87ebb1bf66b0b0.jpg", - "response": "a group of men standing around a large hole in the ground", - "id": 2678 + "image_path": "G:\\images\\combined\\00aea206a697bea8.jpg", + "response": "A man wearing a grey suit and red tie stands at a podium in front of a screen. He is wearing glasses and has blonde hair.", + "id": 33282 }, { - "image_path": "G:\\images\\combined\\004719_jpg.rf.f93fd16b0f02d7e19dc0acb0eb19478b.jpg", - "response": "A man in a hard hat and orange jacket is working on a machine in a factory.", - "id": 2679 + "image_path": "G:\\images\\combined\\00aec8283e343acd.jpg", + "response": "A wall with a sign that says Mekanism on it. The wall is painted in many different colors of the rainbow. There is a fire extinguisher on the wall and a sign that says exit. There are several bikes parked next to the wall.", + "id": 33283 }, { - "image_path": "G:\\images\\combined\\004720f5d7bd7edf.jpg", - "response": "a sign with a stick figure holding a fishing pole in the water", - "id": 2680 + "image_path": "G:\\images\\combined\\00af2faf31786f05.jpg", + "response": "A film roll with the words Record Brother on it.", + "id": 33284 }, { - "image_path": "G:\\images\\combined\\004720_jpg.rf.8b7d62943dbff4ee82d895810367a46c.jpg", - "response": "A group of men working on a construction site.", - "id": 2681 + "image_path": "G:\\images\\combined\\00af42ec3a190514.jpg", + "response": "A large sign advertising a medical center with the names of three doctors and their job titles.", + "id": 33285 }, { - "image_path": "G:\\images\\combined\\004721_jpg.rf.2066f1e0d219b057c957764682ccaa5b.jpg", - "response": "A group of people in front of a power box with red flags on each side.", - "id": 2682 + "image_path": "G:\\images\\combined\\00af53b6535b8dd2.jpg", + "response": "A team of girls in matching maroon gymnastic uniforms huddle together on the court.", + "id": 33286 }, { - "image_path": "G:\\images\\combined\\004722_jpg.rf.b9d3b2ade99e2aedca28a049a9ceae0f.jpg", - "response": "In the image there is a man wearing a white mask and a red helmet. He is standing in front of a long conveyor belt on which there are a lot of round black objects. The man is also holding a digital device in his hand. The background is quite dark.", - "id": 2683 + "image_path": "G:\\images\\combined\\00afcdd80ab1ba76.jpg", + "response": "A tractor is parked on the grass at a farm.", + "id": 33287 }, { - "image_path": "G:\\images\\combined\\004723_jpg.rf.4f61dd436cd43e1babd77d3f9f5a3cc5.jpg", - "response": "A group of people standing around a construction site.", - "id": 2684 + "image_path": "G:\\images\\combined\\00b023e43ad4993e.jpg", + "response": "A street scene with a green and white tram on the left and a street filled with traffic on the right.", + "id": 33288 }, { - "image_path": "G:\\images\\combined\\004724_jpg.rf.6ed4ad63c19e36dc1d229b1c9cf1c4aa.jpg", - "response": "The image shows a group of workers standing in a large, dark tunnel. The tunnel is made of concrete and has a curved ceiling. The workers are wearing hard hats and some of them are carrying tools. In the background, there is a truck parked in the tunnel.", - "id": 2685 + "image_path": "G:\\images\\combined\\00b07a3d1010af5f.jpg", + "response": "A cutting board with a measuring cup of flour, an egg, and a stick of butter.", + "id": 33289 }, { - "image_path": "G:\\images\\combined\\004725_jpg.rf.a6a7dcbe4d67d0f0c23bf6e84e8d3470.jpg", - "response": "A group of people standing around a building site.", - "id": 2686 + "image_path": "G:\\images\\combined\\00b0d51471b1f237.jpg", + "response": "A billboard for the television show Grease is the Word is displayed on a building.", + "id": 33290 }, { - "image_path": "G:\\images\\combined\\004726_jpg.rf.9b6db6f85caf0539ddb48d48dd00612f.jpg", - "response": "The image shows a group of people standing around a large piece of construction equipment, which appears to be a crane or some other type of machinery. The scene is set at night, with the city skyline visible in the background. The people are standing in various positions around the equipment, and some of them are wearing hard hats. The ground around the equipment is covered with debris, including what appears to be wooden planks and other materials.", - "id": 2687 + "image_path": "G:\\images\\combined\\00b12b1d815fac40.jpg", + "response": "A building with a red and white sign that says Benjamin Moore on it.", + "id": 33291 }, { - "image_path": "G:\\images\\combined\\004727_jpg.rf.898cbe0fcdb600e8d2a5234a847aeb70.jpg", - "response": "A group of people standing around a table with blueprints spread out on it.", - "id": 2688 + "image_path": "G:\\images\\combined\\00b1efe52ab7d53a.jpg", + "response": "a man with glasses standing in front of a display of RedKen shampoo and conditioner.", + "id": 33292 }, { - "image_path": "G:\\images\\combined\\004728_jpg.rf.4ef47c110d34a9bce5f5ca61fd2a4203.jpg", - "response": "A man is using a pressure washer on a deck.", - "id": 2689 + "image_path": "G:\\images\\combined\\00b1f61a9a3007d1.jpg", + "response": "A camera with a strap sitting on a wooden table.", + "id": 33293 }, { - "image_path": "G:\\images\\combined\\004729_jpg.rf.ba5371fa7da2a0f3db7a99a75c72e9f2.jpg", - "response": "The image shows a group of rescue workers standing around a hole in the ground. The workers are wearing camouflage and white helmets. Some of them are holding shovels and a large rock. In the background, a yellow and black helmeted worker is operating an earth-moving machine. To the left of the workers, a ladder is propped up against a large rock.", - "id": 2690 + "image_path": "G:\\images\\combined\\00b379d451531010.jpg", + "response": "A movie cover of a woman in a red coat with a white head scarf standing in front of a building.", + "id": 33294 }, { - "image_path": "G:\\images\\combined\\004730_jpg.rf.27e9a957f0491a4a72242ce1754f8cb5.jpg", - "response": "A group of people in hard hats and work clothes are walking in a row. They are all carrying orange hard hats under their arms. They are all carrying orange hard hats under their arms. The people are all young men. They are all wearing the same thing. They are all wearing the same thing. They are all wearing hard hats and work clothes. They are all wearing hard hats and work clothes. They are all wearing work clothes that are a light tan color. They are all wearing work clothes that are a light tan color. The work clothes have a pocket on the chest. The work clothes have a pocket on the chest. The pockets are closed with a zipper. The pockets are closed with a zipper. The men are all walking in a line. The men are all walking in a line. They are all walking in front of a large building. They are all walking in front of a large building. The building is made of grey metal. The building is made of grey metal. The men are all smiling at the camera. The men are all smiling at the camera.", - "id": 2691 + "image_path": "G:\\images\\combined\\00b39d10735575b0.jpg", + "response": "The Oklahoma City Thunder cheerleaders perform in their blue and white outfits in front of a crowd.", + "id": 33295 }, { - "image_path": "G:\\images\\combined\\004731_jpg.rf.33c685393dbb8f612fffaf1c554b3354.jpg", - "response": "A worker is seen at a construction site of the subway line 14 in Shanghai, east China, April 25, 2017. The 33.98-kilometer-long line 14, the first fully underground line in Shanghai, is expected to be put into operation this year. (Xinhua/Li Ziheng)", - "id": 2692 + "image_path": "G:\\images\\combined\\00b4190b562b62eb.jpg", + "response": "The image shows the tail of a light aircraft with the registration VH-NDH. The aircraft is yellow and the tail is made of metal. The aircraft manufacturer is Beechcraft.", + "id": 33296 }, { - "image_path": "G:\\images\\combined\\004733_jpg.rf.05e3c924975f6657072c982cb18872a1.jpg", - "response": "An African American construction engineer holding blueprints and a walkie-talkie.", - "id": 2693 + "image_path": "G:\\images\\combined\\00b425b6d0d57e23.jpg", + "response": "A poster for Bollox, an altered club night for gay, bi and straight queers.", + "id": 33297 }, { - "image_path": "G:\\images\\combined\\004734_jpg.rf.306642f1e33c51759b71629e059b5958.jpg", - "response": "A man wearing a green shirt and khaki pants with a yellow hard hat on his head. He is holding a hammer and is sitting on a tire.", - "id": 2694 + "image_path": "G:\\images\\combined\\00b4c6fb8ebb3f42.jpg", + "response": "A black smartphone is laying on a green cloth. The screen of the phone is turned on and has a red background with white, yellow, blue, and red icons. The time on the phone is 13:37.", + "id": 33298 }, { - "image_path": "G:\\images\\combined\\004735_jpg.rf.676c76533fb22a400c0d1759925a4747.jpg", - "response": " A lineworker(214,283),(837,997) for an electric company repairs a power line.", - "id": 2695 + "image_path": "G:\\images\\combined\\00b4e09408946c9a.jpg", + "response": "Four men are standing next to each other on a grassy area. They are all holding cups of drinks. One of the men is holding a large trophy.", + "id": 33299 }, { - "image_path": "G:\\images\\combined\\004736_jpg.rf.e88db4ee6f250197410b40f72b05ef42.jpg", - "response": "two people standing next to a stairwell while looking at a blueprint", - "id": 2696 + "image_path": "G:\\images\\combined\\00b55e751a54bfd2.jpg", + "response": "The image features a volleyball game with two women on the court. One of the women is wearing a white shirt and black shorts with a green and white logo on the back. She is standing in front of the net, and her butt is shown in the picture. The other woman is wearing a red uniform and is partially visible in the background. The court has a blue floor and a black and white volleyball net.", + "id": 33300 }, { - "image_path": "G:\\images\\combined\\004737_jpg.rf.4267b515505078c8301037ffc587737c.jpg", - "response": "A man(196,1),(978,995) in a brown suit and red hard hat(393,3),(598,147) is holding a light in a dark cave.", - "id": 2697 + "image_path": "G:\\images\\combined\\00b5b88720f35a22.jpg", + "response": "A poster for the movie Rush is displayed on a wall. The movie is based on the incredible true story of Formula 1 drivers James Hunt and Niki Lauda. The poster features the two drivers, Hunt and Lauda, in their racing suits. The movie is in theaters on September 13th.", + "id": 33301 }, { - "image_path": "G:\\images\\combined\\004738_jpg.rf.3f34d150caca4feb5eab0f350261714b.jpg", - "response": "A group of workers are working on a construction site.", - "id": 2698 + "image_path": "G:\\images\\combined\\00b5d92b79a7990f.jpg", + "response": "A train on the tracks at a train station.", + "id": 33302 }, { - "image_path": "G:\\images\\combined\\004740_jpg.rf.360c9db12847794e642bfb5c0f05ae84.jpg", - "response": "An electrician repairs a power line.", - "id": 2699 + "image_path": "G:\\images\\combined\\00b5da1e05b5c60f.jpg", + "response": "A woman with brown hair wearing a red tank top and white shorts.", + "id": 33303 }, { - "image_path": "G:\\images\\combined\\004741_jpg.rf.d057e0efcfc7a780aad554b6e1aa5803.jpg", - "response": "A construction worker is injured and\u88ab\u56f0 in a large concrete mixer at a building site. He is wearing a white helmet and blue overalls. There are other workers around him, some are wearing hard hats, and one is wearing a white helmet. They are all trying to help the injured worker. There is a large blue hose attached to a red pump, and several people are holding it steady. The mixer is surrounded by scaffolding and wooden poles. In the background, there are several other people, some of them are wearing white t-shirts and blue jeans, and one of them is wearing a white helmet and orange overalls.", - "id": 2700 + "image_path": "G:\\images\\combined\\00b6f96c840767fa.jpg", + "response": "a car with the number 44 on it", + "id": 33304 }, { - "image_path": "G:\\images\\combined\\004743_jpg.rf.67590ea019ff529b0544ea5790f122c6.jpg", - "response": "A group of men standing around a pipe in the ground.", - "id": 2701 + "image_path": "G:\\images\\combined\\00b788d91c0084f5.jpg", + "response": "The image is a screen shot of an iPad with a variety of icons on the screen.", + "id": 33305 }, { - "image_path": "G:\\images\\combined\\004744_jpg.rf.4fb6641b0fd50382ab5879efe58775eb.jpg", - "response": "A group of men working on a construction site.", - "id": 2702 + "image_path": "G:\\images\\combined\\00b7cf3c17e0f1f7.jpg", + "response": "A basketball player is holding a basketball and looking up at the ceiling. He is wearing a white jersey with the number 23 on the back. There is a banner hanging on the wall behind him. Another basketball player is visible in the background, as well as a chair and a few other people. The room has a brown and white color scheme and there are several small lights on the ceiling.", + "id": 33306 }, { - "image_path": "G:\\images\\combined\\004745_jpg.rf.10c7d9dd4a71cb2d17b6bdfbe2238501.jpg", - "response": "The picture shows a group of men walking in front of a building under construction. The building is mostly made of concrete and has scaffolding in front and around it. The men are walking in a line and the leader is on the left. The farthest right man is carrying a blue bag. In front of the group, on the ground, there is a blue trash bin. The sky is grey and overcast.", - "id": 2703 + "image_path": "G:\\images\\combined\\00b8735d5bcdfa22.jpg", + "response": "A red and white image of a crowd of people gathered in a town square. The people are standing and riding horses. There are buildings in the background.", + "id": 33307 }, { - "image_path": "G:\\images\\combined\\004747_jpg.rf.57e0a925dbbead861a54ed0567a57d19.jpg", - "response": "A construction worker in a yellow hard hat and work clothes is kneeling on a construction site. They are working with yellow bricks and there is a large beam in the background.", - "id": 2704 + "image_path": "G:\\images\\combined\\00b8e76e70c90916.jpg", + "response": "A green neon clock with black numbers on it.", + "id": 33308 }, { - "image_path": "G:\\images\\combined\\004748_jpg.rf.926cbd69846f2b3725ebf60b8d842e3a.jpg", - "response": "A construction worker in a yellow and orange safety vest and yellow and orange hard hat, standing in a large circular\u5751 surrounded by wooden boards and large concrete barriers.", - "id": 2705 + "image_path": "G:\\images\\combined\\00b91c61d6a09129.jpg", + "response": "A movie poster on a glass display with asian writing on it.", + "id": 33309 }, { - "image_path": "G:\\images\\combined\\004750_jpg.rf.8ece984d9589123d0473322f8186ad3e.jpg", - "response": "The image shows a group of seven men standing in front of a building with a sign that reads \\\"\u539f\u73e0\u6fb3\\\" (Yuan Zhu Wo). Some of the men are wearing hard hats, and all of them are wearing shirts. One man on the far left is wearing a white shirt with a yellow stripe, and another man on the far right is wearing a white shirt with blue stripes. The man second from the left is wearing a white shirt with black stripes. The man third from the left is wearing a black shirt and a blue hat. The man fourth from the left is wearing a white shirt and a black hat. The man fifth from the left is wearing a white shirt and a red hat. The man sixth from the left is wearing a white shirt and a black hat. The man on the far right is wearing a white shirt with a blue logo on the left chest. There are two flags in the background, one on the far left and one on the far right.", - "id": 2706 + "image_path": "G:\\images\\combined\\00b96943e2320363.jpg", + "response": "A bar with a variety of drinks on the shelves and taps.", + "id": 33310 }, { - "image_path": "G:\\images\\combined\\004751_jpg.rf.c96e55288ee8f2cb710cf803ba7eae26.jpg", - "response": "A worker in a orange jumpsuit and yellow helmet is using a sledge hammer to break up a piece of concrete.", - "id": 2707 + "image_path": "G:\\images\\combined\\00ba3a61c45d0413.jpg", + "response": "A street sign with several different options for bike rides and other activities.", + "id": 33311 }, { - "image_path": "G:\\images\\combined\\004752_jpg.rf.ffa16a3db46f795f4afeec034870590d.jpg", - "response": "The image shows a Chinese worker in a blue hard hat, standing in front of a large metal structure that resembles the frame of a giant metal tent. The worker is holding a long, thick cable in his hand. The ground around the worker is covered in snow. In the background, there is a mountain of snow. To the right, there is a person wearing a blue hat and a black jacket.", - "id": 2708 + "image_path": "G:\\images\\combined\\00bc35fbb511ef71.jpg", + "response": "A red and white airplane is parked at an airport.", + "id": 33312 }, { - "image_path": "G:\\images\\combined\\004754_jpg.rf.1f3c9c188d4bc63d5f007a13458a49c3.jpg", - "response": "In the image two workers are seen working on a large building. One of the worker is seen wearing yellow color uniform and is working on a large pipe. Another worker is seen working on a lift. Both the workers are seen wearing helmet. A large building is seen in the background.", - "id": 2709 + "image_path": "G:\\images\\combined\\00bc80d0d1460249.jpg", + "response": "A California Pacific Computers envelope with a software disk inside.", + "id": 33313 }, { - "image_path": "G:\\images\\combined\\004757_jpg.rf.584d42b0814b38372601910511a547da.jpg", - "response": "A group of people standing around a construction site looking at the ground.", - "id": 2710 + "image_path": "G:\\images\\combined\\00bcce3f41312a3f.jpg", + "response": "The image shows two baseball players standing on a field. Both players are wearing blue uniforms with white lettering that say \"Blue Jays.\" The player in the foreground is wearing a blue baseball cap with the Blue Jays logo on it. The cap has a brim that is turned down at the front and up at the back. The player is also wearing sunglasses that are pushed up on his forehead. The player behind him is wearing a blue baseball cap with a red bill. Both players are looking down at the field.", + "id": 33314 }, { - "image_path": "G:\\images\\combined\\004758_jpg.rf.d7c191ae347dffb657fb01a20e6d292e.jpg", - "response": "A worker is seen on a cherry picker, fixing power lines. He is wearing a green uniform.", - "id": 2711 + "image_path": "G:\\images\\combined\\00bd04a28d45fee5.jpg", + "response": "A man standing in front of a store window.", + "id": 33315 }, { - "image_path": "G:\\images\\combined\\004760_jpg.rf.4dad438e9b215bc8af8374b556b7b3f0.jpg", - "response": "The image shows two men standing at a table, looking over blueprints. Both men are wearing white helmets on their heads. One man is wearing a white helmet and glasses, while the other man is wearing a yellow helmet. They are both dressed in business attire. One man is wearing a black shirt and the other is wearing a white shirt. They are both holding pencils in their hands, and the man on the right is holding a ruler. The table has a blueprint spread out in front of them, and there is a cell phone on the table as well.", - "id": 2712 + "image_path": "G:\\images\\combined\\00bd4ecb67753232.jpg", + "response": "An orange and white bus is parked in a lot with other buses.", + "id": 33316 }, { - "image_path": "G:\\images\\combined\\004761_jpg.rf.94c8062043d67a72c8e3db30aab32599.jpg", - "response": "In the image there are several power lines, some of them are yellow and others are black. Below the power lines, there is a group of workers wearing blue uniforms and yellow hats. One of the workers is holding a blue helmet with both hands and looking at it, two other workers are standing next to him. In the background, there is a yellow crane operating in the construction site.", - "id": 2713 + "image_path": "G:\\images\\combined\\00bdc07a03221bd8.jpg", + "response": "The image shows a picnic table with a black cooler bag on it. There are two white food containers on the table, one on the left and one on the right. The containers are filled with food. A fork is placed on the left side of the table. In front of the table, there is a bottle of liquid, a bottle of sauce, and a bottle of honey.", + "id": 33317 }, { - "image_path": "G:\\images\\combined\\004762_jpg.rf.54672473042f6a7ab38c6f668c662508.jpg", - "response": "The image shows a construction site with many workers. There is a yellow steamroller in the foreground, and a red truck in the background. Some workers are standing around the site, and others are working with shovels and other tools. There is also a man in a white shirt and black pants standing on the left side of the image.", - "id": 2714 + "image_path": "G:\\images\\combined\\00be435f1f010bcc.jpg", + "response": "A blue bus is driving down a wet street.", + "id": 33318 }, { - "image_path": "G:\\images\\combined\\004763_jpg.rf.9158755edbfebe1c8693adc860ed2c16.jpg", - "response": "The image features a factory setting with President Obama wearing a white shirt and a tie. He is wearing a hard hat and safety goggles. To his left, there are two men also wearing yellow hard hats and safety goggles. They appear to be workers at the factory. The factory floor is filled with various pieces of machinery and equipment, including a large blue machine towards the right side of the image. The factory has a yellow railing system in place to keep workers safe.", - "id": 2715 + "image_path": "G:\\images\\combined\\00bec629428e1d73.jpg", + "response": "A black and white photograph of Sir Wilfrid Laurier standing at a podium.", + "id": 33319 }, { - "image_path": "G:\\images\\combined\\004764_jpg.rf.2942affdf7f0fa55eedf01639b0f4980.jpg", - "response": "A group of men standing around pointing at something. They are all wearing hard hats.", - "id": 2716 + "image_path": "G:\\images\\combined\\00bedd5c2fbf2dff.jpg", + "response": "A large Yahoo billboard is shown, with a sign underneath that says \"Talk is cheap. Really.\"", + "id": 33320 }, { - "image_path": "G:\\images\\combined\\004765_jpg.rf.8add3e0f8cbf5ca9854bc0061823b1ef.jpg", - "response": "In the image there are four people working on power lines. Three of them are in the middle of the photo wearing blue uniforms and white helmets. The fourth person is at the bottom left of the image wearing a blue uniform. They are all working on power lines and equipment.", - "id": 2717 + "image_path": "G:\\images\\combined\\00bf3355e15e694f.jpg", + "response": "A double decker bus is parked on the side of the road near a building. The bus is orange, white, and blue and is stopped at a bus stop. There are several people standing near the bus, waiting to board. Some of the people are carrying backpacks. The bus has two levels and the top level has a sign that says \"50\" on it. There is also a sign near the bus stop that says \"no standing\" on it.", + "id": 33321 }, { - "image_path": "G:\\images\\combined\\004766_jpg.rf.132b0dda00fc04abdbd7eb4918c96aea.jpg", - "response": "A group of men standing in front of a building that has scaffolding on it.", - "id": 2718 + "image_path": "G:\\images\\combined\\00bfb65249fa578f.jpg", + "response": "A cheerleader is jumping in the air with her legs in the air and her hands holding her feet.", + "id": 33322 }, { - "image_path": "G:\\images\\combined\\004767_jpg.rf.54dae94e37d29626bed5b4ef97f43985.jpg", - "response": "A worker in a red hard hat and blue coveralls is working on a large piece of industrial equipment. They are adjusting a valve on a large pipe. The pipe is silver and runs along the top of the equipment. The worker is also working on a machine that has a lot of dials and machinery. The background is a grey wall with more machinery.", - "id": 2719 + "image_path": "G:\\images\\combined\\00c098c7959397c3.jpg", + "response": "A busy city street filled with lots of traffic.", + "id": 33323 }, { - "image_path": "G:\\images\\combined\\004768_jpg.rf.a13059e5e617f0645cb1351c39491871.jpg", - "response": "The image shows two workers in yellow hard hats and orange work vests, working on a piece of heavy machinery. They are both crouched down, with the worker on the left holding a red tool box. The machine they are working on has two large drills with brown knobs on them. They are standing on a yellow platform and there is a red crane visible to the right of the frame. The sky is a clear blue color.", - "id": 2720 + "image_path": "G:\\images\\combined\\00c24377a2cb57aa.jpg", + "response": "The image shows a grocery store with a man walking out of the front door. The store has a magazine rack with several magazines on display. A basket full of tuggaboos is located near the front of the store, and a sign advertising the tuggaboos for 99 cents is hanging above the basket. There are also several bottles of water on display in the store.", + "id": 33324 }, { - "image_path": "G:\\images\\combined\\004769_jpg.rf.84280bda8d990e0af097b9d97f531e9a.jpg", - "response": "A group of men working on a construction site.", - "id": 2721 + "image_path": "G:\\images\\combined\\00c2795a1ef8c477.jpg", + "response": "A blue and white sign for Interstate 5 is on a pole.", + "id": 33325 }, { - "image_path": "G:\\images\\combined\\004770_jpg.rf.d469accef9f2d8d14fa69dd76ee8b889.jpg", - "response": "A man in a brown suit talking to another man in a black suit.", - "id": 2722 + "image_path": "G:\\images\\combined\\00c2f37508a48cc1.jpg", + "response": "A group of football players are sitting at a table with a microphone. A young boy is standing in front of them, and one of the players is holding the microphone in his hand. There is a soldier in the background.", + "id": 33326 }, { - "image_path": "G:\\images\\combined\\004771_jpg.rf.950d49fc683a6907b802a7c1c0be06ae.jpg", - "response": "In the image, a group of railway workers in orange vests and safety gear are working on a railroad. They are standing on and around train tracks, with some of them focused on a piece of train track that is lying on the ground. The sun is shining brightly in the sky.", - "id": 2723 + "image_path": "G:\\images\\combined\\00c3108d5e110b8a.jpg", + "response": "The image shows a basketball game in progress. There are two teams of players on the court, with one player from each team attempting to shoot the ball through the hoop. The ball is currently in mid-air, being contested by two players. One player is reaching up with both hands to block the shot, while the other player is reaching up with both hands to shoot the ball.", + "id": 33327 }, { - "image_path": "G:\\images\\combined\\004772_jpg.rf.48a884b92c89eb379d0a9f379b815d06.jpg", - "response": "The image shows a group of workers in a cave. They are all wearing red and blue helmets, and the one on the far right is wearing a yellow helmet. The worker on the far left is holding a pickaxe and wearing a red shirt and blue pants. The worker in the middle is wearing a red shirt and holding a flashlight. The worker on the far right is wearing a yellow helmet and holding a tool. The cave has a stone wall on the left and the workers are standing in front of it. There is also a fire burning in the cave, illuminating the area.", - "id": 2724 + "image_path": "G:\\images\\combined\\00c346e16e2154ea.jpg", + "response": "A baseball player swinging a bat over home plate.", + "id": 33328 }, { - "image_path": "G:\\images\\combined\\0047736a8da735f0.jpg", - "response": "A man in a red and black boxing outfit stands in a boxing ring.", - "id": 2725 + "image_path": "G:\\images\\combined\\00c359f294f7dcd9.jpg", + "response": "A small red and white propeller plane with the letters G-ATCO on the side. It is sitting on a grassy field with a cloudy sky above.", + "id": 33329 }, { - "image_path": "G:\\images\\combined\\004773_jpg.rf.92014927bbeabc597b2faae1acf5b16a.jpg", - "response": "A group of men sitting around a table with food and drinks in front of them.", - "id": 2726 + "image_path": "G:\\images\\combined\\00c3fe9a609acc03.jpg", + "response": "A baseball game is in action as a runner is crossing the plate.", + "id": 33330 }, { - "image_path": "G:\\images\\combined\\004774_jpg.rf.a94b30d0115e174d9e88d2a2cde1baa8.jpg", - "response": "A group of people standing in front of a sign.", - "id": 2727 + "image_path": "G:\\images\\combined\\00c479303d96336c.jpg", + "response": "A bottle of red wine next to two glasses of red wine.", + "id": 33331 }, { - "image_path": "G:\\images\\combined\\004775_jpg.rf.d301d45337b6c6f8aef5edef5422d2e7.jpg", - "response": "A power worker in blue uniform repairs a power pole in a residential area in Fuzhou, southeast China's Fujian Province, May 29, 2013. A total of 18,000 residents in the area were affected by a power cut after a strong storm hit the city on Wednesday night. The power worker is from the local power company. He said they were working hard to restore power supply as soon as possible.", - "id": 2728 + "image_path": "G:\\images\\combined\\00c4b4691adeed37.jpg", + "response": "a hand holding a bottle of Coca Cola in front of a sign", + "id": 33332 }, { - "image_path": "G:\\images\\combined\\004776_jpg.rf.62feae00d711f2d055ca3e03b1d5abe7.jpg", - "response": "The image shows a snowy field with a man sitting in the middle of it. He appears to be wearing a blue shirt and grey pants, and is being held captive by ropes tied to his arms and legs. The ropes are held by three people, who are dressed in black jackets and hats and are standing in the snow. One person is on the left, holding the ropes with both hands, and the other is on the right, pulling the ropes with one hand. The background shows power lines running from left to right, with the man being held captive near them.", - "id": 2729 + "image_path": "G:\\images\\combined\\00c4c2eb114f586e.jpg", + "response": "A magazine ad for The Bay features a mother and child on the cover.", + "id": 33333 }, { - "image_path": "G:\\images\\combined\\004777_jpg.rf.f7cf711138ab3ad34e787d2f07b2a8cc.jpg", - "response": "A group of rescue workers in orange jumpsuits and white helmets are sitting on the ground.", - "id": 2730 + "image_path": "G:\\images\\combined\\00c5b5728ea00975.jpg", + "response": "The Boston Bruins are wearing their black and yellow jerseys.", + "id": 33334 }, { - "image_path": "G:\\images\\combined\\004778_jpg.rf.66c25495dd16f1a9f6a59ca233db76a0.jpg", - "response": "The image shows a group of six men standing in a room that is in the process of renovation. They are all wearing casual clothing and are focused on a white wall that is covered with red and white tape. There are two men on the left side of the room and four men on the right side. The room also has a window on the far right side and a sink in the middle of the floor. The date \"2016-06-06\" is written at the bottom right corner of the image.", - "id": 2731 + "image_path": "G:\\images\\combined\\00c60dd0033d0a2a.jpg", + "response": "A cloudy sky over a city street with a large sign for Patsy's Italian and American Foods.", + "id": 33335 }, { - "image_path": "G:\\images\\combined\\004779_jpg.rf.05f2b76ffe77af919561d691a931223a.jpg", - "response": "A man wearing a yellow hard hat and a white shirt is laying bricks on a street. He is crouching down and is building a brick wall.", - "id": 2732 + "image_path": "G:\\images\\combined\\00c618f03ea0b6a2.jpg", + "response": "In the image there is a bottle of essential oil with a label that says \"essential oil summer blend\" in English and Japanese. The bottle is clear and has a green label with a picture of herbs. The bottle is on a table and there is a white wall in the background.", + "id": 33336 }, { - "image_path": "G:\\images\\combined\\004780_jpg.rf.fd4ab306af7acd2c9bb6e9a667456540.jpg", - "response": " Men(618,239),(748,833)(295,261),(426,835)(407,247),(535,820)(165,254),(257,740)(63,278),(179,822) standing in a construction site", - "id": 2733 + "image_path": "G:\\images\\combined\\00c6c05e400a0b08.jpg", + "response": "A busy city intersection with a yellow taxi cab turning onto the street. The taxi is followed by a black SUV. There are several pedestrians crossing the street, and a traffic light is visible in the background. The city skyline is visible in the distance, with a tall building standing out among the other buildings.", + "id": 33337 }, { - "image_path": "G:\\images\\combined\\004781_jpg.rf.7af5726b045f687ec11fe3107ca67ad2.jpg", - "response": "A worker inspects the debris of a collapsed bridge in Hefei, capital of east China's Anhui province, July 10, 2009. A bridge under construction here collapsed on Thursday afternoon, causing no casualties, local authorities said. The bridge, which was planned to be 120 meters long, was about 40 meters long when it collapsed, local media reported. The reason for the collapse is still under investigation. (Xinhua/Chen Yichen)", - "id": 2734 + "image_path": "G:\\images\\combined\\00c701c3a7421bd9.jpg", + "response": "A blue van and trailer are parked in front of a white domed building. The van has the words \"Census 2010\" on the side and a map of California. There is a man standing between the two vehicles.", + "id": 33338 }, { - "image_path": "G:\\images\\combined\\004782_jpg.rf.1737da48409717fc17ce237deea1fb67.jpg", - "response": "A man wearing a white hard hat, gloves and a tool belt is working on a wooden structure. He is using a level to check the wood and is standing on a ladder. The sky is blue with white clouds.", - "id": 2735 + "image_path": "G:\\images\\combined\\00c7f84d61adce05.jpg", + "response": "a jar of food (443,34),(942,995)", + "id": 33339 }, { - "image_path": "G:\\images\\combined\\004783_jpg.rf.4e26aced3674af72b9de185a26d719d8.jpg", - "response": "A woman wearing a white hard hat is smiling and talking on her cell phone. She is wearing a brown suit jacket and a pearl necklace.", - "id": 2736 + "image_path": "G:\\images\\combined\\00c8152e27a63776.jpg", + "response": "A book is open to a page about Joe Cote and Karen. The page is described as a continuation of the book of solamentry. The book is open to the page about Grape Climb.", + "id": 33340 }, { - "image_path": "G:\\images\\combined\\004784_jpg.rf.8c67a69bb8069daa170b65ffc4bc3088.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left, wearing green and yellow fatigues and a yellow helmet, and is standing on a pile of black pipes. Another worker is on the right, wearing a green uniform and a red helmet. In the background, a yellow truck with a large crane is parked on the right side of the image. The truck is yellow and has a red flag on the front. There is a pile of black pipes on the ground in front of the worker on the right. The pipes are of various sizes and are stacked in two rows. The worker on the left is standing on top of a pipe. The ground around the pipes is grey and there is a white wall to the left. The workers are the only people in the image.", - "id": 2737 + "image_path": "G:\\images\\combined\\00c86a7bbf54df6f.jpg", + "response": "In the image, there is a man wearing glasses and a brown shirt crouching down next to a brown and green trash can. The trash can has a label that says \"Organico\". There is another green trash can in the scene. In the background, there are several other people, some of them wearing backpacks. There is also a bench visible in the scene.", + "id": 33341 }, { - "image_path": "G:\\images\\combined\\004785_jpg.rf.11efb89e95def252cf9fd76333047ede.jpg", - "response": "In the image there are two construction workers wearing yellow helmets, they are working on a construction site. One worker is standing in a hole and the other one is placing a large pipe. There is a concrete wall on the left side of the image and a large concrete pipe on the right side of the image. The workers are wearing black clothes and there is a yellow helmet on the ground in front of the hole.", - "id": 2738 + "image_path": "G:\\images\\combined\\00c89990b2809b09.jpg", + "response": "A large white billboard is mounted on a brick wall. The billboard is empty and ready for a new advertisement.", + "id": 33342 }, { - "image_path": "G:\\images\\combined\\004788_jpg.rf.5f35712d026990671668b8df67434f55.jpg", - "response": "A group of three men in blue uniforms and hard hats crouching down near a large box.", - "id": 2739 + "image_path": "G:\\images\\combined\\00c8df7ab3eb481b.jpg", + "response": "A newspaper with the heading \"Death notices\" is sitting on a table. There is a pair of glasses on top of the newspaper. Next to the newspaper is a bottle of alcohol. The table is made of wood.", + "id": 33343 }, { - "image_path": "G:\\images\\combined\\004791_jpg.rf.6b5067e6ddfc07c2a48063906326b3e9.jpg", - "response": "A man in a red hard hat and yellow safety vest crouches down next to a large group of pipes and valves. He is wearing a red hard hat and yellow safety vest.", - "id": 2740 + "image_path": "G:\\images\\combined\\00c90458856a8866.jpg", + "response": "A young boy wearing a blue and white Cyclones jersey runs across a field.", + "id": 33344 }, { - "image_path": "G:\\images\\combined\\004792_jpg.rf.ba24ae91c33dd06f20bdac3d9d3cdeea.jpg", - "response": "In the image, a large group of railway workers in red uniform and yellow safety helmets are working on a bridge. They are installing or fixing the railway tracks. Some of them are using tools like spanners, drills and others. The bridge is grey and made of cement. The railway tracks are placed on the bridge and some workers are working on the tracks. The sky is covered by clouds and there are some mountains in the background.", - "id": 2741 + "image_path": "G:\\images\\combined\\00c96e0e060aeb2f.jpg", + "response": "A red bus driving down a street next to a sidewalk.", + "id": 33345 }, { - "image_path": "G:\\images\\combined\\004793_jpg.rf.d4fc42c79333b6f3f5bc785109384c51.jpg", - "response": "A worker is seen in a cave, he is wearing a yellow hard hat and a green vest. The cave has a muddy floor and the worker is climbing down a ladder. There are bamboo shoots in the foreground.", - "id": 2742 + "image_path": "G:\\images\\combined\\00c9f3f8e860c48f.jpg", + "response": "A white bus is driving down the street. There is a puddle of water on the street. People are walking on the sidewalk. There is a traffic light on the corner.", + "id": 33346 }, { - "image_path": "G:\\images\\combined\\004794_jpg.rf.ec24fbbd42168ab151804272df45d688.jpg", - "response": "A group of men are working on a metal tower.", - "id": 2743 + "image_path": "G:\\images\\combined\\00ca922eb4890a3b.jpg", + "response": "The image features a black box with a white background. The box is open and contains a black item with a red logo on it. The logo features the text \"\u8fbe\u97f3\u79d1\" written in red and the website \"http://www.duoku.com.cn\" written in white. The box is open and partially unsealed.", + "id": 33347 }, { - "image_path": "G:\\images\\combined\\004795_jpg.rf.e1f20731ce119469643a211bf720c4e9.jpg", - "response": "A man in a yellow jumpsuit and a hard hat is sitting on a step and reading a newspaper. He is wearing a hard hat and has a walkie talkie on his belt. He is in a tunnel-like room with various equipment around him.", - "id": 2744 + "image_path": "G:\\images\\combined\\00cacc08df00dec6.jpg", + "response": "A double decker bus is driving down the street.", + "id": 33348 }, { - "image_path": "G:\\images\\combined\\004796_jpg.rf.27c50b5235104223c46cc3f0ad3b86a2.jpg", - "response": "The picture shows a group of men standing in a construction site. They are all dressed in black suits and most of them are wearing white safety helmets. The wall behind them is half-assembled, with green metal sheets on the outside and white inside. The floor is concrete, and there are some cranes and construction workers in the background.", - "id": 2745 + "image_path": "G:\\images\\combined\\00cb8dccb5cb1f59.jpg", + "response": "The image features the back of a blue car with a license plate that reads \"3RD GENERATION PRIUS\". The car has a silver Toyota logo on the trunk.", + "id": 33349 }, { - "image_path": "G:\\images\\combined\\004797_jpg.rf.930bbc989e89d7b6e01d3f53917a142c.jpg", - "response": "In the image two men are working on power lines. They are both wearing safety gear which includes white hard hats, orange safety vests, and grey shirts. The man in the front is wearing orange gloves and is working on a silver ladder. The man behind him is working on a silver pole. They are both standing on a metal platform.", - "id": 2746 + "image_path": "G:\\images\\combined\\00cbc381888d9ffb.jpg", + "response": "A large clock mounted on the side of a building.", + "id": 33350 }, { - "image_path": "G:\\images\\combined\\004798_jpg.rf.b3a39057b75a3259d8bb2d7b8a3c0bd0.jpg", - "response": "In the image there are two people working on a construction site. One person is on the left and is wearing camo pants, a camo jacket, a yellow hard hat, and is holding a blue cable. The second person is on the right and is wearing red hard hat, brown jacket, and is holding the other end of the blue cable. They are both standing on a ladder with the background being a grey wall.", - "id": 2747 + "image_path": "G:\\images\\combined\\00cc1d72396a132c.jpg", + "response": " Two men(203,375),(458,994)(557,382),(831,995) in military uniforms(557,626),(831,995)(203,567),(457,995) standing in front of a banner(178,205),(786,867)", + "id": 33351 }, { - "image_path": "G:\\images\\combined\\004799_jpg.rf.cb16a734458e0d59303578101eb87c2a.jpg", - "response": "In the image two workers are seen working on a construction site. They are wearing yellow helmets and one of them is holding a large pipe in his hand. Another pipe is seen on the left side of the image. The sky is blue with some clouds.", - "id": 2748 + "image_path": "G:\\images\\combined\\00cc908933d73f6e.jpg", + "response": "The image shows a baseball game in progress with several players on the field. A couple of players are holding baseball gloves and are in the middle of the action. One of the players is holding a baseball bat and appears to be about to take a swing.", + "id": 33352 }, { - "image_path": "G:\\images\\combined\\0047fb2e2908c12d.jpg", - "response": "A man is sitting at a table with a laptop. He is holding a microphone and appears to be giving a presentation.", - "id": 2749 + "image_path": "G:\\images\\combined\\00cc9a8d4b253f45.jpg", + "response": "A man in a suit is sitting in front of a TV screen.", + "id": 33353 }, { - "image_path": "G:\\images\\combined\\004801_jpg.rf.0d7b535fa49285f7135742a7ceabd6ae.jpg", - "response": "An engineer in a suit and tie, wearing a hard hat and holding a pair of binoculars, smiles as he looks up at a power station.", - "id": 2750 + "image_path": "G:\\images\\combined\\00cca379c1dcdfb1.jpg", + "response": "A black table with a vase of flowers and photos on it.", + "id": 33354 }, { - "image_path": "G:\\images\\combined\\004802_jpg.rf.5d2ed5eeabb0ef69d67b73812351487d.jpg", - "response": "A construction worker wearing a hard hat and holding a sign.", - "id": 2751 + "image_path": "G:\\images\\combined\\00ccc24739bd9b1d.jpg", + "response": "In the image, there are two men standing next to each other. One man is wearing a hat with the American flag on it, and the other man is wearing a colorful African-style shirt. They are both holding beers and smiling for the camera.", + "id": 33355 }, { - "image_path": "G:\\images\\combined\\004803_jpg.rf.8def9ccf32a0cfcf55776f1152481677.jpg", - "response": "The image shows a group of workers in the process of removing an old wooden power pole. The pole is located on the side of a road and is being carried out of the picture by a large spool of wire. The workers are wearing safety gear, including hard hats and safety vests. One worker is on the left, another is in the center of the scene, and the third is on the right. The fourth worker is behind the truck in the background. The workers are all focused on the task at hand, and the scene captures a moment of teamwork and hard work.", - "id": 2752 + "image_path": "G:\\images\\combined\\00cdb779e3decc25.jpg", + "response": "A wooden table with a colorful mug that has a banana peel in it.", + "id": 33356 }, { - "image_path": "G:\\images\\combined\\004804_jpg.rf.34d145b523bb89feab5c193b4fea9d87.jpg", - "response": "A construction worker in a yellow hard hat is measuring a brick wall with a measuring tape while another worker in a blue shirt looks on. They are both wearing yellow hard hats and the worker measuring the wall is also wearing a white t-shirt and jeans. They are standing on a construction site with a blue sky in the background.", - "id": 2753 + "image_path": "G:\\images\\combined\\00ced4aafc90fa3b.jpg", + "response": "A woman walking down the street in front of a store.", + "id": 33357 }, { - "image_path": "G:\\images\\combined\\004805_jpg.rf.0e83e294841f0fc656a9ce7b06a64f53.jpg", - "response": "This image shows a man with black hair standing in the sun. He is wearing a dark suit and has his mouth open as if he is laughing. He is also holding a cigarette. The man is standing outside in front of a building. There are several other people around him, some of them are dressed in dark suits too. In the background, there is a building under construction with a large crane next to it. The building has glass windows and is painted in light blue color.", - "id": 2754 + "image_path": "G:\\images\\combined\\00cf9f6065d1196b.jpg", + "response": "A baseball game is in progress with a batter swinging the bat, a catcher with a mitt and an umpire behind the plate. The batter is wearing a red helmet and grey baseball uniform. The catcher is wearing a blue and white uniform and the umpire is wearing a blue shirt and grey pants. The baseball field has grass and dirt and there is a crowd of people in the stands watching the game.", + "id": 33358 }, { - "image_path": "G:\\images\\combined\\004806_jpg.rf.87d9e6650725025c802ade3701fbe775.jpg", - "response": "a group of people walking across a field", - "id": 2755 + "image_path": "G:\\images\\combined\\00d03a35f54e8386.jpg", + "response": "A yellow school bus is parked in a parking lot with another bus behind it. The bus has a Ford emblem on the front and is a Ford vehicle.", + "id": 33359 }, { - "image_path": "G:\\images\\combined\\004807_jpg.rf.62089d1dc7066e2f52624225fdf0cb10.jpg", - "response": "A group of men wearing hard hats are standing in a room under construction. Some of the men are wearing black and yellow hard hats, while others are wearing red and yellow hard hats. They are all wearing black coats and are looking down at something. There are windows on the walls and a lot of rebar sticking out of the concrete floor.", - "id": 2756 + "image_path": "G:\\images\\combined\\00d07a487147789e.jpg", + "response": "a man in a blue jersey is holding a award", + "id": 33360 }, { - "image_path": "G:\\images\\combined\\004808_jpg.rf.08c44d3f1caa6bf218704f208614cad2.jpg", - "response": "In the image several workers are seen constructing a building. The workers are wearing yellow helmets and are working on a building site. The site has several metal rods and the workers are tying wires to them. There are also several pipes seen in the background. The workers are wearing red and white t-shirt and are of asian ethnicity.", - "id": 2757 + "image_path": "G:\\images\\combined\\00d0ae2a372fe5e1.jpg", + "response": "A tall white building with panton arms written on the side.", + "id": 33361 }, { - "image_path": "G:\\images\\combined\\004809_jpg.rf.28a6802590e9a67d5979c05536d96c74.jpg", - "response": "A group of four workers in red and yellow work uniforms and yellow helmets are constructing a large green cylindrical tank. They are crouched down over a rectangular pit with rebar being woven into a structure in the bottom of the pit.", - "id": 2758 + "image_path": "G:\\images\\combined\\00d13cf28f104d4e.jpg", + "response": "In the image there is a toothpaste tube with the cap off on a black surface. The toothpaste tube is open and has the words Aquafresh on it.", + "id": 33362 }, { - "image_path": "G:\\images\\combined\\004810_jpg.rf.be6c613d55b1769965ec6c53d2e4fe45.jpg", - "response": "A group of workers are working on a building site. They are all wearing yellow hard hats. One man is bending over, concentrating on his task. Another man is sitting down, working on a metal bar. A third man is standing in the background, watching the others. A fourth man is standing further back, also watching the work. A fifth man is standing to the far right of the image, also working on the building site.", - "id": 2759 + "image_path": "G:\\images\\combined\\00d168fbb8a96a7d.jpg", + "response": "A ZTE Grand X LTE phone on a display with a Qualcomm Snapdragon logo.", + "id": 33363 }, { - "image_path": "G:\\images\\combined\\004812_jpg.rf.c1799104df16fe5fea44183b69faea67.jpg", - "response": "The image shows a group of workers in yellow vests and orange hats standing on a barge in a harbor. The barge is filled with steel rods and there are several large boats visible in the background. A yellow crane is operating in the background on the right side of the image. The sky is overcast and there are a few people in the background who are not part of the main group.", - "id": 2760 + "image_path": "G:\\images\\combined\\00d17e785bbf2ca1.jpg", + "response": "A red double decker bus is parked on the street.", + "id": 33364 }, { - "image_path": "G:\\images\\combined\\004813_jpg.rf.a9c5335434f5263e5e1a5a657c835cbe.jpg", - "response": "A construction site with a bulldozer and some construction workers.", - "id": 2761 + "image_path": "G:\\images\\combined\\00d199d2990fab59.jpg", + "response": "A close up of a pile of coins on a blue cloth. The coins are in various positions and some are partially hidden.", + "id": 33365 }, { - "image_path": "G:\\images\\combined\\004816_jpg.rf.ffa2ec36e07df41c90e3ac79bbb86f48.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing hard hats and the person in the foreground is pushing a cart of bricks while the person in the background is shoveling bricks. There is a pile of bricks to the right of the people and a cart of bricks to the left of the people. In the background there is a yellow metal gate and a red and white sign that says \"Caution, Keep Out\".", - "id": 2762 + "image_path": "G:\\images\\combined\\00d1dc0740d0ab22.jpg", + "response": "A refrigerator with many items attached to it.", + "id": 33366 }, { - "image_path": "G:\\images\\combined\\004817_jpg.rf.16596a60cbe0fe4a7567a3b56d6a5a87.jpg", - "response": "A worker in a yellow hard hat and grey coveralls is working on a large black piece of equipment. He is holding a pair of pliers and has a knife in his hand. He is in front of a large black transformer.", - "id": 2763 + "image_path": "G:\\images\\combined\\00d202cef5442753.jpg", + "response": "A woman leaning on a Ford Expedition with a white shirt and black pants.", + "id": 33367 }, { - "image_path": "G:\\images\\combined\\004819_jpg.rf.939658e1dd794f613803e65002a3d1ed.jpg", - "response": "A group of people wearing hard hats are standing in a underground tunnel.", - "id": 2764 + "image_path": "G:\\images\\combined\\00d271d34a56eca7.jpg", + "response": "Yahoo News Anchor Rebecca Jarvis and her husband, David, attend the Yahoo News and ABC News White House Correspondents' Dinner Pre-Party at the Newseum on Saturday, April 27, 2013 in Washington, DC.", + "id": 33368 }, { - "image_path": "G:\\images\\combined\\004820_jpg.rf.ff70e3cf9a8885503ca93a312a450cc5.jpg", - "response": "An industrial harbor with a large red cargo ship docked. Two men in yellow vests and hard hats are standing in front of the ship, one holding a clipboard and the other pointing to the ship. In the background is a factory or oil rig.", - "id": 2765 + "image_path": "G:\\images\\combined\\00d2c89edbc18f8e.jpg", + "response": "A chalk board with a bottle of alcohol in front of it.", + "id": 33369 }, { - "image_path": "G:\\images\\combined\\004821_jpg.rf.042c9d97ed15666a20cf125d5d4895c6.jpg", - "response": "In the image there is a worker wearing a yellow hard hat and a green jacket, who is working on a construction site. The worker is focused on their task, which involves connecting steel bars together. They are standing in a large warehouse-like building, which is filled with steel bars of various sizes and shapes. Some steel bars are stacked together, while others are arranged in a circle around the worker. The worker is standing in the center of this circle of steel bars, and they are holding a long piece of steel.", - "id": 2766 + "image_path": "G:\\images\\combined\\00d3bc72520af34d.jpg", + "response": "A group of men are playing baseball on a field. They are wearing uniforms and using baseball gloves. There is a crowd of people watching the game from the stands. Some players are standing on the field, while others are in the dugout.", + "id": 33370 }, { - "image_path": "G:\\images\\combined\\004822_jpg.rf.9782e1b3e6f3a5b2b98e43090635030e.jpg", - "response": "A worker is standing in front of a large metal furnace with a shovel. The worker is wearing a yellow helmet and grey uniform. The background is blurred and there is text on the right bottom corner that says \"\u5317\u4eac\u7db2\".", - "id": 2767 + "image_path": "G:\\images\\combined\\00d3ca35721256a5.jpg", + "response": "A person holding a playbill for a play called Posterity.", + "id": 33371 }, { - "image_path": "G:\\images\\combined\\004823_jpg.rf.6ae4bedc41a78a79cb043e84182a4315.jpg", - "response": "A group of three construction workers working on a building site.", - "id": 2768 + "image_path": "G:\\images\\combined\\00d4032b2e2efeba.jpg", + "response": "A man wearing a red, white, and blue hat is riding in the back of a truck.", + "id": 33372 }, { - "image_path": "G:\\images\\combined\\004824_jpg.rf.f3a945037b9f3bf2efee86769d77ca1d.jpg", - "response": "An electrician fixing an electricity cable on a pole", - "id": 2769 + "image_path": "G:\\images\\combined\\00d419271e7f6568.jpg", + "response": "A book cover with the title \"Hanoi\" on the cover.", + "id": 33373 }, { - "image_path": "G:\\images\\combined\\004825_jpg.rf.c0798973a9d475dddc2d6c01294d82e5.jpg", - "response": "A worker in an orange jumpsuit and yellow hard hat is on a ladder, climbing up to the top of a tower. The tower is made of metal and is set against a foggy, tree-filled background.", - "id": 2770 + "image_path": "G:\\images\\combined\\00d457b6a730342a.jpg", + "response": "A Lego man is standing next to a Lego car.", + "id": 33374 }, { - "image_path": "G:\\images\\combined\\004826_jpg.rf.a9ba9543b337cb183d67cd82407abb3b.jpg", - "response": "The image shows two workers on a bridge, with one on the left and one on the right, both wearing red helmets and grey uniforms. They are standing on the black asphalt of the bridge, which has a fine gravel surface. The bridge has a red railing on the left side and a tall concrete pylon on the right. In the background, there are some buildings and a car on the road.", - "id": 2771 + "image_path": "G:\\images\\combined\\00d480fe5f01a039.jpg", + "response": "A calculator with the numbers 30 on the screen.", + "id": 33375 }, { - "image_path": "G:\\images\\combined\\004827_jpg.rf.1c2da2ad35763c5651f91d8ab5c2d059.jpg", - "response": " Kim Jong Un(284,305),(715,997) looking at a model of the Ryomyong Street residential area", - "id": 2772 + "image_path": "G:\\images\\combined\\00d4bc290247966b.jpg", + "response": "A Harley Davidson motorcycle with the logo on the front.", + "id": 33376 }, { - "image_path": "G:\\images\\combined\\004828_jpg.rf.c7ec0c249ed48d33193c76b409938b4e.jpg", - "response": "The image shows a construction site with a large concrete circular structure under construction. The structure, which is surrounded by wooden scaffolding, is about three stories tall and has a diameter of about 30 meters. The walls of the structure are smooth and white, and there is a yellow walkway inside.", - "id": 2773 + "image_path": "G:\\images\\combined\\00d4daa87212bcaa.jpg", + "response": "A man sitting in the cockpit of a small red and white airplane.", + "id": 33377 }, { - "image_path": "G:\\images\\combined\\004829b39a65de73.jpg", - "response": "A man standing in front of a large screen with the words \"Make more time to be creative\" on it.", - "id": 2774 + "image_path": "G:\\images\\combined\\00d52121e1ba3a2b.jpg", + "response": "A bathroom with two toilets in it. One is white and one is red.", + "id": 33378 }, { - "image_path": "G:\\images\\combined\\004829_jpg.rf.4f3daceac0a35369cc4940d2f3a167ff.jpg", - "response": "The image shows two workers in yellow helmets and green camouflage uniforms repairing power lines on a city street. They are standing on ladders and using tools. In the background, there is a building with signs in Chinese.", - "id": 2775 + "image_path": "G:\\images\\combined\\00d6242640a1dddd.jpg", + "response": "A dirt road with trees on both sides and a speed limit sign in front of it.", + "id": 33379 }, { - "image_path": "G:\\images\\combined\\004831_jpg.rf.189dea0918147e189ef6ec16c6e3bd3c.jpg", - "response": "In the image there is a worker wearing a yellow hard hat and a black shirt. They are working with a large spool of wire that is wrapped in silver. The worker is also holding a smaller spool of wire. The background is a large industrial machine.", - "id": 2776 + "image_path": "G:\\images\\combined\\00d6cb1aaff62b31.jpg", + "response": "a sign in the woods pointing to a trail", + "id": 33380 }, { - "image_path": "G:\\images\\combined\\004832_jpg.rf.c4945e43210164b1fa4a19b2dee8a9c8.jpg", - "response": "a group of people standing in front of a car", - "id": 2777 + "image_path": "G:\\images\\combined\\00d72239463dc745.jpg", + "response": "A woman standing next to a sign for the village of North Riverside.", + "id": 33381 }, { - "image_path": "G:\\images\\combined\\004833_jpg.rf.ccf25818f022788a27c3c32dfd1deb19.jpg", - "response": "A group of men working on an electricity pylon.", - "id": 2778 + "image_path": "G:\\images\\combined\\00d763761e47f723.jpg", + "response": "A silver car parked in a parking lot in front of a building.", + "id": 33382 }, { - "image_path": "G:\\images\\combined\\004834_jpg.rf.79c0a6301508120b703d4b55ba65826a.jpg", - "response": "A worker repairs a wall of the former residence of late Chinese leader Mao Zedong in Shaoshan, China, 2008.", - "id": 2779 + "image_path": "G:\\images\\combined\\00d7dce5b15ec59b.jpg", + "response": "The image shows the cockpit of a small white airplane with two seats. The cockpit has a clear canopy and is surrounded by a white frame. The plane has two red stripes on the top of the wings, with the name \"lt irwin nelson\" and \"lt pogo reid\" written on them. The plane also has a few warning stickers on the side. The image is taken in a hanger.", + "id": 33383 }, { - "image_path": "G:\\images\\combined\\004836_jpg.rf.d491b9e576f44ea74617b131db86cda8.jpg", - "response": "The image shows two workers suspended in the air while working on a large metal structure. They are both wearing white shirts, beige pants, and blue hard hats. One worker is on the left side of the image and is holding a tool in each hand, one of which appears to be a drill. The other worker is on the right side of the image and is hooking a tool to their belt. They are also holding a tool in each hand. The workers are wearing harnesses to secure them to the structure while they work. The sky behind them is blue and cloudless.", - "id": 2780 + "image_path": "G:\\images\\combined\\00d80e6c5d66b572.jpg", + "response": "A bus with graffiti on the side of it.", + "id": 33384 }, { - "image_path": "G:\\images\\combined\\004837_jpg.rf.2e112cc89bbfef6404934445ec086961.jpg", - "response": "A group of people wearing hard hats and posing for a picture in front of a building.", - "id": 2781 + "image_path": "G:\\images\\combined\\00d96598f45536e8.jpg", + "response": "Three Pringles cans with the image of Darth Vader on them.", + "id": 33385 }, { - "image_path": "G:\\images\\combined\\004838_jpg.rf.f69bfcab8e99d60c3e8170208c68c3b0.jpg", - "response": "A man wearing a yellow hard hat and work clothes is working on a construction site. He is standing under a metal grid and holding a long blue rod. There are several other people working on the site as well. The man is wearing a watch on his left wrist.", - "id": 2782 + "image_path": "G:\\images\\combined\\00d9b70599008429.jpg", + "response": "a woman wearing a green tank top that says W&DAC on it.", + "id": 33386 }, { - "image_path": "G:\\images\\combined\\004839_jpg.rf.ed477b0e4069abe33814dc332d901282.jpg", - "response": "A worker in a yellow hat and grey jumper repairs power lines.", - "id": 2783 + "image_path": "G:\\images\\combined\\00d9db3d2c186504.jpg", + "response": "A red bus is driving down the street.", + "id": 33387 }, { - "image_path": "G:\\images\\combined\\004840_jpg.rf.0a90886b5cd916d5879fb76762348c87.jpg", - "response": "A group of men in yellow jackets are working on a train track. They are all wearing hard hats and some have on yellow jackets. They are working on a train track and one man is holding a large metal pipe.", - "id": 2784 + "image_path": "G:\\images\\combined\\00da4ea73b5cf8b1.jpg", + "response": "A young boy in a blue baseball jersey is getting ready to swing at a pitch. He is positioned in the batter's box with his bat raised. The catcher is positioned behind the batter, wearing a black shirt and holding out his glove. There is a man standing behind the fence, watching the game. Another person is visible in the background.", + "id": 33388 }, { - "image_path": "G:\\images\\combined\\004841_jpg.rf.f0df22904132449151fba100f0bee109.jpg", - "response": "Several firemen(63,757),(245,997)(218,599),(400,997)(410,658),(723,987)(279,333),(488,779)(627,366),(830,995) inred helmets(279,332),(401,433)(453,253),(546,350)(427,659),(562,812)(287,821),(388,959)(498,453),(601,591)(87,758),(188,865) andblack uniforms(64,833),(244,997)(219,717),(400,997)(639,468),(829,995)(408,799),(722,997) are huddled together", - "id": 2785 + "image_path": "G:\\images\\combined\\00da8c5007a9b0a1.jpg", + "response": "A woman sitting at a desk with a piece of paper in her hand.", + "id": 33389 }, { - "image_path": "G:\\images\\combined\\004842_jpg.rf.848d56519f08de754736063c0f46e045.jpg", - "response": "The image shows two workers in orange hardhats and grey shirts, one worker is on the left and the other is on the right. They are in the process of cutting through a steel cable with a large grey industrial cutting tool. The sky is blue with clouds.", - "id": 2786 + "image_path": "G:\\images\\combined\\00dac2ec09eeb21a.jpg", + "response": "A black and silver laptop keyboard with a Nano NGS flash drive plugged into the side.", + "id": 33390 }, { - "image_path": "G:\\images\\combined\\004843_jpg.rf.69dc282fe0c9bcb4ea70d0f898044d52.jpg", - "response": "A construction site with multiple workers in red shirts.", - "id": 2787 + "image_path": "G:\\images\\combined\\00dc8d2d1dbd234b.jpg", + "response": "A red grill with food on it.", + "id": 33391 }, { - "image_path": "G:\\images\\combined\\004844_jpg.rf.d25b9500c188ff1a63040e6f3796bf77.jpg", - "response": "A group of men working on a construction site.", - "id": 2788 + "image_path": "G:\\images\\combined\\00dcb1776e8d6c2a.jpg", + "response": "The image is a collage with three pictures. The top picture is of a planet with a building in the foreground. The middle picture is a Bible with the words \"New World Translation of the Holy Scriptures\" written on it. The bottom picture is of a bird sitting on a tree branch in front of a sun. The words \"O AMOR\" are written in Portuguese in the bottom right corner. Underneath that, it says \"Persevera em todas as coisas O AMOR NUNCA FALHA.\" and the verse \"1 Cor\u00edntios 13:7,8\" is written in gold.", + "id": 33392 }, { - "image_path": "G:\\images\\combined\\004845_jpg.rf.dba1f43bdd1bdb82bb9e4254a9dbc356.jpg", - "response": "A construction site with a yellow and black sign that says \u201c\u5b89\u5168\u7b2c\u4e00 \u9884\u9632\u4e3a\u4e3b\u201d in Simplified Chinese.", - "id": 2789 + "image_path": "G:\\images\\combined\\00dd6d93c5a03b9f.jpg", + "response": "A keyboard is sitting on a desk with papers and a Carnival Cruise paper laying on top of it.", + "id": 33393 }, { - "image_path": "G:\\images\\combined\\004846_jpg.rf.750ca77171427e706e8cd1dd1707de27.jpg", - "response": "The image shows two workers at a shipyard. One worker is on the left, wearing a yellow hard hat and has his left hand on a hook, holding a large piece of metal that is being lowered by a crane. The other worker is on the right, wearing a white hard hat and is looking up at the first worker. They are both wearing safety vests. In the background, there is a large ship with a red exterior and white interior, with a crane lifting a large piece of metal towards the ship. The ship is sitting on land, and there is a concrete platform in front of it. The workers are surrounded by other equipment, including a large metal cylinder on the left and a metal platform on the right. The sky is blue, and there are no other people in the image.", - "id": 2790 + "image_path": "G:\\images\\combined\\00dd785b54674737.jpg", + "response": "In the image, there are two baseball players standing on a baseball field. One of the players is wearing a red and white uniform, and the other is wearing a gray and black uniform. They are positioned near the bases, with one player closer to third base and the other closer to first base.", + "id": 33394 }, { - "image_path": "G:\\images\\combined\\004847_jpg.rf.177353932a9814b62f041fa7438ebb4a.jpg", - "response": "In the image there is a person wearing a yellow construction hat and a grey shirt. The person is holding a cell phone in their right hand and is covering their face with their left arm. The person is standing in an unfinished building with bare walls and a concrete floor. In the foreground, there are two small sticks planted in the ground and a white board.", - "id": 2791 + "image_path": "G:\\images\\combined\\00dea1edf14f09ab.jpg", + "response": "An ambulance parked on the side of the road.", + "id": 33395 }, { - "image_path": "G:\\images\\combined\\004848_jpg.rf.2bbbed7ca169712ba6d7bc0f51db29d4.jpg", - "response": "In the image two workers are building a structure. In the left side of the image a man is wearing a yellow helmet and a yellow vest. He is holding a yellow helmet in his left hand and a shovel in his right hand. He is walking up some stairs. In the right side of the image a man is wearing a yellow helmet and green gloves. He is holding a white tube in his left hand and a green tool in his right hand. He is in the process of climbing a metal structure. The workers are building a structure that is in the process of construction.", - "id": 2792 + "image_path": "G:\\images\\combined\\00deaa8108d6b4dc.jpg", + "response": "Two children sitting at a table working on a school project.", + "id": 33396 }, { - "image_path": "G:\\images\\combined\\004849_jpg.rf.0b4205abe7e9bd732cbac5ba9b87adca.jpg", - "response": "In the foreground two workers are fixing a power line. In the background on the left a large rock and a small forest. On the right a building under construction with four large columns.", - "id": 2793 + "image_path": "G:\\images\\combined\\00ded642f2ed47b2.jpg", + "response": "A refrigerator with a green sign on it that says \"BRAUEREI LOSCHER\". There are several bottles of beer on top of the refrigerator.", + "id": 33397 }, { - "image_path": "G:\\images\\combined\\004850_jpg.rf.e880b1caf198209f104d41b459bbbbca.jpg", - "response": "A man in a red hard hat and grey coveralls is working on a metal sheet at a construction site.", - "id": 2794 + "image_path": "G:\\images\\combined\\00df620fc2790ae5.jpg", + "response": "The box for the Teenage Mutant Ninja Turtles set 79100, Kraang Lab Escape. The box is green with the logo in the top left corner and the recommended ages 5-12 in the top right corner. In the bottom left corner is a picture of a turtle being attacked by two robots. In the top right corner is a picture of two turtles fighting.", + "id": 33398 }, { - "image_path": "G:\\images\\combined\\004851_jpg.rf.23b7630b9ff1ca0acba910d3966a0bfd.jpg", - "response": "A group of people stand on the side of the road as a man in a cherry picker works on a tree.", - "id": 2795 + "image_path": "G:\\images\\combined\\00df83bcbdcfa980.jpg", + "response": "A watch with the number 5198 on it.", + "id": 33399 }, { - "image_path": "G:\\images\\combined\\004852_jpg.rf.1cf472a95dd86ebf20f5fd7b8b156337.jpg", - "response": "A group of five men standing outside.", - "id": 2796 + "image_path": "G:\\images\\combined\\00dfc79e002d7ee3.jpg", + "response": "A group of people standing on a race winner podium.", + "id": 33400 }, { - "image_path": "G:\\images\\combined\\004853_jpg.rf.fd134dd47f65edc4c5522d57ffca0670.jpg", - "response": "In the image, two electrical workers are seen wearing blue and white uniforms and helmets. They are working on a large white and blue electric cabinet. One of them is holding a blue screwdriver and is fixing a part of the electric board. Another worker is seen in the left side of the image.", - "id": 2797 + "image_path": "G:\\images\\combined\\00e0241176635b5b.jpg", + "response": "the Eldoret sign is red and white(273,478),(458,862)", + "id": 33401 }, { - "image_path": "G:\\images\\combined\\004855_jpg.rf.79ba4e7351494fdbc3b31292659ee332.jpg", - "response": "A man in a suit and hard hat is looking at blueprints with another man. The man in the suit is wearing a white hard hat and the man in the yellow hard hat is wearing a yellow vest. They are standing in front of a bulldozer.", - "id": 2798 + "image_path": "G:\\images\\combined\\00e0422e47cdbeb7.jpg", + "response": "An ambulance with a driver wearing protective gear and a patient in the back, in a remote area of Sierra Leone.", + "id": 33402 }, { - "image_path": "G:\\images\\combined\\004856_jpg.rf.b4c2833783c58c13d572f57a89aaa53a.jpg", - "response": "A worker in a hard hat and blue coveralls is using a long tool to stir something that is on fire in a large metal container. The container is black and has two doors. The worker is on the right side of the image and is looking down at the task at hand.", - "id": 2799 + "image_path": "G:\\images\\combined\\00e149ece9f3972a.jpg", + "response": "A baseball player wearing a white jersey with the number 22 on the back.", + "id": 33403 }, { - "image_path": "G:\\images\\combined\\004857_jpg.rf.53d77a10dec454c539e5b61a2f398cda.jpg", - "response": " Construction workers(569,207),(683,721)(786,180),(842,414) are seen working on a construction site", - "id": 2800 + "image_path": "G:\\images\\combined\\00e1868250bff33c.jpg", + "response": "A person wearing a white jersey is playing ice hockey on a rink.", + "id": 33404 }, { - "image_path": "G:\\images\\combined\\004858_jpg.rf.2869da641606a2af9ed1bf4a2ebc6fa4.jpg", - "response": "Men(249,305),(401,759)(550,273),(690,752)(369,298),(488,711)(681,343),(808,702) walking on a dirt road", - "id": 2801 + "image_path": "G:\\images\\combined\\00e1a21cfef5fe80.jpg", + "response": "A bottle of wine with a red and white label.", + "id": 33405 }, { - "image_path": "G:\\images\\combined\\004859_jpg.rf.d1dd5dd979d209f962bb7431e6d8b6b8.jpg", - "response": "The image shows two workers on a roof. They are wearing yellow hard hats and work clothes. The man on the left is sitting on the roof and is holding a drill. The man on the right is kneeling down and is holding a ladder. They are both working on a structure made of concrete.", - "id": 2802 + "image_path": "G:\\images\\combined\\00e1dee010109e09.jpg", + "response": "A row of buses are parked in a lot.", + "id": 33406 }, { - "image_path": "G:\\images\\combined\\004860_jpg.rf.907f348cc4a82f6a860c360fb1d25669.jpg", - "response": "A worker in a hard hat and mask is using a shovel to scrape the side of a large metal cylinder. The worker is wearing a brown uniform and is standing in a dark room. There is a large metal cylinder to the right of the worker and another one behind them. A second worker is partially visible on the left, they are holding a tool.", - "id": 2803 + "image_path": "G:\\images\\combined\\00e2e61cc0b8b5f5.jpg", + "response": "A poster for a performance of Tari Kali.", + "id": 33407 }, { - "image_path": "G:\\images\\combined\\004861_jpg.rf.4cd95608b4b7dc3d139ca6e96286d218.jpg", - "response": "a group of men working on a cement wall", - "id": 2804 + "image_path": "G:\\images\\combined\\00e3bf5e2d0f4368.jpg", + "response": "A man with spiky black hair is talking on a cell phone. He is wearing a red jacket and a ring on his left hand. The background is blurry and there are white lights in the scene.", + "id": 33408 }, { - "image_path": "G:\\images\\combined\\004862_jpg.rf.9090e8a1ecadd7009351ae474c3ae143.jpg", - "response": "A man and a woman wearing red helmets are looking at a yellow device. The woman is wearing a white T-shirt and a red helmet. The man is also wearing a red helmet. The woman has black hair and is looking at the man. The man is wearing a white shirt with the left chest bearing the words \"\u4e2d\u56fd\u4e2d\u94c1\" and below it, the word \"\u96a7\u9053\u5c40\". The woman is wearing a white T-shirt with a black pattern on the right sleeve. The man is holding a yellow device in his hand. The woman is holding a cell phone in her hand. The background is a construction site with a rock in the upper left corner.", - "id": 2805 + "image_path": "G:\\images\\combined\\00e427d5a9dd7e86.jpg", + "response": "A bus stop advertisement for Street Easy.", + "id": 33409 }, { - "image_path": "G:\\images\\combined\\004863_jpg.rf.9a96ec454a96e9d9c0f8e10312fd4cbf.jpg", - "response": "A couple of men working at a construction site.", - "id": 2806 + "image_path": "G:\\images\\combined\\00e43fc3dd6c1cf5.jpg", + "response": "A man wearing a blue shirt is pointing to a projection screen.", + "id": 33410 }, { - "image_path": "G:\\images\\combined\\004864_jpg.rf.068c86545cce9bb29bfe3d9de2ec5d74.jpg", - "response": "A construction site with multiple workers and construction vehicles.", - "id": 2807 + "image_path": "G:\\images\\combined\\00e46aa8a1d0a592.jpg", + "response": "A close up of a box of electronic equipment on a counter. The box is red and black and says \"ULTRA\" in big black letters on the side. There is a small blue light on top of the box. Next to the box is a white and black manual for the equipment. The manual has a picture of a guitar and says \"G1100-PROFESSIONAL ACTIVESWITCHABLE 4X12 CABINET SIMULATION\" in black letters on the cover.", + "id": 33411 }, { - "image_path": "G:\\images\\combined\\004865_jpg.rf.6d03455efb079c81d3027a9d486ebda9.jpg", - "response": "A man in a yellow and blue uniform looking at a large piece of equipment.", - "id": 2808 + "image_path": "G:\\images\\combined\\00e47b8dd70f4c4b.jpg", + "response": "The image shows three men walking down a sidewalk next to a street. They are all carrying guitars or bass guitars, and appear to be musicians. The men are all wearing different outfits, and the one on the left is carrying a black guitar. The man in the middle is carrying a black guitar and a black bag, and the man on the right is carrying a red guitar and a red bag. There are several cars parked along the street, and a few potted plants are visible in the scene.", + "id": 33412 }, { - "image_path": "G:\\images\\combined\\004866_jpg.rf.1eefc656823710ddd7e06ab005268d23.jpg", - "response": "In the image, a worker is standing in a dark tunnel with a large yellow machine with wheels in the background. The worker is wearing a yellow helmet and orange vest. The worker is also holding a shovel. In the foreground, there is a pile of rubble on the right side of the image. The photo is credited to China News Service.", - "id": 2809 + "image_path": "G:\\images\\combined\\00e54c24a0ef891d.jpg", + "response": "A street sign that says Boulevard on it.", + "id": 33413 }, { - "image_path": "G:\\images\\combined\\004867_jpg.rf.ac0a820c1f89e781be23b3cb7e436505.jpg", - "response": "A man and a woman in business attire are standing in front of a man in a grey suit and a man in a black suit. They are standing in front of a mountain and a village that has been destroyed. There are piles of grey rocks and a pile of grey gravel. There is a black SUV parked on the left side of the image and a white truck parked on the right side of the image.", - "id": 2810 + "image_path": "G:\\images\\combined\\00e5988f1600409b.jpg", + "response": "A group of women in matching blue and white outfits.", + "id": 33414 }, { - "image_path": "G:\\images\\combined\\004868_jpg.rf.96412258077a5e7a31748503e0bac92e.jpg", - "response": "A construction site with a few people working. There is a large red metal structure in the middle of the site and a few people are working under it. Some of them are wearing hard hats. In the background, there is a blue metal structure and a few cranes. The ground is wet and there are several cables and rebar scattered around.", - "id": 2811 + "image_path": "G:\\images\\combined\\00e6391c77cff4de.jpg", + "response": "A woman standing behind a table filled with many different types of oils.", + "id": 33415 }, { - "image_path": "G:\\images\\combined\\004869_jpg.rf.3ab8031e8aed92e7248afa9acbb5f259.jpg", - "response": "A group of three men in orange hats and blue overalls are painting the inside of a house. They are each holding a pole with a brush on the end. One man is painting the ceiling, one man is painting the wall, and one man is painting the window frame.", - "id": 2812 + "image_path": "G:\\images\\combined\\00e69701a85ee1a3.jpg", + "response": "A train station with a train on the tracks.", + "id": 33416 }, { - "image_path": "G:\\images\\combined\\004870_jpg.rf.877c19b93d7a8bd8beebf1b28dd355ee.jpg", - "response": "A photo of Kim Jong-un, leader of North Korea, talking to a group of men in front of a building under construction. They are standing in front of a large building with a banner in the background. The men are wearing suits and the photo is taken from the front.", - "id": 2813 + "image_path": "G:\\images\\combined\\00e89628f7bf6d68.jpg", + "response": "A car is parked in front of a large building with a big clock on it. The building is a store that sells clocks.", + "id": 33417 }, { - "image_path": "G:\\images\\combined\\004871_jpg.rf.f1a8bf930ea10d26f8c658ae15d6dd6c.jpg", - "response": "A man in a blue shirt and yellow hat working on a piece of wood.", - "id": 2814 + "image_path": "G:\\images\\combined\\00e8e5e79255536f.jpg", + "response": "A white car parked on the side of a street.", + "id": 33418 }, { - "image_path": "G:\\images\\combined\\004872_jpg.rf.d33491258af2de83d874e78d69a83636.jpg", - "response": "A man in a shirt and tie talking to a man in a hard hat and safety glasses.", - "id": 2815 + "image_path": "G:\\images\\combined\\00e942ce767e4d58.jpg", + "response": "A black and white photo of an orange with leaves growing on it. The orange is being held in a vice.", + "id": 33419 }, { - "image_path": "G:\\images\\combined\\004873_jpg.rf.e9bbc51cf54e3672ac57baf0b5cf439d.jpg", - "response": "A woman in a blue shirt is talking on a cell phone. She is smiling and holding a blueprint. In the background, there are two men wearing orange vests and hard hats. One of the men is looking at a white car. There is also a building under construction with a white roof.", - "id": 2816 + "image_path": "G:\\images\\combined\\00e9e161b832fb2a.jpg", + "response": "A busy city street filled with traffic and pedestrians.", + "id": 33420 }, { - "image_path": "G:\\images\\combined\\004874_jpg.rf.fb6035aa1c172990a1c50d690224bf52.jpg", - "response": "The image shows a group of construction workers working on a project in a tunnel. They are wearing hard hats and work clothes. The workers are standing in a large pit, surrounded by wooden posts. Some of the workers are using shovels and other tools to complete the project.", - "id": 2817 + "image_path": "G:\\images\\combined\\00e9ff4c6baa2ab6.jpg", + "response": "A street scene with a silver SUV parked on the side of the road. There is a small restaurant called \"The Corner\" with a neon sign. A one-way sign is visible, and there is a fire hydrant on the sidewalk. People are walking on the sidewalk, and there is snow on the ground.", + "id": 33421 }, { - "image_path": "G:\\images\\combined\\004875_jpg.rf.de2237945a6cfcab43379f3c5fe14374.jpg", - "response": "In the image there is a woman standing in a mechanical room wearing a yellow hard hat and holding a clipboard. She is wearing a red and black flannel shirt and a yellow tool belt. She is checking pipes and looking at a clipboard.", - "id": 2818 + "image_path": "G:\\images\\combined\\00ea362de70610ac.jpg", + "response": "A bottle of 1982 Mayacamas Cabernet Sauvignon next to a wine glass filled with red wine.", + "id": 33422 }, { - "image_path": "G:\\images\\combined\\004876_jpg.rf.20eaab036c2919f20e797b831bc01164.jpg", - "response": "The image shows two workers in yellow hard hats on a construction site. They are standing in a lift, working on a power line. The power line is attached to a yellow pole.", - "id": 2819 + "image_path": "G:\\images\\combined\\00eb06ce368a9b9b.jpg", + "response": "A Pepsi truck with the Pepsi logo on the side.", + "id": 33423 }, { - "image_path": "G:\\images\\combined\\004877_jpg.rf.d94ac03f7b4dac804ff1472f9eb5d38f.jpg", - "response": "A man fixing another mans hard hat.", - "id": 2820 + "image_path": "G:\\images\\combined\\00eb68f98de1661c.jpg", + "response": "a poster of a man with a bald head and a receding hairline, with a few strands of hair left on top. He has a frowning expression and is looking upwards. He has piercing blue eyes and is wearing earrings. He is wearing a green shirt with a brown vest over it. The word Bored & Old is written in orange and black on the bottom of the poster.", + "id": 33424 }, { - "image_path": "G:\\images\\combined\\004878_jpg.rf.038ba510ea768af22b3c2ccfb29aa837.jpg", - "response": "The image shows a construction site with two workers standing in the foreground. The workers are wearing hard hats and are looking in the same direction. In the background, there are several other people scattered around the site. There are two cranes operating in the far background. The sky is overcast.", - "id": 2821 + "image_path": "G:\\images\\combined\\00eb87bac63c9ec9.jpg", + "response": "A man in a red toy car driving past a formation of toy motorcycles.", + "id": 33425 }, { - "image_path": "G:\\images\\combined\\004879_jpg.rf.c8d7bea0f127356d70ef48e3415aa176.jpg", - "response": "A group of workers carry an injured comrade away from the construction site.", - "id": 2822 + "image_path": "G:\\images\\combined\\00ebd076f2986d38.jpg", + "response": "A black and white photo of a train sitting at a station.", + "id": 33426 }, { - "image_path": "G:\\images\\combined\\004880_jpg.rf.3b21fae1d859bc14b7399b9a1b9bf839.jpg", - "response": "The image shows two construction workers on a building site. They are both wearing yellow hard hats and holding a sign that says 'Rabbits get 2 weeks off, we get 1 month'. The sign is held in front of them and they are both smiling. They are standing in front of a large construction site with several tall buildings under construction.", - "id": 2823 + "image_path": "G:\\images\\combined\\00ebf08a1a6e045c.jpg", + "response": "The basketball player in white is dribbling the ball while the player in black is guarding him. There are several other players on the court, some with their arms raised and others sitting on the bench. The bench has several people sitting on it, some with their arms crossed and others with their hands on their knees. There are also two people standing behind the court, one with their hands on their hips and the other with their hands on their knees. The court is surrounded by orange chairs and there are several other people in the background.", + "id": 33427 }, { - "image_path": "G:\\images\\combined\\004882_jpg.rf.0c52bdda64eeab418a945af3985c6963.jpg", - "response": "The image shows four construction workers on a building site. They are all wearing white hard hats and two of them are wearing green and brown camouflage shirts. The three workers standing on the left are all holding grey pipes while the worker on the right is holding an orange tool. They are all working on a large area of concrete with many metal bars.", - "id": 2824 + "image_path": "G:\\images\\combined\\00ec8cd414486cdb.jpg", + "response": "A bottle of Nopal oil with a cork stopper and brown glass bottle. The label is white and says \"Nopal Oil Precious Oil\" in white font.", + "id": 33428 }, { - "image_path": "G:\\images\\combined\\004883_jpg.rf.84da924ebd3d77f06b8095a3410cd333.jpg", - "response": "A man wearing a yellow hard hat and yellow vest standing in front of a yellow Caterpillar tractor with a white cab at a construction site.", - "id": 2825 + "image_path": "G:\\images\\combined\\00ec8fa225899817.jpg", + "response": "A poster of the movie \"My Dearest Daughter\" which has won three national awards.", + "id": 33429 }, { - "image_path": "G:\\images\\combined\\004884_jpg.rf.e9061a9d45e02d1bdf049991889cf666.jpg", - "response": "A group of workers are working on a building.", - "id": 2826 + "image_path": "G:\\images\\combined\\00ecc16a9eb4a5ed.jpg", + "response": "A collage of a red British postbox. The postbox is located on the side of a street. The postbox has the letters SR1 18 on it. The postbox is red with a gold crown on the top left hand corner. The postbox has a gold GPO logo on the front. The postbox is next to a row of shops. The street is empty. There are two traffic lights on the street. One traffic light is on the left hand side and the other is on the right hand side. There is a person walking down the street. The person is wearing a black coat and has a black umbrella. The umbrella is open. The person is walking towards the shops. The shops are on the right hand side of the street. The first shop is a art store. The second shop is a business that sells sports equipment. The third shop is a business that sells antiques. The fourth shop is a business that sells books. The fifth shop is a business that sells toys. The sixth shop is a business that sells shoes. The seventh shop is a business that sells clothing. The eighth shop is a business that sells furniture. The ninth shop is a business that sells electronics. The tenth shop is a business that sells jewelry. The eleventh shop is a business that sells beauty products. The twelfth shop is a business that sells home decor. The thirteenth shop is a business that sells health and wellness products. The fourteenth shop is a business that sells food and drink. The fifteenth shop is a business that sells home improvement products. The sixteenth shop is a business that sells home decor. The seventeenth shop is a business that sells pet supplies. The eighteenth shop is a business that sells electronics. The nineteenth shop is a business that sells toys. The twentieth shop is a business that sells books. The twenty first shop is a business that sells sporting goods. The twenty second shop is a business that sells furniture. The twenty third shop is a business that sells home decor. The twenty fourth shop is a business that sells electronics. The twenty fifth shop is a business that sells pet supplies. The twenty sixth shop is a business that sells sporting goods. The twenty seventh shop is a business that sells furniture. The twenty eighth shop is a business that sells home decor. The twenty ninth shop is a business that sells electronics. The thirtieth shop is a business that sells pet supplies. The thirtieth shop is a business that sells sporting goods. The thirti", + "id": 33430 }, { - "image_path": "G:\\images\\combined\\004885_jpg.rf.0513c5ee468c3ff078470207faa258b9.jpg", - "response": "A group of firefighters huddle around a fire hose and spray water from a fire extinguisher at a construction site.", - "id": 2827 + "image_path": "G:\\images\\combined\\00ecd56cf003cd6e.jpg", + "response": "a traffic light with the number 6 on it", + "id": 33431 }, { - "image_path": "G:\\images\\combined\\004886_jpg.rf.fc140f0413c5d45b9056674163401f82.jpg", - "response": "The image shows two rescue workers in orange snow suits and blue hard hats hiking up a snowy trail. They are carrying snow tools and walking through the woods. The trail is covered in a light snow and the trees on either side are covered in snow as well.", - "id": 2828 + "image_path": "G:\\images\\combined\\00ed9ed1b8023c44.jpg", + "response": "A passenger train is pulling into the station.", + "id": 33432 }, { - "image_path": "G:\\images\\combined\\004887_jpg.rf.3793c891b07f5062b816eae287e72a30.jpg", - "response": "The image shows a group of people standing inside a large tunnel. The tunnel is made of concrete and has a curved ceiling. The group consists of between 6 and 9 people, most of them wearing white hard hats. Some of the people are also wearing red hard hats. One person on the right is wearing a blue hard hat. The people are standing on a concrete platform that runs along the left wall of the tunnel.", - "id": 2829 + "image_path": "G:\\images\\combined\\00ee02cc29bf07e2.jpg", + "response": "A man in a safety vest is working on a train.", + "id": 33433 }, { - "image_path": "G:\\images\\combined\\004888_jpg.rf.1dabd85eea09a731fbeddb2337293556.jpg", - "response": "The image shows a construction site with several workers. There is a large pile of grey gravel on the left side of the image. In the center of the image, there is a man in a white hard hat and black jacket using a tool to pour concrete onto a grid of metal rebar. Another man in a yellow hard hat and brown jacket is holding a hose, and a man in a blue jacket is pouring concrete from a bucket. A man in a white hard hat is on the far right of the image, and another man in a black jacket is on the far left.", - "id": 2830 + "image_path": "G:\\images\\combined\\00eee630d7cc202b.jpg", + "response": "A large train yard with many different trains and train cars.", + "id": 33434 }, { - "image_path": "G:\\images\\combined\\004891_jpg.rf.4e020ca0d70767680aa74bc47878d2c3.jpg", - "response": "A couple of workers in orange jumpsuits and hard hats are working on a large metal pipe. One of the workers is using a large wrench on the pipe while the other is cutting the pipe with a saw. There are some cut pieces of the pipe lying on the ground.", - "id": 2831 + "image_path": "G:\\images\\combined\\00ef7a8de38d6ac8.jpg", + "response": "The image is an open book with a purple border. The pages contain text and photos. The photos are black and white and show scenes from movies. The book is open to two pages that show scenes from the movies \"The Sound of Music\" and \"Gone with the Wind\".", + "id": 33435 }, { - "image_path": "G:\\images\\combined\\004892_jpg.rf.1ca4cd05ac0f2d1bcb509e206128fda0.jpg", - "response": "A group of men walking across a dirt field.", - "id": 2832 + "image_path": "G:\\images\\combined\\00efdc3a911667f2.jpg", + "response": "A large billboard featuring a picture of a woman in a bikini is displayed on a building. The image is taken on a street corner with a crosswalk and a traffic light. There is a person walking on the sidewalk and a car and a motorcycle are present in the scene.", + "id": 33436 }, { - "image_path": "G:\\images\\combined\\004894_jpg.rf.fbdb173fb2f295f5d742c47ae1c3ac51.jpg", - "response": "The image shows a group of people standing in a parking lot next to a building. They are all wearing hard hats. In the foreground on the left, there is a man who is talking to another man. To the right of the first man, there is a man holding a briefcase. Further to the right, there is a woman wearing a dress and a hard hat. In the background, there is a building with a sign that says \"China\". There is also a mountain in the background.", - "id": 2833 + "image_path": "G:\\images\\combined\\00efe4b4aa33acf5.jpg", + "response": "The image shows a busy airport runway with several airplanes parked on the tarmac. There are at least nine airplanes visible in the scene, with some of them being large and occupying most of the runway. The airplanes are lined up next to each other, with some parked close together and others spaced out slightly more. \n\nIn addition to the airplanes, there are several cars on the runway. These cars are likely being used to transport people or cargo between the planes and the terminal. Some of the cars are close to the airplanes, while others are further away on the tarmac. \n\nThe sky above the airport is a mix of light and dark clouds, suggesting that the weather may be overcast or that a storm is approaching. Overall, the scene is a bustling airport environment with plenty of activity taking place.", + "id": 33437 }, { - "image_path": "G:\\images\\combined\\004895_jpg.rf.25b67281663cb4d94048848f059f7f9e.jpg", - "response": "In the image there is a person wearing a blue uniform and a yellow hard hat. They are sitting on a red metal scaffold and holding a clear plastic bottle. The person are drinking from the bottle. There are several rungs of a metal ladder around the person and the background is white.", - "id": 2834 + "image_path": "G:\\images\\combined\\00f016d42e15aaa6.jpg", + "response": "A green and yellow train is stopped at a train station.", + "id": 33438 }, { - "image_path": "G:\\images\\combined\\004896_jpg.rf.5ac13826aa2450e3359f706315796cda.jpg", - "response": "a person in a red shirt and white helmet is holding a red valve and turning it. there is a red valve with a sign on it that says '\u4e39\u9633' and a white crane behind the person", - "id": 2835 + "image_path": "G:\\images\\combined\\00f1881a91775cc2.jpg", + "response": "a man in a purple shirt with a crown on it", + "id": 33439 }, { - "image_path": "G:\\images\\combined\\004897_jpg.rf.ffa1bdefa2078ab44510e1c6d42d44cf.jpg", - "response": "\u96a7\u9053\u5185\u7684\u5de5\u4eba\u7a7f\u7740\u5b89\u5168\u88c5\u5907\uff0c\u5934\u6234\u9ec4\u8272\u5b89\u5168\u5e3d\uff0c\u80a9\u4e0a\u625b\u7740\u4e00\u628a\u5927\u9524\uff0c\u96a7\u9053\u5185\u58c1\u6709\u6df7\u51dd\u571f\u548c\u91d1\u5c5e\u7ba1\uff0c\u5de5\u4eba\u9762\u5e26\u5fae\u7b11\u7684\u770b\u7740\u955c\u5934\u3002", - "id": 2836 + "image_path": "G:\\images\\combined\\00f1f33274bec615.jpg", + "response": "a brown piece of paper with a hand drawn map on it", + "id": 33440 }, { - "image_path": "G:\\images\\combined\\004898_jpg.rf.c6c0b792e3e68499962ad13ffb5e2790.jpg", - "response": "4 men(577,236),(738,914)(207,53),(556,955)(667,105),(995,877) in green uniforms(208,186),(555,952)(668,258),(996,878) and blue helmets(779,104),(902,283)(401,53),(521,218)(603,237),(693,421) working on a pipe", - "id": 2837 + "image_path": "G:\\images\\combined\\00f2511c5ec4ac57.jpg", + "response": "A group of people sitting around a table with a laptop and a large amount of legos.", + "id": 33441 }, { - "image_path": "G:\\images\\combined\\004899_jpg.rf.eac87810b8b7dd69978fe66315ab0b79.jpg", - "response": "a group of men walking across a muddy field", - "id": 2838 + "image_path": "G:\\images\\combined\\00f26dd37e2ceb04.jpg", + "response": "a large sign that says welcome to manchester's gay village", + "id": 33442 }, { - "image_path": "G:\\images\\combined\\0048ed25da02e036.jpg", - "response": "A Goodyear sign is shown in front of a cloudy sky.", - "id": 2839 + "image_path": "G:\\images\\combined\\00f3512a94a0a474.jpg", + "response": "A hand drawn poster about the future of books. It has a bunch of boxes with text in them, arrows connecting them, and little stick figures doing various things.", + "id": 33443 }, { - "image_path": "G:\\images\\combined\\004900_jpg.rf.72ce85df06b49211856cea77f1879b42.jpg", - "response": "The photo shows a group of people working in a tunnel. They are wearing hard hats and some are pushing wheelbarrows filled with sand. There are also some ladders and other construction equipment in the tunnel. The walls of the tunnel are concrete and it appears to be an unfinished construction project.", - "id": 2840 + "image_path": "G:\\images\\combined\\00f47026ef4f4b52.jpg", + "response": "A train is on the tracks near a platform.", + "id": 33444 }, { - "image_path": "G:\\images\\combined\\004901_jpg.rf.a5520caeac6bab9b3e205dcacf44929d.jpg", - "response": "A group of men standing on a dirt road.", - "id": 2841 + "image_path": "G:\\images\\combined\\00f4eed1c02f1fa9.jpg", + "response": "A man writing on a white board with sticky notes attached to it.", + "id": 33445 }, { - "image_path": "G:\\images\\combined\\004902_jpg.rf.85a6bf252ca1f4fce67b9dc24d7f2492.jpg", - "response": "a group of people standing around a map", - "id": 2842 + "image_path": "G:\\images\\combined\\00f6063f74a06749.jpg", + "response": "A large Calvin Klein billboard is on the side of a building.", + "id": 33446 }, { - "image_path": "G:\\images\\combined\\004904_jpg.rf.1a0d708bac06109c61fb395255e50137.jpg", - "response": "a group of people walking across a dirt field", - "id": 2843 + "image_path": "G:\\images\\combined\\00f691b8c6f39410.jpg", + "response": "In the image, a group of people are standing near the water. One man is wearing a blue jersey and looking down. Another man is wearing a purple shirt and has a watch on his wrist. There is a boat in the background and a person is wearing an orange shirt.", + "id": 33447 }, { - "image_path": "G:\\images\\combined\\004905_jpg.rf.e05223946e50b37957818a3c42d82845.jpg", - "response": "A man in a blue jumpsuit and orange hard hat is working at a factory. He is standing at a large metal machine with a red wall behind him and a control panel to his right. The man is wearing gloves and is making adjustments to the metal machine.", - "id": 2844 + "image_path": "G:\\images\\combined\\00f7148b7f9da4c0.jpg", + "response": "A bus with the word Bison painted on the side.", + "id": 33448 }, { - "image_path": "G:\\images\\combined\\004906_jpg.rf.4575a52844481dfcbbef10fc4533c0f6.jpg", - "response": "A worker wearing a white hat and a blue shirt is on a scaffolding. The scaffolding is made of orange metal tubes and it is located in front of a building. The worker is wearing grey pants and a white hat. He is using a tool that looks like a blow torch with a long black hose. There are several other workers in the image, but this one is the main focus.", - "id": 2845 + "image_path": "G:\\images\\combined\\00f734e9f7390f2e.jpg", + "response": "A train stopped at a station with people walking on the platform.", + "id": 33449 }, { - "image_path": "G:\\images\\combined\\004908_jpg.rf.1a5761645d7f5a174b42276efbe6fd57.jpg", - "response": "The image shows a group of men in blue work clothes and yellow hard hats, some with their sleeves rolled up, working on a sidewalk at night. They are using a long rope and a metal pole.", - "id": 2846 + "image_path": "G:\\images\\combined\\00f7c2cef7b30f0c.jpg", + "response": "A cat sniffing a wine glass filled with ice and Lillet.", + "id": 33450 }, { - "image_path": "G:\\images\\combined\\004909_jpg.rf.e384cbb933c275fc75a6bedc5025e055.jpg", - "response": "A man in a red hard hat is sitting in a control room.", - "id": 2847 + "image_path": "G:\\images\\combined\\00f7ecdaa0f46d0d.jpg", + "response": "A purple laptop with a screen open to an article titled Elements of Diffusion.", + "id": 33451 }, { - "image_path": "G:\\images\\combined\\00490f30dfd43495.jpg", - "response": "A Babylon police car is parked on the street.", - "id": 2848 + "image_path": "G:\\images\\combined\\00f814e1fc9f25c9.jpg", + "response": "A large scoreboard in front of a stadium with a happy birthday message for Nobunni.", + "id": 33452 }, { - "image_path": "G:\\images\\combined\\004910_jpg.rf.66251dc77c0471c8638f6b02838df8f1.jpg", - "response": "In the image, a construction worker is working on a construction site. The worker is crouched down and is wearing a red hard hat. The sky is blue and there are no clouds in the sky.", - "id": 2849 + "image_path": "G:\\images\\combined\\00f89566491302ff.jpg", + "response": "A large crowd of fans are in the stadium to watch the game.", + "id": 33453 }, { - "image_path": "G:\\images\\combined\\004911_jpg.rf.42655d4dd11b4b5aaf096706c9b927e3.jpg", - "response": "A group of people working on a construction site.", - "id": 2850 + "image_path": "G:\\images\\combined\\00f9078d169011a1.jpg", + "response": "A baseball player swinging a bat over home plate.", + "id": 33454 }, { - "image_path": "G:\\images\\combined\\004912_jpg.rf.5e084ae919ae6a26bd96e24821340988.jpg", - "response": "a group of people wearing red hats(359,216),(467,332)(132,213),(243,326)(474,282),(547,368)(683,307),(738,367)(594,303),(648,361)", - "id": 2851 + "image_path": "G:\\images\\combined\\00f964619cc0aad1.jpg", + "response": "A very long white bus is on display at a show.", + "id": 33455 }, { - "image_path": "G:\\images\\combined\\004914_jpg.rf.f2ba50c890ddc962bfc47c28190f2274.jpg", - "response": "A worker is repairing a power pole in the image. He is wearing a white helmet and grey clothes. He is standing on the grey pole with his left hand on the red hook and his right hand holding tools. There are many wires in front of him and behind him. To his right is a black power transformer and a white wire. To his left is a black insulator. Below him is a black insulator and a wire. The sky is white in the background.", - "id": 2852 + "image_path": "G:\\images\\combined\\00f9e8872b5be8e6.jpg", + "response": "a sign that says paradise pier in red and blue letters", + "id": 33456 }, { - "image_path": "G:\\images\\combined\\004915_jpg.rf.630539b1796466340fa504a7d9461eb1.jpg", - "response": "The image shows a group of people standing on a construction site. They are all wearing hard hats, and some of them are wearing red ones. There is a man in the center who is wearing a white shirt and a red hard hat. Another man is wearing a blue shirt and a red hard hat. The people are standing around and talking. There is a pile of wood in the foreground on the left side of the image. In the background, there is a building under construction with scaffolding around it. There is also a yellow crane in the background.", - "id": 2853 + "image_path": "G:\\images\\combined\\00fbe21f9e1b79de.jpg", + "response": "A yellow school bus is parked on the side of the road.", + "id": 33457 }, { - "image_path": "G:\\images\\combined\\004916_jpg.rf.8f2f151e11d57c362f450e0880f0fbf6.jpg", - "response": "The image shows a group of workers on a ladder. They are working on a large metal structure that resembles a bridge or a walkway. The structure is made of metal poles and appears to be supported by some wooden pillars. The workers are wearing yellow helmets and uniforms. The sky is blue with some clouds.", - "id": 2854 + "image_path": "G:\\images\\combined\\00fc7557618685cd.jpg", + "response": "A construction site with a sign that says \"Sidewalk Closed Use Other Side\" and a traffic light.", + "id": 33458 }, { - "image_path": "G:\\images\\combined\\004919_jpg.rf.90581d7fcb583eb71e9054980bb9967d.jpg", - "response": "In the image there are two people crouched down looking at a white radiator. The man in front of the radiator is wearing a brown shirt and has black hair. The man behind the first man is wearing a blue shirt and has short dark hair. They are both looking at the radiator and the man in front has his left hand on the white radiator while his right hand is holding a red and grey box. There are two pipes coming out of the top of the radiator.", - "id": 2855 + "image_path": "G:\\images\\combined\\00fca8a2da7a4694.jpg", + "response": "A watch with a blue face and silver accents.", + "id": 33459 }, { - "image_path": "G:\\images\\combined\\004920_jpg.rf.d6a79cb02bb08f9fc984865c233edd96.jpg", - "response": "A group of men in business suits stand in a construction site. They are looking at a large pit in the ground. There is a pile of bricks to the left of the pit. The men are standing on dirt. In the background there is a body of water.", - "id": 2856 + "image_path": "G:\\images\\combined\\00fce9f060ba3884.jpg", + "response": "A red double decker bus is parked in a lot with another bus behind it. The red bus has the words Plymouth in your Pocket on the side of it. There are two lights on top of the bus and two smaller lights on the front of the bus.", + "id": 33460 }, { - "image_path": "G:\\images\\combined\\004921_jpg.rf.70b26d9bd5c480b2cb516cc6c77617fd.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing winter coats and some of them are wearing hard hats. In the background, there are a few buildings under construction and a few cars parked nearby. The sky is blue and there are a few clouds. In the middle of the construction site, there is a bulldozer working.", - "id": 2857 + "image_path": "G:\\images\\combined\\00fd1096ba77710e.jpg", + "response": "a car with a sticker on the windshield that says tvs", + "id": 33461 }, { - "image_path": "G:\\images\\combined\\004922_jpg.rf.c1584f9239bacfeeaaab9b6b42121e7a.jpg", - "response": "A group of workers in grey jumpsuits and blue safety helmets are up on a ladder, working on a power line. One of the workers is holding a camera and appears to be filming the others. They are wearing safety gear and are up against a tall building.", - "id": 2858 + "image_path": "G:\\images\\combined\\00fd7896b0b67f93.jpg", + "response": "A white board with the words Confusion Ops written on it.", + "id": 33462 }, { - "image_path": "G:\\images\\combined\\004923_jpg.rf.b44dce750d08c1e15620842c53716f15.jpg", - "response": "A construction site with several men working on it. There are several pieces of wood and steel rods scattered around the area. In the background, there are mountains and a white sky.", - "id": 2859 + "image_path": "G:\\images\\combined\\00fdca7b7b577137.jpg", + "response": "In the image, a baseball player is holding a bat and getting ready to hit the ball. He is wearing a white uniform with the word \"ARMY\" on it. The player is standing on a baseball field, and there are other players and a bench visible in the background. Some people in the stands are watching the game, and one person is holding a camera. The baseball field has a fence around it, and there are bottles and a cooler placed outside the fence.", + "id": 33463 }, { - "image_path": "G:\\images\\combined\\004924_jpg.rf.5002cfd8afb225a6c63b624166e5bcb6.jpg", - "response": "a group of people walking in front of a building that is being demolished", - "id": 2860 + "image_path": "G:\\images\\combined\\00fdf42b979aacac.jpg", + "response": "A close up of a MacBook Pro keyboard with a bunch of USB sticks plugged into it.", + "id": 33464 }, { - "image_path": "G:\\images\\combined\\004925_jpg.rf.396b8bb08d98ffef65698c87cc29410d.jpg", - "response": "In the image there are two men standing on a platform. Both men are wearing work clothes and safety gear which includes hard hats, reflective vests, and gloves. The man on the left is pointing towards the top of a white and blue structure. The man on the right is looking at the camera.", - "id": 2861 + "image_path": "G:\\images\\combined\\00fedf6008a8f933.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 33465 }, { - "image_path": "G:\\images\\combined\\004928_jpg.rf.a7d187103ef6302c540087f263b832a1.jpg", - "response": "A group of people working on a construction site.", - "id": 2862 + "image_path": "G:\\images\\combined\\00ffee30f436b71a.jpg", + "response": "A red train engine is on the tracks.", + "id": 33466 }, { - "image_path": "G:\\images\\combined\\004929_jpg.rf.d3655f4e7f0667054c30127cd81e480d.jpg", - "response": "A couple of men are working on power lines.", - "id": 2863 + "image_path": "G:\\images\\combined\\00_17_jpg.rf.3eef47704a1ca554203390501cdd74f1.jpg", + "response": "A home office with a desk, chair, and computer.", + "id": 33467 }, { - "image_path": "G:\\images\\combined\\004930_jpg.rf.7de2b8186d500af4550e3526f94adb9d.jpg", - "response": "In the image there are two workers in a factory. They are both wearing yellow safety vests and helmets. One worker is on the left and is bending over to look at a blue and silver machine. The other worker is on the right and is looking at a red and white machine. There are several pipes and cables in the scene. One worker is also holding a helmet in their left hand.", - "id": 2864 + "image_path": "G:\\images\\combined\\01-Testing-2_jpg.rf.c1b2540916f84e273b259d12a5c65a4f.jpg", + "response": "The image shows two men working on a project in a large building. One man is standing on a ladder and appears to be installing a large piece of glass, while the other man is standing on the floor and watching the process. They are both wearing white shirts.", + "id": 33468 }, { - "image_path": "G:\\images\\combined\\004931_jpg.rf.e42fb13193404db4ebe40e5dfbb869bb.jpg", - "response": "The image shows two workers from the left who are using a pickaxe to cut a tree. The tree is covered with white frost. The workers are in a mountainous area with snow on the ground. They are both dressed in blue work clothes and yellow helmets.", - "id": 2865 + "image_path": "G:\\images\\combined\\01003_jpg.rf.a171f16195914d828c2fb13b2aea4fba.jpg", + "response": "A man in a white shirt and grey pants standing in front of a sign.", + "id": 33469 }, { - "image_path": "G:\\images\\combined\\004932_jpg.rf.ff40905f09fa1be41f41f9f1e2ad281c.jpg", - "response": "In the image there are several construction workers working on a house. They are digging a hole in the ground and one man is using a tool to dig. The house has a white exterior and is in the process of being renovated. The workers are wearing hard hats and there is a yellow one, a red one, and a blue one. The date of the picture is 2013/04/13 and it was taken at 05:12.", - "id": 2866 + "image_path": "G:\\images\\combined\\01003_jpg.rf.a240a83b30323e9adb2d925b8ad28617.jpg", + "response": "A worker in a white hard hat is showing another worker a sign.", + "id": 33470 }, { - "image_path": "G:\\images\\combined\\004935_jpg.rf.6fd3c4bef2775658fc8db24cca1fc43c.jpg", - "response": "The image shows two workers wearing yellow and red helmets who are walking away from the camera. They are carrying a piece of equipment on a trolley, and there is a building in the background. The ground is covered with a green net, and there are several lines on the ground.", - "id": 2867 + "image_path": "G:\\images\\combined\\01005e15c5db91a2.jpg", + "response": "A red car is parked on the street next to a red car. Both cars are identical and have a white license plate with black letters and numbers. The red car on the left has a black stripe on the hood. The car on the right has a black stripe on the passenger side door. The stripe on the right car continues on the rear bumper. The stripe on the left car continues on the front bumper. The cars are parked next to a building.", + "id": 33471 }, { - "image_path": "G:\\images\\combined\\004936_jpg.rf.cd6f622eb5cfbc746d0272d9a2d31ec2.jpg", - "response": "In the image there are two workers wearing green and yellow hard hats. They are building a round structure made of metal rods. The sky is blue and there are a few clouds.", - "id": 2868 + "image_path": "G:\\images\\combined\\01016_jpg.rf.95b84786ef5b7294496f84559b25f926.jpg", + "response": "In the image there are two men wearing yellow hard hats, one man is black and the other is white. They are both dressed in work clothes, the white man is holding a clipboard and the black man is pointing at something. They are both standing in front of a machine that spins white yarn.", + "id": 33472 }, { - "image_path": "G:\\images\\combined\\004937_jpg.rf.355a7df44edf58e24a65ecc82d4d1c20.jpg", - "response": "The image shows a construction site in a city. Several workers are working on a large construction project, building a new road. The workers are wearing yellow hats and uniforms. The city has many tall buildings around the construction site. A part of a billboard advertising a car is also visible.", - "id": 2869 + "image_path": "G:\\images\\combined\\01017856bd2da59b.jpg", + "response": "A woman is sitting on a stool in front of an open refrigerator. She is wearing a yellow dress and is holding a sign that says '31.7 kWh ultra energy efficient'. There are many bottles inside the refrigerator, including water and soda.", + "id": 33473 }, { - "image_path": "G:\\images\\combined\\004938_jpg.rf.4ff4967b65d453a57e8599109c2383f3.jpg", - "response": "A group of men in grey and yellow uniforms and white helmets are working on power lines. They are standing on ladders and tools are scattered around them.", - "id": 2870 + "image_path": "G:\\images\\combined\\0101d12ff7383efb.jpg", + "response": "A silver and white air dryer on a wall.", + "id": 33474 }, { - "image_path": "G:\\images\\combined\\004939_jpg.rf.31b0fa6e20076038d2c010a935822422.jpg", - "response": "A pair of workers in yellow suits and orange safety gear work on a large metal box on a pole.", - "id": 2871 + "image_path": "G:\\images\\combined\\0101e090c78a1a97.jpg", + "response": "A group of people playing a game of softball.", + "id": 33475 }, { - "image_path": "G:\\images\\combined\\00493f6c61b373d3.jpg", - "response": "A red car with the license plate P404 EUJ is parked on the grass.", - "id": 2872 + "image_path": "G:\\images\\combined\\0102022aa14f4c76.jpg", + "response": "A camera with a black lens on a wooden table.", + "id": 33476 }, { - "image_path": "G:\\images\\combined\\004940_jpg.rf.6764da3754f8a5c12dce35de43845be7.jpg", - "response": "In the image two workers are talking at a construction site. They are both wearing yellow and orange safety vests and yellow helmets. They are walking on a dusty road in the construction site. In the background a digger is working and throwing earth.", - "id": 2873 + "image_path": "G:\\images\\combined\\01020f39f721a95a.jpg", + "response": "A city street with buildings and billboards.", + "id": 33477 }, { - "image_path": "G:\\images\\combined\\004941_jpg.rf.fe3a10979caca6b45361b8a483e5dc31.jpg", - "response": "A large group of workers are working on a construction site. They are wearing yellow helmets and are working on a steel grid. Some of them are sitting on the grid while others are standing. There are also a few people walking around the site.", - "id": 2874 + "image_path": "G:\\images\\combined\\01023678b3f9c6bf.jpg", + "response": "A comic strip about a man in a library, thanking the public for their support.", + "id": 33478 }, { - "image_path": "G:\\images\\combined\\004942_jpg.rf.0ce9ef778e29a30770a338d9bc2fb924.jpg", - "response": " Construction workers(544,486),(609,689)(499,678),(577,836) are seen at the site of the new high school in Hefei, Anhui province, China.", - "id": 2875 + "image_path": "G:\\images\\combined\\0102685c173f94c5.jpg", + "response": "A bottle of Johnnie Walker Red Label sits next to a glass. The glass is half full with a yellowish liquid.", + "id": 33479 }, { - "image_path": "G:\\images\\combined\\004943_jpg.rf.7387167f106f8c53ef352405a6e2359a.jpg", - "response": "A group of people sitting around a table.", - "id": 2876 + "image_path": "G:\\images\\combined\\01031_jpg.rf.8fbce1259c6bd91df027b5910703f907.jpg", + "response": "In the picture there are three construction workers. One is on the left, he is wearing a yellow hat and a blue shirt. He is holding a yellow hat in his left hand and a rope in his right hand. There is a yellow and blue hard hat on the ground in front of him. To the right of the man on the left, there is another worker in a blue hat and blue shirt. He is sitting on the ground and operating a yellow machine. The third worker is on the right, he is wearing a white shirt and a brown and blue striped shirt. He is wearing a blue hat and is holding a rope in his hand. There are many power lines above the workers.", + "id": 33480 }, { - "image_path": "G:\\images\\combined\\004944_jpg.rf.a6c2c3390e9c69c9c01f36c0eef12959.jpg", - "response": "a group of people wearing hard hats", - "id": 2877 + "image_path": "G:\\images\\combined\\010336509eba4001.jpg", + "response": "A close up of three bottles of beer, Greene King IPA, Old Peculier and Wychwood Hobgoblin.", + "id": 33481 }, { - "image_path": "G:\\images\\combined\\004945_jpg.rf.10eaea30ac2c1e5344044d3a1a91fc9b.jpg", - "response": "A group of four construction workers are sitting on a pile of rubble. They are all wearing hard hats and work clothes. One worker is holding a helmet in his hand. The ground around them is filled with concrete rubble and debris.", - "id": 2878 + "image_path": "G:\\images\\combined\\01035_jpg.rf.c444419d78f89dcae1a47c3fd94f54d3.jpg", + "response": "A group of three men in blue hats are working on a power box.", + "id": 33482 }, { - "image_path": "G:\\images\\combined\\004946_jpg.rf.1ce0b275b9f6efec7ee0654208b98bc1.jpg", - "response": "A worker wipes sweat from his forehead.", - "id": 2879 + "image_path": "G:\\images\\combined\\01035_jpg.rf.ea9f3341af771e8479a70b0ec9252eaa.jpg", + "response": "The image shows three men in blue helmets and white work clothes, kneeling on a grey roof and working on a grey device. The sky is blue and cloudless.", + "id": 33483 }, { - "image_path": "G:\\images\\combined\\004947_jpg.rf.fec4c45cd9fa1c2c4552c56de5a92523.jpg", - "response": "The image shows two men in a field, one wearing a green camouflage shirt and a yellow hard hat and the other wearing a red hard hat. They are working together to fix an electrical component in the field.", - "id": 2880 + "image_path": "G:\\images\\combined\\010398d4ebeeb600.jpg", + "response": "A poster that says \"Underage drinking is really cool... isn't it?\" is attached to a wall.", + "id": 33484 }, { - "image_path": "G:\\images\\combined\\004948_jpg.rf.73ebca60ad8b1637fbc7ed70fe4eda60.jpg", - "response": " An electrician(215,279),(995,997) working on a fuse box", - "id": 2881 + "image_path": "G:\\images\\combined\\0103Shack04_jpg.rf.ee5e92e14eff0a206e5fa54fd3ad0732.jpg", + "response": "A man in a red shirt and blue jeans is on a ladder.", + "id": 33485 }, { - "image_path": "G:\\images\\combined\\004949_jpg.rf.ca31068a889ab692f032d09f871a6626.jpg", - "response": "A worker in a red jumpsuit and yellow hard hat stands next to an oil well. The worker is checking the pressure gauge on a pipe. In the background, there is an oil derrick. The sky is orange and there are a few clouds. There is a city visible in the far distance.", - "id": 2882 + "image_path": "G:\\images\\combined\\01043_jpg.rf.734f709f82bd88a47a2a7686f0963834.jpg", + "response": "A worker in a red jumpsuit and blue hat is working on a power line.", + "id": 33486 }, { - "image_path": "G:\\images\\combined\\004950_jpg.rf.09aa0ecb30a5a883d294ed95f842729e.jpg", - "response": "A man in blue coveralls and a blue hard hat stands in front of a red and white ship hull that is partially painted. The ship is on a platform and there is a red light shining on the hull. The man is looking up at the ship.", - "id": 2883 + "image_path": "G:\\images\\combined\\01043_jpg.rf.ecf31e7222bab12c32d3c365d5577baa.jpg", + "response": "A worker in a red jumpsuit and blue hat is working on wires on a pole.", + "id": 33487 }, { - "image_path": "G:\\images\\combined\\004951_jpg.rf.bb29b28b6c4582ef32916dac040e26b8.jpg", - "response": "A group of people are standing around a man who is on a ladder working on an electrical box. The electrical box is grey and is located in the middle of a lush green forest. The man on the ladder is wearing a yellow helmet and a yellow safety vest. There is another man wearing a yellow helmet and vest standing behind him. Another man is standing to the left of the man on the ladder and is wearing a blue helmet and vest. To the right of this man is a person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants.", - "id": 2884 + "image_path": "G:\\images\\combined\\01047e9822575c85.jpg", + "response": "A red display case filled with different kinds of donuts.", + "id": 33488 }, { - "image_path": "G:\\images\\combined\\004952_jpg.rf.729f0ac0fff02b865d0c6ab7dc839e14.jpg", - "response": "The image shows a group of people standing in a room under construction. They are all wearing yellow hard hats, and some of them are holding a blueprint. The room has a ladder on the right side and a wooden table in the middle. The walls are bare, and the floor appears to be unfinished.", - "id": 2885 + "image_path": "G:\\images\\combined\\0105018670354e7b.jpg", + "response": "A laptop screen that is displaying the install for OS X Yosemite.", + "id": 33489 }, { - "image_path": "G:\\images\\combined\\004953_jpg.rf.cc70df9f8effd264c902dc1d435f0015.jpg", - "response": " Workers(496,254),(935,996)(4,266),(581,996) are working at night in a darkened room.", - "id": 2886 + "image_path": "G:\\images\\combined\\01055_jpg.rf.7904e19f1e72ca4e392252f5f3286427.jpg", + "response": "An electrician is working on a power line.", + "id": 33490 }, { - "image_path": "G:\\images\\combined\\004954_jpg.rf.50085874f4d14dcad2e0b9512ef9ed63.jpg", - "response": "a couple of people that are in a cave", - "id": 2887 + "image_path": "G:\\images\\combined\\01055_jpg.rf.a56f04376e2ea191d3d4143612ba9ee1.jpg", + "response": "An electrician is working on a power line.", + "id": 33491 }, { - "image_path": "G:\\images\\combined\\004955_jpg.rf.b6dc518010e40231d28df52cd53679d4.jpg", - "response": "The image shows two men working on a power line in a snowy field. They are wearing hard hats and one of them is holding a tool. The sky is grey and overcast. In the background, there is a residential area with a few houses.", - "id": 2888 + "image_path": "G:\\images\\combined\\01059_jpg.rf.9ca960c4bab443e951b3022ac70986fd.jpg", + "response": "A group of men in blue hard hats and orange pants are standing in a grassy area. They are all wearing harnesses and one of them has a tool belt. They appear to be construction workers or forest workers.", + "id": 33492 }, { - "image_path": "G:\\images\\combined\\004956_jpg.rf.3ad9900be75579b2eaab2ec669f67b1a.jpg", - "response": "Men in white shirts and red hats are standing in a construction site.", - "id": 2889 + "image_path": "G:\\images\\combined\\01064e5e6509000e.jpg", + "response": "The image shows a variety of bottles on a shelf, including several old-fashioned looking bottles of hair tonic and shampoo. The bottles are displayed in front of a mirror, which reflects the bottles and creates an interesting visual effect. The bottles are of different shapes and sizes, and some are clear while others have colored labels. The shelf appears to be made of wood and is located in a store.", + "id": 33493 }, { - "image_path": "G:\\images\\combined\\004957_jpg.rf.50d60300229d51d3b51fa9a66bcd07ba.jpg", - "response": "Two men in a mine wearing hard hats and blue coveralls.", - "id": 2890 + "image_path": "G:\\images\\combined\\0107118d03dfd972.jpg", + "response": "A man sitting in front of a laptop computer.", + "id": 33494 }, { - "image_path": "G:\\images\\combined\\004959_jpg.rf.fb5a6c0f9b26543b0b65ede33c2c43ea.jpg", - "response": "a group of people sitting around a table", - "id": 2891 + "image_path": "G:\\images\\combined\\01085deeb33b557b.jpg", + "response": "A bottle of Cantillon Gueuze, a bottle of water, a cup of liquid, a book, a knife, a fork, and a spoon are on a wooden table.", + "id": 33495 }, { - "image_path": "G:\\images\\combined\\004960_jpg.rf.a719c1b57c3cb9886d65c3fa14ef277a.jpg", - "response": "A construction worker in a yellow hard hat and camouflage shirt stands in front of a sign.", - "id": 2892 + "image_path": "G:\\images\\combined\\0108c3e0b84eb653.jpg", + "response": "A red shirt with a race bib on it that says \"ING\" on it.", + "id": 33496 }, { - "image_path": "G:\\images\\combined\\004963_jpg.rf.e8ae319aefb97b2eb15fb30442e81b13.jpg", - "response": "In the picture there are two workers wearing blue work clothes and red hats. They are in a workshop, in front of them is a brown wooden beam, and next to it are many other wooden beams of the same size, but in different positions. Some wooden blocks are also placed on the ground and some are on a yellow shelf.", - "id": 2893 + "image_path": "G:\\images\\combined\\0108dcc595311a92.jpg", + "response": "A metal tin with the words Big Omaha 2009 on it.", + "id": 33497 }, { - "image_path": "G:\\images\\combined\\004964_jpg.rf.33add841dbde0c037717a0e13d5d8cf0.jpg", - "response": "A group of workers in yellow and orange shirts and blue pants are working on a pile of rubble. They are wearing hard hats and some have their sleeves rolled up. In the background there are a few tall buildings.", - "id": 2894 + "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.063f1eecf1a0ab168f90229a2ca735a4.jpg", + "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", + "id": 33498 }, { - "image_path": "G:\\images\\combined\\004965_jpg.rf.61e832968f679fe0c35bc1794328a86f.jpg", - "response": "In this image a worker is cutting steel with a saw at a construction site. The sparks from the saw are flying all around. The worker is squatting down and the saw is on the right side of the image. In the background there is a building.", - "id": 2895 + "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.0e73a824c2b5c09a1b14192591913249.jpg", + "response": "The image shows a politician wearing a white shirt and a grey suit with a black belt. The politician is putting on a white mask with a black strap. The politician is also adjusting the mask with both hands. They have black hair and glasses. The politician is wearing the mask to protect against COVID-19.", + "id": 33499 }, { - "image_path": "G:\\images\\combined\\004966_jpg.rf.980d832fcc391a4c5a6f189d0a4e8b7a.jpg", - "response": "A group of men standing in front of a yellow and white construction site.", - "id": 2896 + "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.3dffee5ff567198ad4baa21a8973a54a.jpg", + "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", + "id": 33500 }, { - "image_path": "G:\\images\\combined\\004967_jpg.rf.c609cad555035746e7735a6f5e2ac1df.jpg", - "response": "The image shows a group of men working on a large spool of black\u7535\u7f06. They are in a field with grass and a few trees.", - "id": 2897 + "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.98746f6798d40bcc92b96d5acaf67920.jpg", + "response": "In the image, a middle-aged man with glasses is seen adjusting his face mask. He is wearing a white shirt, a grey suit, a brown belt, and a white tie. He has glasses and his hair is black. The man is standing in a room with a pitch black background.", + "id": 33501 }, { - "image_path": "G:\\images\\combined\\004968_jpg.rf.cb3e8ef9695be920e9646a00ec4b02d3.jpg", - "response": "A group of men in red jackets are working together to pull a rope. They are all wearing hard hats and some are wearing backpacks. They are in the snow and in front of them is a tower.", - "id": 2898 + "image_path": "G:\\images\\combined\\01094_jpg.rf.82d4e4f1356e781a9cc9ed98e61ddb34.jpg", + "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", + "id": 33502 }, { - "image_path": "G:\\images\\combined\\004969_jpg.rf.08a9ac12c8ce5f47c4472665f67f9be9.jpg", - "response": "A man is harnessed up and working on a power line with a fire burning next to him.", - "id": 2899 - }, - { - "image_path": "G:\\images\\combined\\004970_jpg.rf.5dfe606ab311e7700dc998b8214dd1bc.jpg", - "response": "In the image, three workers are seen wearing blue helmets and raincoats. They are working on an outdoor construction site with a mountain in the background. The two men on the right are pulling on a rope, and one of them is holding a stick. The man in the middle is looking up at the rope.", - "id": 2900 + "image_path": "G:\\images\\combined\\01094_jpg.rf.ee7c9ee5d84f7b26cc85e8b20c3eef90.jpg", + "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", + "id": 33503 }, { - "image_path": "G:\\images\\combined\\004971_jpg.rf.9056602fb3e54f446f66e267425c7fff.jpg", - "response": "The image shows two Chinese workers sitting on the floor of a large\u96a7\u9053. They are both wearing orange work uniforms and white helmets. The man on the left is sitting on the left side of the tunnel, he is wearing grey gloves and has a white beard. The man on the right is sitting on the right side of the tunnel, he is wearing yellow gloves. In front of them is a large rock, and to the right of the rock is a pipe. Behind the workers, on the right wall of the tunnel, is a large pipe.", - "id": 2901 + "image_path": "G:\\images\\combined\\01099_jpg.rf.42bb05283d43b37e09ab6053e7b533b8.jpg", + "response": "In the image there are three people wearing hard hats and working on a piece of machinery. They appear to be in a factory setting.", + "id": 33504 }, { - "image_path": "G:\\images\\combined\\004972_jpg.rf.5058ae52783d08ee423cb136eda6ff50.jpg", - "response": "A man sitting on a block of cement in front of a building under construction.", - "id": 2902 + "image_path": "G:\\images\\combined\\010a0c44af2d077e.jpg", + "response": "A red Peugeot 205 is parked on the side of a street. The car has four doors and is a small hatchback. It has a black stripe on the hood and the license plate is blue and white. There are two people visible through the windshield. There are a few other cars parked on the street and a few more in the background. There is a building in the background and a grassy area with rocks in front of it.", + "id": 33505 }, { - "image_path": "G:\\images\\combined\\004973_jpg.rf.d4145286980fcca8b915f9d2b55e431f.jpg", - "response": "A large pipe is being laid in the ground by a construction crew.", - "id": 2903 + "image_path": "G:\\images\\combined\\010cab48008cd1f2.jpg", + "response": "A large exhibit hall with a sign that says Mexico on it.", + "id": 33506 }, { - "image_path": "G:\\images\\combined\\004974_jpg.rf.ef7424532195fad757cc4e1a74ae6431.jpg", - "response": "A construction worker in a red jumpsuit and yellow hard hat is using a hose to drain water from a hole in the ground. Another worker is using a backhoe to dig deeper into the hole. A third worker is standing at the edge of the hole, arms raised, as if directing the work.", - "id": 2904 + "image_path": "G:\\images\\combined\\010caf0314876f5d.jpg", + "response": "A man wearing a black and gold soccer uniform with the number 2 on the front.", + "id": 33507 }, { - "image_path": "G:\\images\\combined\\004975_jpg.rf.27219c926beb432511917316802aa131.jpg", - "response": "The picture shows three workers in the right side of the image, all of them are wearing red hats. In the background, there are four-story buildings under construction. In the foreground, a yellow tractor-like machine is in the middle of construction site.", - "id": 2905 + "image_path": "G:\\images\\combined\\010cdb580b439adb.jpg", + "response": "A bag of crackers and a carton of The Green Mile juice laying on the grass.", + "id": 33508 }, { - "image_path": "G:\\images\\combined\\004976_jpg.rf.8e58318917de6fe9ad2a40dee6bca202.jpg", - "response": "The image shows four people walking in front of a building under construction. The man on the far left is wearing a black shirt and black shorts. The second person from the left is wearing a brown shirt and khaki pants. The third person, a woman, is wearing a navy blue shirt and black pants. The fourth person, also a woman, is wearing a black and white shirt with white pants. In the background, a yellow dump truck is parked near the building.", - "id": 2906 + "image_path": "G:\\images\\combined\\010cfb13c3b9be8d.jpg", + "response": "A white Transit van with its door open parked on the street.", + "id": 33509 }, { - "image_path": "G:\\images\\combined\\004977_jpg.rf.ad9f4c7623ee3bff4f9977454742c5f1.jpg", - "response": "In the image two men are working on power lines in the snow. They are wearing helmets and coats to protect themselves from the cold and the snow. The men are hanging from the power lines and working on the wires.", - "id": 2907 + "image_path": "G:\\images\\combined\\010d10f950a36864.jpg", + "response": "In the image, there is a bottle of Scope mouthwash sitting on a bathroom sink. Next to the mouthwash is a tube of toothpaste. A small cup is also visible in the scene.", + "id": 33510 }, { - "image_path": "G:\\images\\combined\\004979_jpg.rf.0bf9bba84b940893486d887e6d3b7edb.jpg", - "response": "A man pushing a cart with a box on it.", - "id": 2908 + "image_path": "G:\\images\\combined\\010fd875bdb3f616.jpg", + "response": " a white piece(39,215),(972,836) of paper with black writing on it", + "id": 33511 }, { - "image_path": "G:\\images\\combined\\004980443377ed4c.jpg", - "response": "On a green and white checkered tablecloth, there are two bottles of beer. One is labeled Bortso and the other is labeled Gorkhi. Both bottles have blue labels.", - "id": 2909 + "image_path": "G:\\images\\combined\\01102aebe24b7ccb.jpg", + "response": "A busy street with a lot of traffic signs and buildings in the background. There is a van driving down the street.", + "id": 33512 }, { - "image_path": "G:\\images\\combined\\004980_jpg.rf.05c360fc6c263d95474f418ddcbafafb.jpg", - "response": "A worker in a factory in Yangon, Myanmar.", - "id": 2910 + "image_path": "G:\\images\\combined\\0110df3fb0710f34.jpg", + "response": "a large sign for Gates Bar-B-Q on top of a building", + "id": 33513 }, { - "image_path": "G:\\images\\combined\\004982_jpg.rf.6748efc60e513fdaa9ee9d2509500c64.jpg", - "response": "A construction worker in an orange uniform, grey gloves and a yellow hard hat is using a jackhammer to break up rock.", - "id": 2911 + "image_path": "G:\\images\\combined\\01110_jpg.rf.ac8d48fd3debfbd8c82dbf7a794693ab.jpg", + "response": "Three engineers in green vests and white helmets are discussing blueprints in a building under construction.", + "id": 33514 }, { - "image_path": "G:\\images\\combined\\004983_jpg.rf.2c5542ff7dacb2219810d5672b076a7c.jpg", - "response": "A group of men working on power lines with a large crane.", - "id": 2912 + "image_path": "G:\\images\\combined\\01110_jpg.rf.c4114f4e56ee63489f18f3e61d702870.jpg", + "response": "Three engineers in green safety vests and white helmets are standing in a construction site, looking over blueprints.", + "id": 33515 }, { - "image_path": "G:\\images\\combined\\004984_jpg.rf.3b7660642d7f1c4d4d1ff5eebe43ba1e.jpg", - "response": "A construction worker in a yellow vest and blue hard hat is pointing and talking to another construction worker in a red hard hat who is sitting to the left of the first worker. They are both standing in front of a building that appears to be under construction.", - "id": 2913 + "image_path": "G:\\images\\combined\\01114_jpg.rf.1ffd29371d129cee9b75e8fb161e6993.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 33516 }, { - "image_path": "G:\\images\\combined\\004985_jpg.rf.111a399ee7f330352acf5f531544ff75.jpg", - "response": "A group of men in white shirts and construction hats stand on a construction site. Some of them are pointing towards the left. In the background, a cloudy sky can be seen.", - "id": 2914 + "image_path": "G:\\images\\combined\\01114_jpg.rf.224207099b817e8d41a6a0d7c40e60cc.jpg", + "response": "A group of men standing in front of a building under construction", + "id": 33517 }, { - "image_path": "G:\\images\\combined\\004986_jpg.rf.d0bfc65300dac117a92d9d8c397c3c47.jpg", - "response": "In the image, a worker is suspended from a bucket truck and is working on a power line. The worker is wearing a yellow safety vest and is focused on their task. The sky is a clear blue and the sun is shining.", - "id": 2915 + "image_path": "G:\\images\\combined\\0112996eca2a29e7.jpg", + "response": "The bus is a large vehicle with a pink and purple color scheme. It has a door with a set of stairs leading inside. The bus is parked in a parking lot with other buses in the background.", + "id": 33518 }, { - "image_path": "G:\\images\\combined\\004987_jpg.rf.fc9ae6a1f11d8e23a39f2472f0173bed.jpg", - "response": "A construction worker is using a hose to pump concrete onto a steel grid.", - "id": 2916 + "image_path": "G:\\images\\combined\\01129_jpg.rf.5b0a80db87c83fba17014e8bd5459e26.jpg", + "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and has a tool in his hand. In the background, there is a tower.", + "id": 33519 }, { - "image_path": "G:\\images\\combined\\004988_jpg.rf.38153aadd7746d231105f18fcb89b758.jpg", - "response": "A man in a green shirt and red hat is holding a piece of paper and writing on it while standing next to a brick wall. Another man in a white shirt is standing behind him. They are both wearing ties. In the background, there is a building under construction with scaffolding.", - "id": 2917 + "image_path": "G:\\images\\combined\\01129_jpg.rf.c2d64cfe1d63395ffa5db342dc4f9959.jpg", + "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and appears to be skilled at his job. In the background, there is a tower.", + "id": 33520 }, { - "image_path": "G:\\images\\combined\\004989_jpg.rf.cc31cb7331bc21af39dd0bd4ae2f2d04.jpg", - "response": "A man in a hard hat standing in a wooden framed house structure.", - "id": 2918 + "image_path": "G:\\images\\combined\\0112d7f151517f35.jpg", + "response": "A couple of buses on a wet road.", + "id": 33521 }, { - "image_path": "G:\\images\\combined\\00498_jpg.rf.112b21245ed43ef8268231dcec850991.jpg", - "response": "a group of people standing in a factory", - "id": 2919 + "image_path": "G:\\images\\combined\\0112fff372a9199f.jpg", + "response": "A police station with multiple police cars parked inside. The cars are facing different directions and are all black. Some of the cars have red and blue lights on top.", + "id": 33522 }, { - "image_path": "G:\\images\\combined\\00498_jpg.rf.b38b7aab983e70096d7065c2e2e0d124.jpg", - "response": "A group of people standing in a factory.", - "id": 2920 + "image_path": "G:\\images\\combined\\01133647412c00b0.jpg", + "response": "A yellow taxi cab with the number 865 on the door.", + "id": 33523 }, { - "image_path": "G:\\images\\combined\\004990_jpg.rf.1970497805714cc12831d9a354c23bdf.jpg", - "response": "A group of workers are working on a construction site.", - "id": 2921 + "image_path": "G:\\images\\combined\\01139_jpg.rf.55e59dd0b332885a6193a1b936dc222e.jpg", + "response": "The image shows three people in blue short-sleeved shirts and white safety helmets standing in front of a construction site. The person on the left is a middle-aged man with a beard and a tag hanging from his shirt. The person in the middle is a middle-aged man with a tag on his shirt and a pen in his right hand. The person on the right is a woman with a ponytail and a tag on her shirt. They are all looking to the right. In the background, there is a sign that says \"\u5b89\u5168\u7528\u7535\" (Safety use electricity). To the right of the three people, there are red bricks and wooden scaffolding.", + "id": 33524 }, { - "image_path": "G:\\images\\combined\\004991_jpg.rf.dbf11c8bfeb7ff0a4dd6beb944e4afec.jpg", - "response": "A man in a black coat and red hard hat is holding a clipboard and talking to a woman in a blue coat and red hard hat. They are standing in a field with a man operating a piece of equipment with a large drill bit. Another man is standing behind them watching.", - "id": 2922 + "image_path": "G:\\images\\combined\\01139_jpg.rf.561b09b15974fe22691ff2e6dda7d391.jpg", + "response": "A construction site with three people in hard hats.", + "id": 33525 }, { - "image_path": "G:\\images\\combined\\004992_jpg.rf.5a3a92d558a55c479fc08482a16531d8.jpg", - "response": "A worker in a white jacket and yellow hard hat is standing in a dark room with a flashlight. They are looking at a pipe with a hose connected to it. The room has multiple pipes and hoses scattered around and a black liquid on the floor.", - "id": 2923 + "image_path": "G:\\images\\combined\\011415d9302c14e8.jpg", + "response": "three ipods of different sizes sitting on a table", + "id": 33526 }, { - "image_path": "G:\\images\\combined\\004993_jpg.rf.0b400f125f915cd3f0b4d35fcae492ff.jpg", - "response": "A couple of men standing on a construction site.", - "id": 2924 + "image_path": "G:\\images\\combined\\01143_jpg.rf.3ded2f85430425195c8f38efa56d581f.jpg", + "response": "The image shows a group of four men standing in three yellow safety shacks. Each man is wearing a red hard hat. The left most man is wearing a black coat and the man on the right is wearing a green sweatshirt. The man in the middle, on the right side of the image, is wearing a red sweatshirt with a white shirt underneath. The man on the left is wearing a black coat with a grey shirt underneath. The man on the far right is wearing a green sweatshirt with a grey shirt underneath. There is a red and white mat on the floor in front of the shacks. On the left side of the image is a display case with a screen showing a white and black diagram. The screen is on the right side of the image and there is a sign on the left side of the image that says \"\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\". There is also a sign on the right side of the image that says \"\u5b89\u5168\u4f53\u9a8c\u9986\" in Chinese.", + "id": 33527 }, { - "image_path": "G:\\images\\combined\\004994_jpg.rf.f141c095b40a7a152d1b41ebc0553f3a.jpg", - "response": "In the image there are two workers in a construction site, both of them are wearing red helmets and holding a laptop. The laptop is open and one of the workers is typing on it. They are both looking at the laptop screen while sitting on a construction platform. The laptop is open on the left worker's lap and the right worker is holding it. The background is full of blue pipes and the workers are the main focus of the image.", - "id": 2925 + "image_path": "G:\\images\\combined\\01143_jpg.rf.b69c2537501b88893cc0f476f6b930d5.jpg", + "response": "An experiment is being conducted where four men are standing in four separate\u4f53\u9a8c\u9986\u7684\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\u533a. Each man is wearing a safety helmet and their\u4f53\u9a8c\u9986 is measuring their performance.", + "id": 33528 }, { - "image_path": "G:\\images\\combined\\004995_jpg.rf.47a20b218420f9e71b731682981a8003.jpg", - "response": "A group of three people standing in front of a large factory.", - "id": 2926 + "image_path": "G:\\images\\combined\\01146_jpg.rf.bdf7423869abf5f9a29f203422557c7d.jpg", + "response": "A group of four men wearing blue overalls and yellow hard hats are standing in a clearing in a forest. They are holding tools including a large spade and a chainsaw.", + "id": 33529 }, { - "image_path": "G:\\images\\combined\\004996_jpg.rf.6fdb15817c11e712b2f6932ce759b2ac.jpg", - "response": "A man and a woman are standing in a kitchen. The woman is holding a cell phone and appears to be showing the man something on the screen. The man is looking at a spot on the wall where there is a chip in the paint.", - "id": 2927 + "image_path": "G:\\images\\combined\\0114ec2282986ca4.jpg", + "response": "a group of baseball players standing on the field", + "id": 33530 }, { - "image_path": "G:\\images\\combined\\004997_jpg.rf.f2b62117b0da571f125482919ba34d24.jpg", - "response": "A man wearing a white hard hat and carrying a brick on his shoulder.", - "id": 2928 + "image_path": "G:\\images\\combined\\01151b36623af990.jpg", + "response": "A baseball player wearing a blue and white uniform is standing on the field.", + "id": 33531 }, { - "image_path": "G:\\images\\combined\\004998_jpg.rf.40155956542f8e3c0bc59a0d4e7082d0.jpg", - "response": "a group of men standing around a plot of land", - "id": 2929 + "image_path": "G:\\images\\combined\\0115456b0bfa2ff1.jpg", + "response": "A wooden table with a pitcher and a glass of Stella Artois beer.", + "id": 33532 }, { - "image_path": "G:\\images\\combined\\004999_jpg.rf.68bf4481f904361223d7e7e5065e48d7.jpg", - "response": "A group of three workers wearing yellow hard hats are working on a bridge. They are all crouched down and appear to be focused on their task. There is a red crane visible in the background.", - "id": 2930 + "image_path": "G:\\images\\combined\\01161eea482575dc.jpg", + "response": "A street scene with a traffic light over the road. There are several cars parked on the side of the road and a few people walking around. The street is lined with buildings and there is a McDonald's in the background.", + "id": 33533 }, { - "image_path": "G:\\images\\combined\\0049c1a1fe79f581.jpg", - "response": " foil(222,345),(824,995) on the grill", - "id": 2931 + "image_path": "G:\\images\\combined\\01163_jpg.rf.4d4e539ebab5fcbdc41be7aba71a0548.jpg", + "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is reaching into their pocket.", + "id": 33534 }, { - "image_path": "G:\\images\\combined\\004a50da6f30492e.jpg", - "response": "A poster on a window for a musician named LinQ Yim.", - "id": 2932 + "image_path": "G:\\images\\combined\\01163_jpg.rf.f6d73d8cc9aa5e506b4e462e18a1bfa3.jpg", + "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is looking at the camera.", + "id": 33535 }, { - "image_path": "G:\\images\\combined\\004a6f5dd8925a23.jpg", - "response": "a man wearing a black shirt with a white skull on it", - "id": 2933 + "image_path": "G:\\images\\combined\\01164_jpg.rf.09c64066c608c99e49ad42923e4ddef6.jpg", + "response": "A worker in a camouflage jacket and a blue hat is working on an electricity component outdoors. He is sitting on a red stool and is focusing on the task at hand. There are several other workers in the background, but the main focus is on the man in the front.", + "id": 33536 }, { - "image_path": "G:\\images\\combined\\004abd1e49165b1c.jpg", - "response": "A red Opel Kadett C 3-door parked on the side of the street.", - "id": 2934 + "image_path": "G:\\images\\combined\\01164_jpg.rf.156d5380e4062180fe98d1e72925458c.jpg", + "response": "A man in a grey jacket and blue hat is working on an electrical component outdoors. He is wearing a grey jacket and blue hat. There is a grey electrical component in front of him and he is holding a pair of pliers. There are several other people in the background.", + "id": 33537 }, { - "image_path": "G:\\images\\combined\\004b1e697e3ffdf9.jpg", - "response": "A blue and white bus is on the street.", - "id": 2935 + "image_path": "G:\\images\\combined\\0116dcb302273101.jpg", + "response": "A grey Audi A7 is parked in a parking lot next to other cars. The car has a trunk and four doors. It has a license plate that says \"WAZ 7240\". There is a red light on the back of the car. The car is parked in a parking space.", + "id": 33538 }, { - "image_path": "G:\\images\\combined\\004b75d1299e653c.jpg", - "response": "A black and white police car with the word SHERIFF on the door.", - "id": 2936 + "image_path": "G:\\images\\combined\\0116dcf25359ea13.jpg", + "response": "A large green M&M's candy character on a city billboard.", + "id": 33539 }, { - "image_path": "G:\\images\\combined\\004c0c8daa5eebda.jpg", - "response": "A book with a green cover that says The Original Preppy Cookbook on it.", - "id": 2937 + "image_path": "G:\\images\\combined\\0116e31d285903a0.jpg", + "response": "A soccer game is being played on a grass field.", + "id": 33540 }, { - "image_path": "G:\\images\\combined\\004c1766c10578cd.jpg", - "response": "A baseball player in a red shirt and white pants holding a baseball and a catcher's mitt.", - "id": 2938 + "image_path": "G:\\images\\combined\\01178cc7592926a9.jpg", + "response": "A National Express bus is parked in a parking lot.", + "id": 33541 }, { - "image_path": "G:\\images\\combined\\004c316ee7c0a3fc.jpg", - "response": "a man in a red shirt holding a surfboard", - "id": 2939 + "image_path": "G:\\images\\combined\\01178_jpg.rf.39ca3a751b24868c60e54b9237ae02e8.jpg", + "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue jeans, blue work shirts and blue hard hats. One of the men is holding a drill in his right hand. The roof of the home appears to be in disrepair, with several boards missing and others replaced with metal. The sky is grey and overcast, and there is a small building in the background on the left.", + "id": 33542 }, { - "image_path": "G:\\images\\combined\\004c5108977ac0d8.jpg", - "response": "Detail of Portrait of Johann Friedrich Schenider (1686-1743) by unknown artist", - "id": 2940 + "image_path": "G:\\images\\combined\\01178_jpg.rf.826ebf205567fe59fc0e8cc746f47ff2.jpg", + "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue uniforms and blue hard hats. One of the men is holding a large wrench in his hand. The roof of the home appears to be in disrepair, with several nails sticking out. In the background, there is a small building and a chain link fence.", + "id": 33543 }, { - "image_path": "G:\\images\\combined\\004cada0dea66c27.jpg", - "response": "A vintage advertisement for White Rock soap.", - "id": 2941 + "image_path": "G:\\images\\combined\\01185_jpg.rf.576f5075b57501eaa88635d8a7ab61e4.jpg", + "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with a concrete floor. The person on the left is pointing towards the right, and the person on the right is standing with their hands behind their back. There are many boxes on the left side of the image, and a pipe on the right side. The background is blurred out, making the people and objects in the foreground stand out.", + "id": 33544 }, { - "image_path": "G:\\images\\combined\\004d0744b999e29e.jpg", - "response": "A woman is laying on the floor next to two LG robots. The one on the left is black and has the word LG on the top. The one on the right is red and has the word LG on the top as well. The woman is smiling and has her hand near her ear.", - "id": 2942 + "image_path": "G:\\images\\combined\\01185_jpg.rf.7acf3c3cb1ed5db7316c73012783ec3f.jpg", + "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with yellow and white lines on the floor. The person on the left is pointing towards the right, and the person on the right has their hands behind their back. There are many boxes and containers in the warehouse, and a pipe is visible on the ceiling.", + "id": 33545 }, { - "image_path": "G:\\images\\combined\\004de6286016d7fa.jpg", - "response": "A poster for Spin Doctors concert in Spain in 2013.", - "id": 2943 + "image_path": "G:\\images\\combined\\0118b3d906fae853.jpg", + "response": "A man dribbling a basketball on a court.", + "id": 33546 }, { - "image_path": "G:\\images\\combined\\004e59f30392a1cc.jpg", - "response": "A man wearing a black shirt with the words Game Design Expo on the back of it.", - "id": 2944 + "image_path": "G:\\images\\combined\\0119301a01cee4e8.jpg", + "response": "a man writing on a white board(383,146),(753,994)", + "id": 33547 }, { - "image_path": "G:\\images\\combined\\004e627c688b6000.jpg", - "response": "A building with graffiti on it and a bush in front of it.", - "id": 2945 + "image_path": "G:\\images\\combined\\01196dd1503890cd.jpg", + "response": "A poster that says Communication and Teamwork on it.", + "id": 33548 }, { - "image_path": "G:\\images\\combined\\004ee60e0f1dc6f2.jpg", - "response": "A young boy in a red shirt and grey pants is pitching a baseball on a baseball field.", - "id": 2946 + "image_path": "G:\\images\\combined\\0119c15fefb94aa7.jpg", + "response": "A table with five different watches on it.", + "id": 33549 }, { - "image_path": "G:\\images\\combined\\004f1ec7d27bb12d.jpg", - "response": "A group of men standing around a large stack of boxes.", - "id": 2947 + "image_path": "G:\\images\\combined\\0119c232dddc018c.jpg", + "response": "A busy city street filled with traffic and pedestrians. There are two blue and white buses, multiple yellow taxis, and several cars on the road. People are walking on the sidewalks and crossing the street. Some people are carrying backpacks and handbags. There are also a few traffic lights in the scene.", + "id": 33550 }, { - "image_path": "G:\\images\\combined\\004f345ce26e9d2e.jpg", - "response": "A red convertible car with the top down.", - "id": 2948 + "image_path": "G:\\images\\combined\\011a5843434e7358.jpg", + "response": "A can of spray paint sitting in the grass in front of a wall covered in graffiti.", + "id": 33551 }, { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.1dbc1e3c87fb3ffe5c738782ac3107bd.jpg", - "response": "The photo shows a woman in a mask holding two photos in front of her face. She is wearing a hat and a leopard print top. She is speaking into a microphone. In one of the photos, there is a man in a white shirt and black pants. In the other photo, there is a sink full of dirty dishes. There are several people in the background, some holding signs. The woman is standing in front of a yellow wall with Chinese writing on it.", - "id": 2949 + "image_path": "G:\\images\\combined\\011b1e34799f59e2.jpg", + "response": "A poem written by Dan Buck is shown in a blue text box. The poem is titled \"The Ocean Tip\" and is in black font. The poem is written in free verse and is 10 lines long. The first line is \"In the beginning was the end.\"", + "id": 33552 }, { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.c9384350352989339f6ae3f8a4503243.jpg", - "response": "A woman wearing a black and white hat and a leopard print scarf is holding two photos. She is wearing a mask and a blue hat. She is holding a microphone in her right hand. In the background there is a banner with Chinese characters. On the right side of the banner, there is a picture of a toilet.", - "id": 2950 + "image_path": "G:\\images\\combined\\011b5bdd30be6dc4.jpg", + "response": "A poster of a man in Uncle Sam attire standing next to the American Legion emblem.", + "id": 33553 }, { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.ce32224fcc15c7aad77b1952a94c1569.jpg", - "response": "A woman wearing a hat and a mask is holding two posters. She is standing in front of a microphone.", - "id": 2951 + "image_path": "G:\\images\\combined\\011c16a034b2e73c.jpg", + "response": "A railroad crossing with a traffic light and a sign.", + "id": 33554 }, { - "image_path": "G:\\images\\combined\\005000_jpg.rf.0662110d19148c638132b057dd9c41a5.jpg", - "response": "A group of people in suits and hard hats stand in a circle in front of a building under construction.", - "id": 2952 + "image_path": "G:\\images\\combined\\011c36b835cc0e31.jpg", + "response": "a black and white photo of a clock on a wall", + "id": 33555 }, { - "image_path": "G:\\images\\combined\\005001_jpg.rf.a92fc1deea7c7d28ecb3b3cfa04dfe6e.jpg", - "response": "A woman wearing a yellow hard hat and holding a rolled-up blueprint is standing in a room with a man wearing a red hard hat in the background. The woman is wearing a yellow hard hat, a red bracelet, and a red and white checkered shirt. She is holding a rolled-up blueprint in her left hand. The man is wearing a white shirt and jeans. He is wearing a red hard hat and has a tool belt around his waist. There is a brick wall in the background with a wooden support beam running through it. There is a pile of construction materials on the floor in front of the woman.", - "id": 2953 + "image_path": "G:\\images\\combined\\011c42afa9a0fd90.jpg", + "response": "A Hawaiian Airlines plane sits on the tarmac.", + "id": 33556 }, { - "image_path": "G:\\images\\combined\\005002_jpg.rf.ed0003a00fcbf5e7a64216026e16588a.jpg", - "response": "A man sitting on a ladder and on the floor with a drill.", - "id": 2954 + "image_path": "G:\\images\\combined\\011c88f89ef53e23.jpg", + "response": "A man looking through a glass display of soccer jerseys at a FC Bayern Munich fan shop.", + "id": 33557 }, { - "image_path": "G:\\images\\combined\\005004_jpg.rf.d876e26f2c868f8411360883c090a91c.jpg", - "response": "The image shows a dry dock with a large ship being worked on by several workers. The ship is a reddish-brown color and is in the process of being painted. There are three cranes visible in the background, two of which are in the process of lifting something. The third crane is on the left side of the image. There are two ladders leading up to the dock, one on the left side of the image and one on the right side. The workers are wearing hard hats and are visible at various points along the dock.", - "id": 2955 + "image_path": "G:\\images\\combined\\011d187d1189b4e2.jpg", + "response": "A bottle of The Red Door red wine from Elk Run winery in Maryland. The label is white with a red door on it. The door has a gold frame and is slightly ajar. The door has a gold sign above it that says \"Elk Run\". The wine is a red table wine. The bottle is on a wooden table.", + "id": 33558 }, { - "image_path": "G:\\images\\combined\\005005_jpg.rf.158177d045c8a8fefe3555e30c7f5f90.jpg", - "response": "A man is working on a construction site.", - "id": 2956 + "image_path": "G:\\images\\combined\\011d91b451c274fb.jpg", + "response": "A baseball game is in progress with a batter at home plate holding a bat, a catcher with a glove behind the batter, and an umpire standing behind the catcher. There are several players in the field and on the bench, and a few baseball gloves scattered around the field. The stadium is full of fans watching the game, some of whom are sitting on the bleachers and others standing behind the field.", + "id": 33559 }, { - "image_path": "G:\\images\\combined\\005006_jpg.rf.fea8249288260866b3f744ece4bf222b.jpg", - "response": "A group of people standing around a computer screen.", - "id": 2957 + "image_path": "G:\\images\\combined\\011d99edbc3f2310.jpg", + "response": "A close up of a wooden ruler on a table.", + "id": 33560 }, { - "image_path": "G:\\images\\combined\\005007_jpg.rf.6035e7450e7a471feb7c4c1152697b49.jpg", - "response": "A worker in a white shirt and a white helmet(328,198),(438,328) is working on a construction site.", - "id": 2958 + "image_path": "G:\\images\\combined\\011e153f0c98b3b0.jpg", + "response": "A red Ford F150 pickup truck covered in snow.", + "id": 33561 }, { - "image_path": "G:\\images\\combined\\005008_jpg.rf.9378d311b0e685a74039c372b45b4aa8.jpg", - "response": "A construction worker is working on a building site, he is standing on a ladder and is wearing a blue hard hat. He is working on a structure made of scaffolding and steel.", - "id": 2959 + "image_path": "G:\\images\\combined\\011e4cefd7a1f14c.jpg", + "response": "A silver car with the number 13 on the front of it.", + "id": 33562 }, { - "image_path": "G:\\images\\combined\\005009_jpg.rf.b0538e7c5553cab354d5f96d3952f106.jpg", - "response": "A worker in a red uniform and hard hat is standing in the street holding a gas tank. He is in front of a building and there are people walking around him.", - "id": 2960 + "image_path": "G:\\images\\combined\\011e7e629fb9ae7b.jpg", + "response": "The image shows a row of Listerine Zero mouthwash bottles on a white shelf. There are nine bottles in total, arranged in three columns of three. The bottles are clear and filled with a light blue liquid. The label on each bottle features a blue and white logo with the word \"Listerine\" in bold white font. Underneath the logo, the label reads \"Zero\" in bold white font. The mouthwash is described as \"Less intense\" and \"zero alcohol\" on the label.", + "id": 33563 }, { - "image_path": "G:\\images\\combined\\005010_jpg.rf.bd72d43299aec954b08b5eacbb509f65.jpg", - "response": "A group of six men in hard hats are standing in a construction site. One man is pointing to the ceiling. The man on the far left is wearing a red hard hat and has his arms crossed. The man on the far right is wearing a white shirt and a red hard hat. The man in the center is wearing a green and black striped shirt. The man second from the left is wearing a striped shirt and a white hard hat. The man third from the right is wearing a white shirt and a blue hard hat. The man second from the right is wearing a white shirt and a red hard hat.", - "id": 2961 + "image_path": "G:\\images\\combined\\011eb2fdc9715438.jpg", + "response": "A close up of a few wine bottles on a shelf. The wine bottles are all lined up and have labels on them. The one on the left is for a wine called Sur Lie and has a white label. The middle bottle is for a wine called Gros Plant du Pays Nantais and has a green label. The right bottle is for a wine called Muscadet S\u00e8vre et Maine and has a white label with a black print on it.", + "id": 33564 }, { - "image_path": "G:\\images\\combined\\005011_jpg.rf.977c1bf328d18d179794185debca1cd8.jpg", - "response": "A group of three men working on a brick structure while wearing yellow helmets(578,548),(733,806)(645,178),(827,490)(51,302),(295,641).", - "id": 2962 + "image_path": "G:\\images\\combined\\011f132da434fc51.jpg", + "response": "An image of a phone with the screen reading \"Software Update\" and a button that says \"Later\" and another button that says \"Now Install\".", + "id": 33565 }, { - "image_path": "G:\\images\\combined\\005012_jpg.rf.574f07676e11312fa5ac385ba3fdb352.jpg", - "response": "A couple of workers are operating a machine.", - "id": 2963 + "image_path": "G:\\images\\combined\\011f1c9736c84042.jpg", + "response": "A man in a suit holding a knife above his head.", + "id": 33566 }, { - "image_path": "G:\\images\\combined\\005013_jpg.rf.ee957f9991eba9961748d8591769ef97.jpg", - "response": " Two men(137,166),(405,787)(461,227),(809,943) in hard hats(212,165),(324,280)(501,226),(631,360) and camouflage(139,270),(404,763) crouch down to examine debris(4,426),(999,997) on the ground", - "id": 2964 + "image_path": "G:\\images\\combined\\011f69bab7136f0c.jpg", + "response": "A couple of men sitting on a couch wearing green jackets.", + "id": 33567 }, { - "image_path": "G:\\images\\combined\\005015_jpg.rf.f09bb55cb9fbc5f9d4ecfaa96c027092.jpg", - "response": "A group of workers are working on a construction site.", - "id": 2965 + "image_path": "G:\\images\\combined\\011f83c26f88c72f.jpg", + "response": "A pitcher in a red jersey is in the middle of throwing a baseball.", + "id": 33568 }, { - "image_path": "G:\\images\\combined\\005016_jpg.rf.4d3d8fcbed705b4c04bddc0da1c278d1.jpg", - "response": "A group of five men wearing mining gear stand in a mine tunnel. They are all dirty and have helmets on.", - "id": 2966 + "image_path": "G:\\images\\combined\\011f97f760fec57a.jpg", + "response": "A bottle of Abstract sitting on a counter next to a wine glass.", + "id": 33569 }, { - "image_path": "G:\\images\\combined\\005017_jpg.rf.12e0e1d335a25d108db8b365418354ea.jpg", - "response": "A worker in a grey shirt and blue hat is on a construction site.", - "id": 2967 + "image_path": "G:\\images\\combined\\01200d3c7b34006c.jpg", + "response": "A person holding a smart watch in their hand. The watch has a black band and the time is 10:13. The watch is also showing the date as Friday the 13th.", + "id": 33570 }, { - "image_path": "G:\\images\\combined\\005018_jpg.rf.9d6d45cea90744bcc5dacf7ffdd295d2.jpg", - "response": "A pair of workers wearing hard hats stand on a platform.", - "id": 2968 + "image_path": "G:\\images\\combined\\01202_jpg.rf.c03834662d90d40f8744b325e04e75a3.jpg", + "response": " two men(334,251),(656,865)(7,229),(324,997) with blue hard hats(368,249),(490,420)(75,229),(249,453) on, one of them is spraying a white wall(607,6),(997,997) with a water gun(578,584),(729,811)", + "id": 33571 }, { - "image_path": "G:\\images\\combined\\005019_jpg.rf.492682cd43a8b4ddd90b16f9e0a8826f.jpg", - "response": "This is a picture of a group of people. The man in front is wearing a black suit and a tie. He is holding a black pen. Next to him on the left is a man in a white shirt and black vest. To the right of him is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a yellow hard hat. To the right of the man in the yellow hard hat is a man in a red hard hat. Behind the man in the red hard hat is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a black shirt and black pants. To the right of the man in the black shirt and black pants is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie.", - "id": 2969 + "image_path": "G:\\images\\combined\\01202_jpg.rf.daadd5614252de9aee4f254dd51e458c.jpg", + "response": " Two men(335,250),(654,864)(7,229),(324,997) wearing blue hard hats(368,249),(491,433)(77,229),(245,453) and holding a water jet(577,586),(728,814) in a flooded room.", + "id": 33572 }, { - "image_path": "G:\\images\\combined\\00501_jpg.rf.7082d8b4202e37fe0fe805d9f6d20a49.jpg", - "response": "A group of three men looking at a rolled up piece of blueprints in front of a body of water", - "id": 2970 + "image_path": "G:\\images\\combined\\01205a1cac8c2e33.jpg", + "response": "A poster for a show featuring Delta of Venus, Vermillion Lies, and Tippy Canoe. The poster features a skeleton in a red coat holding a dead bird and hugging a skeleton woman. The skeleton woman is holding a star. There are also skeleton wings on the woman's back. The show is on Friday, January 22nd at 8:30 PM at 1345 E. 12th St. in Arvis, CA.", + "id": 33573 }, { - "image_path": "G:\\images\\combined\\005021_jpg.rf.d0060c1ef4000d14d1eb5726c173a3f3.jpg", - "response": "A man in a white shirt and blue hat is standing in a bucket of a white truck. He is wearing a grey suit and an orange and white safety vest. The man is holding a grey and orange tool in his right hand. He is looking down at the ground. There are two power lines behind the man. The sky is blue with clouds. There is a white truck to the right of the man.", - "id": 2971 + "image_path": "G:\\images\\combined\\01208bd6923207db.jpg", + "response": "A dining table with plates, a glass of beer, a bottle of Jack Astor's Brewski, a bottle of hot sauce and a menu.", + "id": 33574 }, { - "image_path": "G:\\images\\combined\\005022_jpg.rf.ce7c454467d7f9e0d540beeb35fce8e6.jpg", - "response": "A couple of men in a field with one of them pointing at something.", - "id": 2972 + "image_path": "G:\\images\\combined\\01209963ab93abd9.jpg", + "response": "A man wearing a black suit and red tie stands at a podium in front of a microphone. He is wearing a wristband on his left arm and appears to be giving a speech.", + "id": 33575 }, { - "image_path": "G:\\images\\combined\\005024_jpg.rf.4778ae37dff9387ac890beceebe57487.jpg", - "response": " A worker(443,528),(708,997) stands in front of a crane(1,4),(468,997) at a construction site in China.", - "id": 2973 + "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.737b8abc2b2efd020c1b4b57cb5d720b.jpg", + "response": "A woman wearing a surgical mask and coughing on a train.", + "id": 33576 }, { - "image_path": "G:\\images\\combined\\005025_jpg.rf.898cdc02a7fd53c85bef1664bafe9823.jpg", - "response": "A couple of men working on a cement wall.", - "id": 2974 + "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.a4f91f2cb2a3a11978e8803b5adc242a.jpg", + "response": "A woman wearing a mask and coughing on a subway train.", + "id": 33577 }, { - "image_path": "G:\\images\\combined\\005026_jpg.rf.a6a01b0601363c2006049f3471c8edb5.jpg", - "response": "A group of rescue workers walking through a flooded alley.", - "id": 2975 + "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.b9b99f84d58baa1cbab009a6457daafb.jpg", + "response": "A woman wearing a mask and coughing on a subway train.", + "id": 33578 }, { - "image_path": "G:\\images\\combined\\005028_jpg.rf.ea0164cff6afff960bb09578a3bad0e6.jpg", - "response": "Men(314,13),(497,873)(382,118),(641,996) standing in front of a construction site", - "id": 2976 + "image_path": "G:\\images\\combined\\01212_jpg.rf.715e43bd93a6b5b9d657645fa2463044.jpg", + "response": "The image shows three men dressed in blue work clothes and yellow hard hats standing on a muddy patch of ground. They are all wearing blue aprons and have climbing harnesses on. The man in the middle is holding a cell phone and looking at it. The man on the left is holding a pair of pliers and looking down at a patch of ground. The man on the right is looking through a pair of binoculars and has a walkie-talkie strapped to his belt. They are all looking out over a green forest that borders the muddy patch of ground. In the background, a city skyline is visible through the trees.", + "id": 33579 }, { - "image_path": "G:\\images\\combined\\005029_jpg.rf.2621ce3bee7096ebf8a89f7f261dfde5.jpg", - "response": "The image shows a construction site in China. There are several buildings under construction, with the one on the left being the smallest and the one on the right being the largest. In the middle, there is a red sign that says \"Xiangtan Government Office Building\". There are also several people working on the site, with some standing on the wooden framework of the buildings and others near the red sign. Some of the people are wearing hard hats.", - "id": 2977 + "image_path": "G:\\images\\combined\\01212_jpg.rf.80eadb0983efe395a66e76a05f887c0f.jpg", + "response": "A group of three men in blue work clothes and yellow hard hats.", + "id": 33580 }, { - "image_path": "G:\\images\\combined\\005032_jpg.rf.4618eb4bb4fcb946edfbad3b6052900e.jpg", - "response": "In the image there is a man sitting on a large metal pile of rebar. The man is wearing a red hard hat, a green shirt, and grey pants. He is also wearing white gloves. He is using a tool with a green handle to work with the rebar. The rebar is wrapped in black wire. The man is in the middle of the pile of rebar and there is a yellow and white truck in the background on the left side of the image.", - "id": 2978 + "image_path": "G:\\images\\combined\\01215_jpg.rf.c16569cb04089d5f13ed16d8ebfe58f4.jpg", + "response": "An electrician in grey and blue uniform and wearing a blue hard hat is pointing to something in a grey control box with a lot of wires inside. The control box is open and mounted on a concrete wall. There is a rope tied to the electrician.", + "id": 33581 }, { - "image_path": "G:\\images\\combined\\005033_jpg.rf.c172b9e34c03dd9e834fd00437fcd2d6.jpg", - "response": "A group of people standing around a bus.", - "id": 2979 + "image_path": "G:\\images\\combined\\01215_jpg.rf.d7c8142777b787afb9b7dbcd8c93f3ae.jpg", + "response": "An electrician in grey suit and blue hard hat pointing to something in a grey box with red and black wires.", + "id": 33582 }, { - "image_path": "G:\\images\\combined\\005034_jpg.rf.4853ff323592222bc82b594c2ba2c035.jpg", - "response": "A group of three people standing in a warehouse.", - "id": 2980 + "image_path": "G:\\images\\combined\\012177742de13113.jpg", + "response": "A busy city street with many cars, taxis, and pedestrians. There are also many large electronic billboards in the area.", + "id": 33583 }, { - "image_path": "G:\\images\\combined\\005035_jpg.rf.5cd88f409d10ea7f0ef8a5255bd22052.jpg", - "response": "A bridge with train tracks going across it.", - "id": 2981 + "image_path": "G:\\images\\combined\\01219b2f91356b54.jpg", + "response": "A group of people sitting around a table.", + "id": 33584 }, { - "image_path": "G:\\images\\combined\\005036_jpg.rf.efdb94d5e474dbde631feb7b682d22e5.jpg", - "response": "A group of men standing in front of a pile of rubble.", - "id": 2982 + "image_path": "G:\\images\\combined\\0121e99197f8885d.jpg", + "response": "A white, blue and pink city bus is driving down the street.", + "id": 33585 }, { - "image_path": "G:\\images\\combined\\005037_jpg.rf.00355a34443a91a4cf56c9b894bf0224.jpg", - "response": "A group of workers inside a tunnel.", - "id": 2983 + "image_path": "G:\\images\\combined\\01226892fe46adee.jpg", + "response": "A tan bus is driving down a dirt road.", + "id": 33586 }, { - "image_path": "G:\\images\\combined\\005038_jpg.rf.bcc177feb570716019a08a17bd9c8f4f.jpg", - "response": "An electrician in a blue uniform and hard hat looking at a control panel with many wires and switches.", - "id": 2984 + "image_path": "G:\\images\\combined\\0122c5279a501df2.jpg", + "response": "An airplane in the sky with landing gear down.", + "id": 33587 }, { - "image_path": "G:\\images\\combined\\005039_jpg.rf.813d7d505673851979ff69f444816df1.jpg", - "response": "a group of men standing around a construction site", - "id": 2985 + "image_path": "G:\\images\\combined\\0122d250eabd65c3.jpg", + "response": "A large sign advertising the University of Montreal at night.", + "id": 33588 }, { - "image_path": "G:\\images\\combined\\00503_jpg.rf.9dc548583ccbcc057b87340d621c0f2e.jpg", - "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", - "id": 2986 + "image_path": "G:\\images\\combined\\01230267e5ac9af1.jpg", + "response": "A street sign showing the distance to several destinations.", + "id": 33589 }, { - "image_path": "G:\\images\\combined\\00503_jpg.rf.b563b06667e3c3759a2b17381351b80f.jpg", - "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", - "id": 2987 + "image_path": "G:\\images\\combined\\01232_jpg.rf.40ccda07e03eb10958899bd6c6eb2922.jpg", + "response": "Three Chinese men in blue uniforms and hard hats walking down a sidewalk.", + "id": 33590 }, { - "image_path": "G:\\images\\combined\\005040_jpg.rf.5344775bef4daebcc7de1e7efe31c3d4.jpg", - "response": "A construction site with multiple workers.", - "id": 2988 + "image_path": "G:\\images\\combined\\01232_jpg.rf.c81dc15e8c58c8a2d35b3e60f1dd5f49.jpg", + "response": "The three Chinese men are wearing blue hard hats.", + "id": 33591 }, { - "image_path": "G:\\images\\combined\\005042_jpg.rf.cbc4d0b74b784722823f5f0690fea384.jpg", - "response": "The image shows a man in a blue shirt and blue hat, wearing black boots, kneeling in a large pit filled with water. The man is using some kind of device with two hoses and a handle with two knobs on it, which he is holding above his head. There is a large pipe on the right side of the pit, and the man is leaning towards it. The background shows a wall on the left side of the pit and a wall on the right side of the pit, with only the top part visible.", - "id": 2989 + "image_path": "G:\\images\\combined\\012352464779abdf.jpg", + "response": "A laptop computer sitting on a desk.", + "id": 33592 }, { - "image_path": "G:\\images\\combined\\005043_jpg.rf.1578328150f66ff3affc470e60b494bb.jpg", - "response": "The image shows a city street scene with a few people and buildings. In the foreground, three men are carrying a ladder down the street. They are wearing blue uniforms and yellow hard hats. Another man is walking behind them. To the left of the scene, a person is walking in the opposite direction. The buildings on both sides of the street have air conditioners hanging from their windows.", - "id": 2990 + "image_path": "G:\\images\\combined\\01235_jpg.rf.33f2c68632807dc06e10bdb01075f739.jpg", + "response": "A couple of men in blue helmets are checking a red cable. They are both dressed in black. One of the men is holding a digital multimeter. They are standing in front of a silver metal tower. In the background, there are solar panels and power transmission lines.", + "id": 33593 }, { - "image_path": "G:\\images\\combined\\005044_jpg.rf.b76fb784ba054772ee776c5ed447a0ed.jpg", - "response": "A man and a woman wearing hard hats are standing on a construction site. They are standing on a red ladder. The woman is pointing towards the ceiling of the building. The man is holding a walkie talkie.", - "id": 2991 + "image_path": "G:\\images\\combined\\01235_jpg.rf.a0fee109d118abfafab87243e7ff970e.jpg", + "response": "A man in a blue hat and black jacket points to a piece of equipment in a field. Another man in a blue hat and black jacket stands next to him. In the background, solar panels can be seen.", + "id": 33594 }, { - "image_path": "G:\\images\\combined\\005046_jpg.rf.95851205442dba7695fc3e1868dafc5a.jpg", - "response": " Two workers(417,363),(628,997)(559,368),(652,997) in a tunnel with metal bars(647,622),(997,820)", - "id": 2992 + "image_path": "G:\\images\\combined\\012372cab6855b83.jpg", + "response": "A white wall with three black and white prints of people on bikes. The one in the middle says \"My other ride is your mom\"", + "id": 33595 }, { - "image_path": "G:\\images\\combined\\005047_jpg.rf.270dcb6b065c545831d26f7a3ef1cb71.jpg", - "response": "A man and a woman wearing green safety helmets are looking at a tablet.", - "id": 2993 + "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.19578451d0568ef146af6b0a16d12d24.jpg", + "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing protective goggles. The people are of various heights and appearances, and some of them are carrying backpacks or small bags. The scene is set in a busy city, with many people walking in different directions.", + "id": 33596 }, { - "image_path": "G:\\images\\combined\\005048_jpg.rf.d17d354aa70ce07babe6eabdf892f97c.jpg", - "response": "A group of men standing next to each other.", - "id": 2994 + "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.250032082e3d9bd69154342670af8116.jpg", + "response": "A crowded of people walking in the street wearing facemasks.", + "id": 33597 }, { - "image_path": "G:\\images\\combined\\005049_jpg.rf.3ca201934eb495d1941b233713880ebc.jpg", - "response": "An engineer in an orange uniform giving directions to two excavators.", - "id": 2995 + "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.6db0dc3348e1babbbfd4bc59ca97cdee.jpg", + "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing black or grey coats. The people are of varying heights and ages, and some are carrying backpacks or suitcases. The scene is rather busy and bustling.", + "id": 33598 }, { - "image_path": "G:\\images\\combined\\00504_jpg.rf.2781cbcc2a1db29ff9c548664cb7de51.jpg", - "response": "A group of men in yellow vests and hard hats are standing on a construction site. Some of the men are holding a white and black sign. There is a car parked to the left of the group and a building to the right. In the background, there is a white sky and some trees.", - "id": 2996 + "image_path": "G:\\images\\combined\\01248f94edf92e02.jpg", + "response": "A yellow tram is driving down the street and has stopped at a traffic light. There are several cars parked on the side of the street. A couple of people are standing on the corner, and a few more people are walking around. There is a stop sign in the background, and a few street signs can be seen above the tram.", + "id": 33599 }, { - "image_path": "G:\\images\\combined\\00504_jpg.rf.de90e4d13102938eba575ee30831ebb8.jpg", - "response": "A group of men standing in front of a construction site.", - "id": 2997 + "image_path": "G:\\images\\combined\\0124a48367e2d801.jpg", + "response": "A bottle of Le Reveisseur VSOP brandy sits on a wooden table. The bottle is almost empty, with only a small amount of liquid remaining. The label on the bottle is white and red, with the brand name and other information printed on it. The cap of the bottle is black and has a gold fleur de lis design on it. The bottle is made of glass and is cylindrical in shape.", + "id": 33600 }, { - "image_path": "G:\\images\\combined\\005050_jpg.rf.fb432f309c7a25acb22e8f3f947eac77.jpg", - "response": "A construction worker is on a ladder and is working on a large pipe.", - "id": 2998 + "image_path": "G:\\images\\combined\\0124c35d7405ef5f.jpg", + "response": "A woman wearing a blue and white shirt and black pants holding a black bag over her shoulder and a black and red belt.", + "id": 33601 }, { - "image_path": "G:\\images\\combined\\005051_jpg.rf.b760f03c528b5d87310483f0c0191616.jpg", - "response": "A group of three people working in a factory. They are standing in front of a large metal machine and are wearing hard hats and masks. There is smoke rising from somewhere in the factory and a pile of coal on the ground.", - "id": 2999 + "image_path": "G:\\images\\combined\\01258_jpg.rf.a0e5d5043dbd60837e07e2192cfef772.jpg", + "response": "In the image, two male workers wearing blue helmets are seen. They are standing next to a yellow truck with its hood open. The workers seem to be checking the inner part of the truck. One of the workers is holding a red pen and is looking at a white paper that he has in his hand. The paper contains some information. The truck is parked near a green lawn.", + "id": 33602 }, { - "image_path": "G:\\images\\combined\\005052_jpg.rf.f4c346e11907f377c9e8232f5baf0983.jpg", - "response": "A group of men in blue uniforms and hard hats are working on an electrical box. They are all hunched over and focused on the task at hand. One man is kneeling on the ground and reaching up to work on the electrical box. Another man is standing behind him, helping with the process. The third man is standing to the right of the other two, also helping with the work. They are all wearing different colored hard hats and their uniforms are a dark blue.", - "id": 3000 + "image_path": "G:\\images\\combined\\01261_jpg.rf.55313e5c124f083a8711ccda93dcdfbf.jpg", + "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", + "id": 33603 }, { - "image_path": "G:\\images\\combined\\005053_jpg.rf.b7e56b8d6bd948ba5a40d075c05f61f6.jpg", - "response": "A group of workers in blue uniforms and yellow hard hats are working on a large construction site. They are standing on a mesh of wire that is laid out on the ground. In the background, there are several large cranes working on the site.", - "id": 3001 + "image_path": "G:\\images\\combined\\01261_jpg.rf.8795132b866d660e24d118ecb72cafbe.jpg", + "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", + "id": 33604 }, { - "image_path": "G:\\images\\combined\\005054_jpg.rf.f360351a50b250aeea7e695a47d91513.jpg", - "response": "A man in a white uniform and blue helmet is suspended between two power lines while climbing a transmission tower. He is wearing a tool belt and has a tool in each hand. The sky is blue and cloudless.", - "id": 3002 + "image_path": "G:\\images\\combined\\01266_jpg.rf.65e938fcadac13ed2232fa7988c31a3c.jpg", + "response": "A group of three men in neon green shirts and blue hard hats are standing in front of a large metal box.", + "id": 33605 }, { - "image_path": "G:\\images\\combined\\005055_jpg.rf.0419233b4748e259dc5c8dc4adabd9ab.jpg", - "response": "The image shows a group of workers wearing hard hats and safety vests working on a train track at night. They are using flashlights to illuminate the area and are focused on repairing a section of the track.", - "id": 3003 + "image_path": "G:\\images\\combined\\01266_jpg.rf.b2f0dd15927cffece51563b9e99c95e1.jpg", + "response": "A group of three men standing in front of a large electrical box.", + "id": 33606 }, { - "image_path": "G:\\images\\combined\\005056_jpg.rf.e0de373f96d813ed4d75cc51b1237fa8.jpg", - "response": "An electrician wearing a white uniform and a red helmet is working on a power pole. He is holding onto a metal rail and has a tool belt around his waist. There is a yellow rag in the tool belt. He is wearing white gloves and has orange safety straps around his waist and legs. There are black electrical wires behind him and a grey power box to his left.", - "id": 3004 + "image_path": "G:\\images\\combined\\01268_jpg.rf.bc109d4a014a91e2ae68a5aa01320e2c.jpg", + "response": "In the image a man is wearing a blue hard hat and work shirt as he looks down at a camera in his hand. He is standing in a room filled with machinery. To the right of the man there is a large metal cylinder with a black and silver machine on top of it. The wall to the left of the man is a bright white.", + "id": 33607 }, { - "image_path": "G:\\images\\combined\\005057_jpg.rf.d96ed4494b85966a55dd6c703f67104b.jpg", - "response": "A group of men in uniforms and hard hats are working on a bridge.", - "id": 3005 + "image_path": "G:\\images\\combined\\01270_jpg.rf.7d2c952fd789ed230cd07d0db5dd1521.jpg", + "response": "An electrician is working on power lines.", + "id": 33608 }, { - "image_path": "G:\\images\\combined\\005059_jpg.rf.280396c8cea15556395befe50b43b102.jpg", - "response": "a group of men standing inside a tunnel", - "id": 3006 + "image_path": "G:\\images\\combined\\0127299557fae7b2.jpg", + "response": "A sign for an Indian dance recital is posted on a wall.", + "id": 33609 }, { - "image_path": "G:\\images\\combined\\00505_jpg.rf.533b2d249371138c4ea02d5ec0d4c523.jpg", - "response": "A woman with a red helmet and a white dress is standing in front of a group of men. The men are also wearing red helmets. They are all wearing white. The woman is holding a white fan. They are standing in front of a construction site.", - "id": 3007 + "image_path": "G:\\images\\combined\\01277_jpg.rf.a0c18dddd6f056b355ad4ff9eec74836.jpg", + "response": "The image shows two men walking through a field with a white dog between them. The men are wearing blue shirts and blue hats, and are carrying yellow and blue tools. The dog is a white Samoyed, with a rope on its neck. It is panting and appears to be walking voluntarily between the two men.", + "id": 33610 }, { - "image_path": "G:\\images\\combined\\005061_jpg.rf.2e0516ba572f2544956d34f14d80cb2f.jpg", - "response": "The photo shows Premier Li Keqiang visiting the construction site of the Hong Kong-Zhuhai-Macau Bridge in Zhuhai, south China's Guangdong Province, April 11, 2017. He was accompanied by Pan Yiyi, governor of Guangdong Province, and Hong Kong-Zhuhai-Macau Bridge Project Director Li Xinchuang. The premier was informed of the progress of the construction work and the safety measures being taken. He also talked with workers and staff about their work and living conditions.", - "id": 3008 + "image_path": "G:\\images\\combined\\0127d14364206022.jpg", + "response": "An airport scene with a large jetliner parked on the tarmac. The plane is white and yellow and says \"Royal Brunei\" on the side. There are people walking around the plane and a stairway is visible leading up to the plane. There is also a reflection of the plane in a window.", + "id": 33611 }, { - "image_path": "G:\\images\\combined\\005062_jpg.rf.f84bb2e7fb58589654eca74d21b03a90.jpg", - "response": "A group of men working on a construction site.", - "id": 3009 + "image_path": "G:\\images\\combined\\01280_jpg.rf.515e9037455a72e4c7089596114c12b1.jpg", + "response": "A few men dressed in blue and yellow work uniforms and yellow and blue helmets are working on an electricity line in a field.", + "id": 33612 }, { - "image_path": "G:\\images\\combined\\005063_jpg.rf.420ea3127578b788a411320ace7ecd9f.jpg", - "response": "The image shows a large battleship on a dry dock. The battleship is painted grey and gold and is docked in a large body of water. There are several people in the image, including one person walking in front of the battleship and another person wearing a hard hat. Some people are wearing uniforms and there are several pairs of shoes in the image. The battleship has many nooks and crannies and is surrounded by several other boats.", - "id": 3010 + "image_path": "G:\\images\\combined\\01280_jpg.rf.e5d1d70a76c82eee9b850ac8e0240126.jpg", + "response": "A group of three men dressed in blue and yellow work clothes. They are standing in a field and are wearing yellow helmets. They are working on an electricity wire.", + "id": 33613 }, { - "image_path": "G:\\images\\combined\\005064_jpg.rf.32547212bbeecd2485fcd78d5c376895.jpg", - "response": "In the image two workers wearing yellow helmets are seen. They are wearing blue color overalls. One worker is seen carrying a glass material on his shoulder. Another worker is seen carrying a coiled up material on his shoulder. There are two electric poles in the background. One of the electric poles is made of metal and it is painted grey. Another electric pole is made of wood and it is painted brown. The sky is blue with clouds. There are two birds flying in the sky. One bird is flying towards the left side of the image and another bird is flying towards the top right side of the image.", - "id": 3011 + "image_path": "G:\\images\\combined\\012858674b02d06a.jpg", + "response": "A busy city street filled with traffic and lined with tall buildings.", + "id": 33614 }, { - "image_path": "G:\\images\\combined\\005065_jpg.rf.ad99bc292548ac63312fbb96db3e82c6.jpg", - "response": "a man(349,296),(619,996) in a mine", - "id": 3012 + "image_path": "G:\\images\\combined\\012929dbb05a8ddf.jpg", + "response": "A large blue scoreboard hanging from the ceiling.", + "id": 33615 }, { - "image_path": "G:\\images\\combined\\005066_jpg.rf.2a7f2a06168d5e588e9b7a7e107c731a.jpg", - "response": "In the image there are three people standing in a field of dirt. They are all wearing hard hats. The person on the left is holding a rolled up blueprint.", - "id": 3013 + "image_path": "G:\\images\\combined\\012940be63dd946c.jpg", + "response": "A train is pulling into the station.", + "id": 33616 }, { - "image_path": "G:\\images\\combined\\005067_jpg.rf.2ca444a08ea155c38b2b5697efbd32f2.jpg", - "response": "A group of men in suits and hard hats stand in a construction site.", - "id": 3014 + "image_path": "G:\\images\\combined\\01298_jpg.rf.4383140e13233520536f95977ea62997.jpg", + "response": "The image shows two workers in blue and yellow work clothes and green camouflage clothes, with helmets and white and blue protective clothing, standing on a suspension bridge and maintaining the power supply. The bridge is located in a mountainous area, with mountains on both sides and a river below. The sky is overcast, and the two workers are in the middle of the photo, one on the left and the other on the right.", + "id": 33617 }, { - "image_path": "G:\\images\\combined\\005068_jpg.rf.b220b64d7cdbee3d4b28bea89a9b4bd3.jpg", - "response": "A man in a blue shirt and blue hat working on power lines at night.", - "id": 3015 + "image_path": "G:\\images\\combined\\01298_jpg.rf.af3fd6a06091c394383053b40b021a32.jpg", + "response": "The image shows two workers in blue and yellow work clothes and yellow helmets, with one of them climbing a suspension bridge to fix the power transmission line. The sky is overcast, and the river below the suspension bridge is brown. On the right side of the bridge, there are large rocks with a height of about 20 meters.", + "id": 33618 }, { - "image_path": "G:\\images\\combined\\005069_jpg.rf.0f01d3b46f2d5ecae66dfda00bd8f6be.jpg", - "response": "A man working on some power lines", - "id": 3016 + "image_path": "G:\\images\\combined\\0129d29b15e8792e.jpg", + "response": "A bottle of Peay Pinot Noir from 2010, from Sonoma Coast.", + "id": 33619 }, { - "image_path": "G:\\images\\combined\\00506_jpg.rf.7c3966575bb94853eceb91569c66901b.jpg", - "response": "A group of workers walking on a bridge with a sign that says in Chinese \u65bd\u5de5\u91cd\u5730 \u9605\u4eba\u514d\u8fdb.", - "id": 3017 + "image_path": "G:\\images\\combined\\0129fa55a43f1b97.jpg", + "response": "The women cyclocross riders are chatting before the race.", + "id": 33620 }, { - "image_path": "G:\\images\\combined\\00506_jpg.rf.848a7d637448985b3507cfa7944f3887.jpg", - "response": "A group of workers walking on a bridge.", - "id": 3018 + "image_path": "G:\\images\\combined\\012a9b831b6ca1dc.jpg", + "response": "a white box(142,74),(886,982)", + "id": 33621 }, { - "image_path": "G:\\images\\combined\\005071_jpg.rf.8d0996c026b32875ce5d59daec4e2234.jpg", - "response": "A group of men are gathered around a white board. One man is pointing at a map while the others are watching. In the background, there is a bridge and a car.", - "id": 3019 + "image_path": "G:\\images\\combined\\012ab1e92a27b6c5.jpg", + "response": "a blue street sign that says welcome to jersey", + "id": 33622 }, { - "image_path": "G:\\images\\combined\\005072_jpg.rf.4c48b9c26d82465cf1489d32ebc3096b.jpg", - "response": " Men(699,671),(912,890)(457,571),(631,769) carrying a large tire(637,697),(938,938) up a steep hill", - "id": 3020 + "image_path": "G:\\images\\combined\\012ac43f6fda5713.jpg", + "response": "A baseball game is being played at night with many fans in the stands.", + "id": 33623 }, { - "image_path": "G:\\images\\combined\\005073_jpg.rf.f038ac193a7cf5b6144b6faab7932f63.jpg", - "response": "A construction site with three workers visible. They are working on a scaffold.", - "id": 3021 + "image_path": "G:\\images\\combined\\012b127d2bbc7b85.jpg", + "response": "A man sitting at a table with a plate of food and a cup of beer in front of him.", + "id": 33624 }, { - "image_path": "G:\\images\\combined\\005074_jpg.rf.1a30a7a9501957fec30cda6463482b40.jpg", - "response": "A man in an orange hard hat is working on a piece of machinery. He is wearing a red shirt and has a tool belt around his waist. He is standing on a muddy patch and there is a drop of water on the end of a tool he is holding. There is a second man in the background, wearing a white shirt and a black jacket. He is also wearing a hard hat. In the background, there is a red object that looks like a triangle with a point.", - "id": 3022 + "image_path": "G:\\images\\combined\\012c0700db4deff3.jpg", + "response": "A clown sitting on a bench next to a sign.", + "id": 33625 }, { - "image_path": "G:\\images\\combined\\005075_jpg.rf.fd3ae6bf73072f530738d3c2c846708e.jpg", - "response": "A worker in a blue hard hat and grey winter jacket is holding a device with a screen in front of a large power station.", - "id": 3023 + "image_path": "G:\\images\\combined\\012c101e4543382e.jpg", + "response": "a book that is open to the intro section", + "id": 33626 }, { - "image_path": "G:\\images\\combined\\005076_jpg.rf.73387e410adad93d27e9be4c506ebe49.jpg", - "response": "In the image, two technicians are working on an electrical cable. They are both dressed in work clothes and are wearing hard hats. One of the technicians is on the left side of the image, while the other is on the right. The technician on the left is kneeling on the ground and is working on the cable. The technician on the right is standing and is also working on the cable. The scene is set outdoors, with green plants in the background.", - "id": 3024 + "image_path": "G:\\images\\combined\\012ca0f6e8ab8ce1.jpg", + "response": "The man writing on the white board is wearing a shirt that says \"I'm with the band\". There is a person sitting down watching the man write on the board.", + "id": 33627 }, { - "image_path": "G:\\images\\combined\\005077_jpg.rf.ef0880927b2f81df8db62c0193e22ad1.jpg", - "response": "Three men in a construction site, two of them are wearing yellow and orange safety vests and white helmets, the one on the right is an old man with grey hair and blue shirt, he is holding a set of blueprints.", - "id": 3025 + "image_path": "G:\\images\\combined\\012d3c38641c9662.jpg", + "response": "A female model is presenting two LG monitors, one is an ultra-wide 29-inch model and the other is a 24-inch model.", + "id": 33628 }, { - "image_path": "G:\\images\\combined\\005078_jpg.rf.ce7d9b6eea8de6223129be536239ff06.jpg", - "response": "A worker in a factory is looking at a monitor.", - "id": 3026 + "image_path": "G:\\images\\combined\\012da22452404628.jpg", + "response": "A baseball player holding a bat and wearing a grey uniform with the number 35 on the back.", + "id": 33629 }, { - "image_path": "G:\\images\\combined\\00507b5d6fdd6468.jpg", - "response": "An iPhone sitting on a wooden table.", - "id": 3027 + "image_path": "G:\\images\\combined\\012e881187339ace.jpg", + "response": "A van covered in graffiti with the writing \"faits l'amour pas les marges\" written on it.", + "id": 33630 }, { - "image_path": "G:\\images\\combined\\00507_jpg.rf.ffd9413ea6941479b8bbe53a31052040.jpg", - "response": "The image shows a group of men standing on a construction site, wearing hard hats and coats. They are standing in front of a pile of dirt and a partially constructed building. Some of the men are also wearing ties. In the background, there is a mountain.", - "id": 3028 + "image_path": "G:\\images\\combined\\01303_jpg.rf.0daec2f3a1ad9b77f0b5699330b06f33.jpg", + "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be fixing the pipe. There is a forest in the background.", + "id": 33631 }, { - "image_path": "G:\\images\\combined\\005080_jpg.rf.97db274e81b3059e0d9e3179b66129b4.jpg", - "response": "In the image there are two construction workers wearing blue and red hard hats standing on the right hand side. In front of them is a large metal object on the ground. To the left of the workers is a large metal pipe. In the background there is a forest of trees. In the middle ground there is a dirt road. To the far left of the image there is a yellow flowering plant.", - "id": 3029 + "image_path": "G:\\images\\combined\\01303_jpg.rf.edc12f267f2b88424a78c2b2c5661389.jpg", + "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be working on it. There is a forest in the background and a body of water to the left of the pipe.", + "id": 33632 }, { - "image_path": "G:\\images\\combined\\005081_jpg.rf.69164b700991365983d3cde2c25d6146.jpg", - "response": "a group of people standing around each other", - "id": 3030 + "image_path": "G:\\images\\combined\\0130857ff09335ec.jpg", + "response": "A man sitting on a bench next to a man working on a large box filled with wires.", + "id": 33633 }, { - "image_path": "G:\\images\\combined\\005082_jpg.rf.6d68baf028da3a359faad5089e45191d.jpg", - "response": "Four men in front of a construction site", - "id": 3031 + "image_path": "G:\\images\\combined\\0130b4fb5d99865f.jpg", + "response": "A propaganda poster of North Korea showing soldiers and civilians with a flag and a snowflake in the bottom right corner.", + "id": 33634 }, { - "image_path": "G:\\images\\combined\\005083_jpg.rf.5dc4450d59dfdca49b7c3b911a995b0f.jpg", - "response": "A group of three people standing in front of a substation.", - "id": 3032 + "image_path": "G:\\images\\combined\\0130fdef839b46d8.jpg", + "response": "The image features a woman with a left hand wearing a silver ring and a light blue nail polish. She is reaching for a bottle of nail polish, which is a red color. In front of her, there are three bottles of nail polish, one of which is a red color, one is a brown color, and the other is a green color. The woman is also holding a small mirror in her right hand.", + "id": 33635 }, { - "image_path": "G:\\images\\combined\\005084_jpg.rf.e446b6a9da9634c8fda627844315a753.jpg", - "response": "A man wearing a blue and red striped shirt and a yellow hard hat sits on the front of a yellow bulldozer. The bulldozer is on a dirt field. The man is holding a set of blueprints.", - "id": 3033 + "image_path": "G:\\images\\combined\\0131227c5d633be4.jpg", + "response": "A green Mercedes van with a flower painted on the side.", + "id": 33636 }, { - "image_path": "G:\\images\\combined\\005085_jpg.rf.851d042d958a3c0f8f6beb7f1e37f7d5.jpg", - "response": "A group of people standing in a construction site wearing high visibility vests and hard hats, looking at a blueprint.", - "id": 3034 + "image_path": "G:\\images\\combined\\01313422ad6c5186.jpg", + "response": "A person sitting at a table with a beer bottle on the table.", + "id": 33637 }, { - "image_path": "G:\\images\\combined\\005086_jpg.rf.501efdef9d2cf2d312ba21f3be077db5.jpg", - "response": "The image shows two workers in a large tunnel. They are standing inside a circular tunnel, which appears to be a pipeline. The tunnel is grey in color. The left worker is wearing a yellow helmet and a blue shirt with his arm raised, he is holding a large wrench over the right worker who is wearing a blue shirt and a yellow helmet, he is holding a small wrench. There is a white arrow on the left side of the tunnel pointing to the right. The tunnel is surrounded by concrete.", - "id": 3035 + "image_path": "G:\\images\\combined\\01325_jpg.rf.de4bf5f67aed3fa389b2be08d5a959c9.jpg", + "response": "The image shows a news program with a male news anchor wearing a white helmet and a black suit. He is reporting on the safety conditions of a construction site for a project called\u6731\u6d77\u5175\u68c0\u67e5\u91cd\u70b9\u9805\u76ee\u5de5\u5730\u5b89\u5168\u751f\u4ea7\u60c5\u51b5. Behind him, there are several people, some wearing white helmets and black suits. There are also some scaffolding and steel bars visible in the background. The news anchor is standing in front of a building under construction.", + "id": 33638 }, { - "image_path": "G:\\images\\combined\\005087_jpg.rf.d220d37dacf4c96c9dd4d8b97f069a43.jpg", - "response": "The image shows a group of men working in a cave. They are standing on a wooden platform and are working on a large rock formation. The men are wearing helmets and the one on the left is holding a large pick ax.", - "id": 3036 + "image_path": "G:\\images\\combined\\01325_jpg.rf.f8bdceb3dddcfd9d8e0b73bc657fd8d8.jpg", + "response": "The image shows a Chinese man wearing a white hard hat and a black suit. He is standing in front of a construction site with a backdrop of metal frameworks. The man is also a\u8bb0\u8005, which translates to journalist in English.", + "id": 33639 }, { - "image_path": "G:\\images\\combined\\005089_jpg.rf.2e97996311ef30c115f5d185caf91be2.jpg", - "response": "A man wearing a grey shirt and orange vest is driving a bulldozer. He is wearing a grey hard hat and glasses. The bulldozer is driving on a construction site and there is a building in the background. There is a yellow pole on the right side of the image.", - "id": 3037 + "image_path": "G:\\images\\combined\\01326_jpg.rf.32eedb629292c72813d75e491568d200.jpg", + "response": "a man in a yellow hard hat standing in front of a building under construction", + "id": 33640 }, { - "image_path": "G:\\images\\combined\\00508_jpg.rf.67e2bd8d11f27853c9fb303defc76b9e.jpg", - "response": "In the image there are several construction workers wearing orange vests who are working on a construction site. In the foreground, three workers are working on a structure made of concrete and steel rebar. A yellow excavator is parked on the right side of the image. In the background, another excavator is visible. A part of a white building is visible at the top left corner of the image.", - "id": 3038 + "image_path": "G:\\images\\combined\\01326_jpg.rf.80a668d3565a0e59931569324d17f70e.jpg", + "response": "a man in a yellow hard hat standing in front of a building under construction", + "id": 33641 }, { - "image_path": "G:\\images\\combined\\00508_jpg.rf.a579c6ea9ebe31fe1fbb979e67aeb34f.jpg", - "response": "In the image there are several construction workers at a construction site. They are working on a structure that appears to be a foundation for a building. There is a bulldozer parked on the right side of the image. The workers are wearing safety gear including hard hats and are standing on a wooden platform.", - "id": 3039 + "image_path": "G:\\images\\combined\\0132f7dbed0ab722.jpg", + "response": "A yellow airplane with a propeller and the word NAVY on the side.", + "id": 33642 }, { - "image_path": "G:\\images\\combined\\005090_jpg.rf.f4e5297be7d1ba5c5e5b735ae70368cf.jpg", - "response": "a group of men wearing hard hats standing in a unfinished room", - "id": 3040 + "image_path": "G:\\images\\combined\\013330b2b25f4c27.jpg", + "response": "A group of people standing around a table with papers and books on it.", + "id": 33643 }, { - "image_path": "G:\\images\\combined\\005091_jpg.rf.6bb71349e075a67c97deb247515537ad.jpg", - "response": "A group of men standing in a hallway.", - "id": 3041 + "image_path": "G:\\images\\combined\\013333fa2fe396ce.jpg", + "response": "An airplane wing with the letters SAS on it, flying over a cloudy sky.", + "id": 33644 }, { - "image_path": "G:\\images\\combined\\005092_jpg.rf.f8f94a90ea72fcb73b69544d2451e042.jpg", - "response": "Two men(305,168),(518,892)(568,150),(713,900) wearing yellow vests(582,269),(698,537)(341,275),(460,511) and red helmets(587,149),(665,226)(369,169),(443,236) standing in front of a construction site", - "id": 3042 + "image_path": "G:\\images\\combined\\01333a37245c7e5a.jpg", + "response": "A man is working on the side of a red and white airplane.", + "id": 33645 }, { - "image_path": "G:\\images\\combined\\005093_jpg.rf.859832742e20857bc4b348808221cbb1.jpg", - "response": "A man(671,256),(975,996) standing in front of a construction site", - "id": 3043 + "image_path": "G:\\images\\combined\\01334_jpg.rf.c5e7082d15231efb9e22fd62c3101ecb.jpg", + "response": "A man in a black jacket and a white and black striped shirt standing in front of a building with a white hat on.", + "id": 33646 }, { - "image_path": "G:\\images\\combined\\005094_jpg.rf.a1dba20d6e8debea22f28ee3ec7fb8dd.jpg", - "response": "A group of four men standing next to each other wearing hard hats.", - "id": 3044 + "image_path": "G:\\images\\combined\\01334_jpg.rf.f8fae2ee0944f3b2f969879fb7396c85.jpg", + "response": "A man in a black jacket and a white and black striped shirt standing in front of a construction site with a white helmet on.", + "id": 33647 }, { - "image_path": "G:\\images\\combined\\005095_jpg.rf.bfb70a4c05dd823a4d30124025c209e5.jpg", - "response": "In the image, there are three people visible, all wearing safety gear. They are working on a power line that is located over a river and a bridge. The two people in the foreground are wearing green and tan uniforms and are focused on their task. The third person, who is further back, is also wearing green and tan but is looking up at the power line. The image was taken in a location with mountains in the background.", - "id": 3045 + "image_path": "G:\\images\\combined\\01335761c3a1a042.jpg", + "response": "A desktop computer monitor that is on and has a game of RoboCop displayed.", + "id": 33648 }, { - "image_path": "G:\\images\\combined\\005096_jpg.rf.f18b4589008c9b859ab552fdf5f2d665.jpg", - "response": "A group of people wearing hard hats are standing in front of a yellow and red banner. Some of the people are wearing red or blue jackets. In the background, there is a building and a forest.", - "id": 3046 + "image_path": "G:\\images\\combined\\01336_jpg.rf.cfa812003e6fc003a7ab9c99bf9a2038.jpg", + "response": "a group of men standing around a construction site", + "id": 33649 }, { - "image_path": "G:\\images\\combined\\005097_jpg.rf.9693e694c4faee6a4628016b991e3bd0.jpg", - "response": "A man in a suit holding a rolled up paper and wearing a hard hat points to something in the distance. He is surrounded by several other people, some wearing hard hats as well. They are all standing in a construction area with several buildings under construction. One of the buildings has a large red and white sign on it. There are also several people in the background wearing orange vests.", - "id": 3047 + "image_path": "G:\\images\\combined\\01338_jpg.rf.03332cf842442fce9d4b2715c68165bb.jpg", + "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket. The fifth man is wearing a white shirt with a black jacket. They are all standing in front of a building that is under construction. The building has scaffolding around it.", + "id": 33650 }, { - "image_path": "G:\\images\\combined\\005098_jpg.rf.e417c7d30c2f21121c9b781fe7e5a5a9.jpg", - "response": "A group of people in uniforms and hard hats are standing around a man who is kneeling down in front of a large pipe. They appear to be working on some kind of construction or repair project.", - "id": 3048 + "image_path": "G:\\images\\combined\\01338_jpg.rf.6e7f5dcafc46dcc89621b076f5796c46.jpg", + "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket.", + "id": 33651 }, { - "image_path": "G:\\images\\combined\\005099_jpg.rf.3ff561fd8f50075b7d02317c63b8d886.jpg", - "response": "A group of four men wearing hard hats stand in front of a tall metal structure. They are looking at plans in a book.", - "id": 3049 + "image_path": "G:\\images\\combined\\01346_jpg.rf.602815ffe2f241aa137536b24686b6c4.jpg", + "response": "A group of men standing around each other", + "id": 33652 }, { - "image_path": "G:\\images\\combined\\00509_jpg.rf.befec09821f0f2640765bf3f0d22366f.jpg", - "response": "A man in a white shirt and tan pants is talking to a group of people in front of a construction site. They are all wearing white or yellow hard hats. In the background, there is a large yellow and white crane and a hill with trees.", - "id": 3050 + "image_path": "G:\\images\\combined\\01346_jpg.rf.eac8cd16d806b341435e56dbdef8f159.jpg", + "response": "A group of men standing around each other", + "id": 33653 }, { - "image_path": "G:\\images\\combined\\0050b38009326935.jpg", - "response": "A busy street at night with many people walking around. There are many signs in the background, including a red sign that says \"Wild One\" in white and red.", - "id": 3051 + "image_path": "G:\\images\\combined\\0134a2b3e00c9bbb.jpg", + "response": "a person wearing a grey t-shirt with the word JRUBY on it", + "id": 33654 }, { - "image_path": "G:\\images\\combined\\0050f1943a5a1a89.jpg", - "response": "A table with a red table cloth on it with a sign that says TDLTC.", - "id": 3052 + "image_path": "G:\\images\\combined\\0134b639e97160be.jpg", + "response": "A table with a bottle and a glass on it.", + "id": 33655 }, { - "image_path": "G:\\images\\combined\\005100_jpg.rf.8192e459343b86c750f4b702ae78cfdc.jpg", - "response": "A group of people working on a foundation for a building.", - "id": 3053 + "image_path": "G:\\images\\combined\\013547912a1c0427.jpg", + "response": "Two books, one red and one green, both with white writing.", + "id": 33656 }, { - "image_path": "G:\\images\\combined\\005101_jpg.rf.0064d4f6086da16cb1e26c404a6b6285.jpg", - "response": "A group of people standing in a parking lot.", - "id": 3054 + "image_path": "G:\\images\\combined\\0135a49e57da39be.jpg", + "response": "A poster for a pay-per-view event called \"Celebrity Catfight\" featuring two women, Sabine and Miley. The event is scheduled for April 13, 2015 at 8 PM at the MGM Arena. The poster is in black and red with the two women's heads on top and their names below. The event is promoted by Ticketmaster.", + "id": 33657 }, { - "image_path": "G:\\images\\combined\\005102_jpg.rf.f4240e46f927c4b97fbad842f094b95d.jpg", - "response": "a group of men standing under red umbrellas", - "id": 3055 + "image_path": "G:\\images\\combined\\0135ecc9b0929eee.jpg", + "response": "A man and a woman are laying on the ground in a hallway. The woman has a backpack on her back and a black shirt. The man has a green backpack on his back and a white shirt. They are both looking at a cell phone that the man is holding. There are two other people in the background, one with a black shirt and the other with a white shirt. There is also a potted plant in the scene.", + "id": 33658 }, { - "image_path": "G:\\images\\combined\\005103_jpg.rf.d2985650b8c44548ec910fe675bc9c14.jpg", - "response": "In the image there are two men wearing blue jeans and yellow hard hats. They are standing in front of a building under construction. The man on the left is wearing a white shirt and a tool belt. The man on the right is wearing a plaid shirt and a blue t-shirt. He is also wearing a watch on his left wrist. Both men are holding their hands in a conversational pose.", - "id": 3056 + "image_path": "G:\\images\\combined\\013641ae181daa2b.jpg", + "response": "A stress ball in the shape of a grey airplane with a smiley face and orange and blue markings.", + "id": 33659 }, { - "image_path": "G:\\images\\combined\\005105_jpg.rf.5eca12dc13aab71bf7f6acfee843f306.jpg", - "response": "The image shows a man working on a construction site. He is wearing a red hard hat, blue shorts, a white shirt with blue stripes, and grey shoes. The man is holding a large pipe in his right hand and appears to be working on it. There are several other pipes lying on the ground around him. The ground is muddy and there is a puddle of water to the left of the man. The background shows a pile of brown dirt and debris.", - "id": 3057 + "image_path": "G:\\images\\combined\\0136a83ff81b983f.jpg", + "response": "A large airplane is sitting on the runway.", + "id": 33660 }, { - "image_path": "G:\\images\\combined\\005106_jpg.rf.c674a68a5415883bcb84b99f00aa84fe.jpg", - "response": "There are two people in the image, a man and a woman, both of them are wearing hard hats. The woman is sitting on the floor and looking at a laptop, which is placed in front of her. The man is standing next to her, looking at the laptop screen as well. They are both in a large, unfinished building with a lot of construction materials around them.", - "id": 3058 + "image_path": "G:\\images\\combined\\013713ed319f3787.jpg", + "response": "A model of a British Airways airplane on a white stand.", + "id": 33661 }, { - "image_path": "G:\\images\\combined\\005107_jpg.rf.4b4ce9a61a746ce831812d777498f040.jpg", - "response": "A group of six men standing in front of a machine.", - "id": 3059 + "image_path": "G:\\images\\combined\\01375ce0b7e9e9f6.jpg", + "response": "The image features a large crowd of people gathered in a stadium to watch a baseball game. The stadium has several banners and signs on the walls, including a large American flag that is draped across the field. There are also several people wearing uniforms, possibly military personnel, in the foreground. The crowd is made up of people of various heights and are spread out throughout the stadium.", + "id": 33662 }, { - "image_path": "G:\\images\\combined\\005108_jpg.rf.9c0a5e771e861bb502e0ae3b683870e8.jpg", - "response": "An electrician wearing a hard hat and safety glasses is working on a large piece of equipment. He is holding a tool in his hand and is looking at it while standing in front of the equipment. The electrician is wearing a blue shirt and has a beard.", - "id": 3060 + "image_path": "G:\\images\\combined\\01381947b0093f43.jpg", + "response": "The image features a street sign that reads \"Dead Cat Alley\" in white lettering on a green background. The sign is attached to a metal pole and is located in front of a tree. There is also a handicap parking sign on the same pole.", + "id": 33663 }, { - "image_path": "G:\\images\\combined\\005109_jpg.rf.93d3e9d4b8f7b1501db2803ba8e54438.jpg", - "response": "In the image there is a group of workers working on a bridge. The bridge is grey and made of cement. There is a truck on the left side of the image, next to the workers, that is pouring concrete. There are four people in the image, three of them are working on the bridge and the fourth one is standing next to the truck. One of the workers is holding a shovel and there are two hoses coming from the truck. The sky is blue with some clouds and there is greenery in the background.", - "id": 3061 + "image_path": "G:\\images\\combined\\013843632c661815.jpg", + "response": "A close up of a electronic keyboard with many keys and knobs.", + "id": 33664 }, { - "image_path": "G:\\images\\combined\\00510a8d1b746d21.jpg", - "response": "The image shows a street scene with a focus on a car and an ambulance. The car is painted in yellow, green, and blue stripes and is parked next to the ambulance. The ambulance is white with green and blue stripes. The car has a yellow circle with a black line through it on the driver's side door.", - "id": 3062 + "image_path": "G:\\images\\combined\\013876297354531e.jpg", + "response": "A sign that says \" Failte - Welcome THE BURREN protected landscape\" in white lettering.", + "id": 33665 }, { - "image_path": "G:\\images\\combined\\00510_jpg.rf.d0203944fb25b9fcbd7fc01e9f64e693.jpg", - "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and standing under a large object.", - "id": 3063 + "image_path": "G:\\images\\combined\\0138cfa682ce8f81.jpg", + "response": "A trash can with a black bag in it.", + "id": 33666 }, { - "image_path": "G:\\images\\combined\\00510_jpg.rf.f9a2d489c6000262a825e6c6a3820375.jpg", - "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and are standing in a semi-circle. They are all looking in the same direction.", - "id": 3064 + "image_path": "G:\\images\\combined\\0138ef96e5e0b9f1.jpg", + "response": "In the image, a man is throwing a basketball while wearing a plaid shirt. He is surrounded by a group of people, some of whom are also holding sports equipment. Among the people, one is wearing a blue shirt that says \"Go Gators\" on it, and another is holding a football. There are also two people in the background wearing blue and white uniforms.", + "id": 33667 }, { - "image_path": "G:\\images\\combined\\005110_jpg.rf.317c3200f32cb67c53fca61282bb8c68.jpg", - "response": "A worker in a red hard hat and camouflage jacket is sitting on a yellow metal platform and holding a large metal hook with a thick rope attached to it. He is looking off to the right of the camera. In the background, there is a forest and a foggy sky.", - "id": 3065 + "image_path": "G:\\images\\combined\\01391774c70c2c88.jpg", + "response": "A large poster for the 2009 AVN Adult Movie Awards is hanging from the ceiling.", + "id": 33668 }, { - "image_path": "G:\\images\\combined\\005111_jpg.rf.936c406f9097bf09897d5243474de703.jpg", - "response": "The image shows two workers in the water, standing in the middle of a river and fixing a power line. They are wearing blue helmets and are in the river up to their waist. The river is green and has a current.", - "id": 3066 + "image_path": "G:\\images\\combined\\013a40f4c388e5b6.jpg", + "response": "A large screen TV is displaying a baseball game.", + "id": 33669 }, { - "image_path": "G:\\images\\combined\\005112_jpg.rf.0522539d8bfeb0111c4d9b04c36c8c3e.jpg", - "response": "A firefighter in full gear holding a hose.", - "id": 3067 + "image_path": "G:\\images\\combined\\013a414982747e7f.jpg", + "response": "A black laptop computer is open and sitting on a desk. The screen displays a page in Japanese.", + "id": 33670 }, { - "image_path": "G:\\images\\combined\\005113_jpg.rf.522036351f1198575dea44ccdd125a2e.jpg", - "response": "a group of people standing around a table", - "id": 3068 + "image_path": "G:\\images\\combined\\013aaeeee730a054.jpg", + "response": "A bucket full of wine bottles, with four of them being Fontana wine.", + "id": 33671 }, { - "image_path": "G:\\images\\combined\\005114_jpg.rf.7728003b6d6dc96e6f69385cbf255509.jpg", - "response": "In the image there is a man standing in front of a bulldozer and a white helmeted worker looking at the machine. The bulldozer is blue and it is next to a red bin. The sky is full of clouds and the sun is shining through them. On the ground there are many stones and debris from the demolition.", - "id": 3069 + "image_path": "G:\\images\\combined\\013c51db660db1a0.jpg", + "response": "A package of a banana dessert with a red and white label.", + "id": 33672 }, { - "image_path": "G:\\images\\combined\\005115_jpg.rf.9895cc09b0182c8b2b0306226883ef14.jpg", - "response": "A group of six people standing next to each other.", - "id": 3070 + "image_path": "G:\\images\\combined\\013cbd2122ad9b0e.jpg", + "response": "A large brick building with many windows and a sign that says \"More Art Less Labels\" painted on the side.", + "id": 33673 }, { - "image_path": "G:\\images\\combined\\005116_jpg.rf.d2f2dad61d6415f43683ecbc3b8a8805.jpg", - "response": "In the image there are two coils of steel wire, one on the left and one on the right. The steel wire on the left is a bit further left and is darker in color than the one on the right. Both are located in a warehouse like room with a yellow iron pipe in the middle of the scene and a metal beam to the right. Above the room is a bridge-like structure with a yellow iron pipe running along the top. The words '\u9541\u6986\u533a\u65b0\u95fb\u4e2d\u5fc3' are written in white text on the bottom right of the image.", - "id": 3071 + "image_path": "G:\\images\\combined\\013d1f1e520e0671.jpg", + "response": "A silver car parked on the street.", + "id": 33674 }, { - "image_path": "G:\\images\\combined\\005118_jpg.rf.e5021dcc6ac14dc4b55d6ecc34a7963a.jpg", - "response": "A man in a green shirt and red helmet is working on a piece of equipment.", - "id": 3072 + "image_path": "G:\\images\\combined\\013dc51c1e1c49aa.jpg", + "response": "A table with a variety of items on it including two bottles of wine, a cup, a bowl, a book, and a fork.", + "id": 33675 }, { - "image_path": "G:\\images\\combined\\005119_jpg.rf.edb02118e75e9d65f6fba917e56a2ac9.jpg", - "response": "The image shows a group of workers in a tunnel. They are all wearing orange tops and yellow hard hats. The workers are working on a steel beam in the foreground. There are two sets of train tracks in the tunnel, one on the left and one on the right. The tunnel is grey and white in color. The workers are all focused on their tasks.", - "id": 3073 + "image_path": "G:\\images\\combined\\013e566ab243798e.jpg", + "response": "A man and a woman are sitting on a couch. The woman is sitting on the man's lap and they are both looking at a glass of wine on the table. The man is wearing a suit and the woman is wearing a leopard print dress.", + "id": 33676 }, { - "image_path": "G:\\images\\combined\\00511_jpg.rf.15005b572ed325c843d0edb79794836d.jpg", - "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", - "id": 3074 + "image_path": "G:\\images\\combined\\013efc66b15d181a.jpg", + "response": "An sony camera on a wooden table.", + "id": 33677 }, { - "image_path": "G:\\images\\combined\\00511_jpg.rf.a163590b30cccb8e923c2b5bd274624c.jpg", - "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", - "id": 3075 + "image_path": "G:\\images\\combined\\013f031fcc0ca89e.jpg", + "response": "A black and gold clock with the word Steveston above it.", + "id": 33678 }, { - "image_path": "G:\\images\\combined\\005120_jpg.rf.67f0bdd8896330577d53b5415239ebdd.jpg", - "response": "A group of men standing around each other.", - "id": 3076 + "image_path": "G:\\images\\combined\\013f5cac93b70098.jpg", + "response": "A traffic light is hanging from a pole with two banners attached. The banners are for Cambie Village and one of them has a picture of a watermelon on it. The sky is overcast.", + "id": 33679 }, { - "image_path": "G:\\images\\combined\\005121_jpg.rf.94049498285e0310387bb7024dda72b3.jpg", - "response": "a group of men standing in front of a construction site", - "id": 3077 + "image_path": "G:\\images\\combined\\013f60365831c99b.jpg", + "response": "A baseball player is running to a base on a field.", + "id": 33680 }, { - "image_path": "G:\\images\\combined\\005122_jpg.rf.5c45ab93b622821507d34538d2b031f2.jpg", - "response": "The image shows a construction site with a number of workers. There is a man in the center of the image who is wearing a yellow hard hat and a gray shirt. He is standing next to a pile of steel bars. Another worker is visible in the background, wearing a white shirt and a red helmet. The construction site is filled with steel bars, some stacked on a table, and some on the ground. There are also a few other people visible in the image, although they are less prominent.", - "id": 3078 + "image_path": "G:\\images\\combined\\013f72888fc44c2d.jpg", + "response": "The image shows a table filled with a large number of beer bottles of various shapes and sizes. Some of the bottles are brown and green, while others are green and white. There are at least 14 bottles visible in the image. A few of the bottles have white labels, while others have red, green, or no labels at all. The table is made of wood and is located in a dark room.", + "id": 33681 }, { - "image_path": "G:\\images\\combined\\005125_jpg.rf.a3d55e3ffbc20d18933351c109f21166.jpg", - "response": "A shirtless man wearing a yellow hard hat is working in a pit. He is wearing a yellow hard hat, green gloves, and white shorts. He is holding a large rusty pipe with both hands and is climbing out of the pit. The ground around the pit is covered in small wooden posts.", - "id": 3079 + "image_path": "G:\\images\\combined\\0140a5561c6ffb8f.jpg", + "response": "The image shows a blue airplane with the word \"Red Bull\" painted on the side. The airplane has a clear canopy and a man is visible through the canopy. The sky is overcast and there are clouds in the background.", + "id": 33682 }, { - "image_path": "G:\\images\\combined\\005126_jpg.rf.089e3646a623210575de2f978e637f26.jpg", - "response": "A group of four men wearing hard hats and safety vests.", - "id": 3080 + "image_path": "G:\\images\\combined\\0140ad9cc68a7850.jpg", + "response": "The men are celebrating their win in the indoor track meet.", + "id": 33683 }, { - "image_path": "G:\\images\\combined\\005127_jpg.rf.d409bddc9de6cfb8dba2466d8c79e4dc.jpg", - "response": "The image shows a tunnel with two workers inside. They are working on the ground, and one of them is holding a hose. The tunnel is dark, and the workers are wearing hard hats and clothes. The left worker is holding a long tool with a wooden handle, and there is a bucket in the middle of the scene. The workers are wearing black shoes, and one of them has a beard. The ground is wet, and there is a puddle of water on the right side of the image.", - "id": 3081 + "image_path": "G:\\images\\combined\\0141be4beb33df3a.jpg", + "response": "A red background with white text that says \"God gives every bird its food, but he does not throw it into its nest.\"", + "id": 33684 }, { - "image_path": "G:\\images\\combined\\005129_jpg.rf.8e791ede6d98089107220cef6d3bd0d0.jpg", - "response": "The image shows a group of people walking in front of a bus. The bus is yellow and white, and is parked in what appears to be a parking lot. The people in the foreground are wearing business attire. One man is wearing a suit and tie, and another man is wearing a black jacket and white shirt. A woman is wearing a black suit. The group is walking in a line, with the man in the suit leading the way. The woman to the far right is wearing a black suit and a red shirt. There are several other people in the background, some of whom are wearing hard hats. The ground appears to be wet.", - "id": 3082 + "image_path": "G:\\images\\combined\\0141c5ca2550f729.jpg", + "response": "A table with five boxes of Johnnie Walker Black Label on it.", + "id": 33685 }, { - "image_path": "G:\\images\\combined\\00512_jpg.rf.b209e6f0f21ea322cb6c72621f476787.jpg", - "response": "a group of men standing around each other", - "id": 3083 + "image_path": "G:\\images\\combined\\0141fb7b82dafe61.jpg", + "response": "a man in a grey and white jersey is playing basketball", + "id": 33686 }, { - "image_path": "G:\\images\\combined\\005130_jpg.rf.8d1e95cd72cf91a28f54225910650f0c.jpg", - "response": "A worker is laying bricks to build a wall.", - "id": 3084 + "image_path": "G:\\images\\combined\\01420fa41cf561b2.jpg", + "response": "A album cover for a recording of Fran\u00e7ois Couperin's \"Apoth\u00e9oses\". The image features a painting of a woman with a yellow scarf flowing behind her. She is depicted as a muse, holding a yellow fabric that seems to be made of silk. She is wearing a yellow dress and a red sash around her waist. She is also wearing a gold necklace and a gold bracelet on her right arm. She is holding the yellow fabric with her left hand and her right hand is raised in the air.", + "id": 33687 }, { - "image_path": "G:\\images\\combined\\005131_jpg.rf.d63220b673aced7d4ea534dd2f7e4cf2.jpg", - "response": "a group of men walking across a unfinished building", - "id": 3085 + "image_path": "G:\\images\\combined\\01434_jpg.rf.4fdbffeeea543bd8d0638c8b8dde4726.jpg", + "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and white dress while the other one is wearing blue helmet and grey dress. Both the workers are holding their tools and are ready to work.", + "id": 33688 }, { - "image_path": "G:\\images\\combined\\005133_jpg.rf.3f44f18ea22ea87fce6ba608b1d308a0.jpg", - "response": "The image shows a large ship docked at a pier. Several workers in orange and blue uniforms are pulling ropes to secure the ship to the dock. The ship is black and red and has the words \"Xing Hua\" written on the side. The sky is blue with a few clouds. The workers are wearing orange helmets and the ground is covered with dirt and grass.", - "id": 3086 + "image_path": "G:\\images\\combined\\01434_jpg.rf.ede1cbfd8bf79cca5f3b2598002b3d37.jpg", + "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and is holding a rope and is about to climb a wooden electric pole while the other worker is seen wearing blue helmet and has a machine in his hand which he is using to do his job. Both the workers seem to be enjoying their work despite the challenging conditions.", + "id": 33689 }, { - "image_path": "G:\\images\\combined\\005134_jpg.rf.f0b07016cf508b22cd139928b9b73845.jpg", - "response": "A group of people walking in front of a building with a banner that reads \"\u5b9e\u540d\u5236\u901a\u9053\". Some people are wearing white helmets.", - "id": 3087 + "image_path": "G:\\images\\combined\\01437_jpg.rf.4b23791324180482e6b5a90d61a6a6c5.jpg", + "response": "In the image there are three men in blue hard hats and work clothes. They are all working on a large white pipe that is sitting on the ground. One man is on the left and he is holding a large blue and white pipe wrench. Another man is standing in the middle and he is measuring the pipe with a long grey ruler. The third man is on the right side of the image. They all appear to be working together on the pipe.", + "id": 33690 }, { - "image_path": "G:\\images\\combined\\005135_jpg.rf.6c01f98d36a0959f5c27cd19a7bf3a94.jpg", - "response": "The image shows two workers in red doing maintenance on a power box. They are wearing safety gear, including hard hats and safety vests. The worker on the left is Climbing a pole to work on the power box, while the worker on the right is inspecting the box. The sky is overcast and there are trees in the background.", - "id": 3088 + "image_path": "G:\\images\\combined\\01437_jpg.rf.5abedb4d52b841e7c9c498b6fdeb78fc.jpg", + "response": "In the image there are three men working on a white pipe. The men are wearing blue uniforms and blue helmets. They are in a mountainous area and one of them is measuring the white pipe using a blue and white meter.", + "id": 33691 }, { - "image_path": "G:\\images\\combined\\005136_jpg.rf.478152ad65fb41005322920d22bf02ad.jpg", - "response": "A group of men working in a mine with one standing and three sitting in the background all wearing hard hats", - "id": 3089 + "image_path": "G:\\images\\combined\\01439094022a3130.jpg", + "response": "The image shows a group of people standing around a table in a office environment. There are chairs around the table and a few other tables visible in the room. The people are gathered in front of a glass wall and seem to be engaged in a discussion. There is a clock on the wall and a suitcase sitting on the floor. The room has a blue carpet and a window, and there are a few other people visible in the background.", + "id": 33692 }, { - "image_path": "G:\\images\\combined\\005137_jpg.rf.750b0cceb768dec4b96a10a4e4857e6c.jpg", - "response": "A team of workers is seen installing power cables. There are 5 workers in total, 3 of them are installing the cables on a large power cable reel, one is installing cables on a smaller cable reel, and another one is installing cables on the ground. They are all wearing blue work suits with yellow helmets. The sky is a clear blue and there are no other people or objects in the image.", - "id": 3090 + "image_path": "G:\\images\\combined\\01439cbed26bbea7.jpg", + "response": "A street sign that is on the side of the road.", + "id": 33693 }, { - "image_path": "G:\\images\\combined\\005138_jpg.rf.9aac67f9a6c2a595446f26c11874401d.jpg", - "response": "A construction site with multiple workers wearing blue and yellow vests and safety gear.", - "id": 3091 + "image_path": "G:\\images\\combined\\0143bda2cbfdd1fb.jpg", + "response": "A maroon colored car with the license plate Y628 GRL is parked on the side of the street. The car is a small station wagon. There is a lawn with a curve in it, and the car is parked on the other side of the lawn. There are houses in the background, and a car is parked in front of one of them.", + "id": 33694 }, { - "image_path": "G:\\images\\combined\\005139_jpg.rf.31befde4cedf30934bfabf6b5777c9b6.jpg", - "response": "An old worker in an orange work suit and a red helmet is posing for the camera with a smile. He is in a construction site with a pile of rubble on his right and a large yellow\u6876 on his left. In the background, there is a residential building on the left and a tower on the right.", - "id": 3092 + "image_path": "G:\\images\\combined\\01441_jpg.rf.b26c9a2d07adc7b02695a05351e3eae8.jpg", + "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue shirt underneath. She is also wearing a blue helmet. They are carrying the wooden box to a yellow truck in the background. There are some plants in the background on the right side of the image.", + "id": 33695 }, { - "image_path": "G:\\images\\combined\\00513_jpg.rf.3b8ca29c3832dbf78adcd8145fca5419.jpg", - "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", - "id": 3093 + "image_path": "G:\\images\\combined\\01441_jpg.rf.c240f8418a67b8968c7cbd800af88633.jpg", + "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue logo on the left side. She is also wearing a blue helmet. In the background, there is a yellow truck with a bed. To the right of the woman, there are some buildings. In the foreground, there are some plants with green leaves.", + "id": 33696 }, { - "image_path": "G:\\images\\combined\\00513_jpg.rf.3d85c07160d0fd920f92ed453f2f384e.jpg", - "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", - "id": 3094 + "image_path": "G:\\images\\combined\\01450273ed35a7b7.jpg", + "response": "The image features the cover art for the video game Deus Ex: Human Revolution. The main character, Adam Jensen, is depicted in the center of the image wearing a black leather jacket and a black shirt. He is standing in front of a shattered glass that is in various shades of yellow and orange. The glass is arranged in a way that it looks like a golden triangle is being formed by the shards. The text on the image is in white and is arranged in a way that looks like it is being sliced by the shattered glass. The text includes the word \"Deus\" at the top, \"Ex\" in the middle, and \"Human Revolution\" on the bottom.", + "id": 33697 }, { - "image_path": "G:\\images\\combined\\005140_jpg.rf.572da64c4fd88130a3ff9800b67f795d.jpg", - "response": " Men(524,455),(672,997)(298,445),(496,997)(769,386),(972,997)(698,516),(807,997)(99,509),(262,997) in hard hats(560,453),(630,523)(143,509),(199,573)(369,445),(446,520)(702,521),(756,582)(242,494),(305,566)(478,496),(536,561)(818,386),(902,467) walking in a row", - "id": 3095 + "image_path": "G:\\images\\combined\\014552d32aa7b097.jpg", + "response": "A white board with writing on it in green marker.", + "id": 33698 }, { - "image_path": "G:\\images\\combined\\005141_jpg.rf.c7cee36ca5fbf6370114689bee29540a.jpg", - "response": "A group of three workers are building a house. Two of them are wearing blue clothes and red hats, the one on the left is crouching lower than the other two and is holding a blue object in their hands. The two workers on the right are wearing yellow hats and red hats, the one on the right is holding a yellow object in their hands. They are all working on a building site with a brown wooden scaffolding. The building site is in front of a blue sky and behind it, there are some buildings.", - "id": 3096 + "image_path": "G:\\images\\combined\\014641bf55cb78cc.jpg", + "response": "A street sign on a pole in front of a brick building.", + "id": 33699 }, { - "image_path": "G:\\images\\combined\\005142_jpg.rf.fb69d3cbdbcd336cb4effe48e42edde4.jpg", - "response": "A group of workers in blue uniforms and hard hats are working on a street. They are repairing a broken road and working with large spools of wire.", - "id": 3097 + "image_path": "G:\\images\\combined\\01464_jpg.rf.8b04ab9de6f70e697eef17a6bf4fd0d8.jpg", + "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a white pipe in his hand. The other man is on the right side of the room and is wearing a blue helmet, a pink shirt, and a blue vest. He is also holding a white pipe.", + "id": 33700 }, { - "image_path": "G:\\images\\combined\\005143_jpg.rf.cdd0444fe64c26d81a7fb8cdb2c8e83d.jpg", - "response": "A construction site with two workers on scaffolding.", - "id": 3098 + "image_path": "G:\\images\\combined\\01464_jpg.rf.dd1b0e1df770d46212ba0e28aabef4f1.jpg", + "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a clipboard. The other man is on the right side of the room and is wearing a blue helmet, a yellow shirt, and is holding a pipe. They are both looking at a pipe and a valve.", + "id": 33701 }, { - "image_path": "G:\\images\\combined\\005144_jpg.rf.d9be7cbff422fb3bd9281b1c8746e757.jpg", - "response": "A group of seven men wearing hard hats are working on a construction site. They are all wearing yellow hard hats and are wearing blue shirts. They are all holding shovels and are digging into a large concrete area. There is a large metal pipe on the right side of the image and a smaller metal pipe on the left.", - "id": 3099 + "image_path": "G:\\images\\combined\\01466_jpg.rf.a15e9b44297913557387d20e979a625d.jpg", + "response": " two women(245,5),(430,701)(406,169),(579,667) in blue and yellow hard hats(458,169),(567,306)(302,3),(420,117) in a factory", + "id": 33702 }, { - "image_path": "G:\\images\\combined\\005145_jpg.rf.97cf721e14220ee8c02d58a522ae20b4.jpg", - "response": "In the image there are three people all wearing yellow construction hats and yellow vests. They are all holding a large pair of scissors cutting a red rope. The person on the left is a woman with a leg tattoo and is cutting the rope. The person in the middle is a man with a mustache and the person on the right is a man with a yellow hard hat and a red beard.", - "id": 3100 + "image_path": "G:\\images\\combined\\0146944292756039.jpg", + "response": "An advertisement for Barr's Ginger Beer. The bottle is shown sitting on a pile of sand with a beach scene in the background. A beach chair is visible in the image.", + "id": 33703 }, { - "image_path": "G:\\images\\combined\\005146_jpg.rf.44f00c7b2a35238f9643510a7a4edcd6.jpg", - "response": "A group of five men working on electricity poles in a city street.", - "id": 3101 + "image_path": "G:\\images\\combined\\0146ee06439dbf10.jpg", + "response": "A sign post with several signs attached to it.", + "id": 33704 }, { - "image_path": "G:\\images\\combined\\005147_jpg.rf.8e167492a697cdaefaea3cdfdb8a6c25.jpg", - "response": "A worker is welding inside a ship under construction at a shipyard in Rizhao, east China's Shandong province.", - "id": 3102 + "image_path": "G:\\images\\combined\\0146fa849c61c53e.jpg", + "response": "A box with two coffee bags and two coffee mugs inside.", + "id": 33705 }, { - "image_path": "G:\\images\\combined\\005149_jpg.rf.2c559284d62effbbc8df7375412b6ae7.jpg", - "response": "The image shows two workers in yellow suits and blue helmets on an oil rig. They are standing on the rig, which has a yellow cover over the floor. One worker is on the left, and the other is on the right. They are both holding pipes and appear to be working together. In the background, there is a desert landscape with a sky that is a mix of blue and orange. There is a red fence in the middle of the rig, and a yellow ladder on the left side of the image.", - "id": 3103 + "image_path": "G:\\images\\combined\\014745c5610ab10f.jpg", + "response": "A baseball game is in progress with a batter up to the plate holding a bat. The catcher is squatting behind the batter and the umpire is standing behind the catcher.", + "id": 33706 }, { - "image_path": "G:\\images\\combined\\005150_jpg.rf.cef4be4b611e68c6ca47d2efd1e9cbbc.jpg", - "response": "A man is being loaded into an ambulance after a fall from a ladder.", - "id": 3104 - }, - { - "image_path": "G:\\images\\combined\\00515166eb5254d4.jpg", - "response": "A large sign advertising an Elvis, Thomas, and Nicholas band.", - "id": 3105 + "image_path": "G:\\images\\combined\\0147562d48d839ca.jpg", + "response": "A bottle of Goose Watch 2006 Pinot Grigio sits on a counter.", + "id": 33707 }, { - "image_path": "G:\\images\\combined\\005151_jpg.rf.fd66d76a0ad921821290c9df72cd1fab.jpg", - "response": "A group of two men in orange work outfits and hard hats are looking at a solar panel.", - "id": 3106 + "image_path": "G:\\images\\combined\\01475_jpg.rf.25e45e98171217b713736885a3b9ce00.jpg", + "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", + "id": 33708 }, { - "image_path": "G:\\images\\combined\\005152_jpg.rf.df19b4f57e2d33a07694b5fd3654cb45.jpg", - "response": "A construction site with multiple workers wearing hard hats. There are large pieces of metal being worked on and a building under construction in the background.", - "id": 3107 + "image_path": "G:\\images\\combined\\01475_jpg.rf.615cbfd3f8d050a70e30c0f292c0a343.jpg", + "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", + "id": 33709 }, { - "image_path": "G:\\images\\combined\\005153_jpg.rf.fc34975a40027403bebe78989dbc06eb.jpg", - "response": "A worker in a blue uniform and yellow hat is pouring concrete into a yellow concrete mixer.", - "id": 3108 + "image_path": "G:\\images\\combined\\01478_jpg.rf.a4779090cf0764da5d2684700b21ca12.jpg", + "response": "A group of men working on a power line.", + "id": 33710 }, { - "image_path": "G:\\images\\combined\\005154_jpg.rf.ecad917d2a045a9e977b22599cf6db2a.jpg", - "response": "The image shows a group of rescue workers in white protective suits and yellow hard hats working in a construction site at night. The workers are surrounded by scattered wooden poles and wooden boards on the ground. Some workers are holding wooden poles, and one of them is carrying a red box. A few workers are standing on the wooden poles, and one of them is lifting a red box. The scene is quite busy, with the rescue workers working diligently to save the trapped people.", - "id": 3109 + "image_path": "G:\\images\\combined\\0147994bc80b9c5c.jpg", + "response": "A red and yellow bus is parked in a parking lot with another bus behind it. There is a light pole next to the bus and a stop sign in the background.", + "id": 33711 }, { - "image_path": "G:\\images\\combined\\005155_jpg.rf.df6eb5fd76c18d8eaeaef885a169c606.jpg", - "response": "A group of people standing around each other.", - "id": 3110 + "image_path": "G:\\images\\combined\\01483_jpg.rf.2f5f434f70037e1a46107ede4000a627.jpg", + "response": "A man in a white shirt and blue hat is talking to a man in a white shirt and red hat. Both men are wearing Power China shirts. They are standing in front of a large piece of equipment.", + "id": 33712 }, { - "image_path": "G:\\images\\combined\\005156_jpg.rf.234fe8aa3acc2ac6ca873a711e4c75bb.jpg", - "response": "A group of people in hard hats and work clothes stand around, smiling and holding up children's books. Some of the people are of African descent. One person on the left is wearing a yellow helmet and holding a book with a white cover with a red heart on it. Another person in the center is wearing a yellow helmet and holding a book with a white cover with a red heart and yellow sun on it. A person on the right wearing a red helmet is holding a book with a white cover with a blue square on it. A person in the center is wearing a yellow helmet and holding a book with a white cover with a yellow sun on it. Another person on the right is wearing a red helmet and holding a book with a white cover with a yellow square on it. The background shows a blue sky and a tall white tower.", - "id": 3111 + "image_path": "G:\\images\\combined\\014881d40b96d745.jpg", + "response": "A brown and blue van parked in front of a tan building.", + "id": 33713 }, { - "image_path": "G:\\images\\combined\\005157_jpg.rf.757acf2a82167267dbb6d482af70cac2.jpg", - "response": "In the image, two men are standing in front of a red house. They are both wearing orange work vests and yellow hard hats. One man is on the left and the other is on the right. They are both holding onto a solar panel. The solar panel is black and is located in the center of the image. The men are smiling at the camera. In front of the house, there is a garden with some plants. The sky is blue with some clouds.", - "id": 3112 + "image_path": "G:\\images\\combined\\01489_jpg.rf.603accae9361003d4c8908f7bab61175.jpg", + "response": "A man in a blue hat and blue coat is holding a device in front of a meter box.", + "id": 33714 }, { - "image_path": "G:\\images\\combined\\005159_jpg.rf.7334da2032ccc6e22a4545ead0c9d030.jpg", - "response": "A group of men in hard hats stand around a cement beam. They are all wearing different colored hard hats. Some of the men are wearing blue and one is wearing yellow. They are all wearing different colored shirts. Some of them are wearing blue and some are wearing white. They are all wearing pants with different colored work pants. The ground around them is covered in dirt and debris. There are also some cement pillars in the background.", - "id": 3113 + "image_path": "G:\\images\\combined\\0148d16f35e42c8c.jpg", + "response": "A man in a suit pointing to a large projection screen.", + "id": 33715 }, { - "image_path": "G:\\images\\combined\\005160_jpg.rf.46d3fa83d7b1ebd2c556332ff1872fc4.jpg", - "response": "A group of men working on a ship in the water.", - "id": 3114 + "image_path": "G:\\images\\combined\\0149503b615a7dc0.jpg", + "response": "a close up of a ruler on a purple and white floral print fabric", + "id": 33716 }, { - "image_path": "G:\\images\\combined\\005162_jpg.rf.16bec0db8d016efba6d8f101dd8fda25.jpg", - "response": "A man wearing a yellow hard hat stands in front of a large pile of steel rods. He is wearing a black shirt and jeans. There are several other people in the background, some of them are wearing hard hats as well. The sky is blue and there are no clouds in sight. There are several construction cranes in the distance, on the right side of the image. In the foreground, there is a red and white construction vehicle.", - "id": 3115 + "image_path": "G:\\images\\combined\\01496_jpg.rf.1c31ac5c14b994f546d62fabd258741d.jpg", + "response": "two men standing on a road(649,293),(949,849)", + "id": 33717 }, { - "image_path": "G:\\images\\combined\\005163_jpg.rf.80d452eed20cb843674b2d54cd3da380.jpg", - "response": "A construction site with two men working on it.", - "id": 3116 + "image_path": "G:\\images\\combined\\01496_jpg.rf.bb4b6458578f802c4336b6c1bc3ff46f.jpg", + "response": "two men standing on a road(643,289),(948,857)", + "id": 33718 }, { - "image_path": "G:\\images\\combined\\005164_jpg.rf.77caefff83d68c788dd955b45f812fd7.jpg", - "response": "The image shows a construction site with several people working. There are two yellow excavators and a large pile driver on the site. The excavators are positioned on the left and right sides of the image, with the pile driver in the center. The people are scattered around the site, with some standing near the excavators and some further back. The sky is grey and overcast, and there is a building in the background.", - "id": 3117 + "image_path": "G:\\images\\combined\\014a6593575a4330.jpg", + "response": "A television sitting on a shelf with a cell phone in front of it.", + "id": 33719 }, { - "image_path": "G:\\images\\combined\\005165_jpg.rf.b84bd8c6ef13158de8b6a6015e49c172.jpg", - "response": "The image shows a construction worker who has been injured at a building site. He is lying on the ground and is being attended to by emergency services. The worker is fully clothed and appears to be Chinese.", - "id": 3118 + "image_path": "G:\\images\\combined\\014a7499b0466d5f.jpg", + "response": "An LG executive is presenting the world's first 4K curved OLED TV to a visitor at the 2014 International CES.", + "id": 33720 }, { - "image_path": "G:\\images\\combined\\005167_jpg.rf.29044ba7d12ff7d744a77279909f1bd0.jpg", - "response": "A group of four people standing around a table in a warehouse. Three of the people are wearing construction type clothing, one man is wearing a yellow and orange safety vest, another man is wearing a blue suit and tie, and the third person is wearing a blue shirt. They are all gathered around a white board with writing on it. There are also several stacks of boxes in the background.", - "id": 3119 + "image_path": "G:\\images\\combined\\014afe1edd4ca5d8.jpg", + "response": "An old abandoned bus sits in front of a small wooden building.", + "id": 33721 }, { - "image_path": "G:\\images\\combined\\005169_jpg.rf.44d972f54c5e921173ca153ff7f2739b.jpg", - "response": "The image shows two workers in red uniforms and yellow helmets on a ladder against a blue sky, repairing a power line. They are on a ladder, which is against a power pole. The workers are wearing red uniforms and yellow helmets. The left worker is holding a tool in his right hand and the right worker is holding the other end of the tool. There are several other power poles in the vicinity, with some of them having wires attached to them.", - "id": 3120 + "image_path": "G:\\images\\combined\\014b1b9ba066ad84.jpg", + "response": "A table with a pink mug, a can of Sapporo beer, a wine glass, a bottle of sauce, a bowl of food, and a grill with food on it.", + "id": 33722 }, { - "image_path": "G:\\images\\combined\\00516bf08cf0cdeb.jpg", - "response": "a blurry photo of a car driving down a street", - "id": 3121 + "image_path": "G:\\images\\combined\\014ba19f37c0a46c.jpg", + "response": "A grey Toyota Corolla parked on the side of the street.", + "id": 33723 }, { - "image_path": "G:\\images\\combined\\00516_jpg.rf.2eb87c6118e62f3984cc1758bf2f3122.jpg", - "response": "A group of four men dressed in blue uniforms and hard hats are working on an electrical device. They are all kneeling down and appear to be focused on the task at hand.", - "id": 3122 + "image_path": "G:\\images\\combined\\014d074f58b81e48.jpg", + "response": "A yellow bus with a white license plate that says F3 BBC.", + "id": 33724 }, { - "image_path": "G:\\images\\combined\\005170_jpg.rf.52a475197a65c26bbefc0d723034d7db.jpg", - "response": "A group of men standing in a room that is still under construction.", - "id": 3123 + "image_path": "G:\\images\\combined\\014dc9d971f35687.jpg", + "response": "A tall tower with a clock on it.", + "id": 33725 }, { - "image_path": "G:\\images\\combined\\005171_jpg.rf.362c4df046737a3e64eced8a4d1c2a75.jpg", - "response": "A man in a hard hat and overalls is on a ladder, working on a traffic light.", - "id": 3124 + "image_path": "G:\\images\\combined\\014e2fad668d39bd.jpg", + "response": "A corner store is located on a street corner.", + "id": 33726 }, { - "image_path": "G:\\images\\combined\\005172_jpg.rf.b80c460cc07613955c190f293c1b2e12.jpg", - "response": "A construction worker wearing a yellow vest and a white helmet is working on a building site. The worker is on a platform and is looking at some rebar.", - "id": 3125 + "image_path": "G:\\images\\combined\\014e36dcc0355140.jpg", + "response": "a book with the word okmd on the page", + "id": 33727 }, { - "image_path": "G:\\images\\combined\\005173_jpg.rf.e5009340c282a9bb7aaffdca76e679cf.jpg", - "response": "The image depicts a\u63e1\u624b between two\u4e2d\u5e74\u7537\u5973\u3002 The man on the left is wearing a\u767d\u8272\u88e4\u5b50\u548c\u4e00\u4ef6\u84dd\u8272\u4e0a\u8863\uff0c\u5934\u53d1\u67d3\u6210\u4e86\u7070\u8272\u3002\u4ed6\u6234\u7740\u4e00\u4e2a\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e9b\u767d\u8272\u7684\u8bbe\u8ba1\u56fe\u3002 The man on the right is a\u5efa\u7b51\u5de5\u4eba\uff0c\u7a7f\u7740\u9ed1\u8272\u7684T\u6064\u548c\u725b\u4ed4\u88e4\uff0c\u5934\u53d1\u9ed1\u8272\u3002\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u548c\u521a\u521a\u63e1\u624b\u7684\u5973\u58eb\u63e1\u7740\u4e00\u53ea\u63e1\u624b\u3002\u80cc\u666f\u662f\u4e00\u4e2a\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u5176\u4e2d\u6709\u7740\u767d\u4e91\u3002\u5728\u80cc\u666f\u7684\u53f3\u4e0b\u65b9\uff0c\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u6b63\u5728\u65bd\u5de5\u7684\u811a\u624b\u67b6\u3002", - "id": 3126 + "image_path": "G:\\images\\combined\\014e3af6657e6531.jpg", + "response": "A green and white bus is parked in a parking lot next to a blue and white bus. The green and white bus has a white license plate with black letters and numbers.", + "id": 33728 }, { - "image_path": "G:\\images\\combined\\005174_jpg.rf.b05a09392672e913e69cb37bdf710edb.jpg", - "response": "A group of three men in red hard hats crouching down next to a metal box on a sidewalk.", - "id": 3127 + "image_path": "G:\\images\\combined\\014ed59aa74afbef.jpg", + "response": "A television screen is displaying a picture of a street.", + "id": 33729 }, { - "image_path": "G:\\images\\combined\\005177_jpg.rf.29bcd0a154426193dfa1514a20ada65f.jpg", - "response": "A woman in a black coat is holding a clipboard and talking to three men. One man is wearing a black coat and holding a pen. Another man is wearing a white hat and a gray jacket. The fourth man is wearing a black jacket and hat. They are standing in front of a building that is covered in green netting.", - "id": 3128 + "image_path": "G:\\images\\combined\\014f2bebc44d66a9.jpg", + "response": "In the image there is a blue and orange van parked on a flooded street. The van is a small delivery van and has the word \"Sebrae\" written on the side. There is also an orange stripe on the van. In the background there are shops and a person walking.", + "id": 33730 }, { - "image_path": "G:\\images\\combined\\005179_jpg.rf.30d96913a6a21d6dd475ed54f47cc184.jpg", - "response": "An electrician in a blue hard hat and safety glasses is working on an electrical box.", - "id": 3129 + "image_path": "G:\\images\\combined\\014f710ed6d450fc.jpg", + "response": "A person wearing a watch is touching a computer screen.", + "id": 33731 }, { - "image_path": "G:\\images\\combined\\005180_jpg.rf.0145a7ba610d2af3a6df6f05d17fa7c0.jpg", - "response": "A man in a yellow hard hat and a man in a green shirt are standing in a unfinished room.", - "id": 3130 + "image_path": "G:\\images\\combined\\014f7221241d94cb.jpg", + "response": "A television screen with a song playing on it.", + "id": 33732 }, { - "image_path": "G:\\images\\combined\\005181_jpg.rf.68f336dc5e2d2cdf73919ab09205be6d.jpg", - "response": "The image shows two workers in green uniforms and yellow helmets, climbing on a power pole. They are repairing a power line.", - "id": 3131 + "image_path": "G:\\images\\combined\\014fbf8ef4b53fd2.jpg", + "response": "a group of people sitting at a table", + "id": 33733 }, { - "image_path": "G:\\images\\combined\\005182_jpg.rf.86947e7a47909dcb889448399b9b94bc.jpg", - "response": "The image shows a man in a blue hard hat and work clothes crouched down and working on a piece of equipment. He is holding a screwdriver and appears to be focused on the task at hand. The background is dark and there are a few other details that are hard to make out.", - "id": 3132 + "image_path": "G:\\images\\combined\\015064cd4f943a40.jpg", + "response": "A yellow school bus numbered 192 is parked in a parking lot with other school buses.", + "id": 33734 }, { - "image_path": "G:\\images\\combined\\005183_jpg.rf.67b0979aad41ea2cb2e9574814dacb19.jpg", - "response": "A construction worker in a yellow hard hat is working on a scaffold.", - "id": 3133 + "image_path": "G:\\images\\combined\\01508daa80f0d00e.jpg", + "response": "A golf course with a sign that says 18 Par 4 and has the hole numbers 4, 384, 383, and 340.", + "id": 33735 }, { - "image_path": "G:\\images\\combined\\005184_jpg.rf.96d471c3d859a92a38a3be1303136fc9.jpg", - "response": "A worker is welding a steel pipe at a factory in Hefei, Anhui province, China. The worker is wearing a grey shirt, a grey hat, and white gloves. He is focused on his work, which is illuminated by a bright light. The background is filled with steel sparks.", - "id": 3134 + "image_path": "G:\\images\\combined\\0152dc2fd893e5b7.jpg", + "response": "A large advertisement for The Railway Children charity.", + "id": 33736 }, { - "image_path": "G:\\images\\combined\\005185_jpg.rf.4d46a073a76855384a04053f5a663a12.jpg", - "response": "A group of workers in grey, blue and yellow uniforms, yellow helmets and red, blue and yellow shoes are standing in a parking lot.", - "id": 3135 + "image_path": "G:\\images\\combined\\015329f53f79d0fc.jpg", + "response": "A baseball game is being played in a stadium with many spectators. The pitcher is in the middle of his windup, preparing to throw the ball. The batter is holding a baseball bat and is ready to swing at the incoming pitch. There are other players on the field, including those in the outfield and those in the infield. Some players are wearing baseball gloves, while others are wearing baseball cleats. The stadium is filled with people, some of whom are sitting in chairs and others are standing. The chairs are spread out around the stadium, with some close to the field and others further away.", + "id": 33737 }, { - "image_path": "G:\\images\\combined\\005187_jpg.rf.557fb56cbcabe7aa85de3c854f241ea1.jpg", - "response": "a man in a yellow suit and yellow hat hanging from a rope and painting a white building", - "id": 3136 + "image_path": "G:\\images\\combined\\01538f3ef5df35c8.jpg", + "response": "A green train is coming down the tracks.", + "id": 33738 }, { - "image_path": "G:\\images\\combined\\005188_jpg.rf.f477436f7e41c0e7f5804b7fa1e130d9.jpg", - "response": "A group of men standing around a machine.", - "id": 3137 + "image_path": "G:\\images\\combined\\0153a5ebdf5f7bef.jpg", + "response": "A black stereo receiver with many buttons and knobs.", + "id": 33739 }, { - "image_path": "G:\\images\\combined\\005189_jpg.rf.61471a3e66ec003d833dd3e96ce500fc.jpg", - "response": "A worker is seen here attempting to climb a ladder that has been propped up against a wall. The ladder is positioned near a telephone pole and wires. The worker is positioned on the left side of the image, wearing a blue shirt and hat. They are holding the ladder near the top. The wall the ladder is propped up against is grey and made of concrete. It is located near a house with a red roof. The telephone pole is located behind the ladder and the wires are attached to it. The image is taken outside.", - "id": 3138 + "image_path": "G:\\images\\combined\\01540c1de38cc907.jpg", + "response": "A blue boat floating on a river.", + "id": 33740 }, { - "image_path": "G:\\images\\combined\\005190_jpg.rf.bd55dd40f06ce5a8622c0b2ec2fb663b.jpg", - "response": "A crane is lifting a large piece of metal.", - "id": 3139 + "image_path": "G:\\images\\combined\\01542a35bb99c2ea.jpg", + "response": "A female model is presenting two LG LTE models, a tablet and a laptop, in front of an LG display.", + "id": 33741 }, { - "image_path": "G:\\images\\combined\\005191_jpg.rf.5aacb64189f28fcb4f6edd99bf6a9f44.jpg", - "response": "A group of three men standing next to a piece of machinery.", - "id": 3140 + "image_path": "G:\\images\\combined\\015464dc2c46ffe9.jpg", + "response": "A bottle of Almaza beer sits on a table next to a plate of food.", + "id": 33742 }, { - "image_path": "G:\\images\\combined\\005192_jpg.rf.b65106362498844fcb54a19c90ceabcc.jpg", - "response": "A man wearing a red helmet is using a circular saw to cut through a metal pipe. The circular saw is on the ground and the man is kneeling down to reach the pipe. The man is also wearing work gloves and camouflage clothing. There is a pile of metal rods in the background.", - "id": 3141 + "image_path": "G:\\images\\combined\\0154786a4b2c6fb6.jpg", + "response": "A collection of cycling gear including a helmet, shoes, gloves, and a jersey.", + "id": 33743 }, { - "image_path": "G:\\images\\combined\\005193_jpg.rf.b7b7580a58161d5551a10dbf4217947a.jpg", - "response": "A worker walking through the rubble of a demolition site.", - "id": 3142 + "image_path": "G:\\images\\combined\\0154f4c8b69bd7d0.jpg", + "response": "a store with shelves full of food and drinks", + "id": 33744 }, { - "image_path": "G:\\images\\combined\\005194_jpg.rf.3db46b8ca038575c679191704dac0d86.jpg", - "response": "In the image there is a construction site with three people working. The person in the foreground is wearing a yellow hard hat, a yellow vest, and is holding a brick. Another person in the background is wearing a yellow hard hat and a white vest. There is a cup on the ground in the middle of the scene and a yellow tool box at the bottom right corner of the image. The sky is covered by clouds in the background.", - "id": 3143 + "image_path": "G:\\images\\combined\\01550f10df5e1599.jpg", + "response": "a close up of a camera on a white counter", + "id": 33745 }, { - "image_path": "G:\\images\\combined\\005195_jpg.rf.d97ecc787745ed94c0d2dc6bba49211f.jpg", - "response": "A group of three men working on a electrical box in the rain.", - "id": 3144 + "image_path": "G:\\images\\combined\\01552a0216fbb37b.jpg", + "response": "A Little Caesars pizza box sitting on a counter.", + "id": 33746 }, { - "image_path": "G:\\images\\combined\\005196_jpg.rf.9423b3fd2047ad05ec7792ed9bb13eb5.jpg", - "response": "A man wearing a white hard hat and orange vest standing in a unfinished room.", - "id": 3145 + "image_path": "G:\\images\\combined\\01558f3fb3d24850.jpg", + "response": "a statue (665,116),(967,924)", + "id": 33747 }, { - "image_path": "G:\\images\\combined\\005197_jpg.rf.e96ad2465b7227c0cd0e5c0429052082.jpg", - "response": "The image shows three workers in a factory. They are all wearing yellow hard hats and are working with metal. One worker is on the left, crouching down to work on a red piece of metal with a yellow handle, the second worker is in the middle, wearing blue pants and a blue shirt, and is operating a piece of metal bending equipment, and the third worker is on the right, wearing camo pants and a blue shirt, he is reaching into a red piece of metal with a yellow handle. The word \"WORKER\" is in red at the bottom of the image, and there is a white box with the letters \"\u4e2d\u56fd\u7f51\" in black inside it, all centered on the right side of the image.", - "id": 3146 + "image_path": "G:\\images\\combined\\0155e99465d9ca6d.jpg", + "response": "A large red and white sign that says \"The Irish Times\" is hanging off the side of a building. Below the sign is a large clock with roman numerals. The sky is blue and cloudless.", + "id": 33748 }, { - "image_path": "G:\\images\\combined\\005198_jpg.rf.91a2fcbc4c72f0466418855c4447f0bf.jpg", - "response": "A group of three men working on a construction site, two of them are on a scaffolding that is placed against a brick wall and the other one is on a ladder against a concrete wall.", - "id": 3147 + "image_path": "G:\\images\\combined\\0156f0e26eb20c04.jpg", + "response": "A measuring cup filled with a white liquid sits on a counter.", + "id": 33749 }, { - "image_path": "G:\\images\\combined\\005199_jpg.rf.bf63849d67e9e5267de5c366e563a860.jpg", - "response": "The image shows North Korean leader Kim Jong-un in a small office inside a plane. He is sitting at a desk, which has a folder and a book on it. There is a pen and a cup on the desk as well. Kim Jong-un is talking on a cell phone, which is held close to his ear. He is looking downwards at the phone. The office has a lamp on the left side of the desk and a chair on the right side. The walls of the office are made of wood and there is a picture frame on the wall to the right.", - "id": 3148 + "image_path": "G:\\images\\combined\\01575cc367b8aa17.jpg", + "response": "A collage of two photos. In the first photo, two women are standing in front of a fighter jet. They are holding a sign that says \"200 years\". In the second photo, a red tent with a sign that says \"U.S. Air Force\" is set up with various items on display.", + "id": 33750 }, { - "image_path": "G:\\images\\combined\\00519_jpg.rf.4829fbb5349abb0ebda935d83d343aaf.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and protective gear. The workers are pouring concrete into place, using a long tool to smooth out the surface. The concrete is being poured between two steel rails.", - "id": 3149 + "image_path": "G:\\images\\combined\\015782fa093545e0.jpg", + "response": "A calculator is laying on top of a pile of British pounds. There are many different bills and they are fanned out. The calculator has a key chain attached to it.", + "id": 33751 }, { - "image_path": "G:\\images\\combined\\00519_jpg.rf.a70403fb30fc6fc1ed0baafdfe085cab.jpg", - "response": "A group of men working on a construction site.", - "id": 3150 + "image_path": "G:\\images\\combined\\0157f991b82393a8.jpg", + "response": "A Buick Roadmaster Estate Wagon is parked on the side of the street.", + "id": 33752 }, { - "image_path": "G:\\images\\combined\\0051a014205dd1f6.jpg", - "response": "A book with the title \"Jimi Hendrix\" on the cover.", - "id": 3151 + "image_path": "G:\\images\\combined\\0158932b16a6417a.jpg", + "response": "A white bus with a pink stripe is parked in a parking lot.", + "id": 33753 }, { - "image_path": "G:\\images\\combined\\0051b21e3959ff77.jpg", - "response": "A framed picture with a glass front is sitting on a wooden table. The picture is a rectangle and the frame is brown. The glass front has several stickers on it.", - "id": 3152 + "image_path": "G:\\images\\combined\\01596249e27d5124.jpg", + "response": "A group of children are sitting on a couch in a library. They are all holding tablets and appear to be engaged in some activity. There are several other people in the room, including a man standing near a computer. There are many books on the shelves around the room.", + "id": 33754 }, { - "image_path": "G:\\images\\combined\\005200_jpg.rf.e527e9cdaeb562a33ef687006ef2ab1b.jpg", - "response": "A group of men wearing hard hats are standing in a construction site. One man is gesturing towards a concrete pillar while the others listen to him.", - "id": 3153 + "image_path": "G:\\images\\combined\\015a17c2b037f6ea.jpg", + "response": "A car radio that is on and playing a song by The Go-Go's.", + "id": 33755 }, { - "image_path": "G:\\images\\combined\\005201_jpg.rf.431c13f7df709b14d767096900a933dd.jpg", - "response": "A worker is seen at the top of a tower in a green field.", - "id": 3154 + "image_path": "G:\\images\\combined\\015a236a2d702f19.jpg", + "response": "A busy city street at night with many lit up signs on the buildings.", + "id": 33756 }, { - "image_path": "G:\\images\\combined\\005202_jpg.rf.f0f2b560b7850bd4a08fec8559ea626e.jpg", - "response": "A worker in a blue uniform shows a pen to another worker in yellow safety helmet. They are both standing in front of a large pipe.", - "id": 3155 + "image_path": "G:\\images\\combined\\015b2e1f1e5eb8cc.jpg", + "response": "A stove with a tea kettle on top of it.", + "id": 33757 }, { - "image_path": "G:\\images\\combined\\005203_jpg.rf.9a7913c0f345069d54f1bada35feafa3.jpg", - "response": "A man wearing a blue jacket and a red hard hat is standing in front of a large piece of machinery. He is also wearing gloves and jeans. There is a yellow circle of light beneath him and another man wearing a red hard hat is visible to the right of him. There is also another man wearing a blue jacket and a red hard hat visible to the left of him.", - "id": 3156 + "image_path": "G:\\images\\combined\\015c537f722d115e.jpg", + "response": "A large propeller airplane sitting on a runway at night.", + "id": 33758 }, { - "image_path": "G:\\images\\combined\\005204_jpg.rf.e5e31eb2750bfc43a1179f051063cd6d.jpg", - "response": "A man and woman wearing hard hats are standing in front of a building under construction. The woman is handing the man a piece of paper.", - "id": 3157 + "image_path": "G:\\images\\combined\\015cc4d3633407c7.jpg", + "response": "A case of Coca Cola Life sits on a store shelf. The bottles are green and white and have a distinctive shape. The label on the bottle is green and white and features the Coca Cola logo prominently. The bottles are packed in green cardboard boxes.", + "id": 33759 }, { - "image_path": "G:\\images\\combined\\005205_jpg.rf.f1e05f91a555b7837f6474389af1c58b.jpg", - "response": "A man kneeling down on the ground using a level.", - "id": 3158 + "image_path": "G:\\images\\combined\\015ce70d0a81a8d6.jpg", + "response": "A row of green and yellow double decker buses are parked next to each other.", + "id": 33760 }, { - "image_path": "G:\\images\\combined\\005206_jpg.rf.263cfe3a364c99fedb16c9058c2bc984.jpg", - "response": "A group of people standing in front of a van.", - "id": 3159 + "image_path": "G:\\images\\combined\\015e4368fc9b19a1.jpg", + "response": "A yellow school bus is stuck in the snow.", + "id": 33761 }, { - "image_path": "G:\\images\\combined\\005207_jpg.rf.d6107344dd3bf66c29b3a9243ea46e4d.jpg", - "response": "In the image there are two workers in a factory. They are standing in front of a large metal door with a sign above it that reads International Alloy Group. The workers are both wearing blue shirts and red hats. One of the workers is holding a device in his hand. There is a large amount of machinery around them. To the far left there is a large metal cylinder and a machine with many pipes and valves. To the right there is another large metal cylinder and a machine with a large circular metal door.", - "id": 3160 + "image_path": "G:\\images\\combined\\015e8b56c9feb12b.jpg", + "response": "The image features a blue and white van with the Volkswagen logo on the front. The van has a white roof and is positioned in front of a light blue background. The van has silver rims and is driving on a road.", + "id": 33762 }, { - "image_path": "G:\\images\\combined\\005208_jpg.rf.eb1ff1b8c514dc14edff3a52f2ad2aa5.jpg", - "response": "a group of men standing around talking in a construction area", - "id": 3161 + "image_path": "G:\\images\\combined\\015ef308d85e9abc.jpg", + "response": "A glass and a bottle of Old Hooky beer are sitting on a wooden table. The bottle has a red label with white writing. The glass is full and the beer is a dark golden color. The bottle is almost empty. There is a wicker chair next to the table. The glass is sitting in front of a green plant.", + "id": 33763 }, { - "image_path": "G:\\images\\combined\\005209_jpg.rf.eda41a6bb1ea78cb271cdbfa5643cad7.jpg", - "response": "A worker in a large warehouse is working with a pile of scrap metal. The worker is wearing a blue shirt and a yellow hat. They are crouching down and appear to be sorting through the pile of metal. The metal is piled up in a large heap and takes up most of the image. There are large metal girders on the walls and ceiling of the warehouse.", - "id": 3162 + "image_path": "G:\\images\\combined\\015efa517e260a6c.jpg", + "response": "A group of soccer players are playing soccer on a field.", + "id": 33764 }, { - "image_path": "G:\\images\\combined\\005210_jpg.rf.3e76bcfbeb83ce663045c267550a4455.jpg", - "response": "A man in a white hard hat is kneeling down and using a blue scoop to pour a black liquid into a black hole in the ground. Another man is standing nearby, watching. They are both wearing blue jeans. In the background, there is a person wearing a red shirt and a yellow hard hat. There is also a yellow hard hat on the ground and a person holding a white sign with black letters.", - "id": 3163 + "image_path": "G:\\images\\combined\\015fbcebae90bee0.jpg", + "response": "A lady Rolex watch with a silver and gold band and a silver face.", + "id": 33765 }, { - "image_path": "G:\\images\\combined\\005211_jpg.rf.db1151bd0111b2024f3042d96a628e78.jpg", - "response": "The image shows a group of workers inside a tunnel. They are working on the right side of the tunnel, which has been excavated. Some of them are standing, while others are crouching. They are wearing hard hats and several of them are wearing yellow hard hats. In the right background, there is a large excavator. The tunnel has a white ceiling and walls that are a mix of white and grey. The floor of the tunnel is a mix of brown dirt and some grey rocks. There is a small stream of water running down the middle of the tunnel on the right side.", - "id": 3164 + "image_path": "G:\\images\\combined\\015fc2723bbb4488.jpg", + "response": "a bunch of pepsi bottles on a shelf in a store.", + "id": 33766 }, { - "image_path": "G:\\images\\combined\\005212_jpg.rf.d41fcb1db931d2c5bf376313254a101f.jpg", - "response": "A container terminal with two port workers in the foreground. They are wearing yellow reflective vests and hard hats. The woman is looking up and has her hand to her forehead. The man is looking up and holding a walkie talkie. In the background a blue container is stacked up. The sky is a clear blue.", - "id": 3165 + "image_path": "G:\\images\\combined\\015ff45d293527d0.jpg", + "response": "A man and woman are sitting next to each other.", + "id": 33767 }, { - "image_path": "G:\\images\\combined\\005213_jpg.rf.24351d98ce83b57b3d40f3ce51d7f700.jpg", - "response": "The photo shows six men standing in front of a large yellow machine. The men are wearing dark suits and the machine has a red banner with white characters on it. The characters say \"China Railway No. \u4e00\u662f\". The background is a pale blue sky with faint clouds.", - "id": 3166 + "image_path": "G:\\images\\combined\\01600cb466dbff4d.jpg", + "response": "A man and woman standing behind a table with a sign that says Greenbaud.", + "id": 33768 }, { - "image_path": "G:\\images\\combined\\005214_jpg.rf.42104f263db0ca776a93e70201a40fa3.jpg", - "response": "A man kneeling down with a hard hat on and another man standing over him.", - "id": 3167 + "image_path": "G:\\images\\combined\\0160d2e918626024.jpg", + "response": "A person standing on a bathroom scale that reads 102.3.", + "id": 33769 }, { - "image_path": "G:\\images\\combined\\005215_jpg.rf.0b8223225999a9dd584dae6f7e21d489.jpg", - "response": "A group of men standing in front of a mountain side.", - "id": 3168 + "image_path": "G:\\images\\combined\\0160f87d5e672ea7.jpg", + "response": "The image features a wall of Jack Daniels bottles. There are at least 14 bottles visible, arranged in two rows of different heights. The bottles are all filled with the famous yellow liquid and have the signature black label. The top of the first bottle in the left row is lit up, creating a warm glow that is reflected in the glass. The background is blurred, creating a focus on the bottles in the foreground.", + "id": 33770 }, { - "image_path": "G:\\images\\combined\\005216_jpg.rf.9d8ca57cd57a8b1d7cece2ee66e82765.jpg", - "response": "A group of men standing around each other.", - "id": 3169 + "image_path": "G:\\images\\combined\\0161ab1145014926.jpg", + "response": "A collection of liquor bottles are on display behind a glass shelf. The bottles are shaped like guitars, and there are many different types of alcohol.", + "id": 33771 }, { - "image_path": "G:\\images\\combined\\005217_jpg.rf.c306a621afe65b09591ad6e0fce36140.jpg", - "response": "In the image, a worker is seen crouching down in a pit surrounded by wooden sticks and branches. The worker is wearing a yellow hard hat, green gloves, and a blue jacket. The background is a dark grey wall and the scene is bathed in a warm orange light.", - "id": 3170 + "image_path": "G:\\images\\combined\\0161faa394d8f6eb.jpg", + "response": "A red and white double decker bus is parked on the side of the street.", + "id": 33772 }, { - "image_path": "G:\\images\\combined\\005218_jpg.rf.dfcde98ab8efff3d4801dda2e3d792f3.jpg", - "response": "A city street with two workers on a yellow truck.", - "id": 3171 + "image_path": "G:\\images\\combined\\01623d6727ca5ec4.jpg", + "response": "A store with a blue Walmart.com Services sign hanging from the ceiling.", + "id": 33773 }, { - "image_path": "G:\\images\\combined\\005219_jpg.rf.c9b10a04211a7293165db309d3151106.jpg", - "response": "Men(758,426),(869,997)(570,515),(643,683)(829,406),(963,996) working on a construction site", - "id": 3172 + "image_path": "G:\\images\\combined\\0162a5d3b8c63dfc.jpg", + "response": "a large silver building with a curved roof", + "id": 33774 }, { - "image_path": "G:\\images\\combined\\00521_jpg.rf.1cdcd875955b2653e3daf76938062657.jpg", - "response": "A group of people stand in a field with buildings in the background. They are all wearing yellow hard hats.", - "id": 3173 + "image_path": "G:\\images\\combined\\0163174a750e610c.jpg", + "response": "A box of five Artic Cuff Cobalt filters.", + "id": 33775 }, { - "image_path": "G:\\images\\combined\\005220_jpg.rf.9971ebc74f629ccaba57e1fdf19ec59c.jpg", - "response": "A group of people walking up a snowy hill.", - "id": 3174 + "image_path": "G:\\images\\combined\\0163c144f4d3a955.jpg", + "response": "A train is stopped at a train station with people walking on the platform.", + "id": 33776 }, { - "image_path": "G:\\images\\combined\\005222_jpg.rf.da5fc932ce820d6f2e9f8db17df58572.jpg", - "response": "a man standing in front of a unfinished house wearing a yellow hard hat", - "id": 3175 + "image_path": "G:\\images\\combined\\01646b54d973aced.jpg", + "response": "a black car with the word DeSoto on the front", + "id": 33777 }, { - "image_path": "G:\\images\\combined\\005223_jpg.rf.e0be8a5cbe482ef581d4766d14f76e02.jpg", - "response": "a group of men in hard hats", - "id": 3176 + "image_path": "G:\\images\\combined\\0164fd32b7cb033a.jpg", + "response": "A baseball game is being played on a field. There are three players on the field, one of which is a young boy in a blue shirt and white pants, who is in the process of pitching the ball. The other two players are positioned in the field, one closer to the foreground and one further back. They are both wearing baseball gloves.", + "id": 33778 }, { - "image_path": "G:\\images\\combined\\005224_jpg.rf.6a5aa3f677fb10e6eae00cf4943813e7.jpg", - "response": "A man wearing a yellow hard hat and work clothes is using a circular saw to cut through a long piece of lumber. The saw is on top of the lumber and the man is behind it, guiding it as it cuts through the wood. There are other pieces of lumber stacked nearby and a cup is placed near the saw.", - "id": 3177 + "image_path": "G:\\images\\combined\\0165ae6d0241601b.jpg", + "response": "A man is standing in a bathroom, looking at a shower.", + "id": 33779 }, { - "image_path": "G:\\images\\combined\\005225_jpg.rf.f3195e5e5952b16f63d69130e7b09a3d.jpg", - "response": "a person wearing a blue shirt and a red helmet is working on an electrical tower.", - "id": 3178 + "image_path": "G:\\images\\combined\\0165e2e27da25577.jpg", + "response": "A train car with graffiti on the side.", + "id": 33780 }, { - "image_path": "G:\\images\\combined\\005226_jpg.rf.d1c564ec6752d7bc93a20ea7ce33053c.jpg", - "response": "A man in a yellow hard hat and reflective vest stands in front of a large silo. The silo is silver and is made of metal. The man is standing with his back to the camera. He is wearing blue jeans and a yellow hard hat. He is also wearing a reflective vest. The vest is yellow and has black stripes on it.", - "id": 3179 + "image_path": "G:\\images\\combined\\01660da96a23d3f5.jpg", + "response": "A yellow school sign is attached to a metal pole.", + "id": 33781 }, { - "image_path": "G:\\images\\combined\\005227_jpg.rf.e0e40223b089dea999bfe83031dc3e1e.jpg", - "response": "A man in a blue shirt and grey pants is hanging from a wire with a harness. He is wearing a grey hat and has a beard.", - "id": 3180 + "image_path": "G:\\images\\combined\\0166adf82f1557c5.jpg", + "response": "A model train set with a yellow train car sitting on the tracks.", + "id": 33782 }, { - "image_path": "G:\\images\\combined\\005229_jpg.rf.d99eb9a87fc200d88dfa6dab287e1a24.jpg", - "response": "The image shows a group of men standing in the street. They are all wearing hard hats. Some of them are wearing suits. In the background, there is a car and a construction site with a yellow excavator.", - "id": 3181 + "image_path": "G:\\images\\combined\\0167859382152718.jpg", + "response": "A group of people are sitting around a table with laptops in front of them. Some of the people are wearing ties. There is a cup on the table and a chair next to it.", + "id": 33783 }, { - "image_path": "G:\\images\\combined\\00522_jpg.rf.2aa334ceb6521ed88b8bcc40b15fd19c.jpg", - "response": "In the image, two people are standing next to each other, shaking hands. The person on the left is wearing a white shirt and has long blonde hair. The person on the right is wearing a yellow hard hat, black t-shirt, and is holding a white plan in his hand. They seem to be having a conversation.", - "id": 3182 + "image_path": "G:\\images\\combined\\016811c061894f68.jpg", + "response": "A long train on a train track with a sky background.", + "id": 33784 }, { - "image_path": "G:\\images\\combined\\00522_jpg.rf.7afc8ea00dc75c37006153a1b83aa065.jpg", - "response": "In the image, two people are standing outside, shaking hands. The person on the left, who is wearing a white shirt, is slightly overlapping the person on the right, who is wearing a yellow hard hat and black shirt. The man in the hard hat is holding a blueprint, which is visible at his lower right. They are both facing each other, and the man in the hard hat is looking slightly towards the left of the camera. They are standing in front of a building under construction. The building has a framework of metal poles and wooden beams, and it appears to be in an advanced state of disrepair. There are several large holes in the side of the building, and it appears to be missing many of its windows. The sky above them is blue with large white clouds.", - "id": 3183 + "image_path": "G:\\images\\combined\\016818832e5de8f5.jpg", + "response": "An airplane is on the runway.", + "id": 33785 }, { - "image_path": "G:\\images\\combined\\005230_jpg.rf.0323485b54a5bf57a785169f20453243.jpg", - "response": "The image shows two men in a cave. They are wearing yellow helmets and red safety vests. The men are standing in front of a waterfall. One of the men is holding a rope with a hook on the end. The man on the left is also holding a hose. The cave walls are covered in a white substance. The image is by Visual China.", - "id": 3184 + "image_path": "G:\\images\\combined\\016894011b8686b4.jpg", + "response": "An arena full of people watching a basketball game.", + "id": 33786 }, { - "image_path": "G:\\images\\combined\\005231_jpg.rf.3508f6235177e8bfeb0bcba07805254c.jpg", - "response": "A man in a hard hat and grey shirt is using a tool to apply cement to a grey wall.", - "id": 3185 + "image_path": "G:\\images\\combined\\01698b41dbd9dd78.jpg", + "response": "A green and white bus on a street.", + "id": 33787 }, { - "image_path": "G:\\images\\combined\\005233_jpg.rf.7984572fdd0dda41c235dacc31dbddc8.jpg", - "response": "An employee works at a coal mine in Datong city, Shanxi province, China, 20 February 2017. The picture shows an employee at a coal mine in Datong city, Shanxi province, China. The picture shows the employee wearing a blue outfit, a red helmet and glasses. The employee is holding a long steel bar with both hands. The background is blurred and the picture is focused on the employee.", - "id": 3186 + "image_path": "G:\\images\\combined\\0169a28198ca3700.jpg", + "response": "An orange and white airplane is parked on the runway.", + "id": 33788 }, { - "image_path": "G:\\images\\combined\\005234_jpg.rf.c99b3677a369094516e899c2b9b222ea.jpg", - "response": "In the image, two workers are standing on a metal platform wearing yellow helmets and work clothes. They are working on a large metal structure with power lines and cables behind them. The sky is blue and clear.", - "id": 3187 + "image_path": "G:\\images\\combined\\016a97b23b613882.jpg", + "response": "A white truck with a radio tower on top is parked on the side of the road.", + "id": 33789 }, { - "image_path": "G:\\images\\combined\\005235_jpg.rf.cc77021326208327a7136f15c29f4f94.jpg", - "response": "A man wearing a yellow vest and a hard hat standing in a warehouse.", - "id": 3188 + "image_path": "G:\\images\\combined\\016adf0f41cc399c.jpg", + "response": "A pile of cardboard boxes filled with various items such as handbags, books, and shirts.", + "id": 33790 }, { - "image_path": "G:\\images\\combined\\005236_jpg.rf.ad1bf23e9687b12d4121558c693adfd6.jpg", - "response": "In the image two workers are seen fixing an electricity transformer. They are wearing safety gear and are in the process of fixing a part of the transformer. The sky is blue in color and the workers are wearing white and blue color helmets.", - "id": 3189 + "image_path": "G:\\images\\combined\\016b57639f13e1dc.jpg", + "response": "A bottle of espresso superior coffee beer from the Dark Star Brewery.", + "id": 33791 }, { - "image_path": "G:\\images\\combined\\005237_jpg.rf.da4cf92cc88a497aa3cc956a048dd269.jpg", - "response": "a group of people standing around talking", - "id": 3190 + "image_path": "G:\\images\\combined\\016c4b92512f54f8.jpg", + "response": "A Rogue Farms branded bottle cap sitting on a shelf with Rogue beer bottles below it.", + "id": 33792 }, { - "image_path": "G:\\images\\combined\\005238_jpg.rf.3919fd15e825c549524f6312061b81cc.jpg", - "response": "A man wearing a red hard hat standing in front of a blue truck filled with wood.", - "id": 3191 + "image_path": "G:\\images\\combined\\016d8779fcbb8499.jpg", + "response": "A baseball player swinging a bat on a baseball field.", + "id": 33793 }, { - "image_path": "G:\\images\\combined\\005239_jpg.rf.bb8662c8121ff53544dce1fa3514cd87.jpg", - "response": "A group of men standing around a white van.", - "id": 3192 + "image_path": "G:\\images\\combined\\016dced0141308e1.jpg", + "response": "a map of the world on a wall", + "id": 33794 }, { - "image_path": "G:\\images\\combined\\00523_jpg.rf.08869fd21ee190bda45c23e83c993c27.jpg", - "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", - "id": 3193 + "image_path": "G:\\images\\combined\\016e1e45766ac79e.jpg", + "response": "A red bus with the number 6479 HA on the front of it.", + "id": 33795 }, { - "image_path": "G:\\images\\combined\\00523_jpg.rf.e2f2261e42b21b3a58b865f1959663d6.jpg", - "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", - "id": 3194 + "image_path": "G:\\images\\combined\\016e79f7df1f8de4.jpg", + "response": "A street scene with a car on the side of the road.", + "id": 33796 }, { - "image_path": "G:\\images\\combined\\005240_jpg.rf.c2f1b775f26d1df9c7f05aa49fe46de3.jpg", - "response": "a group of men standing around a bus", - "id": 3195 + "image_path": "G:\\images\\combined\\016e7a61d69d447f.jpg", + "response": "A plastic cup filled with a beer from Brooklyn Brewery.", + "id": 33797 }, { - "image_path": "G:\\images\\combined\\005241_jpg.rf.fe8ff728c5da1af05cba7301632798e2.jpg", - "response": "The construction site is located in the city of Xiamen, in the southeastern part of China. In the image, three construction workers are busy working on the site. They are wearing blue helmets and uniforms, indicating that they are construction workers. One of the workers is holding a long white pole, possibly a pole for measuring or supporting. Another worker is standing on the upper level of the site, while the third worker is on the lower level. The workers are focused on their tasks and appear to be engaged in various activities related to the construction of the site.", - "id": 3196 + "image_path": "G:\\images\\combined\\016e974a1752195d.jpg", + "response": "A street light over a city street with a sky background.", + "id": 33798 }, { - "image_path": "G:\\images\\combined\\005242_jpg.rf.2e4f8594daf1f2f5f1072c1b9633fa6c.jpg", - "response": "A man in a dark suit and red hard hat points to a crane operating in the sky. He is standing next to a man in a yellow hard hat who is also looking at the crane. Both men are in front of a large building under construction.", - "id": 3197 + "image_path": "G:\\images\\combined\\016ea0be30d99a56.jpg", + "response": "a pink sign with black text that says \"a one-way trip to mars with smoking hot wifi would be ok\"", + "id": 33799 }, { - "image_path": "G:\\images\\combined\\005243_jpg.rf.8d1be97cdb296a107f83e45ef1ae8b3d.jpg", - "response": "a group of people standing in front of some cars", - "id": 3198 + "image_path": "G:\\images\\combined\\016ed968736e3c85.jpg", + "response": "A six pack of Jack Daniels Tennessee Whiskey sits on a counter.", + "id": 33800 }, { - "image_path": "G:\\images\\combined\\005244_jpg.rf.628fb4e38b252fdcddc91c3c85e54183.jpg", - "response": "a person wearing a silver helmet and a blue jacket", - "id": 3199 + "image_path": "G:\\images\\combined\\016ee5993838b383.jpg", + "response": "An orange and black airplane with the number 27 on the side.", + "id": 33801 }, { - "image_path": "G:\\images\\combined\\005246_jpg.rf.5b2c751a1940210894e03ace7da4d6cf.jpg", - "response": "A worker in a red jumpsuit and blue hard hat stands on a metal platform working on a transformer. The transformer is large and metal and is located on a metal pole. There are two other workers visible in the image, one on the right side of the pole and one on the left side. The sky is blue and clear.", - "id": 3200 + "image_path": "G:\\images\\combined\\01707a81d120dea3.jpg", + "response": "A desk with a keyboard, mouse, monitor, and picture frame.", + "id": 33802 }, { - "image_path": "G:\\images\\combined\\005247_jpg.rf.df92ffac70d61ef62328e3da7adad77a.jpg", - "response": "A man in a white shirt and yellow hard hat watches as a building is torn down.", - "id": 3201 + "image_path": "G:\\images\\combined\\017167286eaede50.jpg", + "response": "A Samsung Galaxy phone and a smartwatch laying next to each other on a wooden table.", + "id": 33803 }, { - "image_path": "G:\\images\\combined\\005249_jpg.rf.289abe20e369a441277263cb8789a787.jpg", - "response": "In the image, a tree is shown falling across power lines. Below the tree, two men are working to remove it. One man is standing on the ground holding a pole and pulling on a tree branch while the other man is standing on a ladder and cutting the tree with a chainsaw. They are both wearing blue shirts and hard hats.", - "id": 3202 + "image_path": "G:\\images\\combined\\0171805739279698.jpg", + "response": "A red double decker bus is parked on the side of the road.", + "id": 33804 }, { - "image_path": "G:\\images\\combined\\00524_jpg.rf.a24c0b3f1e7a201802f33393cf96d8d1.jpg", - "response": "The image shows two men wearing red helmets and blue work clothes. They are checking a power line. One man is crouching down and looking at something on the power line, while the other man is watching him. They both seem to be focused on their task.", - "id": 3203 + "image_path": "G:\\images\\combined\\0173c483a5f56dc9.jpg", + "response": "A busy city street with people and vehicles.", + "id": 33805 }, { - "image_path": "G:\\images\\combined\\00524_jpg.rf.ef82488a584843650f84a5144b3fadda.jpg", - "response": "The image shows two men wearing red helmets and orange safety harnesses, with one standing on a ladder and the other on the ground, both working on a metal structure. They are both wearing blue denim shirts and are focused on their task.", - "id": 3204 + "image_path": "G:\\images\\combined\\01742c404f9c67a8.jpg", + "response": "A person standing in front of a projector screen giving a presentation.", + "id": 33806 }, { - "image_path": "G:\\images\\combined\\005250_jpg.rf.3e73c963b513e0950ee24aae0397dffa.jpg", - "response": "The image shows a group of men standing in a circle in front of a construction site. They are all wearing hard hats, with some wearing blue and others wearing orange. The men are standing in front of a street that has been dug up by a yellow and black backhoe. In the background, there are several buildings, some of which are in the process of being demolished. The image is taken in a city.", - "id": 3205 + "image_path": "G:\\images\\combined\\017515fcaad7a491.jpg", + "response": "A package wrapped in brown paper with a red white and blue label on the corner that says Tanned in USA.", + "id": 33807 }, { - "image_path": "G:\\images\\combined\\005251_jpg.rf.462f8a55bfcd42c08f32ba4466ee60f7.jpg", - "response": "A group of men working on oil drills.", - "id": 3206 + "image_path": "G:\\images\\combined\\017558fca4f4ba44.jpg", + "response": "The image shows a table topped with a variety of beer bottles and a baby's bottle. There are at least twelve bottles on the table, arranged in a variety of shapes and sizes. Some of the bottles are standing upright, while others are lying on their sides. The bottles come in different colors and have labels with various designs. In addition to the bottles, there is a baby's bottle on the table, which is shorter and wider than the beer bottles. The table is also topped with a few pieces of paper.", + "id": 33808 }, { - "image_path": "G:\\images\\combined\\005252_jpg.rf.b73662bc7cc0085ceb7bc380b21f4abd.jpg", - "response": "The image shows several construction workers at a construction site. They are wearing yellow hard hats and work clothes. They are working on a large concrete structure, pouring concrete onto rebar. There are several hoses and tools scattered around the area. In the background, there is a crane and a building under construction.", - "id": 3207 + "image_path": "G:\\images\\combined\\0176dc2d441504d8.jpg", + "response": "The image shows a bookshelf filled with books in a library. The books are arranged on three shelves and vary in size, color, and format. Some books are large and thick, while others are smaller and thinner. The bookshelf is made of black material and is filled with books on different topics. Some books are labeled with white stickers that may contain information about the book or the author. The overall atmosphere of the image is that of a quiet and organized place, where people can come to learn and read.", + "id": 33809 }, { - "image_path": "G:\\images\\combined\\005253_jpg.rf.a97317b9400248a2591e7240f493759b.jpg", - "response": " Miners(568,469),(728,912)(382,472),(503,788) at work in a mine", - "id": 3208 + "image_path": "G:\\images\\combined\\01776212f59bf2dc.jpg", + "response": "A model train set with a cargo car and two mine carts on the tracks.", + "id": 33810 }, { - "image_path": "G:\\images\\combined\\005254_jpg.rf.d996e6a7ea943da315a7bbb63a2e60f8.jpg", - "response": "A group of rescue workers in protective gear stand around a red piece of mining equipment. They are wearing helmets and some have breathing tubes. They are looking at the equipment and talking to each other. In the background, there is a brick wall and a pipe. There is also a man in an orange jumpsuit standing on a ladder.", - "id": 3209 + "image_path": "G:\\images\\combined\\0177e5cab3e6dd09.jpg", + "response": "A pile of assorted street signs sitting on the ground.", + "id": 33811 }, { - "image_path": "G:\\images\\combined\\005255_jpg.rf.d185a239986297307fbf44619b28658b.jpg", - "response": "A group of workers are on a scaffolding that is built around a large tower. They are working on the tower, which is in the mountains. The tower is yellow and red, and is located near a green mountain range. The sky is grey, and the workers are wearing hard hats and safety gear.", - "id": 3210 + "image_path": "G:\\images\\combined\\0178204bfa902533.jpg", + "response": "A person walking their dog on a lead in a car park.", + "id": 33812 }, { - "image_path": "G:\\images\\combined\\005258_jpg.rf.d49eac23edc94c201b053aaf33f203e0.jpg", - "response": " Men(437,164),(603,976)(649,136),(838,948)(114,249),(300,997)(348,199),(431,502)(821,169),(960,872)(2,196),(177,931) in suits(651,255),(835,894)(439,286),(602,938)(116,368),(298,967) and hard hats(482,162),(571,251)(176,249),(268,332)(697,135),(783,217)(367,199),(410,249)(69,196),(171,281) walking in a construction site", - "id": 3211 + "image_path": "G:\\images\\combined\\017970b66a149b80.jpg", + "response": "An orange and white jet airliner on a wet runway.", + "id": 33813 }, { - "image_path": "G:\\images\\combined\\005259_jpg.rf.9740885ec29e00c0b840f689ee23098b.jpg", - "response": "A group of men in hard hats and work clothes are holding a large pipe.", - "id": 3212 + "image_path": "G:\\images\\combined\\0179daf51678b42b.jpg", + "response": "a man wearing a red racing suit with white accents", + "id": 33814 }, { - "image_path": "G:\\images\\combined\\005260_jpg.rf.c1c62c416761fcea039a726dd4c218b0.jpg", - "response": "In the image, a man is working at a factory that produces hot rolled steel. The factory has a large machine that is melting steel and spitting out large red hot pieces of steel. The man is wearing a hard hat and blue overalls and is working with a large metal rod. He is also standing on a platform near the machine. The factory is quite industrial and has a lot of steel equipment and machinery.", - "id": 3213 + "image_path": "G:\\images\\combined\\017b2a8eae6f2070.jpg", + "response": "A close up of a coin in someones hand. The coin is a 20 cent piece and has Queen Elizabeth II on it.", + "id": 33815 }, { - "image_path": "G:\\images\\combined\\005261_jpg.rf.134dc3f6201e0218c49425fd330b4545.jpg", - "response": "A group of men in white shirts and red hard hats stand in front of a construction site. In the background there is a hill.", - "id": 3214 + "image_path": "G:\\images\\combined\\017b90b578be59d7.jpg", + "response": "The image displays a glass shelf with multiple bottles of agave syrup. The bottles are displayed in front of a crowd of people. The bottles are arranged in such a way that they form a row. The agave syrup bottles vary in size and are of different shades of brown.", + "id": 33816 }, { - "image_path": "G:\\images\\combined\\005262_jpg.rf.760a562929cf719ece82814d7ac7eedc.jpg", - "response": "In the image there are two men working on an electrical panel. One man is on the left and he is wearing a blue helmet and a grey shirt. He is also wearing a watch on his left wrist. The second man is on the right and he is wearing a white helmet and a grey shirt. He is also wearing a watch on his right wrist. They are both working on the electrical panel.", - "id": 3215 + "image_path": "G:\\images\\combined\\017e09f52c4229f1.jpg", + "response": "A yellow plane with the word \"Navy\" on the side.", + "id": 33817 }, { - "image_path": "G:\\images\\combined\\005264_jpg.rf.6fe1d038d39a45d57a0e873d74cda539.jpg", - "response": "The image shows a group of men in green and yellow work clothes carrying a large metal ladder over their shoulders. They are in a forested area with a few trees visible in the background. In the foreground, there is a large pipe and a yellow digger.", - "id": 3216 + "image_path": "G:\\images\\combined\\017f0881bc6ac4ae.jpg", + "response": "An old camera, the Mamiya RB67, is sitting on a desk. The camera is black and has a round lens on the front. The lens has the word Mamiya on it. The camera has a black strap that is attached to it. The strap has the word Mamiya on it as well. The camera is positioned in the center of the image and is in front of a keyboard.", + "id": 33818 }, { - "image_path": "G:\\images\\combined\\005265_jpg.rf.c7e746861d1577031bf2ff9c483033ba.jpg", - "response": "In the image there is a female construction worker wearing a blue shirt and a red scarf. She is standing on a construction site holding a black belt with a hook on it. There are several rolls of steel cables next to her. In the background there is a building under construction with several floors built and some scaffolding.", - "id": 3217 + "image_path": "G:\\images\\combined\\017f45b1410d3ddb.jpg", + "response": "A stop sign is at the intersection of Summit and Spooner streets.", + "id": 33819 }, { - "image_path": "G:\\images\\combined\\005266_jpg.rf.0f371e76393ad515677c7378ba5ba58d.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 3218 + "image_path": "G:\\images\\combined\\017f5bee52b9aa44.jpg", + "response": "A watch with the number 12 on it.", + "id": 33820 }, { - "image_path": "G:\\images\\combined\\005267_jpg.rf.b255620abd1f24b8634abc83747887cd.jpg", - "response": "A woman wearing a pink and white shirt is talking to a group of four men wearing green and yellow hard hats. They are all holding papers and one of the men is holding a pen. They are standing in front of a white truck and a building. There is also a banner in the background that says in red Chinese characters, \"safety first\".", - "id": 3219 + "image_path": "G:\\images\\combined\\018109c84870f2fc.jpg", + "response": "In the image there is a black plastic squeezy tube with a black label on it. The label has the words Blemish Balm in pink font and All in One Magic Make-Up in black font. The tube is open slightly and is sitting on a white surface with a green background.", + "id": 33821 }, { - "image_path": "G:\\images\\combined\\005269_jpg.rf.823eed31e8feb4498986965058804a78.jpg", - "response": "The photo shows a group of men walking down a red carpet. The men are wearing suits and the carpet is located in front of a building. Some of the men are wearing ties.", - "id": 3220 + "image_path": "G:\\images\\combined\\01812649e2c108b4.jpg", + "response": "a yellow bump sign (126,125),(895,895)", + "id": 33822 }, { - "image_path": "G:\\images\\combined\\00526_jpg.rf.1132fb5c61d374a6cef4c1d0cc790ae4.jpg", - "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", - "id": 3221 + "image_path": "G:\\images\\combined\\0181608191e027f5.jpg", + "response": "A keyboard with the letters on it rearranged to spell \"Knob\".", + "id": 33823 }, { - "image_path": "G:\\images\\combined\\00526_jpg.rf.5d22d0dc6bf6ea8eae18674d41627f1e.jpg", - "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", - "id": 3222 + "image_path": "G:\\images\\combined\\0181953a3ab18ae3.jpg", + "response": "A bus and a truck are involved in an accident at a busy intersection.", + "id": 33824 }, { - "image_path": "G:\\images\\combined\\005270c5d6e6b6d6.jpg", - "response": "A black car is parked on the street in front of a building. The building has a Christmas tree inside of it. There is a Fat Head's Saloon on the street corner.", - "id": 3223 + "image_path": "G:\\images\\combined\\01824d2e57c99aad.jpg", + "response": "A computer monitor is on a desk with three small screens in front of it. The screens are displaying different colors. There is also a keyboard in front of the monitor.", + "id": 33825 }, { - "image_path": "G:\\images\\combined\\005270_jpg.rf.3f14bfb99dabc6a3bcb204ba77cf3aeb.jpg", - "response": "A group of people walking down a street.", - "id": 3224 + "image_path": "G:\\images\\combined\\018273ccfbe71fb1.jpg", + "response": "A red bus is driving down the street.", + "id": 33826 }, { - "image_path": "G:\\images\\combined\\005271_jpg.rf.7598c216f65bf87d5835c5b68d617e70.jpg", - "response": "A man in a blue shirt and blue hat fixing an electrical box on the side of a building.", - "id": 3225 + "image_path": "G:\\images\\combined\\0182cde6febd8fa9.jpg", + "response": "a green and white street sign that says Branchville Emporia on it", + "id": 33827 }, { - "image_path": "G:\\images\\combined\\005272_jpg.rf.d988e346b8dd77d768c8339776a4dbf5.jpg", - "response": "A group of men standing around a table with a laptop and projector on it.", - "id": 3226 + "image_path": "G:\\images\\combined\\018350593a10c72e.jpg", + "response": "A green bus is parked on the side of the street.", + "id": 33828 }, { - "image_path": "G:\\images\\combined\\005274_jpg.rf.7a3e2abde6dc057bd8bdce2abe910e6c.jpg", - "response": "A group of workers are working on a construction site. They are wearing yellow hard hats and t-shirts and are standing on a walkway. One worker is on the left holding a tool, one worker is in the middle raising their right arm, and another worker is on the right. In the background, there is a pile of sand.", - "id": 3227 + "image_path": "G:\\images\\combined\\0183848df6accae7.jpg", + "response": "A blue train engine with the number 50036 is pulling into a train station.", + "id": 33829 }, { - "image_path": "G:\\images\\combined\\005275_jpg.rf.1c1fcc7873ec51a53f41ac1a080df3e4.jpg", - "response": "a group of people standing around a model city", - "id": 3228 + "image_path": "G:\\images\\combined\\0183931fc9840cd3.jpg", + "response": "A collection of books on a table.", + "id": 33830 }, { - "image_path": "G:\\images\\combined\\005276_jpg.rf.e6c9ac062281623fc7b1e64bf09285b7.jpg", - "response": "A couple of men in blue work clothes are on a ladder working on power lines.", - "id": 3229 + "image_path": "G:\\images\\combined\\0183bbb34a7487c2.jpg", + "response": "A man with a beard and a white lab coat is in a lab. He is wearing a white lab coat, blue gloves and has a beard.", + "id": 33831 }, { - "image_path": "G:\\images\\combined\\005277_jpg.rf.fea6d2282fde83b3592bbf69acc8cbe8.jpg", - "response": "A construction worker wearing a yellow shirt and blue pants is on a scaffolding. He is wearing a yellow helmet and holding a blue tool in his right hand. He is in the process of climbing down the scaffolding. The sky is a clear blue and the sun is shining.", - "id": 3230 + "image_path": "G:\\images\\combined\\0183cbd4b08d168b.jpg", + "response": "A white board with the word \"FRIENDS\" written on it.", + "id": 33832 }, { - "image_path": "G:\\images\\combined\\005278_jpg.rf.f9b7b7890fb1f09034a483a602957af0.jpg", - "response": "In the image, there is a person wearing a yellow and white safety vest and a white hat standing on a construction site. The person is holding a small device and is inspecting something. There are several other people in the background, some wearing red and yellow hats, and one person is carrying a large bag. The whole scene is set in an unfinished building with lots of steel bars.", - "id": 3231 + "image_path": "G:\\images\\combined\\0184cbf22246869d.jpg", + "response": "an open book with many words on it", + "id": 33833 }, { - "image_path": "G:\\images\\combined\\005279_jpg.rf.ab9c0746159b810e27955c89e02ea73b.jpg", - "response": "In the image there are three people working on the right side of the image. They are wearing yellow helmets and are standing next to a large\u7b3c\u5b50\u7ed3\u6784. The\u7b3c\u5b50 is made of steel and is gray in color. It is being built in front of a blue warehouse. On the right side of the warehouse, there is a red container. In the background, there is a yellow machine. On the floor, there are several wires. The image is taken outside.", - "id": 3232 + "image_path": "G:\\images\\combined\\01858e4b52f9828f.jpg", + "response": "A wooden clock with roman numerals sits on a mantle.", + "id": 33834 }, { - "image_path": "G:\\images\\combined\\00527_jpg.rf.d3aaec57e3ddb1b0f5cfa5a5a1cbc9b2.jpg", - "response": "A group of people wearing hard hats are looking at a blueprint together outside a construction site.", - "id": 3233 + "image_path": "G:\\images\\combined\\0185d3a402c0978e.jpg", + "response": "A table with two glasses and two bottles of beer on it.", + "id": 33835 }, { - "image_path": "G:\\images\\combined\\005280_jpg.rf.de839fe65ff0c2f60e8cb3f60475bf84.jpg", - "response": "A group of men in blue work uniforms are standing on a ladder and climbing on a large metal structure that is part of a power pole. They are all reaching up to work on the metal structure.", - "id": 3234 + "image_path": "G:\\images\\combined\\0185d4518e6adca6.jpg", + "response": "The watch is made of metal and has a silver and black face.", + "id": 33836 }, { - "image_path": "G:\\images\\combined\\005281_jpg.rf.24e8ab22d968f4be2d6d52e9c9ed2163.jpg", - "response": "An electrician is working on power lines.", - "id": 3235 + "image_path": "G:\\images\\combined\\01862b86467dd50a.jpg", + "response": "A laptop computer with a photo of a group of people on the screen. The photo shows a man and a woman holding a baby, and they are all smiling. There is also a picture of a man with a beard and a suit on the screen.", + "id": 33837 }, { - "image_path": "G:\\images\\combined\\005282_jpg.rf.97d75d4ddc826373748053d7cf98da10.jpg", - "response": "A man wearing a yellow vest and a yellow hard hat is holding a cell phone to his ear. He is standing on a construction site holding a plan.", - "id": 3236 + "image_path": "G:\\images\\combined\\01869026f71bc30a.jpg", + "response": "A blue and gold can of beer that is open on top sitting on a counter.", + "id": 33838 }, { - "image_path": "G:\\images\\combined\\005283_jpg.rf.cf80559bc187d4e8ddcc370761b69e3b.jpg", - "response": "A group of men are working on a power box.", - "id": 3237 + "image_path": "G:\\images\\combined\\018794a8a1f6b23b.jpg", + "response": "A large billboard featuring a woman in a red dress in front of a blue car.", + "id": 33839 }, { - "image_path": "G:\\images\\combined\\005285_jpg.rf.059c35afb0e14ff0645ee1260514dd63.jpg", - "response": "A worker wearing a yellow hat that says \"30\" on it.", - "id": 3238 + "image_path": "G:\\images\\combined\\01880af9695eceb8.jpg", + "response": "A silver and black fighter plane with a man in the cockpit.", + "id": 33840 }, { - "image_path": "G:\\images\\combined\\005286_jpg.rf.4360ec7bf2bd7bd0aaf23b07b1333061.jpg", - "response": "A group of men sitting around a table.", - "id": 3239 + "image_path": "G:\\images\\combined\\0188b56d842f79ba.jpg", + "response": "The image shows a close up of a grey keyboard. The keys are Return, Shift, and Enter.", + "id": 33841 }, { - "image_path": "G:\\images\\combined\\005287_jpg.rf.67eedf6be6d37dacded6115cbfc7eecd.jpg", - "response": "In the image there is a large tunnel that is unfinished on the right side. In the center of the tunnel there are two workers wearing orange jackets and red hats, one is using a pick and the other is using a shovel. They are working on the ground which is wet and some parts are flooded. There are some yellow barriers on the left side of the workers and a yellow crane in the background. The tunnel walls are gray and white and the ceiling is gray.", - "id": 3240 + "image_path": "G:\\images\\combined\\0188e73e3478081a.jpg", + "response": "Three men in biking attire standing together with their arms around each other.", + "id": 33842 }, { - "image_path": "G:\\images\\combined\\005288_jpg.rf.880707e9e94b6047ffe0d6123c31136b.jpg", - "response": "A man and a woman wearing hard hats looking at blueprints in a construction site.", - "id": 3241 + "image_path": "G:\\images\\combined\\01891d494c112c64.jpg", + "response": "A colorful table with a pink tablecloth and a colorful cloth underneath the beer.", + "id": 33843 }, { - "image_path": "G:\\images\\combined\\00528_jpg.rf.94829cc4ee87f1f983d8441c93a71bce.jpg", - "response": "a group of men standing in front of a building", - "id": 3242 + "image_path": "G:\\images\\combined\\01895680c5fa120b.jpg", + "response": "A store shelf with two orange and yellow Pringles cans.", + "id": 33844 }, { - "image_path": "G:\\images\\combined\\005290_jpg.rf.57c7035a779f09856151d941ec5c605e.jpg", - "response": "A worker in a white shirt and wearing a blue hat is sitting on the ground. They are wearing a white mask and are working with a bag of white stuff. There are two other workers in the background. One is in the far background on the left and the other is in the far background on the right. They are both wearing blue hats and one is wearing a white shirt and the other is wearing a blue shirt.", - "id": 3243 + "image_path": "G:\\images\\combined\\01899740973985e6.jpg", + "response": "A white and blue bus is parked on the side of the street.", + "id": 33845 }, { - "image_path": "G:\\images\\combined\\005292_jpg.rf.8ea8d1263a716e26db8c4f0560bbc59a.jpg", - "response": "An elderly worker wearing a red helmet is operating a circular saw at a construction site. He is wearing a grey shirt, a grey vest and a brown apron. There are several other workers at the site, some are standing around, some are working with metal rods and some are standing near a building that is under construction. The sky is dark and it seems to be an overcast day.", - "id": 3244 + "image_path": "G:\\images\\combined\\018a9e2001d2fb4d.jpg", + "response": "A van with a painted face on the hood, parked in a parking lot.", + "id": 33846 }, { - "image_path": "G:\\images\\combined\\005294_jpg.rf.89f8b4143b3d7f49dafbd1f824f274a8.jpg", - "response": "In the image there are three people working on a construction site. Two of them are wearing white helmets and are carrying a wooden beam on their shoulders. They are located on a wooden platform that is supported by a metal scaffolding. Another person, wearing a white helmet, is standing below them. Another person, wearing a yellow helmet, is standing below the platform, also working on the construction. The background is blurry, and the image is captured in black and white.", - "id": 3245 + "image_path": "G:\\images\\combined\\018c2f7c1ccd0d67.jpg", + "response": "A table with three remote controls on top of it.", + "id": 33847 }, { - "image_path": "G:\\images\\combined\\005295_jpg.rf.d93fd5bd30bdd91ca6ea31ce88a73e86.jpg", - "response": " Two engineers(411,420),(586,997)(216,311),(421,757) standing in front of a pile(0,578),(997,997) of pipes", - "id": 3246 + "image_path": "G:\\images\\combined\\018c305361dad376.jpg", + "response": "A collage of two photos, one on the left is a black and white image of a man in a clown suit riding a unicycle, the other on the right is a black and white photo of three people riding bicycles on a track.", + "id": 33848 }, { - "image_path": "G:\\images\\combined\\005296_jpg.rf.dda8589ee2c798da7280d14556e142f0.jpg", - "response": "a group of people standing in front of a sign", - "id": 3247 + "image_path": "G:\\images\\combined\\018c95ebb9fece08.jpg", + "response": "The image is an advertisement for Prati-Donazzi, a generic medication produced in Brazil. The main product is Donuzli, a medication for the treatment of constipation in infants and children. The image features a box of Donuzli, a small child, and a mother holding her child. The text on the image reads \"Prati-Donazzi: O g\u00eanero \u00e9 mais consumido do Brasil.\" The image is also labeled as being protected by copyright.", + "id": 33849 }, { - "image_path": "G:\\images\\combined\\005297_jpg.rf.ee15b6f937098a4149818b185e7c0e38.jpg", - "response": "In the image there is a worker wearing a white uniform and a yellow helmet, who is operating a machine that controls the steel refining process. The worker is surrounded by sparks flying in all directions, some of which are bright yellow and some are white. There are also some red hot steel bars in the scene.", - "id": 3248 + "image_path": "G:\\images\\combined\\018d277fa43ac4c8.jpg", + "response": "A Star Alliance airplane is landing at an airport.", + "id": 33850 }, { - "image_path": "G:\\images\\combined\\005298_jpg.rf.40be6ba37593027b88c104000bfa97cb.jpg", - "response": "Men working on a train in a tunnel.", - "id": 3249 + "image_path": "G:\\images\\combined\\018d5ebbbdb36daf.jpg", + "response": "An ambulance van is parked in front of a building. The van is red, white, yellow, and green. The ambulance service Australia logo is on the side of the van. There is a red and white checkered pattern on the side of the van. The van has a siren on top of it. There is a brick wall next to the building.", + "id": 33851 }, { - "image_path": "G:\\images\\combined\\005298_jpg.rf.e55dc25c5d9460a29beae55f257dfa78.jpg", - "response": "The image shows a group of workers inside a large tunnel. The tunnel is white and grey in color and has a concrete wall. The workers are wearing blue uniforms and yellow helmets. Some of them are working on a rail system inside the tunnel. There are also some white boxes and a red pipe in the foreground.", - "id": 3250 + "image_path": "G:\\images\\combined\\018deaf2ea7f1aa5.jpg", + "response": "A close up of a smart watch on a wooden table. The watch is a silver color and has a black band. The watch face has the word \"Samsung\" written on it in blue.", + "id": 33852 }, { - "image_path": "G:\\images\\combined\\005299_jpg.rf.3afc600ae068b257160bd4a39052689b.jpg", - "response": "A man is climbing down a mountain using a rope. He is wearing yellow shorts and a yellow hat. He is also barefoot.", - "id": 3251 + "image_path": "G:\\images\\combined\\018e33d28aa4d125.jpg", + "response": "A silver and black macbook air laptop sitting on a wooden desk.", + "id": 33853 }, { - "image_path": "G:\\images\\combined\\005299_jpg.rf.5c997c11c980a267db4d0375413724cc.jpg", - "response": "A child(456,269),(680,800) climbing a steep mountain path using a long stick(77,233),(999,428)", - "id": 3252 + "image_path": "G:\\images\\combined\\018e736d0febce19.jpg", + "response": "A road sign warning of tank crossing is posted on the side of the road.", + "id": 33854 }, { - "image_path": "G:\\images\\combined\\00529_jpg.rf.32f1fbbe75af7666f6fd63fc33712f28.jpg", - "response": "In the image there are two engineers in safety jackets and blue helmets, one man and one woman, they are talking about the project in front of the brick building.", - "id": 3253 + "image_path": "G:\\images\\combined\\018e8263c76d4c02.jpg", + "response": "A colorful fighter jet is taking off from a runway.", + "id": 33855 }, { - "image_path": "G:\\images\\combined\\0052c92026c934e5.jpg", - "response": "The image shows a group of people standing around a track, with a few athletes wearing green and yellow uniforms. There are several other people standing and sitting around the track, and a few camera equipment items are visible in the scene. Some backpacks and other personal items are scattered around the area, indicating that this may be a training or competition setting. The track itself has a red surface and is surrounded by a fence.", - "id": 3254 + "image_path": "G:\\images\\combined\\018edff0d2be81a6.jpg", + "response": "A black box with the word Godorniu in gold on the top.", + "id": 33856 }, { - "image_path": "G:\\images\\combined\\005300_jpg.rf.749639f9b4fecd3a762597bdcfd1677e.jpg", - "response": "A construction vehicle with a large front loader.", - "id": 3255 + "image_path": "G:\\images\\combined\\018eedca06fdf3c0.jpg", + "response": "A shiny silver propeller airplane is on the runway.", + "id": 33857 }, { - "image_path": "G:\\images\\combined\\005300_jpg.rf.d0fbafaaac086f0a5a3b90fa919f1dd2.jpg", - "response": "A man in orange standing in front of a yellow bulldozer.", - "id": 3256 + "image_path": "G:\\images\\combined\\018fec5b873d3012.jpg", + "response": "The image shows a close up of the tail end of an airplane. The airplane is white and blue and says \"A380\" on the tail. The word \"Love at first flight\" is also painted on the side of the plane. The sky is clear and blue behind the plane.", + "id": 33858 }, { - "image_path": "G:\\images\\combined\\005301_jpg.rf.76f27e5611ab711cb6c516a371fa37ff.jpg", - "response": "A group of people sitting around a table.", - "id": 3257 + "image_path": "G:\\images\\combined\\019128504b2d8249.jpg", + "response": "A crowded arena full of people, with a basketball court in the middle. There are multiple scoreboards and lights shining down on the court.", + "id": 33859 }, { - "image_path": "G:\\images\\combined\\005301_jpg.rf.eebc01f2cf37b818a3cf7851a17beee5.jpg", - "response": "A group of people sitting around a table.", - "id": 3258 + "image_path": "G:\\images\\combined\\019171300473730c.jpg", + "response": "A large colorful welcome to Nevada sign with a cowboy on it.", + "id": 33860 }, { - "image_path": "G:\\images\\combined\\005302_jpg.rf.299dfbf20c7baf71ae1b8adfadf21767.jpg", - "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a metal railing and appears to be focused on his work. He is holding a tool in his hand and appears to be working on a power line. The background is hazy and there are some mountains visible in the distance.", - "id": 3259 + "image_path": "G:\\images\\combined\\0191da68d5042918.jpg", + "response": "A poster with two men on it in a foreign language.", + "id": 33861 }, { - "image_path": "G:\\images\\combined\\005302_jpg.rf.edcea69a36e0d95683d906d8543f7bed.jpg", - "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a ladder and appears to be working on a power line. He is holding a tool in his hand and appears to be focused on his task.", - "id": 3260 + "image_path": "G:\\images\\combined\\019236669bdf9f65.jpg", + "response": "A bottle of wine laying on top of a bed of raspberries.", + "id": 33862 }, { - "image_path": "G:\\images\\combined\\005303_jpg.rf.2744d56ca67d509837d0308386410c3d.jpg", - "response": "The image shows a construction site where several workers are working. In the foreground, two workers are crouched down working on a square hole in the ground. Another worker is standing in the background, and two more are in the far background. In the middle ground, there is a long white building with Chinese characters on the second floor. The characters say \"\u5f3a\u5316\u5b89\u5168\u6587\u5316\". There is a red roof on the white building. On the right side of the image, there is a long sidewalk.", - "id": 3261 + "image_path": "G:\\images\\combined\\01929e6e4467314d.jpg", + "response": "A maroon car parked on the side of a road.", + "id": 33863 }, { - "image_path": "G:\\images\\combined\\005303_jpg.rf.54be7c16f2ddd8094e4a2fa3bb5e1c82.jpg", - "response": "The image shows a construction site where several workers are working. There are three workers in the foreground, all wearing blue shirts and pants, with the one on the left crouching down and the other two standing further back. They are working on a square hole in the ground. In the background, there are three other workers, one near the left side of the image, one in the center, and one on the right side. There is also a white and red sign on a building in the background.", - "id": 3262 + "image_path": "G:\\images\\combined\\0193646887a0c084.jpg", + "response": "A computer monitor on a desk in a store.", + "id": 33864 }, { - "image_path": "G:\\images\\combined\\005304_jpg.rf.503db9e2b279bb8ac286d27e61aac098.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 3263 + "image_path": "G:\\images\\combined\\019396ac7f0ea531.jpg", + "response": "In the image, a man wearing a white cricket uniform and a blue cap is standing in a grassy field. He is holding a ball in his right hand and appears to be looking off to the side. Another person is visible in the background, wearing a white shirt and blue shorts. The field has a few steps leading up to it and is surrounded by a white wall. The chairs in the background are pink and are arranged in rows.", + "id": 33865 }, { - "image_path": "G:\\images\\combined\\005304_jpg.rf.c6f7a615401fecde737ba67da3cb0441.jpg", - "response": "A group of people wearing hard hats standing in front of a wall of wood.", - "id": 3264 + "image_path": "G:\\images\\combined\\0193991401f83e64.jpg", + "response": "a bus with a blue awning that says \u91d1\u9633\u516c\u5b89\u5206\u5c40 on it", + "id": 33866 }, { - "image_path": "G:\\images\\combined\\005305_jpg.rf.0f5e9815eeec8247989af2c312f9cd3c.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, who is working on a yellow and orange construction site. The worker is in the process of cutting a red pipe with a hand saw, which is located on a ladder. The sky in the background is a clear blue and the sun is shining.", - "id": 3265 + "image_path": "G:\\images\\combined\\0194162dfa4c44ef.jpg", + "response": "A train is coming down the tracks in the snow.", + "id": 33867 }, { - "image_path": "G:\\images\\combined\\005305_jpg.rf.fa63e400c407fe9118f913e47721b7eb.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, standing next to a yellow building. The worker is holding a hammer and is working on a red pipe. The sky is blue with a few clouds.", - "id": 3266 + "image_path": "G:\\images\\combined\\01942fe769bbad71.jpg", + "response": "A Keurig coffee maker on a black tray with a variety of items.", + "id": 33868 }, { - "image_path": "G:\\images\\combined\\005306_jpg.rf.dede82be4b4f46a2a5ce57c1cd9db487.jpg", - "response": "A man is using a sledge hammer to drive a large spool of wire into the ground. The man is wearing a yellow hard hat and black overalls. Next to him are two large spools of wire, one on the left and one on the right. In the background, there are two more spools of wire, one on the left and one on the right.", - "id": 3267 + "image_path": "G:\\images\\combined\\0195e8a172eddc29.jpg", + "response": "A white Volkswagen Polo car with a yellow license plate that reads \"BP12 EFS\". There is a sticker on the back window that says \"Sulitler Speeds\". In the background, there is a blue fence and a building.", + "id": 33869 }, { - "image_path": "G:\\images\\combined\\005306_jpg.rf.eb011f3d7414440d61a4699c44fd1b96.jpg", - "response": "A man with a hammer is working on a tower.", - "id": 3268 + "image_path": "G:\\images\\combined\\01963c4f7859148b.jpg", + "response": "In the image, there is a yellow and blue train passing by a sign that says \"1284\". The train is blurry and appears to be moving quickly. There is a red hand on a pole next to the sign. The background shows a building with a yellow door and a window. The platform is made of brick and there are several steps leading up to it.", + "id": 33870 }, { - "image_path": "G:\\images\\combined\\005307_jpg.rf.933bd765b94764b4de3c76100dee3f6b.jpg", - "response": "A man carrying a bag on his shoulder walks past a construction site. In the background, there are buildings and a crane.", - "id": 3269 + "image_path": "G:\\images\\combined\\019667366dbf9b65.jpg", + "response": "A large building with a big advertisement on the front of it.", + "id": 33871 }, { - "image_path": "G:\\images\\combined\\005307_jpg.rf.d6fce62326eb7ee772c3c0bae2dc8f85.jpg", - "response": "The photo shows a demolition site in the city of Xuzhou, East China's Jiangsu province. A large yellow crane is seen on the right, with a man carrying a large bag of sand on his back in the middle of the photo. The background shows a row of houses being demolished.", - "id": 3270 + "image_path": "G:\\images\\combined\\0196a4e677d98881.jpg", + "response": "A black and white photo of a Air New Zealand airplane taking off.", + "id": 33872 }, { - "image_path": "G:\\images\\combined\\005308_jpg.rf.69527bb7b4977b88ed1bf2d0f13625aa.jpg", - "response": "Three men in hard hats are looking at a set of plans on the ground. They are all holding notebooks and one man is holding a measuring tape. They appear to be in the process of planning a construction project.", - "id": 3271 + "image_path": "G:\\images\\combined\\01974aeb05de615f.jpg", + "response": "A bottle of Buxton water sitting on a coaster.", + "id": 33873 }, { - "image_path": "G:\\images\\combined\\005308_jpg.rf.8952a0c38b9a0d877ce7f8cd8b1318e8.jpg", - "response": "Three men looking at a blueprint on the ground. One man is wearing a yellow hard hat, a yellow and gray vest, and a orange safety vest. Another man is wearing a white hard hat and a gray shirt. The third man is wearing a white shirt and gray pants.", - "id": 3272 + "image_path": "G:\\images\\combined\\01977597c2c9bd01.jpg", + "response": "A cup of coffee with foam on top sitting on a table.", + "id": 33874 }, { - "image_path": "G:\\images\\combined\\005309_jpg.rf.43cf3df41da5d490a1e826bd6347dfac.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and orange helmets. The men are standing side by side and seem to be working on the same task. One of the men is on the left side of the image and the other one is on the right side. The machinery they are working on is black and is connected to a yellow hose. The men are standing on the ground and the sky above them is blue.", - "id": 3273 + "image_path": "G:\\images\\combined\\0198094da6036e1a.jpg", + "response": "A clothes line with a variety of clothes hanging on it.", + "id": 33875 }, { - "image_path": "G:\\images\\combined\\005309_jpg.rf.6f90ae388763043bb0d2e387b7b9a48b.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and hard hats. The men are standing next to each other and seem to be working on the same task.", - "id": 3274 + "image_path": "G:\\images\\combined\\01984a985e4bf80f.jpg", + "response": "A dirty blue car with a yellow license plate.", + "id": 33876 }, { - "image_path": "G:\\images\\combined\\005310_jpg.rf.17f8d053e5d61387e064fde061c28c92.jpg", - "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow tractor. The man is holding a large rock in his left hand. There is a bucket on the front of the tractor. The tractor is on top of a pile of dirt.", - "id": 3275 + "image_path": "G:\\images\\combined\\019856d0957218d8.jpg", + "response": "An airplane on the runway at the airport.", + "id": 33877 }, { - "image_path": "G:\\images\\combined\\005310_jpg.rf.e5225e4620dbcb6efdf19d27e7cb58fb.jpg", - "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow piece of machinery. The man is holding a large rock in his left hand. The sky is blue and there are no other people or animals visible in the image.", - "id": 3276 + "image_path": "G:\\images\\combined\\019884c222dfb6c7.jpg", + "response": "A green and yellow train stopped at a train station.", + "id": 33878 }, { - "image_path": "G:\\images\\combined\\005311_jpg.rf.0c49375e7458652c18d5c237e2796923.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", - "id": 3277 + "image_path": "G:\\images\\combined\\0198e4d0c4bf97d8.jpg", + "response": "The image depicts a baseball game in progress with two baseball players on the field. One player is in the process of catching a ball with his baseball glove, while the other player is running towards the ball. Both players are wearing red and white uniforms. The scene is set outdoors, with a chain-link fence visible in the background. The players are in action, showcasing their skills and athleticism as they compete in the game.", + "id": 33879 }, { - "image_path": "G:\\images\\combined\\005311_jpg.rf.a89d0ac0226ea5e861b957fc5657de16.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", - "id": 3278 + "image_path": "G:\\images\\combined\\0199b8afadb0c37e.jpg", + "response": "A red telephone box and a red postbox on a cobbled street", + "id": 33880 }, { - "image_path": "G:\\images\\combined\\005312_jpg.rf.6ebfc77757c6b070d42d01c1a888daed.jpg", - "response": "A construction site with many tall buildings in the background.", - "id": 3279 + "image_path": "G:\\images\\combined\\019a0bb00c87a1f8.jpg", + "response": " two soccer players(114,223),(563,996)(259,82),(893,996)(447,0),(997,997) going after the ball(320,600),(488,813)", + "id": 33881 }, { - "image_path": "G:\\images\\combined\\005312_jpg.rf.fc5547d2f0bab5f1b59429098dd1355a.jpg", - "response": "A construction site with a man walking on a grate.", - "id": 3280 + "image_path": "G:\\images\\combined\\019a2a22e51ee1a9.jpg", + "response": "A white car with a plate that says \"NOCSG\" on it.", + "id": 33882 }, { - "image_path": "G:\\images\\combined\\005313_jpg.rf.744a580cf6a0f68b8a6523c5ee3b2ffe.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt.", - "id": 3281 + "image_path": "G:\\images\\combined\\019a60ca53aa103d.jpg", + "response": "A train pulls into a station.", + "id": 33883 }, { - "image_path": "G:\\images\\combined\\005313_jpg.rf.a2534ae67b7f5de2cb18976033ae3ced.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt looks off into the distance. He has a mustache and is wearing a yellow hard hat. He is also wearing a black cord around his neck. He is in front of a building.", - "id": 3282 + "image_path": "G:\\images\\combined\\019b4355eb6f0678.jpg", + "response": "a store front with a large yellow sign that says Billa.", + "id": 33884 }, { - "image_path": "G:\\images\\combined\\005314_jpg.rf.131cf9b7559a559f57bec50dd1b73160.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a large metal rod, and one of them is using a tool on the end of it. The bridge is a steel arch bridge with a yellow railing. The workers are on the side of the bridge, and there is a steep drop below them. There is also a road next to the bridge, with a car driving on it.", - "id": 3283 + "image_path": "G:\\images\\combined\\019c14e417af0517.jpg", + "response": "A blue van is parked on the street in front of a building. The building has graffiti on the walls. There are two trees in the scene, one on the left and one on the right. A person is visible in the image, but no other people are visible.", + "id": 33885 }, { - "image_path": "G:\\images\\combined\\005314_jpg.rf.bcc21e0849b1331dbddbea574cfe9c1b.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a bar with one of them using a tool.", - "id": 3284 + "image_path": "G:\\images\\combined\\019d3790ad9c10e3.jpg", + "response": "A white van with graffiti on the side is parked on the street.", + "id": 33886 }, { - "image_path": "G:\\images\\combined\\005315_jpg.rf.25180a61e04ab7fb308eca6aad036e15.jpg", - "response": "A construction site with two workers on ladders.", - "id": 3285 + "image_path": "G:\\images\\combined\\019f339928cefa9b.jpg", + "response": "A television monitor showing a security video of a man walking in front of a building.", + "id": 33887 }, { - "image_path": "G:\\images\\combined\\005315_jpg.rf.80373adda96a6fa50075740416f6376f.jpg", - "response": "A construction site with two workers on ladders.", - "id": 3286 + "image_path": "G:\\images\\combined\\019f5d10fcc94583.jpg", + "response": "In the image there is a student holding a notebook with a list of classes written on it. The notebook is a lined notebook and is held by a student. The classes listed are English, Math, Global Studies, Music, and P.E.", + "id": 33888 }, { - "image_path": "G:\\images\\combined\\005316_jpg.rf.191ac10bbedd415f18b70c5971667b87.jpg", - "response": "A group of men standing around a construction site.", - "id": 3287 + "image_path": "G:\\images\\combined\\01a28309568b4274.jpg", + "response": "In the image, a man is holding up the Stanley Cup while standing on top of a double decker bus. The man is wearing a white and black hat and a white jersey with the number 88 on the back. He is also wearing a pair of white and black shorts. Another man, wearing a white shirt and a black and white cap, is standing next to him and holding a camera. A third man, wearing a red jersey with the number 19 on the back, is standing between them. They are all standing on the second level of the bus, which has a red roof. In the background, there is a large building with many windows.", + "id": 33889 }, { - "image_path": "G:\\images\\combined\\005316_jpg.rf.7818fadb96e3d2f77daee5282e6b6c10.jpg", - "response": "A group of men standing around a construction site.", - "id": 3288 + "image_path": "G:\\images\\combined\\01a4bef08f0b3480.jpg", + "response": "A small yellow and white airplane flying in the sky.", + "id": 33890 }, { - "image_path": "G:\\images\\combined\\005317_jpg.rf.4723d1fcdc32c6fd0ffef86141789ece.jpg", - "response": "The image shows a group of workers in blue uniforms and yellow hard hats gathered around a manhole. The workers are wearing blue uniforms and yellow hard hats. There are several bottles and a bowl on the ground around the manhole.", - "id": 3289 + "image_path": "G:\\images\\combined\\01a4c2bc103db318.jpg", + "response": "The image features an iMac computer with a white keyboard. The iMac has the word iMac written on the top and the keyboard is seen in front of it. The background of the image is black.", + "id": 33891 }, { - "image_path": "G:\\images\\combined\\005317_jpg.rf.adc7d5b53fb1ef66f2e4a8a4f7f59359.jpg", - "response": "The image shows a group of workers in blue uniforms and hard hats working together to remove a manhole cover. The workers are huddled around the open manhole, with some standing on the cover and others leaning over the edge. There are several bottles and a cup on the ground near the workers, possibly containing tools or drinks. The scene is set outdoors, with trees and a bench visible in the background.", - "id": 3290 + "image_path": "G:\\images\\combined\\01a4c909a112e09e.jpg", + "response": "A train station with two trains on the tracks.", + "id": 33892 }, { - "image_path": "G:\\images\\combined\\005318_jpg.rf.2a4bc11dd908fc7b02b2d0bba51d8b1d.jpg", - "response": "a group of men walking in front of a building under construction", - "id": 3291 + "image_path": "G:\\images\\combined\\01a56abd2f39e143.jpg", + "response": "A blue airplane with a star on the side is sitting on a runway.", + "id": 33893 }, { - "image_path": "G:\\images\\combined\\005319_jpg.rf.5f4f7a39dcceb947c1425e6accf211ba.jpg", - "response": "A worker is working on a construction site with a tunnel in the background.", - "id": 3292 + "image_path": "G:\\images\\combined\\01a60820469b72ac.jpg", + "response": "A colorful tour bus is parked on the side of the road.", + "id": 33894 }, { - "image_path": "G:\\images\\combined\\005319_jpg.rf.a6c69ea3e955dae3048d9d1f7ec55356.jpg", - "response": "A worker is seen here working on the construction of the Jia Bahe Line. The tunnel is situated in the mountains and is being worked on.", - "id": 3293 + "image_path": "G:\\images\\combined\\01a676213a220771.jpg", + "response": "A monitor that is turned on and displaying a map.", + "id": 33895 }, { - "image_path": "G:\\images\\combined\\005320_jpg.rf.cf81d5abb817495e03ae00aa2382916a.jpg", - "response": "A man wearing a yellow hard hat and an orange vest is using a tool to lay bricks.", - "id": 3294 + "image_path": "G:\\images\\combined\\01a72ceee9e2910c.jpg", + "response": "Two bottles of wedding ale from Ol'fabriken la Essingen.", + "id": 33896 }, { - "image_path": "G:\\images\\combined\\005321_jpg.rf.045d7cf963d2abc04a2d85234e3fda28.jpg", - "response": "A couple of men in blue overalls and yellow hard hats are working on a large piece of equipment.", - "id": 3295 + "image_path": "G:\\images\\combined\\01a7522afbb64535.jpg", + "response": "A man in a grey and black shirt with the word Competidor on it.", + "id": 33897 }, { - "image_path": "G:\\images\\combined\\005322_jpg.rf.1b99b1dea9224153a015716851c25321.jpg", - "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", - "id": 3296 + "image_path": "G:\\images\\combined\\01a7587256c11268.jpg", + "response": " A police car(13,11),(753,763) is shown with extensive damage to the front end.", + "id": 33898 }, { - "image_path": "G:\\images\\combined\\005322_jpg.rf.bf864eadb04eb98b0ca7eb41427568e8.jpg", - "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", - "id": 3297 + "image_path": "G:\\images\\combined\\01a79e8e9040a40a.jpg", + "response": "A book is laying on a wooden table. The book is open to a page with a man on it. The man is wearing a hat and looking to the left. The book is called \"The Brain\" and has the authors listed as Vaughan, Guerra, and Marzan Jr.", + "id": 33899 }, { - "image_path": "G:\\images\\combined\\005323_jpg.rf.4c2b1aa33a79c60307ca5bee4769f598.jpg", - "response": "A group of three workers are working on a construction site. They are all wearing hard hats and are working on a yellow piece of machinery. The man on the left is sitting down and operating a red and yellow machine. The man in the middle is working on the yellow machine and the man on the right is standing behind the red drum. There is a ladder in the bottom right corner of the image.", - "id": 3298 + "image_path": "G:\\images\\combined\\01a85a2ef6290c8e.jpg", + "response": "A small corked bottle with the word \"essential\" on it and the word \"lemon\" on it.", + "id": 33900 }, { - "image_path": "G:\\images\\combined\\005323_jpg.rf.f515d3a3e2dae60567494781accf7924.jpg", - "response": "A group of three men working on a construction site.", - "id": 3299 + "image_path": "G:\\images\\combined\\01a90981e276e9ca.jpg", + "response": "A blue train is on the tracks near a mountain.", + "id": 33901 }, { - "image_path": "G:\\images\\combined\\00532432aafd3fb7.jpg", - "response": "A large black building with a sign that says Coach and Horses.", - "id": 3300 + "image_path": "G:\\images\\combined\\01a934c35c1c2f2d.jpg", + "response": "A record album cover for a piano piece by Franz Schubert.", + "id": 33902 }, { - "image_path": "G:\\images\\combined\\005324_jpg.rf.7445a1847a4e8edec964e3ecfe3959b6.jpg", - "response": "An electrician is working on power lines high up in the air.", - "id": 3301 + "image_path": "G:\\images\\combined\\01a9b58c61fe1d22.jpg", + "response": "A blue and white bus is parked outside of a building.", + "id": 33903 }, { - "image_path": "G:\\images\\combined\\005325_jpg.rf.24725e4737d81b6a257e5106cf48eabf.jpg", - "response": "The image shows a group of men gathered around a model of a city. They are standing behind a glass model of the city, which includes buildings, a river, and a soccer field. The men are looking down at the model, which is displayed on a table. Some of the men are wearing ties.", - "id": 3302 + "image_path": "G:\\images\\combined\\01a9bc58fa9aad5c.jpg", + "response": "A white wall with a black and white graffiti of a man holding a sign that says \"Samsonovich\". Above the graffiti is black spray paint that says \"HAVING FREEDOM IS NOT THE SAME AS BEING FREE\" in all caps.", + "id": 33904 }, { - "image_path": "G:\\images\\combined\\005325_jpg.rf.8ffaf76a6c3691e1686d06af2dc26e8f.jpg", - "response": "A group of men standing around a model of a city.", - "id": 3303 + "image_path": "G:\\images\\combined\\01a9eabbfb7267e6.jpg", + "response": "In the image, two men are engaged in a boxing match. They are wearing protective gear, including helmets and gloves, and are standing in a boxing ring. The man on the left is wearing a red uniform and has his arms raised, while the man on the right is wearing a yellow and black uniform and is throwing a punch. The boxing match is taking place in front of a crowd, with spectators watching the action.", + "id": 33905 }, { - "image_path": "G:\\images\\combined\\005326_jpg.rf.fd44647274d5619ac283f1956f46a3bd.jpg", - "response": "A construction worker is working on some steel bars.", - "id": 3304 + "image_path": "G:\\images\\combined\\01aa5acb40717e10.jpg", + "response": "A large metal clock on a wall with roman numerals on the face.", + "id": 33906 }, { - "image_path": "G:\\images\\combined\\005327_jpg.rf.0f8d06865d518459828cf8b17db1d738.jpg", - "response": "A group of people working on a building construction site.", - "id": 3305 + "image_path": "G:\\images\\combined\\01aa9b9a3520fc0c.jpg", + "response": "A Marietta Police car parked outside of the police station.", + "id": 33907 }, { - "image_path": "G:\\images\\combined\\005327_jpg.rf.4e678ef10ad605affa040323c8f6ef62.jpg", - "response": "The image shows a construction site with several workers present. There are a few buildings in the background, one on the left and another on the right. In the foreground, there is a large structure that appears to be a foundation or a framework for a building. The workers are engaged in various tasks, with one using a tool to make some adjustments to the framework, another holding a hose, and the third working on something on the ground. The fourth worker is further back, almost hidden by the framework. The fifth worker is on the right side of the image, closer to the right edge of the frame.", - "id": 3306 + "image_path": "G:\\images\\combined\\01ab502812393b4f.jpg", + "response": "A movie poster for the film 12 Monkeys, with the tagline \"When the only evidence is the truth\" and the credits \"starring Bruce Willis and Madeleine Stowe\". Next to it is a movie poster for the film The Singing Detective, with the tagline \"Now he's living it\" and the credits \"starring Robert Downey Jr. and Carla Gugino\". Both posters are on a black background.", + "id": 33908 }, { - "image_path": "G:\\images\\combined\\005328_jpg.rf.71ab03611dda8a9e2a3a49996679bbea.jpg", - "response": "A man in a red hard hat is kneeling on the ground next to a long white pipe. He is wearing a grey jacket and brown work boots. There is a yellow tool belt around his waist. He is working on a construction site that has metal framing for walls. The ground is wet and there is a large patch of concrete next to him. There is also a small amount of yellow flowers growing in the concrete.", - "id": 3307 + "image_path": "G:\\images\\combined\\01ab697dd7a783bf.jpg", + "response": "A train on railroad tracks with a banner on the back that says Rockaway here we come.", + "id": 33909 }, { - "image_path": "G:\\images\\combined\\005329_jpg.rf.eacdba8c9558ea8da4830580c71611b7.jpg", - "response": "A man wearing an orange shirt and a red hard hat stands in front of a construction site.", - "id": 3308 + "image_path": "G:\\images\\combined\\01ab6b284642d087.jpg", + "response": "An airplane is parked on the runway at the airport.", + "id": 33910 }, { - "image_path": "G:\\images\\combined\\005330_jpg.rf.7279bf0bc35125d12f79a05af8b6bdff.jpg", - "response": "A man in a white shirt and orange hard hat is talking to a worker in a white shirt and red hard hat who is sitting on a yellow forklift. The man in the red hard hat has a white rag on his head and a bandage on his left leg, which is wrapped tightly. The man standing is holding a blue bottle in his hand. The background shows a pile of bricks and a white car.", - "id": 3309 - }, - { - "image_path": "G:\\images\\combined\\005330_jpg.rf.c614f25a2f56017701b01f16cfc87ca4.jpg", - "response": "A man is sitting on a construction site with a bandaged foot. Another man is holding a water bottle in his hand. They are both wearing yellow and red helmets.", - "id": 3310 + "image_path": "G:\\images\\combined\\01ac4614e02a4967.jpg", + "response": "A bottle of Holy Rail Ale by Monty Python's.", + "id": 33911 }, { - "image_path": "G:\\images\\combined\\005331_jpg.rf.45e006a73cfb5ddaf53acfea587baf5d.jpg", - "response": "a group of men wearing hard hats", - "id": 3311 + "image_path": "G:\\images\\combined\\01ac7000ab06a96f.jpg", + "response": "A blue and yellow train engine inside a warehouse.", + "id": 33912 }, { - "image_path": "G:\\images\\combined\\005331_jpg.rf.75963ede3722576112dc4688142a3f55.jpg", - "response": "a group of men wearing hard hats", - "id": 3312 + "image_path": "G:\\images\\combined\\01ad33d0ee9a7315.jpg", + "response": "a grey car with the license plate 9227 parked on the side of the road", + "id": 33913 }, { - "image_path": "G:\\images\\combined\\005332_jpg.rf.fe2a60c5a1c166aa29d4a3c8a9725995.jpg", - "response": "A group of men working in a mine.", - "id": 3313 + "image_path": "G:\\images\\combined\\01ad46727038a8e2.jpg", + "response": "An old green and white bus is parked on the side of the road.", + "id": 33914 }, { - "image_path": "G:\\images\\combined\\005333_jpg.rf.04725ccb43a3336655a878f13bc28ff1.jpg", - "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with metal rods and other materials. There is a yellow crane in the background.", - "id": 3314 + "image_path": "G:\\images\\combined\\01ad66075fd11264.jpg", + "response": "A blue train engine(283,399),(995,866) with the number 1982 on it.", + "id": 33915 }, { - "image_path": "G:\\images\\combined\\005333_jpg.rf.14ffd35b1c6abf7a78ed9dcee58d12ec.jpg", - "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with red and silver metal bars. There is a yellow crane in the background.", - "id": 3315 + "image_path": "G:\\images\\combined\\01b08db81b263dbc.jpg", + "response": "A student's desk with a notebook and textbook on it.", + "id": 33916 }, { - "image_path": "G:\\images\\combined\\005334_jpg.rf.43614ae79560b15f5e8f77bf6c129f41.jpg", - "response": "The image shows a group of men wearing blue shirts and red helmets working on a construction site. They are building a structure out of concrete blocks and mixing cement in a black bucket. The scene is outdoors and there is a banner in the background.", - "id": 3316 + "image_path": "G:\\images\\combined\\01b0c96c8df44fbf.jpg", + "response": "In the image, there are two men grilling meat on a large grill. One man is wearing a white shirt and a yellow and white hat, while the other man is wearing a white shirt and a blue hat. They are standing around the grill, which is filled with meat. There are several other people in the background, some of whom are also wearing hats. There is a table with a blue bin on it, and a cooler with a red lid is placed next to the table. There are also several bottles and cups placed on the table and the cooler.", + "id": 33917 }, { - "image_path": "G:\\images\\combined\\005334_jpg.rf.e0fd9cc2ae3b3b2fbaaa64becff3298e.jpg", - "response": "The image shows a construction site with several workers. Some of them are wearing blue shirts and red helmets. They are working on a project that involves laying bricks. There are bricks laid out in a grid pattern on the ground, and workers are mixing concrete in buckets and spreading it on the bricks. In the background, there is a large banner advertising a construction company.", - "id": 3317 + "image_path": "G:\\images\\combined\\01b1c5e105acaa97.jpg", + "response": "A bottle of Save Our Shore A Charitable Pilsner sits on a wooden table. The label on the bottle is white and says \"Save Our Shore\" in white lettering. There is a design of a chain of fish above the text. The bottle is dark brown.", + "id": 33918 }, { - "image_path": "G:\\images\\combined\\005335_jpg.rf.2aec75b9c98802c65b8997fb6f0696c2.jpg", - "response": "An aerial view of a worker in a blue uniform and blue hard hat, climbing on a metal tower to work on the power lines. The tower is silver and is located in a forest. There are power lines running to the tower from both sides. There is a building visible at the bottom left of the image and a mountain in the background.", - "id": 3318 + "image_path": "G:\\images\\combined\\01b1c631df04947b.jpg", + "response": "A collage of Clinique products including a can of Clinique Beauty Box, a bottle of Clinique, a Clinique nail polish remover, Clinique eyelash curler, Clinique eye makeup remover, Clinique eye makeup, Clinique lip balm, Clinique face powder, Clinique eye shadow, Clinique eyeliner, Clinique face wash, Clinique face mask, Clinique toner, Clinique face cream, Clinique face scrub, Clinique face mask, Clinique face wipes, Clinique eye cream, Clinique eye makeup, Clinique eye primer, Clinique eye shadow primer, Clinique liquid eye liner, Clinique liquid eyeliner, Clinique liquid eyeshadow, Clinique liquid eyeshadow primer, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid ey", + "id": 33919 }, { - "image_path": "G:\\images\\combined\\005336_jpg.rf.35d6bfe163ddb1cacbf8b0194a87371f.jpg", - "response": "A man holding a blueprint standing next to another man in front of a building under construction.", - "id": 3319 + "image_path": "G:\\images\\combined\\01b238510d6b482b.jpg", + "response": "The image shows a row of yellow school buses parked close together in a lot. There are at least five buses visible, with some closer together and some further apart. The buses are all facing the same direction.", + "id": 33920 }, { - "image_path": "G:\\images\\combined\\005336_jpg.rf.3cb3a1a96589e515978816e01ccd2775.jpg", - "response": "A construction worker standing in front of a building under construction holding a blueprint.", - "id": 3320 + "image_path": "G:\\images\\combined\\01b2d1a4bdc18964.jpg", + "response": "A black smart watch with a white face. The watch is on a pink surface. The watch has a red and orange color scheme on the top of the face. The time on the watch is 1:50. There is a small red heart in the top middle of the face. Below the heart is the number 5. Under the number 5 are the words \"days left\". There is a black band on the watch.", + "id": 33921 }, { - "image_path": "G:\\images\\combined\\005337_jpg.rf.a27c7631ce3982a243a656823e5da07c.jpg", - "response": "The image shows a large construction site with several workers. In the foreground, three workers are wearing orange jumpsuits and yellow helmets, with one on the left, another in the center, and the third further to the right. They are standing in front of a large piece of equipment, a bright blue backhoe with a red bow on it. The workers appear to be engaged in digging or moving dirt.", - "id": 3321 + "image_path": "G:\\images\\combined\\01b2f97f413eba7d.jpg", + "response": "A yellow school bus with the number 212 on it.", + "id": 33922 }, { - "image_path": "G:\\images\\combined\\005337_jpg.rf.cecc40647b3daff6ba0a2376eda380a4.jpg", - "response": "The image shows a large construction site with a big digger in the middle. The digger is turquoise and grey and is parked on a dirt patch. There are three workers visible, one on the left, one in the middle, and one on the right. They are all dressed in orange suits and yellow helmets. The leftmost worker is also carrying a long wooden board. The workers are surrounded by a lot of dirt and rocks.", - "id": 3322 + "image_path": "G:\\images\\combined\\01b303d3e8e83005.jpg", + "response": "A man standing next to a silver and red plane.", + "id": 33923 }, { - "image_path": "G:\\images\\combined\\005338_jpg.rf.42f7c24d475a3010d97afd21d3042f0b.jpg", - "response": "The image shows two men wearing red hard hats, one standing to the left of the other. They are in front of a building with a sign that says \"\u4e2d\u56fd\u5341\u4e03\u51b6\u96c6\u56e2\". The man on the left is putting a hard hat on the other man's head.", - "id": 3323 + "image_path": "G:\\images\\combined\\01b3265b22d23b50.jpg", + "response": "a close up of a smart watch on someones wrist", + "id": 33924 }, { - "image_path": "G:\\images\\combined\\005338_jpg.rf.99869826a89cfd40fb7bb6f99c1e5964.jpg", - "response": "The image shows two men wearing red hard hats, one orange and one white, standing in front of a building. The men are both wearing black clothing. One of the men is putting a red hard hat on the other man's head.", - "id": 3324 + "image_path": "G:\\images\\combined\\01b346956fa4fcbc.jpg", + "response": "A taxi cab with a sign on top advertising a gun store.", + "id": 33925 }, { - "image_path": "G:\\images\\combined\\005339_jpg.rf.88451ee34e29ad88332635f99e6f97cf.jpg", - "response": "A worker in a blue shirt and yellow hard hat stands in a room with debris on the floor. The room has white walls and debris is scattered across the floor. There is a pile of debris in the center of the room and a large hole in the wall on the right. A man is visible in the background on the left side of the room.", - "id": 3325 + "image_path": "G:\\images\\combined\\01b4892d548d4b68.jpg", + "response": "In the image, a baseball pitcher is in the middle of a pitch on the field. He is wearing a white baseball uniform and a black hat. The pitcher is holding a baseball in his right hand and is in the process of throwing it. He is standing on the pitcher's mound, which is a raised area in the center of the field. The pitcher is wearing cleats, a belt, and a baseball glove on his left hand. The baseball glove is black and is specifically designed for catching and fielding the ball. The pitcher is looking forward, focusing on his target.", + "id": 33926 }, { - "image_path": "G:\\images\\combined\\005340_jpg.rf.738fc3f780e8292821fc631146d693da.jpg", - "response": "A man walking in front of a construction site with a green building under construction. There are several cars parked in front of the building and a few people standing around. There are also several flags in the scene.", - "id": 3326 + "image_path": "G:\\images\\combined\\01b501233b20bf8e.jpg", + "response": "The image shows a close up of an airplane with a propeller. The propeller is attached to the underside of the plane and is visible from the ground. The plane is silver in color.", + "id": 33927 }, { - "image_path": "G:\\images\\combined\\005340_jpg.rf.acaa72a8d37c98303ca4af7720fe8695.jpg", - "response": "A man walking in front of a construction site with a few cranes working on a building in the background.", - "id": 3327 + "image_path": "G:\\images\\combined\\01b54ac75f9e41e9.jpg", + "response": "A bookshelf with a variety of books and magazines.", + "id": 33928 }, { - "image_path": "G:\\images\\combined\\005341_jpg.rf.68fd142bfc21b547f86415d3603f8739.jpg", - "response": "Two men in red\u5b89\u5168\u5e3d, looking at a paper.", - "id": 3328 + "image_path": "G:\\images\\combined\\01b54fd9748c7d49.jpg", + "response": "In the image there is a rug on the floor and on the rug there is a pen, a pencil and a notebook.", + "id": 33929 }, { - "image_path": "G:\\images\\combined\\005341_jpg.rf.e18e7a9ad9e32952d1d7022d417675f2.jpg", - "response": "The image shows two men wearing red\u5b89\u5168\u5e3d, looking at a sheet of paper. They are both dressed in brown, seemingly industrial work clothes. One man is on the left side of the image, and is slightly larger and closer to the left edge of the frame. He is wearing a red safety helmet and holding the paper. The other man is on the right side of the image, closer to the center. He is also wearing a red safety helmet, and is looking at the paper with the first man. He is slightly shorter and appears to be slightly older.", - "id": 3329 + "image_path": "G:\\images\\combined\\01b62ec04170ee4a.jpg", + "response": "A black and white photo of a stadium with a large American flag flying above a Boston 2013 banner.", + "id": 33930 }, { - "image_path": "G:\\images\\combined\\005342_jpg.rf.4c587c8c7eef2c666721cbe614023bfd.jpg", - "response": "A group of men working on a construction site.", - "id": 3330 + "image_path": "G:\\images\\combined\\01b631ec361104d6.jpg", + "response": "A shelf with a few wine bottles on it.", + "id": 33931 }, { - "image_path": "G:\\images\\combined\\005342_jpg.rf.fb85f925cf2e9522009747461ce9ebe1.jpg", - "response": "A group of men working on a construction site.", - "id": 3331 + "image_path": "G:\\images\\combined\\01b67da725f6ab69.jpg", + "response": "A table with a blue table cloth on it.", + "id": 33932 }, { - "image_path": "G:\\images\\combined\\005343_jpg.rf.8d8ee011c1172e9173621ad74b600dcf.jpg", - "response": "A group of five construction workers wearing hard hats are working on a construction site. They are working on a large area of metal rebar that is laid out in a grid pattern. In the background there are several buildings under construction.", - "id": 3332 + "image_path": "G:\\images\\combined\\01b72a92cdd941fc.jpg", + "response": "A poster for an art exhibition called \"Rejects 2010\" which will be held from June 22-26. The poster features the word \"Rejects\" in large letters with a motorcycle and a bird as design elements. There is also a tagline that reads \"Summer Exhibition\".", + "id": 33933 }, { - "image_path": "G:\\images\\combined\\005343_jpg.rf.df787511981e2d0bbdb20756c4b5805b.jpg", - "response": "A group of five construction workers wearing red hats are working on a building.", - "id": 3333 + "image_path": "G:\\images\\combined\\01b7c44cfd7ea792.jpg", + "response": "an open book with a white cover and black text", + "id": 33934 }, { - "image_path": "G:\\images\\combined\\005344_jpg.rf.0202f9bf0d4f40ea7b157eaab68cbbe1.jpg", - "response": "A couple of men standing in a doorway of a blue structure.", - "id": 3334 + "image_path": "G:\\images\\combined\\01b805b9f96679a3.jpg", + "response": "A black BMW wagon with white rims is parked in front of a grey building. There are several people standing around the cars and a table with a red and white checkered tablecloth. A man in a black shirt is standing next to a red car. Another man is wearing a white hat and black shirt. There is a woman with blonde hair and a black shirt. A person is wearing a black shirt and blue shorts.", + "id": 33935 }, { - "image_path": "G:\\images\\combined\\005344_jpg.rf.1aa92da4f326a16e15455b84a44c1533.jpg", - "response": "A large blue metal box with the number 1028 on the side of it.", - "id": 3335 + "image_path": "G:\\images\\combined\\01b81acc7cb28ea6.jpg", + "response": "A man wearing a white shirt and a black hat with the number 77 on it.", + "id": 33936 }, { - "image_path": "G:\\images\\combined\\005345_jpg.rf.8661b1a175917170321480f4a8ffaee2.jpg", - "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is working on a construction site, the wall is made of bricks and the person is working on a piece of wood.", - "id": 3336 + "image_path": "G:\\images\\combined\\01b8768696de4328.jpg", + "response": "a man wearing a red baseball hat and jacket", + "id": 33937 }, { - "image_path": "G:\\images\\combined\\005345_jpg.rf.e7044f6e7fe3ccdf2716659059a38217.jpg", - "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is building a brick wall and is currently working on the second floor of a building that is not yet complete. The person is also wearing a yellow helmet and blue jeans.", - "id": 3337 + "image_path": "G:\\images\\combined\\01b87cd9e16dc614.jpg", + "response": "A person is holding a camera in their hands. The camera is a silver point and shoot camera. There is a picture of a woman sitting on a brick wall on the camera screen. The woman is wearing a dress.", + "id": 33938 }, { - "image_path": "G:\\images\\combined\\005346_jpg.rf.6bbe44db9553dd9962f9dd3c4548cb58.jpg", - "response": "A group of people standing around in a circle. Some of them are wearing hard hats. In the background there is a street with cars. To the far left there is a yellow sign with Chinese characters on it. There is also a blue sign with Chinese characters on it in the background.", - "id": 3338 + "image_path": "G:\\images\\combined\\01b8c015e743a69a.jpg", + "response": "A pair of butterfly kisses earrings made by Melissa Ingram.", + "id": 33939 }, { - "image_path": "G:\\images\\combined\\005347_jpg.rf.22f0b22db051ee350c3b581d20bf66d3.jpg", - "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a cage. The worker on the left is using a tool to cut rebar, while the worker on the right is operating a jackhammer. The concrete surface is wet and there are several pipes visible in the background.", - "id": 3339 + "image_path": "G:\\images\\combined\\01babd5ec480f377.jpg", + "response": "A black and white photo of a group of men standing in front of a plane.", + "id": 33940 }, { - "image_path": "G:\\images\\combined\\005347_jpg.rf.4bf6321e3df3b648839a6f38129b65b1.jpg", - "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a wall, with rebar sticking out of it. The worker on the left is using a tool to cut through the concrete, while the worker on the right is operating some machinery. The wall is painted brown and is located inside a large room. There are several pipes on the wall to the left of the workers and a large pipe on the right. The floor of the room is covered in concrete dust.", - "id": 3340 + "image_path": "G:\\images\\combined\\01bb0a994cd89efe.jpg", + "response": "A store with a man standing in front of it and a woman standing inside. The store is called digital and sells electronics.", + "id": 33941 }, { - "image_path": "G:\\images\\combined\\005348_jpg.rf.68a154812d426cf0a30282fa8104efec.jpg", - "response": "A train track being worked on by some people.", - "id": 3341 + "image_path": "G:\\images\\combined\\01bbc2405d03f004.jpg", + "response": "A table with a bag of cookies on it.", + "id": 33942 }, { - "image_path": "G:\\images\\combined\\005348_jpg.rf.b2ed12539b4d5d17b42bf824036ae9b0.jpg", - "response": "A group of workers in yellow vests and hard hats are standing on a railway track. They are working on a machine with a box on it.", - "id": 3342 + "image_path": "G:\\images\\combined\\01bd42a657556876.jpg", + "response": "A man holding a sign that says \"Have you seen this wizard?\" on it.", + "id": 33943 }, { - "image_path": "G:\\images\\combined\\005349_jpg.rf.01a9509534794d88f3d9dc9ff2e14d78.jpg", - "response": "A construction worker in a yellow helmet is standing on a scaffold.", - "id": 3343 + "image_path": "G:\\images\\combined\\01be054d92db60bf.jpg", + "response": "Maxiflou markers are on display in a store.", + "id": 33944 }, { - "image_path": "G:\\images\\combined\\00534_jpg.rf.0aff2c1f6b059df0940f239cb0a130e8.jpg", - "response": "A group of men standing around each other.", - "id": 3344 + "image_path": "G:\\images\\combined\\01be0f791132b4b1.jpg", + "response": "A baseball stadium with many people in the stands watching the game.", + "id": 33945 }, { - "image_path": "G:\\images\\combined\\005350_jpg.rf.b9f92ad5c2cb941710d48bf56bc65f7c.jpg", - "response": "A man wearing a white and red jacket and a hard hat.", - "id": 3345 + "image_path": "G:\\images\\combined\\01be12f5b9b2b603.jpg", + "response": "A purple camera with a blue lens cover on top of a box.", + "id": 33946 }, { - "image_path": "G:\\images\\combined\\005350_jpg.rf.f86527858349a447a83607f3ff90f8da.jpg", - "response": "A man wearing a white and red jacket and a hard hat.", - "id": 3346 + "image_path": "G:\\images\\combined\\01bea6f686154287.jpg", + "response": "A plaque with the words The National Weather Center Building on it.", + "id": 33947 }, { - "image_path": "G:\\images\\combined\\005351_jpg.rf.ea6c031da03945b7f740b292937f5cf6.jpg", - "response": "A blue crane is lifting a yellow and white object.", - "id": 3347 + "image_path": "G:\\images\\combined\\01bec27c61ec0b5d.jpg", + "response": "A wrist watch with a red band and a red and silver face.", + "id": 33948 }, { - "image_path": "G:\\images\\combined\\005351_jpg.rf.ff9383020b3250764d9daa616094019e.jpg", - "response": "A construction worker in a yellow safety vest and hard hat is standing under a large blue bridge. He is looking up at the bridge, which is suspended over a body of water. The bridge has a yellow crane on it, and there is a small boat nearby. The worker is holding a tool in his hand. The background is very dark, with only a few lights visible in the distance.", - "id": 3348 + "image_path": "G:\\images\\combined\\01c0493a77b12ec1.jpg", + "response": "A collection of liquor bottles sit on a wooden table.", + "id": 33949 }, { - "image_path": "G:\\images\\combined\\005352_jpg.rf.735ced7bac5a2226be9cca07b792bd8a.jpg", - "response": "A group of three men in yellow hard hats and work clothes are standing in a factory. They are standing behind a large machine that has many pipes and knobs.", - "id": 3349 + "image_path": "G:\\images\\combined\\01c17e2aff64922d.jpg", + "response": "a man walking down the street next to a wall with posters on it", + "id": 33950 }, { - "image_path": "G:\\images\\combined\\005352_jpg.rf.74f2cc7a7f7c5ce5b958407e63a345e0.jpg", - "response": "A group of three men in yellow hard hats are working on a large machine. The machine is silver and has many pipes and knobs.", - "id": 3350 + "image_path": "G:\\images\\combined\\01c1bb45c14817b4.jpg", + "response": "a keyboard that is on a table", + "id": 33951 }, { - "image_path": "G:\\images\\combined\\005353_jpg.rf.501f143e61e19d17fedf6c7f89e6e21e.jpg", - "response": "In the image there is a construction site with multiple cranes working on building a new city. There is a man working on the construction site wearing a red helmet and gloves. He is working on a roof and is in the foreground of the image. In the background there are buildings under construction and a blue sky with some clouds.", - "id": 3351 + "image_path": "G:\\images\\combined\\01c1c607e257e9e0.jpg", + "response": "A baseball player in a black jersey with the number 25 is holding a bat on a baseball field.", + "id": 33952 }, { - "image_path": "G:\\images\\combined\\005353_jpg.rf.6ea1fba180c63a8cb8ffc9deca577e5a.jpg", - "response": "In the image there is a construction site with multiple cranes working on building a new city skyline. In the foreground, a worker is working on a roof with a red helmet, safety gloves, and a tool in his hand. The sky is blue with some clouds.", - "id": 3352 + "image_path": "G:\\images\\combined\\01c219e8870b7b1b.jpg", + "response": "A brown and green embroidered badge for the West Palm Beach Police.", + "id": 33953 }, { - "image_path": "G:\\images\\combined\\005354_jpg.rf.2087fb0ebb905e8c0b1ea8b1cee0bbf3.jpg", - "response": "A man on a lift working on power lines.", - "id": 3353 + "image_path": "G:\\images\\combined\\01c28a28cad2b006.jpg", + "response": "A pitcher on the mound winds up to throw the ball.", + "id": 33954 }, { - "image_path": "G:\\images\\combined\\005354_jpg.rf.357432b5ef6fc3ccc528071a1041f4ae.jpg", - "response": "A man on a lift working on power lines.", - "id": 3354 + "image_path": "G:\\images\\combined\\01c2ca375c6898b1.jpg", + "response": "A pair of wire strippers with a yellow plastic handle.", + "id": 33955 }, { - "image_path": "G:\\images\\combined\\005355_jpg.rf.708eecd7e9c81c5651ea79bc14dd6054.jpg", - "response": "A group of people working on a construction site.", - "id": 3355 + "image_path": "G:\\images\\combined\\01c3702f209b5eaa.jpg", + "response": "A green double decker bus is driving down the street.", + "id": 33956 }, { - "image_path": "G:\\images\\combined\\005355_jpg.rf.fe520fc5b7196012525517b298922a43.jpg", - "response": "A group of people working on a construction site.", - "id": 3356 + "image_path": "G:\\images\\combined\\01c38fc3c4d8b081.jpg", + "response": "A bottle of white wine sits on a table.", + "id": 33957 }, { - "image_path": "G:\\images\\combined\\005356_jpg.rf.4c4cb8b52ecf2f8b9faf7470c0492841.jpg", - "response": "A man in a red hard hat is holding a black trash bag with something in it. He is smiling and looking at the camera. To the left of him is another man also wearing a red hard hat and a black jacket. They are both in front of a mountain.", - "id": 3357 + "image_path": "G:\\images\\combined\\01c446086e5755bc.jpg", + "response": "A white board with writing on it in a classroom.", + "id": 33958 }, { - "image_path": "G:\\images\\combined\\005357_jpg.rf.2d9aefe77b22d3541f9c687db9042744.jpg", - "response": "An electrician is pointing to something on a circuit board while another electrician looks at it. They are both wearing blue and white hard hats.", - "id": 3358 + "image_path": "G:\\images\\combined\\01c462d9e9aaace1.jpg", + "response": "a train on a track with smoke coming out of it", + "id": 33959 }, { - "image_path": "G:\\images\\combined\\005358_jpg.rf.224bbd320d726768b5c083945cbc5694.jpg", - "response": "a group of people walking across a bridge", - "id": 3359 + "image_path": "G:\\images\\combined\\01c4f4a2bb5bae43.jpg", + "response": "The image is a poster for the zarzuelas famosas. The title is in red and yellow letters and is Zarzuelas Famosas. Below the title is a group of people on a stage. There is a crowd in the stands watching the performance. There are 14 people on the stage, some are standing on boxes and others are standing on the floor. Some are holding handbags and one is holding a small child. The stage is set like a theater with a balcony and a curtain. The background is red and yellow.", + "id": 33960 }, { - "image_path": "G:\\images\\combined\\005358_jpg.rf.836636834423c5de0e0e273f1e1ba062.jpg", - "response": "a group of people walking through a construction site", - "id": 3360 + "image_path": "G:\\images\\combined\\01c5eef439b278cc.jpg", + "response": "a baseball player holding a bat", + "id": 33961 }, { - "image_path": "G:\\images\\combined\\005359_jpg.rf.83282f05c397ce00532edaec2e275adf.jpg", - "response": "A man in a red shirt and white helmet is pointing at a device. Another man in a red shirt and white helmet is standing next to him. They are both in a factory.", - "id": 3361 + "image_path": "G:\\images\\combined\\01c7a957c612291f.jpg", + "response": "A pair of black ceramic bottles sit on a wooden table.", + "id": 33962 }, { - "image_path": "G:\\images\\combined\\005360_jpg.rf.5e79e9a1df76dcc3017738d56575f331.jpg", - "response": "The group of people are standing in a room with high, arched ceilings. They are all wearing ties and some of them are wearing hard hats.", - "id": 3362 + "image_path": "G:\\images\\combined\\01c81fbb0133ecd2.jpg", + "response": "A bicycle sign on a metal pole.", + "id": 33963 }, { - "image_path": "G:\\images\\combined\\005360_jpg.rf.95dd2562a77c6cc989147e3bb399bbae.jpg", - "response": "A group of men standing in a room with hard hats on.", - "id": 3363 + "image_path": "G:\\images\\combined\\01c82eac29b01b43.jpg", + "response": "The image shows a group of cyclists standing around in a room. They are all wearing black and purple cycling outfits and are gathered around a bike. The room has a red carpet and several bicycles are visible in different spots around the room.", + "id": 33964 }, { - "image_path": "G:\\images\\combined\\005361_jpg.rf.7976fb0d2c0d8681cfa1bf62612b93e5.jpg", - "response": "Two men in red helmets are talking in a construction site.", - "id": 3364 + "image_path": "G:\\images\\combined\\01c899c8832ad677.jpg", + "response": "The image shows a baseball player in the midst of a pitch on a field. The pitcher is in the process of winding up and has his front leg in the air, preparing to throw the ball. The player is wearing a baseball uniform and a baseball glove is visible on his hand. There are other players on the field, some of them wearing baseball caps, and a baseball bat is visible in the background. The field is surrounded by billboards and advertisements, including one for Haldeman Auto.", + "id": 33965 }, { - "image_path": "G:\\images\\combined\\005361_jpg.rf.e817502af4c97c033cc094297f880666.jpg", - "response": "Two men in striped shirts and hard hats are talking in a construction site.", - "id": 3365 + "image_path": "G:\\images\\combined\\01c9483cf04cf8dc.jpg", + "response": "A yellow sign warning of loose cattle next 6 miles.", + "id": 33966 }, { - "image_path": "G:\\images\\combined\\005362_jpg.rf.1866ee3407aa04c78f3625b09459d9e2.jpg", - "response": "A group of students wearing orange vests and white helmets are talking to a worker in an orange vest and yellow helmet who is drinking water. The students are standing next to a large pipe.", - "id": 3366 + "image_path": "G:\\images\\combined\\01c94e8c6228274c.jpg", + "response": "An old envelope with a stamp on it that says Mich.", + "id": 33967 }, { - "image_path": "G:\\images\\combined\\005362_jpg.rf.84b66168cb95ce9c559a8a6d7931af67.jpg", - "response": "A group of students wearing orange vests and white hats are standing in front of a large pipe. Some students are sitting on the ground next to the pipe. A man in a yellow hat and orange vest is standing to the right of the students, holding a cup. Another man in a yellow hat and orange vest is sitting on the ground to the right of the students. In the background, there is a large piece of construction equipment.", - "id": 3367 + "image_path": "G:\\images\\combined\\01cb886afcc61ed2.jpg", + "response": "A store filled with lots of items and blue and red boxes.", + "id": 33968 }, { - "image_path": "G:\\images\\combined\\005363_jpg.rf.0df21d3f78bd7492336e56558056cb90.jpg", - "response": "A group of men standing in front of a mining site", - "id": 3368 + "image_path": "G:\\images\\combined\\01cc0f8a81d39848.jpg", + "response": "A white truck with a blue sign on the side of it.", + "id": 33969 }, { - "image_path": "G:\\images\\combined\\005363_jpg.rf.dfa4667cd769ff2bfb4e4958124d23a8.jpg", - "response": " Miners(581,377),(699,827)(674,374),(777,848)(757,388),(915,893) standing in a quarry", - "id": 3369 + "image_path": "G:\\images\\combined\\01cc76f66e7e973b.jpg", + "response": "A group of people wearing New York Jets gear are standing outside a stadium. They are holding cups and engaging in conversation.", + "id": 33970 }, { - "image_path": "G:\\images\\combined\\005364_jpg.rf.411c4ed689340ab8afdc6bc4b5f5dcf3.jpg", - "response": "A construction site with multiple workers.", - "id": 3370 + "image_path": "G:\\images\\combined\\01ce0da26a447240.jpg", + "response": "a large blue sign that says welcome to yanbu industrial city", + "id": 33971 }, { - "image_path": "G:\\images\\combined\\005364_jpg.rf.96c00ef68fc69650c53a78659b3087e7.jpg", - "response": "A construction site with multiple workers visible.", - "id": 3371 + "image_path": "G:\\images\\combined\\01cee5d0b67f97e2.jpg", + "response": "a baseball player wearing a red jersey and white pants", + "id": 33972 }, { - "image_path": "G:\\images\\combined\\005365_jpg.rf.a0b82283d36605fd4a561bc9df0289da.jpg", - "response": "A group of men in red hats looking at a clipboard.", - "id": 3372 + "image_path": "G:\\images\\combined\\01cfa2e72003f4c6.jpg", + "response": "A silver train engine with red lights is pulling into a station.", + "id": 33973 }, { - "image_path": "G:\\images\\combined\\005365_jpg.rf.f3d197738847bc75667b4785ab65bf61.jpg", - "response": "A group of men standing around a construction site.", - "id": 3373 + "image_path": "G:\\images\\combined\\01d0228d6ea4985b.jpg", + "response": "An old space rocket is on display in a warehouse. The rocket is on a cart and is sitting on a green floor. There are two women standing in front of the rocket, looking up at it. The rocket has the word \"juice\" written on it. There are two men standing in the warehouse, one on the left and one on the right. The right most man is wearing a plaid shirt. There is a clock on the wall to the right of the rocket.", + "id": 33974 }, { - "image_path": "G:\\images\\combined\\005366_jpg.rf.76b0ea482fa125e465803633939d2ede.jpg", - "response": "An electrician is checking the power box.", - "id": 3374 + "image_path": "G:\\images\\combined\\01d05a7d19f5a921.jpg", + "response": "A person is holding a glass of beer on a table.", + "id": 33975 }, { - "image_path": "G:\\images\\combined\\005366_jpg.rf.8d545f8e4b44dfdda533e962a8235a11.jpg", - "response": "An electrician in blue hard hat and grey work shirt looking at an electrical panel.", - "id": 3375 + "image_path": "G:\\images\\combined\\01d095f50659d413.jpg", + "response": "a man sitting in front of two monitors and a keyboard", + "id": 33976 }, { - "image_path": "G:\\images\\combined\\005367_jpg.rf.78ee14110537f333417260ab05a4602c.jpg", - "response": "A meeting room with several people in it. Two men are sitting at a table and talking. One of the men is wearing a watch. There are a few cups on the table and a pen is on the table. In the background there are other people and a camera.", - "id": 3376 + "image_path": "G:\\images\\combined\\01d0bbca872e5b2d.jpg", + "response": "A bottle of Jagermeister and a glass of Jagermeister on a table.", + "id": 33977 }, { - "image_path": "G:\\images\\combined\\005368_jpg.rf.f42f385623be860404ec2c9f0b542509.jpg", - "response": "A group of men in orange jumpsuits and hard hats are carrying a log over their shoulders. They are walking through tall grass and over a dirt road. In the background, there are power lines and a hill.", - "id": 3377 + "image_path": "G:\\images\\combined\\01d2bac82408237e.jpg", + "response": "The image shows a group of young women playing soccer on a grass field. There are at least ten people in the picture, most of them wearing red, white, and black soccer uniforms. One woman is kicking a soccer ball while her opponents try to block her. There are also several bags placed on the grass field.", + "id": 33978 }, { - "image_path": "G:\\images\\combined\\005369_jpg.rf.5633199705194cc8b3e378499bd7ae76.jpg", - "response": "In the image there is a group of people wearing hard hats standing in front of a construction site. A man is holding a camera and taking a picture of the construction site. In the construction site there is a large piece of machinery.", - "id": 3378 + "image_path": "G:\\images\\combined\\01d2f83bfbb1b14f.jpg", + "response": "A black and white cat laying in a green and white cardboard box.", + "id": 33979 }, { - "image_path": "G:\\images\\combined\\005369_jpg.rf.8b358eeeaab74c10317492e855f17a8b.jpg", - "response": "In the image there is a group of people standing around a construction site. Some of the people are wearing blue jackets and red hats. In front of the people, there is a pile of red hoses on the ground. To the right of the people, there is a large construction vehicle. Behind the construction vehicle, there is a large wooden pole. Under the wooden pole, there is a pile of yellow bricks. In front of the pile of bricks, there is a large cloud of grey smoke. The sky above the construction site is full of clouds.", - "id": 3379 + "image_path": "G:\\images\\combined\\01d40ca30456c005.jpg", + "response": "A man sitting at a table with a pirate party UK sign behind him.", + "id": 33980 }, { - "image_path": "G:\\images\\combined\\00536_jpg.rf.1389bad3d1baa9a43404b2084eb02144.jpg", - "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", - "id": 3380 + "image_path": "G:\\images\\combined\\01d419a01258ddbe.jpg", + "response": "A bottle of Twisted Pine Hoppy Boy next to a filled glass of beer.", + "id": 33981 }, { - "image_path": "G:\\images\\combined\\00536_jpg.rf.6bbce0903dc7fd685c5276a956c633e9.jpg", - "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", - "id": 3381 + "image_path": "G:\\images\\combined\\01d5dfec05d9e47f.jpg", + "response": "The image shows two ambulances parked side by side in a parking lot. The ambulances are white and blue, and have the word \"Cataldo\" painted on the side. One ambulance is parked on the left side of the other one. There is a bench in the parking lot, located between the two ambulances. The ambulances are parked in front of a brick building with a glass awning.", + "id": 33982 }, { - "image_path": "G:\\images\\combined\\005370_jpg.rf.63349612a3e3ec56532b588c16fb40d6.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a long narrow tool in their right hand. The sky is blue with a few thin clouds. In the background, there is a bridge under construction. The wooden beams of the bridge extend out in the background. There are also a few metal railings in the background.", - "id": 3382 + "image_path": "G:\\images\\combined\\01d5f6cccbb6fa83.jpg", + "response": "A group of women in blue and white uniforms are standing on a baseball field. They are all holding baseball gloves and are wearing helmets. Some of them are giving each other high fives.", + "id": 33983 }, { - "image_path": "G:\\images\\combined\\005370_jpg.rf.eae864da74165cb41bc5edebe17d390c.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a hammer in his right hand and there is a small pile of nails next to him. The worker is also wearing a blue shirt and blue pants. The sky is blue and clear in the background.", - "id": 3383 + "image_path": "G:\\images\\combined\\01d5fb2b40e11c86.jpg", + "response": "A poster for a music festival called Power Music", + "id": 33984 }, { - "image_path": "G:\\images\\combined\\005371_jpg.rf.c93e573c75d74aa968ae4aac618f5e36.jpg", - "response": "The image shows a group of men standing in front of a construction site. They are wearing hard hats and one of them is holding a red fire extinguisher. The men are standing on a sidewalk and one of them is pointing towards the right. In the background, there are trees and a blue and white building. The word \"\u4e2d\u56fd\u753b\u753b\u7f51\" is written in the bottom right corner of the image.", - "id": 3384 + "image_path": "G:\\images\\combined\\01d7263395d9a493.jpg", + "response": "A television mounted on a wall with various streaming services displayed on the screen.", + "id": 33985 }, { - "image_path": "G:\\images\\combined\\005371_jpg.rf.d70315f5d792615d1e2e0f6637f26e08.jpg", - "response": "a group of men standing around each other", - "id": 3385 + "image_path": "G:\\images\\combined\\01d7510cbe6f11ab.jpg", + "response": "A coin in a plastic case with the word Canada on it.", + "id": 33986 }, { - "image_path": "G:\\images\\combined\\005372_jpg.rf.097a4590163e207b172375a35e96f02c.jpg", - "response": "A group of men wearing hard hats are walking down a street.", - "id": 3386 + "image_path": "G:\\images\\combined\\01d8880f4597da40.jpg", + "response": "Two blackberries are next to each other.", + "id": 33987 }, { - "image_path": "G:\\images\\combined\\005372_jpg.rf.a786792e006e4ade77cbce3f7253f6b9.jpg", - "response": "A group of men walking down a street.", - "id": 3387 + "image_path": "G:\\images\\combined\\01da36b6fdf3b073.jpg", + "response": "A billboard for Ephesus Temple of Love Corporation is displayed on a metal pole. The sign is located near a chain link fence.", + "id": 33988 }, { - "image_path": "G:\\images\\combined\\005373_jpg.rf.3708fb1829cab2068ca44a96e05f8fa7.jpg", - "response": "The image features a group of people sitting on a bench made of ice. They are all dressed in cold weather gear, including jackets, hats, and gloves. Some of the people are wearing red, yellow, blue, and green hats. The group is surrounded by ice formations and snow. They are all holding food items, including bottles and a bowl. The ground is covered in a layer of ice.", - "id": 3388 + "image_path": "G:\\images\\combined\\01da65477dad852b.jpg", + "response": "A baseball team of young boys wearing blue and white uniforms are sitting on a bench.", + "id": 33989 }, { - "image_path": "G:\\images\\combined\\005373_jpg.rf.e4e9e6be73e287c4ad5c902e09ceaef2.jpg", - "response": "A group of men sitting on ice formations.", - "id": 3389 + "image_path": "G:\\images\\combined\\01da6966036b3b4e.jpg", + "response": "A purple and white striped shirt with the word brother on the chest", + "id": 33990 }, { - "image_path": "G:\\images\\combined\\005374_jpg.rf.5d6d1add386c11247bf0bcf07f4e3832.jpg", - "response": "A pair of workers wearing hard hats and grey and black jackets work on a piece of equipment.", - "id": 3390 + "image_path": "G:\\images\\combined\\01db315a3bd2750a.jpg", + "response": "A hand holding a box with a plastic model airplane kit of an A-10 Warthog.", + "id": 33991 }, { - "image_path": "G:\\images\\combined\\005374_jpg.rf.88decaa8fca3ccc4c6fb2579707e18f9.jpg", - "response": "A pair of workers from China Railway No. 2 Engineering Group work on the overhead line at the Beijing South Railway Station.", - "id": 3391 + "image_path": "G:\\images\\combined\\01db52946398bae2.jpg", + "response": "A catcher in full gear standing on the field.", + "id": 33992 }, { - "image_path": "G:\\images\\combined\\005375_jpg.rf.39ae73a6199146306212ea1bac7bb911.jpg", - "response": "A worker is working on fixing some wires on the side of a building. The worker is wearing a blue jacket and a red helmet. There are many wires in different colors hanging from the building. Some are blue, some are white, and some are yellow. The worker is holding a tool in his hand.", - "id": 3392 + "image_path": "G:\\images\\combined\\01db6a5d60f6e92d.jpg", + "response": "A mascot in a Nexen uniform poses with a woman in a Nexen uniform and another woman in a uniform.", + "id": 33993 }, { - "image_path": "G:\\images\\combined\\005375_jpg.rf.4ac9a18b79a47a950405ab6f74e7bd92.jpg", - "response": "A worker is working on some power lines.", - "id": 3393 + "image_path": "G:\\images\\combined\\01dbb2370b74e9e5.jpg", + "response": "A man and a woman are sitting in a bumper car at an amusement park. The woman is wearing a pink sweatshirt and glasses. The man is wearing a blue hat and a blue hoodie. They are both looking at the camera.", + "id": 33994 }, { - "image_path": "G:\\images\\combined\\005376_jpg.rf.c64a81911e7ede0fb4df069427805224.jpg", - "response": "A group of people standing around a blueprint.", - "id": 3394 + "image_path": "G:\\images\\combined\\01dd932341463655.jpg", + "response": "A person(460,558),(493,630) riding a motorcycle down a winding road.", + "id": 33995 }, { - "image_path": "G:\\images\\combined\\005376_jpg.rf.c93aad6d4aaf12de230f5208c4a16584.jpg", - "response": "A group of people standing around a blueprint.", - "id": 3395 + "image_path": "G:\\images\\combined\\01df220cc71e07af.jpg", + "response": "A black car with a Virginia license plate that says SITTGRT.", + "id": 33996 }, { - "image_path": "G:\\images\\combined\\005377_jpg.rf.333144cbe08744bd0bbecfcc5b547da8.jpg", - "response": "In the image there is a person wearing a red helmet and a black suit, this person is standing on a concrete platform. There are some buildings in the background, one in the left side, three in the right side and another in the middle. Also in the image there is a yellow metal fence, a couple of signs, one in the left side and the other in the right side of the image, and finally there is a white and blue theodolite on the concrete platform.", - "id": 3396 + "image_path": "G:\\images\\combined\\01df7560c473e1ac.jpg", + "response": "An iPhone 4S is shown with the home screen visible. The phone is black and is laying on a white surface. The home screen has several icons on it including Phone, Messages, and Safari. The Phone icon is located in the lower left hand corner of the screen. The screen also has several apps including Facebook, Twitter, and YouTube. The Facebook app is located in the lower left hand corner of the screen. The Twitter app is located in the lower right hand corner of the screen. The YouTube app is located in the upper right hand corner of the screen.", + "id": 33997 }, { - "image_path": "G:\\images\\combined\\005377_jpg.rf.9f5962fe3e322ecb2af8dba77d557f99.jpg", - "response": "In the image there is a person wearing a red helmet and a black suit. They are standing on a construction site holding a ruler. The ruler is being used to measure something. In the background there are buildings.", - "id": 3397 + "image_path": "G:\\images\\combined\\01e05e827ea1929a.jpg", + "response": "A white board with writing on it in a room.", + "id": 33998 }, { - "image_path": "G:\\images\\combined\\005378_jpg.rf.9990025a2637a769001d580bd063988c.jpg", - "response": "A group of workers wearing blue and yellow helmets are seen in this image. They are working together to place a large white pipe on the ground. Some of them are kneeling on the ground while others are standing. They are all wearing white working clothes.", - "id": 3398 + "image_path": "G:\\images\\combined\\01e1b171a41077b7.jpg", + "response": "A person holding a bottle of gold glitter nail polish in front of a laptop.", + "id": 33999 }, { - "image_path": "G:\\images\\combined\\005378_jpg.rf.afd29d637b2ec4da0dc87db7b8ea4cbb.jpg", - "response": "A group of workers in blue and yellow shirts, some wearing white and red helmets, are working on a white pipeline in a field.", - "id": 3399 + "image_path": "G:\\images\\combined\\01e1df88e5b1c438.jpg", + "response": "A collection of black and white photos on a table.", + "id": 34000 }, { - "image_path": "G:\\images\\combined\\005379_jpg.rf.8b1e65780a316ea27a945b63faf384bb.jpg", - "response": "A group of people are sitting around a table. On the wall behind them is a large screen. On the screen is a presentation.", - "id": 3400 + "image_path": "G:\\images\\combined\\01e2c17d9ea1804d.jpg", + "response": "A record album cover for The Emperor Concerto by Beethoven, played by Solomon.", + "id": 34001 }, { - "image_path": "G:\\images\\combined\\005379_jpg.rf.e578cc23dbee046ade4c22f2513a3452.jpg", - "response": "A group of people are sitting around a table. On the wall behind them is a screen displaying the words \\\"\u57ce\u6295\u96c6\u56e2\u96c4\u695a\u5927\u8857\u9879\u76ee\u89c2\u6613\u534f\u8c03\u4f1a\\\". There are several potted plants on the table.", - "id": 3401 + "image_path": "G:\\images\\combined\\01e37c04a7967ac3.jpg", + "response": "A black and silver watch with the time set to 10:40.", + "id": 34002 }, { - "image_path": "G:\\images\\combined\\00537_jpg.rf.dd66e1e5333dc8af8bd04d65dbbd9965.jpg", - "response": "A man and a woman are holding a little girl who is wearing a construction hat. The man is wearing a black shirt and glasses. The woman is wearing a red helmet and has long hair. They are all standing in a construction area.", - "id": 3402 + "image_path": "G:\\images\\combined\\01e3e2e8f8e6808c.jpg", + "response": "A poster with a large key on the left and a poster with eyes on the right.", + "id": 34003 }, { - "image_path": "G:\\images\\combined\\005380_jpg.rf.1216898f2d52ed9cad2744422e47a4dd.jpg", - "response": "A man wearing a hard hat looking at a construction site.", - "id": 3403 + "image_path": "G:\\images\\combined\\01e4eb5fa4c0bb42.jpg", + "response": "A street scene with a traffic light showing a red light. There are buildings on both sides of the street and cars are parked along the road. A truck is driving down the street and there are people walking on the sidewalks. There is a no left turn sign and a traffic sign with an arrow pointing to the left.", + "id": 34004 }, { - "image_path": "G:\\images\\combined\\005380_jpg.rf.46446b31ff48c739f3f2c7f68ea81789.jpg", - "response": "A man wearing a hard hat is looking at a construction site. He is wearing a black jacket and the collar is turned up. In the background there is a blue crane and a white truck. There are piles of wood on the ground and a building is under construction. The sky is blue with a few clouds.", - "id": 3404 + "image_path": "G:\\images\\combined\\01e52dcdd1b8b05a.jpg", + "response": "A student working at a desk with a piece of paper and a keyboard.", + "id": 34005 }, { - "image_path": "G:\\images\\combined\\005381_jpg.rf.3cd22f0e5d0c80496a189eab5a639760.jpg", - "response": " Firefighters(393,307),(749,814)(1,728),(359,997)(2,2),(468,488)(507,610),(992,985) rescue a man who fell into a well.", - "id": 3405 + "image_path": "G:\\images\\combined\\01e7258e9d96d788.jpg", + "response": "A poster for Wellesley College, with a woman in a white jacket standing in front of a crowd of people walking and riding bicycles.", + "id": 34006 }, { - "image_path": "G:\\images\\combined\\005381_jpg.rf.570d0b8bb55f2e4224519e666db05ccf.jpg", - "response": "A man is trapped in a hole and firefighters are trying to rescue him.", - "id": 3406 + "image_path": "G:\\images\\combined\\01e81b99d1dca0ec.jpg", + "response": "A white board with red and blue writing on it.", + "id": 34007 }, { - "image_path": "G:\\images\\combined\\005382_jpg.rf.d1c7c01fc10d07e8eb805d6d6d371a89.jpg", - "response": "A group of people standing around a construction site.", - "id": 3407 + "image_path": "G:\\images\\combined\\01e82d950d72633f.jpg", + "response": "A blue bus is parked in a covered bus station.", + "id": 34008 }, { - "image_path": "G:\\images\\combined\\005383_jpg.rf.0df16fc1d1a4bb2f740dc7c5033eda3e.jpg", - "response": "A group of men walking down a street.", - "id": 3408 + "image_path": "G:\\images\\combined\\01e85acde63966be.jpg", + "response": "A red train engine is pulling a long line of train cars through a rural countryside. The train is on tracks that run parallel to a field. The sky is overcast.", + "id": 34009 }, { - "image_path": "G:\\images\\combined\\005383_jpg.rf.6d91b3b9bc8fcd6d9c0245b35dc4e8c8.jpg", - "response": "A group of men walking down a street.", - "id": 3409 + "image_path": "G:\\images\\combined\\01e9c22384de31db.jpg", + "response": "The image shows three cans of spray paint sitting on a wooden surface. The cans are all white and feature colorful labels. The first can from the left has a red, blue, and green label with the words \"Fast Dry All-Purpose/Exterior\" printed on it. The second can from the left has a label with the colors yellow, green, and blue. The third can from the left has a label with the colors orange, pink, and purple. The cans are all lined up in a row and appear to be ready for use.", + "id": 34010 }, { - "image_path": "G:\\images\\combined\\005384_jpg.rf.17bd8789fa92dce1bc4e0e039d979b0c.jpg", - "response": "The image shows a construction site with several workers. There are at least five workers visible, with some standing on the left side of the image and others on the right side. They are all wearing orange vests, with some also wearing yellow vests. The workers are standing on a large grid of metal rods, which are laid out in rows in front of them. The metal rods are connected to form a large grid, and some of the workers are also handling wires. The scene takes place outdoors, with a building visible in the background on the left side of the image. The workers are working on a large construction project, and the metal rods and wires they are handling are likely part of the framework for a new building or other structure.", - "id": 3410 + "image_path": "G:\\images\\combined\\01ea8fa366a4d91a.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 34011 }, { - "image_path": "G:\\images\\combined\\005384_jpg.rf.2f93bf590f681157ada6d20ce29554f1.jpg", - "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large amount of steel rods and mesh, which are laid out in a large grid pattern. The steel rods are in various sizes and are connected together using the mesh. The workers are wearing safety gear, including hard hats, safety vests, and gloves. They are focused on their work and appear to be in the middle of a construction project.", - "id": 3411 + "image_path": "G:\\images\\combined\\01eb543ebfdc1351.jpg", + "response": "A bottle of Widmer Brothers The Original Drifter Pale Ale.", + "id": 34012 }, { - "image_path": "G:\\images\\combined\\005385_jpg.rf.dae77d5d624e8403241e84029cf812a4.jpg", - "response": "A group of people standing in a parking lot with a van in the background.", - "id": 3412 + "image_path": "G:\\images\\combined\\01eb8a8b52bad9b4.jpg", + "response": "A store display of Pantone mobile phones in a variety of colours.", + "id": 34013 }, { - "image_path": "G:\\images\\combined\\005385_jpg.rf.e5208a9dfa237956c7ea6854a8ea524a.jpg", - "response": "A group of people standing in a parking lot with a van in the background.", - "id": 3413 + "image_path": "G:\\images\\combined\\01ebd4f1b7f87a41.jpg", + "response": "A Virginia license plate on the back of a car.", + "id": 34014 }, { - "image_path": "G:\\images\\combined\\0053860714da4340.jpg", - "response": "The image shows two white ambulances parked next to each other in a garage. The ambulances have red and yellow stripes on them and are labeled \"ambulance service nsw.\" There is a chair in the garage as well. The garage is located inside a brick building.", - "id": 3414 + "image_path": "G:\\images\\combined\\01ecae33d6fde19c.jpg", + "response": "The image shows the inside of a Bath & Body Works store. There is a counter with a sign that says \"Bath & Body Works\" in blue letters. To the left of the counter, there is a woman with a black jacket and a bag standing in front of a display of products. The woman appears to be shopping. There are also other people in the store, but they are further away and not as visible. The store has a wide selection of products, including various bottles and containers of bath and body products. The store also has a bright and colorful atmosphere.", + "id": 34015 }, { - "image_path": "G:\\images\\combined\\005386_jpg.rf.d9853d7252d23216eb53c6eeafc1a71f.jpg", - "response": "The image shows a group of six men standing in a circle talking. They are all dressed in business attire, with the man on the far left wearing a grey suit. The man second from the left is wearing a black suit. The man third from the left is wearing a black suit with a white shirt and tie. The man fourth from the left is wearing a black leather jacket. The man fifth from the left is wearing a black suit. The man on the far right is wearing a black suit. All of the men are standing on a sidewalk in front of a building. The building has several stories and is made of concrete. It also has a sign on the side that says \"\u4e2d\u56fd\u6c5f\u897f\u7f51\".", - "id": 3415 + "image_path": "G:\\images\\combined\\01ed082eb15c3f60.jpg", + "response": "A large yellow and red sign with the number 30 on it.", + "id": 34016 }, { - "image_path": "G:\\images\\combined\\005387_jpg.rf.03725efd2460dc0bf20ef5ffeaacad0a.jpg", - "response": "A group of men in hard hats stand in a circle. One of the men is pointing towards the right. The man on the far right is wearing a yellow and black vest.", - "id": 3416 + "image_path": "G:\\images\\combined\\01ed9f00b2d3265e.jpg", + "response": "A cell phone is shown next to a SparkFun RedBot with a breadboard and various wires connected. The cell phone is running the Android operating system and has a menu displayed on the screen.", + "id": 34017 }, { - "image_path": "G:\\images\\combined\\005387_jpg.rf.58703eb5d05e3c58c6e4fd3dd67f05c9.jpg", - "response": "In the image, a group of men are standing together on a worksite. They are all wearing hard hats. In the background, there is a pile of dirt. To the far left, there is a person's feet wearing black shoes and carrying a backpack. In the far right, there is a person wearing a yellow vest.", - "id": 3417 + "image_path": "G:\\images\\combined\\01ee1b7395e1d8c4.jpg", + "response": "A bottle of amber ale next to a tall glass filled with the beer.", + "id": 34018 }, { - "image_path": "G:\\images\\combined\\005388_jpg.rf.4887de7e8f04e0caaaa033d1cb103ce7.jpg", - "response": "A woman in a black leather jacket and red hard hat is pointing to a blueprint. Two men, one wearing a yellow hard hat and one wearing a brown hard hat, are standing next to her and looking at the blueprint. They are all standing in front of a long table with several pieces of metal on it. In the background, there is a large building under construction with several metal frameworks visible.", - "id": 3418 + "image_path": "G:\\images\\combined\\01ef6656e89a17d9.jpg", + "response": "A room with a TV on a stand and a boombox on the floor.", + "id": 34019 }, { - "image_path": "G:\\images\\combined\\005388_jpg.rf.7c7c764c709510f51e84322c469d81bd.jpg", - "response": "A woman in a red hard hat is showing a man in a yellow hard hat a piece of paper. They are both looking at the paper and the man on the right is holding a pen. They are standing in front of a long table with a white cup on it. There are several pieces of wood on the table and even more wood stacked in the background. There is a building under construction in the background with scaffolding and steel beams.", - "id": 3419 + "image_path": "G:\\images\\combined\\01efc51d4fe15670.jpg", + "response": "The camera is black and has a strap attached to it.", + "id": 34020 }, { - "image_path": "G:\\images\\combined\\005389_jpg.rf.b46b73a0b6ad9ba677b8f1abccea3f48.jpg", - "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground who appear to be sitting on the ground, possibly taking a break. They are wearing hard hats and reflective vests. Another worker is visible in the background, wearing a hard hat as well.", - "id": 3420 + "image_path": "G:\\images\\combined\\01f16152d32ca714.jpg", + "response": "A person writing on a white board with marker.", + "id": 34021 }, { - "image_path": "G:\\images\\combined\\005389_jpg.rf.e41cc0ea2e2cc7f18c92748af18e181f.jpg", - "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground, both wearing orange vests and white helmets. They are working on a brick wall or foundation, with bricks scattered around them. In the background, there are other workers and construction equipment, including a yellow and black tractor. The scene is set outdoors, with the ground made of dirt and there are traffic cones placed around the area.", - "id": 3421 + "image_path": "G:\\images\\combined\\01f21faf20e18217.jpg", + "response": "A book bound book with a woman sitting at a desk writing in it.", + "id": 34022 }, { - "image_path": "G:\\images\\combined\\00538_jpg.rf.5c313dff90f65c2cce5a9a4c7c4e859c.jpg", - "response": "A group of men in hard hats stand in a large, open building that has been gutted. They are all wearing yellow hard hats and work clothes. In front of them on the ground are two large, round, white objects and a silver and black object. The men are looking at these objects, which appear to be some kind of machinery.", - "id": 3422 + "image_path": "G:\\images\\combined\\01f270db9a417dee.jpg", + "response": "A store with three refrigerators side by side. The refrigerators are filled with soda and are labeled Pepsi, Coke, and Sodas. There are also other items on the shelves next to the refrigerators.", + "id": 34023 }, { - "image_path": "G:\\images\\combined\\00538_jpg.rf.ec5299f93fd5cb4ad1b3a2ad4f6d0455.jpg", - "response": "A group of four people stand in a large, open building that has been gutted. They are all wearing hard hats and work clothes. In front of them is a pile of rubble and debris.", - "id": 3423 + "image_path": "G:\\images\\combined\\01f45db1ff7610c5.jpg", + "response": "A gold coin with the word ESPANA on it.", + "id": 34024 }, { - "image_path": "G:\\images\\combined\\005390_jpg.rf.3f068f6fa5785520025005e795b4b277.jpg", - "response": "A man in a yellow hard hat and blue jeans is standing in a house that is under construction. He is wearing a brown shirt and has a tool belt around his waist. He is holding a level in his right hand and a nail gun in his left hand. The walls are made of wood and the roof is made of wood as well. There are blue sky and clouds in the background.", - "id": 3424 + "image_path": "G:\\images\\combined\\01f4d6b8f7d48bc7.jpg", + "response": "A laptop with a bunch of papers next to it.", + "id": 34025 }, { - "image_path": "G:\\images\\combined\\005390_jpg.rf.ffac842bca70c4ef8b7f2a3c0246ba4a.jpg", - "response": "A man in a yellow hard hat standing in a unfinished room.", - "id": 3425 + "image_path": "G:\\images\\combined\\01f58fe454760bf4.jpg", + "response": "A blue and white Thomson Boeing 757 sits on the tarmac at Manchester Airport.", + "id": 34026 }, { - "image_path": "G:\\images\\combined\\005391_jpg.rf.c15026328f6546fd63a3814c807d5928.jpg", - "response": "8 people(291,104),(460,775)(117,200),(270,833)(437,169),(578,733)(562,102),(728,768)(821,153),(980,765)(17,183),(147,713)(700,127),(836,755) standing on a rocky hillside", - "id": 3426 + "image_path": "G:\\images\\combined\\01f6ac411ed5684b.jpg", + "response": "A bottle of Madeira wine and a glass of it next to it.", + "id": 34027 }, { - "image_path": "G:\\images\\combined\\005391_jpg.rf.ed087a2e9d77583713b2ac5dcd86018d.jpg", - "response": " Several people(18,184),(153,713)(118,201),(270,832)(291,105),(462,775)(437,169),(577,729)(563,102),(728,767)(701,128),(838,755)(818,153),(982,766) standing on a rocky hillside", - "id": 3427 + "image_path": "G:\\images\\combined\\01f6c4d1dc9fe72b.jpg", + "response": "A large airplane flying through the sky.", + "id": 34028 }, { - "image_path": "G:\\images\\combined\\005392_jpg.rf.075674708f9a8309752c8795d4ce1de7.jpg", - "response": "A group of men standing around each other.", - "id": 3428 + "image_path": "G:\\images\\combined\\01f6d2518e30b02a.jpg", + "response": "On the screen of the open laptop is a chart with a blue and green pie chart and a line graph. The background of the image is white.", + "id": 34029 }, { - "image_path": "G:\\images\\combined\\005392_jpg.rf.11b5bf870c407cb820d77ed5a3aa6c8a.jpg", - "response": "A group of men wearing hard hats", - "id": 3429 + "image_path": "G:\\images\\combined\\01f805f22565b44c.jpg", + "response": "A billboard for AC Transit, showing a photo of a traffic jam and the slogan \"Haven't you just about had it?\"", + "id": 34030 }, { - "image_path": "G:\\images\\combined\\005393_jpg.rf.6e6f60b00e91917f01f5740b55d9b472.jpg", - "response": "A group of people wearing hard hats(760,774),(896,960)(141,559),(254,677)(645,622),(731,723)(310,537),(382,618)(509,503),(579,583)(610,553),(691,632)(408,479),(483,558)(333,364),(376,413)(619,622),(731,724)(487,593),(564,673)(343,757),(420,851)(610,812),(764,997) are working together to clear snow from a power line.", - "id": 3430 + "image_path": "G:\\images\\combined\\01f838adc1583cfe.jpg", + "response": "A clock tower with a brick base and a metal top.", + "id": 34031 }, { - "image_path": "G:\\images\\combined\\005393_jpg.rf.c7c8d6a7e9dc50973b262a8f70ecdbad.jpg", - "response": "A group of people wearing hard hats and working clothes are on a snowy mountain side. They are working together to move a large metal pipe.", - "id": 3431 + "image_path": "G:\\images\\combined\\01f83f94541937f5.jpg", + "response": "A sign for a pub called Smugglers.", + "id": 34032 }, { - "image_path": "G:\\images\\combined\\005394_jpg.rf.2c3e4449075947d14748b5a3622fed8a.jpg", - "response": "The image shows two men wearing yellow hard hats and green safety vests. They are working on a construction site, which can be identified by the presence of wooden beams and trusses in the background. One of the men is holding a drill, which is located on the left side of the image. The men appear to be focused on a task, possibly installing or repairing something.", - "id": 3432 + "image_path": "G:\\images\\combined\\01f93848d14939fe.jpg", + "response": "a close up of a wrist watch on someones arm", + "id": 34033 }, { - "image_path": "G:\\images\\combined\\005394_jpg.rf.3ed559ff044acaf7c69c9ddbd3dc7022.jpg", - "response": "The image shows two men working on a construction site, wearing yellow hard hats and green safety vests. One man is holding a power drill and the other man is holding a saw. They are both working on a wooden structure, possibly a roof or a frame. The sky is blue and clear.", - "id": 3433 + "image_path": "G:\\images\\combined\\01fa8e68ea2ed55d.jpg", + "response": "A white laptop computer with a black keyboard.", + "id": 34034 }, { - "image_path": "G:\\images\\combined\\005395_jpg.rf.52e2e254db40de3ec7a701b910e94dc1.jpg", - "response": "A couple of men in a bucket truck working on power lines.", - "id": 3434 + "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.aa0d15a538f7a3893cbe6de62c03fe30.jpg", + "response": "A cardboard box is open on the top and is on a wooden floor.", + "id": 34035 }, { - "image_path": "G:\\images\\combined\\005395_jpg.rf.893f01c837c44d383c79af58cf80434d.jpg", - "response": "A city street with many cars parked on the side.", - "id": 3435 + "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.b20ac466d76ee7e3bbc8e5e2bdd4b0b5.jpg", + "response": "A large cardboard box is stacked on top of another cardboard box on a white surface. The box on the bottom has a cartoon character on it. The boxes are on a wooden floor.", + "id": 34036 }, { - "image_path": "G:\\images\\combined\\005396_jpg.rf.122b630593b14b14f9931452440e77bd.jpg", - "response": "A fireman wearing a hard hat is standing in a dark room filled with smoke. He is holding a fire hose and there is rubble in the background.", - "id": 3436 + "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.de505d8f5b3a43ececae692ac76f0e44.jpg", + "response": "A box with a picture of a girl holding a pink bag on it.", + "id": 34037 }, { - "image_path": "G:\\images\\combined\\005396_jpg.rf.f177692eda1d035d8afe7358b921f174.jpg", - "response": "A firefighter is seen in silhouette as he walks through smoke and debris", - "id": 3437 + "image_path": "G:\\images\\combined\\01fb8b5325e992d9.jpg", + "response": "A colorful double decker bus is driving down the street.", + "id": 34038 }, { - "image_path": "G:\\images\\combined\\005397_jpg.rf.296091edb53268506709fd4214fba77b.jpg", - "response": "A group of men in hard hats stand on a construction site, looking at blueprints.", - "id": 3438 + "image_path": "G:\\images\\combined\\01fbb47ed3360107.jpg", + "response": "A white smartphone with a purple screen is sitting on a table. The phone has a green light on the bottom right corner and a red light on the top right corner. The phone has several apps on the screen including a calendar, email, and camera.", + "id": 34039 }, { - "image_path": "G:\\images\\combined\\005397_jpg.rf.a1a2b657de005348e73c67d597921efe.jpg", - "response": "A group of men standing on a construction site holding a rolled up blueprint.", - "id": 3439 + "image_path": "G:\\images\\combined\\01fea80742389c98.jpg", + "response": "The image shows the entrance to a Claire's store. The store front has a large blue sign that reads \"claire's\" in blue letters. The sign is illuminated and appears to be made of neon lights.", + "id": 34040 }, { - "image_path": "G:\\images\\combined\\005398_jpg.rf.22dc95f199a4a4aff1ceff53342e4912.jpg", - "response": "a group of men walking down a street", - "id": 3440 + "image_path": "G:\\images\\combined\\01FVZIGPUGWI_jpg.rf.6d30a3f01c1d432087900e48ce6acc1a.jpg", + "response": "An orange forklift with a large black tire on the back is parked in a dirt lot.", + "id": 34041 }, { - "image_path": "G:\\images\\combined\\005398_jpg.rf.e62bf347c68a6ff14f84f334ef1bce11.jpg", - "response": "a group of men walking down a street", - "id": 3441 + "image_path": "G:\\images\\combined\\02000bbc3c2b9e50.jpg", + "response": "A penny sitting on a wooden table.", + "id": 34042 }, { - "image_path": "G:\\images\\combined\\005399_jpg.rf.6a3b6c480cdd75c5eb6634e8d4980d54.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and the background features a green fence. In the foreground, there is a roof that is under construction with wooden beams and wooden struts.", - "id": 3442 + "image_path": "G:\\images\\combined\\02002c2feda97a8b.jpg", + "response": "A close up of several wine bottles on a table.", + "id": 34043 }, { - "image_path": "G:\\images\\combined\\005399_jpg.rf.ee410e6748b7772ff2819a7ed639745a.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and are standing on a roof. The roof is made of wooden beams and they are working on it.", - "id": 3443 + "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.11d28707d6a3938dc8aae069bc4601d9.jpg", + "response": "A woman wearing a mask pushes a cart with luggage at an airport.", + "id": 34044 }, { - "image_path": "G:\\images\\combined\\00539_jpg.rf.08a5e47fa27ec30b11415341882f9b16.jpg", - "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", - "id": 3444 + "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.70d0fe89db455c2893a38076f601ca6a.jpg", + "response": "A woman wearing a mask and pushing a cart with luggage at an airport.", + "id": 34045 }, { - "image_path": "G:\\images\\combined\\00539_jpg.rf.827dbdeb126a73dc017aafd9a4bfe96c.jpg", - "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", - "id": 3445 + "image_path": "G:\\images\\combined\\0200d04d2f03a80d.jpg", + "response": "A computer screen with a website for Think Green GEICO on it.", + "id": 34046 }, { - "image_path": "G:\\images\\combined\\0053a650ec50c21f.jpg", - "response": "The image depicts a busy city street with a Dominos Italian sausage food truck parked on the side of the road. There are several people walking around, some of which are carrying handbags and suitcases. A few cars are also parked or driving on the street.", - "id": 3446 + "image_path": "G:\\images\\combined\\02012_jpg.rf.44e8a86af525414f22924baecc48f805.jpg", + "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", + "id": 34047 }, { - "image_path": "G:\\images\\combined\\005400_jpg.rf.8740e2f6a781e40c131d867fb3430f3f.jpg", - "response": "In the image two workers are in a flooded room. They are wearing blue helmets and are holding flashlights. The floor is knee deep in water and the walls are white. There is a sign on the wall that says \"CAUTION DANGEROUS VOLTAGE\" and another sign that says \"DO NOT TOUCH\".", - "id": 3447 + "image_path": "G:\\images\\combined\\02012_jpg.rf.948b11c36688a63ca94906a2ecd08008.jpg", + "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", + "id": 34048 }, { - "image_path": "G:\\images\\combined\\005400_jpg.rf.c1b94d94aa572d974723848fd56b6a1f.jpg", - "response": "In the image two workers are working in an area that is flooded with water. They are standing in the water and appear to be working on something. They are both wearing blue helmets and the man on the left is also wearing a yellow jacket. The wall to the right has several stickers on it. The room they are in has a bright light on the wall and the floor is visible through the water.", - "id": 3448 + "image_path": "G:\\images\\combined\\02013_jpg.rf.36ff09c2baead034545441c620a5db83.jpg", + "response": "Three confident male construction workers standing in front of a crane with arms crossed", + "id": 34049 }, { - "image_path": "G:\\images\\combined\\005401_jpg.rf.27d9da50f53cdc103fc8d7fc6ed1870f.jpg", - "response": "A group of men in orange work overalls and hard hats are gathered around a large metal valve. They are all wearing the same orange hard hats and some are wearing matching orange shirts. The men are standing in a field with a dirt road behind them and a concrete structure to their left. In the foreground, they are working on a large metal valve that is part of a gas or oil well.", - "id": 3449 + "image_path": "G:\\images\\combined\\02013_jpg.rf.b0fe1ee864c241b475fb2a8f732f9689.jpg", + "response": "Three confident male construction workers standing in front of a crane with their arms crossed", + "id": 34050 }, { - "image_path": "G:\\images\\combined\\005401_jpg.rf.851d2ffd7a38a9fbc1dabfd12791504e.jpg", - "response": "A group of men in orange work overalls and orange hard hats are gathered around a large metal valve.", - "id": 3450 + "image_path": "G:\\images\\combined\\02014181dd7e31d0.jpg", + "response": "In the image there is a baseball player wearing a blue and white uniform with the number 37 on the back. The player is standing on a baseball field and looking off into the distance. There are several chairs around the field and a person in the background.", + "id": 34051 }, { - "image_path": "G:\\images\\combined\\005402_jpg.rf.054cb39d4d4b175f6dede9938cdb03a6.jpg", - "response": " Firefighters(433,326),(597,602)(436,49),(557,448)(367,588),(629,949) working in a confined space", - "id": 3451 + "image_path": "G:\\images\\combined\\02027b3b8f05ef78.jpg", + "response": "A black and white photo of a street corner with a large billboard for office space to let. The billboard is next to a traffic light and a brick building. The sky is cloudy.", + "id": 34052 }, { - "image_path": "G:\\images\\combined\\005403_jpg.rf.05d2beb6c676f7ad4c66a7890163b4cd.jpg", - "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", - "id": 3452 + "image_path": "G:\\images\\combined\\020294a97cbd1bba.jpg", + "response": "The image shows four stainless steel vacuum flasks in different sizes. The flasks have a cylindrical shape and are made of stainless steel. The bodies of the flasks have a cylindrical shape and are made of stainless steel. The lids of the flasks are cylindrical and made of stainless steel. The flasks have Ferrino written on them in silver.", + "id": 34053 }, { - "image_path": "G:\\images\\combined\\005403_jpg.rf.2f9b5ce355db14fc30f35b804c8694cb.jpg", - "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", - "id": 3453 + "image_path": "G:\\images\\combined\\0202faf23a9aae11.jpg", + "response": "A Croatia airlines airplane is parked on the runway with several people standing outside of it. The airplane has the word \"CROATIA\" written on the side. The sky above the airplane is blue with a few white clouds.", + "id": 34054 }, { - "image_path": "G:\\images\\combined\\005404_jpg.rf.1d32b962984c526944d51c07b8989502.jpg", - "response": "A group of people standing around a table looking at items on it.", - "id": 3454 + "image_path": "G:\\images\\combined\\02044_jpg.rf.6a863f4c897ddc93b46a3c1b8fcb8278.jpg", + "response": "A group of construction workers working on a road.", + "id": 34055 }, { - "image_path": "G:\\images\\combined\\005404_jpg.rf.52a32d74ed41c23529a0eedce1817be9.jpg", - "response": "The image shows a group of people gathered around a table with several books and binders on it. The table has a blue cover and is filled with various materials. There is also a laptop on the table. In front of the table, there is a chair. On the wall behind the table, there is a poster with the words \"Let's do it\" written on it. The room has a Chinese flag hanging on the left side of the wall.", - "id": 3455 + "image_path": "G:\\images\\combined\\02044_jpg.rf.e4f452d6d11907e54594a137a45c0084.jpg", + "response": "A group of construction workers working on a road.", + "id": 34056 }, { - "image_path": "G:\\images\\combined\\005405_jpg.rf.13b9aeb665fb2d0a9e074c68a44f0b3b.jpg", - "response": "A construction worker wearing a hard hat and a pair of jeans is using a hose at a construction site.", - "id": 3456 + "image_path": "G:\\images\\combined\\0204574848b0bf05.jpg", + "response": "A black trash can with a green sign that says \"Defend\" on it. The sign has a white border and black text. The trash can is located on a wet ground with many people walking around. Some people are carrying umbrellas and there are many different types of umbrellas visible in the scene.", + "id": 34057 }, { - "image_path": "G:\\images\\combined\\005405_jpg.rf.d2736965da2e639304d4e5f058389a2e.jpg", - "response": "A construction worker is using a hose at a construction site.", - "id": 3457 + "image_path": "G:\\images\\combined\\02045_jpg.rf.468563c222afe8f226ff7de1f92c1efc.jpg", + "response": "A couple of men in orange vests and white hard hats looking over blueprints in a large room.", + "id": 34058 }, { - "image_path": "G:\\images\\combined\\005406_jpg.rf.db3739ae94d1815056ab7da9ccd3e8b3.jpg", - "response": "A man and a woman in orange vests and hard hats standing on a construction site.", - "id": 3458 + "image_path": "G:\\images\\combined\\02045_jpg.rf.7b1e41330344c725abeabf225464490f.jpg", + "response": "A man and a woman in high visibility vests and hard hats, looking at architectural plans on a table.", + "id": 34059 }, { - "image_path": "G:\\images\\combined\\005406_jpg.rf.e7661961c09c84deea87c36063a1b934.jpg", - "response": "A man and woman in orange vests and hard hats standing on a construction site.", - "id": 3459 + "image_path": "G:\\images\\combined\\0204ffb00eba164b.jpg", + "response": "A group of three refrigerators with a lot of stickers on them.", + "id": 34060 }, { - "image_path": "G:\\images\\combined\\005407_jpg.rf.22aaa351638841711b9a2d82068318ce.jpg", - "response": "A group of men standing in a unfinished building.", - "id": 3460 + "image_path": "G:\\images\\combined\\020514c846e08c9b.jpg", + "response": "A table with a pink book on it and two bottles of beer.", + "id": 34061 }, { - "image_path": "G:\\images\\combined\\005407_jpg.rf.b09fc18de1cd1961f29eb796c9d14809.jpg", - "response": " Men(129,250),(370,997)(626,284),(857,997)(442,197),(658,997) in hard hats(202,250),(302,358)(549,196),(629,278) looking at a wall", - "id": 3461 + "image_path": "G:\\images\\combined\\02054_jpg.rf.f7f579767d9c1f4268bb473ae6ae44dd.jpg", + "response": "A man in a yellow vest and green hard hat is standing in the middle of a busy street. He is holding a orange and black traffic baton. There are many cars around him, some parked and some moving. One car is gray, and another is red. There is also a white van parked in the street. The man is directing traffic, possibly to help with an accident or other situation.", + "id": 34062 }, { - "image_path": "G:\\images\\combined\\005408_jpg.rf.766b1e5ae104191c7d6d74cb0e091678.jpg", - "response": "A group of three workers in red doing some work in a factory.", - "id": 3462 + "image_path": "G:\\images\\combined\\02060_jpg.rf.0d96f0fd9c515f59a90748e62ed7c87e.jpg", + "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", + "id": 34063 }, { - "image_path": "G:\\images\\combined\\005408_jpg.rf.a7a4986c748c40adf8a406d4d32ac564.jpg", - "response": "A group of three workers in red doing some work in a factory.", - "id": 3463 + "image_path": "G:\\images\\combined\\02060_jpg.rf.f69a4bf8d0b1d99e888c2ce8d716177f.jpg", + "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", + "id": 34064 }, { - "image_path": "G:\\images\\combined\\005409_jpg.rf.88499a2c1333c23a7ceab6a36886ea44.jpg", - "response": "A group of workers wearing hard hats are shoveling and moving dirt and rocks.", - "id": 3464 + "image_path": "G:\\images\\combined\\02062d203a421358.jpg", + "response": "A banner for the GDC (Game Developers Conference) that is white with a grey and yellow logo.", + "id": 34065 }, { - "image_path": "G:\\images\\combined\\005410_jpg.rf.209e0bf5132c11441f157b5c1294b209.jpg", - "response": "A pair of workers, one on a ladder and one on the wall, are repairing a brick wall.", - "id": 3465 + "image_path": "G:\\images\\combined\\02062_jpg.rf.9a059da9882da6641491afaf332716b2.jpg", + "response": "A construction site with three men in the foreground wearing high visibility jackets and hard hats. One man is holding a blueprint and pointing to the right, the man next to him is holding a walkie talkie and the man at the back is looking up at the crane.", + "id": 34066 }, { - "image_path": "G:\\images\\combined\\005411_jpg.rf.2a0f3fc5581055ef7a025ddf64f8f906.jpg", - "response": "In the image there are three construction workers at a construction site. They are all wearing yellow vests and hard hats. Two of the workers are in the foreground, one on the left and one on the right, and the third worker is in the background on the left. There are two cranes in the background, one on the left and one on the right. The sky is blue with clouds.", - "id": 3466 + "image_path": "G:\\images\\combined\\02062_jpg.rf.b599b5552eee0c78fb700f6d5d61af7a.jpg", + "response": "A construction site with three men in the foreground, wearing high visibility jackets and hard hats. One man is holding a set of plans and talking on a walkie talkie, another man is using a walkie talkie, and the third man is pointing towards the crane in the background.", + "id": 34067 }, { - "image_path": "G:\\images\\combined\\005412_jpg.rf.a10f0e80d207ee20d963a374088959e2.jpg", - "response": "A group of four people standing on a dirt road.", - "id": 3467 + "image_path": "G:\\images\\combined\\02064de8280d7906.jpg", + "response": "A close up of a telephone keypad with the number 0 button in the foreground.", + "id": 34068 }, { - "image_path": "G:\\images\\combined\\005412_jpg.rf.f997eaaff81b8f2d574292d18ca9989c.jpg", - "response": "A group of four people standing on a dirt road.", - "id": 3468 + "image_path": "G:\\images\\combined\\02070_jpg.rf.219edc90573e8dc78d6c7e4a41b70247.jpg", + "response": "A group of people wearing neon colored t-shirts are standing in front of a building. Some of the people are holding picket signs and there is a man wearing a hat.", + "id": 34069 }, { - "image_path": "G:\\images\\combined\\005413_jpg.rf.0da0f610bbe4925412e6f8b9a3367adf.jpg", - "response": "In the image two men wearing orange vests and white hard hats are talking to each other. One man is holding a clipboard. They are standing in front of a large ship that is docked at a large terminal. In front of the men and the ship there is a forklift.", - "id": 3469 + "image_path": "G:\\images\\combined\\02070_jpg.rf.db5cd42fb1161f82f9f459a5cfbf719e.jpg", + "response": "A group of people are standing on a sidewalk. Some of them are wearing bright green t-shirts. One man is wearing a watch on his left wrist. Another man is wearing a hat. A man in the background is holding a picket sign.", + "id": 34070 }, { - "image_path": "G:\\images\\combined\\005413_jpg.rf.5dceab994e735c5d4ad75af85a667df8.jpg", - "response": "In the foreground, two men in high visibility vests and white hard hats stand next to a forklift. The man on the left is holding a clipboard. In the background, a large ship is docked at a terminal. The ship is white and blue and is much taller than the men and the forklift.", - "id": 3470 + "image_path": "G:\\images\\combined\\02078_jpg.rf.17c745b0e77deaff003fde9fc02597b3.jpg", + "response": "In the image, a group of seven people are standing together outside in the dirt. They are all wearing yellow safety vests and blue hard hats. In the background, there is a large electrical tower and a white truck. The sun is shining and it appears to be a clear day.", + "id": 34071 }, { - "image_path": "G:\\images\\combined\\005414_jpg.rf.99f800ed4f0e7d7575b7d04b0b7ea458.jpg", - "response": "a group of men standing in a driveway", - "id": 3471 + "image_path": "G:\\images\\combined\\02078_jpg.rf.6df16b2e6a505fed055283148653e7f5.jpg", + "response": "A group of men and women pose for a photo in front of a substation. They are all wearing yellow vests and blue hard hats. In the background, there is a white truck and a brown fence. The sky is blue and clear.", + "id": 34072 }, { - "image_path": "G:\\images\\combined\\005415_jpg.rf.851e17b934e70d1060470bcf81438e2d.jpg", - "response": "A construction site with multiple people working on it.", - "id": 3472 + "image_path": "G:\\images\\combined\\0207ea1877c62bf1.jpg", + "response": "A living room with a couch that has two blue shirts and a bag on it.", + "id": 34073 }, { - "image_path": "G:\\images\\combined\\005415_jpg.rf.b50c060a9a0cb6d3a234e0b5dc85cc9a.jpg", - "response": "A construction site with multiple cranes and several people working on different tasks.", - "id": 3473 + "image_path": "G:\\images\\combined\\02080baccb392a5a.jpg", + "response": "A Sally Hansen Color Quick Fast Dry brush and bottle of Sally Hansen Diamond Strength nail color sit next to each other on a red cloth.", + "id": 34074 }, { - "image_path": "G:\\images\\combined\\005416_jpg.rf.26403633c61e55ff010b800609b3195b.jpg", - "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and camouflage uniforms. One of the linemen is climbing a pole to work on the power lines, and the other is holding onto the pole to provide support. They are both wearing safety harnesses, which are attached to the pole to ensure their safety during the climb.", - "id": 3474 + "image_path": "G:\\images\\combined\\02081b875a3147da.jpg", + "response": "A person is holding a red Sprint phone in their hand. The phone is displaying a map on the screen.", + "id": 34075 }, { - "image_path": "G:\\images\\combined\\005416_jpg.rf.4caa0659c28347d3f7a6a49f3538265f.jpg", - "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and green camouflage shirts. One of the linemen is climbing a pole to work on the power lines, and the other man is securing the pole. They are both holding onto the pole with their hands. In the background, there is a building with Chinese characters on the sign.", - "id": 3475 + "image_path": "G:\\images\\combined\\02081_jpg.rf.5f2c347b1d882546e805ba9daf04ca9d.jpg", + "response": "A man wearing a yellow high vis vest and a white hard hat.", + "id": 34076 }, { - "image_path": "G:\\images\\combined\\005417_jpg.rf.257b7fdd02e0243945b5bffe67bcb60d.jpg", - "response": "A group of men standing around a construction site", - "id": 3476 + "image_path": "G:\\images\\combined\\02086c4f9cd57b9d.jpg", + "response": "A person is holding a HTC phone in their left hand. The phone is black and silver and says HTC on the back. The camera is on the top of the phone and is next to the speaker.", + "id": 34077 }, { - "image_path": "G:\\images\\combined\\005417_jpg.rf.2c4d375770c6d3c0b8d3df245507b1f8.jpg", - "response": "A group of men standing around a construction site", - "id": 3477 + "image_path": "G:\\images\\combined\\02087_jpg.rf.6a37778d439a5f92509f70b78c253f39.jpg", + "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a yellow safety vest and holding a white hard hat. The one on the far right is wearing a red safety vest and a white shirt. The person in the middle is wearing a grey t-shirt.", + "id": 34078 }, { - "image_path": "G:\\images\\combined\\005418_jpg.rf.2e5a1eff04f2bba4a6634188b462edbd.jpg", - "response": " Firefighters(439,21),(872,996)(33,52),(387,996) rescue a man who fell into a manhole", - "id": 3478 + "image_path": "G:\\images\\combined\\02087_jpg.rf.767a063b08ac3d65c103d899f60aabc8.jpg", + "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a orange vest with a reflector stripe and has a white hard hat. The one on the far right is wearing a red hat and a orange vest with a blue jeans. The one in the second from the left is wearing a grey t-shirt and a jeans. The one in the second from the right is wearing a orange vest and a red hat.", + "id": 34079 }, { - "image_path": "G:\\images\\combined\\005418_jpg.rf.714a8c512e4f808b5ea5934bf5deb61d.jpg", - "response": " Firefighters(33,50),(388,996)(437,16),(872,997) in China rescued a 22-year-old man who had been trapped in a pit for 15 hours after a cave-in.", - "id": 3479 + "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.061cb0a1719cc52d0cf60ab1253c7fbc.jpg", + "response": "A group of people wearing face masks(758,220),(886,384)(407,246),(513,369)(210,184),(310,307) are seen waiting in line.", + "id": 34080 }, { - "image_path": "G:\\images\\combined\\005419_jpg.rf.1c3cba4b79efc02dd0976cf25391acf6.jpg", - "response": "In the image there is a large construction site with multiple workers wearing hard hats and safety gear. They are working on a large building that has not yet been constructed. The building is surrounded by wooden scaffolding and metal poles. In the background there is a mountain range.", - "id": 3480 + "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.950f18fdb54e576a20e4490ffc5c5b02.jpg", + "response": "In the image, there are several people waiting in line. Some of them are wearing face masks, including a man with a black hat, a woman with a pink scarf, and another man with a black bag. There are also two other men in the line, one of them wearing glasses and a black jacket. In the background, there is a sign and a wall. The weather seems to be cloudy.", + "id": 34081 }, { - "image_path": "G:\\images\\combined\\005419_jpg.rf.5bc57848d26ba65cc402dcb50768fa7b.jpg", - "response": "In the image there is a large group of people working at a construction site. They are wearing blue or red hard hats and are standing on a yellow scaffolding. Some of them are also wearing blue or red shirts. There are many wooden poles in the scene, some are arranged in a square shape while others are placed in a row. There are also many steel bars in the scene, some are arranged in a vertical manner while others are placed on the right side of the image. In the background, there is a large crane operating in the distance.", - "id": 3481 + "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.c2922d06e85786fbc488f470cb745119.jpg", + "response": "In the image, there are a couple of people wearing face masks, with one of them carrying a bag on his shoulder. They are standing near a railing, and there is another person further away who is also wearing a face mask. The people are standing in front of a building, and there is a bus in the background. The image is taken on a street, and there are also some signs visible in the scene.", + "id": 34082 }, { - "image_path": "G:\\images\\combined\\00541_jpg.rf.2cb58b3df11e614a2a1e66648e7738eb.jpg", - "response": "A construction worker in a yellow jacket and blue hard hat is pointing to a wooden beam that another construction worker is holding. They are both wearing yellow jackets and blue hard hats.", - "id": 3482 + "image_path": "G:\\images\\combined\\02092_jpg.rf.937c21ad6676df16088f9df7b4d10675.jpg", + "response": "A man in a suit and a hard hat shaking hands with a man in a yellow reflective vest and hard hat. They are standing in front of a shipping yard.", + "id": 34083 }, { - "image_path": "G:\\images\\combined\\00541_jpg.rf.f8bde4311d7010c62f2a9b1459f44228.jpg", - "response": "In the image there are two people wearing blue and yellow work wear. They are working on a construction site and are wearing blue hard hats. They are working on a wooden structure.", - "id": 3483 + "image_path": "G:\\images\\combined\\02092_jpg.rf.c05c0e4dd26c552bd780c50d39f618fb.jpg", + "response": "A construction worker and a man in a suit shaking hands.", + "id": 34084 }, { - "image_path": "G:\\images\\combined\\005420_jpg.rf.00a27a6a8330f7f665994c9c02f18336.jpg", - "response": "A man in a white shirt is pointing at something.", - "id": 3484 + "image_path": "G:\\images\\combined\\02095_jpg.rf.4b1cae4a9e5571e7a457d7eb93a68b1e.jpg", + "response": "In the image there are two construction workers wearing safety gear. They are working on a construction site that has a unfinished concrete wall. They are both crouched down working on something with the wall behind them. There are rebar sticking out of the unfinished wall.", + "id": 34085 }, { - "image_path": "G:\\images\\combined\\005420_jpg.rf.f803b85686ca4c76ed0cf06dab311bef.jpg", - "response": "A man in a white shirt is pointing at something.", - "id": 3485 + "image_path": "G:\\images\\combined\\02095_jpg.rf.70d479de751a9160fbd385a49078ab53.jpg", + "response": "In the image there are two construction workers working on a building site. They are both crouched down and wearing high visibility vests. The man on the left is wearing a white shirt and a green hard hat, the man on the right is wearing a yellow hard hat and an orange high visibility vest. They are both working on a concrete structure that has rebar sticking out of it.", + "id": 34086 }, { - "image_path": "G:\\images\\combined\\005421_jpg.rf.5f71f3ec9e8ea4a3d895d688e376c4cb.jpg", - "response": "A couple of men working on a wall.", - "id": 3486 + "image_path": "G:\\images\\combined\\020a2365e1f27852.jpg", + "response": "The image shows a group of people standing around a small car with an open trunk. There are two men standing near the car, one on the left and one on the right, both looking at the vehicle. Another man is kneeling down next to the car on the driver's side. There is a third person standing further back near the back of the car. A fourth person is standing near the front of the car. There are two bicycles in the scene, one near the left side of the image and another near the right side. A bench is visible on the right side of the image. There are also two trucks in the scene, one on the right side and one near the center.", + "id": 34087 }, { - "image_path": "G:\\images\\combined\\005422_jpg.rf.12503de8d361b81079b0b96f0f844881.jpg", - "response": "In the image there is a factory in which a worker is wearing a hard hat and looking at a blueprint. The factory has several large metal objects and the worker is standing next to a metal object. There are also two other people in the factory, one in the background on the right and the other in the far background on the left.", - "id": 3487 + "image_path": "G:\\images\\combined\\020a30ada37ca2d4.jpg", + "response": "A Super Tomcat plane is parked on a runway.", + "id": 34088 }, { - "image_path": "G:\\images\\combined\\005423_jpg.rf.061378b6306f26e3f55feb002afff685.jpg", - "response": "A group of workers in orange are working on a large pipe.", - "id": 3488 + "image_path": "G:\\images\\combined\\020aba3fb6452ba2.jpg", + "response": "A man and a woman standing in a kitchen preparing food.", + "id": 34089 }, { - "image_path": "G:\\images\\combined\\005423_jpg.rf.abd008e43e127c42c9594ec0fcde2f4f.jpg", - "response": "A crew of three men in orange work uniforms and yellow hard hats are working on a large metal pipe. They are all holding tools and one man is cutting into the pipe with a saw. They are wearing gloves and the man in the foreground is also wearing a pair of safety glasses. The pipe is on the ground and the men are standing around it.", - "id": 3489 + "image_path": "G:\\images\\combined\\020b21575eac6d6f.jpg", + "response": "a street with many police cars parked on it", + "id": 34090 }, { - "image_path": "G:\\images\\combined\\005424_jpg.rf.06e22ae9ec20942093e959b17cb68eae.jpg", - "response": "A group of men standing in front of a building.", - "id": 3490 + "image_path": "G:\\images\\combined\\020c3a6ab62e4020.jpg", + "response": "A collection of three different gauges.", + "id": 34091 }, { - "image_path": "G:\\images\\combined\\005424_jpg.rf.7c2a46dbe4f2fda5b298ee040cec56e3.jpg", - "response": "A group of men standing in front of a building.", - "id": 3491 + "image_path": "G:\\images\\combined\\020cd9ff2ed54ee5.jpg", + "response": "Two men(52,165),(386,997)(122,3),(949,999) wearing soccer jerseys(534,207),(948,888)(56,400),(371,997) and a woman(354,180),(631,989) smiling for the camera.", + "id": 34092 }, { - "image_path": "G:\\images\\combined\\005425_jpg.rf.4cb76cf93f7680c766abfab72f69c2dd.jpg", - "response": "A group of men working on a construction site.", - "id": 3492 + "image_path": "G:\\images\\combined\\020d0655f70dd297.jpg", + "response": "A page from a book showing three different types of Toyota trucks.", + "id": 34093 }, { - "image_path": "G:\\images\\combined\\005425_jpg.rf.8e2dde395c855159643a7c744690d2db.jpg", - "response": "a group of men working on a construction site", - "id": 3493 + "image_path": "G:\\images\\combined\\020ea674c1d6c656.jpg", + "response": "a close up of a blackberry phone on display", + "id": 34094 }, { - "image_path": "G:\\images\\combined\\005426_jpg.rf.3037ad6dff4903c1fbfde510bdcb14e3.jpg", - "response": "A group of men in suits walking across a yard.", - "id": 3494 + "image_path": "G:\\images\\combined\\020eabd2ede58efe.jpg", + "response": "A red and black trolley parked on the side of a snowy street.", + "id": 34095 }, { - "image_path": "G:\\images\\combined\\005426_jpg.rf.f96b66b427fc5a5c707798aa11a76011.jpg", - "response": "A group of men in suits walking across a yard.", - "id": 3495 + "image_path": "G:\\images\\combined\\020f0ea4d2eb8876.jpg", + "response": "The back of a blue Nissan Juke with a California license plate that says 562.", + "id": 34096 }, { - "image_path": "G:\\images\\combined\\005427_jpg.rf.7612f871864baa7c85f07dc3e55eca0a.jpg", - "response": "A man in a hard hat and safety vest is standing on a ladder next to a large red piece of equipment. He is wearing a helmet and looking down at the ground.", - "id": 3496 + "image_path": "G:\\images\\combined\\02102_jpg.rf.0f8a296dd361541232bc6f358b33a8ba.jpg", + "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", + "id": 34097 }, { - "image_path": "G:\\images\\combined\\005427_jpg.rf.9248e80a1434dfd85036f391fa9ec823.jpg", - "response": "A man in a suit and hard hat climbing a ladder.", - "id": 3497 + "image_path": "G:\\images\\combined\\02102_jpg.rf.2d3208349cc3e6558136e06529daed6f.jpg", + "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", + "id": 34098 }, { - "image_path": "G:\\images\\combined\\005428_jpg.rf.9247bb3a7312220ef513974c386cce3e.jpg", - "response": "A woman in a flowered shirt is being handed a hard hat.", - "id": 3498 + "image_path": "G:\\images\\combined\\02122_jpg.rf.2854ec4726e5d11a9803b89a63f4d9bb.jpg", + "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", + "id": 34099 }, { - "image_path": "G:\\images\\combined\\005428_jpg.rf.f059430796904f79af8011fc80941014.jpg", - "response": "A woman in a floral dress is holding a white helmet.", - "id": 3499 + "image_path": "G:\\images\\combined\\02122_jpg.rf.2fb96063a0e9bc86ce865161b848f576.jpg", + "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", + "id": 34100 }, { - "image_path": "G:\\images\\combined\\005429_jpg.rf.24f85476514a1c86a120d9a5929204e5.jpg", - "response": "A group of construction workers are standing around in a circle.", - "id": 3500 + "image_path": "G:\\images\\combined\\02132cfd627a3c45.jpg", + "response": "A white display stand holding a book, a necklace, and a container of Tocca perfume.", + "id": 34101 }, { - "image_path": "G:\\images\\combined\\005429_jpg.rf.4c6c09fcd3551ce084ab3b7a2f69f909.jpg", - "response": "A group of people wearing hard hats are sitting on the ground.", - "id": 3501 + "image_path": "G:\\images\\combined\\02144c6ad4ca3466.jpg", + "response": "A white table with two chocolate bars on it. The chocolate bar on the left is red and says Chocolove on the wrapper. The chocolate bar on the right is orange and says orange peel in dark chocolate on the wrapper.", + "id": 34102 }, { - "image_path": "G:\\images\\combined\\00542_jpg.rf.1d5daac9d4fd989df9ce92c0915cf250.jpg", - "response": "The image shows a group of men in blue shirts and white shorts standing on a bridge that is under construction. They are wearing hard hats and looking over the unfinished bridge. The bridge is a brown color and is located in China.", - "id": 3502 + "image_path": "G:\\images\\combined\\021508ba303f584b.jpg", + "response": "a man wearing a yellow jacket with the word wow on it", + "id": 34103 }, { - "image_path": "G:\\images\\combined\\005430_jpg.rf.67e530da1d3f4e8de26f442900cc14af.jpg", - "response": "An electrician in a yellow shirt and yellow hat is showing a woman in a white shirt how to use a grey digital meter. They are both standing in a stairwell.", - "id": 3503 + "image_path": "G:\\images\\combined\\0215629bb5dc5137.jpg", + "response": "A triangular orange traffic sign that says Polizei in black letters.", + "id": 34104 }, { - "image_path": "G:\\images\\combined\\005430_jpg.rf.8897a7e3b17656a931991ebeed9a5c6a.jpg", - "response": "In the image, a man is wearing a yellow shirt and a yellow helmet. He is standing next to a woman and is touching the wires of an electrical panel. The woman is holding a cell phone in her hand. They are both in front of a staircase.", - "id": 3504 + "image_path": "G:\\images\\combined\\02157433d9848095.jpg", + "response": "a man is standing in the rain holding a sign that says brass balls not tar balls.", + "id": 34105 }, { - "image_path": "G:\\images\\combined\\005431_jpg.rf.061ebe895ede4505f6400d5afef48b13.jpg", - "response": "In the image, several workers are\u4fee\u590d\u8457\u88ab\u6d2a\u6c34\u51b2\u6bc1\u7684\u516c\u8def\u3002 They are wearing white hard hats and yellow reflective vests. One worker is holding a rope, another is holding a large spool of wire, and the third worker is carrying a tool bag. The sky is overcast and there is a mountain in the background. The ground is wet and muddy from the flood waters.", - "id": 3505 + "image_path": "G:\\images\\combined\\02159ea52f03af41.jpg", + "response": "A train car with graffiti on the side sitting on the tracks.", + "id": 34106 }, { - "image_path": "G:\\images\\combined\\005431_jpg.rf.d07e2b571c583558c1ec398614446c33.jpg", - "response": "In the image, several workers are seen standing on a muddy road. Some of them are wearing green and yellow uniforms, and yellow helmets are also visible. Some workers are holding sticks, and there are two black cables visible on the left side of the image. The background shows a mountain and a green field. The workers are wearing yellow helmets and white shirts.", - "id": 3506 + "image_path": "G:\\images\\combined\\0216678efae0b34a.jpg", + "response": "A medicine cabinet with various items inside.", + "id": 34107 }, { - "image_path": "G:\\images\\combined\\005432_jpg.rf.4015b32bc3339df9eb0195b03cc3e4de.jpg", - "response": "A group of men in suits and construction hats are walking across a bridge. One of the men is wearing a red construction hat and a white shirt. Another man is wearing a blue construction hat. They are all walking together.", - "id": 3507 + "image_path": "G:\\images\\combined\\0216ced408c377e7.jpg", + "response": "The image shows a group of cheerleaders for the Oregon Ducks. They are standing on a set of stairs and are holding pom-poms. The cheerleaders are wearing green and yellow uniforms. One of the cheerleaders is holding a large pom-pom while the others are holding smaller pom-poms. The cheerleaders are posing for a picture and are making the letter O with their hands.", + "id": 34108 }, { - "image_path": "G:\\images\\combined\\005432_jpg.rf.e46ad2694baab552d7e9ac8bd42b4dd4.jpg", - "response": "A group of men in suits and construction hats are walking down a sidewalk. Some of the men are holding pink papers. In the background, there are buildings and a city skyline.", - "id": 3508 + "image_path": "G:\\images\\combined\\0216ee6a402e3e75.jpg", + "response": "A pitcher in a black and yellow jersey is winding up to throw a baseball.", + "id": 34109 }, { - "image_path": "G:\\images\\combined\\005433_jpg.rf.6a31f90591cae4f649e7d551ce6f8532.jpg", - "response": "The image shows three men working on a piece of equipment in a factory. One man is using a cutting torch, which is producing a bright flame, while the other two are standing nearby. They are all wearing hard hats.", - "id": 3509 + "image_path": "G:\\images\\combined\\0217600e51a09374.jpg", + "response": "A row of books on a shelf.", + "id": 34110 }, { - "image_path": "G:\\images\\combined\\005433_jpg.rf.c4681467429201c3e7999c630574e703.jpg", - "response": "The image shows three men working in a room. One man is on the left, wearing a black shirt and a red helmet and is using a cutting torch on a piece of metal. Another man is in the middle, wearing a white and brown checkered shirt and a red helmet. He is standing closer to the right side of the room. The third man is on a platform on the right side of the room, wearing a white shirt and a black hat. He is using a tool to hold a large metal pipe in place. The room is dimly lit and has a concrete floor. There is a large metal pipe running across the middle of the room and a second metal pipe on the right side of the room.", - "id": 3510 + "image_path": "G:\\images\\combined\\021764ab0167feae.jpg", + "response": "A yellow Chevrolet school bus driving down a street.", + "id": 34111 }, { - "image_path": "G:\\images\\combined\\005434409d2a7602.jpg", - "response": "a man wearing a black shirt with the words \"they've left it with no choice, be to start a revolution\" written on it.", - "id": 3511 + "image_path": "G:\\images\\combined\\0217fd34cf15db9b.jpg", + "response": "A cardboard box of Preketes Fine Confections sits on a table. The box is pink and white and has a pink ribbon around the bottom. The box is from Ann Arbor, Michigan. The box is labeled One Pound Net.", + "id": 34112 }, { - "image_path": "G:\\images\\combined\\005434_jpg.rf.cec8a1243d32a27a46accc92ccf17995.jpg", - "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching down and appears to be working on a large construction site. There are many steel rods scattered around the worker and the site appears to be a large grid of steel rebar.", - "id": 3512 + "image_path": "G:\\images\\combined\\021870e9422ddd34.jpg", + "response": "A man sitting on a couch holding a glass of wine and a cat standing on the arm of the couch.", + "id": 34113 }, { - "image_path": "G:\\images\\combined\\005434_jpg.rf.dc6386c967adb653cdbaf907ef87c248.jpg", - "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching on a construction site surrounded by iron rods. The iron rods extend out in all directions and some of them are connected together.", - "id": 3513 + "image_path": "G:\\images\\combined\\021889a4d8d3bd64.jpg", + "response": "A laptop screen that is updating.", + "id": 34114 }, { - "image_path": "G:\\images\\combined\\005435_jpg.rf.532943f088b2e45948c722cd93d6ecf6.jpg", - "response": "A group of people standing in front of a building site with a white and red sign that says '\u4e2d\u570b\u5efa\u7bc9' (Zg\u00f9ch\u00e1 J\u00ecsh\u00f9) which is the Chinese characters for 'China Building'. They are all wearing red hats.", - "id": 3514 - }, - { - "image_path": "G:\\images\\combined\\005435_jpg.rf.e24725565bacd98395c2449ee3d538d6.jpg", - "response": "A group of people standing in front of a building site wearing high visibility jackets and hard hats.", - "id": 3515 - }, - { - "image_path": "G:\\images\\combined\\005436_jpg.rf.878b0dcda5dc5a0add260f27c7609c70.jpg", - "response": "A man in a uniform and hard hat is welding two pieces of metal together. He is wearing a yellow hard hat, safety goggles, and work gloves. He is crouching down over the metal and holding a welding rod. The background shows a construction site with a metal structure and other metal frameworks in the distance.", - "id": 3516 - }, - { - "image_path": "G:\\images\\combined\\005436_jpg.rf.ce866001c85649d4d376e2a60fad605f.jpg", - "response": "A man in a uniform and hard hat is welding a metal bar on a construction site. He is wearing a yellow hard hat and dark sunglasses. There are several other metal bars visible in the scene. In the background, there is a large structure under construction. The sky is overcast and there are no other people visible in the image.", - "id": 3517 - }, - { - "image_path": "G:\\images\\combined\\005437_jpg.rf.4fff0b3a7c7e723465f1c7a85d183d9a.jpg", - "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is sitting on the structure while others are standing on the ground and on a ladder. They are working on a metal frame that is white and silver. The sky is blue and there are no clouds in the sky.", - "id": 3518 - }, - { - "image_path": "G:\\images\\combined\\005437_jpg.rf.d4f4a6fef01f793c459ab64cd759ff55.jpg", - "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is on a ladder working on the metal structure.", - "id": 3519 - }, - { - "image_path": "G:\\images\\combined\\005438_jpg.rf.2012689ebd602b4adc60603afb563cdc.jpg", - "response": "The image shows a group of technicians working on a power line in a small village. There are five technicians in the picture, four of them are wearing yellow hard hats and white T-shirts, and the fifth one is wearing a blue T-shirt. They are standing in a line on the right side of the image, with one technician in the middle holding a tool. In the background, there is a tall house with a grey roof and walls, and a few other technicians are working on the power line in front of the house. The sky is blue, and the ground is covered with green grass and red bricks.", - "id": 3520 - }, - { - "image_path": "G:\\images\\combined\\005438_jpg.rf.a43a70cb45ad640acc833bd561d9f235.jpg", - "response": "A few men in blue jumpsuits and yellow hard hats are working on a power line on the side of a road. There is a house in the background.", - "id": 3521 - }, - { - "image_path": "G:\\images\\combined\\005439_jpg.rf.184bb558a77ed9452b7916d425dbed34.jpg", - "response": "A group of workers in red uniforms and yellow helmets are working on a power tower and a transformer. The sky is covered with white clouds.", - "id": 3522 - }, - { - "image_path": "G:\\images\\combined\\005439_jpg.rf.1d4c0c25d467c0d62d55d78183c24279.jpg", - "response": "A group of workers in red uniforms and yellow helmets are working on a power pole. They are installing equipment on the transformer.", - "id": 3523 - }, - { - "image_path": "G:\\images\\combined\\00543_jpg.rf.3346a3821f7b61542a0ea50856b9b143.jpg", - "response": "Two business men in suits looking at a blueprint of a construction site.", - "id": 3524 - }, - { - "image_path": "G:\\images\\combined\\00543_jpg.rf.4477718389bb08cab03046ac81019bdf.jpg", - "response": "Two business men in suits looking at a blueprint of a construction site.", - "id": 3525 - }, - { - "image_path": "G:\\images\\combined\\005440_jpg.rf.36e216fac2682ef7885c0c964f0f7240.jpg", - "response": "A man in a suit and a red hard hat is walking with a group of people. They are all wearing hard hats. The man in front is also wearing a black suit. To the left of the group is a red and white sign. Behind the group is a building under construction. There is also a tree to the left of the group.", - "id": 3526 - }, - { - "image_path": "G:\\images\\combined\\005440_jpg.rf.b7000595508c88f31397a8a2a9d37570.jpg", - "response": "A group of people walking down a street.", - "id": 3527 - }, - { - "image_path": "G:\\images\\combined\\005441_jpg.rf.c1bc2837fc2ad7176a434b7b6294fe51.jpg", - "response": "The image shows a construction site in a city. A red and white crane is operating in the background, and two workers are pouring concrete on the ground. The workers are wearing yellow helmets, and one of them is holding a hose. In the foreground, there is a large mass of red rebar mesh, and the workers are standing on it. The sky is overcast, and there are a few buildings in the vicinity, including one on the far left and another on the far right.", - "id": 3528 - }, - { - "image_path": "G:\\images\\combined\\005441_jpg.rf.c37ded12f012eab4816bacebe2c7b5c9.jpg", - "response": "A construction site with a crane and workers.", - "id": 3529 - }, - { - "image_path": "G:\\images\\combined\\005442_jpg.rf.669e8059f855b0f6e9b9526afe6aaefa.jpg", - "response": "A group of people in red and grey hard hats are gathered in a large hole in the ground. The people are wearing a variety of different colored hard hats, with some wearing red, some wearing grey, and one person wearing yellow. They are standing in ankle-deep mud and water.", - "id": 3530 - }, - { - "image_path": "G:\\images\\combined\\005442_jpg.rf.a713136990a33365665911426887c31f.jpg", - "response": "A group of people in red and grey clothes and yellow helmets are standing in a pit in the ground. The pit is filled with water and mud and there are rocks and boulders around. Some people are holding tools.", - "id": 3531 - }, - { - "image_path": "G:\\images\\combined\\005443_jpg.rf.d146ff235f39f3ad6383624da367abcf.jpg", - "response": "A construction worker with a big smile on his face.", - "id": 3532 - }, - { - "image_path": "G:\\images\\combined\\005443_jpg.rf.fb3b5212b89584861580ce02a6f2450f.jpg", - "response": "A construction worker with a yellow hard hat and orange jacket.", - "id": 3533 - }, - { - "image_path": "G:\\images\\combined\\005444_jpg.rf.7cc394b2b3c91b27e59eabfb6bfb5d4d.jpg", - "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform and appear to be focused on their tasks. In the background, there is a truck and another piece of machinery. The sky is dark and there are a few stars visible.", - "id": 3534 - }, - { - "image_path": "G:\\images\\combined\\005444_jpg.rf.ce22776effddce6fe2a9c006cfc0959a.jpg", - "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform above the ground, and there is a large drill bit attached to a piece of machinery. The workers are wearing orange safety gear, including hard hats and safety boots. There is a large storage tank visible in the background. The image is taken at a distance and the workers are small in relation to the large machinery.", - "id": 3535 - }, - { - "image_path": "G:\\images\\combined\\005445_jpg.rf.6ad2883451b523ea87155d686df53943.jpg", - "response": "a group of people standing in a construction site", - "id": 3536 - }, - { - "image_path": "G:\\images\\combined\\005445_jpg.rf.f216afc93c49631004a29b3432bc3e4c.jpg", - "response": "a group of people standing in front of a large construction site", - "id": 3537 - }, - { - "image_path": "G:\\images\\combined\\005446_jpg.rf.ab2363a04a14adc1f446098ad56d7742.jpg", - "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the power box. The man on the right is also looking at the power box. There is a crowd of people in the background.", - "id": 3538 - }, - { - "image_path": "G:\\images\\combined\\005446_jpg.rf.d2edcf998e2b4dffda505d4b4a3d2b74.jpg", - "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the box. The man on the right is also looking at the box. There is a crowd of people in the background. The power box says MNS on it.", - "id": 3539 - }, - { - "image_path": "G:\\images\\combined\\005447_jpg.rf.e14102efda2bf83fdfa9263c9cdaf066.jpg", - "response": "A construction crew working on a large construction site.", - "id": 3540 - }, - { - "image_path": "G:\\images\\combined\\005447_jpg.rf.e9d932b77cc3a1a698d78b50826dc94c.jpg", - "response": "A construction crew is working on a construction site. There is a man operating a large piece of machinery, and three other men standing near the machinery. One of the men is holding a large ruler. There is a shovel on the ground near the men.", - "id": 3541 - }, - { - "image_path": "G:\\images\\combined\\005448_jpg.rf.acd1619e0925a5336cac854549ca2f8a.jpg", - "response": "A group of men in camouflage uniforms and hard hats are working on a construction site. They are climbing down a steep set of stairs and one man is holding a large metal bar. The men are also wearing gloves and some have backpacks.", - "id": 3542 - }, - { - "image_path": "G:\\images\\combined\\005449_jpg.rf.6604212736c75e7eb57e39909bbffdb9.jpg", - "response": "The image shows a worker in a yellow and white jacket and blue hard hat welding two metal pipes together with a torch. The worker is on a concrete floor and there is a bucket to the right of the pipe on the left. There are also sparks flying from the welding.", - "id": 3543 - }, - { - "image_path": "G:\\images\\combined\\005449_jpg.rf.c3c0f1c26ce6dbf3f5b55f9ff9bbd96b.jpg", - "response": "In the image, a worker is welding steel in an industrial setting. They are wearing a yellow and white jacket, a blue hard hat, and grey pants. They are focused on their work, which involves using a yellow tool with sparks flying. The background is a bit blurry, but there is a wooden pole on the left and a black container on the right.", - "id": 3544 - }, - { - "image_path": "G:\\images\\combined\\005450_jpg.rf.039dda471357548a38c52a7b2282de05.jpg", - "response": "The photo shows men in suits standing in front of a white and red building. There is a red banner on the right with white characters.", - "id": 3545 - }, - { - "image_path": "G:\\images\\combined\\005450_jpg.rf.c8547097f7bb5e7197470fd366f4083b.jpg", - "response": "A group of men in suits standing in front of a white building.", - "id": 3546 - }, - { - "image_path": "G:\\images\\combined\\005451_jpg.rf.14b7e759f76ff92a165efd0c31e2e073.jpg", - "response": "The photo shows a group of people wearing black, yellow and orange helmets. They are dressed in clothes and some of them are wearing gloves. In their hands, they are holding a newspaper, a card and a magazine. The background shows a power pole and a road.", - "id": 3547 - }, - { - "image_path": "G:\\images\\combined\\005451_jpg.rf.cf19151ea18e4e8a2737cad8510958df.jpg", - "response": "A group of people standing around each other.", - "id": 3548 - }, - { - "image_path": "G:\\images\\combined\\005452_jpg.rf.549d572aa245e1048fcb301332964873.jpg", - "response": "In the picture there are workers in a tunnel. Some writing on the wall is not clear, but there seems to be a signature on the right. The ground is covered with coal\u6e23, and some large steel pipes are placed on the right side of the picture. Some workers in yellow and orange protective clothing are standing or crouching in the tunnel, watching something.", - "id": 3549 - }, - { - "image_path": "G:\\images\\combined\\005452_jpg.rf.c26a89355ac0a6e5aabf73b32342fe8f.jpg", - "response": "The image shows a group of workers in a tunnel. They are wearing yellow, orange, and gray vests and hard hats of various colors. Some workers are standing in the foreground, while others are in the background. The tunnel has a white ceiling and walls that are a mix of white and gray. There is a large piece of equipment in the middle of the floor, and several long pipes are laid out next to it. The floor is covered in small rocks and debris. The image is taken in a construction site.", - "id": 3550 - }, - { - "image_path": "G:\\images\\combined\\005453_jpg.rf.9aa928af9b6711ce76a66bf401c84e2d.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a black shirt. They are holding a metal rod with a purple torch on the end of it. The person is also standing next to a large metal girder. In the background there is a large factory with yellow and blue machinery.", - "id": 3551 - }, - { - "image_path": "G:\\images\\combined\\005454_jpg.rf.90c55d93e1eac8819eeaee8a1b58ccbc.jpg", - "response": "A group of men standing around each other.", - "id": 3552 - }, - { - "image_path": "G:\\images\\combined\\005454_jpg.rf.f2759c5b1c2afe2d638ce673d86ae5f9.jpg", - "response": "A group of men standing around each other", - "id": 3553 - }, - { - "image_path": "G:\\images\\combined\\005455_jpg.rf.289046515cf9f6a2b19efcb53f1010f2.jpg", - "response": "A group of people working on a construction site.", - "id": 3554 - }, - { - "image_path": "G:\\images\\combined\\005455_jpg.rf.2ee46feea7d17f58b9ade2d97414c20d.jpg", - "response": "In the image, there are several people working in a construction site. They are wearing uniforms and helmets. Some of them are welding steel bars, while others are doing other tasks. In the background, there is a large banner with Chinese characters written on it.", - "id": 3555 - }, - { - "image_path": "G:\\images\\combined\\005456_jpg.rf.1c54bf80d90c94709ea5c0122f3892ef.jpg", - "response": "A group of men standing next to each other.", - "id": 3556 - }, - { - "image_path": "G:\\images\\combined\\005457_jpg.rf.bca13d6b988714fd15bf7ca41290a73a.jpg", - "response": "a group of people standing around each other", - "id": 3557 - }, - { - "image_path": "G:\\images\\combined\\005457_jpg.rf.f13c6a06399d44b9a24f5cf8503b01d9.jpg", - "response": "a group of men standing around talking to each other", - "id": 3558 - }, - { - "image_path": "G:\\images\\combined\\005458_jpg.rf.a919b51362776eaeb310eef7f962d990.jpg", - "response": "A group of men are working on fixing a power line that is covered in ice. They are standing on a snowy hillside and are dressed in black. One man is wearing a red hard hat. Another man is using a tool to help remove the ice from the power line. There is a pile of snow and ice to the left of the men. In the background, there are trees covered in ice.", - "id": 3559 - }, - { - "image_path": "G:\\images\\combined\\005458_jpg.rf.b86703b6ed51d39bca57092094f866f7.jpg", - "response": "A group of men are working on fixing a power line that is leaning over. They are standing on a snowy hillside and there is a large tree covered in ice nearby.", - "id": 3560 - }, - { - "image_path": "G:\\images\\combined\\005459_jpg.rf.506d414be02cf4b00d50c18cddcaccc3.jpg", - "response": "In the image there are five men(107,618),(469,988)(409,537),(538,928)(608,567),(996,997)(459,552),(686,938) working on a snowy mountain side. They are wearing hard hats(437,535),(515,582)(797,566),(978,687)(293,618),(408,695) and orange jumpsuits(410,589),(537,919)(696,670),(996,941)(461,601),(684,927). They are standing on a rocky cliff and appear to be working on a large metal structure.", - "id": 3561 - }, - { - "image_path": "G:\\images\\combined\\005459_jpg.rf.6b18961fb36ae776d6000b614d5e26ab.jpg", - "response": "A group of people working on a power line in the snow.", - "id": 3562 - }, - { - "image_path": "G:\\images\\combined\\00545ded62f5d8e0.jpg", - "response": "A street sign that says \"Ministry of Birthdays\" on it with an arrow pointing up.", - "id": 3563 - }, - { - "image_path": "G:\\images\\combined\\00545_jpg.rf.25a3f0d888c2494b178109029a378a20.jpg", - "response": "A construction worker crouches down and uses a tool to make adjustments to a metal beam. The metal is painted silver and the worker is wearing a grey shirt, dark grey pants, a blue hat, and brown shoes. He is working on a construction site that has large pieces of concrete.", - "id": 3564 - }, - { - "image_path": "G:\\images\\combined\\005460_jpg.rf.364f17513aa24fbd573f92628992dc69.jpg", - "response": "In the image there are three people, two of them are wearing yellow and white safety vests and yellow and white hard hats. They are standing on a construction site which has scaffolding and lumber stacked around. They are looking at blueprints which are placed on a wooden table.", - "id": 3565 - }, - { - "image_path": "G:\\images\\combined\\005460_jpg.rf.c192e4210b0271c87b0c88ad0c170c42.jpg", - "response": "In the image there are three people, all of them are wearing yellow vests and helmets. They are on a construction site, two of them are looking at a blueprint that is placed on a wooden table. The table is located in the foreground, left of the people. The people are standing on a platform that is made of wood, it is located in the background, center of the image. There are several wooden planks around the platform, some of them are cut in size. In the background, there are scaffolding and a wooden structure.", - "id": 3566 - }, - { - "image_path": "G:\\images\\combined\\005461_jpg.rf.579e36a711b457b3d078d56a28567025.jpg", - "response": " A man(392,109),(804,996) wearing a yellow hard hat(495,109),(670,273) and blue shirt(505,388),(805,997) with yellow writing(532,494),(629,629) on it is carrying a long rod(273,449),(566,567) over his shoulder while standing in a cave.", - "id": 3567 - }, - { - "image_path": "G:\\images\\combined\\005461_jpg.rf.b2019668a08ab2890d2d5b26c86866ff.jpg", - "response": "A man wearing a yellow hard hat and work clothes, carrying a long rod over his shoulder. He is standing in a large tunnel with a shovel leaning against the wall behind him.", - "id": 3568 - }, - { - "image_path": "G:\\images\\combined\\005462_jpg.rf.63b248d6dbe9c84f2a9175dc6c4001d3.jpg", - "response": "The image shows three people standing next to a dark SUV with an open trunk. The people are loading bags, specifically red ones, into the trunk. There are two bags visible, one on the left and one on the right, and another bag in the trunk in the middle. The people are all wearing winter coats, with one person on the left wearing a dark gray one, the person in the middle wearing a dark brown one, and the person on the right wearing a light blue one. The person on the left is also wearing glasses. The background includes a building with a red and white facade, and a white rectangular structure with a row of four white squares on it.", - "id": 3569 - }, - { - "image_path": "G:\\images\\combined\\005462_jpg.rf.e33fc4dd0c555697ed68e4f8722975d3.jpg", - "response": "The image shows three people standing next to a dark SUV with its hatchback open. The person on the left, who is wearing a brown jacket and glasses, is handing an orange bag to the person in the middle, who is wearing a dark grey jacket. The person in the middle is in turn handing an orange bag to the person on the right, who is wearing a light blue jacket. The person on the right is also holding an orange bag. The three people are standing quite close to one another, with the person on the left being on the left side of the car and the person on the right being on the right side of the car. The person in the middle is standing between the two other people.", - "id": 3570 - }, - { - "image_path": "G:\\images\\combined\\005463_jpg.rf.ac05402581957d7f85676195cc02ddcb.jpg", - "response": "A large pipe is being worked on by several men. The pipe is brown and is in the ground, with a large section of it dug out and being worked on by men wearing hard hats. There is a yellow and gray bulldozer next to the pipe, and a man in a black jacket is watching the work. The background is filled with dirt and rocks.", - "id": 3571 - }, - { - "image_path": "G:\\images\\combined\\005463_jpg.rf.e29ebad6f6b497f5924abc4db9158f80.jpg", - "response": "A large pipe is being worked on by several men. The pipe is located in a large pit in the ground and is surrounded by construction equipment. Some men are standing on the pipe itself, while others are standing around the pit.", - "id": 3572 - }, - { - "image_path": "G:\\images\\combined\\005464_jpg.rf.d3fb1b8851c85730c631c85840d662a7.jpg", - "response": "An image of a construction site with two workers in yellow hats. There is a pile of sand in the middle of the site and a pile of gravel on the right side. There are hoses on the ground and a few wooden boards.", - "id": 3573 - }, - { - "image_path": "G:\\images\\combined\\005465_jpg.rf.09f3b242ea4bb1f02859b4d3eda721d8.jpg", - "response": "A worker(0,442),(487,999) is fixing a pipe", - "id": 3574 - }, - { - "image_path": "G:\\images\\combined\\005466_jpg.rf.4f4842e15be4a7d05852271ef3d1e784.jpg", - "response": "The image shows three men in yellow hard hats and orange work vests, standing in front of a yellow piece of heavy machinery. The men are all wearing similar clothing, with their hair cut short. The middle man has a faint mustache and is looking straight ahead. The man on the left is smiling slightly and has a small amount of hair on his forehead. The man on the right has a double chin and his hair is sticking up.", - "id": 3575 - }, - { - "image_path": "G:\\images\\combined\\005467_jpg.rf.3df6f13e41e3918b9a553dab593a9a1f.jpg", - "response": "Men(478,517),(696,997)(169,426),(414,997) in front of a building", - "id": 3576 - }, - { - "image_path": "G:\\images\\combined\\005467_jpg.rf.8cf6246344f473d62b0c2daec1ee0087.jpg", - "response": "Men(478,516),(698,997)(169,425),(414,997) in front of a building", - "id": 3577 - }, - { - "image_path": "G:\\images\\combined\\005468_jpg.rf.02d77db2759a78afad73655aaeafb7ad.jpg", - "response": "An older man wearing a grey shirt and a orange hard hat.", - "id": 3578 - }, - { - "image_path": "G:\\images\\combined\\005468_jpg.rf.693b7ed32e953a7fbbe02a2760ecf6ea.jpg", - "response": "An older man wearing a grey work shirt and a orange hard hat is sitting on a concrete form with a trowel in his hand.", - "id": 3579 - }, - { - "image_path": "G:\\images\\combined\\005469_jpg.rf.19263bbc983120caa2973bb341a4d2ee.jpg", - "response": "An electrician is standing on a ladder next to a large transformer. He is wearing a gray shirt, a blue hat, and a tool belt around his waist. He is holding a red tool in his hand. The sky above him is overcast.", - "id": 3580 - }, - { - "image_path": "G:\\images\\combined\\005469_jpg.rf.d2ceb255c93d7534033a9fa62585910a.jpg", - "response": "An electrician is on a ladder working on an electrical box.", - "id": 3581 - }, - { - "image_path": "G:\\images\\combined\\00546_jpg.rf.cf45c094fb087ce80d7c5db82923bc0b.jpg", - "response": "A group of men in hard hats and work clothes are standing in a large room. Some men are wearing orange and blue work clothes, while others are wearing navy blue work clothes. They are standing in front of a large concrete wall and a metal beam. There is a large metal pipe on the left side of the room and a door on the right side. There is also a large screen on the wall behind the men.", - "id": 3582 - }, - { - "image_path": "G:\\images\\combined\\005470_jpg.rf.5561cb7e1cbef3146c1daf68c4ce125a.jpg", - "response": "two construction engineers observing a construction site with cranes in the background", - "id": 3583 - }, - { - "image_path": "G:\\images\\combined\\005470_jpg.rf.b89bf3e697d7f2e81f267e43b7d545e1.jpg", - "response": "In the image there are two men wearing orange safety helmets and one of them is wearing a high visibility vest. They are both standing in front of a construction site with three cranes working.", - "id": 3584 - }, - { - "image_path": "G:\\images\\combined\\005471_jpg.rf.2a355fa3e89ca30faf6cbc9dbdb8c4c0.jpg", - "response": "A group of three men standing in a room that is under construction. They are all wearing hard hats and masks. The room has a wooden beam on the ceiling and walls that are being torn down. There are also two ladders in the room.", - "id": 3585 - }, - { - "image_path": "G:\\images\\combined\\005471_jpg.rf.cf1ce46d2ebaf9dfdae2791586ba1860.jpg", - "response": "A group of three men in hard hats and masks stand in a room with exposed brick walls and debris on the ground. The room has a wooden roof that has been partially removed. There are ladders on the left side of the room.", - "id": 3586 - }, - { - "image_path": "G:\\images\\combined\\005472_jpg.rf.52b80aed4d419933c814a86d1a4b296d.jpg", - "response": "A group of men in suits standing around a table with a model city on it.", - "id": 3587 - }, - { - "image_path": "G:\\images\\combined\\005473_jpg.rf.479354716aa3a983418ac23648e7fcac.jpg", - "response": "A construction worker in a yellow hard hat and orange uniform sits on the ground next to a pile of rebar. They are holding a large flat shovel and appear to be working on the rebar.", - "id": 3588 - }, - { - "image_path": "G:\\images\\combined\\005473_jpg.rf.76468b7a8922cd67142fc1dd0513462a.jpg", - "response": "A construction worker in a red uniform and yellow hard hat is kneeling down and holding a long wooden stick. They are in a construction area with a concrete floor and many metal bars. There is a bucket behind the worker and some writing on the floor.", - "id": 3589 - }, - { - "image_path": "G:\\images\\combined\\005474_jpg.rf.f5d94c4da0884a262cf0d64e9726d53d.jpg", - "response": "A man in a black jacket and a hard hat is hosing off the deck of a ship.", - "id": 3590 - }, - { - "image_path": "G:\\images\\combined\\005475_jpg.rf.a04fd7b7cd6d9a57cf415ff4a2f048d8.jpg", - "response": "A man in a white shirt and red hard hat is talking to another man in a white shirt and red hard hat. They are standing in front of a wall of pipes and scaffolding.", - "id": 3591 - }, - { - "image_path": "G:\\images\\combined\\005475_jpg.rf.b3fd836975a1616480646ff62198c554.jpg", - "response": "A construction worker in a red hard hat is showing another construction worker something on the wall.", - "id": 3592 - }, - { - "image_path": "G:\\images\\combined\\005476_jpg.rf.547d2d1d9f3bca79caf2e1adacf14762.jpg", - "response": "A construction worker is using a long tool to smooth out the concrete.", - "id": 3593 - }, - { - "image_path": "G:\\images\\combined\\005476_jpg.rf.a812d4120c5f1a819c3f8b267fe7033b.jpg", - "response": "A construction worker is using a long tool with a wooden handle to smooth out concrete.", - "id": 3594 - }, - { - "image_path": "G:\\images\\combined\\005477_jpg.rf.05dbd77854ecacd57337fc9cc70b1466.jpg", - "response": "A group of people standing around a van.", - "id": 3595 - }, - { - "image_path": "G:\\images\\combined\\005477_jpg.rf.700d15bcb6b81ee570873797e69b96b7.jpg", - "response": "a group of people standing in front of a van", - "id": 3596 - }, - { - "image_path": "G:\\images\\combined\\005478_jpg.rf.1d18aec7eaa05d5122af0e370e61fdae.jpg", - "response": "A man wearing a yellow hard hat and holding a power drill stands in front of a building under construction. The building is a large structure with many tall cranes around it. The man is standing on a construction site and is wearing a blue shirt and blue jeans. He is also holding a yellow and black power drill.", - "id": 3597 - }, - { - "image_path": "G:\\images\\combined\\005478_jpg.rf.28abad5a60147ef9cd54bd2c57978f63.jpg", - "response": "A man in a blue shirt and yellow hard hat stands in front of a construction site. He is holding a power tool.", - "id": 3598 - }, - { - "image_path": "G:\\images\\combined\\005479_jpg.rf.9903a767a49137e4119b6c0923b3eb75.jpg", - "response": "The image shows five men in red\u5b89\u5168\u5e3d\u7ad9\u5728\u5de5\u5730\u524d\u9762\u3002 They are most likely construction workers or managers. In the background, there are several buildings under construction. There are also several red and white pipes placed on the right. On the left, there are several people who are working at the construction site.", - "id": 3599 - }, - { - "image_path": "G:\\images\\combined\\005479_jpg.rf.df7d3b7554bf977fb8baf99d0e0bcd8a.jpg", - "response": "A group of men standing in front of a construction site", - "id": 3600 - }, - { - "image_path": "G:\\images\\combined\\00547_jpg.rf.1ccef08a34a9dcb3f030438e81adc31a.jpg", - "response": "A group of people standing around a construction site", - "id": 3601 - }, - { - "image_path": "G:\\images\\combined\\00547_jpg.rf.c87789e413aa6777d28df6cb89b2166c.jpg", - "response": "The image shows a group of four people standing in a construction site. They are all wearing red helmets. One man on the left is holding a blue folder and appears to be explaining something to another man on the right. A woman in the middle is watching the two men speak. In the background, there is a building under construction. To the far right, there are also two other men wearing red helmets. In the middle of the construction site, there is a pile of yellow sand.", - "id": 3602 - }, - { - "image_path": "G:\\images\\combined\\005480_jpg.rf.b04c8bc62fbf7e411105e83227e3fa6f.jpg", - "response": "An electrician wearing a blue uniform and a yellow hard hat is working on a power line. He is holding a pair of pliers and is in the process of installing a new piece of equipment. The sky is blue with a few clouds and the electrician is high up on a metal structure. In the background, there is a lush green forest.", - "id": 3603 - }, - { - "image_path": "G:\\images\\combined\\005480_jpg.rf.f0ac14398d2dd74f5d9ffb84bb1f1d06.jpg", - "response": "An electrician is working on a power line.", - "id": 3604 - }, - { - "image_path": "G:\\images\\combined\\005481_jpg.rf.8ce3d0b29fb1b2c1af8629ba9d09143c.jpg", - "response": "The image shows two workers at a construction site. They are building a brick wall and laying bricks. The wall is high and takes up most of the image. The workers are wearing yellow helmets and are at different positions on the wall. One is on the left side and the other is on the right side. The workers are also wearing grey uniforms. In the background, there is a building with scaffolding. The sky is grey and overcast.", - "id": 3605 - }, - { - "image_path": "G:\\images\\combined\\005482_jpg.rf.118b9feb4f9063fbbaa453f18c50ef0d.jpg", - "response": "A worker is seen in the image, he is wearing a blue jumpsuit and a blue hat with a yellow stripe. He is holding a box and is working on a large spool of black cable. The sky is a clear blue and there are no clouds in sight. The worker is in an open field with some power lines in the background.", - "id": 3606 - }, - { - "image_path": "G:\\images\\combined\\005482_jpg.rf.231c97924377d7c5288ecf6bddcd80fd.jpg", - "response": "In the image there is a worker wearing blue overalls and a blue hat, who is pulling a large spool of black cable. The worker is located on a patch of grass, and there are several power poles visible in the background. The sky is a clear blue and the sun is shining.", - "id": 3607 - }, - { - "image_path": "G:\\images\\combined\\005483_jpg.rf.20fece88ffd679854add67f255b53869.jpg", - "response": "A group of people working on a bridge that is orange in color.", - "id": 3608 - }, - { - "image_path": "G:\\images\\combined\\005483_jpg.rf.82daeed76d164994b6f4e112252243c6.jpg", - "response": "A group of workers are working on a bridge.", - "id": 3609 - }, - { - "image_path": "G:\\images\\combined\\005484_jpg.rf.95c97d748602b5e6ba937593f425b8be.jpg", - "response": "A group of people standing in front of a yellow machine.", - "id": 3610 - }, - { - "image_path": "G:\\images\\combined\\005484_jpg.rf.c5749bd20babcd50b9cf806461970c32.jpg", - "response": "A group of people standing in front of a yellow machine.", - "id": 3611 - }, - { - "image_path": "G:\\images\\combined\\005485_jpg.rf.454c7a7813f76cb2db61960b3bfe4e5b.jpg", - "response": "A man wearing a red helmet is on a scaffolding. He is standing on a black platform and is working on a building. There are several other people on the scaffolding working on the building as well. The building has many windows and one of them has an air conditioner in it. There is a bamboo ladder on the right side of the scaffolding and a yellow and red flag on the left side.", - "id": 3612 - }, - { - "image_path": "G:\\images\\combined\\005485_jpg.rf.f4e6ed59a19c7c22cf61e0d92a32e2af.jpg", - "response": "A man wearing a red helmet is on a scaffolding.", - "id": 3613 - }, - { - "image_path": "G:\\images\\combined\\005486_jpg.rf.7bbc1bc0c303be01ee9b259dc5af5f75.jpg", - "response": "The image shows a group of workers in front of a large building under construction. There are two main groups of workers, one on the left and one on the right. Some workers are standing, while others are sitting on a truck. The workers are wearing uniforms and yellow hats. There are also a few workers inside the large building. In the foreground, there is a fence with a metal railing. On the right side of the image, there is a yellow truck with a cage on the back. The truck is filled with drilling machines.", - "id": 3614 - }, - { - "image_path": "G:\\images\\combined\\005487_jpg.rf.66c9d3a1c420ce10cedcc1738ee496ac.jpg", - "response": "At a construction site, two engineers are standing next to a cement wall. They are both holding rolled up blueprints. The man is wearing a white hard hat and a blue shirt. The woman is wearing a white helmet and a beige suit.", - "id": 3615 - }, - { - "image_path": "G:\\images\\combined\\005487_jpg.rf.7fe694f0f63a2f863aca08d477daf917.jpg", - "response": "At a construction site, two engineers wearing hard hats stand next to a concrete wall. They are holding blueprints and talking.", - "id": 3616 - }, - { - "image_path": "G:\\images\\combined\\005488_jpg.rf.4397feca727f497c29b3ee43e7a37a85.jpg", - "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", - "id": 3617 - }, - { - "image_path": "G:\\images\\combined\\005488_jpg.rf.fc35f81fbb922931866ebf7c93462eca.jpg", - "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", - "id": 3618 - }, - { - "image_path": "G:\\images\\combined\\005489_jpg.rf.c3eaf0c8f7367d166fb10a7e2378ab00.jpg", - "response": "A man in a white shirt and grey pants is carrying a large cement block. He is wearing a yellow hat and has a orange band around his arm. He is standing in a construction area with a wheel barrel to his right and a pile of cement to his left. In the background there is a forest of trees and a building.", - "id": 3619 - }, - { - "image_path": "G:\\images\\combined\\005489_jpg.rf.fa69009d4ded498fbec42099afd0438c.jpg", - "response": "A man wearing a white shirt and a yellow hat is holding a concrete block in a construction area. He is standing next to a wheelbarrow and there are piles of grey concrete to his left. In the background there is a forest of trees and a white building.", - "id": 3620 - }, - { - "image_path": "G:\\images\\combined\\00548dfc8ec76f5d.jpg", - "response": "A city bus is stopped at a bus stop.", - "id": 3621 - }, - { - "image_path": "G:\\images\\combined\\00548_jpg.rf.2b0292f5551e8770e1aaf658d2529bac.jpg", - "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", - "id": 3622 - }, - { - "image_path": "G:\\images\\combined\\00548_jpg.rf.95dfeb5fea89230e4a983124a218aaec.jpg", - "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", - "id": 3623 - }, - { - "image_path": "G:\\images\\combined\\005490_jpg.rf.dc826ed9b0158c49ac1c5d17f049cfe0.jpg", - "response": "In the image, a group of people is standing in front of a construction site. Among them, there are three men in suits, two of them closer to the left, one in the center and another one to their right. A woman is standing between them, closer to the left. To their right, there is a man in a brown suit. In front of the group, there is a blackboard with some writing on it. The background shows a large building under construction. In the far distance, there are two cranes working.", - "id": 3624 - }, - { - "image_path": "G:\\images\\combined\\005491_jpg.rf.4dd1053153eb227b44d9c0d95b17869b.jpg", - "response": "A man and woman wearing hard hats and looking at blueprints.", - "id": 3625 - }, - { - "image_path": "G:\\images\\combined\\005491_jpg.rf.cbead6e91577890213361d6a3af6541f.jpg", - "response": "A man and woman wearing hard hats and looking at blueprints.", - "id": 3626 - }, - { - "image_path": "G:\\images\\combined\\005492_jpg.rf.2af08370a561e8a7fe61a5d182f04ba8.jpg", - "response": "A group of workers are at a construction site. They are all wearing hard hats. One man is in the foreground, he is wearing a blue shirt and a red hard hat. Another man is behind him, he is wearing a white shirt and a white hard hat. The third man is further back, he is wearing a yellow shirt and a red hard hat. They are all working on a construction project. In the background, there are other buildings and construction equipment.", - "id": 3627 - }, - { - "image_path": "G:\\images\\combined\\005492_jpg.rf.6487cb1803389b4ca006134df137203f.jpg", - "response": "A group of workers are working on a construction site. They are building a bamboo scaffolding. One of the workers is wearing a red helmet. There are three workers in total. One is wearing a blue shirt and holding a red bar. Another worker is wearing a white shirt and holding a bamboo stick. The third worker is wearing a white shirt and holding a bamboo stick as well. In the background, there are some buildings and a crane.", - "id": 3628 - }, - { - "image_path": "G:\\images\\combined\\005493_jpg.rf.af365ad4dfeee44fea7fd30b08adf001.jpg", - "response": "A group of men are in a field with some sticks. They are standing near a pile of smoke. The men are wearing blue shirts and yellow hard hats.", - "id": 3629 - }, - { - "image_path": "G:\\images\\combined\\005493_jpg.rf.fa9380890197aa1a14a7e480685d1250.jpg", - "response": "A group of men in a field with one of them holding a stick.", - "id": 3630 - }, - { - "image_path": "G:\\images\\combined\\005494_jpg.rf.83e91c1a8b323196556dcae56d67e3d9.jpg", - "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a saw to cut through a large piece of grey plastic. The plastic is located on the ground and there are several saw horses around the man and the plastic. In the background, there is a red wall and a door. The floor of the construction site is covered with various tools such as a yellow level, a hammer, a screwdriver and a tape measure.", - "id": 3631 - }, - { - "image_path": "G:\\images\\combined\\005494_jpg.rf.a108140b71190ef48d7443d9f7e5cdba.jpg", - "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a tool to cut through a large sheet of plastic. The sheet of plastic is on the ground and there are two saw horses supporting it. There are also several other tools on the ground around the sheet of plastic. The background is a red wall and a grey floor.", - "id": 3632 - }, - { - "image_path": "G:\\images\\combined\\005495_jpg.rf.219ba17547ea8b8bcc4dbbad681099b7.jpg", - "response": "a group of men standing around", - "id": 3633 - }, - { - "image_path": "G:\\images\\combined\\005495_jpg.rf.c15b2f95a5427f8dea196d15e7898d23.jpg", - "response": "a group of men standing next to each other", - "id": 3634 - }, - { - "image_path": "G:\\images\\combined\\005496_jpg.rf.171f36a0163807708e4d4a9a84480ff8.jpg", - "response": "The image shows three men standing in front of a construction site. The man on the left is wearing a beige jacket and a beige shirt with dark grey pants. The man in the middle is wearing a black jacket over a dark green shirt and dark grey pants. The man on the right is wearing a beige suit and a dark green shirt. They are all standing on a construction site with a brown dirt ground and a blue and white building in the background. There are also some construction materials on the ground. In the background, there is a brown mountain.", - "id": 3635 - }, - { - "image_path": "G:\\images\\combined\\005497_jpg.rf.706f8e5079e2c0bb162b30d818b61e0b.jpg", - "response": "A woman(2,6),(401,997) in a pink shirt and yellow hard hat(64,3),(345,177) is holding a long tool and pointing it at something.", - "id": 3636 - }, - { - "image_path": "G:\\images\\combined\\005497_jpg.rf.71244db396bd9ab18bfc1c5591418827.jpg", - "response": "A woman(2,4),(400,997) in a pink shirt and yellow hard hat(63,3),(319,173) is working with two men(312,282),(567,996)(424,446),(794,997) in a cave.", - "id": 3637 - }, - { - "image_path": "G:\\images\\combined\\005498_jpg.rf.8dd70d7a696f9c8f12c2669e01f76b47.jpg", - "response": "The image shows three men sitting on the ground in the dark. They are wearing hard hats and masks, and are holding tools. One of the men is holding a light source in his hand.", - "id": 3638 - }, - { - "image_path": "G:\\images\\combined\\005498_jpg.rf.ff556fc304a968412bca9cd79270e405.jpg", - "response": "In the image there are three people sitting in a tent. They are all wearing black and have something in their mouth. Two of them are wearing all black and one is wearing light colored pants. They are all holding something in their hand, it could be a stick, a torch or a phone. The picture is so dark that it's hard to tell the details.", - "id": 3639 - }, - { - "image_path": "G:\\images\\combined\\005499_jpg.rf.d6f7a5b87fd38a9b01556cc9d9d27fa3.jpg", - "response": "A man in a grey shirt is holding a yellow folder and pointing towards a building. There are three men in blue shirts and yellow hard hats walking behind him. There is a car parked on the left side of the frame and a brown building with many windows in the background.", - "id": 3640 - }, - { - "image_path": "G:\\images\\combined\\00549_jpg.rf.becf138dc0661629cce80b6e89021316.jpg", - "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", - "id": 3641 - }, - { - "image_path": "G:\\images\\combined\\00549_jpg.rf.d828056bffad354b4b793573046c8a8d.jpg", - "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", - "id": 3642 - }, - { - "image_path": "G:\\images\\combined\\0054b16219469dd7.jpg", - "response": "The image shows a group of men standing on a soccer field. They are all wearing different colored uniforms, with some wearing red and black striped shirts and others wearing yellow. The men are standing in a huddle near the center of the field.", - "id": 3643 - }, - { - "image_path": "G:\\images\\combined\\0054c91397f2fe05.jpg", - "response": "In the image there is a rectangular black and brown cell phone from the early 2000s. It has a small screen and a few buttons. The phone is turned off and placed on a white surface.", - "id": 3644 - }, - { - "image_path": "G:\\images\\combined\\0054d8bdd83c2537.jpg", - "response": "A lit up theater sign that says Prince Charles Cinema on it.", - "id": 3645 - }, - { - "image_path": "G:\\images\\combined\\0054eaf0da3320f6.jpg", - "response": "The image features a red and white soda bottle with the name Nestlitts of California on it. The soda is orange flavored and sweetened with cane sugar. The bottle is 12 fluid ounces in size.", - "id": 3646 - }, - { - "image_path": "G:\\images\\combined\\005500_jpg.rf.0f7c2c0e7809913eebd66e45c5cecaf4.jpg", - "response": "A man in a yellow hard hat is reaching up to a wooden beam. He is wearing a blue uniform and is in the process of building a wooden structure. There is scaffolding in the background.", - "id": 3647 - }, - { - "image_path": "G:\\images\\combined\\005500_jpg.rf.4e8aab4daa4506f99492dede797de8cf.jpg", - "response": "A man in a yellow hard hat is working on a wooden structure. He is wearing a blue shirt and has a yellow hard hat with a red, white, and blue brim. He is also wearing a yellow safety vest. The man is looking up at a wooden beam and appears to be in the process of building something. There is a ladder in the background and the sky is blue with a few clouds.", - "id": 3648 - }, - { - "image_path": "G:\\images\\combined\\005501_jpg.rf.2152a981b8ec8d10180f8bcd35d67b6f.jpg", - "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all wearing blue work clothes and hard hats. Some of them are kneeling down and digging with shovels. In front of them is a large hole filled with dirt and some bamboo shoots. To the far left of the image is a red bin and a small pile of dirt. To the far right of the image is a large rock. In the background, there is a green hill.", - "id": 3649 - }, - { - "image_path": "G:\\images\\combined\\005501_jpg.rf.f00e56190aaa23b6ae8148f3ac0138c8.jpg", - "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all holding shovels and are digging in a muddy area. Some of them are also pulling on a rope. In the background, there is a small hill with grass on it.", - "id": 3650 - }, - { - "image_path": "G:\\images\\combined\\005502_jpg.rf.58b51747e68fe6912916d459e87c1cc2.jpg", - "response": "The image shows a group of people standing in a snow covered field. They are all wearing hard hats and some are wearing orange vests. In the background, snow covered trees can be seen. A power line is visible, with some of the wires down. A few people are working on fixing the power line.", - "id": 3651 - }, - { - "image_path": "G:\\images\\combined\\005503_jpg.rf.29d2aa343d28c7887a0a3fdc8a03f875.jpg", - "response": "A factory worker in a blue jumpsuit and white apron is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal barrel into the large metal cylinder. There are other workers in the background, one on the left and two on the right. There are also two large metal vats in the foreground, one on the left and one on the right. The room is filled with metal shavings and there are large metal objects in the background.", - "id": 3652 - }, - { - "image_path": "G:\\images\\combined\\005503_jpg.rf.35701808fd97adf1c9e03c9e7972fccf.jpg", - "response": "A factory worker in a blue jumpsuit and hard hat is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal cylinder into a large metal bin. There are other workers in the background, one on the left and two on the right. There are also two large metal cylinders in the background. The factory floor is covered in metal shavings.", - "id": 3653 - }, - { - "image_path": "G:\\images\\combined\\005504_jpg.rf.37a465c62f60f9f5744a7c90a7440c34.jpg", - "response": "Three men are standing in front of a blue wall. They are all wearing hard hats. The man in the middle has his arms crossed. The man on the far left is wearing a red vest and looking straight ahead. The man on the far right is wearing a yellow vest with his arms behind his back.", - "id": 3654 - }, - { - "image_path": "G:\\images\\combined\\005504_jpg.rf.41dd1221f6433c80182d3c880e46d0b9.jpg", - "response": "Three men are standing in front of a construction site. They are all wearing hard hats and reflective vests. The man in the middle has a mustache. The man on the far left is also wearing a white helmet. The man on the far right is wearing a yellow helmet.", - "id": 3655 - }, - { - "image_path": "G:\\images\\combined\\005505_jpg.rf.35bdf9216bc5125d03186dd1a9c5c3b8.jpg", - "response": "A group of people working on a construction site.", - "id": 3656 - }, - { - "image_path": "G:\\images\\combined\\005505_jpg.rf.e41c1b8177d8e3125bccd404cf629144.jpg", - "response": "The image shows a group of construction workers inside a building that is under construction. They are working on the fifth floor of the building, which has wooden beams and scaffolding. Some workers are wearing yellow hard hats, and there is a red hard hat on the floor. A cup is also visible in the scene.", - "id": 3657 - }, - { - "image_path": "G:\\images\\combined\\005506_jpg.rf.55a7caae0f8b8d524e1f11931ef09c65.jpg", - "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both bearded and one of them has a beard of orange color. The one on the left is holding a tablet in his hand and the one on the right a pen. In the background, behind them, there is a construction site with many metal bars.", - "id": 3658 - }, - { - "image_path": "G:\\images\\combined\\005506_jpg.rf.5e259788198ba2d53e120adedf2d8d59.jpg", - "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both holding white blueprints and looking at a construction site. The man on the left is bearded and has a beard, the man on the right has a mustache.", - "id": 3659 - }, - { - "image_path": "G:\\images\\combined\\005507_jpg.rf.6e254b223b80c42b43174e78152c3148.jpg", - "response": "A man on a ladder repairs power lines in the snow", - "id": 3660 - }, - { - "image_path": "G:\\images\\combined\\005507_jpg.rf.823d3143b7fb1c1dcc03f9fbec406852.jpg", - "response": "A man on a ladder is fixing a power line.", - "id": 3661 - }, - { - "image_path": "G:\\images\\combined\\005508_jpg.rf.454ba8ec2ce546bb13503e27b7ff19c6.jpg", - "response": "A man in an orange shirt is on a scaffolding.", - "id": 3662 - }, - { - "image_path": "G:\\images\\combined\\005508_jpg.rf.c264f753bc3b21bc1b0af5b3922e08f3.jpg", - "response": "A man in an orange shirt is on a scaffolding.", - "id": 3663 - }, - { - "image_path": "G:\\images\\combined\\005509_jpg.rf.0813489ac7580eb4553b894012a0452b.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats repairing a power box. They are kneeling on the ground, focused on the task at hand. The sky is blue and there are a few clouds in the sky. The workers are wearing safety goggles and there is a screwdriver on the ground.", - "id": 3664 - }, - { - "image_path": "G:\\images\\combined\\005509_jpg.rf.2a7465e6946db7db7a2ade814ef6f462.jpg", - "response": "An electrician is working on a power line", - "id": 3665 - }, - { - "image_path": "G:\\images\\combined\\00550_jpg.rf.048fe80a722b9520e2c0b1070acba211.jpg", - "response": "a group of men walking down a hallway", - "id": 3666 - }, - { - "image_path": "G:\\images\\combined\\00550_jpg.rf.239ea2ed4b2a2f3a15d2adeb9f009fda.jpg", - "response": "A group of men in white shirts and red hats are walking down a hallway. One man is carrying a black bag. The walls of the hallway are made of red brick.", - "id": 3667 - }, - { - "image_path": "G:\\images\\combined\\005510_jpg.rf.d421690025fa27af2cf1e9add2227d57.jpg", - "response": "two men(207,567),(449,996) standing in front of a building", - "id": 3668 - }, - { - "image_path": "G:\\images\\combined\\005511_jpg.rf.acf1a90d0b1880c128f48c8492aa8a13.jpg", - "response": "The image shows a large tunnel with a group of workers inside. There are large pipes in the foreground and construction equipment in the background. The tunnel is lit up by lights and the walls are concrete.", - "id": 3669 - }, - { - "image_path": "G:\\images\\combined\\005511_jpg.rf.d8260fc2fe394012d9d10aa5aabea7e9.jpg", - "response": "The image shows a large tunnel with a group of workers inside. There are two large pipes in the foreground, and a truck is visible on the left side of the tunnel. The tunnel is lit up by several lights, causing the walls to appear white. The workers are wearing hard hats and can be seen standing at various points inside the tunnel.", - "id": 3670 - }, - { - "image_path": "G:\\images\\combined\\005512_jpg.rf.2b81d2d50ff50d603b176d851517826a.jpg", - "response": "A group of men walking down a street.", - "id": 3671 - }, - { - "image_path": "G:\\images\\combined\\005512_jpg.rf.7d26f4b344875825538509a5ba38a3c2.jpg", - "response": "A group of men walking down a street.", - "id": 3672 - }, - { - "image_path": "G:\\images\\combined\\005513_jpg.rf.29f79676c519decffceca5d680f7ff37.jpg", - "response": "A group of people standing around a pole in the rain.", - "id": 3673 - }, - { - "image_path": "G:\\images\\combined\\005513_jpg.rf.9c4d4c63da1db9fdf383c5671d5e9a02.jpg", - "response": " Men(660,318),(780,745)(439,192),(615,835)(156,286),(269,813) working on a construction site at night.", - "id": 3674 - }, - { - "image_path": "G:\\images\\combined\\005514_jpg.rf.7a0fd0050bc9c98cb1c0beb6123adc55.jpg", - "response": "A group of workers wearing hard hats", - "id": 3675 - }, - { - "image_path": "G:\\images\\combined\\005514_jpg.rf.f6dcc558ad001b5bb3a2bbd65008118a.jpg", - "response": "A group of people wearing hard hats", - "id": 3676 - }, - { - "image_path": "G:\\images\\combined\\005515_jpg.rf.49e3019d5ed170efba4b2d142b83fb4c.jpg", - "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air repairing power lines.", - "id": 3677 - }, - { - "image_path": "G:\\images\\combined\\005515_jpg.rf.d02cd78fef4da42c6ff307ca72d9ddf4.jpg", - "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air, working on power lines.", - "id": 3678 - }, - { - "image_path": "G:\\images\\combined\\005516_jpg.rf.3a58f8a6ce73e27a1058e1fbebd79165.jpg", - "response": "The image shows Kim Jong-un, the leader of North Korea, standing in front of a dam. He is wearing a black uniform and is smiling. The sky above him is overcast, and there are trees and a body of water in the background. There are also several flags in the distance.", - "id": 3679 - }, - { - "image_path": "G:\\images\\combined\\005516_jpg.rf.b179ef0596d2a5bca9142ab37ad42f56.jpg", - "response": "This image is of a man standing in front of a dam. He is smiling and looking into the camera. He is wearing a black military uniform. There are green bushes behind him and a fence in front of him. There are also several signs in the background.", - "id": 3680 - }, - { - "image_path": "G:\\images\\combined\\005517_jpg.rf.dadff8cb1b0e648196a0f52b45a64964.jpg", - "response": "A construction worker is being rescued by firefighters after being trapped in a construction site.", - "id": 3681 - }, - { - "image_path": "G:\\images\\combined\\005518_jpg.rf.ec2cbed7f762e1b60c0bfd38eab739fd.jpg", - "response": "a group of men wearing white shirts and red hats", - "id": 3682 - }, - { - "image_path": "G:\\images\\combined\\005518_jpg.rf.f5f169ad13bdf7f1ca16d34d38eb72f9.jpg", - "response": "a group of men wearing white shirts and red helmets", - "id": 3683 - }, - { - "image_path": "G:\\images\\combined\\005519_jpg.rf.1fccb8b6a93f38b62e093897647b246e.jpg", - "response": " Rescuers(4,4),(700,998)(511,3),(798,840) work to free a person trapped in the rubble of a building that was destroyed in an earthquake in Lushan county, Ya'an, Sichuan province, China, April 20, 2013.", - "id": 3684 - }, - { - "image_path": "G:\\images\\combined\\005519_jpg.rf.cf968a28520e183191515b158ffcb0c3.jpg", - "response": " Rescuers(5,4),(797,995)(512,3),(799,848) are seen working at the site of a collapsed hotel in China's Yunnan province.", - "id": 3685 - }, - { - "image_path": "G:\\images\\combined\\00551_jpg.rf.7c4812e4305414519b298473bb072590.jpg", - "response": " A man(321,88),(540,536) is digging a hole in the ground with a shovel(384,260),(527,503).", - "id": 3686 - }, - { - "image_path": "G:\\images\\combined\\00551_jpg.rf.94e81b469373f178c36bdba6aefd5a13.jpg", - "response": " A man(321,88),(541,529) is digging a hole in the ground with a shovel(392,256),(536,506).", - "id": 3687 - }, - { - "image_path": "G:\\images\\combined\\005520_jpg.rf.370182c2dc79fa6e438bbfd37b144c01.jpg", - "response": "In the image there are two men standing on a platform inside a factory. They are both wearing yellow hard hats and grey and red uniforms. The man on the left is giving a thumbs up. They are standing in front of a large machine.", - "id": 3688 - }, - { - "image_path": "G:\\images\\combined\\005520_jpg.rf.6b50e0196122817cdffdb2b6f5630598.jpg", - "response": "A couple of men standing in front of a factory machine.", - "id": 3689 - }, - { - "image_path": "G:\\images\\combined\\005521_jpg.rf.08061171dc59d16d819262e8bbbfab76.jpg", - "response": "The photo shows a group of workers in the construction site. They are all dressed in red and yellow, wearing yellow helmets. They are working in the construction site underground. On the left side of the photo, there is a steel ladder, and in the middle and right side of the photo, there are two iron bars. There is a pile of sand in the upper left corner of the photo, and a pile of black stones in the lower left corner. In the upper middle of the photo, there is a yellow machine with two black wheels.", - "id": 3690 - }, - { - "image_path": "G:\\images\\combined\\005521_jpg.rf.6f1d0565841e9d966f0f315a29c76d3d.jpg", - "response": "The photo shows a group of workers in the foreground wearing red uniforms and yellow hard hats. They are working on a silver metal framework that covers the floor of a\u96a7\u9053. Behind the workers, the tunnel continues to the right, with a silver metal framework covering the floor on the left. In the background, on the right, a machine is digging into the ground. The photo is taken indoors, with the workers likely\u4fee\u5efa\u5730\u94c1.", - "id": 3691 - }, - { - "image_path": "G:\\images\\combined\\005522_jpg.rf.61055b7a6a2ca9233f4cb9f8daabb24b.jpg", - "response": "A worker is working on the construction site of the stadium. The stadium is under construction and is made of concrete. There are many steel beams and cables visible in the image. The sky is overcast and there are some clouds in the sky.", - "id": 3692 - }, - { - "image_path": "G:\\images\\combined\\005522_jpg.rf.6422817f3b594031c11ae98fd603fb3f.jpg", - "response": "A worker is working on the construction site of the stadium.", - "id": 3693 - }, - { - "image_path": "G:\\images\\combined\\005523_jpg.rf.2d4cac2c31e9219158e513039a460575.jpg", - "response": "A couple of men in hard hats are looking at a large white box. They are standing in a room with a brick wall. There is a yellow web address in the corner of the image.", - "id": 3694 - }, - { - "image_path": "G:\\images\\combined\\005524_jpg.rf.23a0c238f867e3dfb8a928d506668d49.jpg", - "response": "In the image two electrical workers are wearing blue hard hats and are checking the settings on a control box. They are both dressed in blue and yellow vests. In the background there is a large concrete structure with many metal electrical poles sticking out of it. The sky is blue with a few white clouds.", - "id": 3695 - }, - { - "image_path": "G:\\images\\combined\\005524_jpg.rf.c486963a53e06a8b91c9ca3cd3230c5e.jpg", - "response": "In the image two workers are wearing blue helmets and are checking the control cabinet of a power plant. The power plant is made of metal and has many high voltage poles in the background.", - "id": 3696 - }, - { - "image_path": "G:\\images\\combined\\005525_jpg.rf.3647f645fae7ab63bb1877aa2cee542a.jpg", - "response": "A group of men working on a construction site.", - "id": 3697 - }, - { - "image_path": "G:\\images\\combined\\005525_jpg.rf.f056f5e0916de5b1276386723903c7ca.jpg", - "response": "A group of workers wearing hard hats are working on a brick wall.", - "id": 3698 - }, - { - "image_path": "G:\\images\\combined\\005526b210837e4d.jpg", - "response": "A yellow and blue airplane with the numbers 5021 on the side.", - "id": 3699 - }, - { - "image_path": "G:\\images\\combined\\005526_jpg.rf.2c9c4610c88a67bb4f2c9c1042d88f46.jpg", - "response": "The image shows three workers in black uniforms and yellow helmets who are repairing an electricity pylon. They are on a suspension bridge, connecting to the pylon with tools.", - "id": 3700 - }, - { - "image_path": "G:\\images\\combined\\005527_jpg.rf.19bef1d0d988f4ec4e3410ed07867feb.jpg", - "response": "A worker in a factory wearing an orange jumpsuit and a yellow hard hat is standing over a large pile of steel. They are holding a large steel coil and looking at it. There are many more steel coils stacked around them, as well as a few stacks of steel in the background.", - "id": 3701 - }, - { - "image_path": "G:\\images\\combined\\005527_jpg.rf.60fb6001f245376a1851ee21b10f73f8.jpg", - "response": "A worker in a factory is checking some steel.", - "id": 3702 - }, - { - "image_path": "G:\\images\\combined\\005528_jpg.rf.a92066e5b8a0d5b3570ca5e50c8125e8.jpg", - "response": " Men(426,346),(737,996)(699,285),(997,995)(0,239),(441,996) in hard hats(232,239),(394,433)(543,344),(680,481)(94,340),(195,468)(690,423),(755,491)(937,297),(998,456) standing in front of a mountain", - "id": 3703 - }, - { - "image_path": "G:\\images\\combined\\005529_jpg.rf.681472f1cc65e4a781ec4ae885b56c67.jpg", - "response": "In the image there are two people working on a piece of equipment. The people are wearing orange work vests and the man on the right is wearing a yellow hard hat. They are working on an emergency mobile\u53d8\u7535\u7ad9 which is yellow and black. The word\u53d8\u6362 is written in black on the emergency mobile\u53d8\u7535\u7ad9.", - "id": 3704 - }, - { - "image_path": "G:\\images\\combined\\005529_jpg.rf.cab3bbced8dcd0a479274d569784b395.jpg", - "response": "In the image there are two people working on a piece of yellow equipment. They are both wearing orange work vests and yellow hard hats. The person on the left is holding a large grey cable while the person on the right is connecting a black plug to the cable. There is a yellow trailer in the background with the words \"\u5e94\u6025\u79fb\u52a8\u53d8\u7535\u7ad9\" written on it.", - "id": 3705 - }, - { - "image_path": "G:\\images\\combined\\00552_jpg.rf.604805fa5d5441a61d398cc9ace89f02.jpg", - "response": " Three men(277,268),(424,998)(441,337),(547,967)(1,189),(105,997) in yellow hard hats(312,266),(424,382)(458,335),(534,422)(1,189),(88,287) standing in front of a construction site", - "id": 3706 - }, - { - "image_path": "G:\\images\\combined\\005530_jpg.rf.237aaf00c33c92bce6ec9d9ce9d2d1f7.jpg", - "response": "The image shows a group of men working on a snowy mountain. They are wearing hard hats and are engaged in various tasks. Some men are climbing up the mountain, while others are working on a structure made of metal. The mountain is covered in snow and ice, and the weather appears to be cold and overcast. There are also some tools visible in the snow, including a hammer and a pair of pliers.", - "id": 3707 - }, - { - "image_path": "G:\\images\\combined\\005531_jpg.rf.747799ed9decfd77f0cd8c8d18b3eca0.jpg", - "response": "A construction worker is using a level to check the alignment of the train tracks.", - "id": 3708 - }, - { - "image_path": "G:\\images\\combined\\005532_jpg.rf.05d565f9586010556f198ce3d66862d3.jpg", - "response": "A man wearing a hard hat standing in front of a construction site.", - "id": 3709 - }, - { - "image_path": "G:\\images\\combined\\005532_jpg.rf.2cb8f82438da3966446945844bf655b2.jpg", - "response": "A man wearing a hard hat standing in front of a construction site.", - "id": 3710 - }, - { - "image_path": "G:\\images\\combined\\005533_jpg.rf.387912fa4a0ddde8bd3d1f070e290687.jpg", - "response": "A man in a blue hard hat, white shirt, yellow safety vest and a clear face mask.", - "id": 3711 - }, - { - "image_path": "G:\\images\\combined\\005533_jpg.rf.bd34aa62040827d636a279972bddc69a.jpg", - "response": "A man wearing a blue hard hat, a yellow safety vest, and a face mask.", - "id": 3712 - }, - { - "image_path": "G:\\images\\combined\\005534_jpg.rf.8dc04d4e0b228be4b4f9f990136567b3.jpg", - "response": "A man in a hard hat stands on a balcony overlooking a construction site. He is wearing a grey shirt and black pants. The construction site is in the background and there are several tall buildings there. There is also a yellow crane operating in the distance. The sky is overcast.", - "id": 3713 - }, - { - "image_path": "G:\\images\\combined\\005534_jpg.rf.8e9032a4dbb0e621b81946d85b17792c.jpg", - "response": "A man in a hard hat is standing on a balcony. He is wearing a grey shirt, black pants and is holding a white coffee cup. He is looking out over a construction site that has several buildings under construction. There are several cranes working on the buildings and a large amount of rebar and other construction materials visible. The sky is grey and overcast.", - "id": 3714 - }, - { - "image_path": "G:\\images\\combined\\005535_jpg.rf.40f270b3f4c062596228a37360deb571.jpg", - "response": " Several men(382,392),(526,821)(577,398),(709,689)(786,409),(886,610)(524,338),(591,495)(713,369),(787,597) carrying wood(207,311),(808,538) over their heads(394,392),(457,479)(622,398),(672,477)", - "id": 3715 - }, - { - "image_path": "G:\\images\\combined\\005535_jpg.rf.f74ad9b4313d9c4a0aad672465b2234e.jpg", - "response": "A group of men wearing hard hats are carrying a large metal bar through a field.", - "id": 3716 - }, - { - "image_path": "G:\\images\\combined\\005536_jpg.rf.2d576f050cc863dad8a9f0401e05943f.jpg", - "response": "Gansu provincial party secretary and provincial government chairman Liu Yandong, Gansu provincial vice party chairman and provincial government vice chairman Zhang Xiaoming, Gansu provincial government vice party chairman and provincial government vice chairman Zhang Yujun, and Gansu provincial department of housing and urban-rural development party branch secretary and director Zhang Jinping visited Tianshui to investigate the construction site of the new city.", - "id": 3717 - }, - { - "image_path": "G:\\images\\combined\\005537_jpg.rf.5dc8263d64b1944d77ab7086cba276d2.jpg", - "response": "A man in a red hard hat is working on a large piece of industrial equipment. The equipment is made of steel and has a brownish color. The man is sitting on the equipment and using a tool. There is a pile of red bricks next to the equipment. Another man is working further back in the scene. The room has white walls and brick floors. There are also two windows in the room.", - "id": 3718 - }, - { - "image_path": "G:\\images\\combined\\005537_jpg.rf.f8a383c4c41ed099a1c17861589180cb.jpg", - "response": "A man in a red hard hat is standing in front of a large brick building. He is next to a large piece of industrial equipment that is being used to destroy another piece of industrial equipment. The destroyed equipment is sitting on the ground and is being broken apart by the industrial machine. There is a pile of red bricks next to the man and the industrial equipment. There are also two other people in the background, one closer to the left and one closer to the right. The sky outside the building appears to be overcast.", - "id": 3719 - }, - { - "image_path": "G:\\images\\combined\\005538_jpg.rf.636cc94e166d89b2ec392aaf9e805916.jpg", - "response": "A man in a red hat and blue shirt is holding a white cloth. He is crouching down and looking at the camera. He is wearing red gloves. There is a yellow car parked in the background. There are some motorcycles and a bush. There is a red and white rope on the left side of the image.", - "id": 3720 - }, - { - "image_path": "G:\\images\\combined\\005538_jpg.rf.813b1e443210d4bc5186c2261d8fdd7c.jpg", - "response": "A man in a red hat and work clothes is on a porch holding a white pipe.", - "id": 3721 - }, - { - "image_path": "G:\\images\\combined\\005539_jpg.rf.6f72f7c973b4f72025ab0f303619f993.jpg", - "response": "A couple of men are working on a power line at night.", - "id": 3722 - }, - { - "image_path": "G:\\images\\combined\\00553_jpg.rf.3d757ab13432e69e78445f2497caf248.jpg", - "response": "In the image there is a man wearing a red hard hat sitting on a white barrel. The man is also wearing a navy blue jacket and camouflage pants. He is taking a drink from a can and has a white shirt underneath. In the background there is a truck and some wooden pallets.", - "id": 3723 - }, - { - "image_path": "G:\\images\\combined\\005540_jpg.rf.223da59113932f30ed93635fd958e409.jpg", - "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is made of clear glass. The building is made of concrete and has a brick wall visible outside the window. There are several other windows in the building, some of which are open. There is a ladder on the side of the building. The man's arms are crossed and he is looking out the window.", - "id": 3724 - }, - { - "image_path": "G:\\images\\combined\\005540_jpg.rf.f46693d4ade95592186904f0bcbbd20d.jpg", - "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is a small square cut out of a concrete wall. The wall is made of concrete and red bricks. The building is made of concrete and has a few windows. There is a ladder on the side of the building.", - "id": 3725 - }, - { - "image_path": "G:\\images\\combined\\005542_jpg.rf.3282d9eab479b02e66ce68cca0eb3952.jpg", - "response": "A group of three men working on an oil rig together.", - "id": 3726 - }, - { - "image_path": "G:\\images\\combined\\005542_jpg.rf.b7f2a98f5f9c20b23a4e1bcb2d02ec16.jpg", - "response": "A group of three men working on an oil rig.", - "id": 3727 - }, - { - "image_path": "G:\\images\\combined\\005543_jpg.rf.213f13eca61d2615897c3674a4658170.jpg", - "response": "The image shows two workers in a construction site, one of them is holding a hose and the other one is using some tool. They are working on a cement floor, the floor is grey and the whole scene appears to be in black and white. The workers are wearing red and yellow helmets and the background shows a building under construction. The date of the picture is November 12th, 2013.", - "id": 3728 - }, - { - "image_path": "G:\\images\\combined\\005543_jpg.rf.42706a0c11e4ea3cf4cea81e4028924a.jpg", - "response": "A construction worker is using a tool to clean the floor.", - "id": 3729 - }, - { - "image_path": "G:\\images\\combined\\005544_jpg.rf.71c37fabf82a4f988090654f1450a415.jpg", - "response": "A group of people sitting around a table.", - "id": 3730 - }, - { - "image_path": "G:\\images\\combined\\005544_jpg.rf.97766ad3b2be94c14824c89455695015.jpg", - "response": "A group of people sitting around a table with papers and water bottles in front of them.", - "id": 3731 - }, - { - "image_path": "G:\\images\\combined\\005545_jpg.rf.17320258f530eb6cf427bd13803416f7.jpg", - "response": "A male construction worker in an orange jumpsuit and yellow hard hat stands in front of a large construction site. He is holding a camera and looking off to the side.", - "id": 3732 - }, - { - "image_path": "G:\\images\\combined\\005545_jpg.rf.3edf6a4d2e1270522e4cfebad1885c2f.jpg", - "response": "A male construction worker in an orange jumpsuit and a yellow hard hat stands in front of a large red and yellow billboard. He is holding a camera and looking off to the side.", - "id": 3733 - }, - { - "image_path": "G:\\images\\combined\\005546_jpg.rf.17e53861de9c549781be4deb1f2c03e4.jpg", - "response": "The image shows a large tree that has been cut down in the middle of a street. The tree trunk is lying on its side in the street, and several workers in orange vests are standing around it. One of the workers is holding a large power tool, and another is holding a red and white traffic cone.", - "id": 3734 - }, - { - "image_path": "G:\\images\\combined\\005546_jpg.rf.3ecc2f75154258788ff802f1eb528c28.jpg", - "response": "The image shows a group of workers in orange vests and blue helmets standing around a large concrete pole on the side of a road. The workers seem to be in the process of setting up the pole. There are also other workers in the background, some of them are carrying tools. In the foreground, there is a traffic cone placed on the ground. There are also a few trucks in the background, one of them is a large white truck with a crane on its roof. Another truck is a red and white truck with a large concrete mixer. There is also a white van parked on the side of the road.", - "id": 3735 - }, - { - "image_path": "G:\\images\\combined\\005547_jpg.rf.0ef674801e0159b64550981cedffdec2.jpg", - "response": "a group of people working on a construction site", - "id": 3736 - }, - { - "image_path": "G:\\images\\combined\\005547_jpg.rf.54d69f8e0e275cba026f2b5e5d9476f0.jpg", - "response": "A group of people working on a construction site.", - "id": 3737 - }, - { - "image_path": "G:\\images\\combined\\005548_jpg.rf.9ef91735346142790ec4d4b2442bb813.jpg", - "response": "In the image there is a person wearing a blue shirt and a hard hat, this person is working with a large device of some sort. The device is grey in color and the person is holding it in their hands. The person is also wearing yellow work boots. There is some text on the image that says \"\u8bbe\u5907\u57fa\u7840\u704c\u6d46\" which is Chinese writing and it is in the bottom right corner of the image.", - "id": 3738 - }, - { - "image_path": "G:\\images\\combined\\005549_jpg.rf.0951867df212bce3d051d8b50a961e9a.jpg", - "response": "A worker in a blue shirt and orange safety belt is installing a street light.", - "id": 3739 - }, - { - "image_path": "G:\\images\\combined\\00554_jpg.rf.736f45f0935a1fc72edbc6dadb720d67.jpg", - "response": "A group of five workers in orange, yellow and red hard hats and matching shirts standing in front of two large shipping containers.", - "id": 3740 - }, - { - "image_path": "G:\\images\\combined\\00554_jpg.rf.9a804de75a8e160ad09cc2c31381009f.jpg", - "response": "A group of five workers in orange, wearing yellow helmets, standing in front of two large shipping containers.", - "id": 3741 - }, - { - "image_path": "G:\\images\\combined\\005550_jpg.rf.db87b9be20f28e07b3defad0cc14e494.jpg", - "response": "In the image there is a group of construction workers working on a construction site. They are all wearing orange and yellow vests and yellow hard hats. There is a large piece of machinery behind them, and they are all working on a large wooden structure. The sky is grey and overcast.", - "id": 3742 - }, - { - "image_path": "G:\\images\\combined\\005551_jpg.rf.1d719301fd83511e998673af013fbfa9.jpg", - "response": "The image shows a large tunneling machine that has carved out a large round hole in the ground. The tunneling machine is covered in rocks and has a series of large wheels on the top. The tunneling machine is standing in a large tunnel and there are four people standing around it, three of them are wearing yellow helmets and are working on the tunneling machine and the fourth one is standing further back. There is a red sign with white writing on the left side of the image and a large red ribbon on the right side of the image.", - "id": 3743 - }, - { - "image_path": "G:\\images\\combined\\005552_jpg.rf.954aee6149a739df214fea027f5ffa85.jpg", - "response": "The image shows a group of three construction workers at a site where a concrete bridge is being built. They are working on the bottom of a tall, circular metal structure, tying rebar together. The sky is blue and there are mountains in the background.", - "id": 3744 - }, - { - "image_path": "G:\\images\\combined\\005554_jpg.rf.d1fbe3919ff2263e564dd37b664c253b.jpg", - "response": "In the image there are two people wearing yellow hats and one of them is holding a clipboard. They are standing in front of a wall with a white pipe and three signs on the wall. The first sign is in the left top of the wall and it's a square sign with blue border and white writing saying Standard Practice. The second sign is in the right top of the wall and it's a square sign with red border and white writing saying Waterproof. The third sign is in the right bottom of the wall and it's a rectangle sign with white writing saying Attention, long pipe.", - "id": 3745 - }, - { - "image_path": "G:\\images\\combined\\005556_jpg.rf.0e7f9d307ed6495773c7e850b1150cd9.jpg", - "response": "A man wearing a hard hat and a yellow safety vest standing in front of a pile of rocks.", - "id": 3746 - }, - { - "image_path": "G:\\images\\combined\\005558_jpg.rf.1d1fb2f70a45441c52c3e7ba68b650fb.jpg", - "response": "A worker operates a drone to inspect a building site in Handan, Hebei province, China, 17 October 2017. Handan is one of the first groups of cities in China to use drones for building site safety inspections. The drones can cover a wider area and detect hazards more efficiently than human inspectors. The data collected by the drones is transmitted in real-time to a control center, where it is analyzed and used to improve safety. Handan has over 100 drones being used for building site safety inspections. According to the city's construction safety authority, the drones have detected over 2000 hazards and prevented 150 potential accidents. The drones have also reduced the time and cost of building site safety inspections by over 50%. The drones used in Handan are equipped with high-resolution cameras, LIDAR (Light Detection and Ranging) and other sensors to collect data on building site conditions. The data is then analyzed using artificial intelligence to identify hazards such as unsecured scaffolding, overloaded cranes and blocked emergency exits. The drones are also used to monitor construction workers' safety vests, hard hats and other protective gear to ensure they are being worn correctly. The drones are expected to be used in more Chinese cities for building site safety inspections in the future.", - "id": 3747 - }, - { - "image_path": "G:\\images\\combined\\005559_jpg.rf.f828773d78fc846258fa16e9587fc1d3.jpg", - "response": "An electrician in a yellow hard hat is working on top of a power pole.", - "id": 3748 - }, - { - "image_path": "G:\\images\\combined\\005560_jpg.rf.f9948f817d4008ce1851c3d331bc35f9.jpg", - "response": "In the image, there is a construction site with scaffolding and steel beams. In the center of the image, there is a female construction worker wearing a yellow hard hat and orange shirt, kneeling on the ground. She has a yellow hard hat on her head, her arms are crossed in front of her, and she is looking at the camera. There is a bottle on the ground next to her, and a backpack is placed to the left of her. The background shows a large construction site with steel beams and scaffolding in various shapes and sizes.", - "id": 3749 - }, - { - "image_path": "G:\\images\\combined\\005561_jpg.rf.a464051d3eb382069773a34d87ac855b.jpg", - "response": "Three men in high visibility vests and hard hats are standing on a construction site, looking at a blueprint. The man on the left is holding a tablet computer.", - "id": 3750 - }, - { - "image_path": "G:\\images\\combined\\005562_jpg.rf.faa9401b508994fd716ff1df134671cf.jpg", - "response": "A group of men in hard hats are standing around a large metal box. They are wearing work clothes and are standing on a construction site.", - "id": 3751 - }, - { - "image_path": "G:\\images\\combined\\005563_jpg.rf.9da54f7949ce449108b06baa47fb06e1.jpg", - "response": "A group of men in blue hard hats are holding a large wooden pole over their heads. They are standing in a lush green forest.", - "id": 3752 - }, - { - "image_path": "G:\\images\\combined\\005565_jpg.rf.65fc1b3598009561998d3bcb00e7196c.jpg", - "response": "The image shows two construction workers on a building site. They are wearing yellow and orange safety gear and are working on a large building. The building is made of concrete and has a grid-like structure. The workers are working on a red grid as well. One of the workers is kneeling down and appears to be working on the building. The other worker is further back, working on the red grid.", - "id": 3753 - }, - { - "image_path": "G:\\images\\combined\\005567_jpg.rf.d5a4fa2bf895c00c1a3259d513fc9844.jpg", - "response": "A large crane is lifting a large concrete beam into place over a dirt road. The beam is being held by several men in hard hats. The sky is overcast and there are a few clouds in the sky.", - "id": 3754 - }, - { - "image_path": "G:\\images\\combined\\005568_jpg.rf.e184f476de9d2b32517cac48370135e0.jpg", - "response": "A man in a grey suit and a man in a black coat and red hard hat stand in a room with a large blue and silver piece of machinery.", - "id": 3755 - }, - { - "image_path": "G:\\images\\combined\\00556_jpg.rf.2d91292ca003e4418ebb11010adc577c.jpg", - "response": "The picture shows a scene on the top of a building in Changsha. There are three people in the picture, all wearing red hard hats. In the middle, there is a man with glasses, a white shirt and grey trousers, he is likely the person being interviewed. To the far left of the image is a man in a white T-shirt and blue jeans. To the far right of the image is a man in a red hard hat. In front of the three people is a green fence. Behind the fence is a building that has been built but has not been finished. It is currently covered with grey corrugated iron sheets and red bricks. On the left side of the building, there is a tower with a black metal frame and a glass observation deck.", - "id": 3756 - }, - { - "image_path": "G:\\images\\combined\\00556_jpg.rf.ceb4e56300e873ab713857309471aee5.jpg", - "response": "The photo shows a group of people standing on a rooftop in the city. They are all wearing hard hats. In the foreground on the left, a man in a white shirt and grey pants is talking. He is wearing a red hard hat. To the right of him, a man in a blue shirt is also wearing a white hard hat. In the background, a man in a yellow shirt is wearing a yellow hard hat. The man in the middle is wearing a white shirt, a grey vest and a white helmet. He is talking to the man in the white shirt. In the far distance, you can see the skyline of the city.", - "id": 3757 - }, - { - "image_path": "G:\\images\\combined\\005570_jpg.rf.f3a77b4a690e0ff99e2144f3b765b8ae.jpg", - "response": "A group of men standing in the snow", - "id": 3758 - }, - { - "image_path": "G:\\images\\combined\\005571_jpg.rf.eff431f95573c3877bd44576f930b391.jpg", - "response": "A group of four men in red work clothes are working on a piece of equipment outdoors. They are all wearing red helmets and the ground is snowy. There are two red metal bars in the foreground and a red metal pipe in the background. A large red metal pipe has snow on it and is connected to a yellow piece of equipment. A man on the far left is using a tool to adjust a yellow and black valve on the pipe. Another man is pulling on a chain next to the first man. A third man is pulling on a rope attached to a yellow metal hook. The fourth man is pulling on a chain attached to the same hook.", - "id": 3759 - }, - { - "image_path": "G:\\images\\combined\\005572_jpg.rf.69ef8b13477fd49d881f30515294c4fc.jpg", - "response": "A group of workers are working on a construction site.", - "id": 3760 - }, - { - "image_path": "G:\\images\\combined\\005574_jpg.rf.310a5662fba9a23f394123853c5bdf07.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", - "id": 3761 - }, - { - "image_path": "G:\\images\\combined\\005575_jpg.rf.0c50dd4fa4d3541866756c9cdc846ade.jpg", - "response": "An electrician is working on power lines in a rural area. He is standing on a small shed or box, wearing a yellow helmet and overalls. There are two other people in the scene, one on the left and one on the right. They are both wearing yellow helmets. In the background, there is a road and a field of green grass.", - "id": 3762 - }, - { - "image_path": "G:\\images\\combined\\005576_jpg.rf.cad70e6730d17c73b4ca4462264d4f93.jpg", - "response": "A group of people working in a foundry. They are wearing hard hats and some are holding shovels. The ground is wet and there is a large piece of metal in the middle of the room that is glowing red.", - "id": 3763 - }, - { - "image_path": "G:\\images\\combined\\005577_jpg.rf.375ed9509e16cbca9d5e6c03578283c7.jpg", - "response": "A group of three men standing next to each other wearing hard hats.", - "id": 3764 - }, - { - "image_path": "G:\\images\\combined\\005578_jpg.rf.726b8088a182f97643867c22ff03ba24.jpg", - "response": "A group of people wearing blue hats are holding a large metal pole.", - "id": 3765 - }, - { - "image_path": "G:\\images\\combined\\005579186e95c20a.jpg", - "response": "A group of men are standing around a table with a laptop on it. There are two more tables in the room, one of which has a cup on it, and another that has a bowl on it. There are chairs around the tables, and a backpack is placed on the floor. There is also a bottle on one of the tables.", - "id": 3766 - }, - { - "image_path": "G:\\images\\combined\\005579_jpg.rf.f86a59cc2e33fe8f3b550f6144f0c828.jpg", - "response": "A group of men standing around each other.", - "id": 3767 - }, - { - "image_path": "G:\\images\\combined\\00557_jpg.rf.75fdd1abb0ef26b73a97a96f1ab82b9e.jpg", - "response": "A group of four men standing in front of a power station. They are all dressed in blue and white, and they are wearing hard hats. The power station is large and made of metal. There are many metal towers and wires in the background.", - "id": 3768 - }, - { - "image_path": "G:\\images\\combined\\005580_jpg.rf.88d54cfd0fa7771bd55c1dd547f2e9a0.jpg", - "response": "A group of three men standing in front of a tarp and a pile of rubble. They are all wearing hard hats.", - "id": 3769 - }, - { - "image_path": "G:\\images\\combined\\005582_jpg.rf.db007e79618be8ac8ad7f9bdb0b0b04b.jpg", - "response": "In the image, US President Barack Obama is speaking at a podium in front of a group of workers wearing hard hats. The workers are standing behind a large American flag that is draped over the podium. Obama is wearing a blue shirt and tie, and is holding a microphone. He appears to be speaking about manufacturing jobs.", - "id": 3770 - }, - { - "image_path": "G:\\images\\combined\\005583_jpg.rf.c8d1bef4b4e431bc5876463a10d0799f.jpg", - "response": "A worker in a steel factory in China.", - "id": 3771 - }, - { - "image_path": "G:\\images\\combined\\005584_jpg.rf.661dab718bf434041f5826d95d6f870f.jpg", - "response": "A worker in a red hard hat crouches in a corridor between two rows of large concrete pipes. He is holding a light and appears to be examining the pipes.", - "id": 3772 - }, - { - "image_path": "G:\\images\\combined\\005586_jpg.rf.f695cd388e9b78286729cd8ec2d12935.jpg", - "response": "A group of three workers are working on a building site. They are all wearing yellow hard hats. The man in the middle is wearing a white shirt and grey pants. The man on the left is wearing a white shirt and grey pants. The man on the right is wearing a yellow shirt and grey pants. They are all wearing yellow hard hats. The building site has several wooden poles and some wires running across them.", - "id": 3773 - }, - { - "image_path": "G:\\images\\combined\\005587_jpg.rf.5c9dcf837321cb2d114aea600aa7e8a6.jpg", - "response": "In the image there are three people wearing yellow and orange work clothes and helmets. They are walking around a large pile of red bricks.", - "id": 3774 - }, - { - "image_path": "G:\\images\\combined\\005589_jpg.rf.77f9b8d74eb57b6dbc028230770791e3.jpg", - "response": "A pair of workers are suspended from a bridge, working on power lines. They are wearing hard hats and camouflage clothing. The bridge is located in a mountainous area, and the river below is green and visible through the suspension cables. There are also two other people visible in the distance, further away from the workers.", - "id": 3775 - }, - { - "image_path": "G:\\images\\combined\\00558_jpg.rf.64a0c684acc3bf0016a5ba12c68f311f.jpg", - "response": "A man is working on a construction site. He is wearing a brown vest and a dark shirt. He is holding a tool in his hand. In front of him is a pile of bricks. To his right is a pile of wooden poles. In the background are a few buildings and a mountain.", - "id": 3776 - }, - { - "image_path": "G:\\images\\combined\\00558_jpg.rf.9faf5b041c42311b3fd30a71b7cdb4c6.jpg", - "response": "A man wearing a brown vest and a light blue shirt is building a brick wall. He is holding a long tool with a red handle and is working on a concrete slab. The sky is grey and overcast.", - "id": 3777 - }, - { - "image_path": "G:\\images\\combined\\005590_jpg.rf.a2af78c24c6e1dd8b1dc46b3f994e68d.jpg", - "response": "A man in a hard hat and high visibility jacket stands in front of a large cylindrical metal object, which is sitting on a steel work table. The man is smiling at the camera. There are three other people visible in the background, two of which are standing further to the right and the other one further to the left. The wall behind the large metal object is brown and there are two large metal support beams to the right and left of the object.", - "id": 3778 - }, - { - "image_path": "G:\\images\\combined\\005591_jpg.rf.0ef78e76559f5261ef8d00c828c5bdcb.jpg", - "response": "A group of men standing around a plot of land.", - "id": 3779 - }, - { - "image_path": "G:\\images\\combined\\005592_jpg.rf.d3f4d1a4eba3b030e8b477b06a032a17.jpg", - "response": "Stock Photography of Miner using a walkie talkie in a mine tunnel", - "id": 3780 - }, - { - "image_path": "G:\\images\\combined\\005593_jpg.rf.59469ff3b755ecd3810770dea83b2057.jpg", - "response": "a group of men standing in front of a model of a city", - "id": 3781 - }, - { - "image_path": "G:\\images\\combined\\005594_jpg.rf.e0175bf77d26ba00b6213259aef5cd89.jpg", - "response": "a group of people standing in front of a brick building", - "id": 3782 - }, - { - "image_path": "G:\\images\\combined\\005595_jpg.rf.5ab16a321c915da56553e0e34aa313df.jpg", - "response": "A man wearing a hard hat and a yellow safety vest is holding a large set of blueprints in front of a construction site. The man is standing next to a vehicle, possibly a truck, and there are two cranes in the background. The sky is blue and the sun is shining.", - "id": 3783 - }, - { - "image_path": "G:\\images\\combined\\005596_jpg.rf.0915be9121b119478faef5de29446710.jpg", - "response": "A worker wearing a blue hat is looking at a folder of papers while holding a device.", - "id": 3784 - }, - { - "image_path": "G:\\images\\combined\\005597_jpg.rf.cbca37eb2f947efc6296910465c76ec5.jpg", - "response": "A couple of men wearing hard hats sitting in front of a computer.", - "id": 3785 - }, - { - "image_path": "G:\\images\\combined\\00559_jpg.rf.0a6b45eeb924ab80be7bdb1b354ac2cc.jpg", - "response": "A group of men standing in a construction site", - "id": 3786 - }, - { - "image_path": "G:\\images\\combined\\00559_jpg.rf.8eb4587fd7efacde44789790de1906a1.jpg", - "response": "A group of men standing around a construction site", - "id": 3787 - }, - { - "image_path": "G:\\images\\combined\\0055f3b771d53fe2.jpg", - "response": "The image shows the front desk of Nutmeg State Federal Credit Union. The desk is brown and wooden and has a large sign above it that says \"Nutmeg State Federal Credit Union\" in black. The letters are arched and the sign is lit up with green lights. There are also two blue lights above the desk. The desk has several items on it including a keyboard, a mouse, a laptop, and a cup. There are also two TVs on the wall, one on the left and one on the right. The TVs are turned on and are displaying information.", - "id": 3788 - }, - { - "image_path": "G:\\images\\combined\\005600_jpg.rf.23f7f802ffdee132c75c1e36ff968618.jpg", - "response": "A group of men working on a ladder.", - "id": 3789 - }, - { - "image_path": "G:\\images\\combined\\005601_jpg.rf.ff9ff5dac9e10caaac410192ab51dd64.jpg", - "response": "A group of men standing around a covered object.", - "id": 3790 - }, - { - "image_path": "G:\\images\\combined\\005602_jpg.rf.9be8df78d620efa4415cd295f164ae65.jpg", - "response": "A group of men standing on a road in the mountains. Some of the men are wearing hard hats and one is wearing a red one. They are all wearing different colored jackets. In the background are mountains and a red flag.", - "id": 3791 - }, - { - "image_path": "G:\\images\\combined\\005603_jpg.rf.07966a38d9d588e756b5570bb280e184.jpg", - "response": "In the image, there are two people standing underneath a sign that reads \"\u660e\u5149\u8857\u9053\u5f20\u6e7e\u6751\u8d75\u5bb6\u6e7e\u6392\u6d9d\u5de5\u7a0b\" in black lettering. The sign is red and white and is located in front of a field. The two people are standing quite close to each other and are both wearing black.", - "id": 3792 - }, - { - "image_path": "G:\\images\\combined\\005604_jpg.rf.e6666a320fb5db1fb15c01fbac085e2e.jpg", - "response": "In the image, there is a worker wearing a blue hat and shirt, working on a piece of metal with a welding tool. The worker is focused on their task, and there is a bright\u95ea\u5149 coming from the welding tool. The background is blurred, with a chair and a TV visible in the distance. There are also several bottles and a cup in the scene.", - "id": 3793 - }, - { - "image_path": "G:\\images\\combined\\005605_jpg.rf.4990a8466547bae1895adf701a35b30e.jpg", - "response": "A man in a blue shirt and red hard hat is handing a blue bag to a man in a white shirt and white hard hat. Both men are on a construction site.", - "id": 3794 - }, - { - "image_path": "G:\\images\\combined\\005608_jpg.rf.f9d3a52f62ebb2754c5d63a6d870f2b6.jpg", - "response": "The image shows three workers in blue uniforms and white helmets who are repairing power lines. They are standing on ladders and using tools.", - "id": 3795 - }, - { - "image_path": "G:\\images\\combined\\00560c3045b4f1d5.jpg", - "response": "A book with a green cover and gold lettering. The title is \"Seaside Walks of a Naturalist\" and there is an illustration of a man raking the shore.", - "id": 3796 - }, - { - "image_path": "G:\\images\\combined\\005610_jpg.rf.524d9eb7729e14da5c2727049000ea10.jpg", - "response": "A man wearing a red hard hat is kneeling down and using a circular saw. Another man is standing behind him.", - "id": 3797 - }, - { - "image_path": "G:\\images\\combined\\005611_jpg.rf.dfbbf015698c0291caf3861970cfa77f.jpg", - "response": "A group of construction workers in hard hats and safety vests are working on a construction site.", - "id": 3798 - }, - { - "image_path": "G:\\images\\combined\\005612_jpg.rf.07e12ab4444eb6d83f7a176151a48612.jpg", - "response": "a group of people wearing hard hats(96,453),(243,669)(2,43),(159,329)(696,413),(771,492)(350,413),(433,491)(498,401),(595,501)(239,429),(349,547)(756,589),(851,749)", - "id": 3799 - }, - { - "image_path": "G:\\images\\combined\\005613_jpg.rf.f20e195ba77f5520d0f7d6da46bfc1de.jpg", - "response": "In the image there are two people standing in front of a pile of white pipes. They are both wearing red jackets and white helmets. The person on the left is holding a clipboard. On the right side of the image there is a table with several buckets on it. In the background there is a building under construction.", - "id": 3800 - }, - { - "image_path": "G:\\images\\combined\\005614_jpg.rf.91935374767b1fb7138d856137a077f8.jpg", - "response": "An electrical crew works on power lines in a field.", - "id": 3801 - }, - { - "image_path": "G:\\images\\combined\\005615_jpg.rf.c05288c4fa03a82cb101e8e13d334328.jpg", - "response": "A man in blue coveralls and a blue hat is sitting on some power lines.", - "id": 3802 - }, - { - "image_path": "G:\\images\\combined\\005616_jpg.rf.1db01b8d2ea24f749d34a1933ab176f6.jpg", - "response": "A construction site with three people working on a building frame. They are working on a blue and white structure with rebar. One person is wearing a yellow shirt and a white hard hat, another person is wearing a blue shirt and a white hard hat, and the third person is wearing a yellow shirt and a green hard hat. They are all working on a metal structure.", - "id": 3803 - }, - { - "image_path": "G:\\images\\combined\\005617_jpg.rf.51f7226d59f2c4cfb97edfdf6703fb0a.jpg", - "response": "The image shows a group of seven men wearing red hard hats, with one man on the left and the others in a line to his right. They are all dressed in dark clothes, and the man at the right end is also wearing a black suit. The men are walking on a dirt ground with a row of buildings under construction on their left and ahead. The leftmost building is brown and has four floors, while the others are still under construction and have scaffolding and blue netting. In the background, there are tall buildings of various heights and colors, including a few that are recognizably cranes.", - "id": 3804 - }, - { - "image_path": "G:\\images\\combined\\005618_jpg.rf.1e213c88d0b23fd4ca24a498c821e0ca.jpg", - "response": "The picture shows the party secretary, Chen Jinhua, in the middle, with his arm raised, indicating his leadership and management. He is accompanied by Cai Weiguo, the head of the party committee of the construction site, and other leaders of the party committee of the construction site. They are visiting the construction site to investigate and guide work.", - "id": 3805 - }, - { - "image_path": "G:\\images\\combined\\005619_jpg.rf.66a172c18d98ac3829e87b0f8953fc83.jpg", - "response": "A man in a red jacket is hanging from a power line.", - "id": 3806 - }, - { - "image_path": "G:\\images\\combined\\00561_jpg.rf.0e9ce7fb7fdcdbc48f128c397597a4ab.jpg", - "response": "A man wearing a yellow hard hat pushing a wheelbarrow filled with concrete.", - "id": 3807 - }, - { - "image_path": "G:\\images\\combined\\00561_jpg.rf.b8ef6d001d342b46d25ee0ded61052c1.jpg", - "response": "A man in a yellow hard hat pushing a wheel barrel.", - "id": 3808 - }, - { - "image_path": "G:\\images\\combined\\005620_jpg.rf.0ba9cf9c3f668df9eaad1065689feb61.jpg", - "response": "In the image there is a worker wearing a yellow hard hat, orange safety vest and white gloves. They are working on a pile of scrap metal which includes steel and aluminum. The worker is in front of a large pile of metal and is leaning over a piece of machinery.", - "id": 3809 - }, - { - "image_path": "G:\\images\\combined\\005621_jpg.rf.2f7833bb41680a2758bbdd47e470a03b.jpg", - "response": "a group of people standing around a construction site", - "id": 3810 - }, - { - "image_path": "G:\\images\\combined\\005622_jpg.rf.c1079ad832b8cec3758de1e2869053d2.jpg", - "response": "A group of people standing on top of a metal staircase.", - "id": 3811 - }, - { - "image_path": "G:\\images\\combined\\005623_jpg.rf.90ea82d7d9935ed497584d9b9714d8e2.jpg", - "response": "A construction site with a man in the center wearing a orange hard hat. He is standing in front of a unfinished brick building with a orange crane in the background. There is a unfinished black roof on the left with a black tower in the middle. There are wood planks and concrete everywhere.", - "id": 3812 - }, - { - "image_path": "G:\\images\\combined\\005625_jpg.rf.d0485b6954b124bade91853a4cad448e.jpg", - "response": "A worker wearing a yellow hat and black clothes is seen in front of power distribution equipment. The sky is clear and blue.", - "id": 3813 - }, - { - "image_path": "G:\\images\\combined\\005627_jpg.rf.ef00ae322cb37d7c61235299fd056913.jpg", - "response": "a man(293,356),(746,995) in an orange jumpsuit(291,423),(613,991) is working in a large hole", - "id": 3814 - }, - { - "image_path": "G:\\images\\combined\\005628_jpg.rf.b869934b6b014942850e8919a5982fd0.jpg", - "response": "In the image there are two workers installing solar panels on the roof of a building. The solar panels are dark blue in color and are installed on the roof of the building. The workers are wearing blue helmets and are in the process of installing the solar panels. One of the workers is kneeling on the roof while installing the panels and the other worker is in the background.", - "id": 3815 - }, - { - "image_path": "G:\\images\\combined\\005629_jpg.rf.e1b5d405d603a860c9f594f4970a6b2b.jpg", - "response": "A group of workers standing inside a large tunnel.", - "id": 3816 - }, - { - "image_path": "G:\\images\\combined\\00562_jpg.rf.4cbda13cda6c2ab742d53450d40a8264.jpg", - "response": "A pair of men wearing red helmets stand on a pile of rock.", - "id": 3817 - }, - { - "image_path": "G:\\images\\combined\\005630_jpg.rf.67266222285f5f7537729277b77302e4.jpg", - "response": "A worker in a red hard hat is working on a large concrete structure.", - "id": 3818 - }, - { - "image_path": "G:\\images\\combined\\005632_jpg.rf.011b91c5249aaf772408c7dac79c96ed.jpg", - "response": "A man in a red suit and a white helmet standing in front of a stack of wooden planks.", - "id": 3819 - }, - { - "image_path": "G:\\images\\combined\\005633_jpg.rf.df557ac413f987aa555a947c9058dce7.jpg", - "response": "A group of people walking in front of a tall building.", - "id": 3820 - }, - { - "image_path": "G:\\images\\combined\\005635e119b9f32f.jpg", - "response": "A small airplane sitting on a dirt field.", - "id": 3821 - }, - { - "image_path": "G:\\images\\combined\\005635_jpg.rf.12d792f7bf85922bfceee851555ec95e.jpg", - "response": "A construction crew of men in blue hard hats are working on a pole.", - "id": 3822 - }, - { - "image_path": "G:\\images\\combined\\005636_jpg.rf.4da856e52407a3b7d8a0e2a93fc43e77.jpg", - "response": "A couple of men working on a telephone pole with many power lines.", - "id": 3823 - }, - { - "image_path": "G:\\images\\combined\\005637_jpg.rf.338aaa9ab03aabde06d8322eea8f0c6f.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a blue jacket, they are crouching down and working with some metal rods. There are several bundles of grey metal rods stacked on the ground around them, and they have a pair of pliers in their hand.", - "id": 3824 - }, - { - "image_path": "G:\\images\\combined\\005638_jpg.rf.a6334534e0c6b72b978b10bbd143e6b1.jpg", - "response": "The image shows two workers at a construction site, standing on a red concrete floor and surrounded by metal bars. They are wearing yellow hard hats and blue shirts. One of the workers is on the left, and the other is on the right. They are both focused on the task at hand.", - "id": 3825 - }, - { - "image_path": "G:\\images\\combined\\005639_jpg.rf.8f6f09e500e808cba41eae80577a8c37.jpg", - "response": "In the image, there is a group of people standing around a small SUV. Some of the people are wearing hard hats and one of them is wearing a red hat. There are also two other people wearing white hats. In the background, there is a car and a mountain. A few of the people are holding orange ribbons.", - "id": 3826 - }, - { - "image_path": "G:\\images\\combined\\00563_jpg.rf.0fe40558bb48b914b040284686ead382.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. They are all wearing hard hats, with four men on the left and three on the right. In the center of the group, three men are wearing blue shirts and standing closer together. The ground in front of the group is covered with wood debris.", - "id": 3827 - }, - { - "image_path": "G:\\images\\combined\\005640_jpg.rf.acd1a54e6fee2c7e41d0953cc9a929b1.jpg", - "response": "The image shows three workers in yellow and orange, wearing hard hats and working on a bridge. The bridge is made of concrete and has a brown color. In the background, there is a brown mountain. The sky is blue with clouds.", - "id": 3828 - }, - { - "image_path": "G:\\images\\combined\\005641_jpg.rf.419ed4d61a23a058781709be24bd0a95.jpg", - "response": "A group of three men standing and looking at a piece of paper.", - "id": 3829 - }, - { - "image_path": "G:\\images\\combined\\005642_jpg.rf.4e1932144ed26f0aa5272f81f97bf7cc.jpg", - "response": "A construction site with two workers visible in the image. One worker is sitting on a metal bar and the other worker is crouching down. They are both wearing orange hard hats. In the background, there is a city skyline.", - "id": 3830 - }, - { - "image_path": "G:\\images\\combined\\005643_jpg.rf.5443109369df4654fe0928c31e567214.jpg", - "response": "A construction site with two workers.", - "id": 3831 - }, - { - "image_path": "G:\\images\\combined\\005644_jpg.rf.4031602b996fb8a3b01343ac1750419a.jpg", - "response": "a group of men in white shirts and red hard hats", - "id": 3832 - }, - { - "image_path": "G:\\images\\combined\\005646_jpg.rf.1a863c08499311bc3d9fb8559e1db721.jpg", - "response": "A man wearing a yellow hard hat is carrying a large black tube over his shoulder. He is walking on a dirt road that is being built. There is a yellow piece of heavy machinery in the background. In the foreground, there is a large rock and a piece of rebar.", - "id": 3833 - }, - { - "image_path": "G:\\images\\combined\\005647_jpg.rf.4b6af2a3d103653b74f9b5f6b908c87d.jpg", - "response": "A group of men in suits standing together.", - "id": 3834 - }, - { - "image_path": "G:\\images\\combined\\005648_jpg.rf.16081b69fa71a2db099e37326e9236a7.jpg", - "response": "A man wearing a yellow helmet and a yellow and grey top is standing in a field. He is smiling at the camera. In the background there is another person wearing a yellow helmet and a yellow and grey top. They are standing in front of a building site with a crane in the background. There are also two other people in the image.", - "id": 3835 - }, - { - "image_path": "G:\\images\\combined\\005649_jpg.rf.72aa3d7642c435d7941bc3712e73ed57.jpg", - "response": "The image shows two men wearing hard hats standing on a construction site. They are both holding a blueprint, and one of them is pointing towards something.", - "id": 3836 - }, - { - "image_path": "G:\\images\\combined\\00564_jpg.rf.1ffccca0c6bf93871f58d3840cb1700a.jpg", - "response": "In the image two men wearing hard hats, one wearing a mask and both wearing blue jackets are looking at a piece of paper. The paper is yellow and black and has some writing on it. They are standing in a room with a yellow wall and some shelves on the wall. There is a truck in the background. They are also standing in front of a large metal structure.", - "id": 3837 - }, - { - "image_path": "G:\\images\\combined\\00564_jpg.rf.c062b602187943cddbe338a105de5872.jpg", - "response": "In the image two men wearing hard hats, one wearing a mask and one not, are looking at a paper. They are in a room with a yellow line on the floor. In the background there is a large factory with a lot of pipes and metal structures. On the right side of the image there is a blue box with two white dials.", - "id": 3838 - }, - { - "image_path": "G:\\images\\combined\\005650_jpg.rf.0d592ad43f7725264f25671134903032.jpg", - "response": "A man in a suit and tie standing next to a man in a construction uniform and hard hat. They are standing in front of a stack of stacked cargo containers.", - "id": 3839 - }, - { - "image_path": "G:\\images\\combined\\005652_jpg.rf.849dc1c1c7510b37030dce9946d7cf9f.jpg", - "response": "A construction worker is sitting in a small space, wearing a yellow hard hat, a green jacket, and an orange vest. They are holding a shovel and appear to be working on a construction site.", - "id": 3840 - }, - { - "image_path": "G:\\images\\combined\\005653_jpg.rf.fb1ac26c9ff1747d91dfff5df62c237b.jpg", - "response": "The image shows a construction site with several workers dressed in blue uniforms and red helmets. They are standing near a dump truck that is loaded with blue material. In the background, there is a large building under construction with a blue fence around it. There are also two chimneys in the distance. The ground is covered in dirt and there are a few bags lying around.", - "id": 3841 - }, - { - "image_path": "G:\\images\\combined\\005656_jpg.rf.edb698a273da0fa0d3fb08f134fb6a2f.jpg", - "response": "The image shows a group of construction workers wearing yellow vests and yellow hats working on a building site. The workers are standing on a concrete foundation and are working on a framework of steel rebar. They are building a structure that resembles a framework for a bridge.", - "id": 3842 - }, - { - "image_path": "G:\\images\\combined\\005657_jpg.rf.266bd62433fd17698cfa369611e506c1.jpg", - "response": "A man in a blue shirt is holding a white rolled up paper and pointing to the right. He is wearing a blue and white shirt and glasses.", - "id": 3843 - }, - { - "image_path": "G:\\images\\combined\\00565e236c7c8f5f.jpg", - "response": "A case of Coca Cola Life sits on a store shelf.", - "id": 3844 - }, - { - "image_path": "G:\\images\\combined\\00565_jpg.rf.1b584fb63cb0e02e80f3c6744fc12fb6.jpg", - "response": "A group of three people standing in a rocky area.", - "id": 3845 - }, - { - "image_path": "G:\\images\\combined\\00565_jpg.rf.732767cf7d09dcaf011172b848d1bf1c.jpg", - "response": "A group of three people standing in a mine.", - "id": 3846 - }, - { - "image_path": "G:\\images\\combined\\005660_jpg.rf.f94f89230ad9470acaf10f43e06c6bd9.jpg", - "response": "In the image there are two people, one is wearing a helmet and is dressed in a construction outfit and is holding a set of plans in his hand, the other person is wearing a suit and is also wearing a helmet. They are both pointing at something in the distance, towards the right. There are three construction cranes in the image, one on the left, one in the middle and one on the right. There is a building under construction in the background, it is a tall building that is mostly built and has a few windows in the middle floors.", - "id": 3847 - }, - { - "image_path": "G:\\images\\combined\\005661_jpg.rf.7eb48e4784d09b2514bad56aae2ad904.jpg", - "response": "An electrician repairs a power pole in this undated photo. A worker(224,258),(665,994) from the state-owned China Power Grid Corporation is seen here working on a power line in this undated photo.", - "id": 3848 - }, - { - "image_path": "G:\\images\\combined\\005662_jpg.rf.76e2d6c0e0afb14a0cd1bc5517c6e9b5.jpg", - "response": "The image shows two men dressed in business suits and yellow hard hats, standing in front of a construction site. One man is on a cell phone, while the other is holding a blueprint. They are both wearing sunglasses.", - "id": 3849 - }, - { - "image_path": "G:\\images\\combined\\005663_jpg.rf.fbf7ff7c01562c545cf8cf874ce9c52a.jpg", - "response": "The image shows two workers on a ladder, repairing a power line. They are wearing safety gear, including helmets and gloves. The ladder is placed against a large pole and the workers are standing on it. The city skyline is visible in the background.", - "id": 3850 - }, - { - "image_path": "G:\\images\\combined\\005664_jpg.rf.c28c57e905614edcbbb2d41f3770de9e.jpg", - "response": "A couple of men in blue uniforms trimming the green bushes around the power pole.", - "id": 3851 - }, - { - "image_path": "G:\\images\\combined\\005665_jpg.rf.33d94b898a0836c170807288a7686688.jpg", - "response": "A man in a wheelchair and a woman stand next to a fence. Both are wearing orange vests and white hard hats. The woman has her hand on a tripod and is looking at a clipboard the man is holding.", - "id": 3852 - }, - { - "image_path": "G:\\images\\combined\\005666_jpg.rf.123ddfb993182afe4ac433329f927d73.jpg", - "response": "The image shows a group of workers in blue uniforms and yellow hard hats working on a sidewalk at night. They are using tools such as a sledgehammer and a pickaxe.", - "id": 3853 - }, - { - "image_path": "G:\\images\\combined\\005667_jpg.rf.81fe6ee3ef4a4809a2097085f53b9920.jpg", - "response": "The image shows two men wearing yellow hard hats and green and orange work jackets, with their hands in their pockets. They are both holding trowels and are standing on a rooftop near a brick wall. In the background, there is a partially constructed building with a crane working on it. The sky is blue and there are no other people in the image.", - "id": 3854 - }, - { - "image_path": "G:\\images\\combined\\005668_jpg.rf.1dc29649b5ffc337a4d0c9c94dd79421.jpg", - "response": "A group of people working on a construction site.", - "id": 3855 - }, - { - "image_path": "G:\\images\\combined\\00566_jpg.rf.4d8ada94285647a5322cb6096efafc06.jpg", - "response": "A couple of men working on a building.", - "id": 3856 - }, - { - "image_path": "G:\\images\\combined\\00566_jpg.rf.961e9b754c42003b7bf82b3ed76f0573.jpg", - "response": "Two workers(286,149),(482,707)(382,257),(723,878) in red helmets(385,148),(482,245)(464,256),(571,359) are working on a pipe", - "id": 3857 - }, - { - "image_path": "G:\\images\\combined\\005670_jpg.rf.08a8984de8b6be4759f8dd4a855810c7.jpg", - "response": "The image shows two workers in a coal mine. They are standing in a passageway between two large rocks, wearing black coats and hats. The left worker is holding a large mining tool, while the right worker is holding a flashlight. The passageway is lit by a bright orange light from the right. The miners are wearing black gloves and are focused on their tasks.", - "id": 3858 - }, - { - "image_path": "G:\\images\\combined\\005671_jpg.rf.87ce6218ed91c14277cb26017dc3c2c0.jpg", - "response": "In the image there is a person wearing a helmet and a jacket, who is standing in front of a fire and a large amount of smoke. The person is also standing in front of a large amount of red hot coals.", - "id": 3859 - }, - { - "image_path": "G:\\images\\combined\\005672_jpg.rf.2ca4279bfeeed5d7e7f71eb9d51f4452.jpg", - "response": "A group of men in orange vests and red hats pose for a photo in front of a construction site.", - "id": 3860 - }, - { - "image_path": "G:\\images\\combined\\005674_jpg.rf.0d49a0b947139c761be1fb2858ac2aa1.jpg", - "response": "The image shows a snowy scene with three workers in front of a large metal box containing electrical equipment. The workers are dressed in blue uniforms and have safety gear on. They are standing on a snow-covered ground and appear to be working on the electrical equipment. There are also some trees and a tower in the background.", - "id": 3861 - }, - { - "image_path": "G:\\images\\combined\\005675_jpg.rf.ae4e713154dc11e4a1bab8d5c0cdbe96.jpg", - "response": "A man kneeling down with a camera", - "id": 3862 - }, - { - "image_path": "G:\\images\\combined\\005676_jpg.rf.bcf2638d1e5b0c06b457a97fcfa4e9e0.jpg", - "response": "In the picture a construction site is seen, with two men wearing green and orange vests. One man is pointing to a piece of paper, which is on the other man's hand. Both of them are wearing red helmets. On the right man's paper, there's a bar code and a black square with a photo and some words.", - "id": 3863 - }, - { - "image_path": "G:\\images\\combined\\005677_jpg.rf.0cf45c1245f5202707bf82be1db21b10.jpg", - "response": "The image shows a group of men working on a sidewalk at night. They are all wearing hard hats and some are carrying tools. The men are standing in a patch of grass next to a curb.", - "id": 3864 - }, - { - "image_path": "G:\\images\\combined\\005678cab46fcec5.jpg", - "response": "A hand pushing a row of dominoes on a wooden table. The words \"Supreme Court of the United States\" are at the bottom of the image. The dominoes are labeled with the names of past supreme court justices. There is a quarter next to the first domino.", - "id": 3865 - }, - { - "image_path": "G:\\images\\combined\\005678_jpg.rf.96597121b2a828ea94985829cd66326f.jpg", - "response": "A man in a hard hat and safety goggles is standing in front of a large fire. He is holding a long metal rod that is glowing orange. The fire is also glowing orange and is spewing out of a large metal pipe. The man is wearing a white shirt and a red hard hat. He also has a beard and is wearing work gloves. The fire is happening in a factory setting and there is a staircase in the background.", - "id": 3866 - }, - { - "image_path": "G:\\images\\combined\\005680_jpg.rf.92f0e84330edc63679adfdd8889c76df.jpg", - "response": "\u516d\u5b89\u6574\u4f53\u5bb6\u5c45\u603b\u7ecf\u7406\u674e\u6653\u660e\u5148\u751f(468,142),(866,996)\u81f4\u6b22\u8fce\u8bcd", - "id": 3867 - }, - { - "image_path": "G:\\images\\combined\\005681_jpg.rf.02204e7379a524249d2c7303ee6ed972.jpg", - "response": "A group of workers wearing hard hats and standing in a factory.", - "id": 3868 - }, - { - "image_path": "G:\\images\\combined\\005682_jpg.rf.a67a81a6feacba9d2c4d8bc57fbe69da.jpg", - "response": "A group of men standing next to each other.", - "id": 3869 - }, - { - "image_path": "G:\\images\\combined\\005683_jpg.rf.b1d395d3c411ca6464fc32aaa0a48d29.jpg", - "response": " Two workers(238,530),(446,997)(571,385),(718,997) are working on a construction site", - "id": 3870 - }, - { - "image_path": "G:\\images\\combined\\005684_jpg.rf.5a78391969dcdb703f5bc12d2f2285fc.jpg", - "response": "A construction worker in a yellow safety helmet is working on a large wall that is being built. The worker is standing on a walkway that is built on top of the wall they are working on. The wall is made of metal rods and the worker is securing it with a tool in their hand. There is a light on in the background that illuminates the area.", - "id": 3871 - }, - { - "image_path": "G:\\images\\combined\\005685_jpg.rf.cf8f9075d7326b703a010afa85ff3ad7.jpg", - "response": "The picture shows a group of seven men standing in front of a large brick building with lots of windows. They are all dressed in black suits. In front of the men is some grey steps and to their right is a patch of bare ground. To the far right of the group is a large tree.", - "id": 3872 - }, - { - "image_path": "G:\\images\\combined\\005686_jpg.rf.55ce6e8f247a23e2be58f4de0c841d54.jpg", - "response": "A man in a red hard hat is holding a tape measure and pointing to a spot on a ceiling. Two other men in yellow hard hats and orange safety vests are looking at the ceiling with him.", - "id": 3873 - }, - { - "image_path": "G:\\images\\combined\\005687_jpg.rf.d2fae54007959a3991b3836009ef2129.jpg", - "response": "In the image there are two people wearing red helmets and work clothes, standing next to a yellow car with the words \"\u53d1\u51fa\u660e\u5fb7\" on it. The two people are checking something with a multi-meter.", - "id": 3874 - }, - { - "image_path": "G:\\images\\combined\\005688_jpg.rf.5d492594899b0de132abb8d704e288e5.jpg", - "response": "A coal mine with two men in orange work suits standing in front of a pile of coal.", - "id": 3875 - }, - { - "image_path": "G:\\images\\combined\\005689_jpg.rf.2ebeee38edcd06f6217fe2cd04ec0a55.jpg", - "response": "In the image there is a group of people standing on a construction site. They are wearing hard hats and one of them is wearing a red helmet. The person in the foreground is wearing a black jacket with a yellow logo on the left chest and a backpack. The person in the middle is wearing a black jacket with a yellow logo on the left chest and a black hat. The person on the far left is wearing a grey sweatshirt and a black jacket with a yellow logo on the left chest. He is also wearing a white helmet. In the background there is a yellow and grey crane. The ground is made of steel rods and there are green netting in the background.", - "id": 3876 - }, - { - "image_path": "G:\\images\\combined\\005690_jpg.rf.6379a9bf21720b8ba149fb9afae3d21a.jpg", - "response": "A man in a white hard hat and orange safety vest is standing on a yellow ladder. He is looking at the back of a truck. Another man is sitting in the back of the truck.", - "id": 3877 - }, - { - "image_path": "G:\\images\\combined\\005691_jpg.rf.2fccd8f8de9bc9e66efb7f551747c84c.jpg", - "response": "A group of workers are standing around each other, all wearing hard hats. One man is signing a clipboard held by another man in front of him. A yellow hard hat is being held by a man on the left, who is wearing a red one. Another man on the right is wearing a black and white checkered hard hat. In the background, there is a construction site with a yellow tower and a white building.", - "id": 3878 - }, - { - "image_path": "G:\\images\\combined\\005692cba860a493.jpg", - "response": "a car with a steering wheel and a speedometer", - "id": 3879 - }, - { - "image_path": "G:\\images\\combined\\005692_jpg.rf.08f3279ec9dee37fb20d78a8b4c58a36.jpg", - "response": "In the image there are four workers in blue uniforms and white hard hats. They are all working on a power line with tools.", - "id": 3880 - }, - { - "image_path": "G:\\images\\combined\\005693_jpg.rf.31752c573a7eb4f9a660b8afba99a89e.jpg", - "response": "A man in a brown jacket and white helmet is holding a clipboard and talking to another man in a blue shirt. They are standing next to a white van. There are wind turbines in the background against a blue sky with clouds.", - "id": 3881 - }, - { - "image_path": "G:\\images\\combined\\005694_jpg.rf.292af2203cf861bd4ee7200bcff4f0aa.jpg", - "response": "The image shows two workers in a factory who are working on a large cylindrical object. The object is wrapped in green and white material and is sitting on a large white and blue cylinder. The workers are standing around the object, which appears to be some kind of pipe or tube. One of the workers is holding a large white object while the other is looking at the camera. The background is blurred out and there are several logos and text scattered throughout the image.", - "id": 3882 - }, - { - "image_path": "G:\\images\\combined\\005695_jpg.rf.e78463e3db4970e06cfbf2bc45786142.jpg", - "response": "A man standing in front of stacks of blue wood with his arms crossed.", - "id": 3883 - }, - { - "image_path": "G:\\images\\combined\\005696_jpg.rf.1dec24875221696cdc14b32041fe5a28.jpg", - "response": "A man in a blue jumpsuit and a blue hard hat is welding a large metal structure. He is wearing red safety gloves and is crouched down while doing so. There is another man in a blue hard hat and safety glasses watching the man welding. There are sparks flying from the welding.", - "id": 3884 - }, - { - "image_path": "G:\\images\\combined\\005697_jpg.rf.3faea38c2a49f2d33bd6faed390a625c.jpg", - "response": "a group of people walking down a street", - "id": 3885 - }, - { - "image_path": "G:\\images\\combined\\005698_jpg.rf.0964f4ddeafa7266e7a9bedefe98c307.jpg", - "response": "a person wearing a orange jacket and a helmet is holding a laptop and is checking the pressure gauge of an oil well.", - "id": 3886 - }, - { - "image_path": "G:\\images\\combined\\00569_jpg.rf.a98ca6fe27b41619a0374a7655169028.jpg", - "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several cupboards with glass doors. In the middle of the room, there is a whiteboard with a stand. On the right side of the room, there is a pile of cardboard boxes and on the left side, there is a large box.", - "id": 3887 - }, - { - "image_path": "G:\\images\\combined\\00569_jpg.rf.b51de4774ca76eea78b1586e782f8f37.jpg", - "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several windows with white frames. In the foreground, there is a brown wooden cabinet. On the right side of the room, there is a desk with a computer monitor and a keyboard on it. On the floor, there are several cardboard boxes.", - "id": 3888 - }, - { - "image_path": "G:\\images\\combined\\0056b6f30e44474e.jpg", - "response": "A page with three sections. The first section is titled Composites. The second section is titled Maps. The third section is titled Bounce Location.", - "id": 3889 - }, - { - "image_path": "G:\\images\\combined\\005700_jpg.rf.d6b897f32557dd87a5f4ee14a397226d.jpg", - "response": "In the image there are two people standing in front of a building under construction. The woman is wearing a yellow vest and a blue helmet and is pointing to something on the right. The man is wearing a blue helmet and a white safety vest and is looking at the woman. They are both holding tablet computers in their hands.", - "id": 3890 - }, - { - "image_path": "G:\\images\\combined\\005701_jpg.rf.b60f9fcdb7b3335b975e8ade3c658327.jpg", - "response": "A worker in a safety orange jumpsuit and yellow helmet is suspended in the air while working on a power line.", - "id": 3891 - }, - { - "image_path": "G:\\images\\combined\\005702_jpg.rf.feb468513b74b12c50e4805c85ba6c44.jpg", - "response": "In the image, there is a construction worker wearing a red hat and holding a walkie-talkie. The worker is standing in front of a yellow scaffolding and a white pole. In the background, there is another worker wearing a red hat and a green shirt. They are standing next to a white pole and a yellow tower. The sky is overcast and there are a few clouds in the sky.", - "id": 3892 - }, - { - "image_path": "G:\\images\\combined\\005703_jpg.rf.566d0f92d78a7bc687c7e7a79161e6d1.jpg", - "response": "The image shows a construction site with a number of workers. There are three workers standing in the middle of the picture, all wearing yellow hard hats. To the left of these workers, there is a man wearing a white helmet and blue overalls, holding a tool. To the right of this worker, there is a man wearing a blue helmet and grey overalls, also holding a tool. To the right of this man, there are two workers lying on the ground, one wearing a green helmet and green overalls, the other wearing a white helmet and grey overalls. The workers are building a structure of red steel rods and there are several bags of concrete scattered around the site.", - "id": 3893 - }, - { - "image_path": "G:\\images\\combined\\005704_jpg.rf.b48e87d3c706e067064f224f44294f62.jpg", - "response": "A construction site with two men in front of it.", - "id": 3894 - }, - { - "image_path": "G:\\images\\combined\\005706_jpg.rf.58270160575604ad2a6ef11e570d1886.jpg", - "response": "In the image there is a large construction site with three workers present. They are working on a large building that is under construction. The workers are positioned on a platform that is elevated and they are working on a beam. There are pipes and tubes attached to the beam and workers are pouring concrete into them. There is a blue and white hard hat on the ground in the bottom right corner of the image.", - "id": 3895 - }, - { - "image_path": "G:\\images\\combined\\005707_jpg.rf.b374786d62f510c0688d865cd221156f.jpg", - "response": "The image shows a group of five men in gray clothes and yellow hard hats, working on a power line. They are wearing gray pants, gray shirts, and yellow safety belts. Four of the men are wearing gray pants and gray shirts, but one man is wearing dark gray pants and a dark gray shirt. They are all wearing yellow hard hats. In the background, there is a building with a glass facade and a balcony. On the right side of the image, there are green plants.", - "id": 3896 - }, - { - "image_path": "G:\\images\\combined\\005708_jpg.rf.0af79dc0647457c8e5084e2ecbc4cffd.jpg", - "response": "A worker measures the wall of a room.", - "id": 3897 - }, - { - "image_path": "G:\\images\\combined\\00570_jpg.rf.04757bf1ffa405c99b06ea22a4284176.jpg", - "response": "A man works at a construction site in Handan, Hebei province, China.", - "id": 3898 - }, - { - "image_path": "G:\\images\\combined\\00570_jpg.rf.5d923276ffa3d40a72a30a464eebce8f.jpg", - "response": "A man works at a construction site in Huaibei, Anhui province, China.", - "id": 3899 - }, - { - "image_path": "G:\\images\\combined\\005710_jpg.rf.72a5ab7dc6387b3f60232471f35ecab2.jpg", - "response": "Three men are working on a project, two of them are wearing red shirts and are measuring and cutting a long piece of material while the third man is standing in the background, watching what they are doing.", - "id": 3900 - }, - { - "image_path": "G:\\images\\combined\\005711_jpg.rf.40bc59e585b52c8da288cda9d7e9d915.jpg", - "response": "A group of men wearing hard hats.", - "id": 3901 - }, - { - "image_path": "G:\\images\\combined\\005712_jpg.rf.ba5b5078bef1892dcd25852dcc0c19e6.jpg", - "response": "a long red bridge with mountains in the background.", - "id": 3902 - }, - { - "image_path": "G:\\images\\combined\\005714_jpg.rf.9e42cf63b96c2577bcb2bbe170e5a04e.jpg", - "response": "An electrician working on power lines.", - "id": 3903 - }, - { - "image_path": "G:\\images\\combined\\005715_jpg.rf.89a9b758e0bcd72185d3f58ff7e496dc.jpg", - "response": "A group of men are standing in a tunnel. They are all wearing hard hats. Some of them are holding cell phones. One man is pointing towards the ceiling. The tunnel is filled with construction materials.", - "id": 3904 - }, - { - "image_path": "G:\\images\\combined\\005716_jpg.rf.52bb7222a77c38c1b05308d66786fb3d.jpg", - "response": "A group of rescue workers stand in a large underground tunnel. The tunnel is filled with debris and there are rail tracks in the foreground.", - "id": 3905 - }, - { - "image_path": "G:\\images\\combined\\005717_jpg.rf.ce5c026d876d06211b842579d93928b8.jpg", - "response": "a group of people standing inside of a building", - "id": 3906 - }, - { - "image_path": "G:\\images\\combined\\005718_jpg.rf.0723246558fb010a101a9c2ec27fed85.jpg", - "response": "A construction worker in a yellow hard hat is standing in front of a construction vehicle. The worker is holding a long white object. There is another person visible through the window of the construction vehicle.", - "id": 3907 - }, - { - "image_path": "G:\\images\\combined\\005719_jpg.rf.87909b79c7ec5a93785bb9dba18ad789.jpg", - "response": "A man in grey jumpsuit and red helmet on a power line.", - "id": 3908 - }, - { - "image_path": "G:\\images\\combined\\00571_jpg.rf.78cfaa834f867557f4f8f1767d7a4402.jpg", - "response": "A construction worker in a grey shirt and grey pants is showing a tablet to a construction worker in a yellow hard hat and grey shirt. They are both holding a rolled up blueprint.", - "id": 3909 - }, - { - "image_path": "G:\\images\\combined\\00571_jpg.rf.9304c3d21b89aae92f950c7118ec5d71.jpg", - "response": "A construction worker in a grey shirt and grey pants is showing a man in a yellow hard hat something on a tablet. The man in the yellow hard hat is wearing a yellow hard hat and has a beard. They are both holding a rolled up blueprint.", - "id": 3910 - }, - { - "image_path": "G:\\images\\combined\\005720_jpg.rf.3b68a2e65b9c5d4a7cc291729f248cfd.jpg", - "response": " A worker(116,92),(882,838) is standing in a hole.", - "id": 3911 - }, - { - "image_path": "G:\\images\\combined\\005721_jpg.rf.681b7482ee6040c1d88d644efa497bdb.jpg", - "response": "The image shows three men in red uniforms and safety gear working on a utility pole. The man in the middle is hanging from the pole while the other two are climbing up to join him. They are all wearing hard hats and the man at the bottom of the pole is also wearing a safety harness. The pole is made of wood and is located near many power lines.", - "id": 3912 - }, - { - "image_path": "G:\\images\\combined\\005722_jpg.rf.a84e6a10185cd5897dd62e6c6712a766.jpg", - "response": "A worker wearing a yellow hat is using a tool to make adjustments to a metal grid. Another worker is in the background, bending over. They are both wearing blue pants.", - "id": 3913 - }, - { - "image_path": "G:\\images\\combined\\005723_jpg.rf.bcb35da39e569be01d5626617971984e.jpg", - "response": "The image shows a group of workers wearing yellow and grey hard hats and high visibility vests working on a construction site. They are standing on a dirt patch and there are several wooden poles nearby. Some of the workers are shoveling debris onto a pile. In the background, there is a person walking a dog. The image is taken in an urban setting and there are several people in the background going about their daily activities.", - "id": 3914 - }, - { - "image_path": "G:\\images\\combined\\005724_jpg.rf.05fe0645316e544521bbd51a89ed0614.jpg", - "response": "A man in a yellow hard hat and safety vest is kneeling down next to a tire on a forklift. He is looking at the tire and is in front of a stack of shipping containers.", - "id": 3915 - }, - { - "image_path": "G:\\images\\combined\\005725_jpg.rf.5277e68b127209ee748046eb443fccee.jpg", - "response": "A worker in a red shirt and a worker in a yellow shirt are working on a ship. The worker in the red shirt is standing on the side of the ship and holding a tool. The worker in the yellow shirt is in the background and is holding a tool as well. They are both wearing hard hats.", - "id": 3916 - }, - { - "image_path": "G:\\images\\combined\\005726_jpg.rf.a4eee9dc632260a456c3bc0add13dc00.jpg", - "response": "Some workers are building a large structure. They are wearing yellow helmets and are working on a structure that resembles a bridge. They are using metal rods and concrete to build the structure. The workers are crouching or kneeling on the ground as they work.", - "id": 3917 - }, - { - "image_path": "G:\\images\\combined\\005727_jpg.rf.6c3b9ac11a51e54f4950430404f30b5b.jpg", - "response": "The image shows a group of men standing next to each other. They are all wearing black suits and ties. Some of them are closer to the front, while others are further back. In the background, there is a bridge visible. A man on the far right is holding a camera, and has a camera strap around his neck.", - "id": 3918 - }, - { - "image_path": "G:\\images\\combined\\005728_jpg.rf.e0c639777e7ab7be30515f745e2e9589.jpg", - "response": "A worker wearing a yellow helmet is using a tool on a piece of wood.", - "id": 3919 - }, - { - "image_path": "G:\\images\\combined\\005729_jpg.rf.0858fb65e7a7b6e0b1ed15d559ad7724.jpg", - "response": "\u6d77\u53e3\u4e00\u7535\u7f06\u4e95\u5185\u53d1\u751f\u7535\u7f06\u71c3\u70e7\u4e8b\u6545 \u7535\u7f06\u70e7\u7126\u53ea\u5269\u7a7a\u58f3", - "id": 3920 - }, - { - "image_path": "G:\\images\\combined\\00572_jpg.rf.abd9d89364a55467bbdf02edb03bc7b6.jpg", - "response": "In the image there are two men wearing blue and yellow hard hats standing in front of a control panel. The control panel has many buttons and switches and two screens.", - "id": 3921 - }, - { - "image_path": "G:\\images\\combined\\005730_jpg.rf.79eca749fefcb803963f3f58e83e7c12.jpg", - "response": "A group of workers in hard hats are working on a building.", - "id": 3922 - }, - { - "image_path": "G:\\images\\combined\\005732_jpg.rf.be1328b7c4d090d6b380265aded3af51.jpg", - "response": "The image shows two workers wearing blue uniforms and white helmets who are installing steel roof trusses for a new building. The trusses are light blue in color. In the background, there is a forest of trees and a yellow truck with a white trailer parked on the right side of the image.", - "id": 3923 - }, - { - "image_path": "G:\\images\\combined\\005733_jpg.rf.78836023a5aad6ae59a045af5b2b7149.jpg", - "response": "In the image there are two workers in yellow reflective vests and yellow hard hats, one on the left and one on the right. They are standing on a small yellow crane which is placed in front of a building. The workers are high up, on the third floor of the building. In front of the building, there is a group of people, some are walking, some are standing, and some are talking. There is a white pipe sticking out from the building on the left.", - "id": 3924 - }, - { - "image_path": "G:\\images\\combined\\005734_jpg.rf.b6b7af1ec4307f13430493f846ee8cf1.jpg", - "response": "The photo shows workers in yellow uniform and blue cap. They are working on the train tracks. There are seven workers in total, some are installing the tracks, some are checking the tracks, and one is talking to a man in a grey suit. The workers are in a outdoor setting, and the sky is grey. There are also two benches in the scene, one is under a tree on the right side, and the other is on the far left side.", - "id": 3925 - }, - { - "image_path": "G:\\images\\combined\\005735_jpg.rf.5bb78bc4bb7bc4728ad81824edadb084.jpg", - "response": "The night operation to fix the damaged power line.", - "id": 3926 - }, - { - "image_path": "G:\\images\\combined\\005736_jpg.rf.e23d8f10b0dfcf820c569de86bdafeb2.jpg", - "response": "A man in a blue helmet and black jacket is on the back of a yellow truck working on a large transformer. He has a tool in his hand. The truck is parked in front of a tall building.", - "id": 3927 - }, - { - "image_path": "G:\\images\\combined\\005737_jpg.rf.06ac52b3835602a6a51174300ef4be7a.jpg", - "response": "A man wearing a white hard hat is holding a large set of architectural plans. He is standing in front of a building with a metal structure above his head.", - "id": 3928 - }, - { - "image_path": "G:\\images\\combined\\005738_jpg.rf.7ddc8db4eb8c712533aa9673aa8442a4.jpg", - "response": "A man wearing a hard hat is talking to two women who are also wearing hard hats. They are standing in front of a construction site.", - "id": 3929 - }, - { - "image_path": "G:\\images\\combined\\005740_jpg.rf.e27aad29419011d3ff23272e92214731.jpg", - "response": "A group of workers are working on a power line.", - "id": 3930 - }, - { - "image_path": "G:\\images\\combined\\005742_jpg.rf.b74268e4e62562505587bcf20bf7ddd1.jpg", - "response": "The image shows a construction site in a residential area. There are a few workers visible, one of whom is pulling on a long black hose while wearing a blue hat. Another worker is further back, wearing a yellow helmet and holding a long tool. In the background, there is a tall building with balconies on its side. The ground is dirt and there are a few large rocks visible. The sky is blue and there are a few clouds.", - "id": 3931 - }, - { - "image_path": "G:\\images\\combined\\005743_jpg.rf.7bb1d5f0fbba0473f908b7e19ea88d64.jpg", - "response": "A group of men standing in a field next to a sign.", - "id": 3932 - }, - { - "image_path": "G:\\images\\combined\\005744_jpg.rf.78ea8803bb25b257de844bbda99c5a68.jpg", - "response": "A group of people standing around talking.", - "id": 3933 - }, - { - "image_path": "G:\\images\\combined\\005745_jpg.rf.4918d48fc98532e4a55c2e59928dc8fd.jpg", - "response": "A group of workers are on top of a building. They are working on a scaffolding around the top of the building. The building has a green roof.", - "id": 3934 - }, - { - "image_path": "G:\\images\\combined\\005747_jpg.rf.2daf7f1238cf40b6c5ecd5ef0f63ef21.jpg", - "response": "A worker(493,367),(824,996) in a red hard hat(643,367),(802,493) is standing in a shaft of a building", - "id": 3935 - }, - { - "image_path": "G:\\images\\combined\\005748_jpg.rf.efcc27a3ac6655a9b33438eb567c94bb.jpg", - "response": "In the image there is a man and a woman wearing blue helmets. They are standing in front of a building which is under construction. The building is made of bricks and has a scaffolding around it. The woman has her arms crossed and is looking into the distance. The man has his hand on his chin and is talking to the woman.", - "id": 3936 - }, - { - "image_path": "G:\\images\\combined\\005749_jpg.rf.2219169f6f5448d72700bc1049f205c6.jpg", - "response": "A man wearing a white t-shirt and a white hard hat is holding a yellow tape measure and measuring a wooden structure. The man has short black hair and a faint beard. He is looking intently at the wooden frame he is measuring. The sky is blue and can be seen through the gaps in the wooden structure.", - "id": 3937 - }, - { - "image_path": "G:\\images\\combined\\005750_jpg.rf.5aa54d65dc51b24f5b016a5143521ff3.jpg", - "response": "A worker in a factory is using a hose to control the flow of molten metal. The metal is glowing orange and spewing out of a large door. The worker is wearing a white hard hat and a protective apron.", - "id": 3938 - }, - { - "image_path": "G:\\images\\combined\\005751_jpg.rf.fc25df520569cb48e46d02354787de65.jpg", - "response": "A man wearing a red hard hat stands on top of a green metal structure. He is holding a long stick and appears to be working on a building.", - "id": 3939 - }, - { - "image_path": "G:\\images\\combined\\005752_jpg.rf.a3bde25a3a9c6c9a5dbdb2ee2d2d560a.jpg", - "response": "A group of three men wearing yellow hard hats are working on a construction site. They are all wearing black shirts and orange or red pants. They are standing behind a long, large metal pipe or tube that has been bent into a circular shape. They are holding and working with the metal. In the background, there is a large building with lots of windows.", - "id": 3940 - }, - { - "image_path": "G:\\images\\combined\\005753_jpg.rf.99704ed61f6364b66114bcfc9bb77053.jpg", - "response": "Oil worker in red work clothes and helmet at the oil well. poster", - "id": 3941 - }, - { - "image_path": "G:\\images\\combined\\005754_jpg.rf.74305afa6ffe66560dda8041604cc0d6.jpg", - "response": "A group of three men standing in a room that is under construction. The man in the middle is wearing an orange safety vest and an orange hard hat. The man on the left is wearing a yellow hard hat and a yellow safety vest. The man on the right is wearing a blue hard hat and a gray long sleeve shirt. The man on the right is also holding a red hard hat.", - "id": 3942 - }, - { - "image_path": "G:\\images\\combined\\005755_jpg.rf.756ac38b3b1a169bea40e8337e58cdc4.jpg", - "response": "A construction worker(586,404),(687,898) standing in front of a blue fence(314,361),(997,916)", - "id": 3943 - }, - { - "image_path": "G:\\images\\combined\\005756_jpg.rf.23668590b36487b6bd9f7b122ea71b06.jpg", - "response": "An electrician is working on a power line.", - "id": 3944 - }, - { - "image_path": "G:\\images\\combined\\005759_jpg.rf.0c4db03428b098e00c4765640c93286a.jpg", - "response": "The image shows two men working on an electrical panel. One man is on the left and is wearing a blue shirt and a blue hat with a red logo on it. He is holding a blue drill with a yellow handle. The other man is on the right and is wearing a red helmet with a white logo on it. He is wearing a white shirt and is also wearing a blue hat. He is holding a blue cord with a yellow end. The men are standing in front of the electrical panel, which is a metal box filled with wires and other equipment.", - "id": 3945 - }, - { - "image_path": "G:\\images\\combined\\005760_jpg.rf.137a6500e4f6018c5ed7fbe004326e54.jpg", - "response": "A man wearing a yellow shirt and blue pants is working on a roof. He is holding a hammer and has his knee bent and hand on the wooden roof board.", - "id": 3946 - }, - { - "image_path": "G:\\images\\combined\\005761_jpg.rf.40ec8a4f74d5c5eeeccf58f17604a9c6.jpg", - "response": " A worker(298,172),(945,867) from the local power company stands on a snow-covered power pole(6,1),(996,999) in the town of Huangling, in China's central Anhui province.", - "id": 3947 - }, - { - "image_path": "G:\\images\\combined\\005762_jpg.rf.6587167b51faf01841244a65b60cbdea.jpg", - "response": "a group of men working on a large object", - "id": 3948 - }, - { - "image_path": "G:\\images\\combined\\005763_jpg.rf.3665870dc14e577c1cfe802bbc67973b.jpg", - "response": "A group of men standing around a construction site.", - "id": 3949 - }, - { - "image_path": "G:\\images\\combined\\005764_jpg.rf.ca17f909fdbc62ca736fcf5c9b76addb.jpg", - "response": "A man in a yellow helmet is on a boat.", - "id": 3950 - }, - { - "image_path": "G:\\images\\combined\\005765_jpg.rf.55005959e2e25b232ea0dabe3aacd725.jpg", - "response": "A couple of men are working on power lines.", - "id": 3951 - }, - { - "image_path": "G:\\images\\combined\\005766_jpg.rf.1753af082a9c4373872261237a7ee441.jpg", - "response": "a couple(418,527),(478,739)(469,520),(542,757) of people working in a construction site", - "id": 3952 - }, - { - "image_path": "G:\\images\\combined\\005767_jpg.rf.81804cbdad728533d10a99f2c7609a8f.jpg", - "response": "In the image there are several workers wearing hard hats and working on a construction site. They are building a large structure with lots of metal rods and rebar. There are also several large buildings visible in the background. One worker is using a tool to cut through some metal rods, creating a spray of white sparks. Another worker is standing nearby, and a third worker is further in the background. The workers are all wearing different colored hard hats, with some wearing yellow hats and others wearing red hats.", - "id": 3953 - }, - { - "image_path": "G:\\images\\combined\\005768_jpg.rf.cf8369b77ee24e8aea62c8b10b2b36e7.jpg", - "response": "A man and a woman wearing yellow and orange hard hats are standing on a construction site. They are both carrying wooden planks. In the background, there is a city skyline.", - "id": 3954 - }, - { - "image_path": "G:\\images\\combined\\005769_jpg.rf.a7672d6109f174e04e6e91928ac742bb.jpg", - "response": "A group of people working on a bridge.", - "id": 3955 - }, - { - "image_path": "G:\\images\\combined\\005770_jpg.rf.92bf8b1a0bcbb810af6087e3eb98d0d5.jpg", - "response": "An electrician repairs a power line in rural China. He is wearing a black t-shirt, grey pants, a red helmet and a tool belt. He is in the process of replacing a insulator on a power pole.", - "id": 3956 - }, - { - "image_path": "G:\\images\\combined\\005771_jpg.rf.cca2b0230f94f06b0654dab97afc5947.jpg", - "response": "A group of men in hard hats stand around a man who is gesturing.", - "id": 3957 - }, - { - "image_path": "G:\\images\\combined\\005773_jpg.rf.971331305db8125640128913f67e6d8f.jpg", - "response": "A man sitting on a swing made of rope.", - "id": 3958 - }, - { - "image_path": "G:\\images\\combined\\005775_jpg.rf.941a7aba17c7aeeb27276f16020897f2.jpg", - "response": "In the image, there is a worker in a factory working near a large pile of what looks like gray rocks. The worker is wearing a blue shirt, a hard hat, and orange shoes. The factory setting has a large machine on the left side of the worker and a large rock wall on the right side. The worker is actively working on the rocks with a tool in their hand.", - "id": 3959 - }, - { - "image_path": "G:\\images\\combined\\005776_jpg.rf.a0ad84a47826612bb6e1d8ff1a05def7.jpg", - "response": "The image shows a construction site in a rural area. There are a few buildings on the right side of the image, and a large hill in the background. In the foreground, a group of workers are standing around a pile of rubble and debris. Some of them are holding shovels and other tools. There is a small orange machine in the middle of the scene, and a few bags are scattered around the area. The sky is overcast, and the workers are wearing hard hats.", - "id": 3960 - }, - { - "image_path": "G:\\images\\combined\\005777_jpg.rf.682982999851df01ab83a81b5ff92d04.jpg", - "response": "A worker in an orange jacket and yellow hard hat is sitting on a metal ladder that is placed against a metal structure. The worker is holding a pair of pliers in their left hand and is wearing yellow gloves on their hands. The metal structure has several metal wires attached to it. The sky is overcast and the worker is the only person in the image.", - "id": 3961 - }, - { - "image_path": "G:\\images\\combined\\005778_jpg.rf.09fb341e9593b76dc6063338fd0009d6.jpg", - "response": "The image shows a group of men wearing hard hats standing in a large room. Some of the men are wearing yellow hard hats, some are wearing red hard hats, and others are wearing blue or white hard hats. They are gathered around a large piece of machinery, which is located on the left side of the room. The men are standing quite close to the machinery, and some of them are leaning on it. There are also a few men wearing yellow hard hats who are standing further back in the room.", - "id": 3962 - }, - { - "image_path": "G:\\images\\combined\\005779_jpg.rf.3e803213653d3185f477837d817a7988.jpg", - "response": "a group of people standing around a model of a plant", - "id": 3963 - }, - { - "image_path": "G:\\images\\combined\\00577aade86fc041.jpg", - "response": "In the image, there is a large passenger airplane on the runway. The airplane has a blue and white color scheme with gold designs on the tail. The words \"Vietnam Airlines\" are written on the side of the plane. The airplane is on the runway, and it appears to be preparing for takeoff.", - "id": 3964 - }, - { - "image_path": "G:\\images\\combined\\00577_jpg.rf.31b225e45d453547265cc70c81d90094.jpg", - "response": "A woman in a red construction hat and a red shirt with Chinese characters on it is showing a man in a grey suit and a red hard hat a grey door. Another man in a red hard hat is on the right side of the woman.", - "id": 3965 - }, - { - "image_path": "G:\\images\\combined\\00577_jpg.rf.a8074fcb58fe5149752e23fe978fce70.jpg", - "response": "A woman in a red construction hat and a red coat is showing a man in a blue suit how to use a fire door closer. Another man in a red construction hat is watching the two of them.", - "id": 3966 - }, - { - "image_path": "G:\\images\\combined\\005780_jpg.rf.1e858558c4f81838b950242c6288fe9e.jpg", - "response": "a group of men wearing hard hats", - "id": 3967 - }, - { - "image_path": "G:\\images\\combined\\005783_jpg.rf.f7a6c520b2cca4c9e203e559f14a39c2.jpg", - "response": "A power line tower under construction with workers on it.", - "id": 3968 - }, - { - "image_path": "G:\\images\\combined\\005784_jpg.rf.da0686735610e4d8f2dfd9f95b5a46e0.jpg", - "response": "A man in a blue uniform and a hard hat is leaning over the back of a yellow dump truck. He is wearing white gloves and is next to a pile of rope. There is a car parked in front of a house and another car parked behind the dump truck. There is a white and red fire hydrant next to the house and a stop sign on the left side of the street. There are two people standing in front of the house and another two people standing behind the dump truck.", - "id": 3969 - }, - { - "image_path": "G:\\images\\combined\\005785_jpg.rf.1d86599d9ffc76e9df07e322e546166a.jpg", - "response": "A group of people looking at a model of a city.", - "id": 3970 - }, - { - "image_path": "G:\\images\\combined\\005786_jpg.rf.f76b70c5a066a3e2d1a95e0eeeba7420.jpg", - "response": "a group of people standing in front of a building", - "id": 3971 - }, - { - "image_path": "G:\\images\\combined\\005787_jpg.rf.021b168687c6e3bc140c00b644f6dde2.jpg", - "response": "A man and a woman wearing hard hats are looking at blueprints.", - "id": 3972 - }, - { - "image_path": "G:\\images\\combined\\005789_jpg.rf.f7fe3408c7c10c7bf18a33be9f133fca.jpg", - "response": "A man in a white shirt is pointing to something in front of him.", - "id": 3973 - }, - { - "image_path": "G:\\images\\combined\\00578_jpg.rf.a0f44ab3af247ef8cd303eb9407eaa05.jpg", - "response": "A man wearing a white shirt and a red helmet is using a piece of surveying equipment in a construction area.", - "id": 3974 - }, - { - "image_path": "G:\\images\\combined\\005790_jpg.rf.cc5cdfd9036e67174895d356a5487c64.jpg", - "response": "A group of people standing around a hole in the ground.", - "id": 3975 - }, - { - "image_path": "G:\\images\\combined\\005791_jpg.rf.fe634d06aeea4ddac11504cb5fb129d3.jpg", - "response": "A man in a fire suit holding a hose in a dark room with smoke", - "id": 3976 - }, - { - "image_path": "G:\\images\\combined\\005792_jpg.rf.ce46fdabce04055113e3d89159aedd14.jpg", - "response": "A construction site with several people working on it. There are piles of wood and metal in the foreground and a small building in the background.", - "id": 3977 - }, - { - "image_path": "G:\\images\\combined\\005793_jpg.rf.3be64c1de8d0ecb4691e09948ead4b97.jpg", - "response": "A group of workers are working on a train track.", - "id": 3978 - }, - { - "image_path": "G:\\images\\combined\\005794_jpg.rf.9c561697aea719b71b4da274b5bf4d3c.jpg", - "response": "A group of people sitting around a table with papers, water, and a plant on it.", - "id": 3979 - }, - { - "image_path": "G:\\images\\combined\\005796_jpg.rf.c2e03239c28b583cee55668bda19004b.jpg", - "response": "Two workers in orange uniform and blue helmet are repairing the power transformer.", - "id": 3980 - }, - { - "image_path": "G:\\images\\combined\\005797_jpg.rf.fe9fa289f351bc9757e5e8cf9d10ec26.jpg", - "response": "A worker in a blue hard hat is using a tool to cut through a black cable. Another worker is standing in the background, wearing a white shirt and a yellow hard hat. They are both working under a cement ceiling and are focused on the task at hand.", - "id": 3981 - }, - { - "image_path": "G:\\images\\combined\\005798_jpg.rf.981601fbfb10a59da6d23398ee7b69b2.jpg", - "response": "A worker in an orange uniform and yellow hard hat is standing between two large wheels made of black rubber. The wheels are white metal frames with green pipes coming out of them. The worker is also holding a large black tube.", - "id": 3982 - }, - { - "image_path": "G:\\images\\combined\\005799_jpg.rf.9046cd38f2e4c6fea4a8ce96995877da.jpg", - "response": "Men(300,366),(397,786)(509,336),(612,791)(648,344),(751,769)(390,341),(487,783)(785,337),(887,828) in camouflage(301,427),(395,770)(651,407),(750,756)(511,399),(612,777)(391,410),(487,769) standing in front of a bulldozer(111,124),(468,558)", - "id": 3983 - }, - { - "image_path": "G:\\images\\combined\\00579_jpg.rf.70d04fd2c0b16e9765e972f1e8a497be.jpg", - "response": "A group of men in hard hats stand in front of a large concrete structure with power lines above them.", - "id": 3984 - }, - { - "image_path": "G:\\images\\combined\\00579_jpg.rf.af91debed4374397e17f668e9f7262d9.jpg", - "response": "A group of men in hard hats stand in front of a large concrete structure with a lot of wires and machinery attached to it. They are standing on the grass and some of them are carrying tools.", - "id": 3985 - }, - { - "image_path": "G:\\images\\combined\\0057a54eb95ccae6.jpg", - "response": "A street sign pointing to the Brooklyn Bridge in a city.", - "id": 3986 - }, - { - "image_path": "G:\\images\\combined\\0057ab1c0a3e8a8f.jpg", - "response": "a man in a black shirt reading a magazine", - "id": 3987 - }, - { - "image_path": "G:\\images\\combined\\0057ab2abc09c62f.jpg", - "response": "The image is a cover for a music album titled \"Cracker Barrel Old Country Store Presents J.D. Crowe and the New South\". The cover features a close-up of a banjo, which is the main focus of the image. The banjo is in the foreground and takes up most of the cover. The background is a sepia-toned picture of the banjo, giving the cover a vintage feel. The banjo has a string across the middle and four other strings on either side. The name \"J.D. Crowe and the New South\" is written in blue on the banjo, with \"Cracker Barrel Old Country Store Presents\" written in black above it. The word \"Heritage\" is written in blue below the banjo. The cover also includes the logo of Cracker Barrel and a circular logo that says \"Music Dialogue Heritage\".", - "id": 3988 - }, - { - "image_path": "G:\\images\\combined\\005800_jpg.rf.93c04e3253d196378932f07c93e7f138.jpg", - "response": "The image shows a group of men working on a large piece of equipment. They are all wearing blue uniforms and hard hats. In the foreground, a man is sitting on a large black tire while holding a rope wrapped around it. Another man is standing behind him, holding a large wooden pole. A third man is standing to the right of the man in the foreground. They are all working on the equipment together.", - "id": 3989 - }, - { - "image_path": "G:\\images\\combined\\005801_jpg.rf.5287faca6eacf4b343a5e98d60d5bd9a.jpg", - "response": "The image shows two men wearing yellow hard hats and looking at a blueprint. The man on the left is wearing a yellow hard hat and a plaid shirt, and is holding the blueprint in his right hand. The man on the right is wearing a yellow hard hat and a brown shirt, and is standing behind the first man. They are both looking at the blueprint, which is crumpled and held in the left hand of the man on the left.", - "id": 3990 - }, - { - "image_path": "G:\\images\\combined\\005802_jpg.rf.696cf226dd1025e8dbcfe93a7f58a557.jpg", - "response": "The image shows two construction workers wearing yellow helmets and orange work clothes, one is on the left and the other is on the right, they are working on a building site. The building site has a silver metal fence on the left and a white sky background. In the foreground, there are several steel bars that the two workers are working on, one of them is using a small tool to adjust the steel bar.", - "id": 3991 - }, - { - "image_path": "G:\\images\\combined\\005803_jpg.rf.6f0edc87668a7177935e75833542496d.jpg", - "response": "The image shows a construction site with three workers. One worker is in the center of the image, wearing a yellow hat and grey shirt. Another worker is in the top left of the image, wearing a white shirt and grey pants. The third worker is in the top right of the image, wearing a white shirt and grey pants. They are all working on the construction site. In front of the workers, there are several rusty metal bars on the ground. To the left of the workers, there is a large pile of wooden boards. On the right side of the image, there are several large containers filled with metal sheets. The whole scene is surrounded by a yellow fence.", - "id": 3992 - }, - { - "image_path": "G:\\images\\combined\\005805_jpg.rf.8e343731b5841800bbb0bc824498c99c.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 3993 - }, - { - "image_path": "G:\\images\\combined\\005806_jpg.rf.b16a1be28af9bb701f51acc490f5212f.jpg", - "response": "Men(557,119),(817,997)(338,100),(618,919)(847,113),(998,999) in a construction site", - "id": 3994 - }, - { - "image_path": "G:\\images\\combined\\005807_jpg.rf.f72d7c420e84733a5777d061f107ad47.jpg", - "response": "A man(448,593),(607,885) kneeling down in front of two trucks(103,307),(304,476)(604,273),(879,506)", - "id": 3995 - }, - { - "image_path": "G:\\images\\combined\\005809_jpg.rf.037b538f0780418dec8331db205d5d76.jpg", - "response": "A construction worker is on the ground, working on a metal beam while two other workers look over the metal structure they are building. They are all wearing orange vests and red hard hats.", - "id": 3996 - }, - { - "image_path": "G:\\images\\combined\\00580_jpg.rf.2288a2e22d4c8f1825b0cc2aada22c9a.jpg", - "response": "A group of people working on a construction site.", - "id": 3997 - }, - { - "image_path": "G:\\images\\combined\\00580_jpg.rf.bfc632dce88ce4d7adef2718fb10a564.jpg", - "response": "A group of people working on a construction site.", - "id": 3998 - }, - { - "image_path": "G:\\images\\combined\\005810_jpg.rf.60d46cc77185da5127fb457be70756c1.jpg", - "response": "The image shows a group of construction workers in blue and yellow work clothes and yellow hard hats, working on a building. The building is a large concrete structure with a roof supported by metal beams. The workers are standing on a walkway and working on the roof. There are several wooden planks on the right side of the image, and a pile of them in the background.", - "id": 3999 - }, - { - "image_path": "G:\\images\\combined\\005811_jpg.rf.516c1c537adb1e5f9b4fb23de061d218.jpg", - "response": "a group of people standing around talking to each other", - "id": 4000 - }, - { - "image_path": "G:\\images\\combined\\005812_jpg.rf.5d0f895e24754ba1ece3ff25c5cecfe5.jpg", - "response": "In the image, several construction workers are working on a construction site. They are wearing orange and yellow work clothes and helmets. Some of them are standing on the ground, while others are standing on a steel girder. In the foreground, a man is working on a large piece of concrete, and several people are working around him. Some of them are digging into the ground, while others are holding onto a large metal beam. In the background, there is a pile of sand and a pile of bricks.", - "id": 4001 - }, - { - "image_path": "G:\\images\\combined\\005813_jpg.rf.fa7fde02230278b19005847e3f2c0988.jpg", - "response": "A couple of men standing in front of a fence.", - "id": 4002 - }, - { - "image_path": "G:\\images\\combined\\005814_jpg.rf.e8547c186bc981e95ab4380123f1fcfe.jpg", - "response": "Two men(680,196),(896,943)(18,89),(587,999) working on a pipe in a cave", - "id": 4003 - }, - { - "image_path": "G:\\images\\combined\\005815_jpg.rf.f4a925d6c1c011e30371fc4954a7fbc9.jpg", - "response": "a group of men walking across a wooden floor", - "id": 4004 - }, - { - "image_path": "G:\\images\\combined\\005816_jpg.rf.d340fbc314d1706ad1caf94b607c723b.jpg", - "response": "In the image there is a person wearing a helmet and camouflage clothing, standing next to a concrete structure and cutting through a steel beam with a large grinder. The person is creating many sparks as they work.", - "id": 4005 - }, - { - "image_path": "G:\\images\\combined\\005817_jpg.rf.9d71fae899ed3e4538a80f8c9fdbfc06.jpg", - "response": "Some workers are building a structure in the image. There are four workers in total. They are building the structure using bamboo. The building in the background is tall with many windows. The sky is clear.", - "id": 4006 - }, - { - "image_path": "G:\\images\\combined\\005818_jpg.rf.3cc93ae9f43e133fd5ac52b5c12f9702.jpg", - "response": "a group of men walking down a sidewalk", - "id": 4007 - }, - { - "image_path": "G:\\images\\combined\\005819_jpg.rf.0ba27ee88a344d04cffa736f1511b843.jpg", - "response": "The image shows five people standing on a construction site. They are all wearing hard hats. One person on the left is holding a banner with the characters \"Fujian Police\". Another person on the left is holding a red piece of paper with the characters \"shou sui\". Two people on the right are holding books. The background shows a portion of the construction site with steel frameworks.", - "id": 4008 - }, - { - "image_path": "G:\\images\\combined\\00581_jpg.rf.799417445d31c0788b0e6da29b989c74.jpg", - "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", - "id": 4009 - }, - { - "image_path": "G:\\images\\combined\\00581_jpg.rf.853c199bcd73717fc05c2c7b02d097e3.jpg", - "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", - "id": 4010 - }, - { - "image_path": "G:\\images\\combined\\005820_jpg.rf.397c0c5a6c215a84176d19621c500442.jpg", - "response": "In the image, two men are standing in the middle of a building under construction. The man on the left is wearing a red hard hat and neon yellow vest. The man on the right is wearing a yellow hard hat and a neon yellow vest. They are both holding tools. The man on the right is also holding a clipboard with papers on it. They are both looking at the camera. The walls of the building are made of wood and the floor is unfinished. There are also two bicycles in the background.", - "id": 4011 - }, - { - "image_path": "G:\\images\\combined\\005821_jpg.rf.4813594ae8826d6bd3151b0ae61ed6bb.jpg", - "response": "A construction worker on scaffolding working on a building.", - "id": 4012 - }, - { - "image_path": "G:\\images\\combined\\005823_jpg.rf.2ea57835f0f76fa04ea517fd1dfb1e50.jpg", - "response": "A Chinese steelworker is shown crying in this undated photo. The photo, taken by a photographer for the official China Daily newspaper, shows the worker wiping away tears as he operates a crane at a steel factory in Hebei province. The photo was published on the newspaper's website on September 28, 2009. The photo is said to have been taken to highlight the difficulties faced by Chinese workers, especially those in heavy industry.", - "id": 4013 - }, - { - "image_path": "G:\\images\\combined\\0058241de1f2e430.jpg", - "response": "A baseball player wearing a green jersey with the number twenty nine on the back.", - "id": 4014 - }, - { - "image_path": "G:\\images\\combined\\005825_jpg.rf.87aaa0707af47b1d749098b612404c45.jpg", - "response": "A man in a blue shirt and a yellow hat is carrying a ladder. A woman in a black and white striped shirt is carrying a box. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A", - "id": 4015 - }, - { - "image_path": "G:\\images\\combined\\005826_jpg.rf.891659dc3a9094ab5175d9f8db5370b0.jpg", - "response": "A construction site with several people working on it.", - "id": 4016 - }, - { - "image_path": "G:\\images\\combined\\005827_jpg.rf.90756cf4bcd48c2f068f4dc94d579d3b.jpg", - "response": "A group of men standing around each other.", - "id": 4017 - }, - { - "image_path": "G:\\images\\combined\\005828_jpg.rf.04412046f0b5dccf9831a213db24ac81.jpg", - "response": "The image shows two men standing on a wooden fence, going over blueprints in a field. The field has several solar panels in it. The men are both wearing white helmets and the man on the left is wearing a white shirt and a white helmet. The man on the right is wearing a blue shirt and a white helmet.", - "id": 4018 - }, - { - "image_path": "G:\\images\\combined\\005829_jpg.rf.54ae1f2dd9fcafee792881500026890d.jpg", - "response": "\u8003\u53e4\u4eba\u5458\u5728\u5bf9\u6c49\u664b\u5d16\u5893\u8fdb\u884c\u53d1\u6398\u3002\u8bb0\u8005\u6628\u65e5\u4ece\u5e02\u6587\u7269\u8003\u53e4\u7814\u7a76\u6240\u83b7\u6089,\u6211\u5e02\u53d1\u73b0\u7684\u6c49\u664b\u5d16\u5893\u7fa4,\u662f\u76ee\u524d\u6211\u5e02\u53d1\u73b0\u7684\u5e74\u4ee3\u6700\u65e9\u7684\u5d16\u5893\u3002", - "id": 4019 - }, - { - "image_path": "G:\\images\\combined\\00582_jpg.rf.7a724035aba6416ff9b461e6642960b7.jpg", - "response": "a group of men standing on a dirt road", - "id": 4020 - }, - { - "image_path": "G:\\images\\combined\\00582_jpg.rf.9f966489f23aedbab342470e506cd898.jpg", - "response": "A group of four men standing on a dirt road.", - "id": 4021 - }, - { - "image_path": "G:\\images\\combined\\005830_jpg.rf.fabc4cc4c77f111881d27943717eab5a.jpg", - "response": "In the image you can see a group of men standing in front of a construction site. They are all wearing hard hats. Some of them are wearing suits and ties. In the background you can see several cranes working on the construction. To the right of the group of men there is a small body of water, which is fenced off.", - "id": 4022 - }, - { - "image_path": "G:\\images\\combined\\005831_jpg.rf.6ae7efc78997992cf22b721167e9dddc.jpg", - "response": "A construction site with multiple workers wearing hard hats and working on a building that has not yet been completed.", - "id": 4023 - }, - { - "image_path": "G:\\images\\combined\\005832_jpg.rf.3509ec74a51b696fc05dfaacb158a305.jpg", - "response": "The image shows a group of men walking across a construction site. They are all dressed in business attire, with some wearing suits and others appearing more casual in button-down shirts and slacks. The men are walking across a large patch of dirt, with a few small buildings and a car visible in the background. The sky is overcast, with grey clouds filling the sky. The ground is covered in small rocks and dirt, and the overall atmosphere appears to be one of construction and development.", - "id": 4024 - }, - { - "image_path": "G:\\images\\combined\\005833_jpg.rf.9bd790de23f125872cc275b08bca8f3a.jpg", - "response": "In the image there are several construction workers at a construction site. They are working on a foundation for a building. Some of the workers are wearing yellow hard hats and there is a white hard hat on the ground. There is a person on the far left wearing a green shirt and grey pants. They are standing on a wooden platform. There is a person in the bottom right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top left corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well.", - "id": 4025 - }, - { - "image_path": "G:\\images\\combined\\005834_jpg.rf.4605f2876362137eb795205c109cc734.jpg", - "response": "a group of people standing around a dirt field", - "id": 4026 - }, - { - "image_path": "G:\\images\\combined\\005835_jpg.rf.3c98b527e77450b813afbcd988284fc1.jpg", - "response": "A group of people working on a construction site.", - "id": 4027 - }, - { - "image_path": "G:\\images\\combined\\005836_jpg.rf.c3112d161db67d2143215fe55edc5756.jpg", - "response": "A train is in the process of being worked on by several men. The train is yellow and black and is located on the tracks. The men are wearing hard hats and some are wearing yellow vests. They are working on the train tracks near the train.", - "id": 4028 - }, - { - "image_path": "G:\\images\\combined\\005837_jpg.rf.87e51bb8f8fde0c9c5d1d68e24d7a2d8.jpg", - "response": "A construction worker in an orange vest and hat is working on a project.", - "id": 4029 - }, - { - "image_path": "G:\\images\\combined\\005838_jpg.rf.c4b8d8caa0e1a9f156fb83aed56bc2c0.jpg", - "response": "Men are working on a construction site with wheelbarrows and shovels.", - "id": 4030 - }, - { - "image_path": "G:\\images\\combined\\005839_jpg.rf.d07e83861a0324d0b43d3dbe380778fd.jpg", - "response": " Two workers(140,179),(400,996)(427,285),(628,996) in a factory", - "id": 4031 - }, - { - "image_path": "G:\\images\\combined\\00583_jpg.rf.7a53563f6d0997d4bf250f97567e0825.jpg", - "response": "A group of people standing around talking.", - "id": 4032 - }, - { - "image_path": "G:\\images\\combined\\005840_jpg.rf.a98f757f66ae16ebc7fb2f2b986351ea.jpg", - "response": "In the image two workers are repairing an electricity pole. They are wearing blue and grey clothes and helmets. The background shows a part of a tall building.", - "id": 4033 - }, - { - "image_path": "G:\\images\\combined\\005841_jpg.rf.e0eeb2797d97e1410ac431757147c3f3.jpg", - "response": "Men in suits and hard hats stand around a large hole in the ground.", - "id": 4034 - }, - { - "image_path": "G:\\images\\combined\\005843_jpg.rf.9899e839ec7599e7d3583869af899db2.jpg", - "response": "A man and woman in front of a building under construction.", - "id": 4035 - }, - { - "image_path": "G:\\images\\combined\\005844_jpg.rf.7450035cfd5faf6c0c1ad03db7d84f05.jpg", - "response": "a group of men standing around each other", - "id": 4036 - }, - { - "image_path": "G:\\images\\combined\\005846_jpg.rf.c74ac84bf3b0eefa00715cf43e088b62.jpg", - "response": "The image shows two workers in the snow, working on a power transmission line. They are both wearing blue and yellow work clothes and have their hair covered in brown hair ties. One of the workers is on the left and is crouching down, while the other worker is on the right and is standing up. They are both working on the yellow part of the transmission line. In the background, there are many power lines made of black wires, hanging from a frame made of black metal. The sky is a mix of blue and white snow clouds.", - "id": 4037 - }, - { - "image_path": "G:\\images\\combined\\005847_jpg.rf.3e959fc8ca52503685b72d6a8312abaf.jpg", - "response": "a group of men walking down a hallway", - "id": 4038 - }, - { - "image_path": "G:\\images\\combined\\005848_jpg.rf.1a44503990bec040551b4d904bfcb2ab.jpg", - "response": " People(596,624),(683,845)(428,633),(538,863)(329,632),(426,848)(284,637),(353,793)(182,638),(273,778) walking in the snow in front of a house(3,115),(995,406)", - "id": 4039 - }, - { - "image_path": "G:\\images\\combined\\005849_jpg.rf.d2ca3401c9975324c8b19d3b0e40a7bb.jpg", - "response": "a man wearing a orange and black jacket(188,316),(329,882)", - "id": 4040 - }, - { - "image_path": "G:\\images\\combined\\005850_jpg.rf.584b10bfd2de86c3a4637c3ee2228cfe.jpg", - "response": "In the image there is a blue and white sign that says '\u8212\u57ce\u53bf\u91cd\u70b9\u5de5\u7a0b\u5efa\u7ba1\u5c40\u6c38\u5b89\u5b89\u7f6e\u5c0f\u533a\u5de5\u7a0b'. Underneath this sign there is a group of people walking towards a construction site. The construction site has several cranes working on it and the scaffolding is green. To the right of the construction site there is a tall building that is under construction.", - "id": 4041 - }, - { - "image_path": "G:\\images\\combined\\005851_jpg.rf.31ea7643295cdae5f37dd5daf8e78a18.jpg", - "response": "A worker in a yellow helmet is using a shovel to move a large rock in a small, dark and wet room. The room is filled with water and black sediment. The worker is standing on a ladder.", - "id": 4042 - }, - { - "image_path": "G:\\images\\combined\\005852_jpg.rf.b11d5248aec848c8a6a39054e3334478.jpg", - "response": "A group of three workers are working on a construction site. They are wearing hard hats and are standing on a scaffold. The man in the middle is working on something on the top of the scaffold. The man on the left is holding a red tool box. The man on the right is wearing a yellow hard hat and is holding a blue tool box. There are several other workers visible in the background.", - "id": 4043 - }, - { - "image_path": "G:\\images\\combined\\005853_jpg.rf.bd9e4a60cfc13b2dc9c1586002283cf8.jpg", - "response": " Several construction workers(549,216),(808,935)(124,365),(423,997)(2,582),(178,997)(798,6),(996,994) in blue uniforms and red helmets(261,363),(355,452)(656,214),(753,313)(828,3),(988,127)(53,582),(128,662) are working on a construction site.", - "id": 4044 - }, - { - "image_path": "G:\\images\\combined\\005854_jpg.rf.ef4e1529471af1e326d2373ec6a9d2b6.jpg", - "response": "A man in a yellow hard hat and grey work suit crouches on a construction site. He has a yellow hard hat, black work boots, and a yellow tool belt around his waist. He is holding a tool in his right hand and there is a second tool to his left. The background shows a city skyline with many tall buildings.", - "id": 4045 - }, - { - "image_path": "G:\\images\\combined\\005855_jpg.rf.eb49eccaa4e692f9f18cd831022d2c72.jpg", - "response": "A group of men working on a machine in the snow.", - "id": 4046 - }, - { - "image_path": "G:\\images\\combined\\005856_jpg.rf.9537d8f5b65c85b5f774b4c41fe3c20d.jpg", - "response": "Two men are wearing yellow hard hats and smiling at the camera. They are in front of a brick wall and one man has his arm around the other.", - "id": 4047 - }, - { - "image_path": "G:\\images\\combined\\005857_jpg.rf.151dec57573386fd67ce178b8d5f5a53.jpg", - "response": "A group of people looking at a model of a city.", - "id": 4048 - }, - { - "image_path": "G:\\images\\combined\\005858_jpg.rf.0be7658040191191ed1e7f5ba6dc5bed.jpg", - "response": "A few men are working on power lines.", - "id": 4049 - }, - { - "image_path": "G:\\images\\combined\\005859_jpg.rf.dc0096aee24e14b39b70bb6b38c8a89e.jpg", - "response": "In the image there is a man smiling and wearing a white helmet and an orange vest. He is holding a blueprint in front of a construction site. There are several houses under construction in the background. In the foreground, there are yellow piles of wooden planks and two yellow pipes.", - "id": 4050 - }, - { - "image_path": "G:\\images\\combined\\005861_jpg.rf.e3395f74c35b0e686fbbfb90a71ba2f0.jpg", - "response": "A construction worker wearing a red hard hat is shoveling sand behind a long grey wall.", - "id": 4051 - }, - { - "image_path": "G:\\images\\combined\\005862_jpg.rf.ea40ac6dc1de1fc18188456697601c38.jpg", - "response": "A group of men standing in front of a electrical box wearing hard hats.", - "id": 4052 - }, - { - "image_path": "G:\\images\\combined\\005863_jpg.rf.a6183e1198b2eac6c501c55ce463e82d.jpg", - "response": "A worker in a hard hat and blue coveralls is holding a tablet and looking away from the camera. Another worker is standing behind them and is also wearing a hard hat. They are both standing in front of a large concrete dam.", - "id": 4053 - }, - { - "image_path": "G:\\images\\combined\\005864_jpg.rf.9fd1ed919faf4b3f74750876679cfc57.jpg", - "response": "A construction site with two people and a yellow tractor.", - "id": 4054 - }, - { - "image_path": "G:\\images\\combined\\005865_jpg.rf.4cbf8904c04b0cca20833837289e492e.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 4055 - }, - { - "image_path": "G:\\images\\combined\\005866_jpg.rf.fc99df1f86f86f899e5cbf676d31253b.jpg", - "response": "Four men in hard hats are in a tunnel. One man is sitting on the ground, another is pouring a liquid from a bottle into a cup that the sitting man is holding. Another man is standing on the left side of the image, and the fourth man is standing on the right side of the image.", - "id": 4056 - }, - { - "image_path": "G:\\images\\combined\\005867_jpg.rf.78fbe6eec2ed55627049903d251a7cbf.jpg", - "response": "A man in orange is working on a brick wall.", - "id": 4057 - }, - { - "image_path": "G:\\images\\combined\\005868_jpg.rf.f91ef82fc2943d4ad935febfefb8abaf.jpg", - "response": "A man in an orange work suit and a red helmet(708,196),(861,350) is using a crowbar(428,456),(999,999) to remove debris from a muddy street. Another man is using a shovel to clear mud from the street. A few people are standing on the street, and a few people are standing on the sidewalk. A few cars are parked on the street. A few trucks are parked on the sidewalk. A few bags of what look like construction materials are scattered around the street. A few bags of what look like trash are scattered around the street. A few people are carrying brooms. A few people are carrying shovels. A few people are carrying axes. A few people are carrying ropes. A few people are carrying helmets. A few people are carrying other tools. A few people are carrying large bags. A few people are carrying large sticks. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are", - "id": 4058 - }, - { - "image_path": "G:\\images\\combined\\005869_jpg.rf.287c130ccf5edb3a365a75c8cf6dfb12.jpg", - "response": "The image shows a pile of grey sand with three men working in the background. They are wearing blue, yellow, and orange work clothes and helmets. The man in the middle is using a shovel to dig into the pile of sand. There are also two hoses on the ground to the left of the sand pile. In the background, there is a street light and some trees.", - "id": 4059 - }, - { - "image_path": "G:\\images\\combined\\005870_jpg.rf.a77dad3807061ee6a42c2da8c0245a50.jpg", - "response": "A group of men standing next to each other wearing hard hats", - "id": 4060 - }, - { - "image_path": "G:\\images\\combined\\005871_jpg.rf.969ca9004064568463f7374aabc68f7c.jpg", - "response": "A man wearing a yellow hard hat, a white t-shirt and a pair of sunglasses on his head, standing in a construction site.", - "id": 4061 - }, - { - "image_path": "G:\\images\\combined\\005872_jpg.rf.537579d04f82bf29de2ce4307ca1a361.jpg", - "response": "A couple of men working on power lines.", - "id": 4062 - }, - { - "image_path": "G:\\images\\combined\\005873_jpg.rf.a8628de1d07eae402b4a1e4902356e34.jpg", - "response": "Three people standing in a construction site, two of them are men and one is a woman. They are all wearing yellow safety vests and hard hats. The man on the left is pointing at something on a set of plans he is holding, the man on the right is also holding plans and looking in the same direction. The woman is looking straight ahead.", - "id": 4063 - }, - { - "image_path": "G:\\images\\combined\\005874_jpg.rf.408f30e90c1e60bcdd6ef250df1bf94b.jpg", - "response": "A worker in a cherry picker repairs a power line.", - "id": 4064 - }, - { - "image_path": "G:\\images\\combined\\005875_jpg.rf.34a64498e5ad98faef8a81afc22dd387.jpg", - "response": "An engineer is seen in the picture wearing a yellow helmet and a mask. He is holding a black device with a antenna. Behind him, there are power poles and power cables.", - "id": 4065 - }, - { - "image_path": "G:\\images\\combined\\005876_jpg.rf.59527ab6fa7bc7ab8282b8247b21f54c.jpg", - "response": "Two construction workers(358,142),(500,478)(499,151),(729,629) in orange vests(365,226),(496,439)(613,249),(728,538) are working on a small engine on a trailer(213,457),(823,995).", - "id": 4066 - }, - { - "image_path": "G:\\images\\combined\\005877_jpg.rf.f3e4df688d8011c311a6da0b0a27bb48.jpg", - "response": "The picture shows a group of people standing in front of a construction site. Some of the people are wearing blue hats, and the ground in front of them has been excavated.", - "id": 4067 - }, - { - "image_path": "G:\\images\\combined\\005879_jpg.rf.8fc97d07e35caea46f5ed4cd5b6a55cf.jpg", - "response": "A construction worker wearing a yellow shirt and a pink hard hat is working on a scaffold.", - "id": 4068 - }, - { - "image_path": "G:\\images\\combined\\00587_jpg.rf.66b3f6db9f6aa93d21325942a1b3189e.jpg", - "response": "The image shows two women standing next to a railroad. They are both dressed in yellow vests and white helmets. The woman on the left is holding a pen and a clip board, while the woman on the right is operating a\u6d4b\u91cf\u4eea\u5668. Both women are looking at the clip board.", - "id": 4069 - }, - { - "image_path": "G:\\images\\combined\\00587_jpg.rf.c68bf84edb954b81a4aeecfa4ca2f8de.jpg", - "response": "In the image, two women are working on the railroad tracks. They are wearing yellow vests and white helmets. The woman on the left is holding a pen and a notebook, and she is looking at the camera. The woman on the right is operating a piece of\u6d4b\u91cf\u4eea\u5668. The background is a wall of railroad tracks and a forest.", - "id": 4070 - }, - { - "image_path": "G:\\images\\combined\\005880_jpg.rf.54ec4000f929bbeb770dffaa5efd648f.jpg", - "response": "A group of men in blue and white shirts and red hats are walking together. Some of the men are holding umbrellas. In the background there is a building under construction.", - "id": 4071 - }, - { - "image_path": "G:\\images\\combined\\005881_jpg.rf.370e921e46176ae45d31611b61efcd1b.jpg", - "response": "A man in a blue shirt and hard hat is working on an electricity pylon.", - "id": 4072 - }, - { - "image_path": "G:\\images\\combined\\005882_jpg.rf.d3ea4794dba4e192c902b4b9739aa507.jpg", - "response": "A construction site with multiple workers.", - "id": 4073 - }, - { - "image_path": "G:\\images\\combined\\005883_jpg.rf.ecb11202508ea1d9ba1880e9c51e36cb.jpg", - "response": "A group of men stand on a bridge holding umbrellas.", - "id": 4074 - }, - { - "image_path": "G:\\images\\combined\\005884_jpg.rf.44db0dc14a449777eeff40f05f3a80c2.jpg", - "response": "A man wearing a yellow hard hat with the words \u201c\u5e78\u798f\u5341\u4e00\u5c40\u201d (happiness eleventh division) printed on it.", - "id": 4075 - }, - { - "image_path": "G:\\images\\combined\\005885_jpg.rf.33b0200772d64e8c2e4e959609636ec1.jpg", - "response": "In the image, a worker is suspended in the air, fixing a traffic light. The worker is wearing a yellow uniform and is in the process of fixing a traffic light that is hanging from a red cable. The worker is also holding a yellow helmet in his hand. The sky is overcast and there are some power lines in the vicinity.", - "id": 4076 - }, - { - "image_path": "G:\\images\\combined\\005886_jpg.rf.666263e2e3628899f3e8c4e2dc3d2c01.jpg", - "response": "a group of men standing on a street", - "id": 4077 - }, - { - "image_path": "G:\\images\\combined\\005887_jpg.rf.367f784072f8b146d57db1e753dc5564.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 4078 - }, - { - "image_path": "G:\\images\\combined\\005888_jpg.rf.a8989ee6fb8b31bcde610c220f8506f1.jpg", - "response": "An elderly couple is climbing a steep mountain. The man is wearing a blue baseball cap, a brown coat, and a pair of black pants. He is also wearing a pair of grey shoes. The woman is wearing a yellow top and a grey jacket. She is carrying a blue bag on her back. They are both wearing blue hats. They are using a rope to climb the mountain.", - "id": 4079 - }, - { - "image_path": "G:\\images\\combined\\00588_jpg.rf.f4516e531bd7843ac3cc1beb35830cf4.jpg", - "response": "A group of workers standing around a small mirror looking at themselves. Each of them are wearing blue and orange work clothes and blue helmets. In front of the mirror there is a board with the words \"\u5b89\u5168\u8b66\u793a\u955c\" (Safety mirror) and a drawing of a person wearing a safety belt.", - "id": 4080 - }, - { - "image_path": "G:\\images\\combined\\005890_jpg.rf.b523cf71130fa211565c64c2c90b768e.jpg", - "response": "In the image two power line workers are in the process of changing a insulator on a telephone or power line tower. The two workers are wearing yellow hard hats and are in the process of replacing a insulator on the power tower.", - "id": 4081 - }, - { - "image_path": "G:\\images\\combined\\005891_jpg.rf.2345a56be628930d9d10177fa984f5ba.jpg", - "response": "A man wearing a blue shirt, orange hard hat, and white gloves is working on a construction site. He is measuring a metal bar with a measuring tape. He is standing next to a large metal grid structure. In the background, there is a green fence and a white building.", - "id": 4082 - }, - { - "image_path": "G:\\images\\combined\\0058928240fe1561.jpg", - "response": "A man in a suit and tie is holding a framed award.", - "id": 4083 - }, - { - "image_path": "G:\\images\\combined\\005893_jpg.rf.5fa66e145310c69b869a3bb6ca4d11af.jpg", - "response": "In the image two people are working in a cave. They are both wearing blue shirts, white and blue hard hats, and are holding tools. The person on the left is wearing glasses and has a beard. They are holding a device with a wire connected to it. The person on the right has black hair and is looking at the device the other person is holding. They are holding a large stick with a meter on the end.", - "id": 4084 - }, - { - "image_path": "G:\\images\\combined\\005894_jpg.rf.f1ec92cedb8d158f1e8778ed2916dafb.jpg", - "response": "A group of workers fixing some power lines.", - "id": 4085 - }, - { - "image_path": "G:\\images\\combined\\005895_jpg.rf.f21b293a2737dbe3afbaef2a60f6bc98.jpg", - "response": "A group of men wearing hard hats are working on a tree.", - "id": 4086 - }, - { - "image_path": "G:\\images\\combined\\005896_jpg.rf.b617c5cd89ad7d1cc45b8a5d62a25732.jpg", - "response": "A close up of a man wearing a orange hard hat.", - "id": 4087 - }, - { - "image_path": "G:\\images\\combined\\005899_jpg.rf.89ffc0f07bfb563cbe2a60254d7b6b03.jpg", - "response": "The image shows a group of people standing in front of a construction site. They are all wearing hard hats and some of them are also wearing red ties. In the background, there is a partially constructed building with scaffolding. There are also several cranes working in the background. The sky is overcast and the ground is dry.", - "id": 4088 - }, - { - "image_path": "G:\\images\\combined\\00589_jpg.rf.0920908376b2ad85d247813037229b6c.jpg", - "response": "A group of people standing around a construction site.", - "id": 4089 - }, - { - "image_path": "G:\\images\\combined\\00589_jpg.rf.8b2b2cbb9f68162fe11bf72acee71307.jpg", - "response": "A group of people standing around a construction site", - "id": 4090 - }, - { - "image_path": "G:\\images\\combined\\005900_jpg.rf.75d3f94189eb4f601ae357e73cfd889d.jpg", - "response": "A construction worker uses a jackhammer to break up concrete.", - "id": 4091 - }, - { - "image_path": "G:\\images\\combined\\005901_jpg.rf.b311b7363fce1817a87d7cb2dacd781b.jpg", - "response": "A group of three men dressed in yellow and grey safety vests, hard hats and one man has a beard. They are pointing at a blueprint that is posted on a wall.", - "id": 4092 - }, - { - "image_path": "G:\\images\\combined\\005902_jpg.rf.f4169193be63da8d234afc5aac99c89a.jpg", - "response": "A group of men standing on top of a mountain.", - "id": 4093 - }, - { - "image_path": "G:\\images\\combined\\005903_jpg.rf.03e03d6f3479c75adfc1712ef13d989a.jpg", - "response": "A man in a yellow helmet and blue shirt is operating a cement mixer.", - "id": 4094 - }, - { - "image_path": "G:\\images\\combined\\005904_jpg.rf.0da13579757a24a45bf3fc33e6f8a6aa.jpg", - "response": "The image shows two workers in blue uniforms and safety gear working on a power line. They are standing on a metal platform that is attached to the power pole, and they are repairing a damaged part of the line. The sky above them is overcast, with dark clouds visible.", - "id": 4095 - }, - { - "image_path": "G:\\images\\combined\\005905_jpg.rf.4530134d251bb4ed7e89f9e08369a4fb.jpg", - "response": "In the image two men are working on power lines. They are both wearing blue helmets and coveralls. The coveralls have yellow writing on the legs. The men are standing on a platform that is connected to the power lines. They are holding onto the power lines and wires and appear to be working on them. The sky is blue and clear.", - "id": 4096 - }, - { - "image_path": "G:\\images\\combined\\005907_jpg.rf.a0f0912a115e29f4f763d8f8320ccfcf.jpg", - "response": " Men(728,371),(899,946)(597,387),(767,899)(501,388),(633,828) in hard hats(736,369),(799,447)(505,386),(565,455)(629,387),(695,457) and rain gear(597,389),(767,898)(729,441),(899,942) stand on a muddy road in the rain.", - "id": 4097 - }, - { - "image_path": "G:\\images\\combined\\005909_jpg.rf.3ecd0d36d3833f183a35c5a62977c3dc.jpg", - "response": "An electrician scales a transmission tower to make repairs.", - "id": 4098 - }, - { - "image_path": "G:\\images\\combined\\005911_jpg.rf.d29999cd6d42569d65d62497aca28c99.jpg", - "response": "In the image there are two construction workers wearing yellow and white hard hats, one worker is sitting on the ground and the other worker is standing next to him. They are both wearing reflective vests. In front of them, there is a large pipe and a piece of paper with a plan on it is placed on the ground in front of them. In the background, there is a large building under construction and a red and white safety barrier.", - "id": 4099 - }, - { - "image_path": "G:\\images\\combined\\005912_jpg.rf.37e66257514c74d64c39444d9bc2c8cf.jpg", - "response": "A group of men standing around and talking.", - "id": 4100 - }, - { - "image_path": "G:\\images\\combined\\005913_jpg.rf.c0ddaaa53a16608dc61ae94d7e56064b.jpg", - "response": "In the image there is a construction site where a worker is building a structure made of iron and wood. The worker is dressed in a grey uniform and is wearing a helmet. He is putting up a iron structure, which is supported by a few iron pipes. The background shows a wall made of concret and wooden bars. The worker is standing in a pool of liquid.", - "id": 4101 - }, - { - "image_path": "G:\\images\\combined\\005914_jpg.rf.fbc1044d4cf76395073c9d1f5e7cdb0b.jpg", - "response": "A construction worker is shoveling concrete onto a unfinished road.", - "id": 4102 - }, - { - "image_path": "G:\\images\\combined\\005915_jpg.rf.5a81bfc0ddd6cbd717bc32c8d927ae5c.jpg", - "response": "A group of people in hard hats pulling a rope together in a large building.", - "id": 4103 - }, - { - "image_path": "G:\\images\\combined\\005916_jpg.rf.6396ed2c31343fd229b4626c28bb6807.jpg", - "response": "A man in a blue shirt and grey pants is sitting on a wooden ladder that is attached to a power pole. He is wearing a black helmet and grey gloves. There are many wires and cables attached to the pole and the man. There is a sky background with clouds.", - "id": 4104 - }, - { - "image_path": "G:\\images\\combined\\005918_jpg.rf.7d004e9e0946a870f7e997a37746a007.jpg", - "response": "The image shows two construction workers at a construction site, one of them is holding a large yellow concrete bucket and is about to pour concrete into a large wheelbarrow. The concrete is mixed in a large metal mixer. The workers are wearing yellow and red hard hats and grey uniforms. The ground is covered with snow.", - "id": 4105 - }, - { - "image_path": "G:\\images\\combined\\005919_jpg.rf.215a9e08d6c7f8de69e842ff44ec7f42.jpg", - "response": "A group of men standing around each other.", - "id": 4106 - }, - { - "image_path": "G:\\images\\combined\\00591_jpg.rf.7394d15002c6f71d138b1641ac6a3040.jpg", - "response": "The image shows a group of six people wearing hard hats sitting around a table in a patio setting. They all appear to be wearing the same outfit of dark clothing and hard hats. The table is surrounded by benches and there are several cups and a bottle on the table. In the background, there is a building with a white exterior and a patio area. There are also a few potted plants in the scene.", - "id": 4107 - }, - { - "image_path": "G:\\images\\combined\\005920_jpg.rf.9259b4068a4621c02d5d4d5a45b6808c.jpg", - "response": "A worker in white uniform and white hat is on a cherry picker fixing a power box on a pole.", - "id": 4108 - }, - { - "image_path": "G:\\images\\combined\\005922_jpg.rf.e33c63d88d1168d5021c043843701776.jpg", - "response": "The picture shows two Chinese workers in hard hats carrying a metal sheet. They are working on a construction site with a white metal building in the background. The sky is blue with clouds.", - "id": 4109 - }, - { - "image_path": "G:\\images\\combined\\005923_jpg.rf.0be973e6a746b5ece3c21a04f28b717f.jpg", - "response": "The image shows three men standing in front of a staircase. All three are wearing safety helmets. To the far left is a man in an orange jumpsuit and white helmet. To the right of him is a man in a navy blue jacket and red helmet. To the far right is a man in a brown jacket and white helmet.", - "id": 4110 - }, - { - "image_path": "G:\\images\\combined\\005924_jpg.rf.4f0def0010d310dae83ff221f95e9670.jpg", - "response": "The image shows three engineers or construction workers wearing white helmets, looking at a blueprint spread out on the ground. They are all smiling and seem to be having a good time on the job site.", - "id": 4111 - }, - { - "image_path": "G:\\images\\combined\\005925_jpg.rf.0d053f5d517e9ee355970f56c0768bf0.jpg", - "response": "An engineer in an orange uniform and yellow hard hat points to the right as two yellow excavators dig into a large pile of brown dirt.", - "id": 4112 - }, - { - "image_path": "G:\\images\\combined\\005926_jpg.rf.45e07524ec6b8823a401abc8c4473d07.jpg", - "response": "The image shows two workers in white protective clothing and blue helmets repairing a power pole. They are standing on the pole, which is made of grey wood and has several black wires. One worker is on the left side of the pole and is holding a tool in his right hand. The other worker is on the right side of the pole and is holding a tool in his left hand. They are both wearing white protective masks and have their legs wrapped in safety straps. The sky is white and cloudless.", - "id": 4113 - }, - { - "image_path": "G:\\images\\combined\\005927_jpg.rf.4a5c50466323085b90a22a4643d66f47.jpg", - "response": "Two workers in yellow hard hats and grey and yellow uniforms are working with machinery. They are standing in a large factory and there is a yellow machine to their left. They are working with a green and grey machine that has a brick pattern on it. There are many more machines like this in the background. The floor of the factory is grey and there are many bricks laid around the factory.", - "id": 4114 - }, - { - "image_path": "G:\\images\\combined\\005928_jpg.rf.5dbc11b63300e0009f14beb8fa2efe46.jpg", - "response": "An electrician working on an electrical transformer wearing a yellow hard hat and other safety gear.", - "id": 4115 - }, - { - "image_path": "G:\\images\\combined\\005929_jpg.rf.c3bd2521ed3b3674d099c2b4b4e91c5c.jpg", - "response": "a group of people standing in a construction site", - "id": 4116 - }, - { - "image_path": "G:\\images\\combined\\00592_jpg.rf.59077c38477aa6a881e0cf5a90296f72.jpg", - "response": "A group of people standing around a construction site", - "id": 4117 - }, - { - "image_path": "G:\\images\\combined\\005930_jpg.rf.b36a2fb0d06fc676922b6d62d898429e.jpg", - "response": "a group of people standing in a dirt road", - "id": 4118 - }, - { - "image_path": "G:\\images\\combined\\005931_jpg.rf.714c1832ea9a3e6fb260f363e1694b28.jpg", - "response": "A woman in a green dress is pointing towards something to a group of men. They are standing on a unfinished road next to a building under construction. There is a blue sky in the background.", - "id": 4119 - }, - { - "image_path": "G:\\images\\combined\\005932_jpg.rf.efcfd90716ef90281a252d026cffab1e.jpg", - "response": "A man in a blue jumpsuit and a yellow hard hat is working in a factory. He is pushing a dolly with a large metal cylinder on it. The background is a wall and a window. There is also a chair in the scene.", - "id": 4120 - }, - { - "image_path": "G:\\images\\combined\\005933_jpg.rf.7a820b10b70ece35a7899b6fe5ea1f29.jpg", - "response": "A man in a red vest and yellow hard hat standing next to a man in a red vest and orange hard hat. Both are wearing yellow safety vests and are standing in front of a large metal object. They are both wearing gloves and the man on the left is also wearing a blue hard hat.", - "id": 4121 - }, - { - "image_path": "G:\\images\\combined\\005934_jpg.rf.8ad52d678b4102974ccb19ddde80fc83.jpg", - "response": "a group of people standing outside of a van", - "id": 4122 - }, - { - "image_path": "G:\\images\\combined\\005935_jpg.rf.274e4cc823d01beb925fb29c4edcb730.jpg", - "response": "The image shows two workers in yellow jackets and blue hard hats, one yellow and one green, standing on a construction site with a building under construction in the background. They are both looking at a window frame on a building under construction.", - "id": 4123 - }, - { - "image_path": "G:\\images\\combined\\005936_jpg.rf.ce96cb7f39c92b0ad47da6382aa3ed2c.jpg", - "response": "A group of men standing around a white board looking at it. They are all wearing hard hats.", - "id": 4124 - }, - { - "image_path": "G:\\images\\combined\\005937_jpg.rf.43bbc5284de33aab8a1ee5e769ec52dc.jpg", - "response": "The workers are wearing yellow helmets. The workers are wearing black uniforms. The workers are wearing orange gloves. The workers are wearing red protective shoes. The workers are wearing white safety belts. The workers are wearing yellow hats. The workers are using red hammers.", - "id": 4125 - }, - { - "image_path": "G:\\images\\combined\\005938_jpg.rf.60bd21f5f1bac94b7f94ddd746e56d1f.jpg", - "response": "A group of people in camouflage and hard hats are sitting in a cave. They are wearing masks and have red helmets.", - "id": 4126 - }, - { - "image_path": "G:\\images\\combined\\00593_jpg.rf.18bf2353ef50d5f66a01c9339c2b6811.jpg", - "response": "Three women standing in front of a building site, all wearing red hard hats.", - "id": 4127 - }, - { - "image_path": "G:\\images\\combined\\00593_jpg.rf.ddbe4cfa86ed6da3ce1a3a9960b8226c.jpg", - "response": "Three women standing next to each other, all wearing red hard hats.", - "id": 4128 - }, - { - "image_path": "G:\\images\\combined\\005940_jpg.rf.16d821c9f7087cf0bb544ad22e248f22.jpg", - "response": "A group of men wearing red helmets are having a discussion in a room under construction. One of the men is pointing to the ceiling.", - "id": 4129 - }, - { - "image_path": "G:\\images\\combined\\005941_jpg.rf.ca3491d86befc485997530325d588993.jpg", - "response": "A construction worker wearing a yellow hard hat and a black jacket is in the middle of a construction site. The worker is in the process of lifting a metal beam over their head while standing on a wooden scaffolding. The sky is grey and overcast.", - "id": 4130 - }, - { - "image_path": "G:\\images\\combined\\005942_jpg.rf.cbb69231ed01822d0b441fe963636934.jpg", - "response": "Four men(33,180),(570,997)(438,271),(627,998)(700,268),(963,997) in hard hats(778,267),(953,430)(487,271),(605,398)(202,179),(371,407) standing in a construction site", - "id": 4131 - }, - { - "image_path": "G:\\images\\combined\\005943_jpg.rf.f9d795dadd5df2a0509db41aabde9118.jpg", - "response": "An elderly man wearing a red helmet and a brown jacket stands on a ladder on a steep mountain. He is holding a bamboo stick in each hand. Another man is behind him, wearing a red helmet and a black jacket. They are both wearing black pants. In the background, there is a mountain range with a valley between the mountains. There are also several trees in the valley. To the left of the image, there is a pile of rocks.", - "id": 4132 - }, - { - "image_path": "G:\\images\\combined\\005944_jpg.rf.5ad114f7b6d2857cab44e275b153f38c.jpg", - "response": "The image shows a group of workers dressed in yellow and orange vests and yellow helmets who are shoveling a white substance on the ground. The workers are in a tunnel and one of them is holding a large spoon. The spoon is filled with the white substance.", - "id": 4133 - }, - { - "image_path": "G:\\images\\combined\\005946_jpg.rf.33d2d3970d524e0fa73f0c71e4120199.jpg", - "response": "\u5730\u8d28\u5de5\u4f5c\u8005\u5728\u5c71\u6d1e\u5185\u8fdb\u884c\u5ca9\u82af\u94bb\u63a2\u3002", - "id": 4134 - }, - { - "image_path": "G:\\images\\combined\\005947_jpg.rf.89b88bbafcd77007253f47eb6fa3dac2.jpg", - "response": "A group of men in blue work uniforms and yellow hard hats are climbing a metal tower. They are each holding on to a rope while they ascend. The tower is metal and has a lattice structure. The sky is blue with a few white clouds.", - "id": 4135 - }, - { - "image_path": "G:\\images\\combined\\005948_jpg.rf.5fde493aaaa0d2bbaa764ce16b25f5bb.jpg", - "response": "A woman wearing a red hard hat and blue coveralls.", - "id": 4136 - }, - { - "image_path": "G:\\images\\combined\\00594e9c5e6d67b6.jpg", - "response": "A woman with red hair and a black shirt is drawing on a white board.", - "id": 4137 - }, - { - "image_path": "G:\\images\\combined\\00594_jpg.rf.9ff4ab82bf16edb27214b41ed51bb484.jpg", - "response": "The image shows a group of people standing outside a bus. Some of them are holding shopping bags and one of them is holding a camera. There are two handbags visible in the scene. A man in a tie is talking to the group. The bus is a double-decker red bus. In the background, there are some buildings and a tree.", - "id": 4138 - }, - { - "image_path": "G:\\images\\combined\\005950_jpg.rf.a60ef370698fdc80313dec6e14a7cc96.jpg", - "response": "A group of three people standing in a room wearing hard hats.", - "id": 4139 - }, - { - "image_path": "G:\\images\\combined\\005951_jpg.rf.3032f20eba39da39369a96db25285573.jpg", - "response": " Two workers(170,554),(273,905)(504,347),(646,582) inside a dark tunnel", - "id": 4140 - }, - { - "image_path": "G:\\images\\combined\\005952_jpg.rf.295fc51b18994ebe743e0674b4c0ea94.jpg", - "response": "Two men in a control room with a lot of buttons and switches.", - "id": 4141 - }, - { - "image_path": "G:\\images\\combined\\005953_jpg.rf.84eb5a35eadda7cfc7877522ad39d180.jpg", - "response": "The image shows a group of seven men standing on a construction site, wearing hard hats. The ground is bare and dusty, and there are a few steel bars and some wires visible. In the background, there are two yellow construction vehicles parked. The sky is overcast, and there are a few clouds visible.", - "id": 4142 - }, - { - "image_path": "G:\\images\\combined\\005954_jpg.rf.1b8c2732f82ee6d6afdd366c18645d6f.jpg", - "response": " Workers(312,127),(603,919)(41,358),(282,810)(520,192),(759,714) at a construction site in China.", - "id": 4143 - }, - { - "image_path": "G:\\images\\combined\\005955_jpg.rf.f7d380efcc24fa7eace007c5926d7ddb.jpg", - "response": "A couple of workers fixing a pipe on the street.", - "id": 4144 - }, - { - "image_path": "G:\\images\\combined\\005956_jpg.rf.0f1db0ffc23eac57c733941111b56db8.jpg", - "response": "A worker in a yellow hard hat and orange jacket is using a red power tool to fix a pipe in a concrete wall.", - "id": 4145 - }, - { - "image_path": "G:\\images\\combined\\005957_jpg.rf.8977b5f72963aefd7633822de7c6a9cb.jpg", - "response": "A man is standing in a tunnel with a suitcase.", - "id": 4146 - }, - { - "image_path": "G:\\images\\combined\\005958_jpg.rf.2938840d3cb1539c71e6de2c2876a938.jpg", - "response": "A man and two women wearing hard hats and working clothes are standing on a construction site. They are all holding baskets on a strap across their shoulders. The woman on the left is wearing a red shirt and has a pink hard hat. The man in the middle is wearing a blue shirt and a yellow hard hat. The woman on the right is wearing a blue shirt and a yellow hard hat. They are all standing on grey gravel.", - "id": 4147 - }, - { - "image_path": "G:\\images\\combined\\005959_jpg.rf.d9c1daac0852162e8122c6c1f0384617.jpg", - "response": "An engineer from China's state-owned energy company, the China National Offshore Oil Corporation (CNOOC), works at a construction site in the Nam Con oil field in the South China Sea, around 210 kilometers (130 miles) off the coast of Vietnam, in this undated photo. The South China Sea islands, including the Paracel Islands, are inherent in China's territory, and China is committed to maintaining its sovereignty and maritime rights and interests in the South China Sea islands. China is also committed to resolving disputes through peaceful negotiations and dialogue and firmly opposes any form of territorial expansion. It is actively promoting regional cooperation for common development and prosperity. (Xinhua/Liu Bin via Getty Images)", - "id": 4148 - }, - { - "image_path": "G:\\images\\combined\\005961_jpg.rf.5f1fe9321a0a8c663eb52157cd86b2a9.jpg", - "response": "A group of workers are working on a building.", - "id": 4149 - }, - { - "image_path": "G:\\images\\combined\\005963_jpg.rf.2953dfb9d0ce4d158181b79449820f75.jpg", - "response": "2 workers(313,393),(808,996)(141,79),(541,995) on a ladder working on a power line", - "id": 4150 - }, - { - "image_path": "G:\\images\\combined\\005964_jpg.rf.bf4eb8e83f3b4608f93f9051e893dbbf.jpg", - "response": "In the image two men in green camouflage and blue hard hats are working on a power line. They are wearing green camouflage and are focused on the task at hand.", - "id": 4151 - }, - { - "image_path": "G:\\images\\combined\\005965_jpg.rf.8ee3928e6efb432a305b3fd05086dd19.jpg", - "response": "A group of men in hard hats are standing in a room under construction. One of the men is pointing to a wall.", - "id": 4152 - }, - { - "image_path": "G:\\images\\combined\\005966_jpg.rf.5c948c24045a0d24cbcb38fe19145ede.jpg", - "response": "A couple of men are installing solar panels on the roof of a building. One man is standing on a red ladder and is holding a solar panel while the other man is standing on the roof and is guiding him. Both of them are wearing hard hats.", - "id": 4153 - }, - { - "image_path": "G:\\images\\combined\\005967_jpg.rf.06c067575a5b58857fd8fa7900b03d06.jpg", - "response": "The image shows two workers in a dark room. They are both wearing white shirts and blue helmets. One of them is on the left and is holding a flashlight to look at a machine on the right.", - "id": 4154 - }, - { - "image_path": "G:\\images\\combined\\005968_jpg.rf.0f0cac38c1ce9c4c4e8629228bbd8610.jpg", - "response": "A man in a red jacket and hard hat is standing on a bridge.", - "id": 4155 - }, - { - "image_path": "G:\\images\\combined\\005969_jpg.rf.68773fc98fb0779dd7653440d06de61f.jpg", - "response": "In the image there are two workers installing a solar panel system on a roof. The roof of the building is grey and the solar panel system being installed is also grey. The workers are wearing white long sleeves and grey pants. The man in the front is wearing a red hat and the man in the back is wearing a blue hat. The man in the front is also wearing green work boots and the man in the back is wearing yellow work boots. They are using tools such as drills and screwdrivers to install the solar panels.", - "id": 4156 - }, - { - "image_path": "G:\\images\\combined\\00596_jpg.rf.311062ffbf7d41ced2f75811e33a0804.jpg", - "response": "The image shows three men standing in front of a building under construction. The man on the left is wearing a light blue shirt and a dark blue jacket. The man in the middle is wearing a red hard hat, a black jacket with the word \"TEN\" written on it in white, and a white shirt with the letter \"E\" in black. The man on the right is wearing a white shirt with a large letter \"E\" in black on the front. He is also holding a white piece of paper. The background shows a pile of grey bricks to the left and a yellow and red construction vehicle to the right. There is also a person in the background wearing a white shirt and blue shorts.", - "id": 4157 - }, - { - "image_path": "G:\\images\\combined\\005971_jpg.rf.54294f5150cb7b710f67e72f19d4a777.jpg", - "response": "A yellow construction vehicle is digging up a muddy field.", - "id": 4158 - }, - { - "image_path": "G:\\images\\combined\\005973_jpg.rf.50453ef7cdaee55a460df14e57a3fc4d.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing orange and yellow vests and hard hats. Some of them are holding tools. In front of them is a device that looks like a metal box with wires coming out of it. The workers are standing on a wooden platform in the tunnel. To the right of the platform is a pile of rocks. To the left of the platform is a pile of brown debris. The workers are focused on the device in front of them.", - "id": 4159 - }, - { - "image_path": "G:\\images\\combined\\005974_jpg.rf.fb048920af4b46440a025c7c75a9b621.jpg", - "response": "A group of men in white shirts and red or blue helmets are walking across a unfinished road.", - "id": 4160 - }, - { - "image_path": "G:\\images\\combined\\005975_jpg.rf.62130b04f9993eee4e592b443ee8276d.jpg", - "response": "Some people are looking at a construction site. They are standing in front of a large concrete structure that has metal rebar sticking out of it. The people are wearing dark clothing and one of them is wearing a cap. The man on the right is also holding a large stick. There is a pile of dark grey rocks to the right of the people.", - "id": 4161 - }, - { - "image_path": "G:\\images\\combined\\005976_jpg.rf.084c49937b93e2fe15cb2758a13ea2c6.jpg", - "response": "A person is wearing a jean jacket and a hard hat.", - "id": 4162 - }, - { - "image_path": "G:\\images\\combined\\005977_jpg.rf.e597e879139fbb66959b4612ca165cb5.jpg", - "response": " A worker(74,340),(409,997) installs solar panels at a solar farm in New York", - "id": 4163 - }, - { - "image_path": "G:\\images\\combined\\005978_jpg.rf.3b3a6234fe34fed047cf7a3677af4ca4.jpg", - "response": "A group of people standing around a construction site with buildings in the background.", - "id": 4164 - }, - { - "image_path": "G:\\images\\combined\\005979_jpg.rf.e694eec3631cfdc58cc1d82164f5a501.jpg", - "response": "The image shows three men standing on a construction site, wearing hard hats and looking at a blueprint. The men are standing on a concrete platform and there are a few pipes sticking out of the ground nearby. The ground is covered in a white material and there is a pile of dirt in the background.", - "id": 4165 - }, - { - "image_path": "G:\\images\\combined\\00597_jpg.rf.f257b3ebf3396e7ed5480c86b22b7b1f.jpg", - "response": "A group of people standing on the side of a road.", - "id": 4166 - }, - { - "image_path": "G:\\images\\combined\\00597_jpg.rf.fe6b3f83c348e0f5d19c8ed4a2f338b9.jpg", - "response": "A group of people standing on the side of a road.", - "id": 4167 - }, - { - "image_path": "G:\\images\\combined\\005980_jpg.rf.fb8e1ea4fdd1f3a443b84f98c7826771.jpg", - "response": "A couple of workers are on the side of a building. One is holding a long tool and the other is looking at something.", - "id": 4168 - }, - { - "image_path": "G:\\images\\combined\\005981_jpg.rf.c42fde42aac1cdd813a4d6b20a8b89c4.jpg", - "response": "The image shows a group of workers in red uniforms standing inside a large tunnel. The tunnel is carved into the side of a mountain and has a tall wooden structure built inside of it. The workers are standing underneath this structure, which appears to be a support system for the tunnel. Some of the workers are wearing hard hats and one of them is holding a tool. The ground around the workers is covered in debris and there are some tools scattered around. The workers are all looking in different directions and seem to be engaged in various tasks.", - "id": 4169 - }, - { - "image_path": "G:\\images\\combined\\005982_jpg.rf.9726babc89ad659370142d7ba8dbe8a3.jpg", - "response": "The image shows a group of workers inside a large building under construction. They are wearing yellow hard hats and orange or yellow vests. The workers are working on a large metal framework that forms the support structure of the building. The metal framework is made up of many intersecting bars and rods that form a grid-like pattern. Some of the workers are standing on the framework, while others are working on it from the ground. The workers are focused on their tasks and appear to be in the middle of a construction site.", - "id": 4170 - }, - { - "image_path": "G:\\images\\combined\\005984_jpg.rf.d993de90a458b3869ec16a2abffa8c08.jpg", - "response": "A group of three men walking away from a work site.", - "id": 4171 - }, - { - "image_path": "G:\\images\\combined\\005985_jpg.rf.d6967b810ec65b96f890dfd0b52c663b.jpg", - "response": "A couple of men working on a building construction site.", - "id": 4172 - }, - { - "image_path": "G:\\images\\combined\\005986_jpg.rf.b9a63bf0ea1613f1b0e6af09f9998980.jpg", - "response": "5 workers(593,172),(879,945)(367,218),(513,576)(527,20),(683,566)(3,125),(275,997) cutting a pole(469,1),(536,891)", - "id": 4173 - }, - { - "image_path": "G:\\images\\combined\\005987_jpg.rf.8dd202312f176b5095ecce42cf37f59b.jpg", - "response": "A group of people walking down a hallway.", - "id": 4174 - }, - { - "image_path": "G:\\images\\combined\\005988_jpg.rf.deadc3de7180f72943fb0eef0b586c4e.jpg", - "response": "The photo shows men walking in a line across the street. They are wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a building under construction.", - "id": 4175 - }, - { - "image_path": "G:\\images\\combined\\005989_jpg.rf.cc2afa672407cec0249ecba8a2a26c10.jpg", - "response": "A group of men in red uniforms are working on a power line.", - "id": 4176 - }, - { - "image_path": "G:\\images\\combined\\00598_jpg.rf.35dbeaa6763659a30483902ece2e724b.jpg", - "response": "a group of men standing in front of a factory", - "id": 4177 - }, - { - "image_path": "G:\\images\\combined\\00598_jpg.rf.7c22f7503bc5d018a58960304a57927a.jpg", - "response": "A group of people are standing outside a factory. Some of them are wearing red hard hats. In the background, there is a construction site with a crane.", - "id": 4178 - }, - { - "image_path": "G:\\images\\combined\\005990_jpg.rf.3475a11366e147ff0318bfc64a02718d.jpg", - "response": "A construction site with several workers and a man being rescued.", - "id": 4179 - }, - { - "image_path": "G:\\images\\combined\\005991_jpg.rf.34b8aa4f925ef7d4942c346d2d3f19d9.jpg", - "response": "A man wearing a red hard hat and work gloves is holding a pipe wrench on a pipe.", - "id": 4180 - }, - { - "image_path": "G:\\images\\combined\\005992_jpg.rf.de4b53f365e5eec08c7c29280dfedc47.jpg", - "response": "A construction worker wearing a yellow hard hat, blue pants, and a yellow and orange safety vest is pulling on a metal rod. He is wearing a yellow hard hat and has a beard.", - "id": 4181 - }, - { - "image_path": "G:\\images\\combined\\005993_jpg.rf.905f5218dd1e2f9c5d43dc7d046ad66b.jpg", - "response": " Two construction workers(860,553),(963,981)(762,545),(829,850) standing in front of a bulldozer(70,338),(683,729)", - "id": 4182 - }, - { - "image_path": "G:\\images\\combined\\005994_jpg.rf.e9376eac8f43fb0ee953359c4806bd0f.jpg", - "response": " Workers(224,607),(297,997)(504,516),(658,955)(292,589),(366,997)(1,415),(61,637) at the construction site of the subway line 14 in Shanghai.", - "id": 4183 - }, - { - "image_path": "G:\\images\\combined\\005995_jpg.rf.8c0015045ca8b087cc33ca6fbe36ffd4.jpg", - "response": "A group of people standing around a blueprint on a construction site.", - "id": 4184 - }, - { - "image_path": "G:\\images\\combined\\005996_jpg.rf.db600f1754eb5b05225956fbb2a11ad0.jpg", - "response": "A construction site with multiple workers.", - "id": 4185 - }, - { - "image_path": "G:\\images\\combined\\005997_jpg.rf.9aebc48006f44ef488f8ccfbb7dab7c9.jpg", - "response": "A man in a yellow safety vest and red hard hat stands on a train track.", - "id": 4186 - }, - { - "image_path": "G:\\images\\combined\\005998_jpg.rf.1336712ad9e44010eb10177b01bb15a7.jpg", - "response": "In the image there are two workers in a construction site. They are both wearing hard hats and one of them is wearing a blue one and the other one is wearing a red one. They are both smiling at the camera. In the background, there are a lot of metal bars and tubes of different colors.", - "id": 4187 - }, - { - "image_path": "G:\\images\\combined\\005999_jpg.rf.e6512c41d88f6bff0789b37a54b0aaf8.jpg", - "response": "The image shows a group of men standing in a lobby. They are all wearing ties. Some of them are also wearing name tags. The men are standing in two rows. In front of them is a counter with a plant on it. To the right of the counter is a pillar. Behind the men is a large window. The lobby has a glass ceiling. The men are all wearing different colors and styles of clothing.", - "id": 4188 - }, - { - "image_path": "G:\\images\\combined\\00599_jpg.rf.218c56dc2a21b3638e0eab02c2c23837.jpg", - "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are dressed in work clothes. The woman is holding a tablet, and she is showing something on it to the man standing next to her. The man is also looking at the tablet. They are standing in front of a construction site.", - "id": 4189 - }, - { - "image_path": "G:\\images\\combined\\00599_jpg.rf.6ce9c63190ac67a1bbbdca7673bc6760.jpg", - "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are standing in a construction area, and the woman is holding a tablet. The man is pointing at the tablet, and they are both looking at the screen.", - "id": 4190 - }, - { - "image_path": "G:\\images\\combined\\0059b3476be49c49.jpg", - "response": "A beer tap that says London Pilsner on it.", - "id": 4191 - }, - { - "image_path": "G:\\images\\combined\\0059b85f053a2e64.jpg", - "response": "A color illustration of three women in pastel colors on a cloud. They are holding a large hot air balloon.", - "id": 4192 - }, - { - "image_path": "G:\\images\\combined\\005a2a34b7a0e507.jpg", - "response": "A man and woman pose for a picture while holding their bowling balls. They are standing in front of a row of bowling lanes in a bowling alley.", - "id": 4193 - }, - { - "image_path": "G:\\images\\combined\\005a39553e6667f5.jpg", - "response": "A large yellow sign for the Green Acres Motel.", - "id": 4194 - }, - { - "image_path": "G:\\images\\combined\\005b47528e6a32cb.jpg", - "response": "The seal of the US Army is shown on a large metal surface. The Army logo is in the center of the seal and is surrounded by the words \"Department of the Army.\" The year 1775 is also shown on the seal.", - "id": 4195 - }, - { - "image_path": "G:\\images\\combined\\005b5a0dc34354c9.jpg", - "response": "A book is on display on a table. The book is written in Spanish and is titled \"Aleph\". The cover features a person swimming in a pool with their head above water. The person's hair is in a bun. The book is on a black surface.", - "id": 4196 - }, - { - "image_path": "G:\\images\\combined\\005b871dd8c27687.jpg", - "response": "A young boy up to bat in baseball game.", - "id": 4197 - }, - { - "image_path": "G:\\images\\combined\\005b92c904f041ae.jpg", - "response": "A sign on a sidewalk that says \"REFEREES ONLY\" in front of a tent with people in yellow shirts standing under it.", - "id": 4198 - }, - { - "image_path": "G:\\images\\combined\\005c21872cd3bb1d.jpg", - "response": "a blue and white ferry sign", - "id": 4199 - }, - { - "image_path": "G:\\images\\combined\\005c731182304792.jpg", - "response": "A street sign with two arrows on it, one pointing to the left and one pointing to the right.", - "id": 4200 - }, - { - "image_path": "G:\\images\\combined\\005c774042747f13.jpg", - "response": "A wall with writing on it that says \"Fasts Devlet\"", - "id": 4201 - }, - { - "image_path": "G:\\images\\combined\\005c9476aa2077c2.jpg", - "response": "A side by side shot of two computer screens. Each screen has a webpage that says Vimeo and The Stereoscopic 3D Channel. There is a keyboard in front of both screens and paper with 3D glasses on it.", - "id": 4202 - }, - { - "image_path": "G:\\images\\combined\\005cb9e795fa91de.jpg", - "response": "A person is holding a cell phone in their right hand. The cell phone is an iPhone and is open to the home screen. On the home screen there are several apps open, including the app called \"WLKR LOFT\". The person are pressing on the app called \"FRONT DOOR\". The background of the image is blurred and there are two candles burning in the background.", - "id": 4203 - }, - { - "image_path": "G:\\images\\combined\\005cdc41f47be514.jpg", - "response": "A city street at night with a large lit up billboard on the side of a building.", - "id": 4204 - }, - { - "image_path": "G:\\images\\combined\\005cfe0addc5fc40.jpg", - "response": "A group of people standing under a tent.", - "id": 4205 - }, - { - "image_path": "G:\\images\\combined\\005d6523f6f0aa2f.jpg", - "response": "A person is holding a Nokia mobile phone in their left hand. The phone is black and silver in color and has a slide up keyboard. The person is holding the phone in a closed position. The phone has a screen that is not visible in the image. The person is also holding the phone with three fingers.", - "id": 4206 - }, - { - "image_path": "G:\\images\\combined\\005d71de0834bd7e.jpg", - "response": "A toddler sitting on the floor with a box of Little Tikes farm yard animal toys.", - "id": 4207 - }, - { - "image_path": "G:\\images\\combined\\005d84edc1ceb560.jpg", - "response": "A dog wearing a jersey and holding a baseball hat in its mouth.", - "id": 4208 - }, - { - "image_path": "G:\\images\\combined\\005dcb144a2374c9.jpg", - "response": "A camera lens with a black cover on a white sheet.", - "id": 4209 - }, - { - "image_path": "G:\\images\\combined\\005e0e8e16d795b4.jpg", - "response": "a person holding a cell phone with a variety of apps on the screen.", - "id": 4210 - }, - { - "image_path": "G:\\images\\combined\\005ec5c4b32ca609.jpg", - "response": "A sign over a highway points to various destinations including Altrincham, Trafford Park, and Whalley Range.", - "id": 4211 - }, - { - "image_path": "G:\\images\\combined\\005ee32ead922002.jpg", - "response": "A model airplane is painted in red, white, and blue.", - "id": 4212 - }, - { - "image_path": "G:\\images\\combined\\005eedab56bc6981.jpg", - "response": "A large metal filing cabinet sitting on a wooden deck.", - "id": 4213 - }, - { - "image_path": "G:\\images\\combined\\005f1823c01ab91e.jpg", - "response": "A bottle of All Creatures Yorkshire Pale Ale from Black Sheep Brewery.", - "id": 4214 - }, - { - "image_path": "G:\\images\\combined\\005f5c5572d3f0cc.jpg", - "response": "A wooden table with a bunch of items on it.", - "id": 4215 - }, - { - "image_path": "G:\\images\\combined\\006000_jpg.rf.cd02765969e956a8fde64006c99fc692.jpg", - "response": "The workers are using drills to fix the tunnel.", - "id": 4216 - }, - { - "image_path": "G:\\images\\combined\\006001_jpg.rf.fd71379fa2fe5d44b0658ec8731cf34a.jpg", - "response": "A couple of men working on a red machine.", - "id": 4217 - }, - { - "image_path": "G:\\images\\combined\\006002_jpg.rf.5f34d1cfb6507ee78d505955688b8ad2.jpg", - "response": "The image shows two workers in a white room with hard hats and reflective clothing. They are in the process of changing a valve on a large machine. The valve is located on the left side of the machine and is in the process of being turned off. The workers are standing on a platform in order to reach the valve. The room has pipes and other machinery on the walls.", - "id": 4218 - }, - { - "image_path": "G:\\images\\combined\\006003_jpg.rf.227708c457d9c3b524fb07f72b4547ba.jpg", - "response": "a group of people standing around each other", - "id": 4219 - }, - { - "image_path": "G:\\images\\combined\\006004_jpg.rf.f1b74f86fa57b4fa8d4b7e5c88c3a045.jpg", - "response": "A group of people standing around each other.", - "id": 4220 - }, - { - "image_path": "G:\\images\\combined\\006005_jpg.rf.8c53ef06855925aa6c27f3612669379b.jpg", - "response": "A construction worker is working on site with a red drill.", - "id": 4221 - }, - { - "image_path": "G:\\images\\combined\\006006_jpg.rf.788fe0bcf070d2bd8826e621e508b06e.jpg", - "response": "A couple of workers wearing blue helmets are looking at a large metal object.", - "id": 4222 - }, - { - "image_path": "G:\\images\\combined\\006007_jpg.rf.40fb75882fbb29df8352f4f67b7c546a.jpg", - "response": "A group of men working on a power line in a residential area.", - "id": 4223 - }, - { - "image_path": "G:\\images\\combined\\006008_jpg.rf.f63f78c4a617557f4bcd1bb67ce56cf0.jpg", - "response": "The image shows a middle aged man wearing a white hardhat and blue coveralls standing in front of a large yellow crane that is digging in a field. The sky is blue with clouds.", - "id": 4224 - }, - { - "image_path": "G:\\images\\combined\\006009_jpg.rf.e8f9c83c06ec54ee883bee14603872fc.jpg", - "response": "A worker with his face painted like a clown is standing in a bridge.", - "id": 4225 - }, - { - "image_path": "G:\\images\\combined\\00600_jpg.rf.d3b026bb4c92549f2f52ee20ebd44e59.jpg", - "response": "The image shows a group of seven men standing on a construction site. They are all wearing hard hats, with some of them also wearing suits. The men are standing in a semi-circle, with two of them on the left side and three on the right side, and the remaining two on the left and center of the right side. They are all looking in the same direction, towards the left side of the image. In the background, there is a large building under construction with a blue and green construction fence in front of it. There are also two cranes operating in the distance.", - "id": 4226 - }, - { - "image_path": "G:\\images\\combined\\00600_jpg.rf.dba5174493ae055f1ae0223e63b11a01.jpg", - "response": "A group of men standing around each other.", - "id": 4227 - }, - { - "image_path": "G:\\images\\combined\\006010_jpg.rf.986788c45e6fa82863c4479a5af0afb9.jpg", - "response": "In the image, a worker is smiling while working on a large metal structure. The worker is wearing a yellow hard hat, a white shirt, and yellow work gloves. They are kneeling on the ground and appear to be working on the metal structure, which is a large, silver, metal pipe. The worker is the main focus of the image, and they appear to be the only person in the scene. The background is blurry, with a blue ceiling in the foreground and a white wall in the background. There are also several other metal structures in the background.", - "id": 4228 - }, - { - "image_path": "G:\\images\\combined\\006012_jpg.rf.eb875ec54f92cd4364cc18e3a2a6028e.jpg", - "response": "The image shows two workers at a construction site. They are wearing yellow hard hats and are working on a building. The building has a steel reinforcement cage on the side of it. There are several wooden planks leaning against the building, and a couple of them are in the foreground of the image. The workers are standing on the ground, and one of them is walking towards the left side of the image.", - "id": 4229 - }, - { - "image_path": "G:\\images\\combined\\006013_jpg.rf.11b17fa66323fb77ccf8afa93f7527ab.jpg", - "response": "A group of men in hard hats stand in front of a pile of rubble and a yellow back hoe.", - "id": 4230 - }, - { - "image_path": "G:\\images\\combined\\006014_jpg.rf.ab7ffc3141b8fa5395f67865b7f7ad16.jpg", - "response": "A man in a red hard hat hammers a large stone.", - "id": 4231 - }, - { - "image_path": "G:\\images\\combined\\006015_jpg.rf.7bb66bcb3d77605e1a6e8217e1e1fb3e.jpg", - "response": "A worker in a red hat is working on an electrical tower.", - "id": 4232 - }, - { - "image_path": "G:\\images\\combined\\006016_jpg.rf.b20e736512bd777032eea23346a8a130.jpg", - "response": "A man in a blue jacket and yellow hard hat is digging a hole in the ground with a shovel. He is wearing a red shirt and blue pants. The ground around him is a mix of brown dirt and green grass. There is a person's foot visible in the bottom right corner of the image.", - "id": 4233 - }, - { - "image_path": "G:\\images\\combined\\006017_jpg.rf.a2ac874185ffefab6fa211eb08c239a6.jpg", - "response": "A construction worker in a grey shirt and blue hat is using a tool to work on a large pole.", - "id": 4234 - }, - { - "image_path": "G:\\images\\combined\\006018_jpg.rf.262dbe728df851dcd870ebd337f1f7bd.jpg", - "response": "Four construction workers are working on a building site. They are all wearing hard hats and are working on a structure that is made up of steel rods and concrete. They are standing on a ledge and appear to be working on the bottom half of a large building.", - "id": 4235 - }, - { - "image_path": "G:\\images\\combined\\006019_jpg.rf.077296493d36e989bd0e39a7b3405d98.jpg", - "response": "A man is driving a small vehicle in a dark tunnel.", - "id": 4236 - }, - { - "image_path": "G:\\images\\combined\\00601_jpg.rf.ae9621c2f8c2fd2afb934509298ab5b3.jpg", - "response": "The image shows a group of seven people standing in a construction area. They are all wearing red hard hats, with one person on the left and another on the right. In the center, there is a woman holding a piece of paper and talking to a man in a black jacket. The man is also wearing a red hard hat. The woman is wearing a white jacket and a pink scarf. The other four people are wearing similar clothing, with red hard hats and black jackets. The background is a red wall and a drain in the ground.", - "id": 4237 - }, - { - "image_path": "G:\\images\\combined\\00601_jpg.rf.fe095aaf68af054060d4e28cea4bb06b.jpg", - "response": "A group of people in hard hats stand in a circle. They are all dressed in winter clothing. One person is holding a blue folder.", - "id": 4238 - }, - { - "image_path": "G:\\images\\combined\\006020_jpg.rf.73e082b69709cc785d24e62ed8138404.jpg", - "response": "Two workers in a warehouse, one holding a clipboard and the other pointing at it.", - "id": 4239 - }, - { - "image_path": "G:\\images\\combined\\006021_jpg.rf.bd0a4ab99723baa23d8776b2ecbfa254.jpg", - "response": "A group of people stand on a balcony wearing hard hats.", - "id": 4240 - }, - { - "image_path": "G:\\images\\combined\\006022_jpg.rf.18d557e2f95c8042458c72158f5901ee.jpg", - "response": "A group of men walking in front of a building under construction. They are all wearing hard hats.", - "id": 4241 - }, - { - "image_path": "G:\\images\\combined\\006023_jpg.rf.57696548fe9698567eeda4c33ac4d843.jpg", - "response": "A picture of three men in hard hats, with the middle man wearing a blue shirt and the two others wearing white shirts. They are standing in front of a building site.", - "id": 4242 - }, - { - "image_path": "G:\\images\\combined\\006026_jpg.rf.e5c724f1de14669d19a86c24a7ad4b7e.jpg", - "response": "A group of people posing for a photo in front of a stage.", - "id": 4243 - }, - { - "image_path": "G:\\images\\combined\\006027_jpg.rf.e547130bf3d91816c349eb966164dd8d.jpg", - "response": "A group of men working on a construction site.", - "id": 4244 - }, - { - "image_path": "G:\\images\\combined\\006028_jpg.rf.e7e9b2da407414f7638f2ec3ebc226ab.jpg", - "response": "A man wearing a yellow hard hat and carrying a long object on his shoulder walks through a muddy construction site. The ground is mostly dirt and mud, and there are a few steel beams scattered around. In the background, there is a partially constructed building with metal framing.", - "id": 4245 - }, - { - "image_path": "G:\\images\\combined\\006029_jpg.rf.a14ef5d1bb66f2f9723c9a9431255b3f.jpg", - "response": "A worker is seen here making adjustments to the control box of a container.", - "id": 4246 - }, - { - "image_path": "G:\\images\\combined\\00602_jpg.rf.82deac27d36b12db2ba2d232282d5404.jpg", - "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", - "id": 4247 - }, - { - "image_path": "G:\\images\\combined\\00602_jpg.rf.abfcd2fb6cb309e69e5f1173ffc90ed4.jpg", - "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", - "id": 4248 - }, - { - "image_path": "G:\\images\\combined\\006030_jpg.rf.4114187d335cc531651d4ce427db6e44.jpg", - "response": "In the image two workers are fixing an transformer. The transformer is green and is located in the middle of the picture. The workers are wearing blue helmets and are standing on either side of the transformer. One worker is on the left and is holding a tool in his right hand. The other worker is on the right and is looking at the first worker. There are two red lines coming from the transformer, one on the left and one on the right. There is a red and white sign on the right side of the transformer. The background shows two buildings.", - "id": 4249 - }, - { - "image_path": "G:\\images\\combined\\006031_jpg.rf.ff2d600fabeed50ef56504f0db5f4c33.jpg", - "response": "A group of construction workers in yellow uniforms and hard hats are working on a construction site. They are carrying a large rock and a shovel.", - "id": 4250 - }, - { - "image_path": "G:\\images\\combined\\006032_jpg.rf.9e2cafb05fe9fa81e9ddbfee7cd996f2.jpg", - "response": "The image shows a group of workers on a construction site at night. They are gathered around a large metal pole, which has a white sign attached to it. The sign has black writing on it and is readable. The workers seem to be discussing something, as some of them are pointing at the sign. The background is quite dark, with some lights from the city in the distance.", - "id": 4251 - }, - { - "image_path": "G:\\images\\combined\\006033_jpg.rf.0b98d118f66f573f0d8baf58c481e6af.jpg", - "response": "In the image there is a man wearing a blue hard hat and tan clothes, climbing on a snowy telephone pole. He is standing on a ladder and appears to be fixing the power lines. The pole is covered in snow and ice, as are the branches around it.", - "id": 4252 - }, - { - "image_path": "G:\\images\\combined\\006034_jpg.rf.d6effcc9eb7505d8bf74a69a15342dbf.jpg", - "response": "A carpenter wearing a hard hat and work gloves is holding a level against a wooden beam. The man is building a house and is standing in front of a partially constructed wooden frame. The sky is blue and clear.", - "id": 4253 - }, - { - "image_path": "G:\\images\\combined\\006035_jpg.rf.cca5043fa34d538bbab9266f175132fe.jpg", - "response": "A construction worker is seen here moving steel rods(353,322),(563,570) at a construction site in the city of Shenyang, capital of northeastern China's Liaoning Province.", - "id": 4254 - }, - { - "image_path": "G:\\images\\combined\\006036_jpg.rf.560a86b59c4af9e24f006aa353576cfb.jpg", - "response": "In the image there is a man standing in an unfinished building. He is wearing a yellow hard hat, a white shirt, and black pants. He is also wearing black shoes. He has his hands crossed in front of him and is looking to the side. He has a clipboard attached to his shirt. The building has a lot of concrete pillars and the floor is wet in some places. There is also graffiti on the wall in the background.", - "id": 4255 - }, - { - "image_path": "G:\\images\\combined\\006037_jpg.rf.764f2056744e14884a7d0888fb5dc364.jpg", - "response": " People(547,198),(699,837)(417,233),(517,676)(278,183),(436,733)(482,146),(586,657)(70,156),(342,898) stand in a field of dirt and weeds", - "id": 4256 - }, - { - "image_path": "G:\\images\\combined\\006038_jpg.rf.954c6a65278bed980d6c34e705a42553.jpg", - "response": "a group of people standing around each other", - "id": 4257 - }, - { - "image_path": "G:\\images\\combined\\006039_jpg.rf.51424f7befbb497c168101c36daac760.jpg", - "response": "A woman wearing a yellow hard hat and sunglasses is sitting in the driver seat of a truck. She is smiling and has her arm on the door frame.", - "id": 4258 - }, - { - "image_path": "G:\\images\\combined\\00603_jpg.rf.ecd4ecb0fb88052abed49b41b583e615.jpg", - "response": "A group of people stand in a unfinished room. They are all wearing hard hats. In the front of the group a man points to something on the left. To the right of the man is a woman and a child. Behind the woman is a man in a black shirt and red hat. Behind the man in the red hat is another man in a black shirt. Behind the man in the red hat is a woman in a black shirt. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man", - "id": 4259 - }, - { - "image_path": "G:\\images\\combined\\00603_jpg.rf.ff079f1c34072ffc31d780665eecdc0e.jpg", - "response": "A man wearing a white hard hat points to something in the distance while a group of people wearing hard hats stand around him.", - "id": 4260 - }, - { - "image_path": "G:\\images\\combined\\006040_jpg.rf.7d37eb04353914a7bede5418520bde68.jpg", - "response": "A man in a hard hat is kneeling down next to a gurney. There is a person on the gurney who is being attended to by paramedics. There is a crowd of people standing around the gurney and the man in the hard hat. There is a fire truck in the background.", - "id": 4261 - }, - { - "image_path": "G:\\images\\combined\\006041_jpg.rf.a6bbeea1033f6fe7b0b7fd2bdf4d683b.jpg", - "response": "A construction site with two workers in orange vests and hard hats. They are standing on a platform with a blue sky and clouds in the background. There is a crane lifting a large piece of steel above the platform.", - "id": 4262 - }, - { - "image_path": "G:\\images\\combined\\006042_jpg.rf.c682683a59a07af32ac5d3ca99099148.jpg", - "response": "a group of men standing around a blueprint in a field", - "id": 4263 - }, - { - "image_path": "G:\\images\\combined\\006043_jpg.rf.69779df0ccb9c47da242cd8cadd4dc8f.jpg", - "response": "In the image two men are using a theodolite to survey a site. The theodolite is a transit level and total station device used for measuring distances, angles and elevations. The men are standing in front of a tall brown earthen embankment that is part of a construction site. The sky is blue with some clouds.", - "id": 4264 - }, - { - "image_path": "G:\\images\\combined\\006044_jpg.rf.9ef65577698481ab2e03c798fa4c8906.jpg", - "response": "A group of people are sitting on a step.", - "id": 4265 - }, - { - "image_path": "G:\\images\\combined\\006045_jpg.rf.effc8fbd349fee0a99b5d110e2b1d272.jpg", - "response": "A worker is working on the wall.", - "id": 4266 - }, - { - "image_path": "G:\\images\\combined\\006047_jpg.rf.9244fe30951c95e152cb1fb08f75c311.jpg", - "response": "Firefighters and paramedics work to free a man who was trapped in a stairwell after a fire broke out at a home in the 100 block of 82nd Avenue in Northglenn on Tuesday, July 26, 2016. The fire was reported at 12:45 a.m. and was quickly extinguished. The man was taken to a local hospital with non-life-threatening injuries. (Kathleen Black/KUSA)", - "id": 4267 - }, - { - "image_path": "G:\\images\\combined\\006048_jpg.rf.63775497e2922cc98918f92ba75504ef.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 4268 - }, - { - "image_path": "G:\\images\\combined\\006049_jpg.rf.63d7f7d66987744f9693855cce5b851c.jpg", - "response": "In the image, multiple workers are seen working on a stretch of railroad tracks. They are using various tools like hammers and crowbars to work on the tracks. Some of the workers are wearing yellow hard hats and safety glasses. The tools they are using are also visible in the image.", - "id": 4269 - }, - { - "image_path": "G:\\images\\combined\\006050_jpg.rf.9b02f05f43b478baa946660a8e24d2b1.jpg", - "response": "a group of men walking down a street", - "id": 4270 - }, - { - "image_path": "G:\\images\\combined\\006051_jpg.rf.ae41556ef935cb7d9d91d656ffa4e983.jpg", - "response": "A group of people walking down a street some are wearing hard hats.", - "id": 4271 - }, - { - "image_path": "G:\\images\\combined\\006052_jpg.rf.3790f01ef98faf102f4919ee3873666f.jpg", - "response": "A group of construction workers(595,243),(995,996)(112,376),(636,997) in orange vests(113,649),(402,997)(656,563),(995,997) and yellow helmets(246,361),(423,583)(1,930),(78,1000) are working on a construction site.", - "id": 4272 - }, - { - "image_path": "G:\\images\\combined\\006053_jpg.rf.e2b3dfbf6c3161efb000d0714bdd2040.jpg", - "response": "A group of men standing in a unfinished building.", - "id": 4273 - }, - { - "image_path": "G:\\images\\combined\\006054_jpg.rf.b7b3c798ed1c456e0acafc117cf0531d.jpg", - "response": "a group of people standing in front of a car", - "id": 4274 - }, - { - "image_path": "G:\\images\\combined\\006055_jpg.rf.05ed585172a0618a468e806cda733d7b.jpg", - "response": "A man in a yellow hard hat and yellow safety vest is smiling and holding a thumbs up. He is standing in front of a large truck.", - "id": 4275 - }, - { - "image_path": "G:\\images\\combined\\006056_jpg.rf.12a92d130813b3a820d227a7f36d65e7.jpg", - "response": "a group of men standing in front of a large hill", - "id": 4276 - }, - { - "image_path": "G:\\images\\combined\\006057_jpg.rf.98bc42315e79491db36285dad55da656.jpg", - "response": "A group of people working on a construction site.", - "id": 4277 - }, - { - "image_path": "G:\\images\\combined\\006058_jpg.rf.031bfadb2eaa1d7f86006449f5134fb7.jpg", - "response": "The image shows a group of people walking in a line across a construction site. They are all wearing red hard hats, and some are also wearing suits. In the background, there are a few buildings, including one that has been partially constructed. There is also a pile of bricks on the right side of the image. A banner with Chinese writing can be seen above the group, and the writing is in blue. The people in the front are wearing ties.", - "id": 4278 - }, - { - "image_path": "G:\\images\\combined\\00605_jpg.rf.2544fce159f6f9578f8fb3a31beb7d76.jpg", - "response": "A construction site with three men in red hard hats standing in front of a blue wall. One of the men is holding a grey oxygen tank.", - "id": 4279 - }, - { - "image_path": "G:\\images\\combined\\006060_jpg.rf.2a7cfbfc57a01bed4543c274c29fa165.jpg", - "response": "A group of people working on a building site.", - "id": 4280 - }, - { - "image_path": "G:\\images\\combined\\006061_jpg.rf.28eb584f90b57fa1e8d3dee77ec31a9a.jpg", - "response": "a group of people walking", - "id": 4281 - }, - { - "image_path": "G:\\images\\combined\\006062_jpg.rf.eaeec3defd18f8350074ad7c8608474c.jpg", - "response": "A group of men sitting around a table.", - "id": 4282 - }, - { - "image_path": "G:\\images\\combined\\006063_jpg.rf.f63b9aa133b804c4ec1c1b1d8bd3b961.jpg", - "response": "The image shows three men in blue work clothes standing in a green forest. They are holding equipment and appear to be conducting an inspection or test.", - "id": 4283 - }, - { - "image_path": "G:\\images\\combined\\006065_jpg.rf.951e94e3e4da9505a081c80cbbfa3df5.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 4284 - }, - { - "image_path": "G:\\images\\combined\\006066_jpg.rf.14565f096e07e57f823bac5190bdadc8.jpg", - "response": "A woman in a hard hat and safety vest stands on a platform with metal railings, looking out over a city.", - "id": 4285 - }, - { - "image_path": "G:\\images\\combined\\006067_jpg.rf.41e592d5713fde18a777435f71e03b50.jpg", - "response": "A person in a blue jacket and yellow hard hat is leaning over a piece of metal railing. They are wearing a yellow hard hat and glasses. There is a person in a white and blue striped shirt and jeans standing on a red and white platform. There is a person in a white shirt and jeans standing on a green and white platform. There is a green and white platform behind them. There is a truck in the background.", - "id": 4286 - }, - { - "image_path": "G:\\images\\combined\\006068_jpg.rf.28611cbed5853be6474d0d8650b03f7c.jpg", - "response": "The picture shows two workers in a tunnel. They are both dressed in black uniforms and are wearing white hard hats. One worker is on the left and the other is on the right. The worker on the right is holding a cigarette and has a flashlight on his helmet. The light is shining on the left worker who is working with a tool in his hand. The left worker is blowing steam from his tool.", - "id": 4287 - }, - { - "image_path": "G:\\images\\combined\\006069_jpg.rf.6d3c91679d842ab85896221a5813dcbf.jpg", - "response": "The image shows two construction workers on a building site. They are wearing yellow hard hats and are working on the roof of a building. One of the workers is drinking water from a bottle. The sky is blue with some clouds.", - "id": 4288 - }, - { - "image_path": "G:\\images\\combined\\00606_jpg.rf.38e46e81d726bebe87ff3319fdcf83f4.jpg", - "response": "The image shows two workers wearing red helmets and carrying tools while working on a high-rise building. They are standing on the ledges of the building, one on the left and the other on the right. They are both holding onto ropes with red carabiners. The left worker is wearing a blue shirt, beige trousers, and white shoes. The right worker is wearing a blue shirt, dark blue trousers, and yellow shoes. The sky above them is yellow.", - "id": 4289 - }, - { - "image_path": "G:\\images\\combined\\00606_jpg.rf.baa5766cc2eb8768e09710691d815594.jpg", - "response": "The image shows two workers wearing red helmets and work clothes while hanging from ropes. They are in the process of cleaning windows on a tall building. One worker is on the left and the other is on the right. They are both holding ropes and tools. The left worker has a red helmet and is wearing a white shirt, dark blue pants, and white shoes. The right worker has a red helmet and is wearing a yellow shirt, dark blue pants, and brown shoes. The ropes they are hanging from are gray. The building they are working on is gray and has several floors. The sky above the building is yellow.", - "id": 4290 - }, - { - "image_path": "G:\\images\\combined\\006071_jpg.rf.1e70d5671f8b90cc8a30775ab2bae4f6.jpg", - "response": "A construction worker in an orange jacket and red hard hat stands in front of a large crane. The crane is lifting a large piece of metal and is in the process of building a large concrete structure. The sky is blue and there are no clouds in sight.", - "id": 4291 - }, - { - "image_path": "G:\\images\\combined\\006072_jpg.rf.149eab0d8d81ea72530fe7729ea675b9.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a large construction site. They are crouched down and wearing a yellow hard hat, blue jeans, and a grey shirt. The worker is working on a large grid of rebar, which is supported by a large concrete structure. The rebar is laid out in a grid pattern and is made up of many thin, long steel bars.", - "id": 4292 - }, - { - "image_path": "G:\\images\\combined\\006073_jpg.rf.1bd06c4539f0bc9dbc7377ebecdba263.jpg", - "response": "The picture shows a group of people in total 12 persons gathered in front of a construction site. They are all wearing red helmets. In the middle of the group, there is a man holding a small book. To the far left, there is a car with a bicycle on the back. To the far right, there are two buildings in the background.", - "id": 4293 - }, - { - "image_path": "G:\\images\\combined\\006074_jpg.rf.d29fa82f728c112b068325d2c0205b3b.jpg", - "response": "A pair of workers dangle from power lines in a city in China.", - "id": 4294 - }, - { - "image_path": "G:\\images\\combined\\006075_jpg.rf.b75834d5433b887cf92fcea1ab2e520e.jpg", - "response": "A group of people stand in a snowy field.", - "id": 4295 - }, - { - "image_path": "G:\\images\\combined\\006076_jpg.rf.5b47e7e6ef0bd7a5bf51472aac1117b1.jpg", - "response": "a group of people standing around a construction site", - "id": 4296 - }, - { - "image_path": "G:\\images\\combined\\006077_jpg.rf.19e4ad8a52c1238d182f0db1ba397fc9.jpg", - "response": "A group of men standing in front of a sign.", - "id": 4297 - }, - { - "image_path": "G:\\images\\combined\\006078_jpg.rf.84238145fe397ae44df9468fc763a887.jpg", - "response": "A man wearing a yellow hard hat and work gloves, holding a hammer and working on a wall made of wooden beams.", - "id": 4298 - }, - { - "image_path": "G:\\images\\combined\\006079_jpg.rf.44754316124767d3406362438d0ffb0d.jpg", - "response": "a group of people standing on a soccer field", - "id": 4299 - }, - { - "image_path": "G:\\images\\combined\\006080_jpg.rf.0a89cf6dda60d2ee2ef51c7de95f6ce6.jpg", - "response": " A worker(506,176),(602,436) repairs a power line in the aftermath of Super Typhoon Mangkhut in Tuguegarao city, Cagayan province, Philippines, September 17, 2018.", - "id": 4300 - }, - { - "image_path": "G:\\images\\combined\\006081_jpg.rf.db4e17219e65b92f5c8e7be4fefe01e4.jpg", - "response": "In the image two workers are seen wearing yellow helmets and working. In one tent which is seen in the image, one worker is holding a yellow container and another worker is coming out of the tent. In the other tent, one worker is holding a rope and the other worker is holding a machine. Both the tents are seen in a mountain area.", - "id": 4301 - }, - { - "image_path": "G:\\images\\combined\\006083_jpg.rf.f12a590cfb98d9769adde10ba303abe1.jpg", - "response": "5 men standing in front of a building site holding a flag with Chinese writing on it", - "id": 4302 - }, - { - "image_path": "G:\\images\\combined\\006084_jpg.rf.68c4745d5ebe0c776f03483f61a57e34.jpg", - "response": "In the image two workers are seen fixing the pillars of a building. The man on the left is wearing red helmet and has a beard. The man on the right is wearing yellow helmet and has a beard also. Both the workers are wearing blue color shirt. The man on the right is also wearing yellow color helmet. The wall of the building can be seen in the background which is under construction. The building has green color metal fencing. The floor of the building can be seen in the foreground.", - "id": 4303 - }, - { - "image_path": "G:\\images\\combined\\006085_jpg.rf.503e9049dba91396458785114bdbd8be.jpg", - "response": "A group of workers are working on a brick wall.", - "id": 4304 - }, - { - "image_path": "G:\\images\\combined\\006086_jpg.rf.1c84a846e6e18e21f7f37616eba08088.jpg", - "response": "A group of men in suits and hard hats stand on a construction site. One man points to a building in the distance.", - "id": 4305 - }, - { - "image_path": "G:\\images\\combined\\006087_jpg.rf.f65b14611f6212f81f812d9102cb8769.jpg", - "response": "In the image there is a person wearing a blue shirt and a yellow hard hat. They are holding a large metal bolt and are putting it into a metal square. The sky is blue and there are power lines in the background.", - "id": 4306 - }, - { - "image_path": "G:\\images\\combined\\006088_jpg.rf.e01708b4c81d4fd6c2b4eae5024c0e38.jpg", - "response": "The image shows two men standing in front of a building under construction. The man on the left is wearing a red cap and a green jacket. The man on the right is wearing a yellow shirt and a gray helmet. They are both holding yellow books and talking. The background is a white wall and a piece of yellow scaffolding.", - "id": 4307 - }, - { - "image_path": "G:\\images\\combined\\006089_jpg.rf.24141e34e66fd8de158d234032d7bbb5.jpg", - "response": "The image shows two construction workers wearing blue hard hats and reflective vests, with one of them holding a red tool. They are standing on a construction site with a building under construction in the background. The sky is blue and clear.", - "id": 4308 - }, - { - "image_path": "G:\\images\\combined\\00608_jpg.rf.62920c57775c1ce0e17bbb67babbc20b.jpg", - "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", - "id": 4309 - }, - { - "image_path": "G:\\images\\combined\\00608_jpg.rf.b9d87d952952b865e2dc517e10885a1a.jpg", - "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", - "id": 4310 - }, - { - "image_path": "G:\\images\\combined\\006090_jpg.rf.a1d3c460d2ce02bc560b5183566e912c.jpg", - "response": " Workers(232,124),(452,797)(168,364),(306,720)(92,355),(202,756) in a tunnel.", - "id": 4311 - }, - { - "image_path": "G:\\images\\combined\\006091_jpg.rf.4a6486801218b66b6a12d807d7172ab1.jpg", - "response": "A group of people sitting around a table.", - "id": 4312 - }, - { - "image_path": "G:\\images\\combined\\006094_jpg.rf.c285788258a24ddc558d148deee3ca63.jpg", - "response": "A man in a hard hat looking up at a very tall industrial plant.", - "id": 4313 - }, - { - "image_path": "G:\\images\\combined\\006095_jpg.rf.a8dd7f011441ffb26d7a807fb6363084.jpg", - "response": "The image shows a large tunnel that is unfinished on the left side and is lined with white concrete on the right side. The tunnel has a white ceiling and white floor. The floor is covered with dark grey train tracks that go into the distance. There are two workers in the tunnel, one is in the middle of the left side and the other is on the right side of the image. They are both dressed in red and white safety gear.", - "id": 4314 - }, - { - "image_path": "G:\\images\\combined\\006096_jpg.rf.0594cc16a14178516095e5476875bc71.jpg", - "response": "A group of workers in hard hats and safety vests are standing on a bridge. They are holding and moving a large metal beam.", - "id": 4315 - }, - { - "image_path": "G:\\images\\combined\\006098_jpg.rf.68524e1d268593bf3e2bf8eba9854633.jpg", - "response": "The image shows three men dressed in orange work clothes and blue helmets sitting on a yellow and black machine. They are all looking at a small black box the man on the left is holding. The street is blocked off with orange and white barriers and there are many people in the background, some standing and some sitting on chairs. There is a crowd of people on the right hand side of the image and another smaller crowd further in the background. In the very background, there are red lanterns hanging.", - "id": 4316 - }, - { - "image_path": "G:\\images\\combined\\006099_jpg.rf.8f6be92a92955f7416d7a834327a2668.jpg", - "response": "A group of four men standing and looking at a blueprint.", - "id": 4317 - }, - { - "image_path": "G:\\images\\combined\\00609_jpg.rf.a8d9fd38b7c5646c00ff7fdc22b83efd.jpg", - "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a tablet and is wearing a black safety jacket with the hood on. The man second from the left is wearing a blue hard hat and is holding a walkie talkie. The man in the middle is wearing a white hard hat and a yellow safety jacket, he is also holding a walkie talkie. The woman on the far right is wearing a yellow safety jacket and a white hard hat, she is holding a rolled up piece of paper. On the table to the right of the group, there are several cups and a laptop.", - "id": 4318 - }, - { - "image_path": "G:\\images\\combined\\00609_jpg.rf.fc7ba35a54bbb72e41981b0979205de6.jpg", - "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a walkie talkie and the man second from the left is scratching his head. The man in the middle is holding a blueprint. The woman on the right is wearing a yellow hard hat and holding the blueprint. There are two rooms in the background, one is almost finished and the other one is still under construction.", - "id": 4319 - }, - { - "image_path": "G:\\images\\combined\\0060bd3d509fba0f.jpg", - "response": "A sign for The House off Licenced is on the side of a building.", - "id": 4320 - }, - { - "image_path": "G:\\images\\combined\\006100_jpg.rf.8e14167538e51b6c5f1f5688d60a2a96.jpg", - "response": "a group of people in front of a building", - "id": 4321 - }, - { - "image_path": "G:\\images\\combined\\006101_jpg.rf.8797de2d4e19932f9c5eae5376aa1e68.jpg", - "response": "The image shows two workers in a room filled with industrial equipment. They are standing near a large pipe and a black valve. The pipe is on the left side of the image, and the valve is on the right side. Both workers are wearing red hard hats. One of the workers is holding a flashlight and is looking into the pipe. The other worker is standing behind them, and there is a chair in the room. The room also contains several other pipes and valves, some of which are connected to the large pipe and valve. The walls of the room are made of red brick, and there is a window in the background.", - "id": 4322 - }, - { - "image_path": "G:\\images\\combined\\006103_jpg.rf.c87eef4f53b2c2414d631f5da92b9eb7.jpg", - "response": "A group of men in blue uniforms and red hard hats are working on a ladder on a power line.", - "id": 4323 - }, - { - "image_path": "G:\\images\\combined\\006104_jpg.rf.1db0fb41129d0f6da1bd674fd93310b9.jpg", - "response": "The image shows two men standing on a construction site. They are wearing hard hats and one of them is holding a rolled-up blueprint. In the background, there are other people and a few vehicles, including a bulldozer and a car. The site is marked with a sign that says \"lot for sale.\"", - "id": 4324 - }, - { - "image_path": "G:\\images\\combined\\006105_jpg.rf.5b7b116e0c7eeba3b4c883abaf32fc04.jpg", - "response": "A couple of men in orange work clothes and yellow hard hats are working on a piece of machinery.", - "id": 4325 - }, - { - "image_path": "G:\\images\\combined\\006106_jpg.rf.2aca2de9a50c6db3d91c0d02703ac45b.jpg", - "response": "A worker in a yellow hard hat is working on a large pipe.", - "id": 4326 - }, - { - "image_path": "G:\\images\\combined\\006107_jpg.rf.7a7959bf2499962f2e20d58ac44ce2cd.jpg", - "response": "The image shows a group of four men standing in an unfinished room. They are all wearing hard hats. One man is pointing to the right, presumably showing something of interest. The man on the far left is holding a cell phone. The man second from the left is wearing a black suit and a white helmet. The man on the right is wearing a red helmet. The walls of the room are made of concrete blocks and the floor is bare.", - "id": 4327 - }, - { - "image_path": "G:\\images\\combined\\006108_jpg.rf.34052cb5c25d4de6cdbfdefcaf8bae96.jpg", - "response": "A construction worker using a machine to cut through a concrete wall.", - "id": 4328 - }, - { - "image_path": "G:\\images\\combined\\006110_jpg.rf.a812eae3c179d43d1eff20c719cdbb04.jpg", - "response": "A group of men standing around a building site wearing hard hats.", - "id": 4329 - }, - { - "image_path": "G:\\images\\combined\\006111_jpg.rf.3475659e93ff77746ff04a16b4740994.jpg", - "response": "A group of people standing in a room with two men looking at a computer screen.", - "id": 4330 - }, - { - "image_path": "G:\\images\\combined\\006113_jpg.rf.ed92f4239bcf6dfa87e110637a5c0ceb.jpg", - "response": "The image shows a group of workers in blue jumpsuits and yellow hard hats at a construction site. They are gathered around a large piece of equipment, which appears to be a large piece of electrical equipment. The workers are standing in front of a tall structure with power lines above them. One of the workers is holding a large tool and pointing towards something. The text at the top of the image reads \"People.com\" and \"Anhui\" and the bottom text reads \"\u4eba\u6c11\u7db2 \u5b89\u5fbd\u9891\u9053\".", - "id": 4331 - }, - { - "image_path": "G:\\images\\combined\\006114_jpg.rf.5f26a1e0a1e7bf7d308ceec91f904198.jpg", - "response": "In the image there is a group of men working in a factory. They are wearing hard hats and are working with metal. There are several metal beams and bars in the factory. Some of the metal is cut and ready to be put to use. There is also a truck visible in the background.", - "id": 4332 - }, - { - "image_path": "G:\\images\\combined\\006115_jpg.rf.5121fc4d7e368062e24b16e239a6d695.jpg", - "response": "A group of workers are working on a large pipeline.", - "id": 4333 - }, - { - "image_path": "G:\\images\\combined\\006116_jpg.rf.3b0a93ff015b8e90f96f799dfcee0cec.jpg", - "response": "In the image there are two people wearing blue work clothes and safety harnesses. They are working on an electrical box. One person is climbing a ladder and the other person is working on the electrical box. They are both wearing white gloves to be able to work safely.", - "id": 4334 - }, - { - "image_path": "G:\\images\\combined\\006117_jpg.rf.576f73fbddf3bfdc4e06788d42e289e5.jpg", - "response": " Workers(372,322),(557,916)(746,294),(988,997)(612,359),(672,598)(509,367),(585,680) in a tunnel, working on the construction of the railway tunnel.", - "id": 4335 - }, - { - "image_path": "G:\\images\\combined\\006118_jpg.rf.24a7ca8df1f49d47d83a89f07a78a2d0.jpg", - "response": "A man sitting on the ground in front of a pile of metal rods.", - "id": 4336 - }, - { - "image_path": "G:\\images\\combined\\006120_jpg.rf.e199e14c7b55a849b331c0c3dc4817dc.jpg", - "response": "A worker in a yellow hard hat is operating a piece of equipment.", - "id": 4337 - }, - { - "image_path": "G:\\images\\combined\\006121_jpg.rf.291bc736a335c2baead37c7f0c8574ac.jpg", - "response": "A group of men standing in front of a pile of rubble.", - "id": 4338 - }, - { - "image_path": "G:\\images\\combined\\006122_jpg.rf.b0c5a942a23ec461be1f113b400d6d84.jpg", - "response": "In the image two technicians are working on a roof. They are wearing orange work uniforms and yellow hard hats. They are standing on a roof and working on a piece of equipment.", - "id": 4339 - }, - { - "image_path": "G:\\images\\combined\\006123_jpg.rf.2183e9055eb8d44a733214c16e9b5c1e.jpg", - "response": "A man in a hard hat and orange safety jacket is working on a construction site. He is standing on a ladder, working on a concrete wall. There are yellow pipes running along the side of the wall. In the background, there are more buildings and a sky with clouds.", - "id": 4340 - }, - { - "image_path": "G:\\images\\combined\\006124_jpg.rf.84d67cbbdf32583278a301932c694261.jpg", - "response": "A man and woman wearing blue hard hats are standing in front of a building under construction. The man is wearing a blue shirt and has a tie. The woman is wearing a yellow vest. They are both holding cigarettes.", - "id": 4341 - }, - { - "image_path": "G:\\images\\combined\\006125_jpg.rf.ce11c146e4766360f97b0054f61afa56.jpg", - "response": "A man in a blue shirt and orange hard hat is working on a piece of machinery. He is wearing glasses and has a orange hard hat with a yellow sticker on it. He is also wearing a black glove on his left hand. He is looking at the camera while working on the machinery.", - "id": 4342 - }, - { - "image_path": "G:\\images\\combined\\006126_jpg.rf.b84e67e82b3b33f8194203b0009622bc.jpg", - "response": "An employee works on power lines covered with snow in Lhasa, capital of southwest China's Tibet Autonomous Region, Jan. 25, 2016. The heavy snowfall this week has affected electricity and telephone services in some areas of Tibet. However, the overall situation is under control and the power and telephone services have been gradually restored, the local authorities said. (Xinhua/Li Bin)", - "id": 4343 - }, - { - "image_path": "G:\\images\\combined\\006127_jpg.rf.5af12613b0a2a90184835ccf6a00dc44.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 4344 - }, - { - "image_path": "G:\\images\\combined\\006128_jpg.rf.5c7a4fd0c3c0f819b7aba94626754ae5.jpg", - "response": "An older Chinese man wearing a blue hat and a blue and red shirt smiles at the camera.", - "id": 4345 - }, - { - "image_path": "G:\\images\\combined\\006129_jpg.rf.219b274a8e0802c7c0350a0d3719145e.jpg", - "response": "In the image there is a construction site with two workers present. They are working on a building, possibly a hotel, and are in the process of laying bricks. The bricks are being laid on a wooden platform. There are also several other workers in the image, some of which are holding tools, while others are working on the building. The building is grey in color and the sky above it is white.", - "id": 4346 - }, - { - "image_path": "G:\\images\\combined\\00612_jpg.rf.175a0841ccb252e5cf869c814c6ac4a8.jpg", - "response": "A group of people working on a construction site, pouring concrete.", - "id": 4347 - }, - { - "image_path": "G:\\images\\combined\\00612_jpg.rf.a33554dbc7cd3e7832612770277d5930.jpg", - "response": "A group of people working on a construction site, pouring concrete.", - "id": 4348 - }, - { - "image_path": "G:\\images\\combined\\006130_jpg.rf.79a573a943f704029c6e693055c577fe.jpg", - "response": "The workers in the photo are dressed in green camouflage uniforms. In the background, there is a large sign that reads \"\u6709\u79cd\u660e\u4eae\u70ed\u529b \u7164\u6539\u6c14\" with a project launch ceremony held under it. The workers are carrying large copper buckets on their shoulders, which are connected to a large copper pipe.", - "id": 4349 - }, - { - "image_path": "G:\\images\\combined\\006131_jpg.rf.78274ad224e766a44c343a58d21c0412.jpg", - "response": "The scene of the accident in which a man was killed after a crane carrying a power transformer fell on a truck in Xingyi city, Guizhou province, Aug. 24, 2013. A crane carrying a power transformer fell on a truck in southwestern China's Guizhou province on Monday, killing a man and injuring three others, local media reported. The accident occurred in Xingyi city at around 11:30 a.m. (1:30 a.m. GMT), according to the official Weibo account of the local traffic police. The crane driver and two workers on the truck were injured, the report said, without saying where the accident happened.", - "id": 4350 - }, - { - "image_path": "G:\\images\\combined\\006132_jpg.rf.016d09a241af5f631aae842d09d94258.jpg", - "response": " People(657,196),(894,996)(862,277),(997,996)(307,271),(413,830)(514,307),(716,985)(123,273),(285,988)(55,293),(179,837) in hard hats and coats stand in a large, dark room with a concrete floor.", - "id": 4351 - }, - { - "image_path": "G:\\images\\combined\\006133_jpg.rf.f109773970d5c4033487e6d5a77e414e.jpg", - "response": "In the image two workers in orange safety jackets are handling steel wool on a construction site. They are standing behind a yellow container and in front of a ship with Chinese characters on it. The ship is carrying a large amount of steel wool on it's side.", - "id": 4352 - }, - { - "image_path": "G:\\images\\combined\\006134_jpg.rf.58174d4c72693b94375e38990bc4d6ec.jpg", - "response": "A man sitting down and another standing both wearing blue helmets and work clothes.", - "id": 4353 - }, - { - "image_path": "G:\\images\\combined\\006135_jpg.rf.3df08ce2be69190d5eeeeb7870854a20.jpg", - "response": "A city street with some trees and buildings on it. Some workers are on a cherry picker fixing a power line.", - "id": 4354 - }, - { - "image_path": "G:\\images\\combined\\006136_jpg.rf.b069bf552937476ac0d047366ccda4ea.jpg", - "response": "In the image two workers are seen repairing an electricity post. Both of them are wearing safety gear. One of them is wearing a yellow helmet and the other one is wearing a red helmet. Both of them are wearing white clothes. One of them is holding a tool in his right hand which he is using to repair the electricity post.", - "id": 4355 - }, - { - "image_path": "G:\\images\\combined\\006137_jpg.rf.8423f98c87ed3569ca3c56dd749ae9ff.jpg", - "response": "a man in an orange shirt and red hat is operating a piece of equipment", - "id": 4356 - }, - { - "image_path": "G:\\images\\combined\\006138_jpg.rf.e3092c2557a67d075c52f368b8e6732f.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 4357 - }, - { - "image_path": "G:\\images\\combined\\00613913be1b88d2.jpg", - "response": "The image shows a group of men wearing blue baseball uniforms with red and white caps. They are standing on a baseball field, and some of them are smiling. The men are standing close to each other, and some of them are shaking hands. One of the men is wearing a blue shirt and has a beard. Another man is wearing sunglasses and has a big smile on his face.", - "id": 4358 - }, - { - "image_path": "G:\\images\\combined\\006139_jpg.rf.cf58b6ba1cc0e0de20f60e56f94adcc1.jpg", - "response": "A group of men standing around each other", - "id": 4359 - }, - { - "image_path": "G:\\images\\combined\\006142_jpg.rf.bf5db353c153f4d0d8b8b99b00eb5279.jpg", - "response": "In the image there are two technicians working on a HVAC system. They are both dressed in blue work clothes and white helmets. The person on the left is leaning over a counter and looking at the pipe the person on the right is working on. There is a red pipe going across the image near the top. There is a white pipe going up the wall in the middle of the image and a black pipe going up the black in the upper right corner.", - "id": 4360 - }, - { - "image_path": "G:\\images\\combined\\006143_jpg.rf.17c9b41bcf57447c8e755a3f18453a00.jpg", - "response": "Men(510,223),(667,863)(649,105),(789,928)(727,62),(996,996) looking at a stadium(0,4),(997,999)", - "id": 4361 - }, - { - "image_path": "G:\\images\\combined\\006144_jpg.rf.7f4d654bbf0e1e68c7f0ebc38abc3463.jpg", - "response": "A group of people working on a ship docked at a port.", - "id": 4362 - }, - { - "image_path": "G:\\images\\combined\\006145_jpg.rf.b546365ee0f4fc0f5a456814847a5dd1.jpg", - "response": "A group of rescue workers in red jackets huddle around a silver pot in a snowy forest.", - "id": 4363 - }, - { - "image_path": "G:\\images\\combined\\006146_jpg.rf.e0a34ccf893dc0f1974407f57d5cb3f9.jpg", - "response": "An engineer in a white helmet and green vest points to a pipe in a white corridor.", - "id": 4364 - }, - { - "image_path": "G:\\images\\combined\\006147_jpg.rf.776dc9315508da30e524cd3cd0eb1584.jpg", - "response": "A man is using a machine to level concrete.", - "id": 4365 - }, - { - "image_path": "G:\\images\\combined\\006148_jpg.rf.a4521472c79be0b5e3ee0d4a55bc0d4b.jpg", - "response": "A group of men sitting around a table.", - "id": 4366 - }, - { - "image_path": "G:\\images\\combined\\00614_jpg.rf.50c987a424d84264c9412d23a90f0fc6.jpg", - "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", - "id": 4367 - }, - { - "image_path": "G:\\images\\combined\\00614_jpg.rf.85a31443e5160ea9685a27c8049cc41b.jpg", - "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", - "id": 4368 - }, - { - "image_path": "G:\\images\\combined\\006150_jpg.rf.6e6e35855aab73f13a302719bd5da8d1.jpg", - "response": "A group of people walking through a construction site.", - "id": 4369 - }, - { - "image_path": "G:\\images\\combined\\006151_jpg.rf.740b7dd0c79aef8b1a0d5a2d446b279a.jpg", - "response": "A group of men in blue uniforms working on power lines.", - "id": 4370 - }, - { - "image_path": "G:\\images\\combined\\006152_jpg.rf.fb77629cd8e9fa7a6bd347e988d813f4.jpg", - "response": "A group of men working on a large piece of equipment.", - "id": 4371 - }, - { - "image_path": "G:\\images\\combined\\006153_jpg.rf.8b156f8f1313bbadfcf2ec1f2a8d3f6e.jpg", - "response": "A worker in a blue uniform and yellow hat is standing in front of a machine that has several bags of a product on it. The bags are blue and have white writing on them. The worker is holding a blue hose and is standing next to a yellow machine.", - "id": 4372 - }, - { - "image_path": "G:\\images\\combined\\006154_jpg.rf.c5ba22a008375d22225eddd90cd892d2.jpg", - "response": "A construction worker pulling a cable across a construction site.", - "id": 4373 - }, - { - "image_path": "G:\\images\\combined\\006156_jpg.rf.e2805ad0c51db38c205f206205e256aa.jpg", - "response": " A man(488,142),(919,995) in a hard hat(568,141),(753,333) standing in front of a large building under construction.", - "id": 4374 - }, - { - "image_path": "G:\\images\\combined\\006157_jpg.rf.61b3e5fa82b2c5ed18e372b99d6268b5.jpg", - "response": "A group of workers are cutting a tree with a chainsaw. The tree is blocking a road and leaning on power lines. The workers are dressed in orange and blue work clothes and hard hats. It is snowing heavily while they work.", - "id": 4375 - }, - { - "image_path": "G:\\images\\combined\\006158_jpg.rf.4f0bb79f5f53bba6e18de613cce1604b.jpg", - "response": "Three men are talking next to an empty road. The man on the left is wearing a white shirt and grey pants. The man in the middle is wearing a white shirt and black pants. The man on the right is wearing a blue shirt and grey pants.", - "id": 4376 - }, - { - "image_path": "G:\\images\\combined\\006159_jpg.rf.aede2e2b1428caeac84b5b590c9dbb2d.jpg", - "response": "A worker is on a scaffolding, painting the eves of a building. He is wearing a grey suit, a blue hat, and a glove on his left hand. He is holding a brush in his right hand and a cell phone is in his left pocket. The sky is grey and overcast.", - "id": 4377 - }, - { - "image_path": "G:\\images\\combined\\006160_jpg.rf.6999479274a6ca768e580b88baf164e5.jpg", - "response": "In the image there is a group of workers wearing yellow helmets and green work clothes, they are working in a field. In the foreground, a worker in a green work clothes and yellow helmet is fixing a power pole, there is a power pole on the ground, and another one in the background.", - "id": 4378 - }, - { - "image_path": "G:\\images\\combined\\006164_jpg.rf.acdcd95a1cb3c6fc4d909dd632a914d7.jpg", - "response": "A man in a yellow hard hat and orange vest is working on a cement mixer. He is pouring cement into the mixer from a bag.", - "id": 4379 - }, - { - "image_path": "G:\\images\\combined\\006165_jpg.rf.6a6c0d15bc759b0e70b83f9ada1976e8.jpg", - "response": "The photo shows two workers in a dimly lit tunnel. They are wearing hard hats and standing on rubble near the entrance to the tunnel. In the background, there is a bright light coming from inside the tunnel.", - "id": 4380 - }, - { - "image_path": "G:\\images\\combined\\006166_jpg.rf.40f52eb941d5643b17f29f5b30057b59.jpg", - "response": "In the image, US President Barack Obama is wearing a white shirt and a purple tie, and is also wearing a white helmet. He is talking to a man in front of him, also wearing a white helmet. The man to the right of Obama is wearing a black jacket. On the wall behind them, there is a blue display. On the right lower corner, there is a blue word \"CHINA DAILY\".", - "id": 4381 - }, - { - "image_path": "G:\\images\\combined\\006167_jpg.rf.001c381ea07c53212bf51bb0110f4785.jpg", - "response": "A construction worker in a yellow hard hat and blue work jacket is using a tool to cut through a black pipe. Another worker in a brown jacket and blue jeans is bending over and holding the tool. They are both working on a construction site.", - "id": 4382 - }, - { - "image_path": "G:\\images\\combined\\006168_jpg.rf.605e77f484bfb8e2dbe1ea9d5435e7cb.jpg", - "response": "A man in a blue shirt and a red hard hat is holding a blueprint and talking to another man in a yellow hard hat. They are standing in front of a bulldozer.", - "id": 4383 - }, - { - "image_path": "G:\\images\\combined\\006169_jpg.rf.9be9a6f0423a0146df5924c3e690ec9e.jpg", - "response": "A couple of men working on an electrical tower.", - "id": 4384 - }, - { - "image_path": "G:\\images\\combined\\006170_jpg.rf.78a9ed5035d4e0c3aa7c6b747ba52a2f.jpg", - "response": "A group of workers in blue and orange uniforms and hard hats are lined up on the side of a train track. They are working on the track.", - "id": 4385 - }, - { - "image_path": "G:\\images\\combined\\006171_jpg.rf.6d97b6b5f25bb88857bbf7b5a712bc36.jpg", - "response": "A group of people standing around talking.", - "id": 4386 - }, - { - "image_path": "G:\\images\\combined\\006172_jpg.rf.93a7594efe07990cd70b679656fb3cac.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 4387 - }, - { - "image_path": "G:\\images\\combined\\006173_jpg.rf.ea8cdeb4814e0c25a9cd476cab34edbe.jpg", - "response": "The image shows a group of men standing in front of a construction site. They are all wearing suits and appear to be businesspeople. In the background, there is a large building under construction. The building has a lot of pillars and appears to be quite tall. There are also some cranes visible in the background. The sky is overcast and there are a few birds flying in the sky.", - "id": 4388 - }, - { - "image_path": "G:\\images\\combined\\006174_jpg.rf.0bc96aada01b010d71d405c1c9741ed2.jpg", - "response": "The image shows three men standing in front of a factory. The man on the left is wearing a white lab coat, while the man in the middle is wearing a plaid shirt. The man on the right is wearing a black jacket and an orange safety vest. They are all wearing hard hats. The man in the middle and the man on the right are shaking hands.", - "id": 4389 - }, - { - "image_path": "G:\\images\\combined\\006176_jpg.rf.1d7fec4d46e7c5787ad2cb7ffd6c0637.jpg", - "response": "A worker in a blue shirt and hard hat is suspended in the air by a crane. He is working on a large blue sign that says \"\u4e2d\u91ab\u901f\u99a8\" on a building under construction. The building is made of glass and steel and has red and white barriers around it. The worker is standing on a red ladder and is hanging from a hook on the crane.", - "id": 4390 - }, - { - "image_path": "G:\\images\\combined\\006177_jpg.rf.df985f1b0c03ee0b1ff3e82232698c32.jpg", - "response": "In the image there is a man wearing a hard hat and a yellow vest. He is standing in a large warehouse filled with boxes and shelves. The man is smiling and seems to be in a happy mood. He is standing between two tall shelves that are filled with boxes. Some of the boxes are stacked three high and there are many different sized boxes. The man is wearing blue jeans and has a watch on his left wrist. The background is a bit blurry but it seems to be a bright sunny day.", - "id": 4391 - }, - { - "image_path": "G:\\images\\combined\\006178_jpg.rf.ff97754e9e0c0c3f834752da8556df1b.jpg", - "response": "A yellow and black wheel loader is parked next to a concrete archway. Two men in uniforms are standing next to the wheel loader. One of them is holding a large wrench.", - "id": 4392 - }, - { - "image_path": "G:\\images\\combined\\006179_jpg.rf.2c8ff31ba1c03b9ecb6889eddd01bcc3.jpg", - "response": "The image shows a group of rescue workers standing around a hole in the ground. The workers are wearing safety gear including hard hats, and some are wearing orange jumpsuits. They are standing on top of a dirt mound with a large rock visible in the hole. There are also two smaller rocks visible in the hole. The workers are engaged in the process of rescue, with some of them holding long sticks.", - "id": 4393 - }, - { - "image_path": "G:\\images\\combined\\00617_jpg.rf.871b7a38c75efac9e9d70b1c68cdc23e.jpg", - "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cellphone, and one of them is showing it to the other. The background is out of focus, but it appears to be a large warehouse-like room with metal structures and machinery. There are also several hanging metal objects, possibly parts or components.", - "id": 4394 - }, - { - "image_path": "G:\\images\\combined\\00617_jpg.rf.8f2cb550c0450d7302f2942e1c680e56.jpg", - "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cell phone, and one of them is showing it to the other. The background is a large industrial space with metal shelves and machinery.", - "id": 4395 - }, - { - "image_path": "G:\\images\\combined\\006180_jpg.rf.e68a88431395cbfcd2c6f4e9dd62021e.jpg", - "response": "In the image, several construction workers are working on a construction site. A man is working at the bottom of a hole and several other workers are standing around him. Some of them are wearing orange and yellow suits, and one of them is wearing a helmet. On the left side of the image, there are several people in black and white clothes, some of them are standing and some are sitting. In the middle of the image, there is a large shovel, and several ropes are connected to it. On the right side of the image, there are some green plants and a white and black sign.", - "id": 4396 - }, - { - "image_path": "G:\\images\\combined\\006181_jpg.rf.aa964cc056e0d058f3b60fdbe9a346c7.jpg", - "response": "a group of men standing next to a pile of dirt", - "id": 4397 - }, - { - "image_path": "G:\\images\\combined\\006182_jpg.rf.2b0592eb116e78f224f682f72b1c006e.jpg", - "response": "The image shows a residential area with a building on the left and another on the right. In the middle of the scene, there is a large pile of rubble in front of a building. A power pole is leaning against this building, with several wires attached to it. A few workers can be seen in the scene, with one on the ground and two others on the power pole.", - "id": 4398 - }, - { - "image_path": "G:\\images\\combined\\006183_jpg.rf.e078dde5895e2ab076dbe6f62d25e06e.jpg", - "response": "The image shows a group of men standing on a cement area with a bridge in the background. There are five men in the foreground, dressed in business attire. One man is wearing a blue shirt and black pants, another man is wearing a white shirt and khaki pants, and the third man is wearing a white shirt and dark pants. The fourth man is wearing a white shirt and black pants, and the fifth man is wearing a white shirt and dark pants. The man on the far right is wearing a blue shirt, a blue hat, and dark pants.", - "id": 4399 - }, - { - "image_path": "G:\\images\\combined\\006184_jpg.rf.c6c473e93cdcb9c4452eaaf68bf4f797.jpg", - "response": "A man in blue coveralls is on a ladder, working on a house. He is standing on top of a large pile of tree branches.", - "id": 4400 - }, - { - "image_path": "G:\\images\\combined\\00618561e219c7f8.jpg", - "response": "A shiny Christmas ornament hanging from a tree.", - "id": 4401 - }, - { - "image_path": "G:\\images\\combined\\006185_jpg.rf.fb5ef5342c78432ee2668fb56f989c4c.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 4402 - }, - { - "image_path": "G:\\images\\combined\\006186_jpg.rf.ddb75bd4c6f57f27e1a2f319cc6fbbcd.jpg", - "response": "A man in a hard hat and red overalls is using a piece of equipment to work on a ladder. He is wearing safety glasses and has a tool in his hand. There are other tools and equipment around him. The room he is in has a concrete floor and white walls. There is also a ladder leaning against a wall.", - "id": 4403 - }, - { - "image_path": "G:\\images\\combined\\006187_jpg.rf.6933c9ee3c54d360e9cf2ab7836a7b0c.jpg", - "response": "In the image, a worker is being carried away by workers after he was injured at a construction site in Xiamen, Fujian Province, China. The workers are using stretchers to carry the injured worker. The scene is quite chaotic, with several workers in the area, some carrying the injured worker, and others standing around. There are also several construction tools, such as shovels and a large bucket, scattered around the site. The sky above the site is overcast, and there are a few trees nearby.", - "id": 4404 - }, - { - "image_path": "G:\\images\\combined\\006188_jpg.rf.2ed16537013901d5daf807ee0a764121.jpg", - "response": "A group of men standing next to a pile of dirt.", - "id": 4405 - }, - { - "image_path": "G:\\images\\combined\\006189_jpg.rf.3fe68f697b0b91b6c747b2473857205b.jpg", - "response": "A painting of three men working on a railway.", - "id": 4406 - }, - { - "image_path": "G:\\images\\combined\\00618_jpg.rf.a4faff5f7fc19de9ec07411e21300427.jpg", - "response": "In the image there are two workers standing on a construction site wearing hard hats. One worker is wearing a grey top and the other is wearing a yellow top. They are both holding a piece of white material. The background shows the corner of a large building that has multiple floors and columns. There is a black fence in the foreground and the floor they are standing on is dark grey.", - "id": 4407 - }, - { - "image_path": "G:\\images\\combined\\00618_jpg.rf.fcb235b044a40cff72825fa53647c236.jpg", - "response": "In the image there are two workers, one on the left and one on the right, both are wearing yellow helmets. They are standing on a construction site wearing blue and yellow clothes. The ground is covered with black plastic and there are many steel bars sticking out of it. On the left side of the image, there is a white ladder and a black bag. In the background, you can see a building with several walls built but no roof.", - "id": 4408 - }, - { - "image_path": "G:\\images\\combined\\006190_jpg.rf.c62110eff55ceb7e80d5bb5f78a4a9aa.jpg", - "response": "A man wearing a blue shirt and a orange helmet is welding a large boat. The boat is rusty and is being worked on next to a stone wall. The man is standing on a small dock and is holding a welding torch. Another man is standing on the wall above him, and there is a third man standing further back near the wall. The sky is blue and cloudless.", - "id": 4409 - }, - { - "image_path": "G:\\images\\combined\\006191_jpg.rf.32be112f5cecddb0bf35cf08daafd81a.jpg", - "response": "A man in a white shirt and tan hat is sitting on a power line, hanging from a tower. He is wearing a black and yellow jacket and tan pants. Another man in a brown jacket and tan hat is standing on the ground holding the first man's harness.", - "id": 4410 - }, - { - "image_path": "G:\\images\\combined\\006193_jpg.rf.590f7d76b1532989d033bc8c6b3dec88.jpg", - "response": "The image shows a group of workers at a construction site for a railway. They are working on a bridge that is under construction. The bridge is located in a rural area with a forest in the background. The workers are standing on the side of the bridge, which is made of concrete. They are working on the bridge's railings. In the foreground, there is a pile of cinder blocks next to the railway tracks.", - "id": 4411 - }, - { - "image_path": "G:\\images\\combined\\006194_jpg.rf.73573ccaa13753d05fae9c925f9da0e9.jpg", - "response": "A group of men wearing hard hats are walking together. Some of them are wearing suits and ties. One man is wearing a red hard hat. In the background, there is a building with a blue roof.", - "id": 4412 - }, - { - "image_path": "G:\\images\\combined\\006195_jpg.rf.9e5b058ec134b32012ac331d1b240331.jpg", - "response": "A worker wearing a red helmet and blue uniform is welding in a factory. There is a red helmet and a blue uniform lying on the floor next to the worker. A chair is placed in the background. The worker is creating a lot of light and sparks are flying in all directions.", - "id": 4413 - }, - { - "image_path": "G:\\images\\combined\\006196_jpg.rf.d47319892a27017dd48adb80b20c2d62.jpg", - "response": "The image shows two men working on a construction site in the process of drilling a hole in the ground. They are wearing hard hats and the man on the right is wearing a black shirt. There are several pipes and wires on the ground in front of them and a red and white bag to the left of the men. The background shows a patch of dirt and some rocks.", - "id": 4414 - }, - { - "image_path": "G:\\images\\combined\\00619_jpg.rf.7e8131778c4c91078552cf8dd437dc51.jpg", - "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and is looking towards a new housing development.", - "id": 4415 - }, - { - "image_path": "G:\\images\\combined\\00619_jpg.rf.9939998a9ed179c2dd8c24c2947fde81.jpg", - "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and appears to be measuring something with a piece of surveying equipment.", - "id": 4416 - }, - { - "image_path": "G:\\images\\combined\\0061dd442c6d9467.jpg", - "response": "A baseball player for the Blue Jays runs across the field.", - "id": 4417 - }, - { - "image_path": "G:\\images\\combined\\006201_jpg.rf.0ca83c3f1c43b9bd625e28ce79305a1c.jpg", - "response": " Two miners(646,207),(810,971)(502,162),(675,997) standing in a mine shaft", - "id": 4418 - }, - { - "image_path": "G:\\images\\combined\\006202_jpg.rf.bec5da28029fff50d6bb1f0f67f355e9.jpg", - "response": "In the image two men are working on a roof. They are wearing hard hats and work clothes. The roof is brown and made of wood.", - "id": 4419 - }, - { - "image_path": "G:\\images\\combined\\006203_jpg.rf.64ae7b827bc3adda82e34b6e5965ba36.jpg", - "response": "A man wearing a white helmet and a green vest is kneeling down next to solar panels. He is holding a digital tablet and checking the solar panels. The solar panels are blue and are installed on a roof. The sky is a clear blue with no clouds.", - "id": 4420 - }, - { - "image_path": "G:\\images\\combined\\006204_jpg.rf.67b313bc22f7c9cc621a295427bea9ff.jpg", - "response": "A construction site with a yellow crane and a yellow truck.", - "id": 4421 - }, - { - "image_path": "G:\\images\\combined\\006206_jpg.rf.4471e596888d40457bc36e6768f767a2.jpg", - "response": "A group of workers wearing hard hats are working on a construction site.", - "id": 4422 - }, - { - "image_path": "G:\\images\\combined\\006207_jpg.rf.d90d8283f31209c03bb67f69d886257c.jpg", - "response": "A collage of two images, one of two construction workers looking at scaffolding and one of three hard hats on a table.", - "id": 4423 - }, - { - "image_path": "G:\\images\\combined\\006209_jpg.rf.8388fa7b75e3ffb5c0cfa9f796d4cb44.jpg", - "response": "In the image there is a construction site with multiple workers. The workers are wearing yellow helmets and are working on a building that has not yet been finished. They are working on a concrete structure and some of them are connected to wires that are likely for electric power. There is a bottle on the ground and a person in the background is holding a cellphone.", - "id": 4424 - }, - { - "image_path": "G:\\images\\combined\\00620_jpg.rf.ec09ed5a3b22f47784cc95fffd72527c.jpg", - "response": "The image depicts two men wearing yellow and white hard hats, looking at a blueprint in front of a construction site. The blueprint they are examining is rolled up and appears to be focused on a building under construction. The two men are standing together, with one on the left and the other on the right, both appear to be discussing the plans. The left most man has his left hand on the blueprint while the right most man has his right hand on top of the left most man's left hand. The background shows a partially constructed building with scaffolding in place.", - "id": 4425 - }, - { - "image_path": "G:\\images\\combined\\006210_jpg.rf.9f5f4cc2f06cbe0987d9b9705c516bd8.jpg", - "response": "The image shows two workers inside a large pipe. They are wearing hard hats and one of them is holding a smartphone. The pipe is dark and the workers are reflected in its shiny surface. The background is blurred and the pipe appears to be going off into the distance.", - "id": 4426 - }, - { - "image_path": "G:\\images\\combined\\006211_jpg.rf.600434c146a97a0be5aaf4e159d570fe.jpg", - "response": "A group of workers in a large warehouse.", - "id": 4427 - }, - { - "image_path": "G:\\images\\combined\\006212_jpg.rf.efb035c35008ba7a4bb2632a9a9d9369.jpg", - "response": "5 people standing in a construction site(23,135),(909,830)", - "id": 4428 - }, - { - "image_path": "G:\\images\\combined\\006213_jpg.rf.67a542251da19434fc6335d155b72492.jpg", - "response": "A man wearing a yellow hard hat and orange safety vest is driving a forklift.", - "id": 4429 - }, - { - "image_path": "G:\\images\\combined\\006214_jpg.rf.7d665eeb5123bb2c07490a38b8624c30.jpg", - "response": "A group of men standing around each other", - "id": 4430 - }, - { - "image_path": "G:\\images\\combined\\006215_jpg.rf.ee8012af21a52885afda48e04a9c896e.jpg", - "response": "In the image, there are several construction workers wearing orange work uniforms and safety helmets. They are working on a construction site that has wooden scaffolding and wooden roof trusses. The sky is blue with few clouds.", - "id": 4431 - }, - { - "image_path": "G:\\images\\combined\\006216_jpg.rf.6607f0f46734acdac03cecc2f4c0d582.jpg", - "response": "A group of people working on a construction site.", - "id": 4432 - }, - { - "image_path": "G:\\images\\combined\\006217_jpg.rf.1292234fa32a18bc00c32191940f1168.jpg", - "response": "The image shows two workers in blue work uniforms and green safety vests, with one worker wearing a helmet and the other one not. They are working on a large white pipe with black insulation and red wires connected to it, in front of a blue sky and power transmission tower.", - "id": 4433 - }, - { - "image_path": "G:\\images\\combined\\006218_jpg.rf.6aea02bcd54b1e833593b81dfc0a9a52.jpg", - "response": "The image shows Kim Jong-un, the leader of North Korea, in a bedroom. He is wearing a black suit and is crouched over a bed, which has a pink and brown floral patterned sheet. The bed has a wooden frame with a red headboard. To the left of the bed is a wooden chair. To the right of the bed is a wooden dresser with a door. The room is sparsely furnished, with no other chairs or furniture visible in the image. The walls are white, and the floor is grey.", - "id": 4434 - }, - { - "image_path": "G:\\images\\combined\\006219_jpg.rf.f0ccdca47ae546458d23d851ba143841.jpg", - "response": "In the image there are two men standing next to a white truck. Both men are wearing hard hats and blue coveralls. One man is leaning against the passenger side door of the truck while the other is standing behind him. They both appear to be looking at something in the distance.", - "id": 4435 - }, - { - "image_path": "G:\\images\\combined\\006220_jpg.rf.583b3262e20ef766309a5746df7d0bdf.jpg", - "response": "A group of three men working on a road.", - "id": 4436 - }, - { - "image_path": "G:\\images\\combined\\006222_jpg.rf.028acb3136429e25d3704de5aef681e2.jpg", - "response": "A man in a red hard hat is showing a group of people a wall.", - "id": 4437 - }, - { - "image_path": "G:\\images\\combined\\006223_jpg.rf.b22191e1bcbff6fce6d15166f9f9f024.jpg", - "response": "In the image there is a person wearing a blue uniform and a red helmet. They are standing in front of a wall with many dials and meters. The wall has a control panel with many different meters and dials of varying sizes. Some of the meters are round and have a white face and black numbers. Others are circular and have a white face with black markings. The person is reaching out to turn one of the dials on the wall.", - "id": 4438 - }, - { - "image_path": "G:\\images\\combined\\006224_jpg.rf.5de18dc94ced526d59a94237520642bc.jpg", - "response": "A group of men in suits and hard hats are standing in a construction site. Some of the men are wearing ties. One man is carrying a black bag. The sky is blue and clear. There are two signs on the left and right side of the image. One of the signs is for China National Offshore Oil Corporation.", - "id": 4439 - }, - { - "image_path": "G:\\images\\combined\\006225_jpg.rf.05ae09004f845b2dd050a53d3abfa0c1.jpg", - "response": "A man in a yellow hard hat and work clothes is kneeling in rubble. He is wearing work gloves and using a tool to cut through rebar. In the background, a yellow Caterpillar tractor is digging through the rubble. There are buildings in the distance, and a few trees in the foreground.", - "id": 4440 - }, - { - "image_path": "G:\\images\\combined\\006226_jpg.rf.41748d8beae264caa19f604b2f458fbd.jpg", - "response": "A man wearing a yellow hard hat is working on a construction site. He is standing on a ladder and is in the process of sawing a long piece of wood. He is wearing a red shirt and blue shorts. There is a green building under construction in the background.", - "id": 4441 - }, - { - "image_path": "G:\\images\\combined\\006227_jpg.rf.0fca3e73ad9566d163ac875b8b2386fe.jpg", - "response": "A man wearing a grey shirt, blue hat and orange gloves is working with a torch and some metal. He is sitting on a stool and the torch is on the ground in front of him. There are many metal objects stacked up behind him and sparks are flying from the torch.", - "id": 4442 - }, - { - "image_path": "G:\\images\\combined\\006228_jpg.rf.069e6869b863cabc63fe31df2af20ab6.jpg", - "response": "The image shows a group of people standing in a large hole in the ground. Some of them are wearing hard hats. In the background, a wall is visible. In front of the group of people, a large piece of wood is lying on the ground. To the left of the group, a large piece of metal is also lying on the ground.", - "id": 4443 - }, - { - "image_path": "G:\\images\\combined\\006229_jpg.rf.2058c36964ebc73b31d5ac04f8489ca5.jpg", - "response": "The image shows two workers in orange hard hats and blue uniforms, climbing on a metal structure. They are both holding onto the structure and appear to be in the process of installing or fixing something. The metal structure is silver and appears to be a part of a power line or transmission tower. In the background, there is a lush green hillside and a small town or city.", - "id": 4444 - }, - { - "image_path": "G:\\images\\combined\\00622_jpg.rf.5374c1326bf09e4ef3ba12fae4bb09e5.jpg", - "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", - "id": 4445 - }, - { - "image_path": "G:\\images\\combined\\00622_jpg.rf.658bd11258e1e48893e2c119bf214a40.jpg", - "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", - "id": 4446 - }, - { - "image_path": "G:\\images\\combined\\006230_jpg.rf.64e8006fea60d180110c8339e9df6b0b.jpg", - "response": " Three people(172,89),(447,996)(547,0),(803,999)(409,116),(613,999) in hard hats(289,93),(432,209)(432,115),(537,193) stand on a ship", - "id": 4447 - }, - { - "image_path": "G:\\images\\combined\\006231_jpg.rf.0f31e5604e5711347d30302caa0aadd5.jpg", - "response": "A group of people working on a large pipe in the ground.", - "id": 4448 - }, - { - "image_path": "G:\\images\\combined\\006232_jpg.rf.359307445c71bcce7d33b2ae15f549b3.jpg", - "response": "A man wearing a yellow hard hat and a yellow safety vest stands in front of a forklift. The man has his arms crossed in front of him.", - "id": 4449 - }, - { - "image_path": "G:\\images\\combined\\006234_jpg.rf.ae7da6e4f2c54d8c097e42f9bb520f90.jpg", - "response": "An engineer holding a blueprint in front of a construction site.", - "id": 4450 - }, - { - "image_path": "G:\\images\\combined\\006235_jpg.rf.a776030b6b96219423884fd87e95c299.jpg", - "response": "A man having his helmet adjusted by another man in front of a construction site sign.", - "id": 4451 - }, - { - "image_path": "G:\\images\\combined\\006236_jpg.rf.577ab39e72d744a2a074610beafc6b38.jpg", - "response": "The image shows two workers clearing snow from a path next to a snowy hillside. They are wearing hard hats and work clothes. One worker is on the left, holding a rope while the other is on the right, walking away. In the background, there are several trees covered in hoarfrost. To the right, there is a small building with a door and two windows. In the distance, there are two power poles.", - "id": 4452 - }, - { - "image_path": "G:\\images\\combined\\006237_jpg.rf.dc9e5ad103399bb55e4527a83af07653.jpg", - "response": "A construction worker in a white helmet stands in front of a section of blacktopped road. To the left of the worker is a yellow construction vehicle with a black wheel. To the right of the worker is a stand of trees.", - "id": 4453 - }, - { - "image_path": "G:\\images\\combined\\006238_jpg.rf.42e009ce4bde3e2cbadbd5a5087758af.jpg", - "response": "A worker in a red hard hat smiles as he works on a construction site. He is wearing a grey shirt and has a tool in his left hand. He is working on some metal bars that are in front of him and some are in the background. The sky is grey and overcast.", - "id": 4454 - }, - { - "image_path": "G:\\images\\combined\\006239_jpg.rf.161223804ef023d687f2546764895908.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is smiling at the camera. He is standing in front of a large stack of wooden planks.", - "id": 4455 - }, - { - "image_path": "G:\\images\\combined\\00623_jpg.rf.3199245b9f3c7c1bed2aa05cb6fb2983.jpg", - "response": "A man in a white shirt and red helmet is pointing to a blue and white sign on a pole. He is wearing a watch on his left wrist. To the left of him are four other men, all wearing hard hats. One man is wearing a white shirt and grey shorts, another man is wearing a white shirt and grey pants, the third man is wearing a white shirt and black pants, and the fourth man is wearing a white shirt and blue pants.", - "id": 4456 - }, - { - "image_path": "G:\\images\\combined\\00623_jpg.rf.6cb005e2d39c6f28ea1d98cb76893ccc.jpg", - "response": "A man in a white shirt and red helmet is pointing to a piece of metal. He is wearing a white shirt and standing in front of a group of men in the same outfit. They are all standing under a large white structure and the man in the foreground is holding a white object. They are all wearing name tags.", - "id": 4457 - }, - { - "image_path": "G:\\images\\combined\\006241_jpg.rf.8621c69b7f43816326054e36809d507f.jpg", - "response": "In the image there is a worker wearing a black hat and orange jacket who is on a silver pole. The worker is also wearing a harness. Underneath the worker, there is a black wire leading to a black helmet. Next to the worker, there is a red crane lifting a metal beam. The sky is blue with some clouds. On the right side of the image, there are two grey metal bars connected by a black wire leading to the worker.", - "id": 4458 - }, - { - "image_path": "G:\\images\\combined\\006242_jpg.rf.0bd7a66dd368e909bbe606f86182237e.jpg", - "response": "The image shows a construction site with several workers. There is a large drilling machine in the foreground, and a man with a yellow hard hat is operating it. Another man with a yellow hard hat is standing nearby. There is a pile of wooden boards to the left of the drilling machine. In the background, there is a white building with a red door and a window. There is a black fence in front of the building. To the right of the building, there is a pile of grey rocks. The workers are wearing red and yellow hard hats, and they are wearing red and white shirts. The ground is dirt and there are two shovels lying on the ground.", - "id": 4459 - }, - { - "image_path": "G:\\images\\combined\\006245_jpg.rf.b2dce8eb83509ad0efd6b2d492009835.jpg", - "response": "A smiling worker standing with his arms crossed in a warehouse.", - "id": 4460 - }, - { - "image_path": "G:\\images\\combined\\006246_jpg.rf.d7d1e358db235035484e79cae7a411c1.jpg", - "response": "In the image there are three men working on a gas tank. Two of the men are wearing yellow hats and the other one is wearing a red hat. They are all wearing blue work clothes. One of the men is holding a blue rope while the other one is holding a red one. They are all working on a gas tank that is situated in the middle of a sidewalk. The tank is made of metal and is in the shape of a large cylinder.", - "id": 4461 - }, - { - "image_path": "G:\\images\\combined\\006247_jpg.rf.20f08053aa8205a59db3b73de790560e.jpg", - "response": "A construction site with two men standing in front of a yellow truck with a crane.", - "id": 4462 - }, - { - "image_path": "G:\\images\\combined\\006248_jpg.rf.32c586bbffeb38733c6ab199672e6686.jpg", - "response": "a group of men standing around outside", - "id": 4463 - }, - { - "image_path": "G:\\images\\combined\\006249_jpg.rf.574f725b08492d8b8e600eb0e1cad512.jpg", - "response": "A man wearing a hard hat and holding a large piece of wood in front of a house under construction.", - "id": 4464 - }, - { - "image_path": "G:\\images\\combined\\00624_jpg.rf.52539d9c7a413f8c6bc5102a158e8426.jpg", - "response": "The image features a group of men standing next to each other. They are all wearing hard hats, with some of them wearing bright yellow and orange vests as well. The men are standing in front of a body of water, which can be seen in the background. There are also two cars visible in the image, one on the right side and another further back. The men are posing for the camera, with one of them sitting in a chair that is placed among them.", - "id": 4465 - }, - { - "image_path": "G:\\images\\combined\\00624_jpg.rf.cf0e19d89d00feb603c0d73d87b1bdde.jpg", - "response": "A group of men standing next to each other.", - "id": 4466 - }, - { - "image_path": "G:\\images\\combined\\006250_jpg.rf.de0e6f6cefde3034f8628f82241f8115.jpg", - "response": "a group of men standing around each other", - "id": 4467 - }, - { - "image_path": "G:\\images\\combined\\006251_jpg.rf.8b7cd01736748af27c5830e9506cd91d.jpg", - "response": "A construction worker wearing a yellow vest and red helmet is working on a large construction site.", - "id": 4468 - }, - { - "image_path": "G:\\images\\combined\\006254_jpg.rf.9ba04ce1679bb6ce730c7a877c1c3182.jpg", - "response": "In the image two workers are seen\u4fee\u7406ing an electricity pole. They are wearing blue and black uniforms. The sky is white and it seems to be a winter day. There are many wires coming from the electricity pole and the workers are handling them.", - "id": 4469 - }, - { - "image_path": "G:\\images\\combined\\006255_jpg.rf.bbc90149f077d7bed9b301221af6e3ab.jpg", - "response": "A group of men in white shirts and red hard hats are standing on a dirt patch.", - "id": 4470 - }, - { - "image_path": "G:\\images\\combined\\006258_jpg.rf.90ee3ffa54789acdbac745c94454f55e.jpg", - "response": "The image shows a group of people gathered around a man holding a red hard hat. The man is on the left side of the image, while the group is standing around him. They are all wearing white shirts and red hard hats. In the background, there is a truck on the left side and a building on the right side. Some people are also carrying umbrellas.", - "id": 4471 - }, - { - "image_path": "G:\\images\\combined\\006259_jpg.rf.795d43e8cfb346ecfafa924e237a102e.jpg", - "response": "The image shows two workers in blue shirts and blue helmets who are repairing a pipe. They are crouched down in a large hole, and one of them is using a tool to work on the pipe. The pipe is painted red and black, and there is a large piece of red and black material wrapped around it. The workers seem to be focused on their task, and the scene gives a sense of the hard work and skill involved in this type of repair work.", - "id": 4472 - }, - { - "image_path": "G:\\images\\combined\\006260_jpg.rf.cf465933944ef2c39226d51101f23b94.jpg", - "response": "The photo shows a group of men standing in an unfinished building. They are all wearing red hard hats. The man in the foreground on the left is wearing a dark grey suit and has a beard. He is talking to the man to his left, who is also wearing a red hard hat. They are both talking and pointing towards the right. To their right, there are two men wearing black suits and red hard hats. They are both looking towards the camera. In the background, there are two men wearing yellow hard hats and black suits. One man is wearing a red tie and the other man is wearing a yellow hard hat. In the far background, there are two men wearing red hard hats and grey suits. They are both looking towards the right. There is a sign on the wall that says \"Caution, men at work\".", - "id": 4473 - }, - { - "image_path": "G:\\images\\combined\\006261_jpg.rf.718e27cefaae738f7299ce66b47f1381.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 4474 - }, - { - "image_path": "G:\\images\\combined\\006262_jpg.rf.f0ad50f3ef93e3bade1bea90630d48e9.jpg", - "response": "A man in a yellow shirt and white hat is on a yellow lift. He is working on a power line.", - "id": 4475 - }, - { - "image_path": "G:\\images\\combined\\006263_jpg.rf.464c05063a3b91feeb310304981ef136.jpg", - "response": "A group of men in hard hats stand on a construction site.", - "id": 4476 - }, - { - "image_path": "G:\\images\\combined\\006264_jpg.rf.8a8b8951abe5787b50737a38c82b493d.jpg", - "response": "The image shows two men wearing hard hats and looking at a blueprint. The man on the left is holding the blueprint and smiling, while the man on the right is wearing a gray shirt and a white helmet. Both men are wearing yellow shirts, jeans, and orange and yellow hard hats. They appear to be construction workers.", - "id": 4477 - }, - { - "image_path": "G:\\images\\combined\\006265_jpg.rf.9a0f855a5e2dd6de907f067c556a1cc5.jpg", - "response": "In the image two people are seen wearing orange snowsuits and green life jackets. They are standing in the snow with one person pointing at a power line. The sky is covered with clouds and it appears to be snowing. The trees around them are covered in snow.", - "id": 4478 - }, - { - "image_path": "G:\\images\\combined\\006266_jpg.rf.c7b4a47bf235b7c18d8ed38f6aa99b2f.jpg", - "response": "A group of three workers in hard hats and coveralls are working on a yellow piece of machinery. They are standing on a step and appear to be working on a red barrel.", - "id": 4479 - }, - { - "image_path": "G:\\images\\combined\\006267_jpg.rf.d60ac3c0b0a2eb883a39d84d516c3114.jpg", - "response": "A group of men in blue work uniforms and yellow hard hats are on a platform working on power lines.", - "id": 4480 - }, - { - "image_path": "G:\\images\\combined\\006268_jpg.rf.17ac65e357072094b8b0c111b3633578.jpg", - "response": "A group of people are sitting around a large table. The wall behind the table has a banner that says \"\u83f2\u79d1\u5b66\u7ba1\u7406\u6253\u9020\u7cbe\u54c1\u5de5\u7a0b\" in red and yellow characters. Several people are wearing ties. There are several cups on the table, some are filled with a light yellow liquid. There are several books and papers on the table. A laptop is opened on the table. In the background, there is a whiteboard with some writing on it.", - "id": 4481 - }, - { - "image_path": "G:\\images\\combined\\006269_jpg.rf.0e60eb1a8844870d02b070971576fb61.jpg", - "response": "A construction worker wearing a yellow vest and red helmet working on a large construction site.", - "id": 4482 - }, - { - "image_path": "G:\\images\\combined\\00626_jpg.rf.00eb1f6552b6a9760fc7b5eb71be66ce.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a clipboard. The plans are for a building that is currently under construction.", - "id": 4483 - }, - { - "image_path": "G:\\images\\combined\\00626_jpg.rf.4ccbf0b2addd491e7265a588c343266f.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a set of plans in a red binder. The man in the middle is wearing a white hard hat. The man on the right is wearing a yellow hard hat. The wall to the right is green and the wall to the left is being renovated with boxes stacked against it.", - "id": 4484 - }, - { - "image_path": "G:\\images\\combined\\006270_jpg.rf.57a458a15ede0808a88007c9174d748d.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 4485 - }, - { - "image_path": "G:\\images\\combined\\006271_jpg.rf.c4f04430203925bb1fac0b625774b663.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 4486 - }, - { - "image_path": "G:\\images\\combined\\006272_jpg.rf.c8a5de0111c6bfe6e4b7c0bc17c57c70.jpg", - "response": "The image shows workers in a cement tunnel. They are wearing yellow and orange vests and white helmets. Some are standing on ladders or on the debris on the floor, and others are handling hoses. The workers are repairing the tunnel walls.", - "id": 4487 - }, - { - "image_path": "G:\\images\\combined\\006273_jpg.rf.cfea500cc2455107450cde8c0d7e3bd0.jpg", - "response": "A group of men standing around talking.", - "id": 4488 - }, - { - "image_path": "G:\\images\\combined\\006274_jpg.rf.1f3f699b3f0a3dee0e1edb76ede8fe20.jpg", - "response": "A worker in a hard hat and orange vest is standing on a bridge in front of a large metal pipe. They are looking at a tablet and holding a clipboard. There are two other people in the background, one near the left side and one near the right side of the image. There is a forest of trees in the distance.", - "id": 4489 - }, - { - "image_path": "G:\\images\\combined\\006275_jpg.rf.c0f8245e2547b1477b5e22bffb7f344e.jpg", - "response": "A construction site with a yellow scaffolding and two workers. One worker is on the right side of the image, wearing a red hat and shirt, and grey pants. He is operating a machine. Another worker is on the left side of the image, wearing a white helmet and grey pants. There are several yellow scaffolding in the image, some yellow pipes and some steel bars. Some of the steel bars are placed on the ground, and some are on the scaffolding. There is a yellow machine operated by the worker on the right side of the image. In the background, there is a tall building with a white wall on the left side of the image and a building under construction with green walls on the right side of the image.", - "id": 4490 - }, - { - "image_path": "G:\\images\\combined\\006276_jpg.rf.524a63fac533aedaaa986e4d1513e762.jpg", - "response": "A couple of men in hard hats are working on power lines. They are standing on ladders and have tools in their hands.", - "id": 4491 - }, - { - "image_path": "G:\\images\\combined\\006277_jpg.rf.e1e3df8381e1bc310bd8f7dc984aa45c.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left wearing a grey uniform and a red hat and glasses. He is operating a yellow machine with a circular cutting wheel on a silver pole, which is cutting into a grey road. The worker is kicking up dust. To the right of the worker is a black wire running across the image. Further down the image, there is a green fence. In the background, there is a brown mountain. On the right side of the image, there are a few people standing behind a yellow fence. A person in a red vest is standing towards the right. In the background, there is a forest of green trees.", - "id": 4492 - }, - { - "image_path": "G:\\images\\combined\\006278_jpg.rf.12170c70f60f81e1eb754c1a6a3ffe59.jpg", - "response": "a worker in a grey suit and yellow hat", - "id": 4493 - }, - { - "image_path": "G:\\images\\combined\\006279_jpg.rf.862d01fb5c0b9eaaab253b9201123a70.jpg", - "response": "People(412,266),(996,787) standing in front of a building", - "id": 4494 - }, - { - "image_path": "G:\\images\\combined\\00627_jpg.rf.8e592a6a61856d100b070843e97271ac.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", - "id": 4495 - }, - { - "image_path": "G:\\images\\combined\\00627_jpg.rf.c5febab588e9a200024c72b1d43eefa1.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", - "id": 4496 - }, - { - "image_path": "G:\\images\\combined\\006284_jpg.rf.da15721860a53aa3c0a5e0024a5270ac.jpg", - "response": " Rescue workers(473,329),(623,996)(268,356),(422,926)(593,301),(749,823)(436,291),(531,745)(82,281),(255,717) carry a wooden beam(374,513),(999,979) to be used as a support for the roof of the damaged tunnel.", - "id": 4497 - }, - { - "image_path": "G:\\images\\combined\\006285_jpg.rf.49fd7602be792f2e057f82e5468daf32.jpg", - "response": "A worker points to a crack in the wall of the 1300-year-old brick kiln in the city of Xi'an, capital of Shaanxi province. The crack is about 10 centimeters long and 1 centimeter wide.", - "id": 4498 - }, - { - "image_path": "G:\\images\\combined\\006286_jpg.rf.8da14e805a0ace0c1dd949717ce30a29.jpg", - "response": "A group of men standing on a construction site.", - "id": 4499 - }, - { - "image_path": "G:\\images\\combined\\006287_jpg.rf.f09342a0b9ac348d5f20831c7459b670.jpg", - "response": "A group of people standing in front of a wall with Chinese writing on it. Some of the people are wearing yellow jackets. One person is on a motorcycle.", - "id": 4500 - }, - { - "image_path": "G:\\images\\combined\\006288_jpg.rf.d09f1dcd3e0f88bcde954c9817dcd941.jpg", - "response": "A group of workers are working on a construction site. They are working on a building that has scaffolding around it. The building is in the process of being constructed.", - "id": 4501 - }, - { - "image_path": "G:\\images\\combined\\006289_jpg.rf.203585dec2254567dabfb34728e497f9.jpg", - "response": "A man with a microphone is speaking to a crowd of men.", - "id": 4502 - }, - { - "image_path": "G:\\images\\combined\\00629079b8556680.jpg", - "response": "A beige Mercury truck parked in front of a wooden fence.", - "id": 4503 - }, - { - "image_path": "G:\\images\\combined\\006290_jpg.rf.d248e74b7a040b036109d592872d3cb0.jpg", - "response": "In the image there is a worker in a blue uniform and a blue hat who is crouching down and working on a metal rail that is in a tunnel. The tunnel has a white and green light at the end of it. The worker is also holding a crow bar and a hammer.", - "id": 4504 - }, - { - "image_path": "G:\\images\\combined\\006291_jpg.rf.7bbeff9b57b148d9cb7c2b1096e07239.jpg", - "response": "A construction site with a man in a blue jumpsuit and a hard hat on a cell phone.", - "id": 4505 - }, - { - "image_path": "G:\\images\\combined\\006292_jpg.rf.f9100543c6fc93b30ea1c82e960fe862.jpg", - "response": "A couple of men in blue hard hats are standing in a stream.", - "id": 4506 - }, - { - "image_path": "G:\\images\\combined\\006293_jpg.rf.3c1b6e500021be4f184747bab2e2e32a.jpg", - "response": "The image shows a group of five men standing in front of a building under construction. They are all wearing hard hats, with one man holding a clipboard. To the left of the group, there is a car parked next to a building. In the background, there is a large pile of dirt and a pipe. The sky is overcast, and the image is taken in what appears to be a construction site.", - "id": 4507 - }, - { - "image_path": "G:\\images\\combined\\006294_jpg.rf.a9424f363ced7ffd2d3902c261c6872b.jpg", - "response": "People(245,319),(457,920)(490,328),(648,859)(3,322),(339,995)(755,254),(987,995)(387,353),(475,747) standing in a room", - "id": 4508 - }, - { - "image_path": "G:\\images\\combined\\006296_jpg.rf.d2fa5e1b0c47305dbeb73cab0ee05f60.jpg", - "response": "A group of people walking around a construction site.", - "id": 4509 - }, - { - "image_path": "G:\\images\\combined\\006297_jpg.rf.c0136a07ec51c427109dd1e1c3d72400.jpg", - "response": "An oil field with two pumpjacks in the background. In the foreground, two people are shaking hands. The person on the left is a woman with red hair and a red helmet. She is wearing a white shirt, red and yellow reflective vest, and a pink bandana tied around her neck. The person on the right is a man with a beard and orange helmet. He is wearing a blue shirt, orange and yellow reflective vest, and a black tool belt.", - "id": 4510 - }, - { - "image_path": "G:\\images\\combined\\006298_jpg.rf.21d06283df68a72fe6ca05dca5dee0b8.jpg", - "response": "A construction worker is working on some yellow beams.", - "id": 4511 - }, - { - "image_path": "G:\\images\\combined\\006299_jpg.rf.7e6023daadf1dc53b924e2820ccd99b1.jpg", - "response": "The image shows two workers wearing yellow hard hats, one on the left and one on the right, working on a piece of equipment. The equipment is a large, metal, white and red piece of machinery with many bolts and nuts. The workers are focused on their task, which involves using a wrench to adjust a part of the machinery. The sky is grey and overcast in the background.", - "id": 4512 - }, - { - "image_path": "G:\\images\\combined\\00629_jpg.rf.6b4670a1cd16ea4d6524dd8b6b805554.jpg", - "response": "A group of people standing around a wheelbarrow filled with bricks.", - "id": 4513 - }, - { - "image_path": "G:\\images\\combined\\00629_jpg.rf.e17736754eeafbd17fa2731839e8c643.jpg", - "response": "A group of people standing around a wheelbarrow filled with bricks.", - "id": 4514 - }, - { - "image_path": "G:\\images\\combined\\0062d9a5fb4913ce.jpg", - "response": "A street sign that says \"Jerusalem Plank Rd\" and another street sign that says \"Main Point Rd\" with a stop sign in the foreground.", - "id": 4515 - }, - { - "image_path": "G:\\images\\combined\\006300_jpg.rf.8b1340e60b8b7a92e3c6dbc86e1de382.jpg", - "response": "A man in a white shirt is pointing to a map.", - "id": 4516 - }, - { - "image_path": "G:\\images\\combined\\006301_jpg.rf.58ce9d4c28f27172df2a97e1394d3573.jpg", - "response": "A man in a yellow and blue shirt, a yellow and black hat, and safety goggles is drinking water from a clear plastic water bottle.", - "id": 4517 - }, - { - "image_path": "G:\\images\\combined\\006302_jpg.rf.8ea6c2e60a9920dba5bc4a6c9fcec433.jpg", - "response": "A group of men wearing hard hats are standing in a construction site. They are all wearing different outfits and the men on the left are wearing yellow and orange hard hats. The men in the center and on the right are wearing red hard hats. The men in the center are also wearing grey jackets. The man in the middle is wearing a grey jacket and a white helmet. The man on the right who is wearing a camo jacket and a red hard hat is also holding a clipboard.", - "id": 4518 - }, - { - "image_path": "G:\\images\\combined\\006303_jpg.rf.e2df00c2e4000da0b53c78bfc274aea7.jpg", - "response": "A group of people in blue and orange clothes with yellow and red helmets are standing in front of a large crane. Some of them are holding shovels and brooms.", - "id": 4519 - }, - { - "image_path": "G:\\images\\combined\\006304_jpg.rf.3f250b9d560a4d501f5a3acb430dc712.jpg", - "response": "A construction worker is working on a large hole in the ground. He is wearing a yellow hard hat and orange safety vest. He is sitting on the ground and welding a large pipe. He is surrounded by sparks flying in all directions. In the background, there is a yellow and orange construction fence. Behind it, there is a concrete road. On the right side of the fence, there is a yellow pillar. In the distance, there are also two green trees and a white bus.", - "id": 4520 - }, - { - "image_path": "G:\\images\\combined\\006305_jpg.rf.2f4f8343e54bb4539581eff162e3cda9.jpg", - "response": "a group of men standing around each other", - "id": 4521 - }, - { - "image_path": "G:\\images\\combined\\006306_jpg.rf.317fdecd5e0358824d45f3b921d77203.jpg", - "response": "a group of men standing around a blueprint", - "id": 4522 - }, - { - "image_path": "G:\\images\\combined\\006307_jpg.rf.b7918784435606b69b564e1756d0ef5c.jpg", - "response": "The image shows a nighttime scene with rescue workers in orange jumpsuits standing around a man lying on the ground. The man is wearing a black shirt and grey pants. There is a suitcase next to him. A green laser light is being shone at the man from above.", - "id": 4523 - }, - { - "image_path": "G:\\images\\combined\\006308_jpg.rf.011565c408f2d4c353d37c7e93f8ae79.jpg", - "response": "A lineworker on a power pole with his right arm raised in the air.", - "id": 4524 - }, - { - "image_path": "G:\\images\\combined\\006309_jpg.rf.c8bfe20da1080c699a72d50a6b761a4c.jpg", - "response": "A construction worker is being rescued after a fall at a construction site. Firefighters and other workers are working together to save the man.", - "id": 4525 - }, - { - "image_path": "G:\\images\\combined\\00630_jpg.rf.7b102cc17f3ecfa9de80a1bab5ca9efc.jpg", - "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue work uniforms. One of the people is holding a grey and black electrical wrench. They are standing in front of a large building with a sign that says \u201cState Grid\u201d.", - "id": 4526 - }, - { - "image_path": "G:\\images\\combined\\00630_jpg.rf.99b5b9d642720a26efc872728b8237de.jpg", - "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue shirts. One of the people is holding a white tool in their hand. They are both wearing blue hats. In the background, there is a large building that says \u201c\u56fd\u5bb6\u7535\u7f51\u201d on it.", - "id": 4527 - }, - { - "image_path": "G:\\images\\combined\\006311_jpg.rf.2e6e69790350e916a071c2a48a3e9bc4.jpg", - "response": "The image shows a group of six men standing on a construction site. They are all wearing hard hats, and some are holding a discussion. In the background, there are two completed buildings and a building under construction. The ground is bare and the sky is grey.", - "id": 4528 - }, - { - "image_path": "G:\\images\\combined\\006312_jpg.rf.59b17dae4e64aa733cfddda7878786c1.jpg", - "response": "A group of men in blue shirts are gathered in a room with a large pipe in the foreground. The men are wearing safety helmets and the floor is red.", - "id": 4529 - }, - { - "image_path": "G:\\images\\combined\\006313_jpg.rf.d48704ad924d3261475028ce9c774e66.jpg", - "response": "A group of people standing around each other.", - "id": 4530 - }, - { - "image_path": "G:\\images\\combined\\006314_jpg.rf.88a06533d1824ddacf7c32bbd2bd4f7c.jpg", - "response": "Three construction workers(2,294),(232,988)(216,324),(535,889)(458,225),(646,633) are shown using a fire hose(598,368),(726,560) to extinguish a fire.", - "id": 4531 - }, - { - "image_path": "G:\\images\\combined\\006315_jpg.rf.c554924038631afe19226e33c49f17b1.jpg", - "response": "A construction site with workers in white and yellow helmets.", - "id": 4532 - }, - { - "image_path": "G:\\images\\combined\\006316_jpg.rf.3283db83cf8ea8dbe69755a8c055e6cd.jpg", - "response": "The image shows two workers in a room that is under construction. They are wearing blue overalls and yellow helmets. One of them is holding a tool with a black cable, which is connected to a yellow helmet. The room has a stone wall and the floor is covered with debris.", - "id": 4533 - }, - { - "image_path": "G:\\images\\combined\\006318_jpg.rf.fa28d976d834b5b9bf30f2657fd19b3d.jpg", - "response": "In the image there are three workers wearing blue jumpsuits and yellow hard hats. They are working on a large grey metal pipe. There are several other grey metal pipes around them. In the background, there is a grey building and some trees.", - "id": 4534 - }, - { - "image_path": "G:\\images\\combined\\006319_jpg.rf.34862cf2c4c1affe1465f3288ce45d0c.jpg", - "response": "A group of men working on an electrical tower.", - "id": 4535 - }, - { - "image_path": "G:\\images\\combined\\006320_jpg.rf.d73839739fcc3e34dad52f406cb021c2.jpg", - "response": "A construction worker wearing a yellow hard hat is looking down at a piece of wood. The worker is wearing a yellow hard hat, a blue shirt, and a black bracelet. The worker is also wearing glasses. There are several wooden bars stacked next to the worker.", - "id": 4536 - }, - { - "image_path": "G:\\images\\combined\\006321_jpg.rf.0413e97cda9c4a8f7f3033f54c87b689.jpg", - "response": "A group of four men wearing yellow and white vests and blue hats are standing in front of a large white machine. The men are wearing yellow and white vests and blue hats. The machine has a screen on it and the words \"\u898f\u7bc4\u7528\u96fb\" (Standardize\u7528\u7535) are written on it. The men are touching some sort of device on the front of the machine.", - "id": 4537 - }, - { - "image_path": "G:\\images\\combined\\006323_jpg.rf.590b1409ad4bafab1ad5fdda352ae597.jpg", - "response": "A construction site with workers.", - "id": 4538 - }, - { - "image_path": "G:\\images\\combined\\006324_jpg.rf.77d19a51e8225c59992372e4432aea91.jpg", - "response": "A group of men standing around a large spool of wire.", - "id": 4539 - }, - { - "image_path": "G:\\images\\combined\\006326_jpg.rf.e620890d148586a5510c8c38ecfb1dbe.jpg", - "response": "A group of men standing in front of a white board.", - "id": 4540 - }, - { - "image_path": "G:\\images\\combined\\006327_jpg.rf.64557db467c649632c1fad233800a9d3.jpg", - "response": "In the image, a group of workers wearing white, blue or yellow helmets are working on a rocky hillside next to a bridge. Some of them are using shovels and there is a pile of wood in the foreground. The sky is overcast and there are some green trees in the background.", - "id": 4541 - }, - { - "image_path": "G:\\images\\combined\\006328_jpg.rf.07bcc1ea22078fc040cc59d30dff5755.jpg", - "response": "A man in a hard hat is on a ladder against a blue sky.", - "id": 4542 - }, - { - "image_path": "G:\\images\\combined\\006329_jpg.rf.3bfe34e9de2330426f2cc545e410c8ce.jpg", - "response": "A man wearing a yellow hard hat is standing next to a ladder.", - "id": 4543 - }, - { - "image_path": "G:\\images\\combined\\00632_jpg.rf.759be877c48022ef66d2ebeabd1c879d.jpg", - "response": "In the image there are four people, three of them are wearing construction hats and one is wearing a white hat. They are standing in front of a building that is under construction. The person on the right in the front is holding a yellow safety helmet and a phone in his hands. There's a red utility trailer with some tools on it on the left side of the image.", - "id": 4544 - }, - { - "image_path": "G:\\images\\combined\\006330_jpg.rf.4bcc6c2ff6a99f6cddc5ce2cab9189e5.jpg", - "response": "a person wearing a helmet and scarf standing in front of a building", - "id": 4545 - }, - { - "image_path": "G:\\images\\combined\\006331_jpg.rf.6fb403e79771378586ab4731e04ad9af.jpg", - "response": "The image shows four workers perched on a red bridge. They are wearing yellow helmets and work clothes. The bridge appears to be a red suspension bridge, with cables and metal frameworks visible. The workers are positioned at various points along the bridge, with two of them working on the left side and two more on the right. They seem to be engaged in maintenance or construction work. The sky is blue and cloudless in the background.", - "id": 4546 - }, - { - "image_path": "G:\\images\\combined\\006332_jpg.rf.9b08757a362df735a8a6e43d7c7877dd.jpg", - "response": "In the image there are three people working on a construction site. Two of the people are wearing yellow vests and two of them are wearing blue vests. They are working on a blue structure that has Chinese characters on it. The characters say \"udosu\" on the left and \"zhanshi hua\" on the right. The people are wearing yellow, blue, and white hard hats. One person is using a blue tool on the ground and another person is using a blue tool that is suspended in the air.", - "id": 4547 - }, - { - "image_path": "G:\\images\\combined\\006333_jpg.rf.03c3f457afdbbca686486d217804c738.jpg", - "response": "The image shows three men in blue shirts and yellow hats standing in front of a white building. They are wearing yellow helmets and red labor insurance helmets. The man on the left is holding a pen and paper, the man in the middle is wearing a watch, and the man on the right is standing next to a sign with a hand icon and the words \"\u7981\u6b62\u89e6\u6478\". There is also a red box next to the sign with the words \"\u5b89\u5168\u8b66\u544a\".", - "id": 4548 - }, - { - "image_path": "G:\\images\\combined\\006334_jpg.rf.0ae36caeeac3282248b318a8616d3b76.jpg", - "response": "The image shows two men wearing blue work clothes and yellow high visibility vests. The man on the left is wearing a red hard hat and is holding a piece of paper. The man on the right is wearing a helmet and has a QR code on the right side of his helmet. They are both standing in front of a construction site.", - "id": 4549 - }, - { - "image_path": "G:\\images\\combined\\006335_jpg.rf.5027b5de827f8c0198ea9187c0a76f26.jpg", - "response": "A worker in an orange uniform and yellow hard hat is working on a large spool of black wire outdoors. He is wearing a white glove on his left hand and is holding a knife in his right hand. He is standing next to a large wooden spool of wire. There are power lines in the background.", - "id": 4550 - }, - { - "image_path": "G:\\images\\combined\\006336_jpg.rf.8427f17630ffc3341e8d7add855bac89.jpg", - "response": "A group of men in hard hats and work clothes are working on an electricity pylon in the mountains.", - "id": 4551 - }, - { - "image_path": "G:\\images\\combined\\006337_jpg.rf.554e3fec9edb6dfde2e52950e4fcfe34.jpg", - "response": "A group of people working on machinery inside a factory.", - "id": 4552 - }, - { - "image_path": "G:\\images\\combined\\006338_jpg.rf.b0232d62e5c2f4bdfbfd3976fce78430.jpg", - "response": "A worker is on a ladder and is working on a wall.", - "id": 4553 - }, - { - "image_path": "G:\\images\\combined\\006339_jpg.rf.5e9fd5a9b817ec6372ef93c088bf7277.jpg", - "response": "A group of workers wearing yellow and blue helmets are building a steel structure. Some of them are kneeling on the structure and secure some wires with pliers. In the background, a city is visible.", - "id": 4554 - }, - { - "image_path": "G:\\images\\combined\\006340_jpg.rf.df43be812b79d1a712fe2ac29b859f8d.jpg", - "response": "In the image two men are standing on a hillside wearing orange jackets and white helmets. They are standing next to a large piece of equipment that looks like a drone. They are working on the equipment, one of them is adjusting a yellow cable.", - "id": 4555 - }, - { - "image_path": "G:\\images\\combined\\006341_jpg.rf.56e9263d2575c2b3ae2f00bba1f086a4.jpg", - "response": "The image shows a group of people standing in a room. There are two men on the left and three men in the center of the image. One of the men in the center is wearing a white shirt and a tie. Another man on the right is wearing a grey shirt and glasses. A woman on the right is wearing a grey shirt and black pants. A man in the center is wearing a white shirt and a tie. Another man on the right is wearing a white shirt and black pants. A third man on the right is wearing a white shirt and black pants. A fourth man on the right is wearing a white shirt and black pants. A fifth man on the right is wearing a white shirt and black pants. A sixth man on the right is wearing a white shirt and black pants. A seventh man on the right is wearing a white shirt and black pants. A eighth man on the right is wearing a white shirt and black pants. A ninth man on the right is wearing a white shirt and black pants. A tenth man on the right is wearing a white shirt and black pants. A eleventh man on the right is wearing a white shirt and black pants. A twelfth man on the right is wearing a white shirt and black pants. A thirteenth man on the right is wearing a white shirt and black pants. A fourteenth man on the right is wearing a white shirt and black pants. A fifteenth man on the right is wearing a white shirt and black pants. A sixteenth man on the right is wearing a white shirt and black pants.", - "id": 4556 - }, - { - "image_path": "G:\\images\\combined\\006342_jpg.rf.6a0dd1e014e22108ebcfb31b2b58b00c.jpg", - "response": "A construction worker in a grey t-shirt and white hard hat is showing a page of blueprints to another worker in a yellow hard hat. They are both standing in front of a construction site with a red and white fence.", - "id": 4557 - }, - { - "image_path": "G:\\images\\combined\\006343_jpg.rf.fe0fa1c987924871e009392136821b8e.jpg", - "response": "A worker in a red and grey jacket and a red helmet is handling some metal rods. He is in a construction site and there are some other metal rods around him.", - "id": 4558 - }, - { - "image_path": "G:\\images\\combined\\006345_jpg.rf.85d5060b744f66b97ada4072de8e8cae.jpg", - "response": "The image shows a man in a hard hat drinking water from a clear plastic bottle. He is wearing a red hard hat, a striped shirt, and has a mustache. He is also wearing a blue watch. In the background, there is a bridge that the man is working on. The sky is blue with some clouds.", - "id": 4559 - }, - { - "image_path": "G:\\images\\combined\\006346_jpg.rf.65b64089786a0a29a10183bc8b4969de.jpg", - "response": "The image shows a group of six men standing in front of a brick building. They are all wearing jackets and the men on the left and right are wearing dark colors, while the man in the center is wearing a red and black jacket. The men are all standing close together and are all looking in the same direction.", - "id": 4560 - }, - { - "image_path": "G:\\images\\combined\\006347_jpg.rf.daad684f56899bbd8f32a658391e784b.jpg", - "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a tunnel and looking into the distance. The man on the left is younger and has a concerned look on his face. The man on the right is older and also looks serious. They are both holding a blueprint in front of them.", - "id": 4561 - }, - { - "image_path": "G:\\images\\combined\\006348_jpg.rf.263f535d604485586be47b37ce9e1ed4.jpg", - "response": "A group of people working on a construction site with a yellow excavator.", - "id": 4562 - }, - { - "image_path": "G:\\images\\combined\\00634_jpg.rf.13c7f0103e08954306a49c8e43a508c7.jpg", - "response": "The photo shows a construction site in the city of Chongqing, with a pile of rubble in the foreground. In the background, a group of people are gathered, with one of them holding a yellow sign. There is also a large pipe in the scene.", - "id": 4563 - }, - { - "image_path": "G:\\images\\combined\\00634_jpg.rf.2dbaf1d8b57e0d804f09100dd06e2edb.jpg", - "response": "The image shows a group of men standing on a construction site. They are wearing yellow and white reflective vests. In the background, there is a large pipe. To the left of the image, there is a sign that says \"\u4e2d\u56fd\u4e2d\u9752\u5c40\u52a0\u7eb3\u7b2c\u4e00\" in blue and white. In the foreground, there is a piece of paper with a yellow stripe that says \"\u6ce8\u610f\" in black.", - "id": 4564 - }, - { - "image_path": "G:\\images\\combined\\006350_jpg.rf.7d3dd194bf91182b3da038471648878d.jpg", - "response": "The image shows two men wearing yellow and white safety helmets, discussing a construction site. The man on the left is darker-skinned and wearing a yellow helmet, while the man on the right is lighter-skinned and wearing a white helmet. The man on the right is pointing to something on the construction site, and the other man is holding a plan in his hand. The plan is rolled up and shows a blueprint of the site. In the background, there is a yellow excavator.", - "id": 4565 - }, - { - "image_path": "G:\\images\\combined\\006351_jpg.rf.1c7034cb39b4d0619a88f8e0b702bcef.jpg", - "response": "A group of men walking down a sidewalk.", - "id": 4566 - }, - { - "image_path": "G:\\images\\combined\\006352_jpg.rf.36ed04cebb036282f464d2f4101b24e1.jpg", - "response": "In the image two people are standing in a factory wearing hard hats. They are both holding notepads and are looking into a oven.", - "id": 4567 - }, - { - "image_path": "G:\\images\\combined\\006353_jpg.rf.be7b7c8a977deb8b5a0c2b23a768de29.jpg", - "response": "The image shows two miners working in a cave. They are both shirtless and wearing yellow helmets. One miner is on the left, holding a large wooden beam while the other is on the right, holding a metal mesh net. They are both in the process of installing a metal fence. The cave is dimly lit and the floor is covered with a layer of yellow sand. The wall on the right is white with black spots and the left wall is grey with black spots and a brown layer at the bottom. The left wall also has a square metal fence installed. The miners are very skinny and have strong muscles.", - "id": 4568 - }, - { - "image_path": "G:\\images\\combined\\006354_jpg.rf.6d14758f4e491f0210cde5cef6309960.jpg", - "response": "In the image there is a group of men working on a pole. The men are wearing orange jumpsuits. In the background there is a forest. There is a yellow truck parked next to the men.", - "id": 4569 - }, - { - "image_path": "G:\\images\\combined\\006355_jpg.rf.7bd8df350bb937a62a2468600f9d57b7.jpg", - "response": "A worker is using a tool to chip away at ice that has formed on a power line. The ice is a few inches long and is hanging from the power line. The worker is wearing a yellow jacket and a blue hat with a white stripe.", - "id": 4570 - }, - { - "image_path": "G:\\images\\combined\\006356_jpg.rf.1c8771bbe40e301202af45ca202e85c8.jpg", - "response": "In the image there is a man on the left wearing a black suit and a tie, he is shaking hands with a man on the right who is wearing a grey suit. They are both shaking hands. In the background there is a black car. To the left of the image there is a stack of news papers with the date 20141022. Underneath the image there is a logo that says \"zhong jin jia you shang hang ke\" and the characters \"\u4e2d\u6c5f\u56fd\u9645\u5546\u8d38\u57ce\"", - "id": 4571 - }, - { - "image_path": "G:\\images\\combined\\006357_jpg.rf.fdd49226966265a0beda45ac2e99814b.jpg", - "response": "A pair of linemen work together to remove a bamboo shoot from a power line.", - "id": 4572 - }, - { - "image_path": "G:\\images\\combined\\006359_jpg.rf.beeebce5500e9b99e3dac05205918e7d.jpg", - "response": "a man in a blue shirt is standing in a field", - "id": 4573 - }, - { - "image_path": "G:\\images\\combined\\00635_jpg.rf.28b76c1a0a237e58f3fe21be4dce7c16.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", - "id": 4574 - }, - { - "image_path": "G:\\images\\combined\\00635_jpg.rf.4948e3e2169cbab0c2b23888194f02a7.jpg", - "response": "Three men in high visibility vests and hard hats are discussing plans while on a building site. One man is holding a set of plans and a cup.", - "id": 4575 - }, - { - "image_path": "G:\\images\\combined\\006360_jpg.rf.2f660238b01d51f049e21fe605e0cc1f.jpg", - "response": "A group of men standing around a yellow truck.", - "id": 4576 - }, - { - "image_path": "G:\\images\\combined\\006361_jpg.rf.572be4627bb1433a202c68bbdc722745.jpg", - "response": "The image shows a group of men walking together. They are all wearing hard hats, and some of them are wearing suits. In the background, there are several buildings under construction. There is also a car parked on the right side of the image.", - "id": 4577 - }, - { - "image_path": "G:\\images\\combined\\006362_jpg.rf.5f99102b15b5525d6f0f2f8462facf2f.jpg", - "response": "A worker in a blue helmet is walking on the train tracks.", - "id": 4578 - }, - { - "image_path": "G:\\images\\combined\\006363_jpg.rf.6fdf3d88f2465bdd8f3c9a2d2af6ea76.jpg", - "response": "a man wearing a exoskeleton suit holding a hard hat", - "id": 4579 - }, - { - "image_path": "G:\\images\\combined\\006364_jpg.rf.ccadbea7e267bd8dc6c8f1c25c595bb0.jpg", - "response": "A group of people, mostly men, are wearing red hard hats. They are standing in a tunnel. One man is wearing a white shirt and has his hand out to another man who is wearing an orange outfit. There are also two people in the background wearing black.", - "id": 4580 - }, - { - "image_path": "G:\\images\\combined\\006365_jpg.rf.c91eeb9c4ab20ccbbcdf1e7d20471404.jpg", - "response": "A construction site with several people working on it. There are four people working on a grid of rebar, with two of them in the center and one on each side. Another person is working on the left side of the image. In the background, there are two people working on the right side of the image. There are also two white chairs in the bottom left corner of the image.", - "id": 4581 - }, - { - "image_path": "G:\\images\\combined\\006366_jpg.rf.0f98c13ec28f1188c68b97c8f5894b96.jpg", - "response": "A construction worker is working on a long white wall.", - "id": 4582 - }, - { - "image_path": "G:\\images\\combined\\006367_jpg.rf.8234a1a3b39fcf4e05b6a275f9eeca02.jpg", - "response": "A group of men standing in front of a building with one of them holding a whiteboard.", - "id": 4583 - }, - { - "image_path": "G:\\images\\combined\\006368_jpg.rf.8bf8e7445636723ecd06c795f3f5b58e.jpg", - "response": "The image shows two men standing at a construction site, both wearing yellow jackets and white helmets. They are both looking at a blueprint that is spread out on the ground in front of them. The blueprint is large and takes up most of the image. The two men are standing quite close together, with one man to the left and the other to the right. They both have their arms resting on the blueprint, and they seem to be discussing something.", - "id": 4584 - }, - { - "image_path": "G:\\images\\combined\\006369_jpg.rf.f5c499b1e6643038857901f355c9e358.jpg", - "response": "A man in a red shirt and yellow hat working on a power line.", - "id": 4585 - }, - { - "image_path": "G:\\images\\combined\\00636_jpg.rf.c465cd9e1e3da8643b43aff2f551bd99.jpg", - "response": "A man wearing a hard hat and holding a book and rolled up plans, standing in front of a pile of rocks and with buildings in the background", - "id": 4586 - }, - { - "image_path": "G:\\images\\combined\\006370_jpg.rf.dcc73f5e2326dc56dc70efe2b9097123.jpg", - "response": "A man in a red work suit and a yellow hard hat stands on a construction site. He is wearing a pair of work gloves on his hands. In the background, there is a mountain.", - "id": 4587 - }, - { - "image_path": "G:\\images\\combined\\006371ab5d547d81.jpg", - "response": "A living room with a black flat screen TV mounted on a wall. The TV is showing a video game with two characters on the screen. The room has a Wii console and a Wii game displayed on the TV. There are chairs and a bench in the room.", - "id": 4588 - }, - { - "image_path": "G:\\images\\combined\\006373_jpg.rf.a4a110c42cfdbcce49f3bb5f2d59d0fe.jpg", - "response": "A cement truck is unloading its load into a large ditch.", - "id": 4589 - }, - { - "image_path": "G:\\images\\combined\\006374_jpg.rf.c96b06a681cee6c11aec5308cf000205.jpg", - "response": "A man wearing a hard hat standing in front of a small building.", - "id": 4590 - }, - { - "image_path": "G:\\images\\combined\\006375_jpg.rf.9fbd652c6fd507c76236ce4f8f17c35f.jpg", - "response": "A construction worker wearing a white hard hat and work clothes is working on a construction site. He is standing next to a large concrete pillar and appears to be pulling on a metal rod that is sticking out of the pillar. There is a large amount of mud on the ground around the pillar and the worker.", - "id": 4591 - }, - { - "image_path": "G:\\images\\combined\\006377_jpg.rf.a24fc117a614c2b0a7530574f71dcaba.jpg", - "response": "A line of workers wearing yellow hard hats and orange safety harnesses.", - "id": 4592 - }, - { - "image_path": "G:\\images\\combined\\006378_jpg.rf.6ef15eeb86f163045d59c4bae2f5c05e.jpg", - "response": "A crane is lifting a large piece of metal over a city street.", - "id": 4593 - }, - { - "image_path": "G:\\images\\combined\\006380_jpg.rf.b0f8c91464148b49a1c3eb61f0c8d2ad.jpg", - "response": "An electrician is working on some power lines.", - "id": 4594 - }, - { - "image_path": "G:\\images\\combined\\006381_jpg.rf.7ed6e492d778f8227bd1ff9dafad046a.jpg", - "response": "A power line tower with two men working on it.", - "id": 4595 - }, - { - "image_path": "G:\\images\\combined\\006383_jpg.rf.bdafec43cb3e5b6a4a0083fedcee8765.jpg", - "response": "The image shows two workers in a tunnel, with one of them using a tool to break up rocks. The workers are wearing yellow helmets and the one using the tool is also wearing a white shirt. The tunnel is filled with rocks and debris on the floor.", - "id": 4596 - }, - { - "image_path": "G:\\images\\combined\\006384_jpg.rf.616e19b24f7a5f54e714354837156697.jpg", - "response": "In the image, two men are working on a pole in the ground. The men are wearing blue and orange hard hats. To the left of the men, there is a green cornfield. Behind the cornfield, there is a building with a sign on it. The sign has Chinese characters on it. To the right of the men, there are red chairs and a table.", - "id": 4597 - }, - { - "image_path": "G:\\images\\combined\\006385_jpg.rf.734abfa5951e5fe694919ccccceb3f6d.jpg", - "response": "A worker wearing a yellow hard hat and green work gear is suspended from a metal pole by a safety harness. He is wearing a yellow hard hat and has a hook in each hand. He is standing on a construction site with a building in the background.", - "id": 4598 - }, - { - "image_path": "G:\\images\\combined\\006386_jpg.rf.42757bcec6ec07e2c688a695a3c35be7.jpg", - "response": "A group of people standing around a man who is showing them something on a map.", - "id": 4599 - }, - { - "image_path": "G:\\images\\combined\\006387_jpg.rf.8513f8a332a37f5efc5f090a0b72324a.jpg", - "response": "The image shows two men standing on a scaffolding platform against a dark roof. The roof is made of grey tiles and has some wooden beams showing. The sky is white and there are no other people or objects in the image.", - "id": 4600 - }, - { - "image_path": "G:\\images\\combined\\006388_jpg.rf.ad48475749fa1aa196c3cbe36768584b.jpg", - "response": "A worker in a factory, surrounded by smoke.", - "id": 4601 - }, - { - "image_path": "G:\\images\\combined\\006389_jpg.rf.6692646b01df33481da015a6dcac69f9.jpg", - "response": " Miners(447,153),(905,886)(10,44),(458,952) in a cave", - "id": 4602 - }, - { - "image_path": "G:\\images\\combined\\00638b89f1c6c142.jpg", - "response": "A page from an anime show with the heading Scene 4 Attacking Ramsus' vessel.", - "id": 4603 - }, - { - "image_path": "G:\\images\\combined\\00638_jpg.rf.d97607aa4996bdeb93840c8cd485f2a3.jpg", - "response": "A construction worker wearing a blue hard hat and an orange safety vest.", - "id": 4604 - }, - { - "image_path": "G:\\images\\combined\\00638_jpg.rf.e2dc077fa164b6f345bd387590a281f6.jpg", - "response": "A construction worker wearing a blue hard hat and an orange safety vest.", - "id": 4605 - }, - { - "image_path": "G:\\images\\combined\\006390_jpg.rf.9cb8ece094310741fd51ebda0f50b707.jpg", - "response": "A man in a blue shirt and blue hat working on a power line.", - "id": 4606 - }, - { - "image_path": "G:\\images\\combined\\006391_jpg.rf.918d442021f13888d45e696d7dc7ebe6.jpg", - "response": "A woman in black and white is talking to a man with a microphone.", - "id": 4607 - }, - { - "image_path": "G:\\images\\combined\\006392_jpg.rf.4e97f36bd5eaffcbe10d9557342c47fe.jpg", - "response": "The image shows two workers in blue hard hats and white protective masks, with one worker carrying a large sledgehammer and the other worker holding a longhandled tool. They are both wearing yellow work vests and are on a steel staircase and platform.", - "id": 4608 - }, - { - "image_path": "G:\\images\\combined\\006394_jpg.rf.876c1b1575b9eb352538e793e1990702.jpg", - "response": "A busy street scene with a power pole with a traffic light on it. There are many people walking around and some are riding motorcycles. There are buildings on both sides of the street and a few cars are parked or driving.", - "id": 4609 - }, - { - "image_path": "G:\\images\\combined\\006395_jpg.rf.27e81814420057dc95181f6be512edcf.jpg", - "response": "In the image there are two construction workers on a building site. They are both smiling at the camera. The man on the left is wearing a yellow high visibility vest and a red hard hat. The man on the right is wearing a blue hard hat and a yellow high visibility vest. In the background there is a yellow tractor.", - "id": 4610 - }, - { - "image_path": "G:\\images\\combined\\006396_jpg.rf.534782629cd14f7f8f8ce80c02109be5.jpg", - "response": "In the image there are two people wearing yellow and orange safety vests and white helmets. They are talking about a blueprint that is lying on a construction site. The man on the left is wearing a blue helmet and his right hand is on the table, while his left hand is supporting the blueprint. The man on the right is wearing a white helmet and his left hand is on the table, while his right hand is holding a pen. They are both looking at the blueprint.", - "id": 4611 - }, - { - "image_path": "G:\\images\\combined\\006398_jpg.rf.c8c89b56c438920e3a6b64e012781ea5.jpg", - "response": "A construction site with two workers.", - "id": 4612 - }, - { - "image_path": "G:\\images\\combined\\006399_jpg.rf.a36a9744f1e095a0463135365e1222c7.jpg", - "response": "A construction worker wearing a grey shirt and grey jeans with a orange hard hat on.", - "id": 4613 - }, - { - "image_path": "G:\\images\\combined\\0063cc2c5f7d82ed.jpg", - "response": "A bright blue colored car is parked on the side of the road. The car has a pink sticker on the windshield. There is a yellow car parked next to the blue car. There are two people in the background. One person is wearing a blue shirt and has blonde hair. The other person is wearing a pink shirt. There is a tan building in the background. There is a sign on the building. There is a black and white sign on the building. There is a yellow and black sign on the building. There is a blue and white sign on the building. There is a red and white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the", - "id": 4614 - }, - { - "image_path": "G:\\images\\combined\\006400_jpg.rf.d4799cb344778a62837dc8afff57090f.jpg", - "response": "Three men in hard hats standing together with their arms around each other at a construction site", - "id": 4615 - }, - { - "image_path": "G:\\images\\combined\\006401_jpg.rf.ca7d00b767925caf5713336deee17d5b.jpg", - "response": "A firefighter(138,133),(584,867) wearing a white helmet(342,315),(473,490) and a yellow oxygen tank(437,555),(587,797) is climbing down into a hole in the ground.", - "id": 4616 - }, - { - "image_path": "G:\\images\\combined\\006402_jpg.rf.048946cc720eb3a6ff71f80105033725.jpg", - "response": "A group of men working on a yellow and black truck.", - "id": 4617 - }, - { - "image_path": "G:\\images\\combined\\006403_jpg.rf.a94a8ed5ecf98a3fbc5fd2f420384aec.jpg", - "response": "A worker wearing a yellow hat is working on a pipe with a red hose. He is sitting on a stool and holding a pair of pliers. There are several other workers in the background, some are wearing yellow hats and some are wearing blue. They are all working on pipes.", - "id": 4618 - }, - { - "image_path": "G:\\images\\combined\\006404_jpg.rf.0a1bc78ffc304afef68b0270716ce644.jpg", - "response": "A group of men standing around a construction site", - "id": 4619 - }, - { - "image_path": "G:\\images\\combined\\006405_jpg.rf.e350f4461f21535518f6a24f58e7f4c3.jpg", - "response": "In the image there is a person wearing a yellow hard hat, safety glasses, and work gloves. They are working on a construction site, using a saw to cut through a metal rod. The person are kneeling down on a brick surface and there is a lot of metal pieces and construction tools around.", - "id": 4620 - }, - { - "image_path": "G:\\images\\combined\\006406_jpg.rf.990c8f003508cf61e10f05354a4ba841.jpg", - "response": "An engineer in a red hat sitting on the ground next to a power pole.", - "id": 4621 - }, - { - "image_path": "G:\\images\\combined\\006408_jpg.rf.953c7a6e5ecb6e33f11e5bbefa8a94a3.jpg", - "response": "A group of men in suits and hard hats are walking in a line. They are on a construction site with a building under construction. There is a banner with Chinese characters on it hanging on the left side of the image. In the background there is a partially constructed building with several floors and a steel scaffolding. There are also some plants in the foreground.", - "id": 4622 - }, - { - "image_path": "G:\\images\\combined\\006409_jpg.rf.4a0eb67428bdc87f29da1bbddc5f1f0f.jpg", - "response": "The image shows a group of men standing in front of a bus, shaking hands. Some of the men are wearing ties and one is wearing a white helmet. The bus is a white color and is parked on the left side of the image. In the background, there is a blue sky with no clouds.", - "id": 4623 - }, - { - "image_path": "G:\\images\\combined\\00640_jpg.rf.1b496544d47573344bf674669004d563.jpg", - "response": "A group of men(380,337),(469,622)(128,480),(231,807)(339,396),(391,586)(688,328),(775,653)(2,483),(128,858) standing in front of a building under construction", - "id": 4624 - }, - { - "image_path": "G:\\images\\combined\\00640_jpg.rf.ccf1b031dc1d371dd4f961031d37eec0.jpg", - "response": "Men(127,480),(233,806)(380,337),(469,622)(337,397),(390,586)(686,328),(776,653)(2,482),(129,858) standing in front of a building that is under construction", - "id": 4625 - }, - { - "image_path": "G:\\images\\combined\\006410_jpg.rf.f5fe30f9357af57730a6d732842aba6d.jpg", - "response": "A group of men standing in a dirt lot.", - "id": 4626 - }, - { - "image_path": "G:\\images\\combined\\006411_jpg.rf.d6ef20627f49a11bc5cc900046635ca7.jpg", - "response": "The image shows a group of men gathered around a large metal door with a window. They are all wearing hard hats and one of them is holding a long, red rod with a flame on the end. The flame is being used to light the room, which has a few pieces of metal machinery in it. The background is a blue wall and a brick wall.", - "id": 4627 - }, - { - "image_path": "G:\\images\\combined\\006412_jpg.rf.201dff8f0c4b82efa566a1c1125ffc7e.jpg", - "response": "The image shows a tunnel with two workers inside. One worker is on the left and is wearing a white helmet and dark clothes. The other worker is on the right and is wearing a yellow helmet and coveralls. In the background, a yellow machine is working in the tunnel. It appears to be\u6316ing the ground.", - "id": 4628 - }, - { - "image_path": "G:\\images\\combined\\006414_jpg.rf.df4e566b8b9fa67bd2b207ac445dc8b1.jpg", - "response": "In the image, two men are standing in front of a construction site. The man on the left is wearing camouflage clothing and a red hard hat. The man on the right is wearing a black suit and a red hard hat. They are both holding hands. In the background, there is a green construction tent with a red sign that reads \"Safety First, People Always Come First\". There are also several other people in the background.", - "id": 4629 - }, - { - "image_path": "G:\\images\\combined\\006415_jpg.rf.1c258ecd01167aa459d5d1df8ee1425a.jpg", - "response": "Two construction workers dressed in hi vis vests and hard hats are talking in a building site.", - "id": 4630 - }, - { - "image_path": "G:\\images\\combined\\006416_jpg.rf.12e50a33b76f25fb1009e959ede29e92.jpg", - "response": "A group of people standing in front of a bridge holding a banner that says 'China Hong Kong Railway Institution' on it.", - "id": 4631 - }, - { - "image_path": "G:\\images\\combined\\006417_jpg.rf.eee22e42c120d6cfe477461e9117609d.jpg", - "response": "A large tunnel with a man standing in it.", - "id": 4632 - }, - { - "image_path": "G:\\images\\combined\\006418_jpg.rf.eea2e3efe8944087874ea0e5887c4986.jpg", - "response": "The image shows a train track with train tracks on both sides. In the middle of the image, there are four workers wearing blue helmets and clothes. They are working on the train tracks, with two of them holding tools and standing on the tracks, and the other two holding the other end of the tool. There is a car next to the workers, and a red object is placed on the ground near the workers.", - "id": 4633 - }, - { - "image_path": "G:\\images\\combined\\006419_jpg.rf.9142e9d696af5851536994222d001026.jpg", - "response": "In the image, a worker is seen crouching down in a factory. The factory is filled with steel pipes and machinery. The worker is wearing a blue shirt, a yellow helmet, and glasses. The background shows a yellow and white building.", - "id": 4634 - }, - { - "image_path": "G:\\images\\combined\\006421_jpg.rf.f4b3ce0ebe74b98c0b7feaa868ffe68d.jpg", - "response": "A group of police officers standing around.", - "id": 4635 - }, - { - "image_path": "G:\\images\\combined\\006422_jpg.rf.1c02d7feeca207c0774f0df5de616740.jpg", - "response": "a group of men walking across a bridge", - "id": 4636 - }, - { - "image_path": "G:\\images\\combined\\006423_jpg.rf.9d9026772fcf9bac1a9657ccabbc92d4.jpg", - "response": "A man in a high visibility vest and hard hat is standing in a quarry with two diggers working in the background. The man is pointing to the left and is on a cell phone.", - "id": 4637 - }, - { - "image_path": "G:\\images\\combined\\006424_jpg.rf.f94c1281a3cad627e3498c129df493bf.jpg", - "response": "The image shows two men crossing a river. They are wearing yellow hard hats and carrying backpacks. The men are barefooted and are walking on rocks and pebbles. The river is shallow and rocky, with snow on the ground around it. The sky is overcast and there are some trees in the background.", - "id": 4638 - }, - { - "image_path": "G:\\images\\combined\\006425_jpg.rf.741ca41620036fb791686e6b79fc1c3a.jpg", - "response": "The image shows three construction workers standing on a bridge at night. They are all wearing yellow hard hats and grey construction vests. The worker on the left is holding a large red pipe while the worker in the middle is pouring concrete into a bucket. The worker on the right is holding two buckets, one in his right hand and the other on the ground. The bridge appears to be made of steel and has wooden planks laid across it. The sky is dark and there are no other people or vehicles visible in the image.", - "id": 4639 - }, - { - "image_path": "G:\\images\\combined\\006426_jpg.rf.0633d38753d4bfe60f7a010c1fd84a2e.jpg", - "response": "A construction worker in a yellow hard hat and orange work vest.", - "id": 4640 - }, - { - "image_path": "G:\\images\\combined\\006427_jpg.rf.1330f7f3f1f4b72dbbbea2e8afbfd242.jpg", - "response": "A man wearing a white shirt and a red helmet stands in a construction area. He is holding a blue folder and looking through a piece of surveying equipment.", - "id": 4641 - }, - { - "image_path": "G:\\images\\combined\\006428_jpg.rf.abf2b11402333c71356f4be30884d807.jpg", - "response": "A group of people standing around each other", - "id": 4642 - }, - { - "image_path": "G:\\images\\combined\\006429_jpg.rf.c743baef08ca335eca77aa528c311622.jpg", - "response": "A group of rescue workers in orange jumpsuits and yellow helmets are in a flooded street. They are wearing orange jumpsuits and yellow helmets. Some of them are holding blue plastic pipes. In the background, there are buildings on both sides of the street. Some of the buildings have orange doors and windows. There is a white boat in the middle of the street. A man in a white shirt is standing in the background on the right side of the street. There is a black and yellow striped pole in the foreground on the right side of the street. There is a large silver object on the pole. There is a white sign on the side of a building in the background on the right side of the street.", - "id": 4643 - }, - { - "image_path": "G:\\images\\combined\\006430_jpg.rf.2ccdb4e1a99e9d0a7a93282d41f34d22.jpg", - "response": "The image shows a group of three Chinese miners in a dark coal mine. They are wearing hard hats and one of them is holding a long, thick steel beam. Another miner is using a drill to work on the steel beam. The miners are hunched over and appear to be focused on their task. The background is blurred, emphasizing the focus on the miners.", - "id": 4644 - }, - { - "image_path": "G:\\images\\combined\\006431_jpg.rf.892f36c8a627d458337f73d148bb91dd.jpg", - "response": "A large group of workers dressed in green camouflage clothing and red hard hats are lined up. Some of the workers are carrying shovels.", - "id": 4645 - }, - { - "image_path": "G:\\images\\combined\\006432_jpg.rf.68ebd7419b38ee2d797dd2c2f6cfda1f.jpg", - "response": "A group of people standing around a large orange and grey tunneling machine.", - "id": 4646 - }, - { - "image_path": "G:\\images\\combined\\006433_jpg.rf.75542d870000ab129dea38d0c6818f83.jpg", - "response": "A group of workers in yellow hard hats are working on a bridge.", - "id": 4647 - }, - { - "image_path": "G:\\images\\combined\\006436_jpg.rf.bd0919d4967f8e087b5a2b803f7cada0.jpg", - "response": " Rescuers(387,511),(483,996)(315,537),(397,996)(93,548),(209,996)(1,517),(83,996) at the scene of the gold mine collapse in Yantai, in eastern China's Shandong province", - "id": 4648 - }, - { - "image_path": "G:\\images\\combined\\006437_jpg.rf.27055e4e037c21c625ae466ba21a5b66.jpg", - "response": "A group of men in blue jackets and yellow hard hats are standing around a telephone pole. They are in front of a village and it is raining.", - "id": 4649 - }, - { - "image_path": "G:\\images\\combined\\006438_jpg.rf.135daf912ac0d56abf807da656ea4ebb.jpg", - "response": "The image shows a group of people standing on a metal staircase. Some of them are wearing yellow, blue, and red hard hats. The staircase is located inside a cave or an underground space. The people seem to be rescue workers or miners, as they are equipped with tools and wearing specialized headwear. The scene appears to be a rescue operation or an exploration in a challenging environment.", - "id": 4650 - }, - { - "image_path": "G:\\images\\combined\\006440_jpg.rf.4aaef3a419154819e6252742b7147c35.jpg", - "response": "The workers are working on the large metal structure.", - "id": 4651 - }, - { - "image_path": "G:\\images\\combined\\006441_jpg.rf.b9afd7aa98cb08e071ac346ab6ef819b.jpg", - "response": "The image shows an older man wearing a yellow hard hat and safety glasses, standing in front of a construction site. He is looking down at the ground, which has a small rectangular hole in it. The man is wearing a white shirt and has a mustache. He is standing on the right side of the frame.", - "id": 4652 - }, - { - "image_path": "G:\\images\\combined\\006442_jpg.rf.319dcd55b6f0d583ea1efb215e1d617a.jpg", - "response": "The image shows a group of construction workers on a building site. They are all wearing hard hats and high visibility clothing. Some of them are standing on a walkway, while others are working on a steel girder. There is a large concrete pipe on the left side of the image, and a smaller one on the right. In the background, there is a hill with some power lines on it.", - "id": 4653 - }, - { - "image_path": "G:\\images\\combined\\006443_jpg.rf.472179ccfb6702a5987ebaab0d3675fd.jpg", - "response": "A worker in a yellow hard hat is holding a clipboard and looking up at a power line. Another worker is on a ladder working on the power line.", - "id": 4654 - }, - { - "image_path": "G:\\images\\combined\\006445_jpg.rf.8d63c2cff95eb3bdd394593ccf6a5df7.jpg", - "response": "A man in a blue uniform is standing on a bridge. There are two other men standing next to him, one wearing a orange shirt and a blue hard hat, and the other wearing a grey shirt and a yellow hard hat. In front of them is a table covered in various items including multiple bottles and a cup.", - "id": 4655 - }, - { - "image_path": "G:\\images\\combined\\006447_jpg.rf.311e1fa04a8b918a2afe1076860efe7a.jpg", - "response": "A group of people standing in front of a building site.", - "id": 4656 - }, - { - "image_path": "G:\\images\\combined\\006448_jpg.rf.d3309a41b3166c3744542e92abce676e.jpg", - "response": "The image shows a group of workers in blue uniforms and red hats standing on a section of train tracks. They are all holding onto a long metal bar, which appears to be a piece of train track. The workers are in various positions, with some standing on the left side of the tracks and others on the right. Some are closer to the front, while others are further back. There is a crowd of people in the background, watching the workers from a safe distance. They are standing on both sides of the tracks, near the edge of the image.", - "id": 4657 - }, - { - "image_path": "G:\\images\\combined\\006449_jpg.rf.0cd701d0e226903d68b84ae58bdad2fe.jpg", - "response": "A worker is standing in a tunnel with two trucks.", - "id": 4658 - }, - { - "image_path": "G:\\images\\combined\\00644_jpg.rf.761f43734ec33b7b894b5bde6fe33ccc.jpg", - "response": "A group of three men walking down a street.", - "id": 4659 - }, - { - "image_path": "G:\\images\\combined\\00644_jpg.rf.cb2b501cdef6d001e432c414a1581bd9.jpg", - "response": "a group of men walking in front of a truck", - "id": 4660 - }, - { - "image_path": "G:\\images\\combined\\006450_jpg.rf.6cc21d2472b86a87e15cef74b4b71d8e.jpg", - "response": "The image shows a scene of a construction site with several people present. In the foreground, a worker is laying bricks while a woman is observing the process. Another worker is on the left side of the image. A few onlookers are also present, one of them is holding a cup. Everyone, including the workers are wearing yellow helmets. In the background, there are a few other people and a building.", - "id": 4661 - }, - { - "image_path": "G:\\images\\combined\\006451_jpg.rf.063b10e6d168e58ec882d41f77aad94f.jpg", - "response": " Men(762,307),(948,997)(359,306),(612,692)(576,299),(748,999)(101,300),(350,738)(0,303),(173,997)(297,363),(397,699)(0,300),(61,999) standing around a piece of glass(89,476),(957,999)", - "id": 4662 - }, - { - "image_path": "G:\\images\\combined\\006453_jpg.rf.a7b7fc722b0d4b2c11698db0c4602911.jpg", - "response": "A group(620,326),(844,996)(430,380),(617,997)(379,371),(526,997)(595,301),(710,996) of men standing in a tunnel", - "id": 4663 - }, - { - "image_path": "G:\\images\\combined\\006454_jpg.rf.9cde12fe407145189287cd96eec45f79.jpg", - "response": " Two men(396,346),(640,997)(588,273),(909,997) in hard hats(600,272),(744,423)(467,346),(599,469) and high visibility vests(420,555),(635,997)(128,616),(209,758) standing in front of a piece(0,358),(431,869) of construction equipment", - "id": 4664 - }, - { - "image_path": "G:\\images\\combined\\006456_jpg.rf.01a539193e375fdd7b37f3fef42f2921.jpg", - "response": "A construction site with several people working on it. They are working on a large grid of metal rebar. There is a man in a red hard hat holding a large tool. Another man is in the bottom right corner wearing a red hard hat. There is a person in the top left corner wearing a white shirt and a red hat. There is a person in the top right corner wearing a white shirt and a blue hat.", - "id": 4665 - }, - { - "image_path": "G:\\images\\combined\\006457_jpg.rf.a8e2cce7bb13f39f37eef1bf5566c6c8.jpg", - "response": "In the image there are two men walking through a mine tunnel. They are both wearing blue coveralls and white helmets. In front of them on the right side of the image there are several steel pipes. Some of them are orange and others are silver. In the background there are grey stone walls and the roof of the tunnel is white. There is also a ladder on the left side of the image.", - "id": 4666 - }, - { - "image_path": "G:\\images\\combined\\006458_jpg.rf.8f400640fcf005804a99099cc05e5ba6.jpg", - "response": "A construction site with a group of men working on a building.", - "id": 4667 - }, - { - "image_path": "G:\\images\\combined\\006459_jpg.rf.06651f2c7ba18b9d00afee3d4e699a66.jpg", - "response": "Two men in high visibility clothing and hard hats stand in front of a large white dome. They are both holding clipboards and talking.", - "id": 4668 - }, - { - "image_path": "G:\\images\\combined\\006460_jpg.rf.c6ba719539adbdae5d820e9e82003bce.jpg", - "response": "The image shows a group of men working on a snowy day. They are all dressed in safety gear, including hard hats and safety vests. The men are standing under a power line, and snow is falling around them. One of the men is pointing towards the right, possibly indicating something to his colleagues. The image focuses on the group of men, but it also shows a portion of the power line and the snowfall in the background.", - "id": 4669 - }, - { - "image_path": "G:\\images\\combined\\006461_jpg.rf.60737a2fbc9d5778df63e3bc69e9b9ab.jpg", - "response": "A group of three men standing in front of a bulldozer. They are all wearing hard hats and one man is wearing a yellow safety vest. They are all smiling at the camera.", - "id": 4670 - }, - { - "image_path": "G:\\images\\combined\\006462_jpg.rf.c8f92bcde3f6ff45990d1642b81e4003.jpg", - "response": "In the image there is a person wearing a white hard hat and work clothes. They are standing next to a large pipe with a wheel on it. The person is also wearing work gloves. The background shows a lot of pipes.", - "id": 4671 - }, - { - "image_path": "G:\\images\\combined\\006463_jpg.rf.b78293980a04e04789df3e1e1ac80863.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 4672 - }, - { - "image_path": "G:\\images\\combined\\006464_jpg.rf.39301aaff950f561b371daa91c428b16.jpg", - "response": "A group of men working on a scaffold.", - "id": 4673 - }, - { - "image_path": "G:\\images\\combined\\006465_jpg.rf.2c06617245a5739b3a88025635513fb0.jpg", - "response": "A man in a blue uniform and yellow hard hat is walking across a concrete floor carrying a metal framework. The metal is stacked up against a yellow support beam on the right side of the room. The man is walking with the metal framework towards the left side of the room. There is a yellow ladder against the wall on the left side of the room and another one on the right side. In the background, there is a building that is under construction.", - "id": 4674 - }, - { - "image_path": "G:\\images\\combined\\006466_jpg.rf.75d3c14efd3d7240341bfdec496842eb.jpg", - "response": "A group of three workers are working on a construction site. Two of the workers are on the ground and one is high up on a scaffolding. The worker at the top of the scaffolding is wearing a white hard hat and has a tool belt around their waist. The two workers on the ground are also wearing hard hats. One of the workers on the ground is holding a clipboard and a pencil and the other worker is pointing towards something on the building they are working on.", - "id": 4675 - }, - { - "image_path": "G:\\images\\combined\\006467_jpg.rf.28e3f2f1a79a20ea4bb09281b1f95cb9.jpg", - "response": " A worker(2,392),(190,996) surveys the damage after a 12-story building under construction in the eastern Chinese city of Wenzhou suddenly collapsed on Sunday night. The cause of the collapse is under investigation.", - "id": 4676 - }, - { - "image_path": "G:\\images\\combined\\006468_jpg.rf.eff4d979a4a4a39b285cbc22930441d4.jpg", - "response": "A group of four men standing around a large metal bin.", - "id": 4677 - }, - { - "image_path": "G:\\images\\combined\\006469_jpg.rf.6c9a7e47d9eb080356ab605fbf980d51.jpg", - "response": "A man and a woman carrying wood on a construction site.", - "id": 4678 - }, - { - "image_path": "G:\\images\\combined\\006470_jpg.rf.2755733dd1a760aa0117545c2ff756e2.jpg", - "response": "a group of people standing together", - "id": 4679 - }, - { - "image_path": "G:\\images\\combined\\006471_jpg.rf.42e61ddcbe612b7ebeb65ade348e01c2.jpg", - "response": "The image shows a group of men standing around a white car. Some of them are shaking hands. The car is parked in front of a building. The men are wearing different colored shirts and ties. Some of them are wearing blue, white, red, yellow and black. One of the men is wearing a blue shirt and a tie. Another man is wearing a white shirt and a tie. The background is a building with a white wall and a window. The image also shows a handbag on the ground near the men.", - "id": 4680 - }, - { - "image_path": "G:\\images\\combined\\006472_jpg.rf.42a3ec8a59b089ffecc6d4b39cb28049.jpg", - "response": "Three men in yellow safety vests and hard hats looking at a blueprint on a jobsite.", - "id": 4681 - }, - { - "image_path": "G:\\images\\combined\\006473_jpg.rf.946e6979e188e5d099822eef862b9cde.jpg", - "response": "A worker in a red uniform and red helmet is operating machinery at an oil well.", - "id": 4682 - }, - { - "image_path": "G:\\images\\combined\\006474_jpg.rf.df7de16bcde46d7eaba655855726b091.jpg", - "response": "A worker is looking at a glowing orange light.", - "id": 4683 - }, - { - "image_path": "G:\\images\\combined\\006475_jpg.rf.058e7dbd85742b7bdff7cdb916e2f8c2.jpg", - "response": "A worker in a red helmet is on a ladder and is reaching up to a machine. Another worker in a blue helmet is crouching under the machine. They are both wearing work clothes. The wall behind them is red and has many square holes in it. There is a table in front of the workers with some tools on it.", - "id": 4684 - }, - { - "image_path": "G:\\images\\combined\\006476_jpg.rf.306cbc4a5401f52921e5f57a407ef399.jpg", - "response": " Three men(171,183),(502,997)(428,153),(863,997)(329,183),(514,909) in hard hats(359,182),(456,255)(625,151),(761,258) shake hands(415,526),(521,615) on a construction site", - "id": 4685 - }, - { - "image_path": "G:\\images\\combined\\006477_jpg.rf.90bbd9edd7dfd47c0173765f93c1c1ca.jpg", - "response": "A group of people working on a construction site.", - "id": 4686 - }, - { - "image_path": "G:\\images\\combined\\006478_jpg.rf.a0f99a55affd9dad9b0bd4026382f664.jpg", - "response": "A construction worker wearing a yellow hard hat and a plaid shirt is working on a construction site. He is wearing a yellow hard hat and has a yellow tool belt around his waist. He is working on a piece of wood with a large saw. In the background, there are blue skies with white clouds.", - "id": 4687 - }, - { - "image_path": "G:\\images\\combined\\006479_jpg.rf.e443a56cc3505ef28c4a7bf5d478ee07.jpg", - "response": "A construction worker in a red jumpsuit and a yellow safety vest with a red hard hat on. They are on a construction site and are working on a building. They are on a concrete pillar holding a tool.", - "id": 4688 - }, - { - "image_path": "G:\\images\\combined\\006480_jpg.rf.1dc5d99defe76ac9a474c21645b92fef.jpg", - "response": "The image shows a group of people gathered around a model of a large building complex. The model is on a glass table and features a landscape garden with a river running through it. The people are standing in front of a large staircase that is curved and leads to the second floor. The wall behind the staircase features a painting hanging on it. The people are looking at the model attentively. At the bottom right of the image, there is a white rectangular logo forfang.com.", - "id": 4689 - }, - { - "image_path": "G:\\images\\combined\\006482_jpg.rf.886d2e2f55b1d0df3d07a6e33109c6e1.jpg", - "response": "A construction crew works on a large rock wall.", - "id": 4690 - }, - { - "image_path": "G:\\images\\combined\\006483_jpg.rf.7c39d692ca77202afce5dbe9fa8da965.jpg", - "response": "A man and woman in hard hats looking at a clipboard.", - "id": 4691 - }, - { - "image_path": "G:\\images\\combined\\006484_jpg.rf.786700d2c8219eed9489172aeb3688b0.jpg", - "response": "a group of people standing around each other", - "id": 4692 - }, - { - "image_path": "G:\\images\\combined\\006485_jpg.rf.b3db45e5801c4d6449c948efd7c92f9e.jpg", - "response": "The image shows two workers in yellow helmets who are repairing power lines. They are wearing white shirts and are currently focused on the task at hand. The background shows a grey sky and a tower.", - "id": 4693 - }, - { - "image_path": "G:\\images\\combined\\006486_jpg.rf.4065d7913fd89c99232754d040541a3b.jpg", - "response": "A man in a grey suit and yellow hard hat is using a saw to cut a brick. He is standing on a pile of bricks and there are other workers in the background. They are all wearing hard hats.", - "id": 4694 - }, - { - "image_path": "G:\\images\\combined\\006487_jpg.rf.5769379167a5c7b1ba5d2980fa11f7c8.jpg", - "response": "Some construction workers are on a construction site. They are working on a foundation that has rebar in it. There is a mountain in the background.", - "id": 4695 - }, - { - "image_path": "G:\\images\\combined\\0064880cfb7b82ac.jpg", - "response": "A large building with many windows is at an intersection. There are traffic lights at the intersection and on the corners. There are several signs and benches in the area.", - "id": 4696 - }, - { - "image_path": "G:\\images\\combined\\006488_jpg.rf.754038916d3319ff97d12ed4515f41c4.jpg", - "response": "A man wearing a hard hat and safety vest is working on a large machine.", - "id": 4697 - }, - { - "image_path": "G:\\images\\combined\\006489_jpg.rf.72564d46ce90894b548624dd46711a06.jpg", - "response": "In the image two men are working on a construction site. They are wearing white and green shirts and yellow helmets. They are welding two large pieces of metal together. There is a lot of steel in the picture, some of it is brown and some is white. There is also a large amount of sparks flying around. The background is a large wooden structure.", - "id": 4698 - }, - { - "image_path": "G:\\images\\combined\\006490_jpg.rf.a3df6c8ce1f85f3edf0616fa6f5966d9.jpg", - "response": "A fireman standing in front of a fire.", - "id": 4699 - }, - { - "image_path": "G:\\images\\combined\\006491_jpg.rf.9b725da4545de740dc74e9e9e18823ab.jpg", - "response": "A group of men in grey work clothes and blue hats are working on an electrical box.", - "id": 4700 - }, - { - "image_path": "G:\\images\\combined\\006492_jpg.rf.3ccc542a26831fe30b6946d485681240.jpg", - "response": "A female worker at the site of the China-Pakistan Economic Corridor's Gwadar Port.", - "id": 4701 - }, - { - "image_path": "G:\\images\\combined\\006493_jpg.rf.82e869c389971e30b97568a62a120bc4.jpg", - "response": "A couple of men work on power lines in a rural area. They are wearing blue shirts and gray pants. One man is on a tall power pole and the other is on the ground. They are repairing the power lines.", - "id": 4702 - }, - { - "image_path": "G:\\images\\combined\\006494_jpg.rf.de5cded1b6f71a0f7e480532466964e4.jpg", - "response": "A group of men standing around a red rope.", - "id": 4703 - }, - { - "image_path": "G:\\images\\combined\\006495_jpg.rf.cb3b58265173a0bb25f6ab61ff4bd079.jpg", - "response": "A man is laying on the ground with a yellow hat on.", - "id": 4704 - }, - { - "image_path": "G:\\images\\combined\\006497_jpg.rf.0c134d3905d873e56e5c51d8765d7e08.jpg", - "response": "In the image there are multiple people working on a construction site that is covered in concrete. They are all working on a large area of concrete that is being finished. There are several levels of concrete curing in different areas of the photo.", - "id": 4705 - }, - { - "image_path": "G:\\images\\combined\\006498_jpg.rf.a446add1b49f5525cec374f071f81f3c.jpg", - "response": "a group of people standing around a construction site", - "id": 4706 - }, - { - "image_path": "G:\\images\\combined\\006499_jpg.rf.733af0294b995becdb8864bf10be09d9.jpg", - "response": "A man in a red jacket and a white hard hat is using a device to test a brick wall.", - "id": 4707 - }, - { - "image_path": "G:\\images\\combined\\006500d2b983306e.jpg", - "response": "A large billboard for LG, featuring their TV's, is shown on a building.", - "id": 4708 - }, - { - "image_path": "G:\\images\\combined\\006500_jpg.rf.4deef8887a138ed791dd2e56244efb2f.jpg", - "response": "A construction worker wearing a red hard hat is operating a piece of machinery. He is standing on a construction site with a city skyline visible in the background. There are several stacks of steel beams and other construction materials on the ground around him.", - "id": 4709 - }, - { - "image_path": "G:\\images\\combined\\006501_jpg.rf.6c4fdb30acd895f8737736e36b0ff0d6.jpg", - "response": "A man wearing a yellow safety vest and a red helmet is holding a blueprint in a construction site.", - "id": 4710 - }, - { - "image_path": "G:\\images\\combined\\006502_jpg.rf.bae670705c628959b8389a1302391eb9.jpg", - "response": "A group of people standing around a white car that is parked on some construction site. The car is located in the middle of the site, and the people are standing around it on different positions. There are some bamboo sticks on the foreground, and a person is holding a cell phone. The photo is taken from above, and there are some rubble on the ground.", - "id": 4711 - }, - { - "image_path": "G:\\images\\combined\\006504_jpg.rf.59b6fde37b952de358d911487424e6f3.jpg", - "response": "A man standing in front of a train car with a sign on it that says \"China\".", - "id": 4712 - }, - { - "image_path": "G:\\images\\combined\\006505_jpg.rf.39a61e9c95bc4d981309fe1bb2260384.jpg", - "response": "A man in a black jacket is showing two other men something on a map. They are standing next to a white SUV. There is a hill in the background.", - "id": 4713 - }, - { - "image_path": "G:\\images\\combined\\006506_jpg.rf.acaf1c33a1c0daf35c1d6e91056e98c4.jpg", - "response": "A man and two women in safety gear look at blueprints in a construction site.", - "id": 4714 - }, - { - "image_path": "G:\\images\\combined\\006507_jpg.rf.c6b63341cd2eaf385ccb26671888918d.jpg", - "response": "A man with a camera is standing in front of a tall building. The building is under construction and there is a crane operating next to it. The man is holding a camera and appears to be taking a picture of the building.", - "id": 4715 - }, - { - "image_path": "G:\\images\\combined\\006508_jpg.rf.71debd82bec56ce5e1291782b533a80a.jpg", - "response": "A group of workers are working on a construction site. They are working on a large building that is under construction. The workers are wearing yellow hard hats and some of them are wearing blue jackets. They are working on a large concrete slab with a machine that looks like a cement mixer. There are several people in the picture and some of them are carrying tools. In the background, there is a large building with lots of windows.", - "id": 4716 - }, - { - "image_path": "G:\\images\\combined\\006509_jpg.rf.40e73d3cffc2b82baab4e2a8fb97b3bb.jpg", - "response": "An engineer in a yellow hard hat and orange safety vest points towards a large crane in the background.", - "id": 4717 - }, - { - "image_path": "G:\\images\\combined\\00650_jpg.rf.286ce9ab49662d1b6b2036b0993f1fe3.jpg", - "response": "A construction worker with a bowl on his head and a friend stand in front of the construction site.", - "id": 4718 - }, - { - "image_path": "G:\\images\\combined\\00650_jpg.rf.d50f9de873b78071865201b0d0b9901e.jpg", - "response": "Two workers standing in front of a construction site. One man is carrying a heavy bowl on his head.", - "id": 4719 - }, - { - "image_path": "G:\\images\\combined\\006510_jpg.rf.7b84a161373a2332a6628bb8455596f1.jpg", - "response": "A miner is working in a cave, holding a mining tool.", - "id": 4720 - }, - { - "image_path": "G:\\images\\combined\\006511_jpg.rf.a532cce8f07928bc02e0d8d40102d35a.jpg", - "response": "A worker is seen in a cage of steel. He is crouching down and looking up. He is wearing a yellow hard hat, a brown vest, and brown pants. He is holding a tool in his right hand. The background shows a blue sky with white clouds. To the right of the image is the logo of the website and the words \"\u5317\u7eac\u7f51\".", - "id": 4721 - }, - { - "image_path": "G:\\images\\combined\\006512_jpg.rf.aec17ff94f7d527d215495b4fec2d9c9.jpg", - "response": "A construction worker is lifting a large metal crate with a crane. The crate is filled with steel rebar and is suspended in the air. The worker is reaching up to grab the crate. The crate is located in the center of the image and the worker is on the right hand side of the image. There is a yellow crane in the background on the left side of the image. The sky is overcast and the building site is under construction.", - "id": 4722 - }, - { - "image_path": "G:\\images\\combined\\006513_jpg.rf.86adbdf89b3c33e23b147583aceaefea.jpg", - "response": "The image shows two workers in yellow hard hats and blue uniforms standing on the side of a road. They are holding a long white rope that is attached to a black box. The workers are looking at the rope and the box.", - "id": 4723 - }, - { - "image_path": "G:\\images\\combined\\006514_jpg.rf.2fe869bd674679d456f5194fdf1f15f2.jpg", - "response": "The image shows a group of workers in orange jumpsuits and yellow hard hats carrying a large piece of metal at a construction site. They are all holding the metal together, which is shaped rectangular with rounded corners. They are all wearing the hard hats and the worker on the far left is wearing a white helmet under his hard hat. The workers are standing on a rocky surface with a blue sky and some clouds in the background. There are power lines in the background on the left side of the image.", - "id": 4724 - }, - { - "image_path": "G:\\images\\combined\\006515_jpg.rf.759434fb8ccf4dae2bac20e13139c532.jpg", - "response": "The picture shows the interior of the new Jiangmen City People's Hospital. The hospital is located on the People's Road in the city, and is the main medical center for the city. The hospital has a very large number of medical staff and a variety of medical equipment. The hospital also has a very good transport system, with a large number of buses stopping at the door of the hospital, making it very convenient for patients to go to the hospital.", - "id": 4725 - }, - { - "image_path": "G:\\images\\combined\\006516_jpg.rf.e4d8f0972f878e641fcc91bad55aed76.jpg", - "response": "A couple of men standing in front of a building that is under construction.", - "id": 4726 - }, - { - "image_path": "G:\\images\\combined\\006518_jpg.rf.b4db4675166e3fd1de889edbbd5b82a3.jpg", - "response": "A construction worker is pouring concrete on a bridge that is being built over a river.", - "id": 4727 - }, - { - "image_path": "G:\\images\\combined\\006519_jpg.rf.aa182e03c81e597b01a062c6ad20dbc4.jpg", - "response": "A group of workers are working on a construction site. They are wearing yellow helmets and are focused on their task. The ground is white and the sky is grey. There are several pillars in the scene and some steel bars.", - "id": 4728 - }, - { - "image_path": "G:\\images\\combined\\006520_jpg.rf.6edb2bab9105482a5551f206f4df6820.jpg", - "response": "A group of men in uniforms and hard hats are working on a power line in a mountainous area. They are standing on a mountain trail and one man is holding a power box while another man is operating a crane to lift a metal beam. There is a man in a blue uniform and yellow hard hat on the right side of the scene and another man in a red uniform and yellow hard hat on the left side of the scene.", - "id": 4729 - }, - { - "image_path": "G:\\images\\combined\\006521_jpg.rf.8189158bfaad391aff11a9951e6806c8.jpg", - "response": "A man wearing a hard hat and a high visibility vest stands in the entrance of a large tunnel. There is a large pipe in the background on the right hand side of the image and two people in the background on the right wearing high visibility vests.", - "id": 4730 - }, - { - "image_path": "G:\\images\\combined\\006522_jpg.rf.5dc29b076a90927c04867249dc647f91.jpg", - "response": "a group of people standing in front of a bus", - "id": 4731 - }, - { - "image_path": "G:\\images\\combined\\006523_jpg.rf.0e9896192749d630b382d6e136b7abf0.jpg", - "response": "In the image there is a person wearing a blue hard hat and work clothes, who is welding some metal with a torch. The person is kneeling on the ground and the torch is producing bright sparks as it welds the metal. The welding is being done outside, in the dark. There are some bricks and a pipe nearby.", - "id": 4732 - }, - { - "image_path": "G:\\images\\combined\\006524_jpg.rf.86534acfcb3eb92c20623dca50762548.jpg", - "response": "A man wearing a yellow hard hat and an orange vest standing in a warehouse next to a large metal cylinder.", - "id": 4733 - }, - { - "image_path": "G:\\images\\combined\\006526_jpg.rf.c95ef6df21eb8aaeccfa4360da562251.jpg", - "response": "A man in a blue shirt and orange hard hat is working on a train track.", - "id": 4734 - }, - { - "image_path": "G:\\images\\combined\\006527_jpg.rf.132e03937ef8a1652024fa01521b137d.jpg", - "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large pile of metal rods, which are used to reinforce concrete. The workers are wearing orange and yellow vests, and one of them is wearing a hat. The metal rods are arranged in a grid-like pattern, and the workers are focused on their task. In the background, there are some buildings and a street.", - "id": 4735 - }, - { - "image_path": "G:\\images\\combined\\006528_jpg.rf.a4a942662a3e6ef2858c65688fb1fc73.jpg", - "response": "A man and a woman in orange work vests and red helmets stand in front of an oil well. The woman is holding a clipboard and pen and both are looking at the clipboard.", - "id": 4736 - }, - { - "image_path": "G:\\images\\combined\\006529_jpg.rf.d516347d49ad03e26a48af0212073b3b.jpg", - "response": "A group of four men standing in an unfinished building.", - "id": 4737 - }, - { - "image_path": "G:\\images\\combined\\00652_jpg.rf.0347e1f23d26aa72cdda6f0e42f380f2.jpg", - "response": "A woman wearing a hard hat and safety glasses stands in a shop with other workers in the background.", - "id": 4738 - }, - { - "image_path": "G:\\images\\combined\\00652_jpg.rf.e37a9f3051bba15fbb104f5eef9f032c.jpg", - "response": "A woman wearing a hard hat and safety glasses stands in a shop with three other men wearing hard hats and safety glasses. They are all standing behind her.", - "id": 4739 - }, - { - "image_path": "G:\\images\\combined\\006531_jpg.rf.23f8f0d9bbfa2e91a2dde33e7b11f54c.jpg", - "response": "A man in a blue hard hat is on a cherry picker.", - "id": 4740 - }, - { - "image_path": "G:\\images\\combined\\006533_jpg.rf.b4a608c561d8c9fca4b0e18ad0a838e7.jpg", - "response": "In the image there are two men working in a mine. They are both wearing orange vests and yellow hard hats. One of the men is holding a large pick axe and is standing in front of a large wheel. The men are in a tunnel and there is a ladder on the wall to their left. The tunnel is filled with rocks and there is a lantern hanging in the foreground.", - "id": 4741 - }, - { - "image_path": "G:\\images\\combined\\006535_jpg.rf.cefb964800cb364facd307fe0226a63a.jpg", - "response": "In the image three people are working on a construction site. They are all squatting and appear to be welding or cutting metal. The person on the left is wearing a white helmet and a brown jacket, the person in the middle is wearing a yellow helmet and a yellow and white jacket, and the person on the right is wearing a black helmet and a dark blue jacket. There are sparks flying from the welding and cutting.", - "id": 4742 - }, - { - "image_path": "G:\\images\\combined\\006536_jpg.rf.3c15aeafcec3b5284680c7e9327b15b4.jpg", - "response": "A couple of men are working on power lines.", - "id": 4743 - }, - { - "image_path": "G:\\images\\combined\\006537_jpg.rf.12c50f2b1b7dd5798dada6600512c579.jpg", - "response": "The image shows a group of men walking together in a construction site. They are all wearing black suits and one of them is wearing a red hard hat. There are several construction cranes in the background and a yellow fence is visible on the right side of the image. The ground is bare and dusty and there are a few people in the distance.", - "id": 4744 - }, - { - "image_path": "G:\\images\\combined\\006539_jpg.rf.e5727c72e38a7db85b5bdb39f12315b1.jpg", - "response": "A worker is working on a construction site.", - "id": 4745 - }, - { - "image_path": "G:\\images\\combined\\006540_jpg.rf.265c5027da05aab15c0cf4abb4029e3d.jpg", - "response": "The image shows two men in camouflage and orange work gear, one wearing a yellow hard hat and the other wearing a green hard hat, working on a street light.", - "id": 4746 - }, - { - "image_path": "G:\\images\\combined\\006542_jpg.rf.713c2ff41cf3f1cbffee87c35c23700b.jpg", - "response": "The image shows a group of workers walking on train tracks. There are five people in the picture, four of them wearing yellow jackets and orange helmets, and the fifth one is holding a drone. The train tracks are in the foreground and extend to the back of the picture. In the background, there is a mountain. To the left of the picture, there is a tall white electric pole.", - "id": 4747 - }, - { - "image_path": "G:\\images\\combined\\006543_jpg.rf.845cb7b5eab49226eb81f7b6791cb144.jpg", - "response": "A construction worker in a yellow hard hat and a black jacket is using a tool to repair a concrete pillar in a building. The worker is on a ladder and there is a second worker in the bottom right corner of the image. The background is a dark grey sky and a yellow light on the right side of the image.", - "id": 4748 - }, - { - "image_path": "G:\\images\\combined\\006544_jpg.rf.cec7ae59e705f09b4cf28fcb7d68a683.jpg", - "response": "The image shows a train track under construction. There are two workers wearing yellow hard hats and safety vests, one on the left and one on the right, both welding steel bars on the tracks. The sky is dark and the mountains behind are green, but the rest of the scene is not very detailed.", - "id": 4749 - }, - { - "image_path": "G:\\images\\combined\\006545_jpg.rf.ebc7a8c8ad4a85117fb285d6f04bcb7a.jpg", - "response": "A man wearing a yellow hard hat and a white shirt with black writing on it.", - "id": 4750 - }, - { - "image_path": "G:\\images\\combined\\006546_jpg.rf.ae9826b92f1f4fba2a3c639eacb176f6.jpg", - "response": "The image shows a group of people standing on a partially completed bridge. Some of the people are wearing hard hats and one is holding a clipboard. There are several pairs of shoes in the scene, but the people's clothing is not visible. In the background, a truck is parked on the bridge.", - "id": 4751 - }, - { - "image_path": "G:\\images\\combined\\006548_jpg.rf.d925e055a44907f3b65a5db4d60da438.jpg", - "response": "A group of men in white shirts and some in red safety helmets are standing in a room that has concrete walls and floor. Some men are holding tools.", - "id": 4752 - }, - { - "image_path": "G:\\images\\combined\\006549_jpg.rf.de9a9395e826cfcf4b4f7d6e1562d263.jpg", - "response": "The image shows a group of men standing on a rooftop. They are all dressed in business suits and are standing in a semi-circle. Some of them are holding cell phones. In the background, there are mountains and a cloudy sky. On the right side of the image, there is a white tarp being held up by a rope. Underneath the tarp, there is a car parked.", - "id": 4753 - }, - { - "image_path": "G:\\images\\combined\\006551_jpg.rf.573d5e01c599ae55ca529d72838b89fc.jpg", - "response": "The image shows a construction site with several workers around a cement truck. The truck is pouring concrete into a large cylindrical container, which is filled about halfway. The workers are standing around the container, with some near the front and others near the side. They are all wearing yellow hard hats and orange vests. In the background, there is a fence and a blue wall. The ground is covered in dirt and small rocks.", - "id": 4754 - }, - { - "image_path": "G:\\images\\combined\\006552_jpg.rf.a8191b19e496e9ec063f4d997e65b443.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are pouring concrete on the ground.", - "id": 4755 - }, - { - "image_path": "G:\\images\\combined\\006553_jpg.rf.19f87244aa154497b22dfc94c14ba9e0.jpg", - "response": "A worker is on a power line in China.", - "id": 4756 - }, - { - "image_path": "G:\\images\\combined\\006554_jpg.rf.ffe5125bc63d788f396e56f4ea263c78.jpg", - "response": "A group of men in blue shirts and hats are working on a power line. They are standing on a ladder and are working on the power line.", - "id": 4757 - }, - { - "image_path": "G:\\images\\combined\\006555_jpg.rf.02208b6c8cf4e2c8d0f8572b6816a1da.jpg", - "response": "A group of men working on a construction site.", - "id": 4758 - }, - { - "image_path": "G:\\images\\combined\\006556_jpg.rf.3b7f083820b23d619c8b3192e9fa0978.jpg", - "response": "A woman wearing a red hard hat with the words \"\u4e2d\u9a6c\u5efa\u8bbe\" on it, and a red nose mask.", - "id": 4759 - }, - { - "image_path": "G:\\images\\combined\\006557_jpg.rf.e527f0b08ee4c5a929158fca9a7c486b.jpg", - "response": "A man wearing a yellow hard hat and carrying a hammer stands in front of a large pile of wooden planks. He is lifting a long, wooden beam over his head. In the background, there are other workers and stacks of wooden planks.", - "id": 4760 - }, - { - "image_path": "G:\\images\\combined\\006558_jpg.rf.d8f470e74b6684bb2df9eb377a543ade.jpg", - "response": "A worker in a yellow hard hat working on a wall of rebar.", - "id": 4761 - }, - { - "image_path": "G:\\images\\combined\\006561_jpg.rf.8c424d4a96fabab8e065ffd8087ace54.jpg", - "response": "A group of people wearing SeaWorld hard hats stand in a construction area.", - "id": 4762 - }, - { - "image_path": "G:\\images\\combined\\006562_jpg.rf.da743047c9402a35591823d1581ea8f6.jpg", - "response": "A group of four men are walking together. They are all wearing red helmets. The man on the left is wearing a red and white shirt and khaki pants. The man second from the left is wearing a red and white shirt and grey pants. The man in the middle is wearing a blue and white shirt and grey pants. The man on the right is wearing a blue and white shirt, blue jeans, and white sneakers. They are all walking on a unfinished road. In the background, there are buildings under construction.", - "id": 4763 - }, - { - "image_path": "G:\\images\\combined\\006563_jpg.rf.f9b917443bb15dfa86f80456445c4996.jpg", - "response": "A group of three construction workers are standing in front of a building. They are all wearing hard hats and white shirts. The man in the middle is wearing a yellow hard hat with the number 5944 on the brim. The man on the far left is also wearing a yellow hard hat. The man on the far right is wearing a blue hard hat. They are all looking up at the building.", - "id": 4764 - }, - { - "image_path": "G:\\images\\combined\\006565_jpg.rf.f5e6d5349f379fb93d6767fa74adbe82.jpg", - "response": "In the image there are three workers wearing blue work clothes and yellow hats. They are working on a construction site which can be described as a grey concrete ground with a lot of steel bars sticking out of it. There is a red and white banner hanging on a metal bar which says \"\u4e2d\u94c1\u6e2f\u822a\u5c40\u845b\u6d32\u575d\u5730\u94c12\u53f7\u7ebf\u957f\u5cad\u8def\u8f66\u8f86\u6bb5\" in yellow font. There are also two red flags on the left and right sides of the image. On the ground, there is a single sandal which is facing the right side of the image.", - "id": 4765 - }, - { - "image_path": "G:\\images\\combined\\006566_jpg.rf.379f71a03eecc2f7b1876ae77dbcfe18.jpg", - "response": "The image shows a group of workers standing inside a large tunnel. They are wearing yellow and blue jackets and are working on the side of the tunnel. The tunnel is made of concrete and has a curved wall. The workers are standing at various points along the curved wall, with some closer to the foreground and others further back. There is also a large circular hole in the foreground, and the word \"people\" is written in bottom right corner.", - "id": 4766 - }, - { - "image_path": "G:\\images\\combined\\006568_jpg.rf.5887138a5110569b13316c548d7ace17.jpg", - "response": "The image shows two men standing behind a piece of blue machinery with the words GDCJ-40 on the side. The machine appears to be some sort of\u94a2\u7b4b\u52a0\u5de5\u8bbe\u5907. There are several wires scattered around the floor and a couple of people are holding steel bars.", - "id": 4767 - }, - { - "image_path": "G:\\images\\combined\\006569_jpg.rf.4e84d9850f0a1ec14a557eefb16e003b.jpg", - "response": "The image shows two men in orange work suits and red hard hats walking through a large pile of coal. The background shows more coal piles and machinery.", - "id": 4768 - }, - { - "image_path": "G:\\images\\combined\\006570_jpg.rf.bcd9c0fa39c23131cff5a959dc703517.jpg", - "response": "A worker in a safety harness and blue hard hat is working on a power line. He is climbing a ladder that is secured to a tall power pole. He is holding a tool in his mouth and working on the insulator of the power line. The power line is black and the insulator is white. The worker is wearing a green camouflage shirt and tan pants. There is a rope attached to the pole and a tool belt around his waist. The sky is blue with white clouds.", - "id": 4769 - }, - { - "image_path": "G:\\images\\combined\\006571_jpg.rf.bb8f6fee187bba6d4a97be11f64f9ed0.jpg", - "response": "The image shows a group of construction workers working on a road. They are building a concrete structure, possibly a guardrail, along the side of the road. There are five workers in the picture, all wearing yellow helmets. One worker is holding a large piece of wood, while another worker is operating a machine. The workers are located near the side of the road, which is visible at the top of the image. The background shows a field with crops, giving the impression that the construction work is taking place in a rural area.", - "id": 4770 - }, - { - "image_path": "G:\\images\\combined\\006572_jpg.rf.0945d3e58db0c5ec8425323a4b22b0bf.jpg", - "response": "a group of people standing around a table", - "id": 4771 - }, - { - "image_path": "G:\\images\\combined\\006573_jpg.rf.c55f5b2024df69384fa2679188e558d4.jpg", - "response": "A construction site with a Hitachi orange and black excavator digging up a pile of dirt and\u6e23\u571f. Two construction workers are operating the excavator.", - "id": 4772 - }, - { - "image_path": "G:\\images\\combined\\006574_jpg.rf.26bb09c7c1d564629a48e987d7a0dd73.jpg", - "response": "The image shows two workers in blue uniforms and yellow reflective vests, with one worker holding a long tool while the other worker is holding a rope. They are both smiling and looking up at a power line.", - "id": 4773 - }, - { - "image_path": "G:\\images\\combined\\006575_jpg.rf.66ed7e83d20718e22476661c43e17a77.jpg", - "response": "A group of men working on a construction site.", - "id": 4774 - }, - { - "image_path": "G:\\images\\combined\\006576_jpg.rf.a3be4975d79ee0e2613b64e25a7af080.jpg", - "response": "The image shows a group of people wearing yellow and orange vests and white helmets. They are standing in front of a building under construction. In the foreground, a man is handing another man a box of bricks. The scene is quite busy, with many people standing around and interacting with each other.", - "id": 4775 - }, - { - "image_path": "G:\\images\\combined\\006577_jpg.rf.0ab98b67d7c4effc47fff9f0e0545f8e.jpg", - "response": "a group of people standing in a room that is under construction", - "id": 4776 - }, - { - "image_path": "G:\\images\\combined\\006579_jpg.rf.db4f4fb4bea172c91b683d7f9141325c.jpg", - "response": "A group of men standing in a room.", - "id": 4777 - }, - { - "image_path": "G:\\images\\combined\\006580_jpg.rf.9707cd2862739ea4fa315eb7f336b87a.jpg", - "response": "A construction worker in a hard hat working on a building.", - "id": 4778 - }, - { - "image_path": "G:\\images\\combined\\006581_jpg.rf.a70bcfd9f67f00bbdba1927ffe170e2f.jpg", - "response": " Two construction workers(386,178),(549,979)(612,87),(795,962) walking towards a truck(563,55),(872,550) that is driving away", - "id": 4779 - }, - { - "image_path": "G:\\images\\combined\\006582_jpg.rf.c0f7821fbba36ae417eadb45862c07b4.jpg", - "response": "A construction site with several people working on it. There are many metal rods and red pipes scattered around the site. A man is working on the left side of the image, and another man is working on the right side. In the background, there are mountains and a cloudy sky. There are also a few buildings visible in the distance.", - "id": 4780 - }, - { - "image_path": "G:\\images\\combined\\006583_jpg.rf.da886c46dd79d721d72dbf040742bc26.jpg", - "response": "A man sitting on a stool on a construction site, talking on a cell phone. He is wearing a white helmet, a red jacket, a white shirt, and a tie. He is also wearing a watch and a pair of blue jeans.", - "id": 4781 - }, - { - "image_path": "G:\\images\\combined\\006584_jpg.rf.f7e32b51e40adcec4cbea7f003c2f691.jpg", - "response": "A group of men standing on a construction site.", - "id": 4782 - }, - { - "image_path": "G:\\images\\combined\\006585_jpg.rf.141ef1262fc041188367a02a5aed8f48.jpg", - "response": "The image shows a group of workers in orange vests and blue helmets who are installing a power cable on the sea. They are on a ship with a white superstructure. In front of the ship, there are two large wheels with red spokes. On the left side of the ship, there is a row of boxes with the characters \"WDG\".", - "id": 4783 - }, - { - "image_path": "G:\\images\\combined\\006586_jpg.rf.2d445a52d4508ac5a41bd41efda9bfbc.jpg", - "response": "The image shows a factory scene with two workers in the foreground, one on the left and one on the right, both wearing yellow hard hats. They are working on a large piece of equipment, a red boiler, which takes up most of the middle ground of the image. The boiler has a door in the middle and a pipe sticking out on each side. In the foreground, there is a pile of red bricks and some metal debris.", - "id": 4784 - }, - { - "image_path": "G:\\images\\combined\\006587_jpg.rf.5c6084b4a5e9c419172d9aefc98aeb54.jpg", - "response": "A group of three multi-racial engineers or construction workers looking at blueprints outside on a sandy beach or construction site.", - "id": 4785 - }, - { - "image_path": "G:\\images\\combined\\006588_jpg.rf.c05e518ea0df7630118d70d12ce70798.jpg", - "response": "A man in an orange hard hat is working on a construction site. He is holding a hammer and kneeling down next to a piece of wood. He appears to be the only person in the image. There are other people in the background, but they are too small and far away to make out any details. There are many wooden boards scattered around the floor, some of which are in the foreground and some of which are in the background. There are also many pipes on the floor, some of which are in the foreground and some of which are in the background. The room the man is working in has a high ceiling and appears to be under construction.", - "id": 4786 - }, - { - "image_path": "G:\\images\\combined\\006590_jpg.rf.49230ff1781b717dbffbc0ad3570da82.jpg", - "response": "Two workers in yellow and red hard hats, one with a goatee, are talking next to a building. One is holding a wooden plank and a pipe.", - "id": 4787 - }, - { - "image_path": "G:\\images\\combined\\006591_jpg.rf.b8463ade05d647cf93a0b99b711ff84b.jpg", - "response": "The image shows a group of people gathered around a man who is lying on the ground in the dirt. The man appears to be injured and is being attended to by the group of people. Some of the people are wearing hard hats, and there is a rope nearby. The scene likely takes place outdoors and during the day.", - "id": 4788 - }, - { - "image_path": "G:\\images\\combined\\006594_jpg.rf.d5edad3b3096d5a72412f8414c9403b4.jpg", - "response": "A construction worker in a blue uniform and orange hard hat is working on a construction site. He is wearing a blue uniform and has a tool in his hand. He is standing next to a wall and a road. In the background, there are trees.", - "id": 4789 - }, - { - "image_path": "G:\\images\\combined\\006595_jpg.rf.e9f2179011f3ffa4b4aead7fc98709e9.jpg", - "response": "a group of men standing around each other", - "id": 4790 - }, - { - "image_path": "G:\\images\\combined\\006596_jpg.rf.99c33bdd3ef44f3a961177f18c64ff90.jpg", - "response": "The image shows two men standing on a construction site, both of them dressed in business suits. One man is wearing a yellow hard hat and pointing towards the left, while the other man is wearing a yellow hard hat and looking in the same direction. Both men are wearing sunglasses.", - "id": 4791 - }, - { - "image_path": "G:\\images\\combined\\00659725b6fc87d5.jpg", - "response": "A group of women playing a game of indoor basketball.", - "id": 4792 - }, - { - "image_path": "G:\\images\\combined\\006597_jpg.rf.7fb4cea9c27b0fc6f0e9b18350bb25ef.jpg", - "response": "A worker walks past oil drums at a Pertamina fuel depot in Jakarta, Indonesia.", - "id": 4793 - }, - { - "image_path": "G:\\images\\combined\\006598_jpg.rf.fac4f5357ecf34f3cb57a089bfcca1dd.jpg", - "response": "A couple of men wearing hard hats are sitting on a curb eating food.", - "id": 4794 - }, - { - "image_path": "G:\\images\\combined\\006599_jpg.rf.379af078478c1d54e48d4a7feb829f22.jpg", - "response": "In the image you can see a group of people. Among them, there are men wearing blue suits and yellow helmets. Some of them are wearing ties. In the background, there is a train.", - "id": 4795 - }, - { - "image_path": "G:\\images\\combined\\0065bfca13dd4b6b.jpg", - "response": "The image shows a selection of soda bottles on a shelf. There are four bottles in total, arranged in a row. The first two bottles on the left are labeled \"Genuine Jamaican Kola Champagne\" and are orange in color. The second two bottles on the right are labeled \"Genuine Jamaican Ginger Beer\" and are green in color. The labels on the bottles feature the DG logo.", - "id": 4796 - }, - { - "image_path": "G:\\images\\combined\\006600_jpg.rf.6de4288d1a095b8786aaeb675dfffda1.jpg", - "response": "A group of men sitting around a table.", - "id": 4797 - }, - { - "image_path": "G:\\images\\combined\\006602_jpg.rf.931fc2f9ead4f4fcf5ce1cf808e97e1c.jpg", - "response": "In the image there are three men dressed in blue and yellow work clothes and yellow helmets. They are suspended on a wire, which is part of a power line. They are in the process of installing a power line. Below them, there is a large crowd of people watching the event. In the distance, there are also two excavators working.", - "id": 4798 - }, - { - "image_path": "G:\\images\\combined\\006603_jpg.rf.0a2d171576322597a508d7b38cfb1e8f.jpg", - "response": " a person(533,345),(962,997) wearing a hard hat(639,345),(781,496)", - "id": 4799 - }, - { - "image_path": "G:\\images\\combined\\006604_jpg.rf.028631cb408f94364cd521daf0fd2705.jpg", - "response": "A group of people standing around each other.", - "id": 4800 - }, - { - "image_path": "G:\\images\\combined\\006605_jpg.rf.cb09816774f18da80aab69794764278c.jpg", - "response": "In the image there are two men working in a factory. They are both wearing hard hats and green coveralls. The man on the left is bent over and appears to be sweeping up debris with a broom. The man on the right is standing in the background. In front of them is a pile of debris consisting of bricks and wood. To the far right of the image there is a large red cylinder.", - "id": 4801 - }, - { - "image_path": "G:\\images\\combined\\006606_jpg.rf.f915353ccc99a5f7f423d29b53e51cd2.jpg", - "response": "The image shows a man wearing a yellow hard hat sitting in a small, dark space. He is looking at a large pipe with a flashlight on his forehead. The space is dirty and the walls are concrete. The man has a pen in his pocket and there is a bottle on the ground. He is wearing a blue shirt with a small logo on the pocket and has a tattoo on his right arm. The background is blurry and the image is focused on the man.", - "id": 4802 - }, - { - "image_path": "G:\\images\\combined\\006607_jpg.rf.50c2f72b5d5ddeb46d474497f69a6d49.jpg", - "response": "In the image there is a construction site with a person working on it. The person is wearing a yellow helmet and is standing on a red metal framework. The metal framework consists of horizontal and vertical red pipes. The person is building the framework, possibly placing or adjusting a red pipe. The background is a light grey sky.", - "id": 4803 - }, - { - "image_path": "G:\\images\\combined\\006608_jpg.rf.f66b776f3b2051e8cbaf518818b4a7a1.jpg", - "response": "A group of men standing around a large metal container.", - "id": 4804 - }, - { - "image_path": "G:\\images\\combined\\006609_jpg.rf.ce9e2971e1c3e9ff6aaa979ad9db3a7a.jpg", - "response": "The two men are wearing yellow jackets.", - "id": 4805 - }, - { - "image_path": "G:\\images\\combined\\006610_jpg.rf.eb0ef62c3cd457abd0fdd4dccd6f0e10.jpg", - "response": "a group of people standing around a tree", - "id": 4806 - }, - { - "image_path": "G:\\images\\combined\\006611_jpg.rf.25802835457e02aaa8cdcddf01ad470c.jpg", - "response": "A worker is seen at a steel factory in China's Hebei province.", - "id": 4807 - }, - { - "image_path": "G:\\images\\combined\\006612_jpg.rf.8d7b791714235216127c23d1ef70c9bb.jpg", - "response": "A group of people walking through a tunnel under construction. The tunnel is under a blue and white sign that says \"\u5b89\u5168\u901a\u9053\" which translates to \"Safety Corridor\". There is a large sign above the tunnel that says \"\u8d28\u91cf\u662f\u4f01\u4e1a\u7684\u751f\u547d\" which translates to \"Quality is the life of the enterprise\". The people walking through the tunnel are wearing hard hats and the tunnel itself is a bright yellow color.", - "id": 4808 - }, - { - "image_path": "G:\\images\\combined\\006613_jpg.rf.5cec28fa9ff6d61b13880f57fd8471b3.jpg", - "response": "A man wearing a yellow safety vest and a orange hard hat is holding a blue paper while looking at the camera. He is standing underneath a scaffolding.", - "id": 4809 - }, - { - "image_path": "G:\\images\\combined\\006614_jpg.rf.78694838e91d09fba7945348810d0be0.jpg", - "response": "A group of three men are working on a house. Two of them are on a ladder, one of them is holding it and the other is either fixing something on the ceiling or painting. There is a bucket on the ground and a chair in the room.", - "id": 4810 - }, - { - "image_path": "G:\\images\\combined\\006615_jpg.rf.7b907977a28a58b45d33980050dfac6d.jpg", - "response": "The image shows a group of people working at a construction site. They are wearing hard hats and are focused on their tasks. The workers are standing on a large framework of metal rods and concrete, which appears to be the foundation of a building. Some of the workers are closer to the foreground, while others are further away. A few of them are engaged in conversations with each other. In the background, there is a crane operating in the distance.", - "id": 4811 - }, - { - "image_path": "G:\\images\\combined\\006617_jpg.rf.85746cbbb251ec333bcd1ab2e1b96c06.jpg", - "response": "A man wearing a blue shirt and blue shoes is on a zipline.", - "id": 4812 - }, - { - "image_path": "G:\\images\\combined\\006618_jpg.rf.5fc3b24deffe963131d06236e6419e2e.jpg", - "response": "The picture shows a group of people gathered in a room. They are standing behind a model of a building. On the wall, there is a large advertising board saying \"City King\". There are also some advertising boards showing the features of the project. A man in a suit is explaining something to a group of people. One of the people is taking photos with a smartphone.", - "id": 4813 - }, - { - "image_path": "G:\\images\\combined\\006619_jpg.rf.bdbc1c251b54502b7460bfec72b45861.jpg", - "response": "A group of people standing on a boat.", - "id": 4814 - }, - { - "image_path": "G:\\images\\combined\\006620_jpg.rf.5e5f1f3e0c605ca195cbe776a5f392f0.jpg", - "response": "The image shows a group of men standing in a large, unfinished warehouse. They are all dressed in business suits and are standing in a loose circle. Some of the men are holding cell phones, and one of them has a hand in his pocket. The warehouse has a bare concrete floor and large open beams on the walls. There are also some pieces of machinery visible in the background.", - "id": 4815 - }, - { - "image_path": "G:\\images\\combined\\006621_jpg.rf.6a48029f7366989fbfb14d75607e6a1f.jpg", - "response": "A group of men standing around a red flag.", - "id": 4816 - }, - { - "image_path": "G:\\images\\combined\\006624_jpg.rf.50602eac360c74f28320a406e715f344.jpg", - "response": "The image shows a construction site in a city. Several workers are working on a grid of steel bars, which are laid out in a grid on the ground. The workers are wearing yellow hard hats and are focused on their tasks. In the background, there are several buildings under construction, including one that has been completed and has a yellow sign on it. The sky is grey and overcast, and there is a street light on the left side of the image.", - "id": 4817 - }, - { - "image_path": "G:\\images\\combined\\006625_jpg.rf.513cf3a2157e6060f416dfc39f981871.jpg", - "response": "A construction site with several people working on the structure.", - "id": 4818 - }, - { - "image_path": "G:\\images\\combined\\006626_jpg.rf.1f46ea063bb0d881a20bb34cef39df89.jpg", - "response": " Two men(456,454),(602,997)(629,425),(770,997) standing in front of a sign that reads \" \u4e2d\u94c1\u4eba\u6c11\u91cd\u5efa\u7389\u6811\u4e8c\u4e00\u5de5\u7a0b\"", - "id": 4819 - }, - { - "image_path": "G:\\images\\combined\\006627_jpg.rf.ca677bfb3e769d11570dbb51c2312a51.jpg", - "response": "A group of men in suits standing in a circle in a lot.", - "id": 4820 - }, - { - "image_path": "G:\\images\\combined\\006628_jpg.rf.d733dd6ebe1dafe792ac5e344b8f4161.jpg", - "response": "In the image, a worker is seen wearing a blue shirt and a blue helmet. The worker is working on a large yellow valve, which is part of a large yellow pipeline. The pipeline is filled with a dark liquid. The worker is holding a green tool in his hand, and he is looking at the camera. The background is a concrete wall and a yellow pipeline.", - "id": 4821 - }, - { - "image_path": "G:\\images\\combined\\006630_jpg.rf.58507ab23bd00ceb4def78a1a30de324.jpg", - "response": "A worker in a yellow hard hat and blue coveralls is standing on a work platform. He is wearing a yellow hard hat and is looking down at a work surface. He is also wearing a blue glove on his left hand. In the background, there is a large red and white construction vehicle. To the far right, there is a red metal box. In the far distance, there is a mountain range.", - "id": 4822 - }, - { - "image_path": "G:\\images\\combined\\006631_jpg.rf.8e6a674f0e6eb2fc85600f461d37e008.jpg", - "response": "The image shows a construction crew working on a road project. The workers are wearing yellow hard hats and are installing\u8def\u8fb9\u77f3 along the road. The image is taken at a construction site with a red and yellow building in the background.", - "id": 4823 - }, - { - "image_path": "G:\\images\\combined\\006632_jpg.rf.389e6ec17516c553c80bb17b6e995887.jpg", - "response": "In the image there are two people standing next to a large piece of equipment. The equipment has many hoses and wires coming out of it. The people are wearing hard hats and one of them is holding a drill. They are also standing next to a truck.", - "id": 4824 - }, - { - "image_path": "G:\\images\\combined\\006633_jpg.rf.f013d495c1c5c7ad176f0a0de066b9b8.jpg", - "response": "The image shows a city street scene with a road on the left and a sidewalk on the right. A row of trees, some with yellow ribbons on them, are being worked on by a crew of four men wearing orange vests. One man is on the left, two others are in the middle, and the fourth is on the right. A truck is parked next to the sidewalk on the right. In the background, there are tall buildings and a hedge.", - "id": 4825 - }, - { - "image_path": "G:\\images\\combined\\006634_jpg.rf.05f5a9b0598e2eba17a3b04ce4246223.jpg", - "response": "Men in front of a large poster on the sidewalk.", - "id": 4826 - }, - { - "image_path": "G:\\images\\combined\\006635_jpg.rf.4d29dec068f1a2d20e014694cf758e2f.jpg", - "response": "The image shows two workers in a cave. They are wearing yellow and red hard hats, green raincoats and orange rain pants. One worker is on the left holding a drill while the other is on the right. They are both working in the rain. The word \"WORKER\" is in red on the bottom right of the image.", - "id": 4827 - }, - { - "image_path": "G:\\images\\combined\\006636_jpg.rf.1e3d0af4daa65816431954e1c64d86ab.jpg", - "response": "A worker in a red uniform and blue hard hat is standing on a platform in a substation, working on a transformer. The platform is surrounded by yellow caution tape. The worker is wearing white gloves and has a tool belt around his waist. The background shows a large transformer and many power lines.", - "id": 4828 - }, - { - "image_path": "G:\\images\\combined\\006637_jpg.rf.0089681bd14e0ec728506cc2bdd3da77.jpg", - "response": "In the image there are two workers wearing orange and red clothes and hardhats, one worker is on the left and the other is on the right. They are both crouching down and working on a piece of machinery. The worker on the left is holding a black pipe and the worker on the right is holding a black pipe with a red handle.", - "id": 4829 - }, - { - "image_path": "G:\\images\\combined\\006638_jpg.rf.1701bfa3ad274105f6501787485be4b6.jpg", - "response": "A man wearing a yellow hard hat and carrying two pieces of wood over his shoulder. He is standing in front of a building that is under construction.", - "id": 4830 - }, - { - "image_path": "G:\\images\\combined\\006639_jpg.rf.c753839d112bce7ff23586cc52b6d375.jpg", - "response": "a group of people standing around each other", - "id": 4831 - }, - { - "image_path": "G:\\images\\combined\\006640_jpg.rf.78312633ca8b6c9a032ae82ca31f08e8.jpg", - "response": "A group of people working on a bamboo structure.", - "id": 4832 - }, - { - "image_path": "G:\\images\\combined\\006642_jpg.rf.65d7ab5ea0bd473f638cf98ea57f0f8c.jpg", - "response": "A construction worker wearing a white helmet is working on a building.", - "id": 4833 - }, - { - "image_path": "G:\\images\\combined\\006643_jpg.rf.8c365ecb4b718563efc747bba6edd90a.jpg", - "response": "A construction site with three people working on it.", - "id": 4834 - }, - { - "image_path": "G:\\images\\combined\\006644_jpg.rf.4d6e9f55927ca361afa9f8685dbd6be6.jpg", - "response": "In the image there are two people working on a construction site, wearing hard hats and building a large structure of concrete.", - "id": 4835 - }, - { - "image_path": "G:\\images\\combined\\006645_jpg.rf.44c3815c98c32459d76666cd2de80ef1.jpg", - "response": "Two men in grey uniforms and yellow hard hats are looking at a large white and grey transformer. The man on the left is wearing a yellow hard hat with a red and grey sticker on the right side and a yellow hard hat with a red sticker on the left side. The man on the right is taking a picture of the transformer with a camera.", - "id": 4836 - }, - { - "image_path": "G:\\images\\combined\\006646_jpg.rf.d93a4b551bbb1e8a8a5e7279fe9f08b6.jpg", - "response": "A construction worker standing on a bridge with a yellow hard hat on.", - "id": 4837 - }, - { - "image_path": "G:\\images\\combined\\006647_jpg.rf.607aae3e65157cd8b346d389ddd15511.jpg", - "response": "In the image there is a group of people working on a construction site. They are working on a foundation for a building. Some of the people are wearing yellow vests for safety. In the background there is a blue sky with clouds. There is also a machine that looks like it is used for construction.", - "id": 4838 - }, - { - "image_path": "G:\\images\\combined\\006648_jpg.rf.538288f94538d47b4fcf31968163a72d.jpg", - "response": "The image shows two men in a room measuring a wall. They are wearing hard hats and one of the men is also wearing a white shirt. In front of them is a black tripod with a device on top, which appears to be a level or a measuring device. The wall they are measuring is grey and the room appears to be unfinished.", - "id": 4839 - }, - { - "image_path": "G:\\images\\combined\\006649_jpg.rf.c9ddc382e546760a246eaba0b2ae1f0e.jpg", - "response": "a group of men wearing hard hats", - "id": 4840 - }, - { - "image_path": "G:\\images\\combined\\006650_jpg.rf.02ca2d0df1782cf5d475fd20231edd20.jpg", - "response": "In the image there are two people wearing blue and white helmets, they are both dressed in work clothes. One person has a bag with yellow and orange stripes hanging on their shoulder. They are discussing a blueprint that is held by the other person. The person on the right is sitting on a white box. The background shows a wall that is only half built, it appears to be made of brick.", - "id": 4841 - }, - { - "image_path": "G:\\images\\combined\\0066511fff0f1419.jpg", - "response": "A black car is driving down the street next to a red double decker bus. There are multiple people walking on the sidewalk and crossing the street. One person is carrying a black bag and wearing a white shirt. There is a traffic light visible in the scene.", - "id": 4842 - }, - { - "image_path": "G:\\images\\combined\\006651_jpg.rf.801635a01e7461769eae62fea1b73f01.jpg", - "response": "A group of three men are hiking through the snow in a wooded area. They are all wearing hard hats and one of the men is carrying a large red and white pole. They appear to be wearing winter clothing and one of the men has a backpack on. The snow on the ground is knee deep in some places and the trees are covered in a light layer of snow.", - "id": 4843 - }, - { - "image_path": "G:\\images\\combined\\006652_jpg.rf.58fcfefaf1ea712e1713344c4a4d853d.jpg", - "response": "The image shows a street scene with two workers wearing orange uniforms and yellow helmets standing on the left side of the frame. They are standing in front of a row of white houses. There are four red lanterns hanging from a light pole in the middle of the frame. Each lantern has gold writing on it. The topmost lantern reads \"\u606d\u559c\u53d1\u8d22\", the second reads \"\u4e07\u4e8b\u5982\u610f\", the third reads \"\u798f\u661f\u9ad8\u7167\", and the bottom most lantern reads \"\u5e74\u5e74\u6709\u4f59\". The sky is blue and the street is empty.", - "id": 4844 - }, - { - "image_path": "G:\\images\\combined\\006653_jpg.rf.9202167813e108c0d96868637c3112e4.jpg", - "response": "The image shows a group of people walking in front of a grey building with a red sign that says \"\u5b89\u5168\u751f\u4ea7\". The people are wearing winter clothes and one of them is carrying a black bag. There is a large pile of dark grey rocks or soil to the left of the people and the building.", - "id": 4845 - }, - { - "image_path": "G:\\images\\combined\\006654_jpg.rf.63987beea1441399362adfd519977588.jpg", - "response": "A man in a red hard hat standing in a construction site.", - "id": 4846 - }, - { - "image_path": "G:\\images\\combined\\006655_jpg.rf.0d271df675d8f5ed84d6a94affad3296.jpg", - "response": "A construction worker is working on a construction site, placing a white mat on the ground.", - "id": 4847 - }, - { - "image_path": "G:\\images\\combined\\006656_jpg.rf.3f3bcdf1a5311ad9d0250deb38d02c79.jpg", - "response": "A man in a suit and a man in a hard hat are shaking hands in a house that is still under construction. The man in the suit is holding a clipboard.", - "id": 4848 - }, - { - "image_path": "G:\\images\\combined\\006657_jpg.rf.4a0f3db6c6906838c1e1b38ba1f7b0cd.jpg", - "response": "A group of men standing around talking in a room that has no walls and is being built. They are all wearing hard hats.", - "id": 4849 - }, - { - "image_path": "G:\\images\\combined\\006658_jpg.rf.2586208d9c7eb97e37858c4d5601d8ce.jpg", - "response": "a group of people standing in the snow", - "id": 4850 - }, - { - "image_path": "G:\\images\\combined\\006660_jpg.rf.e07673c29c0f9c41efc3015525a0491c.jpg", - "response": "The picture shows a group of people in a room. All the people in the picture wear black clothes and red hats. The room they are in is currently under construction. The walls have not been finished, only the white cement foundation was painted. In the far right corner of the room, there is a door with a red frame.", - "id": 4851 - }, - { - "image_path": "G:\\images\\combined\\006662_jpg.rf.303a1d8ad1d5e353636c93483547a558.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is sitting on the ground. He is surrounded by broken bricks and there are more bricks on the ground in different sizes. There are also some brooms in the scene.", - "id": 4852 - }, - { - "image_path": "G:\\images\\combined\\006663_jpg.rf.218f99bc6195d1c7a67474776d6bdaf6.jpg", - "response": "A man in a white shirt and blue hat crouching down in the sand and pulling on a string.", - "id": 4853 - }, - { - "image_path": "G:\\images\\combined\\006664_jpg.rf.d83956da4984b195df280dbde76e885c.jpg", - "response": "The image shows two workers standing on a yellow ladder, working on a grey wall. They are wearing yellow and white helmets, and the man in front is wearing a white shirt. The wall has several square holes in it, and the workers are applying cement with brushes. In the background, there are other workers and a yellow loader. The sky is light blue with clouds.", - "id": 4854 - }, - { - "image_path": "G:\\images\\combined\\006665_jpg.rf.c198de145c0148c0adba01ba6b086e94.jpg", - "response": "A group of people working on a large object in the ground.", - "id": 4855 - }, - { - "image_path": "G:\\images\\combined\\006666_jpg.rf.847afdd7e0d2939a3ff581ab2b96e4f4.jpg", - "response": "A construction site with several people working on it.", - "id": 4856 - }, - { - "image_path": "G:\\images\\combined\\006667_jpg.rf.dcca6537503792a362ff7c0622dff49b.jpg", - "response": "A group of men and women standing next to each other.", - "id": 4857 - }, - { - "image_path": "G:\\images\\combined\\006668_jpg.rf.373dd7be1dc7446f5470c600b824a300.jpg", - "response": "A man is using a chainsaw to cut through a large tree trunk. He is wearing an orange safety helmet and an orange safety vest. The vest has a yellow reflective stripe on it. He is also wearing brown pants. The man is standing in a clearing that is filled with tree trunks and branches. Some of the branches are on the ground, and some are still attached to the tree trunks. The ground is covered in leaves and small twigs.", - "id": 4858 - }, - { - "image_path": "G:\\images\\combined\\006669_jpg.rf.4f0970025cceec77f0f3705abd4678a3.jpg", - "response": "A man(457,494),(623,636) is working in a pit of sand", - "id": 4859 - }, - { - "image_path": "G:\\images\\combined\\006670be1d10e0b3.jpg", - "response": "a sign that has the number 11 on it", - "id": 4860 - }, - { - "image_path": "G:\\images\\combined\\006671_jpg.rf.a47f4a4f7b81d839db561c8dd6f4a3f8.jpg", - "response": "In the image there is a group of people standing in front of a pile of goods. The people are wearing hard hats and some of them are wearing backpacks. In front of the people, there are several stacks of goods, including several black boxes and several bags. The people and the goods are located on a construction site.", - "id": 4861 - }, - { - "image_path": "G:\\images\\combined\\006672_jpg.rf.ac06b9f545dfa7b481228e1c48911d05.jpg", - "response": "A group of people wearing yellow jackets and hard hats stand in front of a power substation.", - "id": 4862 - }, - { - "image_path": "G:\\images\\combined\\006673_jpg.rf.0a81b71d45bbdaf09790171a2e6ea55a.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 4863 - }, - { - "image_path": "G:\\images\\combined\\006674_jpg.rf.f736cfdba5baf010140877523b951ff0.jpg", - "response": "A group of men working on a train in a tunnel.", - "id": 4864 - }, - { - "image_path": "G:\\images\\combined\\006675_jpg.rf.77789af7aa52a8a2ecefd7297b501a1f.jpg", - "response": "a group of people standing around each other", - "id": 4865 - }, - { - "image_path": "G:\\images\\combined\\006676_jpg.rf.3f71b6ae75b83cd55b132c88e1f047e5.jpg", - "response": "In the image there is a group of men working in a mine. They are all wearing hard hats and some are also wearing backpacks. They are working together to move a large piece of mining equipment. The ground they are standing on is covered in coal.", - "id": 4866 - }, - { - "image_path": "G:\\images\\combined\\006677_jpg.rf.4383b3707bc836690cef4f5ceb91e75d.jpg", - "response": "An image of a man wearing a yellow hard hat in a unfinished wooden framed building.", - "id": 4867 - }, - { - "image_path": "G:\\images\\combined\\006678_jpg.rf.a718665ca9bd858efe9de264bc7869c2.jpg", - "response": "A group of four men standing next to each other.", - "id": 4868 - }, - { - "image_path": "G:\\images\\combined\\006679_jpg.rf.d63648a4b726e6a871876d396af4025c.jpg", - "response": "A man wearing a hard hat and gloves is using a jackhammer to chip away at a cement wall.", - "id": 4869 - }, - { - "image_path": "G:\\images\\combined\\006680_jpg.rf.4eb46738949bc514f0b0af7674b0759a.jpg", - "response": "A group of people working on a building construction site.", - "id": 4870 - }, - { - "image_path": "G:\\images\\combined\\006683_jpg.rf.b1fd3a507de9b22b5ce77387821c7925.jpg", - "response": "a group of men walking in front of a building", - "id": 4871 - }, - { - "image_path": "G:\\images\\combined\\006684_jpg.rf.db8733e39a3fd5489420b3a0949315d5.jpg", - "response": "A man working on a building site wearing a yellow helmet and high visibility vest.", - "id": 4872 - }, - { - "image_path": "G:\\images\\combined\\006685_jpg.rf.80f12f86806dacda0334e13c657f83f1.jpg", - "response": " Two linemen(473,809),(589,998)(727,572),(842,943) work on fixing a power line in the snow", - "id": 4873 - }, - { - "image_path": "G:\\images\\combined\\006686_jpg.rf.f299fb7f50a230a81299029f78094a4b.jpg", - "response": "The image shows a group of three men working in a large tunnel. They are all wearing hard hats and the\u96a7\u9053 is lit with green and purple lights. The floor of the tunnel is covered in a layer of earth.", - "id": 4874 - }, - { - "image_path": "G:\\images\\combined\\006687_jpg.rf.b6eabf6a4481be8b6a2635bd572001ab.jpg", - "response": "A worker on a building site wearing a hard hat and using a level to check the vertical plumb of a steel beam.", - "id": 4875 - }, - { - "image_path": "G:\\images\\combined\\006688_jpg.rf.d7bfac1f3a2af53ea130c610ea0b0d05.jpg", - "response": "A worker in a red jacket and yellow helmet is sitting on a black chair. They are surrounded by water and have their hands covered in red gloves. They are spraying water from a pipe with a black nozzle. The background is a concrete wall and a dark grey pipe.", - "id": 4876 - }, - { - "image_path": "G:\\images\\combined\\006690_jpg.rf.85fc20f7fbc4e5fa5c1745b22cbde5b2.jpg", - "response": "a man wearing a blue shirt and a yellow helmet", - "id": 4877 - }, - { - "image_path": "G:\\images\\combined\\006691_jpg.rf.9f8ef38ebca224db491640c92c585cbe.jpg", - "response": "a group of men standing on the sidewalk", - "id": 4878 - }, - { - "image_path": "G:\\images\\combined\\006692_jpg.rf.c4d388a1163840f1fdad4756927080e6.jpg", - "response": "In the image there are two people wearing construction gear. The person on the left is a man and is wearing a yellow vest and a blue helmet. The person on the right is a woman and she is wearing a white helmet. They are both holding a blueprint and looking at it. The blueprint is rolled up and is being held by the woman. They are both standing in a construction site.", - "id": 4879 - }, - { - "image_path": "G:\\images\\combined\\006693_jpg.rf.6c342f0aa8bdf594da62b0d94d325ce5.jpg", - "response": "a group of people standing around each other", - "id": 4880 - }, - { - "image_path": "G:\\images\\combined\\006694_jpg.rf.453343c49ff2523464b55a84c80f37c3.jpg", - "response": "a group of men standing around a table with a large piece of paper on it", - "id": 4881 - }, - { - "image_path": "G:\\images\\combined\\006695_jpg.rf.ce8496e22d46cc61b3ade571ab8dcc89.jpg", - "response": "A group of workers in orange vests and helmets are working in a construction site. They are removing debris and dismantling parts of the structure. In the foreground, a worker is carrying a large bag of concrete. To the right, another worker is using a tool to remove debris. In the background, another worker is using a broom to clear the area. The walls of the structure are grey concrete and the roof is open.", - "id": 4882 - }, - { - "image_path": "G:\\images\\combined\\006696_jpg.rf.de5e7f9d8b4b5ec86e5d32c3295ca191.jpg", - "response": "A train track being worked on by many workers.", - "id": 4883 - }, - { - "image_path": "G:\\images\\combined\\006697_jpg.rf.ab6ee7a33cd65c1f66b25c0f99a86dc5.jpg", - "response": "A construction worker wearing a red hard hat and carrying a red metal bar. He is wearing a grey jacket and yellow work gloves. He has a large scar on his face. There are two buildings under construction in the background, one on the left and one on the right. The one on the left is taller and has many glass windows. The one on the right is taller and covered with a green net. The sky is clear and blue.", - "id": 4884 - }, - { - "image_path": "G:\\images\\combined\\006698_jpg.rf.242285e3001222c9de9fe0e6e54a43a2.jpg", - "response": "The image shows a construction site with multiple cranes in operation. There are several construction workers visible, some of them wearing hard hats. The ground is covered in wooden supports and red mesh, and there are several unfinished concrete structures. The sky is blue with some white clouds.", - "id": 4885 - }, - { - "image_path": "G:\\images\\combined\\0066ea5c6b26c5e2.jpg", - "response": "A group of five men are standing on a stage. They are all wearing baseball caps and jeans. The man on the far left is wearing a black shirt with white writing on it. The man second from the left is wearing a white shirt with black writing on it. The third man from the left is wearing a black shirt with white writing on it. The man in the center is not wearing a shirt. The man on the far right is wearing a jean jacket with no shirt underneath. They are all holding their arms up in the air.", - "id": 4886 - }, - { - "image_path": "G:\\images\\combined\\006700_jpg.rf.49d50dd849a095fe2ebe8757b6568c33.jpg", - "response": "A group of five men working on a construction site. They are all wearing hard hats and the site is filled with wooden poles and steel bars.", - "id": 4887 - }, - { - "image_path": "G:\\images\\combined\\006701_jpg.rf.223343085f601ddbdc679827a7ca39af.jpg", - "response": "A construction site with three people present. One person is wearing a yellow vest and blue hard hat, standing in the center of the image, looking at a blueprint. Another person is standing in the background, wearing a yellow vest and a white hat. The third person is on the far left of the image, wearing a yellow vest and a white hat. There are two tables present in the scene, one in the foreground and one in the background. The tables have several items on them, including a cup, a book, a mouse, and a keyboard. There is also a backpack on the ground in the foreground.", - "id": 4888 - }, - { - "image_path": "G:\\images\\combined\\006702_jpg.rf.e54e8b6cdd9dadbb74a37b277799d239.jpg", - "response": "A group of three people looking at a blueprint.", - "id": 4889 - }, - { - "image_path": "G:\\images\\combined\\006703_jpg.rf.445f9a8efaaa81e7eaf1c429bacf8c30.jpg", - "response": "The image shows a group of construction workers wearing orange vests, working on a building site. The workers are on a scaffolding, and some of them are standing on it. They are working on a tall structure made of steel rebar. The sky is overcast, and there are a few clouds in the sky.", - "id": 4890 - }, - { - "image_path": "G:\\images\\combined\\006704_jpg.rf.6a7342de179fb7a1c7a39985b6e9410b.jpg", - "response": "A group of linemen working on power lines.", - "id": 4891 - }, - { - "image_path": "G:\\images\\combined\\006705_jpg.rf.77955e8b6beca0a6b722e480c8859c1c.jpg", - "response": "An electrician repairs a transformer on the side of a building.", - "id": 4892 - }, - { - "image_path": "G:\\images\\combined\\006706_jpg.rf.d24abc63d6a55add38fd9034a444e6cc.jpg", - "response": "A group of men standing in a room with one man pointing at a device on the wall.", - "id": 4893 - }, - { - "image_path": "G:\\images\\combined\\006707_jpg.rf.40ef8f3a6b6687c27d56b8f3d3c5e1ce.jpg", - "response": " A miner(235,124),(523,997) is working in a mine shaft.", - "id": 4894 - }, - { - "image_path": "G:\\images\\combined\\006708_jpg.rf.1b95c1212f23c1154485b5822b4edfe6.jpg", - "response": "A man with a yellow hard hat and a yellow hard hat are working on a house.", - "id": 4895 - }, - { - "image_path": "G:\\images\\combined\\006709_jpg.rf.7e65c985d0f0c4b88d8d8f156da4fcaf.jpg", - "response": "A train(4,77),(879,459) on the tracks", - "id": 4896 - }, - { - "image_path": "G:\\images\\combined\\006710_jpg.rf.b54a2da2d744984889d036922f2854c1.jpg", - "response": "The photo shows a group of workers at a construction site. They are all wearing yellow hard hats and some are wearing orange safety jackets. They are standing inside a large\u7b3c\u5b50 of iron rods, which forms the framework for a bridge. In the background, there is a pile of wooden planks.", - "id": 4897 - }, - { - "image_path": "G:\\images\\combined\\006711_jpg.rf.fc0428aeb162f5686d4f1e8e4cf491c9.jpg", - "response": "The image shows a group of construction workers working on a bridge. They are all wearing hard hats and are focused on their tasks. The bridge appears to be under construction, with some parts already completed and others still in the process of being built. The workers are spread out across the bridge, with some working on the left side and others on the right. The background shows a red truck parked on the right side of the image, and a river can be seen flowing below the bridge.", - "id": 4898 - }, - { - "image_path": "G:\\images\\combined\\006712_jpg.rf.a07944052add4de117948a70a0c1ccd9.jpg", - "response": "A group of people in hard hats stand in a large, unfinished room. Some of them are wearing suits and ties.", - "id": 4899 - }, - { - "image_path": "G:\\images\\combined\\006713_jpg.rf.55a72ebc355160e9bc5c5a380dd1e9ec.jpg", - "response": "A worker is on a telephone pole, fixing some wires. He is using a ladder to reach the top of the pole. There are two motorcycles parked next to the pole. One is parked on the left side and the other one is parked on the right side. Both motorcycles are of the same model. In front of the pole, there is a small car parked. On the right side of the scene, there is a building with a sign that says \"\u6d77\u5357\u7535\u7f51\". The building is made of concrete and has two doors.", - "id": 4900 - }, - { - "image_path": "G:\\images\\combined\\006714_jpg.rf.b17f1ffa24bf82e71f5e69ee3b3d3164.jpg", - "response": "The image shows three workers in a room with green pipes on the walls. They are all dressed in green work clothes. Two of them are wearing white helmets. One of them is holding a large drill, while the other two are standing nearby. One of them is holding a large rock. They are all looking at something on the ground.", - "id": 4901 - }, - { - "image_path": "G:\\images\\combined\\006715_jpg.rf.9f9def4534ce8b3a835ac9592abb6ab2.jpg", - "response": "A construction site with two workers in hard hats and blue and yellow work clothes. They are working on a large structure made of steel rebar.", - "id": 4902 - }, - { - "image_path": "G:\\images\\combined\\006716_jpg.rf.3e5f27091f0075af81ee2a1fd294313e.jpg", - "response": "The image shows two workers, one wearing blue helmet and dark green clothes, the other wearing a blue helmet and clothes with a little brown on it, pulling a black cable on the side of a road. The road is grey and there are some trees without leaves in the background. To the right of the scene, a blue truck is parked.", - "id": 4903 - }, - { - "image_path": "G:\\images\\combined\\006717_jpg.rf.95554395f85e7aa6cf97f4b01b87c420.jpg", - "response": "A couple of men in camouflage uniforms and hard hats working on a metal rod at night.", - "id": 4904 - }, - { - "image_path": "G:\\images\\combined\\006718_jpg.rf.56b53b798542eec0b216fb01db03c82a.jpg", - "response": "A man in a yellow hard hat and orange vest standing in front of a power line tower with his arms crossed.", - "id": 4905 - }, - { - "image_path": "G:\\images\\combined\\006720_jpg.rf.980bc7bcc62c79a9902abde0d08d1c78.jpg", - "response": "A worker is painting a wall with a roller. The wall is being painted with a green and blue color scheme. The worker is standing on a ladder and there are some wooden scaffolding nearby. The worker is wearing a red helmet and a pair of dark green overalls.", - "id": 4906 - }, - { - "image_path": "G:\\images\\combined\\006721_jpg.rf.cd29883ad454c77a384bafda44d74822.jpg", - "response": "The image shows three construction workers at a construction site. They are all wearing hard hats and one of them is wearing a green camouflage jacket. The middle worker is holding a large orange pipe and is pouring liquid concrete into a large metal rebar grid. The worker on the far left is holding a long tool and is wearing a blue hard hat. The worker on the far right is also holding a long tool and is wearing a yellow hard hat. The scene is set at a construction site with a yellow metal fence in the background.", - "id": 4907 - }, - { - "image_path": "G:\\images\\combined\\006722_jpg.rf.e2197ed113bcf9476f1d67cda40e1f32.jpg", - "response": "In the image there are three men wearing construction clothes and hard hats. They are working on a construction site which is in the mountains. There is a yellow and orange construction vehicle in the background. On the ground there is a black box and a yellow pipe.", - "id": 4908 - }, - { - "image_path": "G:\\images\\combined\\00672399e1e9e074.jpg", - "response": "A close up of a Detecto analog clock face with a red second hand. The numbers on the clock are dirty and the second hand is covered in dust. The second hand is red and has a circular silver bolt in the middle. The Detecto logo is visible on the clock face.", - "id": 4909 - }, - { - "image_path": "G:\\images\\combined\\006723_jpg.rf.a12a1d62d07eb9ccacfc21c56109de83.jpg", - "response": "A man in a grey shirt and a white helmet looking off into the distance.", - "id": 4910 - }, - { - "image_path": "G:\\images\\combined\\006724_jpg.rf.b0183f6c649c05607cce0cd56b1617f7.jpg", - "response": "A construction worker is seen in the image, wearing a yellow hard hat and a grey shirt. The worker is on a mountain side, standing on a ladder and using a shovel to pour concrete into a mold. The ladder is placed on the left side of the image and the mountain side is steep. The worker is positioned near the center of the image and the sky is filled with clouds in the background.", - "id": 4911 - }, - { - "image_path": "G:\\images\\combined\\006725_jpg.rf.9100ef8aa242e0a5b902295531533d6a.jpg", - "response": "a group of men standing in front of a building that is being built", - "id": 4912 - }, - { - "image_path": "G:\\images\\combined\\006726_jpg.rf.ae5c6a4a55a699b7bc4f3beddf7fe398.jpg", - "response": "The image shows a group of construction workers working on a building site. They are all wearing hard hats and are focused on their tasks. The workers are scattered around the site, with some sitting on a concrete block and others standing or crouching. They are all wearing blue jackets and red hard hats. In the foreground, a red hard hat is placed on a wooden plank.", - "id": 4913 - }, - { - "image_path": "G:\\images\\combined\\006727_jpg.rf.3d5dea93abbf618c549b678c3aeb7e55.jpg", - "response": "A group of men in hard hats walking in front of a large back hoe.", - "id": 4914 - }, - { - "image_path": "G:\\images\\combined\\006728_jpg.rf.1320e363db8b96e618b1d5e4bc1b8086.jpg", - "response": " Men(501,495),(697,997)(801,462),(997,997)(387,592),(460,723) working on a ship at night", - "id": 4915 - }, - { - "image_path": "G:\\images\\combined\\006729_jpg.rf.d52e436086905806d7262ea27f401261.jpg", - "response": "A group of men wearing hard hats stand in a construction site.", - "id": 4916 - }, - { - "image_path": "G:\\images\\combined\\006730_jpg.rf.eb20d91e80e49a8ba03bb7136a4ee29a.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a construction site. He is wearing a yellow hard hat, a grey shirt, a brown belt and is holding a yellow tool. He is squatting down and working on a red structure. There are many orange and yellow rods in the foreground. In the background, there are a few other workers, some buildings and a blue sky.", - "id": 4917 - }, - { - "image_path": "G:\\images\\combined\\006731_jpg.rf.03d2acd1ff9faecd35138515d8c5eb86.jpg", - "response": "A group of three workers wearing orange jumpsuits and red helmets are working on a scaffold at a construction site. They are standing on the scaffold, which is built around a large concrete structure. The workers are focused on their tasks, and the one in the center of the group is climbing a ladder. The two others are engaged in other tasks. The sky is visible through the top of the image, and the sunlight is shining on the workers and the scaffold.", - "id": 4918 - }, - { - "image_path": "G:\\images\\combined\\006732_jpg.rf.765e7ff3b24c7aa41519d80781a409fd.jpg", - "response": "The image shows a group of men wearing hard hats and coats standing in a large, unfinished building. They are all wearing ties. Some of the men are pointing at something in the distance. In the foreground, one man is wearing a watch on his left wrist.", - "id": 4919 - }, - { - "image_path": "G:\\images\\combined\\006733_jpg.rf.0a3e4a9b53e765be65b2f0bddcde2cff.jpg", - "response": "A construction site with a large pile of wood and metal in the foreground. There is a bridge in the background.", - "id": 4920 - }, - { - "image_path": "G:\\images\\combined\\006735_jpg.rf.f26c23b585e7b871ccde89234027d71b.jpg", - "response": "A group of workers are working on an electricity pylon in a field. They are all wearing yellow hard hats and work clothes. One man is on the left, he is wearing a yellow hard hat and over the shoulder bag. He is holding a large tool in his hands. Another man is on the right, he is not wearing a hat but his sleeves are rolled up. A third man is in the middle, he is wearing a yellow hard hat and has a tool in his hands. He is looking at the pipe the men on the left and right are working on. The fourth man is behind the third, he is not wearing a hat but his sleeves are rolled up. He is holding a large tool as well.", - "id": 4921 - }, - { - "image_path": "G:\\images\\combined\\006736_jpg.rf.2967e29ab6758b25d6ba3d5bfb4e6797.jpg", - "response": "A worker is seen wearing a blue hard hat and standing in front of a bank of servers.", - "id": 4922 - }, - { - "image_path": "G:\\images\\combined\\006737_jpg.rf.cd6eaf51beec111224b3b67d58557b59.jpg", - "response": " A man(478,103),(689,935) leaning against a pillar(258,3),(493,837)", - "id": 4923 - }, - { - "image_path": "G:\\images\\combined\\006738_jpg.rf.f84132154ad3741d31711ac3bb807a6b.jpg", - "response": "A group of rescue workers stand under a waterfall of water.", - "id": 4924 - }, - { - "image_path": "G:\\images\\combined\\006739_jpg.rf.87c5753e4ccf9c4c91350afeedaac43d.jpg", - "response": "A man wearing a yellow hard hat is holding a rolled up blueprint in front of a house that is under construction. The man is wearing a plaid shirt and jeans.", - "id": 4925 - }, - { - "image_path": "G:\\images\\combined\\006740_jpg.rf.c57e1c72889a81777dfd4d349b7af044.jpg", - "response": " Workers(297,172),(618,910)(177,207),(363,998)(10,70),(257,997) in safety gear stand in a large underground tunnel", - "id": 4926 - }, - { - "image_path": "G:\\images\\combined\\006741_jpg.rf.15781a5f8982f63ba5b6eae524323e76.jpg", - "response": "a group of people standing under a wet parking lot", - "id": 4927 - }, - { - "image_path": "G:\\images\\combined\\006743_jpg.rf.ad81ef135985b1ee6d2a4ef845b74f0c.jpg", - "response": "A man(238,128),(372,642) in a red jumpsuit standing in a cave.", - "id": 4928 - }, - { - "image_path": "G:\\images\\combined\\006744_jpg.rf.6b6e697eb2616a4e9aa31b46838be3ce.jpg", - "response": " Two men(618,267),(997,770)(235,167),(645,821) working in a cave", - "id": 4929 - }, - { - "image_path": "G:\\images\\combined\\006745_jpg.rf.abdc7f18607f53a8f3617c4fe7372a48.jpg", - "response": "In the image, two workers are standing in a factory. They are both wearing yellow hard hats and blue work clothes. The worker on the left is holding a tablet and a pen, while the worker on the right is holding a clipboard. They are both looking up at a wall-mounted control panel. In front of them is a yellow control cabinet. To the left of the workers, there is a large orange pipe.", - "id": 4930 - }, - { - "image_path": "G:\\images\\combined\\006746_jpg.rf.8807cb17d31c21350d868ffede3c3518.jpg", - "response": "The image shows three construction workers in a construction site. They are all wearing blue work clothes and yellow helmets. The middle worker is pointing at something on a concrete column, and the other two workers are looking at it. There are several tools around them, including a shovel, a broom, and a bucket. The ground is covered with metal grating, and a piece of red rope is tied to a metal bar. The background shows a steel rebar structure of a building.", - "id": 4931 - }, - { - "image_path": "G:\\images\\combined\\006748_jpg.rf.faabaed98c74230a5fc98882af2107e4.jpg", - "response": "A construction site with multiple cranes and a large pile of grey pipes.", - "id": 4932 - }, - { - "image_path": "G:\\images\\combined\\006749_jpg.rf.1f5d33484454faddf35b21cc22a54bed.jpg", - "response": "A group of men working with a large spool of black cable.", - "id": 4933 - }, - { - "image_path": "G:\\images\\combined\\00674_jpg.rf.b842e9a799a4cdb5c4ee08ad298251d9.jpg", - "response": "In the image there is a woman wearing a yellow vest and a blue helmet. She is holding a tablet in her hands. In the background there is a building under construction. The building has a lot of scaffolding in front of it.", - "id": 4934 - }, - { - "image_path": "G:\\images\\combined\\006752_jpg.rf.8b2a135eb64ccd10f40b63966b604fc1.jpg", - "response": "In the image there are three workers wearing yellow helmets and overalls. They are installing a silver solar panel on a stand in a desert-like mountain area. The stand is made of metal and the solar panel is almost completely installed. In the background, there are several other solar panels installed on the ground and on the stand. There are also some buildings in the distance.", - "id": 4935 - }, - { - "image_path": "G:\\images\\combined\\006753_jpg.rf.6cf1c04a39a03d771119320e7f11a254.jpg", - "response": "A group of people walking in front of a building under construction", - "id": 4936 - }, - { - "image_path": "G:\\images\\combined\\006754_jpg.rf.f411f656e45de585d5781c5fd7695264.jpg", - "response": "A group of men standing around each other", - "id": 4937 - }, - { - "image_path": "G:\\images\\combined\\006755_jpg.rf.7b14f641da7c7cf715f78c7584c1b80c.jpg", - "response": "A group of three men standing in a room that is filled with rubble and debris. They are all wearing hard hats and one of them is holding a flashlight.", - "id": 4938 - }, - { - "image_path": "G:\\images\\combined\\006756_jpg.rf.cdebc0c73c286e257a056683b0e14b81.jpg", - "response": "Four men in high visibility vests and hard hats, standing in a construction site.", - "id": 4939 - }, - { - "image_path": "G:\\images\\combined\\006757_jpg.rf.c451ab8e8e78233bd99f9f0fc9a871c5.jpg", - "response": "a group of people standing around in a construction site", - "id": 4940 - }, - { - "image_path": "G:\\images\\combined\\006759_jpg.rf.ce0f72f1e46dea674d841c69e10e5d8e.jpg", - "response": "A group of three men in hard hats working on a power box.", - "id": 4941 - }, - { - "image_path": "G:\\images\\combined\\006760_jpg.rf.a783c562064d5d475a83030ebedc1564.jpg", - "response": "a group of people sitting around a large wooden dining table", - "id": 4942 - }, - { - "image_path": "G:\\images\\combined\\006761_jpg.rf.8c01bd1566d3d5ae2970d72621f11522.jpg", - "response": "A man in blue standing on a metal platform in front of a tall building under construction.", - "id": 4943 - }, - { - "image_path": "G:\\images\\combined\\006762_jpg.rf.c03dd414d7cb7084029a813a3969c435.jpg", - "response": "A group of men in hard hats are standing on a staircase in a factory. They are wearing dark blue clothing and some of them also have on white hard hats. One man is on the third step from the bottom of the staircase and is looking to the left. Another man is on the second step from the bottom and is looking to the right. The third man is on the bottom step and is looking to the right. The man at the top of the staircase is looking down. There is a large pipe on the left side of the image that is painted blue and has a yellow pipe attached to it. There is also a brown pipe attached to the blue pipe.", - "id": 4944 - }, - { - "image_path": "G:\\images\\combined\\006763_jpg.rf.c53024135d54f23bafa8d5a54d0c34b8.jpg", - "response": "A group of people working on a construction site.", - "id": 4945 - }, - { - "image_path": "G:\\images\\combined\\006764_jpg.rf.0b30c3ef50f83d1b1f62ed0ccdeea264.jpg", - "response": "The image shows three people standing in front of a small construction site. They are all wearing red helmets, with the person on the left wearing a white shirt and grey shorts. The person in the middle has long dark hair and is wearing a white top and blue jeans. The person on the right is taller and has short dark hair, he is wearing a black top and grey pants. They all seem to be deep in conversation. In the background, there is a small construction site with a yellow excavator parked on the left and a orange digger on the right. Behind the diggers, there is a white sign with black letters. The ground in front of the people is bare and dusty.", - "id": 4946 - }, - { - "image_path": "G:\\images\\combined\\006765_jpg.rf.be7d3466ef32fa8db705528180617137.jpg", - "response": "A large tunnel with two workers in orange safety jackets and hard hats looking at the camera.", - "id": 4947 - }, - { - "image_path": "G:\\images\\combined\\006766_jpg.rf.f44937d5c79fcd215d4c8560167524a3.jpg", - "response": "A group of people standing in a unfinished building.", - "id": 4948 - }, - { - "image_path": "G:\\images\\combined\\006768_jpg.rf.51dc5e3336361000992766480d9de67d.jpg", - "response": "The image shows a group of men walking in a line. They are all wearing white or blue shirts and are of varying heights and builds. They are all walking in the same direction, towards the right of the image. Most of the men are Chinese, and some are wearing ties. They are walking on a grey sidewalk in front of a large building under construction. The building has many tall grey pillars and a grey roof. It is currently being built and has scaffolding and construction materials scattered around it.", - "id": 4949 - }, - { - "image_path": "G:\\images\\combined\\006769_jpg.rf.bf53e9acbcf342137a643a6247fabc60.jpg", - "response": "A construction worker pouring concrete into a grid of rebar.", - "id": 4950 - }, - { - "image_path": "G:\\images\\combined\\006770_jpg.rf.af4a7e5269e8334ac289df07a4a79ca7.jpg", - "response": "A man is on a ladder, working on some wires. There are several other people around him, some standing and some crouching. They are all wearing hard hats. In front of them is a pile of equipment, including a box and some wires. There are also a few boxes on the ground. In the background, there is a building with many windows.", - "id": 4951 - }, - { - "image_path": "G:\\images\\combined\\006771_jpg.rf.218ff651582c8f0e1106c944604aad1e.jpg", - "response": "In the image there is a man who is working on a construction site. He is wearing a white shirt, a white helmet, and a red handkerchief around his neck. The man is holding a long tool in his right hand, which he is using to level out some concrete. The man is also wearing black pants. The whole scene seems to be taking place on a construction site.", - "id": 4952 - }, - { - "image_path": "G:\\images\\combined\\006772_jpg.rf.dbc02166907c297434f409aae3d3206c.jpg", - "response": "The image shows three men in red uniforms and orange helmets working on a power line. They are standing on a metal platform that is attached to a wooden pole. The man in the middle is pulling on a wire while the man on the left is holding a tool. The man on the right is reaching for a wire. The power box at the bottom of the pole has many wires and knobs. The sky is overcast.", - "id": 4953 - }, - { - "image_path": "G:\\images\\combined\\006773_jpg.rf.08b59b3b7cb47f5c1df9fe3f892623d8.jpg", - "response": "In the image there are three miners working in a coal mine. They are wearing yellow helmets and are dirty. In front of them is a large rock with a hole in it. They are using long tools to work on the rock.", - "id": 4954 - }, - { - "image_path": "G:\\images\\combined\\006774_jpg.rf.7b6e47ab0b24f8657969de188641195a.jpg", - "response": "The image shows a group of workers at a construction site. They are wearing hard hats and working on a large concrete structure. There are several workers spread out across the scene, with some standing on the ground and others on a small platform. They are all focused on their tasks, which include pouring concrete and connecting rebar. The sky is a clear blue color and the sun is shining brightly.", - "id": 4955 - }, - { - "image_path": "G:\\images\\combined\\006776_jpg.rf.2e83b6804487cf0f2f9ee6d0fa9c4fff.jpg", - "response": "A group of people walking out of a large tunnel.", - "id": 4956 - }, - { - "image_path": "G:\\images\\combined\\006777_jpg.rf.26c16da0739a90bb81b0f21e9cc152e3.jpg", - "response": "A group of three workers in yellow safety gear are standing in a field. They are dressed in blue work clothes and are looking into a piece of surveying equipment.", - "id": 4957 - }, - { - "image_path": "G:\\images\\combined\\006778_jpg.rf.0cffcd429591132541872d332cea66c4.jpg", - "response": "a group of people walking down a street", - "id": 4958 - }, - { - "image_path": "G:\\images\\combined\\006779_jpg.rf.6ecc672e6f23a9b12c5cd8b0c081af6f.jpg", - "response": "A man in a hard hat, red shirt and coveralls is holding a paint roller. He is smiling at the camera.", - "id": 4959 - }, - { - "image_path": "G:\\images\\combined\\006780_jpg.rf.5e7240a2393dfafcee20673240a1df6c.jpg", - "response": "A group of men standing around a table with laptops on it.", - "id": 4960 - }, - { - "image_path": "G:\\images\\combined\\006781_jpg.rf.75331f4b67d55948895a1f11fae6a3a5.jpg", - "response": "A worker is seen hanging from a power line in the image. He is wearing a blue shirt and blue pants. He is holding onto the power line with both hands. He is in the process of climbing a wooden power pole.", - "id": 4961 - }, - { - "image_path": "G:\\images\\combined\\006782_jpg.rf.e7a8f8cb2a82a07a111649bd411adfa9.jpg", - "response": "A group of men in white shirts and ties, some wearing hard hats, stand in a construction site. In the background there are two buildings under construction. To the right there is a yellow and black construction site fence. In the bottom right corner there is a website logo and the text Fang.com.", - "id": 4962 - }, - { - "image_path": "G:\\images\\combined\\006785_jpg.rf.49eec245c84dcb1bfe2dde1b7086c776.jpg", - "response": "In the image there are two workers wearing orange hard hats and safety vests, they are working on a construction site made of wood and metal. In the background there are tall buildings under construction. There is a blue sky with clouds in the upper part of the image.", - "id": 4963 - }, - { - "image_path": "G:\\images\\combined\\006786_jpg.rf.99f9458884296a54af63620162918009.jpg", - "response": "Two workers in blue uniforms and safety gear are working on an electrical panel. They are kneeling on the floor, one on the left and one on the right, with the electrical panel in front of them. The electrical panel is a metal box with several wires and cables coming out of it. The worker on the left is fixing a red and black cable that is tangled up, while the worker on the right is fixing a green and white cable. They both have blue helmets on and are wearing blue uniforms.", - "id": 4964 - }, - { - "image_path": "G:\\images\\combined\\006787_jpg.rf.4352fe682385ec2782fd2fcec8acc46d.jpg", - "response": "A group of workers wearing yellow helmets are huddled together, pulling on a large piece of concrete. They are all wearing yellow and grey jackets and have their hands protected by thick gloves. One worker has a white beard and is wearing blue jeans, while another worker is wearing a white hat and has a beard. They are all working on a construction site that has concrete pillars and ropes on the ground.", - "id": 4965 - }, - { - "image_path": "G:\\images\\combined\\006788_jpg.rf.da296db3b41ddcb83c2be929c1396061.jpg", - "response": "In the image two men are working on a large piece of equipment. One man is on top of the equipment and the other is on the bottom. They are both wearing hard hats and the man on the bottom is also wearing a red hard hat. The man on top is welding something on the equipment.", - "id": 4966 - }, - { - "image_path": "G:\\images\\combined\\006789_jpg.rf.da433e35347d48c6648f3d3bc5f4e9c1.jpg", - "response": "a group of men standing around a man in a suit", - "id": 4967 - }, - { - "image_path": "G:\\images\\combined\\006791_jpg.rf.32a45e763dc08ede5a797cf967006094.jpg", - "response": "A group of men standing around a bus.", - "id": 4968 - }, - { - "image_path": "G:\\images\\combined\\006792_jpg.rf.c6b6abd363d9d93a6b1f5762733e6758.jpg", - "response": "A construction worker in a yellow vest and a man in a white hard hat are standing on a construction site. The man in the white hard hat is holding a rolled up piece of paper.", - "id": 4969 - }, - { - "image_path": "G:\\images\\combined\\006794_jpg.rf.8e4a86ca39827469b50be3df420791f9.jpg", - "response": "A group of people sitting around a table.", - "id": 4970 - }, - { - "image_path": "G:\\images\\combined\\006795_jpg.rf.b948abd822ee604a81f03b709b468a9d.jpg", - "response": "The image shows a group of construction workers wearing yellow hard hats and safety vests, working on a large construction project in a desert setting. They are standing next to a massive sandbag that has been filled and is being held together by a large strap. The sandbag is filling with sand and appears to be almost fully constructed. The workers are standing in a line, with some closer to the foreground and others further back. The background is a barren desert landscape with no visible features.", - "id": 4971 - }, - { - "image_path": "G:\\images\\combined\\006796_jpg.rf.195a5457537566002fa65671c7ebe396.jpg", - "response": "A man in a blue jumpsuit and hat is climbing on a power pole. He is holding a tool in his hand.", - "id": 4972 - }, - { - "image_path": "G:\\images\\combined\\006797_jpg.rf.831f7acb8f6f62749f1b904bcd867ccd.jpg", - "response": "In the image there is a large pipe that is orange in color and has a metal structure around it. The pipe is connected to a valve that also has a metal structure around it. The whole scene is set in a factory with several people present, two of which are wearing yellow helmets and are working on the large pipe. The background is a bit blurry and there are several pipes and tubes in the scene.", - "id": 4973 - }, - { - "image_path": "G:\\images\\combined\\006798_jpg.rf.b223b5875afb18056d38a3cbfa91a3b2.jpg", - "response": "Men(673,209),(920,996)(544,209),(660,860)(124,164),(320,996)(10,241),(187,957) standing in a construction site", - "id": 4974 - }, - { - "image_path": "G:\\images\\combined\\006799_jpg.rf.22c87cf68a364f0c902a946c0f627daf.jpg", - "response": "An electrician is working on a power line.", - "id": 4975 - }, - { - "image_path": "G:\\images\\combined\\006800_jpg.rf.2556fcb5c849aaf2aceb8ff9aee30595.jpg", - "response": "A man wearing a white t-shirt and a yellow hard hat, holding a yellow drill. He is standing on a red ladder, which is placed on a wooden floor. He is smiling at the camera.", - "id": 4976 - }, - { - "image_path": "G:\\images\\combined\\006801_jpg.rf.dad078e1e46cafd1e670ddb62485fc37.jpg", - "response": "A man in a red hard hat is on a power line.", - "id": 4977 - }, - { - "image_path": "G:\\images\\combined\\006802_jpg.rf.e68eab85741536f27244ca4fd8c94706.jpg", - "response": "A group of people walking together, all wearing hard hats. They are in front of a construction site with a partially built building.", - "id": 4978 - }, - { - "image_path": "G:\\images\\combined\\006803_jpg.rf.47cfc9a7aea97a50b9c3a6767c8fdd24.jpg", - "response": "A man is working on some wires.", - "id": 4979 - }, - { - "image_path": "G:\\images\\combined\\006804_jpg.rf.f22b0afa7ab577873c9c9308d6f3abac.jpg", - "response": "The image shows a group of men standing next to each other. They are all wearing green hard hats, and some of them are also wearing suits. The men are standing in front of a construction site, which can be seen in the background.", - "id": 4980 - }, - { - "image_path": "G:\\images\\combined\\006805_jpg.rf.b8e94e91c88dc082733a5706da03a138.jpg", - "response": "A man wearing a hard hat standing in front of a large boat that is in the process of being built.", - "id": 4981 - }, - { - "image_path": "G:\\images\\combined\\006806_jpg.rf.549b9a45d5e4742f6f5d91f9fc614941.jpg", - "response": "In the image there are three men working on a construction site. They are all wearing orange protective clothing, including coveralls and hard hats. They are standing in front of a piece of machinery, possibly a digger, and there are several metal pipes in the foreground. The sky is light grey in color.", - "id": 4982 - }, - { - "image_path": "G:\\images\\combined\\006807670831da4d.jpg", - "response": "A black book cover with the title Tales from Underwood by David H Keller.", - "id": 4983 - }, - { - "image_path": "G:\\images\\combined\\006807_jpg.rf.c57c7c49a742bdda47360f5520491681.jpg", - "response": "A group of people working on a construction site.", - "id": 4984 - }, - { - "image_path": "G:\\images\\combined\\006809_jpg.rf.dbacf56d8fd5467005fe905c95840d6d.jpg", - "response": "The image shows three men wearing blue coveralls and white hard hats, walking in a field near a large white storage tank. The men are all holding white tablets and are positioned in front of the tank, which has a ladder on the right side of it. The middle man is holding a tablet in his right hand and looking to the left. The man on the left is also holding a tablet and looking to the right. The man in the back is also holding a tablet and looking to the left.", - "id": 4985 - }, - { - "image_path": "G:\\images\\combined\\006811_jpg.rf.9e3856de4cbbd9ae05fa4030fca2e6ce.jpg", - "response": "In the image there is a factory worker wearing a hard hat and orange safety goggles. They are working on a factory assembly line, cutting and welding metal. There is a bright orange hue to the sparks flying from the cutting tool. In the background, there is a yellow forklift and a few other people working.", - "id": 4986 - }, - { - "image_path": "G:\\images\\combined\\006812_jpg.rf.86fabe1785e8f09e103e2f2c09485c9a.jpg", - "response": "A group of four people, two men and two women, wearing hard hats are looking at blueprints on the ground. They are standing in a construction site with a building under construction in the background.", - "id": 4987 - }, - { - "image_path": "G:\\images\\combined\\006813_jpg.rf.5772812e46db7792dc9e7aba983041a0.jpg", - "response": "In the image two workers are seen carrying a large grey cable. They are both dressed in blue and are wearing blue helmets. The background shows a power tower and some transmission lines.", - "id": 4988 - }, - { - "image_path": "G:\\images\\combined\\006814_jpg.rf.587bd0c1c6e72cbaa1b77b35a4ab1986.jpg", - "response": "A construction worker wearing a red hat is sitting on scaffolding.", - "id": 4989 - }, - { - "image_path": "G:\\images\\combined\\006815_jpg.rf.5be2f7b19f646745efd07629652e0e28.jpg", - "response": "A man is working on a wooden beam while another man is working on a wooden beam. They are both wearing hard hats.", - "id": 4990 - }, - { - "image_path": "G:\\images\\combined\\006816_jpg.rf.11739e3be9b159390afd584b37f73c52.jpg", - "response": "The image shows a group of men wearing hard hats and business attire, walking down a narrow corridor. Some of the men are carrying white cords. The walls of the corridor are white and the ceiling has exposed pipes. The men are standing in a large open room with unfinished walls on the right side.", - "id": 4991 - }, - { - "image_path": "G:\\images\\combined\\006817_jpg.rf.45f98441159b54bd2441597bb227685e.jpg", - "response": "A group of people wearing hard hats are gathered around a cell phone. Some of the people are looking at the phone while others are looking at the camera. They are all dressed in work clothes.", - "id": 4992 - }, - { - "image_path": "G:\\images\\combined\\006818_jpg.rf.9e2bde6cc035141a001eec4167599515.jpg", - "response": "A group of men standing in front of a construction site", - "id": 4993 - }, - { - "image_path": "G:\\images\\combined\\006819_jpg.rf.893e8ced78f6eb311f90a3b2ed441209.jpg", - "response": "A group of men standing under a red and blue umbrella.", - "id": 4994 - }, - { - "image_path": "G:\\images\\combined\\006820_jpg.rf.49b802fa601f5f5a63f4f2b08c416cb7.jpg", - "response": "A construction worker wearing a yellow helmet and a blue shirt is working on a metal bar. He is holding a large wrench and is standing on a building. The background shows a cityscape with tall buildings.", - "id": 4995 - }, - { - "image_path": "G:\\images\\combined\\006821_jpg.rf.9ea9450cd47f017ffd258ce2cd17c69c.jpg", - "response": "The image shows a group of people walking through a large warehouse. The warehouse has a high ceiling and is filled with various machinery and equipment. There is a large machine on the left side of the image, and another machine on the right side. In the center of the room, there is a white box surrounded by people. The people are wearing jackets, with some of them wearing black and others wearing other colors. The room is also filled with various bags and boxes.", - "id": 4996 - }, - { - "image_path": "G:\\images\\combined\\006822_jpg.rf.4d4f7a3b44dc8ed486f3457733687630.jpg", - "response": "A man in a hard hat and orange work suit is pointing to something in the distance to a man in a hard hat, blue shirt and jeans. They are standing in a large, open building that appears to be in disrepair. There are several cinderblocks lying on the ground and debris scattered about. The two men are the only people in the image.", - "id": 4997 - }, - { - "image_path": "G:\\images\\combined\\006823_jpg.rf.a75b887abb4e9561ebc8baf68ae8e36e.jpg", - "response": "In the image there are three people working on a metal structure. Two of the people are wearing orange vests and yellow hats. The person on the left is wearing a red vest and hat, the person in the middle is wearing a camouflage vest and no hat. The third person is on the far right and is wearing a yellow hat but no other information can be ascertained about this person. The metal structure they are working on has many wires and pipes running through it.", - "id": 4998 - }, - { - "image_path": "G:\\images\\combined\\006824_jpg.rf.fbd4ba1b30624414bb9db6b3aff7acff.jpg", - "response": "An overhead view of a city street with a worker fixing a power line. The worker is wearing a blue helmet and clothes and is standing on a ladder. The street is filled with people and cars. There is a tree branch on the ground and a group of people standing on the sidewalk.", - "id": 4999 - }, - { - "image_path": "G:\\images\\combined\\006825_jpg.rf.c02f3a2e282cb30c985fc0150ed29d14.jpg", - "response": "The image shows three construction workers standing on a construction site. They are all wearing green hard hats and yellow jackets. The workers are positioned at different spots on the site, with one on the left, one in the center, and one on the right.", - "id": 5000 - }, - { - "image_path": "G:\\images\\combined\\006826_jpg.rf.bd4023bbb583aac0304aada540b1cbfc.jpg", - "response": "A worker wearing a yellow vest and a blue helmet is seen in this photo. He is working on an electricity meter that is installed on the wall of a wooden house. The worker is using a drill to fix the meter. There are also other workers in the background, but they are not in focus. In the foreground, there is a pile of grey rocks and a yellow rope.", - "id": 5001 - }, - { - "image_path": "G:\\images\\combined\\00682742582c3ae9.jpg", - "response": "A white board with a diagram of the Janzen-Connell model of plant community dynamics. The diagram is a simple line drawing of a forest with a tree labeled \"seedling recruitment\" and a line coming from it that branches into two lines, one labeled \"propability of survival\" and the other labeled \"seedling recruitment\". Below the diagram is a paragraph of text that explains the model.", - "id": 5002 - }, - { - "image_path": "G:\\images\\combined\\006827_jpg.rf.1cd705561b90cd33cc27a20436a3c008.jpg", - "response": "A group of men standing in front of a building.", - "id": 5003 - }, - { - "image_path": "G:\\images\\combined\\006828_jpg.rf.bf467e8bad4b864c5b0ac1353d888b06.jpg", - "response": "A group of people standing on a construction site.", - "id": 5004 - }, - { - "image_path": "G:\\images\\combined\\006829_jpg.rf.209df07d2632f1a1e6804bdba7ef18b5.jpg", - "response": "The image shows two workers in a cave. They are standing on a platform and are equipped with safety gear, including green and yellow jackets, yellow helmets, and green masks. The worker on the left is holding a yellow pipe, while the one on the right is holding a black pipe. The cave is filled with water, and there are tools and a pump on the platform. The background shows the cave's rough walls.", - "id": 5005 - }, - { - "image_path": "G:\\images\\combined\\006832_jpg.rf.09af7572253aef6b3038e3c928670249.jpg", - "response": "a man(237,258),(499,994) wearing a red shirt and a red hard hat(381,258),(491,377) is using a telescope on a tripod.", - "id": 5006 - }, - { - "image_path": "G:\\images\\combined\\006834_jpg.rf.2bd76d8b9c95a1fdda5f2a60d8a66c67.jpg", - "response": "A group of five men in yellow shirts and red helmets are standing on a construction site. They are wearing red helmets and yellow shirts. The site has many buildings in the background. One man is sitting on the ground and two others are standing behind him. They are all looking at a blueprint.", - "id": 5007 - }, - { - "image_path": "G:\\images\\combined\\006835_jpg.rf.f724a23a18e7c466366d4bd025e9fa88.jpg", - "response": "Two men wearing hard hats, one.", - "id": 5008 - }, - { - "image_path": "G:\\images\\combined\\006836_jpg.rf.a9218e019a30de90b1e5a06c347c767d.jpg", - "response": "In the image two workers dressed in orange jumpsuits and white helmets are crouched down inspecting a train track. They are holding a grey tablet in their hands. The sky is blue with some white clouds. In the background there is a yellow and grey building.", - "id": 5009 - }, - { - "image_path": "G:\\images\\combined\\006837_jpg.rf.c14c5434aa61b965c9599c1f55f20af4.jpg", - "response": "A worker welding inside a large circular metal structure.", - "id": 5010 - }, - { - "image_path": "G:\\images\\combined\\006838_jpg.rf.c5d9c2db4b377d12d2d7f67cd28710aa.jpg", - "response": "A group of men in suits and hard hats are standing in a large, unfinished building. The walls are bare and the floor is unfinished. In the background, there are a few other unfinished buildings.", - "id": 5011 - }, - { - "image_path": "G:\\images\\combined\\006839_jpg.rf.5b0af7f4507730539b64a3c597f8351a.jpg", - "response": "A construction worker wearing a yellow vest and blue hard hat is kneeling down on the street. He is holding a long tool and shining a light on the street. He is wearing a blue hard hat, a yellow vest, and black shoes. He is kneeling on the street next to a large metal beam.", - "id": 5012 - }, - { - "image_path": "G:\\images\\combined\\006840_jpg.rf.f7cefe20baf5fc4da4f930b566c931dc.jpg", - "response": "A group of six people standing next to each other in a dirt lot at night. They are all wearing hard hats and orange safety vests. The person on the far left is wearing a red safety hat and an orange safety vest. The person second from the left is wearing a blue hat and a blue coat. The third person from the left is wearing a red hat and a red coat. The person fourth from the left is wearing a blue hat and a blue coat. The person fifth from the left is wearing a white hat and a blue coat. The person on the far right is wearing a black coat and a black hat.", - "id": 5013 - }, - { - "image_path": "G:\\images\\combined\\006841_jpg.rf.804ef96777fa61db48e2959b8fdc87b4.jpg", - "response": "A group of three men in orange jumpsuits and blue hard hats are climbing a metal tower. They are wearing safety harnesses and are in the process of climbing a metal ladder attached to the tower. The sky is blue and clear behind them.", - "id": 5014 - }, - { - "image_path": "G:\\images\\combined\\006842_jpg.rf.35815d72d1987825d59a8a699800b414.jpg", - "response": "A man in blue overalls is hanging from a power line, working on a power box.", - "id": 5015 - }, - { - "image_path": "G:\\images\\combined\\006843_jpg.rf.c1abc72b44617d886f91625616d41318.jpg", - "response": "A group of three men standing next to each other wearing hard hats.", - "id": 5016 - }, - { - "image_path": "G:\\images\\combined\\006844_jpg.rf.b215de9c5242951032f48e4de51117f9.jpg", - "response": "A group of firefighters are gathered around a metal ladder. They are wearing yellow and black suits and red helmets. Some of them are holding hoses while one of them is pointing towards something. There is a car parked in the background.", - "id": 5017 - }, - { - "image_path": "G:\\images\\combined\\006845_jpg.rf.286910f52eb65e846470a257f856d2ee.jpg", - "response": "A man is working on a construction site with a large drill.", - "id": 5018 - }, - { - "image_path": "G:\\images\\combined\\006846_jpg.rf.13494396fa8b9cae8b97cd776ea3a8ad.jpg", - "response": "In the image two construction workers are standing underneath a sky. They are both wearing blue jackets and white helmets. In front of them is a large piece of machinery. To the left of the workers is a large grey pole. In the background there is a large building with brick walls. The sky is a clear blue.", - "id": 5019 - }, - { - "image_path": "G:\\images\\combined\\006847_jpg.rf.ddb2642e7c659f747c4a542b00b9b5aa.jpg", - "response": "A construction worker is receiving a box of food from a nurse.", - "id": 5020 - }, - { - "image_path": "G:\\images\\combined\\006848_jpg.rf.a3bced6b2e6c24bb8fd91289a8abb0ee.jpg", - "response": "Four men in hard hats looking at a blueprint in a construction area.", - "id": 5021 - }, - { - "image_path": "G:\\images\\combined\\006849_jpg.rf.a44ef80569e83a6b3899f2b57071abfa.jpg", - "response": "A construction site with multiple workers visible. There are multiple stacks of bamboo poles on the ground, and a few workers are standing around, one of them is carrying a bamboo pole. There are also a few workers further away near the buildings.", - "id": 5022 - }, - { - "image_path": "G:\\images\\combined\\006850_jpg.rf.cf32d66442e624e3a96223062c415ce0.jpg", - "response": "A man in a hard hat and coveralls is on a construction site. He is standing on a ladder and holding a trowel.", - "id": 5023 - }, - { - "image_path": "G:\\images\\combined\\006851_jpg.rf.6db0da686c4a4e223575c5ee6aaf1794.jpg", - "response": "In the image, three men are working on fixing a power line. They are all dressed in red safety jumpsuits and are wearing hard hats. The men are working on a metal platform that is attached to a utility pole. One of the men is working on the power line while the other two are holding the platform steady. The sky is overcast in the background.", - "id": 5024 - }, - { - "image_path": "G:\\images\\combined\\006852_jpg.rf.892253ce53e72ddfa06bd2f3542a7d48.jpg", - "response": "A man in a yellow vest and yellow hard hat stands in a tunnel. He is holding a sledge hammer.", - "id": 5025 - }, - { - "image_path": "G:\\images\\combined\\006853_jpg.rf.33a62484cd3bd09acac7600c139dcd82.jpg", - "response": "A roofer in a yellow vest and hard hat standing on a roof with a hammer in his hand.", - "id": 5026 - }, - { - "image_path": "G:\\images\\combined\\006854_jpg.rf.947f3d4f949e044d8486aa3539f10c5e.jpg", - "response": "The image shows two workers standing next to a large orange and grey piece of equipment. The machine has black wheels and is holding a large spool of grey wire. The workers are both dressed in blue and have hard hats on. One of the workers is holding a drill.", - "id": 5027 - }, - { - "image_path": "G:\\images\\combined\\006855_jpg.rf.133dc7d5bdb11c82217c51cd96266cc5.jpg", - "response": "A group of men in blue hard hats are standing in a muddy field. They are each holding a large metal pole. There is a pile of tree branches to the left of the men.", - "id": 5028 - }, - { - "image_path": "G:\\images\\combined\\006856_jpg.rf.7b442afa35ce3038ed48c163cb9a900d.jpg", - "response": "A man in a blue uniform and hard hat is working on an electrical box on a metal platform. He is wearing a tool belt and has a backpack. He is standing on the platform and appears to be working on the electrical box.", - "id": 5029 - }, - { - "image_path": "G:\\images\\combined\\006857_jpg.rf.cd55fb21553e99090ae1d9b6a442aff2.jpg", - "response": "In the image there are two construction workers observing a building site. They are both wearing orange helmets and green and orange work clothes. The man on the left is looking towards the right while the man on the right is looking towards the camera. They are both standing in front of a large white pillar. To the right of the workers there is a large crane lifting a grey object. Under the crane there is a patch of brown ground with a few tracks in it. In the background, to the left, there is a white building.", - "id": 5030 - }, - { - "image_path": "G:\\images\\combined\\006858_jpg.rf.356f90aa86bd475a5f0cd61113a65e15.jpg", - "response": "A group of people standing around each other.", - "id": 5031 - }, - { - "image_path": "G:\\images\\combined\\006859_jpg.rf.68eeb9258e67585917a5c13e5c3add2a.jpg", - "response": "A man in an orange helmet and yellow jacket is working on a red and white metal structure. He is standing on a platform that is part of the red and white metal structure. He is working on a metal beam that is part of the structure. The metal structure is located on top of a building. The man is wearing a tool belt and has a tool in his hand. The background shows a cityscape and a river.", - "id": 5032 - }, - { - "image_path": "G:\\images\\combined\\00685bc495504d61.jpg", - "response": "A Virgin plane sits on the tarmac next to a Qantas plane.", - "id": 5033 - }, - { - "image_path": "G:\\images\\combined\\00685d2d846c9052.jpg", - "response": "A tall red brick building with many windows.", - "id": 5034 - }, - { - "image_path": "G:\\images\\combined\\006860_jpg.rf.5dc6845c80aa151097d2dbce2be8b5a6.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and are working on a large construction project. The workers are of various heights and are positioned at different levels throughout the image. One worker is in the foreground and is leaning on a large tool, possibly a shovel or a large rod. Another worker is visible in the background, wearing a green shirt and a white helmet. They are crouching down and appear to be working on a large piece of metal. The construction site is filled with steel rebar, giving the scene an industrial feel.", - "id": 5035 - }, - { - "image_path": "G:\\images\\combined\\006861_jpg.rf.4cd6f947aa424c28ded14c1ad84688d5.jpg", - "response": "A group of workers in hard hats standing around looking at a clipboard.", - "id": 5036 - }, - { - "image_path": "G:\\images\\combined\\006864_jpg.rf.c4c4b0e01cdb5fc33090f13b8c596392.jpg", - "response": "A group of men standing around each other.", - "id": 5037 - }, - { - "image_path": "G:\\images\\combined\\006865_jpg.rf.194500d3ecbcf718565e1a336165e3b5.jpg", - "response": "A construction site with workers.", - "id": 5038 - }, - { - "image_path": "G:\\images\\combined\\006866_jpg.rf.1841a6bd4821e4ca5b9a34b7d9fd6d69.jpg", - "response": "In the image there is a man wearing a yellow hard hat who is walking through a large, unfinished building that has a lot of concrete and scaffolding. The man is wearing a plaid shirt and jeans. He is holding a cell phone in his hand. The building has a lot of windows and is not yet finished.", - "id": 5039 - }, - { - "image_path": "G:\\images\\combined\\006867_jpg.rf.9c89e864e87d619ea5559a79b4d449fc.jpg", - "response": "A group of railway workers wearing yellow vests and safety helmets are working on a railway. They are using different tools like spades and other railway tools. The railway is surrounded by some buildings and a city road.", - "id": 5040 - }, - { - "image_path": "G:\\images\\combined\\006868_jpg.rf.f1984118890bf53c67f5ea2dc44004d8.jpg", - "response": "The image features two men wearing helmets and harnesses, standing on a ropes course. They are smiling and appear to be enjoying themselves. The ropes course is set in a lush green forest.", - "id": 5041 - }, - { - "image_path": "G:\\images\\combined\\006869_jpg.rf.27c584befa0ae8e4e8b3d2ec8db9aae6.jpg", - "response": "The image shows a large room with a high, arched ceiling. The floor is covered in debris, and there are large, rusted metal coils stacked on the left side of the room. Several people are in the room, some wearing hard hats and some sitting on a bench against the back wall. A light is shining on the back wall, which has a sign that says \"14\" on it. The room is dark, with only the light shining on the back wall illuminating the space.", - "id": 5042 - }, - { - "image_path": "G:\\images\\combined\\006870_jpg.rf.9042a70de243d561b8bc3a51b4dda277.jpg", - "response": "Xiaogang, the first village of China's reform, today is a prosperous and modern village. The village has a history of 3,000 years, and was listed as a national AAA level tourist village in 2012. It is also the hometown of Xiaogang Declaration, the first rural contract that was signed in China.", - "id": 5043 - }, - { - "image_path": "G:\\images\\combined\\006871_jpg.rf.8a37afae6692a5de9715dbaede0eda4d.jpg", - "response": "A man and woman in hard hats and safety vests are shaking hands in front of a factory. The woman is holding a clipboard.", - "id": 5044 - }, - { - "image_path": "G:\\images\\combined\\006872_jpg.rf.8255a7a59bb2bcc772a1779a578878dd.jpg", - "response": "In the image two workers are crouched down working on a drain. One worker is on the left and is wearing a brown shirt and is in the process of lifting a metal cover over the drain. The other worker is on the right and is wearing a yellow shirt and is also working on the drain. Both workers are wearing white helmets.", - "id": 5045 - }, - { - "image_path": "G:\\images\\combined\\00687364c5c2f57e.jpg", - "response": "A yellow school bus with a red stop sign on the side.", - "id": 5046 - }, - { - "image_path": "G:\\images\\combined\\006873_jpg.rf.a137ccbbbc53c1352baac48256b842c1.jpg", - "response": "a group of people standing on a track", - "id": 5047 - }, - { - "image_path": "G:\\images\\combined\\0068742ad35c2586.jpg", - "response": "The image shows a city street scene with a crowd of people standing around a fire truck and a bus. There are several firemen in the scene, some of them wearing yellow jackets and safety helmets. The fire truck is parked on the street, and there is a ladder on top of it. A red and yellow striped cone is placed on the street near the fire truck. The crowd of people is standing behind a rope barrier, and there are two handbags visible among them. The street is lined with buildings, and a few cars are parked along the side of the road.", - "id": 5048 - }, - { - "image_path": "G:\\images\\combined\\006874_jpg.rf.d3d96c7e7a037e32a34c8eb8998fddb1.jpg", - "response": "In the image there is a group of people wearing hard hats and uniforms. They are working together to remove debris and clear a river of water. Some of the people are using shovels and some are using hoses to help with the cleanup. In the background there is a crane and a pile of rubble. The sky is overcast and there are a few trees visible in the background.", - "id": 5049 - }, - { - "image_path": "G:\\images\\combined\\006875_jpg.rf.fc89dc0fd095237793395fc7161d6b94.jpg", - "response": "An electrician working on a large electrical box.", - "id": 5050 - }, - { - "image_path": "G:\\images\\combined\\006876_jpg.rf.23be329bc5c356ba11daca0b0e8382c7.jpg", - "response": "The photo shows a group of men standing in a large room under construction. They are wearing orange vests and hard hats. In front of them is a table with several boxes on it. The boxes are labeled \"CRH\".", - "id": 5051 - }, - { - "image_path": "G:\\images\\combined\\006877_jpg.rf.38fec4899c8ab556513889182e89d052.jpg", - "response": "A man and a woman working on a construction site.", - "id": 5052 - }, - { - "image_path": "G:\\images\\combined\\006878_jpg.rf.f2f31fb267c05a6122392a33ffc76518.jpg", - "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a dark underground tunnel and looking at a plan or blueprint. The man on the left is younger and is wearing a safety vest with a yellow reflective stripe. The man on the right is older and is wearing a white hard hat with a blue and white safety vest. He has grey hair and is also wearing glasses.", - "id": 5053 - }, - { - "image_path": "G:\\images\\combined\\006879_jpg.rf.b45dae32b36a1c2bb4ea6c1212dc465b.jpg", - "response": "A group of workers in blue uniforms and orange helmets are working on a water main. They are standing in a hole in the street and there is a large pipe leading to the hole. They are working on a fire hydrant that is covered with orange and green hoses. There is a large truck behind them and a few cars parked on the street. The sky is overcast and there are a few trees in the background.", - "id": 5054 - }, - { - "image_path": "G:\\images\\combined\\006881240855f4a9.jpg", - "response": "Three women are holding up eight LG LTE smartphones in front of an LG booth at the Mobile World Congress.", - "id": 5055 - }, - { - "image_path": "G:\\images\\combined\\006881_jpg.rf.0110d1d7e5d1f81653e5b78b56baec39.jpg", - "response": "A group of men in gray uniforms are working on an electrical box on a pole.", - "id": 5056 - }, - { - "image_path": "G:\\images\\combined\\006883_jpg.rf.903e5d43474fe475d21b0ee088a36d17.jpg", - "response": "A large crane is working on a dock.", - "id": 5057 - }, - { - "image_path": "G:\\images\\combined\\006886_jpg.rf.f3fb8cfd055e6408c8d08b85ba09f769.jpg", - "response": "A worker in an orange jumpsuit and a blue hard hat is using a ladder to fix a wire on the side of a building. Another worker in an orange jumpsuit and a blue hard hat is standing on the ground next to the ladder.", - "id": 5058 - }, - { - "image_path": "G:\\images\\combined\\006887_jpg.rf.534837e1b0eaf864c29dfd68b6e65f29.jpg", - "response": "A construction worker in an orange uniform working on a scaffolding.", - "id": 5059 - }, - { - "image_path": "G:\\images\\combined\\006888_jpg.rf.8eba3756553e9b193d1dff1c1fd16d35.jpg", - "response": "A group of men working in a cave.", - "id": 5060 - }, - { - "image_path": "G:\\images\\combined\\006889_jpg.rf.3739f967d287934eca9d3fe985c5fddf.jpg", - "response": "A man wearing a hard hat and high visibility vest is smiling at the camera while holding a walkie talkie and a set of plans. He is standing in a tunnel.", - "id": 5061 - }, - { - "image_path": "G:\\images\\combined\\006892_jpg.rf.0a0e10d36c576824499943846e3e6078.jpg", - "response": "The image shows a construction site with several large, black, cylindrical oil tanks. The tanks are made of glass and are visible from the ground. In the foreground, there are four men working on the site. One man is wearing a yellow helmet and is standing near the left side of the image. Another man is wearing a blue helmet and is standing near the center of the image. A third man is wearing a yellow helmet and is standing near the right side of the image. The fourth man is kneeling on the ground and is wearing a blue helmet. There are pipes and other equipment on the site, and the sky is overcast.", - "id": 5062 - }, - { - "image_path": "G:\\images\\combined\\006894_jpg.rf.821ce238071a5bfaefcf91fddc297e51.jpg", - "response": "In the image there are two workers in a factory. One of them is on the left and the other one is on the right. They are both wearing blue and yellow helmets. The left worker is wearing a blue shirt and is bending over to look at some wires on the factory floor. The right worker is wearing a red helmet and a black jacket. They are crouching down to look at a green object on the floor. In front of them are many wires scattered on the floor. To the left of the workers are white metal shelves.", - "id": 5063 - }, - { - "image_path": "G:\\images\\combined\\006895_jpg.rf.0c2a379f00667d6891b1fd2dd8052e34.jpg", - "response": "a man wearing a black jacket(103,296),(513,995)", - "id": 5064 - }, - { - "image_path": "G:\\images\\combined\\006896_jpg.rf.7cda90eff0d54c08c2100336b8c08877.jpg", - "response": "The image shows a group of people standing in front of a construction site. There is a yellow excavator working in the background. The people are wearing hard hats and business attire. Some of them are pointing towards the construction site. In the foreground, there is a pile of dirt and a pile of rocks.", - "id": 5065 - }, - { - "image_path": "G:\\images\\combined\\006897_jpg.rf.7afebc6282124ff402c21290a9d9df18.jpg", - "response": "A man in a orange vest and helmet is talking on a cell phone.", - "id": 5066 - }, - { - "image_path": "G:\\images\\combined\\006899_jpg.rf.8a3305f0347dee7eaf8d7409c8c030ea.jpg", - "response": "A group of people working on a building.", - "id": 5067 - }, - { - "image_path": "G:\\images\\combined\\00689c649b17c484.jpg", - "response": "The image features a black computer keyboard with red LED lights. The keys on the keyboard are black and have red letters and symbols. The spacebar is also black and has a red border. The keyboard is sitting on a white surface. There is a black cord coming from the right side of the keyboard. The end of the cord is curled up. The keyboard is in focus and the background is blurred.", - "id": 5068 - }, - { - "image_path": "G:\\images\\combined\\006900_jpg.rf.46de56b801692e272438b7840626d545.jpg", - "response": "A construction worker in a yellow hard hat and uniform\u6500\u767b\u67b6\u3002", - "id": 5069 - }, - { - "image_path": "G:\\images\\combined\\006901_jpg.rf.ca4ded97861e30827357707620365123.jpg", - "response": "A group of men working on a construction site at night.", - "id": 5070 - }, - { - "image_path": "G:\\images\\combined\\006902_jpg.rf.0a1be89c981241318a7a24537d11045b.jpg", - "response": "The image shows a large unfinished bridge with a tall pylon. In the foreground, there are several workers, some of whom are wearing yellow vests. One worker is carrying a tool on his shoulder. In the background, there is a crane and a bulldozer. The sky is cloudy, and the ground is bare and dusty. There is a sign in the middle of the scene.", - "id": 5071 - }, - { - "image_path": "G:\\images\\combined\\006903_jpg.rf.e8c870a264bf67f846ca6dc27b283ab5.jpg", - "response": "A man wearing a hard hat is sitting on a pile of wood.", - "id": 5072 - }, - { - "image_path": "G:\\images\\combined\\006904_jpg.rf.6f8838caf95d77f2bdc80ed492deafac.jpg", - "response": "In the image, there are two workers wearing orange jumpsuits and yellow helmets who are installing a white net on a rocky hillside. The rocks in the hillside are brown and grey in color. There are also some white ropes and black arrows on the net. The workers seem to be in the middle of a steep slope.", - "id": 5073 - }, - { - "image_path": "G:\\images\\combined\\006906_jpg.rf.539949a0eee0f7f6c2256d009cc92012.jpg", - "response": "a group of men wearing hard hats", - "id": 5074 - }, - { - "image_path": "G:\\images\\combined\\006907_jpg.rf.8a9b7831b1781a3b65f91edac001ebc1.jpg", - "response": "A worker is seen standing on a power pole covered in ice, working on the power lines. The sky is overcast and snow is falling.", - "id": 5075 - }, - { - "image_path": "G:\\images\\combined\\006908_jpg.rf.ff154ac653013c8041ffa77fdcc5cbd5.jpg", - "response": "A man standing in a room with a yellow hat and a jacket.", - "id": 5076 - }, - { - "image_path": "G:\\images\\combined\\006909_jpg.rf.1f99b1ad2b3c580e4f3008ea985a2887.jpg", - "response": "A man is lying on a stretcher and is being carried away by firefighters. The man is covered in dirt and has a large gash on his head. There are several other people standing around the man, some of them in construction gear. In the background, there is a building under construction.", - "id": 5077 - }, - { - "image_path": "G:\\images\\combined\\006910_jpg.rf.8c4ceeb6a286e5e33878da96206d7f05.jpg", - "response": "A group of men in business attire and construction hats.", - "id": 5078 - }, - { - "image_path": "G:\\images\\combined\\006911_jpg.rf.f94f5c797537ebc11538829c0cebce50.jpg", - "response": "A man wearing a yellow hard hat and a brown tool belt.", - "id": 5079 - }, - { - "image_path": "G:\\images\\combined\\006912_jpg.rf.c5f7c528bbc9b12956bcf6cb731243d2.jpg", - "response": "In the image two workers are seen repairing an electricity tower. The sky is blue and there are a few clouds. The workers are wearing blue uniforms and are repairing the electricity tower. The tower is made of metal and has power cables and electrical components.", - "id": 5080 - }, - { - "image_path": "G:\\images\\combined\\006913_jpg.rf.2cc7e9be4451d7dfc859626967fea94c.jpg", - "response": "A group of workers in blue uniforms are on a bridge. They are working on a large white pipe that is either being lowered or raised. The pipe is in the process of being lowered and is bent at the middle. The workers are holding the pipe with a crane above them.", - "id": 5081 - }, - { - "image_path": "G:\\images\\combined\\006914_jpg.rf.39abbc969fe20774abf9bcc10c461e16.jpg", - "response": "A group of men standing in front of a dirt field", - "id": 5082 - }, - { - "image_path": "G:\\images\\combined\\006915_jpg.rf.96c9149afcee86ee30868e93b28d2110.jpg", - "response": "The image shows a large machine with yellow and white colors. The machine has a large circular piece that is being worked on by several people. The machine is surrounded by a metal net. In the background, there are three people, two of them are wearing orange safety jackets. The person on the left is holding a yellow helmet. The person in the center is wearing a blue safety jacket and a white helmet. The person on the right is also wearing an orange safety jacket.", - "id": 5083 - }, - { - "image_path": "G:\\images\\combined\\006917_jpg.rf.00d56a2b9343b17ab450c1eecaab12a4.jpg", - "response": "A worker in a blue uniform is talking to another worker in a yellow uniform. They are both standing in front of a large pipe.", - "id": 5084 - }, - { - "image_path": "G:\\images\\combined\\006918_jpg.rf.9393f2f67b17b9de165d5be4a15ffebe.jpg", - "response": "A group of workers in a\u96a7\u9053 working on a yellow piece of equipment.", - "id": 5085 - }, - { - "image_path": "G:\\images\\combined\\006919_jpg.rf.c40e340f4beace41d1545da1ed4536df.jpg", - "response": "A man wearing a hard hat and safety glasses is working on a structure made of pipes. He is climbing a ladder made of pipes and has a tool belt around his waist. He is wearing brown overalls and has a tool in his hand. The sky is bright white behind the man and pipes.", - "id": 5086 - }, - { - "image_path": "G:\\images\\combined\\006921_jpg.rf.bd7e0285555163741b0da877f76d712c.jpg", - "response": "A group of men standing in a field talking.", - "id": 5087 - }, - { - "image_path": "G:\\images\\combined\\006922_jpg.rf.20c5c0df5622c02ea05271937b836375.jpg", - "response": "A group of men working on a construction site.", - "id": 5088 - }, - { - "image_path": "G:\\images\\combined\\006923_jpg.rf.46802b252c4d95c7d38c7d0100224f80.jpg", - "response": "A group of people working on a bridge.", - "id": 5089 - }, - { - "image_path": "G:\\images\\combined\\006924_jpg.rf.f8ea2e451097ab3133c23311a23ceb5d.jpg", - "response": "The image shows two men standing in front of a house under construction. Both men are wearing hard hats, and one of them is holding a set of plans. They are smiling at the camera.", - "id": 5090 - }, - { - "image_path": "G:\\images\\combined\\006925_jpg.rf.5863ad418dd7a6de2f217c739852329c.jpg", - "response": "a group of men standing in front of a building", - "id": 5091 - }, - { - "image_path": "G:\\images\\combined\\006928_jpg.rf.ce68f295310c539224d3797f1e5605fa.jpg", - "response": "a group of men wearing hard hats", - "id": 5092 - }, - { - "image_path": "G:\\images\\combined\\006929_jpg.rf.958dd2b9a1aee9f10e439a974c7b86c2.jpg", - "response": "A snowy hillside with two people holding a large bamboo stick.", - "id": 5093 - }, - { - "image_path": "G:\\images\\combined\\006931_jpg.rf.9db4d586ada850f82d7f86249eeb1f31.jpg", - "response": "A group of men working on a bridge.", - "id": 5094 - }, - { - "image_path": "G:\\images\\combined\\006932_jpg.rf.c484c0e8b26812056fc60dabe4f17631.jpg", - "response": "A construction worker in a yellow hard hat points to a metal structure. Another construction worker in a blue hard hat stands next to him. They are both wearing grey coveralls.", - "id": 5095 - }, - { - "image_path": "G:\\images\\combined\\006933_jpg.rf.eff7d715ce07b7b9d2a05ff86b65d084.jpg", - "response": "A group of men standing around each other talking.", - "id": 5096 - }, - { - "image_path": "G:\\images\\combined\\006934_jpg.rf.0cb634650fc2d1189c39a2e612340e2e.jpg", - "response": "A group of five construction workers are working on a building site, four of them are wearing blue and yellow hard hats and are focused on the task at hand, tying rebar for a foundation.", - "id": 5097 - }, - { - "image_path": "G:\\images\\combined\\006936_jpg.rf.31450ce0cba0bad1ca8a6a37d3e8c043.jpg", - "response": "In the image there are two construction workers wearing yellow helmets. They are working on a building site wearing grey work clothes. The sky is grey and overcast.", - "id": 5098 - }, - { - "image_path": "G:\\images\\combined\\006937_jpg.rf.d21b5404f63ad171b11aadf8fab8659a.jpg", - "response": "A group of men wearing blue hard hats are working on a roof. They are wearing camouflage and blue hard hats.", - "id": 5099 - }, - { - "image_path": "G:\\images\\combined\\006938_jpg.rf.e31bf96223e5e078fcafad6ade2823e2.jpg", - "response": "A man wearing a hard hat and work clothes is standing on a ladder. He is looking upwards and holding a tool in his right hand. He appears to be working on a ceiling.", - "id": 5100 - }, - { - "image_path": "G:\\images\\combined\\006939_jpg.rf.374cb5fa9c3ce869a33c02c8deae7274.jpg", - "response": "A worker wearing a red hard hat is drinking water from a clear plastic bottle. The worker is also wearing a white shirt and gloves. The bottle is almost empty.", - "id": 5101 - }, - { - "image_path": "G:\\images\\combined\\006941_jpg.rf.e8b1db992a6d425533919b2cc279ffdb.jpg", - "response": "The image shows two workers sitting on a railing overlooking a river and a construction site. The river is brown and appears to be dirty. The sky is overcast and there are clouds in the distance. The workers are wearing yellow hard hats and orange vests. One of them is holding a tool. The construction site has several buildings of various sizes in the background. Some of the buildings have blue roofs. The workers are looking off to the right of the frame.", - "id": 5102 - }, - { - "image_path": "G:\\images\\combined\\006943_jpg.rf.426d4bfb1c4fc250e7e14ceb11cc8e04.jpg", - "response": "A train is passing by as two workers look at a machine.", - "id": 5103 - }, - { - "image_path": "G:\\images\\combined\\006946_jpg.rf.b989234f0047267edae18a18918f8edf.jpg", - "response": "An electrician working on an electrical panel.", - "id": 5104 - }, - { - "image_path": "G:\\images\\combined\\006947_jpg.rf.e4d29e54f5108136977c4209f49b5781.jpg", - "response": "A group of people standing in a parking lot next to a white car.", - "id": 5105 - }, - { - "image_path": "G:\\images\\combined\\006948_jpg.rf.61ee0446239dc03488bdd798b84dc020.jpg", - "response": "A group of three people looking at blueprints inside a building.", - "id": 5106 - }, - { - "image_path": "G:\\images\\combined\\006949_jpg.rf.685d7561332fff0805e7a26fd1ba174c.jpg", - "response": "In the image there is a group of three men working in a factory. They are all dressed in blue work clothes and one of them is wearing a yellow hard hat. The two men on the right are working on a large piece of machinery while the man in the middle is working on a conveyor belt. There are several large metal wheels and machinery parts visible in the factory scene.", - "id": 5107 - }, - { - "image_path": "G:\\images\\combined\\006950_jpg.rf.f81eba024fe4a22422fb3907e8cade6b.jpg", - "response": "A group of men standing next to a large crane.", - "id": 5108 - }, - { - "image_path": "G:\\images\\combined\\006951_jpg.rf.d0021dc1917217203c5348c566cb0083.jpg", - "response": "Two workers(357,274),(475,862)(500,270),(660,824) in blue uniforms(359,330),(469,829)(501,336),(629,815) and orange helmets(527,269),(593,336)(400,272),(469,339) stand next to a tree(619,4),(797,996) with a yellow and blue cord(329,259),(786,996).", - "id": 5109 - }, - { - "image_path": "G:\\images\\combined\\006952_jpg.rf.7702e4da6eba267528bb4879b164729c.jpg", - "response": "The image shows three workers in yellow safety vests and hard hats standing in a tunnel. They are working on the right side of the image, and there is a fourth worker on the left side of the image. The three workers on the right side are focused on a task, and one of them is holding a tool that has red liquid on it. The liquid appears to be dripping on the right side of the tunnel wall, which has a lot of etchings on it. The etchings are arranged in a grid pattern and include red lines and dots.", - "id": 5110 - }, - { - "image_path": "G:\\images\\combined\\006953_jpg.rf.2b30751cfb58f9d89795ff9d6d99125b.jpg", - "response": "A worker in a red hard hat is reaching into a yellow box filled with fire. Another worker in a yellow hard hat is watching the first worker. Both workers are wearing blue jeans.", - "id": 5111 - }, - { - "image_path": "G:\\images\\combined\\006954_jpg.rf.048ccf625a1c276bedfd524c888f2206.jpg", - "response": "In the image two construction workers are working on a project. They are wearing orange and yellow reflective vests. One worker is sitting on a large piece of equipment, and the other worker is directing water from a hose into a large pipe. The sky is blue, and there is a building in the background.", - "id": 5112 - }, - { - "image_path": "G:\\images\\combined\\006958_jpg.rf.ebb4edf53a75ba10d5a23bbf4b682668.jpg", - "response": "A worker wearing a yellow hard hat and a grey shirt is working on a piece of equipment. The equipment is grey and has two wheels. The worker is also wearing a yellow hard hat and grey pants. In the background there is a large blue tower with Chinese writing on it. There are also two other people in the background, one wearing a blue shirt and one wearing a white shirt. They are both standing further back. There are also several other people in the scene but they are all further back and blurred. There are also several other pieces of equipment in the scene.", - "id": 5113 - }, - { - "image_path": "G:\\images\\combined\\006959_jpg.rf.09302e124ef78b30dd5dfefed2a1eaef.jpg", - "response": "A group of men working on machinery outside.", - "id": 5114 - }, - { - "image_path": "G:\\images\\combined\\006960_jpg.rf.7103c7d7395710de8b2374aef2b84f3d.jpg", - "response": "a group of men standing on a street corner", - "id": 5115 - }, - { - "image_path": "G:\\images\\combined\\006961_jpg.rf.3bbca561a4079c816af6b3cfa4464d95.jpg", - "response": "The image shows a person standing in a small yellow room with some yellow machines. The person is wearing a yellow helmet and a red shirt. There are several yellow machines in the room, some placed on the left side and some on the right side. The person is holding a blue device with a red handle. The room has a yellow door and a yellow frame. The floor is covered with grey stones. The background is a dark tunnel.", - "id": 5116 - }, - { - "image_path": "G:\\images\\combined\\006962_jpg.rf.939c96b1ea6ee9b76dd28e87becc49c4.jpg", - "response": "A man in a yellow vest(277,636),(362,984) walking through a tunnel.", - "id": 5117 - }, - { - "image_path": "G:\\images\\combined\\006963_jpg.rf.15b7c21de9fc91670f92be59c3aafb79.jpg", - "response": "A group of workers are working on a building. The building is made of concrete and has many windows. The workers are wearing hard hats and are standing on a wooden platform. Some of them are working on a metal framework.", - "id": 5118 - }, - { - "image_path": "G:\\images\\combined\\006964_jpg.rf.25fc1accc50d014766c658d480dc3584.jpg", - "response": "A man in a yellow hard hat carrying a large piece of wood.", - "id": 5119 - }, - { - "image_path": "G:\\images\\combined\\006965_jpg.rf.17b5cf24c1cbcb903b09f647131b3462.jpg", - "response": "Four Chinese miners sit in a mine shaft, wearing hard hats and headlamps. They are covered in a layer of black soot.", - "id": 5120 - }, - { - "image_path": "G:\\images\\combined\\006966_jpg.rf.16df50ca02375cf46be4bf29da4ff9e7.jpg", - "response": "A group of people stand on a sidewalk in front of a building. Some of the people are wearing hard hats. In the background, there are several buildings and a crane.", - "id": 5121 - }, - { - "image_path": "G:\\images\\combined\\006967_jpg.rf.557335ba8e4655aa476532e0c2c0a87a.jpg", - "response": "A group of four people standing next to each other.", - "id": 5122 - }, - { - "image_path": "G:\\images\\combined\\006968_jpg.rf.b902d5c54799fa257ac1e51a95dface1.jpg", - "response": "In the image two workers are seen wearing blue helmets and carrying out some maintenance work. They are standing next to a tower and a power cable. The sky is blue and the workers are wearing blue uniforms.", - "id": 5123 - }, - { - "image_path": "G:\\images\\combined\\006969_jpg.rf.0f09259fa3f20f8c0e597d9d8f8e2ca3.jpg", - "response": "In the image there are two people wearing blue overalls and yellow helmets. They are working on a power box that has many wires and black boxes. They are sitting on a metal platform that is placed on a brick wall.", - "id": 5124 - }, - { - "image_path": "G:\\images\\combined\\006970_jpg.rf.9d9bdf82afe2d728f6b59bfdc83efdc6.jpg", - "response": "The image shows a scene of a meeting. There are 8 people sitting around a conference table. Each person is wearing a name tag. In front of the people, there is a TV. On the wall behind the people, there is a large sign that says \"Welcome to the 18th Beijing Railway Bureau\". The meeting seems to be about the construction of the 16th Beijing-Shanghai high-speed railway.", - "id": 5125 - }, - { - "image_path": "G:\\images\\combined\\006971_jpg.rf.2c1a79cbe68579821b55788c95093072.jpg", - "response": "In the image there are two engineers standing on a bridge in a factory. They are both wearing blue work clothes and white helmets. The left engineer is leaning on a railing and smiling at the camera, while the right engineer is looking forward. They both have a yellow safety belt around their waists.", - "id": 5126 - }, - { - "image_path": "G:\\images\\combined\\006972_jpg.rf.cd97bd4587f0cdcb8102ba0149cfacee.jpg", - "response": "A man is up a telephone pole, fixing a power line.", - "id": 5127 - }, - { - "image_path": "G:\\images\\combined\\006973_jpg.rf.90876914d40766b4a5954d2fa2278cb3.jpg", - "response": " A group(123,378),(245,809)(556,409),(657,778)(446,374),(562,787)(358,382),(453,796)(252,448),(338,793)(630,425),(768,790)(298,400),(370,775) of men standing outside a building", - "id": 5128 - }, - { - "image_path": "G:\\images\\combined\\006974_jpg.rf.622ee1bae80d3cbf37940ee4a9d08eb7.jpg", - "response": "The image shows a worker in a white shirt and grey pants standing on a platform holding a black and white solar panel. The worker is wearing a blue hat and grey pants. In the background, another worker is installing a solar panel on the roof of a building. The sky is overcast and the ground is covered in a light layer of snow.", - "id": 5129 - }, - { - "image_path": "G:\\images\\combined\\006975_jpg.rf.15d9e7c19ba33c21d513c67dfb6719d4.jpg", - "response": "In the image two workers are in a factory working on a large piece of equipment. The equipment is a red and green color and is sitting on a table. The workers are standing around the equipment with one on the left and one on the right. They are both wearing hard hats and blue jumpsuits. In front of the equipment on the table are several pipes. On the left side of the equipment there is a step ladder.", - "id": 5130 - }, - { - "image_path": "G:\\images\\combined\\006976_jpg.rf.76a005f956857ae2a9761b1f3d74eea1.jpg", - "response": "The image shows a group of workers on a red and yellow crane. There are three workers in total, with one on the left side of the crane, another on the right side, and the third in the middle. They are all wearing yellow hard hats and orange vests. The crane is lifting a large tire, which is attached to a cable. The tire is black with a white rim. The workers are all focused on the task at hand.", - "id": 5131 - }, - { - "image_path": "G:\\images\\combined\\006977_jpg.rf.b0024994a7d326bad5727356ec840022.jpg", - "response": "A man in a yellow safety vest and a yellow hard hat points at a wall with a group of people standing around him.", - "id": 5132 - }, - { - "image_path": "G:\\images\\combined\\006978_jpg.rf.1741e5efbc21f6946ca81f84e5a94650.jpg", - "response": "A worker(431,329),(546,800) walks on the railway tracks of the Standard Gauge Railway (SGR) line under construction between Nairobi and Naivasha, Kenya, in this file photo.", - "id": 5133 - }, - { - "image_path": "G:\\images\\combined\\006979_jpg.rf.c7c1ad7decf93954161611acaacd7a03.jpg", - "response": "A group of men in white shirts and safety gear are working on a power box on a pole.", - "id": 5134 - }, - { - "image_path": "G:\\images\\combined\\006980_jpg.rf.2707e42ca98423f4390be9cc1662881f.jpg", - "response": " Two people(454,294),(623,998)(598,337),(736,974) standing in front of a yellow construction vehicle(486,4),(997,858)", - "id": 5135 - }, - { - "image_path": "G:\\images\\combined\\006981_jpg.rf.e6be3e2af2a21c17521457ff11d999a1.jpg", - "response": "A construction worker wearing a white hard hat and a yellow safety vest is using a shovel to remove debris from a large hole in the ground. The worker is standing on a ladder and has a flashlight in his hand. He is looking down into the hole.", - "id": 5136 - }, - { - "image_path": "G:\\images\\combined\\006982_jpg.rf.d78ff4c0112beeb8f3b37e44ce1b9c3e.jpg", - "response": "In the image two workers are fixing a yellow and black truck. The man on the left is wearing a yellow safety vest and a blue hat, the man on the right is wearing a grey shirt and a blue hat. They are both working on the yellow and black truck.", - "id": 5137 - }, - { - "image_path": "G:\\images\\combined\\006983_jpg.rf.7a83258c62fe867a48b7508406e4b38e.jpg", - "response": "A man pushing a cart down a sidewalk.", - "id": 5138 - }, - { - "image_path": "G:\\images\\combined\\006984_jpg.rf.0a88ba1c6ca99dae800d343882dc6dda.jpg", - "response": "A group of men standing in front of a bulldozer", - "id": 5139 - }, - { - "image_path": "G:\\images\\combined\\006986_jpg.rf.af1e53992bbb53cbc9fd6470a2a4f396.jpg", - "response": "A group of workers working on a train track in a tunnel.", - "id": 5140 - }, - { - "image_path": "G:\\images\\combined\\006987_jpg.rf.8a4f3ee8f3526462b185304d347e1827.jpg", - "response": "A group of men standing around a construction site.", - "id": 5141 - }, - { - "image_path": "G:\\images\\combined\\006988_jpg.rf.2d39b9f1637c01042ef47d6b7dacfac0.jpg", - "response": "The photo shows a group of people walking in front of a building under construction. The people are wearing hard hats, and some of them are carrying a black bag. The building in the background is also visible. There are two benches in the scene, one on the left side and the other on the right side of the photo. The background also shows a close-up of a hand holding a flower.", - "id": 5142 - }, - { - "image_path": "G:\\images\\combined\\006989_jpg.rf.3da630a793c05027c0b196f8a1a6806d.jpg", - "response": "A group of people working on a construction site.", - "id": 5143 - }, - { - "image_path": "G:\\images\\combined\\006990_jpg.rf.2c24df37fa3b8c4f58b2c3b1690f0496.jpg", - "response": "A group of people wearing hard hats and orange or blue coveralls are working in the snow. They are pulling on a rope and some have backpacks.", - "id": 5144 - }, - { - "image_path": "G:\\images\\combined\\006991_jpg.rf.f2db345fd471ebf98db950d5082a43b5.jpg", - "response": "A worker is working on a large piece of equipment that resembles a giant metal gear or motor. The worker is in the center of the equipment, which is covered in metal pieces and has a circular shape. The worker is wearing a yellow hard hat and appears to be holding a flashlight. The background is out of focus and appears to be cluttered with more metal pieces.", - "id": 5145 - }, - { - "image_path": "G:\\images\\combined\\006992_jpg.rf.ca221397e54d13d877b6c2f98afcaf8a.jpg", - "response": "A man in a red jacket and a hardhat is holding a fire extinguisher and showing it to another man. Both men are wearing hard hats.", - "id": 5146 - }, - { - "image_path": "G:\\images\\combined\\006994_jpg.rf.719a6aee977dd16dda5757558827120f.jpg", - "response": "The image shows three men working in a factory. They are all shirtless and wearing yellow hard hats and green pants. The men are focused on a task, with one of them holding a large metal pipe. The pipe is covered in dirt and appears to be dirty. The men are standing in a large room with a metal structure above them.", - "id": 5147 - }, - { - "image_path": "G:\\images\\combined\\006995_jpg.rf.429e3679e3a3c7c0c83fe38e1ca7be1e.jpg", - "response": "A lineworker scales a telephone pole to repair a power line.", - "id": 5148 - }, - { - "image_path": "G:\\images\\combined\\006998_jpg.rf.5ef0a8d21b840b95ff9464f0c0d5f8c1.jpg", - "response": "The image shows a group of workers in blue uniforms and hard hats, working on a power pole in a forest. The pole is made of metal and has a red substance running down the side of it. The workers are standing around the pole, with one of them using a drill to work on the pole. There are also two other workers standing to the right of the first worker, and a fourth worker further back in the image. The workers appear to be focused on their task.", - "id": 5149 - }, - { - "image_path": "G:\\images\\combined\\006999_jpg.rf.e64cac9a20646303439032fb0375467f.jpg", - "response": "A worker is pulling a long piece of cable across a concrete floor. The worker is in the center of the image, wearing a red helmet and holding the cable in his hands. The concrete floor is in the background and the worker is casting a shadow on the floor.", - "id": 5150 - }, - { - "image_path": "G:\\images\\combined\\0069bac022daedf4.jpg", - "response": "A green city bus with the back door open and several men standing around it.", - "id": 5151 - }, - { - "image_path": "G:\\images\\combined\\0069ec40a8a43caa.jpg", - "response": "A black and white photograph of a woman smiling with her mouth open. She has dark hair and is looking towards the upper right corner of the image. The photograph is cut off at the bottom, showing hands holding flowers. To the right of the woman, starting from the top, there is a red rectangle with the words \"I Want You!\" written in white. The letters appear to be hand written and are not perfectly aligned.", - "id": 5152 - }, - { - "image_path": "G:\\images\\combined\\0069ee6a94eca6d8.jpg", - "response": "The image shows a group of athletes standing together on a court. They are all wearing red and white uniforms. In the background, there are several other people, some of whom are holding cameras. There is also a large eagle costume in the scene, and a mascot wearing a bird head is present as well.", - "id": 5153 - }, - { - "image_path": "G:\\images\\combined\\0069f56c0a0c1709.jpg", - "response": "A purple and black CD cover for a concert for Lidice.", - "id": 5154 - }, - { - "image_path": "G:\\images\\combined\\006aad90e11a5d73.jpg", - "response": "A person is holding a yellow smartphone in their left hand. The phone is a Nokia Lumia 1020. The person is using the phone to demonstrate the time and distance settings. The phone has a black screen with white text. The text on the screen says \"time 1 minute, time 2 minutes, time 5 minutes, time 10 minutes, distance 0.5 Km, distance 1 km.\" The person's hand is in the foreground of the image and the background is blurry.", - "id": 5155 - }, - { - "image_path": "G:\\images\\combined\\006af52d76f913db.jpg", - "response": "A black Samsung smart phone with a home screen that has several apps on it.", - "id": 5156 - }, - { - "image_path": "G:\\images\\combined\\006b842efa5ea895.jpg", - "response": "In the image there is a man standing in front of a large projector screen. The man has a beard and is wearing a black lanyard. He is wearing a grey shirt and has his hands clasped together in front of him. He is also wearing a red and white name tag. The projected slide behind him says \"patrocinado bbva\" in purple and white writing.", - "id": 5157 - }, - { - "image_path": "G:\\images\\combined\\006b9f2a7fd32e6b.jpg", - "response": "A young boy sitting at a table with three cups of coffee.", - "id": 5158 - }, - { - "image_path": "G:\\images\\combined\\006c36098228cd2c.jpg", - "response": "A large white sign advertising a berry farm and a brand called Sundance.", - "id": 5159 - }, - { - "image_path": "G:\\images\\combined\\006c3e319fe1880f.jpg", - "response": "A field of flowers with a mix of purple, white, yellow, and orange blossoms.", - "id": 5160 - }, - { - "image_path": "G:\\images\\combined\\006cd1e731a9f6be.jpg", - "response": "A person crossing the street at a red traffic light.", - "id": 5161 - }, - { - "image_path": "G:\\images\\combined\\006d10667d17b924.jpg", - "response": "A large crowd of people are sitting in front of a large screen. On the screen is a picture of a man with a cross around his neck. The event is called Meeting and has the year 2011 on it. The event is held on August 23rd.", - "id": 5162 - }, - { - "image_path": "G:\\images\\combined\\006d2faf17385144.jpg", - "response": "The image shows a large building with a billboard on the side of it. The billboard has a large Apple logo on it and the words \"Where a whole new World is developing.\" The building is next to a street with traffic lights and people walking on the sidewalk. There are also cars parked along the street.", - "id": 5163 - }, - { - "image_path": "G:\\images\\combined\\006d7a5a2009230f.jpg", - "response": "A man in a black shirt is using a mixer to make something in a bowl. Another man is standing next to him.", - "id": 5164 - }, - { - "image_path": "G:\\images\\combined\\006da1281d1bf763.jpg", - "response": "A wooden game board with a map of a city on it. There are also wooden pieces on the board and a small tower made of blocks.", - "id": 5165 - }, - { - "image_path": "G:\\images\\combined\\006f378c1ca56fd9.jpg", - "response": "A stained glass window of a king and a bishop.", - "id": 5166 - }, - { - "image_path": "G:\\images\\combined\\006f4870f0a038de.jpg", - "response": "Anne Hathaway in a pink Prada dress with a bow on the back", - "id": 5167 - }, - { - "image_path": "G:\\images\\combined\\006fb71bc42db8d3.jpg", - "response": "a book with a green cover", - "id": 5168 - }, - { - "image_path": "G:\\images\\combined\\007000_jpg.rf.4d71858319096975e650eaf3b1a575e1.jpg", - "response": "The image shows a group of rescue workers in orange uniforms working together to lift a man who is trapped in a large pit. The man is wearing a grey sweater and is on the ground. The workers are using a large metal tube to lift the man out of the pit. The pit is filled with brown mud and there are several workers standing in it, with some of them holding onto the man as he is lifted out. The workers are wearing hard hats and the man is wearing a pair of glasses. The scene is set in an outdoor location and the weather appears to be overcast.", - "id": 5169 - }, - { - "image_path": "G:\\images\\combined\\007002_jpg.rf.42a2b925e5d3cd876e0b9a74fcb177fa.jpg", - "response": "A group of four men sitting on a stone wall.", - "id": 5170 - }, - { - "image_path": "G:\\images\\combined\\007005_jpg.rf.de998c8315829b8f43e4ea6d8f0f1d16.jpg", - "response": "An electrician fixing an electrical box with a red hard hat on.", - "id": 5171 - }, - { - "image_path": "G:\\images\\combined\\007006_jpg.rf.40565d2c04f5b0b9720055ec7d114d6d.jpg", - "response": "A worker wearing a yellow hat is looking through the metal grid.", - "id": 5172 - }, - { - "image_path": "G:\\images\\combined\\007007_jpg.rf.b70db8d4bd35b5dd986dc86b60e6f6ab.jpg", - "response": "A group of men in orange jumpsuits and hard hats stand in a row on a dirt road.", - "id": 5173 - }, - { - "image_path": "G:\\images\\combined\\007008_jpg.rf.d031f677c72c06eb0fd2f48c71afab5a.jpg", - "response": "A man wearing a blue shirt and a yellow hard hat is walking away from the camera. He has a small tattoo on his left arm and a large scar on his back. Another man, wearing a red hard hat, is visible in the background. They are both on a construction site.", - "id": 5174 - }, - { - "image_path": "G:\\images\\combined\\007009_jpg.rf.97c89d13196a9a114596aabb24f17631.jpg", - "response": "The image shows a group of people standing in front of a red wall. The man in the center is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To his left, the man in the front is wearing a black suit and a white shirt. In front of these three men, the woman on the right is wearing a gray suit and a red shirt. To her right, the man in the front is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To the far right, the woman is wearing a gray suit and a red shirt. She is holding a microphone.", - "id": 5175 - }, - { - "image_path": "G:\\images\\combined\\007010_jpg.rf.572549d02b1db1768219bb487c8a6149.jpg", - "response": "The photo shows two men standing outdoors, wearing navy blue windbreakers. One man is on the left and is wearing glasses. Both men are facing the camera and appear to be speaking to an individual with a video camera, who is not in the frame of the picture. The man on the right is holding a camera and has dark hair. In the background, there is a rocky, barren landscape with a red building and a white structure further back.", - "id": 5176 - }, - { - "image_path": "G:\\images\\combined\\007011_jpg.rf.c00a5047df7274ce6c83fa7487e7629e.jpg", - "response": "A group of people working on a construction site.", - "id": 5177 - }, - { - "image_path": "G:\\images\\combined\\007012_jpg.rf.288f00ebfa5e8014c9bdbc1179b567c2.jpg", - "response": "A woman in a yellow hard hat is holding a tablet. She is standing in front of a building under construction. There are two cars visible in the background, one on the left side and one on the right side of the image. The woman is wearing a grey and white shirt and a grey and white scarf. She is also wearing a yellow hard hat.", - "id": 5178 - }, - { - "image_path": "G:\\images\\combined\\007013_jpg.rf.9da4df50346d4cadba16f376f3fade63.jpg", - "response": "The image shows a team of workers in a dark\u957f\u6c99\u5730\u94c1\u96a7\u9053. They are wearing yellow and green vests and hard hats. Some of them are kneeling on the ground, working on the tracks. There are several pairs of hands visible in the image, indicating that the workers are actively engaged in their tasks. In the background, there are cables and pipes on the walls of the tunnel. The lighting in the tunnel is provided by several flashlights and work lamps.", - "id": 5179 - }, - { - "image_path": "G:\\images\\combined\\007014_jpg.rf.316bab74f1f78e0340902025510ad431.jpg", - "response": "A man wearing a white shirt and blue pants is working on a construction site. He is wearing a white shirt, a white hat, and blue and white boots. He is also wearing a tool belt and a harness. He is on a metal ladder, which is leaning against a yellow wall. The man is on the second rung of the ladder. He is holding a tool in his right hand. The ladder is attached to a wire that is running from the top of the ladder to the building. The man is also connected to the building with a safety line that is attached to a metal pole.", - "id": 5180 - }, - { - "image_path": "G:\\images\\combined\\007017_jpg.rf.55c5b6dd1f766d58542570a9a945a8f5.jpg", - "response": " A worker(92,266),(303,561) repairs a damaged pedestrian bridge in Taiwan after Typhoon Soudelor.", - "id": 5181 - }, - { - "image_path": "G:\\images\\combined\\007018_jpg.rf.8668b83a6be9302c3ced569e43b5d949.jpg", - "response": "An oil worker stands in front of an oil pump in the oil field.", - "id": 5182 - }, - { - "image_path": "G:\\images\\combined\\007020_jpg.rf.a99b5b2e17a1a22c9bb273ebfea2b9f0.jpg", - "response": "A construction site with multiple workers.", - "id": 5183 - }, - { - "image_path": "G:\\images\\combined\\007021_jpg.rf.8b8235f9b7ff92ba88bd8b502ffe3957.jpg", - "response": "The image shows two workers in red coveralls and red helmets, working on a pipe in the desert. They are both wearing gloves and one of them is holding a tool. The sky in the background is blue and cloudless.", - "id": 5184 - }, - { - "image_path": "G:\\images\\combined\\007022_jpg.rf.b83caf5801dc9e16e42c02f52d9c3599.jpg", - "response": "A couple of men in green and white hard hats.", - "id": 5185 - }, - { - "image_path": "G:\\images\\combined\\007023_jpg.rf.6ee3514d734e715001e9ce6fe81bee01.jpg", - "response": "A man in a red hard hat and blue shirt is working on a piece of machinery. He is wearing gloves and has a tool in his hand. He is in a factory setting and there is a wall in the background.", - "id": 5186 - }, - { - "image_path": "G:\\images\\combined\\007025_jpg.rf.9c6eb007f2c28816c4bb57f8d6a0bf1d.jpg", - "response": "An electrician in a yellow shirt and blue hard hat is\u4fee\u7f2e\u7535\u7ebf", - "id": 5187 - }, - { - "image_path": "G:\\images\\combined\\007026_jpg.rf.263c6bfb04daa88be5579bd692dee867.jpg", - "response": "The image shows two men wearing camouflage uniforms and hard hats, working on an electrical wire. They are both holding tools and one of them has a red flag attached to the wire they are working on. The sky is blue and there are buildings in the background.", - "id": 5188 - }, - { - "image_path": "G:\\images\\combined\\007027_jpg.rf.a5d878b8df025f53a678aba4d1c92256.jpg", - "response": "The image shows three workers installing solar panels on the roof of a residential building. The building is a light brown color and the roof appears to be made of concrete. There are two blue solar panels already in place on the roof. The workers are wearing yellow hard hats and are standing on the roof. One of the workers is on the left, another is in the center, and the third is on the right.", - "id": 5189 - }, - { - "image_path": "G:\\images\\combined\\007028_jpg.rf.295e29c64eea7be796f1b054424f2f96.jpg", - "response": "The image shows two men working on power lines. One man is in a bucket crane, and the other man is on a power line. Both men are wearing orange and white safety gear. The sky is blue, and there are no other visible features in the image.", - "id": 5190 - }, - { - "image_path": "G:\\images\\combined\\007029_jpg.rf.4136a7b72f61d5711a83ceaac5e259c4.jpg", - "response": "A man wearing a hard hat and holding a drill.", - "id": 5191 - }, - { - "image_path": "G:\\images\\combined\\007030_jpg.rf.865fdce45c9d616aa9dbe51f7982de8a.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest is holding a large solar panel. He is wearing a white shirt and a yellow vest. He is standing on a roof and the sky behind him is blue.", - "id": 5192 - }, - { - "image_path": "G:\\images\\combined\\007031_jpg.rf.8fbb7b1e5edd6d63a340d0fc89ccb7ed.jpg", - "response": "A construction site with two workers on scaffolding.", - "id": 5193 - }, - { - "image_path": "G:\\images\\combined\\007032_jpg.rf.e77dfeb03bcb16981f6c301e4b1ffc4c.jpg", - "response": "The image shows a group of men in blue work clothes standing in a gravel lot filled with power equipment. They are standing around a large wooden post with a black and orange wire wrapped around it. The men are looking at the wire and talking. In the background, there are several utility poles and power lines. To the right of the group, there is a yellow truck with a large crane on it. The truck is parked next to a paved road.", - "id": 5194 - }, - { - "image_path": "G:\\images\\combined\\007033_jpg.rf.4b13c07bdea5857a7e2be40e517e6990.jpg", - "response": "In the image there are three construction workers at a construction site. They are all wearing yellow hard hats and the one on the right is also wearing a blue shirt. In front of them is a large circle made of steel rods that are stuck in the ground. They appear to be measuring or inspecting something. The background shows a large pile of brown dirt and a little bit of green grass.", - "id": 5195 - }, - { - "image_path": "G:\\images\\combined\\007035_jpg.rf.0294583e7be1cb455f0ae5f82e05a081.jpg", - "response": "A group of workers are working on power lines.", - "id": 5196 - }, - { - "image_path": "G:\\images\\combined\\007036_jpg.rf.e37a879d5342974dfe817a7ca5e534be.jpg", - "response": "A group of people sitting around a table.", - "id": 5197 - }, - { - "image_path": "G:\\images\\combined\\007038_jpg.rf.afc7e66192b6a51b186d8dfd4d42af0e.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 5198 - }, - { - "image_path": "G:\\images\\combined\\007039_jpg.rf.7e797f128ed4cc2167d5156bd65bda94.jpg", - "response": "A group of men in hard hats are working on a metal structure.", - "id": 5199 - }, - { - "image_path": "G:\\images\\combined\\00703d37145300bc.jpg", - "response": "A person is holding a smartphone in front of a laptop and a computer monitor. The smartphone screen displays the words \"You Win!\" in green and yellow letters. The person is also holding a pen in their other hand.", - "id": 5200 - }, - { - "image_path": "G:\\images\\combined\\007040_jpg.rf.d541ff06a85a0be1a9d43d3cb0d9d9ab.jpg", - "response": "Three men in yellow and green vests and hard hats are crouched down looking at blueprints on a construction site.", - "id": 5201 - }, - { - "image_path": "G:\\images\\combined\\007041_jpg.rf.045b50a4658a1b4c761b0eb9b0e74372.jpg", - "response": "Two workers in red and blue uniforms are standing in front of a large metal cylinder. They are both holding walkie-talkies and smiling at the camera. The worker on the left is wearing a blue helmet and has a white remote control in his hand. The worker on the right is wearing a blue helmet and has a white object in his hand. They are both standing on a yellow and red platform.", - "id": 5202 - }, - { - "image_path": "G:\\images\\combined\\007042_jpg.rf.c0cf799c0cffcc55c734f40eafe7961f.jpg", - "response": "In the image two workers wearing orange jumpsuits and blue helmets are repairing an electrical transformer. The transformer is located outdoors, on the side of a building, and is covered in a protective cage. The workers are standing on a ladder and are focused on the task at hand. They are surrounded by many wires and cables, which are connected to the transformer. The scene is set in an outdoor environment with trees in the background.", - "id": 5203 - }, - { - "image_path": "G:\\images\\combined\\007044_jpg.rf.2752a2f31a3300d93ca21043f59a2332.jpg", - "response": "A group of men standing on top of a dirt field.", - "id": 5204 - }, - { - "image_path": "G:\\images\\combined\\007045_jpg.rf.ebf218b9ae41cf99f407e80dfba35f84.jpg", - "response": "A construction worker wearing a yellow hat and vest.", - "id": 5205 - }, - { - "image_path": "G:\\images\\combined\\007046_jpg.rf.d0fbfa44911e7202e289b628e1c88503.jpg", - "response": "The picture shows a group of people gathered in a field. There are 9 people in total, standing in a rough circle. They are all dressed in black, with the exception of one person on the far left who is wearing a red coat. Most of the people are wearing black coats. In the background, there are some buildings and a crane. The sky is filled with clouds and it appears to be a bright and sunny day.", - "id": 5206 - }, - { - "image_path": "G:\\images\\combined\\007047_jpg.rf.a3a465fd0119e1abacdc1d3869cc6edb.jpg", - "response": " Two men(558,509),(907,997)(388,350),(577,997) in a tunnel, one pointing upwards", - "id": 5207 - }, - { - "image_path": "G:\\images\\combined\\007048_jpg.rf.99669f74494ef4570a4222159376cf32.jpg", - "response": "A group of men are working on an electrical box.", - "id": 5208 - }, - { - "image_path": "G:\\images\\combined\\007049_jpg.rf.c9bf57f9ebacca671a3fcbf71eac8a33.jpg", - "response": "An oil rig worker in a red jumpsuit and orange hard hat is working on a piece of equipment.", - "id": 5209 - }, - { - "image_path": "G:\\images\\combined\\007050_jpg.rf.d7d5d3991f27065d382e39e7e6b74df3.jpg", - "response": "Builder at the construction site drills a hole in the wall with a perforator.", - "id": 5210 - }, - { - "image_path": "G:\\images\\combined\\007051_jpg.rf.e0e3180c04c7a4fac9b7a75b6a537017.jpg", - "response": " A man(679,503),(857,997) wearing a yellow helmet(689,503),(825,636) is standing in front of a conveyor belt(167,223),(995,691)", - "id": 5211 - }, - { - "image_path": "G:\\images\\combined\\007053_jpg.rf.a031960bafa60fdbcece37cca8575621.jpg", - "response": "A construction worker wearing a yellow hard hat and jacket is welding a steel rebar on the ground. He is crouching down and holding the steel rebar with one hand while holding the welding machine with the other hand. The steel rebar is placed on the ground and the worker is wearing a yellow hard hat and black shoes. The background shows a large area of concrete with steel rebar laid out across it.", - "id": 5212 - }, - { - "image_path": "G:\\images\\combined\\007054_jpg.rf.7edbe9f02260a412942fdc10a7fed033.jpg", - "response": "A group of construction workers sitting on the ground.", - "id": 5213 - }, - { - "image_path": "G:\\images\\combined\\007055_jpg.rf.7defda9a6f4036e1dad24d21564c5872.jpg", - "response": "A group of workers are on a telephone pole.", - "id": 5214 - }, - { - "image_path": "G:\\images\\combined\\007056_jpg.rf.c97477da3a59a37aa1e3aab020a820bc.jpg", - "response": "A group of people stand in a parking lot in front of a bridge under construction. In the foreground, a woman with dark hair and a black top is looking at the camera. To her left, a balding man with a brown shirt looks to the left. Another man with a yellow shirt and grey hair looks to the right. A man with glasses and a blue shirt looks to the left. A man with black hair and a yellow shirt looks to the right. A man with a blue shirt and black hair looks to the right. A man with glasses and a grey shirt looks to the left. In the background, a bridge under construction can be seen.", - "id": 5215 - }, - { - "image_path": "G:\\images\\combined\\007058_jpg.rf.dc615f56a1e8b5eb0a62cfb0ae4724df.jpg", - "response": "The image shows a man digging a hole in the ground with a shovel. He is wearing a green shirt and a red hard hat. The ground around him is dirt and he is standing next to a hole that he has dug. There is a white bag in the hole. Another man is standing behind him, also digging a hole. In the background, there are several other people working further away. There are also a few shovels and a broom scattered around the scene.", - "id": 5216 - }, - { - "image_path": "G:\\images\\combined\\007059_jpg.rf.f084ad528b0de785a654b5023a2ffd89.jpg", - "response": "In the image, a factory worker is wearing an orange vest and hat, standing behind a table with a circular saw on it. The worker is cutting a metal pipe and sparks are flying from the saw. The sparks are covering the entire image and there are multiple sparks in different sizes and directions. The background is blurry and the main focus is on the worker and the sparks.", - "id": 5217 - }, - { - "image_path": "G:\\images\\combined\\007060_jpg.rf.21fbabfc3321f8adabf98087a38ba73a.jpg", - "response": "A group of men standing on a bridge that is under construction.", - "id": 5218 - }, - { - "image_path": "G:\\images\\combined\\007061_jpg.rf.1d5989d265a295622c5c68eb972ba9be.jpg", - "response": "A man in a blue uniform and hard hat is working on a yellow pipe.", - "id": 5219 - }, - { - "image_path": "G:\\images\\combined\\007062_jpg.rf.cd43818274b1b9816427c0c86549a2f9.jpg", - "response": "A couple of workers are standing on a building site.", - "id": 5220 - }, - { - "image_path": "G:\\images\\combined\\007063_jpg.rf.82bcc9a16b400409f2586602f8bfb3ca.jpg", - "response": "An electrician is working on a power line in a residential area. He is wearing a white uniform and a blue helmet. He is standing on a wooden ladder, which is leaning against a tall concrete pole. The pole is filled with electrical equipment and wires. In the background, there are several tall buildings with balconies.", - "id": 5221 - }, - { - "image_path": "G:\\images\\combined\\007085c9466545f6.jpg", - "response": "A table with a typewriter on it and a deck of playing cards.", - "id": 5222 - }, - { - "image_path": "G:\\images\\combined\\007191c09b7f8548.jpg", - "response": "A male and female model are sitting on white chairs on a stage, presenting the LG Optimus Chic and the LG Optimus One (G1) smartphones. The female model is on the left and the male model is on the right.", - "id": 5223 - }, - { - "image_path": "G:\\images\\combined\\0071cc12dfe35d22.jpg", - "response": "A dirty yellow car with a white license plate is parked on the side of the road.", - "id": 5224 - }, - { - "image_path": "G:\\images\\combined\\0071dc035a60427e.jpg", - "response": "A black, white and orange cat with a purple collar and gold bell around its neck.", - "id": 5225 - }, - { - "image_path": "G:\\images\\combined\\0071dcd83ec7f9e2.jpg", - "response": "A red trolley car is going down the tracks in a city.", - "id": 5226 - }, - { - "image_path": "G:\\images\\combined\\0071e67f53f3dc39.jpg", - "response": "A street light with a sign attached to it.", - "id": 5227 - }, - { - "image_path": "G:\\images\\combined\\0072006110d73f8d.jpg", - "response": "A hand is holding four different cryptocurrency keychains. The first one is for Litecoin, it is an acrylic keychain with the Litecoin symbol on it. The second keychain is for Bitcoin, it is a gold keychain with the Bitcoin symbol on it. The third keychain is for Bitcoin, it is a bronze keychain with the Bitcoin symbol on it. The fourth keychain is for Bitcoin, it is a clear keychain with the Bitcoin symbol on it.", - "id": 5228 - }, - { - "image_path": "G:\\images\\combined\\00737efc6f6a967e.jpg", - "response": "A man standing at a podium with several signs behind him.", - "id": 5229 - }, - { - "image_path": "G:\\images\\combined\\00738_jpg.rf.6cbd32019d5706da2809f71556908dbf.jpg", - "response": "A group of men walking across a roof top.", - "id": 5230 - }, - { - "image_path": "G:\\images\\combined\\00738_jpg.rf.77f152606f7fe8f4f353ed979eb96731.jpg", - "response": "A group of men walking across a roof top.", - "id": 5231 - }, - { - "image_path": "G:\\images\\combined\\00739_jpg.rf.b046491ebd73ea60d1cfe0c50d15cfc8.jpg", - "response": "A group of four men standing on a rooftop.", - "id": 5232 - }, - { - "image_path": "G:\\images\\combined\\00739_jpg.rf.dd5bd2d3061d0ae0b78b45f2cc900001.jpg", - "response": "A group of four men standing on a rooftop.", - "id": 5233 - }, - { - "image_path": "G:\\images\\combined\\00742cd468e40de6.jpg", - "response": "A can of coffee that says Fire on it in English and Japanese.", - "id": 5234 - }, - { - "image_path": "G:\\images\\combined\\00742_jpg.rf.9a82928d33657948dbec086b19e4465e.jpg", - "response": "a group of people standing around a pile of grey rocks(337,533),(999,996)", - "id": 5235 - }, - { - "image_path": "G:\\images\\combined\\00743_jpg.rf.b8de9e8c27f787f1fab6a696498d166d.jpg", - "response": "A group of men in hard hats walking across a construction site.", - "id": 5236 - }, - { - "image_path": "G:\\images\\combined\\00743_jpg.rf.fccdbc70d359aa015dbe99fed0502914.jpg", - "response": "A group of men in hard hats walking across a construction site.", - "id": 5237 - }, - { - "image_path": "G:\\images\\combined\\00744_jpg.rf.04a574d98b1da119b153dd4b863727f7.jpg", - "response": "In the image there are three people wearing blue hard hats(370,264),(446,348)(468,281),(538,362)(534,272),(590,340), one of them is wearing a red shirt(419,375),(536,634), they are checking a pool of water. There is a yellow metal handrail in the foreground and a yellow metal walkway. In the background there is a yellow building with a lot of windows and a white roof. There is also a brown building with a blue roof in the background.", - "id": 5238 - }, - { - "image_path": "G:\\images\\combined\\00746_jpg.rf.0911488b4d568419fe1de791bf820f49.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 5239 - }, - { - "image_path": "G:\\images\\combined\\00746_jpg.rf.315f345b0c9fd1ae0dc4e2dc5fdbcce5.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 5240 - }, - { - "image_path": "G:\\images\\combined\\00747_jpg.rf.18ca273fd552c218749644c532998807.jpg", - "response": "The image shows a group of people carrying a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is surrounded by people. Some people are wearing hard hats, and there are several people standing around the stretcher. The ground is dirt, and there are wooden planks on the ground around the stretcher.", - "id": 5241 - }, - { - "image_path": "G:\\images\\combined\\00747_jpg.rf.83ec7d749a6e8b5ec3ddf32e56910104.jpg", - "response": "The image shows a group of people standing around a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is placed on wooden beams. The group of people is standing around the stretcher, with some of them holding it and others standing around it. Some of the people are wearing orange uniforms, and there are also some backpacks and a bottle in the scene. The ground is covered with dirt, and there are also some chairs and a bench in the background.", - "id": 5242 - }, - { - "image_path": "G:\\images\\combined\\00755ed1ee443a35.jpg", - "response": "A van with the word Yomtai on the side of it.", - "id": 5243 - }, - { - "image_path": "G:\\images\\combined\\007575a3d2399034.jpg", - "response": "a man wearing a red jersey is holding a baby dressed in a tiny soccer uniform", - "id": 5244 - }, - { - "image_path": "G:\\images\\combined\\00757ab42ca415d8.jpg", - "response": "A white delivery truck with a advertisement for JP Wisers on the side.", - "id": 5245 - }, - { - "image_path": "G:\\images\\combined\\0075f28d995930da.jpg", - "response": "A motorcycle is parked on a gravel shore next to a lake. The bike is facing the mountains in the background.", - "id": 5246 - }, - { - "image_path": "G:\\images\\combined\\00763053203c207f.jpg", - "response": "The image shows a pile of various items, including a small white plastic cat figurine with a rainbow tail, a few boxes of Photo Kano, and photos of a girl with blue hair. The plastic cat figurine is sitting on top of one of the Photo Kano boxes. The pile of items also includes a few boxes with anime characters on them.", - "id": 5247 - }, - { - "image_path": "G:\\images\\combined\\0077cfc1390df0e6.jpg", - "response": "A wooden clock with metal spokes and a white face.", - "id": 5248 - }, - { - "image_path": "G:\\images\\combined\\00780778116614e0.jpg", - "response": "A man in a yellow jacket standing in front of a small building with two doors. The building has the word \"gentle\" on one door and \"lady\" on the other. There is a red pipe on the left side of the building and a pile of rocks next to it. The sky is white and there is a mountain in the background.", - "id": 5249 - }, - { - "image_path": "G:\\images\\combined\\0078338406ed7aa8.jpg", - "response": "A group of men are huddled together in a room with a yellow wall. They are all wearing sports jerseys and have their arms around each other. Some of the men are wearing backpacks and ties. There are several American flags strung across a doorway and some are placed around the room. A TV is in the room and a few books are stacked on a shelf.", - "id": 5250 - }, - { - "image_path": "G:\\images\\combined\\00784ef6ad094836.jpg", - "response": "The image shows a large room filled with people sitting at long tables. There are multiple chairs and tables throughout the room, and the tables are covered with various items such as backpacks, laptops, and books. The people in the room are engaged in a variety of activities, including talking to each other and working on their laptops. Some people are sitting alone, while others are sitting in groups. The room has a modern and industrial feel to it, with white walls and large windows.", - "id": 5251 - }, - { - "image_path": "G:\\images\\combined\\00792db6bb86e0e2.jpg", - "response": "A hockey team stands on the ice in a stadium.", - "id": 5252 - }, - { - "image_path": "G:\\images\\combined\\0079626afbcf18b9.jpg", - "response": "A close up of a smartphone with a yellow case. The screen displays data from a fitness app. The time is 11:10 and the temperature is 12 degrees Celsius. The altitude is 1200 meters. The heart rate is 123 beats per minute. The speed is 10.5 kilometers per hour. The distance is 9.6 kilometers. The altitude gain is 963 meters. There is a button with a picture of a person running. Below this is a button with a picture of a bag.", - "id": 5253 - }, - { - "image_path": "G:\\images\\combined\\007968e74e3c5ddc.jpg", - "response": "A man standing in front of a classroom, giving a lecture.", - "id": 5254 - }, - { - "image_path": "G:\\images\\combined\\0079cc61e4ade96f.jpg", - "response": "A green dumpster with the words \"I love you\" written on it in yellow spray paint.", - "id": 5255 - }, - { - "image_path": "G:\\images\\combined\\007a0eaa8594488c.jpg", - "response": "The image features a pink and white Hello Kitty sugar syrup bottle sitting on a counter. The bottle is clear and tall, with a label featuring the iconic Hello Kitty character. The bottle is almost empty, with only a small amount of syrup remaining.", - "id": 5256 - }, - { - "image_path": "G:\\images\\combined\\007a2a20d20b99c4.jpg", - "response": "A large video screen displays information about Epson's Pulsense line of activity monitors. Two devices are shown, a Pulsense Watch and a Pulsense Band. The Pulsense Watch is shown in more detail, with a price of $199.", - "id": 5257 - }, - { - "image_path": "G:\\images\\combined\\007a4e97abc192b9.jpg", - "response": "A black Mars candy vending machine with a wrapper design on it.", - "id": 5258 - }, - { - "image_path": "G:\\images\\combined\\007ac6a42d3b93e5.jpg", - "response": "A man wearing a grey shirt and khaki shorts is pointing towards a bird bath.", - "id": 5259 - }, - { - "image_path": "G:\\images\\combined\\007b13712b157445.jpg", - "response": "A tire with a green rim is being inflated with a green pump.", - "id": 5260 - }, - { - "image_path": "G:\\images\\combined\\007b26babc057f54.jpg", - "response": "A table with a cell phone, picture frames, and brochures on it.", - "id": 5261 - }, - { - "image_path": "G:\\images\\combined\\007b3b91e66b0689.jpg", - "response": "A baseball pitcher for the New York Yankees celebrates after getting a batter to hit a fly ball during a game.", - "id": 5262 - }, - { - "image_path": "G:\\images\\combined\\007c3047f0237443.jpg", - "response": "A baseball game is being played on a field. There are three players on the field, one of them is running towards home plate. The catcher is standing behind the runner, and the umpire is standing behind the catcher. The runner is wearing a red jersey and the catcher is wearing a red helmet. The umpire is wearing a blue shirt.", - "id": 5263 - }, - { - "image_path": "G:\\images\\combined\\007c5073fc9774bc.jpg", - "response": "A thermometer that is on a table.", - "id": 5264 - }, - { - "image_path": "G:\\images\\combined\\007c8c28e1f149b1.jpg", - "response": "A box for a Lego set called The Lego Movie. The box features a Lego Batman figure and a Lego cat figure fighting.", - "id": 5265 - }, - { - "image_path": "G:\\images\\combined\\007ce03e56abd3f6.jpg", - "response": "The image shows a wall covered in various items. On the wall, there are multiple makeup brushes, including a large brush and a small one, a compact mirror, a cell phone, and a pair of glasses. There are also multiple beauty products, including two bottles of foundation, a tube of lipstick, and two eyeshadow palettes. A pink hair tie is also attached to the wall. The wall is white and the items are arranged in a haphazard manner.", - "id": 5266 - }, - { - "image_path": "G:\\images\\combined\\007ce7eca014eae6.jpg", - "response": "A woman holding a Seattle snow globe in front of her face.", - "id": 5267 - }, - { - "image_path": "G:\\images\\combined\\007d8de02b273320.jpg", - "response": "A bus with a design of yellow and blue leaves on the side.", - "id": 5268 - }, - { - "image_path": "G:\\images\\combined\\007db4299e52668a.jpg", - "response": "Four men are wearing uniforms and posing for a picture.", - "id": 5269 - }, - { - "image_path": "G:\\images\\combined\\007e5ddf6555e6dd.jpg", - "response": "A silver Mercedes Benz is parked on the side of the street.", - "id": 5270 - }, - { - "image_path": "G:\\images\\combined\\007f097678571e5d.jpg", - "response": "A display of several Lego sets, including a toy story set and a racers set.", - "id": 5271 - }, - { - "image_path": "G:\\images\\combined\\007f51fd92c14610.jpg", - "response": "An open book with a variety of green and black images on the pages.", - "id": 5272 - }, - { - "image_path": "G:\\images\\combined\\008078930b01bc50.jpg", - "response": "A flower shop with a large variety of flowers and plants on display.", - "id": 5273 - }, - { - "image_path": "G:\\images\\combined\\0080a7dfda1e078f.jpg", - "response": "A black cat sitting in a cardboard box on the floor.", - "id": 5274 - }, - { - "image_path": "G:\\images\\combined\\0080ab49662c727c.jpg", - "response": "a board with post it notes with writing on it", - "id": 5275 - }, - { - "image_path": "G:\\images\\combined\\008125630eaf4f05.jpg", - "response": "A street sign that says Clifden Hwy on it.", - "id": 5276 - }, - { - "image_path": "G:\\images\\combined\\00819_jpg.rf.c6d57d2e813850068cfa85682b6dc9b3.jpg", - "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a yellow hard hat on. He is standing on a rocky surface with a pile of dirt and rocks in front of him. There is a truck parked in the background. In the distance, there are several wind turbines on a mountain.", - "id": 5277 - }, - { - "image_path": "G:\\images\\combined\\00819_jpg.rf.f225722465f3d09c4b0bc919674ba49a.jpg", - "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a beard. He is standing on a brown rocky hillside. In the background, behind the man and to his right, there are several wind turbines on a mountain. The sky is a mix of blue and white clouds. There is a yellow truck parked in the bottom right corner of the image.", - "id": 5278 - }, - { - "image_path": "G:\\images\\combined\\0081a04e410013db.jpg", - "response": "A case of cans of WD-40.", - "id": 5279 - }, - { - "image_path": "G:\\images\\combined\\00826474a7efc217.jpg", - "response": "A black piece of fabric is next to a pair of red and silver sewing shears. There is a small square of red fabric with a black pattern on it, and it is pinned to the black fabric. There are also a few pieces of white thread on the fabric.", - "id": 5280 - }, - { - "image_path": "G:\\images\\combined\\00831662d2ba731a.jpg", - "response": "The image shows the rear end of a silver car parked in a parking space. The license plate has the letters \"JIBA\" on it. There is a bicycle visible in the reflection of the car.", - "id": 5281 - }, - { - "image_path": "G:\\images\\combined\\00837e895ee4701f.jpg", - "response": "A blue building with a sign that says Pustaka Mukmin.", - "id": 5282 - }, - { - "image_path": "G:\\images\\combined\\0083e919337aebb0.jpg", - "response": "A silver car with the license plate 44 41 is parked in a parking lot.", - "id": 5283 - }, - { - "image_path": "G:\\images\\combined\\00841_jpg.rf.61ecb34c38d0f2406e52bdbe878af808.jpg", - "response": "A couple of men in blue hard hats are working on an electrical tower.", - "id": 5284 - }, - { - "image_path": "G:\\images\\combined\\00841_jpg.rf.a07757f20c0863f76a8c30089c34cffd.jpg", - "response": "In the image two workers are repairing an electrical component. They are wearing blue and white hard hats and are kneeling on the ground. The man on the left is using a tool to repair the component.", - "id": 5285 - }, - { - "image_path": "G:\\images\\combined\\0084491e91492c18.jpg", - "response": "A cell phone, a timer, and a meter are laying on a checkered surface.", - "id": 5286 - }, - { - "image_path": "G:\\images\\combined\\00845f16b7c1e9b1.jpg", - "response": "The image is of a salsa music album cover for Dura Salsa Vol. 2. The cover features a woman with blonde hair and a full red lip. The woman has a number 133 written on her cheek. The album cover is in black and white.", - "id": 5287 - }, - { - "image_path": "G:\\images\\combined\\00846_jpg.rf.16020e863b28c18f7a5e177befc13003.jpg", - "response": "Three men in blue work shirts and blue helmets are standing in a field.", - "id": 5288 - }, - { - "image_path": "G:\\images\\combined\\00846_jpg.rf.f0a4f74937eda504f5b7e9f9d13e6341.jpg", - "response": "Three men in blue jeans and hard hats are standing in a field.", - "id": 5289 - }, - { - "image_path": "G:\\images\\combined\\0085245e85b9815d.jpg", - "response": "A wall made of many different cell phones.", - "id": 5290 - }, - { - "image_path": "G:\\images\\combined\\00853aa7e26dc77f.jpg", - "response": "In the image a person is holding an iPhone which is displaying a German website for an online shop. The website is for a company called \"Produkt- Vergleich\" and is showing a comparison of different deodorants. The person is comparing the Bebe Young Care deodorant spray with the Dry deodorant by Rexona. The iPhone is in front of a blurred out shelf with various deodorants and other beauty products.", - "id": 5291 - }, - { - "image_path": "G:\\images\\combined\\00854_jpg.rf.505165734a624453b9ab5c798c5cb221.jpg", - "response": "Three men in front of a building.", - "id": 5292 - }, - { - "image_path": "G:\\images\\combined\\00860d45e849ec0c.jpg", - "response": "a black and white photo of a city street with tall buildings", - "id": 5293 - }, - { - "image_path": "G:\\images\\combined\\00868a00547307b0.jpg", - "response": "a group of people walking on a busy street", - "id": 5294 - }, - { - "image_path": "G:\\images\\combined\\00869f0facebd0eb.jpg", - "response": "The image shows three different views of an iPod Nano. The middle view is a side view of the iPod Nano, which is a rectangular shape with a flat front and back. The front of the iPod has a screen with four icons at the bottom, and the back of the iPod has the Apple logo. The left and right views are top and bottom views of the iPod Nano, respectively. The left view shows the top of the iPod Nano, which has a small speaker grill and a power button. The right view shows the bottom of the iPod Nano, which has a dock connector.", - "id": 5295 - }, - { - "image_path": "G:\\images\\combined\\0086c62d24fc6827.jpg", - "response": "A book display of several books including one by William Morris.", - "id": 5296 - }, - { - "image_path": "G:\\images\\combined\\00875c7f30a72189.jpg", - "response": "A red can of S-Tack insulation adhesive with a white label on it.", - "id": 5297 - }, - { - "image_path": "G:\\images\\combined\\008780d91774e5f1.jpg", - "response": "An iPhone 6 Plus sitting on a wooden table.", - "id": 5298 - }, - { - "image_path": "G:\\images\\combined\\00878e1cb55d4c2f.jpg", - "response": "A red and white can of Cocos brand light meat tuna.", - "id": 5299 - }, - { - "image_path": "G:\\images\\combined\\00886_jpg.rf.23291cedaab04e839c1441600d8a7f09.jpg", - "response": "A group of three men in white and blue uniforms and white helmets are walking across a parking lot carrying a couple of fire extinguishers.", - "id": 5300 - }, - { - "image_path": "G:\\images\\combined\\00886_jpg.rf.b63983b05d62136725d909da1996eb59.jpg", - "response": "A group of three men in white and blue uniforms carrying a total of three fire extinguishers.", - "id": 5301 - }, - { - "image_path": "G:\\images\\combined\\0088be963439e57d.jpg", - "response": "A car parked on the side of a street.", - "id": 5302 - }, - { - "image_path": "G:\\images\\combined\\00890186fcebe7c7.jpg", - "response": "A man and a boy pose for a picture in a boxing gym. The boy has a red and black jacket on and the man has a grey North Dumfries Boxing Club sweatshirt on. They are both standing in front of a boxing ring.", - "id": 5303 - }, - { - "image_path": "G:\\images\\combined\\00895_jpg.rf.235e2cab1906d6ad1d47ad28fcf953d5.jpg", - "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of green bushes. In the background, there are four high-rise buildings. The sky is blue with clouds.", - "id": 5304 - }, - { - "image_path": "G:\\images\\combined\\00895_jpg.rf.9cd21060fe93956fd115515fb577cd21.jpg", - "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of hedges. In the background, there are four high-rise buildings. The sky is blue with some clouds.", - "id": 5305 - }, - { - "image_path": "G:\\images\\combined\\008969c238c6917e.jpg", - "response": "A box with a green ribbon and a bow on it.", - "id": 5306 - }, - { - "image_path": "G:\\images\\combined\\0089a3be4691c3eb.jpg", - "response": "A man in a blue racing suit stands next to a woman in a black leather jacket. Both are standing in front of a white wall.", - "id": 5307 - }, - { - "image_path": "G:\\images\\combined\\0089b0863da21af6.jpg", - "response": "A bookshelf filled with books and binders.", - "id": 5308 - }, - { - "image_path": "G:\\images\\combined\\008a0794559548ee.jpg", - "response": "The image shows a baseball field with a group of men standing on it. There are several people present, some of whom are holding baseball gloves, and others are holding a hose. The men are hosing down the field, and the hose can be seen stretching across the scene. The image also shows a large banner in the background, advertising a business called Soft Signs.", - "id": 5309 - }, - { - "image_path": "G:\\images\\combined\\008a63bd711aab86.jpg", - "response": "A large video game display in a store filled with many different video games.", - "id": 5310 - }, - { - "image_path": "G:\\images\\combined\\008a7856b1861aaf.jpg", - "response": "The runner is running to the first base.", - "id": 5311 - }, - { - "image_path": "G:\\images\\combined\\008aabb43f244552.jpg", - "response": "A blue car parked in a driveway next to a pile of sandbags.", - "id": 5312 - }, - { - "image_path": "G:\\images\\combined\\008b8556a73601ae.jpg", - "response": "A black and white cat is sitting on a wooden table. The cat has yellow eyes and is looking at the camera. It is sitting on top of a magazine, which is titled \"Politics\". There is another magazine under the first one, and a book is visible in the background.", - "id": 5313 - }, - { - "image_path": "G:\\images\\combined\\008bc1ff39714379.jpg", - "response": "The image features a basketball game in progress with two teams playing against each other. One player from the team in white is holding the basketball and appears to be about to shoot it. Another player from the same team is guarding the player with the ball. There are several other players on the court, some holding basketballs and others in various positions. The court has a wood grain design and the game is being played in front of an audience.", - "id": 5314 - }, - { - "image_path": "G:\\images\\combined\\008c34315d9775ee.jpg", - "response": "A street view of a city with many cars parked on the side of the road. There are also many buildings lining the street.", - "id": 5315 - }, - { - "image_path": "G:\\images\\combined\\008cfef3402609bf.jpg", - "response": "A flat screen television displays the BBC iPlayer on its screen.", - "id": 5316 - }, - { - "image_path": "G:\\images\\combined\\008d0681123bcdf1.jpg", - "response": "A white van with a crane on top is driving down a busy street.", - "id": 5317 - }, - { - "image_path": "G:\\images\\combined\\008d100b4f31c031.jpg", - "response": "A polo shirt in sky blue color with the brand name Victorinox on the left side of the chest.", - "id": 5318 - }, - { - "image_path": "G:\\images\\combined\\008e36a5a0623445.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 5319 - }, - { - "image_path": "G:\\images\\combined\\008e55e8866c3a92.jpg", - "response": "A translucent OpenUP trophy for OpenUP winners of 2011.", - "id": 5320 - }, - { - "image_path": "G:\\images\\combined\\008e92ff98f6f209.jpg", - "response": "A blue and yellow double decker bus is parked on the street.", - "id": 5321 - }, - { - "image_path": "G:\\images\\combined\\008e95a340972b70.jpg", - "response": "A man in a suit and hat standing in front of a bus.", - "id": 5322 - }, - { - "image_path": "G:\\images\\combined\\008eb1db3d98439e.jpg", - "response": "A gold watch with a white face and brown leather strap.", - "id": 5323 - }, - { - "image_path": "G:\\images\\combined\\008eb91158d943f8.jpg", - "response": "Two bottles of Franciacorta wine, one of which is a bottle of Ros\u00e9.", - "id": 5324 - }, - { - "image_path": "G:\\images\\combined\\008ed85b989a36ec.jpg", - "response": "A yellow Chevrolet school bus is driving down the street.", - "id": 5325 - }, - { - "image_path": "G:\\images\\combined\\008f94a81fa356cf.jpg", - "response": "A shelf with a variety of soda and energy drinks.", - "id": 5326 - }, - { - "image_path": "G:\\images\\combined\\008fc0a1f69b52fb.jpg", - "response": "A man in a uniform standing at a podium.", - "id": 5327 - }, - { - "image_path": "G:\\images\\combined\\00900_jpg.rf.27ae9b4bee9a2213e3dc17d9deaef3e8.jpg", - "response": "A group of three men standing next to each other.", - "id": 5328 - }, - { - "image_path": "G:\\images\\combined\\00900_jpg.rf.cbac4160d201dd464e1ebe7ceb286ea0.jpg", - "response": "A group of three men standing next to each other drinking from small bowls.", - "id": 5329 - }, - { - "image_path": "G:\\images\\combined\\00901a3bf99aecb6.jpg", - "response": "A superman toy in the shape of a plane.", - "id": 5330 - }, - { - "image_path": "G:\\images\\combined\\00907da87b13210f.jpg", - "response": "A baseball player wearing a white uniform with red lettering is running on the field.", - "id": 5331 - }, - { - "image_path": "G:\\images\\combined\\00915dbaa395904c.jpg", - "response": "A room with a blue ball in the corner and a window letting in sunlight. There is a bookshelf with many books on it and a desk with papers on it.", - "id": 5332 - }, - { - "image_path": "G:\\images\\combined\\00918f59a42f88f5.jpg", - "response": "The image shows a basketball game in progress with players from two opposing teams on the court. The players are spread out across the court, with some near the sides and others closer to the center. There is a large crowd of people in the stands, watching the game. The score is displayed at the top left of the image, indicating that the game is in the final seconds.", - "id": 5333 - }, - { - "image_path": "G:\\images\\combined\\00919b81c44a6146.jpg", - "response": "A man is holding a book with a woman on the cover.", - "id": 5334 - }, - { - "image_path": "G:\\images\\combined\\00922ab06cc71238.jpg", - "response": "A black and white photo of an engine block with the word Invader on it.", - "id": 5335 - }, - { - "image_path": "G:\\images\\combined\\00927c18ac896fc1.jpg", - "response": "A white t-shirt is displayed on the left and right side of the image. The t-shirt on the left has a pocket on the left side and the text \"indie bands with a mission dazzle\" printed on the front. The t-shirt on the right has a pocket on the left side and the text \"If you can't dazzle them with your BRILLIANCE, baffle them with your B.S.\" printed on the front.", - "id": 5336 - }, - { - "image_path": "G:\\images\\combined\\00927_jpg.rf.f6870cf949efaff7ed98871269448667.jpg", - "response": "A group of five men in yellow vests and hard hats are standing in a room. The men are looking at a man who is pointing to a wall of grey electrical panels.", - "id": 5337 - }, - { - "image_path": "G:\\images\\combined\\0092a20b63799744.jpg", - "response": "A black car with a smashed front is parked on the street.", - "id": 5338 - }, - { - "image_path": "G:\\images\\combined\\00932_jpg.rf.28cc0633a3aabab008e59f9852d190c2.jpg", - "response": "A man in a blue hard hat and coveralls is standing on a metal structure. He is holding a red and white beverage bottle and drinking from it. He is also wearing a white glove on his left hand. The man is on top of a metal structure and appears to be at a great height.", - "id": 5339 - }, - { - "image_path": "G:\\images\\combined\\0093ebae4fb8b5cf.jpg", - "response": "A book with the title \"Erich Maria Remarque im Westen nichts Neues\" written on the cover.", - "id": 5340 - }, - { - "image_path": "G:\\images\\combined\\0095c71d8fbe4462.jpg", - "response": "a basketball player holding a ball on a court", - "id": 5341 - }, - { - "image_path": "G:\\images\\combined\\00963eaad91c7da8.jpg", - "response": "A group of people standing behind a wall holding flags and banners.", - "id": 5342 - }, - { - "image_path": "G:\\images\\combined\\00968589ac02a00b.jpg", - "response": "The image shows the exterior of a Lush store. The storefront has a large window display with a variety of products. There are several people walking in and out of the store. One person is carrying a handbag and a backpack. There is a poster on the wall with the words \"They do exist.\" written on it. The store is located in a mall.", - "id": 5343 - }, - { - "image_path": "G:\\images\\combined\\0096b618e500e24b.jpg", - "response": "A baseball player is running on a field.", - "id": 5344 - }, - { - "image_path": "G:\\images\\combined\\00971_jpg.rf.3bd478ce8795b809f122987fc8dfb835.jpg", - "response": "A group of men working on a road.", - "id": 5345 - }, - { - "image_path": "G:\\images\\combined\\00971_jpg.rf.6c155d526f9f58bf3b9902cdaeef9f96.jpg", - "response": "The image shows three men wearing red hard hats and work clothes, pulling a large black pipe along a road. The men are in the process of rolling the pipe, which is covered in dirt. They are all wearing red hard hats and one of the men is also wearing a white t-shirt. The men are in the process of rolling the pipe and it appears to be quite heavy.", - "id": 5346 - }, - { - "image_path": "G:\\images\\combined\\00974_jpg.rf.42a863ab64e32af2e660cd84fd31a91a.jpg", - "response": "a group of men standing in front of a building", - "id": 5347 - }, - { - "image_path": "G:\\images\\combined\\00974_jpg.rf.c1f66e944881a1e7e6f85c5a6c222e15.jpg", - "response": "A group of three men standing in front of a building.", - "id": 5348 - }, - { - "image_path": "G:\\images\\combined\\0097683580838f04.jpg", - "response": "A white semi truck with a lion sticker on the front.", - "id": 5349 - }, - { - "image_path": "G:\\images\\combined\\00977_jpg.rf.1f8db8f5c8fba619cc39589e339848d1.jpg", - "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", - "id": 5350 - }, - { - "image_path": "G:\\images\\combined\\00977_jpg.rf.9189470d6ac4ebdfb4c28cce2e624860.jpg", - "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", - "id": 5351 - }, - { - "image_path": "G:\\images\\combined\\0097b316726906d7.jpg", - "response": "A bottle of champagne sits on a wooden floor. The bottle is green and has a red, white and green ribbon tied around it. The ribbon is tied in a bow. The bottle is closed. The floor is made of wood and has a brown color. There is a chair next to the bottle.", - "id": 5352 - }, - { - "image_path": "G:\\images\\combined\\009816444496f09c.jpg", - "response": "A bottle of Hoegaarden beer sitting on a table.", - "id": 5353 - }, - { - "image_path": "G:\\images\\combined\\009817f6e8bcd068.jpg", - "response": "The image features a vintage yellow car parked on the side of the road. The car has a chrome bumper and silver hubcaps. There is a man visible in the driver's side window. The car is positioned in front of a building and a grassy area is visible in the background.", - "id": 5354 - }, - { - "image_path": "G:\\images\\combined\\0098344405a26bde.jpg", - "response": "Two women are standing in a kitchen. One of them is wearing a white apron. One of them is holding a cell phone. On the table in front of them are various food items and utensils.", - "id": 5355 - }, - { - "image_path": "G:\\images\\combined\\009847496908a1ad.jpg", - "response": "A basketball player in a blue uniform dribbles the ball while another player in a white uniform looks on.", - "id": 5356 - }, - { - "image_path": "G:\\images\\combined\\00988_jpg.rf.0f9a11b6dbbc85b719898c763d5ed6fe.jpg", - "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", - "id": 5357 - }, - { - "image_path": "G:\\images\\combined\\00988_jpg.rf.c3379c2b6ad5781f99ecb8666c124c39.jpg", - "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", - "id": 5358 - }, - { - "image_path": "G:\\images\\combined\\00990_jpg.rf.26276f360ac1d29428c4ed242c33ce5f.jpg", - "response": "An elderly woman is standing next to a refrigerator.", - "id": 5359 - }, - { - "image_path": "G:\\images\\combined\\00993_jpg.rf.d1774f6773b79f07cefb863dc00555cf.jpg", - "response": "In the image there are three men standing next to each other all in blue hats. One man is on the left, he is wearing a grey shirt and a grey and blue cap. The man in the middle is wearing a black shirt and a light blue hat. The man on the right is wearing a brown shirt and a green and blue hat. They all have blue and grey hats.", - "id": 5360 - }, - { - "image_path": "G:\\images\\combined\\00993_jpg.rf.d808a636700f1e7647386c2cc76f5e22.jpg", - "response": "A construction site with three men in hard hats standing next to a sign that says, \\\"\u4e0b\u6709\u7535\u7f06,\u4e25\u7981\u5f00\u6316\\\".", - "id": 5361 - }, - { - "image_path": "G:\\images\\combined\\0099945c5e49aae9.jpg", - "response": "A store with a nokia display case and a lucaioli display case.", - "id": 5362 - }, - { - "image_path": "G:\\images\\combined\\0099ad671d4484c0.jpg", - "response": "A bottle of Rogue Voodoo Doughnut chocolate peanut butter banana ale sits on a table.", - "id": 5363 - }, - { - "image_path": "G:\\images\\combined\\009a1573c01ff327.jpg", - "response": "The album cover for Cream's Disraeli Gears. The cover is a very colorful and trippy image with the band members' faces at the top. The three band members are Jack Bruce, Ginger Baker, and Eric Clapton. They are depicted with their heads stacked on top of each other. The word \"Cream\" is written in large letters in the center of the image. The letters are yellow and outlined in orange. The \"r\" in the word \"Cream\" is replaced with a red and yellow rose. The image is filled with many different colorful patterns and designs. There are two clocks visible in the bottom right corner. One of the clocks is white and has black hands. The other clock is blue and has black hands. There is a pink and yellow bird with red eyes and a red beak flying over the word \"Cream\". The bird has a yellow body and red wings. The wings are spread wide and there are pink flowers on the wings. The background of the image is filled with many different colorful patterns and designs.", - "id": 5364 - }, - { - "image_path": "G:\\images\\combined\\009a716f953692ba.jpg", - "response": "The man is wearing a suit.", - "id": 5365 - }, - { - "image_path": "G:\\images\\combined\\009b425ad3b868b6.jpg", - "response": "A woman standing in front of a white board.", - "id": 5366 - }, - { - "image_path": "G:\\images\\combined\\009ba461026271c3.jpg", - "response": "An ambulance is parked in a garage with another ambulance behind it. The ambulance in the forefront is white with a red checkered pattern on the side. It has a yellow stripe across the front and the words Ambulance Service NSW on the side. There is a logo on the door and a red cross on the back. The ambulance has a tire on the passenger side and a yellow license plate on the front. There are two large headlights on the front of the ambulance.", - "id": 5367 - }, - { - "image_path": "G:\\images\\combined\\009bf5ad19cd8f72.jpg", - "response": "A tea bag that looks like a small golden house is in a cup of tea.", - "id": 5368 - }, - { - "image_path": "G:\\images\\combined\\009dd8288bf5ce4a.jpg", - "response": "A red train is on the tracks at a train station.", - "id": 5369 - }, - { - "image_path": "G:\\images\\combined\\009e76edf23c89df.jpg", - "response": "a white wall with a paper on it", - "id": 5370 - }, - { - "image_path": "G:\\images\\combined\\009f259e443a58b8.jpg", - "response": "A cardboard background with a blue and white toy robot ball called Ollie and a blue toy ball.", - "id": 5371 - }, - { - "image_path": "G:\\images\\combined\\00a035ff3a86e058.jpg", - "response": "The image shows a stove with three pots on it. The pots are filled with food and are sitting on the stove burners. The pots are placed on the stove burners and are sitting on a white stove.", - "id": 5372 - }, - { - "image_path": "G:\\images\\combined\\00a09b822d470896.jpg", - "response": "a red and white bus on a city street", - "id": 5373 - }, - { - "image_path": "G:\\images\\combined\\00a09ecdb91450d6.jpg", - "response": "A Canticle for Leibowitz by Walter M. Miller, Jr.", - "id": 5374 - }, - { - "image_path": "G:\\images\\combined\\00a0d2280595043f.jpg", - "response": "A man and woman are sitting together in a restaurant. The woman is holding a glass of wine and both are smiling. They are wearing black shirts and have short hair. There are other people in the background, sitting at tables and standing around.", - "id": 5375 - }, - { - "image_path": "G:\\images\\combined\\00a0db6495982c1d.jpg", - "response": "A baseball player in a teal jersey and white pants catches a ball in front of a wall with a KeyBank logo on it.", - "id": 5376 - }, - { - "image_path": "G:\\images\\combined\\00a108e5e2160b20.jpg", - "response": "a man in a black jacket with the word Canada on it", - "id": 5377 - }, - { - "image_path": "G:\\images\\combined\\00a1568f9906eaa8.jpg", - "response": "A close up of a tree branch with a silver necklace that says \"Trust\" hanging from it.", - "id": 5378 - }, - { - "image_path": "G:\\images\\combined\\00a16465603c7d44.jpg", - "response": "A red can of coffee with coffee beans on it.", - "id": 5379 - }, - { - "image_path": "G:\\images\\combined\\00a1a5c20b0d8e28.jpg", - "response": "In the image there is a person pouring olive oil into a cup. The oil is yellow and there are several bottles of oil and wine in the background. There are also some fruits, such as apples and oranges, and several cups in the scene.", - "id": 5380 - }, - { - "image_path": "G:\\images\\combined\\00a209837c2bbec5.jpg", - "response": "A red double decker bus driving down the street.", - "id": 5381 - }, - { - "image_path": "G:\\images\\combined\\00a2ac61646c039e.jpg", - "response": "A toy car of the Guardia Civil Trafico on a blue surface.", - "id": 5382 - }, - { - "image_path": "G:\\images\\combined\\00a309828c1dcb84.jpg", - "response": "A snack tray with various snacks and drinks on it.", - "id": 5383 - }, - { - "image_path": "G:\\images\\combined\\00a36cacbd3d2070.jpg", - "response": "A man wearing a brown suit and pink tie standing in front of a pink and white backdrop.", - "id": 5384 - }, - { - "image_path": "G:\\images\\combined\\00a39c7f39870a5c.jpg", - "response": "A watch with a black band and a note that says 0153 John.", - "id": 5385 - }, - { - "image_path": "G:\\images\\combined\\00a40156a2843195.jpg", - "response": "a red box with the word peace on it", - "id": 5386 - }, - { - "image_path": "G:\\images\\combined\\00a42fc158bbdc03.jpg", - "response": "A bus is driving down the street next to a tall building.", - "id": 5387 - }, - { - "image_path": "G:\\images\\combined\\00a4decd12ae97b9.jpg", - "response": "A red and white double decker bus is driving down the street.", - "id": 5388 - }, - { - "image_path": "G:\\images\\combined\\00a4e8944cc8ad7b.jpg", - "response": "A city skyline with a mix of old and new buildings.", - "id": 5389 - }, - { - "image_path": "G:\\images\\combined\\00a5dbacb0654efd.jpg", - "response": "A woman wearing a white shirt is sitting at a table with a coke in front of her. She is holding a toothbrush in her hand. Another person is sitting across from her at the table. There is a chair behind the woman and another chair to her right. The table is surrounded by greenery.", - "id": 5390 - }, - { - "image_path": "G:\\images\\combined\\00a5e66a7d17a02b.jpg", - "response": "a man wearing a black jacket with the letters AM on it", - "id": 5391 - }, - { - "image_path": "G:\\images\\combined\\00a66ef9770f9d2d.jpg", - "response": "The image shows a city street at night with cars parked along the side of the road. There are two taxis among the parked cars. In the background, there is a building with a sign that reads \"BARNES & NOBLE BOOKSELLERS\". The street appears to be quite and undisturbed.", - "id": 5392 - }, - { - "image_path": "G:\\images\\combined\\00a698ae7a2bb13d.jpg", - "response": "A silver watch band on a green cloth.", - "id": 5393 - }, - { - "image_path": "G:\\images\\combined\\00a7b3204ec349a9.jpg", - "response": "A digital display on a wall that is blue and black.", - "id": 5394 - }, - { - "image_path": "G:\\images\\combined\\00a7bd25e5b5cc48.jpg", - "response": "a camera with a light on top of it", - "id": 5395 - }, - { - "image_path": "G:\\images\\combined\\00a8d9ab7c3b9c0e.jpg", - "response": "A group of cars driving down a street next to a McDonalds.", - "id": 5396 - }, - { - "image_path": "G:\\images\\combined\\00a92b45ef93bdb0.jpg", - "response": "A blue car is parked in front of a red building.", - "id": 5397 - }, - { - "image_path": "G:\\images\\combined\\00a96e7f361d71e2.jpg", - "response": "A bottle of Diet Coke sits next to a mirror.", - "id": 5398 - }, - { - "image_path": "G:\\images\\combined\\00a9eb4c3cd8622c.jpg", - "response": "Men standing on top of a podium with a sky background", - "id": 5399 - }, - { - "image_path": "G:\\images\\combined\\00ab9f2e1a54dc14.jpg", - "response": "A poster of Thomas Dry Howie is on display.", - "id": 5400 - }, - { - "image_path": "G:\\images\\combined\\00abf276002161e1.jpg", - "response": "A blue and white bus is driving down the street.", - "id": 5401 - }, - { - "image_path": "G:\\images\\combined\\00ac03de349a3c5b.jpg", - "response": "A banana with the word \"BANANA\" written on it in black ink.", - "id": 5402 - }, - { - "image_path": "G:\\images\\combined\\00ac8697a36e875a.jpg", - "response": "a pitcher on the mound wearing a glove and uniform", - "id": 5403 - }, - { - "image_path": "G:\\images\\combined\\00ac944a31bbe0cc.jpg", - "response": "An older man wearing a white baseball jersey with the word Orioles on it.", - "id": 5404 - }, - { - "image_path": "G:\\images\\combined\\00ad17e05c1a1bf5.jpg", - "response": "A man sitting in the stands at a baseball stadium.", - "id": 5405 - }, - { - "image_path": "G:\\images\\combined\\00ae4925aa2e84d3.jpg", - "response": "A close up of a wooden pen sitting on top of a piece of paper with writing on it.", - "id": 5406 - }, - { - "image_path": "G:\\images\\combined\\00aea206a697bea8.jpg", - "response": "A man wearing a grey suit and red tie stands at a podium in front of a screen. He is wearing glasses and has blonde hair.", - "id": 5407 - }, - { - "image_path": "G:\\images\\combined\\00aec8283e343acd.jpg", - "response": "A wall with a sign that says Mekanism on it. The wall is painted in many different colors of the rainbow. There is a fire extinguisher on the wall and a sign that says exit. There are several bikes parked next to the wall.", - "id": 5408 - }, - { - "image_path": "G:\\images\\combined\\00af2faf31786f05.jpg", - "response": "A film roll with the words Record Brother on it.", - "id": 5409 - }, - { - "image_path": "G:\\images\\combined\\00af42ec3a190514.jpg", - "response": "A large sign advertising a medical center with the names of three doctors and their job titles.", - "id": 5410 - }, - { - "image_path": "G:\\images\\combined\\00af53b6535b8dd2.jpg", - "response": "A team of girls in matching maroon gymnastic uniforms huddle together on the court.", - "id": 5411 - }, - { - "image_path": "G:\\images\\combined\\00afcdd80ab1ba76.jpg", - "response": "A tractor is parked on the grass at a farm.", - "id": 5412 - }, - { - "image_path": "G:\\images\\combined\\00b023e43ad4993e.jpg", - "response": "A street scene with a green and white tram on the left and a street filled with traffic on the right.", - "id": 5413 - }, - { - "image_path": "G:\\images\\combined\\00b07a3d1010af5f.jpg", - "response": "A cutting board with a measuring cup of flour, an egg, and a stick of butter.", - "id": 5414 - }, - { - "image_path": "G:\\images\\combined\\00b0d51471b1f237.jpg", - "response": "A billboard for the television show Grease is the Word is displayed on a building.", - "id": 5415 - }, - { - "image_path": "G:\\images\\combined\\00b12b1d815fac40.jpg", - "response": "A building with a red and white sign that says Benjamin Moore on it.", - "id": 5416 - }, - { - "image_path": "G:\\images\\combined\\00b1efe52ab7d53a.jpg", - "response": "a man with glasses standing in front of a display of RedKen shampoo and conditioner.", - "id": 5417 - }, - { - "image_path": "G:\\images\\combined\\00b1f61a9a3007d1.jpg", - "response": "A camera with a strap sitting on a wooden table.", - "id": 5418 - }, - { - "image_path": "G:\\images\\combined\\00b379d451531010.jpg", - "response": "A movie cover of a woman in a red coat with a white head scarf standing in front of a building.", - "id": 5419 - }, - { - "image_path": "G:\\images\\combined\\00b39d10735575b0.jpg", - "response": "The Oklahoma City Thunder cheerleaders perform in their blue and white outfits in front of a crowd.", - "id": 5420 - }, - { - "image_path": "G:\\images\\combined\\00b4190b562b62eb.jpg", - "response": "The image shows the tail of a light aircraft with the registration VH-NDH. The aircraft is yellow and the tail is made of metal. The aircraft manufacturer is Beechcraft.", - "id": 5421 - }, - { - "image_path": "G:\\images\\combined\\00b425b6d0d57e23.jpg", - "response": "A poster for Bollox, an altered club night for gay, bi and straight queers.", - "id": 5422 - }, - { - "image_path": "G:\\images\\combined\\00b4c6fb8ebb3f42.jpg", - "response": "A black smartphone is laying on a green cloth. The screen of the phone is turned on and has a red background with white, yellow, blue, and red icons. The time on the phone is 13:37.", - "id": 5423 - }, - { - "image_path": "G:\\images\\combined\\00b4e09408946c9a.jpg", - "response": "Four men are standing next to each other on a grassy area. They are all holding cups of drinks. One of the men is holding a large trophy.", - "id": 5424 - }, - { - "image_path": "G:\\images\\combined\\00b55e751a54bfd2.jpg", - "response": "The image features a volleyball game with two women on the court. One of the women is wearing a white shirt and black shorts with a green and white logo on the back. She is standing in front of the net, and her butt is shown in the picture. The other woman is wearing a red uniform and is partially visible in the background. The court has a blue floor and a black and white volleyball net.", - "id": 5425 - }, - { - "image_path": "G:\\images\\combined\\00b5b88720f35a22.jpg", - "response": "A poster for the movie Rush is displayed on a wall. The movie is based on the incredible true story of Formula 1 drivers James Hunt and Niki Lauda. The poster features the two drivers, Hunt and Lauda, in their racing suits. The movie is in theaters on September 13th.", - "id": 5426 - }, - { - "image_path": "G:\\images\\combined\\00b5d92b79a7990f.jpg", - "response": "A train on the tracks at a train station.", - "id": 5427 - }, - { - "image_path": "G:\\images\\combined\\00b5da1e05b5c60f.jpg", - "response": "A woman with brown hair wearing a red tank top and white shorts.", - "id": 5428 - }, - { - "image_path": "G:\\images\\combined\\00b6f96c840767fa.jpg", - "response": "a car with the number 44 on it", - "id": 5429 - }, - { - "image_path": "G:\\images\\combined\\00b788d91c0084f5.jpg", - "response": "The image is a screen shot of an iPad with a variety of icons on the screen.", - "id": 5430 - }, - { - "image_path": "G:\\images\\combined\\00b7cf3c17e0f1f7.jpg", - "response": "A basketball player is holding a basketball and looking up at the ceiling. He is wearing a white jersey with the number 23 on the back. There is a banner hanging on the wall behind him. Another basketball player is visible in the background, as well as a chair and a few other people. The room has a brown and white color scheme and there are several small lights on the ceiling.", - "id": 5431 - }, - { - "image_path": "G:\\images\\combined\\00b8735d5bcdfa22.jpg", - "response": "A red and white image of a crowd of people gathered in a town square. The people are standing and riding horses. There are buildings in the background.", - "id": 5432 - }, - { - "image_path": "G:\\images\\combined\\00b8e76e70c90916.jpg", - "response": "A green neon clock with black numbers on it.", - "id": 5433 - }, - { - "image_path": "G:\\images\\combined\\00b91c61d6a09129.jpg", - "response": "A movie poster on a glass display with asian writing on it.", - "id": 5434 - }, - { - "image_path": "G:\\images\\combined\\00b96943e2320363.jpg", - "response": "A bar with a variety of drinks on the shelves and taps.", - "id": 5435 - }, - { - "image_path": "G:\\images\\combined\\00ba3a61c45d0413.jpg", - "response": "A street sign with several different options for bike rides and other activities.", - "id": 5436 - }, - { - "image_path": "G:\\images\\combined\\00bc35fbb511ef71.jpg", - "response": "A red and white airplane is parked at an airport.", - "id": 5437 - }, - { - "image_path": "G:\\images\\combined\\00bc80d0d1460249.jpg", - "response": "A California Pacific Computers envelope with a software disk inside.", - "id": 5438 - }, - { - "image_path": "G:\\images\\combined\\00bcce3f41312a3f.jpg", - "response": "The image shows two baseball players standing on a field. Both players are wearing blue uniforms with white lettering that say \"Blue Jays.\" The player in the foreground is wearing a blue baseball cap with the Blue Jays logo on it. The cap has a brim that is turned down at the front and up at the back. The player is also wearing sunglasses that are pushed up on his forehead. The player behind him is wearing a blue baseball cap with a red bill. Both players are looking down at the field.", - "id": 5439 - }, - { - "image_path": "G:\\images\\combined\\00bd04a28d45fee5.jpg", - "response": "A man standing in front of a store window.", - "id": 5440 - }, - { - "image_path": "G:\\images\\combined\\00bd4ecb67753232.jpg", - "response": "An orange and white bus is parked in a lot with other buses.", - "id": 5441 - }, - { - "image_path": "G:\\images\\combined\\00bdc07a03221bd8.jpg", - "response": "The image shows a picnic table with a black cooler bag on it. There are two white food containers on the table, one on the left and one on the right. The containers are filled with food. A fork is placed on the left side of the table. In front of the table, there is a bottle of liquid, a bottle of sauce, and a bottle of honey.", - "id": 5442 - }, - { - "image_path": "G:\\images\\combined\\00be435f1f010bcc.jpg", - "response": "A blue bus is driving down a wet street.", - "id": 5443 - }, - { - "image_path": "G:\\images\\combined\\00bec629428e1d73.jpg", - "response": "A black and white photograph of Sir Wilfrid Laurier standing at a podium.", - "id": 5444 - }, - { - "image_path": "G:\\images\\combined\\00bedd5c2fbf2dff.jpg", - "response": "A large Yahoo billboard is shown, with a sign underneath that says \"Talk is cheap. Really.\"", - "id": 5445 - }, - { - "image_path": "G:\\images\\combined\\00bf3355e15e694f.jpg", - "response": "A double decker bus is parked on the side of the road near a building. The bus is orange, white, and blue and is stopped at a bus stop. There are several people standing near the bus, waiting to board. Some of the people are carrying backpacks. The bus has two levels and the top level has a sign that says \"50\" on it. There is also a sign near the bus stop that says \"no standing\" on it.", - "id": 5446 - }, - { - "image_path": "G:\\images\\combined\\00bfb65249fa578f.jpg", - "response": "A cheerleader is jumping in the air with her legs in the air and her hands holding her feet.", - "id": 5447 - }, - { - "image_path": "G:\\images\\combined\\00c098c7959397c3.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 5448 - }, - { - "image_path": "G:\\images\\combined\\00c24377a2cb57aa.jpg", - "response": "The image shows a grocery store with a man walking out of the front door. The store has a magazine rack with several magazines on display. A basket full of tuggaboos is located near the front of the store, and a sign advertising the tuggaboos for 99 cents is hanging above the basket. There are also several bottles of water on display in the store.", - "id": 5449 - }, - { - "image_path": "G:\\images\\combined\\00c2795a1ef8c477.jpg", - "response": "A blue and white sign for Interstate 5 is on a pole.", - "id": 5450 - }, - { - "image_path": "G:\\images\\combined\\00c2f37508a48cc1.jpg", - "response": "A group of football players are sitting at a table with a microphone. A young boy is standing in front of them, and one of the players is holding the microphone in his hand. There is a soldier in the background.", - "id": 5451 - }, - { - "image_path": "G:\\images\\combined\\00c3108d5e110b8a.jpg", - "response": "The image shows a basketball game in progress. There are two teams of players on the court, with one player from each team attempting to shoot the ball through the hoop. The ball is currently in mid-air, being contested by two players. One player is reaching up with both hands to block the shot, while the other player is reaching up with both hands to shoot the ball.", - "id": 5452 - }, - { - "image_path": "G:\\images\\combined\\00c346e16e2154ea.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 5453 - }, - { - "image_path": "G:\\images\\combined\\00c359f294f7dcd9.jpg", - "response": "A small red and white propeller plane with the letters G-ATCO on the side. It is sitting on a grassy field with a cloudy sky above.", - "id": 5454 - }, - { - "image_path": "G:\\images\\combined\\00c3fe9a609acc03.jpg", - "response": "A baseball game is in action as a runner is crossing the plate.", - "id": 5455 - }, - { - "image_path": "G:\\images\\combined\\00c479303d96336c.jpg", - "response": "A bottle of red wine next to two glasses of red wine.", - "id": 5456 - }, - { - "image_path": "G:\\images\\combined\\00c4b4691adeed37.jpg", - "response": "a hand holding a bottle of Coca Cola in front of a sign", - "id": 5457 - }, - { - "image_path": "G:\\images\\combined\\00c4c2eb114f586e.jpg", - "response": "A magazine ad for The Bay features a mother and child on the cover.", - "id": 5458 - }, - { - "image_path": "G:\\images\\combined\\00c5b5728ea00975.jpg", - "response": "The Boston Bruins are wearing their black and yellow jerseys.", - "id": 5459 - }, - { - "image_path": "G:\\images\\combined\\00c60dd0033d0a2a.jpg", - "response": "A cloudy sky over a city street with a large sign for Patsy's Italian and American Foods.", - "id": 5460 - }, - { - "image_path": "G:\\images\\combined\\00c618f03ea0b6a2.jpg", - "response": "In the image there is a bottle of essential oil with a label that says \"essential oil summer blend\" in English and Japanese. The bottle is clear and has a green label with a picture of herbs. The bottle is on a table and there is a white wall in the background.", - "id": 5461 - }, - { - "image_path": "G:\\images\\combined\\00c6c05e400a0b08.jpg", - "response": "A busy city intersection with a yellow taxi cab turning onto the street. The taxi is followed by a black SUV. There are several pedestrians crossing the street, and a traffic light is visible in the background. The city skyline is visible in the distance, with a tall building standing out among the other buildings.", - "id": 5462 - }, - { - "image_path": "G:\\images\\combined\\00c701c3a7421bd9.jpg", - "response": "A blue van and trailer are parked in front of a white domed building. The van has the words \"Census 2010\" on the side and a map of California. There is a man standing between the two vehicles.", - "id": 5463 - }, - { - "image_path": "G:\\images\\combined\\00c7f84d61adce05.jpg", - "response": "a jar of food (443,34),(942,995)", - "id": 5464 - }, - { - "image_path": "G:\\images\\combined\\00c8152e27a63776.jpg", - "response": "A book is open to a page about Joe Cote and Karen. The page is described as a continuation of the book of solamentry. The book is open to the page about Grape Climb.", - "id": 5465 - }, - { - "image_path": "G:\\images\\combined\\00c86a7bbf54df6f.jpg", - "response": "In the image, there is a man wearing glasses and a brown shirt crouching down next to a brown and green trash can. The trash can has a label that says \"Organico\". There is another green trash can in the scene. In the background, there are several other people, some of them wearing backpacks. There is also a bench visible in the scene.", - "id": 5466 - }, - { - "image_path": "G:\\images\\combined\\00c89990b2809b09.jpg", - "response": "A large white billboard is mounted on a brick wall. The billboard is empty and ready for a new advertisement.", - "id": 5467 - }, - { - "image_path": "G:\\images\\combined\\00c8df7ab3eb481b.jpg", - "response": "A newspaper with the heading \"Death notices\" is sitting on a table. There is a pair of glasses on top of the newspaper. Next to the newspaper is a bottle of alcohol. The table is made of wood.", - "id": 5468 - }, - { - "image_path": "G:\\images\\combined\\00c90458856a8866.jpg", - "response": "A young boy wearing a blue and white Cyclones jersey runs across a field.", - "id": 5469 - }, - { - "image_path": "G:\\images\\combined\\00c96e0e060aeb2f.jpg", - "response": "A red bus driving down a street next to a sidewalk.", - "id": 5470 - }, - { - "image_path": "G:\\images\\combined\\00c9f3f8e860c48f.jpg", - "response": "A white bus is driving down the street. There is a puddle of water on the street. People are walking on the sidewalk. There is a traffic light on the corner.", - "id": 5471 - }, - { - "image_path": "G:\\images\\combined\\00ca922eb4890a3b.jpg", - "response": "The image features a black box with a white background. The box is open and contains a black item with a red logo on it. The logo features the text \"\u8fbe\u97f3\u79d1\" written in red and the website \"http://www.duoku.com.cn\" written in white. The box is open and partially unsealed.", - "id": 5472 - }, - { - "image_path": "G:\\images\\combined\\00cacc08df00dec6.jpg", - "response": "A double decker bus is driving down the street.", - "id": 5473 - }, - { - "image_path": "G:\\images\\combined\\00cb8dccb5cb1f59.jpg", - "response": "The image features the back of a blue car with a license plate that reads \"3RD GENERATION PRIUS\". The car has a silver Toyota logo on the trunk.", - "id": 5474 - }, - { - "image_path": "G:\\images\\combined\\00cbc381888d9ffb.jpg", - "response": "A large clock mounted on the side of a building.", - "id": 5475 - }, - { - "image_path": "G:\\images\\combined\\00cc1d72396a132c.jpg", - "response": " Two men(203,375),(458,994)(557,382),(831,995) in military uniforms(557,626),(831,995)(203,567),(457,995) standing in front of a banner(178,205),(786,867)", - "id": 5476 - }, - { - "image_path": "G:\\images\\combined\\00cc908933d73f6e.jpg", - "response": "The image shows a baseball game in progress with several players on the field. A couple of players are holding baseball gloves and are in the middle of the action. One of the players is holding a baseball bat and appears to be about to take a swing.", - "id": 5477 - }, - { - "image_path": "G:\\images\\combined\\00cc9a8d4b253f45.jpg", - "response": "A man in a suit is sitting in front of a TV screen.", - "id": 5478 - }, - { - "image_path": "G:\\images\\combined\\00cca379c1dcdfb1.jpg", - "response": "A black table with a vase of flowers and photos on it.", - "id": 5479 - }, - { - "image_path": "G:\\images\\combined\\00ccc24739bd9b1d.jpg", - "response": "In the image, there are two men standing next to each other. One man is wearing a hat with the American flag on it, and the other man is wearing a colorful African-style shirt. They are both holding beers and smiling for the camera.", - "id": 5480 - }, - { - "image_path": "G:\\images\\combined\\00cdb779e3decc25.jpg", - "response": "A wooden table with a colorful mug that has a banana peel in it.", - "id": 5481 - }, - { - "image_path": "G:\\images\\combined\\00ced4aafc90fa3b.jpg", - "response": "A woman walking down the street in front of a store.", - "id": 5482 - }, - { - "image_path": "G:\\images\\combined\\00cf9f6065d1196b.jpg", - "response": "A baseball game is in progress with a batter swinging the bat, a catcher with a mitt and an umpire behind the plate. The batter is wearing a red helmet and grey baseball uniform. The catcher is wearing a blue and white uniform and the umpire is wearing a blue shirt and grey pants. The baseball field has grass and dirt and there is a crowd of people in the stands watching the game.", - "id": 5483 - }, - { - "image_path": "G:\\images\\combined\\00d03a35f54e8386.jpg", - "response": "A yellow school bus is parked in a parking lot with another bus behind it. The bus has a Ford emblem on the front and is a Ford vehicle.", - "id": 5484 - }, - { - "image_path": "G:\\images\\combined\\00d07a487147789e.jpg", - "response": "a man in a blue jersey is holding a award", - "id": 5485 - }, - { - "image_path": "G:\\images\\combined\\00d0ae2a372fe5e1.jpg", - "response": "A tall white building with panton arms written on the side.", - "id": 5486 - }, - { - "image_path": "G:\\images\\combined\\00d13cf28f104d4e.jpg", - "response": "In the image there is a toothpaste tube with the cap off on a black surface. The toothpaste tube is open and has the words Aquafresh on it.", - "id": 5487 - }, - { - "image_path": "G:\\images\\combined\\00d168fbb8a96a7d.jpg", - "response": "A ZTE Grand X LTE phone on a display with a Qualcomm Snapdragon logo.", - "id": 5488 - }, - { - "image_path": "G:\\images\\combined\\00d17e785bbf2ca1.jpg", - "response": "A red double decker bus is parked on the street.", - "id": 5489 - }, - { - "image_path": "G:\\images\\combined\\00d199d2990fab59.jpg", - "response": "A close up of a pile of coins on a blue cloth. The coins are in various positions and some are partially hidden.", - "id": 5490 - }, - { - "image_path": "G:\\images\\combined\\00d1dc0740d0ab22.jpg", - "response": "A refrigerator with many items attached to it.", - "id": 5491 - }, - { - "image_path": "G:\\images\\combined\\00d202cef5442753.jpg", - "response": "A woman leaning on a Ford Expedition with a white shirt and black pants.", - "id": 5492 - }, - { - "image_path": "G:\\images\\combined\\00d271d34a56eca7.jpg", - "response": "Yahoo News Anchor Rebecca Jarvis and her husband, David, attend the Yahoo News and ABC News White House Correspondents' Dinner Pre-Party at the Newseum on Saturday, April 27, 2013 in Washington, DC.", - "id": 5493 - }, - { - "image_path": "G:\\images\\combined\\00d2c89edbc18f8e.jpg", - "response": "A chalk board with a bottle of alcohol in front of it.", - "id": 5494 - }, - { - "image_path": "G:\\images\\combined\\00d3bc72520af34d.jpg", - "response": "A group of men are playing baseball on a field. They are wearing uniforms and using baseball gloves. There is a crowd of people watching the game from the stands. Some players are standing on the field, while others are in the dugout.", - "id": 5495 - }, - { - "image_path": "G:\\images\\combined\\00d3ca35721256a5.jpg", - "response": "A person holding a playbill for a play called Posterity.", - "id": 5496 - }, - { - "image_path": "G:\\images\\combined\\00d4032b2e2efeba.jpg", - "response": "A man wearing a red, white, and blue hat is riding in the back of a truck.", - "id": 5497 - }, - { - "image_path": "G:\\images\\combined\\00d419271e7f6568.jpg", - "response": "A book cover with the title \"Hanoi\" on the cover.", - "id": 5498 - }, - { - "image_path": "G:\\images\\combined\\00d457b6a730342a.jpg", - "response": "A Lego man is standing next to a Lego car.", - "id": 5499 - }, - { - "image_path": "G:\\images\\combined\\00d480fe5f01a039.jpg", - "response": "A calculator with the numbers 30 on the screen.", - "id": 5500 - }, - { - "image_path": "G:\\images\\combined\\00d4bc290247966b.jpg", - "response": "A Harley Davidson motorcycle with the logo on the front.", - "id": 5501 - }, - { - "image_path": "G:\\images\\combined\\00d4daa87212bcaa.jpg", - "response": "A man sitting in the cockpit of a small red and white airplane.", - "id": 5502 - }, - { - "image_path": "G:\\images\\combined\\00d52121e1ba3a2b.jpg", - "response": "A bathroom with two toilets in it. One is white and one is red.", - "id": 5503 - }, - { - "image_path": "G:\\images\\combined\\00d6242640a1dddd.jpg", - "response": "A dirt road with trees on both sides and a speed limit sign in front of it.", - "id": 5504 - }, - { - "image_path": "G:\\images\\combined\\00d6cb1aaff62b31.jpg", - "response": "a sign in the woods pointing to a trail", - "id": 5505 - }, - { - "image_path": "G:\\images\\combined\\00d72239463dc745.jpg", - "response": "A woman standing next to a sign for the village of North Riverside.", - "id": 5506 - }, - { - "image_path": "G:\\images\\combined\\00d763761e47f723.jpg", - "response": "A silver car parked in a parking lot in front of a building.", - "id": 5507 - }, - { - "image_path": "G:\\images\\combined\\00d7dce5b15ec59b.jpg", - "response": "The image shows the cockpit of a small white airplane with two seats. The cockpit has a clear canopy and is surrounded by a white frame. The plane has two red stripes on the top of the wings, with the name \"lt irwin nelson\" and \"lt pogo reid\" written on them. The plane also has a few warning stickers on the side. The image is taken in a hanger.", - "id": 5508 - }, - { - "image_path": "G:\\images\\combined\\00d80e6c5d66b572.jpg", - "response": "A bus with graffiti on the side of it.", - "id": 5509 - }, - { - "image_path": "G:\\images\\combined\\00d96598f45536e8.jpg", - "response": "Three Pringles cans with the image of Darth Vader on them.", - "id": 5510 - }, - { - "image_path": "G:\\images\\combined\\00d9b70599008429.jpg", - "response": "a woman wearing a green tank top that says W&DAC on it.", - "id": 5511 - }, - { - "image_path": "G:\\images\\combined\\00d9db3d2c186504.jpg", - "response": "A red bus is driving down the street.", - "id": 5512 - }, - { - "image_path": "G:\\images\\combined\\00da4ea73b5cf8b1.jpg", - "response": "A young boy in a blue baseball jersey is getting ready to swing at a pitch. He is positioned in the batter's box with his bat raised. The catcher is positioned behind the batter, wearing a black shirt and holding out his glove. There is a man standing behind the fence, watching the game. Another person is visible in the background.", - "id": 5513 - }, - { - "image_path": "G:\\images\\combined\\00da8c5007a9b0a1.jpg", - "response": "A woman sitting at a desk with a piece of paper in her hand.", - "id": 5514 - }, - { - "image_path": "G:\\images\\combined\\00dac2ec09eeb21a.jpg", - "response": "A black and silver laptop keyboard with a Nano NGS flash drive plugged into the side.", - "id": 5515 - }, - { - "image_path": "G:\\images\\combined\\00dc8d2d1dbd234b.jpg", - "response": "A red grill with food on it.", - "id": 5516 - }, - { - "image_path": "G:\\images\\combined\\00dcb1776e8d6c2a.jpg", - "response": "The image is a collage with three pictures. The top picture is of a planet with a building in the foreground. The middle picture is a Bible with the words \"New World Translation of the Holy Scriptures\" written on it. The bottom picture is of a bird sitting on a tree branch in front of a sun. The words \"O AMOR\" are written in Portuguese in the bottom right corner. Underneath that, it says \"Persevera em todas as coisas O AMOR NUNCA FALHA.\" and the verse \"1 Cor\u00edntios 13:7,8\" is written in gold.", - "id": 5517 - }, - { - "image_path": "G:\\images\\combined\\00dd6d93c5a03b9f.jpg", - "response": "A keyboard is sitting on a desk with papers and a Carnival Cruise paper laying on top of it.", - "id": 5518 - }, - { - "image_path": "G:\\images\\combined\\00dd785b54674737.jpg", - "response": "In the image, there are two baseball players standing on a baseball field. One of the players is wearing a red and white uniform, and the other is wearing a gray and black uniform. They are positioned near the bases, with one player closer to third base and the other closer to first base.", - "id": 5519 - }, - { - "image_path": "G:\\images\\combined\\00dea1edf14f09ab.jpg", - "response": "An ambulance parked on the side of the road.", - "id": 5520 - }, - { - "image_path": "G:\\images\\combined\\00deaa8108d6b4dc.jpg", - "response": "Two children sitting at a table working on a school project.", - "id": 5521 - }, - { - "image_path": "G:\\images\\combined\\00ded642f2ed47b2.jpg", - "response": "A refrigerator with a green sign on it that says \"BRAUEREI LOSCHER\". There are several bottles of beer on top of the refrigerator.", - "id": 5522 - }, - { - "image_path": "G:\\images\\combined\\00df620fc2790ae5.jpg", - "response": "The box for the Teenage Mutant Ninja Turtles set 79100, Kraang Lab Escape. The box is green with the logo in the top left corner and the recommended ages 5-12 in the top right corner. In the bottom left corner is a picture of a turtle being attacked by two robots. In the top right corner is a picture of two turtles fighting.", - "id": 5523 - }, - { - "image_path": "G:\\images\\combined\\00df83bcbdcfa980.jpg", - "response": "A watch with the number 5198 on it.", - "id": 5524 - }, - { - "image_path": "G:\\images\\combined\\00dfc79e002d7ee3.jpg", - "response": "A group of people standing on a race winner podium.", - "id": 5525 - }, - { - "image_path": "G:\\images\\combined\\00e0241176635b5b.jpg", - "response": "the Eldoret sign is red and white(273,478),(458,862)", - "id": 5526 - }, - { - "image_path": "G:\\images\\combined\\00e0422e47cdbeb7.jpg", - "response": "An ambulance with a driver wearing protective gear and a patient in the back, in a remote area of Sierra Leone.", - "id": 5527 - }, - { - "image_path": "G:\\images\\combined\\00e149ece9f3972a.jpg", - "response": "A baseball player wearing a white jersey with the number 22 on the back.", - "id": 5528 - }, - { - "image_path": "G:\\images\\combined\\00e1868250bff33c.jpg", - "response": "A person wearing a white jersey is playing ice hockey on a rink.", - "id": 5529 - }, - { - "image_path": "G:\\images\\combined\\00e1a21cfef5fe80.jpg", - "response": "A bottle of wine with a red and white label.", - "id": 5530 - }, - { - "image_path": "G:\\images\\combined\\00e1dee010109e09.jpg", - "response": "A row of buses are parked in a lot.", - "id": 5531 - }, - { - "image_path": "G:\\images\\combined\\00e2e61cc0b8b5f5.jpg", - "response": "A poster for a performance of Tari Kali.", - "id": 5532 - }, - { - "image_path": "G:\\images\\combined\\00e3bf5e2d0f4368.jpg", - "response": "A man with spiky black hair is talking on a cell phone. He is wearing a red jacket and a ring on his left hand. The background is blurry and there are white lights in the scene.", - "id": 5533 - }, - { - "image_path": "G:\\images\\combined\\00e427d5a9dd7e86.jpg", - "response": "A bus stop advertisement for Street Easy.", - "id": 5534 - }, - { - "image_path": "G:\\images\\combined\\00e43fc3dd6c1cf5.jpg", - "response": "A man wearing a blue shirt is pointing to a projection screen.", - "id": 5535 - }, - { - "image_path": "G:\\images\\combined\\00e46aa8a1d0a592.jpg", - "response": "A close up of a box of electronic equipment on a counter. The box is red and black and says \"ULTRA\" in big black letters on the side. There is a small blue light on top of the box. Next to the box is a white and black manual for the equipment. The manual has a picture of a guitar and says \"G1100-PROFESSIONAL ACTIVESWITCHABLE 4X12 CABINET SIMULATION\" in black letters on the cover.", - "id": 5536 - }, - { - "image_path": "G:\\images\\combined\\00e47b8dd70f4c4b.jpg", - "response": "The image shows three men walking down a sidewalk next to a street. They are all carrying guitars or bass guitars, and appear to be musicians. The men are all wearing different outfits, and the one on the left is carrying a black guitar. The man in the middle is carrying a black guitar and a black bag, and the man on the right is carrying a red guitar and a red bag. There are several cars parked along the street, and a few potted plants are visible in the scene.", - "id": 5537 - }, - { - "image_path": "G:\\images\\combined\\00e54c24a0ef891d.jpg", - "response": "A street sign that says Boulevard on it.", - "id": 5538 - }, - { - "image_path": "G:\\images\\combined\\00e5988f1600409b.jpg", - "response": "A group of women in matching blue and white outfits.", - "id": 5539 - }, - { - "image_path": "G:\\images\\combined\\00e6391c77cff4de.jpg", - "response": "A woman standing behind a table filled with many different types of oils.", - "id": 5540 - }, - { - "image_path": "G:\\images\\combined\\00e69701a85ee1a3.jpg", - "response": "A train station with a train on the tracks.", - "id": 5541 - }, - { - "image_path": "G:\\images\\combined\\00e89628f7bf6d68.jpg", - "response": "A car is parked in front of a large building with a big clock on it. The building is a store that sells clocks.", - "id": 5542 - }, - { - "image_path": "G:\\images\\combined\\00e8e5e79255536f.jpg", - "response": "A white car parked on the side of a street.", - "id": 5543 - }, - { - "image_path": "G:\\images\\combined\\00e942ce767e4d58.jpg", - "response": "A black and white photo of an orange with leaves growing on it. The orange is being held in a vice.", - "id": 5544 - }, - { - "image_path": "G:\\images\\combined\\00e9e161b832fb2a.jpg", - "response": "A busy city street filled with traffic and pedestrians.", - "id": 5545 - }, - { - "image_path": "G:\\images\\combined\\00e9ff4c6baa2ab6.jpg", - "response": "A street scene with a silver SUV parked on the side of the road. There is a small restaurant called \"The Corner\" with a neon sign. A one-way sign is visible, and there is a fire hydrant on the sidewalk. People are walking on the sidewalk, and there is snow on the ground.", - "id": 5546 - }, - { - "image_path": "G:\\images\\combined\\00ea362de70610ac.jpg", - "response": "A bottle of 1982 Mayacamas Cabernet Sauvignon next to a wine glass filled with red wine.", - "id": 5547 - }, - { - "image_path": "G:\\images\\combined\\00eb06ce368a9b9b.jpg", - "response": "A Pepsi truck with the Pepsi logo on the side.", - "id": 5548 - }, - { - "image_path": "G:\\images\\combined\\00eb68f98de1661c.jpg", - "response": "a poster of a man with a bald head and a receding hairline, with a few strands of hair left on top. He has a frowning expression and is looking upwards. He has piercing blue eyes and is wearing earrings. He is wearing a green shirt with a brown vest over it. The word Bored & Old is written in orange and black on the bottom of the poster.", - "id": 5549 - }, - { - "image_path": "G:\\images\\combined\\00eb87bac63c9ec9.jpg", - "response": "A man in a red toy car driving past a formation of toy motorcycles.", - "id": 5550 - }, - { - "image_path": "G:\\images\\combined\\00ebd076f2986d38.jpg", - "response": "A black and white photo of a train sitting at a station.", - "id": 5551 - }, - { - "image_path": "G:\\images\\combined\\00ebf08a1a6e045c.jpg", - "response": "The basketball player in white is dribbling the ball while the player in black is guarding him. There are several other players on the court, some with their arms raised and others sitting on the bench. The bench has several people sitting on it, some with their arms crossed and others with their hands on their knees. There are also two people standing behind the court, one with their hands on their hips and the other with their hands on their knees. The court is surrounded by orange chairs and there are several other people in the background.", - "id": 5552 - }, - { - "image_path": "G:\\images\\combined\\00ec8cd414486cdb.jpg", - "response": "A bottle of Nopal oil with a cork stopper and brown glass bottle. The label is white and says \"Nopal Oil Precious Oil\" in white font.", - "id": 5553 - }, - { - "image_path": "G:\\images\\combined\\00ec8fa225899817.jpg", - "response": "A poster of the movie \"My Dearest Daughter\" which has won three national awards.", - "id": 5554 - }, - { - "image_path": "G:\\images\\combined\\00ecc16a9eb4a5ed.jpg", - "response": "A collage of a red British postbox. The postbox is located on the side of a street. The postbox has the letters SR1 18 on it. The postbox is red with a gold crown on the top left hand corner. The postbox has a gold GPO logo on the front. The postbox is next to a row of shops. The street is empty. There are two traffic lights on the street. One traffic light is on the left hand side and the other is on the right hand side. There is a person walking down the street. The person is wearing a black coat and has a black umbrella. The umbrella is open. The person is walking towards the shops. The shops are on the right hand side of the street. The first shop is a art store. The second shop is a business that sells sports equipment. The third shop is a business that sells antiques. The fourth shop is a business that sells books. The fifth shop is a business that sells toys. The sixth shop is a business that sells shoes. The seventh shop is a business that sells clothing. The eighth shop is a business that sells furniture. The ninth shop is a business that sells electronics. The tenth shop is a business that sells jewelry. The eleventh shop is a business that sells beauty products. The twelfth shop is a business that sells home decor. The thirteenth shop is a business that sells health and wellness products. The fourteenth shop is a business that sells food and drink. The fifteenth shop is a business that sells home improvement products. The sixteenth shop is a business that sells home decor. The seventeenth shop is a business that sells pet supplies. The eighteenth shop is a business that sells electronics. The nineteenth shop is a business that sells toys. The twentieth shop is a business that sells books. The twenty first shop is a business that sells sporting goods. The twenty second shop is a business that sells furniture. The twenty third shop is a business that sells home decor. The twenty fourth shop is a business that sells electronics. The twenty fifth shop is a business that sells pet supplies. The twenty sixth shop is a business that sells sporting goods. The twenty seventh shop is a business that sells furniture. The twenty eighth shop is a business that sells home decor. The twenty ninth shop is a business that sells electronics. The thirtieth shop is a business that sells pet supplies. The thirtieth shop is a business that sells sporting goods. The thirti", - "id": 5555 - }, - { - "image_path": "G:\\images\\combined\\00ecd56cf003cd6e.jpg", - "response": "a traffic light with the number 6 on it", - "id": 5556 - }, - { - "image_path": "G:\\images\\combined\\00ed9ed1b8023c44.jpg", - "response": "A passenger train is pulling into the station.", - "id": 5557 - }, - { - "image_path": "G:\\images\\combined\\00ee02cc29bf07e2.jpg", - "response": "A man in a safety vest is working on a train.", - "id": 5558 - }, - { - "image_path": "G:\\images\\combined\\00eee630d7cc202b.jpg", - "response": "A large train yard with many different trains and train cars.", - "id": 5559 - }, - { - "image_path": "G:\\images\\combined\\00ef7a8de38d6ac8.jpg", - "response": "The image is an open book with a purple border. The pages contain text and photos. The photos are black and white and show scenes from movies. The book is open to two pages that show scenes from the movies \"The Sound of Music\" and \"Gone with the Wind\".", - "id": 5560 - }, - { - "image_path": "G:\\images\\combined\\00efdc3a911667f2.jpg", - "response": "A large billboard featuring a picture of a woman in a bikini is displayed on a building. The image is taken on a street corner with a crosswalk and a traffic light. There is a person walking on the sidewalk and a car and a motorcycle are present in the scene.", - "id": 5561 - }, - { - "image_path": "G:\\images\\combined\\00efe4b4aa33acf5.jpg", - "response": "The image shows a busy airport runway with several airplanes parked on the tarmac. There are at least nine airplanes visible in the scene, with some of them being large and occupying most of the runway. The airplanes are lined up next to each other, with some parked close together and others spaced out slightly more. \n\nIn addition to the airplanes, there are several cars on the runway. These cars are likely being used to transport people or cargo between the planes and the terminal. Some of the cars are close to the airplanes, while others are further away on the tarmac. \n\nThe sky above the airport is a mix of light and dark clouds, suggesting that the weather may be overcast or that a storm is approaching. Overall, the scene is a bustling airport environment with plenty of activity taking place.", - "id": 5562 - }, - { - "image_path": "G:\\images\\combined\\00f016d42e15aaa6.jpg", - "response": "A green and yellow train is stopped at a train station.", - "id": 5563 - }, - { - "image_path": "G:\\images\\combined\\00f1881a91775cc2.jpg", - "response": "a man in a purple shirt with a crown on it", - "id": 5564 - }, - { - "image_path": "G:\\images\\combined\\00f1f33274bec615.jpg", - "response": "a brown piece of paper with a hand drawn map on it", - "id": 5565 - }, - { - "image_path": "G:\\images\\combined\\00f2511c5ec4ac57.jpg", - "response": "A group of people sitting around a table with a laptop and a large amount of legos.", - "id": 5566 - }, - { - "image_path": "G:\\images\\combined\\00f26dd37e2ceb04.jpg", - "response": "a large sign that says welcome to manchester's gay village", - "id": 5567 - }, - { - "image_path": "G:\\images\\combined\\00f3512a94a0a474.jpg", - "response": "A hand drawn poster about the future of books. It has a bunch of boxes with text in them, arrows connecting them, and little stick figures doing various things.", - "id": 5568 - }, - { - "image_path": "G:\\images\\combined\\00f47026ef4f4b52.jpg", - "response": "A train is on the tracks near a platform.", - "id": 5569 - }, - { - "image_path": "G:\\images\\combined\\00f4eed1c02f1fa9.jpg", - "response": "A man writing on a white board with sticky notes attached to it.", - "id": 5570 - }, - { - "image_path": "G:\\images\\combined\\00f6063f74a06749.jpg", - "response": "A large Calvin Klein billboard is on the side of a building.", - "id": 5571 - }, - { - "image_path": "G:\\images\\combined\\00f691b8c6f39410.jpg", - "response": "In the image, a group of people are standing near the water. One man is wearing a blue jersey and looking down. Another man is wearing a purple shirt and has a watch on his wrist. There is a boat in the background and a person is wearing an orange shirt.", - "id": 5572 - }, - { - "image_path": "G:\\images\\combined\\00f7148b7f9da4c0.jpg", - "response": "A bus with the word Bison painted on the side.", - "id": 5573 - }, - { - "image_path": "G:\\images\\combined\\00f734e9f7390f2e.jpg", - "response": "A train stopped at a station with people walking on the platform.", - "id": 5574 - }, - { - "image_path": "G:\\images\\combined\\00f7c2cef7b30f0c.jpg", - "response": "A cat sniffing a wine glass filled with ice and Lillet.", - "id": 5575 - }, - { - "image_path": "G:\\images\\combined\\00f7ecdaa0f46d0d.jpg", - "response": "A purple laptop with a screen open to an article titled Elements of Diffusion.", - "id": 5576 - }, - { - "image_path": "G:\\images\\combined\\00f814e1fc9f25c9.jpg", - "response": "A large scoreboard in front of a stadium with a happy birthday message for Nobunni.", - "id": 5577 - }, - { - "image_path": "G:\\images\\combined\\00f89566491302ff.jpg", - "response": "A large crowd of fans are in the stadium to watch the game.", - "id": 5578 - }, - { - "image_path": "G:\\images\\combined\\00f9078d169011a1.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 5579 - }, - { - "image_path": "G:\\images\\combined\\00f964619cc0aad1.jpg", - "response": "A very long white bus is on display at a show.", - "id": 5580 - }, - { - "image_path": "G:\\images\\combined\\00f9e8872b5be8e6.jpg", - "response": "a sign that says paradise pier in red and blue letters", - "id": 5581 - }, - { - "image_path": "G:\\images\\combined\\00fbe21f9e1b79de.jpg", - "response": "A yellow school bus is parked on the side of the road.", - "id": 5582 - }, - { - "image_path": "G:\\images\\combined\\00fc7557618685cd.jpg", - "response": "A construction site with a sign that says \"Sidewalk Closed Use Other Side\" and a traffic light.", - "id": 5583 - }, - { - "image_path": "G:\\images\\combined\\00fca8a2da7a4694.jpg", - "response": "A watch with a blue face and silver accents.", - "id": 5584 - }, - { - "image_path": "G:\\images\\combined\\00fce9f060ba3884.jpg", - "response": "A red double decker bus is parked in a lot with another bus behind it. The red bus has the words Plymouth in your Pocket on the side of it. There are two lights on top of the bus and two smaller lights on the front of the bus.", - "id": 5585 - }, - { - "image_path": "G:\\images\\combined\\00fd1096ba77710e.jpg", - "response": "a car with a sticker on the windshield that says tvs", - "id": 5586 - }, - { - "image_path": "G:\\images\\combined\\00fd7896b0b67f93.jpg", - "response": "A white board with the words Confusion Ops written on it.", - "id": 5587 - }, - { - "image_path": "G:\\images\\combined\\00fdca7b7b577137.jpg", - "response": "In the image, a baseball player is holding a bat and getting ready to hit the ball. He is wearing a white uniform with the word \"ARMY\" on it. The player is standing on a baseball field, and there are other players and a bench visible in the background. Some people in the stands are watching the game, and one person is holding a camera. The baseball field has a fence around it, and there are bottles and a cooler placed outside the fence.", - "id": 5588 - }, - { - "image_path": "G:\\images\\combined\\00fdf42b979aacac.jpg", - "response": "A close up of a MacBook Pro keyboard with a bunch of USB sticks plugged into it.", - "id": 5589 - }, - { - "image_path": "G:\\images\\combined\\00fedf6008a8f933.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 5590 - }, - { - "image_path": "G:\\images\\combined\\00ffee30f436b71a.jpg", - "response": "A red train engine is on the tracks.", - "id": 5591 - }, - { - "image_path": "G:\\images\\combined\\00_17_jpg.rf.3eef47704a1ca554203390501cdd74f1.jpg", - "response": "A home office with a desk, chair, and computer.", - "id": 5592 - }, - { - "image_path": "G:\\images\\combined\\01-Testing-2_jpg.rf.c1b2540916f84e273b259d12a5c65a4f.jpg", - "response": "The image shows two men working on a project in a large building. One man is standing on a ladder and appears to be installing a large piece of glass, while the other man is standing on the floor and watching the process. They are both wearing white shirts.", - "id": 5593 - }, - { - "image_path": "G:\\images\\combined\\01003_jpg.rf.a171f16195914d828c2fb13b2aea4fba.jpg", - "response": "A man in a white shirt and grey pants standing in front of a sign.", - "id": 5594 - }, - { - "image_path": "G:\\images\\combined\\01003_jpg.rf.a240a83b30323e9adb2d925b8ad28617.jpg", - "response": "A worker in a white hard hat is showing another worker a sign.", - "id": 5595 - }, - { - "image_path": "G:\\images\\combined\\01005e15c5db91a2.jpg", - "response": "A red car is parked on the street next to a red car. Both cars are identical and have a white license plate with black letters and numbers. The red car on the left has a black stripe on the hood. The car on the right has a black stripe on the passenger side door. The stripe on the right car continues on the rear bumper. The stripe on the left car continues on the front bumper. The cars are parked next to a building.", - "id": 5596 - }, - { - "image_path": "G:\\images\\combined\\01016_jpg.rf.95b84786ef5b7294496f84559b25f926.jpg", - "response": "In the image there are two men wearing yellow hard hats, one man is black and the other is white. They are both dressed in work clothes, the white man is holding a clipboard and the black man is pointing at something. They are both standing in front of a machine that spins white yarn.", - "id": 5597 - }, - { - "image_path": "G:\\images\\combined\\01017856bd2da59b.jpg", - "response": "A woman is sitting on a stool in front of an open refrigerator. She is wearing a yellow dress and is holding a sign that says '31.7 kWh ultra energy efficient'. There are many bottles inside the refrigerator, including water and soda.", - "id": 5598 - }, - { - "image_path": "G:\\images\\combined\\0101d12ff7383efb.jpg", - "response": "A silver and white air dryer on a wall.", - "id": 5599 - }, - { - "image_path": "G:\\images\\combined\\0101e090c78a1a97.jpg", - "response": "A group of people playing a game of softball.", - "id": 5600 - }, - { - "image_path": "G:\\images\\combined\\0102022aa14f4c76.jpg", - "response": "A camera with a black lens on a wooden table.", - "id": 5601 - }, - { - "image_path": "G:\\images\\combined\\01020f39f721a95a.jpg", - "response": "A city street with buildings and billboards.", - "id": 5602 - }, - { - "image_path": "G:\\images\\combined\\01023678b3f9c6bf.jpg", - "response": "A comic strip about a man in a library, thanking the public for their support.", - "id": 5603 - }, - { - "image_path": "G:\\images\\combined\\0102685c173f94c5.jpg", - "response": "A bottle of Johnnie Walker Red Label sits next to a glass. The glass is half full with a yellowish liquid.", - "id": 5604 - }, - { - "image_path": "G:\\images\\combined\\01031_jpg.rf.8fbce1259c6bd91df027b5910703f907.jpg", - "response": "In the picture there are three construction workers. One is on the left, he is wearing a yellow hat and a blue shirt. He is holding a yellow hat in his left hand and a rope in his right hand. There is a yellow and blue hard hat on the ground in front of him. To the right of the man on the left, there is another worker in a blue hat and blue shirt. He is sitting on the ground and operating a yellow machine. The third worker is on the right, he is wearing a white shirt and a brown and blue striped shirt. He is wearing a blue hat and is holding a rope in his hand. There are many power lines above the workers.", - "id": 5605 - }, - { - "image_path": "G:\\images\\combined\\010336509eba4001.jpg", - "response": "A close up of three bottles of beer, Greene King IPA, Old Peculier and Wychwood Hobgoblin.", - "id": 5606 - }, - { - "image_path": "G:\\images\\combined\\01035_jpg.rf.c444419d78f89dcae1a47c3fd94f54d3.jpg", - "response": "A group of three men in blue hats are working on a power box.", - "id": 5607 - }, - { - "image_path": "G:\\images\\combined\\01035_jpg.rf.ea9f3341af771e8479a70b0ec9252eaa.jpg", - "response": "The image shows three men in blue helmets and white work clothes, kneeling on a grey roof and working on a grey device. The sky is blue and cloudless.", - "id": 5608 - }, - { - "image_path": "G:\\images\\combined\\010398d4ebeeb600.jpg", - "response": "A poster that says \"Underage drinking is really cool... isn't it?\" is attached to a wall.", - "id": 5609 - }, - { - "image_path": "G:\\images\\combined\\0103Shack04_jpg.rf.ee5e92e14eff0a206e5fa54fd3ad0732.jpg", - "response": "A man in a red shirt and blue jeans is on a ladder.", - "id": 5610 - }, - { - "image_path": "G:\\images\\combined\\01043_jpg.rf.734f709f82bd88a47a2a7686f0963834.jpg", - "response": "A worker in a red jumpsuit and blue hat is working on a power line.", - "id": 5611 - }, - { - "image_path": "G:\\images\\combined\\01043_jpg.rf.ecf31e7222bab12c32d3c365d5577baa.jpg", - "response": "A worker in a red jumpsuit and blue hat is working on wires on a pole.", - "id": 5612 - }, - { - "image_path": "G:\\images\\combined\\01047e9822575c85.jpg", - "response": "A red display case filled with different kinds of donuts.", - "id": 5613 - }, - { - "image_path": "G:\\images\\combined\\0105018670354e7b.jpg", - "response": "A laptop screen that is displaying the install for OS X Yosemite.", - "id": 5614 - }, - { - "image_path": "G:\\images\\combined\\01055_jpg.rf.7904e19f1e72ca4e392252f5f3286427.jpg", - "response": "An electrician is working on a power line.", - "id": 5615 - }, - { - "image_path": "G:\\images\\combined\\01055_jpg.rf.a56f04376e2ea191d3d4143612ba9ee1.jpg", - "response": "An electrician is working on a power line.", - "id": 5616 - }, - { - "image_path": "G:\\images\\combined\\01059_jpg.rf.9ca960c4bab443e951b3022ac70986fd.jpg", - "response": "A group of men in blue hard hats and orange pants are standing in a grassy area. They are all wearing harnesses and one of them has a tool belt. They appear to be construction workers or forest workers.", - "id": 5617 - }, - { - "image_path": "G:\\images\\combined\\01064e5e6509000e.jpg", - "response": "The image shows a variety of bottles on a shelf, including several old-fashioned looking bottles of hair tonic and shampoo. The bottles are displayed in front of a mirror, which reflects the bottles and creates an interesting visual effect. The bottles are of different shapes and sizes, and some are clear while others have colored labels. The shelf appears to be made of wood and is located in a store.", - "id": 5618 - }, - { - "image_path": "G:\\images\\combined\\0107118d03dfd972.jpg", - "response": "A man sitting in front of a laptop computer.", - "id": 5619 - }, - { - "image_path": "G:\\images\\combined\\01085deeb33b557b.jpg", - "response": "A bottle of Cantillon Gueuze, a bottle of water, a cup of liquid, a book, a knife, a fork, and a spoon are on a wooden table.", - "id": 5620 - }, - { - "image_path": "G:\\images\\combined\\0108c3e0b84eb653.jpg", - "response": "A red shirt with a race bib on it that says \"ING\" on it.", - "id": 5621 - }, - { - "image_path": "G:\\images\\combined\\0108dcc595311a92.jpg", - "response": "A metal tin with the words Big Omaha 2009 on it.", - "id": 5622 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.063f1eecf1a0ab168f90229a2ca735a4.jpg", - "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", - "id": 5623 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.0e73a824c2b5c09a1b14192591913249.jpg", - "response": "The image shows a politician wearing a white shirt and a grey suit with a black belt. The politician is putting on a white mask with a black strap. The politician is also adjusting the mask with both hands. They have black hair and glasses. The politician is wearing the mask to protect against COVID-19.", - "id": 5624 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.3dffee5ff567198ad4baa21a8973a54a.jpg", - "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", - "id": 5625 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.98746f6798d40bcc92b96d5acaf67920.jpg", - "response": "In the image, a middle-aged man with glasses is seen adjusting his face mask. He is wearing a white shirt, a grey suit, a brown belt, and a white tie. He has glasses and his hair is black. The man is standing in a room with a pitch black background.", - "id": 5626 - }, - { - "image_path": "G:\\images\\combined\\01094_jpg.rf.82d4e4f1356e781a9cc9ed98e61ddb34.jpg", - "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", - "id": 5627 - }, - { - "image_path": "G:\\images\\combined\\01094_jpg.rf.ee7c9ee5d84f7b26cc85e8b20c3eef90.jpg", - "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", - "id": 5628 - }, - { - "image_path": "G:\\images\\combined\\01099_jpg.rf.42bb05283d43b37e09ab6053e7b533b8.jpg", - "response": "In the image there are three people wearing hard hats and working on a piece of machinery. They appear to be in a factory setting.", - "id": 5629 - }, - { - "image_path": "G:\\images\\combined\\010a0c44af2d077e.jpg", - "response": "A red Peugeot 205 is parked on the side of a street. The car has four doors and is a small hatchback. It has a black stripe on the hood and the license plate is blue and white. There are two people visible through the windshield. There are a few other cars parked on the street and a few more in the background. There is a building in the background and a grassy area with rocks in front of it.", - "id": 5630 - }, - { - "image_path": "G:\\images\\combined\\010cab48008cd1f2.jpg", - "response": "A large exhibit hall with a sign that says Mexico on it.", - "id": 5631 - }, - { - "image_path": "G:\\images\\combined\\010caf0314876f5d.jpg", - "response": "A man wearing a black and gold soccer uniform with the number 2 on the front.", - "id": 5632 - }, - { - "image_path": "G:\\images\\combined\\010cdb580b439adb.jpg", - "response": "A bag of crackers and a carton of The Green Mile juice laying on the grass.", - "id": 5633 - }, - { - "image_path": "G:\\images\\combined\\010cfb13c3b9be8d.jpg", - "response": "A white Transit van with its door open parked on the street.", - "id": 5634 - }, - { - "image_path": "G:\\images\\combined\\010d10f950a36864.jpg", - "response": "In the image, there is a bottle of Scope mouthwash sitting on a bathroom sink. Next to the mouthwash is a tube of toothpaste. A small cup is also visible in the scene.", - "id": 5635 - }, - { - "image_path": "G:\\images\\combined\\010fd875bdb3f616.jpg", - "response": " a white piece(39,215),(972,836) of paper with black writing on it", - "id": 5636 - }, - { - "image_path": "G:\\images\\combined\\01102aebe24b7ccb.jpg", - "response": "A busy street with a lot of traffic signs and buildings in the background. There is a van driving down the street.", - "id": 5637 - }, - { - "image_path": "G:\\images\\combined\\0110df3fb0710f34.jpg", - "response": "a large sign for Gates Bar-B-Q on top of a building", - "id": 5638 - }, - { - "image_path": "G:\\images\\combined\\01110_jpg.rf.ac8d48fd3debfbd8c82dbf7a794693ab.jpg", - "response": "Three engineers in green vests and white helmets are discussing blueprints in a building under construction.", - "id": 5639 - }, - { - "image_path": "G:\\images\\combined\\01110_jpg.rf.c4114f4e56ee63489f18f3e61d702870.jpg", - "response": "Three engineers in green safety vests and white helmets are standing in a construction site, looking over blueprints.", - "id": 5640 - }, - { - "image_path": "G:\\images\\combined\\01114_jpg.rf.1ffd29371d129cee9b75e8fb161e6993.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 5641 - }, - { - "image_path": "G:\\images\\combined\\01114_jpg.rf.224207099b817e8d41a6a0d7c40e60cc.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 5642 - }, - { - "image_path": "G:\\images\\combined\\0112996eca2a29e7.jpg", - "response": "The bus is a large vehicle with a pink and purple color scheme. It has a door with a set of stairs leading inside. The bus is parked in a parking lot with other buses in the background.", - "id": 5643 - }, - { - "image_path": "G:\\images\\combined\\01129_jpg.rf.5b0a80db87c83fba17014e8bd5459e26.jpg", - "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and has a tool in his hand. In the background, there is a tower.", - "id": 5644 - }, - { - "image_path": "G:\\images\\combined\\01129_jpg.rf.c2d64cfe1d63395ffa5db342dc4f9959.jpg", - "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and appears to be skilled at his job. In the background, there is a tower.", - "id": 5645 - }, - { - "image_path": "G:\\images\\combined\\0112d7f151517f35.jpg", - "response": "A couple of buses on a wet road.", - "id": 5646 - }, - { - "image_path": "G:\\images\\combined\\0112fff372a9199f.jpg", - "response": "A police station with multiple police cars parked inside. The cars are facing different directions and are all black. Some of the cars have red and blue lights on top.", - "id": 5647 - }, - { - "image_path": "G:\\images\\combined\\01133647412c00b0.jpg", - "response": "A yellow taxi cab with the number 865 on the door.", - "id": 5648 - }, - { - "image_path": "G:\\images\\combined\\01139_jpg.rf.55e59dd0b332885a6193a1b936dc222e.jpg", - "response": "The image shows three people in blue short-sleeved shirts and white safety helmets standing in front of a construction site. The person on the left is a middle-aged man with a beard and a tag hanging from his shirt. The person in the middle is a middle-aged man with a tag on his shirt and a pen in his right hand. The person on the right is a woman with a ponytail and a tag on her shirt. They are all looking to the right. In the background, there is a sign that says \"\u5b89\u5168\u7528\u7535\" (Safety use electricity). To the right of the three people, there are red bricks and wooden scaffolding.", - "id": 5649 - }, - { - "image_path": "G:\\images\\combined\\01139_jpg.rf.561b09b15974fe22691ff2e6dda7d391.jpg", - "response": "A construction site with three people in hard hats.", - "id": 5650 - }, - { - "image_path": "G:\\images\\combined\\011415d9302c14e8.jpg", - "response": "three ipods of different sizes sitting on a table", - "id": 5651 - }, - { - "image_path": "G:\\images\\combined\\01143_jpg.rf.3ded2f85430425195c8f38efa56d581f.jpg", - "response": "The image shows a group of four men standing in three yellow safety shacks. Each man is wearing a red hard hat. The left most man is wearing a black coat and the man on the right is wearing a green sweatshirt. The man in the middle, on the right side of the image, is wearing a red sweatshirt with a white shirt underneath. The man on the left is wearing a black coat with a grey shirt underneath. The man on the far right is wearing a green sweatshirt with a grey shirt underneath. There is a red and white mat on the floor in front of the shacks. On the left side of the image is a display case with a screen showing a white and black diagram. The screen is on the right side of the image and there is a sign on the left side of the image that says \"\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\". There is also a sign on the right side of the image that says \"\u5b89\u5168\u4f53\u9a8c\u9986\" in Chinese.", - "id": 5652 - }, - { - "image_path": "G:\\images\\combined\\01143_jpg.rf.b69c2537501b88893cc0f476f6b930d5.jpg", - "response": "An experiment is being conducted where four men are standing in four separate\u4f53\u9a8c\u9986\u7684\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\u533a. Each man is wearing a safety helmet and their\u4f53\u9a8c\u9986 is measuring their performance.", - "id": 5653 - }, - { - "image_path": "G:\\images\\combined\\01146_jpg.rf.bdf7423869abf5f9a29f203422557c7d.jpg", - "response": "A group of four men wearing blue overalls and yellow hard hats are standing in a clearing in a forest. They are holding tools including a large spade and a chainsaw.", - "id": 5654 - }, - { - "image_path": "G:\\images\\combined\\0114ec2282986ca4.jpg", - "response": "a group of baseball players standing on the field", - "id": 5655 - }, - { - "image_path": "G:\\images\\combined\\01151b36623af990.jpg", - "response": "A baseball player wearing a blue and white uniform is standing on the field.", - "id": 5656 - }, - { - "image_path": "G:\\images\\combined\\0115456b0bfa2ff1.jpg", - "response": "A wooden table with a pitcher and a glass of Stella Artois beer.", - "id": 5657 - }, - { - "image_path": "G:\\images\\combined\\01161eea482575dc.jpg", - "response": "A street scene with a traffic light over the road. There are several cars parked on the side of the road and a few people walking around. The street is lined with buildings and there is a McDonald's in the background.", - "id": 5658 - }, - { - "image_path": "G:\\images\\combined\\01163_jpg.rf.4d4e539ebab5fcbdc41be7aba71a0548.jpg", - "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is reaching into their pocket.", - "id": 5659 - }, - { - "image_path": "G:\\images\\combined\\01163_jpg.rf.f6d73d8cc9aa5e506b4e462e18a1bfa3.jpg", - "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is looking at the camera.", - "id": 5660 - }, - { - "image_path": "G:\\images\\combined\\01164_jpg.rf.09c64066c608c99e49ad42923e4ddef6.jpg", - "response": "A worker in a camouflage jacket and a blue hat is working on an electricity component outdoors. He is sitting on a red stool and is focusing on the task at hand. There are several other workers in the background, but the main focus is on the man in the front.", - "id": 5661 - }, - { - "image_path": "G:\\images\\combined\\01164_jpg.rf.156d5380e4062180fe98d1e72925458c.jpg", - "response": "A man in a grey jacket and blue hat is working on an electrical component outdoors. He is wearing a grey jacket and blue hat. There is a grey electrical component in front of him and he is holding a pair of pliers. There are several other people in the background.", - "id": 5662 - }, - { - "image_path": "G:\\images\\combined\\0116dcb302273101.jpg", - "response": "A grey Audi A7 is parked in a parking lot next to other cars. The car has a trunk and four doors. It has a license plate that says \"WAZ 7240\". There is a red light on the back of the car. The car is parked in a parking space.", - "id": 5663 - }, - { - "image_path": "G:\\images\\combined\\0116dcf25359ea13.jpg", - "response": "A large green M&M's candy character on a city billboard.", - "id": 5664 - }, - { - "image_path": "G:\\images\\combined\\0116e31d285903a0.jpg", - "response": "A soccer game is being played on a grass field.", - "id": 5665 - }, - { - "image_path": "G:\\images\\combined\\01178cc7592926a9.jpg", - "response": "A National Express bus is parked in a parking lot.", - "id": 5666 - }, - { - "image_path": "G:\\images\\combined\\01178_jpg.rf.39ca3a751b24868c60e54b9237ae02e8.jpg", - "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue jeans, blue work shirts and blue hard hats. One of the men is holding a drill in his right hand. The roof of the home appears to be in disrepair, with several boards missing and others replaced with metal. The sky is grey and overcast, and there is a small building in the background on the left.", - "id": 5667 - }, - { - "image_path": "G:\\images\\combined\\01178_jpg.rf.826ebf205567fe59fc0e8cc746f47ff2.jpg", - "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue uniforms and blue hard hats. One of the men is holding a large wrench in his hand. The roof of the home appears to be in disrepair, with several nails sticking out. In the background, there is a small building and a chain link fence.", - "id": 5668 - }, - { - "image_path": "G:\\images\\combined\\01185_jpg.rf.576f5075b57501eaa88635d8a7ab61e4.jpg", - "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with a concrete floor. The person on the left is pointing towards the right, and the person on the right is standing with their hands behind their back. There are many boxes on the left side of the image, and a pipe on the right side. The background is blurred out, making the people and objects in the foreground stand out.", - "id": 5669 - }, - { - "image_path": "G:\\images\\combined\\01185_jpg.rf.7acf3c3cb1ed5db7316c73012783ec3f.jpg", - "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with yellow and white lines on the floor. The person on the left is pointing towards the right, and the person on the right has their hands behind their back. There are many boxes and containers in the warehouse, and a pipe is visible on the ceiling.", - "id": 5670 - }, - { - "image_path": "G:\\images\\combined\\0118b3d906fae853.jpg", - "response": "A man dribbling a basketball on a court.", - "id": 5671 - }, - { - "image_path": "G:\\images\\combined\\0119301a01cee4e8.jpg", - "response": "a man writing on a white board(383,146),(753,994)", - "id": 5672 - }, - { - "image_path": "G:\\images\\combined\\01196dd1503890cd.jpg", - "response": "A poster that says Communication and Teamwork on it.", - "id": 5673 - }, - { - "image_path": "G:\\images\\combined\\0119c15fefb94aa7.jpg", - "response": "A table with five different watches on it.", - "id": 5674 - }, - { - "image_path": "G:\\images\\combined\\0119c232dddc018c.jpg", - "response": "A busy city street filled with traffic and pedestrians. There are two blue and white buses, multiple yellow taxis, and several cars on the road. People are walking on the sidewalks and crossing the street. Some people are carrying backpacks and handbags. There are also a few traffic lights in the scene.", - "id": 5675 - }, - { - "image_path": "G:\\images\\combined\\011a5843434e7358.jpg", - "response": "A can of spray paint sitting in the grass in front of a wall covered in graffiti.", - "id": 5676 - }, - { - "image_path": "G:\\images\\combined\\011b1e34799f59e2.jpg", - "response": "A poem written by Dan Buck is shown in a blue text box. The poem is titled \"The Ocean Tip\" and is in black font. The poem is written in free verse and is 10 lines long. The first line is \"In the beginning was the end.\"", - "id": 5677 - }, - { - "image_path": "G:\\images\\combined\\011b5bdd30be6dc4.jpg", - "response": "A poster of a man in Uncle Sam attire standing next to the American Legion emblem.", - "id": 5678 - }, - { - "image_path": "G:\\images\\combined\\011c16a034b2e73c.jpg", - "response": "A railroad crossing with a traffic light and a sign.", - "id": 5679 - }, - { - "image_path": "G:\\images\\combined\\011c36b835cc0e31.jpg", - "response": "a black and white photo of a clock on a wall", - "id": 5680 - }, - { - "image_path": "G:\\images\\combined\\011c42afa9a0fd90.jpg", - "response": "A Hawaiian Airlines plane sits on the tarmac.", - "id": 5681 - }, - { - "image_path": "G:\\images\\combined\\011c88f89ef53e23.jpg", - "response": "A man looking through a glass display of soccer jerseys at a FC Bayern Munich fan shop.", - "id": 5682 - }, - { - "image_path": "G:\\images\\combined\\011d187d1189b4e2.jpg", - "response": "A bottle of The Red Door red wine from Elk Run winery in Maryland. The label is white with a red door on it. The door has a gold frame and is slightly ajar. The door has a gold sign above it that says \"Elk Run\". The wine is a red table wine. The bottle is on a wooden table.", - "id": 5683 - }, - { - "image_path": "G:\\images\\combined\\011d91b451c274fb.jpg", - "response": "A baseball game is in progress with a batter at home plate holding a bat, a catcher with a glove behind the batter, and an umpire standing behind the catcher. There are several players in the field and on the bench, and a few baseball gloves scattered around the field. The stadium is full of fans watching the game, some of whom are sitting on the bleachers and others standing behind the field.", - "id": 5684 - }, - { - "image_path": "G:\\images\\combined\\011d99edbc3f2310.jpg", - "response": "A close up of a wooden ruler on a table.", - "id": 5685 - }, - { - "image_path": "G:\\images\\combined\\011e153f0c98b3b0.jpg", - "response": "A red Ford F150 pickup truck covered in snow.", - "id": 5686 - }, - { - "image_path": "G:\\images\\combined\\011e4cefd7a1f14c.jpg", - "response": "A silver car with the number 13 on the front of it.", - "id": 5687 - }, - { - "image_path": "G:\\images\\combined\\011e7e629fb9ae7b.jpg", - "response": "The image shows a row of Listerine Zero mouthwash bottles on a white shelf. There are nine bottles in total, arranged in three columns of three. The bottles are clear and filled with a light blue liquid. The label on each bottle features a blue and white logo with the word \"Listerine\" in bold white font. Underneath the logo, the label reads \"Zero\" in bold white font. The mouthwash is described as \"Less intense\" and \"zero alcohol\" on the label.", - "id": 5688 - }, - { - "image_path": "G:\\images\\combined\\011eb2fdc9715438.jpg", - "response": "A close up of a few wine bottles on a shelf. The wine bottles are all lined up and have labels on them. The one on the left is for a wine called Sur Lie and has a white label. The middle bottle is for a wine called Gros Plant du Pays Nantais and has a green label. The right bottle is for a wine called Muscadet S\u00e8vre et Maine and has a white label with a black print on it.", - "id": 5689 - }, - { - "image_path": "G:\\images\\combined\\011f132da434fc51.jpg", - "response": "An image of a phone with the screen reading \"Software Update\" and a button that says \"Later\" and another button that says \"Now Install\".", - "id": 5690 - }, - { - "image_path": "G:\\images\\combined\\011f1c9736c84042.jpg", - "response": "A man in a suit holding a knife above his head.", - "id": 5691 - }, - { - "image_path": "G:\\images\\combined\\011f69bab7136f0c.jpg", - "response": "A couple of men sitting on a couch wearing green jackets.", - "id": 5692 - }, - { - "image_path": "G:\\images\\combined\\011f83c26f88c72f.jpg", - "response": "A pitcher in a red jersey is in the middle of throwing a baseball.", - "id": 5693 - }, - { - "image_path": "G:\\images\\combined\\011f97f760fec57a.jpg", - "response": "A bottle of Abstract sitting on a counter next to a wine glass.", - "id": 5694 - }, - { - "image_path": "G:\\images\\combined\\01200d3c7b34006c.jpg", - "response": "A person holding a smart watch in their hand. The watch has a black band and the time is 10:13. The watch is also showing the date as Friday the 13th.", - "id": 5695 - }, - { - "image_path": "G:\\images\\combined\\01202_jpg.rf.c03834662d90d40f8744b325e04e75a3.jpg", - "response": " two men(334,251),(656,865)(7,229),(324,997) with blue hard hats(368,249),(490,420)(75,229),(249,453) on, one of them is spraying a white wall(607,6),(997,997) with a water gun(578,584),(729,811)", - "id": 5696 - }, - { - "image_path": "G:\\images\\combined\\01202_jpg.rf.daadd5614252de9aee4f254dd51e458c.jpg", - "response": " Two men(335,250),(654,864)(7,229),(324,997) wearing blue hard hats(368,249),(491,433)(77,229),(245,453) and holding a water jet(577,586),(728,814) in a flooded room.", - "id": 5697 - }, - { - "image_path": "G:\\images\\combined\\01205a1cac8c2e33.jpg", - "response": "A poster for a show featuring Delta of Venus, Vermillion Lies, and Tippy Canoe. The poster features a skeleton in a red coat holding a dead bird and hugging a skeleton woman. The skeleton woman is holding a star. There are also skeleton wings on the woman's back. The show is on Friday, January 22nd at 8:30 PM at 1345 E. 12th St. in Arvis, CA.", - "id": 5698 - }, - { - "image_path": "G:\\images\\combined\\01208bd6923207db.jpg", - "response": "A dining table with plates, a glass of beer, a bottle of Jack Astor's Brewski, a bottle of hot sauce and a menu.", - "id": 5699 - }, - { - "image_path": "G:\\images\\combined\\01209963ab93abd9.jpg", - "response": "A man wearing a black suit and red tie stands at a podium in front of a microphone. He is wearing a wristband on his left arm and appears to be giving a speech.", - "id": 5700 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.737b8abc2b2efd020c1b4b57cb5d720b.jpg", - "response": "A woman wearing a surgical mask and coughing on a train.", - "id": 5701 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.a4f91f2cb2a3a11978e8803b5adc242a.jpg", - "response": "A woman wearing a mask and coughing on a subway train.", - "id": 5702 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.b9b99f84d58baa1cbab009a6457daafb.jpg", - "response": "A woman wearing a mask and coughing on a subway train.", - "id": 5703 - }, - { - "image_path": "G:\\images\\combined\\01212_jpg.rf.715e43bd93a6b5b9d657645fa2463044.jpg", - "response": "The image shows three men dressed in blue work clothes and yellow hard hats standing on a muddy patch of ground. They are all wearing blue aprons and have climbing harnesses on. The man in the middle is holding a cell phone and looking at it. The man on the left is holding a pair of pliers and looking down at a patch of ground. The man on the right is looking through a pair of binoculars and has a walkie-talkie strapped to his belt. They are all looking out over a green forest that borders the muddy patch of ground. In the background, a city skyline is visible through the trees.", - "id": 5704 - }, - { - "image_path": "G:\\images\\combined\\01212_jpg.rf.80eadb0983efe395a66e76a05f887c0f.jpg", - "response": "A group of three men in blue work clothes and yellow hard hats.", - "id": 5705 - }, - { - "image_path": "G:\\images\\combined\\01215_jpg.rf.c16569cb04089d5f13ed16d8ebfe58f4.jpg", - "response": "An electrician in grey and blue uniform and wearing a blue hard hat is pointing to something in a grey control box with a lot of wires inside. The control box is open and mounted on a concrete wall. There is a rope tied to the electrician.", - "id": 5706 - }, - { - "image_path": "G:\\images\\combined\\01215_jpg.rf.d7c8142777b787afb9b7dbcd8c93f3ae.jpg", - "response": "An electrician in grey suit and blue hard hat pointing to something in a grey box with red and black wires.", - "id": 5707 - }, - { - "image_path": "G:\\images\\combined\\012177742de13113.jpg", - "response": "A busy city street with many cars, taxis, and pedestrians. There are also many large electronic billboards in the area.", - "id": 5708 - }, - { - "image_path": "G:\\images\\combined\\01219b2f91356b54.jpg", - "response": "A group of people sitting around a table.", - "id": 5709 - }, - { - "image_path": "G:\\images\\combined\\0121e99197f8885d.jpg", - "response": "A white, blue and pink city bus is driving down the street.", - "id": 5710 - }, - { - "image_path": "G:\\images\\combined\\01226892fe46adee.jpg", - "response": "A tan bus is driving down a dirt road.", - "id": 5711 - }, - { - "image_path": "G:\\images\\combined\\0122c5279a501df2.jpg", - "response": "An airplane in the sky with landing gear down.", - "id": 5712 - }, - { - "image_path": "G:\\images\\combined\\0122d250eabd65c3.jpg", - "response": "A large sign advertising the University of Montreal at night.", - "id": 5713 - }, - { - "image_path": "G:\\images\\combined\\01230267e5ac9af1.jpg", - "response": "A street sign showing the distance to several destinations.", - "id": 5714 - }, - { - "image_path": "G:\\images\\combined\\01232_jpg.rf.40ccda07e03eb10958899bd6c6eb2922.jpg", - "response": "Three Chinese men in blue uniforms and hard hats walking down a sidewalk.", - "id": 5715 - }, - { - "image_path": "G:\\images\\combined\\01232_jpg.rf.c81dc15e8c58c8a2d35b3e60f1dd5f49.jpg", - "response": "The three Chinese men are wearing blue hard hats.", - "id": 5716 - }, - { - "image_path": "G:\\images\\combined\\012352464779abdf.jpg", - "response": "A laptop computer sitting on a desk.", - "id": 5717 - }, - { - "image_path": "G:\\images\\combined\\01235_jpg.rf.33f2c68632807dc06e10bdb01075f739.jpg", - "response": "A couple of men in blue helmets are checking a red cable. They are both dressed in black. One of the men is holding a digital multimeter. They are standing in front of a silver metal tower. In the background, there are solar panels and power transmission lines.", - "id": 5718 - }, - { - "image_path": "G:\\images\\combined\\01235_jpg.rf.a0fee109d118abfafab87243e7ff970e.jpg", - "response": "A man in a blue hat and black jacket points to a piece of equipment in a field. Another man in a blue hat and black jacket stands next to him. In the background, solar panels can be seen.", - "id": 5719 - }, - { - "image_path": "G:\\images\\combined\\012372cab6855b83.jpg", - "response": "A white wall with three black and white prints of people on bikes. The one in the middle says \"My other ride is your mom\"", - "id": 5720 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.19578451d0568ef146af6b0a16d12d24.jpg", - "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing protective goggles. The people are of various heights and appearances, and some of them are carrying backpacks or small bags. The scene is set in a busy city, with many people walking in different directions.", - "id": 5721 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.250032082e3d9bd69154342670af8116.jpg", - "response": "A crowded of people walking in the street wearing facemasks.", - "id": 5722 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.6db0dc3348e1babbbfd4bc59ca97cdee.jpg", - "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing black or grey coats. The people are of varying heights and ages, and some are carrying backpacks or suitcases. The scene is rather busy and bustling.", - "id": 5723 - }, - { - "image_path": "G:\\images\\combined\\01248f94edf92e02.jpg", - "response": "A yellow tram is driving down the street and has stopped at a traffic light. There are several cars parked on the side of the street. A couple of people are standing on the corner, and a few more people are walking around. There is a stop sign in the background, and a few street signs can be seen above the tram.", - "id": 5724 - }, - { - "image_path": "G:\\images\\combined\\0124a48367e2d801.jpg", - "response": "A bottle of Le Reveisseur VSOP brandy sits on a wooden table. The bottle is almost empty, with only a small amount of liquid remaining. The label on the bottle is white and red, with the brand name and other information printed on it. The cap of the bottle is black and has a gold fleur de lis design on it. The bottle is made of glass and is cylindrical in shape.", - "id": 5725 - }, - { - "image_path": "G:\\images\\combined\\0124c35d7405ef5f.jpg", - "response": "A woman wearing a blue and white shirt and black pants holding a black bag over her shoulder and a black and red belt.", - "id": 5726 - }, - { - "image_path": "G:\\images\\combined\\01258_jpg.rf.a0e5d5043dbd60837e07e2192cfef772.jpg", - "response": "In the image, two male workers wearing blue helmets are seen. They are standing next to a yellow truck with its hood open. The workers seem to be checking the inner part of the truck. One of the workers is holding a red pen and is looking at a white paper that he has in his hand. The paper contains some information. The truck is parked near a green lawn.", - "id": 5727 - }, - { - "image_path": "G:\\images\\combined\\01261_jpg.rf.55313e5c124f083a8711ccda93dcdfbf.jpg", - "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", - "id": 5728 - }, - { - "image_path": "G:\\images\\combined\\01261_jpg.rf.8795132b866d660e24d118ecb72cafbe.jpg", - "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", - "id": 5729 - }, - { - "image_path": "G:\\images\\combined\\01266_jpg.rf.65e938fcadac13ed2232fa7988c31a3c.jpg", - "response": "A group of three men in neon green shirts and blue hard hats are standing in front of a large metal box.", - "id": 5730 - }, - { - "image_path": "G:\\images\\combined\\01266_jpg.rf.b2f0dd15927cffece51563b9e99c95e1.jpg", - "response": "A group of three men standing in front of a large electrical box.", - "id": 5731 - }, - { - "image_path": "G:\\images\\combined\\01268_jpg.rf.bc109d4a014a91e2ae68a5aa01320e2c.jpg", - "response": "In the image a man is wearing a blue hard hat and work shirt as he looks down at a camera in his hand. He is standing in a room filled with machinery. To the right of the man there is a large metal cylinder with a black and silver machine on top of it. The wall to the left of the man is a bright white.", - "id": 5732 - }, - { - "image_path": "G:\\images\\combined\\01270_jpg.rf.7d2c952fd789ed230cd07d0db5dd1521.jpg", - "response": "An electrician is working on power lines.", - "id": 5733 - }, - { - "image_path": "G:\\images\\combined\\0127299557fae7b2.jpg", - "response": "A sign for an Indian dance recital is posted on a wall.", - "id": 5734 - }, - { - "image_path": "G:\\images\\combined\\01277_jpg.rf.a0c18dddd6f056b355ad4ff9eec74836.jpg", - "response": "The image shows two men walking through a field with a white dog between them. The men are wearing blue shirts and blue hats, and are carrying yellow and blue tools. The dog is a white Samoyed, with a rope on its neck. It is panting and appears to be walking voluntarily between the two men.", - "id": 5735 - }, - { - "image_path": "G:\\images\\combined\\0127d14364206022.jpg", - "response": "An airport scene with a large jetliner parked on the tarmac. The plane is white and yellow and says \"Royal Brunei\" on the side. There are people walking around the plane and a stairway is visible leading up to the plane. There is also a reflection of the plane in a window.", - "id": 5736 - }, - { - "image_path": "G:\\images\\combined\\01280_jpg.rf.515e9037455a72e4c7089596114c12b1.jpg", - "response": "A few men dressed in blue and yellow work uniforms and yellow and blue helmets are working on an electricity line in a field.", - "id": 5737 - }, - { - "image_path": "G:\\images\\combined\\01280_jpg.rf.e5d1d70a76c82eee9b850ac8e0240126.jpg", - "response": "A group of three men dressed in blue and yellow work clothes. They are standing in a field and are wearing yellow helmets. They are working on an electricity wire.", - "id": 5738 - }, - { - "image_path": "G:\\images\\combined\\012858674b02d06a.jpg", - "response": "A busy city street filled with traffic and lined with tall buildings.", - "id": 5739 - }, - { - "image_path": "G:\\images\\combined\\012929dbb05a8ddf.jpg", - "response": "A large blue scoreboard hanging from the ceiling.", - "id": 5740 - }, - { - "image_path": "G:\\images\\combined\\012940be63dd946c.jpg", - "response": "A train is pulling into the station.", - "id": 5741 - }, - { - "image_path": "G:\\images\\combined\\01298_jpg.rf.4383140e13233520536f95977ea62997.jpg", - "response": "The image shows two workers in blue and yellow work clothes and green camouflage clothes, with helmets and white and blue protective clothing, standing on a suspension bridge and maintaining the power supply. The bridge is located in a mountainous area, with mountains on both sides and a river below. The sky is overcast, and the two workers are in the middle of the photo, one on the left and the other on the right.", - "id": 5742 - }, - { - "image_path": "G:\\images\\combined\\01298_jpg.rf.af3fd6a06091c394383053b40b021a32.jpg", - "response": "The image shows two workers in blue and yellow work clothes and yellow helmets, with one of them climbing a suspension bridge to fix the power transmission line. The sky is overcast, and the river below the suspension bridge is brown. On the right side of the bridge, there are large rocks with a height of about 20 meters.", - "id": 5743 - }, - { - "image_path": "G:\\images\\combined\\0129d29b15e8792e.jpg", - "response": "A bottle of Peay Pinot Noir from 2010, from Sonoma Coast.", - "id": 5744 - }, - { - "image_path": "G:\\images\\combined\\0129fa55a43f1b97.jpg", - "response": "The women cyclocross riders are chatting before the race.", - "id": 5745 - }, - { - "image_path": "G:\\images\\combined\\012a9b831b6ca1dc.jpg", - "response": "a white box(142,74),(886,982)", - "id": 5746 - }, - { - "image_path": "G:\\images\\combined\\012ab1e92a27b6c5.jpg", - "response": "a blue street sign that says welcome to jersey", - "id": 5747 - }, - { - "image_path": "G:\\images\\combined\\012ac43f6fda5713.jpg", - "response": "A baseball game is being played at night with many fans in the stands.", - "id": 5748 - }, - { - "image_path": "G:\\images\\combined\\012b127d2bbc7b85.jpg", - "response": "A man sitting at a table with a plate of food and a cup of beer in front of him.", - "id": 5749 - }, - { - "image_path": "G:\\images\\combined\\012c0700db4deff3.jpg", - "response": "A clown sitting on a bench next to a sign.", - "id": 5750 - }, - { - "image_path": "G:\\images\\combined\\012c101e4543382e.jpg", - "response": "a book that is open to the intro section", - "id": 5751 - }, - { - "image_path": "G:\\images\\combined\\012ca0f6e8ab8ce1.jpg", - "response": "The man writing on the white board is wearing a shirt that says \"I'm with the band\". There is a person sitting down watching the man write on the board.", - "id": 5752 - }, - { - "image_path": "G:\\images\\combined\\012d3c38641c9662.jpg", - "response": "A female model is presenting two LG monitors, one is an ultra-wide 29-inch model and the other is a 24-inch model.", - "id": 5753 - }, - { - "image_path": "G:\\images\\combined\\012da22452404628.jpg", - "response": "A baseball player holding a bat and wearing a grey uniform with the number 35 on the back.", - "id": 5754 - }, - { - "image_path": "G:\\images\\combined\\012e881187339ace.jpg", - "response": "A van covered in graffiti with the writing \"faits l'amour pas les marges\" written on it.", - "id": 5755 - }, - { - "image_path": "G:\\images\\combined\\01303_jpg.rf.0daec2f3a1ad9b77f0b5699330b06f33.jpg", - "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be fixing the pipe. There is a forest in the background.", - "id": 5756 - }, - { - "image_path": "G:\\images\\combined\\01303_jpg.rf.edc12f267f2b88424a78c2b2c5661389.jpg", - "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be working on it. There is a forest in the background and a body of water to the left of the pipe.", - "id": 5757 - }, - { - "image_path": "G:\\images\\combined\\0130857ff09335ec.jpg", - "response": "A man sitting on a bench next to a man working on a large box filled with wires.", - "id": 5758 - }, - { - "image_path": "G:\\images\\combined\\0130b4fb5d99865f.jpg", - "response": "A propaganda poster of North Korea showing soldiers and civilians with a flag and a snowflake in the bottom right corner.", - "id": 5759 - }, - { - "image_path": "G:\\images\\combined\\0130fdef839b46d8.jpg", - "response": "The image features a woman with a left hand wearing a silver ring and a light blue nail polish. She is reaching for a bottle of nail polish, which is a red color. In front of her, there are three bottles of nail polish, one of which is a red color, one is a brown color, and the other is a green color. The woman is also holding a small mirror in her right hand.", - "id": 5760 - }, - { - "image_path": "G:\\images\\combined\\0131227c5d633be4.jpg", - "response": "A green Mercedes van with a flower painted on the side.", - "id": 5761 - }, - { - "image_path": "G:\\images\\combined\\01313422ad6c5186.jpg", - "response": "A person sitting at a table with a beer bottle on the table.", - "id": 5762 - }, - { - "image_path": "G:\\images\\combined\\01325_jpg.rf.de4bf5f67aed3fa389b2be08d5a959c9.jpg", - "response": "The image shows a news program with a male news anchor wearing a white helmet and a black suit. He is reporting on the safety conditions of a construction site for a project called\u6731\u6d77\u5175\u68c0\u67e5\u91cd\u70b9\u9805\u76ee\u5de5\u5730\u5b89\u5168\u751f\u4ea7\u60c5\u51b5. Behind him, there are several people, some wearing white helmets and black suits. There are also some scaffolding and steel bars visible in the background. The news anchor is standing in front of a building under construction.", - "id": 5763 - }, - { - "image_path": "G:\\images\\combined\\01325_jpg.rf.f8bdceb3dddcfd9d8e0b73bc657fd8d8.jpg", - "response": "The image shows a Chinese man wearing a white hard hat and a black suit. He is standing in front of a construction site with a backdrop of metal frameworks. The man is also a\u8bb0\u8005, which translates to journalist in English.", - "id": 5764 - }, - { - "image_path": "G:\\images\\combined\\01326_jpg.rf.32eedb629292c72813d75e491568d200.jpg", - "response": "a man in a yellow hard hat standing in front of a building under construction", - "id": 5765 - }, - { - "image_path": "G:\\images\\combined\\01326_jpg.rf.80a668d3565a0e59931569324d17f70e.jpg", - "response": "a man in a yellow hard hat standing in front of a building under construction", - "id": 5766 - }, - { - "image_path": "G:\\images\\combined\\0132f7dbed0ab722.jpg", - "response": "A yellow airplane with a propeller and the word NAVY on the side.", - "id": 5767 - }, - { - "image_path": "G:\\images\\combined\\013330b2b25f4c27.jpg", - "response": "A group of people standing around a table with papers and books on it.", - "id": 5768 - }, - { - "image_path": "G:\\images\\combined\\013333fa2fe396ce.jpg", - "response": "An airplane wing with the letters SAS on it, flying over a cloudy sky.", - "id": 5769 - }, - { - "image_path": "G:\\images\\combined\\01333a37245c7e5a.jpg", - "response": "A man is working on the side of a red and white airplane.", - "id": 5770 - }, - { - "image_path": "G:\\images\\combined\\01334_jpg.rf.c5e7082d15231efb9e22fd62c3101ecb.jpg", - "response": "A man in a black jacket and a white and black striped shirt standing in front of a building with a white hat on.", - "id": 5771 - }, - { - "image_path": "G:\\images\\combined\\01334_jpg.rf.f8fae2ee0944f3b2f969879fb7396c85.jpg", - "response": "A man in a black jacket and a white and black striped shirt standing in front of a construction site with a white helmet on.", - "id": 5772 - }, - { - "image_path": "G:\\images\\combined\\01335761c3a1a042.jpg", - "response": "A desktop computer monitor that is on and has a game of RoboCop displayed.", - "id": 5773 - }, - { - "image_path": "G:\\images\\combined\\01336_jpg.rf.cfa812003e6fc003a7ab9c99bf9a2038.jpg", - "response": "a group of men standing around a construction site", - "id": 5774 - }, - { - "image_path": "G:\\images\\combined\\01338_jpg.rf.03332cf842442fce9d4b2715c68165bb.jpg", - "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket. The fifth man is wearing a white shirt with a black jacket. They are all standing in front of a building that is under construction. The building has scaffolding around it.", - "id": 5775 - }, - { - "image_path": "G:\\images\\combined\\01338_jpg.rf.6e7f5dcafc46dcc89621b076f5796c46.jpg", - "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket.", - "id": 5776 - }, - { - "image_path": "G:\\images\\combined\\01346_jpg.rf.602815ffe2f241aa137536b24686b6c4.jpg", - "response": "A group of men standing around each other", - "id": 5777 - }, - { - "image_path": "G:\\images\\combined\\01346_jpg.rf.eac8cd16d806b341435e56dbdef8f159.jpg", - "response": "A group of men standing around each other", - "id": 5778 - }, - { - "image_path": "G:\\images\\combined\\0134a2b3e00c9bbb.jpg", - "response": "a person wearing a grey t-shirt with the word JRUBY on it", - "id": 5779 - }, - { - "image_path": "G:\\images\\combined\\0134b639e97160be.jpg", - "response": "A table with a bottle and a glass on it.", - "id": 5780 - }, - { - "image_path": "G:\\images\\combined\\013547912a1c0427.jpg", - "response": "Two books, one red and one green, both with white writing.", - "id": 5781 - }, - { - "image_path": "G:\\images\\combined\\0135a49e57da39be.jpg", - "response": "A poster for a pay-per-view event called \"Celebrity Catfight\" featuring two women, Sabine and Miley. The event is scheduled for April 13, 2015 at 8 PM at the MGM Arena. The poster is in black and red with the two women's heads on top and their names below. The event is promoted by Ticketmaster.", - "id": 5782 - }, - { - "image_path": "G:\\images\\combined\\0135ecc9b0929eee.jpg", - "response": "A man and a woman are laying on the ground in a hallway. The woman has a backpack on her back and a black shirt. The man has a green backpack on his back and a white shirt. They are both looking at a cell phone that the man is holding. There are two other people in the background, one with a black shirt and the other with a white shirt. There is also a potted plant in the scene.", - "id": 5783 - }, - { - "image_path": "G:\\images\\combined\\013641ae181daa2b.jpg", - "response": "A stress ball in the shape of a grey airplane with a smiley face and orange and blue markings.", - "id": 5784 - }, - { - "image_path": "G:\\images\\combined\\0136a83ff81b983f.jpg", - "response": "A large airplane is sitting on the runway.", - "id": 5785 - }, - { - "image_path": "G:\\images\\combined\\013713ed319f3787.jpg", - "response": "A model of a British Airways airplane on a white stand.", - "id": 5786 - }, - { - "image_path": "G:\\images\\combined\\01375ce0b7e9e9f6.jpg", - "response": "The image features a large crowd of people gathered in a stadium to watch a baseball game. The stadium has several banners and signs on the walls, including a large American flag that is draped across the field. There are also several people wearing uniforms, possibly military personnel, in the foreground. The crowd is made up of people of various heights and are spread out throughout the stadium.", - "id": 5787 - }, - { - "image_path": "G:\\images\\combined\\01381947b0093f43.jpg", - "response": "The image features a street sign that reads \"Dead Cat Alley\" in white lettering on a green background. The sign is attached to a metal pole and is located in front of a tree. There is also a handicap parking sign on the same pole.", - "id": 5788 - }, - { - "image_path": "G:\\images\\combined\\013843632c661815.jpg", - "response": "A close up of a electronic keyboard with many keys and knobs.", - "id": 5789 - }, - { - "image_path": "G:\\images\\combined\\013876297354531e.jpg", - "response": "A sign that says \" Failte - Welcome THE BURREN protected landscape\" in white lettering.", - "id": 5790 - }, - { - "image_path": "G:\\images\\combined\\0138cfa682ce8f81.jpg", - "response": "A trash can with a black bag in it.", - "id": 5791 - }, - { - "image_path": "G:\\images\\combined\\0138ef96e5e0b9f1.jpg", - "response": "In the image, a man is throwing a basketball while wearing a plaid shirt. He is surrounded by a group of people, some of whom are also holding sports equipment. Among the people, one is wearing a blue shirt that says \"Go Gators\" on it, and another is holding a football. There are also two people in the background wearing blue and white uniforms.", - "id": 5792 - }, - { - "image_path": "G:\\images\\combined\\01391774c70c2c88.jpg", - "response": "A large poster for the 2009 AVN Adult Movie Awards is hanging from the ceiling.", - "id": 5793 - }, - { - "image_path": "G:\\images\\combined\\013a40f4c388e5b6.jpg", - "response": "A large screen TV is displaying a baseball game.", - "id": 5794 - }, - { - "image_path": "G:\\images\\combined\\013a414982747e7f.jpg", - "response": "A black laptop computer is open and sitting on a desk. The screen displays a page in Japanese.", - "id": 5795 - }, - { - "image_path": "G:\\images\\combined\\013aaeeee730a054.jpg", - "response": "A bucket full of wine bottles, with four of them being Fontana wine.", - "id": 5796 - }, - { - "image_path": "G:\\images\\combined\\013c51db660db1a0.jpg", - "response": "A package of a banana dessert with a red and white label.", - "id": 5797 - }, - { - "image_path": "G:\\images\\combined\\013cbd2122ad9b0e.jpg", - "response": "A large brick building with many windows and a sign that says \"More Art Less Labels\" painted on the side.", - "id": 5798 - }, - { - "image_path": "G:\\images\\combined\\013d1f1e520e0671.jpg", - "response": "A silver car parked on the street.", - "id": 5799 - }, - { - "image_path": "G:\\images\\combined\\013dc51c1e1c49aa.jpg", - "response": "A table with a variety of items on it including two bottles of wine, a cup, a bowl, a book, and a fork.", - "id": 5800 - }, - { - "image_path": "G:\\images\\combined\\013e566ab243798e.jpg", - "response": "A man and a woman are sitting on a couch. The woman is sitting on the man's lap and they are both looking at a glass of wine on the table. The man is wearing a suit and the woman is wearing a leopard print dress.", - "id": 5801 - }, - { - "image_path": "G:\\images\\combined\\013efc66b15d181a.jpg", - "response": "An sony camera on a wooden table.", - "id": 5802 - }, - { - "image_path": "G:\\images\\combined\\013f031fcc0ca89e.jpg", - "response": "A black and gold clock with the word Steveston above it.", - "id": 5803 - }, - { - "image_path": "G:\\images\\combined\\013f5cac93b70098.jpg", - "response": "A traffic light is hanging from a pole with two banners attached. The banners are for Cambie Village and one of them has a picture of a watermelon on it. The sky is overcast.", - "id": 5804 - }, - { - "image_path": "G:\\images\\combined\\013f60365831c99b.jpg", - "response": "A baseball player is running to a base on a field.", - "id": 5805 - }, - { - "image_path": "G:\\images\\combined\\013f72888fc44c2d.jpg", - "response": "The image shows a table filled with a large number of beer bottles of various shapes and sizes. Some of the bottles are brown and green, while others are green and white. There are at least 14 bottles visible in the image. A few of the bottles have white labels, while others have red, green, or no labels at all. The table is made of wood and is located in a dark room.", - "id": 5806 - }, - { - "image_path": "G:\\images\\combined\\0140a5561c6ffb8f.jpg", - "response": "The image shows a blue airplane with the word \"Red Bull\" painted on the side. The airplane has a clear canopy and a man is visible through the canopy. The sky is overcast and there are clouds in the background.", - "id": 5807 - }, - { - "image_path": "G:\\images\\combined\\0140ad9cc68a7850.jpg", - "response": "The men are celebrating their win in the indoor track meet.", - "id": 5808 - }, - { - "image_path": "G:\\images\\combined\\0141be4beb33df3a.jpg", - "response": "A red background with white text that says \"God gives every bird its food, but he does not throw it into its nest.\"", - "id": 5809 - }, - { - "image_path": "G:\\images\\combined\\0141c5ca2550f729.jpg", - "response": "A table with five boxes of Johnnie Walker Black Label on it.", - "id": 5810 - }, - { - "image_path": "G:\\images\\combined\\0141fb7b82dafe61.jpg", - "response": "a man in a grey and white jersey is playing basketball", - "id": 5811 - }, - { - "image_path": "G:\\images\\combined\\01420fa41cf561b2.jpg", - "response": "A album cover for a recording of Fran\u00e7ois Couperin's \"Apoth\u00e9oses\". The image features a painting of a woman with a yellow scarf flowing behind her. She is depicted as a muse, holding a yellow fabric that seems to be made of silk. She is wearing a yellow dress and a red sash around her waist. She is also wearing a gold necklace and a gold bracelet on her right arm. She is holding the yellow fabric with her left hand and her right hand is raised in the air.", - "id": 5812 - }, - { - "image_path": "G:\\images\\combined\\01434_jpg.rf.4fdbffeeea543bd8d0638c8b8dde4726.jpg", - "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and white dress while the other one is wearing blue helmet and grey dress. Both the workers are holding their tools and are ready to work.", - "id": 5813 - }, - { - "image_path": "G:\\images\\combined\\01434_jpg.rf.ede1cbfd8bf79cca5f3b2598002b3d37.jpg", - "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and is holding a rope and is about to climb a wooden electric pole while the other worker is seen wearing blue helmet and has a machine in his hand which he is using to do his job. Both the workers seem to be enjoying their work despite the challenging conditions.", - "id": 5814 - }, - { - "image_path": "G:\\images\\combined\\01437_jpg.rf.4b23791324180482e6b5a90d61a6a6c5.jpg", - "response": "In the image there are three men in blue hard hats and work clothes. They are all working on a large white pipe that is sitting on the ground. One man is on the left and he is holding a large blue and white pipe wrench. Another man is standing in the middle and he is measuring the pipe with a long grey ruler. The third man is on the right side of the image. They all appear to be working together on the pipe.", - "id": 5815 - }, - { - "image_path": "G:\\images\\combined\\01437_jpg.rf.5abedb4d52b841e7c9c498b6fdeb78fc.jpg", - "response": "In the image there are three men working on a white pipe. The men are wearing blue uniforms and blue helmets. They are in a mountainous area and one of them is measuring the white pipe using a blue and white meter.", - "id": 5816 - }, - { - "image_path": "G:\\images\\combined\\01439094022a3130.jpg", - "response": "The image shows a group of people standing around a table in a office environment. There are chairs around the table and a few other tables visible in the room. The people are gathered in front of a glass wall and seem to be engaged in a discussion. There is a clock on the wall and a suitcase sitting on the floor. The room has a blue carpet and a window, and there are a few other people visible in the background.", - "id": 5817 - }, - { - "image_path": "G:\\images\\combined\\01439cbed26bbea7.jpg", - "response": "A street sign that is on the side of the road.", - "id": 5818 - }, - { - "image_path": "G:\\images\\combined\\0143bda2cbfdd1fb.jpg", - "response": "A maroon colored car with the license plate Y628 GRL is parked on the side of the street. The car is a small station wagon. There is a lawn with a curve in it, and the car is parked on the other side of the lawn. There are houses in the background, and a car is parked in front of one of them.", - "id": 5819 - }, - { - "image_path": "G:\\images\\combined\\01441_jpg.rf.b26c9a2d07adc7b02695a05351e3eae8.jpg", - "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue shirt underneath. She is also wearing a blue helmet. They are carrying the wooden box to a yellow truck in the background. There are some plants in the background on the right side of the image.", - "id": 5820 - }, - { - "image_path": "G:\\images\\combined\\01441_jpg.rf.c240f8418a67b8968c7cbd800af88633.jpg", - "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue logo on the left side. She is also wearing a blue helmet. In the background, there is a yellow truck with a bed. To the right of the woman, there are some buildings. In the foreground, there are some plants with green leaves.", - "id": 5821 - }, - { - "image_path": "G:\\images\\combined\\01450273ed35a7b7.jpg", - "response": "The image features the cover art for the video game Deus Ex: Human Revolution. The main character, Adam Jensen, is depicted in the center of the image wearing a black leather jacket and a black shirt. He is standing in front of a shattered glass that is in various shades of yellow and orange. The glass is arranged in a way that it looks like a golden triangle is being formed by the shards. The text on the image is in white and is arranged in a way that looks like it is being sliced by the shattered glass. The text includes the word \"Deus\" at the top, \"Ex\" in the middle, and \"Human Revolution\" on the bottom.", - "id": 5822 - }, - { - "image_path": "G:\\images\\combined\\014552d32aa7b097.jpg", - "response": "A white board with writing on it in green marker.", - "id": 5823 - }, - { - "image_path": "G:\\images\\combined\\014641bf55cb78cc.jpg", - "response": "A street sign on a pole in front of a brick building.", - "id": 5824 - }, - { - "image_path": "G:\\images\\combined\\01464_jpg.rf.8b04ab9de6f70e697eef17a6bf4fd0d8.jpg", - "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a white pipe in his hand. The other man is on the right side of the room and is wearing a blue helmet, a pink shirt, and a blue vest. He is also holding a white pipe.", - "id": 5825 - }, - { - "image_path": "G:\\images\\combined\\01464_jpg.rf.dd1b0e1df770d46212ba0e28aabef4f1.jpg", - "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a clipboard. The other man is on the right side of the room and is wearing a blue helmet, a yellow shirt, and is holding a pipe. They are both looking at a pipe and a valve.", - "id": 5826 - }, - { - "image_path": "G:\\images\\combined\\01466_jpg.rf.a15e9b44297913557387d20e979a625d.jpg", - "response": " two women(245,5),(430,701)(406,169),(579,667) in blue and yellow hard hats(458,169),(567,306)(302,3),(420,117) in a factory", - "id": 5827 - }, - { - "image_path": "G:\\images\\combined\\0146944292756039.jpg", - "response": "An advertisement for Barr's Ginger Beer. The bottle is shown sitting on a pile of sand with a beach scene in the background. A beach chair is visible in the image.", - "id": 5828 - }, - { - "image_path": "G:\\images\\combined\\0146ee06439dbf10.jpg", - "response": "A sign post with several signs attached to it.", - "id": 5829 - }, - { - "image_path": "G:\\images\\combined\\0146fa849c61c53e.jpg", - "response": "A box with two coffee bags and two coffee mugs inside.", - "id": 5830 - }, - { - "image_path": "G:\\images\\combined\\014745c5610ab10f.jpg", - "response": "A baseball game is in progress with a batter up to the plate holding a bat. The catcher is squatting behind the batter and the umpire is standing behind the catcher.", - "id": 5831 - }, - { - "image_path": "G:\\images\\combined\\0147562d48d839ca.jpg", - "response": "A bottle of Goose Watch 2006 Pinot Grigio sits on a counter.", - "id": 5832 - }, - { - "image_path": "G:\\images\\combined\\01475_jpg.rf.25e45e98171217b713736885a3b9ce00.jpg", - "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", - "id": 5833 - }, - { - "image_path": "G:\\images\\combined\\01475_jpg.rf.615cbfd3f8d050a70e30c0f292c0a343.jpg", - "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", - "id": 5834 - }, - { - "image_path": "G:\\images\\combined\\01478_jpg.rf.a4779090cf0764da5d2684700b21ca12.jpg", - "response": "A group of men working on a power line.", - "id": 5835 - }, - { - "image_path": "G:\\images\\combined\\0147994bc80b9c5c.jpg", - "response": "A red and yellow bus is parked in a parking lot with another bus behind it. There is a light pole next to the bus and a stop sign in the background.", - "id": 5836 - }, - { - "image_path": "G:\\images\\combined\\01483_jpg.rf.2f5f434f70037e1a46107ede4000a627.jpg", - "response": "A man in a white shirt and blue hat is talking to a man in a white shirt and red hat. Both men are wearing Power China shirts. They are standing in front of a large piece of equipment.", - "id": 5837 - }, - { - "image_path": "G:\\images\\combined\\014881d40b96d745.jpg", - "response": "A brown and blue van parked in front of a tan building.", - "id": 5838 - }, - { - "image_path": "G:\\images\\combined\\01489_jpg.rf.603accae9361003d4c8908f7bab61175.jpg", - "response": "A man in a blue hat and blue coat is holding a device in front of a meter box.", - "id": 5839 - }, - { - "image_path": "G:\\images\\combined\\0148d16f35e42c8c.jpg", - "response": "A man in a suit pointing to a large projection screen.", - "id": 5840 - }, - { - "image_path": "G:\\images\\combined\\0149503b615a7dc0.jpg", - "response": "a close up of a ruler on a purple and white floral print fabric", - "id": 5841 - }, - { - "image_path": "G:\\images\\combined\\01496_jpg.rf.1c31ac5c14b994f546d62fabd258741d.jpg", - "response": "two men standing on a road(649,293),(949,849)", - "id": 5842 - }, - { - "image_path": "G:\\images\\combined\\01496_jpg.rf.bb4b6458578f802c4336b6c1bc3ff46f.jpg", - "response": "two men standing on a road(643,289),(948,857)", - "id": 5843 - }, - { - "image_path": "G:\\images\\combined\\014a6593575a4330.jpg", - "response": "A television sitting on a shelf with a cell phone in front of it.", - "id": 5844 - }, - { - "image_path": "G:\\images\\combined\\014a7499b0466d5f.jpg", - "response": "An LG executive is presenting the world's first 4K curved OLED TV to a visitor at the 2014 International CES.", - "id": 5845 - }, - { - "image_path": "G:\\images\\combined\\014afe1edd4ca5d8.jpg", - "response": "An old abandoned bus sits in front of a small wooden building.", - "id": 5846 - }, - { - "image_path": "G:\\images\\combined\\014b1b9ba066ad84.jpg", - "response": "A table with a pink mug, a can of Sapporo beer, a wine glass, a bottle of sauce, a bowl of food, and a grill with food on it.", - "id": 5847 - }, - { - "image_path": "G:\\images\\combined\\014ba19f37c0a46c.jpg", - "response": "A grey Toyota Corolla parked on the side of the street.", - "id": 5848 - }, - { - "image_path": "G:\\images\\combined\\014d074f58b81e48.jpg", - "response": "A yellow bus with a white license plate that says F3 BBC.", - "id": 5849 - }, - { - "image_path": "G:\\images\\combined\\014dc9d971f35687.jpg", - "response": "A tall tower with a clock on it.", - "id": 5850 - }, - { - "image_path": "G:\\images\\combined\\014e2fad668d39bd.jpg", - "response": "A corner store is located on a street corner.", - "id": 5851 - }, - { - "image_path": "G:\\images\\combined\\014e36dcc0355140.jpg", - "response": "a book with the word okmd on the page", - "id": 5852 - }, - { - "image_path": "G:\\images\\combined\\014e3af6657e6531.jpg", - "response": "A green and white bus is parked in a parking lot next to a blue and white bus. The green and white bus has a white license plate with black letters and numbers.", - "id": 5853 - }, - { - "image_path": "G:\\images\\combined\\014ed59aa74afbef.jpg", - "response": "A television screen is displaying a picture of a street.", - "id": 5854 - }, - { - "image_path": "G:\\images\\combined\\014f2bebc44d66a9.jpg", - "response": "In the image there is a blue and orange van parked on a flooded street. The van is a small delivery van and has the word \"Sebrae\" written on the side. There is also an orange stripe on the van. In the background there are shops and a person walking.", - "id": 5855 - }, - { - "image_path": "G:\\images\\combined\\014f710ed6d450fc.jpg", - "response": "A person wearing a watch is touching a computer screen.", - "id": 5856 - }, - { - "image_path": "G:\\images\\combined\\014f7221241d94cb.jpg", - "response": "A television screen with a song playing on it.", - "id": 5857 - }, - { - "image_path": "G:\\images\\combined\\014fbf8ef4b53fd2.jpg", - "response": "a group of people sitting at a table", - "id": 5858 - }, - { - "image_path": "G:\\images\\combined\\015064cd4f943a40.jpg", - "response": "A yellow school bus numbered 192 is parked in a parking lot with other school buses.", - "id": 5859 - }, - { - "image_path": "G:\\images\\combined\\01508daa80f0d00e.jpg", - "response": "A golf course with a sign that says 18 Par 4 and has the hole numbers 4, 384, 383, and 340.", - "id": 5860 - }, - { - "image_path": "G:\\images\\combined\\0152dc2fd893e5b7.jpg", - "response": "A large advertisement for The Railway Children charity.", - "id": 5861 - }, - { - "image_path": "G:\\images\\combined\\015329f53f79d0fc.jpg", - "response": "A baseball game is being played in a stadium with many spectators. The pitcher is in the middle of his windup, preparing to throw the ball. The batter is holding a baseball bat and is ready to swing at the incoming pitch. There are other players on the field, including those in the outfield and those in the infield. Some players are wearing baseball gloves, while others are wearing baseball cleats. The stadium is filled with people, some of whom are sitting in chairs and others are standing. The chairs are spread out around the stadium, with some close to the field and others further away.", - "id": 5862 - }, - { - "image_path": "G:\\images\\combined\\01538f3ef5df35c8.jpg", - "response": "A green train is coming down the tracks.", - "id": 5863 - }, - { - "image_path": "G:\\images\\combined\\0153a5ebdf5f7bef.jpg", - "response": "A black stereo receiver with many buttons and knobs.", - "id": 5864 - }, - { - "image_path": "G:\\images\\combined\\01540c1de38cc907.jpg", - "response": "A blue boat floating on a river.", - "id": 5865 - }, - { - "image_path": "G:\\images\\combined\\01542a35bb99c2ea.jpg", - "response": "A female model is presenting two LG LTE models, a tablet and a laptop, in front of an LG display.", - "id": 5866 - }, - { - "image_path": "G:\\images\\combined\\015464dc2c46ffe9.jpg", - "response": "A bottle of Almaza beer sits on a table next to a plate of food.", - "id": 5867 - }, - { - "image_path": "G:\\images\\combined\\0154786a4b2c6fb6.jpg", - "response": "A collection of cycling gear including a helmet, shoes, gloves, and a jersey.", - "id": 5868 - }, - { - "image_path": "G:\\images\\combined\\0154f4c8b69bd7d0.jpg", - "response": "a store with shelves full of food and drinks", - "id": 5869 - }, - { - "image_path": "G:\\images\\combined\\01550f10df5e1599.jpg", - "response": "a close up of a camera on a white counter", - "id": 5870 - }, - { - "image_path": "G:\\images\\combined\\01552a0216fbb37b.jpg", - "response": "A Little Caesars pizza box sitting on a counter.", - "id": 5871 - }, - { - "image_path": "G:\\images\\combined\\01558f3fb3d24850.jpg", - "response": "a statue (665,116),(967,924)", - "id": 5872 - }, - { - "image_path": "G:\\images\\combined\\0155e99465d9ca6d.jpg", - "response": "A large red and white sign that says \"The Irish Times\" is hanging off the side of a building. Below the sign is a large clock with roman numerals. The sky is blue and cloudless.", - "id": 5873 - }, - { - "image_path": "G:\\images\\combined\\0156f0e26eb20c04.jpg", - "response": "A measuring cup filled with a white liquid sits on a counter.", - "id": 5874 - }, - { - "image_path": "G:\\images\\combined\\01575cc367b8aa17.jpg", - "response": "A collage of two photos. In the first photo, two women are standing in front of a fighter jet. They are holding a sign that says \"200 years\". In the second photo, a red tent with a sign that says \"U.S. Air Force\" is set up with various items on display.", - "id": 5875 - }, - { - "image_path": "G:\\images\\combined\\015782fa093545e0.jpg", - "response": "A calculator is laying on top of a pile of British pounds. There are many different bills and they are fanned out. The calculator has a key chain attached to it.", - "id": 5876 - }, - { - "image_path": "G:\\images\\combined\\0157f991b82393a8.jpg", - "response": "A Buick Roadmaster Estate Wagon is parked on the side of the street.", - "id": 5877 - }, - { - "image_path": "G:\\images\\combined\\0158932b16a6417a.jpg", - "response": "A white bus with a pink stripe is parked in a parking lot.", - "id": 5878 - }, - { - "image_path": "G:\\images\\combined\\01596249e27d5124.jpg", - "response": "A group of children are sitting on a couch in a library. They are all holding tablets and appear to be engaged in some activity. There are several other people in the room, including a man standing near a computer. There are many books on the shelves around the room.", - "id": 5879 - }, - { - "image_path": "G:\\images\\combined\\015a17c2b037f6ea.jpg", - "response": "A car radio that is on and playing a song by The Go-Go's.", - "id": 5880 - }, - { - "image_path": "G:\\images\\combined\\015a236a2d702f19.jpg", - "response": "A busy city street at night with many lit up signs on the buildings.", - "id": 5881 - }, - { - "image_path": "G:\\images\\combined\\015b2e1f1e5eb8cc.jpg", - "response": "A stove with a tea kettle on top of it.", - "id": 5882 - }, - { - "image_path": "G:\\images\\combined\\015c537f722d115e.jpg", - "response": "A large propeller airplane sitting on a runway at night.", - "id": 5883 - }, - { - "image_path": "G:\\images\\combined\\015cc4d3633407c7.jpg", - "response": "A case of Coca Cola Life sits on a store shelf. The bottles are green and white and have a distinctive shape. The label on the bottle is green and white and features the Coca Cola logo prominently. The bottles are packed in green cardboard boxes.", - "id": 5884 - }, - { - "image_path": "G:\\images\\combined\\015ce70d0a81a8d6.jpg", - "response": "A row of green and yellow double decker buses are parked next to each other.", - "id": 5885 - }, - { - "image_path": "G:\\images\\combined\\015e4368fc9b19a1.jpg", - "response": "A yellow school bus is stuck in the snow.", - "id": 5886 - }, - { - "image_path": "G:\\images\\combined\\015e8b56c9feb12b.jpg", - "response": "The image features a blue and white van with the Volkswagen logo on the front. The van has a white roof and is positioned in front of a light blue background. The van has silver rims and is driving on a road.", - "id": 5887 - }, - { - "image_path": "G:\\images\\combined\\015ef308d85e9abc.jpg", - "response": "A glass and a bottle of Old Hooky beer are sitting on a wooden table. The bottle has a red label with white writing. The glass is full and the beer is a dark golden color. The bottle is almost empty. There is a wicker chair next to the table. The glass is sitting in front of a green plant.", - "id": 5888 - }, - { - "image_path": "G:\\images\\combined\\015efa517e260a6c.jpg", - "response": "A group of soccer players are playing soccer on a field.", - "id": 5889 - }, - { - "image_path": "G:\\images\\combined\\015fbcebae90bee0.jpg", - "response": "A lady Rolex watch with a silver and gold band and a silver face.", - "id": 5890 - }, - { - "image_path": "G:\\images\\combined\\015fc2723bbb4488.jpg", - "response": "a bunch of pepsi bottles on a shelf in a store.", - "id": 5891 - }, - { - "image_path": "G:\\images\\combined\\015ff45d293527d0.jpg", - "response": "A man and woman are sitting next to each other.", - "id": 5892 - }, - { - "image_path": "G:\\images\\combined\\01600cb466dbff4d.jpg", - "response": "A man and woman standing behind a table with a sign that says Greenbaud.", - "id": 5893 - }, - { - "image_path": "G:\\images\\combined\\0160d2e918626024.jpg", - "response": "A person standing on a bathroom scale that reads 102.3.", - "id": 5894 - }, - { - "image_path": "G:\\images\\combined\\0160f87d5e672ea7.jpg", - "response": "The image features a wall of Jack Daniels bottles. There are at least 14 bottles visible, arranged in two rows of different heights. The bottles are all filled with the famous yellow liquid and have the signature black label. The top of the first bottle in the left row is lit up, creating a warm glow that is reflected in the glass. The background is blurred, creating a focus on the bottles in the foreground.", - "id": 5895 - }, - { - "image_path": "G:\\images\\combined\\0161ab1145014926.jpg", - "response": "A collection of liquor bottles are on display behind a glass shelf. The bottles are shaped like guitars, and there are many different types of alcohol.", - "id": 5896 - }, - { - "image_path": "G:\\images\\combined\\0161faa394d8f6eb.jpg", - "response": "A red and white double decker bus is parked on the side of the street.", - "id": 5897 - }, - { - "image_path": "G:\\images\\combined\\01623d6727ca5ec4.jpg", - "response": "A store with a blue Walmart.com Services sign hanging from the ceiling.", - "id": 5898 - }, - { - "image_path": "G:\\images\\combined\\0162a5d3b8c63dfc.jpg", - "response": "a large silver building with a curved roof", - "id": 5899 - }, - { - "image_path": "G:\\images\\combined\\0163174a750e610c.jpg", - "response": "A box of five Artic Cuff Cobalt filters.", - "id": 5900 - }, - { - "image_path": "G:\\images\\combined\\0163c144f4d3a955.jpg", - "response": "A train is stopped at a train station with people walking on the platform.", - "id": 5901 - }, - { - "image_path": "G:\\images\\combined\\01646b54d973aced.jpg", - "response": "a black car with the word DeSoto on the front", - "id": 5902 - }, - { - "image_path": "G:\\images\\combined\\0164fd32b7cb033a.jpg", - "response": "A baseball game is being played on a field. There are three players on the field, one of which is a young boy in a blue shirt and white pants, who is in the process of pitching the ball. The other two players are positioned in the field, one closer to the foreground and one further back. They are both wearing baseball gloves.", - "id": 5903 - }, - { - "image_path": "G:\\images\\combined\\0165ae6d0241601b.jpg", - "response": "A man is standing in a bathroom, looking at a shower.", - "id": 5904 - }, - { - "image_path": "G:\\images\\combined\\0165e2e27da25577.jpg", - "response": "A train car with graffiti on the side.", - "id": 5905 - }, - { - "image_path": "G:\\images\\combined\\01660da96a23d3f5.jpg", - "response": "A yellow school sign is attached to a metal pole.", - "id": 5906 - }, - { - "image_path": "G:\\images\\combined\\0166adf82f1557c5.jpg", - "response": "A model train set with a yellow train car sitting on the tracks.", - "id": 5907 - }, - { - "image_path": "G:\\images\\combined\\0167859382152718.jpg", - "response": "A group of people are sitting around a table with laptops in front of them. Some of the people are wearing ties. There is a cup on the table and a chair next to it.", - "id": 5908 - }, - { - "image_path": "G:\\images\\combined\\016811c061894f68.jpg", - "response": "A long train on a train track with a sky background.", - "id": 5909 - }, - { - "image_path": "G:\\images\\combined\\016818832e5de8f5.jpg", - "response": "An airplane is on the runway.", - "id": 5910 - }, - { - "image_path": "G:\\images\\combined\\016894011b8686b4.jpg", - "response": "An arena full of people watching a basketball game.", - "id": 5911 - }, - { - "image_path": "G:\\images\\combined\\01698b41dbd9dd78.jpg", - "response": "A green and white bus on a street.", - "id": 5912 - }, - { - "image_path": "G:\\images\\combined\\0169a28198ca3700.jpg", - "response": "An orange and white airplane is parked on the runway.", - "id": 5913 - }, - { - "image_path": "G:\\images\\combined\\016a97b23b613882.jpg", - "response": "A white truck with a radio tower on top is parked on the side of the road.", - "id": 5914 - }, - { - "image_path": "G:\\images\\combined\\016adf0f41cc399c.jpg", - "response": "A pile of cardboard boxes filled with various items such as handbags, books, and shirts.", - "id": 5915 - }, - { - "image_path": "G:\\images\\combined\\016b57639f13e1dc.jpg", - "response": "A bottle of espresso superior coffee beer from the Dark Star Brewery.", - "id": 5916 - }, - { - "image_path": "G:\\images\\combined\\016c4b92512f54f8.jpg", - "response": "A Rogue Farms branded bottle cap sitting on a shelf with Rogue beer bottles below it.", - "id": 5917 - }, - { - "image_path": "G:\\images\\combined\\016d8779fcbb8499.jpg", - "response": "A baseball player swinging a bat on a baseball field.", - "id": 5918 - }, - { - "image_path": "G:\\images\\combined\\016dced0141308e1.jpg", - "response": "a map of the world on a wall", - "id": 5919 - }, - { - "image_path": "G:\\images\\combined\\016e1e45766ac79e.jpg", - "response": "A red bus with the number 6479 HA on the front of it.", - "id": 5920 - }, - { - "image_path": "G:\\images\\combined\\016e79f7df1f8de4.jpg", - "response": "A street scene with a car on the side of the road.", - "id": 5921 - }, - { - "image_path": "G:\\images\\combined\\016e7a61d69d447f.jpg", - "response": "A plastic cup filled with a beer from Brooklyn Brewery.", - "id": 5922 - }, - { - "image_path": "G:\\images\\combined\\016e974a1752195d.jpg", - "response": "A street light over a city street with a sky background.", - "id": 5923 - }, - { - "image_path": "G:\\images\\combined\\016ea0be30d99a56.jpg", - "response": "a pink sign with black text that says \"a one-way trip to mars with smoking hot wifi would be ok\"", - "id": 5924 - }, - { - "image_path": "G:\\images\\combined\\016ed968736e3c85.jpg", - "response": "A six pack of Jack Daniels Tennessee Whiskey sits on a counter.", - "id": 5925 - }, - { - "image_path": "G:\\images\\combined\\016ee5993838b383.jpg", - "response": "An orange and black airplane with the number 27 on the side.", - "id": 5926 - }, - { - "image_path": "G:\\images\\combined\\01707a81d120dea3.jpg", - "response": "A desk with a keyboard, mouse, monitor, and picture frame.", - "id": 5927 - }, - { - "image_path": "G:\\images\\combined\\017167286eaede50.jpg", - "response": "A Samsung Galaxy phone and a smartwatch laying next to each other on a wooden table.", - "id": 5928 - }, - { - "image_path": "G:\\images\\combined\\0171805739279698.jpg", - "response": "A red double decker bus is parked on the side of the road.", - "id": 5929 - }, - { - "image_path": "G:\\images\\combined\\0173c483a5f56dc9.jpg", - "response": "A busy city street with people and vehicles.", - "id": 5930 - }, - { - "image_path": "G:\\images\\combined\\01742c404f9c67a8.jpg", - "response": "A person standing in front of a projector screen giving a presentation.", - "id": 5931 - }, - { - "image_path": "G:\\images\\combined\\017515fcaad7a491.jpg", - "response": "A package wrapped in brown paper with a red white and blue label on the corner that says Tanned in USA.", - "id": 5932 - }, - { - "image_path": "G:\\images\\combined\\017558fca4f4ba44.jpg", - "response": "The image shows a table topped with a variety of beer bottles and a baby's bottle. There are at least twelve bottles on the table, arranged in a variety of shapes and sizes. Some of the bottles are standing upright, while others are lying on their sides. The bottles come in different colors and have labels with various designs. In addition to the bottles, there is a baby's bottle on the table, which is shorter and wider than the beer bottles. The table is also topped with a few pieces of paper.", - "id": 5933 - }, - { - "image_path": "G:\\images\\combined\\0176dc2d441504d8.jpg", - "response": "The image shows a bookshelf filled with books in a library. The books are arranged on three shelves and vary in size, color, and format. Some books are large and thick, while others are smaller and thinner. The bookshelf is made of black material and is filled with books on different topics. Some books are labeled with white stickers that may contain information about the book or the author. The overall atmosphere of the image is that of a quiet and organized place, where people can come to learn and read.", - "id": 5934 - }, - { - "image_path": "G:\\images\\combined\\01776212f59bf2dc.jpg", - "response": "A model train set with a cargo car and two mine carts on the tracks.", - "id": 5935 - }, - { - "image_path": "G:\\images\\combined\\0177e5cab3e6dd09.jpg", - "response": "A pile of assorted street signs sitting on the ground.", - "id": 5936 - }, - { - "image_path": "G:\\images\\combined\\0178204bfa902533.jpg", - "response": "A person walking their dog on a lead in a car park.", - "id": 5937 - }, - { - "image_path": "G:\\images\\combined\\017970b66a149b80.jpg", - "response": "An orange and white jet airliner on a wet runway.", - "id": 5938 - }, - { - "image_path": "G:\\images\\combined\\0179daf51678b42b.jpg", - "response": "a man wearing a red racing suit with white accents", - "id": 5939 - }, - { - "image_path": "G:\\images\\combined\\017b2a8eae6f2070.jpg", - "response": "A close up of a coin in someones hand. The coin is a 20 cent piece and has Queen Elizabeth II on it.", - "id": 5940 - }, - { - "image_path": "G:\\images\\combined\\017b90b578be59d7.jpg", - "response": "The image displays a glass shelf with multiple bottles of agave syrup. The bottles are displayed in front of a crowd of people. The bottles are arranged in such a way that they form a row. The agave syrup bottles vary in size and are of different shades of brown.", - "id": 5941 - }, - { - "image_path": "G:\\images\\combined\\017e09f52c4229f1.jpg", - "response": "A yellow plane with the word \"Navy\" on the side.", - "id": 5942 - }, - { - "image_path": "G:\\images\\combined\\017f0881bc6ac4ae.jpg", - "response": "An old camera, the Mamiya RB67, is sitting on a desk. The camera is black and has a round lens on the front. The lens has the word Mamiya on it. The camera has a black strap that is attached to it. The strap has the word Mamiya on it as well. The camera is positioned in the center of the image and is in front of a keyboard.", - "id": 5943 - }, - { - "image_path": "G:\\images\\combined\\017f45b1410d3ddb.jpg", - "response": "A stop sign is at the intersection of Summit and Spooner streets.", - "id": 5944 - }, - { - "image_path": "G:\\images\\combined\\017f5bee52b9aa44.jpg", - "response": "A watch with the number 12 on it.", - "id": 5945 - }, - { - "image_path": "G:\\images\\combined\\018109c84870f2fc.jpg", - "response": "In the image there is a black plastic squeezy tube with a black label on it. The label has the words Blemish Balm in pink font and All in One Magic Make-Up in black font. The tube is open slightly and is sitting on a white surface with a green background.", - "id": 5946 - }, - { - "image_path": "G:\\images\\combined\\01812649e2c108b4.jpg", - "response": "a yellow bump sign (126,125),(895,895)", - "id": 5947 - }, - { - "image_path": "G:\\images\\combined\\0181608191e027f5.jpg", - "response": "A keyboard with the letters on it rearranged to spell \"Knob\".", - "id": 5948 - }, - { - "image_path": "G:\\images\\combined\\0181953a3ab18ae3.jpg", - "response": "A bus and a truck are involved in an accident at a busy intersection.", - "id": 5949 - }, - { - "image_path": "G:\\images\\combined\\01824d2e57c99aad.jpg", - "response": "A computer monitor is on a desk with three small screens in front of it. The screens are displaying different colors. There is also a keyboard in front of the monitor.", - "id": 5950 - }, - { - "image_path": "G:\\images\\combined\\018273ccfbe71fb1.jpg", - "response": "A red bus is driving down the street.", - "id": 5951 - }, - { - "image_path": "G:\\images\\combined\\0182cde6febd8fa9.jpg", - "response": "a green and white street sign that says Branchville Emporia on it", - "id": 5952 - }, - { - "image_path": "G:\\images\\combined\\018350593a10c72e.jpg", - "response": "A green bus is parked on the side of the street.", - "id": 5953 - }, - { - "image_path": "G:\\images\\combined\\0183848df6accae7.jpg", - "response": "A blue train engine with the number 50036 is pulling into a train station.", - "id": 5954 - }, - { - "image_path": "G:\\images\\combined\\0183931fc9840cd3.jpg", - "response": "A collection of books on a table.", - "id": 5955 - }, - { - "image_path": "G:\\images\\combined\\0183bbb34a7487c2.jpg", - "response": "A man with a beard and a white lab coat is in a lab. He is wearing a white lab coat, blue gloves and has a beard.", - "id": 5956 - }, - { - "image_path": "G:\\images\\combined\\0183cbd4b08d168b.jpg", - "response": "A white board with the word \"FRIENDS\" written on it.", - "id": 5957 - }, - { - "image_path": "G:\\images\\combined\\0184cbf22246869d.jpg", - "response": "an open book with many words on it", - "id": 5958 - }, - { - "image_path": "G:\\images\\combined\\01858e4b52f9828f.jpg", - "response": "A wooden clock with roman numerals sits on a mantle.", - "id": 5959 - }, - { - "image_path": "G:\\images\\combined\\0185d3a402c0978e.jpg", - "response": "A table with two glasses and two bottles of beer on it.", - "id": 5960 - }, - { - "image_path": "G:\\images\\combined\\0185d4518e6adca6.jpg", - "response": "The watch is made of metal and has a silver and black face.", - "id": 5961 - }, - { - "image_path": "G:\\images\\combined\\01862b86467dd50a.jpg", - "response": "A laptop computer with a photo of a group of people on the screen. The photo shows a man and a woman holding a baby, and they are all smiling. There is also a picture of a man with a beard and a suit on the screen.", - "id": 5962 - }, - { - "image_path": "G:\\images\\combined\\01869026f71bc30a.jpg", - "response": "A blue and gold can of beer that is open on top sitting on a counter.", - "id": 5963 - }, - { - "image_path": "G:\\images\\combined\\018794a8a1f6b23b.jpg", - "response": "A large billboard featuring a woman in a red dress in front of a blue car.", - "id": 5964 - }, - { - "image_path": "G:\\images\\combined\\01880af9695eceb8.jpg", - "response": "A silver and black fighter plane with a man in the cockpit.", - "id": 5965 - }, - { - "image_path": "G:\\images\\combined\\0188b56d842f79ba.jpg", - "response": "The image shows a close up of a grey keyboard. The keys are Return, Shift, and Enter.", - "id": 5966 - }, - { - "image_path": "G:\\images\\combined\\0188e73e3478081a.jpg", - "response": "Three men in biking attire standing together with their arms around each other.", - "id": 5967 - }, - { - "image_path": "G:\\images\\combined\\01891d494c112c64.jpg", - "response": "A colorful table with a pink tablecloth and a colorful cloth underneath the beer.", - "id": 5968 - }, - { - "image_path": "G:\\images\\combined\\01895680c5fa120b.jpg", - "response": "A store shelf with two orange and yellow Pringles cans.", - "id": 5969 - }, - { - "image_path": "G:\\images\\combined\\01899740973985e6.jpg", - "response": "A white and blue bus is parked on the side of the street.", - "id": 5970 - }, - { - "image_path": "G:\\images\\combined\\018a9e2001d2fb4d.jpg", - "response": "A van with a painted face on the hood, parked in a parking lot.", - "id": 5971 - }, - { - "image_path": "G:\\images\\combined\\018c2f7c1ccd0d67.jpg", - "response": "A table with three remote controls on top of it.", - "id": 5972 - }, - { - "image_path": "G:\\images\\combined\\018c305361dad376.jpg", - "response": "A collage of two photos, one on the left is a black and white image of a man in a clown suit riding a unicycle, the other on the right is a black and white photo of three people riding bicycles on a track.", - "id": 5973 - }, - { - "image_path": "G:\\images\\combined\\018c95ebb9fece08.jpg", - "response": "The image is an advertisement for Prati-Donazzi, a generic medication produced in Brazil. The main product is Donuzli, a medication for the treatment of constipation in infants and children. The image features a box of Donuzli, a small child, and a mother holding her child. The text on the image reads \"Prati-Donazzi: O g\u00eanero \u00e9 mais consumido do Brasil.\" The image is also labeled as being protected by copyright.", - "id": 5974 - }, - { - "image_path": "G:\\images\\combined\\018d277fa43ac4c8.jpg", - "response": "A Star Alliance airplane is landing at an airport.", - "id": 5975 - }, - { - "image_path": "G:\\images\\combined\\018d5ebbbdb36daf.jpg", - "response": "An ambulance van is parked in front of a building. The van is red, white, yellow, and green. The ambulance service Australia logo is on the side of the van. There is a red and white checkered pattern on the side of the van. The van has a siren on top of it. There is a brick wall next to the building.", - "id": 5976 - }, - { - "image_path": "G:\\images\\combined\\018deaf2ea7f1aa5.jpg", - "response": "A close up of a smart watch on a wooden table. The watch is a silver color and has a black band. The watch face has the word \"Samsung\" written on it in blue.", - "id": 5977 - }, - { - "image_path": "G:\\images\\combined\\018e33d28aa4d125.jpg", - "response": "A silver and black macbook air laptop sitting on a wooden desk.", - "id": 5978 - }, - { - "image_path": "G:\\images\\combined\\018e736d0febce19.jpg", - "response": "A road sign warning of tank crossing is posted on the side of the road.", - "id": 5979 - }, - { - "image_path": "G:\\images\\combined\\018e8263c76d4c02.jpg", - "response": "A colorful fighter jet is taking off from a runway.", - "id": 5980 - }, - { - "image_path": "G:\\images\\combined\\018edff0d2be81a6.jpg", - "response": "A black box with the word Godorniu in gold on the top.", - "id": 5981 - }, - { - "image_path": "G:\\images\\combined\\018eedca06fdf3c0.jpg", - "response": "A shiny silver propeller airplane is on the runway.", - "id": 5982 - }, - { - "image_path": "G:\\images\\combined\\018fec5b873d3012.jpg", - "response": "The image shows a close up of the tail end of an airplane. The airplane is white and blue and says \"A380\" on the tail. The word \"Love at first flight\" is also painted on the side of the plane. The sky is clear and blue behind the plane.", - "id": 5983 - }, - { - "image_path": "G:\\images\\combined\\019128504b2d8249.jpg", - "response": "A crowded arena full of people, with a basketball court in the middle. There are multiple scoreboards and lights shining down on the court.", - "id": 5984 - }, - { - "image_path": "G:\\images\\combined\\019171300473730c.jpg", - "response": "A large colorful welcome to Nevada sign with a cowboy on it.", - "id": 5985 - }, - { - "image_path": "G:\\images\\combined\\0191da68d5042918.jpg", - "response": "A poster with two men on it in a foreign language.", - "id": 5986 - }, - { - "image_path": "G:\\images\\combined\\019236669bdf9f65.jpg", - "response": "A bottle of wine laying on top of a bed of raspberries.", - "id": 5987 - }, - { - "image_path": "G:\\images\\combined\\01929e6e4467314d.jpg", - "response": "A maroon car parked on the side of a road.", - "id": 5988 - }, - { - "image_path": "G:\\images\\combined\\0193646887a0c084.jpg", - "response": "A computer monitor on a desk in a store.", - "id": 5989 - }, - { - "image_path": "G:\\images\\combined\\019396ac7f0ea531.jpg", - "response": "In the image, a man wearing a white cricket uniform and a blue cap is standing in a grassy field. He is holding a ball in his right hand and appears to be looking off to the side. Another person is visible in the background, wearing a white shirt and blue shorts. The field has a few steps leading up to it and is surrounded by a white wall. The chairs in the background are pink and are arranged in rows.", - "id": 5990 - }, - { - "image_path": "G:\\images\\combined\\0193991401f83e64.jpg", - "response": "a bus with a blue awning that says \u91d1\u9633\u516c\u5b89\u5206\u5c40 on it", - "id": 5991 - }, - { - "image_path": "G:\\images\\combined\\0194162dfa4c44ef.jpg", - "response": "A train is coming down the tracks in the snow.", - "id": 5992 - }, - { - "image_path": "G:\\images\\combined\\01942fe769bbad71.jpg", - "response": "A Keurig coffee maker on a black tray with a variety of items.", - "id": 5993 - }, - { - "image_path": "G:\\images\\combined\\0195e8a172eddc29.jpg", - "response": "A white Volkswagen Polo car with a yellow license plate that reads \"BP12 EFS\". There is a sticker on the back window that says \"Sulitler Speeds\". In the background, there is a blue fence and a building.", - "id": 5994 - }, - { - "image_path": "G:\\images\\combined\\01963c4f7859148b.jpg", - "response": "In the image, there is a yellow and blue train passing by a sign that says \"1284\". The train is blurry and appears to be moving quickly. There is a red hand on a pole next to the sign. The background shows a building with a yellow door and a window. The platform is made of brick and there are several steps leading up to it.", - "id": 5995 - }, - { - "image_path": "G:\\images\\combined\\019667366dbf9b65.jpg", - "response": "A large building with a big advertisement on the front of it.", - "id": 5996 - }, - { - "image_path": "G:\\images\\combined\\0196a4e677d98881.jpg", - "response": "A black and white photo of a Air New Zealand airplane taking off.", - "id": 5997 - }, - { - "image_path": "G:\\images\\combined\\01974aeb05de615f.jpg", - "response": "A bottle of Buxton water sitting on a coaster.", - "id": 5998 - }, - { - "image_path": "G:\\images\\combined\\01977597c2c9bd01.jpg", - "response": "A cup of coffee with foam on top sitting on a table.", - "id": 5999 - }, - { - "image_path": "G:\\images\\combined\\0198094da6036e1a.jpg", - "response": "A clothes line with a variety of clothes hanging on it.", - "id": 6000 - }, - { - "image_path": "G:\\images\\combined\\01984a985e4bf80f.jpg", - "response": "A dirty blue car with a yellow license plate.", - "id": 6001 - }, - { - "image_path": "G:\\images\\combined\\019856d0957218d8.jpg", - "response": "An airplane on the runway at the airport.", - "id": 6002 - }, - { - "image_path": "G:\\images\\combined\\019884c222dfb6c7.jpg", - "response": "A green and yellow train stopped at a train station.", - "id": 6003 - }, - { - "image_path": "G:\\images\\combined\\0198e4d0c4bf97d8.jpg", - "response": "The image depicts a baseball game in progress with two baseball players on the field. One player is in the process of catching a ball with his baseball glove, while the other player is running towards the ball. Both players are wearing red and white uniforms. The scene is set outdoors, with a chain-link fence visible in the background. The players are in action, showcasing their skills and athleticism as they compete in the game.", - "id": 6004 - }, - { - "image_path": "G:\\images\\combined\\0199b8afadb0c37e.jpg", - "response": "A red telephone box and a red postbox on a cobbled street", - "id": 6005 - }, - { - "image_path": "G:\\images\\combined\\019a0bb00c87a1f8.jpg", - "response": " two soccer players(114,223),(563,996)(259,82),(893,996)(447,0),(997,997) going after the ball(320,600),(488,813)", - "id": 6006 - }, - { - "image_path": "G:\\images\\combined\\019a2a22e51ee1a9.jpg", - "response": "A white car with a plate that says \"NOCSG\" on it.", - "id": 6007 - }, - { - "image_path": "G:\\images\\combined\\019a60ca53aa103d.jpg", - "response": "A train pulls into a station.", - "id": 6008 - }, - { - "image_path": "G:\\images\\combined\\019b4355eb6f0678.jpg", - "response": "a store front with a large yellow sign that says Billa.", - "id": 6009 - }, - { - "image_path": "G:\\images\\combined\\019c14e417af0517.jpg", - "response": "A blue van is parked on the street in front of a building. The building has graffiti on the walls. There are two trees in the scene, one on the left and one on the right. A person is visible in the image, but no other people are visible.", - "id": 6010 - }, - { - "image_path": "G:\\images\\combined\\019d3790ad9c10e3.jpg", - "response": "A white van with graffiti on the side is parked on the street.", - "id": 6011 - }, - { - "image_path": "G:\\images\\combined\\019f339928cefa9b.jpg", - "response": "A television monitor showing a security video of a man walking in front of a building.", - "id": 6012 - }, - { - "image_path": "G:\\images\\combined\\019f5d10fcc94583.jpg", - "response": "In the image there is a student holding a notebook with a list of classes written on it. The notebook is a lined notebook and is held by a student. The classes listed are English, Math, Global Studies, Music, and P.E.", - "id": 6013 - }, - { - "image_path": "G:\\images\\combined\\01a28309568b4274.jpg", - "response": "In the image, a man is holding up the Stanley Cup while standing on top of a double decker bus. The man is wearing a white and black hat and a white jersey with the number 88 on the back. He is also wearing a pair of white and black shorts. Another man, wearing a white shirt and a black and white cap, is standing next to him and holding a camera. A third man, wearing a red jersey with the number 19 on the back, is standing between them. They are all standing on the second level of the bus, which has a red roof. In the background, there is a large building with many windows.", - "id": 6014 - }, - { - "image_path": "G:\\images\\combined\\01a4bef08f0b3480.jpg", - "response": "A small yellow and white airplane flying in the sky.", - "id": 6015 - }, - { - "image_path": "G:\\images\\combined\\01a4c2bc103db318.jpg", - "response": "The image features an iMac computer with a white keyboard. The iMac has the word iMac written on the top and the keyboard is seen in front of it. The background of the image is black.", - "id": 6016 - }, - { - "image_path": "G:\\images\\combined\\01a4c909a112e09e.jpg", - "response": "A train station with two trains on the tracks.", - "id": 6017 - }, - { - "image_path": "G:\\images\\combined\\01a56abd2f39e143.jpg", - "response": "A blue airplane with a star on the side is sitting on a runway.", - "id": 6018 - }, - { - "image_path": "G:\\images\\combined\\01a60820469b72ac.jpg", - "response": "A colorful tour bus is parked on the side of the road.", - "id": 6019 - }, - { - "image_path": "G:\\images\\combined\\01a676213a220771.jpg", - "response": "A monitor that is turned on and displaying a map.", - "id": 6020 - }, - { - "image_path": "G:\\images\\combined\\01a72ceee9e2910c.jpg", - "response": "Two bottles of wedding ale from Ol'fabriken la Essingen.", - "id": 6021 - }, - { - "image_path": "G:\\images\\combined\\01a7522afbb64535.jpg", - "response": "A man in a grey and black shirt with the word Competidor on it.", - "id": 6022 - }, - { - "image_path": "G:\\images\\combined\\01a7587256c11268.jpg", - "response": " A police car(13,11),(753,763) is shown with extensive damage to the front end.", - "id": 6023 - }, - { - "image_path": "G:\\images\\combined\\01a79e8e9040a40a.jpg", - "response": "A book is laying on a wooden table. The book is open to a page with a man on it. The man is wearing a hat and looking to the left. The book is called \"The Brain\" and has the authors listed as Vaughan, Guerra, and Marzan Jr.", - "id": 6024 - }, - { - "image_path": "G:\\images\\combined\\01a85a2ef6290c8e.jpg", - "response": "A small corked bottle with the word \"essential\" on it and the word \"lemon\" on it.", - "id": 6025 - }, - { - "image_path": "G:\\images\\combined\\01a90981e276e9ca.jpg", - "response": "A blue train is on the tracks near a mountain.", - "id": 6026 - }, - { - "image_path": "G:\\images\\combined\\01a934c35c1c2f2d.jpg", - "response": "A record album cover for a piano piece by Franz Schubert.", - "id": 6027 - }, - { - "image_path": "G:\\images\\combined\\01a9b58c61fe1d22.jpg", - "response": "A blue and white bus is parked outside of a building.", - "id": 6028 - }, - { - "image_path": "G:\\images\\combined\\01a9bc58fa9aad5c.jpg", - "response": "A white wall with a black and white graffiti of a man holding a sign that says \"Samsonovich\". Above the graffiti is black spray paint that says \"HAVING FREEDOM IS NOT THE SAME AS BEING FREE\" in all caps.", - "id": 6029 - }, - { - "image_path": "G:\\images\\combined\\01a9eabbfb7267e6.jpg", - "response": "In the image, two men are engaged in a boxing match. They are wearing protective gear, including helmets and gloves, and are standing in a boxing ring. The man on the left is wearing a red uniform and has his arms raised, while the man on the right is wearing a yellow and black uniform and is throwing a punch. The boxing match is taking place in front of a crowd, with spectators watching the action.", - "id": 6030 - }, - { - "image_path": "G:\\images\\combined\\01aa5acb40717e10.jpg", - "response": "A large metal clock on a wall with roman numerals on the face.", - "id": 6031 - }, - { - "image_path": "G:\\images\\combined\\01aa9b9a3520fc0c.jpg", - "response": "A Marietta Police car parked outside of the police station.", - "id": 6032 - }, - { - "image_path": "G:\\images\\combined\\01ab502812393b4f.jpg", - "response": "A movie poster for the film 12 Monkeys, with the tagline \"When the only evidence is the truth\" and the credits \"starring Bruce Willis and Madeleine Stowe\". Next to it is a movie poster for the film The Singing Detective, with the tagline \"Now he's living it\" and the credits \"starring Robert Downey Jr. and Carla Gugino\". Both posters are on a black background.", - "id": 6033 - }, - { - "image_path": "G:\\images\\combined\\01ab697dd7a783bf.jpg", - "response": "A train on railroad tracks with a banner on the back that says Rockaway here we come.", - "id": 6034 - }, - { - "image_path": "G:\\images\\combined\\01ab6b284642d087.jpg", - "response": "An airplane is parked on the runway at the airport.", - "id": 6035 - }, - { - "image_path": "G:\\images\\combined\\01ac4614e02a4967.jpg", - "response": "A bottle of Holy Rail Ale by Monty Python's.", - "id": 6036 - }, - { - "image_path": "G:\\images\\combined\\01ac7000ab06a96f.jpg", - "response": "A blue and yellow train engine inside a warehouse.", - "id": 6037 - }, - { - "image_path": "G:\\images\\combined\\01ad33d0ee9a7315.jpg", - "response": "a grey car with the license plate 9227 parked on the side of the road", - "id": 6038 - }, - { - "image_path": "G:\\images\\combined\\01ad46727038a8e2.jpg", - "response": "An old green and white bus is parked on the side of the road.", - "id": 6039 - }, - { - "image_path": "G:\\images\\combined\\01ad66075fd11264.jpg", - "response": "A blue train engine(283,399),(995,866) with the number 1982 on it.", - "id": 6040 - }, - { - "image_path": "G:\\images\\combined\\01b08db81b263dbc.jpg", - "response": "A student's desk with a notebook and textbook on it.", - "id": 6041 - }, - { - "image_path": "G:\\images\\combined\\01b0c96c8df44fbf.jpg", - "response": "In the image, there are two men grilling meat on a large grill. One man is wearing a white shirt and a yellow and white hat, while the other man is wearing a white shirt and a blue hat. They are standing around the grill, which is filled with meat. There are several other people in the background, some of whom are also wearing hats. There is a table with a blue bin on it, and a cooler with a red lid is placed next to the table. There are also several bottles and cups placed on the table and the cooler.", - "id": 6042 - }, - { - "image_path": "G:\\images\\combined\\01b1c5e105acaa97.jpg", - "response": "A bottle of Save Our Shore A Charitable Pilsner sits on a wooden table. The label on the bottle is white and says \"Save Our Shore\" in white lettering. There is a design of a chain of fish above the text. The bottle is dark brown.", - "id": 6043 - }, - { - "image_path": "G:\\images\\combined\\01b1c631df04947b.jpg", - "response": "A collage of Clinique products including a can of Clinique Beauty Box, a bottle of Clinique, a Clinique nail polish remover, Clinique eyelash curler, Clinique eye makeup remover, Clinique eye makeup, Clinique lip balm, Clinique face powder, Clinique eye shadow, Clinique eyeliner, Clinique face wash, Clinique face mask, Clinique toner, Clinique face cream, Clinique face scrub, Clinique face mask, Clinique face wipes, Clinique eye cream, Clinique eye makeup, Clinique eye primer, Clinique eye shadow primer, Clinique liquid eye liner, Clinique liquid eyeliner, Clinique liquid eyeshadow, Clinique liquid eyeshadow primer, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid ey", - "id": 6044 - }, - { - "image_path": "G:\\images\\combined\\01b238510d6b482b.jpg", - "response": "The image shows a row of yellow school buses parked close together in a lot. There are at least five buses visible, with some closer together and some further apart. The buses are all facing the same direction.", - "id": 6045 - }, - { - "image_path": "G:\\images\\combined\\01b2d1a4bdc18964.jpg", - "response": "A black smart watch with a white face. The watch is on a pink surface. The watch has a red and orange color scheme on the top of the face. The time on the watch is 1:50. There is a small red heart in the top middle of the face. Below the heart is the number 5. Under the number 5 are the words \"days left\". There is a black band on the watch.", - "id": 6046 - }, - { - "image_path": "G:\\images\\combined\\01b2f97f413eba7d.jpg", - "response": "A yellow school bus with the number 212 on it.", - "id": 6047 - }, - { - "image_path": "G:\\images\\combined\\01b303d3e8e83005.jpg", - "response": "A man standing next to a silver and red plane.", - "id": 6048 - }, - { - "image_path": "G:\\images\\combined\\01b3265b22d23b50.jpg", - "response": "a close up of a smart watch on someones wrist", - "id": 6049 - }, - { - "image_path": "G:\\images\\combined\\01b346956fa4fcbc.jpg", - "response": "A taxi cab with a sign on top advertising a gun store.", - "id": 6050 - }, - { - "image_path": "G:\\images\\combined\\01b4892d548d4b68.jpg", - "response": "In the image, a baseball pitcher is in the middle of a pitch on the field. He is wearing a white baseball uniform and a black hat. The pitcher is holding a baseball in his right hand and is in the process of throwing it. He is standing on the pitcher's mound, which is a raised area in the center of the field. The pitcher is wearing cleats, a belt, and a baseball glove on his left hand. The baseball glove is black and is specifically designed for catching and fielding the ball. The pitcher is looking forward, focusing on his target.", - "id": 6051 - }, - { - "image_path": "G:\\images\\combined\\01b501233b20bf8e.jpg", - "response": "The image shows a close up of an airplane with a propeller. The propeller is attached to the underside of the plane and is visible from the ground. The plane is silver in color.", - "id": 6052 - }, - { - "image_path": "G:\\images\\combined\\01b54ac75f9e41e9.jpg", - "response": "A bookshelf with a variety of books and magazines.", - "id": 6053 - }, - { - "image_path": "G:\\images\\combined\\01b54fd9748c7d49.jpg", - "response": "In the image there is a rug on the floor and on the rug there is a pen, a pencil and a notebook.", - "id": 6054 - }, - { - "image_path": "G:\\images\\combined\\01b62ec04170ee4a.jpg", - "response": "A black and white photo of a stadium with a large American flag flying above a Boston 2013 banner.", - "id": 6055 - }, - { - "image_path": "G:\\images\\combined\\01b631ec361104d6.jpg", - "response": "A shelf with a few wine bottles on it.", - "id": 6056 - }, - { - "image_path": "G:\\images\\combined\\01b67da725f6ab69.jpg", - "response": "A table with a blue table cloth on it.", - "id": 6057 - }, - { - "image_path": "G:\\images\\combined\\01b72a92cdd941fc.jpg", - "response": "A poster for an art exhibition called \"Rejects 2010\" which will be held from June 22-26. The poster features the word \"Rejects\" in large letters with a motorcycle and a bird as design elements. There is also a tagline that reads \"Summer Exhibition\".", - "id": 6058 - }, - { - "image_path": "G:\\images\\combined\\01b7c44cfd7ea792.jpg", - "response": "an open book with a white cover and black text", - "id": 6059 - }, - { - "image_path": "G:\\images\\combined\\01b805b9f96679a3.jpg", - "response": "A black BMW wagon with white rims is parked in front of a grey building. There are several people standing around the cars and a table with a red and white checkered tablecloth. A man in a black shirt is standing next to a red car. Another man is wearing a white hat and black shirt. There is a woman with blonde hair and a black shirt. A person is wearing a black shirt and blue shorts.", - "id": 6060 - }, - { - "image_path": "G:\\images\\combined\\01b81acc7cb28ea6.jpg", - "response": "A man wearing a white shirt and a black hat with the number 77 on it.", - "id": 6061 - }, - { - "image_path": "G:\\images\\combined\\01b8768696de4328.jpg", - "response": "a man wearing a red baseball hat and jacket", - "id": 6062 - }, - { - "image_path": "G:\\images\\combined\\01b87cd9e16dc614.jpg", - "response": "A person is holding a camera in their hands. The camera is a silver point and shoot camera. There is a picture of a woman sitting on a brick wall on the camera screen. The woman is wearing a dress.", - "id": 6063 - }, - { - "image_path": "G:\\images\\combined\\01b8c015e743a69a.jpg", - "response": "A pair of butterfly kisses earrings made by Melissa Ingram.", - "id": 6064 - }, - { - "image_path": "G:\\images\\combined\\01babd5ec480f377.jpg", - "response": "A black and white photo of a group of men standing in front of a plane.", - "id": 6065 - }, - { - "image_path": "G:\\images\\combined\\01bb0a994cd89efe.jpg", - "response": "A store with a man standing in front of it and a woman standing inside. The store is called digital and sells electronics.", - "id": 6066 - }, - { - "image_path": "G:\\images\\combined\\01bbc2405d03f004.jpg", - "response": "A table with a bag of cookies on it.", - "id": 6067 - }, - { - "image_path": "G:\\images\\combined\\01bd42a657556876.jpg", - "response": "A man holding a sign that says \"Have you seen this wizard?\" on it.", - "id": 6068 - }, - { - "image_path": "G:\\images\\combined\\01be054d92db60bf.jpg", - "response": "Maxiflou markers are on display in a store.", - "id": 6069 - }, - { - "image_path": "G:\\images\\combined\\01be0f791132b4b1.jpg", - "response": "A baseball stadium with many people in the stands watching the game.", - "id": 6070 - }, - { - "image_path": "G:\\images\\combined\\01be12f5b9b2b603.jpg", - "response": "A purple camera with a blue lens cover on top of a box.", - "id": 6071 - }, - { - "image_path": "G:\\images\\combined\\01bea6f686154287.jpg", - "response": "A plaque with the words The National Weather Center Building on it.", - "id": 6072 - }, - { - "image_path": "G:\\images\\combined\\01bec27c61ec0b5d.jpg", - "response": "A wrist watch with a red band and a red and silver face.", - "id": 6073 - }, - { - "image_path": "G:\\images\\combined\\01c0493a77b12ec1.jpg", - "response": "A collection of liquor bottles sit on a wooden table.", - "id": 6074 - }, - { - "image_path": "G:\\images\\combined\\01c17e2aff64922d.jpg", - "response": "a man walking down the street next to a wall with posters on it", - "id": 6075 - }, - { - "image_path": "G:\\images\\combined\\01c1bb45c14817b4.jpg", - "response": "a keyboard that is on a table", - "id": 6076 - }, - { - "image_path": "G:\\images\\combined\\01c1c607e257e9e0.jpg", - "response": "A baseball player in a black jersey with the number 25 is holding a bat on a baseball field.", - "id": 6077 - }, - { - "image_path": "G:\\images\\combined\\01c219e8870b7b1b.jpg", - "response": "A brown and green embroidered badge for the West Palm Beach Police.", - "id": 6078 - }, - { - "image_path": "G:\\images\\combined\\01c28a28cad2b006.jpg", - "response": "A pitcher on the mound winds up to throw the ball.", - "id": 6079 - }, - { - "image_path": "G:\\images\\combined\\01c2ca375c6898b1.jpg", - "response": "A pair of wire strippers with a yellow plastic handle.", - "id": 6080 - }, - { - "image_path": "G:\\images\\combined\\01c3702f209b5eaa.jpg", - "response": "A green double decker bus is driving down the street.", - "id": 6081 - }, - { - "image_path": "G:\\images\\combined\\01c38fc3c4d8b081.jpg", - "response": "A bottle of white wine sits on a table.", - "id": 6082 - }, - { - "image_path": "G:\\images\\combined\\01c446086e5755bc.jpg", - "response": "A white board with writing on it in a classroom.", - "id": 6083 - }, - { - "image_path": "G:\\images\\combined\\01c462d9e9aaace1.jpg", - "response": "a train on a track with smoke coming out of it", - "id": 6084 - }, - { - "image_path": "G:\\images\\combined\\01c4f4a2bb5bae43.jpg", - "response": "The image is a poster for the zarzuelas famosas. The title is in red and yellow letters and is Zarzuelas Famosas. Below the title is a group of people on a stage. There is a crowd in the stands watching the performance. There are 14 people on the stage, some are standing on boxes and others are standing on the floor. Some are holding handbags and one is holding a small child. The stage is set like a theater with a balcony and a curtain. The background is red and yellow.", - "id": 6085 - }, - { - "image_path": "G:\\images\\combined\\01c5eef439b278cc.jpg", - "response": "a baseball player holding a bat", - "id": 6086 - }, - { - "image_path": "G:\\images\\combined\\01c7a957c612291f.jpg", - "response": "A pair of black ceramic bottles sit on a wooden table.", - "id": 6087 - }, - { - "image_path": "G:\\images\\combined\\01c81fbb0133ecd2.jpg", - "response": "A bicycle sign on a metal pole.", - "id": 6088 - }, - { - "image_path": "G:\\images\\combined\\01c82eac29b01b43.jpg", - "response": "The image shows a group of cyclists standing around in a room. They are all wearing black and purple cycling outfits and are gathered around a bike. The room has a red carpet and several bicycles are visible in different spots around the room.", - "id": 6089 - }, - { - "image_path": "G:\\images\\combined\\01c899c8832ad677.jpg", - "response": "The image shows a baseball player in the midst of a pitch on a field. The pitcher is in the process of winding up and has his front leg in the air, preparing to throw the ball. The player is wearing a baseball uniform and a baseball glove is visible on his hand. There are other players on the field, some of them wearing baseball caps, and a baseball bat is visible in the background. The field is surrounded by billboards and advertisements, including one for Haldeman Auto.", - "id": 6090 - }, - { - "image_path": "G:\\images\\combined\\01c9483cf04cf8dc.jpg", - "response": "A yellow sign warning of loose cattle next 6 miles.", - "id": 6091 - }, - { - "image_path": "G:\\images\\combined\\01c94e8c6228274c.jpg", - "response": "An old envelope with a stamp on it that says Mich.", - "id": 6092 - }, - { - "image_path": "G:\\images\\combined\\01cb886afcc61ed2.jpg", - "response": "A store filled with lots of items and blue and red boxes.", - "id": 6093 - }, - { - "image_path": "G:\\images\\combined\\01cc0f8a81d39848.jpg", - "response": "A white truck with a blue sign on the side of it.", - "id": 6094 - }, - { - "image_path": "G:\\images\\combined\\01cc76f66e7e973b.jpg", - "response": "A group of people wearing New York Jets gear are standing outside a stadium. They are holding cups and engaging in conversation.", - "id": 6095 - }, - { - "image_path": "G:\\images\\combined\\01ce0da26a447240.jpg", - "response": "a large blue sign that says welcome to yanbu industrial city", - "id": 6096 - }, - { - "image_path": "G:\\images\\combined\\01cee5d0b67f97e2.jpg", - "response": "a baseball player wearing a red jersey and white pants", - "id": 6097 - }, - { - "image_path": "G:\\images\\combined\\01cfa2e72003f4c6.jpg", - "response": "A silver train engine with red lights is pulling into a station.", - "id": 6098 - }, - { - "image_path": "G:\\images\\combined\\01d0228d6ea4985b.jpg", - "response": "An old space rocket is on display in a warehouse. The rocket is on a cart and is sitting on a green floor. There are two women standing in front of the rocket, looking up at it. The rocket has the word \"juice\" written on it. There are two men standing in the warehouse, one on the left and one on the right. The right most man is wearing a plaid shirt. There is a clock on the wall to the right of the rocket.", - "id": 6099 - }, - { - "image_path": "G:\\images\\combined\\01d05a7d19f5a921.jpg", - "response": "A person is holding a glass of beer on a table.", - "id": 6100 - }, - { - "image_path": "G:\\images\\combined\\01d095f50659d413.jpg", - "response": "a man sitting in front of two monitors and a keyboard", - "id": 6101 - }, - { - "image_path": "G:\\images\\combined\\01d0bbca872e5b2d.jpg", - "response": "A bottle of Jagermeister and a glass of Jagermeister on a table.", - "id": 6102 - }, - { - "image_path": "G:\\images\\combined\\01d2bac82408237e.jpg", - "response": "The image shows a group of young women playing soccer on a grass field. There are at least ten people in the picture, most of them wearing red, white, and black soccer uniforms. One woman is kicking a soccer ball while her opponents try to block her. There are also several bags placed on the grass field.", - "id": 6103 - }, - { - "image_path": "G:\\images\\combined\\01d2f83bfbb1b14f.jpg", - "response": "A black and white cat laying in a green and white cardboard box.", - "id": 6104 - }, - { - "image_path": "G:\\images\\combined\\01d40ca30456c005.jpg", - "response": "A man sitting at a table with a pirate party UK sign behind him.", - "id": 6105 - }, - { - "image_path": "G:\\images\\combined\\01d419a01258ddbe.jpg", - "response": "A bottle of Twisted Pine Hoppy Boy next to a filled glass of beer.", - "id": 6106 - }, - { - "image_path": "G:\\images\\combined\\01d5dfec05d9e47f.jpg", - "response": "The image shows two ambulances parked side by side in a parking lot. The ambulances are white and blue, and have the word \"Cataldo\" painted on the side. One ambulance is parked on the left side of the other one. There is a bench in the parking lot, located between the two ambulances. The ambulances are parked in front of a brick building with a glass awning.", - "id": 6107 - }, - { - "image_path": "G:\\images\\combined\\01d5f6cccbb6fa83.jpg", - "response": "A group of women in blue and white uniforms are standing on a baseball field. They are all holding baseball gloves and are wearing helmets. Some of them are giving each other high fives.", - "id": 6108 - }, - { - "image_path": "G:\\images\\combined\\01d5fb2b40e11c86.jpg", - "response": "A poster for a music festival called Power Music", - "id": 6109 - }, - { - "image_path": "G:\\images\\combined\\01d7263395d9a493.jpg", - "response": "A television mounted on a wall with various streaming services displayed on the screen.", - "id": 6110 - }, - { - "image_path": "G:\\images\\combined\\01d7510cbe6f11ab.jpg", - "response": "A coin in a plastic case with the word Canada on it.", - "id": 6111 - }, - { - "image_path": "G:\\images\\combined\\01d8880f4597da40.jpg", - "response": "Two blackberries are next to each other.", - "id": 6112 - }, - { - "image_path": "G:\\images\\combined\\01da36b6fdf3b073.jpg", - "response": "A billboard for Ephesus Temple of Love Corporation is displayed on a metal pole. The sign is located near a chain link fence.", - "id": 6113 - }, - { - "image_path": "G:\\images\\combined\\01da65477dad852b.jpg", - "response": "A baseball team of young boys wearing blue and white uniforms are sitting on a bench.", - "id": 6114 - }, - { - "image_path": "G:\\images\\combined\\01da6966036b3b4e.jpg", - "response": "A purple and white striped shirt with the word brother on the chest", - "id": 6115 - }, - { - "image_path": "G:\\images\\combined\\01db315a3bd2750a.jpg", - "response": "A hand holding a box with a plastic model airplane kit of an A-10 Warthog.", - "id": 6116 - }, - { - "image_path": "G:\\images\\combined\\01db52946398bae2.jpg", - "response": "A catcher in full gear standing on the field.", - "id": 6117 - }, - { - "image_path": "G:\\images\\combined\\01db6a5d60f6e92d.jpg", - "response": "A mascot in a Nexen uniform poses with a woman in a Nexen uniform and another woman in a uniform.", - "id": 6118 - }, - { - "image_path": "G:\\images\\combined\\01dbb2370b74e9e5.jpg", - "response": "A man and a woman are sitting in a bumper car at an amusement park. The woman is wearing a pink sweatshirt and glasses. The man is wearing a blue hat and a blue hoodie. They are both looking at the camera.", - "id": 6119 - }, - { - "image_path": "G:\\images\\combined\\01dd932341463655.jpg", - "response": "A person(460,558),(493,630) riding a motorcycle down a winding road.", - "id": 6120 - }, - { - "image_path": "G:\\images\\combined\\01df220cc71e07af.jpg", - "response": "A black car with a Virginia license plate that says SITTGRT.", - "id": 6121 - }, - { - "image_path": "G:\\images\\combined\\01df7560c473e1ac.jpg", - "response": "An iPhone 4S is shown with the home screen visible. The phone is black and is laying on a white surface. The home screen has several icons on it including Phone, Messages, and Safari. The Phone icon is located in the lower left hand corner of the screen. The screen also has several apps including Facebook, Twitter, and YouTube. The Facebook app is located in the lower left hand corner of the screen. The Twitter app is located in the lower right hand corner of the screen. The YouTube app is located in the upper right hand corner of the screen.", - "id": 6122 - }, - { - "image_path": "G:\\images\\combined\\01e05e827ea1929a.jpg", - "response": "A white board with writing on it in a room.", - "id": 6123 - }, - { - "image_path": "G:\\images\\combined\\01e1b171a41077b7.jpg", - "response": "A person holding a bottle of gold glitter nail polish in front of a laptop.", - "id": 6124 - }, - { - "image_path": "G:\\images\\combined\\01e1df88e5b1c438.jpg", - "response": "A collection of black and white photos on a table.", - "id": 6125 - }, - { - "image_path": "G:\\images\\combined\\01e2c17d9ea1804d.jpg", - "response": "A record album cover for The Emperor Concerto by Beethoven, played by Solomon.", - "id": 6126 - }, - { - "image_path": "G:\\images\\combined\\01e37c04a7967ac3.jpg", - "response": "A black and silver watch with the time set to 10:40.", - "id": 6127 - }, - { - "image_path": "G:\\images\\combined\\01e3e2e8f8e6808c.jpg", - "response": "A poster with a large key on the left and a poster with eyes on the right.", - "id": 6128 - }, - { - "image_path": "G:\\images\\combined\\01e4eb5fa4c0bb42.jpg", - "response": "A street scene with a traffic light showing a red light. There are buildings on both sides of the street and cars are parked along the road. A truck is driving down the street and there are people walking on the sidewalks. There is a no left turn sign and a traffic sign with an arrow pointing to the left.", - "id": 6129 - }, - { - "image_path": "G:\\images\\combined\\01e52dcdd1b8b05a.jpg", - "response": "A student working at a desk with a piece of paper and a keyboard.", - "id": 6130 - }, - { - "image_path": "G:\\images\\combined\\01e7258e9d96d788.jpg", - "response": "A poster for Wellesley College, with a woman in a white jacket standing in front of a crowd of people walking and riding bicycles.", - "id": 6131 - }, - { - "image_path": "G:\\images\\combined\\01e81b99d1dca0ec.jpg", - "response": "A white board with red and blue writing on it.", - "id": 6132 - }, - { - "image_path": "G:\\images\\combined\\01e82d950d72633f.jpg", - "response": "A blue bus is parked in a covered bus station.", - "id": 6133 - }, - { - "image_path": "G:\\images\\combined\\01e85acde63966be.jpg", - "response": "A red train engine is pulling a long line of train cars through a rural countryside. The train is on tracks that run parallel to a field. The sky is overcast.", - "id": 6134 - }, - { - "image_path": "G:\\images\\combined\\01e9c22384de31db.jpg", - "response": "The image shows three cans of spray paint sitting on a wooden surface. The cans are all white and feature colorful labels. The first can from the left has a red, blue, and green label with the words \"Fast Dry All-Purpose/Exterior\" printed on it. The second can from the left has a label with the colors yellow, green, and blue. The third can from the left has a label with the colors orange, pink, and purple. The cans are all lined up in a row and appear to be ready for use.", - "id": 6135 - }, - { - "image_path": "G:\\images\\combined\\01ea8fa366a4d91a.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 6136 - }, - { - "image_path": "G:\\images\\combined\\01eb543ebfdc1351.jpg", - "response": "A bottle of Widmer Brothers The Original Drifter Pale Ale.", - "id": 6137 - }, - { - "image_path": "G:\\images\\combined\\01eb8a8b52bad9b4.jpg", - "response": "A store display of Pantone mobile phones in a variety of colours.", - "id": 6138 - }, - { - "image_path": "G:\\images\\combined\\01ebd4f1b7f87a41.jpg", - "response": "A Virginia license plate on the back of a car.", - "id": 6139 - }, - { - "image_path": "G:\\images\\combined\\01ecae33d6fde19c.jpg", - "response": "The image shows the inside of a Bath & Body Works store. There is a counter with a sign that says \"Bath & Body Works\" in blue letters. To the left of the counter, there is a woman with a black jacket and a bag standing in front of a display of products. The woman appears to be shopping. There are also other people in the store, but they are further away and not as visible. The store has a wide selection of products, including various bottles and containers of bath and body products. The store also has a bright and colorful atmosphere.", - "id": 6140 - }, - { - "image_path": "G:\\images\\combined\\01ed082eb15c3f60.jpg", - "response": "A large yellow and red sign with the number 30 on it.", - "id": 6141 - }, - { - "image_path": "G:\\images\\combined\\01ed9f00b2d3265e.jpg", - "response": "A cell phone is shown next to a SparkFun RedBot with a breadboard and various wires connected. The cell phone is running the Android operating system and has a menu displayed on the screen.", - "id": 6142 - }, - { - "image_path": "G:\\images\\combined\\01ee1b7395e1d8c4.jpg", - "response": "A bottle of amber ale next to a tall glass filled with the beer.", - "id": 6143 - }, - { - "image_path": "G:\\images\\combined\\01ef6656e89a17d9.jpg", - "response": "A room with a TV on a stand and a boombox on the floor.", - "id": 6144 - }, - { - "image_path": "G:\\images\\combined\\01efc51d4fe15670.jpg", - "response": "The camera is black and has a strap attached to it.", - "id": 6145 - }, - { - "image_path": "G:\\images\\combined\\01f16152d32ca714.jpg", - "response": "A person writing on a white board with marker.", - "id": 6146 - }, - { - "image_path": "G:\\images\\combined\\01f21faf20e18217.jpg", - "response": "A book bound book with a woman sitting at a desk writing in it.", - "id": 6147 - }, - { - "image_path": "G:\\images\\combined\\01f270db9a417dee.jpg", - "response": "A store with three refrigerators side by side. The refrigerators are filled with soda and are labeled Pepsi, Coke, and Sodas. There are also other items on the shelves next to the refrigerators.", - "id": 6148 - }, - { - "image_path": "G:\\images\\combined\\01f45db1ff7610c5.jpg", - "response": "A gold coin with the word ESPANA on it.", - "id": 6149 - }, - { - "image_path": "G:\\images\\combined\\01f4d6b8f7d48bc7.jpg", - "response": "A laptop with a bunch of papers next to it.", - "id": 6150 - }, - { - "image_path": "G:\\images\\combined\\01f58fe454760bf4.jpg", - "response": "A blue and white Thomson Boeing 757 sits on the tarmac at Manchester Airport.", - "id": 6151 - }, - { - "image_path": "G:\\images\\combined\\01f6ac411ed5684b.jpg", - "response": "A bottle of Madeira wine and a glass of it next to it.", - "id": 6152 - }, - { - "image_path": "G:\\images\\combined\\01f6c4d1dc9fe72b.jpg", - "response": "A large airplane flying through the sky.", - "id": 6153 - }, - { - "image_path": "G:\\images\\combined\\01f6d2518e30b02a.jpg", - "response": "On the screen of the open laptop is a chart with a blue and green pie chart and a line graph. The background of the image is white.", - "id": 6154 - }, - { - "image_path": "G:\\images\\combined\\01f805f22565b44c.jpg", - "response": "A billboard for AC Transit, showing a photo of a traffic jam and the slogan \"Haven't you just about had it?\"", - "id": 6155 - }, - { - "image_path": "G:\\images\\combined\\01f838adc1583cfe.jpg", - "response": "A clock tower with a brick base and a metal top.", - "id": 6156 - }, - { - "image_path": "G:\\images\\combined\\01f83f94541937f5.jpg", - "response": "A sign for a pub called Smugglers.", - "id": 6157 - }, - { - "image_path": "G:\\images\\combined\\01f93848d14939fe.jpg", - "response": "a close up of a wrist watch on someones arm", - "id": 6158 - }, - { - "image_path": "G:\\images\\combined\\01fa8e68ea2ed55d.jpg", - "response": "A white laptop computer with a black keyboard.", - "id": 6159 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.aa0d15a538f7a3893cbe6de62c03fe30.jpg", - "response": "A cardboard box is open on the top and is on a wooden floor.", - "id": 6160 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.b20ac466d76ee7e3bbc8e5e2bdd4b0b5.jpg", - "response": "A large cardboard box is stacked on top of another cardboard box on a white surface. The box on the bottom has a cartoon character on it. The boxes are on a wooden floor.", - "id": 6161 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.de505d8f5b3a43ececae692ac76f0e44.jpg", - "response": "A box with a picture of a girl holding a pink bag on it.", - "id": 6162 - }, - { - "image_path": "G:\\images\\combined\\01fb8b5325e992d9.jpg", - "response": "A colorful double decker bus is driving down the street.", - "id": 6163 - }, - { - "image_path": "G:\\images\\combined\\01fbb47ed3360107.jpg", - "response": "A white smartphone with a purple screen is sitting on a table. The phone has a green light on the bottom right corner and a red light on the top right corner. The phone has several apps on the screen including a calendar, email, and camera.", - "id": 6164 - }, - { - "image_path": "G:\\images\\combined\\01fea80742389c98.jpg", - "response": "The image shows the entrance to a Claire's store. The store front has a large blue sign that reads \"claire's\" in blue letters. The sign is illuminated and appears to be made of neon lights.", - "id": 6165 - }, - { - "image_path": "G:\\images\\combined\\01FVZIGPUGWI_jpg.rf.6d30a3f01c1d432087900e48ce6acc1a.jpg", - "response": "An orange forklift with a large black tire on the back is parked in a dirt lot.", - "id": 6166 - }, - { - "image_path": "G:\\images\\combined\\02000bbc3c2b9e50.jpg", - "response": "A penny sitting on a wooden table.", - "id": 6167 - }, - { - "image_path": "G:\\images\\combined\\02002c2feda97a8b.jpg", - "response": "A close up of several wine bottles on a table.", - "id": 6168 - }, - { - "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.11d28707d6a3938dc8aae069bc4601d9.jpg", - "response": "A woman wearing a mask pushes a cart with luggage at an airport.", - "id": 6169 - }, - { - "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.70d0fe89db455c2893a38076f601ca6a.jpg", - "response": "A woman wearing a mask and pushing a cart with luggage at an airport.", - "id": 6170 - }, - { - "image_path": "G:\\images\\combined\\0200d04d2f03a80d.jpg", - "response": "A computer screen with a website for Think Green GEICO on it.", - "id": 6171 - }, - { - "image_path": "G:\\images\\combined\\02012_jpg.rf.44e8a86af525414f22924baecc48f805.jpg", - "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", - "id": 6172 - }, - { - "image_path": "G:\\images\\combined\\02012_jpg.rf.948b11c36688a63ca94906a2ecd08008.jpg", - "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", - "id": 6173 - }, - { - "image_path": "G:\\images\\combined\\02013_jpg.rf.36ff09c2baead034545441c620a5db83.jpg", - "response": "Three confident male construction workers standing in front of a crane with arms crossed", - "id": 6174 - }, - { - "image_path": "G:\\images\\combined\\02013_jpg.rf.b0fe1ee864c241b475fb2a8f732f9689.jpg", - "response": "Three confident male construction workers standing in front of a crane with their arms crossed", - "id": 6175 - }, - { - "image_path": "G:\\images\\combined\\02014181dd7e31d0.jpg", - "response": "In the image there is a baseball player wearing a blue and white uniform with the number 37 on the back. The player is standing on a baseball field and looking off into the distance. There are several chairs around the field and a person in the background.", - "id": 6176 - }, - { - "image_path": "G:\\images\\combined\\02027b3b8f05ef78.jpg", - "response": "A black and white photo of a street corner with a large billboard for office space to let. The billboard is next to a traffic light and a brick building. The sky is cloudy.", - "id": 6177 - }, - { - "image_path": "G:\\images\\combined\\020294a97cbd1bba.jpg", - "response": "The image shows four stainless steel vacuum flasks in different sizes. The flasks have a cylindrical shape and are made of stainless steel. The bodies of the flasks have a cylindrical shape and are made of stainless steel. The lids of the flasks are cylindrical and made of stainless steel. The flasks have Ferrino written on them in silver.", - "id": 6178 - }, - { - "image_path": "G:\\images\\combined\\0202faf23a9aae11.jpg", - "response": "A Croatia airlines airplane is parked on the runway with several people standing outside of it. The airplane has the word \"CROATIA\" written on the side. The sky above the airplane is blue with a few white clouds.", - "id": 6179 - }, - { - "image_path": "G:\\images\\combined\\02044_jpg.rf.6a863f4c897ddc93b46a3c1b8fcb8278.jpg", - "response": "A group of construction workers working on a road.", - "id": 6180 - }, - { - "image_path": "G:\\images\\combined\\02044_jpg.rf.e4f452d6d11907e54594a137a45c0084.jpg", - "response": "A group of construction workers working on a road.", - "id": 6181 - }, - { - "image_path": "G:\\images\\combined\\0204574848b0bf05.jpg", - "response": "A black trash can with a green sign that says \"Defend\" on it. The sign has a white border and black text. The trash can is located on a wet ground with many people walking around. Some people are carrying umbrellas and there are many different types of umbrellas visible in the scene.", - "id": 6182 - }, - { - "image_path": "G:\\images\\combined\\02045_jpg.rf.468563c222afe8f226ff7de1f92c1efc.jpg", - "response": "A couple of men in orange vests and white hard hats looking over blueprints in a large room.", - "id": 6183 - }, - { - "image_path": "G:\\images\\combined\\02045_jpg.rf.7b1e41330344c725abeabf225464490f.jpg", - "response": "A man and a woman in high visibility vests and hard hats, looking at architectural plans on a table.", - "id": 6184 - }, - { - "image_path": "G:\\images\\combined\\0204ffb00eba164b.jpg", - "response": "A group of three refrigerators with a lot of stickers on them.", - "id": 6185 - }, - { - "image_path": "G:\\images\\combined\\020514c846e08c9b.jpg", - "response": "A table with a pink book on it and two bottles of beer.", - "id": 6186 - }, - { - "image_path": "G:\\images\\combined\\02054_jpg.rf.f7f579767d9c1f4268bb473ae6ae44dd.jpg", - "response": "A man in a yellow vest and green hard hat is standing in the middle of a busy street. He is holding a orange and black traffic baton. There are many cars around him, some parked and some moving. One car is gray, and another is red. There is also a white van parked in the street. The man is directing traffic, possibly to help with an accident or other situation.", - "id": 6187 - }, - { - "image_path": "G:\\images\\combined\\02060_jpg.rf.0d96f0fd9c515f59a90748e62ed7c87e.jpg", - "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", - "id": 6188 - }, - { - "image_path": "G:\\images\\combined\\02060_jpg.rf.f69a4bf8d0b1d99e888c2ce8d716177f.jpg", - "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", - "id": 6189 - }, - { - "image_path": "G:\\images\\combined\\02062d203a421358.jpg", - "response": "A banner for the GDC (Game Developers Conference) that is white with a grey and yellow logo.", - "id": 6190 - }, - { - "image_path": "G:\\images\\combined\\02062_jpg.rf.9a059da9882da6641491afaf332716b2.jpg", - "response": "A construction site with three men in the foreground wearing high visibility jackets and hard hats. One man is holding a blueprint and pointing to the right, the man next to him is holding a walkie talkie and the man at the back is looking up at the crane.", - "id": 6191 - }, - { - "image_path": "G:\\images\\combined\\02062_jpg.rf.b599b5552eee0c78fb700f6d5d61af7a.jpg", - "response": "A construction site with three men in the foreground, wearing high visibility jackets and hard hats. One man is holding a set of plans and talking on a walkie talkie, another man is using a walkie talkie, and the third man is pointing towards the crane in the background.", - "id": 6192 - }, - { - "image_path": "G:\\images\\combined\\02064de8280d7906.jpg", - "response": "A close up of a telephone keypad with the number 0 button in the foreground.", - "id": 6193 - }, - { - "image_path": "G:\\images\\combined\\02070_jpg.rf.219edc90573e8dc78d6c7e4a41b70247.jpg", - "response": "A group of people wearing neon colored t-shirts are standing in front of a building. Some of the people are holding picket signs and there is a man wearing a hat.", - "id": 6194 - }, - { - "image_path": "G:\\images\\combined\\02070_jpg.rf.db5cd42fb1161f82f9f459a5cfbf719e.jpg", - "response": "A group of people are standing on a sidewalk. Some of them are wearing bright green t-shirts. One man is wearing a watch on his left wrist. Another man is wearing a hat. A man in the background is holding a picket sign.", - "id": 6195 - }, - { - "image_path": "G:\\images\\combined\\02078_jpg.rf.17c745b0e77deaff003fde9fc02597b3.jpg", - "response": "In the image, a group of seven people are standing together outside in the dirt. They are all wearing yellow safety vests and blue hard hats. In the background, there is a large electrical tower and a white truck. The sun is shining and it appears to be a clear day.", - "id": 6196 - }, - { - "image_path": "G:\\images\\combined\\02078_jpg.rf.6df16b2e6a505fed055283148653e7f5.jpg", - "response": "A group of men and women pose for a photo in front of a substation. They are all wearing yellow vests and blue hard hats. In the background, there is a white truck and a brown fence. The sky is blue and clear.", - "id": 6197 - }, - { - "image_path": "G:\\images\\combined\\0207ea1877c62bf1.jpg", - "response": "A living room with a couch that has two blue shirts and a bag on it.", - "id": 6198 - }, - { - "image_path": "G:\\images\\combined\\02080baccb392a5a.jpg", - "response": "A Sally Hansen Color Quick Fast Dry brush and bottle of Sally Hansen Diamond Strength nail color sit next to each other on a red cloth.", - "id": 6199 - }, - { - "image_path": "G:\\images\\combined\\02081b875a3147da.jpg", - "response": "A person is holding a red Sprint phone in their hand. The phone is displaying a map on the screen.", - "id": 6200 - }, - { - "image_path": "G:\\images\\combined\\02081_jpg.rf.5f2c347b1d882546e805ba9daf04ca9d.jpg", - "response": "A man wearing a yellow high vis vest and a white hard hat.", - "id": 6201 - }, - { - "image_path": "G:\\images\\combined\\02086c4f9cd57b9d.jpg", - "response": "A person is holding a HTC phone in their left hand. The phone is black and silver and says HTC on the back. The camera is on the top of the phone and is next to the speaker.", - "id": 6202 - }, - { - "image_path": "G:\\images\\combined\\02087_jpg.rf.6a37778d439a5f92509f70b78c253f39.jpg", - "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a yellow safety vest and holding a white hard hat. The one on the far right is wearing a red safety vest and a white shirt. The person in the middle is wearing a grey t-shirt.", - "id": 6203 - }, - { - "image_path": "G:\\images\\combined\\02087_jpg.rf.767a063b08ac3d65c103d899f60aabc8.jpg", - "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a orange vest with a reflector stripe and has a white hard hat. The one on the far right is wearing a red hat and a orange vest with a blue jeans. The one in the second from the left is wearing a grey t-shirt and a jeans. The one in the second from the right is wearing a orange vest and a red hat.", - "id": 6204 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.061cb0a1719cc52d0cf60ab1253c7fbc.jpg", - "response": "A group of people wearing face masks(758,220),(886,384)(407,246),(513,369)(210,184),(310,307) are seen waiting in line.", - "id": 6205 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.950f18fdb54e576a20e4490ffc5c5b02.jpg", - "response": "In the image, there are several people waiting in line. Some of them are wearing face masks, including a man with a black hat, a woman with a pink scarf, and another man with a black bag. There are also two other men in the line, one of them wearing glasses and a black jacket. In the background, there is a sign and a wall. The weather seems to be cloudy.", - "id": 6206 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.c2922d06e85786fbc488f470cb745119.jpg", - "response": "In the image, there are a couple of people wearing face masks, with one of them carrying a bag on his shoulder. They are standing near a railing, and there is another person further away who is also wearing a face mask. The people are standing in front of a building, and there is a bus in the background. The image is taken on a street, and there are also some signs visible in the scene.", - "id": 6207 - }, - { - "image_path": "G:\\images\\combined\\02092_jpg.rf.937c21ad6676df16088f9df7b4d10675.jpg", - "response": "A man in a suit and a hard hat shaking hands with a man in a yellow reflective vest and hard hat. They are standing in front of a shipping yard.", - "id": 6208 - }, - { - "image_path": "G:\\images\\combined\\02092_jpg.rf.c05c0e4dd26c552bd780c50d39f618fb.jpg", - "response": "A construction worker and a man in a suit shaking hands.", - "id": 6209 - }, - { - "image_path": "G:\\images\\combined\\02095_jpg.rf.4b1cae4a9e5571e7a457d7eb93a68b1e.jpg", - "response": "In the image there are two construction workers wearing safety gear. They are working on a construction site that has a unfinished concrete wall. They are both crouched down working on something with the wall behind them. There are rebar sticking out of the unfinished wall.", - "id": 6210 - }, - { - "image_path": "G:\\images\\combined\\02095_jpg.rf.70d479de751a9160fbd385a49078ab53.jpg", - "response": "In the image there are two construction workers working on a building site. They are both crouched down and wearing high visibility vests. The man on the left is wearing a white shirt and a green hard hat, the man on the right is wearing a yellow hard hat and an orange high visibility vest. They are both working on a concrete structure that has rebar sticking out of it.", - "id": 6211 - }, - { - "image_path": "G:\\images\\combined\\020a2365e1f27852.jpg", - "response": "The image shows a group of people standing around a small car with an open trunk. There are two men standing near the car, one on the left and one on the right, both looking at the vehicle. Another man is kneeling down next to the car on the driver's side. There is a third person standing further back near the back of the car. A fourth person is standing near the front of the car. There are two bicycles in the scene, one near the left side of the image and another near the right side. A bench is visible on the right side of the image. There are also two trucks in the scene, one on the right side and one near the center.", - "id": 6212 - }, - { - "image_path": "G:\\images\\combined\\020a30ada37ca2d4.jpg", - "response": "A Super Tomcat plane is parked on a runway.", - "id": 6213 - }, - { - "image_path": "G:\\images\\combined\\020aba3fb6452ba2.jpg", - "response": "A man and a woman standing in a kitchen preparing food.", - "id": 6214 - }, - { - "image_path": "G:\\images\\combined\\020b21575eac6d6f.jpg", - "response": "a street with many police cars parked on it", - "id": 6215 - }, - { - "image_path": "G:\\images\\combined\\020c3a6ab62e4020.jpg", - "response": "A collection of three different gauges.", - "id": 6216 - }, - { - "image_path": "G:\\images\\combined\\020cd9ff2ed54ee5.jpg", - "response": "Two men(52,165),(386,997)(122,3),(949,999) wearing soccer jerseys(534,207),(948,888)(56,400),(371,997) and a woman(354,180),(631,989) smiling for the camera.", - "id": 6217 - }, - { - "image_path": "G:\\images\\combined\\020d0655f70dd297.jpg", - "response": "A page from a book showing three different types of Toyota trucks.", - "id": 6218 - }, - { - "image_path": "G:\\images\\combined\\020ea674c1d6c656.jpg", - "response": "a close up of a blackberry phone on display", - "id": 6219 - }, - { - "image_path": "G:\\images\\combined\\020eabd2ede58efe.jpg", - "response": "A red and black trolley parked on the side of a snowy street.", - "id": 6220 - }, - { - "image_path": "G:\\images\\combined\\020f0ea4d2eb8876.jpg", - "response": "The back of a blue Nissan Juke with a California license plate that says 562.", - "id": 6221 - }, - { - "image_path": "G:\\images\\combined\\02102_jpg.rf.0f8a296dd361541232bc6f358b33a8ba.jpg", - "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", - "id": 6222 - }, - { - "image_path": "G:\\images\\combined\\02102_jpg.rf.2d3208349cc3e6558136e06529daed6f.jpg", - "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", - "id": 6223 - }, - { - "image_path": "G:\\images\\combined\\02122_jpg.rf.2854ec4726e5d11a9803b89a63f4d9bb.jpg", - "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", - "id": 6224 - }, - { - "image_path": "G:\\images\\combined\\02122_jpg.rf.2fb96063a0e9bc86ce865161b848f576.jpg", - "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", - "id": 6225 - }, - { - "image_path": "G:\\images\\combined\\02132cfd627a3c45.jpg", - "response": "A white display stand holding a book, a necklace, and a container of Tocca perfume.", - "id": 6226 - }, - { - "image_path": "G:\\images\\combined\\02144c6ad4ca3466.jpg", - "response": "A white table with two chocolate bars on it. The chocolate bar on the left is red and says Chocolove on the wrapper. The chocolate bar on the right is orange and says orange peel in dark chocolate on the wrapper.", - "id": 6227 - }, - { - "image_path": "G:\\images\\combined\\021508ba303f584b.jpg", - "response": "a man wearing a yellow jacket with the word wow on it", - "id": 6228 - }, - { - "image_path": "G:\\images\\combined\\0215629bb5dc5137.jpg", - "response": "A triangular orange traffic sign that says Polizei in black letters.", - "id": 6229 - }, - { - "image_path": "G:\\images\\combined\\02157433d9848095.jpg", - "response": "a man is standing in the rain holding a sign that says brass balls not tar balls.", - "id": 6230 - }, - { - "image_path": "G:\\images\\combined\\02159ea52f03af41.jpg", - "response": "A train car with graffiti on the side sitting on the tracks.", - "id": 6231 - }, - { - "image_path": "G:\\images\\combined\\0216678efae0b34a.jpg", - "response": "A medicine cabinet with various items inside.", - "id": 6232 - }, - { - "image_path": "G:\\images\\combined\\0216ced408c377e7.jpg", - "response": "The image shows a group of cheerleaders for the Oregon Ducks. They are standing on a set of stairs and are holding pom-poms. The cheerleaders are wearing green and yellow uniforms. One of the cheerleaders is holding a large pom-pom while the others are holding smaller pom-poms. The cheerleaders are posing for a picture and are making the letter O with their hands.", - "id": 6233 - }, - { - "image_path": "G:\\images\\combined\\0216ee6a402e3e75.jpg", - "response": "A pitcher in a black and yellow jersey is winding up to throw a baseball.", - "id": 6234 - }, - { - "image_path": "G:\\images\\combined\\0217600e51a09374.jpg", - "response": "A row of books on a shelf.", - "id": 6235 - }, - { - "image_path": "G:\\images\\combined\\021764ab0167feae.jpg", - "response": "A yellow Chevrolet school bus driving down a street.", - "id": 6236 - }, - { - "image_path": "G:\\images\\combined\\0217fd34cf15db9b.jpg", - "response": "A cardboard box of Preketes Fine Confections sits on a table. The box is pink and white and has a pink ribbon around the bottom. The box is from Ann Arbor, Michigan. The box is labeled One Pound Net.", - "id": 6237 - }, - { - "image_path": "G:\\images\\combined\\021870e9422ddd34.jpg", - "response": "A man sitting on a couch holding a glass of wine and a cat standing on the arm of the couch.", - "id": 6238 - }, - { - "image_path": "G:\\images\\combined\\021889a4d8d3bd64.jpg", - "response": "A laptop screen that is updating.", - "id": 6239 - }, - { - "image_path": "G:\\images\\combined\\0218a2cb4401c6df.jpg", - "response": "A book cover with three soldiers in green uniforms.", - "id": 6240 - }, - { - "image_path": "G:\\images\\combined\\0219135f66ddb4b1.jpg", - "response": "a sign in front of a brick wall", - "id": 6241 - }, - { - "image_path": "G:\\images\\combined\\0219908f4f9e94ea.jpg", - "response": "A bottle of root beer on a counter.", - "id": 6242 - }, - { - "image_path": "G:\\images\\combined\\02199bba98ab9978.jpg", - "response": "A pitcher on the mound getting ready to throw a ball.", - "id": 6243 - }, - { - "image_path": "G:\\images\\combined\\021b7f6c879ea86f.jpg", - "response": "A wall with a business sign that says \"IF IT'S GUNS\" in large red letters. The business name is \"TREASURE WORLD\" and it sells \"GUNS, AMMO, ACCESSORIES\". Next to the sign is a white van.", - "id": 6244 - }, - { - "image_path": "G:\\images\\combined\\021be82c5cefdc8a.jpg", - "response": "A table with a case of Newcastle beer on it.", - "id": 6245 - }, - { - "image_path": "G:\\images\\combined\\021c7e44227bfac1.jpg", - "response": "An aircraft is sitting on the deck of a ship.", - "id": 6246 - }, - { - "image_path": "G:\\images\\combined\\021d0fd9b41f8d4b.jpg", - "response": "The license plate on the red car is from the state of Washington.", - "id": 6247 - }, - { - "image_path": "G:\\images\\combined\\021d60d635f8064e.jpg", - "response": "A sign showing that a gas station and restaurant are 1000 meters ahead.", - "id": 6248 - }, - { - "image_path": "G:\\images\\combined\\021d7fa8fc4793f1.jpg", - "response": "A seaplane is parked on the water with two men standing on the front.", - "id": 6249 - }, - { - "image_path": "G:\\images\\combined\\021e7031adf5cb7e.jpg", - "response": "A double decker bus with the words \"LIVERPOOL\" on the side.", - "id": 6250 - }, - { - "image_path": "G:\\images\\combined\\021e8e65743a4599.jpg", - "response": "A vintage birthday postcard with a picture of soldiers on it.", - "id": 6251 - }, - { - "image_path": "G:\\images\\combined\\022048b32a848e74.jpg", - "response": "A blue and white train car sitting next to a platform at a train station.", - "id": 6252 - }, - { - "image_path": "G:\\images\\combined\\02208d385e17d3d7.jpg", - "response": "A computer monitor that is turned on and displaying text.", - "id": 6253 - }, - { - "image_path": "G:\\images\\combined\\0220a53c342555f2.jpg", - "response": "A Lego helicopter is on display with several small figures around it.", - "id": 6254 - }, - { - "image_path": "G:\\images\\combined\\02223ba39c46afcc.jpg", - "response": "A grey t-shirt with the word bump on it in blue.", - "id": 6255 - }, - { - "image_path": "G:\\images\\combined\\0222dde37ac1175c.jpg", - "response": "A glass display shelf with a basketball and several jerseys on it.", - "id": 6256 - }, - { - "image_path": "G:\\images\\combined\\022315ce008d95c3.jpg", - "response": "A bottle of Stormy Ridge 2004 sparkling shiraz from the hunter valley.", - "id": 6257 - }, - { - "image_path": "G:\\images\\combined\\02239b5969fed70c.jpg", - "response": "A red bus driving down the road.", - "id": 6258 - }, - { - "image_path": "G:\\images\\combined\\02244_jpg.rf.77d7d05d3a7f34b8e2dc88ad1cdd02c0.jpg", - "response": "A group of five people walking away from a work site. They are all wearing yellow vests and hard hats. In front of them is a yellow bulldozer. They are walking on a rocky path.", - "id": 6259 - }, - { - "image_path": "G:\\images\\combined\\02244_jpg.rf.8f430913c13186191a8fc1a25d66a754.jpg", - "response": "A group of five people walking in front of a bulldozer", - "id": 6260 - }, - { - "image_path": "G:\\images\\combined\\02249aa22d4d74f6.jpg", - "response": "A white airplane with blue tail is flying low in the sky.", - "id": 6261 - }, - { - "image_path": "G:\\images\\combined\\02250d9442586089.jpg", - "response": "A monitor that is on and playing a video game.", - "id": 6262 - }, - { - "image_path": "G:\\images\\combined\\0225205c98bbca7e.jpg", - "response": "A painting of a room with a fireplace and a desk.", - "id": 6263 - }, - { - "image_path": "G:\\images\\combined\\0225316ea19e5041.jpg", - "response": "A person wearing a black Adidas shirt is holding a silver smartphone. The person is using the phone and has their thumb on the screen. The phone is running an app.", - "id": 6264 - }, - { - "image_path": "G:\\images\\combined\\0225679831f27341.jpg", - "response": "The image shows the inside of a store, with a counter and a cash register. There are two people visible in the distance, and a third person can be seen on the right side of the image. A woman is standing behind the cash register, and another person is standing near the customer service desk. There are two TVs in the store, one near the top of the image and another near the middle. The store has a variety of items on display, including a rack of socks near the left side of the image, and a rack of greeting cards on the right. There are also a number of bottles and cans visible in the store.", - "id": 6265 - }, - { - "image_path": "G:\\images\\combined\\02266f07c0a0b637.jpg", - "response": "a black and white photo of a car dashboard with a speedometer and a clock", - "id": 6266 - }, - { - "image_path": "G:\\images\\combined\\02274483a90ba59f.jpg", - "response": "A couple of mugs of beer sitting on a table.", - "id": 6267 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.23ae632b2ba8f997c8e40c0ea8ccd3d7.jpg", - "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. The people are of different ages and are standing close to each other. One person is wearing a white mask with a black line on it, and one person is wearing a mask with glasses on it. One person is wearing a yellow mask with a black checkered pattern on it.", - "id": 6268 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.3151772a94b39673fe37f146a7788d7a.jpg", - "response": "A crowd of people walking down a busy street.", - "id": 6269 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.cd810658afca3272f6b2faa3dcd16b17.jpg", - "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. Some people are wearing glasses and others are not. One person is wearing a white mask with a black strap under their nose, and another person is wearing a mask with a white strap that goes around their chin. There are also a few people in the background who are not wearing masks.", - "id": 6270 - }, - { - "image_path": "G:\\images\\combined\\0228651295408889.jpg", - "response": "A comic strip from the 1940s, featuring a story about a man who encounters three wise men.", - "id": 6271 - }, - { - "image_path": "G:\\images\\combined\\0228e46986926913.jpg", - "response": "A baseball player posing for a picture with a baseball and glove.", - "id": 6272 - }, - { - "image_path": "G:\\images\\combined\\0228f1095d117c2d.jpg", - "response": "A table with two cans of beer, a glass of dark liquid, a bag of chips and a book.", - "id": 6273 - }, - { - "image_path": "G:\\images\\combined\\02290baaf18293bd.jpg", - "response": "The image shows a basketball game in progress with two teams playing. There are several players on the court, some holding basketballs, and others trying to block or defend. The players are wearing uniforms with numbers on the backs.", - "id": 6274 - }, - { - "image_path": "G:\\images\\combined\\02293d9c2b91fd14.jpg", - "response": "A navy blue Yankees jacket with white lettering and white stripes on the sleeves.", - "id": 6275 - }, - { - "image_path": "G:\\images\\combined\\02298_jpg.rf.982168697945864e54d5e56e31d9d65b.jpg", - "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", - "id": 6276 - }, - { - "image_path": "G:\\images\\combined\\02298_jpg.rf.cfe62e63686f189c736218279a3de6f4.jpg", - "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", - "id": 6277 - }, - { - "image_path": "G:\\images\\combined\\022a3c09f0a73534.jpg", - "response": "A newspaper with the headline \"Signs in protest at council fence\" on the front page.", - "id": 6278 - }, - { - "image_path": "G:\\images\\combined\\022a57a52043d7bd.jpg", - "response": "A store with a sign that says C.B. Supplies.", - "id": 6279 - }, - { - "image_path": "G:\\images\\combined\\022a8a65aa1e8ae2.jpg", - "response": "A man standing in front of a white board wearing a lanyard with a tag.", - "id": 6280 - }, - { - "image_path": "G:\\images\\combined\\022b411f98c66557.jpg", - "response": "The image shows the inside of a store with a variety of items on display. There are several people visible in the store, and a cash register is located near the front of the store. The store has a colorful and vibrant atmosphere, with bright green walls and a white tile floor. On the walls, there are several posters and decorations, including a poster of a city and a poster of a group of people. In the store, there are many items for sale, including toys, books, and games. There are several Monopoly games on display, as well as other board games and books. There are also several balloons in the store, located near the front and on the right side.", - "id": 6281 - }, - { - "image_path": "G:\\images\\combined\\022b4b27726e6d5b.jpg", - "response": "A bus on a city street, with signs in the background for Subway and First Bus.", - "id": 6282 - }, - { - "image_path": "G:\\images\\combined\\022be8ef346e3009.jpg", - "response": "A man is kicking a blue umbrella in the street.", - "id": 6283 - }, - { - "image_path": "G:\\images\\combined\\022c27100bf3c762.jpg", - "response": "A woman in a shiny blue and white bodysuit bending over.", - "id": 6284 - }, - { - "image_path": "G:\\images\\combined\\022dd2d03ff5325c.jpg", - "response": "A man sitting in a chair in front of a TV.", - "id": 6285 - }, - { - "image_path": "G:\\images\\combined\\022fa9a7367d3259.jpg", - "response": "A baseball team standing in the dugout with their gloves on.", - "id": 6286 - }, - { - "image_path": "G:\\images\\combined\\023021985507a119.jpg", - "response": "A blue van driving down a street next to a parking lot.", - "id": 6287 - }, - { - "image_path": "G:\\images\\combined\\02306aab95c5697f.jpg", - "response": "a close up of a deck of cards with the word \"erotic\" on it", - "id": 6288 - }, - { - "image_path": "G:\\images\\combined\\0230ff5703d20b38.jpg", - "response": "A blue and white sign that says scenic drive on it.", - "id": 6289 - }, - { - "image_path": "G:\\images\\combined\\023161661b60ab36.jpg", - "response": "A book cover with the title Oedipus the King.", - "id": 6290 - }, - { - "image_path": "G:\\images\\combined\\02316_jpg.rf.913bc9850c1c2aa37074a112ca0cc49e.jpg", - "response": "Two construction workers stand in the street next to a hole in the pavement. One worker stands with his hands on his hips and is wearing a red hard hat. The other worker stands with his hands on his hips and is wearing a white hard hat. In front of them is a orange and gray ladder. To the left of the ladder is an orange and white cone. Next to the workers and the cone is a cup.", - "id": 6291 - }, - { - "image_path": "G:\\images\\combined\\02316_jpg.rf.fb4a13ddef7ffc55545d9a7cbf2a42d4.jpg", - "response": "The image shows two construction workers standing next to a large hole in the street. The man on the left is wearing a red hard hat and yellow safety vest. The man on the right is wearing a white hard hat and a blue shirt under a white safety vest. Both men are looking down into the hole.", - "id": 6292 - }, - { - "image_path": "G:\\images\\combined\\023182f17b71f861.jpg", - "response": "The image is a poster with a red background and a man's face in black and white. The man has a mustache and is wearing a suit. The poster has the words \"Have you seen Dr. Oblivion?\" in black at the top.", - "id": 6293 - }, - { - "image_path": "G:\\images\\combined\\023232c2030de30a.jpg", - "response": "A table with a dry erase board, a pair of scissors, a whiteboard, a sharpie marker, and a whiteboard marker.", - "id": 6294 - }, - { - "image_path": "G:\\images\\combined\\02325_jpg.rf.ab25aa84dfa365e1b920afa6d847cfbf.jpg", - "response": "A group of four people standing in a large, unfinished room.", - "id": 6295 - }, - { - "image_path": "G:\\images\\combined\\02325_jpg.rf.e9d416be71242125d202bcb7e011d414.jpg", - "response": "a group of people standing in a room that has no walls", - "id": 6296 - }, - { - "image_path": "G:\\images\\combined\\02326_jpg.rf.89ee8cd9bde41ff32455df5b7c211ea1.jpg", - "response": "The image shows two men standing on either side of a red cloth that is draped over a gold plaque. The men are both wearing suits. To the left of the image is a man with black hair and a white shirt. He is wearing a suit and appears to be the older of the two men. To the right of the image is a man with black hair and a dark suit. He is wearing a white shirt and appears to be the younger of the two men.", - "id": 6297 - }, - { - "image_path": "G:\\images\\combined\\02333_jpg.rf.abafe3a9341b3422383ad8d5b81674ec.jpg", - "response": "a group of people walking across a parking lot", - "id": 6298 - }, - { - "image_path": "G:\\images\\combined\\0233e1cb3ae2d70b.jpg", - "response": "A man in a white shirt is putting on headphones.", - "id": 6299 - }, - { - "image_path": "G:\\images\\combined\\023463e93c2fa36e.jpg", - "response": "A busy city street filled with traffic and pedestrians.", - "id": 6300 - }, - { - "image_path": "G:\\images\\combined\\02348_jpg.rf.5e957d08b2695fb20b6c5797284727f1.jpg", - "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. Behind the people there is a red banner with white Chinese characters.", - "id": 6301 - }, - { - "image_path": "G:\\images\\combined\\02348_jpg.rf.b5a741345590e8b4981a4d0b106438e5.jpg", - "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. The background is a red wall with white writing that says \"\u6d3b\u513f\u5e72\u5f97\u597d\uff0c\u5c31\u662f\u4eba\u54c1\u7684\u597d\u6000!\"", - "id": 6302 - }, - { - "image_path": "G:\\images\\combined\\0234c0a4b04aba38.jpg", - "response": "A row of liquor bottles on a shelf, including eggnog, latte, and egg nog.", - "id": 6303 - }, - { - "image_path": "G:\\images\\combined\\02352c9c5a13aa94.jpg", - "response": "A bottle of Gatorade Frost sits on a counter.", - "id": 6304 - }, - { - "image_path": "G:\\images\\combined\\02355b22cdf0f38e.jpg", - "response": "A table with three computer monitors, a mouse and a keyboard.", - "id": 6305 - }, - { - "image_path": "G:\\images\\combined\\0235b5c0ed2d5d94.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 6306 - }, - { - "image_path": "G:\\images\\combined\\0235f6f9ee734006.jpg", - "response": "The image displays an electronic device, most likely a smartphone, displaying the weather for various cities. The current temperature is 12 degrees Celsius, and it is cloudy. There are five other cities listed with their own temperature, ranging from 1 to 13 degrees Celsius. The time displayed is 03:30. The screen also has a purple background and white text.", - "id": 6307 - }, - { - "image_path": "G:\\images\\combined\\02365_jpg.rf.54395a45dfcdddd2638ee8e409f7e361.jpg", - "response": "two engineers in green vests and white helmets looking at a construction site", - "id": 6308 - }, - { - "image_path": "G:\\images\\combined\\0237af287df0ef52.jpg", - "response": "A blue cell phone that is flipped open. The screen displays the time as 15:01.", - "id": 6309 - }, - { - "image_path": "G:\\images\\combined\\0237f650998d5d52.jpg", - "response": "A phone screen that is on.", - "id": 6310 - }, - { - "image_path": "G:\\images\\combined\\0238b78bec43550e.jpg", - "response": "A green and white trolley car on tracks.", - "id": 6311 - }, - { - "image_path": "G:\\images\\combined\\0238b8a66f717e2f.jpg", - "response": "A glass of beer sits on a coaster on a table.", - "id": 6312 - }, - { - "image_path": "G:\\images\\combined\\02394_jpg.rf.bbc07627f06877bddddc1365c796c2ce.jpg", - "response": "The photo shows men walking and talking. They are wearing suits and the men in the middle and on the right are wearing blue shirts. The man on the far left is wearing a dark blue suit. The man second from the left is wearing a black suit. The man in the middle is wearing a blue shirt and dark blue pants. The man on the far right is wearing a dark grey suit. They are walking single file along a hallway.", - "id": 6313 - }, - { - "image_path": "G:\\images\\combined\\02394_jpg.rf.e06b5f7d7938a7a26b0a9fe33d3456f3.jpg", - "response": "The photo shows men walking and talking. There are five men in total, all wearing suits. They are walking down a hallway that is lined with doors. Some of the doors are open, and you can see a table in one of the rooms. The men seem to be having a conversation, with one man leading the discussion and gesturing with his hand.", - "id": 6314 - }, - { - "image_path": "G:\\images\\combined\\02397_jpg.rf.4c6e01ffed369a3f8ae307c02791bb0a.jpg", - "response": "a group of men standing around a construction site", - "id": 6315 - }, - { - "image_path": "G:\\images\\combined\\02397_jpg.rf.89cdc395296359a6aac2fb9a5c5e45a9.jpg", - "response": "a group of men standing around a car", - "id": 6316 - }, - { - "image_path": "G:\\images\\combined\\0239b9c1acb62040.jpg", - "response": "A row of televisions that are on a table.", - "id": 6317 - }, - { - "image_path": "G:\\images\\combined\\023a007718a0e7f3.jpg", - "response": "A man standing behind a table displaying various items including shirts, books, and pictures.", - "id": 6318 - }, - { - "image_path": "G:\\images\\combined\\023a238c3910069b.jpg", - "response": "a boy in a baseball uniform is pitching a ball", - "id": 6319 - }, - { - "image_path": "G:\\images\\combined\\023b88fa3e15efad.jpg", - "response": "A hockey player in a white jersey is standing on the ice with a hockey stick.", - "id": 6320 - }, - { - "image_path": "G:\\images\\combined\\023bd50314b8e43b.jpg", - "response": "In the image, there is a large crowd of people walking around in front of Universal Studios Hollywood. They are standing around a small courtyard area with a few small tables and chairs scattered around. There is a big billboard for the movie Despicable Me above the entrance to the Universal Studios Hollywood building.", - "id": 6321 - }, - { - "image_path": "G:\\images\\combined\\023cc00c3308c087.jpg", - "response": "A book cover with a woman in a colorful dress holding a glass up to her face.", - "id": 6322 - }, - { - "image_path": "G:\\images\\combined\\023d3e047ea06997.jpg", - "response": "A Korean Air Cargo plane taxis on a runway.", - "id": 6323 - }, - { - "image_path": "G:\\images\\combined\\023e83642b74ac3b.jpg", - "response": "In the image, there is a person wearing a red shirt sitting at a table with a laptop. The person is typing on the laptop with both hands. There is another person in the background, wearing a brown shirt. The background is blurry.", - "id": 6324 - }, - { - "image_path": "G:\\images\\combined\\02402_jpg.rf.3456c716edfdb4cf107d1a36434fe413.jpg", - "response": "A man standing over a red table with a bottle of\u7ea2\u9152 and a glass on it.", - "id": 6325 - }, - { - "image_path": "G:\\images\\combined\\02402_jpg.rf.756723f867dd74f3e957153a822f43d4.jpg", - "response": "a table with a red table cloth on it with two bottles of\u7ea2\u9152, a plate with food, and a bowl on top of the table.", - "id": 6326 - }, - { - "image_path": "G:\\images\\combined\\024033e1c44a12ac.jpg", - "response": "A scoreboard at a soccer game showing the final score as Fulham 1, Brentford 4.", - "id": 6327 - }, - { - "image_path": "G:\\images\\combined\\02404_jpg.rf.667a811ccbe06eb9d0d459dbdb39f7c5.jpg", - "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", - "id": 6328 - }, - { - "image_path": "G:\\images\\combined\\02404_jpg.rf.9aadaec023c4ed4bcf57b9d0815130ec.jpg", - "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", - "id": 6329 - }, - { - "image_path": "G:\\images\\combined\\0240764e39584f65.jpg", - "response": "A red and white paper circle with information about tornadoes and other weather events.", - "id": 6330 - }, - { - "image_path": "G:\\images\\combined\\0240b8cff8874e78.jpg", - "response": "The Ateneo Blue Eagles cheerleading team are all smiles as they are introduced to the crowd.", - "id": 6331 - }, - { - "image_path": "G:\\images\\combined\\02436_jpg.rf.75755c478e5473c529fad23c5135fb29.jpg", - "response": "A man with a blue hard hat and a tablet is showing a plan to a man and a woman. They are standing outside in front of a brick building that is under construction. The man is wearing a beige suit and the woman is wearing a pinkish top with a white shirt and blue jeans. They are all looking at the tablet.", - "id": 6332 - }, - { - "image_path": "G:\\images\\combined\\02436_jpg.rf.c30a9bf9c3b11bdc1dd267e46ff62872.jpg", - "response": "Three people standing in front of a building site. The man on the left is wearing a hard hat and holding a tablet. The man in the middle and the woman on the right are both looking at the tablet. The man in the middle has brown hair and is wearing a suit. The woman has long hair and is wearing a pink top with blue jeans. They are all looking at the tablet and talking.", - "id": 6333 - }, - { - "image_path": "G:\\images\\combined\\02440_jpg.rf.0dfff947055089b70e7add7308c5f0b4.jpg", - "response": "a group of people walking down a sidewalk", - "id": 6334 - }, - { - "image_path": "G:\\images\\combined\\02440_jpg.rf.2132749eae47dafa6467a08c0741de24.jpg", - "response": "a group of people walking down a sidewalk", - "id": 6335 - }, - { - "image_path": "G:\\images\\combined\\0245090a4b81413a.jpg", - "response": "The image shows a city street scene with a red double decker bus driving down the road. The bus is large and takes up a significant portion of the image. In the background, there are large billboards along the street, displaying advertisements. The billboards are bright and colorful, catching the eye of passersby. The scene is set during the day, with the bus and billboards reflecting sunlight.", - "id": 6336 - }, - { - "image_path": "G:\\images\\combined\\02453db441cf3194.jpg", - "response": "a close up of two wrist watches on a wrist.", - "id": 6337 - }, - { - "image_path": "G:\\images\\combined\\0245497d0c801eb1.jpg", - "response": "An image of two LG G Watch in white and black.", - "id": 6338 - }, - { - "image_path": "G:\\images\\combined\\024604312c78c4f4.jpg", - "response": "A car is parked next to a fence and a chain link fence. There are three signs on a wooden pole. One says \"tyres breaks servicing\" in red and white. Another says \"hand car wash\" in blue and black. The third sign is white and says \"tyres breaks servicing\" in red. There is a building behind the fence.", - "id": 6339 - }, - { - "image_path": "G:\\images\\combined\\024671665f4e0be4.jpg", - "response": "a scene inside a market place", - "id": 6340 - }, - { - "image_path": "G:\\images\\combined\\02472_jpg.rf.18c8c30fc1a112e403bc3da6e34d6562.jpg", - "response": " five men(196,267),(888,994) standing in front of a building", - "id": 6341 - }, - { - "image_path": "G:\\images\\combined\\02472_jpg.rf.ce3708786399d87b43e7c76f5ab64d36.jpg", - "response": "5 men(196,268),(889,994) standing in front of a building.", - "id": 6342 - }, - { - "image_path": "G:\\images\\combined\\02473_jpg.rf.ef5be2445bac6419cf435ff1331844d0.jpg", - "response": "The image shows a group of seven people standing on a rooftop. They are all wearing yellow high visibility vests. The people are from left to right: a man with black hair, wearing a white shirt and black pants; a woman with blonde hair, wearing a white shirt and black pants; a man with short black hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; a man with dark hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; and a man with dark hair, wearing a white shirt and grey pants. The woman with dark hair is pointing to something off camera. The sky is grey and overcast. In the background, there is a building with a grey roof on the left, a building under construction with scaffolding in the middle, and another building with a grey roof on the right. There are several bags of building materials on the right side of the image, and a few people in the far distance.", - "id": 6343 - }, - { - "image_path": "G:\\images\\combined\\02474_jpg.rf.165c9989715d3c289a1e71ab507f1e98.jpg", - "response": "A group of men walking down a street next to a building.", - "id": 6344 - }, - { - "image_path": "G:\\images\\combined\\02475_jpg.rf.3a2771651984c552bbbf03c540c1dbad.jpg", - "response": "a group of people standing around a construction site", - "id": 6345 - }, - { - "image_path": "G:\\images\\combined\\02475_jpg.rf.ac5373838610d6c9c03eef07730f4ef4.jpg", - "response": "a group of people standing around a construction site", - "id": 6346 - }, - { - "image_path": "G:\\images\\combined\\0247bed0e0c11603.jpg", - "response": "A brown dumpster with a sign that says \"Trash Only\" on the side.", - "id": 6347 - }, - { - "image_path": "G:\\images\\combined\\02483_jpg.rf.5572923be18fc61fbbf04e57dd1ea5d4.jpg", - "response": "A man is holding a phone to his ear in a construction site.", - "id": 6348 - }, - { - "image_path": "G:\\images\\combined\\02483_jpg.rf.a76ce88c2ac07bf979a955d2211225e0.jpg", - "response": "A man is standing in a room with a blue sign on the wall. The sign has Chinese characters on it. The man is wearing a white shirt and a red hat. He is holding a cell phone to his ear.", - "id": 6349 - }, - { - "image_path": "G:\\images\\combined\\0248fc7d3b176cdc.jpg", - "response": "A red and yellow bus with the number 35 on the side of it.", - "id": 6350 - }, - { - "image_path": "G:\\images\\combined\\024a0e844d9b864d.jpg", - "response": "The cheerleaders are performing on the field.", - "id": 6351 - }, - { - "image_path": "G:\\images\\combined\\024a8c17281ef932.jpg", - "response": "The image shows a baseball field with players on it. There is a crowd of people in the stands watching the game. A group of people are standing on the field, including a man in a white baseball uniform with the number 27 on the back. Another man in a black jacket is standing next to the baseball player. A little girl is standing in front of the players, holding a baseball bat. A baseball glove is also visible on the field.", - "id": 6352 - }, - { - "image_path": "G:\\images\\combined\\024b173546f0ffea.jpg", - "response": "The image shows a couple of men standing in a market, both of them wearing white lab coats. One of the men is holding a large fish and looking at it, while the other man is inspecting the fish as well. The market has a counter with several fish on it, and there are other people in the background. The market has a sign that says \"Homes Fish\" and there are some boxes and a chair in the scene.", - "id": 6353 - }, - { - "image_path": "G:\\images\\combined\\024b41e249214b47.jpg", - "response": "A silver and red airplane on display with people walking around it.", - "id": 6354 - }, - { - "image_path": "G:\\images\\combined\\024c8322c014be6d.jpg", - "response": "A couple of cars and a van are parked in a parking lot.", - "id": 6355 - }, - { - "image_path": "G:\\images\\combined\\024d939917989017.jpg", - "response": "A group of men standing on a baseball field.", - "id": 6356 - }, - { - "image_path": "G:\\images\\combined\\024db407764c448f.jpg", - "response": "A large passenger jet flying over a body of water.", - "id": 6357 - }, - { - "image_path": "G:\\images\\combined\\024dda03e7deb032.jpg", - "response": "A pitcher in a white baseball uniform with the number 30 on the back, wearing a blue hat and holding a baseball in one hand and a mitt in the other, standing on a pitcher's mound.", - "id": 6358 - }, - { - "image_path": "G:\\images\\combined\\024ec4982caa140d.jpg", - "response": "A woman with a name tag on her shirt is holding an orange BlackBerry phone.", - "id": 6359 - }, - { - "image_path": "G:\\images\\combined\\024f5844b4cd9641.jpg", - "response": "A white trash can overflowing with trash next to a restroom sign.", - "id": 6360 - }, - { - "image_path": "G:\\images\\combined\\02501_jpg.rf.426b7781705510e4af814cc4250ed217.jpg", - "response": "A man in a yellow hard hat pointing to a sign on a concrete wall that says \"\"\u6e05\u7406\u5de5\u5e8f\u6253\u7070\u6ce1\u5242\"\"", - "id": 6361 - }, - { - "image_path": "G:\\images\\combined\\025031d0e20d06e2.jpg", - "response": "A close up of a bar with three beer taps.", - "id": 6362 - }, - { - "image_path": "G:\\images\\combined\\02508_jpg.rf.2c091f5f7ede8654690e2de1cab57791.jpg", - "response": "A group of men standing in a room looking at a wall. Some of the men are wearing hard hats. One man is pointing to a spot on the wall. There are windows on the left wall and a door on the right. The walls are bare and the floor is unfinished.", - "id": 6363 - }, - { - "image_path": "G:\\images\\combined\\02508_jpg.rf.3b22966fb578a3d9719bfb349c87dd77.jpg", - "response": "A group of men in a room with red helmets on their head. One man is pointing at the wall while another man is talking to him. A window with white frame is also seen in the room.", - "id": 6364 - }, - { - "image_path": "G:\\images\\combined\\0250b83132397ad1.jpg", - "response": "The image features a blue and white sign in a station. The sign has arrows pointing to the left and right. The text on the sign is in a combination of English and Japanese. The word \"Kumamoto\" is written in English on the sign. The word \"\u718a\u672c\u5e02\" which is in Japanese and translates to \"City of Kumamoto\" is also written on the sign.", - "id": 6365 - }, - { - "image_path": "G:\\images\\combined\\02514_jpg.rf.195d36e546c8086d3226357890ab389b.jpg", - "response": "Two construction engineers wearing orange safety vest and white helmet are walking on the construction site. A yellow crane is lifting something on the left side of the image and a truck is on the right side of the image. A person is wearing a green shirt in the foreground of the image.", - "id": 6366 - }, - { - "image_path": "G:\\images\\combined\\02514_jpg.rf.e3327475b16564072791a0c706ce4ae9.jpg", - "response": "Two construction engineers in orange safety jackets and white helmets are walking on a construction site. In the background there is a yellow crane and a red and white truck.", - "id": 6367 - }, - { - "image_path": "G:\\images\\combined\\02516_jpg.rf.23d69482bef5b57cb9de8cb76508229f.jpg", - "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", - "id": 6368 - }, - { - "image_path": "G:\\images\\combined\\02516_jpg.rf.3be90344c41886039b1b91d719ebedbd.jpg", - "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", - "id": 6369 - }, - { - "image_path": "G:\\images\\combined\\02519_jpg.rf.0a0e0ca5b3092ec15a1f9ee43ceef70a.jpg", - "response": "The image shows three workers wearing safety vests and hard hats who are shoveling something into a cart. The scene is in black and white, except for the safety vests which are in orange, making the workers stand out. The street is being resurfaced and there are bags of asphalt next to the workers. The trees on the side of the street are filled with leaves and there is a stop sign in the background.", - "id": 6370 - }, - { - "image_path": "G:\\images\\combined\\02519_jpg.rf.8e03ba4a5aca890a1eb4215fde103519.jpg", - "response": "The image shows three workers wearing safety vests and hard hats who are shoveling debris into a wooden barrel on a cart. The workers are standing on a street corner near a pile of tree branches. The street has white stripes and there is a building in the background.", - "id": 6371 - }, - { - "image_path": "G:\\images\\combined\\02522b887c679db2.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 6372 - }, - { - "image_path": "G:\\images\\combined\\02522cb2c85633b7.jpg", - "response": "A large scoreboard in front of a stadium.", - "id": 6373 - }, - { - "image_path": "G:\\images\\combined\\02527_jpg.rf.8df2dd1c615dc9fc306a0acc596a4a06.jpg", - "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", - "id": 6374 - }, - { - "image_path": "G:\\images\\combined\\02527_jpg.rf.c4ae44f54672b411b15a4b6dde819cb4.jpg", - "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", - "id": 6375 - }, - { - "image_path": "G:\\images\\combined\\02528_jpg.rf.3a1462ebe26d1dc9d7e90f96e111d504.jpg", - "response": "a man standing in front of a body of water", - "id": 6376 - }, - { - "image_path": "G:\\images\\combined\\02528_jpg.rf.db7b5771428aefcafb3fbbe9834f9195.jpg", - "response": "a man in a grey shirt standing in front of a body of water", - "id": 6377 - }, - { - "image_path": "G:\\images\\combined\\02531_jpg.rf.03e9940be6dfbb5e107e5e4f8d99b9eb.jpg", - "response": "The image shows two workers on a building site, standing on a steel structure which appears to be the roof of a building. Both workers are wearing yellow hard hats and steel-blue work clothes. The one on the left is holding a tool in their right hand, which is hanging down, while the one on the right has one hand on a metal bar and the other hand in their pocket. The sky appears to be overcast.", - "id": 6378 - }, - { - "image_path": "G:\\images\\combined\\02531_jpg.rf.bec610db45bc7ee947cb3fbf64b86e1b.jpg", - "response": "A construction site with two workers on top of a building frame wearing yellow hard hats.", - "id": 6379 - }, - { - "image_path": "G:\\images\\combined\\02532343ebb3c888.jpg", - "response": "An orange truck is parked in a parking space.", - "id": 6380 - }, - { - "image_path": "G:\\images\\combined\\02533_jpg.rf.5025c5b276caeacb9f83b1f20273a667.jpg", - "response": "A construction worker in a yellow hard hat is holding a yellow power tool. He is standing in front of a building that is under construction. There are several cranes working on the building and a few people visible among the scaffolding. The sky is a clear blue and the sun is shining.", - "id": 6381 - }, - { - "image_path": "G:\\images\\combined\\02535_jpg.rf.85fd29b5382f16bc731cf2635d4a0ce4.jpg", - "response": "In the image there are three construction workers on a building site. Two of them are crouching down looking at something on the floor while the third one is standing up and holding a clipboard. They are all wearing high visibility clothing.", - "id": 6382 - }, - { - "image_path": "G:\\images\\combined\\02535_jpg.rf.ec82f7d8cb7cb3b26112f63869c33e33.jpg", - "response": "In the image there are three construction workers, one is holding a clipboard and two others are crouching down. They are all wearing neon yellow vests and blue hats. They are on a construction site with a blue sky in the background. In the foreground, there is a metal grid on the ground and a black bowl is placed on the left side.", - "id": 6383 - }, - { - "image_path": "G:\\images\\combined\\02540_jpg.rf.06a73881bfa5238e1576f77a2ee5aaf8.jpg", - "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", - "id": 6384 - }, - { - "image_path": "G:\\images\\combined\\02540_jpg.rf.7b8374d54effb076f5a3e4c4d2911c3f.jpg", - "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", - "id": 6385 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.398f81e0b0f47782ceb51639c99d5938.jpg", - "response": "A group of students walking in front of a building.", - "id": 6386 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5a73fff987186c8db99d8f8db872b14e.jpg", - "response": "A group of students walking in front of a building.", - "id": 6387 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5b4caf9358a7403c9cdbd5467805fb1c.jpg", - "response": "A group of students walking on a sidewalk in front of a building.", - "id": 6388 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.7e93218881764a18199b60619e532832.jpg", - "response": "A group of students walking on a sidewalk in front of a building.", - "id": 6389 - }, - { - "image_path": "G:\\images\\combined\\02544_jpg.rf.21b869ffcfe4f894bb5768137a268500.jpg", - "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is wearing a watch on his left hand. He is focusing on his work.", - "id": 6390 - }, - { - "image_path": "G:\\images\\combined\\02544_jpg.rf.4ea8beb24bc89a5dc3e691f53624c5a4.jpg", - "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is working on a pile of grey rocks.", - "id": 6391 - }, - { - "image_path": "G:\\images\\combined\\02549_jpg.rf.91bdc2c889685c1f36f93079f5d9b602.jpg", - "response": "A man wearing a red helmet and glasses standing in front of a blue building.", - "id": 6392 - }, - { - "image_path": "G:\\images\\combined\\02549_jpg.rf.df49cf04005a5ff69c67edc13ca77d16.jpg", - "response": "A man wearing a red helmet and glasses is standing in front of a blue building.", - "id": 6393 - }, - { - "image_path": "G:\\images\\combined\\0254a7b29774518e.jpg", - "response": "A box set of three books, The Lord of the Rings, The Two Towers, and The Return of the King, by J.R.R. Tolkien.", - "id": 6394 - }, - { - "image_path": "G:\\images\\combined\\025532b54c27c825.jpg", - "response": "An ice hockey rink is shown with fans in the stands.", - "id": 6395 - }, - { - "image_path": "G:\\images\\combined\\0255c5bbd833e241.jpg", - "response": "A person is holding a black cellphone in their hand. The phone has a keyboard on the screen. The date is 20101007 and the time is 22:00. There is a note on the phone that says \"\u663c\uff5e\u30de\uff5e\u305a\". The phone is running Android.", - "id": 6396 - }, - { - "image_path": "G:\\images\\combined\\0255c70e4b04f292.jpg", - "response": "A green train engine with a red stripe on the bottom.", - "id": 6397 - }, - { - "image_path": "G:\\images\\combined\\02562_jpg.rf.67a54880c662a98d2b0e1e82ca4603bd.jpg", - "response": "An architect wearing a hard hat and holding blueprints.", - "id": 6398 - }, - { - "image_path": "G:\\images\\combined\\02562_jpg.rf.acf146d01ce6b85412022a550268f673.jpg", - "response": "An architect sitting at a table with blueprints in front of him. He is wearing a yellow hard hat and a blue shirt with a tie.", - "id": 6399 - }, - { - "image_path": "G:\\images\\combined\\02564_jpg.rf.431eef3acbf26f392bdd60365ecb06d6.jpg", - "response": " A worker(271,190),(599,995) in a yellow hard hat(457,191),(573,305) stands in front of a building under construction.", - "id": 6400 - }, - { - "image_path": "G:\\images\\combined\\02564_jpg.rf.9f4be7e575fd97a8179cfa7cf9aed58a.jpg", - "response": " A worker(272,190),(599,995) at a construction site.", - "id": 6401 - }, - { - "image_path": "G:\\images\\combined\\02567_jpg.rf.85ad861803df9b33179aae6b4c0940d5.jpg", - "response": "a woman(46,418),(816,997) wearing a yellow hard hat(257,416),(541,597)", - "id": 6402 - }, - { - "image_path": "G:\\images\\combined\\02567_jpg.rf.b8d824d8e3d0004308505f63155ca9cd.jpg", - "response": "a woman(46,418),(817,997) wearing a yellow hard hat(255,417),(542,597)", - "id": 6403 - }, - { - "image_path": "G:\\images\\combined\\02569_jpg.rf.9ab631657a7969aa14724f05bea5a94a.jpg", - "response": "A man wearing a yellow shirt, brown gloves and a yellow helmet. He is holding a hammer and a piece of wood. He is smiling at the camera.", - "id": 6404 - }, - { - "image_path": "G:\\images\\combined\\02569_jpg.rf.b2a9c2a8f74da25e512cb3cb5d8d687c.jpg", - "response": "In the image there is a man wearing a yellow hard hat, grey t-shirt and brown overalls. He is holding a hammer and a piece of wood. The man is smiling at the camera and is wearing gloves. He also has a tool belt around his waist.", - "id": 6405 - }, - { - "image_path": "G:\\images\\combined\\0256d9a8ffd6affb.jpg", - "response": "A bottle of wine and a box of chocolates are sitting on a table.", - "id": 6406 - }, - { - "image_path": "G:\\images\\combined\\02571_jpg.rf.035933d08e6f7d02d0669c664519248f.jpg", - "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a beard. The worker on the right has a beard and a mustache and is holding a shovel with both hands. Between the two workers, there is a small blue wagon with the number 9 on it. In the background, there are two blue containers and a building under construction. The sky is a clear blue and the sun is shining brightly.", - "id": 6407 - }, - { - "image_path": "G:\\images\\combined\\02571_jpg.rf.3809b413a8acd64630cb1fcaade7abf8.jpg", - "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a yellow helmet with a black strap. The worker on the right is holding a shovel with both hands and has a yellow helmet with a red strap. They are both wearing black pants.", - "id": 6408 - }, - { - "image_path": "G:\\images\\combined\\02572870e212d14b.jpg", - "response": "A book opened to two pages. The first page is on the left and is written in German. The second page is on the right and has an illustration of a group of people in front of a tower. The text around the illustration is in German.", - "id": 6409 - }, - { - "image_path": "G:\\images\\combined\\02572_jpg.rf.c7614afd6340a577c67beca3414d1e89.jpg", - "response": "A man wearing a yellow hard hat is on a brown ladder. He is working on a wall that has brown marble panels. There is a piece of cardboard on the ground and a box on the right side of the wall.", - "id": 6410 - }, - { - "image_path": "G:\\images\\combined\\02572_jpg.rf.e4cf223c98f1d1a65ba9e2d19608c5ae.jpg", - "response": "A man wearing a yellow hard hat is on a step ladder. He is working on a wall that is covered in a red and brown material. There is a board with the number 5 taped to the wall. The room has a lot of debris on the floor.", - "id": 6411 - }, - { - "image_path": "G:\\images\\combined\\02578_jpg.rf.f3d07db28c6027f6f48720e42d7c8a7f.jpg", - "response": "An engineer or construction worker with a blue hard hat on. He is wearing a plaid shirt with his arms crossed and giving a thumbs up.", - "id": 6412 - }, - { - "image_path": "G:\\images\\combined\\0257eeda008582ab.jpg", - "response": "A stop sign with two green street signs above it.", - "id": 6413 - }, - { - "image_path": "G:\\images\\combined\\0257f9e3387efc1a.jpg", - "response": "A black BMW SUV with a California license plate that reads \"MS EXEC\" is parked in a parking lot. There are trees in the background and a few other cars parked around the black BMW.", - "id": 6414 - }, - { - "image_path": "G:\\images\\combined\\02580_jpg.rf.8e9731d4a3d8d277f07c9f99bf505b88.jpg", - "response": "An electrician with tools in his hand.", - "id": 6415 - }, - { - "image_path": "G:\\images\\combined\\02580_jpg.rf.c1021d9dcfb6b522ad75b4a8f1f508d8.jpg", - "response": "A man wearing a hard hat and safety glasses, holding a screwdriver and smiling at the camera.", - "id": 6416 - }, - { - "image_path": "G:\\images\\combined\\02581_jpg.rf.0f8c167abfbada0cbec69ec167ee9b54.jpg", - "response": "A man wearing a yellow hard hat and a orange vest.", - "id": 6417 - }, - { - "image_path": "G:\\images\\combined\\02581_jpg.rf.e8f5ec0bee29cecf6c6b80a11b30135f.jpg", - "response": "A man wearing a yellow hard hat and a orange vest.", - "id": 6418 - }, - { - "image_path": "G:\\images\\combined\\02586e00b621bfd3.jpg", - "response": "A book with a red cover that says \"My Grammar and I (or should that be 'me'?)\". The author is Caroline Taggart and J. A. Wines.", - "id": 6419 - }, - { - "image_path": "G:\\images\\combined\\02586_jpg.rf.319a6983501b5afeaee9bd2f622851f0.jpg", - "response": "A man wearing a grey and orange hat and grey and orange jacket.", - "id": 6420 - }, - { - "image_path": "G:\\images\\combined\\02586_jpg.rf.a85d2d29616cfe18e8aaa8f9c50c195f.jpg", - "response": "A construction worker is smiling at the camera. He is wearing a grey and orange hat and a grey and orange jacket. He is also wearing a green shirt. He is sitting in front of a wall made of wooden planks.", - "id": 6421 - }, - { - "image_path": "G:\\images\\combined\\02587_jpg.rf.6dc9aa563c9734a238b34af25db8e4e5.jpg", - "response": "An African American man wearing a white construction hat and holding a clipboard with a pen on it. He is smiling at the camera.", - "id": 6422 - }, - { - "image_path": "G:\\images\\combined\\02587_jpg.rf.e3fbbc99b61cfec17da20066d5fbb807.jpg", - "response": "An African American man wearing a white construction hat and a brown shirt is smiling while writing on a clipboard.", - "id": 6423 - }, - { - "image_path": "G:\\images\\combined\\02588_jpg.rf.759ec0bb9e589b53db3cf57abcafadbb.jpg", - "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", - "id": 6424 - }, - { - "image_path": "G:\\images\\combined\\02588_jpg.rf.d5b2c415d5368aa7a4211473c4bf107e.jpg", - "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", - "id": 6425 - }, - { - "image_path": "G:\\images\\combined\\02589_jpg.rf.03ebf2ca332c0102c021b8183278f8e6.jpg", - "response": "A engineer holding a ruler in front of a city.", - "id": 6426 - }, - { - "image_path": "G:\\images\\combined\\02590_jpg.rf.f5008c05b9f1733257a40d4982249c81.jpg", - "response": "The image depicts two workers sitting on a flight of stairs, both wearing blue work shirts and brown work boots. They are both smiling and one worker is on the left holding a drink in a red and white paper cup and the other worker is on the right holding a camera. They both have yellow hard hats on and the worker on the right is also wearing a watch. The background is a concrete wall and stairs.", - "id": 6427 - }, - { - "image_path": "G:\\images\\combined\\02593_jpg.rf.26fdfa1548e61d7fb5573036126affb9.jpg", - "response": "A man wearing a yellow hard hat and a yellow and white striped shirt is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white and red building.", - "id": 6428 - }, - { - "image_path": "G:\\images\\combined\\02593_jpg.rf.69de790f1278a0d1a05913e9f3be2e08.jpg", - "response": "A man wearing a yellow hard hat and a yellow shirt with black stripes is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white building with a red brick wall.", - "id": 6429 - }, - { - "image_path": "G:\\images\\combined\\02594_jpg.rf.96aef21b2973b39d93fdec62144a9e40.jpg", - "response": "Four contractors dressed in yellow and brown uniforms holding yellow tools.", - "id": 6430 - }, - { - "image_path": "G:\\images\\combined\\02594_jpg.rf.fe473d18046fe35a1e5e3b95063f8010.jpg", - "response": "Four contractors in yellow hard hats and brown overalls holding yellow tools.", - "id": 6431 - }, - { - "image_path": "G:\\images\\combined\\0259621e0cf41ab9.jpg", - "response": "A female model is holding an LG Smart TV Upgrade Kit in front of an LG Smart TV. The model is also holding a remote control. The TV is displaying various apps on its screen.", - "id": 6432 - }, - { - "image_path": "G:\\images\\combined\\02598_jpg.rf.4092307a84670de7cd1ef1324480ccd4.jpg", - "response": "In the image, there is a man pushing a wheelbarrow. The man is wearing a striped shirt and jeans. He is pushing the wheelbarrow on a cement walkway. The wheelbarrow is filled with some items. There is a bench in the background. The scene takes place in a park. The trees in the park are green and there is a path through the park.", - "id": 6433 - }, - { - "image_path": "G:\\images\\combined\\025a9031c6d69880.jpg", - "response": "A woman in a purple dress standing in front of a display with a television.", - "id": 6434 - }, - { - "image_path": "G:\\images\\combined\\025b003422e87033.jpg", - "response": "A white coffee mug with the ID logo on it, sitting on a table with some green and blue paper wrapping.", - "id": 6435 - }, - { - "image_path": "G:\\images\\combined\\025c30962ae5b499.jpg", - "response": "A white police car with the word police on the back.", - "id": 6436 - }, - { - "image_path": "G:\\images\\combined\\025c3424c807d220.jpg", - "response": "A white board with a pie chart written on it in french.", - "id": 6437 - }, - { - "image_path": "G:\\images\\combined\\025d205e2daeb2d8.jpg", - "response": "A red, white and purple SBS Transit bus is driving down the street.", - "id": 6438 - }, - { - "image_path": "G:\\images\\combined\\025f9021f50def62.jpg", - "response": "a busy city street at night with many people walking around", - "id": 6439 - }, - { - "image_path": "G:\\images\\combined\\02601_jpg.rf.d75d3c5255b4678587258866377a02d8.jpg", - "response": "A man sitting on a stool wearing a hard hat.", - "id": 6440 - }, - { - "image_path": "G:\\images\\combined\\02601_jpg.rf.df8202164119bd313bf5cdfa06a99e95.jpg", - "response": "A man sitting on a stool wearing a hard hat.", - "id": 6441 - }, - { - "image_path": "G:\\images\\combined\\02603_jpg.rf.1c1acda039ae8f3fbd02532d56b6fe63.jpg", - "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", - "id": 6442 - }, - { - "image_path": "G:\\images\\combined\\02603_jpg.rf.50eda3b4d3e14aeb00be55dcf5783d69.jpg", - "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", - "id": 6443 - }, - { - "image_path": "G:\\images\\combined\\02604_jpg.rf.85995fb9499a68276618d61d46514463.jpg", - "response": "The image shows two construction workers taking a break. They are sitting on a concrete block and having a conversation. Both are wearing blue work clothes and yellow helmets. The man on the left is also wearing work gloves. In front of them is a stainless steel thermos. The background is a wall of concrete blocks.", - "id": 6444 - }, - { - "image_path": "G:\\images\\combined\\02605_jpg.rf.205af0a83f79e4fc82dd1b9d0163d084.jpg", - "response": "A man wearing a blue shirt and a red hard hat is smiling at the camera. He is standing in front of a stack of bamboo poles and a red bag. The man's shirt has the letters \"SRA\" on it.", - "id": 6445 - }, - { - "image_path": "G:\\images\\combined\\026079aa58dc1990.jpg", - "response": "A bottle of beer is sitting on a ledge in front of a window.", - "id": 6446 - }, - { - "image_path": "G:\\images\\combined\\02607_jpg.rf.a240676fe568728188f3d71521e3130d.jpg", - "response": "A man wearing a white hard hat and a beige shirt, smiling at the camera.", - "id": 6447 - }, - { - "image_path": "G:\\images\\combined\\0260afa1f1b07207.jpg", - "response": "A woman in a pink and white outfit sitting on a rail.", - "id": 6448 - }, - { - "image_path": "G:\\images\\combined\\02611_jpg.rf.57adea469c5ea4439ef56e94f31a387b.jpg", - "response": "a group of people standing in a construction site", - "id": 6449 - }, - { - "image_path": "G:\\images\\combined\\026120baea2db777.jpg", - "response": "A person is holding a gold HTC phone in their hand.", - "id": 6450 - }, - { - "image_path": "G:\\images\\combined\\02617_jpg.rf.325cb3455256939bbb9d9f1592c3243b.jpg", - "response": "A group of men standing in front of a bulldozer at a construction site.", - "id": 6451 - }, - { - "image_path": "G:\\images\\combined\\02617_jpg.rf.fd3d8a60486bcfe3516f0d55bb42f0f6.jpg", - "response": "A group of men standing in front of a bulldozer at a construction site.", - "id": 6452 - }, - { - "image_path": "G:\\images\\combined\\02620f3115856977.jpg", - "response": "A car dashboard showing the time as 15:44 and the temperature as 30 degrees Celsius.", - "id": 6453 - }, - { - "image_path": "G:\\images\\combined\\02621_jpg.rf.be920818053c903a71e01c89f31c584b.jpg", - "response": "A bricklayer laying bricks on a roof of a house", - "id": 6454 - }, - { - "image_path": "G:\\images\\combined\\02621_jpg.rf.fc3472e45e85b4d13d9654c6b89568ef.jpg", - "response": "A construction worker in a yellow helmet is laying bricks on a roof.", - "id": 6455 - }, - { - "image_path": "G:\\images\\combined\\02623_jpg.rf.0aa118a9ac7a9bbd42378333d4759b35.jpg", - "response": "a man pushing a wheel barrel down a street", - "id": 6456 - }, - { - "image_path": "G:\\images\\combined\\02626_jpg.rf.0d619c9d11ed5f712cbb0de8376b7c9e.jpg", - "response": "The image shows a group of construction workers standing on a construction site. They are wearing yellow work vests and white helmets. The vests have reflective stripes for increased visibility. Some of the workers are holding tools, including a drill and a hammer. The site is located in a city street, with buildings in the background. The workers are of different ages and appear to be working together.", - "id": 6457 - }, - { - "image_path": "G:\\images\\combined\\02626_jpg.rf.1f2ed4c0c7e40001e3e555cde6b56022.jpg", - "response": "The image shows a group of construction workers on a building site. They are wearing yellow high visibility jackets and white hard hats. The jackets have reflective strips for increased visibility. The workers are standing in front of a building that is under construction. The building is made of brick and has a blue glass window. The workers are smiling at the camera and appear to be posing for the picture.", - "id": 6458 - }, - { - "image_path": "G:\\images\\combined\\02629_jpg.rf.658ff92673317b9a60f9cdfe86d55926.jpg", - "response": "In the image there are two construction workers sitting on cinder blocks in an unfinished building. They are both wearing hard hats and drinking from silver and red thermoses. The man on the left is wearing a blue shirt and blue pants with a yellow hard hat. The woman on the right is wearing a red helmet and a blue shirt and brown boots.", - "id": 6459 - }, - { - "image_path": "G:\\images\\combined\\02630_jpg.rf.b668e96db14b17cc7cd46876b9c744a2.jpg", - "response": "A man wearing a black shirt and a yellow hard hat.", - "id": 6460 - }, - { - "image_path": "G:\\images\\combined\\02633051ccace644.jpg", - "response": "A silver airplane is parked in a hanger.", - "id": 6461 - }, - { - "image_path": "G:\\images\\combined\\026356192b45e7a3.jpg", - "response": "A group of men in suits sitting at a table with a flag behind them.", - "id": 6462 - }, - { - "image_path": "G:\\images\\combined\\02636_jpg.rf.563e25991456fc180d756d939699ef8a.jpg", - "response": "A man wearing a yellow hard hat looking into a large silver structure.", - "id": 6463 - }, - { - "image_path": "G:\\images\\combined\\02636_jpg.rf.d423ada6681fbb56a68292f210b524b6.jpg", - "response": "A man wearing a yellow hard hat looking into a large silver structure.", - "id": 6464 - }, - { - "image_path": "G:\\images\\combined\\026384b9c1a6742f.jpg", - "response": "A person is holding an open book. The book is open to a page titled \"After the War\". The text on the page is black. The person is holding the book in their left hand.", - "id": 6465 - }, - { - "image_path": "G:\\images\\combined\\02638_jpg.rf.05696dabda738ee3632f7b63ff59b76f.jpg", - "response": "A man in a suit with a hard hat on, holding a blank board.", - "id": 6466 - }, - { - "image_path": "G:\\images\\combined\\02638_jpg.rf.48b2bfb3882165ee5c5319a2d2ad04ab.jpg", - "response": "A man in a suit with a hard hat on, holding a blank board.", - "id": 6467 - }, - { - "image_path": "G:\\images\\combined\\0263a03829194424.jpg", - "response": "A glass of tea sits on a table next to a book. The glass has a straw in it and there are ice cubes in the tea. The book is open to a picture of a lake. A lit candle is also on the table.", - "id": 6468 - }, - { - "image_path": "G:\\images\\combined\\0263bbdae7cd7509.jpg", - "response": "A women's soccer match with two teams playing against each other.", - "id": 6469 - }, - { - "image_path": "G:\\images\\combined\\02640c8265111f59.jpg", - "response": "A orange and black bus is driving down the street.", - "id": 6470 - }, - { - "image_path": "G:\\images\\combined\\02641_jpg.rf.3a08b3b72ea716b3bae5e81c9987cff5.jpg", - "response": "A man wearing a blue hard hat and a plaid shirt is talking on a cell phone.", - "id": 6471 - }, - { - "image_path": "G:\\images\\combined\\026430da02beed79.jpg", - "response": "The image shows a group of people sitting on a red double decker bus. There are two rows of seats, with the people seated on both the upper and lower decks. Some of the people are wearing ties, and there is a bouquet of flowers on one of the seats. The bus is on a city street, and there are buildings visible in the background.", - "id": 6472 - }, - { - "image_path": "G:\\images\\combined\\02644_jpg.rf.9d46f3b027eb07b2e365fb1af80fbf8f.jpg", - "response": "The image shows two construction workers building a high rise building. The workers are wearing red helmets and are focused on their work. The building has many floors and the workers are working on the first few floors. The building is surrounded by scaffolding. In the foreground, there is a white sign that says \"Fang.com\".", - "id": 6473 - }, - { - "image_path": "G:\\images\\combined\\02644_jpg.rf.b44bcc39f86cda341cd0308f6a44e700.jpg", - "response": "The image shows two construction workers at a building site. They are wearing hard hats and are working on a large concrete structure. The man on the left is crouching down and is holding a long piece of rebar. The man on the right is standing up and is holding a tool. The workers are the only people in the image and are the main focus. The background is blurred out and there is a fang.com logo in the bottom right corner.", - "id": 6474 - }, - { - "image_path": "G:\\images\\combined\\02646_jpg.rf.871224d27b35ffe03e3000051907694b.jpg", - "response": "A man wearing a red hard hat and holding a shovel is standing in front of a pile of dirt.", - "id": 6475 - }, - { - "image_path": "G:\\images\\combined\\02649_jpg.rf.64c0beaf6955792bc837a9eec90e3529.jpg", - "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", - "id": 6476 - }, - { - "image_path": "G:\\images\\combined\\02649_jpg.rf.85b8ed6bb708b8a66531d7b5be0fac8c.jpg", - "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", - "id": 6477 - }, - { - "image_path": "G:\\images\\combined\\0264b0b41cc90233.jpg", - "response": "A group of people are sitting around a table with laptops. There are two men sitting next to each other, one on the left and one on the right. In front of each person, there is a laptop. There are two cups on the table, one on the left and one on the right. A backpack is placed on the floor between the people on the left and the right.", - "id": 6478 - }, - { - "image_path": "G:\\images\\combined\\02650af029bb1edc.jpg", - "response": "A pitcher of filtered water with a cup next to it.", - "id": 6479 - }, - { - "image_path": "G:\\images\\combined\\02653_jpg.rf.d37316dd0a5a225f8d2f9ab5eab2891c.jpg", - "response": " A construction worker(115,32),(599,993) wearing a yellow hard hat(297,32),(480,227) and orange vest(198,383),(564,996) giving a thumbs(322,576),(367,678) up", - "id": 6480 - }, - { - "image_path": "G:\\images\\combined\\02653_jpg.rf.f87766380759068fa1d4d57ced0f0fcc.jpg", - "response": " A construction worker(114,33),(599,994) in a yellow vest(203,382),(564,997) and hard hat(296,32),(481,228) giving a thumbs(322,573),(365,672) up", - "id": 6481 - }, - { - "image_path": "G:\\images\\combined\\02654_jpg.rf.8c5bb4ca070182afe9587c1b1b44114c.jpg", - "response": "The image shows two workers standing under a blue sky with white clouds. They are both dressed in blue overalls and white helmets, and are holding a stick with a meter-long ruler on it. The two workers are located on the left side of the image. To the right of them, there is yellow tower crane and a red tower crane. The yellow crane has a hook on its arm, and the red crane has a yellow counterweight on its hook.", - "id": 6482 - }, - { - "image_path": "G:\\images\\combined\\02654_jpg.rf.f21ad55d477c87043c578421b400b307.jpg", - "response": "Two workers stand under a blue sky, both are wearing white hard hats and blue work clothes. They are both holding a long wooden stick. On the right, there are yellow cranes in the background.", - "id": 6483 - }, - { - "image_path": "G:\\images\\combined\\02655_jpg.rf.4d9a38a35f8270b4cb19a195569d6c5e.jpg", - "response": "A close up of a person wearing a yellow hard hat.", - "id": 6484 - }, - { - "image_path": "G:\\images\\combined\\02659495a67f99df.jpg", - "response": "A double decker bus is driving down the street.", - "id": 6485 - }, - { - "image_path": "G:\\images\\combined\\02659_jpg.rf.7c70dbe73c35aea1b621a945953b66a8.jpg", - "response": "An engineer in a blue hard hat and suit, writing on a clipboard.", - "id": 6486 - }, - { - "image_path": "G:\\images\\combined\\02659_jpg.rf.cbeee971ad9acd19f4b1b99a47567d12.jpg", - "response": "A man in a suit with a hard hat and clipboard.", - "id": 6487 - }, - { - "image_path": "G:\\images\\combined\\0265b9df37491412.jpg", - "response": "A basketball game is being played in an arena. The court is surrounded by many people, some of whom are sitting in chairs and others are standing. There are many more people outside the court, filling the arena. The arena has many entrances and exits, some of which are labeled with numbers. There is a large screen hanging from the ceiling, showing a video. Several people are walking around with cameras. Some people are wearing red, some are wearing blue, and some are wearing white.", - "id": 6488 - }, - { - "image_path": "G:\\images\\combined\\02663_jpg.rf.34afbbdcecfd49ee170b271f6f6d6d48.jpg", - "response": "A construction worker is working on a steel structure. He is wearing a blue shirt and gray pants. He is working on a large building with a green wall. The sky is white and there are no clouds.", - "id": 6489 - }, - { - "image_path": "G:\\images\\combined\\02664_jpg.rf.8370685322696afe97bc7bf5a92684d9.jpg", - "response": "A construction worker wearing a yellow hard hat and blue work clothes is placing a brick on a wall. The worker is holding a small trowel in his left hand. The sky is blue with a few white clouds. In the background, there are several buildings under construction.", - "id": 6490 - }, - { - "image_path": "G:\\images\\combined\\02664_jpg.rf.9270ad916810394c2812a5fc039403a2.jpg", - "response": "A bricklayer worker building a brick wall", - "id": 6491 - }, - { - "image_path": "G:\\images\\combined\\02665_jpg.rf.9bbc85ff3c623996b19788213c33203d.jpg", - "response": "A man is kneeling down and measuring something. He is wearing a blue shirt and jeans. He has a pen in one hand and a measuring tape in the other.", - "id": 6492 - }, - { - "image_path": "G:\\images\\combined\\02666_jpg.rf.382348b19af65a0abe2c1ad2587c597b.jpg", - "response": "A man wearing a yellow hard hat, blue and white checkered shirt, and a yellow tie. He is holding a blue clipboard with a red pen on it. He is wearing a yellow tool belt with multiple tools in it. He is also wearing blue jeans.", - "id": 6493 - }, - { - "image_path": "G:\\images\\combined\\02667_jpg.rf.6b13527b342ddb4e08ca3e3e045b4567.jpg", - "response": "A man with a yellow hard hat on is looking to his right. He has a goatee and is wearing a blue shirt with suspenders. He has his arms crossed in front of him.", - "id": 6494 - }, - { - "image_path": "G:\\images\\combined\\02669_jpg.rf.7eb6a6e6648f571bd63c4f1c41a516dd.jpg", - "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", - "id": 6495 - }, - { - "image_path": "G:\\images\\combined\\02669_jpg.rf.b7b1cf754390a42cb00eae188bd2af8b.jpg", - "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", - "id": 6496 - }, - { - "image_path": "G:\\images\\combined\\0266b91d58e2c16f.jpg", - "response": "A bus with an advertisement for underwear on the side is parked and letting people on.", - "id": 6497 - }, - { - "image_path": "G:\\images\\combined\\02674_jpg.rf.9d5b49b7de03263594fb7477b6988f5d.jpg", - "response": "a group of people standing in front of a construction site", - "id": 6498 - }, - { - "image_path": "G:\\images\\combined\\02674_jpg.rf.e546b5ed03f0f6bf59a14bc74d46d91e.jpg", - "response": "a group of people standing in front of a construction site", - "id": 6499 - }, - { - "image_path": "G:\\images\\combined\\02675_jpg.rf.bfe5acae7198a24b2acff5f6fd7004ad.jpg", - "response": "A group of men walking across a dirt road.", - "id": 6500 - }, - { - "image_path": "G:\\images\\combined\\02677_jpg.rf.11879219753956d9ef3fc866a8abf120.jpg", - "response": "A group of men standing on a construction site wearing hard hats", - "id": 6501 - }, - { - "image_path": "G:\\images\\combined\\02677_jpg.rf.273d78701d53c62e12bc1279e487721d.jpg", - "response": "A group of men standing on a construction site wearing hard hats", - "id": 6502 - }, - { - "image_path": "G:\\images\\combined\\02679_jpg.rf.4829c6e1d846910521e5d2ff94b8c62a.jpg", - "response": "A group of men standing around and talking to each other.", - "id": 6503 - }, - { - "image_path": "G:\\images\\combined\\02679_jpg.rf.87233e2f62a012674ab41f765bdcfd82.jpg", - "response": "The picture shows five men standing in a circle talking. They are all wearing coats. The man on the left is wearing a black coat with a white shirt and grey pants. The second man from the left is wearing a grey suit. The third man is wearing a black suit. The man on the right of the third man is wearing a black coat with a white shirt and blue jeans. The man standing to the far right is wearing a black coat with a red shirt and grey pants. There is a park in the background with a walking path.", - "id": 6504 - }, - { - "image_path": "G:\\images\\combined\\02680_jpg.rf.a36b9e9ceca546d8890cd44dbaf067ca.jpg", - "response": "A man in a red hard hat is standing in front of a pile of grey material.", - "id": 6505 - }, - { - "image_path": "G:\\images\\combined\\02686_jpg.rf.bfb3c3e04ff4514fcb517dcd89a57188.jpg", - "response": "The image shows a group of four men standing on a bank overlooking a body of water. The water appears green and murky, and there is a small bridge visible in the background. The men are standing on a dirt bank that appears to be a muddy brown color. They are dressed in a variety of outfits, with one man wearing a red polo shirt, another man wearing a striped shirt, a third man wearing a grey t-shirt, and the fourth man wearing a blue t-shirt. The fourth man is also wearing dark blue pants. The men are looking in different directions, possibly observing something in the water or considering the land beyond the water.", - "id": 6506 - }, - { - "image_path": "G:\\images\\combined\\02689368f8da2504.jpg", - "response": "A young girl wearing glasses and a white shirt sits at a table in a library. She is holding a small book and a stuffed animal. The table is surrounded by bookshelves full of books.", - "id": 6507 - }, - { - "image_path": "G:\\images\\combined\\02697_jpg.rf.27851d0a9228f7f5d7f9de334b0631a6.jpg", - "response": "A group of men standing in front of a large metal structure.", - "id": 6508 - }, - { - "image_path": "G:\\images\\combined\\02697_jpg.rf.ec8ddc155a613e2d84a0242ad7035c4a.jpg", - "response": "A group of men standing in front of a large blue object.", - "id": 6509 - }, - { - "image_path": "G:\\images\\combined\\0269b68e1093b0be.jpg", - "response": "A blue Porsche Turbo is parked on the side of the street.", - "id": 6510 - }, - { - "image_path": "G:\\images\\combined\\0269e1c4388337da.jpg", - "response": "A black and white image of the Doctor and his companions on the cover of the Radio Times. The Cybermen are behind them.", - "id": 6511 - }, - { - "image_path": "G:\\images\\combined\\0269f47d51233350.jpg", - "response": "A Nazarene Express bus is parked on the side of the street.", - "id": 6512 - }, - { - "image_path": "G:\\images\\combined\\026a2336a05b9329.jpg", - "response": "A full basketball stadium with fans watching the game.", - "id": 6513 - }, - { - "image_path": "G:\\images\\combined\\026a3b24a2b20e62.jpg", - "response": "A close up of a wrist watch with a black band and a blue face.", - "id": 6514 - }, - { - "image_path": "G:\\images\\combined\\026b958c8a6930b4.jpg", - "response": "A building with a sign that says \"Secret Stash\" on the second floor.", - "id": 6515 - }, - { - "image_path": "G:\\images\\combined\\026c107ce2aa9765.jpg", - "response": "A blue and white van with a hot dog painted on the side is parked in front of a building.", - "id": 6516 - }, - { - "image_path": "G:\\images\\combined\\026c6cf13a2c1c64.jpg", - "response": "A person is holding a green can of Carlsberg beer in their right hand. The beer can is green with a white logo of the brand. The logo has the brand name \"Carlsberg\" written in white with a white Danish flag on top of the letter \"i\". The word \"COPENHAGUE\" is written in white below the brand name. The beer can is made by Carlsberg, a Danish brewing company.", - "id": 6517 - }, - { - "image_path": "G:\\images\\combined\\026dd5d587ea6925.jpg", - "response": "A white, pink and blue bus is driving down the street.", - "id": 6518 - }, - { - "image_path": "G:\\images\\combined\\026dfa7371ee747c.jpg", - "response": "A book cover with a grey picture of a persons shoulder and the title Cutting Understanding and Overcoming Self-Mutilation", - "id": 6519 - }, - { - "image_path": "G:\\images\\combined\\0270054d69289c06.jpg", - "response": "In the image there are several cardboard boxes stacked on top of each other. The boxes are of varying sizes and are stacked in a pile. The largest box is on the bottom and is slightly to the left of center. Above it are two boxes, one slightly smaller and one slightly larger, stacked on top of each other. Above these two boxes is the smallest box, which is also stacked on top. The boxes are sitting on a white floor with a reflection of the boxes visible on the floor.", - "id": 6520 - }, - { - "image_path": "G:\\images\\combined\\02707_jpg.rf.eb710557e806502a174d3551ad65a57f.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing suits and standing around a pile of dirt. Some of the men are wearing hard hats. One man is wearing a red hard hat, and another is wearing a grey hard hat. One man is holding a bottle of water. The men are standing quite close to each other, and some of them are interacting, with one man pointing towards something to the left of the camera.", - "id": 6521 - }, - { - "image_path": "G:\\images\\combined\\0270a45dfa731b43.jpg", - "response": "A white and purple SBS Transit bus is on the street.", - "id": 6522 - }, - { - "image_path": "G:\\images\\combined\\02721a3c64904634.jpg", - "response": "a person holding a cell phone with the word environment on the screen", - "id": 6523 - }, - { - "image_path": "G:\\images\\combined\\027348743a9b8374.jpg", - "response": "A silver car parked in a parking space.", - "id": 6524 - }, - { - "image_path": "G:\\images\\combined\\02744e7b04286274.jpg", - "response": "A poster for a radio show called \"Informativos\" with a woman on it.", - "id": 6525 - }, - { - "image_path": "G:\\images\\combined\\0274563905d0f4aa.jpg", - "response": "A Rollei 35 camera on a green table with a black strap.", - "id": 6526 - }, - { - "image_path": "G:\\images\\combined\\02748cc67037e249.jpg", - "response": "A booth with a purple sign that says \"Brachs\" on it.", - "id": 6527 - }, - { - "image_path": "G:\\images\\combined\\02760ec937c1eb02.jpg", - "response": "A variety of alcohol bottles are lined up on a counter.", - "id": 6528 - }, - { - "image_path": "G:\\images\\combined\\02761_jpg.rf.1392f95fa638ed038d4894daaf49cf60.jpg", - "response": "The image shows a group of six men walking together. They are all wearing dark colored clothing and several of them are carrying items such as a backpack and a handbag. The two men at the front of the group are wearing blue and white shirts and the man second from the right is wearing a yellow safety vest. In the background, there is a white building and a large advertisement for MCE, a company based in Shanghai. The advertisement also mentions that the picture is taken in Anhui province.", - "id": 6529 - }, - { - "image_path": "G:\\images\\combined\\02766_jpg.rf.09a39ddc62c7e34afc5deb26c916a1ff.jpg", - "response": "Three men in hard hats standing in a construction site", - "id": 6530 - }, - { - "image_path": "G:\\images\\combined\\02766_jpg.rf.7bb795e9b53dfc715ebd58fc4ba4c6c3.jpg", - "response": "A group of three men standing in a construction site wearing hard hats.", - "id": 6531 - }, - { - "image_path": "G:\\images\\combined\\02769_jpg.rf.4eeb200a3e8e265749d7836bc740416f.jpg", - "response": "A group of men standing around each other talking.", - "id": 6532 - }, - { - "image_path": "G:\\images\\combined\\02769_jpg.rf.8009ef322c8f1f0261ec847ab751411f.jpg", - "response": "A group of men standing around a cement lot.", - "id": 6533 - }, - { - "image_path": "G:\\images\\combined\\02774c51d44bb364.jpg", - "response": "A small plane sitting on top of a runway.", - "id": 6534 - }, - { - "image_path": "G:\\images\\combined\\02786_jpg.rf.579ed41586104dbc7b0d8016855dd379.jpg", - "response": "a group of people standing around a construction site", - "id": 6535 - }, - { - "image_path": "G:\\images\\combined\\02786_jpg.rf.b925f15639b7db9d596ff107806f73ca.jpg", - "response": "A group of people standing around a construction site", - "id": 6536 - }, - { - "image_path": "G:\\images\\combined\\02792845d4c12e95.jpg", - "response": "A billboard for a radio station called \"La Preciosa\" featuring three people on it.", - "id": 6537 - }, - { - "image_path": "G:\\images\\combined\\02792f2ffa01db59.jpg", - "response": "a man and a child posing for a photo at an event", - "id": 6538 - }, - { - "image_path": "G:\\images\\combined\\0279382e07bed7de.jpg", - "response": "A couple of books are stacked on top of each other. The book on the top is \"Pretty Leslie\" by R.V. Cassill and has a white and purple cover. The book on the bottom is \"The Hour of Maximum Danger\" by James Barlow and has a blue cover.", - "id": 6539 - }, - { - "image_path": "G:\\images\\combined\\0279c6a2fece7d24.jpg", - "response": "a man in a green jacket is riding a bike down the street.", - "id": 6540 - }, - { - "image_path": "G:\\images\\combined\\027b733adc59cb1a.jpg", - "response": "a man in a gray baseball uniform with the number 30 on his shirt", - "id": 6541 - }, - { - "image_path": "G:\\images\\combined\\027d3d5f97ccbecc.jpg", - "response": "Three men standing next to each other, all wearing different colored shirts. One man is wearing a white baseball jersey with the word \"Rangers\" on it and the number 02. Another man is wearing a black shirt with white stripes. The third man is wearing a red shirt with a white collar. They are all smiling for the camera.", - "id": 6542 - }, - { - "image_path": "G:\\images\\combined\\027d8f6dc37cac0a.jpg", - "response": "A home office with a desk and a computer.", - "id": 6543 - }, - { - "image_path": "G:\\images\\combined\\027d9141b87916cf.jpg", - "response": "A close up of a person holding a cell phone.", - "id": 6544 - }, - { - "image_path": "G:\\images\\combined\\027e333ed1096be0.jpg", - "response": "A man wearing earbuds is holding a cell phone in front of a bookshelf.", - "id": 6545 - }, - { - "image_path": "G:\\images\\combined\\027e8de3cf98ccfd.jpg", - "response": "A bottle of wine with a red and white label that says Gigandas on it.", - "id": 6546 - }, - { - "image_path": "G:\\images\\combined\\027fda9e531356a8.jpg", - "response": "An HH-60 Pave Hawk helicopter in flight with its landing gear down.", - "id": 6547 - }, - { - "image_path": "G:\\images\\combined\\02809acd4a462cf6.jpg", - "response": "A man is holding a championship ring in his hands.", - "id": 6548 - }, - { - "image_path": "G:\\images\\combined\\02812f13dd561112.jpg", - "response": "A man is holding a small knife in his hand. He is wearing a red shirt and has a few bracelets on his arm. He is also wearing a watch on his wrist. On his other hand, he has a pen. He is sitting in a car.", - "id": 6549 - }, - { - "image_path": "G:\\images\\combined\\02816_jpg.rf.81f637c87817c7da0e899260f2063460.jpg", - "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a red and white flag and a blue and white flag. There is also a large building on the left side of the street.", - "id": 6550 - }, - { - "image_path": "G:\\images\\combined\\02816_jpg.rf.a063c5de583057f118e1399151b34dc7.jpg", - "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a fence and a building. There is also a red flag and a blue flag.", - "id": 6551 - }, - { - "image_path": "G:\\images\\combined\\0281cc4ddb266927.jpg", - "response": "A bottle of Suntory Whisky next to a glass filled with the drink, both sitting on a wooden table.", - "id": 6552 - }, - { - "image_path": "G:\\images\\combined\\02825_jpg.rf.5ecdda7ba63de0bb1ccac6251537de56.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 6553 - }, - { - "image_path": "G:\\images\\combined\\02825_jpg.rf.e7d18826f87e4cd5024e6a045f1b32ad.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. The men are wearing a variety of outfits, including a red shirt, a white shirt, a black shirt, a blue shirt, and a grey shirt. The man in the red shirt is holding a large stick, possibly a broom or a tool for construction. The men are all standing on a patch of dirt, and there are a few bricks and debris scattered around. The building in the background is made of steel beams and columns, and the roof is not yet finished.", - "id": 6554 - }, - { - "image_path": "G:\\images\\combined\\0282d4948723f25b.jpg", - "response": "The image features a white background with a silver container for a tooth whitening pen. The container is open, revealing the white tooth whitening pen inside. The pen is closed and sitting beside the open container.", - "id": 6555 - }, - { - "image_path": "G:\\images\\combined\\0282f8b1ea9e41ac.jpg", - "response": "A table topped with a pile of papers and a stack of books.", - "id": 6556 - }, - { - "image_path": "G:\\images\\combined\\0283104d36470fd6.jpg", - "response": "A white coffee cup with the Google logo printed on it.", - "id": 6557 - }, - { - "image_path": "G:\\images\\combined\\0283794849207391.jpg", - "response": "An open laptop computer is on a table. The screen displays a soccer game. The laptop is an acer brand.", - "id": 6558 - }, - { - "image_path": "G:\\images\\combined\\0283973e541919a6.jpg", - "response": "A large black and red sign that says Welcome to Oriole Park at Camden Yards.", - "id": 6559 - }, - { - "image_path": "G:\\images\\combined\\02844f7565b33e32.jpg", - "response": "A garage with a yellow step ladder, a black trash can and a white shelf.", - "id": 6560 - }, - { - "image_path": "G:\\images\\combined\\0284feb7eab6ac59.jpg", - "response": "A bottle of Hillrock Estate Distillery sits on a wooden table in front of a window. The bottle is rectangular and made of glass. It has a brown label with gold lettering and a gold emblem in the center. The emblem features a large H inside a circle. The bottle contains a golden liquid with a few small bubbles visible. The glass is reflecting the light from the window and the room.", - "id": 6561 - }, - { - "image_path": "G:\\images\\combined\\02850fa992fb6b1b.jpg", - "response": "A large red sign that says HENEGHAN on it.", - "id": 6562 - }, - { - "image_path": "G:\\images\\combined\\028536373f325d0a.jpg", - "response": "A fridge covered in many posters and papers.", - "id": 6563 - }, - { - "image_path": "G:\\images\\combined\\02853972cad856a9.jpg", - "response": "A variety of beers are lined up on a counter.", - "id": 6564 - }, - { - "image_path": "G:\\images\\combined\\0285dbc1db272d9c.jpg", - "response": "A pole with two traffic lights on it, one is red and the other is black. There is also a yellow sign on the pole.", - "id": 6565 - }, - { - "image_path": "G:\\images\\combined\\0286122f9a6ad175.jpg", - "response": "A baseball player wearing a white and red uniform runs across the field.", - "id": 6566 - }, - { - "image_path": "G:\\images\\combined\\028666689b226783.jpg", - "response": "A white board with writing on it.", - "id": 6567 - }, - { - "image_path": "G:\\images\\combined\\0287bb93eef219a8.jpg", - "response": "A white board with red writing on it.", - "id": 6568 - }, - { - "image_path": "G:\\images\\combined\\0287f0215690bfc2.jpg", - "response": "A close up of a wooden ruler set on a red surface. The ruler is a yellow color and has black numbers. The numbers are labeled in both inches and centimeters. The ruler is broken in the middle and folded. There is a smaller wooden ruler behind the larger one.", - "id": 6569 - }, - { - "image_path": "G:\\images\\combined\\02882201b7441ec8.jpg", - "response": "A Mr. malt container with a spigot sits next to a row of bottles of beer.", - "id": 6570 - }, - { - "image_path": "G:\\images\\combined\\02882ac168772e42.jpg", - "response": "A silver HTC phone sits on a wooden table next to a pair of red and white headphones.", - "id": 6571 - }, - { - "image_path": "G:\\images\\combined\\028a0a57f600a2bd.jpg", - "response": "A computer monitor is sitting on a desk with a map of Australia on the screen. The monitor is connected to a laptop with a USB cord. There is a red wall behind the desk and two lights hanging from the ceiling.", - "id": 6572 - }, - { - "image_path": "G:\\images\\combined\\028c34e9e29b6a2d.jpg", - "response": "A pitcher for the Storm Chasers winds up to throw a pitch.", - "id": 6573 - }, - { - "image_path": "G:\\images\\combined\\028c742176f8eb7c.jpg", - "response": "A red double decker bus is parked on the side of a street.", - "id": 6574 - }, - { - "image_path": "G:\\images\\combined\\028cafa2c0db6845.jpg", - "response": "A bottle of champagne with the top partially removed.", - "id": 6575 - }, - { - "image_path": "G:\\images\\combined\\028d6b73c92cbe09.jpg", - "response": "A vintage postcard of a garden with three sets of steps leading to a rose garden. There are three statues at the top of the steps.", - "id": 6576 - }, - { - "image_path": "G:\\images\\combined\\028dfaab7ad04b01.jpg", - "response": "A blue van with a white roof is parked in front of a house. The van is on the grass and is parked in front of a brick wall. The van is old and appears to be blue in color. The front of the van has a license plate that reads \"Z05335\". There is a bush next to the van and another bush behind it. The van is parked in front of a sidewalk.", - "id": 6577 - }, - { - "image_path": "G:\\images\\combined\\028ed391d78c2286.jpg", - "response": "A baseball player is giving another player a high five.", - "id": 6578 - }, - { - "image_path": "G:\\images\\combined\\028ee005563ec20d.jpg", - "response": "A person is holding a bottle of Loka.", - "id": 6579 - }, - { - "image_path": "G:\\images\\combined\\028f6a45f5b621d7.jpg", - "response": "In the image, a softball player is holding a bat and getting ready to swing at an incoming pitch. The player is wearing a blue and white uniform and is focused on the ball. There are other players and spectators in the background, watching the game.", - "id": 6580 - }, - { - "image_path": "G:\\images\\combined\\02918_jpg.rf.912ce559c412d06e38a598e429cf01a9.jpg", - "response": "A man wearing a yellow hard hat is using a measuring tape to measure a piece of wood. He is holding the tape at the bottom and looking down at the tape. The man is wearing a blue shirt and his sleeves are rolled up. He has a pen in his left hand. The background is white.", - "id": 6581 - }, - { - "image_path": "G:\\images\\combined\\0291e6b00e79072f.jpg", - "response": "A baseball game is in progress with several players on the field. The batter is swinging the bat and the catcher is holding a baseball glove. There are chairs and a bench in the background.", - "id": 6582 - }, - { - "image_path": "G:\\images\\combined\\02920_jpg.rf.7577893c4627218ec7f18ed81dfecd8f.jpg", - "response": "An Asian man is wearing a yellow construction hat and a red T-shirt. He is showing his thumbs up and has a wide smile on his face. He has a small beard and his hair is black. The background is white.", - "id": 6583 - }, - { - "image_path": "G:\\images\\combined\\02920_jpg.rf.b7a65291b32c78b6a27e5d20d149c8b1.jpg", - "response": "An engineer in a red shirt and a yellow helmet is smiling and showing a thumbs up.", - "id": 6584 - }, - { - "image_path": "G:\\images\\combined\\02925_jpg.rf.0a61bec7ebce5e69e2c07c1d08394c66.jpg", - "response": "\u56fe\u4e3a\u4e00\u4f4d\u8eab\u7a7f\u7ea2\u8272\u886c\u886b\u7684\u7537\u6027\u5de5\u4eba\uff0c\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u6301\u4e00\u4e2a\u7eb8\u76d2\u548c\u4e00\u4e2a\u5e73\u677f\u7535\u8111\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002\u80cc\u666f\u662f\u767d\u8272\u7684\u3002", - "id": 6585 - }, - { - "image_path": "G:\\images\\combined\\02925_jpg.rf.d5c6832d960a7f0fc0dbc11b1461062b.jpg", - "response": "a worker holding a box and a notepad, smiling at the camera", - "id": 6586 - }, - { - "image_path": "G:\\images\\combined\\02926_jpg.rf.11474ebe645fffc947130dc95b541142.jpg", - "response": "Two workers, one holding a tape measure and the other holding a clipboard, are talking about their work. They are both wearing hard hats and work clothes.", - "id": 6587 - }, - { - "image_path": "G:\\images\\combined\\02926_jpg.rf.a879bd1e8d8adc2644cacc853316356a.jpg", - "response": "two workers in yellow and blue and white hard hats", - "id": 6588 - }, - { - "image_path": "G:\\images\\combined\\02927_jpg.rf.0f3a70cad745546d4b33b3de87d7a651.jpg", - "response": "An engineer in a yellow hard hat and orange work jacket, standing in front of a blue sky. The engineer is holding a black tablet in his hands and appears to be looking into the distance. He is wearing a white glove on his left hand and has a white rag tucked into the belt of his jacket.", - "id": 6589 - }, - { - "image_path": "G:\\images\\combined\\02927_jpg.rf.b18e195a5bc48389274209345e5da1e9.jpg", - "response": "An engineer in a yellow hard hat and orange work jacket stands outdoors holding a digital tablet. He is also wearing a yellow vest and has a white rag and a pair of glasses tucked in his shirt. The sky is blue with a few wispy clouds.", - "id": 6590 - }, - { - "image_path": "G:\\images\\combined\\0292fc01cef92847.jpg", - "response": "A street scene with a bench, a red car, a yellow taxi cab, and a yellow car. There is also a building with a sign reading \"De Fazio Tiles & Stone\" on it.", - "id": 6591 - }, - { - "image_path": "G:\\images\\combined\\02935c97e1e9e0ae.jpg", - "response": "A box with a label on it that says MapQuest.", - "id": 6592 - }, - { - "image_path": "G:\\images\\combined\\0293f5c3f0650423.jpg", - "response": "a car with the license plate 73-61", - "id": 6593 - }, - { - "image_path": "G:\\images\\combined\\02956429c662e8d4.jpg", - "response": "A pitcher winds up to throw the ball during a baseball game.", - "id": 6594 - }, - { - "image_path": "G:\\images\\combined\\0295e9aa4e49ff29.jpg", - "response": "A table with a brown envelope and several pamphlets on top of it. The pamphlets are for a book sprint event called \"Class Acts\" and have a green and white color scheme. There is also a mouse on the table.", - "id": 6595 - }, - { - "image_path": "G:\\images\\combined\\029674eb10cd5d0c.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 6596 - }, - { - "image_path": "G:\\images\\combined\\0296cca6b25c743d.jpg", - "response": "A table with a bottle of Alagash Tripel Reserve Belgian Style Ale next to a wine glass filled with the beer.", - "id": 6597 - }, - { - "image_path": "G:\\images\\combined\\02993daa70eb6dfb.jpg", - "response": "The image features a yellow amphibious bus with a purple hippo painted on the side. The bus is filled with passengers and is traveling down a city street. There are several people visible in the scene, some of which are standing near the bus. The bus has a Canadian flag on top and is driving in a parking lot.", - "id": 6598 - }, - { - "image_path": "G:\\images\\combined\\029b0d1ffdd49ab4.jpg", - "response": "A black car with a California license plate that says \"ORKUT\" on it.", - "id": 6599 - }, - { - "image_path": "G:\\images\\combined\\029ca2b6d6904295.jpg", - "response": "The image shows a small, round, chrome-colored compact with a mirror on the bottom. The compact is next to a rectangular box with the words \"px Flawless Skin Total Protection Concealer UVABVSP 25\" written on it. The box is in a light blue color and has a silver lid. The mirror has the company logo \"px\" written on it. The entire scene is set on a white surface.", - "id": 6600 - }, - { - "image_path": "G:\\images\\combined\\029ca9b64cfc78a4.jpg", - "response": "a police car with the number 721 on the back", - "id": 6601 - }, - { - "image_path": "G:\\images\\combined\\029d242949f19a9b.jpg", - "response": "A postcard of the M.V. Sophie C. on Lake Winnipesaukee, New Hampshire. The boat is white and traveling on the water. There are several people on the boat, some of them are waving. There are also several American flags flying from the boat. The sky is blue with white clouds and there are mountains in the background.", - "id": 6602 - }, - { - "image_path": "G:\\images\\combined\\029df8184c76cbca.jpg", - "response": "A store shelf filled with various types of beer.", - "id": 6603 - }, - { - "image_path": "G:\\images\\combined\\029eeb15de850634.jpg", - "response": "A white and black clock face on a black background.", - "id": 6604 - }, - { - "image_path": "G:\\images\\combined\\029f2bc0cf04580f.jpg", - "response": "A very decorative French carriage clock with enamel decoration.", - "id": 6605 - }, - { - "image_path": "G:\\images\\combined\\029fc46844703970.jpg", - "response": "A yellow Correos mailbox sits on a brick sidewalk.", - "id": 6606 - }, - { - "image_path": "G:\\images\\combined\\02a0b26f3e94e09f.jpg", - "response": "Two men standing in front of a white board with mathematical equations written in red and blue.", - "id": 6607 - }, - { - "image_path": "G:\\images\\combined\\02a12552f70cad84.jpg", - "response": "In the image there is a silver and black keyboard. The top half of the keyboard is focused on and has the letters Q, W, E, R, T, Y, U, I, O, P, and B. The bottom half of the keyboard is out of focus and has the letters A, S, D, F, G, J, H, and the keys 1 and 2.", - "id": 6608 - }, - { - "image_path": "G:\\images\\combined\\02a18bfd36e57636.jpg", - "response": "A busy street with many cars and taxis driving down the road.", - "id": 6609 - }, - { - "image_path": "G:\\images\\combined\\02a1e353feffa178.jpg", - "response": "a man catching a baseball with a glove", - "id": 6610 - }, - { - "image_path": "G:\\images\\combined\\02a20e75172c4fbe.jpg", - "response": "An empty highway with a large billboard on the side of it.", - "id": 6611 - }, - { - "image_path": "G:\\images\\combined\\02a29f51bc070ec5.jpg", - "response": "A large building with a sign in front of it that says \"Strega Prime Italian Steakhouse\". The sign is red and black. The building has many windows. There is a flag on top of the building. The sky is blue with some clouds.", - "id": 6612 - }, - { - "image_path": "G:\\images\\combined\\02a2f958472477cb.jpg", - "response": "A green typewriter with a red wire coming out of the top.", - "id": 6613 - }, - { - "image_path": "G:\\images\\combined\\02a33b74d21cb306.jpg", - "response": "A busy city street with many people walking around and two red double decker buses.", - "id": 6614 - }, - { - "image_path": "G:\\images\\combined\\02a355fc0dcc89cb.jpg", - "response": "A red bus is driving down the street.", - "id": 6615 - }, - { - "image_path": "G:\\images\\combined\\02a3ba4c3886fe9a.jpg", - "response": "The image shows the back of a silver Honda with a vanity license plate that reads \"4DAHORD\". There is a football sticker on the left side of the plate and a \"T\"EF sticker on the right side. The license plate is from 2010. The image is taken at night, as indicated by the car's red brake lights.", - "id": 6616 - }, - { - "image_path": "G:\\images\\combined\\02a4653c7e00cdfd.jpg", - "response": "A No Trespassing sign is in front of a brick building.", - "id": 6617 - }, - { - "image_path": "G:\\images\\combined\\02a5a6ed1bbc4f56.jpg", - "response": "A white board with writing on it.", - "id": 6618 - }, - { - "image_path": "G:\\images\\combined\\02a657b3b00696a0.jpg", - "response": "An Air Force plane with a picture of a cartoon character on the side.", - "id": 6619 - }, - { - "image_path": "G:\\images\\combined\\02a7108d09788bca.jpg", - "response": "a person wearing a black shirt with a banana on it", - "id": 6620 - }, - { - "image_path": "G:\\images\\combined\\02a733bbafcebac6.jpg", - "response": "A white bus with black windows is driving down the street.", - "id": 6621 - }, - { - "image_path": "G:\\images\\combined\\02a7e69714512a28.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 6622 - }, - { - "image_path": "G:\\images\\combined\\02a950e4790377dc.jpg", - "response": "A helicopter is on display with people walking around it.", - "id": 6623 - }, - { - "image_path": "G:\\images\\combined\\02a961f6c1f9ed12.jpg", - "response": "A pole with multiple street signs on it.", - "id": 6624 - }, - { - "image_path": "G:\\images\\combined\\02a9ae215553fd35.jpg", - "response": "A large billboard is advertising an exhibit at the museum.", - "id": 6625 - }, - { - "image_path": "G:\\images\\combined\\02ab7fe6e854abb1.jpg", - "response": "A close up of a smartphone screen and camera.", - "id": 6626 - }, - { - "image_path": "G:\\images\\combined\\02ab886884cca694.jpg", - "response": "The image features a case of compact discs. There are two cases visible, one is for beatmania IIDX 21 SPADA ORIGINAL SOUNDTRACK VOL.2 and the other is for an unidentifiable title. The cases are sitting on a table.", - "id": 6627 - }, - { - "image_path": "G:\\images\\combined\\02ac2afb418ed3bb.jpg", - "response": "A blue and white bus is stopped at a bus stop with several people waiting to get on. One man is using a cane and talking on a cellphone. There are traffic lights in the background and multiple cars parked along the street.", - "id": 6628 - }, - { - "image_path": "G:\\images\\combined\\02acef174d2710fa.jpg", - "response": "A hand drawn sketch on white paper. The sketch is of an ear, a pencil, and a laughing Japanese child. The ear is drawn at the bottom left corner of the page. Above the ear is written \"Ear\". The pencil is written above the ear, with two plus signs above it. The pencil is drawn horizontally, with one end pointing to the ear and the other end pointing to the ear. The word \"Pencil\" is written below the pencil. Below the pencil is a child laughing. The child is drawn on the right side of the page. The child is wearing a hat and has a full head of hair. The child is laughing with their mouth wide open. The word \"Hee hee\" is written above the child. The word \"he\" is written below the child. The word \"Japanese\" is written to the right of the child. The word \"children\" is written to the right of \"Japanese\". The word \"laughing\" is written to the right of \"children\".", - "id": 6629 - }, - { - "image_path": "G:\\images\\combined\\02adaed82504f6a9.jpg", - "response": "A bottle of Katari 90 olive oil in a black box.", - "id": 6630 - }, - { - "image_path": "G:\\images\\combined\\02b01664b075d896.jpg", - "response": "a truck carrying a load of wood(433,404),(579,653)", - "id": 6631 - }, - { - "image_path": "G:\\images\\combined\\02b02edf2b10d764.jpg", - "response": "A white cell phone with a leather wrist strap.", - "id": 6632 - }, - { - "image_path": "G:\\images\\combined\\02b14d624da3775a.jpg", - "response": "The image shows two men standing in front of a small airplane on a tarmac. The airplane has a blue stripe on the bottom and the words \"Aer Arann\" are painted on the side. The men are both wearing dark ties and are dressed in business attire. One of the men is wearing a navy jacket. The tarmac has a yellow line painted on it. The sky is overcast and there are no other people visible in the image.", - "id": 6633 - }, - { - "image_path": "G:\\images\\combined\\02b249840073ee8b.jpg", - "response": "The image features a black keyboard with white lettering set on a white table. The keyboard has a USB connection and a cable is plugged into it. The cable is also black.", - "id": 6634 - }, - { - "image_path": "G:\\images\\combined\\02b29fb56e2b6a30.jpg", - "response": "A grey scale image with the words \"Position & Timing of Sex Really Matter In Getting Pregnant?\" at the top in bold black letters. Below is a picture of a man and a woman outlined in black with a red question mark on the woman's silhouette. The woman's silhouette is between the two words \"Sex\" and \"Position\" on the left scale and \"Timing\" and \"Position\" on the right scale.", - "id": 6635 - }, - { - "image_path": "G:\\images\\combined\\02b2daa20b00f5d3.jpg", - "response": "A red and white jet2 airplane on a runway.", - "id": 6636 - }, - { - "image_path": "G:\\images\\combined\\02b3d3b54f80a05b.jpg", - "response": "A pitcher in a black jersey and grey pants stands on the mound with his legs spread apart and his glove on. Another player stands in the background with his hands on his knees.", - "id": 6637 - }, - { - "image_path": "G:\\images\\combined\\02b4362934167953.jpg", - "response": "A white board with a lot of writing on it.", - "id": 6638 - }, - { - "image_path": "G:\\images\\combined\\02b43d2d16beca01.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 6639 - }, - { - "image_path": "G:\\images\\combined\\02b484f43777cd5b.jpg", - "response": "A bottle of Blue Moon Belgian White sits next to a glass filled with the beer. The bottle is blue and white with a white moon on the label. The glass is clear with a brown liquid inside. The liquid has a yellow tint and is sitting on a purple and white checkered tablecloth. The cloth is on top of a bed with a white comforter with orange and green animals on it.", - "id": 6640 - }, - { - "image_path": "G:\\images\\combined\\02b4c34bd52f1217.jpg", - "response": "A busy street with many buses on it.", - "id": 6641 - }, - { - "image_path": "G:\\images\\combined\\02b4c7a6208404dd.jpg", - "response": "A woman bending over to look for something in a pile of clothes.", - "id": 6642 - }, - { - "image_path": "G:\\images\\combined\\02b4cb383e9b46be.jpg", - "response": "A green double decker bus is driving down the road.", - "id": 6643 - }, - { - "image_path": "G:\\images\\combined\\02b737933a18bca9.jpg", - "response": "A close up of a silver coin on a blue background. The coin has a profile of a man on it.", - "id": 6644 - }, - { - "image_path": "G:\\images\\combined\\02b7ad89c803532f.jpg", - "response": "The image features a bottle of SK-II Facial Treatment Essence. The bottle is clear and frosted and has a silver cap. The label on the bottle is white with black writing. The words \"SK-II\" and \"TREACIAL TREATMENT ESSENCE\" are written in black on the label. The bottle is placed on a white, fuzzy surface that looks like a knitted material. The material is a off-white color and has a texture.", - "id": 6645 - }, - { - "image_path": "G:\\images\\combined\\02b8643f50ec027e.jpg", - "response": "A close up of a bottle of BOMBA next to a smaller bottle of BOMBA.", - "id": 6646 - }, - { - "image_path": "G:\\images\\combined\\02bb5655ce627b56.jpg", - "response": "A bottle of Old English 800 sits on top of a roof. The bottle is almost empty and has a yellow label. The roof is black and has some power lines on it. There are a few buildings in the background. The sky is cloudy and there are a few trees in the distance.", - "id": 6647 - }, - { - "image_path": "G:\\images\\combined\\02bc0f41c8d6d58b.jpg", - "response": "A street scene with a red traffic light and a one way sign. There are also street signs and a security camera.", - "id": 6648 - }, - { - "image_path": "G:\\images\\combined\\02bc2a6e1ecc0dc1.jpg", - "response": "A large orange pumpkin sitting on a metal counter.", - "id": 6649 - }, - { - "image_path": "G:\\images\\combined\\02bc8361b1beb582.jpg", - "response": "A hand holding a remote control with the words Luci Catering senza fili on the bottom.", - "id": 6650 - }, - { - "image_path": "G:\\images\\combined\\02bed5ecf6d38541.jpg", - "response": "a close up of a smart watch on someones wrist", - "id": 6651 - }, - { - "image_path": "G:\\images\\combined\\02bee02d2a42692b.jpg", - "response": "a store front with a neon sign that reads \"AFURI\"", - "id": 6652 - }, - { - "image_path": "G:\\images\\combined\\02beeabd93bf7bb3.jpg", - "response": "A city street filled with lots of traffic and people.", - "id": 6653 - }, - { - "image_path": "G:\\images\\combined\\02bf5694f86cb87e.jpg", - "response": "A group of people sitting around a table in a meeting room.", - "id": 6654 - }, - { - "image_path": "G:\\images\\combined\\02bf765b69e3025c.jpg", - "response": "A large sign for a pizza place that is located on the side of a street.", - "id": 6655 - }, - { - "image_path": "G:\\images\\combined\\02bfe750210e3160.jpg", - "response": "A bus is driving down the street in front of a subway.", - "id": 6656 - }, - { - "image_path": "G:\\images\\combined\\02c03383ee76d085.jpg", - "response": "A whiteboard with writing on it in purple and black marker.", - "id": 6657 - }, - { - "image_path": "G:\\images\\combined\\02c05d5fcae7b5d9.jpg", - "response": "A stop sign on a pole with a tree in the background.", - "id": 6658 - }, - { - "image_path": "G:\\images\\combined\\02c121df5aa181d6.jpg", - "response": "A box full of small bottles with labels such as 'Elixir to Induce Euphoria' and 'The Prophecy'.", - "id": 6659 - }, - { - "image_path": "G:\\images\\combined\\02c185403a032781.jpg", - "response": "A child bike trailer with a blue and red cover.", - "id": 6660 - }, - { - "image_path": "G:\\images\\combined\\02c331aed99d9664.jpg", - "response": "An open Quran on a table with a pen resting on top of it.", - "id": 6661 - }, - { - "image_path": "G:\\images\\combined\\02c3a7b6ea5023fd.jpg", - "response": "A double decker bus on a street.", - "id": 6662 - }, - { - "image_path": "G:\\images\\combined\\02c3ca715cba6581.jpg", - "response": "A stop sign is illuminated by a street light in a busy city street.", - "id": 6663 - }, - { - "image_path": "G:\\images\\combined\\02c40dfec361daa8.jpg", - "response": "A building with a sign on it that says Assembleia of Deus.", - "id": 6664 - }, - { - "image_path": "G:\\images\\combined\\02c5001a13c88a2b.jpg", - "response": "A book with black and white text on it.", - "id": 6665 - }, - { - "image_path": "G:\\images\\combined\\02c57f8fe233842b.jpg", - "response": "An airplane is flying through the air with a word underneath that says \"Brasil Uruguay Argentina Pluna\". There is also a word that says \"Vickers Viscount\" and another that says \"Rolls Royce\". There is a word that says \"Antigas Propagandas - Jornais 195\" at the bottom of the image.", - "id": 6666 - }, - { - "image_path": "G:\\images\\combined\\02c60b3d3d688cbe.jpg", - "response": "A woman with blonde hair crossing a busy street.", - "id": 6667 - }, - { - "image_path": "G:\\images\\combined\\02c6583086f36e09.jpg", - "response": "An airplane is parked on the runway and people are walking towards it.", - "id": 6668 - }, - { - "image_path": "G:\\images\\combined\\02c66032c7d1ea3c.jpg", - "response": "A sign for the Rehovot Police on a building.", - "id": 6669 - }, - { - "image_path": "G:\\images\\combined\\02c77d67182d2cc9.jpg", - "response": "A large screen television is mounted on the side of a building.", - "id": 6670 - }, - { - "image_path": "G:\\images\\combined\\02ca8849043fa980.jpg", - "response": "A group of people standing around a table.", - "id": 6671 - }, - { - "image_path": "G:\\images\\combined\\02cd54c9ac48d15e.jpg", - "response": "An orange and white train engine is on the tracks.", - "id": 6672 - }, - { - "image_path": "G:\\images\\combined\\02cd7a6aebe9c9f2.jpg", - "response": "A television set with a game on it.", - "id": 6673 - }, - { - "image_path": "G:\\images\\combined\\02ce657203b02e8f.jpg", - "response": "A book on a table with pictures of people on the cover.", - "id": 6674 - }, - { - "image_path": "G:\\images\\combined\\02d0ea328646fa44.jpg", - "response": "In the image, there are two people sitting on stools in front of a television. They appear to be playing a video game. The television is on a stand and is quite large. There is also a banner standing next to the television, advertising a digital media competition.", - "id": 6675 - }, - { - "image_path": "G:\\images\\combined\\02d47a9bf452e069.jpg", - "response": "The image shows a tiled floor with two trash cans placed on it. One of the trash cans is white and made of plastic, and the other is a clear trash can. There is also a red and white trash bag in a black container. The trash cans are positioned on the left side of the black container.", - "id": 6676 - }, - { - "image_path": "G:\\images\\combined\\02d4a7e636145016.jpg", - "response": "The image shows two soccer players from opposing teams playing on a grass field. One player is wearing a red jersey with the number 7 on the back and is about to kick a soccer ball. The other player is wearing a yellow jersey with the number 3 on the back and is running towards the ball. Both players are wearing blue shorts. The field is covered with short green grass.", - "id": 6677 - }, - { - "image_path": "G:\\images\\combined\\02d4ae02865321a3.jpg", - "response": "A chalkboard sign that says welcome to the deep space diner.", - "id": 6678 - }, - { - "image_path": "G:\\images\\combined\\02d56b2f2759bffa.jpg", - "response": "In the image, there is a person's arm and hand in the foreground. They are wearing a black watch and have a black X painted on their arm. The person is also wearing a black bracelet. In the background, there is a car with a sticker on the back window. The sticker says \"Chain X Crew\" in black and green lettering. There are also two yellow star stickers on the right side of the window.", - "id": 6679 - }, - { - "image_path": "G:\\images\\combined\\02d749e0aeeaf231.jpg", - "response": "A kitchen with a stove top and a microwave above it. There is a pot on the stove and a cutting board on the counter. There are also several bottles and a cup on the counter.", - "id": 6680 - }, - { - "image_path": "G:\\images\\combined\\02d7a6da7ce8e5b3.jpg", - "response": "An old plane is sitting on a runway.", - "id": 6681 - }, - { - "image_path": "G:\\images\\combined\\02d8ffcb77383a71.jpg", - "response": "A woman with long blonde hair holding a bag that says \"shop.com\" on it.", - "id": 6682 - }, - { - "image_path": "G:\\images\\combined\\02d94afde962b96b.jpg", - "response": "A corner store with a variety of items for sale.", - "id": 6683 - }, - { - "image_path": "G:\\images\\combined\\02da4492e27bfddf.jpg", - "response": "In the image there is a child wearing a black baseball uniform and a helmet. The child is running on a baseball field, likely just after hitting the ball. There is a baseball glove visible in the scene, held by the child. The child is wearing a black belt with their pants. The baseball field has a fence around it and a scoreboard in the background.", - "id": 6684 - }, - { - "image_path": "G:\\images\\combined\\02da7a42e971e3cb.jpg", - "response": "a person wearing a parachute is in the air", - "id": 6685 - }, - { - "image_path": "G:\\images\\combined\\02dc60e7b13e6dda.jpg", - "response": "A car dashboard with the speedometer lit up.", - "id": 6686 - }, - { - "image_path": "G:\\images\\combined\\02dd063a0e2fc93a.jpg", - "response": "A tall brick building with a large window and a clock on the front.", - "id": 6687 - }, - { - "image_path": "G:\\images\\combined\\02dd5502bbd9594e.jpg", - "response": "A military helicopter is parked on a grass field.", - "id": 6688 - }, - { - "image_path": "G:\\images\\combined\\02dd746f7ec51613.jpg", - "response": "A blue Swarovski box with a gold necklace inside. The necklace has a circular pendant with a gold chain. The Swarovski logo is printed on the box.", - "id": 6689 - }, - { - "image_path": "G:\\images\\combined\\02deb8d084d41040.jpg", - "response": "An US Airways plane is parked at the airport.", - "id": 6690 - }, - { - "image_path": "G:\\images\\combined\\02df4a726c2bb5a5.jpg", - "response": "A group of people standing around a display booth.", - "id": 6691 - }, - { - "image_path": "G:\\images\\combined\\02e2256dfd7baa8c.jpg", - "response": "A woman's left hand holding a bottle of nail polish. The nails are painted black and there is a gold design on the ring finger.", - "id": 6692 - }, - { - "image_path": "G:\\images\\combined\\02e263ba099084dd.jpg", - "response": "A red train engine pulling a long line of train cars behind it.", - "id": 6693 - }, - { - "image_path": "G:\\images\\combined\\02e2cee2e4492018.jpg", - "response": "A man wearing a red and white baseball uniform, red baseball cap, and holding a black baseball glove, is pitching a baseball on a baseball field.", - "id": 6694 - }, - { - "image_path": "G:\\images\\combined\\02e344f4a559753e.jpg", - "response": "The image shows a group of old, used spray cans sitting on a pile. The cans are in a storage area, and there is a plant nearby. The photo is in black and white, except for the cans, which are colored. There are several cans in the pile, including Minwax, Helmsman, and Minwax Spar Urethane. Some of the cans have writing on them, and they are all different sizes.", - "id": 6695 - }, - { - "image_path": "G:\\images\\combined\\02e504de213d8ce0.jpg", - "response": "The image features a Nokia mobile phone on a blue surface. The phone is black and has a sliding feature. The back of the phone is removed, revealing the battery. The battery has a bar code sticker on it. The phone is sitting on top of a blue Nokia book.", - "id": 6696 - }, - { - "image_path": "G:\\images\\combined\\02e5117cd995ace0.jpg", - "response": "A bookshelf filled with many books.", - "id": 6697 - }, - { - "image_path": "G:\\images\\combined\\02e523f39066742d.jpg", - "response": "A white bus with a design on the side is driving down the street.", - "id": 6698 - }, - { - "image_path": "G:\\images\\combined\\02e5d95eaf11adf4.jpg", - "response": "An old airplane is on display in a museum.", - "id": 6699 - }, - { - "image_path": "G:\\images\\combined\\02e647dcd238f3e4.jpg", - "response": "A blue and white train on a track near a brick wall.", - "id": 6700 - }, - { - "image_path": "G:\\images\\combined\\02e77c5d58d53c63.jpg", - "response": "A yellow school bus is parked in a fenced in lot.", - "id": 6701 - }, - { - "image_path": "G:\\images\\combined\\02eae24b8e4b123e.jpg", - "response": "A bottle of Chateau Montrose from 2004, with a red label and a crest on the front.", - "id": 6702 - }, - { - "image_path": "G:\\images\\combined\\02eb3145e144ea41.jpg", - "response": "Two men standing in front of a white board.", - "id": 6703 - }, - { - "image_path": "G:\\images\\combined\\02eb5fe34a148e72.jpg", - "response": "The image shows two men standing next to a small airplane in a grass field. The airplane is red and blue and has a propeller. The men are dressed in military uniforms and appear to be inspecting the plane. The sky above them is blue with a few clouds.", - "id": 6704 - }, - { - "image_path": "G:\\images\\combined\\02eb9a4f79385114.jpg", - "response": "A large scoreboard at a baseball stadium with advertising on it.", - "id": 6705 - }, - { - "image_path": "G:\\images\\combined\\02ebbf96964ec066.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 6706 - }, - { - "image_path": "G:\\images\\combined\\02ed611f88177ee4.jpg", - "response": "A pizza oven with five pizzas cooking inside.", - "id": 6707 - }, - { - "image_path": "G:\\images\\combined\\02ede042487fe63e.jpg", - "response": "A box of Senseo cappuccino pods.", - "id": 6708 - }, - { - "image_path": "G:\\images\\combined\\02ede779fbbe2a3c.jpg", - "response": "A blue bus is stopped at a bus stop on a city street. The bus has the number 135 on the front of it. There is a blue and white sign on a pole next to the bus that has a list of bus stops on it. Traffic lights are visible in the background.", - "id": 6709 - }, - { - "image_path": "G:\\images\\combined\\02ee9bdc60315c7f.jpg", - "response": "A bottle of Mac May Safety Ink in Royal Blue.", - "id": 6710 - }, - { - "image_path": "G:\\images\\combined\\02ef02744ed5e3cd.jpg", - "response": "A brick building with a cross on top and a clock on the front.", - "id": 6711 - }, - { - "image_path": "G:\\images\\combined\\02ef6de789b37127.jpg", - "response": "A red city bus is traveling down the street.", - "id": 6712 - }, - { - "image_path": "G:\\images\\combined\\02ef8957de6d8bec.jpg", - "response": "A bottle of beer with a castle on the label is sitting on a table.", - "id": 6713 - }, - { - "image_path": "G:\\images\\combined\\02ef95d1f8e547e2.jpg", - "response": "The image shows two women shopping in an indoor market, specifically a produce department. They are standing near a table filled with fresh vegetables, including carrots and broccoli. The women are smiling and appear to be enjoying their shopping experience.", - "id": 6714 - }, - { - "image_path": "G:\\images\\combined\\02f096a3d053e43a.jpg", - "response": "A desert landscape with a man standing in the center holding a guitar. The man is wearing a white suit and has a beard. There is a bird flying to the left of the man and a green dot to the right of him. There are also cacti scattered around the desert.", - "id": 6715 - }, - { - "image_path": "G:\\images\\combined\\02f0dafc31d4249c.jpg", - "response": "A kitchen counter with a blender on it and a brown bottle with a spout.", - "id": 6716 - }, - { - "image_path": "G:\\images\\combined\\02f4a30fe61c8723.jpg", - "response": "A yellow train engine with the number 250-004-9 on the front of it.", - "id": 6717 - }, - { - "image_path": "G:\\images\\combined\\02f4cf57ce42a92a.jpg", - "response": "A stack of books on a red metal cart.", - "id": 6718 - }, - { - "image_path": "G:\\images\\combined\\02f513fcadce36f2.jpg", - "response": "A red bookmark with a white pattern is attached to a card. The card has a red border and white text. The text is an anonymous quote about love. The quote is accompanied by a photo of a heart made out of beads. The heart is on a green envelope.", - "id": 6719 - }, - { - "image_path": "G:\\images\\combined\\02f537002d57a389.jpg", - "response": "A grey and gold trophy with a winged design on top.", - "id": 6720 - }, - { - "image_path": "G:\\images\\combined\\02f901f2d22b81c4.jpg", - "response": "A pallet stacked with boxes of speakers.", - "id": 6721 - }, - { - "image_path": "G:\\images\\combined\\02f996661886cfe0.jpg", - "response": "A sign that is titled Louise F. cosca Regional Park. It has a drawing of a person on the right side of the sign. It has pictures of spear points and a school house. It also has a timeline of the park.", - "id": 6722 - }, - { - "image_path": "G:\\images\\combined\\02fa299740ebc5ab.jpg", - "response": "A bus is parked in a parking lot next to other buses.", - "id": 6723 - }, - { - "image_path": "G:\\images\\combined\\02fae2fbfa99a8f8.jpg", - "response": "A telephone pole with two flyers taped to it.", - "id": 6724 - }, - { - "image_path": "G:\\images\\combined\\02fc7a8780c79816.jpg", - "response": "A bottle of Parbo Bier sits next to a glass filled with beer.", - "id": 6725 - }, - { - "image_path": "G:\\images\\combined\\02fcd378b3b3b023.jpg", - "response": "A bus on the street with the words \"Have a nice day\" on the marquee.", - "id": 6726 - }, - { - "image_path": "G:\\images\\combined\\02fce391c03c8c47.jpg", - "response": "A person holding a pair of glasses and a thermometer.", - "id": 6727 - }, - { - "image_path": "G:\\images\\combined\\02fd13b7790dfc2b.jpg", - "response": "A vintage postcard of Frog Pond in Boston Common. People are sitting on benches around the pond.", - "id": 6728 - }, - { - "image_path": "G:\\images\\combined\\02fd9a3eda5c8207.jpg", - "response": "A rusted green fire hydrant sitting on the sidewalk.", - "id": 6729 - }, - { - "image_path": "G:\\images\\combined\\02fe7f5371ff5283.jpg", - "response": "The image shows a baseball game in progress on a field with a green grass and brown dirt infield. There are two baseball players wearing orange and gray uniforms standing on the field, one holding a mitt and the other standing behind him. The players are wearing black hats and are engaged in conversation. There are several other people on the field, including a coach and other players, and some people in the background watching the game.", - "id": 6730 - }, - { - "image_path": "G:\\images\\combined\\02fe8b46e1e70ed1.jpg", - "response": "A pair of televisions are on display, one on the left and one on the right. They are both turned on and have a blue screen with a few dots on it. There is a white wall with the words W.A.V.L. Xtion in orange and black. Underneath the wall, there is a shelf with a black box on it and a sign with the same words as the wall. There is also a remote control on the shelf.", - "id": 6731 - }, - { - "image_path": "G:\\images\\combined\\02I0NSL4O8BH_jpg.rf.07e935dc03cfaaa7ad64e6a8a6a23035.jpg", - "response": "A large forklift parked in a parking lot.", - "id": 6732 - }, - { - "image_path": "G:\\images\\combined\\0300066daef7157a.jpg", - "response": "A small white and red airplane on a runway.", - "id": 6733 - }, - { - "image_path": "G:\\images\\combined\\030068f6dae1ffcd.jpg", - "response": "A woman in a blue and white dress is kneeling down in front of a large television. She is posing with her hand on the TV, which is a few inches above her knee. The television is a wide screen model and is displaying a picture of flowers. To the right of the TV, there is a wall of posters advertising other televisions.", - "id": 6734 - }, - { - "image_path": "G:\\images\\combined\\0300865f884b591e.jpg", - "response": "The image shows a basketball court with several people standing on it. There are two men wearing Golden State Warriors shirts standing next to each other, and a man in a suit and tie standing behind them. The suit is black with a tie that is also black. The two players are wearing blue and white uniforms. The court has yellow lines painted on it.", - "id": 6735 - }, - { - "image_path": "G:\\images\\combined\\03010_jpg.rf.6031f447edbc6c2d6f39c1f1d9e7ec90.jpg", - "response": "Engineer in hard hat and safety glasses working on laptop at construction site.", - "id": 6736 - }, - { - "image_path": "G:\\images\\combined\\03010_jpg.rf.62668ff50a5b97d6fe1d2873721cc200.jpg", - "response": "A man in a hard hat and safety glasses sitting in front of a laptop computer.", - "id": 6737 - }, - { - "image_path": "G:\\images\\combined\\03011_jpg.rf.1fc91ec41540d739ba62e197cceea3c6.jpg", - "response": "A man in a hard hat and safety vest is holding a laptop computer. He is standing in front of a construction site and looking off to the side. The photo is taken at night.", - "id": 6738 - }, - { - "image_path": "G:\\images\\combined\\0301456f9fa828a7.jpg", - "response": "A large movie poster for the film Dr. XS is on the wall.", - "id": 6739 - }, - { - "image_path": "G:\\images\\combined\\030216e408833aca.jpg", - "response": "A large water tower with the word \"Estevan\" written on it.", - "id": 6740 - }, - { - "image_path": "G:\\images\\combined\\030274af7c34a641.jpg", - "response": "A black Range Rover Sport with a European license plate.", - "id": 6741 - }, - { - "image_path": "G:\\images\\combined\\03031fa84a2806a3.jpg", - "response": "a man wearing a red and yellow baseball hat", - "id": 6742 - }, - { - "image_path": "G:\\images\\combined\\03031_jpg.rf.c8fc6299d74bbe43a1779f8cc8af93ec.jpg", - "response": "A police officer standing next to a red car talking to a woman who is in the driver's seat.", - "id": 6743 - }, - { - "image_path": "G:\\images\\combined\\0303338e5f422be5.jpg", - "response": "A pile of coins on a white counter.", - "id": 6744 - }, - { - "image_path": "G:\\images\\combined\\03043_jpg.rf.6f5bf82008bd09ced0c60bdcaaf0a2d6.jpg", - "response": "Engineer in a construction site at night using laptop computer.", - "id": 6745 - }, - { - "image_path": "G:\\images\\combined\\0304f8e6c0b34e6b.jpg", - "response": "A black and white photo of a bus parked in a parking lot.", - "id": 6746 - }, - { - "image_path": "G:\\images\\combined\\0305ad668c4037d1.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 6747 - }, - { - "image_path": "G:\\images\\combined\\03060_jpg.rf.99f085154ab11f7439881b6084d74aac.jpg", - "response": "A man wearing a white hard hat is standing on a street. He is wearing a dark green jacket and a white shirt. He has a white and brown scarf around his neck. The street is dark and there are blurred lights in the background.", - "id": 6748 - }, - { - "image_path": "G:\\images\\combined\\03060_jpg.rf.e215be40fb14be23c766c2e718f37aec.jpg", - "response": "A man wearing a white hard hat and a green jacket.", - "id": 6749 - }, - { - "image_path": "G:\\images\\combined\\03066_jpg.rf.90bbd621e4fb018eec627d1ae4adcae5.jpg", - "response": "4 men are standing next to a rail. They are all wearing leather or vests and have their arms around each other. The man on the left is wearing a yellow and green safety vest, a yellow hard hat, and has a large tattoo on his right bicep. The man in the middle is bald and has a large tattoo on his right bicep. The man to the right of the middle man has a tattoo on his left bicep and is wearing a black leather vest. The man on the far right is not wearing a vest but has a tattoo on his right bicep. They are all smiling at the camera.", - "id": 6750 - }, - { - "image_path": "G:\\images\\combined\\03070b053c750a30.jpg", - "response": "A bottle of beer next to a glass filled with beer.", - "id": 6751 - }, - { - "image_path": "G:\\images\\combined\\03079_jpg.rf.78433ed1a7fd7638cfdbc6dac0d9a4ce.jpg", - "response": "A construction worker holding a sign in the dark.", - "id": 6752 - }, - { - "image_path": "G:\\images\\combined\\0307ba75a55f7893.jpg", - "response": "A street sign warning of bumps in the road ahead.", - "id": 6753 - }, - { - "image_path": "G:\\images\\combined\\03087_jpg.rf.6d6a3533a725817f14542ec686229e46.jpg", - "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow helmet. The site is under construction with many metal frameworks in place. There are also many construction cranes working on the site. The sky is blue with some clouds and there is a mountain in the background. The worker is wearing a yellow t-shirt with a logo on the front.", - "id": 6754 - }, - { - "image_path": "G:\\images\\combined\\03087_jpg.rf.dfac4bb66358e5daeb8af5fff0a6812e.jpg", - "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow t-shirt and a yellow hard hat. He is standing on a platform that has rebar reinforceing it. In the distance there are tall buildings under construction. The sky is blue with a few clouds. There are two large cranes operating in the background.", - "id": 6755 - }, - { - "image_path": "G:\\images\\combined\\03094f5a2043b4a5.jpg", - "response": "A red brick wall with a sign that says Holmans.", - "id": 6756 - }, - { - "image_path": "G:\\images\\combined\\0309830827e1e51b.jpg", - "response": "A diner with a neon sign that says \"Lori's Diner\" on the side of the building.", - "id": 6757 - }, - { - "image_path": "G:\\images\\combined\\03098ea356ef4950.jpg", - "response": "A green and white bus parked on the street.", - "id": 6758 - }, - { - "image_path": "G:\\images\\combined\\0309d667a65c0747.jpg", - "response": "A man standing in front of a chalkboard and a projection screen.", - "id": 6759 - }, - { - "image_path": "G:\\images\\combined\\0309e9e7c1d04df5.jpg", - "response": "A man sitting at a table with three open laptops in front of him.", - "id": 6760 - }, - { - "image_path": "G:\\images\\combined\\030aac31ce3ebe66.jpg", - "response": "A yellow van with a ladder on top of it is parked on the side of a street. The van has a white top and is parked near a brick building. There are several cars parked or driving around the area. One car is parked in front of the yellow van, while another car is driving behind it. There are also two bicycles parked on the sidewalk near the yellow van.", - "id": 6761 - }, - { - "image_path": "G:\\images\\combined\\030b01aab1cf161b.jpg", - "response": "In the image there is a green table with a poker combination of cards on it. The poker hand consists of five cards and it is a Royal flush with hearts. Lying next to the cards are black gambling chips and two red dice.", - "id": 6762 - }, - { - "image_path": "G:\\images\\combined\\030b9726b02097ee.jpg", - "response": "The image shows the rear end of a silver car. The car has Audi branding on the trunk and a license plate that says \"B\". The brake lights are red and there is a reflector on the right side of the trunk. The sky is blue with clouds and the trees have no leaves.", - "id": 6763 - }, - { - "image_path": "G:\\images\\combined\\030bbe9a52ce9d16.jpg", - "response": "A young boy wearing a black and white baseball uniform and a baseball cap stands in a grassy field.", - "id": 6764 - }, - { - "image_path": "G:\\images\\combined\\030c06da5cafb7db.jpg", - "response": "a baseball player wearing a black and grey uniform standing on the field", - "id": 6765 - }, - { - "image_path": "G:\\images\\combined\\030c3d91ceaac1b9.jpg", - "response": "A green and yellow double decker bus is on the sand.", - "id": 6766 - }, - { - "image_path": "G:\\images\\combined\\030cc39bb84dd742.jpg", - "response": "On the cover of Investigate, a student named Ashlee Brown is holding a book titled \"The Complete Sherlock Holmes.\" She is sitting on a couch in front of a bookshelf filled with books. She is wearing a white shirt and a brown cardigan. Her nails are painted a bright red.", - "id": 6767 - }, - { - "image_path": "G:\\images\\combined\\030dc79b28b9c9b9.jpg", - "response": "A close up of a coin that is showing the back side.", - "id": 6768 - }, - { - "image_path": "G:\\images\\combined\\030fd24af593dcc8.jpg", - "response": "A large blue billboard that says \"Rent Me\" on it.", - "id": 6769 - }, - { - "image_path": "G:\\images\\combined\\0310822ffb3699d4.jpg", - "response": "An open book with many fonts and a woodcut illustration of people.", - "id": 6770 - }, - { - "image_path": "G:\\images\\combined\\03108_jpg.rf.49dcbf773dd2734017ceed1a0a3be568.jpg", - "response": "A man wearing a safety vest and a hard hat stands next to a stop sign.", - "id": 6771 - }, - { - "image_path": "G:\\images\\combined\\03108_jpg.rf.7ce50b1689871e79561b8a6290db5b89.jpg", - "response": "A man wearing a safety vest and a hard hat is standing on a street corner. He is holding a stop sign and leaning against a wooden pole. There is a traffic cone behind him. The street is dark and there are cars in the background.", - "id": 6772 - }, - { - "image_path": "G:\\images\\combined\\03112_jpg.rf.1eebdaaa6687f7dc8fa362a72fbcadf6.jpg", - "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", - "id": 6773 - }, - { - "image_path": "G:\\images\\combined\\03112_jpg.rf.e7650e58d15bd9abf45a08665104155a.jpg", - "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", - "id": 6774 - }, - { - "image_path": "G:\\images\\combined\\03118_jpg.rf.e1bfbad137be8bf20a641131026ae87c.jpg", - "response": "A man wearing a yellow safety helmet and a yellow safety vest.", - "id": 6775 - }, - { - "image_path": "G:\\images\\combined\\0311968a1b750ede.jpg", - "response": "A book stall with a blue sign that says \"Station Bookstall\" on it.", - "id": 6776 - }, - { - "image_path": "G:\\images\\combined\\03126_jpg.rf.0b11972c6c6df041c5f143a58d0b3f16.jpg", - "response": "A woman wearing a orange safety vest and a white hard hat.", - "id": 6777 - }, - { - "image_path": "G:\\images\\combined\\03126_jpg.rf.7b0840b352093778126e47cd174cea40.jpg", - "response": "A woman wearing a orange safety vest and a white hard hat is looking over a wall. She is leaning against a wooden ladder.", - "id": 6778 - }, - { - "image_path": "G:\\images\\combined\\03162cabd3033e19.jpg", - "response": "A red and white Air Berlin plane is taking off from the runway.", - "id": 6779 - }, - { - "image_path": "G:\\images\\combined\\0316e93df69fbcab.jpg", - "response": "A shelf with many copies of the book \"Origin of Species\" by Charles Darwin.", - "id": 6780 - }, - { - "image_path": "G:\\images\\combined\\03170e6f23d22c9f.jpg", - "response": "A silver Rolex watch with diamonds on the bezel and the band.", - "id": 6781 - }, - { - "image_path": "G:\\images\\combined\\03171556037898c8.jpg", - "response": "A gold can of beer with a red and white sticker on it.", - "id": 6782 - }, - { - "image_path": "G:\\images\\combined\\031733473703e84a.jpg", - "response": "A train station clock showing the time as 12:59.", - "id": 6783 - }, - { - "image_path": "G:\\images\\combined\\03185a9dbe007a8f.jpg", - "response": "a black and white clock hanging from a wire attached to a building", - "id": 6784 - }, - { - "image_path": "G:\\images\\combined\\0318df6aea131e32.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 6785 - }, - { - "image_path": "G:\\images\\combined\\031bcfee5e18ebd9.jpg", - "response": "A woman is holding a cell phone in her right hand and standing next to six cell phones.", - "id": 6786 - }, - { - "image_path": "G:\\images\\combined\\031dae4a52cf8aa1.jpg", - "response": "A yellow license plate that says ALASKA on it.", - "id": 6787 - }, - { - "image_path": "G:\\images\\combined\\031e5a591a099bb1.jpg", - "response": "A room with a desk and computer on it.", - "id": 6788 - }, - { - "image_path": "G:\\images\\combined\\031ec9949229c38e.jpg", - "response": "A very large ship in the water with the word HANJIN on the side of it.", - "id": 6789 - }, - { - "image_path": "G:\\images\\combined\\031eed019baea941.jpg", - "response": "A police officer is sitting on a motorcycle on a busy city street. There are many cars and people around the officer. Some of the cars are taxis. The street is lined with buildings and there are traffic lights along the way.", - "id": 6790 - }, - { - "image_path": "G:\\images\\combined\\031ef5cac2530a70.jpg", - "response": "A book cover with a yellow border and black background. The title \"Checkpoint\" is written in white with a yellow font. There is a red building with three arches in the background. There are three people in the image, one holding a gun and taking the money from two others.", - "id": 6791 - }, - { - "image_path": "G:\\images\\combined\\031f3a2114b2c971.jpg", - "response": "A can of Suntory Ice Coffee Boss sits on a counter.", - "id": 6792 - }, - { - "image_path": "G:\\images\\combined\\0320299003ff65fb.jpg", - "response": "a group of people standing around a helicopter", - "id": 6793 - }, - { - "image_path": "G:\\images\\combined\\0322f8a71414a329.jpg", - "response": "A bottle of Mackmyra Whisky sitting next to a glass filled with the dark beer.", - "id": 6794 - }, - { - "image_path": "G:\\images\\combined\\032301767de33543.jpg", - "response": "A person is holding a black Samsung smartphone in their hand. The phone is open and showing text on the screen. The person is also holding a pen in their other hand.", - "id": 6795 - }, - { - "image_path": "G:\\images\\combined\\0323506fd3178dc8.jpg", - "response": "A keyboard with a red enter key that says mac OS on it.", - "id": 6796 - }, - { - "image_path": "G:\\images\\combined\\03235d26a98bcb0f.jpg", - "response": "A red, white and black motorcycle is parked on the street.", - "id": 6797 - }, - { - "image_path": "G:\\images\\combined\\0324e472fdbc21d2.jpg", - "response": "A British Airways airplane flying in the sky.", - "id": 6798 - }, - { - "image_path": "G:\\images\\combined\\03254_jpg.rf.0b3f603c0c138a95018b4f18f287a2ea.jpg", - "response": "A group of men standing around each other.", - "id": 6799 - }, - { - "image_path": "G:\\images\\combined\\03254_jpg.rf.e6b5354062a131462948ff0a3b7c66ec.jpg", - "response": "A group of people standing around each other", - "id": 6800 - }, - { - "image_path": "G:\\images\\combined\\032672906be2e4c9.jpg", - "response": "The image shows a group of young men standing behind a large blue bin. They are all wearing blue shirts and sunglasses. Some of the men are holding water guns and pointing them towards the camera. There is a woman standing behind the men, and another woman is visible in the background. The scene appears to be taking place at a water fight or a similar event.", - "id": 6801 - }, - { - "image_path": "G:\\images\\combined\\0326b1ef4529097c.jpg", - "response": "A person is holding a black Nokia phone in their hand. The phone is running Windows Phone 8 and has a weather app open. The weather is set to Taipei and the current temperature is 25 degrees Celsius. There is also a to-do list on the phone with tasks at 16:00, 21:00 and 23:00.", - "id": 6802 - }, - { - "image_path": "G:\\images\\combined\\03286a77f1a9da12.jpg", - "response": "a baseball scoreboard showing the final score of the game which is 3 to 8", - "id": 6803 - }, - { - "image_path": "G:\\images\\combined\\0328a24cc3047ec8.jpg", - "response": "A large billboard with a woman's face on it is displayed on a building.", - "id": 6804 - }, - { - "image_path": "G:\\images\\combined\\0328f10a8d351b24.jpg", - "response": "A shelf with a variety of beer bottles on it.", - "id": 6805 - }, - { - "image_path": "G:\\images\\combined\\032925607ae0382c.jpg", - "response": "A pole with a sign on it that says E and has a arrow pointing to the left.", - "id": 6806 - }, - { - "image_path": "G:\\images\\combined\\0329e6958e4f5069.jpg", - "response": "A green glass bottle is sitting on a wooden bar. The bottle is labeled with the words \"Good for that jittery feeling.\" The label continues on the back of the bottle. The bottle is empty.", - "id": 6807 - }, - { - "image_path": "G:\\images\\combined\\032a1bbda0389235.jpg", - "response": "A tv screen showing a soccer game between Brazil and Germany.", - "id": 6808 - }, - { - "image_path": "G:\\images\\combined\\032ac761616a8b61.jpg", - "response": "A man holding a stack of boxes with fruit in them.", - "id": 6809 - }, - { - "image_path": "G:\\images\\combined\\032b047f44d6cf41.jpg", - "response": "A room with a bookshelf full of books and an electronic drum set in front of it.", - "id": 6810 - }, - { - "image_path": "G:\\images\\combined\\032b5411ec403cc2.jpg", - "response": "A yellow poster with a black text. The text is all capitalized and bold. The numbers 12 and 15 are displayed at the top and bottom of the image in big font. The word \"MAYO\" is displayed in yellow font. The word \"ESTAS\" is displayed in black font. The word \"ESPERANDO?\" is displayed in bold black font. There is a picture of the earth with two arrows pointing at it. One arrow is pointing to the left and the other is pointing to the right.", - "id": 6811 - }, - { - "image_path": "G:\\images\\combined\\032dcf3f768e3259.jpg", - "response": "On a bar, there are two hot sauce bottles. One is El Yucateco Habanero Hot Sauce and the other is their green sauce. Both are made in the USA.", - "id": 6812 - }, - { - "image_path": "G:\\images\\combined\\032f63f7a99ec39e.jpg", - "response": "A collage of book covers including The Name of the Wind, Starship Troopers, and others.", - "id": 6813 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.600ca107de275c0227bb0c8a37ea8e43.jpg", - "response": "A cardboard box with the word Games on it in black tape.", - "id": 6814 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.79fd9a20f3fb4dc905b1bd126895c9a7.jpg", - "response": "A cardboard box is open on the floor. The box is on a wooden floor. There is a white box on the floor behind the brown box. There is a plastic bag with red writing on it next to the box. There is a white bag behind the box. There is a black and white plastic bag behind the white box.", - "id": 6815 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.d1a0b19bf2b537c33ae9138f2b056bb6.jpg", - "response": "A cardboard box with the wordasics on it.", - "id": 6816 - }, - { - "image_path": "G:\\images\\combined\\0333568015752324.jpg", - "response": "An advertisement for Dial anti-perspirant products, including Dial Very Dry.", - "id": 6817 - }, - { - "image_path": "G:\\images\\combined\\033372370c02e704.jpg", - "response": "A white van parked in front of a building.", - "id": 6818 - }, - { - "image_path": "G:\\images\\combined\\033387d84d578dd7.jpg", - "response": "A big commercial plane(27,162),(992,610) on the runway", - "id": 6819 - }, - { - "image_path": "G:\\images\\combined\\033450fc9a624610.jpg", - "response": "A person holding a bottle of red wine with a grey label that says Great Wall in black and white.", - "id": 6820 - }, - { - "image_path": "G:\\images\\combined\\0334520a6683a223.jpg", - "response": "A clock with a soldier from the video game Halo in front of it.", - "id": 6821 - }, - { - "image_path": "G:\\images\\combined\\03345_jpg.rf.9c37b8c4a358338c7756688d02122256.jpg", - "response": "A man in an orange jacket and a white helmet is standing in a construction site at night. He is looking at his phone and smiling.", - "id": 6822 - }, - { - "image_path": "G:\\images\\combined\\0334eea69a37e9ad.jpg", - "response": "A green dumpster with the words \"tour bus trash\" written on it in red letters.", - "id": 6823 - }, - { - "image_path": "G:\\images\\combined\\03370c2ee2a5791d.jpg", - "response": "The image shows a product range for baby care. There are five products in the image, which are arranged in a row. From the left, the products are a white bottle with a pump, a white bottle with a dropper, a yellow tube, a white tube and a white bag. The pump bottle has a heart on the label, the dropper bottle has a green heart on the label. The yellow tube has a green heart on the label. The white tube has a green heart on the label. The white bag has the word \"baby\" written on it.", - "id": 6824 - }, - { - "image_path": "G:\\images\\combined\\0337bd7e2cded3cd.jpg", - "response": "A round plaque with a picture of a man's profile on it.", - "id": 6825 - }, - { - "image_path": "G:\\images\\combined\\0337cbae48f8a28d.jpg", - "response": "The image features a large body of water with several boats floating on it. There are two large boats, one on the left and one on the right, that are much taller than the other boats. In the distance, there is a large mountain with trees on it. A helicopter is flying in the sky above the boats.", - "id": 6826 - }, - { - "image_path": "G:\\images\\combined\\0338c67dc355a8c6.jpg", - "response": "A white van with the word ORTHOTIX on the side of it.", - "id": 6827 - }, - { - "image_path": "G:\\images\\combined\\03391be934ddbc7c.jpg", - "response": "A space shuttle being transported on top of a large airplane.", - "id": 6828 - }, - { - "image_path": "G:\\images\\combined\\033949382d674109.jpg", - "response": "A green bus with the number 15 on it is driving down the street.", - "id": 6829 - }, - { - "image_path": "G:\\images\\combined\\033a703a4771ba75.jpg", - "response": "a red car with a toyota logo on the trunk and a myflorida license plate", - "id": 6830 - }, - { - "image_path": "G:\\images\\combined\\033a93b07e9f92c4.jpg", - "response": "a black suv in front of a white building", - "id": 6831 - }, - { - "image_path": "G:\\images\\combined\\033a983285462145.jpg", - "response": "A bottle of Oude de Charrue sits next to a glass filled with the beer. The bottle is next to a green plant in a green watering can.", - "id": 6832 - }, - { - "image_path": "G:\\images\\combined\\033cd5edd0a24ab7.jpg", - "response": "A white van with a ladder on top of it.", - "id": 6833 - }, - { - "image_path": "G:\\images\\combined\\033d24fb20116330.jpg", - "response": "A red city bus is parked in a parking lot.", - "id": 6834 - }, - { - "image_path": "G:\\images\\combined\\033e164dad566027.jpg", - "response": "A person is holding a bottle of beer in their hand. The bottle is green and has a label on it. There is a cup on the table.", - "id": 6835 - }, - { - "image_path": "G:\\images\\combined\\033ecc0bfce7a4c4.jpg", - "response": "A busy city street with many people and yellow taxis.", - "id": 6836 - }, - { - "image_path": "G:\\images\\combined\\033ecc2e897a1ebf.jpg", - "response": "A metal fence with several signs attached to it. The signs are in various colors and say danger, do not enter, demolition work in progress, and caution. There is also a hand with an exclamation point in a triangle.", - "id": 6837 - }, - { - "image_path": "G:\\images\\combined\\03403981219b557d.jpg", - "response": "A red and white bus is parked on the street.", - "id": 6838 - }, - { - "image_path": "G:\\images\\combined\\03404_jpg.rf.379056ae052a45d63fcd169530968e15.jpg", - "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are three orange traffic cones in the foreground. The field has a white yard line and a red and white barricade. There is a blue metal structure on the left side of the field and a wooden structure on the right. There is a spotlight shining on the man and a fire hydrant is visible in the background. The sky is dark and there are sparks flying in the air.", - "id": 6839 - }, - { - "image_path": "G:\\images\\combined\\03404_jpg.rf.672fc7d318cae1cceac821a9b3989830.jpg", - "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are two orange traffic cones on the field, one on the left and one on the right. In the background, there are two lights shining down on the field. To the left of the field, there is a metal structure with a ladder.", - "id": 6840 - }, - { - "image_path": "G:\\images\\combined\\0340971ba2dd8d6e.jpg", - "response": "A close up of a smart device screen that is in a foreign language.", - "id": 6841 - }, - { - "image_path": "G:\\images\\combined\\0340bd6836605e6a.jpg", - "response": "A bar with a wooden counter top and a brown color.", - "id": 6842 - }, - { - "image_path": "G:\\images\\combined\\0340ffed402c0672.jpg", - "response": "In the image, there is a young boy dressed in a baseball uniform, holding a baseball bat and standing on a baseball field. He appears to be focused and ready to play.", - "id": 6843 - }, - { - "image_path": "G:\\images\\combined\\0341f72c43fdb537.jpg", - "response": "The image features two women sitting next to each other. One woman has a temporary tattoo on her upper arm that says \"joyful.\" Both women are wearing watches on their wrists. One of the women is also wearing a black and white diamond-patterned necklace. She is holding a green cup in her hand. The other woman is wearing a beaded bracelet on her wrist and is wearing a watch as well.", - "id": 6844 - }, - { - "image_path": "G:\\images\\combined\\03438e4ac08eb383.jpg", - "response": "The image shows a close-up of a smartphone screen. The phone is displaying a photo of a man with glasses, and there are several options for sharing the photo, including Facebook, Twitter, Flickr, and others. The screen also has a navigation bar at the bottom with options for \"Export,\" \"Back,\" and \"Library.\" The phone is held in someone's hand, and there is a person's elbow visible in the background.", - "id": 6845 - }, - { - "image_path": "G:\\images\\combined\\0344024a2be37ee1.jpg", - "response": "A silver and white mobile phone is displayed. The phone has a silver and white color scheme and a navigation button in the center of the phone. To the left of the navigation button are the numbers 0 and * and the button with the image of a phone. Underneath the navigation button are the buttons with the numbers 1, 2, 3, and 4. To the right of the navigation button are the buttons with the numbers 5 and 6. Underneath these are the buttons with the numbers 7, 8, 9, and 0. There is also a button with the image of a envelope. Above the navigation button are the words \"Messages\". Next to this are the options \"Select\" and \"Back\".", - "id": 6846 - }, - { - "image_path": "G:\\images\\combined\\034473474965116d.jpg", - "response": "A red and white double decker bus is parked in a parking lot with other buses.", - "id": 6847 - }, - { - "image_path": "G:\\images\\combined\\0345e23c2c2da911.jpg", - "response": "A keyboard with a paper in front of it with the word jetset on it.", - "id": 6848 - }, - { - "image_path": "G:\\images\\combined\\03461b7f34db309a.jpg", - "response": "A bus on a city street in Rio de Janeiro.", - "id": 6849 - }, - { - "image_path": "G:\\images\\combined\\0347430ffd8f3671.jpg", - "response": "A glass of beer on a table.", - "id": 6850 - }, - { - "image_path": "G:\\images\\combined\\034788d9f2ec86e5.jpg", - "response": "A bottle of red wine named La Chapelle Boit.", - "id": 6851 - }, - { - "image_path": "G:\\images\\combined\\03484c827a93d689.jpg", - "response": "A orange and yellow double decker bus parked next to a red and white double decker bus.", - "id": 6852 - }, - { - "image_path": "G:\\images\\combined\\03485f39264998c8.jpg", - "response": "In the image there is a person laying in a bathtub. They are reading a book with the title \"Shit I was right about\" on the cover. The book is held up to the persons face so they can read it. There are three candles lit around the bathtub and a rubber duck floating in the water. The person's legs are crossed and they have a ring on their left hand.", - "id": 6853 - }, - { - "image_path": "G:\\images\\combined\\03486477f41d883f.jpg", - "response": "The image shows an empty stadium with a green football field. The field has white numbers and lines and the goalposts are painted yellow. There are two American flags flying in the stadium, one on the left and one on the right. The stadium seats are empty and the stands are made of concrete.", - "id": 6854 - }, - { - "image_path": "G:\\images\\combined\\034ab6f9af333146.jpg", - "response": "A large screen is displaying a soccer game with a crowd watching.", - "id": 6855 - }, - { - "image_path": "G:\\images\\combined\\034adc2d37d61349.jpg", - "response": "A black LG Cyon phone is displayed. The phone has a red and white screen with various apps and settings. The time on the phone is 11:23. There is a search bar at the top with the text \"The BLOG\" written in Korean. Below the search bar are two buttons, one with the YouTube logo and one with the Facebook logo. There is a button labeled \"LG Road Sync\" and a button labeled \"LG Air Sync\". The bottom of the screen has two buttons, one labeled \"Road Typing\" and one labeled \"Facebook\". The phone is running Android.", - "id": 6856 - }, - { - "image_path": "G:\\images\\combined\\034aeb53f8203c9b.jpg", - "response": "A colorful mural painted on the side of a building.", - "id": 6857 - }, - { - "image_path": "G:\\images\\combined\\034afc91ed9a3c73.jpg", - "response": "In the image, there is a man standing in a kitchen preparing food. He is wearing a white shirt and cooking over a stove. There are two bowls on the counter, one on the left and the other on the right. A bottle is placed near the window, and a spoon is resting on the counter. The spoon is near the man who is cooking.", - "id": 6858 - }, - { - "image_path": "G:\\images\\combined\\034bc04aadfd3ce0.jpg", - "response": "A stack of 7 gold cans of Coca Cola.", - "id": 6859 - }, - { - "image_path": "G:\\images\\combined\\034bfc58141b6162.jpg", - "response": "A red, yellow and silver train is stopped at a train station.", - "id": 6860 - }, - { - "image_path": "G:\\images\\combined\\034c598a8ba83945.jpg", - "response": "Two smart devices are side by side on a bed.", - "id": 6861 - }, - { - "image_path": "G:\\images\\combined\\034f44ed3233160c.jpg", - "response": "A brick building with a clock mounted to the side of it.", - "id": 6862 - }, - { - "image_path": "G:\\images\\combined\\034fb549726445cd.jpg", - "response": "A wax seal necklace with a coin charm and a letter charm sits on a wooden table.", - "id": 6863 - }, - { - "image_path": "G:\\images\\combined\\0351a7027db236c5.jpg", - "response": "A person is holding a black Sony Xperia Z smartphone. The phone is powered on and displays the time as 7:39. The background of the phone's display shows a mountain over a body of water.", - "id": 6864 - }, - { - "image_path": "G:\\images\\combined\\0351eb61ef958742.jpg", - "response": "A person walking down a road near a yellow pedestrian crossing sign.", - "id": 6865 - }, - { - "image_path": "G:\\images\\combined\\03535a6be5d036d6.jpg", - "response": "A poster with four quadrants. Each quadrant has a different role. The four roles are novice, apprentice, practitioner, and expert.", - "id": 6866 - }, - { - "image_path": "G:\\images\\combined\\0354a077b542ed03.jpg", - "response": "A close up of a laptop computer screen and keyboard.", - "id": 6867 - }, - { - "image_path": "G:\\images\\combined\\0354ff409f087801.jpg", - "response": "a person standing in front of a white board", - "id": 6868 - }, - { - "image_path": "G:\\images\\combined\\035641421030a5f1.jpg", - "response": "A bookshelf with several books on it, including one titled \"DOM Scripting\" and another titled \"JavaScript: The Definitive Reference\".", - "id": 6869 - }, - { - "image_path": "G:\\images\\combined\\03577bee21c7d19e.jpg", - "response": "A man wearing glasses stands at a podium with a microphone. He is dressed in a suit and is giving a speech. There is a laptop on the podium and a banner with the words \"100 years\" behind him.", - "id": 6870 - }, - { - "image_path": "G:\\images\\combined\\0359b5b2e2f0bfcb.jpg", - "response": "A person holding a watch box with a watch inside.", - "id": 6871 - }, - { - "image_path": "G:\\images\\combined\\0359decb8df78658.jpg", - "response": "a black coffee mug(49,62),(915,905) with a picture of a cake on it", - "id": 6872 - }, - { - "image_path": "G:\\images\\combined\\035d0fbe3a26607f.jpg", - "response": "A lava lamp is glowing red in front of a laptop.", - "id": 6873 - }, - { - "image_path": "G:\\images\\combined\\035e005070e011e4.jpg", - "response": "In the image, there is a man wearing a hat standing in front of a whiteboard. The man appears to be giving a presentation or lecture, as he is gesturing with his hands while speaking. He is wearing a plaid shirt and a name tag, and there are several markers scattered around on the table. The whiteboard has various writing on it, including a diagram and the words \"Web Invents\" and \"Activity Stream\".", - "id": 6874 - }, - { - "image_path": "G:\\images\\combined\\035e0de0db152784.jpg", - "response": "A television monitor with a game on it.", - "id": 6875 - }, - { - "image_path": "G:\\images\\combined\\035e347ba7ad5e63.jpg", - "response": "A baseball stadium with a green field and many people in the stands watching the game.", - "id": 6876 - }, - { - "image_path": "G:\\images\\combined\\03616065a68b3611.jpg", - "response": "A glass of whiskey next to a bottle of it.", - "id": 6877 - }, - { - "image_path": "G:\\images\\combined\\03619aa36e98b18c.jpg", - "response": "The image shows a bookshelf with various books on it. The books are arranged so that some are leaning against each other, and some are standing straight. The bookshelf is white, and the books are in different colors, including red, white, and black. The books cover a wide range of topics, including design, music, and web design. Some of the book titles include \"The Design\" and \"Blue Note.\"", - "id": 6878 - }, - { - "image_path": "G:\\images\\combined\\0361af3b7b625275.jpg", - "response": "A busy street scene with people walking around and double decker buses.", - "id": 6879 - }, - { - "image_path": "G:\\images\\combined\\036228da49face6b.jpg", - "response": "A large image of a computer screen is displayed on a stage. The screen shows a website page with several people's faces on it. The website is the Nokia social network.", - "id": 6880 - }, - { - "image_path": "G:\\images\\combined\\03625040b2eef2a4.jpg", - "response": "A man in a bear suit runs onto the field with a team of football players.", - "id": 6881 - }, - { - "image_path": "G:\\images\\combined\\036363e87748415a.jpg", - "response": "A sign for Fivestar showing the price of gas at $4.06 per gallon.", - "id": 6882 - }, - { - "image_path": "G:\\images\\combined\\036374a151961577.jpg", - "response": "A foggy day with two red double decker buses on the road. One of the buses is parked and the other is driving down the street. There is a car behind the bus that is driving. The bus has a man on it and the car is black. There is a blue metal railing on the side of the street.", - "id": 6883 - }, - { - "image_path": "G:\\images\\combined\\0363a663db0f0bc2.jpg", - "response": "A street scene with a large roundabout in the background. There is a sign that says \"The Mall\" on it and another sign that says \"The Atrium Leisure Center\" on it. There are a few cars on the street and a bus is driving down the road as well. There are also two benches on the sidewalk.", - "id": 6884 - }, - { - "image_path": "G:\\images\\combined\\0363baaba71c8396.jpg", - "response": "A page from a newsletter, likely from the department of marine and harbors.", - "id": 6885 - }, - { - "image_path": "G:\\images\\combined\\0363f02db5b0ae49.jpg", - "response": "The image shows three boxes, each in a different color, and they are all open. The box on the left is red and contains a silver circle with the word \"pearl\" written on it. The box in the middle is gold and contains a gold circle with the word \"pearl\" written on it. The box on the right is grey and contains a grey circle with the word \"pearl\" written on it.", - "id": 6886 - }, - { - "image_path": "G:\\images\\combined\\03655bde4da6c310.jpg", - "response": "A laptop computer sitting on a wooden table.", - "id": 6887 - }, - { - "image_path": "G:\\images\\combined\\0366bc74129b4f8c.jpg", - "response": "A calculator, a pen and a quote from CEB Research on a financial statement.", - "id": 6888 - }, - { - "image_path": "G:\\images\\combined\\03671bbbc7aee75d.jpg", - "response": "A white toyota innova parked on the side of the road.", - "id": 6889 - }, - { - "image_path": "G:\\images\\combined\\036745230dfcbba8.jpg", - "response": "A watch with a black band and a sign that says 0165 Hatan.", - "id": 6890 - }, - { - "image_path": "G:\\images\\combined\\0367c26bb8213f97.jpg", - "response": "A cat laying in a cardboard box.", - "id": 6891 - }, - { - "image_path": "G:\\images\\combined\\0368d827bcab27d1.jpg", - "response": "The image shows a baseball field with a few people playing a game of frisbee. There are at least three people visible, with one in the foreground wearing a white shirt and black shorts, another in the background wearing a black shirt and white shorts, and a third person partially visible on the left side of the image. They are all standing on the dirt area of the field, which includes a pitcher's mound and a base.", - "id": 6892 - }, - { - "image_path": "G:\\images\\combined\\036b0ed016fe81dd.jpg", - "response": "A still from the show Glee of three women standing in a doorway. The woman on the left is wearing a red and white cheerleading uniform with a purple jacket over it and her hair in a high ponytail. The woman in the middle has her hair down and is wearing a purple vest over a white shirt. The woman on the right is also wearing a red and white cheerleading uniform with her hair in a bun.", - "id": 6893 - }, - { - "image_path": "G:\\images\\combined\\036c33a219d5a51e.jpg", - "response": "A red double decker bus driving down the street.", - "id": 6894 - }, - { - "image_path": "G:\\images\\combined\\036c51c7d9da780f.jpg", - "response": "A remote control sitting on a grey table.", - "id": 6895 - }, - { - "image_path": "G:\\images\\combined\\036ca96be461e0e9.jpg", - "response": "A red stop sign with a white border and the word \"STOP\" written in white. The sign is attached to a metal pole and is located in front of a tree.", - "id": 6896 - }, - { - "image_path": "G:\\images\\combined\\036de4d1b84409c5.jpg", - "response": "In the image, there are several baseball players wearing blue uniforms with red and white lettering and logos. One player is wearing a blue jersey with the number 28 on the back, and the player in front of him is wearing a red and white cap with a T on it. Another player is wearing a blue and red cap with a T on it. The players are standing close to each other and appear to be having a conversation. There is a fence in the background, and the image has a slightly blurry appearance.", - "id": 6897 - }, - { - "image_path": "G:\\images\\combined\\036f03402dbfd5d0.jpg", - "response": "A yellow school bus parked in a fenced in yard.", - "id": 6898 - }, - { - "image_path": "G:\\images\\combined\\0372664e29dace21.jpg", - "response": "A person is holding a smartphone in their hand. The smartphone is a black htc phone. The phone is open and on. There is a screen with a black background and white lettering. There are two green buttons on the screen. The phone is in someone's left hand. There is a speaker in the background. It is silver and has many buttons on it.", - "id": 6899 - }, - { - "image_path": "G:\\images\\combined\\0373a3b6816bba15.jpg", - "response": "A keyboard that is missing a key and is broken in the middle.", - "id": 6900 - }, - { - "image_path": "G:\\images\\combined\\0373e09acea451dd.jpg", - "response": "A plastic bottle of water with a label that says studio A.", - "id": 6901 - }, - { - "image_path": "G:\\images\\combined\\03740a5f24942edf.jpg", - "response": "A green metal ice cream container with the words The National Trust on it.", - "id": 6902 - }, - { - "image_path": "G:\\images\\combined\\0374fb6b8e116c17.jpg", - "response": "A cardboard box with a green label that says \"simple syrup kit\" on it.", - "id": 6903 - }, - { - "image_path": "G:\\images\\combined\\0378362751977c0b.jpg", - "response": "In the image, a group of female softball players are on a field. There are three players from UC San Diego and one player from Cal State San Bernardino. They are dressed in their respective team uniforms, which are blue, gray, and yellow. The players are actively engaged in the game, running and sliding on the field. One of the players from UC San Diego is holding a mitt, while another player is seen in the background. The scene captures the excitement and intensity of a softball game.", - "id": 6904 - }, - { - "image_path": "G:\\images\\combined\\0378cdb594c70f0c.jpg", - "response": "A stop sign mounted on a brick wall.", - "id": 6905 - }, - { - "image_path": "G:\\images\\combined\\03791062e3f6b6c5.jpg", - "response": "The exterior of Friendly's restaurant with a white picket fence and a red and white awning.", - "id": 6906 - }, - { - "image_path": "G:\\images\\combined\\0379d0a6b0d1d3f9.jpg", - "response": "The image shows a street corner with a red traffic light. There is a person standing next to a building holding a sign that reads \"Kill the Bill C-51\". Another sign that says \"stop\" is visible in the scene. There are two yellow traffic lights on the corner, one is positioned above the other. A fire escape is attached to the building and a crane can be seen in the background.", - "id": 6907 - }, - { - "image_path": "G:\\images\\combined\\037aaaf3346af356.jpg", - "response": "A black Sony Ericsson cell phone is sitting on a white table.", - "id": 6908 - }, - { - "image_path": "G:\\images\\combined\\037aeea981e2df67.jpg", - "response": "A glass of red wine sits on a table.", - "id": 6909 - }, - { - "image_path": "G:\\images\\combined\\037b5aa9bc3026e4.jpg", - "response": "A can of Pepsi sits on a black plate next to a pile of sugar and two spoons.", - "id": 6910 - }, - { - "image_path": "G:\\images\\combined\\037d8560943c3379.jpg", - "response": "A collection of four watches, two of which are in silver and two of which are in black. They are on a green and brown wooden table.", - "id": 6911 - }, - { - "image_path": "G:\\images\\combined\\037db65d7db752dd.jpg", - "response": "A busy city street with traffic lights, street signs, and pedestrians.", - "id": 6912 - }, - { - "image_path": "G:\\images\\combined\\037ddf0da997b5b6.jpg", - "response": "a camera with a black body and a leather covering", - "id": 6913 - }, - { - "image_path": "G:\\images\\combined\\037f58bbe20a72b8.jpg", - "response": "A bottle of La Grande Blanche sits next to a filled glass.", - "id": 6914 - }, - { - "image_path": "G:\\images\\combined\\037f897584dffd8c.jpg", - "response": "A book with a title in Italian.", - "id": 6915 - }, - { - "image_path": "G:\\images\\combined\\03800fb13fd49418.jpg", - "response": "The image shows a table set up with various items, including two boxes of doughnuts, a coffee maker, napkins, and cups. There are also bowls and spoons on the table.", - "id": 6916 - }, - { - "image_path": "G:\\images\\combined\\038021f7499f67a7.jpg", - "response": " A man(336,273),(714,802) sitting on a bridge", - "id": 6917 - }, - { - "image_path": "G:\\images\\combined\\038044cace2a65e9.jpg", - "response": "A double decker trolley bus on a street next to a sidewalk.", - "id": 6918 - }, - { - "image_path": "G:\\images\\combined\\0380f44cccbadc1c.jpg", - "response": "A vintage photograph of a busy intersection with traffic, including a green and white bus, and cars. There is a Standard Oil gas station visible in the scene.", - "id": 6919 - }, - { - "image_path": "G:\\images\\combined\\038188a838752d68.jpg", - "response": "A blackberry phone with a black keyboard. The phone has a trackball as the main navigation control. The keyboard has 19 keys, including 10 function keys, 4 shift keys, 4 space keys, 2 sym keys, and 1 night key. There are also 2 alt keys, one on the left and one on the right. The shift key is located between the alt keys. The space key is located between the sym keys. The symbol key is located to the right of the space key.", - "id": 6920 - }, - { - "image_path": "G:\\images\\combined\\03834fe53189e700.jpg", - "response": "a person holding a coffee cup up to their mouth", - "id": 6921 - }, - { - "image_path": "G:\\images\\combined\\038441a9b64ad54c.jpg", - "response": "Mr. Hero The New Age Man comic book #4, June 1995, $1.95 U.S. price, The new age man is a cyborg", - "id": 6922 - }, - { - "image_path": "G:\\images\\combined\\03856ed1f1229d4e.jpg", - "response": "A spoon full of ground mustard next to a cup of liquid mustard and a pile of whole mustard seeds.", - "id": 6923 - }, - { - "image_path": "G:\\images\\combined\\038629b289374d3f.jpg", - "response": "An old photo of a town with a large US Army truck in the foreground. The town has many buildings and people walking around. There are also many cars and bicycles in the scene.", - "id": 6924 - }, - { - "image_path": "G:\\images\\combined\\03863b90394ece66.jpg", - "response": "A city street with buildings and signs.", - "id": 6925 - }, - { - "image_path": "G:\\images\\combined\\038789965a8f7606.jpg", - "response": "A bus is parked on the side of the street.", - "id": 6926 - }, - { - "image_path": "G:\\images\\combined\\038864ebc2725553.jpg", - "response": "A group of six people standing on a softball field.", - "id": 6927 - }, - { - "image_path": "G:\\images\\combined\\0389568d5377e14e.jpg", - "response": "a person holding a smartphone in their hand", - "id": 6928 - }, - { - "image_path": "G:\\images\\combined\\038a21a5a1a6972e.jpg", - "response": "A double decker bus is parked on the side of the road.", - "id": 6929 - }, - { - "image_path": "G:\\images\\combined\\038a2f74d535a2a7.jpg", - "response": "A bottle of Leffe Brown beer sitting on a wooden table in front of a brick wall.", - "id": 6930 - }, - { - "image_path": "G:\\images\\combined\\038c8f14559fa56c.jpg", - "response": "A man standing next to a white and blue ice cream truck.", - "id": 6931 - }, - { - "image_path": "G:\\images\\combined\\038dc16c44629f3c.jpg", - "response": "A close up of a train wheel with the word Agenoria on it.", - "id": 6932 - }, - { - "image_path": "G:\\images\\combined\\038ec33c3856b912.jpg", - "response": "A bottle of red wine is on display. The bottle is wrapped in a red ribbon. The wine bottle has a white label with black text. The label has a picture of a feather. The wine bottle is on a black shelf.", - "id": 6933 - }, - { - "image_path": "G:\\images\\combined\\03906c94622593f8.jpg", - "response": "A gold coin with Chinese symbols on it.", - "id": 6934 - }, - { - "image_path": "G:\\images\\combined\\0392f98034ba927e.jpg", - "response": "A man sitting at a white table with a white keyboard in front of him. The man is looking at a computer screen with a website open. On the table is also a cell phone and a book.", - "id": 6935 - }, - { - "image_path": "G:\\images\\combined\\039330e303428a01.jpg", - "response": "A book cover with a space scene depicting a spaceship in orbit around a planet.", - "id": 6936 - }, - { - "image_path": "G:\\images\\combined\\0393c9d77b8215a3.jpg", - "response": "A grey model fighter jet on a wooden table.", - "id": 6937 - }, - { - "image_path": "G:\\images\\combined\\0394933dcd965048.jpg", - "response": "The image is a black and white photo of a train station. In the foreground, there is a little boy holding the hand of an older woman. The woman is wearing a white jacket and a white hat. She is also wearing a white shirt and holding a black purse. The little boy is wearing a white jacket and black pants. He is also holding a walking stick. In the background, there is a train.", - "id": 6938 - }, - { - "image_path": "G:\\images\\combined\\03959cf11d7df027.jpg", - "response": "A white car with blue and white license plate is parked in a parking lot.", - "id": 6939 - }, - { - "image_path": "G:\\images\\combined\\03962c7e05426227.jpg", - "response": "A man sitting at a table with a glass of beer in front of him.", - "id": 6940 - }, - { - "image_path": "G:\\images\\combined\\0396372a872294c2.jpg", - "response": "A red and white bus is driving down the street.", - "id": 6941 - }, - { - "image_path": "G:\\images\\combined\\039754640f34912b.jpg", - "response": "A brown and white van with a decal on the window that says \"Riding in Style Van Club\".", - "id": 6942 - }, - { - "image_path": "G:\\images\\combined\\03982ceb4b545f32.jpg", - "response": "The image shows two blue remote controls laying on a white surface. The remotes have buttons labeled A, B, and C on one side, and buttons labeled 1, 2, 3, +, - and 0 on the other side.", - "id": 6943 - }, - { - "image_path": "G:\\images\\combined\\039832d67de29788.jpg", - "response": "A row of parked ambulances on the side of the road.", - "id": 6944 - }, - { - "image_path": "G:\\images\\combined\\03991603677ee84d.jpg", - "response": "A pink recycling bin on a sidewalk.", - "id": 6945 - }, - { - "image_path": "G:\\images\\combined\\039a55183ba52549.jpg", - "response": "A group of baseball players on a field.", - "id": 6946 - }, - { - "image_path": "G:\\images\\combined\\039a9167c8a2ac3f.jpg", - "response": "A BMW X5 with the plate GKL1845 is on a dusty road.", - "id": 6947 - }, - { - "image_path": "G:\\images\\combined\\039da94c7b4a3104.jpg", - "response": "A sign that says Viking Court and lists the hours and logos of the food options.", - "id": 6948 - }, - { - "image_path": "G:\\images\\combined\\039dd0ed14106d32.jpg", - "response": "A silver coin is next to a copper bar.", - "id": 6949 - }, - { - "image_path": "G:\\images\\combined\\039e84b999400482.jpg", - "response": "a orange road work ahead sign on a street", - "id": 6950 - }, - { - "image_path": "G:\\images\\combined\\039f33b5834a956b.jpg", - "response": "A table with seven cans of beer on it.", - "id": 6951 - }, - { - "image_path": "G:\\images\\combined\\039fce4cdc594316.jpg", - "response": "A table with two bottles of Innocent brand smoothie.", - "id": 6952 - }, - { - "image_path": "G:\\images\\combined\\03a037ee6c32399c.jpg", - "response": "A train on a track near a house.", - "id": 6953 - }, - { - "image_path": "G:\\images\\combined\\03a03f6692cb4d0b.jpg", - "response": "A man wearing a boxing glove drinks from a can of Boxer.", - "id": 6954 - }, - { - "image_path": "G:\\images\\combined\\03a1e7cf965c52c3.jpg", - "response": "A television with a screen that says \"Classic Sinatra\" on the top.", - "id": 6955 - }, - { - "image_path": "G:\\images\\combined\\03a27395be344ab4.jpg", - "response": "A large sign for Redrow, a housing developer, advertising a new home opening soon.", - "id": 6956 - }, - { - "image_path": "G:\\images\\combined\\03a2e09ed8c9a4fc.jpg", - "response": "A display case full of candy and snacks.", - "id": 6957 - }, - { - "image_path": "G:\\images\\combined\\03a3ae31fcba44c3.jpg", - "response": "A can of soda with a straw in it sitting on the sand.", - "id": 6958 - }, - { - "image_path": "G:\\images\\combined\\03a3cbd0b9772d44.jpg", - "response": "A red and silver jet2 airplane is on a runway.", - "id": 6959 - }, - { - "image_path": "G:\\images\\combined\\03a4ce7908b524f6.jpg", - "response": "A group of people are standing in a kitchen. A woman is hugging another woman while a man is holding a plate of food. There is a microwave and an oven in the background.", - "id": 6960 - }, - { - "image_path": "G:\\images\\combined\\03a514f0ec49375a.jpg", - "response": "A Nuwave oven sitting on a white sheet.", - "id": 6961 - }, - { - "image_path": "G:\\images\\combined\\03a568bf2eddea1d.jpg", - "response": "A hand holding a blue can of Royal Castle Pilsner beer.", - "id": 6962 - }, - { - "image_path": "G:\\images\\combined\\03a5d50547d613c7.jpg", - "response": "A white Subaru Forester with a blue and white license plate that says SLOW.", - "id": 6963 - }, - { - "image_path": "G:\\images\\combined\\03a7c3a85a7771e0.jpg", - "response": "a silver and white watch on a blue surface", - "id": 6964 - }, - { - "image_path": "G:\\images\\combined\\03a8d358bf558902.jpg", - "response": "A poster with three women smiling and a bottle of Biotonico.", - "id": 6965 - }, - { - "image_path": "G:\\images\\combined\\03a91afb212d9a3b.jpg", - "response": "A toaster oven on a kitchen counter surrounded by various items such as a bag of Doritos, a bowl of dip, a banana, and a knife. There are also several plates and a cup on the counter.", - "id": 6966 - }, - { - "image_path": "G:\\images\\combined\\03a91f3fb7cdc67c.jpg", - "response": "A man sleeping on the ground outside a Chinese shop.", - "id": 6967 - }, - { - "image_path": "G:\\images\\combined\\03a939145c5c1362.jpg", - "response": "A poster with a woman holding an hourglass.", - "id": 6968 - }, - { - "image_path": "G:\\images\\combined\\03aa05be4ff05ba6.jpg", - "response": "A long table is filled with many different kinds of wine bottles.", - "id": 6969 - }, - { - "image_path": "G:\\images\\combined\\03aa34117573804b.jpg", - "response": "A silver penny of Henry III, minted in London between 1258 and 1264. The obverse has a cross pattee, and the reverse has a shield with a lion and a dragon.", - "id": 6970 - }, - { - "image_path": "G:\\images\\combined\\03af12f9ba86896c.jpg", - "response": "The image is split in half with two phones side by side. The phone on the left is an iPhone and the phone on the right is an Android phone.", - "id": 6971 - }, - { - "image_path": "G:\\images\\combined\\03af1855cadc876c.jpg", - "response": "A wall with the words \"Let's Adore and Endure Each Other\" written on it.", - "id": 6972 - }, - { - "image_path": "G:\\images\\combined\\03b0e895ecf74cfd.jpg", - "response": "A close up of a silver coin with the statue of liberty on it.", - "id": 6973 - }, - { - "image_path": "G:\\images\\combined\\03b10f45eb118bd5.jpg", - "response": "A collection of items that are typically carried in a pocket.", - "id": 6974 - }, - { - "image_path": "G:\\images\\combined\\03b11fe3fb428ae4.jpg", - "response": "A Thai Airways plane is taking off from the runway.", - "id": 6975 - }, - { - "image_path": "G:\\images\\combined\\03b2cd2fc8ebacac.jpg", - "response": "A red, white and black bus is parked in a parking lot.", - "id": 6976 - }, - { - "image_path": "G:\\images\\combined\\03b2dbb7dff0e32d.jpg", - "response": "A bottle of Chateau Garraud 2004 sits on a wooden table. The bottle is dark and has a red and white label. The top of the bottle is red and the bottom is dark. The label has a red Chateau Garraud logo in the middle. The label is white with a red stripe on the top and a red stripe on the bottom. The words Chateau Garraud are in red on the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label.", - "id": 6977 - }, - { - "image_path": "G:\\images\\combined\\03b33189e67c3fb2.jpg", - "response": "A bottle of Skilde next to a cup of coffee on a table.", - "id": 6978 - }, - { - "image_path": "G:\\images\\combined\\03b3ef17d4fbf990.jpg", - "response": "a notebook with a sign that says make trade fair", - "id": 6979 - }, - { - "image_path": "G:\\images\\combined\\03b632ee8d15cbae.jpg", - "response": "In the image there is a balance with two cellphones on it. The left one is black and has a Q on it. The right one is white and has GFive and Haptic Plus A77 on it. The scale is gold and the background is white.", - "id": 6980 - }, - { - "image_path": "G:\\images\\combined\\03b686595d19114f.jpg", - "response": "A police officer in a yellow jacket writing a ticket.", - "id": 6981 - }, - { - "image_path": "G:\\images\\combined\\03b6e18f11b24763.jpg", - "response": "a book with a page that has some writing on it", - "id": 6982 - }, - { - "image_path": "G:\\images\\combined\\03b7d59319084f2e.jpg", - "response": "A watch with a band made of interwoven blue and green rubber bands.", - "id": 6983 - }, - { - "image_path": "G:\\images\\combined\\03b92d00a3433780.jpg", - "response": "A soccer field with people on it at night.", - "id": 6984 - }, - { - "image_path": "G:\\images\\combined\\03b9382e1284256d.jpg", - "response": "A magazine spread about Def Leppard, a band with two members.", - "id": 6985 - }, - { - "image_path": "G:\\images\\combined\\03b9b929f76a5e56.jpg", - "response": "An orange sign that says \"Men at Work\" is attached to a metal bar.", - "id": 6986 - }, - { - "image_path": "G:\\images\\combined\\03bbf08d4273fd4c.jpg", - "response": "A hand holding a collection of shells and wearing a pair of nails with a design of gold squiggles on a maroon background.", - "id": 6987 - }, - { - "image_path": "G:\\images\\combined\\03bdc9baf89c03f7.jpg", - "response": "A store front with a chalkboard sign outside.", - "id": 6988 - }, - { - "image_path": "G:\\images\\combined\\03bdd70c26ef6e85.jpg", - "response": "a group of people standing outside", - "id": 6989 - }, - { - "image_path": "G:\\images\\combined\\03beecd7a9676cc2.jpg", - "response": "An airplane is on the runway at the airport.", - "id": 6990 - }, - { - "image_path": "G:\\images\\combined\\03bf842c0679a0c2.jpg", - "response": "A bottle of Polo Sport Ralph Lauren cologne is shown in a blue light. The bottle is dark blue and has a silver cap. The words \"POLO Sport\" are displayed on the bottle in white text. The letters \"RL\" are also displayed on the bottle in white text. There is an American flag displayed on the bottle in white and blue.", - "id": 6991 - }, - { - "image_path": "G:\\images\\combined\\03c02d14bdf41096.jpg", - "response": "The image shows a baseball team posing for a group photo.", - "id": 6992 - }, - { - "image_path": "G:\\images\\combined\\03c0b985ec7277f6.jpg", - "response": "In the image there is a wrist watch with a black dial and white hands. The watch has a silver case and is surrounded by many diamonds. The watch has a reflection on the table below it.", - "id": 6993 - }, - { - "image_path": "G:\\images\\combined\\03c0f0166b173fd1.jpg", - "response": "A person is holding a cell phone in their hand. The phone is black and is on display. There are multiple other cell phones on display in the background. Some of these phones are also black. One of the phones is on a table and another is on a stand. A person's hand is visible holding the phone.", - "id": 6994 - }, - { - "image_path": "G:\\images\\combined\\03c18911e05c1417.jpg", - "response": "A white car parked next to a black car in a driveway.", - "id": 6995 - }, - { - "image_path": "G:\\images\\combined\\03c1ae72a9b0b54b.jpg", - "response": "A red double decker bus is driving down a street.", - "id": 6996 - }, - { - "image_path": "G:\\images\\combined\\03c1f7f42d34695d.jpg", - "response": "A man in a top hat and a man in a white shirt are standing on a street corner.", - "id": 6997 - }, - { - "image_path": "G:\\images\\combined\\03c58ee687f2c893.jpg", - "response": "A blue and yellow can of Harem's coffee on a shelf.", - "id": 6998 - }, - { - "image_path": "G:\\images\\combined\\03c60436adf2edc0.jpg", - "response": "A red and white bus is driving down the street.", - "id": 6999 - }, - { - "image_path": "G:\\images\\combined\\03c879ba6da8f33f.jpg", - "response": "A baseball stadium with a large field and many people watching the game.", - "id": 7000 - }, - { - "image_path": "G:\\images\\combined\\03c88ebe3ddda513.jpg", - "response": "A close up of a laptop keyboard with the keys in black and white.", - "id": 7001 - }, - { - "image_path": "G:\\images\\combined\\03c89ec516ce7287.jpg", - "response": "A white van with blue stripes and the letters AT&T on the side.", - "id": 7002 - }, - { - "image_path": "G:\\images\\combined\\03c9a67203d4c3d3.jpg", - "response": "A soccer player wearing a blue uniform with the number 10 on the front.", - "id": 7003 - }, - { - "image_path": "G:\\images\\combined\\03caac31986a9877.jpg", - "response": "A red can of Coca Cola sits on a wooden table.", - "id": 7004 - }, - { - "image_path": "G:\\images\\combined\\03cb96045c9ee90e.jpg", - "response": "A street scene with a crosswalk and traffic lights. There is a building on the corner and a blue and white street sign above the crosswalk. There are three traffic lights hanging from a wire and a row of three traffic lights on a pole.", - "id": 7005 - }, - { - "image_path": "G:\\images\\combined\\03cc01bb5d315b9f.jpg", - "response": "a yellow sign (446,156),(732,478)", - "id": 7006 - }, - { - "image_path": "G:\\images\\combined\\03ccab81d456b73f.jpg", - "response": "A large flat screen TV sitting on a TV stand.", - "id": 7007 - }, - { - "image_path": "G:\\images\\combined\\03cd4987c51f2db9.jpg", - "response": "An image of a clock with several people walking around it.", - "id": 7008 - }, - { - "image_path": "G:\\images\\combined\\03ce438563e99922.jpg", - "response": "A person is holding a can of Kirin lager beer in an airport waiting area. The area has several red chairs and a TV mounted on the wall.", - "id": 7009 - }, - { - "image_path": "G:\\images\\combined\\03ce7772b1c4ec3b.jpg", - "response": "A woman wearing glasses looking at a book on a shelf.", - "id": 7010 - }, - { - "image_path": "G:\\images\\combined\\03ced1a06a5b0d1d.jpg", - "response": "The image is the cover of the children's book Mr. Popper's Penguins. The book is written by Richard and Florence Atwater and illustrated by Robert Lawson. The cover features an illustration of a man standing in front of a large group of penguins. The man is wearing a suit and a top hat, and he is holding a pair of binoculars. The background of the cover is a light blue color.", - "id": 7011 - }, - { - "image_path": "G:\\images\\combined\\03cf788293866e59.jpg", - "response": "The image features two cellphones laying next to each other on a white surface. The left one is a purple-gray device with a camera lens and a small metallic sphere on the back. The right one is a black device with the letters BQ on the back.", - "id": 7012 - }, - { - "image_path": "G:\\images\\combined\\03d06f43f387c3c7.jpg", - "response": "A bottle of white wine by the name of Clos Culombu sits on a wooden table. The label is white with a coat of arms on it. The wine bottle is closed with a twist off cap.", - "id": 7013 - }, - { - "image_path": "G:\\images\\combined\\03d0e5cf77a6f7da.jpg", - "response": "An airplane is sitting on the runway at the airport.", - "id": 7014 - }, - { - "image_path": "G:\\images\\combined\\03d23fa183861516.jpg", - "response": "A collage of two photos, both of which show a gold pocket watch. The watch has a chain attached to it and is open. The front of the watch has a decorative emblem on it. The watch is open and shows the time to be 8:15.", - "id": 7015 - }, - { - "image_path": "G:\\images\\combined\\03d361a362d162c7.jpg", - "response": "A dolly stacked with boxes of windshield wipers.", - "id": 7016 - }, - { - "image_path": "G:\\images\\combined\\03d3665bb6b8cd0e.jpg", - "response": "A baseball player sitting in a chair with the number 20 on his jersey. Another player is standing behind him and talking to him. There are other players standing and sitting in the dugout.", - "id": 7017 - }, - { - "image_path": "G:\\images\\combined\\03d44bd43c7da67f.jpg", - "response": "A desktop computer screen with a variety of different web pages open.", - "id": 7018 - }, - { - "image_path": "G:\\images\\combined\\03d472d99e06db91.jpg", - "response": "A collection of five different kinds of alcohol, possibly whiskeys, are lined up on a table.", - "id": 7019 - }, - { - "image_path": "G:\\images\\combined\\03d475b890e608d7.jpg", - "response": "A yellow school bus parked in a fenced in yard.", - "id": 7020 - }, - { - "image_path": "G:\\images\\combined\\03d537c3d5393594.jpg", - "response": "A digital scale with the number 01 on the screen.", - "id": 7021 - }, - { - "image_path": "G:\\images\\combined\\03d55299d9f9bf52.jpg", - "response": "A fenced in yard with a yellow school bus parked inside.", - "id": 7022 - }, - { - "image_path": "G:\\images\\combined\\03d5f220ff6cb3cc.jpg", - "response": "An opened container of Mountain Dew lip balm sitting on a couch next to a lip balm container with a silver lid.", - "id": 7023 - }, - { - "image_path": "G:\\images\\combined\\03d63d8dc12c8948.jpg", - "response": "An open book with text on it.", - "id": 7024 - }, - { - "image_path": "G:\\images\\combined\\03d7b47ce066b44f.jpg", - "response": "A folded grey t-shirt with red writing on it.", - "id": 7025 - }, - { - "image_path": "G:\\images\\combined\\03d7d53b4dc7a464.jpg", - "response": "A fireplace with a mantle decorated for Halloween. The mantle has cobwebs, skulls, and other spooky decorations. There is a large clock above the mantle and a banner above that says \"Happy Halloween\". There are also some potted plants on the mantle.", - "id": 7026 - }, - { - "image_path": "G:\\images\\combined\\03d881fe27ad3787.jpg", - "response": "A silver creamer with the letters USN on the front.", - "id": 7027 - }, - { - "image_path": "G:\\images\\combined\\03d905bf4fef974b.jpg", - "response": "A toy car is shown in the image. It is a Hot Wheels car and is grey in color. The car has a sleek design with a black roof and red accents on the side. The car has a black stripe on the side and the number 55 is on the door. The car has a black roll bar and black wheels with white rims. The background of the image is white.", - "id": 7028 - }, - { - "image_path": "G:\\images\\combined\\03d924d98a91fe21.jpg", - "response": "A person holding a bottle of Grand Cru.", - "id": 7029 - }, - { - "image_path": "G:\\images\\combined\\03d93d295ceb1b4b.jpg", - "response": "A man sits at a table with a glass of beer in front of him. The beer is a brand called Redhook ESB.", - "id": 7030 - }, - { - "image_path": "G:\\images\\combined\\03da08d40082ee4a.jpg", - "response": "A Yves Saint Laurent compact sits on a white counter. In front of it is a pink square of soap. The compact is wrapped in a black and gold foil. The soap is also wrapped in a plastic wrapper.", - "id": 7031 - }, - { - "image_path": "G:\\images\\combined\\03db92d831e995f0.jpg", - "response": "A car with a license plate that says URBNRL.", - "id": 7032 - }, - { - "image_path": "G:\\images\\combined\\03dc54f3bddd5a57.jpg", - "response": "A display of Revlon Age Defying products, including a bottle and a box, are on a shelf in a store.", - "id": 7033 - }, - { - "image_path": "G:\\images\\combined\\03dccd04e88096dc.jpg", - "response": "A Republic airways airplane is sitting on the runway.", - "id": 7034 - }, - { - "image_path": "G:\\images\\combined\\03dcd57a58305caa.jpg", - "response": "A person holding a pile of coins in front of a machine that says \"Not in Service.\"", - "id": 7035 - }, - { - "image_path": "G:\\images\\combined\\03dcf03028b55e8e.jpg", - "response": "A man wearing a black shirt is standing in front of a large screen. He is gesturing with his hands while speaking. There is a chair next to the man and another one behind him. A clock is mounted on the wall above the man. A laptop is open on a table in front of the man. There are also two cups on the table.", - "id": 7036 - }, - { - "image_path": "G:\\images\\combined\\03dd79e2b71d629b.jpg", - "response": "A calculator that is in a box and the other one is not in a box.", - "id": 7037 - }, - { - "image_path": "G:\\images\\combined\\03de9e234b731b65.jpg", - "response": "A can of food that says \"Cucina\" on it.", - "id": 7038 - }, - { - "image_path": "G:\\images\\combined\\03e02116803b7581.jpg", - "response": "a small green sprout on a red background next to a black measuring tape", - "id": 7039 - }, - { - "image_path": "G:\\images\\combined\\03e1a095bd0af644.jpg", - "response": "A train on the tracks near a forest.", - "id": 7040 - }, - { - "image_path": "G:\\images\\combined\\03e1f9d4a0d592ba.jpg", - "response": "A collection of glass soda bottles on a wooden table.", - "id": 7041 - }, - { - "image_path": "G:\\images\\combined\\03e32a19f90c08b9.jpg", - "response": "an open book with a picture of a man on a horse and the title the Iliad for Boys and Girls", - "id": 7042 - }, - { - "image_path": "G:\\images\\combined\\03e38d16213c4067.jpg", - "response": "A woman is being held on the ground by two police officers.", - "id": 7043 - }, - { - "image_path": "G:\\images\\combined\\03e3bb402e4c2640.jpg", - "response": "A poster for the Revue Fin de Si\u00e8cle, showing a woman in a short dress holding a red umbrella and a sword.", - "id": 7044 - }, - { - "image_path": "G:\\images\\combined\\03e4f5f996475e55.jpg", - "response": "A keyboard with green and yellow keycaps.", - "id": 7045 - }, - { - "image_path": "G:\\images\\combined\\03e506492b162fc5.jpg", - "response": "a silver and black rolex watch on a black and silver stand", - "id": 7046 - }, - { - "image_path": "G:\\images\\combined\\03e6628be52077aa.jpg", - "response": "A bottle of beer next to a glass of beer on a wooden table.", - "id": 7047 - }, - { - "image_path": "G:\\images\\combined\\03e733a91fe4a0fc.jpg", - "response": "A woman wearing white is drinking from a water bottle.", - "id": 7048 - }, - { - "image_path": "G:\\images\\combined\\03e77cd31f9d6306.jpg", - "response": "In the image, a group of people are playing volleyball on a sand court. There are two teams present, one wearing green shirts and the other team wearing blue shirts. One of the players in the green team is hitting the volleyball, which is currently in the air, with his hand. The other players are spread out on the court, ready to respond to the play.", - "id": 7049 - }, - { - "image_path": "G:\\images\\combined\\03e7b2332a8bcd63.jpg", - "response": "A black Rover car parked on the grass with a fence behind it.", - "id": 7050 - }, - { - "image_path": "G:\\images\\combined\\03e97e53b85a1b59.jpg", - "response": "A black and white photo of an old fashioned alarm clock. The clock is in the foreground of the image and is set to 5:50. The background is blurry and features a glass of wine.", - "id": 7051 - }, - { - "image_path": "G:\\images\\combined\\03ea448226c3648f.jpg", - "response": "A man wearing a white t-shirt with a picture of a man on it.", - "id": 7052 - }, - { - "image_path": "G:\\images\\combined\\03eaeff92c411541.jpg", - "response": "A baseball player wearing a blue and white uniform is throwing a ball on a baseball field.", - "id": 7053 - }, - { - "image_path": "G:\\images\\combined\\03eb661090d097e2.jpg", - "response": "A book cover with a picture of a naked rear end and hands.", - "id": 7054 - }, - { - "image_path": "G:\\images\\combined\\03ed7130efdcc73a.jpg", - "response": "A public transit bus parked at a bus stop.", - "id": 7055 - }, - { - "image_path": "G:\\images\\combined\\03ee1c3f5cdc8110.jpg", - "response": "A white and blue airplane on a runway.", - "id": 7056 - }, - { - "image_path": "G:\\images\\combined\\03ee24d8f8fd2997.jpg", - "response": "A fridge filled with many different types of beer.", - "id": 7057 - }, - { - "image_path": "G:\\images\\combined\\03ef0d7a3bd80537.jpg", - "response": "A red van with a black top and a white license plate that says W249 MTT is parked on the street. There is a brick building behind the van. There is a car parked to the right of the van. There is a planter with a plant in front of the building. There is a fire hydrant behind the van.", - "id": 7058 - }, - { - "image_path": "G:\\images\\combined\\03ef38f8a118d5a2.jpg", - "response": "A white board with a lot of writing on it in a foreign language.", - "id": 7059 - }, - { - "image_path": "G:\\images\\combined\\03f1e99749c2c459.jpg", - "response": "A man in a suit standing at a podium with a microphone in front of him.", - "id": 7060 - }, - { - "image_path": "G:\\images\\combined\\03f2254ef7c7b326.jpg", - "response": "A silver and gold Citizen watch with a white face.", - "id": 7061 - }, - { - "image_path": "G:\\images\\combined\\03f29cf338ccbc9c.jpg", - "response": "An orange and white VW van is parked on the grass.", - "id": 7062 - }, - { - "image_path": "G:\\images\\combined\\03f3b58bb0640422.jpg", - "response": "A white Samsung Galaxy Note II smartphone.", - "id": 7063 - }, - { - "image_path": "G:\\images\\combined\\03f3ed4c05b799d5.jpg", - "response": "A couple of trash cans sitting on the sidewalk.", - "id": 7064 - }, - { - "image_path": "G:\\images\\combined\\03f668572ba2e0d2.jpg", - "response": "A white police truck with red and green stripes is parked on the side of the road.", - "id": 7065 - }, - { - "image_path": "G:\\images\\combined\\03f69a81801d5fd7.jpg", - "response": "an airplane on the runway(193,120),(963,723)", - "id": 7066 - }, - { - "image_path": "G:\\images\\combined\\03f6d60b8a017ef7.jpg", - "response": "A black and silver cellphone sitting on a white counter.", - "id": 7067 - }, - { - "image_path": "G:\\images\\combined\\03fca35cfc0ca9a3.jpg", - "response": "The image features two identical glasses sitting side by side. The glasses are clear and made of glass. They are both empty and have a simple design with no decorations. The glasses are large and have rounded edges. They are shaped like a beaker and have a wide base and a smaller opening at the top. The glasses are labeled with a scale that goes from left to right, labeled as follows: denial, anger, bargaining, depression, and acceptance.", - "id": 7068 - }, - { - "image_path": "G:\\images\\combined\\03fde5bfd1507873.jpg", - "response": "A bottle of JosephsBrau Vienna Style Lager next to a filled glass of beer.", - "id": 7069 - }, - { - "image_path": "G:\\images\\combined\\03fef707e1f28f43.jpg", - "response": "A bottle of Chateau du Pape Reserve 2006 sits on a table next to a wine glass.", - "id": 7070 - }, - { - "image_path": "G:\\images\\combined\\0400427db40fc372.jpg", - "response": "The image shows a group of women wearing blue and white uniforms, huddled together and celebrating. They are all softball players and seem to be having a great time.", - "id": 7071 - }, - { - "image_path": "G:\\images\\combined\\0400dd1a4bb1cb4c.jpg", - "response": "The image shows a store shelf filled with a variety of bottles of beer. There are at least twelve bottles visible, arranged in three rows of four bottles each, and two additional bottles on the far right. The bottles come in different shapes and sizes, and some are labeled with orange or purple stickers. The bottles are displayed on a white shelf, and the background of the store is white and gray. There are also several price tags in front of the bottles, indicating their prices.", - "id": 7072 - }, - { - "image_path": "G:\\images\\combined\\04011c8c335c4b67.jpg", - "response": "A person holding a white iPhone with a Mophie case on it.", - "id": 7073 - }, - { - "image_path": "G:\\images\\combined\\04015f9a28fd86a6.jpg", - "response": "A box of Teapigs Liquorice and Peppermint tea temples on a table.", - "id": 7074 - }, - { - "image_path": "G:\\images\\combined\\04035c9639831242.jpg", - "response": "A desk with three laptops on it, all next to each other.", - "id": 7075 - }, - { - "image_path": "G:\\images\\combined\\0405fb37c9c7d955.jpg", - "response": "A man stands on a platform next to a train.", - "id": 7076 - }, - { - "image_path": "G:\\images\\combined\\040639f9fd39bd13.jpg", - "response": "A woman and a child in a room.", - "id": 7077 - }, - { - "image_path": "G:\\images\\combined\\0406f8dafc4baa45.jpg", - "response": "A black and white ad for Eterna watches.", - "id": 7078 - }, - { - "image_path": "G:\\images\\combined\\04073815643bb675.jpg", - "response": "A table with four soda bottles on it.", - "id": 7079 - }, - { - "image_path": "G:\\images\\combined\\04076b0e2372aafb.jpg", - "response": "A woman with a cast on her leg sitting in a shopping cart in a store.", - "id": 7080 - }, - { - "image_path": "G:\\images\\combined\\040834237a7aab4a.jpg", - "response": "A large clock with roman numerals and a sun symbol in the middle.", - "id": 7081 - }, - { - "image_path": "G:\\images\\combined\\040867934b54eefb.jpg", - "response": "A busy street scene at night with a yellow taxi cab driving by.", - "id": 7082 - }, - { - "image_path": "G:\\images\\combined\\0409b75adb5a783e.jpg", - "response": "A man standing behind a table with several bottles of wine on it.", - "id": 7083 - }, - { - "image_path": "G:\\images\\combined\\040b4cd0a57ea8c3.jpg", - "response": "a man standing in a boxing ring holding a championship belt", - "id": 7084 - }, - { - "image_path": "G:\\images\\combined\\040c21014043b7c5.jpg", - "response": "An old ambulance is parked in a field with many other old cars.", - "id": 7085 - }, - { - "image_path": "G:\\images\\combined\\040d25a99e7b675b.jpg", - "response": "A white Jesus Kingdom City van is parked in front of a brick building. The building has a wooden door and a large sign on the brick wall. There is a bench in front of the building and a person standing on the sidewalk.", - "id": 7086 - }, - { - "image_path": "G:\\images\\combined\\040dd83167dc3a07.jpg", - "response": "A large scoreboard at a baseball stadium shows the player Miguel Cabrera.", - "id": 7087 - }, - { - "image_path": "G:\\images\\combined\\040e0ec637e99ec1.jpg", - "response": "A large electronic scoreboard displays the final round of a golf tournament.", - "id": 7088 - }, - { - "image_path": "G:\\images\\combined\\040f1c32ca5ee836.jpg", - "response": "A man in a black shirt is presenting an award to a man in a blue and white uniform.", - "id": 7089 - }, - { - "image_path": "G:\\images\\combined\\040f95aa4701b2ef.jpg", - "response": "A basketball game is being played in a dark arena. The scoreboard is large and is displaying the game's score. There are two players on the court, one in white and one in purple. The white player is holding a basketball. The crowd is watching the game intently. There are many people in the arena, filling the seats and standing in the aisles. The arena is dark, but there are bright lights shining on the court.", - "id": 7090 - }, - { - "image_path": "G:\\images\\combined\\041012646c9270ac.jpg", - "response": "A yellow sign that says End Daytime Headlight Use Thank You.", - "id": 7091 - }, - { - "image_path": "G:\\images\\combined\\041026a62ca6eb2e.jpg", - "response": "A pink bus driving down a street next to a subway.", - "id": 7092 - }, - { - "image_path": "G:\\images\\combined\\041064166ed07b11.jpg", - "response": "A store display for TNT fireworks. There are two large boxes of fireworks, one on the left and one on the right. The left box is mostly red and says \"Celebrate\" in red and yellow. The right box is red, white, and blue and says \"TNT\" in red and blue. There is a large TNT sign above the boxes. In the background, there are other boxes of fireworks and a sign for Fred Meyer.", - "id": 7093 - }, - { - "image_path": "G:\\images\\combined\\041113a702226b63.jpg", - "response": " Non league football match(11,37),(982,978). Ball(71,791),(171,926) is on the ground.", - "id": 7094 - }, - { - "image_path": "G:\\images\\combined\\04124002d8fe8d90.jpg", - "response": "A baseball game is being played in a stadium with many fans in the stands. The players are on the field and one is at third base.", - "id": 7095 - }, - { - "image_path": "G:\\images\\combined\\0412e8d3620f5239.jpg", - "response": "A man standing in front of a white board giving a presentation.", - "id": 7096 - }, - { - "image_path": "G:\\images\\combined\\041367a6f6a5920a.jpg", - "response": "A bookshelf with many books on it.", - "id": 7097 - }, - { - "image_path": "G:\\images\\combined\\0413b2bcad5b3579.jpg", - "response": "A man looking at a computer screen with a list of documents on it.", - "id": 7098 - }, - { - "image_path": "G:\\images\\combined\\0415157b045c6320.jpg", - "response": "a tv screen with a cartoon on it that says ANA Happy Holidays", - "id": 7099 - }, - { - "image_path": "G:\\images\\combined\\0415c220e83ffad6.jpg", - "response": "A glass of beer next to a bottle of beer on a wooden table.", - "id": 7100 - }, - { - "image_path": "G:\\images\\combined\\04161f5b9aa29cdb.jpg", - "response": "A woman wearing a white shirt and black pants is standing in a store.", - "id": 7101 - }, - { - "image_path": "G:\\images\\combined\\04164838a35c4dad.jpg", - "response": "A bottle of Hoegaarden next to a glass filled with the beer.", - "id": 7102 - }, - { - "image_path": "G:\\images\\combined\\041794861439fbc4.jpg", - "response": "a book with a cover of people on a boat at night", - "id": 7103 - }, - { - "image_path": "G:\\images\\combined\\04189b11591ccab5.jpg", - "response": "A poster for an event called Focus Left. The main text is in white and is set against a red background. The text is in the shape of a camera lens. The word Focus is on the left and the word Left is on the right. The event is called The Daches and is taking place on Tuesday November 9th at 7:30pm. There is a phone number and an email address for more information. The phone number is 0141 552 1000 and the email address is www.thearches.co.uk. There is also a platform for short filmmakers to showcase their work focusing on films which use elements of live performance along with the screening.", - "id": 7104 - }, - { - "image_path": "G:\\images\\combined\\0419c0921285f053.jpg", - "response": "A blue bus is parked in a parking lot with other buses.", - "id": 7105 - }, - { - "image_path": "G:\\images\\combined\\041b75da34d147c1.jpg", - "response": "A brick road with two trash bins sitting on it. The trash bins are white and have black graffiti on them. One of the trash bins has the words \"I'm With Stupid\" written on it.", - "id": 7106 - }, - { - "image_path": "G:\\images\\combined\\041b97c22e471715.jpg", - "response": "A man and a woman are on the cover of a magazine called Detective Stories. The woman is wearing a yellow dress and has red hair. She is on top of the man, who is wearing an orange jacket and a blue tie. They both have expressions of intense fear. The man is holding a gun in each hand. The gun in his right hand is pointed at the woman. The gun in his left hand is pointed at the ground. The magazine is priced at 25 cents.", - "id": 7107 - }, - { - "image_path": "G:\\images\\combined\\041bf5b780cadd64.jpg", - "response": "A painting of a man sitting on a bench with a dog, both fishing on a lake.", - "id": 7108 - }, - { - "image_path": "G:\\images\\combined\\041daf1caca34a6a.jpg", - "response": "The image shows a soccer match in progress with a crowd of fans watching the game. The players are wearing red and white uniforms and are on the field playing soccer.", - "id": 7109 - }, - { - "image_path": "G:\\images\\combined\\041dbf701bfdcf90.jpg", - "response": "In the image, two basketball players are competing on the court. One player is wearing a white jersey and is dribbling a basketball while the other player is trying to block him. Both players have numbers on their backs, with the player in the white jersey having the number 35 and the player in the black jersey having the number 15.", - "id": 7110 - }, - { - "image_path": "G:\\images\\combined\\041ec086412e6d2f.jpg", - "response": "A close up of a cell phone and a sim card.", - "id": 7111 - }, - { - "image_path": "G:\\images\\combined\\041fdbfffee6abf5.jpg", - "response": "A pair of Casio Baby-G watches, one in yellow and one in pink, are shown on a wooden table. The yellow watch has a digital display with a white face and is covered in a light yellow band. The pink watch has a digital display with a white face and is covered in a light pink band. Both watches have the Casio logo on the face of the watch.", - "id": 7112 - }, - { - "image_path": "G:\\images\\combined\\04200d2abd0d0ad4.jpg", - "response": "Three people are sitting at a table.", - "id": 7113 - }, - { - "image_path": "G:\\images\\combined\\0420cc0fd3d5c48b.jpg", - "response": "A football locker room with a yellow and black uniform on a hook, a helmet on a hook above it, and a bench with more uniforms and shoes on it.", - "id": 7114 - }, - { - "image_path": "G:\\images\\combined\\0421017b27bf1b7e.jpg", - "response": "A table with a plate of food, a glass of beer, and a bottle of beer on it.", - "id": 7115 - }, - { - "image_path": "G:\\images\\combined\\04227bf3dded146f.jpg", - "response": "A vintage ad for a motorhome with two models, one 21 feet and one 27 feet. The text is black and white.", - "id": 7116 - }, - { - "image_path": "G:\\images\\combined\\0423c72e589a6638.jpg", - "response": "A man holding a cell phone in one hand and has a piece of candy in his mouth that says \"Text Me\" on it.", - "id": 7117 - }, - { - "image_path": "G:\\images\\combined\\0423d0352b712774.jpg", - "response": "A man wearing a red shirt and a man wearing a black sweatshirt are sitting in front of a computer screen. The computer screen is on and features the Google logo. There is a book next to the computer screen and a remote control in front of the men.", - "id": 7118 - }, - { - "image_path": "G:\\images\\combined\\0424168372e0a1b3.jpg", - "response": "A book with a red cover and the title \"Great Truths From God's Word\" sits open on a table. The book is about Systematic Theology and was written by Dr. Harold Willmington.", - "id": 7119 - }, - { - "image_path": "G:\\images\\combined\\0427bfe728325752.jpg", - "response": "A Coca-Cola delivery truck is parked on the side of a busy street.", - "id": 7120 - }, - { - "image_path": "G:\\images\\combined\\0429f84e64fde002.jpg", - "response": "A close up of three wine bottles on a table.", - "id": 7121 - }, - { - "image_path": "G:\\images\\combined\\042a6c10ce6fc9bc.jpg", - "response": "A person is holding an iPhone in their hand.", - "id": 7122 - }, - { - "image_path": "G:\\images\\combined\\042eb9b918de8046.jpg", - "response": "A sign on a pole warning against drinking alcohol in the designated area.", - "id": 7123 - }, - { - "image_path": "G:\\images\\combined\\042f7a2bca5d443b.jpg", - "response": "In the image there is a black smartphone and a blue stylus pen. The smartphone is an iPhone 4S and it is laying on its side. The stylus pen has a white body with a blue tip. It also has a rubber end and a cable attached to it. The cable is black and has a white ring at the end. The whole scene is set on a white background.", - "id": 7124 - }, - { - "image_path": "G:\\images\\combined\\04300b302e117981.jpg", - "response": "The image shows a collection of stop signs lined up next to each other. There are eight stop signs in total, and they are all red with white lettering. Some of the signs have black poles, while others have white poles. The signs are displayed in front of a large building and some rocks.", - "id": 7125 - }, - { - "image_path": "G:\\images\\combined\\0430a0f820c32887.jpg", - "response": "The image is a black and white photograph of a man in a suit handing a bag to a pilot of a small propeller plane. The plane says \"First Flight Air Mail\" on the side. There are two other men standing next to the pilot, and another man standing further back.", - "id": 7126 - }, - { - "image_path": "G:\\images\\combined\\04313abab1b6b4f2.jpg", - "response": "The image shows a baseball player wearing a blue uniform standing on a baseball field. The player is holding a baseball glove and is talking to another man who is wearing sunglasses. The baseball field has a grassy area and a dirt infield. There are several people scattered around the field, some of them are standing and some are sitting. A few baseballs are also visible in the scene.", - "id": 7127 - }, - { - "image_path": "G:\\images\\combined\\043155703315ea46.jpg", - "response": "A billboard with a man holding a microphone on it.", - "id": 7128 - }, - { - "image_path": "G:\\images\\combined\\0431ba997afecda0.jpg", - "response": "A busy city street with tall buildings and palm trees lining the sidewalks.", - "id": 7129 - }, - { - "image_path": "G:\\images\\combined\\043261edd9757b55.jpg", - "response": "A close up of a silver coin with an eagle on it.", - "id": 7130 - }, - { - "image_path": "G:\\images\\combined\\04337563e7b1d18e.jpg", - "response": "A gold and silver Breitling Bentley watch on a dark surface.", - "id": 7131 - }, - { - "image_path": "G:\\images\\combined\\0434ea33f3f9999f.jpg", - "response": "A close up of a laptop with a screen that says \"crazyegg. Ask us about our schwag\"", - "id": 7132 - }, - { - "image_path": "G:\\images\\combined\\0436d85c47531316.jpg", - "response": "A coin with the profile of a man on it.", - "id": 7133 - }, - { - "image_path": "G:\\images\\combined\\0437802ef3dee315.jpg", - "response": "A pair of glasses with the word Hapter on the arm of them.", - "id": 7134 - }, - { - "image_path": "G:\\images\\combined\\043a59888f5bcb7b.jpg", - "response": "A store with wooden shelves filled with cleaning supplies.", - "id": 7135 - }, - { - "image_path": "G:\\images\\combined\\043b0ecb06fe4449.jpg", - "response": "An indoor basketball court with a large crowd of people watching the game. There are confetti and streamers strewn about the arena.", - "id": 7136 - }, - { - "image_path": "G:\\images\\combined\\043b140b45cda4e4.jpg", - "response": "A woman in an orange jacket pointing at a pink wall with the words Cupcake ATM.", - "id": 7137 - }, - { - "image_path": "G:\\images\\combined\\043dfe75266e1ac2.jpg", - "response": "The image shows a close up of the 2006 American Eagle silver dollar. The word \"Liberty\" is visible on the coin, along with the year \"2006\" and the word \"In God We Trust\" are also visible. The coin features an eagle and an olive branch.", - "id": 7138 - }, - { - "image_path": "G:\\images\\combined\\043ee67c7fb0a91a.jpg", - "response": "a desk with a pile of papers and notebooks on it", - "id": 7139 - }, - { - "image_path": "G:\\images\\combined\\04405957b0778fbb.jpg", - "response": "A stop sign on a city street corner at night.", - "id": 7140 - }, - { - "image_path": "G:\\images\\combined\\0440cabbf960c367.jpg", - "response": "A green and white bus is driving down a city street.", - "id": 7141 - }, - { - "image_path": "G:\\images\\combined\\0440e04be90d5cc6.jpg", - "response": "a large sign that reads welcome to Ohio", - "id": 7142 - }, - { - "image_path": "G:\\images\\combined\\04417c13e509eb1e.jpg", - "response": "A man dressed as a security guard is sticking his head out of a red telephone box. He is wearing a black jacket and a black hat. The telephone box is red and has a sign above the window that says \"Telephone\". There is a crowd of people walking around him and the background. Some of them are wearing backpacks. The sky is blue and there are a few clouds.", - "id": 7143 - }, - { - "image_path": "G:\\images\\combined\\0442ab5ce00a56fa.jpg", - "response": "A watch with a sundial on the face of it.", - "id": 7144 - }, - { - "image_path": "G:\\images\\combined\\04433c9aa7f56be9.jpg", - "response": "The image shows two men wearing baseball jerseys, one with the name Gwynn on it and the other with the name Ripken on it. The Gwynn jersey has the number 19 on the back and the Ripken jersey has the number 3 on the back. Both men are wearing their baseball caps backwards. In the background, there are other people wearing baseball caps.", - "id": 7145 - }, - { - "image_path": "G:\\images\\combined\\0443cb53ea29b2b7.jpg", - "response": "Two black android mobile phones side by side. Each phone displays a Google search result for the term \"Organic Farming\". The first phone's search result is for Digital Inspiration's article on the topic. The second phone's search result is for a page from the official website of the Organic Farming Institute.", - "id": 7146 - }, - { - "image_path": "G:\\images\\combined\\0444d36fbc4d2900.jpg", - "response": "A laptop computer screen with a webpage open.", - "id": 7147 - }, - { - "image_path": "G:\\images\\combined\\04460d99f936e5fe.jpg", - "response": " A football player(290,4),(801,999) holding a trophy(34,522),(556,945) with another player(628,99),(995,988) standing next to him", - "id": 7148 - }, - { - "image_path": "G:\\images\\combined\\04482f0e8b1b3ce8.jpg", - "response": "A woman in a kitchen preparing food on a stove.", - "id": 7149 - }, - { - "image_path": "G:\\images\\combined\\044888194de7e558.jpg", - "response": "A black and white cat laying on a bed next to a laptop.", - "id": 7150 - }, - { - "image_path": "G:\\images\\combined\\0448987c2d13acb4.jpg", - "response": "A busy city street at night with cars, bicycles, and pedestrians. There are many traffic lights scattered throughout the scene. A man and woman are walking down the street, the woman is looking at her phone. There are a few taxis on the street. In the background, there are many signs on the buildings.", - "id": 7151 - }, - { - "image_path": "G:\\images\\combined\\0448fd2dcc67e8d7.jpg", - "response": "A brown and white van with graffiti on the side.", - "id": 7152 - }, - { - "image_path": "G:\\images\\combined\\0449a7e52afd9aca.jpg", - "response": "The image shows a large collection of road signs with various destinations and directions. There are at least 13 signs in total, including interstates 421, 87, 78, and 422, as well as a sign for a gas station. The signs are displayed on a pole and are in different shapes and sizes. Some signs have arrows pointing left, right, or both ways. The signs are written in English and provide guidance to drivers on how to get to their desired destinations.", - "id": 7153 - }, - { - "image_path": "G:\\images\\combined\\0449ea367775e166.jpg", - "response": "A dalmatian dog is on the box of a product called Tagg. The dog is wearing the Tagg pet tracker on its collar. The box is on a white surface.", - "id": 7154 - }, - { - "image_path": "G:\\images\\combined\\044b07548ef2fe24.jpg", - "response": "A man wearing a shirt that says SISU is standing in front of a banner that says Hero 2014.", - "id": 7155 - }, - { - "image_path": "G:\\images\\combined\\044fa64086bf0a66.jpg", - "response": "In the image, a man is standing in front of a counter with a large fish on it. He is holding a large knife and is in the process of cutting the fish. The man is wearing a black jacket and a red hat. There are several boxes stacked up next to the counter and a sign above the counter that says \"World Famous\". There are also several signs hanging from the ceiling of the building. In the background, there are other people standing around.", - "id": 7156 - }, - { - "image_path": "G:\\images\\combined\\045003b55a944c47.jpg", - "response": "In the image, there is a young man standing in front of a display of mouthwash at a store. The store is a pharmacy and is called Rexall. The man is smiling and has a camera around his neck. There are multiple bottles of mouthwash on the shelves behind him, including brands like Listerine, Aquafresh, and Scope. Some of the bottles are large and some are smaller. There are also some boxes on the shelves. In the background, there are other people shopping in the store.", - "id": 7157 - }, - { - "image_path": "G:\\images\\combined\\04504c6e68b60236.jpg", - "response": "A counter with two cans of beans on it.", - "id": 7158 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.876efdbcbc3951e21bdb108792a7fe3e.jpg", - "response": "In the image there is a woman pushing a luggage cart with a toddler sitting on top of the luggage. The toddler is wearing a black and white striped hoodie and has a black mask covering their mouth and nose. They also have a yellow raincoat on. The woman pushing the cart has a black mask on and is wearing a tan jacket. She also has a black bag on her shoulder. The cart has two green suitcases and a red one. In the background there is a person walking with a black bag in their hand. To the far left of the image there is a person walking with their hand in their pocket. To the far right of the image there is a grey door with the letters B2c on it.", - "id": 7159 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.c053f5d694db8076b9d9f96e8ad56dbb.jpg", - "response": "A family with a child wearing a face mask, pushing a luggage cart with two suitcases at the airport.", - "id": 7160 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.e9b1368cd7fd34d1f6c56f5fa3173415.jpg", - "response": "A family of three, a mother, father and child, all wearing protective masks, push their luggage through the airport.", - "id": 7161 - }, - { - "image_path": "G:\\images\\combined\\04518da6e76f5cad.jpg", - "response": "A small assortment of Calvin Klein fragrances in a small black box.", - "id": 7162 - }, - { - "image_path": "G:\\images\\combined\\045253fa10edd1a4.jpg", - "response": "A black laptop sitting on top of a pink stand.", - "id": 7163 - }, - { - "image_path": "G:\\images\\combined\\0452b4bb991a1941.jpg", - "response": "A stack of books with German writing on the spines.", - "id": 7164 - }, - { - "image_path": "G:\\images\\combined\\0454857dc644512c.jpg", - "response": "An old bottle of Moth Dep is sitting on a concrete floor. The bottle is almost empty and has a black label with a fly on it. The bottle has a screw on cap and the words Moth Dep are written on the bottle.", - "id": 7165 - }, - { - "image_path": "G:\\images\\combined\\04570d4010283f6b.jpg", - "response": "A highway sign for 97 North and Crater Lake Bend.", - "id": 7166 - }, - { - "image_path": "G:\\images\\combined\\045879ea197c81c0.jpg", - "response": "In the image there is a table with several glasses filled with water and a lit candle in the middle. The candle has an A and O symbol on it.", - "id": 7167 - }, - { - "image_path": "G:\\images\\combined\\045884a48efbc3bc.jpg", - "response": "A computer monitor with Yahoo on the screen.", - "id": 7168 - }, - { - "image_path": "G:\\images\\combined\\0459d85ff87ea745.jpg", - "response": "A display case with a vintage cabbage patch doll sitting next to a book called \"How to Tell Time\". The doll is wearing a pink dress and has brown hair.", - "id": 7169 - }, - { - "image_path": "G:\\images\\combined\\045a2d11c9896291.jpg", - "response": "A chalkboard with writing on it and a drawing of a man.", - "id": 7170 - }, - { - "image_path": "G:\\images\\combined\\045b5f7f4138d671.jpg", - "response": "A sound mixing board with a large number of buttons and switches.", - "id": 7171 - }, - { - "image_path": "G:\\images\\combined\\045beef8d828d4a1.jpg", - "response": "A bottle of A1 steak sauce sitting on a stove next to a bottle of oil.", - "id": 7172 - }, - { - "image_path": "G:\\images\\combined\\045c3bb25c6c57ff.jpg", - "response": "A glass of Alaskan Pale next to a can of Keesari 66 American Pale Ale.", - "id": 7173 - }, - { - "image_path": "G:\\images\\combined\\045c87545dd0a0aa.jpg", - "response": "A woman standing in front of a pile of pizza boxes, holding a slice of pizza.", - "id": 7174 - }, - { - "image_path": "G:\\images\\combined\\045d876ee0128ea2.jpg", - "response": "A baseball player is up to bat on a field.", - "id": 7175 - }, - { - "image_path": "G:\\images\\combined\\045e2f6f4b41fd53.jpg", - "response": "A bottle of Frenchman's beer sits on a counter next to a stove.", - "id": 7176 - }, - { - "image_path": "G:\\images\\combined\\045e6da6fd7f6fb0.jpg", - "response": "A van with a blue and yellow stripe on the side.", - "id": 7177 - }, - { - "image_path": "G:\\images\\combined\\045ebe381e4c7c5a.jpg", - "response": "A record album cover for J.S. Bach (2) Organ Works.", - "id": 7178 - }, - { - "image_path": "G:\\images\\combined\\045f38445261b7b0.jpg", - "response": "A street with cars parked on the side and a white van parked across the street. There are houses on the left side of the street and a fence along the sidewalk.", - "id": 7179 - }, - { - "image_path": "G:\\images\\combined\\045fae80de7ded9e.jpg", - "response": "A person holding a quarter in their hand. The quarter has a picture of a woman on it and the year 1996.", - "id": 7180 - }, - { - "image_path": "G:\\images\\combined\\0460bcb669cfb9c1.jpg", - "response": "A book cover with the title \"D\u00e9civilisation\" written in gold font. The cover is black and white, and features a photo of a road running parallel to the ocean. The road has a white stripe down the middle, and the ocean is a dark grey color. The author's name, Renaud Camus, is written in small white font at the top of the cover.", - "id": 7181 - }, - { - "image_path": "G:\\images\\combined\\0461cddb4f0a6d44.jpg", - "response": "A billboard with a man on it is seen in the distance.", - "id": 7182 - }, - { - "image_path": "G:\\images\\combined\\046210929f901830.jpg", - "response": "A bottle of Smirnoff vodka and a bottle of Kahlua are on a counter next to a glass filled with ice and a brown liquid.", - "id": 7183 - }, - { - "image_path": "G:\\images\\combined\\0463019e2583eaad.jpg", - "response": "a car on a street (92,363),(832,778)", - "id": 7184 - }, - { - "image_path": "G:\\images\\combined\\0464a1dafaa33d6d.jpg", - "response": "A person holding a small box with the Intel NUC logo on it. The box is blue and has a small Intel processor inside.", - "id": 7185 - }, - { - "image_path": "G:\\images\\combined\\046755bc157991a6.jpg", - "response": "A wine tasting event for Cape Mentelle wines.", - "id": 7186 - }, - { - "image_path": "G:\\images\\combined\\04677496a07ad15f.jpg", - "response": "A brown book with gold writing and a gold decorative border.", - "id": 7187 - }, - { - "image_path": "G:\\images\\combined\\04693a7b63e32cf7.jpg", - "response": "a black helmet with a silver emblem on it", - "id": 7188 - }, - { - "image_path": "G:\\images\\combined\\046b85a27098c135.jpg", - "response": "A mural of people planting potatoes on the side of a building.", - "id": 7189 - }, - { - "image_path": "G:\\images\\combined\\046be154a29204c7.jpg", - "response": "A person holding a bottle of Atomic Pale Ale.", - "id": 7190 - }, - { - "image_path": "G:\\images\\combined\\046d67caf75be1d5.jpg", - "response": "A person holding a large screened smart device.", - "id": 7191 - }, - { - "image_path": "G:\\images\\combined\\046d94cb24a190f8.jpg", - "response": "A row of different energy drinks on a blue shelf.", - "id": 7192 - }, - { - "image_path": "G:\\images\\combined\\0471a50503f5bde8.jpg", - "response": "A bottle of Chateau du Croc wine on a wooden table.", - "id": 7193 - }, - { - "image_path": "G:\\images\\combined\\0472e069e5ad0243.jpg", - "response": "A green and silver train is on the tracks.", - "id": 7194 - }, - { - "image_path": "G:\\images\\combined\\04750d0d531a2b89.jpg", - "response": "The soccer teams are lined up before the game.", - "id": 7195 - }, - { - "image_path": "G:\\images\\combined\\0478a1e3f77600df.jpg", - "response": "A group of young men playing basketball in a gym.", - "id": 7196 - }, - { - "image_path": "G:\\images\\combined\\0479b034bd1d95f6.jpg", - "response": "A traffic officer vehicle is parked on the side of the road.", - "id": 7197 - }, - { - "image_path": "G:\\images\\combined\\0479fc1e2ed29881.jpg", - "response": "A colorful passenger bus is driving down the street.", - "id": 7198 - }, - { - "image_path": "G:\\images\\combined\\047a0a11e087b2df.jpg", - "response": "A sign for the Yardley Wood Park & Ride is shown on a pole.", - "id": 7199 - }, - { - "image_path": "G:\\images\\combined\\047a50e898503aae.jpg", - "response": "In the image there is a person wearing a red and black uniform playing soccer. They are kicking a soccer ball on a field.", - "id": 7200 - }, - { - "image_path": "G:\\images\\combined\\047aa1c75ca83280.jpg", - "response": "The Seventh Letter art piece on display next to a graffiti painting of a man with a gun.", - "id": 7201 - }, - { - "image_path": "G:\\images\\combined\\047cbb95fbc2434d.jpg", - "response": "A black and silver watch on a black and green surface.", - "id": 7202 - }, - { - "image_path": "G:\\images\\combined\\047d7772e616cbc5.jpg", - "response": "A large billboard advertisement for a store called Heel Addiction.", - "id": 7203 - }, - { - "image_path": "G:\\images\\combined\\047e5fbd2bf76876.jpg", - "response": "A stamp on a piece of mail with a picture of a man in red handing money to a child.", - "id": 7204 - }, - { - "image_path": "G:\\images\\combined\\047efe4a7f176cca.jpg", - "response": "The back of a car with a license plate that says \"Future Ford\" on it.", - "id": 7205 - }, - { - "image_path": "G:\\images\\combined\\047f55a198882d7c.jpg", - "response": "A city street at night with a tunnel and multiple traffic signs.", - "id": 7206 - }, - { - "image_path": "G:\\images\\combined\\047fc464e23ef72e.jpg", - "response": "The image features a white table covered in various makeup items. There are several red roses scattered around the table, with a cluster of them in the top left corner. A book with the title \"Happy Valentine\" is open on the table, placed in the top right corner. A bouquet of red roses is also present on the table, with a single red rose in the middle of the bouquet.", - "id": 7207 - }, - { - "image_path": "G:\\images\\combined\\04803895d45eab1e.jpg", - "response": "In the image there is a bottle of JAC Vapour Spearmint e-liquid and a silver eGo style atomizer sitting on a white counter. The bottle of e-liquid is open and has a white cap with a plastic dropper. The label on the bottle is white with red and black writing. The atomizer is made of stainless steel and has a window in the side to show the amount of e-liquid inside.", - "id": 7208 - }, - { - "image_path": "G:\\images\\combined\\0480a6034f35ac0a.jpg", - "response": "A white car with a license plate that says UR SO QT.", - "id": 7209 - }, - { - "image_path": "G:\\images\\combined\\0480c08390f4641e.jpg", - "response": "A barrel that says do not enter private property is sitting in a parking lot.", - "id": 7210 - }, - { - "image_path": "G:\\images\\combined\\0482353455f698a0.jpg", - "response": "a man running in a race", - "id": 7211 - }, - { - "image_path": "G:\\images\\combined\\04843fecd87e6e73.jpg", - "response": "An iPod Nano with a screen that says \"Don't steal music.\" in multiple languages.", - "id": 7212 - }, - { - "image_path": "G:\\images\\combined\\0485186acd3d57ed.jpg", - "response": "A person is holding a caliper over a green background. The caliper is measuring a silver ring that is being held. The measurement is 29.4.", - "id": 7213 - }, - { - "image_path": "G:\\images\\combined\\0486a158aa01b171.jpg", - "response": "a drawing of a man and a snowman", - "id": 7214 - }, - { - "image_path": "G:\\images\\combined\\048861579d49cdec.jpg", - "response": "a desk with a coffee mug and a coaster on it.", - "id": 7215 - }, - { - "image_path": "G:\\images\\combined\\04889f6aaddad68f.jpg", - "response": "A store shelf filled with bottles of coke.", - "id": 7216 - }, - { - "image_path": "G:\\images\\combined\\048ae9f1adca1528.jpg", - "response": "A book cover for the novel Manhounds of Antares, by Alan Burt Akers. The cover art is black and red, and depicts a scene of two figures fighting on a ship. One figure is holding a sword and wearing red, while the other is wearing blue and holding a gun. They are both standing on the deck of a ship, which has a ladder going up to a cave entrance. The sky above is yellow and orange.", - "id": 7217 - }, - { - "image_path": "G:\\images\\combined\\048e6f8bd215e50c.jpg", - "response": "A stop sign and a street sign are shown in the dark.", - "id": 7218 - }, - { - "image_path": "G:\\images\\combined\\0490f2e15002050a.jpg", - "response": "A counter with a variety of ingredients including flour, sugar, eggs, butter, and vanilla extract.", - "id": 7219 - }, - { - "image_path": "G:\\images\\combined\\04915967aaf19826.jpg", - "response": "A kitchen with a sink full of dishes, a counter with a drying rack and a couple of bowls.", - "id": 7220 - }, - { - "image_path": "G:\\images\\combined\\0491be7da91762ca.jpg", - "response": "A cardboard box with a sticker that says fragile on it.", - "id": 7221 - }, - { - "image_path": "G:\\images\\combined\\0491f25623dc825e.jpg", - "response": "A poster on a wall that says 2011 March 11 on it.", - "id": 7222 - }, - { - "image_path": "G:\\images\\combined\\04924b243ce19811.jpg", - "response": "A poster for Mobilcom Debietel is displayed on a wall.", - "id": 7223 - }, - { - "image_path": "G:\\images\\combined\\0492e3bd20fbe0eb.jpg", - "response": "A blue clock with a white floral pattern around the outside. The face of the clock is decorated with blue flowers. The hands of the clock are black with a red second hand.", - "id": 7224 - }, - { - "image_path": "G:\\images\\combined\\0492ee5ac9a69515.jpg", - "response": "A silver and orange airplane with a propeller is on the runway.", - "id": 7225 - }, - { - "image_path": "G:\\images\\combined\\04941d8b535f05df.jpg", - "response": "a man in a car(469,720),(586,905)", - "id": 7226 - }, - { - "image_path": "G:\\images\\combined\\0494e96d9c3423fe.jpg", - "response": "A man and a child are standing next to a parking sign. The child is pointing at the sign. The sign is black and white and has a large P on it. The man is wearing a leather jacket. There are motorcycles in the background.", - "id": 7227 - }, - { - "image_path": "G:\\images\\combined\\0494ee3501adf70e.jpg", - "response": "A large screen television showing a group of men wearing England shirts.", - "id": 7228 - }, - { - "image_path": "G:\\images\\combined\\049503c6252a8e6c.jpg", - "response": "On the wall, there are two clocks. One is labeled London and the other is labeled Providence. The clock labeled London is on the right side of the wall.", - "id": 7229 - }, - { - "image_path": "G:\\images\\combined\\0496755d121f3a3e.jpg", - "response": "A black and white photo of a Sapporo beer can.", - "id": 7230 - }, - { - "image_path": "G:\\images\\combined\\049a096238c284df.jpg", - "response": "An indoor shopping mall with clothing stores on both sides of the aisle.", - "id": 7231 - }, - { - "image_path": "G:\\images\\combined\\049a18ff9fabd09a.jpg", - "response": "A billboard with a message written in Spanish.", - "id": 7232 - }, - { - "image_path": "G:\\images\\combined\\049aa723a278c2aa.jpg", - "response": "The image features a VW bus parked on a grassy field. The bus is light blue and white in color and has a grill guard attached to the front. The grill guard has the letters \"VW\" on it and the whole bus has a classic look.", - "id": 7233 - }, - { - "image_path": "G:\\images\\combined\\049bf07ea3c99db0.jpg", - "response": "A painting of a man in a field with a house in the background.", - "id": 7234 - }, - { - "image_path": "G:\\images\\combined\\049bfe70a1097e0c.jpg", - "response": "A blue and white Stagecoach bus is parked in a parking lot.", - "id": 7235 - }, - { - "image_path": "G:\\images\\combined\\049ceb560923aedf.jpg", - "response": "The image shows a table with a glass top. On the table are several objects including a framed picture of people, a silver and gold object, a silver cup, a black and gold object, a black and gold picture frame, a gold medallion, a gold and red medallion, a gold and red medallion with a black center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion", - "id": 7236 - }, - { - "image_path": "G:\\images\\combined\\049d0f7fef4ebdf7.jpg", - "response": "A female model is holding up three LG Optimus Vu II Value Pack smartphones in front of a white LG Optimus Vu II Value Pack display box.", - "id": 7237 - }, - { - "image_path": "G:\\images\\combined\\049d516ccb244077.jpg", - "response": "The image shows a group of cheerleaders standing together on a basketball court. They are all wearing blue and yellow uniforms. In the background, there are several people watching the cheerleaders from the sidelines.", - "id": 7238 - }, - { - "image_path": "G:\\images\\combined\\049da1f4b3d6f2fe.jpg", - "response": "The image is the cover of an album titled \"Jackie's Bag\" by Jackie McLean. The cover is orange and has the name of the artist and the album title written in black font. There is an orange envelope with two orange buttons on it, and the name of the album is written on it. The background of the cover is a brown paper bag.", - "id": 7239 - }, - { - "image_path": "G:\\images\\combined\\049f65a732be2e93.jpg", - "response": "In the image there is a woman standing behind a counter at a pharmacy. She is wearing a red and white shirt and is smiling. In front of her are packages of allergy medicine. To the left of the woman is a sign that says \"Allergies? We'll help you breathe easy\" and encourages people to talk to the pharmacist about the latest treatments. To the right of the woman is a white wall and behind it is a red wall with the Target Pharmacy logo on it. The wall also has a white banner advertising the pharmacy's allergy relief services.", - "id": 7240 - }, - { - "image_path": "G:\\images\\combined\\04a101282a2e1b04.jpg", - "response": "A book with a picture of a sea lion on the cover.", - "id": 7241 - }, - { - "image_path": "G:\\images\\combined\\04a1034251d605e3.jpg", - "response": "A computer screen with a man on it.", - "id": 7242 - }, - { - "image_path": "G:\\images\\combined\\04a575f307c7b89a.jpg", - "response": "The image features a table with a wooden barrel on it. There are six bottles of wine on the barrel, with some placed on top and some on the side. The wine bottles have white labels and are of various sizes. The largest bottle is on the right side of the barrel. The wine bottles are displayed near a window and a door.", - "id": 7243 - }, - { - "image_path": "G:\\images\\combined\\04a605c2aa93addc.jpg", - "response": "A close up of a smartphone on a wooden table. The phone is a bright yellow and is facing the camera. The screen of the phone displays a number of colorful icons. From left to right, the icons are a cloud with a sun and a moon, a trophy, a newspaper, a camera, and a speech bubble with the word \"Skype\" in it.", - "id": 7244 - }, - { - "image_path": "G:\\images\\combined\\04a723f057abeb9d.jpg", - "response": "A yellow double decker bus is driving down the street at night. There are two people walking on the sidewalk and a car with its headlights on in the background. The bus has the words \"Aero King\" written on it.", - "id": 7245 - }, - { - "image_path": "G:\\images\\combined\\04ab31205c0ffdf8.jpg", - "response": "An open box for an Airport Extreme is sitting on a wooden table. The box is white and has a blue wifi symbol in the top left corner. The word Airport is in black bold font and the word Extreme is in smaller black font. Underneath the logo it says 802.11n Wi-Fi.", - "id": 7246 - }, - { - "image_path": "G:\\images\\combined\\04ad53753c4150ee.jpg", - "response": "An orange and white van with the word Devon on it.", - "id": 7247 - }, - { - "image_path": "G:\\images\\combined\\04ae518ff420f0bc.jpg", - "response": "A baseball player in a black jersey is winding up to pitch a ball on a baseball field.", - "id": 7248 - }, - { - "image_path": "G:\\images\\combined\\04b03f7790c03aec.jpg", - "response": "a bulletin board with many different posters on it", - "id": 7249 - }, - { - "image_path": "G:\\images\\combined\\04b04e347704f9c7.jpg", - "response": "A red, white and blue poster advertising the City of New York's Municipal Airports.", - "id": 7250 - }, - { - "image_path": "G:\\images\\combined\\04b19b4fd4bb89e7.jpg", - "response": "A black and white image of a watch with the words \"PETITE FLEUR\" on the bottom right corner.", - "id": 7251 - }, - { - "image_path": "G:\\images\\combined\\04b1e42b4117a914.jpg", - "response": "The image shows a large group of taxi cabs parked next to each other on a city street. The cabs are of various colors, including yellow, orange, and white, and they are parked in a line. Some of the cabs have signs on their roofs, and one of them says \"union dad.\" There are also a few people standing around the parked cabs, although they are less prominent in the image. In the background, there are a few other vehicles, including a truck and a bus, as well as some buildings and a tree.", - "id": 7252 - }, - { - "image_path": "G:\\images\\combined\\04b2ba30ae5de5db.jpg", - "response": "A glass of Guinness beer sits on a table. The beer has a thick, foamy head floating on top. The glass is dark and has the Guinness logo on it.", - "id": 7253 - }, - { - "image_path": "G:\\images\\combined\\04b2c3f5c2ac33a8.jpg", - "response": "A man wearing a blue baseball jersey is getting ready to throw a ball. He is wearing a baseball glove and a blue hat. He is standing in front of a fence and a building.", - "id": 7254 - }, - { - "image_path": "G:\\images\\combined\\04b59524b3cebdf2.jpg", - "response": "A large building with a clock on the front of it.", - "id": 7255 - }, - { - "image_path": "G:\\images\\combined\\04b5a37f762b0f51.jpg", - "response": "A book is open to the title page. The title is Our Neighbors, The Friends. It is by William J. Whalen. The Multnomah Friends Meeting address is at the bottom.", - "id": 7256 - }, - { - "image_path": "G:\\images\\combined\\04b99754c51e6092.jpg", - "response": "A large sign for Francis Bacon is displayed on a street.", - "id": 7257 - }, - { - "image_path": "G:\\images\\combined\\04bb7fa51b1b18ef.jpg", - "response": "A row of warning signs are lined up on the side of the road.", - "id": 7258 - }, - { - "image_path": "G:\\images\\combined\\04bbe9d35c50ab91.jpg", - "response": "A man and a woman pose for a picture.", - "id": 7259 - }, - { - "image_path": "G:\\images\\combined\\04bc0bbb14f26bab.jpg", - "response": "A black laptop with a mouse pad on the right side of the keyboard.", - "id": 7260 - }, - { - "image_path": "G:\\images\\combined\\04bc55abd830f147.jpg", - "response": "A car with a license plate that says HIP NANA.", - "id": 7261 - }, - { - "image_path": "G:\\images\\combined\\04be416992fd79c5.jpg", - "response": "A man is wearing a Tudor watch on his wrist. The watch has a silver face with black accents and is also silver on the band. The face has large white numbers and hands. The watch is set to 10:10.", - "id": 7262 - }, - { - "image_path": "G:\\images\\combined\\04c048eae91ceea3.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 7263 - }, - { - "image_path": "G:\\images\\combined\\04c098793fddaf9b.jpg", - "response": "A white box with a QR code on the front.", - "id": 7264 - }, - { - "image_path": "G:\\images\\combined\\04c14972e955ad58.jpg", - "response": "A large red and white Manchester United poster on the side of a building.", - "id": 7265 - }, - { - "image_path": "G:\\images\\combined\\04c2634b073c5bfb.jpg", - "response": "A wooden table with a Census 2010 form and an envelope on top of it.", - "id": 7266 - }, - { - "image_path": "G:\\images\\combined\\04c2feafa596fb1e.jpg", - "response": "A train on train tracks with smoke coming out of it.", - "id": 7267 - }, - { - "image_path": "G:\\images\\combined\\04c39e0c0a0b7c38.jpg", - "response": "A television set with the words 'cctv monitor' written on the bottom left hand corner.", - "id": 7268 - }, - { - "image_path": "G:\\images\\combined\\04c3b7a4162051ab.jpg", - "response": "The image is a poster with the words \"Take heart, he has overcome\" written on it. The text is in black and red and is set against a white background. The words \"Take heart\" are written on the top left corner, \"he has\" is written on the top right corner, and \"overcome\" is written at the bottom. The numbers 16 and 33 are written below the word \"overcome\".", - "id": 7269 - }, - { - "image_path": "G:\\images\\combined\\04c4d5f6bcee13f4.jpg", - "response": "An open laptop computer sitting on a desk.", - "id": 7270 - }, - { - "image_path": "G:\\images\\combined\\04c7c370910a9a04.jpg", - "response": "A man holding a bicycle above his head on a beach.", - "id": 7271 - }, - { - "image_path": "G:\\images\\combined\\04c9190a4d2ecb2a.jpg", - "response": "A person holding a LG smartphone in an office.", - "id": 7272 - }, - { - "image_path": "G:\\images\\combined\\04cb0a69e5e61e33.jpg", - "response": "A blue truck is driving down a street.", - "id": 7273 - }, - { - "image_path": "G:\\images\\combined\\04cf8f45e024273e.jpg", - "response": "A woman with long hair is on a television screen.", - "id": 7274 - }, - { - "image_path": "G:\\images\\combined\\04cfef06445e63ab.jpg", - "response": "A wooden clock on a wall with roman numerals.", - "id": 7275 - }, - { - "image_path": "G:\\images\\combined\\04d0cd32375dec06.jpg", - "response": "A Mad Max movie poster with a man standing in front of a car in a desert. The sky is blue with clouds and the sun is setting. The man is wearing a gas mask and has a gun. The words \"What a lovely day\" are written above the man and the movie title \"Mad Max Fury Road\" is written in yellow and orange. The tagline \"May 15\" is written at the bottom of the poster.", - "id": 7276 - }, - { - "image_path": "G:\\images\\combined\\04d1087f7e335786.jpg", - "response": "A man stands in a room filled with shelves of various items. The shelves are filled with many different products, including bottles of ink and paint. There are also several boxes on the floor and a desk with some items on it. The room has a very cluttered appearance.", - "id": 7277 - }, - { - "image_path": "G:\\images\\combined\\04d14bbae7de7926.jpg", - "response": "The image shows a scene from the mobile game FIFA 15. The player in blue and red striped shirt is about to kick the soccer ball, while the player in blue and white striped shirt is running towards him. There are other players in the background, including a player in blue and red striped shirt running towards the left side of the screen and a player in blue and white striped shirt running towards the right side of the screen. The game is being played on a green field with white lines. The player in blue and red striped shirt has a red stripe on his shorts and is wearing a red and blue striped shirt. The player in blue and white striped shirt has a white stripe on his shorts and is wearing a blue and white striped shirt. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing red shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The", - "id": 7278 - }, - { - "image_path": "G:\\images\\combined\\04d33a0e3fd86ba5.jpg", - "response": "A bottle of Beerlao lager beer sits next to a mug of beer. The beer is a golden yellow color and there is a small amount of foam on top. The label on the bottle is white and green and has the words \"Imported\" and \"Lager Beer\" written on it.", - "id": 7279 - }, - { - "image_path": "G:\\images\\combined\\04d3761e636752cf.jpg", - "response": "A black Heat jersey with red lettering and a red number 10.", - "id": 7280 - }, - { - "image_path": "G:\\images\\combined\\04d3cddda381ef11.jpg", - "response": "A person is holding a cell phone in their hand. The cell phone is playing a basketball game. The game is between the Mavs and the Heat. The time is 5:36. The Heat are currently winning the game. There is a cup on the table next to the cell phone.", - "id": 7281 - }, - { - "image_path": "G:\\images\\combined\\04d4277d4f3e07cf.jpg", - "response": "In the image there are two yellow taxi cabs parked side by side on a city street. They are both facing the same direction. In front of the taxis, there is a piece of yellow caution tape stretched across the street. The tape is marked with the word \"caution\" in black letters. The background shows a building with a glass storefront. There are two people visible in the scene, one on the left and one on the right. They appear to be pedestrians. There is also a traffic light visible in the image, located on the left side of the street.", - "id": 7282 - }, - { - "image_path": "G:\\images\\combined\\04d71d0804bdb39c.jpg", - "response": "A billboard for Keystone Light beer featuring a man with a beard and a hat. The billboard says \"Always Smooth\" and has the Keystone Light logo. The billboard is located on the side of a road.", - "id": 7283 - }, - { - "image_path": "G:\\images\\combined\\04d7554704856e9d.jpg", - "response": "A sign that says Powell's on your iPhone.", - "id": 7284 - }, - { - "image_path": "G:\\images\\combined\\04d8d2a90fa1e971.jpg", - "response": "A large red cube with a scoreboard on each of the six sides.", - "id": 7285 - }, - { - "image_path": "G:\\images\\combined\\04d9539875873b29.jpg", - "response": "A photo of two boxes of Soylent powder food.", - "id": 7286 - }, - { - "image_path": "G:\\images\\combined\\04d9ccc29ef68000.jpg", - "response": "A sign for a beauty salon is posted on a wall.", - "id": 7287 - }, - { - "image_path": "G:\\images\\combined\\04d9f9c00f3c4973.jpg", - "response": "An open book to the page with the Lord's prayer on it.", - "id": 7288 - }, - { - "image_path": "G:\\images\\combined\\04da5dff642e080f.jpg", - "response": "The image shows a row of cans of Mountain Dew Baja Blast. The cans are blue and white and feature the Mountain Dew logo prominently on them. There are at least nine cans in the row, and they are all lined up next to each other. Some of the cans are closer to the foreground and appear larger, while others are further away and appear smaller.", - "id": 7289 - }, - { - "image_path": "G:\\images\\combined\\04db1e5c955ddee6.jpg", - "response": "A cover of weird tales magazine with a man holding a black raven on his shoulder.", - "id": 7290 - }, - { - "image_path": "G:\\images\\combined\\04db429ca202f6a3.jpg", - "response": "A warehouse with a row of yellow trash cans on wheels.", - "id": 7291 - }, - { - "image_path": "G:\\images\\combined\\04dbd80e27f9bacd.jpg", - "response": "a wall with writing on it that says \"we're here, we're queer, we're fabulous, don't fuck with us!\"", - "id": 7292 - }, - { - "image_path": "G:\\images\\combined\\04dc9045baab9975.jpg", - "response": " A woman(295,128),(778,615) sitting at a table(2,496),(996,997) with empty glasses(246,586),(382,941)(470,543),(621,939) and wine bottles(624,370),(760,851)(760,371),(910,918)(907,365),(1000,953).", - "id": 7293 - }, - { - "image_path": "G:\\images\\combined\\04dd63050d8508bd.jpg", - "response": "A yellow dress woman sitting on a chair being watched by a man.", - "id": 7294 - }, - { - "image_path": "G:\\images\\combined\\04dd79863a4c2c59.jpg", - "response": "A couple of boxes sitting next to a couple of traffic lights.", - "id": 7295 - }, - { - "image_path": "G:\\images\\combined\\04de2bbea6e03bee.jpg", - "response": "The image shows a workspace with a desk that has two computer monitors placed on it. There are two keyboards, one on the left and the other on the right, and a mouse in the middle of the desk. The computer monitors are displaying the same Yahoo! homepage. The room appears to be an office, and there are several books scattered around the desk and the area. Some of the books are placed vertically, while others are lying horizontally. There are also a couple of cups in the scene, one near the left monitor and the other near the right monitor.", - "id": 7296 - }, - { - "image_path": "G:\\images\\combined\\04de92ec769965ac.jpg", - "response": "A white board with writing on it.", - "id": 7297 - }, - { - "image_path": "G:\\images\\combined\\04df3cbd8345f25f.jpg", - "response": "An old looking gauge(20,21),(985,688).", - "id": 7298 - }, - { - "image_path": "G:\\images\\combined\\04df64098449dcce.jpg", - "response": "The image is a soccer field with players on it. The players are wearing blue and white uniforms. The number 8 is displayed in the center of the image. The word \"Mondaini\" is displayed above the number. The word \"Emele\" is displayed in the bottom left corner of the image. The word \"Xista.com\" is displayed in the bottom right corner.", - "id": 7299 - }, - { - "image_path": "G:\\images\\combined\\04dfad38d434409c.jpg", - "response": "A black and white photo of the front of a bus.", - "id": 7300 - }, - { - "image_path": "G:\\images\\combined\\04e01069792ad29a.jpg", - "response": "A car with a Virginia license plate that says Utang on it.", - "id": 7301 - }, - { - "image_path": "G:\\images\\combined\\04e03c1faa934e30.jpg", - "response": "A sign posted on a pole in a city.", - "id": 7302 - }, - { - "image_path": "G:\\images\\combined\\04e14a8f5dc496b8.jpg", - "response": "A sign that is orange and black.", - "id": 7303 - }, - { - "image_path": "G:\\images\\combined\\04e1df508bfdb43b.jpg", - "response": "In the image, there are two boys standing on a baseball field. One of the boys is wearing a red shirt and has a black glove on his right hand. The other boy is wearing a blue shirt and has a black glove on his left hand. Both boys are holding baseball bats, and they are looking in opposite directions.", - "id": 7304 - }, - { - "image_path": "G:\\images\\combined\\04e4f31b680b8801.jpg", - "response": "A tv with the words \"set passcode\" on the screen.", - "id": 7305 - }, - { - "image_path": "G:\\images\\combined\\04e562f083ca45ea.jpg", - "response": "A metal sign for Clermont Florida that shows two children in bathing suits holding hands.", - "id": 7306 - }, - { - "image_path": "G:\\images\\combined\\04e7422c5fa74696.jpg", - "response": "A large group of people are gathered in the street holding signs.", - "id": 7307 - }, - { - "image_path": "G:\\images\\combined\\04e781703ec5f371.jpg", - "response": "A black and white television set.", - "id": 7308 - }, - { - "image_path": "G:\\images\\combined\\04e84a07ac4570bb.jpg", - "response": "A bottle of Calon Segur wine from 2005.", - "id": 7309 - }, - { - "image_path": "G:\\images\\combined\\04ea1b2740f1e892.jpg", - "response": "A box of anti acne medication is held up in someones hand. The box is white and features a blue logo for the brand \"Doctor Li\". The product is called \"Medical Formula\" and is a \"\u674e\u533b\u751f\" product. The box shows that the product is an anti acne medication. The box is open and showing the product inside.", - "id": 7310 - }, - { - "image_path": "G:\\images\\combined\\04eb5961cecd1e8d.jpg", - "response": "A group of young men playing soccer on a court.", - "id": 7311 - }, - { - "image_path": "G:\\images\\combined\\04ec26c906c3a2a5.jpg", - "response": "a white toilet bowl next to a measuring tape", - "id": 7312 - }, - { - "image_path": "G:\\images\\combined\\04ed68a4e461ce70.jpg", - "response": "an old rotary phone hanging on a wooden wall", - "id": 7313 - }, - { - "image_path": "G:\\images\\combined\\04ef980e5caff21f.jpg", - "response": "A table with magazines on it including a Star Wars magazine.", - "id": 7314 - }, - { - "image_path": "G:\\images\\combined\\04f1c47a8be99a62.jpg", - "response": "A glass display case with a poster inside that says \"COMING HOME\". There is also a paper with a building on it and a sign that says \"MS SEPT-OCT\".", - "id": 7315 - }, - { - "image_path": "G:\\images\\combined\\04f4c553a4d5e020.jpg", - "response": "A skier is in mid air after jumping off a ramp.", - "id": 7316 - }, - { - "image_path": "G:\\images\\combined\\04f53f2009d2da77.jpg", - "response": "A book is open to a page about Popular Comics.", - "id": 7317 - }, - { - "image_path": "G:\\images\\combined\\04f5febce7212e0f.jpg", - "response": "An ambulance is parked on the grass with a for sale sign on the front.", - "id": 7318 - }, - { - "image_path": "G:\\images\\combined\\04f60852cd037b49.jpg", - "response": "A bottle of Skorderlig sits next to a glass filled with the red liquid.", - "id": 7319 - }, - { - "image_path": "G:\\images\\combined\\04f7e547e9b446c6.jpg", - "response": "A silver coin with the word United States of America on it.", - "id": 7320 - }, - { - "image_path": "G:\\images\\combined\\04f913d1cb935a29.jpg", - "response": "The image shows a busy street filled with traffic. There are several cars on the road, including a taxi with the license plate \"G9\" on the back. The taxi is driving down the street and has a luggage rack on top.", - "id": 7321 - }, - { - "image_path": "G:\\images\\combined\\04f9cc3db7d8da24.jpg", - "response": "A billboard for Arrow Laminates is shown on the side of a building. The billboard features several human figures in various stages of rolling a log. The building is in a parking lot with several cars parked around it.", - "id": 7322 - }, - { - "image_path": "G:\\images\\combined\\04fb628ed85ee4fd.jpg", - "response": "a large screen tv inside of a stadium", - "id": 7323 - }, - { - "image_path": "G:\\images\\combined\\04fd936a65af21e6.jpg", - "response": "A man wearing an apron that says \"Your goose on\" is standing in front of a BBQ grill.", - "id": 7324 - }, - { - "image_path": "G:\\images\\combined\\05000c2a491afc90.jpg", - "response": "Two baseball players are talking to each other. One of them is wearing a blue jersey with the letter T on the front and a red cap. The other player is wearing a blue jersey with the number 28 on the back and a red cap with a white T on it.", - "id": 7325 - }, - { - "image_path": "G:\\images\\combined\\050195a1717cfe45.jpg", - "response": "A clock with a pink rose on it and the number 10 in the middle.", - "id": 7326 - }, - { - "image_path": "G:\\images\\combined\\05040557d4d4ef42.jpg", - "response": "A counter with a bowl, lime slices, and a variety of alcohol bottles including Smirnoff, Peach Schnapps, and Cherry Vodka.", - "id": 7327 - }, - { - "image_path": "G:\\images\\combined\\05064aad313fc3b7.jpg", - "response": "A van with a grey and black color scheme.", - "id": 7328 - }, - { - "image_path": "G:\\images\\combined\\050b5524c278d81f.jpg", - "response": "A group of people standing in front of a store.", - "id": 7329 - }, - { - "image_path": "G:\\images\\combined\\050b6e4fab72ef2b.jpg", - "response": "The image shows two bottles of nail polish on a table. The nail polishes are by the brand Rimmel and are in shades of maroon. One of the bottles is larger and has a brush cap, while the other is smaller and has a pump cap. There is also a black box next to the nail polishes.", - "id": 7330 - }, - { - "image_path": "G:\\images\\combined\\050bf08413b35ab1.jpg", - "response": "A bookshelf with many books on it.", - "id": 7331 - }, - { - "image_path": "G:\\images\\combined\\050c0066b1ed14bd.jpg", - "response": "A bottle of red wine from the Stefano Lubiana estate, produced in Tasmania and dating from 2007.", - "id": 7332 - }, - { - "image_path": "G:\\images\\combined\\051063338afdeb60.jpg", - "response": "A propaganda poster from the Second World War, showing a soldier in a helmet.", - "id": 7333 - }, - { - "image_path": "G:\\images\\combined\\05106b22b657038f.jpg", - "response": "a baseball player standing on the field", - "id": 7334 - }, - { - "image_path": "G:\\images\\combined\\0511169aa8f1211b.jpg", - "response": "A man wearing a black hoodie is holding a book titled \"Unicode\". The book is open to the table of contents.", - "id": 7335 - }, - { - "image_path": "G:\\images\\combined\\0511f921529af838.jpg", - "response": "A person wearing a red bikini bottom and holding beads.", - "id": 7336 - }, - { - "image_path": "G:\\images\\combined\\05142a12b2703809.jpg", - "response": "A framed poster advertising the Central London Railway.", - "id": 7337 - }, - { - "image_path": "G:\\images\\combined\\0516b96f324d3185.jpg", - "response": "A plaque that is on the wall.", - "id": 7338 - }, - { - "image_path": "G:\\images\\combined\\0516f71f618e0087.jpg", - "response": "A group of four people standing in front of a white board.", - "id": 7339 - }, - { - "image_path": "G:\\images\\combined\\0516fbff19c3a68e.jpg", - "response": "A clock is attached to a pole on a city street.", - "id": 7340 - }, - { - "image_path": "G:\\images\\combined\\05189c0ddf2b5e94.jpg", - "response": "A person holding a camera taking a picture of a branch with a tree in the background.", - "id": 7341 - }, - { - "image_path": "G:\\images\\combined\\051909263de0a378.jpg", - "response": "A red car parked on the side of a street.", - "id": 7342 - }, - { - "image_path": "G:\\images\\combined\\05195453b8496d73.jpg", - "response": "A book cover with a man on a horse fighting a demon type creature.", - "id": 7343 - }, - { - "image_path": "G:\\images\\combined\\0519ce56755e0699.jpg", - "response": "A train on a track in front of a building.", - "id": 7344 - }, - { - "image_path": "G:\\images\\combined\\051b572ea12bbc0d.jpg", - "response": "The image shows a close up of a laptop keyboard. The laptop is a Lenovo Thinkpad and the keyboard is black. The top left of the keyboard has the function keys labeled as F1, F2, etc. The top right of the keyboard has the shift key and the enter key. The backspace key is on the left and the right arrow key is to the right. The space bar is in the middle of the keyboard and the alt key is just above it. The caps lock key is on the left and the page up key and page down key are above that. The left arrow key is to the left of the left shift key and the right arrow key is to the right of the left shift key. The back of the laptop is black and has the Lenovo logo in red on the top right. The laptop is sitting on a cardboard box.", - "id": 7345 - }, - { - "image_path": "G:\\images\\combined\\051c411d3cdc2446.jpg", - "response": "A red tank top with white writing on it.", - "id": 7346 - }, - { - "image_path": "G:\\images\\combined\\051d3e6ed66946df.jpg", - "response": "A movie poster for the film Female Agents is on the wall.", - "id": 7347 - }, - { - "image_path": "G:\\images\\combined\\0520a85295e04471.jpg", - "response": "A sunset over a lake with a mountain in the background. The sky is a gradient of red, orange, pink and purple. There is a quote in the bottom left corner that says \"It's not about the camera. It's about what you shoot and how you compile them.\"", - "id": 7348 - }, - { - "image_path": "G:\\images\\combined\\052192ea6c98ee4b.jpg", - "response": "A stack of movies on a counter.", - "id": 7349 - }, - { - "image_path": "G:\\images\\combined\\0521b09c0444ef29.jpg", - "response": "A menu board with a list of liquor and beer prices.", - "id": 7350 - }, - { - "image_path": "G:\\images\\combined\\0525540818288de8.jpg", - "response": "A box for Chanel Allure perfume on a wooden table.", - "id": 7351 - }, - { - "image_path": "G:\\images\\combined\\0526a593b144a52b.jpg", - "response": "A stop sign with the word SOPA & PIPA written on it in red.", - "id": 7352 - }, - { - "image_path": "G:\\images\\combined\\0527064b8176737d.jpg", - "response": "A close up of a red cell phone with the battery compartment open. The phone is held in someones hand and the battery is visible inside.", - "id": 7353 - }, - { - "image_path": "G:\\images\\combined\\05281c93e99b5c08.jpg", - "response": "A tv with a woman on the screen and a man sitting in front of it.", - "id": 7354 - }, - { - "image_path": "G:\\images\\combined\\0529b506446a359f.jpg", - "response": "A bottle of beer with a green label that says Inland Empire No. 8 on it.", - "id": 7355 - }, - { - "image_path": "G:\\images\\combined\\0529ba49ffef71ca.jpg", - "response": "A painting of a woman holding a baby.", - "id": 7356 - }, - { - "image_path": "G:\\images\\combined\\052a662aac6b7722.jpg", - "response": "A bunch of stickers are on a wall.", - "id": 7357 - }, - { - "image_path": "G:\\images\\combined\\052be07259975783.jpg", - "response": "A quote on a green background that says \"Computer dating's OK, if you are a computer.\"", - "id": 7358 - }, - { - "image_path": "G:\\images\\combined\\052bf94d71a91cab.jpg", - "response": "A person in a bunny suit holding a sign on the side of the road.", - "id": 7359 - }, - { - "image_path": "G:\\images\\combined\\052e4d4438123aec.jpg", - "response": "A white Scottish Ambulance Service van is parked on the street.", - "id": 7360 - }, - { - "image_path": "G:\\images\\combined\\052e8de055f3562f.jpg", - "response": "A silver and gold coin with a tree on it.", - "id": 7361 - }, - { - "image_path": "G:\\images\\combined\\052IJLOWFGWF_jpg.rf.612b0cccdf03bbfefc86e575a649be63.jpg", - "response": "A forklift is parked next to a truck.", - "id": 7362 - }, - { - "image_path": "G:\\images\\combined\\053227f4aed1f791.jpg", - "response": "A red and white bus is driving down the street.", - "id": 7363 - }, - { - "image_path": "G:\\images\\combined\\0532bebe983fa773.jpg", - "response": "A green box with the words Peyton and Byrne on it.", - "id": 7364 - }, - { - "image_path": "G:\\images\\combined\\0533a3faeed840d4.jpg", - "response": "a wall with many posters on it", - "id": 7365 - }, - { - "image_path": "G:\\images\\combined\\0534930d836682cb.jpg", - "response": "The image shows the inside of a store with a white ceiling. There are several rows of shelves filled with various items. A sign above the first row of shelves says \" Layaway \". A person is visible in the distance.", - "id": 7366 - }, - { - "image_path": "G:\\images\\combined\\0534b2d8c3e1be1e.jpg", - "response": "A office cubicle with a chair and a sign on the wall.", - "id": 7367 - }, - { - "image_path": "G:\\images\\combined\\053690e8110febab.jpg", - "response": "A yellow book cover with a black and green watch on the left side.", - "id": 7368 - }, - { - "image_path": "G:\\images\\combined\\0536c4c4cb7cfe80.jpg", - "response": "A bottle of beer and a glass of beer are sitting on a table.", - "id": 7369 - }, - { - "image_path": "G:\\images\\combined\\053776773c24ca6a.jpg", - "response": "a group of people standing around a white sheet of paper", - "id": 7370 - }, - { - "image_path": "G:\\images\\combined\\053790a396cc2466.jpg", - "response": "a large sign for Katy K ranch dressing featuring a woman in a bikini sitting on a wheel barrow", - "id": 7371 - }, - { - "image_path": "G:\\images\\combined\\053aaa18273e91c6.jpg", - "response": "A silver police van with the word police on the side of it.", - "id": 7372 - }, - { - "image_path": "G:\\images\\combined\\053be55d3df7e1ad.jpg", - "response": "A tray with a cup of coffee and a pastry on it, a phone case with the Starbucks logo on it sitting next to the tray.", - "id": 7373 - }, - { - "image_path": "G:\\images\\combined\\053ea75af199a99a.jpg", - "response": "A van with the words Narok Line on the hood is parked on the side of the road.", - "id": 7374 - }, - { - "image_path": "G:\\images\\combined\\054058cbdb47dd13.jpg", - "response": "A book cover with a man lying on the ground with a dirk sticking out of his hand. He is wearing a kilt.", - "id": 7375 - }, - { - "image_path": "G:\\images\\combined\\0540e1278fc37506.jpg", - "response": "In the image, two female models are showcasing a variety of LG LTE smartphones in front of a LG LTE sign. There are a total of 18 smartphones displayed, with each model holding one smartphone in their hands. The smartphones are of different sizes and colors, and some are being held upright, while others are being held at an angle. The models are smiling and posing for the camera, creating a positive atmosphere around the display.", - "id": 7376 - }, - { - "image_path": "G:\\images\\combined\\054120ad184265f1.jpg", - "response": "A large white sign that says Pullman Dock on it.", - "id": 7377 - }, - { - "image_path": "G:\\images\\combined\\0544630bea765ac7.jpg", - "response": "A close up of a wrist with a smart watch on it. The watch is white and has a digital display. The display shows the number 75. There is also a heart rate monitor on the watch.", - "id": 7378 - }, - { - "image_path": "G:\\images\\combined\\05446872133f053c.jpg", - "response": "A black laptop computer is sitting on a homemade stand made of wood. The laptop is on a desk and the screen is open. There is a ruler laying in front of the laptop.", - "id": 7379 - }, - { - "image_path": "G:\\images\\combined\\0544689e36f6badd.jpg", - "response": "A bus parked in front of a brick building.", - "id": 7380 - }, - { - "image_path": "G:\\images\\combined\\0544a142bcd6efd7.jpg", - "response": "A Casio cell phone is sitting on top of a computer keyboard. The phone is a flip phone and is red and black in color. The screen of the phone is lit up and shows a purple image. There are several icons on the phone's screen, including a camera icon, a battery icon, and a signal icon.", - "id": 7381 - }, - { - "image_path": "G:\\images\\combined\\05471e52c8c41290.jpg", - "response": "A building with a yellow awning and a large glass door.", - "id": 7382 - }, - { - "image_path": "G:\\images\\combined\\054a6a0f6f4a95f1.jpg", - "response": "A red Volkswagen van with a cart attached to it.", - "id": 7383 - }, - { - "image_path": "G:\\images\\combined\\054b80abb4edf41b.jpg", - "response": "a person holding a camera in their hand", - "id": 7384 - }, - { - "image_path": "G:\\images\\combined\\054d1ccb9d4fd68e.jpg", - "response": "A desk with a laptop on it and many books and papers around the laptop.", - "id": 7385 - }, - { - "image_path": "G:\\images\\combined\\054dd4ca2a338f8d.jpg", - "response": "The image features two cell phones sitting next to each other on a red cloth. The cell phones are of different sizes and are positioned in the foreground of the scene. One of the cell phones has its back cover off, revealing its battery and other internal components. The battery is labeled as BL-5J for Nokia. The other cell phone has its back cover on, and the brand is not visible. The two cell phones are located near the center of the image, with a penny placed between them to provide a sense of scale. The penny is oriented in a northerly direction, with its edge aligned vertically.", - "id": 7386 - }, - { - "image_path": "G:\\images\\combined\\054e21e2171709d9.jpg", - "response": "A large billboard on the side of the road advertising daily flights to Dubai starting in September.", - "id": 7387 - }, - { - "image_path": "G:\\images\\combined\\054ec07c6f1469be.jpg", - "response": "A double decker bus is parked on the side of the street.", - "id": 7388 - }, - { - "image_path": "G:\\images\\combined\\054f53eda2be7501.jpg", - "response": "A store with clothing racks and shelves of shoes and handbags.", - "id": 7389 - }, - { - "image_path": "G:\\images\\combined\\05520ff3b2090808.jpg", - "response": "a man wearing a black and white hat and a black shirt", - "id": 7390 - }, - { - "image_path": "G:\\images\\combined\\05551391c119d3cc.jpg", - "response": "A hand holding a phone displaying six different apps.", - "id": 7391 - }, - { - "image_path": "G:\\images\\combined\\0555a1f17c73207c.jpg", - "response": "A passport, a cell phone, a laptop, a camera, and a tripod are all laying on a red surface.", - "id": 7392 - }, - { - "image_path": "G:\\images\\combined\\0555d9cdef6ba308.jpg", - "response": "A large red and white Value city furniture sign.", - "id": 7393 - }, - { - "image_path": "G:\\images\\combined\\0557c08f3843e913.jpg", - "response": "ANACS graded coins in plastic cases on a black tray.", - "id": 7394 - }, - { - "image_path": "G:\\images\\combined\\0558c67463bea05a.jpg", - "response": "There are two mugs of beer sitting on a wooden counter. The beer is Suntory brand and has foam on top.", - "id": 7395 - }, - { - "image_path": "G:\\images\\combined\\0559c42c72ec4ffa.jpg", - "response": "A black laptop computer sitting on a wooden desk.", - "id": 7396 - }, - { - "image_path": "G:\\images\\combined\\055aa4b3c46ff410.jpg", - "response": "a person in a costume standing in front of a banner", - "id": 7397 - }, - { - "image_path": "G:\\images\\combined\\055b8f4762ee71e3.jpg", - "response": "A man and woman are standing under a traffic light on a city street. They are close to each other and appear to be embracing. There is a silver minivan parked on the street and a car further down the road. A traffic light is visible on the left side of the image and another on the right. There is also a building with a sign that reads \"New England Inn\" on the corner of the street.", - "id": 7398 - }, - { - "image_path": "G:\\images\\combined\\055cd18de2c75a81.jpg", - "response": "a person holding an iPhone in their left hand. The iPhone is set to the backup options screen. The person is holding the phone in front of a keyboard.", - "id": 7399 - }, - { - "image_path": "G:\\images\\combined\\0561157a053ee700.jpg", - "response": "A store display for Mountain Dew has several cans of Mountain Dew on it.", - "id": 7400 - }, - { - "image_path": "G:\\images\\combined\\0561158c78dfc33f.jpg", - "response": "A stone tower with a clock mounted on it's face.", - "id": 7401 - }, - { - "image_path": "G:\\images\\combined\\0561778e6bb282e2.jpg", - "response": "A kitchen counter with a orange and silver mixer on it.", - "id": 7402 - }, - { - "image_path": "G:\\images\\combined\\0563aa89bbbc88c0.jpg", - "response": "A yellow building with two windows and a sign that says \"Shishkov\" on it.", - "id": 7403 - }, - { - "image_path": "G:\\images\\combined\\0563b96631488ed6.jpg", - "response": "A stack of books and notebooks on a table.", - "id": 7404 - }, - { - "image_path": "G:\\images\\combined\\05640d9d140ec1d4.jpg", - "response": "A group of people in uniform are dancing in the street.", - "id": 7405 - }, - { - "image_path": "G:\\images\\combined\\0565eb4d36473aa4.jpg", - "response": "A busy city street at night with cars, taxis, and pedestrians. The street is filled with neon lights from the surrounding buildings.", - "id": 7406 - }, - { - "image_path": "G:\\images\\combined\\056646dde5b3bf0a.jpg", - "response": "The image shows a computer desk with a laptop computer sitting on top of it. There is also a separate keyboard and mouse in front of the laptop. A large monitor is connected to the laptop, sitting to the left of the desk. Two pairs of headphones are connected to the laptop, one on the left and one on the right. A cell phone is also sitting on the desk, near the laptop.", - "id": 7407 - }, - { - "image_path": "G:\\images\\combined\\056669372a21ff04.jpg", - "response": "a phone that is turned sideways on a red cloth", - "id": 7408 - }, - { - "image_path": "G:\\images\\combined\\0566a7e3d549539a.jpg", - "response": "A yellow double decker bus is parked on the side of the street.", - "id": 7409 - }, - { - "image_path": "G:\\images\\combined\\0568903bc8b65da0.jpg", - "response": "A Samsung phone and an HTC phone are side by side on a wooden table.", - "id": 7410 - }, - { - "image_path": "G:\\images\\combined\\0568d30600d5cf11.jpg", - "response": "A red and white bus is driving down the street.", - "id": 7411 - }, - { - "image_path": "G:\\images\\combined\\05699fead0ea235d.jpg", - "response": "In the image, there are two baseball players standing next to each other on the field. Both of them are wearing full uniforms and have red helmets. One of the players is wearing a black shirt with the number 10 on the back. They are both holding baseball gloves and are ready for the game.", - "id": 7412 - }, - { - "image_path": "G:\\images\\combined\\056c63a71702d0db.jpg", - "response": "A alleyway with three garbage bins and a wall covered in graffiti.", - "id": 7413 - }, - { - "image_path": "G:\\images\\combined\\056dcc23c0fcdb46.jpg", - "response": "A woman with long dark hair is posing next to three bottles of hair products. The hair products are white and black and are displayed in a row. The woman has her head tilted to the side and is looking downwards. The image has a white background.", - "id": 7414 - }, - { - "image_path": "G:\\images\\combined\\056e296765345890.jpg", - "response": "A cell phone with a slide out keyboard.", - "id": 7415 - }, - { - "image_path": "G:\\images\\combined\\056fb09cff616aa3.jpg", - "response": "A man with glasses and a blue shirt is holding a fake snake while standing next to a man in a suit. They are both on a television screen.", - "id": 7416 - }, - { - "image_path": "G:\\images\\combined\\05732eb7d51fa766.jpg", - "response": "A hand holding a variety of coins and bank notes.", - "id": 7417 - }, - { - "image_path": "G:\\images\\combined\\0574aa88fc30b22f.jpg", - "response": "A Keurig coffee maker on display at a store.", - "id": 7418 - }, - { - "image_path": "G:\\images\\combined\\0575ba5a0f293756.jpg", - "response": "A white van with the doors open in a parking lot.", - "id": 7419 - }, - { - "image_path": "G:\\images\\combined\\0577f622a4326c11.jpg", - "response": "A gold and blue baseball jersey with the name Haskell on it and the number 44.", - "id": 7420 - }, - { - "image_path": "G:\\images\\combined\\0578555cc80e2ecc.jpg", - "response": "A Rolex watch with a green face and silver accents.", - "id": 7421 - }, - { - "image_path": "G:\\images\\combined\\0578da75e0a8990d.jpg", - "response": "A black and white illustration of a man and woman with a dog standing around a stove. The text around the image reads \"There's a Detroit Vapor Stove to fit every kitchen and every purse.\"", - "id": 7422 - }, - { - "image_path": "G:\\images\\combined\\05794e1a7c733838.jpg", - "response": "a close up of a watch being held by a hand", - "id": 7423 - }, - { - "image_path": "G:\\images\\combined\\057a84d8b36af342.jpg", - "response": "A pair of wristwatches, one with a black leather strap and the other with a silver metal strap. Both have black faces with white numbers and hands.", - "id": 7424 - }, - { - "image_path": "G:\\images\\combined\\057b9c45b504ce4e.jpg", - "response": "A collage of a food truck, a cup of coffee, and a bird logo.", - "id": 7425 - }, - { - "image_path": "G:\\images\\combined\\057b9fc231f6a5cc.jpg", - "response": "A book called \"The Pale King\" by David Foster Wallace is open to page 4. The book is sitting on a wooden table.", - "id": 7426 - }, - { - "image_path": "G:\\images\\combined\\057d63bb419d2109.jpg", - "response": "The image is a commemorative coin celebrating the 50th anniversary of the United Nations. The coin is a Singapore coin and is worth $5. The year 1995 is on the coin. The coin is not metallic. The coin has a picture of a lion on it. The word Singapore is on the coin. The word 1995 is on the coin. The word Sgd is on the coin. The word 5 is on the coin. The word $ is on the coin. The word Singapore is on the coin. The word Commemorative is on the coin. The word 50th is on the coin. The word Anniversary is on the coin. The word of the United Nations is on the coin.", - "id": 7427 - }, - { - "image_path": "G:\\images\\combined\\057dc5a12d98472d.jpg", - "response": "A large clock on the side of a building.", - "id": 7428 - }, - { - "image_path": "G:\\images\\combined\\057e2f6c80b2ba78.jpg", - "response": "A whiteboard with writing on it.", - "id": 7429 - }, - { - "image_path": "G:\\images\\combined\\05809dbfee903455.jpg", - "response": "A very tall building with the word TRUMP lit up on the side of it.", - "id": 7430 - }, - { - "image_path": "G:\\images\\combined\\0580a20ac9d2bbd4.jpg", - "response": "A black iPhone is open to a social media app with several notifications.", - "id": 7431 - }, - { - "image_path": "G:\\images\\combined\\05813399afa37f53.jpg", - "response": "In the image there is a cafetiere, a white Doubleshot coffee mug, a bag of coffee and a manual coffee grinder.", - "id": 7432 - }, - { - "image_path": "G:\\images\\combined\\0581358d6311a60b.jpg", - "response": "A car with a mercedes emblem on the back.", - "id": 7433 - }, - { - "image_path": "G:\\images\\combined\\05826e652b59b412.jpg", - "response": "A red Mercedes city bus is parked on the street next to a red and white bus. The bus has the word \"city\" on the front of it.", - "id": 7434 - }, - { - "image_path": "G:\\images\\combined\\058415ab113ea63e.jpg", - "response": "A book titled \"Detroit is the Place to Be\" is open and sitting on a table. Another book titled \"Leading Change\" is open and laying on top of it. Several other books are stacked on the table next to the two open books.", - "id": 7435 - }, - { - "image_path": "G:\\images\\combined\\0584d0c42b656f11.jpg", - "response": "A blue wall with a clock that reads 11:58.", - "id": 7436 - }, - { - "image_path": "G:\\images\\combined\\0585ef20be791226.jpg", - "response": "A bottle of Old Crafty Hen next to a glass filled with beer. The bottle is sitting on a desk in front of a laptop.", - "id": 7437 - }, - { - "image_path": "G:\\images\\combined\\05865c77850249ca.jpg", - "response": "A television screen displays a guide to all the channels available. The screen shows a list of channels and their respective show times. The screen is on and it appears to be daytime.", - "id": 7438 - }, - { - "image_path": "G:\\images\\combined\\05867de435365596.jpg", - "response": "A man in a black suit is standing in front of a magazine rack in a convenience store. He is talking on his cell phone.", - "id": 7439 - }, - { - "image_path": "G:\\images\\combined\\058922ff596fb694.jpg", - "response": "A bottle of red wine sits on a table in front of a wine rack.", - "id": 7440 - }, - { - "image_path": "G:\\images\\combined\\058b939f302d2ee9.jpg", - "response": "a slow cooker with a black lid and white lettering that says stay fit", - "id": 7441 - }, - { - "image_path": "G:\\images\\combined\\058dd75a30aedfd9.jpg", - "response": "A poster for the Mairie de Paris Mon Ter Festival is displayed on a billboard. The festival runs from October 27 to November 2. The billboard is located on a sidewalk near a street.", - "id": 7442 - }, - { - "image_path": "G:\\images\\combined\\058f87b6a547be35.jpg", - "response": "In the image there are two black Sony remote controls side by side. The left remote control is for an HTPC and has many buttons including one for the internet, a button for streaming, and a button for 3D. The right remote control is for a TV and has many buttons as well including one for 3D and a button for streaming.", - "id": 7443 - }, - { - "image_path": "G:\\images\\combined\\05904458f5947e09.jpg", - "response": "A baseball player slides into the base while another player with a baseball glove stands nearby.", - "id": 7444 - }, - { - "image_path": "G:\\images\\combined\\0590ff3e901c0a52.jpg", - "response": "A person holding a pile of bitcoins in their hand.", - "id": 7445 - }, - { - "image_path": "G:\\images\\combined\\0592d8874bd9be83.jpg", - "response": "A plate of fish and chips is sitting on a table.", - "id": 7446 - }, - { - "image_path": "G:\\images\\combined\\05932b7f300cbc02.jpg", - "response": "A cd case with the movie Angels and Airwaves on it.", - "id": 7447 - }, - { - "image_path": "G:\\images\\combined\\059387098b2e926e.jpg", - "response": "a sign that has a picture of a bowl of black sesame vanilla ice cream", - "id": 7448 - }, - { - "image_path": "G:\\images\\combined\\05940f004e45f43a.jpg", - "response": "A soccer match is being played on a field. Two players are on the field, one is wearing a red and black striped shirt and has a ball at his feet. The other player is wearing a blue and black striped shirt.", - "id": 7449 - }, - { - "image_path": "G:\\images\\combined\\0595c49a3d8223cb.jpg", - "response": " A man(365,177),(852,999) wearing a orange backpack(465,358),(727,848) and carrying a walking stick(188,286),(895,522) on his shoulders", - "id": 7450 - }, - { - "image_path": "G:\\images\\combined\\059614ae4190a994.jpg", - "response": "A keyboard covered in dirt and grime.", - "id": 7451 - }, - { - "image_path": "G:\\images\\combined\\0596b59916f9b706.jpg", - "response": "The image shows two men working on a white commercial van. The van has a large advertisement on the back. The men are bent over, looking at something. There are two bicycles parked nearby. One bicycle is in the foreground, leaning against a rail. Another bicycle is in the background, on the right side of the image.", - "id": 7452 - }, - { - "image_path": "G:\\images\\combined\\0597ca47b64bb2c3.jpg", - "response": "A black Samsung Vodafone cell phone.", - "id": 7453 - }, - { - "image_path": "G:\\images\\combined\\059bcefb25f86bd0.jpg", - "response": "A sign for a store that has a picture of Radioactive Man from The Simpsons on it.", - "id": 7454 - }, - { - "image_path": "G:\\images\\combined\\059d35bacca0bea4.jpg", - "response": "A grey door with two windows under a sign that says Motor Cars Tire & Auto Care.", - "id": 7455 - }, - { - "image_path": "G:\\images\\combined\\05a2486a7c5e5b00.jpg", - "response": "In the image there is a child typing on a black laptop. The laptop is an LG model and is open and in use. The child is wearing a pink and white shirt and has their hands on the keyboard.", - "id": 7456 - }, - { - "image_path": "G:\\images\\combined\\05a40edf53dc066c.jpg", - "response": "A laptop computer sitting on a table.", - "id": 7457 - }, - { - "image_path": "G:\\images\\combined\\05a472446d5d4e21.jpg", - "response": "In the image there is a sign written in french hanging from a building. The sign says \"CHAUSSURES\" on the top and \"POM DA\" on the bottom. There is also a picture of a shoe under the text \"POM DA\". The building is color brown and has half timber architecture.", - "id": 7458 - }, - { - "image_path": "G:\\images\\combined\\05a4b86627af46a0.jpg", - "response": "An iPhone sitting on a white counter.", - "id": 7459 - }, - { - "image_path": "G:\\images\\combined\\05a4fa87bfdaa243.jpg", - "response": "A large jetliner sitting on top of an airport tarmac.", - "id": 7460 - }, - { - "image_path": "G:\\images\\combined\\05a74aca98689235.jpg", - "response": "A white can of Carling beer sits on a wooden surface.", - "id": 7461 - }, - { - "image_path": "G:\\images\\combined\\05a8099e9157f5e1.jpg", - "response": "a large sign that says welcome to yakima", - "id": 7462 - }, - { - "image_path": "G:\\images\\combined\\05aa4aa13ef48c3e.jpg", - "response": "A man is writing on a white board in a room.", - "id": 7463 - }, - { - "image_path": "G:\\images\\combined\\05ab2441d54f60e4.jpg", - "response": "A white Mercedes Benz van is driving down a road next to a body of water. The van has the license plate S MB 5934. There are two people in the van, a man and a woman. The man is driving the van and the woman is sitting in the passenger seat.", - "id": 7464 - }, - { - "image_path": "G:\\images\\combined\\05ae767c5c1c8445.jpg", - "response": "A poster for an event called Shine On Weekender. The text is black and is set against a yellow background. The dates for the event are 6-9 November 2015. The event is held at Butlins Minehead Arena. The poster lists a number of bands and artists who will be performing at the event. These include Happy Mondays, The Wonder Stuff, Inspiral Carpets, Stereo MC's, 808 State, The Orb, The Farm, The Wedding Present, Lo Fidelity Allstars, Space, The Real People, The Primitives, Mark Morris, Milltown Brothers, and Menswear.", - "id": 7465 - }, - { - "image_path": "G:\\images\\combined\\05af522ea188adb7.jpg", - "response": "A white board with notes written in black ink.", - "id": 7466 - }, - { - "image_path": "G:\\images\\combined\\05af5f83e66bae17.jpg", - "response": "a black and gold rolex watch on a green table", - "id": 7467 - }, - { - "image_path": "G:\\images\\combined\\05b1c48356e80e93.jpg", - "response": "A poster with a red illustration of a pepper on it.", - "id": 7468 - }, - { - "image_path": "G:\\images\\combined\\05b2388fb1a75435.jpg", - "response": "A toy police van on a black and grey road.", - "id": 7469 - }, - { - "image_path": "G:\\images\\combined\\05b3d3c134004055.jpg", - "response": "Two boys in biking outfits are standing side by side with their arms around each other. They are wearing medals around their necks.", - "id": 7470 - }, - { - "image_path": "G:\\images\\combined\\05b5fd41ade5f337.jpg", - "response": "A black and white photo of a Volkswagen van.", - "id": 7471 - }, - { - "image_path": "G:\\images\\combined\\05b6ce697e11ffb1.jpg", - "response": "A close up of a Cyber Shot phone sitting on a blue surface.", - "id": 7472 - }, - { - "image_path": "G:\\images\\combined\\05b9e8bb174bc788.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 7473 - }, - { - "image_path": "G:\\images\\combined\\05bd3c543fbfe4af.jpg", - "response": "A poster with a picture of a crowd of people in the bottom left corner, a burning book in the bottom middle, and a military tank on the top right corner.", - "id": 7474 - }, - { - "image_path": "G:\\images\\combined\\05be76d2400e4f39.jpg", - "response": "A poster advertising the train service between Zurich and Chur.", - "id": 7475 - }, - { - "image_path": "G:\\images\\combined\\05be79808b4a3347.jpg", - "response": "A phone with a lot of apps on it including Twitter, Messages, and Crepes.", - "id": 7476 - }, - { - "image_path": "G:\\images\\combined\\05be9e4047f4de52.jpg", - "response": "A red and beige double decker bus is driving down the street, followed by a blue car. There are two other buses in the background, one is green and white and the other is red and white. The street is lined with buildings and there are several people walking around.", - "id": 7477 - }, - { - "image_path": "G:\\images\\combined\\05c068154667aadc.jpg", - "response": "a black and white clock with the word accountements on it", - "id": 7478 - }, - { - "image_path": "G:\\images\\combined\\05c1d28f4c5cf49d.jpg", - "response": "A table with a red and white checkered tablecloth and a white plate with two packets of creamer on it.", - "id": 7479 - }, - { - "image_path": "G:\\images\\combined\\05c22ba294e5299b.jpg", - "response": "A plaque commemorating John Witherspoon, who was a president, statesman, and minister.", - "id": 7480 - }, - { - "image_path": "G:\\images\\combined\\05c2acc72ae80907.jpg", - "response": "A book is open to a page with a picture of a woman's underwear with a flower in it.", - "id": 7481 - }, - { - "image_path": "G:\\images\\combined\\05c39e1161450d87.jpg", - "response": "a black and white photo of a building with a sign that says Pekarna in red letters.", - "id": 7482 - }, - { - "image_path": "G:\\images\\combined\\05c3fc256c80ccd5.jpg", - "response": "A television with a woman on the screen.", - "id": 7483 - }, - { - "image_path": "G:\\images\\combined\\05c5dcaa0f59c029.jpg", - "response": "a street sign that says no parking except for two wheeled motorized vehicles", - "id": 7484 - }, - { - "image_path": "G:\\images\\combined\\05c628f6696914f7.jpg", - "response": "A car with a Michigan license plate that says \"HELL\" on it.", - "id": 7485 - }, - { - "image_path": "G:\\images\\combined\\05c726fcbe14b9bb.jpg", - "response": "A group of women are gathered around a table with three laptops on it. They are all looking at the screens of the laptops and appear to be working on a project together. Some of the women are wearing matching shirts and there is a handbag on the table.", - "id": 7486 - }, - { - "image_path": "G:\\images\\combined\\05ca11bef1fed595.jpg", - "response": "A silver watch with a white face and silver accents.", - "id": 7487 - }, - { - "image_path": "G:\\images\\combined\\05cad7e0a038e402.jpg", - "response": "In the image there is a table with several books and a coffee mug on it. The books are written in Spanish and are stacked up. The mug has a peace sign on it. The table is shiny and the books are open on top of it.", - "id": 7488 - }, - { - "image_path": "G:\\images\\combined\\05cf910c6254bcef.jpg", - "response": "A white board with red writing on it.", - "id": 7489 - }, - { - "image_path": "G:\\images\\combined\\05cfb12ede46eeee.jpg", - "response": "A hockey game is in action with players from both teams all over the ice. The Devils goalie is making a save on a shot from the Boston Bruins. The Devils have three players on the ice while the Bruins have five. The Devils have a player in a blue and white jersey skating towards the net with the puck. The player in the red jersey is in the process of making a shot on goal. The player in the blue jersey is in the process of making a save. The player in the red jersey is in the process of scoring a goal. The player in the blue jersey is in the process of blocking the shot. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of getting up. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in", - "id": 7490 - }, - { - "image_path": "G:\\images\\combined\\05d02944612cdcc6.jpg", - "response": "A gold coin with an image of a man on a horse.", - "id": 7491 - }, - { - "image_path": "G:\\images\\combined\\05d195f3b527e170.jpg", - "response": "A baseball player wearing number 23 is talking to an umpire.", - "id": 7492 - }, - { - "image_path": "G:\\images\\combined\\05d2d1bb1d5666df.jpg", - "response": "An open book is laying on a bed with a pen and a small envelope on top of it. The book is a student planner and has a picture of a family on the cover. There is also a sticker on the planner.", - "id": 7493 - }, - { - "image_path": "G:\\images\\combined\\05d7a19d8d6ad54a.jpg", - "response": "A red and gold star patterned table with a yellow ruler on it and a pair of scissors.", - "id": 7494 - }, - { - "image_path": "G:\\images\\combined\\05d932ecefc0c3bd.jpg", - "response": "a blue and white sign for Selly Oak Station car park", - "id": 7495 - }, - { - "image_path": "G:\\images\\combined\\05db6cd9951e9e81.jpg", - "response": "A female model is holding a LG G3 Screen in her hand and pointing to it. The phone is placed on the left side of her and she is showing the home screen. The model is also holding a black rectangular object in her left hand. She has a white sign in front of her that says \"LG G3 Screen \ucd9c\uc2dc\" which translates to \"LG G3 Screen launch\". The background of the image is a brown wall and a wooden table.", - "id": 7496 - }, - { - "image_path": "G:\\images\\combined\\05dc223ebf80f0c0.jpg", - "response": "A green and yellow race car with stickers all over it.", - "id": 7497 - }, - { - "image_path": "G:\\images\\combined\\05dc2aba2eb24411.jpg", - "response": "A video game screenshot of two characters fighting in a ring. One character is Bruce Lee and the other is a generic fighter. Bruce Lee is in yellow shorts and is throwing a punch at the other fighter.", - "id": 7498 - }, - { - "image_path": "G:\\images\\combined\\05dca87c0791129e.jpg", - "response": "An old black rotary phone with a cord sitting on a white surface.", - "id": 7499 - }, - { - "image_path": "G:\\images\\combined\\05df1d7b1abf2c82.jpg", - "response": "A laptop with a box of water sitting on top of it.", - "id": 7500 - }, - { - "image_path": "G:\\images\\combined\\05e2313e9ccc17cc.jpg", - "response": "In the image there is a grocery store filled with shelves of food. On the shelves there are price tags attached to the food. One of the shelves has a price tag that says Organics. The food on the shelves is colorful and there is a variety of items.", - "id": 7501 - }, - { - "image_path": "G:\\images\\combined\\05e2e8a3531f395a.jpg", - "response": "A bottle of Sweet Water Brewing Company's Lowryeder Ipa.", - "id": 7502 - }, - { - "image_path": "G:\\images\\combined\\05e3286667582499.jpg", - "response": "A close up of a blue bumper with a license plate that says Virginia Fragm.", - "id": 7503 - }, - { - "image_path": "G:\\images\\combined\\05e7748e4c5d4849.jpg", - "response": "A close up of a bookshelf with several books and coffee mugs. The books are of various sizes and colors and are arranged on the shelf. The mugs are also of different sizes and are in front of the books.", - "id": 7504 - }, - { - "image_path": "G:\\images\\combined\\05e85dc81bf1da9f.jpg", - "response": "A bottle of Chateau La Dominique wine sits on a wooden table. The wine is dark red and has a red and gold foil top. The label on the bottle is white with a brown picture of a castle on it. The castle has a shield with the name Chateau La Dominique on it. The year 2005 is on the label.", - "id": 7505 - }, - { - "image_path": "G:\\images\\combined\\05e8721b42640337.jpg", - "response": "A small airplane is parked in a snowy field.", - "id": 7506 - }, - { - "image_path": "G:\\images\\combined\\05e8b3aa94da4169.jpg", - "response": "A ruler that is in the snow.", - "id": 7507 - }, - { - "image_path": "G:\\images\\combined\\05ed96977cb9395b.jpg", - "response": "a soccer player wearing a yellow jersey with the number 10 on the back", - "id": 7508 - }, - { - "image_path": "G:\\images\\combined\\05efbb562f5dba8e.jpg", - "response": "a scoreboard with the word ncaa on it", - "id": 7509 - }, - { - "image_path": "G:\\images\\combined\\05efd99cec28b640.jpg", - "response": "The image shows a DVD cover for the movie Fool's Gold. The cover features a man and a woman in swimwear, standing close together and looking at each other while a boat burns in the background. The man is wearing a white shirt and the woman is wearing a black bikini. The DVD is on display in a store, with a price sticker of $3.", - "id": 7510 - }, - { - "image_path": "G:\\images\\combined\\05efe8833b038440.jpg", - "response": "In the image, two male wrestlers are standing on a wrestling mat, facing each other. The wrestler on the left is wearing blue and has his hands on his knees. The wrestler on the right is wearing red and has his hands on his hips. There is a crowd of people in the background, watching the match.", - "id": 7511 - }, - { - "image_path": "G:\\images\\combined\\05f161e8475146ce.jpg", - "response": "A wooden desk with a clear plastic keyboard cover.", - "id": 7512 - }, - { - "image_path": "G:\\images\\combined\\05f2620cb094d130.jpg", - "response": "A gold and brown watch on a gold background.", - "id": 7513 - }, - { - "image_path": "G:\\images\\combined\\05f2dfcd237ec5ba.jpg", - "response": "A white envelope with a colorful star washi tape at the bottom.", - "id": 7514 - }, - { - "image_path": "G:\\images\\combined\\05f4120cf681e6cc.jpg", - "response": "A bathroom shelf with a mirror above it.", - "id": 7515 - }, - { - "image_path": "G:\\images\\combined\\05f544c1a57e8541.jpg", - "response": "An antique watch with intricate details on the band and face.", - "id": 7516 - }, - { - "image_path": "G:\\images\\combined\\05f55cb516868623.jpg", - "response": "A row of CDs on a wooden table, with a yellow wall behind them. The CDs are organized in a row and are of various sizes and colors.", - "id": 7517 - }, - { - "image_path": "G:\\images\\combined\\05f5b044d56c6e85.jpg", - "response": "A bucket of Henry patch cement sits on the ground. The bucket is blue and yellow and has a black handle. The label on the bucket is blue and white and has the word \"Henry\" in big white letters. The bucket also has the words \"Patch cement\" written on it.", - "id": 7518 - }, - { - "image_path": "G:\\images\\combined\\05f6eeea9b0ecb5c.jpg", - "response": "A large advertisement for a smartphone.", - "id": 7519 - }, - { - "image_path": "G:\\images\\combined\\05f850bedfc426be.jpg", - "response": "A book cover with a mountainous scene and three figures in the foreground, two of them holding swords.", - "id": 7520 - }, - { - "image_path": "G:\\images\\combined\\05fab8d9991ca41c.jpg", - "response": "A picture of a building with a sign that says Woolworths on it.", - "id": 7521 - }, - { - "image_path": "G:\\images\\combined\\05fc2fa4d148506d.jpg", - "response": "A blue and white VW van is parked on the side of the road.", - "id": 7522 - }, - { - "image_path": "G:\\images\\combined\\05fe03cf47091298.jpg", - "response": "A boy standing at a kitchen island with a blender on the island.", - "id": 7523 - }, - { - "image_path": "G:\\images\\combined\\05fe4805036d9e2c.jpg", - "response": "A silver coin from 1921 next to a black pen.", - "id": 7524 - }, - { - "image_path": "G:\\images\\combined\\05ff38279bc0d7d6.jpg", - "response": "A busy city street with a crowd of people walking around. There are many street lights and buildings in the background.", - "id": 7525 - }, - { - "image_path": "G:\\images\\combined\\0600493ade6da077.jpg", - "response": "A table topped with lots of books.", - "id": 7526 - }, - { - "image_path": "G:\\images\\combined\\0600a2703cdd707e.jpg", - "response": "A large black and white clock mounted on a metal structure.", - "id": 7527 - }, - { - "image_path": "G:\\images\\combined\\0600d03fbd7c32a9.jpg", - "response": "A baseball field with a large scoreboard above it.", - "id": 7528 - }, - { - "image_path": "G:\\images\\combined\\0602623232127-web-tete_jpg.rf.11321124c0c93e467be27f9ca94f9b20.jpg", - "response": "In the image, there is a group of people wearing face masks. They are standing close to each other and walking through an airport. Some of them are carrying handbags and suitcases. The people are of different ages, including children and adults. Some of them are wearing black, while others are wearing white or red. A few of them are wearing medical masks, while others are wearing regular face masks. The scene is set in an airport terminal.", - "id": 7529 - }, - { - "image_path": "G:\\images\\combined\\0602623232127-web-tete_jpg.rf.a81dcf1ec5eb0cd9038c7b20636179c5.jpg", - "response": "In the image, there is a group of people wearing face masks. They are walking through an airport. Some of them are wearing black, white, and gray face masks. One person is carrying a red and white handbag. There is also a child wearing a white face mask and a red and white jacket.", - "id": 7530 - }, - { - "image_path": "G:\\images\\combined\\060393adbd95ad5e.jpg", - "response": "A science fiction magazine cover with a woman in a short blue space suit and a man in a spacesuit sitting on a planet in the background.", - "id": 7531 - }, - { - "image_path": "G:\\images\\combined\\06041cc69d3cb29a.jpg", - "response": "A street sign that says 20 zone on it.", - "id": 7532 - }, - { - "image_path": "G:\\images\\combined\\060496f24b6c6b42.jpg", - "response": "A bottle of Bove\u043b\u0435\u043d sits next to a glass filled with beer. The bottle has a label with a picture of a man holding a pitchfork.", - "id": 7533 - }, - { - "image_path": "G:\\images\\combined\\060540f814b4ba97.jpg", - "response": "A black pay phone sitting on the sidewalk next to a fire hydrant.", - "id": 7534 - }, - { - "image_path": "G:\\images\\combined\\0605600b4e2cd427.jpg", - "response": "A television screen showing a group of people walking down a wet street holding umbrellas.", - "id": 7535 - }, - { - "image_path": "G:\\images\\combined\\060722-A-3715G-349_jpg.rf.aa183f735986d50b02898ab7c998308c.jpg", - "response": "A group of people wearing camouflage and noise canceling headphones are at a shooting range. There are several guns and targets visible in the scene. One person is kneeling down while shooting, and another person is aiming a gun. The image also shows the back of a mans head who is wearing camouflage and noise canceling headphones.", - "id": 7536 - }, - { - "image_path": "G:\\images\\combined\\060824-F-2185F-013_JPG_jpg.rf.63d71d4bc7db27159d22b681de0f58ac.jpg", - "response": "A group of construction workers are working on a building site. They are wearing yellow vests and hard hats. One of the workers is shoveling cement into a mixer.", - "id": 7537 - }, - { - "image_path": "G:\\images\\combined\\0608ce54c2a97af1.jpg", - "response": "A wooden box with the word Lipton on it.", - "id": 7538 - }, - { - "image_path": "G:\\images\\combined\\060a93ffee35bb49.jpg", - "response": "A green and white enter sign with a black arrow pointing upwards.", - "id": 7539 - }, - { - "image_path": "G:\\images\\combined\\060ced2d96dba0d7.jpg", - "response": "A bottle of wine next to a glass of wine on a table.", - "id": 7540 - }, - { - "image_path": "G:\\images\\combined\\060d3f916a232bbd.jpg", - "response": "A glass of beer sitting on a table next to a brown bottle.", - "id": 7541 - }, - { - "image_path": "G:\\images\\combined\\060dcd71cd1b09ff.jpg", - "response": "A cell phone with a blue screen and many apps.", - "id": 7542 - }, - { - "image_path": "G:\\images\\combined\\060e0d58d045138d.jpg", - "response": "A large crowd of people are in the stands watching a game.", - "id": 7543 - }, - { - "image_path": "G:\\images\\combined\\060ec35375b47526.jpg", - "response": "A television with a screen showing a video of a cat.", - "id": 7544 - }, - { - "image_path": "G:\\images\\combined\\060f839ec876f4e8.jpg", - "response": "A group of men playing soccer on a field.", - "id": 7545 - }, - { - "image_path": "G:\\images\\combined\\061026-F-6882G-0001_JPG_jpg.rf.d2adbbe9e2f085e21f7c0ed1cf03dee8.jpg", - "response": "An airman is standing on the tarmac in front of a large U.S. Air Force plane. He is wearing an orange vest and holding two orange X's in his hands. Another person is visible behind the man, also on the tarmac.", - "id": 7546 - }, - { - "image_path": "G:\\images\\combined\\0610819fdc3fdfa0.jpg", - "response": "The image depicts a baseball game in progress with two teams playing against each other. There are several players on the field, some wearing baseball gloves, and others wearing baseball uniforms. One player is seen running towards a base while others are spread out across the field. In the background, there are several cars parked, including a white SUV and a black truck. The scene captures the excitement and competitive nature of a baseball game.", - "id": 7547 - }, - { - "image_path": "G:\\images\\combined\\06108ddacf8b9258.jpg", - "response": "The image depicts a street intersection with a green traffic light. There are two green lights on the left side of the street and one green light on the right side. The street appears empty, with no cars visible in the intersection. The street signs are clearly visible, indicating that this is a well-marked intersection.", - "id": 7548 - }, - { - "image_path": "G:\\images\\combined\\0611069bfe97ef91.jpg", - "response": "A street sign with many different languages on it.", - "id": 7549 - }, - { - "image_path": "G:\\images\\combined\\061186b6a107836b.jpg", - "response": "In the image, a man wearing a blue shirt and jeans is riding a bicycle down a city street. He is wearing a helmet and has a backpack on. The backpack has a sign attached to it that says \"T HATE.\" The man appears to be in motion, riding his bike.", - "id": 7550 - }, - { - "image_path": "G:\\images\\combined\\0611e28827ba45e3.jpg", - "response": "A coffee maker with many notes attached to it.", - "id": 7551 - }, - { - "image_path": "G:\\images\\combined\\0612be26dc019b40.jpg", - "response": "A large video screen at a baseball stadium.", - "id": 7552 - }, - { - "image_path": "G:\\images\\combined\\06132aee8e2b83d5.jpg", - "response": "A person is holding a HTC phone in front of a computer screen. The phone is a gold color and is the 5th generation HTC One. The time on the phone is 13:14 and the weather is cloudy. The phone has a home screen with various apps including Google, Facebook, and Yahoo.", - "id": 7553 - }, - { - "image_path": "G:\\images\\combined\\0615bdf42cb27974.jpg", - "response": "A man and woman standing next to each other.", - "id": 7554 - }, - { - "image_path": "G:\\images\\combined\\061639aa244c5458.jpg", - "response": "A stack of chess books.", - "id": 7555 - }, - { - "image_path": "G:\\images\\combined\\061686a7c2f60b2a.jpg", - "response": "A bottle of white wine with a blue and white label on it.", - "id": 7556 - }, - { - "image_path": "G:\\images\\combined\\0616b25a73928682.jpg", - "response": "A white board with writing on it.", - "id": 7557 - }, - { - "image_path": "G:\\images\\combined\\0616d98ee407689d.jpg", - "response": "A movie poster with the title Nous Les Gosses.", - "id": 7558 - }, - { - "image_path": "G:\\images\\combined\\06182fa58de356a7.jpg", - "response": "A cell phone birthday card with a black cell phone on a aqua colored background. The cell phone has a watercolor striped design on it and the words \"Happy Birthday to You\" are on the screen. There is a button on each of the four corners of the cell phone. The card is on a white card base and the border is scalloped.", - "id": 7559 - }, - { - "image_path": "G:\\images\\combined\\0619b059d30924a1.jpg", - "response": "A close up of a laptop computer with a person typing on it.", - "id": 7560 - }, - { - "image_path": "G:\\images\\combined\\0619f58bc7c5c695.jpg", - "response": "The image features a white car with a license plate that says \"NOFUKNJOKE\". The car is a BMW and is displayed in a museum.", - "id": 7561 - }, - { - "image_path": "G:\\images\\combined\\061b09558af43b96.jpg", - "response": "a person is holding a smart watch on their arm", - "id": 7562 - }, - { - "image_path": "G:\\images\\combined\\061b3eef44b68716.jpg", - "response": "A jar of monkey farts candle sits on a table.", - "id": 7563 - }, - { - "image_path": "G:\\images\\combined\\061c45e63f462e82.jpg", - "response": "A car with a license plate that says \"6RGF07L\" on the back.", - "id": 7564 - }, - { - "image_path": "G:\\images\\combined\\061c4ad060db05ca.jpg", - "response": "The scoreboard records Dilshan's 54 and Paranavitana's 32", - "id": 7565 - }, - { - "image_path": "G:\\images\\combined\\061d590e5ad36901.jpg", - "response": "A close up of several wine bottles on a wooden table.", - "id": 7566 - }, - { - "image_path": "G:\\images\\combined\\061d8e57615d98c4.jpg", - "response": "A cell phone that is turned on and displaying a logo for HTC.", - "id": 7567 - }, - { - "image_path": "G:\\images\\combined\\062120ccaf6c5a1b.jpg", - "response": "A woman wearing 3D glasses is pointing to a scene on an LG TV featuring a man doing a trick on a skateboard.", - "id": 7568 - }, - { - "image_path": "G:\\images\\combined\\0621dff7814daf99.jpg", - "response": "A close up of a kitchen aid mixer with a dough in it.", - "id": 7569 - }, - { - "image_path": "G:\\images\\combined\\06275dd7215c2595.jpg", - "response": "A bottle of Electric Nurse DIPA sitting next to a glass filled with the beer.", - "id": 7570 - }, - { - "image_path": "G:\\images\\combined\\06281410c3ae590d.jpg", - "response": "The image shows the rear view of a white BMW 320d Touring, which is a wagon version of the BMW 3-series. The car is parked in a parking lot with some grass in the background. The car has a license plate that reads \"LKC 698\".", - "id": 7571 - }, - { - "image_path": "G:\\images\\combined\\06295491ac5d1776.jpg", - "response": "a man standing at a podium with microphones in front of him", - "id": 7572 - }, - { - "image_path": "G:\\images\\combined\\0629652789b0ab8d.jpg", - "response": "A small silver box is on a table with a wall behind it. The table also has three toy frogs and a book.", - "id": 7573 - }, - { - "image_path": "G:\\images\\combined\\062a0623250ac4af.jpg", - "response": "A large blue and yellow sign for the Hotel California.", - "id": 7574 - }, - { - "image_path": "G:\\images\\combined\\062e3ddc1b760de6.jpg", - "response": "The image is split into two, showing the same keyboard layout side by side. The keys are white and grey and are in two rows. The first row has six keys, labeled A through F, and the second row has five keys, labeled 1 through 6. The letters on the keys are black.", - "id": 7575 - }, - { - "image_path": "G:\\images\\combined\\062e529f19323364.jpg", - "response": "A street scene with a red and yellow street car traveling down the street. There are multiple traffic lights along the street and a few cars parked on the side of the road. The street is lined with buildings and there is a tall white building in the background.", - "id": 7576 - }, - { - "image_path": "G:\\images\\combined\\0631bf1ccff448a2.jpg", - "response": "A black and white photo of a run down building with a water tower on top. There is a stop sign in the foreground and a wooden sign in the background. The sky is cloudy and the street is empty.", - "id": 7577 - }, - { - "image_path": "G:\\images\\combined\\0632337aeecc9696.jpg", - "response": "An electronic scale with a case on top of it.", - "id": 7578 - }, - { - "image_path": "G:\\images\\combined\\0632cdaee00bcca3.jpg", - "response": "A table with two copies of the book \"Lady Chatterley's Lover\" by D.H. Lawrence.", - "id": 7579 - }, - { - "image_path": "G:\\images\\combined\\0633e99daf2103f4.jpg", - "response": "A baseball player wearing a uniform with the number 45 on it.", - "id": 7580 - }, - { - "image_path": "G:\\images\\combined\\06355d5f311672d2.jpg", - "response": "The image shows a group of six men dressed in white baseball uniforms standing on a grassy field. They are all wearing black and white baseball caps, and some of them are also wearing black wristbands. The players are standing in a line, and each of them has a white number on the left side of their shirts. The baseball gloves they are wearing vary in color from light to dark brown. The field has white lines and a few small patches of grass are visible.", - "id": 7581 - }, - { - "image_path": "G:\\images\\combined\\06377f8a5a9e831c.jpg", - "response": "a close up of two gold pocket watches on a red surface", - "id": 7582 - }, - { - "image_path": "G:\\images\\combined\\06382c3188d0e7e7.jpg", - "response": "Three women playing basketball, two of them wearing red and white jerseys and one wearing white and blue. They are all competing for the ball.", - "id": 7583 - }, - { - "image_path": "G:\\images\\combined\\0639268f2531c31c.jpg", - "response": "In the image, there is a large group of people gathered in the street. They are holding red flags and signs, and some of them are holding up smoke bombs, which are producing white smoke. In the center of the scene, a person is holding a red flare, which is producing sparks and light. The people are standing in front of a building with large windows.", - "id": 7584 - }, - { - "image_path": "G:\\images\\combined\\0639ed62fbbbb695.jpg", - "response": "A black and gold image of a perfume bottle with a matching box and a black and gold bag.", - "id": 7585 - }, - { - "image_path": "G:\\images\\combined\\063c4e012fbe0120.jpg", - "response": "A vintage postcard from Boston, Massachusetts. The postcard has a blue and orange background with the words Greetings from Boston. The word Boston is written in large letters and has images of the state's landmarks. There is a picture of the state flower, the mayflower, and the state bird, the Boston lobster. The postcard has a yellow and blue border.", - "id": 7586 - }, - { - "image_path": "G:\\images\\combined\\063d10037d4ade2d.jpg", - "response": "A city street with shops and stores lining the street.", - "id": 7587 - }, - { - "image_path": "G:\\images\\combined\\064068705af4ecab.jpg", - "response": "a black and silver rolex watch on a green background", - "id": 7588 - }, - { - "image_path": "G:\\images\\combined\\0640fe309e2d025f.jpg", - "response": "A car with the license plate \"ROMA 7F9054\" on a cobblestone street.", - "id": 7589 - }, - { - "image_path": "G:\\images\\combined\\064234cb569b0580.jpg", - "response": "In the image, a man wearing a blue and white baseball uniform is in the process of throwing a baseball. He is wearing a blue hat and holding a black baseball glove. The baseball field has a blue wall with white writing on it. There are several people in the background, some of them are sitting and others are standing. A bench is visible in the scene as well.", - "id": 7590 - }, - { - "image_path": "G:\\images\\combined\\0647c745934ff80e.jpg", - "response": "The car is red and has a yellow license plate.", - "id": 7591 - }, - { - "image_path": "G:\\images\\combined\\0648077918a79ddf.jpg", - "response": "The image features two women standing beside each other and holding up LG G Pad 8.3 tablets. Both women are smiling and looking into the camera. One woman is on the left side of the image and is holding an LG G Pad 8.3 in white in the right hand and an LG G Pad 8.3 in black in the left hand. The other woman is on the right side of the image and is holding an LG G Pad 8.3 in white in the right hand and an LG G Pad 8.3 in gold in the left hand. In front of them are two LG G Pad 8.3 tablets on stands. The one on the left is in white and the one on the right is in gold. The women are standing in front of an LG G Pad 8.3 promotional sign.", - "id": 7592 - }, - { - "image_path": "G:\\images\\combined\\064a119b14d38f9e.jpg", - "response": "The image is a grid of 6 images of various bottles of Cava, a type of champagne. The bottles are shown from the top and vary in size and shape. The text at the top of the image says \"Cava\" and the year 2006 is also listed. The background of the image is a light pink color.", - "id": 7593 - }, - { - "image_path": "G:\\images\\combined\\064aa8d36707c38d.jpg", - "response": "In the image, there is a woman wearing a red and white top and red bikini bottom while running down a street. She is wearing sunglasses and has her hair pulled back.", - "id": 7594 - }, - { - "image_path": "G:\\images\\combined\\064b2080beb01a27.jpg", - "response": "A large glass window with a reflection of a building.", - "id": 7595 - }, - { - "image_path": "G:\\images\\combined\\064b4fa5233b6633.jpg", - "response": "An Asian female model is showcasing a smartphone with a control panel on the screen. She is standing next to a white LG Tromm washing machine. The model is also displaying a card with the same control panel on it.", - "id": 7596 - }, - { - "image_path": "G:\\images\\combined\\064cf4baf718ecc8.jpg", - "response": "A person is holding a Samsung Galaxy S5 in their hand. The back of the phone is silver and has small circles on it. The phone is held upright and you can see the camera on the back. The person holding the phone is in an office setting.", - "id": 7597 - }, - { - "image_path": "G:\\images\\combined\\064cfcc1687a2b2c.jpg", - "response": "A bottle of Clear Rockstar Vodka that is shaped like a skull.", - "id": 7598 - }, - { - "image_path": "G:\\images\\combined\\064dcf621a91d9ac.jpg", - "response": "A red truck with a cage in the back is driving down a busy street. The street has multiple cars and a McDonald's restaurant is nearby.", - "id": 7599 - }, - { - "image_path": "G:\\images\\combined\\064e34ad7f2fcd7b.jpg", - "response": "A keyboard with red lit up letters and symbols.", - "id": 7600 - }, - { - "image_path": "G:\\images\\combined\\065305a3fdbc4599.jpg", - "response": "A book is open to a page titled \"Inside Concentration Camps\" on a wooden table.", - "id": 7601 - }, - { - "image_path": "G:\\images\\combined\\065472b7e579692c.jpg", - "response": "A large firework is next to a can of soda.", - "id": 7602 - }, - { - "image_path": "G:\\images\\combined\\06549f3db9effc44.jpg", - "response": "a close up of a wrist watch with a black and silver bulova watch on it", - "id": 7603 - }, - { - "image_path": "G:\\images\\combined\\0655a17837776dca.jpg", - "response": "The image features two wristwatches with green and black straps. The straps are made of nylon and are military green in color. The wristwatches have black faces and white accents. One of the wristwatches has a black face with white accents, while the other one has a green face with white accents. The hands of both wristwatches are white. The faces of the wristwatches have various markings and numbers. The case of the wristwatches are made of stainless steel. The wristwatches are set on a white surface.", - "id": 7604 - }, - { - "image_path": "G:\\images\\combined\\0656060745f6eaae.jpg", - "response": "The image features a close up of two brown coffee mugs sitting next to each other on a table. The mugs have a circular logo that says \"Starbucks\" on the left and \"Coffee. TEA. SPICES.\" on the right. Below this is a paragraph in white that says \"THE FIRST STARBUCKS STORE Pike Place Market Seattle WA est. 1971\" in white. The background is a dark brown.", - "id": 7605 - }, - { - "image_path": "G:\\images\\combined\\065674a596dea1bc.jpg", - "response": "A baseball game is being played in a stadium. There is a batter up to plate and the pitcher is winding up to throw the ball. The catcher is positioned behind the batter and the umpire is behind the catcher. There is a large crowd in the stands watching the game.", - "id": 7606 - }, - { - "image_path": "G:\\images\\combined\\0658db1f0796d47e.jpg", - "response": "A collection of guiness books of records stacked on a wooden bench.", - "id": 7607 - }, - { - "image_path": "G:\\images\\combined\\065eb26a527cc930.jpg", - "response": "A woman wearing a white, blue and gold uniform is standing in a field.", - "id": 7608 - }, - { - "image_path": "G:\\images\\combined\\065f82278f4821bc.jpg", - "response": "A white Samsung laptop computer with a black screen.", - "id": 7609 - }, - { - "image_path": "G:\\images\\combined\\0660add2bf06d746.jpg", - "response": "A person is holding a Samsung Galaxy phone in one hand and an HTC phone in the other. The Samsung phone is on the left and is a little bit taller and thicker. The home screens on both phones are colorful and feature icons for Google, Phone, and Internet. The HTC phone is on the right and has a more rectangular design. The time on the HTC phone is 10:15. The weather on both phones is sunny and the temperature is 13 degrees Celsius on the Samsung phone and 10 degrees Celsius on the HTC phone. The Samsung phone also has a notification of a missed call from the number 722.", - "id": 7610 - }, - { - "image_path": "G:\\images\\combined\\06628eaed257fa24.jpg", - "response": "In the image there are many hot air balloons in the sky. One of the balloons is pink with a pig on it. Another balloon has stripes and a tail. There are also many people on the ground watching the balloons.", - "id": 7611 - }, - { - "image_path": "G:\\images\\combined\\0665054b37963015.jpg", - "response": "A gold and silver watch with a white face and gold numbers.", - "id": 7612 - }, - { - "image_path": "G:\\images\\combined\\06651673adb4c4e6.jpg", - "response": "A stack of books about children's play, story, and school.", - "id": 7613 - }, - { - "image_path": "G:\\images\\combined\\0665cd6767d4c327.jpg", - "response": "A pair of blue handled scissors on a table next to a red stop sign cut out.", - "id": 7614 - }, - { - "image_path": "G:\\images\\combined\\066687f8b782ab5b.jpg", - "response": "A large billboard advertising a housing development project.", - "id": 7615 - }, - { - "image_path": "G:\\images\\combined\\0669bc0057a29b7e.jpg", - "response": "The image shows the entrance to a Best Buy store. The sign for the store is yellow and black, and is attached to a blue wall. The word \"Best Buy\" is written in black letters on the sign. The sign is shaped like a yellow tag.", - "id": 7616 - }, - { - "image_path": "G:\\images\\combined\\066b242df43a2afd.jpg", - "response": "The image shows the inside of a store with a long counter. There are several people standing around the counter, and some are wearing white shirts. The store has a variety of items on display, including many boxes and pictures. There are also several chairs and a bench in the room.", - "id": 7617 - }, - { - "image_path": "G:\\images\\combined\\066ba4a30967e316.jpg", - "response": "A red background with green and blue text that says \"A WOMAN'S 'I'll be ready in 5 minutes.' AND A MAN'S 'I'll be home in 5 minutes.' ARE THE SAME\"", - "id": 7618 - }, - { - "image_path": "G:\\images\\combined\\066e1c1a72aa9ba5.jpg", - "response": "A green piece of clothing with a joint, phone and glasses on top of it.", - "id": 7619 - }, - { - "image_path": "G:\\images\\combined\\066e6dd48642b413.jpg", - "response": "A Dell computer monitor sitting on a desk.", - "id": 7620 - }, - { - "image_path": "G:\\images\\combined\\066f5833cd78c07a.jpg", - "response": "A baseball player wearing a white uniform with red lettering and black trim is running on the field. He is wearing a black and red baseball cap and a black baseball glove. He is on the green grass of the field and there is a white line on the dirt near the base. Another player is in the background.", - "id": 7621 - }, - { - "image_path": "G:\\images\\combined\\066f6d1fa2f45d09.jpg", - "response": "A wrist watch with a wrist band that has a red and white stripe.", - "id": 7622 - }, - { - "image_path": "G:\\images\\combined\\066ffb755fca5f44.jpg", - "response": "A black and white photo of a building with several windows. There are two police vans parked outside of the building. One is on the left side and the other is on the right side. There is a car parked in front of the building. There are two people standing outside of the building. One is on the left side and the other is on the right side. There is a sign on the building that says \"V\u00e4sttrafik\".", - "id": 7623 - }, - { - "image_path": "G:\\images\\combined\\0671a3cc715bcb2c.jpg", - "response": "A man wearing a black shirt with yellow writing on it and a black hat with white lettering on it.", - "id": 7624 - }, - { - "image_path": "G:\\images\\combined\\067371b2633fef26.jpg", - "response": "A Canadian airplane is on display in a museum with several tanks and cars.", - "id": 7625 - }, - { - "image_path": "G:\\images\\combined\\0673a09f8320a362.jpg", - "response": "A can of Mountain Dew next to a glass filled with the pinkish orange liquid.", - "id": 7626 - }, - { - "image_path": "G:\\images\\combined\\0675447696bece71.jpg", - "response": "A street sign that says \"ZONE\" on it.", - "id": 7627 - }, - { - "image_path": "G:\\images\\combined\\0677710c25164882.jpg", - "response": "An old book with a picture of a man riding a horse on the left page.", - "id": 7628 - }, - { - "image_path": "G:\\images\\combined\\06778d17e36c6e74.jpg", - "response": "A stadium with a large scoreboard and a field with a goal post.", - "id": 7629 - }, - { - "image_path": "G:\\images\\combined\\0677ef4f71cdd0e6.jpg", - "response": "In the image there is a silver laptop that is turned off. The laptop is open and positioned with the keyboard facing the viewer. The laptop is sitting on a wooden table.", - "id": 7630 - }, - { - "image_path": "G:\\images\\combined\\0678240750f2e8f1.jpg", - "response": "The image is an advertisement for Vodafone 360. The phone displayed is a Samsung Galaxy. The phone is shown in a black and silver color scheme. The screen is lit up and displays the Samsung logo. The phone is on top of a red and white striped surface. The words \"A new dimension in communication\" are written in red and white on the top of the image. The tagline \"Make the most of now\" is written in black on a white background at the top right corner of the image.", - "id": 7631 - }, - { - "image_path": "G:\\images\\combined\\067938722e1e4038.jpg", - "response": "a pair of headphones with the word sony on the side", - "id": 7632 - }, - { - "image_path": "G:\\images\\combined\\067c1c9d9aa81971.jpg", - "response": "A movie theater called the Coloseum with a poster for the Rote Baron movie.", - "id": 7633 - }, - { - "image_path": "G:\\images\\combined\\067e9537c06f4c28.jpg", - "response": "In the image, I can see a jar of sea buckthorn body butter. The jar is white with a white lid and a yellow label. The label features a drawing of a leaf and the words \"sea buckthorn body butter\" in black font. The jar is filled with a light yellow buttery substance.", - "id": 7634 - }, - { - "image_path": "G:\\images\\combined\\067f5eada160a3ff.jpg", - "response": "A television that is turned on and showing a scene from the Olympics.", - "id": 7635 - }, - { - "image_path": "G:\\images\\combined\\06804848802f0b93.jpg", - "response": "A black cellphone with a touch screen is shown. The screen displays an album cover for Lollipop by Big Bang. The phone has a rubberized black exterior and a silver band on the side. There are five icons displayed on the bottom of the screen: a phone, a mail box, a calendar, a music player, and a internet explorer. The phone is on and displays the time as 12:35.", - "id": 7636 - }, - { - "image_path": "G:\\images\\combined\\0680e4eaedd1549a.jpg", - "response": "A book with the title \"Fart Proudly\" written on it.", - "id": 7637 - }, - { - "image_path": "G:\\images\\combined\\06827174c72ebfd3.jpg", - "response": "A character from Phantasy Star Online 2, a green-haired woman in a blue and white jumpsuit, with the words \"I stand with Reimi Edge. I promise to be of service.\" written in the corner.", - "id": 7638 - }, - { - "image_path": "G:\\images\\combined\\0683afb826b21a90.jpg", - "response": "a cartoon depicting the anatomy of a star wars geek, who is depicted as a very fat man wearing a star wars t-shirt, holding a light saber and wearing a yoda mask. He also has a helmet, an air horn, and a pair of flip flops. He has a extensive comic book collection and has never kissed a girl. He is also an eBay master, has camped out at lincoln theater for 3 weeks, and has a vice president of solo hair lice. He is also a 38 year old who lives in parents garage, has a 7-11 assistant manager ID, and has a light saber. He is also an inflatable light saber, always wears a backup cream filled twinkie snack belt, and has a Star Wars fan club Vice prez of solo hair lice.", - "id": 7639 - }, - { - "image_path": "G:\\images\\combined\\0684ea3155f00794.jpg", - "response": "The image features a large scoreboard at a stadium. The scoreboard is blue and says \"Touchdown\" in large letters. There are two people walking in front of the scoreboard, and a hand is holding a sign with a picture of a lion on it. The sign says \"SOS HE\" on it. There are also two flags on the left side of the image, and a large building in the background.", - "id": 7640 - }, - { - "image_path": "G:\\images\\combined\\068601131e743b00.jpg", - "response": "A wooden door with two funeral no parking signs on it.", - "id": 7641 - }, - { - "image_path": "G:\\images\\combined\\068736c8481dadf1.jpg", - "response": "A man wearing a watch and a bracelet is standing in front of a red jeep.", - "id": 7642 - }, - { - "image_path": "G:\\images\\combined\\068a8155b97899ef.jpg", - "response": "A man standing at a podium in front of three yellow taxicabs.", - "id": 7643 - }, - { - "image_path": "G:\\images\\combined\\068aab7aed80396c.jpg", - "response": "A bicycle frame is on display in a room. The wall behind the bicycle is red and white. There is a counter with a laptop on it to the left of the bicycle. There are several bottles on the counter and some shelves behind the counter. There is a red and white sign on the wall above the counter that says Glory Cycles. There is a blue and black bike stand holding the bicycle frame.", - "id": 7644 - }, - { - "image_path": "G:\\images\\combined\\068d34bd37ed316b.jpg", - "response": "A bottle of dark beer next to a wine glass filled with beer.", - "id": 7645 - }, - { - "image_path": "G:\\images\\combined\\068dda12bd537a24.jpg", - "response": "A fire truck parked in front of a fire station.", - "id": 7646 - }, - { - "image_path": "G:\\images\\combined\\068e3478b099b968.jpg", - "response": "On a wooden table sits two electronic time keeping devices. One is a white rectangular device with a large display and numbered buttons in black. The other is a smaller rectangular device with a digital display in black letters and numbers.", - "id": 7647 - }, - { - "image_path": "G:\\images\\combined\\0690772599861289.jpg", - "response": "A person with a black wrist watch that has the words 'Messaging' and 'Everdito Domestico' on it.", - "id": 7648 - }, - { - "image_path": "G:\\images\\combined\\0693177a070ae01c.jpg", - "response": "An open book with a blue and green cover.", - "id": 7649 - }, - { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.152dda5b9697be628a6472ef58967853.jpg", - "response": "A cardboard box is on the floor. It is open and empty. There is a plastic bag next to it.", - "id": 7650 - }, - { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.7b8f00e3bfb2030444368b967e414c50.jpg", - "response": "A cardboard box with the wordasics on it.", - "id": 7651 - }, - { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.df18e2d49b3ae9624a2a890b531b5a1d.jpg", - "response": "A cardboard box with a yellow and black sticker on it.", - "id": 7652 - }, - { - "image_path": "G:\\images\\combined\\06947190457b98c6.jpg", - "response": "A group of men playing soccer on a field.", - "id": 7653 - }, - { - "image_path": "G:\\images\\combined\\0697548a03f24b91.jpg", - "response": "A white van with the letters C and C on the side of it.", - "id": 7654 - }, - { - "image_path": "G:\\images\\combined\\069a1ecc2b2c40f8.jpg", - "response": "A man and a woman in matching blue parkas pose for a picture in front of the Icebar sign.", - "id": 7655 - }, - { - "image_path": "G:\\images\\combined\\069e16f5ab78c05f.jpg", - "response": "A can of Heineken beer sitting on a desk in front of a computer.", - "id": 7656 - }, - { - "image_path": "G:\\images\\combined\\06a063896f12b58c.jpg", - "response": "A sign for Selly Oak Park and Ride with an arrow pointing to the left.", - "id": 7657 - }, - { - "image_path": "G:\\images\\combined\\06a22fea02e3ab79.jpg", - "response": "In the image there is a pile of mixed coins, both gold and silver in color. Some of the coins are quite large, while others are much smaller. They are scattered across the image, with some coins overlapping and others standing alone.", - "id": 7658 - }, - { - "image_path": "G:\\images\\combined\\06a56ecbe097d3c1.jpg", - "response": "A paper with a blue top that says \"Grow Locally, Cook Globally\" on it.", - "id": 7659 - }, - { - "image_path": "G:\\images\\combined\\06a7f1d5b80884dd.jpg", - "response": "A man in a red shirt standing outside a store.", - "id": 7660 - }, - { - "image_path": "G:\\images\\combined\\06a80a634d58ba62.jpg", - "response": "The image shows three soda bottles side by side. The leftmost bottle is dark and the rightmost bottle is light. The middle bottle is a mix of dark and light. The background is a purple color.", - "id": 7661 - }, - { - "image_path": "G:\\images\\combined\\06a89bd0cab3f767.jpg", - "response": "In the image, there is a group of men dressed in maroon and white striped baseball uniforms. They are standing on a grassy field and are equipped with baseball gloves. There are three players in the foreground, with one of them talking to a coach. The coach is wearing a baseball mitt on his left hand and has a baseball glove on his right hand. Another baseball glove is visible on the ground.", - "id": 7662 - }, - { - "image_path": "G:\\images\\combined\\06acb18d8ce3a3e9.jpg", - "response": "A bottle of Katar 90 oil in a box.", - "id": 7663 - }, - { - "image_path": "G:\\images\\combined\\06b0f22bfc9d4aa4.jpg", - "response": "A table with a book on it, the book is called \"Desert talismans\". There are necklaces and earrings on the table, some of them are made of stones and some have silver colored metal parts.", - "id": 7664 - }, - { - "image_path": "G:\\images\\combined\\06b2fa976acd7aa9.jpg", - "response": "A black USAF jet is on display outside.", - "id": 7665 - }, - { - "image_path": "G:\\images\\combined\\06b364f15e3d955b.jpg", - "response": "A children's book with the title Rapunzel is open to the page with the blonde haired princess.", - "id": 7666 - }, - { - "image_path": "G:\\images\\combined\\06b48a4819a57d05.jpg", - "response": "A traffic light on a pole with two street signs attached to it.", - "id": 7667 - }, - { - "image_path": "G:\\images\\combined\\06b519c24612aa10.jpg", - "response": "On a store shelf, two Neutrogena CoolDry Sport sunscreen bottles with spf 30 are displayed. The left bottle is taller and has a blue cap. The right bottle is shorter with a yellow cap. Both bottles are almost identical in design. There are other sunscreen bottles displayed in front of them and to the left side of the Neutrogena bottles. One of the bottles is from Aveeno and has a white cap. Another bottle is from Clear Face and has a white cap as well. The last bottle is from Wateraid and has a brown cap.", - "id": 7668 - }, - { - "image_path": "G:\\images\\combined\\06b5e54f9713b19b.jpg", - "response": "A red and white maple leaf is on the right side of the coin. The word Canada is on the left side of the coin. The year 1994 is on the bottom of the coin. The two coins are next to each other.", - "id": 7669 - }, - { - "image_path": "G:\\images\\combined\\06b7f0b53d8b412a.jpg", - "response": "A watch with a black face and silver rim lays on a wooden table. The face of the watch is black with white numbers and hands. The hands on the watch are white and red. The watch has a black band with a silver buckle. The band is attached to the watch with a silver pin and the pin has some scratches on it. The watch is laying on a wooden table that has a striped pattern.", - "id": 7670 - }, - { - "image_path": "G:\\images\\combined\\06b8fbeec37ac5dc.jpg", - "response": "A store with shelves full of food products.", - "id": 7671 - }, - { - "image_path": "G:\\images\\combined\\06bb1fea570039b2.jpg", - "response": "A computer keyboard and mouse are sitting on a desk.", - "id": 7672 - }, - { - "image_path": "G:\\images\\combined\\06bc833b6794cb6d.jpg", - "response": "A ruler in the snow.", - "id": 7673 - }, - { - "image_path": "G:\\images\\combined\\06bea9caa4e2a7e7.jpg", - "response": "The image depicts a large room filled with people sitting at desks, all using computers. The desks are arranged in rows, and there are multiple computers on the desks, as well as keyboards and mice. The people are wearing military uniforms. In the room, there are also clocks on the wall and a screen at the front of the room. A backpack can be seen on one of the desks.", - "id": 7674 - }, - { - "image_path": "G:\\images\\combined\\06bf19a814c4c455.jpg", - "response": "A man and a woman standing in a kitchen preparing food.", - "id": 7675 - }, - { - "image_path": "G:\\images\\combined\\06bfa4d21a1d418e.jpg", - "response": "The image features the title art for the game Infinite Undiscovery. The game's title is written in a white, futuristic-looking font with a blue outline. The word \"Infinite\" is on the top left corner of the image, while \"Undiscovery\" is on the bottom right corner. The game's logo features a stylized \"U\" with a spaceship in the background.", - "id": 7676 - }, - { - "image_path": "G:\\images\\combined\\06c00c1502656b71.jpg", - "response": "A bottle of DuClaw Sweet Baby Jesus! Chocolate Peanut Butter Porter sitting on a table in front of a six pack of the same beer.", - "id": 7677 - }, - { - "image_path": "G:\\images\\combined\\06c1050afc1f7385.jpg", - "response": "A small wooden shed with a sign on the front that says Castle Mill Lime Works.", - "id": 7678 - }, - { - "image_path": "G:\\images\\combined\\06c3969a81edfa03.jpg", - "response": "A keyboard with a piece of plastic over it with writing on it.", - "id": 7679 - }, - { - "image_path": "G:\\images\\combined\\06c401d3d817028e.jpg", - "response": "A group of men playing soccer on a field.", - "id": 7680 - }, - { - "image_path": "G:\\images\\combined\\06c4728aa7fa9db5.jpg", - "response": "A black and silver watch with the number 24 on it.", - "id": 7681 - }, - { - "image_path": "G:\\images\\combined\\06c57e6363fd6ed3.jpg", - "response": "A baseball player wearing a red and white uniform is standing in the outfield. He is wearing a catcher's mitt and looking to his left. The scoreboard behind him shows the time as 8:10.", - "id": 7682 - }, - { - "image_path": "G:\\images\\combined\\06c7d2763d30df9d.jpg", - "response": "A watch with a silver band and a silver and gold face.", - "id": 7683 - }, - { - "image_path": "G:\\images\\combined\\06c90482f8989324.jpg", - "response": "A billboard for the movie Pacar Hantu Perawan, which features three women on it.", - "id": 7684 - }, - { - "image_path": "G:\\images\\combined\\06c957b7a77380ee.jpg", - "response": "A white car with a California license plate is parked in a handicapped spot.", - "id": 7685 - }, - { - "image_path": "G:\\images\\combined\\06cd096eaead23aa.jpg", - "response": "A young boy wearing a Glen Ellyn football jersey and holding a football.", - "id": 7686 - }, - { - "image_path": "G:\\images\\combined\\06cea73b40d2f24c.jpg", - "response": "A close up of three IWC watches on display.", - "id": 7687 - }, - { - "image_path": "G:\\images\\combined\\06d317cf67c08b97.jpg", - "response": "A triangle warning sign showing a person getting zapped by a laser with the text \"Big Scary Laser, Do not look into beam with remaining eye\"", - "id": 7688 - }, - { - "image_path": "G:\\images\\combined\\06d42a52eb63f4bb.jpg", - "response": "A television monitor that is displaying a map of the world.", - "id": 7689 - }, - { - "image_path": "G:\\images\\combined\\06d52b114d5da9e1.jpg", - "response": "A Huawei mobile device box is open and sitting on a desk. The box is white and orange.", - "id": 7690 - }, - { - "image_path": "G:\\images\\combined\\06dab554c1c29f63.jpg", - "response": "A shelf filled with various vhs movies and video tapes.", - "id": 7691 - }, - { - "image_path": "G:\\images\\combined\\06db4f83f1ef0286.jpg", - "response": "A stop sign at the corner of two streets.", - "id": 7692 - }, - { - "image_path": "G:\\images\\combined\\06df07947862e83b.jpg", - "response": "A black and white poster with the heading REWARD. Below that is a heading that says \u00a320,000 will be given in the following description. It then goes on to describe the reward for information leading to the capture of Sir John Franklin, his ships, and the crew.", - "id": 7693 - }, - { - "image_path": "G:\\images\\combined\\06dfda67cf22d968.jpg", - "response": "A remote control with the word clean on it.", - "id": 7694 - }, - { - "image_path": "G:\\images\\combined\\06e4d0666ddf0de6.jpg", - "response": "A cardboard box for moving that is on a counter.", - "id": 7695 - }, - { - "image_path": "G:\\images\\combined\\06e74b2b5f631c5a.jpg", - "response": "The image shows a large office with many desks and computers. There are several chairs placed around the office, and they are mostly red in color. There are also some green chairs. There are many computers on the desks, along with keyboards, mice, and other office equipment. There are many books and papers scattered around the desks as well. In the office, there are also several bottles and cups placed on the desks and the floor.", - "id": 7696 - }, - { - "image_path": "G:\\images\\combined\\06e792fc023605b6.jpg", - "response": "The image shows a close up of the rear end of a silver car. The license plate is California and says CWEETIE on it.", - "id": 7697 - }, - { - "image_path": "G:\\images\\combined\\06e9a81ceb6769a3.jpg", - "response": "A stop sign with a cloudy sky in the background.", - "id": 7698 - }, - { - "image_path": "G:\\images\\combined\\06ebda8a001014b3.jpg", - "response": "a collage of images from somalia including the flag and map of the country", - "id": 7699 - }, - { - "image_path": "G:\\images\\combined\\06ee605f8d4a68af.jpg", - "response": "The image is of an old book cover. The title of the book is \"Der Staff Strakburg\" and is written in German. The cover is adorned with various images of people and religious figures. There is a large image of a group of people in the center, and smaller images of religious figures around the border of the cover. The book is written in black ink and is printed on white paper.", - "id": 7700 - }, - { - "image_path": "G:\\images\\combined\\06ef84b6db9ca86d.jpg", - "response": "A hand holding a silver can of Asahi Super Dry beer.", - "id": 7701 - }, - { - "image_path": "G:\\images\\combined\\06f04931d107573a.jpg", - "response": "A black rectangular watch with a black band.", - "id": 7702 - }, - { - "image_path": "G:\\images\\combined\\06f1e4369ad4e487.jpg", - "response": "A bottle of Lobethal Bierhaus Chocolate Oatmeal Stout next to a filled glass.", - "id": 7703 - }, - { - "image_path": "G:\\images\\combined\\06f708e3394e4ab1.jpg", - "response": "A large stadium with a jumbotron displaying a picture of a soldier and a woman.", - "id": 7704 - }, - { - "image_path": "G:\\images\\combined\\06f90f78282a279f.jpg", - "response": "A bottle of Glenlivet 12 years old single malt scotch whisky.", - "id": 7705 - }, - { - "image_path": "G:\\images\\combined\\06f92f5456da8509.jpg", - "response": "A close up of a Nokia phone with a screen that has the words \"Devices found\" and other text.", - "id": 7706 - }, - { - "image_path": "G:\\images\\combined\\06f98421b247aa62.jpg", - "response": "A bottle of Minere mineral water sits on a desk next to a green cup. The bottle is half full and has a blue and red label. The label has the company name, Minere, in red, with the tagline \"Du Jour au Jour\" in blue. Below the company name is a blue bar with the net volume of the bottle, 0.75 liters.", - "id": 7707 - }, - { - "image_path": "G:\\images\\combined\\06f9f3a188fc84b1.jpg", - "response": "A billboard for SeaWorld, advertising their Fun Card deal.", - "id": 7708 - }, - { - "image_path": "G:\\images\\combined\\06fadcad6a24dcb1.jpg", - "response": "A black computer keyboard is sitting on a metal shelf. The keyboard has rainbow colored keys and is made by Sinclair ZX Spectrum.", - "id": 7709 - }, - { - "image_path": "G:\\images\\combined\\06fe0e86c4386d2c.jpg", - "response": "A watch with a black leather band and a silver case. The watch has a leather cuff band and the face of the watch is black with orange hands. The second hand is orange and the minute hand is orange with a white tip. The hour hand is white with a black tip. The watch has a silver case and the band is attached to the watch with silver screws.", - "id": 7710 - }, - { - "image_path": "G:\\images\\combined\\06fe15d74ad83bb4.jpg", - "response": "A bag of chocolate from Godiva.", - "id": 7711 - }, - { - "image_path": "G:\\images\\combined\\06febfd114e84100.jpg", - "response": "The image is a collage of pictures showing different views of a laptop computer. The laptop has an orange and yellow outer casing with a swivel screen. There is a larger demo model with a different screen. Another picture shows a close up of the laptop. Another picture shows the motherboard. There are several people in the pictures, some are sitting at a table and one is standing.", - "id": 7712 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5912_jpg.rf.706d3ed854dd9d37d895488c6cc891e9.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7713 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5912_jpg.rf.c04f772a8d01dd6a2ed0b1b91cafd9b2.jpg", - "response": "A group of people working on computers in a cubicle farm.", - "id": 7714 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5913_jpg.rf.539811aec54e0fd1d56fbb0b13a06750.jpg", - "response": "A group of people in a room with computers.", - "id": 7715 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5913_jpg.rf.6206d68c230f015275c955c6fa27b54b.jpg", - "response": "The image shows a group of people working in an office. There are two men walking past cubicles, and a third man standing in front of a cubicle. The cubicles have desks with computers on them, and there are chairs at the desks. The office also has a conference room with a table and chairs. The room is decorated with posters on the walls.", - "id": 7716 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b592_jpg.rf.0f515bf8d5e8db71628c72a6e0baa385.jpg", - "response": "a group of people standing in front of a wall of tv screens", - "id": 7717 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b592_jpg.rf.0fbb96adae3ac6faf4188f6d475a27eb.jpg", - "response": "a group of people in a room with computers on the wall and desks.", - "id": 7718 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5939_jpg.rf.8de405e77bebb667f19241f03d78b4a0.jpg", - "response": "A group of people standing in a room in front of computers.", - "id": 7719 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5939_jpg.rf.b3c0538f0bc2db5b7ea0084e61068ea0.jpg", - "response": "The image shows a group of people in a computer lab with desks and chairs. There are three people visible, two of them wearing black jackets and one wearing a blue shirt. They are standing in front of desks with computers on them. The computers have monitors and keyboards. There are also two chairs visible in the scene.", - "id": 7720 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b593_jpg.rf.334c2565c8bf879de9e0e890ccf14b16.jpg", - "response": "A group of people in a room with a white ceiling and a wall full of windows.", - "id": 7721 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b593_jpg.rf.7a39ff0008ea2f2ada4631cc75ecac01.jpg", - "response": "A group of people walking through a terminal.", - "id": 7722 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b594_jpg.rf.30d36e7d08966e8dc2e05d4dbca3b89a.jpg", - "response": "The image shows a group of people working at computers in a cubicle setting. There are several people visible, with some sitting at the computers and others standing around the room. The cubicles are made of metal and have a dividing curtain in the middle. The computers are equipped with monitors, keyboards, and mice. The room has a gray color scheme and appears to be a workspace for a large organization.", - "id": 7723 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b594_jpg.rf.bf2d5d15ecf154365b5e9f509a81e73d.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7724 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b595_jpg.rf.7acbea4cd41fe3733aa415c8a0844414.jpg", - "response": "a group of people standing in a room with computers all around.", - "id": 7725 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b595_jpg.rf.d91e6b55ee41a110a79029c9dd5b7686.jpg", - "response": "A group of people standing in a room with a mirrored wall.", - "id": 7726 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b596_jpg.rf.969d7683ddb8c1c7ae3a592addf2b07f.jpg", - "response": "A group of people are gathered around a room with many computer monitors.", - "id": 7727 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b596_jpg.rf.aff342a0823ca30366e01d9e733e083c.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 7728 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5918_jpg.rf.23709ad6b47947650662378b1db6bd2e.jpg", - "response": "a man standing in front of a computer screen", - "id": 7729 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5918_jpg.rf.f382b0f907a46fd26a75d3fbb9cf4e5f.jpg", - "response": "A man standing in front of a computer screen.", - "id": 7730 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5919_jpg.rf.00c2be9627b76c818d2e61d29ced05a4.jpg", - "response": "A man wearing a mask is standing in a room with desks and computers.", - "id": 7731 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5919_jpg.rf.1fc792529e923d4ca8224d7439c68fb4.jpg", - "response": "A man standing in a room with computers all around.", - "id": 7732 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5920_jpg.rf.591309a6fb96ab3718db883636bdf22e.jpg", - "response": "A room full of people sitting at computers.", - "id": 7733 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5920_jpg.rf.8bc8496014debfdeee47d47bb91c76f5.jpg", - "response": "A man standing in a room with a bunch of computers.", - "id": 7734 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5922_jpg.rf.0771d962ac17788ada594143c1fca1cc.jpg", - "response": "A group of people are working on computers in a room.", - "id": 7735 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5922_jpg.rf.f1c26fb01687c42f2bf8e5837aa92c02.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 7736 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5923_jpg.rf.3f4c75d46fffc107278fd5cd7d6efd56.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 7737 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5923_jpg.rf.4ffbae7a0f3e69838b7628026d8619a3.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 7738 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5924_jpg.rf.563ecf5e4c72a90bb4e73bd4901def04.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7739 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5924_jpg.rf.e0e7a548aef916b72abadd57e7229d3c.jpg", - "response": "A room filled with people sitting at desks working on computers.", - "id": 7740 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5929_jpg.rf.b938e8097cd85432fb99d0603d24fcf0.jpg", - "response": "The image is a view through a window covered in water droplets. The window is divided into four quadrants, each containing a computer workstation. There are two people visible in the image, one in each of the left hand quadrants. They are both sitting in front of a computer screen. The left hand quadrant also contains a keyboard and a chair. The right hand quadrant contains a keyboard and a mouse. The background is blurry and there is a large poster of the ocean on the wall.", - "id": 7741 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5929_jpg.rf.ca3d181580393062fab40a0c95fce18c.jpg", - "response": "A room with cubicles and people working on computers.", - "id": 7742 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5934_jpg.rf.4d2dcee20ea3ee7c5054a18a992fb88b.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7743 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5934_jpg.rf.e7d03ffb5ec6af1a60dbcb662e0a4679.jpg", - "response": "A group of people working on computers in a room.", - "id": 7744 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5945_jpg.rf.92789d5e629e6c76d8e201ef9149d7da.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 7745 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5945_jpg.rf.d23014e7c547194dc36e5ee4b065c88a.jpg", - "response": "A man standing in a room with multiple computer stations.", - "id": 7746 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5942_jpg.rf.151a7b939338e6a324b4f36e9311b06e.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 7747 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5942_jpg.rf.e50b9272f2a27cd55371292dfabd56f3.jpg", - "response": "an office with several cubicles and people working on computers.", - "id": 7748 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5944_jpg.rf.a2d5411f4c527ad7c6159a0c91d2d807.jpg", - "response": "A computer lab with multiple people working on computers. There are two people sitting at a desk on the left and two people sitting at a desk on the right. Each person is using a computer. The walls are covered in small mirrors. The ceiling is white with a grid pattern. There are two TVs mounted on the wall.", - "id": 7749 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5944_jpg.rf.d1bef3a930c623667099cb56433e8058.jpg", - "response": "The image is a view through a rain-streaked window into an office space. There are several people working in the office, which has a blue color scheme. There are two desks with computers on them, and chairs in front of the desks. The people are sitting at the desks and working on computers. Some of the people are wearing ties.", - "id": 7750 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b595_jpg.rf.1e058e85e46467f7c9ad06bedf0caf7d.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 7751 - }, - { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b595_jpg.rf.e857ad228d89faa984756493dc55b289.jpg", - "response": "A group of people working at computers in cubicles.", - "id": 7752 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5916_jpg.rf.7a89defff0284f74f4783356bdec47c0.jpg", - "response": "A rain covered window looking into an office with multiple people working on computers.", - "id": 7753 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5916_jpg.rf.e0964924bb9929bf95559e9292cfe975.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7754 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5917_jpg.rf.1e04ee8f14bed1fc283fb17e4f8db1ca.jpg", - "response": "a room with cubicles where people work on computers", - "id": 7755 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5917_jpg.rf.aa0eb4e30b7ebdcc6cd16fa6422e7bfa.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7756 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b592_jpg.rf.d7e5bd5f3028bf4309f4be058703a481.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 7757 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b592_jpg.rf.e5ec19794cf776eb3091a4169a44eb1e.jpg", - "response": "The image shows a group of people working in a computer lab. There are three people sitting at desks, using computers, and a fourth person standing near the left side of the room. The three people sitting have their backs to the camera. Each person is sitting in a chair in front of a computer. The room has several desks and computers on them.", - "id": 7758 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5945_jpg.rf.0d85f9db683d4291a5f64b7796ebca39.jpg", - "response": "A person standing in a room with a lot of mirrors on the wall. There are three people sitting at desks in front of computers. The person standing is wearing a blue shirt and black pants. The room has a lot of water droplets on the camera lens, making the image blurry.", - "id": 7759 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5945_jpg.rf.8dd65270c179b26301e6455ed7b9693e.jpg", - "response": "a group of people working in cubicles with computers", - "id": 7760 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5933_jpg.rf.532011db760833b0f494ad70b1e70987.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 7761 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5933_jpg.rf.63b97639fefa6f74b0f02e2a9fd5bdff.jpg", - "response": "A group of people are sitting at computers.", - "id": 7762 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5937_jpg.rf.972a081b7fc5232126a8312d3aa59553.jpg", - "response": "a room with people working on computers", - "id": 7763 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5937_jpg.rf.9ad3b645848450b45ddce9b43eaa6359.jpg", - "response": "a group of people working in a cubicle", - "id": 7764 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5938_jpg.rf.5c93272318723585636007f5ba7b6097.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7765 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5938_jpg.rf.988e1b8fa8d81541bf1bf446229d1340.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 7766 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b594_jpg.rf.1e76665a0efc2dcdaae1157017e4ee4a.jpg", - "response": "The image shows a large office space with several cubicles. In one cubicle, a man is sitting at a desk with a computer, while in another cubicle, a woman is taking a picture of the room. There are chairs and desks in each cubicle, and a TV is mounted on the wall. The office also has a kitchen area with a sink and a refrigerator. The image has a silver and blue hue to it.", - "id": 7767 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b594_jpg.rf.656f9a2ed50fac0495a142ff920831f7.jpg", - "response": "The image shows a large office with several cubicles. Each cubicle has a desk with a computer on it and a chair. There are three people in the office, two of them are sitting at their desks and one is standing in the middle of the office. The office has a lot of desks and computers, and it appears to be a busy work environment.", - "id": 7768 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b598_jpg.rf.49adf4c3e9b40de2bd6cb4fb48141c1f.jpg", - "response": "A person standing in a room with a bunch of desks.", - "id": 7769 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b598_jpg.rf.4aa44517ee0c475c31c7f321e52fff0c.jpg", - "response": "A woman walking through a cubicle area with several people working at computers.", - "id": 7770 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b591_jpg.rf.10028202df5b78d8d75a0ce666490efd.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7771 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b591_jpg.rf.1fa9c2db2991e40373e0b9e87162f263.jpg", - "response": "a photo of a room with people working on computers", - "id": 7772 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b5943_jpg.rf.3ef9aa8e449f0758c3d8fe76bad230c8.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 7773 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b5943_jpg.rf.e6986e28958779be18fc2add17d9fc66.jpg", - "response": "A group of people are working on computers in a room.", - "id": 7774 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b594_jpg.rf.090f52282e82afde5d42611b12bb60cf.jpg", - "response": "The image is a glass window covered in water droplets. The glass is foggy and shows a view of a computer lab. There are multiple people working at computers in the lab. There are two people on the left, one person in the middle, and two people on the right. The computers are all equipped with dual monitors.", - "id": 7775 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b594_jpg.rf.f999d28f9d962be115b7f0d788337666.jpg", - "response": "A group of people working on computers in a computer lab.", - "id": 7776 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5912_jpg.rf.589cd1608363cf76de69c1daeef5d354.jpg", - "response": "a office with people working on computers", - "id": 7777 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5912_jpg.rf.be7e501ef7c33d12f101e1f79ff264ac.jpg", - "response": "A group of people working on computers in a room.", - "id": 7778 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5923_jpg.rf.2800b15a28308a31332e8989b148129e.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 7779 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5923_jpg.rf.b9d0ac4da1f9c27fce405ed06f14cb3e.jpg", - "response": "a group of people in a room with computers", - "id": 7780 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5934_jpg.rf.065249ba29d0b4da4e2fcf4349ac3883.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 7781 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5934_jpg.rf.73824fb2d979bf18c52cf10510e92498.jpg", - "response": "A group of people working on computers in a room.", - "id": 7782 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b593_jpg.rf.64979bd6f0832010d279df82e0da932a.jpg", - "response": "a group of people working on computers in a cubicle office", - "id": 7783 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b593_jpg.rf.b1e85049443dd942907bacede0b2bb14.jpg", - "response": "A man standing in a room with a bunch of computers.", - "id": 7784 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5923_jpg.rf.a9a8b6ffa6a4d65127230b51fc1b3dd6.jpg", - "response": "A room filled with people sitting at desks working on computers.", - "id": 7785 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5923_jpg.rf.d0a65b242daee26d7de864c5bfb50378.jpg", - "response": "A woman standing in a cubicle with a computer.", - "id": 7786 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5940_jpg.rf.88814ef056c69291c93892681e0eec65.jpg", - "response": "A man standing in a room with many people sitting at desks.", - "id": 7787 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5940_jpg.rf.c3e461c40ff9e1581e3cebe7e555152d.jpg", - "response": "A group of people working at computers in a room.", - "id": 7788 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5921_jpg.rf.75d3cce54da80f6b880dbfbfa3f328cc.jpg", - "response": "A man standing in a room with a mask on.", - "id": 7789 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5921_jpg.rf.fdcd4ef7f7c3c3e7c63f9ca4a8f2ef3f.jpg", - "response": "A man standing in a room with multiple people sitting at desks using computers. The man standing is wearing a black shirt and has a beard. The room has a blue and black wall and a blue and black ceiling. There are two fans on the ceiling. The desks have multiple screens and keyboards.", - "id": 7790 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5939_jpg.rf.3b49c4b0e53e256e8b955b7e775b0c6e.jpg", - "response": "A man standing in a room with many computers.", - "id": 7791 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5939_jpg.rf.72ac8fcbbc5afe785187eabf609e7edd.jpg", - "response": "A man walking through a room filled with people working on computers.", - "id": 7792 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5941_jpg.rf.20ef114576255e9a77df02dfe26448b6.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7793 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5941_jpg.rf.3c1ed12c64d9898f592888a607a9bd39.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 7794 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5942_jpg.rf.0a47f13758d12d50708fb98e42da875e.jpg", - "response": "The image shows a large office space with many cubicles. There are multiple people working at computers in the cubicles, and a few people are sitting at desks in the office area. The office has a modern design with white desks and chairs, and the walls are covered in large monitors. The room is well lit and appears to be a comfortable and productive work environment.", - "id": 7795 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5942_jpg.rf.0a69c9ebb736bea262263f31b8a3a3c8.jpg", - "response": "A woman standing in a cubicle with a black jacket and black pants.", - "id": 7796 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5944_jpg.rf.82899e69dce97135d26f9463ed4f944a.jpg", - "response": "A group of people working on computers in a room.", - "id": 7797 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5944_jpg.rf.da819f665b8572110cd2c403a4f8ef72.jpg", - "response": "A woman standing in front of a glass wall in a computer lab.", - "id": 7798 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5945_jpg.rf.1c303bd104503e685345ca52d008e899.jpg", - "response": "a group of people sitting in front of computers", - "id": 7799 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5945_jpg.rf.3bf87b57054f2b339a0713cb674bcf39.jpg", - "response": "The image shows a group of people working in a computer lab. There are several men and women standing around a bank of computers, which are placed on both sides of the room. Some of the people are sitting at the computers, while others are standing and working on their own. The computers are equipped with monitors, keyboards, and mice. The room has a modern and professional feel to it, with a white ceiling and walls, and a gray carpet on the floor. The image is sprinkled with dots, which could be due to a filter or effect applied to the photo.", - "id": 7800 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b5912_jpg.rf.2508a4b0e2a8ae946dc2ebe02b93ab56.jpg", - "response": "a glass wall with people on the other side sitting at desks with computers.", - "id": 7801 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b5912_jpg.rf.bda20e51c4f2f700a1a92f482ccc4ae8.jpg", - "response": "The image is a glass wall looking into an office space. The glass is covered in small spots or dots. In the office, there are four people working at desks. Each person is using a computer. The desks are arranged in a way that suggests they are in cubicles.", - "id": 7802 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b591_jpg.rf.0c995987680c3dcde3840f116e6890ef.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 7803 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b591_jpg.rf.af77dbce7d3bb2b778b56671f9fd1bb1.jpg", - "response": "A group of people working at computers in a large office.", - "id": 7804 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b596_jpg.rf.07c2c9b3b4b8d0145753e2ace7a59b36.jpg", - "response": "A group of people working in cubicles.", - "id": 7805 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b596_jpg.rf.18d8a38594e3d74694a7bf2337ad3e97.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 7806 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b597_jpg.rf.0fd5812e09465cc85b7bb6b1cced73e8.jpg", - "response": "A woman standing in a room with a bunch of desks with computers on them.", - "id": 7807 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b597_jpg.rf.4a315da4cae573bf2cc2205fb12a3ca0.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 7808 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b598_jpg.rf.2bcecd38c16cb2ce30c7b1b9a1e120c3.jpg", - "response": "a office with desks and chairs all around.", - "id": 7809 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b598_jpg.rf.674219f545d93a95a256590a9dddaf11.jpg", - "response": "A rain covered window looking into an office.", - "id": 7810 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5911_jpg.rf.17bd9367ecf3df400ff98a96c5b44696.jpg", - "response": "A man sitting at a desk in front of a computer.", - "id": 7811 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5911_jpg.rf.d786cb188514a207fbebd9ce8f0881d4.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 7812 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5922_jpg.rf.7a416d05dccda56dd8a56d4df01a6148.jpg", - "response": "The image shows a group of people working in a cubicle farm. There are four people visible in the image, with one person standing and three sitting. They are all looking at computer screens in front of them. The screens are on the desks and are located in the foreground of the image.", - "id": 7813 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5922_jpg.rf.ff752bdd27ad532edac755c4dc4c36fb.jpg", - "response": "A room with several people working on computers.", - "id": 7814 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5926_jpg.rf.14914296e2b2a573c277d52c6db2aca3.jpg", - "response": "A rain effect is applied to a photo of an office space. The office space is filled with cubicles. Each cubicle has a desk with a computer on it. There are several people in the office. One person is standing in the center of the office. Another person is sitting at a desk in the cubicle to the right of the person in the center. A third person is sitting at a desk in the cubicle to the left of the person in the center.", - "id": 7815 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5926_jpg.rf.904cf232200e65a83b7e774bfebec31c.jpg", - "response": "a office with people sitting at computers", - "id": 7816 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T10-03-0528ee52121b593_jpg.rf.a29e8048c966a0d4c0bbbe630ff7470a.jpg", - "response": "A cubicle with a computer screen and keyboard on the desk.", - "id": 7817 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T10-03-0528ee52121b593_jpg.rf.a32b6369b8db99966af6ed4e7bf21b80.jpg", - "response": "A office with cubicles and desks where people are working.", - "id": 7818 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b5914_jpg.rf.bbf3b7fd2695ec79de0740df81f8ca1a.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 7819 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b5914_jpg.rf.e2c1df4ca5115d440c062e893c10b867.jpg", - "response": "A room full of people sitting at computers.", - "id": 7820 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b592_jpg.rf.35a7f88cb65994d2088277e4ccd71d33.jpg", - "response": "A rain covered window looking into an office with several people working on computers.", - "id": 7821 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b592_jpg.rf.71f149940c06ed79b33eae1c86d774f3.jpg", - "response": "A woman standing in a room with a wall of cubicles.", - "id": 7822 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T14-03-0828ee52121b5920_jpg.rf.3614dda2ab621f99a6b7c6a60045b0d7.jpg", - "response": "A blurry image of a room with a person standing in it. The person is wearing a blue shirt and is standing in front of a computer. There are several other people in the room, but they are all blurry. The room has a lot of cubicles and computers.", - "id": 7823 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T14-03-0828ee52121b5920_jpg.rf.9cbf8999d30ba1a5b4e6d15ec7811de8.jpg", - "response": "A office with desks and chairs all around. People are working on computers. One person is standing in the middle of the room. The walls are covered in mirrors. The ceiling is white and has a light in the middle. The room is covered in small black dots.", - "id": 7824 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T15-03-0828ee52121b595_jpg.rf.413b965381c6a4c5c39704d858f47c92.jpg", - "response": "A woman standing in a room with many people sitting at computers.", - "id": 7825 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T15-03-0828ee52121b595_jpg.rf.f2f9ab7fbb3520fffc3fe149efce978c.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 7826 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5925_jpg.rf.6d2d08cba96db059adae7ee4fa8ceb82.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 7827 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5925_jpg.rf.98fb825637d9afdc1fb8c0f6250da585.jpg", - "response": "A woman standing in a room with many computer monitors.", - "id": 7828 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5926_jpg.rf.86ce9993b15a8dc9dbf2e7902ab9fc07.jpg", - "response": "A group of people working at desks with computers.", - "id": 7829 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5926_jpg.rf.dd5e162e1dae3799d0a6c266d2bacc98.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7830 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5927_jpg.rf.7473900de3c252b14669a68d8f74cb71.jpg", - "response": "A man standing in a room with many computers.", - "id": 7831 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5927_jpg.rf.fe22ec89eea1185c575d12ccac3b4b33.jpg", - "response": "A room with many people working at computers. There are 4 people in the room, each sitting at a desk with a computer. The people are dressed in black. The room has a white ceiling and walls. There are two large windows in the room, covered with curtains. The room is filled with a large amount of black confetti.", - "id": 7832 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5929_jpg.rf.928afb8a5422e48ba5e008592ee08d33.jpg", - "response": "The image is a view through a window into an office space. There are multiple people in the office, some sitting at desks and some standing. The desks have computers on them and there are chairs in front of the computers. The office has a modern look with glass walls and white desks. The room is well lit with a bright white light.", - "id": 7833 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5929_jpg.rf.957a5439c6999dba3009c951f65e7317.jpg", - "response": "A group of people are in a room with computers.", - "id": 7834 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5944_jpg.rf.4611eb1bb8be990feb1647404fff10ec.jpg", - "response": "A group of people standing in a room with cubicles.", - "id": 7835 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5944_jpg.rf.fadecc495932c7ff671016f7d2e1146f.jpg", - "response": "a group of people standing in a room with a lot of computer screens", - "id": 7836 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5945_jpg.rf.bd293ff91c7d4407eadeeaa92c5849eb.jpg", - "response": "a group of people standing in a room with a mirrored wall.", - "id": 7837 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5945_jpg.rf.fb63824aa73897059738c46a107da29a.jpg", - "response": "a group of people standing in a room with a lot of mirrors on the wall", - "id": 7838 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5912_jpg.rf.8cce533c86984786314b773f0e52f235.jpg", - "response": "A group of people sitting in front of computers.", - "id": 7839 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5912_jpg.rf.e20cbb02d3d2e81a81a23312675f45f2.jpg", - "response": "A man standing in front of a group of people who are sitting at computers.", - "id": 7840 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5914_jpg.rf.0b52a38a18287ff8495472a757a6a470.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 7841 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5914_jpg.rf.e2e8c315c8e696fa6d06347e1c08504b.jpg", - "response": "A room with a ceiling and walls covered in a mirrored surface. There are three people in the room, two of which are standing at desks with computers in front of them. The third person is standing closer to the right side of the room.", - "id": 7842 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5915_jpg.rf.9055df286814d06dda18aa7b320c7ff6.jpg", - "response": "The image shows a group of people working on computers in a large office space. There are several people sitting at desks, each with a computer in front of them. The office has multiple chairs and desks, as well as a few couches. The room is also equipped with a TV and a clock on the wall. The computers are equipped with keyboards, mice, and monitors. The office also has a few books scattered around.", - "id": 7843 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5915_jpg.rf.d8a63542b9c8f38d1564b39b9baa6554.jpg", - "response": "A group of people working at desks in a large office.", - "id": 7844 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5917_jpg.rf.89cb081d5b455c12479521d1c8805305.jpg", - "response": "A group of people working at cubicles in a office.", - "id": 7845 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5917_jpg.rf.d80b0438150e8686c010ca0c069d6833.jpg", - "response": "A group of people working at computers in a computer lab.", - "id": 7846 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b596_jpg.rf.7c370ccd59efe9d2d153878bb220d6bc.jpg", - "response": "A group of people working at computers in a large office.", - "id": 7847 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b596_jpg.rf.8fae1574bfe4c77e500272358ce5bb72.jpg", - "response": "A group of people in a room with a bunch of computers.", - "id": 7848 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5910_jpg.rf.28512b67abca98e5e9b6a1436cca6353.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7849 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5910_jpg.rf.97448bb200c41747f4241f6705c0043d.jpg", - "response": "A man in a blue shirt is standing in a cubicle.", - "id": 7850 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5915_jpg.rf.3e838d83384438458baa31e039c98f1b.jpg", - "response": "A man standing in a room with a lot of computer screens around him.", - "id": 7851 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5915_jpg.rf.d14b33dfc79ebebb2bde0eda015a0d44.jpg", - "response": "A man in a blue shirt is standing in a cubicle with a red rug. There are four people sitting at desks with computers in front of them. The desks are covered in papers and there are two TVs on the wall. The man is wearing a watch on his left wrist.", - "id": 7852 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b591_jpg.rf.9d0905883dcd47c787e6d492529c4c42.jpg", - "response": "A view through a window of a room with several people working on computers. The room has a white ceiling and walls and is filled with desks where people are sitting and working. There are two rows of desks, with the desks on the left side being closer together. Each desk has a computer on it and a keyboard and mouse are visible. There are also two monitors on the left side of the room. In the background, there are two screens on the right side of the room. The image has a blue tint.", - "id": 7853 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b591_jpg.rf.b4de5c720abe632231413c3fa419fef9.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7854 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5944_jpg.rf.048d0cc3983c21510b485dacf3585f63.jpg", - "response": "A large office with several cubicles and computers.", - "id": 7855 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5944_jpg.rf.5e9e39fce2b6efca9ff829aa4961b98a.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7856 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T22-03-1128ee52121b595_jpg.rf.72fae681df0c1fee9a84ff1d08489ec5.jpg", - "response": "The image shows a large office with many people working at computers. There are several chairs positioned in front of desks, and numerous computer monitors are in use. The office has a modern look and feel, with glass walls and white desks. The people in the office are focused on their work, and the atmosphere appears to be busy and productive.", - "id": 7857 - }, - { - "image_path": "G:\\images\\combined\\07-22-2021T22-03-1128ee52121b595_jpg.rf.9927583f56c18ea9f8bc2bd4302dfe9b.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 7858 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5927_jpg.rf.bf7a1e308541a3c4d312f7d23e4d6930.jpg", - "response": "A room with several cubicles with people sitting at computers.", - "id": 7859 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5927_jpg.rf.cae90c755352d2b8d31b1b3f517a849b.jpg", - "response": "The image is a glass window covered in water droplets that looks into an office area. There are multiple people working on computers in the office. There are two people sitting at a desk on the left side of the room, and another two people sitting at a desk on the right side of the room. In the middle of the room, there is a desk with a computer on it and a chair in front of it. There is also a monitor on the left side of the room and a chair in front of it.", - "id": 7860 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5930_jpg.rf.711b28b7d04eded995f3c4c402078e70.jpg", - "response": "A large office with several people working on computers.", - "id": 7861 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5930_jpg.rf.84d45b078edc2c5885321cc488a103ee.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7862 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b599_jpg.rf.3a8b45ec842967e22b29fccc190a39da.jpg", - "response": "a room with people sitting at computers", - "id": 7863 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b599_jpg.rf.4c766abfe40a45345d3a7366385b1686.jpg", - "response": "A blurry image of a room with people working on computers. The room has a blue color scheme and is filled with computers. There are three people in the room, two of which are sitting at desks and one standing in the middle of the room. The people are looking at the computers and seem to be working. The image is covered in small black and white dots.", - "id": 7864 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T16-03-2128ee52121b591_jpg.rf.4a440b5cac35ae36edc77c6a2fbfbb4a.jpg", - "response": "A group of people are working on computers in a computer lab.", - "id": 7865 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T16-03-2128ee52121b591_jpg.rf.a28a0e3ce8c305dffcb06a235120e38d.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7866 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T19-03-2228ee52121b594_jpg.rf.37089f19e311e67ad4b7263cb2ad51c6.jpg", - "response": "a group of people working in cubicles", - "id": 7867 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T19-03-2228ee52121b594_jpg.rf.e0b8b640571a284ede53a11c91f6dcdb.jpg", - "response": "a room with a lot of cubicles with people working on computers", - "id": 7868 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b5928_jpg.rf.3ba4cdaa8e27aa93178bcaa041636c90.jpg", - "response": "a man standing in front of a computer screen", - "id": 7869 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b5928_jpg.rf.7dfef9d68ff4389d6fdd85ac02735052.jpg", - "response": "a man standing in front of a computer", - "id": 7870 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b596_jpg.rf.cf61ad2476c863ea1d04952bfef57eec.jpg", - "response": "A office with cubicles that have computers on the desks.", - "id": 7871 - }, - { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b596_jpg.rf.eb7368d39e23d7a59f6195830700cc5c.jpg", - "response": "a office with a lot of cubicles and computers", - "id": 7872 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b591_jpg.rf.6ef01ef42db93332fce328235c37b83c.jpg", - "response": "a group of people working at computers", - "id": 7873 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b591_jpg.rf.843141f030c1e3444ab801d0b90127fd.jpg", - "response": "A room full of people working on computers.", - "id": 7874 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b592_jpg.rf.39017550154526af782f8ceff8333dc3.jpg", - "response": "The image shows a large office with several people working at computers. There are at least ten people in the office, some of them standing and others sitting. There are at least four computers in the office, and they all have keyboards and mice attached. The office also has at least two TVs mounted on the wall. The TVs are turned on, and they are displaying information. The TVs are also connected to the computers, as there are cables running from the computers to the TVs. The office has a lot of desks and chairs, and there are also some books and backpacks scattered around the office.", - "id": 7875 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b592_jpg.rf.eaefa0143874e21f89167f596c2f8c2b.jpg", - "response": "A group of people standing around a room with desks and computers.", - "id": 7876 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b593_jpg.rf.3e939b09d89a1c8e6335a0f9ca7971b6.jpg", - "response": "a group of people working at computers", - "id": 7877 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b593_jpg.rf.68ce893a75e2e5914e9329bf85fee3b1.jpg", - "response": "A large office with cubicles for employees.", - "id": 7878 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b594_jpg.rf.31c6626519d81209cb6578df9416aa5a.jpg", - "response": "A group of people are standing in a room. There are two people on the left and three people on the right. They are all facing a wall. In front of the people is a table. On the left side of the table, there is a handbag. On the right side, there is a backpack. There is a clock on the wall above the people. The room has a white ceiling and walls. There are many small black dots covering the entire image.", - "id": 7879 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b594_jpg.rf.b05a61b8e7af715bcb884edcbf4a0649.jpg", - "response": "A woman standing in front of a glass wall looking at a computer lab full of people.", - "id": 7880 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b597_jpg.rf.3959544b76823e638cb2380b68522dc5.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 7881 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b597_jpg.rf.d986f9ce9787efb8965905bd5e0e7b95.jpg", - "response": "A group of people are working in an office. There are two people sitting at a desk with a computer in front of them. A woman is standing in front of a whiteboard. A person is sitting at a desk with a laptop. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a", - "id": 7882 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T08-03-3028ee52121b5931_jpg.rf.3021f8cfea3d97cbb3e00c5405aea8d9.jpg", - "response": "a room with people sitting at desks with computers.", - "id": 7883 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T08-03-3028ee52121b5931_jpg.rf.8eab0c492c66cce9ac077ae9435f81ef.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 7884 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T10-03-3028ee52121b5915_jpg.rf.40c2766bd38c1e4e27a5394edd7b1ce1.jpg", - "response": "A group of people working at computers in a large office.", - "id": 7885 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T10-03-3028ee52121b5915_jpg.rf.58bc74d8926a77b0c43adbf0d373c631.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7886 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b5915_jpg.rf.70f1ed4f6401eb8ad198d87f560dbac3.jpg", - "response": "A woman standing in a cubicle with a computer.", - "id": 7887 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b5915_jpg.rf.984e4b340d4f8e3a3322bd46b703be01.jpg", - "response": "A woman standing in a cubicle area with computer monitors.", - "id": 7888 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b592_jpg.rf.1ca75cfaa51d5a8f79ac406d8d4b3dcf.jpg", - "response": "A computer lab with people working on computers.", - "id": 7889 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b592_jpg.rf.e8b2e96b7c8153ab7227c762f68be872.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7890 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5940_jpg.rf.7ba09a5f1511e0c32c01f793b6262c12.jpg", - "response": "A woman in a purple shirt walking through a room with many cubicles.", - "id": 7891 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5940_jpg.rf.d6faa860a73969548ec013cd8d3b0466.jpg", - "response": "A woman walking through a cubicle area with multiple people working at computers.", - "id": 7892 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5944_jpg.rf.3e03b114c13c38ca4ba1512a1755d9bc.jpg", - "response": "A group of people standing in a room.", - "id": 7893 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5944_jpg.rf.5f8b8ab0af98c10ec8154ee00e5a3f4c.jpg", - "response": "A group of people standing in a room with a white ceiling and black specks on the glass.", - "id": 7894 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5910_jpg.rf.ac34c9a474f0b2ed1f15140cc5cc6c9b.jpg", - "response": "a group of people working on computers in cubicles", - "id": 7895 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5910_jpg.rf.b23f0cd2248ef232b445110346471e61.jpg", - "response": "A man wearing a blue shirt and a yellow backpack stands in a room with cubicles.", - "id": 7896 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b591_jpg.rf.55fe6d256f9d8b16c7eed963668b1a91.jpg", - "response": "a group of people standing in a room with a white ceiling and walls.", - "id": 7897 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b591_jpg.rf.fc9b2b42269f27a4d8802f7cb9efb5ca.jpg", - "response": "A group of people standing in a room.", - "id": 7898 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5920_jpg.rf.df1abe1900c8d915db9d78b96d077e11.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 7899 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5920_jpg.rf.f151e0a2b0f074a279776a8d2bd9add0.jpg", - "response": "A group of people are sitting at desks in a office.", - "id": 7900 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b592_jpg.rf.5055040e4635c7d7095b168a70b9ddcf.jpg", - "response": "A group of people standing in a room.", - "id": 7901 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b592_jpg.rf.78ad2a94bea345250cefaed451b1df3f.jpg", - "response": "A group of people are standing in a room with a white ceiling. They are standing around a cubicle area with desks and chairs. There are two people sitting at a desk with a computer in front of them. There is a TV on the wall and a handbag placed on the floor.", - "id": 7902 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5942_jpg.rf.68a3afbeed43d7a3a007cf38590a3767.jpg", - "response": "A group of people are sitting at desks with computers in front of them. They are all wearing ties.", - "id": 7903 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5942_jpg.rf.ddb93173d6c199163e6040c482b1dd54.jpg", - "response": "A group of people are sitting at computers.", - "id": 7904 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5910_jpg.rf.8785251484b4252c25fd55e3452b0ba5.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 7905 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5910_jpg.rf.8d843ccada1f3de8af337ff5883d1933.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 7906 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5913_jpg.rf.0cf36128114e020c95a32239728ea8ef.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 7907 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5913_jpg.rf.2e408ad7905380a2b498f9b3f14c1067.jpg", - "response": "A group of people are sitting at computers.", - "id": 7908 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5919_jpg.rf.285cf76f213f76c46add547f942e5ee2.jpg", - "response": "The image shows a busy office with several people working on computers. There are at least eight people in the office, some sitting at desks and others standing around. There are at least ten computers in the office, with two monitors on each of five desks. The computers are all equipped with keyboards and mice. The office also has two TVs mounted on the wall. The TVs are turned on, and they are displaying information. The TVs are also equipped with keyboards and mice.", - "id": 7909 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5919_jpg.rf.46ab896079358e71deb4eeab388b07e7.jpg", - "response": "a group of people working on computers in a cubicle setting", - "id": 7910 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5920_jpg.rf.faf76377305f1cabc611c2e97675231b.jpg", - "response": "A group of people are sitting in a room with a mirrored wall. They are all wearing face masks. The wall behind them has a blue and purple painting. The room has a lot of mirrors on the walls and the ceiling. The floor is grey and there are some red chairs. There are also some people wearing black and some are wearing white.", - "id": 7911 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5920_jpg.rf.ff1d1559443e8fad478cba2f836c34c4.jpg", - "response": "A group of people are sitting in a waiting area. There is a woman wearing a black and brown sari. A man is wearing a black shirt and blue jeans. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing", - "id": 7912 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5944_jpg.rf.6fec7deb4def990286bb4e9106410dbc.jpg", - "response": "The image shows a group of people working in a modern office. There are four people visible in the image, and they are all standing while working at desks. Each person is using a computer, and there are two monitors visible in the image. The office has a lot of desks and chairs, and the desks are equipped with modern computers. The office also has a TV mounted on the wall.", - "id": 7913 - }, - { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5944_jpg.rf.820be44e56232960b41ca5704d960d4e.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7914 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T02034028ee52121b5916_jpg.rf.4d3e4f35d53b028d069bc2f8e5cc4bdb.jpg", - "response": "A group of people sitting at computers in a cubicle.", - "id": 7915 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T02034028ee52121b5916_jpg.rf.dc30ca254f3175e626f8c3a44626446c.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7916 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5944_jpg.rf.3ea1d8c50c6c654df3277a81b6aa52d9.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 7917 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5944_jpg.rf.81c4aea88972229892fe3ebbb88e8f42.jpg", - "response": "A group of people are sitting at computers in a computer lab.", - "id": 7918 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5945_jpg.rf.a20e14653fceaa4b12bec74e285c9d24.jpg", - "response": "A group of people standing in a cubicle area with computers.", - "id": 7919 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5945_jpg.rf.c6e24a8e40968c4d1414522fd478b149.jpg", - "response": "a office with a row of computer work stations", - "id": 7920 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T07-03-4228ee52121b5926_jpg.rf.5241e4964c175b331d40698f42b4601d.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7921 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T07-03-4228ee52121b5926_jpg.rf.75459899b53b8903c43800c3ff37b685.jpg", - "response": "The image shows a group of people working at computers in a computer lab. There are four people in the room, with one person sitting at a desk on the left, one person sitting at a desk in the center, one person sitting at a desk on the right, and one person standing in the middle of the room. They are all focused on their computers, which are arranged in a line along the walls. The lab has a modern feel with white desks and chairs, and the walls are covered in posters. The room is well lit, with bright overhead lights and natural light coming in through windows.", - "id": 7922 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5914_jpg.rf.c0af074cbd23505ef8fb19be88d912fb.jpg", - "response": "A view of a office through a window with rain on it.", - "id": 7923 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5914_jpg.rf.f745db9b9492c14e6ec0a6b2ca3115ed.jpg", - "response": "A woman standing in a computer lab with others sitting at computers.", - "id": 7924 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b591_jpg.rf.5341b616f81111418160d669c50b0d51.jpg", - "response": "a room with several cubicles with people sitting at computers.", - "id": 7925 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b591_jpg.rf.982950d193199af6aba5cf11bf386be2.jpg", - "response": "A woman standing in front of a computer monitor.", - "id": 7926 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5928_jpg.rf.39fab45fc6f3b398db80ad898b8a1419.jpg", - "response": "The image shows a large office with many cubicles. There are several people working at computers in the cubicles. One woman is standing in front of a computer, while another woman is sitting at a desk with a computer. There are also two men sitting at desks with computers. The office has a modern look and feel, with white desks and chairs, and flat screen computers. The image is taken through a glass wall, which gives the impression of looking through a window into the office.", - "id": 7927 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5928_jpg.rf.6790fdc6876dfd62a764de7225f5012f.jpg", - "response": "A woman standing in a cubicle filled with computers.", - "id": 7928 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b593_jpg.rf.2120243228c6be901f5aa0d0df31030a.jpg", - "response": "A group of people working on computers in a office.", - "id": 7929 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b593_jpg.rf.d61c2a1480dac9fe36c74522437e2c2b.jpg", - "response": "A office with several cubicles where people are working on computers.", - "id": 7930 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b597_jpg.rf.ad2c69be360e1ddc8df35ae72f5965a3.jpg", - "response": "A group of people in a room with a silver ceiling.", - "id": 7931 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b597_jpg.rf.ec08b5e2e26709fbe7ef1605d55ca5a6.jpg", - "response": "A large room with cubicles where people are working on computers.", - "id": 7932 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b599_jpg.rf.76820800bc44ab97bcad73e6751cd119.jpg", - "response": "A group of people sitting at desks with computers in front of them.", - "id": 7933 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b599_jpg.rf.7969792ae2925171b87080e0663b1983.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 7934 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b5912_jpg.rf.5e68907f1d31d1ee4717c78b13562acc.jpg", - "response": "A man in a yellow shirt is standing in a cubicle.", - "id": 7935 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b5912_jpg.rf.bfe0e656cc269e97ecc80d845c659352.jpg", - "response": "A man in a yellow jacket walking through a cubicle area.", - "id": 7936 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b599_jpg.rf.77b4d3705c846e6674e82d25fe6610c8.jpg", - "response": "A room full of people sitting at computers.", - "id": 7937 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b599_jpg.rf.97515ecdb82bf8f8e3fec51b26d66686.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7938 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T12-03-4428ee52121b5925_jpg.rf.364fd511667c6d0f2a1ce576c12c6c49.jpg", - "response": "a office with many computers and people working on them", - "id": 7939 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T12-03-4428ee52121b5925_jpg.rf.5266cc66be6fb272be694d184f5bb4b0.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7940 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5915_jpg.rf.30b4439abf188b4e2c3bd0bc1ae88822.jpg", - "response": "A office with many people working on computers.", - "id": 7941 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5915_jpg.rf.cd3cabd5a9e7c7ae66a1d23842af53bc.jpg", - "response": "The image is a view of an office space with several cubicles. There are three people visible in the image, two of which are sitting at desks and one is standing. The people appear to be working on computers. The office space is filled with cubicles and desks, and there are several chairs positioned around the room. The image has a blue tint and is sprinkled with little white dots.", - "id": 7942 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5917_jpg.rf.bcda48f9c2e65f329ad397e6e9c0e228.jpg", - "response": "A office with cubicles and a large poster on the wall.", - "id": 7943 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5917_jpg.rf.f7ee3c20e3e86e37de5d164c8dee6680.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7944 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b591_jpg.rf.1db018b43f9ec2be172b0b83b79e0464.jpg", - "response": "A man walking through a cubicle area with desks and computers.", - "id": 7945 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b591_jpg.rf.9ef8b6ca1f839d9d9c6c0263e9a24c90.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 7946 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18-03-4728ee52121b5942_jpg.rf.9b28789a9359d9449bc38458410c15bc.jpg", - "response": "A group of people working in cubicles in a large office.", - "id": 7947 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18-03-4728ee52121b5942_jpg.rf.ea7721aa9941d1d84da7e9f06405dbb9.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 7948 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5925_jpg.rf.6dcd67d6b8bc841bd30509692a575a99.jpg", - "response": "A rain effect is applied to the image of two women standing in an office. They are standing back to back and are both wearing black pants. The woman on the left is wearing a red shirt and has her hair in a ponytail. The woman on the right is wearing a black shirt and has her hair down. They are both looking at a computer screen in front of them. The screen is on and they appear to be engaged in what they are looking at.", - "id": 7949 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5925_jpg.rf.e2263fadb19b8f0ffe95f9b568b3f249.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7950 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5939_jpg.rf.595225addc86ab711fe9b7b77a8b5ec0.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7951 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5939_jpg.rf.ceed92cb63f4eb7e8e8f985e6721542e.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7952 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5940_jpg.rf.0b6bded0f08ce648c9b5604413b9cfb0.jpg", - "response": "A group of people standing in a room with a white ceiling.", - "id": 7953 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5940_jpg.rf.9a4a49d34f6b19dc6c1496a8180ebae6.jpg", - "response": "A group of people are standing in a computer lab.", - "id": 7954 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5944_jpg.rf.5beb9ea4e6e95f1d92db6f068c6cb00d.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 7955 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5944_jpg.rf.859f6bc1532a8efb4a8a693ed946f38a.jpg", - "response": "a group of people sitting at computers", - "id": 7956 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b5923_jpg.rf.27d40ebc262a3eabf5231e9eaa0fdf0c.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 7957 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b5923_jpg.rf.b9d314d60013ddbc174d75eea920800b.jpg", - "response": "A group of people are in a room with a white ceiling. They are all looking at computers. There are two rows of computers. The first row has three computers. The second row has two computers.", - "id": 7958 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b593_jpg.rf.a18dd9d5ca43f1f6cac5807ed7ecd33f.jpg", - "response": "The image shows a group of people in a computer lab. There are several chairs and desks, as well as multiple desktop computers arranged along the walls. The people in the room are standing and interacting with the computers, and some are also carrying backpacks. The lab has a door that is slightly open, and there is a clock on the wall. The room is filled with people, creating a lively and busy atmosphere.", - "id": 7959 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b593_jpg.rf.bf8c604d6b652e03f6577f3022c35caa.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 7960 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b594_jpg.rf.7ee163b79d8bbdb3055f94b2ddc09c4a.jpg", - "response": "A group of people in a room with computers.", - "id": 7961 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b594_jpg.rf.e9bca0d5ef8e0382725ec991cb793dbc.jpg", - "response": "A group of people playing video games on computer screens.", - "id": 7962 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b592_jpg.rf.5e7187085a6176f5dcbe5b2c13a4252f.jpg", - "response": "A group of people standing and sitting in a computer lab.", - "id": 7963 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b592_jpg.rf.fe6c627aaf08088f514081dcfb715992.jpg", - "response": "A group of people standing in a room with a large poster on the wall.", - "id": 7964 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b5934_jpg.rf.102f6058944521608fb4a5460b80372f.jpg", - "response": "The image shows a large office with rows of computer stations. There are several people working at the stations, which are equipped with desktop computers, keyboards, and mice. The office has a modern look and feel, with gray desks and chairs, and white walls. The room is well lit, with several lights on the ceiling providing illumination.", - "id": 7965 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b5934_jpg.rf.d0de7ffb33e754b47061e91d1bc40486.jpg", - "response": "A girl walking through a cubicle area with people working on computers.", - "id": 7966 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b596_jpg.rf.257537c6cedd83f9abf9d7e504c7f2cf.jpg", - "response": "A group of people standing in a cubicle with desks and computers.", - "id": 7967 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b596_jpg.rf.51a381d760f4d8d43b61ed7dbe80f6f1.jpg", - "response": "A room full of people sitting in front of computers.", - "id": 7968 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b599_jpg.rf.a65f7d75778649cec8ee8c8bd310248b.jpg", - "response": "A man in a pink shirt is walking through a computer lab.", - "id": 7969 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b599_jpg.rf.f9d80961ac24f017f34d1b5d2bf28fb6.jpg", - "response": "The image shows a large office with multiple people working at computers. There are several screens visible, as well as keyboards and mice. The office has a modern look, with glass walls and white desks. The people in the office are sitting and standing, and some are talking to each other. One person is wearing a pink shirt and has a handbag. The office also has a TV mounted on the wall.", - "id": 7970 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T20-03-4828ee52121b598_jpg.rf.4e232dc5ee48915e79e9f08a48e81f8a.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 7971 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T20-03-4828ee52121b598_jpg.rf.d498736d3f8d67d7e2c313cddc8013c5.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 7972 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b591_jpg.rf.7efdad84796882da2c588768f2a76f38.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7973 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b591_jpg.rf.8acec40b02e72713a8823dd1f4d8e7b0.jpg", - "response": "A computer lab with multiple people working on computers. There is a woman wearing a pink shirt and a mask standing in the center of the room. She is holding a cell phone up to her ear. To her left, there is a woman in a pink shirt sitting in front of a computer. In front of her, there is a person in a black shirt sitting in front of a computer. To the right, there are two people in pink shirts sitting in front of computers. The room has multiple mirrors on the walls and a white ceiling with sprinkles of water droplets on the camera lens.", - "id": 7974 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b597_jpg.rf.1c407b8b56398922b71e51e734f11728.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 7975 - }, - { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b597_jpg.rf.99d886f2280826c5394977a18b5292b1.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 7976 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T06-03-5528ee52121b5941_jpg.rf.8065dd05abf6b554432704571bbcf238.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7977 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T06-03-5528ee52121b5941_jpg.rf.a8a6b00abc00319c91f1e61c0f23bbfe.jpg", - "response": "a group of people sitting at desks working on computers", - "id": 7978 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07-03-5628ee52121b591_jpg.rf.7136d8e62dc5bb532da4fa3ed81683e5.jpg", - "response": "a group of people standing in a room with computers and monitors", - "id": 7979 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07-03-5628ee52121b591_jpg.rf.d27ade6e66484f4f6d86011f5623c849.jpg", - "response": "A group of people are standing around a computer lab. There are three monitors on the left side of the room and two more on the right side. The people are standing in front of the computers and behind them. Some of them are sitting on a counter.", - "id": 7980 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b592_jpg.rf.43e9a843b277fdb32cdd6cc630b3e2e1.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 7981 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b592_jpg.rf.cd93d6e5ce4a15578566d8a0e5cee949.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 7982 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b593_jpg.rf.32c856831c90868a45b3bd59bde746ad.jpg", - "response": "a group of people sitting in front of computers", - "id": 7983 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b593_jpg.rf.6eb4e47bea94d3c629352ba42272c152.jpg", - "response": "A group of people are standing in a room.", - "id": 7984 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T08-03-5628ee52121b5919_jpg.rf.e87cf02ea08d025ae8c0beb7d38806a4.jpg", - "response": "A group of people are working at computers in a cubicle.", - "id": 7985 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T08-03-5628ee52121b5919_jpg.rf.f57be06b11ef9811adb0dcd6d1529be3.jpg", - "response": "A group of people standing in a computer lab.", - "id": 7986 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b5913_jpg.rf.053823429659c92e1288bd9e6b09c52b.jpg", - "response": "A woman standing in a room with many people sitting at desks with computers.", - "id": 7987 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b5913_jpg.rf.f0d905ad0b772b126a62fdc47b09bf62.jpg", - "response": "a group of people working on computers", - "id": 7988 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b595_jpg.rf.6354ee0f80c2ef83f93798c7e6145e8f.jpg", - "response": "A large office space with many people working on computers.", - "id": 7989 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b595_jpg.rf.eacaace40ab0f7b2e4889d835a64676d.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 7990 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5940_jpg.rf.1d1d477cb4d246f3a656120140be9abc.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 7991 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5940_jpg.rf.81f0d3d0dd83b4472b607630447296a1.jpg", - "response": "A group of people sitting in front of computers.", - "id": 7992 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5942_jpg.rf.394bbed5b60f95d7bd4642b928900fb5.jpg", - "response": "a man wearing a blue shirt and a mask", - "id": 7993 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5942_jpg.rf.ca9b61d5fc1257caaa2ba6442a767d28.jpg", - "response": "a man in a blue shirt standing in a cubicle", - "id": 7994 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b597_jpg.rf.82ce5bec99be2b7987dcd7762b18ce06.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 7995 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b597_jpg.rf.a92356104d1cf2b7db2207c92503f3d6.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 7996 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b5941_jpg.rf.035f138ebf132183af32e766c05cc1ad.jpg", - "response": "A room with a row of desks with people sitting at them. Each desk has a computer on it. There is a large poster on the wall in the middle of the room. The walls are covered in mirrors. The ceiling is white with a light in the center.", - "id": 7997 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b5941_jpg.rf.9185feb5b67c10ccf512a843f2c0c589.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 7998 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b594_jpg.rf.503b9452c9f86503406b8140442c3a8b.jpg", - "response": "A room full of people sitting at computers.", - "id": 7999 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b594_jpg.rf.72c05eee053d7c6e7371e546e3f06235.jpg", - "response": "A group of people are working on computers in a cubicle farm. The cubicles are made of clear glass and are located in a grey room. There are three people in the cubicles, each sitting at a desk with a computer. The people are wearing dark clothing. The room has a white ceiling and grey walls. There are two keyboards on the desks, one in front of each person. There are also two computer mice on the desks, one to the right of each keyboard. A TV is mounted on the wall behind each person. The image is displayed on the screens of the computers.", - "id": 8000 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b595_jpg.rf.73206b5f563faa782e3bf06c9514d7c2.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 8001 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b595_jpg.rf.7f99715510f87e210077e7ac55822792.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 8002 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b592_jpg.rf.3d08621601e3fb962370d4170fab1b7a.jpg", - "response": "A large office with cubicles and computers.", - "id": 8003 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b592_jpg.rf.7563fe0478710a7017b3742310a0f400.jpg", - "response": "A room with several cubicles where people are working. There are two people working at desks on computers. The cubicles are made of glass and separated by dividers. The room has a grey carpet and a white ceiling with air conditioning. There are also two chairs in the room.", - "id": 8004 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b595_jpg.rf.13cd6916dab521cd4055a82799d08d6d.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 8005 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b595_jpg.rf.b7f492ad461350717af15eb619d34964.jpg", - "response": "The image is a rain-streaked window looking into an office area. There are four people working in the office.", - "id": 8006 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17-04-0028ee52121b5946_jpg.rf.478b8d5b8097813878da7e67a3e2a893.jpg", - "response": "A group of people working on computers in a room.", - "id": 8007 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17-04-0028ee52121b5946_jpg.rf.487a0c37da4f8e88d6457cb26f93f407.jpg", - "response": "The image shows a large office with a wall of computer workstations. There are several people working at the stations, which are equipped with desktop computers, keyboards, and mice. The office has a modern look and feel, with glass partitions and white desks. The room is well lit, with several lights on the ceiling.", - "id": 8008 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5910_jpg.rf.6c95f08c127c4911180df80409d60182.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 8009 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5910_jpg.rf.89f86941dc7f991edac3e0931db2bf0f.jpg", - "response": "A group of people sitting in front of computers in a small room.", - "id": 8010 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5913_jpg.rf.2fe3e7a1d102ab172fe99204ac5043c0.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8011 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5913_jpg.rf.d1dfc92f58f8479232b103128ca849aa.jpg", - "response": "The image is a glass wall looking into an office area. The glass is covered in many small black dots. In the office area, there are two people sitting at desks. The person on the left is sitting at a desk with a computer in front of them. They are wearing a black shirt and grey pants. The person on the right is sitting at a desk with a computer in front of them as well. They are wearing a black shirt and blue pants.", - "id": 8012 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5914_jpg.rf.a04565ee162779c754f201710058d537.jpg", - "response": "A group of people are standing and sitting around a room full of computers.", - "id": 8013 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5914_jpg.rf.dfcdad125e820076bbab6ee4f460fdd6.jpg", - "response": "A group of people standing in a room in front of computers.", - "id": 8014 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5916_jpg.rf.1e06088feeb46653bb61b13fdfd5ea65.jpg", - "response": "A woman standing in a room with multiple computer monitors.", - "id": 8015 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5916_jpg.rf.2428803278fd832be81a31c77e5988df.jpg", - "response": "a group of people standing in front of a wall of monitors", - "id": 8016 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5919_jpg.rf.1a38e260996efb4ab4c33d942cd4de60.jpg", - "response": "A view through a window into a room full of computers. There are three people sitting at computers in the room. The room has a grey floor and white ceiling. The wall is made of windows.", - "id": 8017 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5919_jpg.rf.d32049ab09cef4069fdbf9971442ce18.jpg", - "response": "The image shows a computer lab with several people working on computers. There are three people sitting at desks working on computers, and two other people standing near computers. The computers are arranged in a line along the wall and on individual desks. The lab has a modern look with glass walls and silver computer equipment. The lighting is bright and the room is clean and well-organized.", - "id": 8018 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5925_jpg.rf.41e6fbec9ce46f05adfb006ba0d1811d.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 8019 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5925_jpg.rf.d860882212ca7da32f32633a67cbbe3f.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 8020 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T18-04-0128ee52121b5938_jpg.rf.852c66955dbaa60d87e7a69bfcdb482e.jpg", - "response": "A group of people are in a computer lab.", - "id": 8021 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T18-04-0128ee52121b5938_jpg.rf.d3c42667f66676c3b720d72213f588bc.jpg", - "response": "A group of people are working on computers in a cubicle farm.", - "id": 8022 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T19-04-0128ee52121b5915_jpg.rf.dfcb85fc115381bae3863f5a93d5146e.jpg", - "response": "The image is a group of people working in cubicles in a office. There are three people in the image, two of which are women and one is a man. They are all wearing blue shirts. The cubicles are made of glass and have a television on in front of each person. The television screens are on. There is a keyboard and a mouse on the desk in front of each person. The office has a blue color scheme and the image is shot through a rain-streaked window.", - "id": 8023 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T19-04-0128ee52121b5915_jpg.rf.f231cb8031fd8862ae819906efb0a7a4.jpg", - "response": "The image is a room filled with people working on computers. There are several people sitting at desks, with some of them wearing face masks. The room has a mirrored wall, and there are also several monitors on the desks. The people in the room are wearing blue tops.", - "id": 8024 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b594_jpg.rf.9cd488a5888ca2d61277be76e61d65a7.jpg", - "response": "The image shows a busy office with several people working at computers. There are at least ten people in the office, some sitting at desks and some standing. There are at least five computer monitors visible in the scene, along with keyboards and other office equipment. The office has a modern look and feel, with white walls and tiled flooring. The people in the office are diverse, with individuals of different ages and ethnicities. The office appears to be a call center or some type of customer service center.", - "id": 8025 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b594_jpg.rf.f63e0d7a9b6e5ea40170d736d500e0e8.jpg", - "response": "A group of people are standing in a computer lab.", - "id": 8026 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b595_jpg.rf.64335f58b002a824fce9ac2583e05322.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 8027 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b595_jpg.rf.ce19923a811a2f3e9dba26158a7b2d31.jpg", - "response": "A group of people in a room with computers.", - "id": 8028 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5922_jpg.rf.2236be61667b65675ce3b5ebafafc7b8.jpg", - "response": "A group of people working on computers in a lab.", - "id": 8029 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5922_jpg.rf.fe90ca2c36c7012b801240a110028490.jpg", - "response": "a group of people sitting at desks", - "id": 8030 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5927_jpg.rf.101a39be5eab37108953ff25511172ff.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8031 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5927_jpg.rf.b5f7b718df8fc4c77ff70fc858a028ea.jpg", - "response": "a rain covered window looking into a cubicle with two people working on computers", - "id": 8032 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5945_jpg.rf.45ab5d0b12f265a4896b300c614d4cff.jpg", - "response": "a group of people in a cubicle area", - "id": 8033 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5945_jpg.rf.8d4a452987be744c4dfd9f0f0178bef7.jpg", - "response": "The image shows a group of people in a large office with desks and computers. There are four people at desks working on computers, one person standing to the left of a woman, and another person standing behind the woman. The office has a row of desks with computers on them and a wall of mirrors. The image is taken through a window with white dots on it.", - "id": 8034 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5912_jpg.rf.60919c2faa7116688dc7fbce295fe282.jpg", - "response": "A group of people working in a room with a wall of screens.", - "id": 8035 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5912_jpg.rf.d1cce6de2fdd3f26543f28d744e130f5.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 8036 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5916_jpg.rf.155697710a8084e8bf135c234fe4075e.jpg", - "response": "A woman standing in a room with a bunch of mirrors on the wall.", - "id": 8037 - }, - { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5916_jpg.rf.e341966eed7ffdcd87335c0b3d9b543c.jpg", - "response": "A woman in a blue shirt is standing in front of a mirror.", - "id": 8038 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5940_jpg.rf.332e02f5f32851cec16f981429cab8f6.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 8039 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5940_jpg.rf.722b5ee2c2b3d7f49acb43ec7ae6698d.jpg", - "response": "A man walking through a work place with cubicles.", - "id": 8040 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5945_jpg.rf.58203935c4523b56cf1fdfa0f65c9261.jpg", - "response": "A group of people are sitting in an office. There are two people on the left and three people on the right. They are all wearing ties. In front of them is a table with a computer on it. There is a keyboard and a mouse in front of the computer. On the wall behind the people is a poster. The office has a window that looks out into another room. The ceiling is white and has a panel in the middle. The floor is grey.", - "id": 8041 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5945_jpg.rf.d1a64bacf500961ec54f57a697c308f1.jpg", - "response": "The image is a view of an office area with a white ceiling. There are multiple people in the office working on computers. There are three people sitting at desks on the left side of the room and two people standing in the office on the right side. There are two TVs mounted on the wall in the office. One is on the left side and the other is on the right side of the room.", - "id": 8042 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b5916_jpg.rf.057fc02dc10bd3c88623e948caccff15.jpg", - "response": "A office with cubicles and workers at computers.", - "id": 8043 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b5916_jpg.rf.b3a60475087f3dc39c86d70d0c73f738.jpg", - "response": "a office with cubicles and a large picture on the wall", - "id": 8044 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b591_jpg.rf.c7f0f1f4c17712948a343a19b14f70e3.jpg", - "response": "A group of people standing in a room with a pink backpack and a blue jacket.", - "id": 8045 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b591_jpg.rf.fc122ebccaf795eb1115dfeb3c6e2899.jpg", - "response": "A blurry image of a room with a person sitting on a chair. The room has a white ceiling and walls and appears to be made of glass. There are two other people in the room, one standing to the right of the person sitting and another standing to the right of the person in the chair.", - "id": 8046 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b598_jpg.rf.0d67a5c7e04cc966be746caf36c25182.jpg", - "response": "a blurry photo of a room with a row of cubicles", - "id": 8047 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b598_jpg.rf.e7864fd386823ad257a169c4cdfaa6e3.jpg", - "response": "a group of people sitting in front of computers", - "id": 8048 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T09040928ee52121b5920_jpg.rf.4a8fefc369e3184bbe0a38b9af93af6e.jpg", - "response": "A woman in a blue shirt is standing in a room with a row of cubicles. There are several people working at computers in the cubicles. The room has a row of mirrors on the wall and a poster on the wall behind the woman. The room has a gray floor and gray walls.", - "id": 8049 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T09040928ee52121b5920_jpg.rf.ffce72c4b6962649aa727bc709d80e2e.jpg", - "response": "A room filled with people working on computers.", - "id": 8050 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T14-04-1328ee52121b5944_jpg.rf.1e86f425d814138ff57d9d77b592c85b.jpg", - "response": "a room with many people sitting at desks with computers.", - "id": 8051 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T14-04-1328ee52121b5944_jpg.rf.3179098d07d56a898999b24936806f8c.jpg", - "response": "A room with many desks and computers on them.", - "id": 8052 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5941_jpg.rf.8c00b3344217dc25c08314443fd778eb.jpg", - "response": "A group of people standing in a room.", - "id": 8053 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5941_jpg.rf.90a772f18a148c0367513a5d103ebe52.jpg", - "response": "A group of people standing in a room with a television.", - "id": 8054 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5943_jpg.rf.696abfc42de93e156809c92e7c21f399.jpg", - "response": "A group of people working in an office with computers.", - "id": 8055 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5943_jpg.rf.dff98e6b7f7cc7bd9f4677ca32ea6291.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 8056 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5944_jpg.rf.26b3858def0459eec9c514e65955f0f5.jpg", - "response": "A group of people are in a room with glass walls.", - "id": 8057 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5944_jpg.rf.96c999de8ddb802fec665147f8c27fa6.jpg", - "response": "A photo of a group of people in a room. They are all wearing black and pink. There is a large mirror on the wall in front of them. The mirror is reflecting the group and the room. The ceiling is white and has a pattern of black dots on it. There is a lamp hanging from the ceiling.", - "id": 8058 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b595_jpg.rf.3c0db239a20ff6a723f33b379197dd1d.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 8059 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b595_jpg.rf.b6023149afc9ff98ab861925d4815971.jpg", - "response": "a office with people sitting at desks working on computers.", - "id": 8060 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b596_jpg.rf.9c04faefb808554e7de2959d34b082a3.jpg", - "response": "A office with several cubicles where people are working on computers.", - "id": 8061 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b596_jpg.rf.9dac43e8a313cc69f73cf4e660cc681f.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8062 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5911_jpg.rf.19682f5cfc10ba5acc3cdbe47a6dad92.jpg", - "response": "a photo of a group of people working in an office", - "id": 8063 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5911_jpg.rf.c1a06cfe1b885a9b3a8f4b162701266e.jpg", - "response": "A man standing in front of a computer screen.", - "id": 8064 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5912_jpg.rf.3bb6ede2af37e5a89e3d46c18405d3ad.jpg", - "response": "A group of people working in an office are reflected in a rain-streaked window.", - "id": 8065 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5912_jpg.rf.8edb585aa9aa760a138f6cdd109fb78c.jpg", - "response": "a group of people standing in a room", - "id": 8066 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b591_jpg.rf.0786248fbcf0b1c45dd4d8ac79604969.jpg", - "response": "A room full of people working on computers.", - "id": 8067 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b591_jpg.rf.1f9f86cef2797a674fba19941d120640.jpg", - "response": "A room with several people working on computers.", - "id": 8068 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b595_jpg.rf.2fb4a3e9cbd14ff577fee06d7b92ea64.jpg", - "response": "a group of people playing nintendo wii in a room", - "id": 8069 - }, - { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b595_jpg.rf.56b0c8959eb91abf8c2d62445445940b.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 8070 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b594_jpg.rf.3cb5b27d426ae400e5a29b6d237fce09.jpg", - "response": "The image shows a large office with several cubicles. Each cubicle has a desk with a computer on it, and there are several people working at the computers. Some of the people are sitting on chairs, and some are standing. The office has a modern look and feel, with glass walls and white desks. The lighting is bright, and the atmosphere appears to be busy and productive.", - "id": 8071 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b594_jpg.rf.e581c6ff8788a32b661ae6c450e7851e.jpg", - "response": "A office with cubicles and desks. There are two people sitting at desks on computers. The walls are covered in a dark blue poster. The ceiling is white with a light in the center. There are many small holes in the ceiling.", - "id": 8072 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b599_jpg.rf.3d30677e4a20a60fb5787b80bd4b5538.jpg", - "response": "a room with people sitting at desks with computers", - "id": 8073 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b599_jpg.rf.fc2e349dc190fdfdc866a090ca02ff55.jpg", - "response": "a photo of a room with a bunch of people in it", - "id": 8074 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5921_jpg.rf.6c2a57e403289ada0ae2ee4c963926ae.jpg", - "response": "A rain effect is applied to a photo of people working in cubicles. Each person is sitting at a desk with a computer. There are three people in the photo. The first person is sitting in the far left cubicle and is wearing a blue shirt. The second person is sitting in the middle cubicle and is wearing a black shirt. The third person is sitting in the far right cubicle and is wearing a blue shirt. The person in the middle cubicle has a keyboard in front of them and a mouse to the right. The person in the far right cubicle has a keyboard in front of them and a mouse to the left. The third person is also wearing a headset.", - "id": 8075 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5921_jpg.rf.a80c0ed592fedf7804a38fd4420b0c0a.jpg", - "response": "A group of people working in cubicles.", - "id": 8076 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b592_jpg.rf.085b003842ccd319d81c400e04668771.jpg", - "response": "A group of people are standing in a room with a white ceiling and black speckles on the walls. They are all wearing face masks. There are three TVs on the wall and two keyboards and two laptops on the desks in front of them.", - "id": 8077 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b592_jpg.rf.364e49549965c0123a2ae35b9ae29903.jpg", - "response": "A group of people are in a computer lab.", - "id": 8078 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5939_jpg.rf.0902a89ebddc9dbf7008d86721ffc13b.jpg", - "response": "a room with people sitting at desks with computers", - "id": 8079 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5939_jpg.rf.218d46a87d81b2c88a753041183db98c.jpg", - "response": "The image shows a large office with multiple people working at desks. There are several chairs positioned around the room, and many people are sitting in them. There are also a number of standing desks where people are working. The office has a modern design, with glass walls and a white ceiling. There are a number of large monitors on the desks, and people are using them to work on computers. The room is well lit, with bright overhead lights and some smaller lights on the ceiling.", - "id": 8080 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5941_jpg.rf.70166de2eab0e8416faf607a19aaf88b.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 8081 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5941_jpg.rf.a34d0e58ffa688d055a8258e8e10fd9f.jpg", - "response": "A woman with a pink backpack is standing in a cubicle with a computer.", - "id": 8082 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5945_jpg.rf.e22ec2c2e31500a6fa44027512717877.jpg", - "response": "A woman in a blue dress is standing in a cubicle with a pink bag. There are two other people in the cubicles working on computers. The cubicles are in a large office with white desks and chairs. There are two white desks on the right side of the room and one white desk on the left side. There are two chairs in front of each desk. The office has white walls and white lights on the ceiling.", - "id": 8083 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5945_jpg.rf.f423117e90aedd6a88be1661f8c4f037.jpg", - "response": "A woman in a blue dress is standing in a cubicle with a pink backpack. There are two other people in the cubicles, one sitting and one standing. The cubicles are located in a large office with white desks and chairs. There are two white desks in the foreground and two more in the background. The office also has two white chairs and two white desks in the background.", - "id": 8084 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T09042128ee52121b5922_jpg.rf.2b129118b804d5c087bf9617abead4b3.jpg", - "response": "A man sitting at a desk with a computer.", - "id": 8085 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T09042128ee52121b5922_jpg.rf.7dfd1856e912768d3a3305fbc42807c8.jpg", - "response": "A office with cubicles and people working on computers.", - "id": 8086 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5927_jpg.rf.6e660123f237857b6ada728f80acaffa.jpg", - "response": "A man and a woman standing in a computer lab.", - "id": 8087 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5927_jpg.rf.ae1ca0ae0899f15f1e7b5394d6328657.jpg", - "response": "A group of people standing in a room with computers.", - "id": 8088 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5931_jpg.rf.36c522cce382cfa0dc860fc3f1ad3611.jpg", - "response": "The image is a view of a room through a window that has many small black spots on it. The room has a white ceiling and walls that are covered in small black spots. There are several people in the room working on computers. There are two people sitting at a desk on the left side of the room, and another two people sitting at a desk on the right side of the room. In front of each of the desks, there is a computer. There is also a chair in front of each desk.", - "id": 8089 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5931_jpg.rf.b8c11feceb457a51f4695baeadb32f2f.jpg", - "response": "A group of people working at computers in a large office.", - "id": 8090 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b593_jpg.rf.58b368596310b4d5cf26081b38da3f8e.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 8091 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b593_jpg.rf.a8acdbecf50433dc2a674452ff04c825.jpg", - "response": "A room with several people working on computers. There are three people sitting at desks on the left side of the room and two people sitting at desks on the right side of the room. The desks are covered in computers and keyboards. The room has a mirrored wall and a poster of a baby on the wall. The room has a ceiling with white panels and black dots on them.", - "id": 8092 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5943_jpg.rf.c391410b744a665c4b7e69fc81917a4c.jpg", - "response": "A office with people working on computers is shown. There are four people in the office, each sitting at a desk in front of a computer. The office has two large windows on the far wall and smaller windows on the walls to the left and right. The walls are also covered in smaller windows. The ceiling is white and has a sprinkler system. The sprinklers are turned on and are spraying water droplets everywhere.", - "id": 8093 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5943_jpg.rf.e7a2cefc2c9021e453f04fac4043b884.jpg", - "response": "A office with cubicles and desks where people are working. There are three people in the office, each at a cubicle with a computer. The walls of the office are made of glass and are covered in small black dots. The ceiling is white and has a speaker on it. There is a rug on the floor.", - "id": 8094 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T11042228ee52121b593_jpg.rf.53578cb007b9e4f16245aec3ee83b200.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 8095 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T11042228ee52121b593_jpg.rf.dd867ef73e0d3f3b50a165cf402282d9.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 8096 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T12042328ee52121b5944_jpg.rf.160f84b26d33af8cf895904a8522587c.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8097 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T12042328ee52121b5944_jpg.rf.584386e2ae803eb5f21f6a30d5b8a41f.jpg", - "response": "A office with cubicles and desks where people are working. Each desk has a computer on it and some have a keyboard and mouse. The walls are covered in a white speckled material. The ceiling is white and has a light in the middle. The floor is grey and the room is filled with people.", - "id": 8098 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5915_jpg.rf.677686d2b9b787eade084c466462b924.jpg", - "response": "A woman in a black jacket is standing in a room with desks and computers.", - "id": 8099 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5915_jpg.rf.d81b2df8a17475eb2a3f8b7e766c3577.jpg", - "response": "A office with people working on computers.", - "id": 8100 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5918_jpg.rf.2a1f7e81cdde468b49fb9a376da7a3f2.jpg", - "response": "A man standing in a cubicle with a computer on each side of him.", - "id": 8101 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5918_jpg.rf.bb67808647b5d6477d794268a82cc058.jpg", - "response": "An office with cubicles and people working on computers.", - "id": 8102 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5921_jpg.rf.7abd8392b26bca85fb4c1e9dd6ad559a.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 8103 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5921_jpg.rf.8ed3a88b4c561c43f1a680125698f215.jpg", - "response": "A group of people standing in a room with a mirrored wall.", - "id": 8104 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5921_jpg.rf.71d4b0f9ab71a9160ef51dadf490c5ac.jpg", - "response": "a office with people working on computers.", - "id": 8105 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5921_jpg.rf.aa7a701434387106ba67a4c879c1e64b.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 8106 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5939_jpg.rf.62ef0cfb407d0549254720468f89a276.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 8107 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5939_jpg.rf.cf1ac7051b99f3c3c5c8491e57a4c030.jpg", - "response": "A view of a room through a window covered in what looks like thousands of tiny holes. The room has a white ceiling with a grid pattern on it. On the floor is a grey carpet. On the left side of the room are two people sitting in front of computers. They are both wearing a mask. In the middle of the room is a standing person wearing a mask. On the right side of the room are two more people sitting in front of computers. The screens of the computers are showing different things.", - "id": 8108 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5945_jpg.rf.6262c336c8799a68ab28d6513152a55b.jpg", - "response": "a group of people sitting in front of computers", - "id": 8109 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5945_jpg.rf.7a9e3539a4e66bd66dd692f1937238b6.jpg", - "response": "A woman standing in a cubicle area with several people sitting at computers.", - "id": 8110 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b599_jpg.rf.191d53e2640df46dbd216698450665da.jpg", - "response": "The image shows a large office space with cubicles. There are two people working at computers in the office. One person is sitting at a desk on the left side of the room and is wearing a blue shirt. The other person is sitting at a desk on the right side of the room and is wearing a black shirt. There are two monitors on in the office, one on the left side of the room and one in the center. The office also has two chairs, one on the left side of the room and one on the right side of the room.", - "id": 8111 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b599_jpg.rf.e314261f9479e2aa0398fd063e7eb4f8.jpg", - "response": "The image shows a room with several cubicles, each containing a computer and a chair. There are three people in the room, all sitting at their respective cubicles. The first person is on the left side of the room, the second person is in the middle, and the third person is on the right side. The cubicles are arranged in a line, with a dividing wall between them. The wall has a poster on it, featuring an astronaut. The room has a gray color scheme, with gray walls and gray flooring. The ceiling is white.", - "id": 8112 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5911_jpg.rf.0b2becf239b55e481700f4f4460d2e10.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 8113 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5911_jpg.rf.59286e728a787c528faa15b8fda9c9d9.jpg", - "response": "A group of people working on computers in a cubicle farm.", - "id": 8114 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5924_jpg.rf.1b858bac4d768172e91092c79b3a8cad.jpg", - "response": "The image shows a large office with several people working at computers. There are multiple desks and chairs, and a wall of computer monitors. The workers are all wearing blue shirts. One of the workers is standing up, and there is a poster on the wall behind them. The office also has a few clocks on the wall.", - "id": 8115 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5924_jpg.rf.9741057cd6ddd53ed40738e9489d2e65.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 8116 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5931_jpg.rf.a125c2ad4538b1400bdd78e2b4e5dcce.jpg", - "response": "a group of people working at computers", - "id": 8117 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5931_jpg.rf.a9f111b9b00bc2048c70dd05ede98f09.jpg", - "response": "A group of people are working on computers in a room.", - "id": 8118 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b593_jpg.rf.ddcf2d3017f9520785109e3674c5ee3b.jpg", - "response": "a room with people working on computers", - "id": 8119 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b593_jpg.rf.f4dc676239e857104e255f2139d3d584.jpg", - "response": "A computer lab with several people working on computers.", - "id": 8120 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b596_jpg.rf.18d39103b840cf50d5f904284c7b8b3c.jpg", - "response": "a group of people working on computers", - "id": 8121 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b596_jpg.rf.4d82db2b2f04abf8128cda0ca6bbf473.jpg", - "response": "A man and woman standing in a cubicle with others behind them.", - "id": 8122 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b597_jpg.rf.59f360ceb6e5e3b3de7b9c80d25284d0.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 8123 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b597_jpg.rf.9dff8185de598c61b402de8ea1827529.jpg", - "response": "A room with a white ceiling and a wall that has mirrors on it. There are two people sitting at desks working on computers. One person is wearing a blue shirt and is sitting at a desk with a computer on it. The other person is wearing a black shirt and is sitting at a desk with a computer on it. There is a fire hydrant on the wall near the two people.", - "id": 8124 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b591_jpg.rf.b8427aa9487d0c7b3d1cf2d776a469a0.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 8125 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b591_jpg.rf.ec637ea241c05e27294e56131e99c0b3.jpg", - "response": "A office with cubicles and workers.", - "id": 8126 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b5944_jpg.rf.4df706b123f329c944b3520a81b03c57.jpg", - "response": "The image shows a large office with multiple people working on computers. There are at least 10 people in the office, some sitting at desks and others standing around the room. There are several computers on desks, as well as keyboards, mice, and other office equipment. The office has a modern look and feel, with white walls and tiled flooring. The people in the office are of varying heights and are spread out throughout the room.", - "id": 8127 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b5944_jpg.rf.8431a606960712b4809f7cab99d7e13b.jpg", - "response": "A group of people working on computers in a room.", - "id": 8128 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T21042828ee52121b5920_jpg.rf.37f6a0cd218d456e5300fe5000c02bca.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8129 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T21042828ee52121b5920_jpg.rf.c8d23f9733e0f147f827c625bf6f93b3.jpg", - "response": "A man and woman are working in a cubicle with two computer monitors.", - "id": 8130 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b591_jpg.rf.0cba80df5e4ca76ee69df259adaa66bc.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 8131 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b591_jpg.rf.6d291ac9c86d270b1cac3099685f5ef3.jpg", - "response": "A group of people are sitting in a room with a mirrored wall in front of them. The wall has a pattern of small black dots on it. The people are sitting at desks and some are using computers. The room has a ceiling with a white panel and a black border. The floor is grey and the walls are mirrored.", - "id": 8132 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b5943_jpg.rf.285a3b2babb5ef23cfea1c96e1e419eb.jpg", - "response": "A group of people working in a cubicle area.", - "id": 8133 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b5943_jpg.rf.a1bbc1f8b05d26e6840197d1b7b37865.jpg", - "response": "A group of people standing in a room.", - "id": 8134 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b591_jpg.rf.bd995d7bb35af9dc1fc00f74ba2549df.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 8135 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b591_jpg.rf.f15a56e3f660d713296cae51a47a2cf7.jpg", - "response": "The image shows a large office with cubicles where several people are working on computers. There are four people in the office, three of them sitting at desks and one standing in the middle of the room. Each person is in front of a computer, and there are two monitors on each desk. The office has a modern and spacious feel, with white desks and chairs, and large windows. The room is also equipped with modern technology, as there are several keyboards, mice, and computer mice on the desks.", - "id": 8136 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b5925_jpg.rf.adcb4a37fe63651cd573f64a7d4f18c6.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 8137 - }, - { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b5925_jpg.rf.df6e38bed064cb74a4c494cd4c76169e.jpg", - "response": "A room full of people sitting in front of computers.", - "id": 8138 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T00043028ee52121b5915_jpg.rf.30ea744298f80ccaa1b97c6195b58285.jpg", - "response": "A group of people working on computers in a large cubicle.", - "id": 8139 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T00043028ee52121b5915_jpg.rf.90cae1125753aaac5bad7805dfcca72a.jpg", - "response": "A rain covered window looking into an office with multiple people working.", - "id": 8140 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5920_jpg.rf.4c4f38d838d0f64496f5f5a5d0b45fc3.jpg", - "response": "a group of people standing in front of a wall of mirrors", - "id": 8141 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5920_jpg.rf.83cd8347a12a11ee4e0034cb65cf96ac.jpg", - "response": "A group of people standing in a room with computers all around.", - "id": 8142 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5944_jpg.rf.5e8566097df97c2f364875e7a6770e64.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8143 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5944_jpg.rf.63f3dfc486243b177b8bbdf61bf0c5f4.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 8144 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b594_jpg.rf.a5ee929b236cd0cbc71ca46c25a07f40.jpg", - "response": "A group of people working at computers in a large office.", - "id": 8145 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b594_jpg.rf.d03624fc765e71a1a36ae1e87b94d991.jpg", - "response": "A office with a lot of people working on computers. There are two people on the left and two people on the right. They are all wearing blue shirts. There are two large screens on the left and two large screens on the right. The room is filled with desks and chairs. The room is also filled with a lot of small black dots.", - "id": 8146 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T06-04-3328ee52121b591_jpg.rf.07f34e8ec4b471a946c5f7db13f3f031.jpg", - "response": "A group of people are working on computers in a room.", - "id": 8147 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T06-04-3328ee52121b591_jpg.rf.ef2854f61b14325b00a19aede9939bbc.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8148 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5926_jpg.rf.5863d8d6ead3af56f4103ca4ae714dba.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8149 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5926_jpg.rf.5d63da4881dc8e5e8c575fde7a154905.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 8150 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5927_jpg.rf.b458afc77dee4575cad75f3aaf41c05b.jpg", - "response": "A room with a mirrored wall and a row of desks.", - "id": 8151 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5927_jpg.rf.ec172998b02d9fc2ee846c7bfecdff48.jpg", - "response": "A room full of computer work stations with people sitting at them.", - "id": 8152 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T19-04-3928ee52121b5927_jpg.rf.6262227adca3ced01ff9fe4ef6e2dda2.jpg", - "response": "a group of people working on computers in a cubicle setting", - "id": 8153 - }, - { - "image_path": "G:\\images\\combined\\07-29-2021T19-04-3928ee52121b5927_jpg.rf.6d595bf0a5a5f2b3ad07363814c77bb7.jpg", - "response": "A rain effect is applied to the image of a group of people working in cubicles. The people are sitting at desks and looking at computers. The image is taken through a glass wall that is covered in water droplets.", - "id": 8154 - }, - { - "image_path": "G:\\images\\combined\\070210-F-4972P-219_JPG_jpg.rf.c6253b83d677cf18d3aa069acdf22398.jpg", - "response": "A man in a red hat and gloves is pouring cement into a wheelbarrow. Another man is standing behind him.", - "id": 8155 - }, - { - "image_path": "G:\\images\\combined\\070210-F-4972P-244_JPG_jpg.rf.f168fd636eccf8368a87e347303aa191.jpg", - "response": "A man in a uniform and welding mask welding a metal frame.", - "id": 8156 - }, - { - "image_path": "G:\\images\\combined\\070601-F-0725K-001_JPG_jpg.rf.28dcc4fa5dd888da999d5960bfa4e984.jpg", - "response": "a man in black shirt and camo pants standing next to a playground structure", - "id": 8157 - }, - { - "image_path": "G:\\images\\combined\\0706665d45f75aa9.jpg", - "response": "A book and a cd are laying on a white sheet. The book is called \"Race Against The Machine\" and has a cover of a clock. The cd is titled \"The Machine\" and has a picture of a group of people on it.", - "id": 8158 - }, - { - "image_path": "G:\\images\\combined\\0706d6f00f93c030.jpg", - "response": "A person is holding a bike with a bike computer on it.", - "id": 8159 - }, - { - "image_path": "G:\\images\\combined\\070a354ea162e868.jpg", - "response": "The image is a poster for an event called \"Izan zirelako gara... irabaziko dugu!\" The event is celebrating 20 years of Ekitaldia. The poster features a picture of a man with a mustache and beard and a woman with a flower in her hair. They are both looking at the camera. The man is wearing a tie and the woman is wearing a scarf. The text on the poster is in Basque.", - "id": 8160 - }, - { - "image_path": "G:\\images\\combined\\070c3a8a91f3daa6.jpg", - "response": "A book cover with a blue background and the title Destroyer of Worlds.", - "id": 8161 - }, - { - "image_path": "G:\\images\\combined\\070d39fb68ae8d38.jpg", - "response": "In the image there are two old glass bottles and one blue bottle. The glass bottles are clear and one has a green tint, the other a yellow tint. The blue bottle is also clear and is placed on the right side of the image. The bottles are placed on a windowsill and the background is a green bush.", - "id": 8162 - }, - { - "image_path": "G:\\images\\combined\\070d47f646990950.jpg", - "response": "A bottle of wine with a red and brown label that says \"Dissan\" on it.", - "id": 8163 - }, - { - "image_path": "G:\\images\\combined\\071019_p1160098_jpg.rf.420267e64d72db039d34c7825ea47a97.jpg", - "response": "A man standing on a ladder in a house that is still under construction. The man is wearing a white shirt and tan pants. There are two other people in the house, one near the bottom left and one near the top right. There are two ladders, one being used by the man and the other leaning against the wall. There are two windows in the room, one on the left and one on the right. The room is filled with wood and insulation.", - "id": 8164 - }, - { - "image_path": "G:\\images\\combined\\07107be46427c8e4.jpg", - "response": "A white van is parked on the street next to a black fence. There is a light post in front of the van and a shadow of the light post on the sidewalk.", - "id": 8165 - }, - { - "image_path": "G:\\images\\combined\\0711f02a26fae0f9.jpg", - "response": "A computer monitor, keyboard and mouse sit on a desk.", - "id": 8166 - }, - { - "image_path": "G:\\images\\combined\\0712953fbfea4c76.jpg", - "response": "An iPhone with a black background and silver trim.", - "id": 8167 - }, - { - "image_path": "G:\\images\\combined\\0716526d212e39a3.jpg", - "response": "A table with a red table cloth has a jar with a metal lid, a jar with a plastic lid, and two bottles with orange tops and one with a red top.", - "id": 8168 - }, - { - "image_path": "G:\\images\\combined\\0716bb43509ee885.jpg", - "response": "A watercolor painting of a pepper mill and a salt shaker.", - "id": 8169 - }, - { - "image_path": "G:\\images\\combined\\0717c45356a1eb5c.jpg", - "response": "A desk with a stack of white business cards on it.", - "id": 8170 - }, - { - "image_path": "G:\\images\\combined\\071cbc2a74310c4c.jpg", - "response": "A close up of a screen that says Experience on it.", - "id": 8171 - }, - { - "image_path": "G:\\images\\combined\\071e2154d2e32470.jpg", - "response": "a window with many signs on it", - "id": 8172 - }, - { - "image_path": "G:\\images\\combined\\071ffcfc2501766c.jpg", - "response": "An Apple Watch is sitting on a silver charging stand on a wooden desk. The watch is in the middle of the stand and is connected to a white charger. The stand has a small figurine next to the watch. The figurine is white with black eyes and has a black design on its body. It has a mustache and is holding a cigarette.", - "id": 8173 - }, - { - "image_path": "G:\\images\\combined\\07235c06a6c11675.jpg", - "response": "A white iPhone 5S is turned off and laying face up on a black counter. The home screen is showing several icons including Facebook, Twitter, and Airbnb.", - "id": 8174 - }, - { - "image_path": "G:\\images\\combined\\07252826b378b2e2.jpg", - "response": "A close up of a laptop computer with a graphic on the screen.", - "id": 8175 - }, - { - "image_path": "G:\\images\\combined\\072652dc1129ebdb.jpg", - "response": "A store with a table full of fresh fruit, including raspberries, blueberries, and blackberries.", - "id": 8176 - }, - { - "image_path": "G:\\images\\combined\\0726d870bea2f036.jpg", - "response": "A person holding a Samsung smart device with Chinese characters on the screen.", - "id": 8177 - }, - { - "image_path": "G:\\images\\combined\\0726f0cf67ee070f.jpg", - "response": "A pile of Obama hats on a shelf in a store.", - "id": 8178 - }, - { - "image_path": "G:\\images\\combined\\072a991c2ccee346.jpg", - "response": "A kitchen counter with two pans of pizza on it. One pan is almost gone, while the other has a small piece missing.", - "id": 8179 - }, - { - "image_path": "G:\\images\\combined\\072f11eecc7b07c2.jpg", - "response": "A busy city street with lots of cars and people.", - "id": 8180 - }, - { - "image_path": "G:\\images\\combined\\0731a59a32d9810a.jpg", - "response": "A desk with two computer monitors.", - "id": 8181 - }, - { - "image_path": "G:\\images\\combined\\0731c1b523ac2be7.jpg", - "response": "The image displays a digital Nike marathon running app. The app is red and white in color and has the text \"Fastest Half Marathon Run\" written at the top. Underneath the text is a red box with the number 13.1 inside it, implying that this is a half marathon. The time of 2:25:08 is displayed below the box, also in white. The entire display is displayed on a black background.", - "id": 8182 - }, - { - "image_path": "G:\\images\\combined\\07326a2bacbf5832.jpg", - "response": "A black and white movie poster for the film A Kiss for Corliss. The main image is of a man in a suit and tie jumping into the air as a woman in a dress dances above him. They are both looking at something off-screen. To the right of the image is a smaller image of the same man and woman. The text on the poster includes the following: \"Man Alive... that's all she wants!\", \"Shirley Temple - David Niven (in CorlissClothes)\", \"A Kiss for Corliss\", \"James Nasser Directs\", \"Tom Tully (Producer)\", \"Virginia Welles, Darryl Hickman, Howard Dimsdale, Richard Wallace, Colin Miller\", and \"That kiss and Tell\" plot description.", - "id": 8183 - }, - { - "image_path": "G:\\images\\combined\\07347fd77ad920ff.jpg", - "response": "A silver and black analog clock face.", - "id": 8184 - }, - { - "image_path": "G:\\images\\combined\\073c2a410be8d27c.jpg", - "response": "The image features three containers of Palmetto Cheese, the top container is labeled Palmetto Cheese Original, the middle container is labeled Palmetto Cheese Caramelized Onion, and the bottom container is labeled Palmetto Cheese Jalapeno. The containers are stacked on top of each other with the top one and bottom one having lids on. The middle container has a white lid with a blue palm tree on it. The containers are sitting on a woven place mat with a knife to the bottom left of the middle container. The knife has a white handle with Palmetto Cheese Soul Spreader written on it. There is a yellow flower and a purple flower to the left and right of the containers respectively.", - "id": 8185 - }, - { - "image_path": "G:\\images\\combined\\073ea25e68b76ed9.jpg", - "response": "A basketball player in a white and red uniform goes up for a shot with the ball in his hand.", - "id": 8186 - }, - { - "image_path": "G:\\images\\combined\\073f668cdc671c37.jpg", - "response": "A South African airplane is taking off from a runway.", - "id": 8187 - }, - { - "image_path": "G:\\images\\combined\\073f8898c62f14c1.jpg", - "response": "A sign that says Track 13 and has a list of train destinations and arrival times.", - "id": 8188 - }, - { - "image_path": "G:\\images\\combined\\073f8c9e048b2e42.jpg", - "response": "A red fire truck parked on the grass.", - "id": 8189 - }, - { - "image_path": "G:\\images\\combined\\074218e285e575f7.jpg", - "response": "An open book with black text on white pages.", - "id": 8190 - }, - { - "image_path": "G:\\images\\combined\\074562c78c95662f.jpg", - "response": "A display of electronics and speakers on a carpet.", - "id": 8191 - }, - { - "image_path": "G:\\images\\combined\\074636cc00cf5f28.jpg", - "response": "a paper with a drawing of a person and a ruler next to it", - "id": 8192 - }, - { - "image_path": "G:\\images\\combined\\0746c253dc84cdb8.jpg", - "response": "A white sedan car with the license plate S6H 008.", - "id": 8193 - }, - { - "image_path": "G:\\images\\combined\\074794555b8045a1.jpg", - "response": "A Dell computer monitor sitting on a desk.", - "id": 8194 - }, - { - "image_path": "G:\\images\\combined\\0748104eb11ef902.jpg", - "response": "A stop sign with the word \"Hammer Time\" written underneath it.", - "id": 8195 - }, - { - "image_path": "G:\\images\\combined\\0748e0ea8edb0f47.jpg", - "response": "A bookshelf with many books on it.", - "id": 8196 - }, - { - "image_path": "G:\\images\\combined\\074ad26e7b153674.jpg", - "response": "The image features two keyboards sitting on a table. The first keyboard is an Apple keyboard and is wireless. The second keyboard is also wireless and is a silver keyboard. Both keyboards are positioned on a tan table.", - "id": 8197 - }, - { - "image_path": "G:\\images\\combined\\074b3f912a522f25.jpg", - "response": "An iPod with a glowing screen that reads Hong Kong Phooey, Sublime, Saturday Morning Cartoons.", - "id": 8198 - }, - { - "image_path": "G:\\images\\combined\\074b91a0708b1838.jpg", - "response": "In the image there is a display of Nivea UV whitening serum in two tubes. The tubes are white and have a orange label. The left tube has a orange label and a green bar code. The right tube has a white label and a red bar code. The background of the image is blurry and it is raining outside.", - "id": 8199 - }, - { - "image_path": "G:\\images\\combined\\074cf5b2304cd68f.jpg", - "response": "A ticket for a Radiohead concert on June 29th, 2008 at the Manchester LCCC.", - "id": 8200 - }, - { - "image_path": "G:\\images\\combined\\074e5821cbf4a1c6.jpg", - "response": "The USS Arizona Memorial is a white structure with windows on one side. It is located on a body of water and is surrounded by trees. There is an American flag flying on top of the memorial and a small boat is nearby.", - "id": 8201 - }, - { - "image_path": "G:\\images\\combined\\0751005cb5f8700c.jpg", - "response": "A plate of cookies with the letter M on them.", - "id": 8202 - }, - { - "image_path": "G:\\images\\combined\\0752789d7704e67f.jpg", - "response": "A person holding a blue box of dishwasher tablets.", - "id": 8203 - }, - { - "image_path": "G:\\images\\combined\\075474f31e9ed1aa.jpg", - "response": "A cardboard box with fragile stickers on it.", - "id": 8204 - }, - { - "image_path": "G:\\images\\combined\\0754db67aa86fea2.jpg", - "response": "A large stack of fireworks in boxes, with the top box reading \"King Hell\" and the box below that reading \"Gold Willow\".", - "id": 8205 - }, - { - "image_path": "G:\\images\\combined\\07552784ea72df13.jpg", - "response": "A man standing behind a shopping cart filled with lots of alcohol.", - "id": 8206 - }, - { - "image_path": "G:\\images\\combined\\075537687de06634.jpg", - "response": "A large white billboard is standing tall in a city. The billboard is located near a gas station and other smaller signs. There are cars parked in the area and a tree can be seen in the background.", - "id": 8207 - }, - { - "image_path": "G:\\images\\combined\\07555f006bf88be4.jpg", - "response": "An open book with many pages and a wooden cover.", - "id": 8208 - }, - { - "image_path": "G:\\images\\combined\\075747666badfb42.jpg", - "response": "A large sign on the side of a building that says \"If Mitt had storage he'd be able to find his tax returns.\"", - "id": 8209 - }, - { - "image_path": "G:\\images\\combined\\07575908b6346ed1.jpg", - "response": "A man in a suit and bowler hat is seen from behind, looking at a wall with several objects painted on it. These include a telephone, a carrot, a green and red fish, a floating coin, and a suitcase. The man's tie is also visible. The background shows a blue sky and a body of water.", - "id": 8210 - }, - { - "image_path": "G:\\images\\combined\\075a2300bae4df62.jpg", - "response": "A wooden ruler is placed on a black counter. The ruler is made by RENVIL and has markings at 1, 2, 3, 4, 5, 6, 7, 8, 9, and 10 inches.", - "id": 8211 - }, - { - "image_path": "G:\\images\\combined\\075b33938025d228.jpg", - "response": "A grocery store filled with lots of food on the shelves.", - "id": 8212 - }, - { - "image_path": "G:\\images\\combined\\075bdbd708ff66a7.jpg", - "response": "The Kohl Center is a large arena full of people watching a hockey game. The scoreboard is large and in the middle of the arena. There are many flags hanging from the ceiling, including an American flag and a Wisconsin flag. The fans are sitting in their seats and watching the game.", - "id": 8213 - }, - { - "image_path": "G:\\images\\combined\\075cd223c847ab34.jpg", - "response": "a black and silver rolex watch on a green surface", - "id": 8214 - }, - { - "image_path": "G:\\images\\combined\\075cdb3cb68e5954.jpg", - "response": "A Sony Xperia phone sits on a glass table.", - "id": 8215 - }, - { - "image_path": "G:\\images\\combined\\075d182b04a459de.jpg", - "response": "A close up of a watch face with a blue background. The watch is a Lorus brand and has a chronograph feature.", - "id": 8216 - }, - { - "image_path": "G:\\images\\combined\\075d2820d8701f94.jpg", - "response": "a black and white watch in someones hand", - "id": 8217 - }, - { - "image_path": "G:\\images\\combined\\075feb565ce68b25.jpg", - "response": "A bicycle is parked on the sidewalk next to a pole with a street sign on it. The sign is red and white and has a exclamation point on it. There are two other signs on the pole as well. The street is empty and there are no other people or vehicles visible in the image.", - "id": 8218 - }, - { - "image_path": "G:\\images\\combined\\07641e1c716c84b0.jpg", - "response": "A can of diet coke sits on a wooden table.", - "id": 8219 - }, - { - "image_path": "G:\\images\\combined\\07647ef7281becf4.jpg", - "response": "A man in a safety vest is standing in the street, directing a white van. The van is stopped at a red light. There are palm trees in the background.", - "id": 8220 - }, - { - "image_path": "G:\\images\\combined\\0766e9690e125eed.jpg", - "response": "An iPhone 3G in its box on a table.", - "id": 8221 - }, - { - "image_path": "G:\\images\\combined\\076b7a46040688f6.jpg", - "response": "A black Lenovo desktop computer sitting on a desk.", - "id": 8222 - }, - { - "image_path": "G:\\images\\combined\\076baefcc8cb8217.jpg", - "response": "A small cardboard box with a red and brown design on it.", - "id": 8223 - }, - { - "image_path": "G:\\images\\combined\\076bb00e6a7c6c82.jpg", - "response": "a group of people are doing an obstacle course", - "id": 8224 - }, - { - "image_path": "G:\\images\\combined\\076d2d0070ac74b7.jpg", - "response": "A wall of red metal cabinets with the words H-LINE on them.", - "id": 8225 - }, - { - "image_path": "G:\\images\\combined\\0773758807ce847f.jpg", - "response": "A man holding a Samsung smart device, taking a picture of himself in the mirror with the camera on the phone.", - "id": 8226 - }, - { - "image_path": "G:\\images\\combined\\07737659a761bdf2.jpg", - "response": "A wooden box with a map on the top of it.", - "id": 8227 - }, - { - "image_path": "G:\\images\\combined\\07739a86c0e12ac3.jpg", - "response": "A phone screen with a green background. On the screen is an app that says \"Snapkeep\" in bold white letters. Below the name of the app are four options. The first is \"Emily\", the second is \"Courtney\", the third is \"Oliver\" and the last is \"Emily\". Underneath each name is a red checkmark and a time stamp. From left to right, the time stamp says \"Sent 23 minutes ago\", \"Opened 31 minutes ago\", \"Sent 32 minutes ago\", \"Opened 33 minutes ago\", \"Sent 32 minutes ago\", \"Opened 33 minutes ago\", \"Sent 35 minutes ago\", and \"Opened 34 minutes ago\". At the bottom of the screen is a button that says \"Starts\".", - "id": 8228 - }, - { - "image_path": "G:\\images\\combined\\0774e6038511497f.jpg", - "response": "A man holding a cell phone displaying a text message.", - "id": 8229 - }, - { - "image_path": "G:\\images\\combined\\07759da518969fdd.jpg", - "response": "A silver Honda Civic is driving down the highway.", - "id": 8230 - }, - { - "image_path": "G:\\images\\combined\\0776094a24911ee6.jpg", - "response": "In the image there is a coin laying on a table. The coin is a 2004 edition of the 10 Kroner coin from Denmark. The table is a light brown color and the coin is sitting on its side. The year 1999 is written on the coin.", - "id": 8231 - }, - { - "image_path": "G:\\images\\combined\\07765e0f50c3c7ea.jpg", - "response": "A street scene with a street sign, traffic lights, and cars.", - "id": 8232 - }, - { - "image_path": "G:\\images\\combined\\07788c82bbbd1887.jpg", - "response": "A Budweiser clock that is lit up and sitting on a mantle.", - "id": 8233 - }, - { - "image_path": "G:\\images\\combined\\0779f34fe1c7970c.jpg", - "response": "An open refrigerator filled with a variety of food and drinks.", - "id": 8234 - }, - { - "image_path": "G:\\images\\combined\\077aa9db6a1580ce.jpg", - "response": "A group of women playing volleyball in a gym. They are all wearing uniforms and are on opposite sides of the net. Some of the women are jumping to hit the ball.", - "id": 8235 - }, - { - "image_path": "G:\\images\\combined\\077c8dc39de85172.jpg", - "response": "A Nikkor Lens box with a red bow on it.", - "id": 8236 - }, - { - "image_path": "G:\\images\\combined\\077fadddad9683b8.jpg", - "response": "a car with a license plate that says jalisco on it", - "id": 8237 - }, - { - "image_path": "G:\\images\\combined\\07801d3c0cb15ddd.jpg", - "response": "A person holding a cell phone next to a cup of coffee.", - "id": 8238 - }, - { - "image_path": "G:\\images\\combined\\0780adb6e06cf325.jpg", - "response": "A baseball player wearing a blue jersey with the number 10 on the back.", - "id": 8239 - }, - { - "image_path": "G:\\images\\combined\\07811803c71826dd.jpg", - "response": "A computer monitor is sitting on a desk next to a keyboard. The monitor is a flat screen Apple computer. A laptop is also sitting on the desk. A chair is in front of the desk.", - "id": 8240 - }, - { - "image_path": "G:\\images\\combined\\0782a21a2538f868.jpg", - "response": "An airplane with the word Airbus on the side flying in the sky.", - "id": 8241 - }, - { - "image_path": "G:\\images\\combined\\0784325e04942634.jpg", - "response": "A white board with several diagrams written on it in marker.", - "id": 8242 - }, - { - "image_path": "/content/drive/MyDrive/combined/115_jpg.rf.bafcd8c46f295fe042c698023db62978.jpg", - "response": "A collage of two photos. The first is a close up of a child's face, the second is a man in a mask unloading a pallet of boxes.", - "id": 8243 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.8c3338d62e062ac318840ad11da2ee3e.jpg", - "response": "A black and white photo of a room with several people and boxes. There are 4 different pictures in the image. The top left picture is a close up of a box with the word \"Kodak\" on it. The top right picture is a close up of a stack of boxes. The bottom left picture is a close up of a person in a suit and tie with a hand on a box. The bottom right picture is a close up of a person pushing a pallet jack.", - "id": 8244 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.16c4ba4d86eb92ee9971898fa65c1d53.jpg", - "response": "A collage of images including a delivery truck, a cake, a child, a city street, and a woman in a kitchen.", - "id": 8245 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_jpg.rf.8d26d84c908e24b1508df92d9caa6ca6.jpg", - "response": "A black and white image of a woman with a handbag standing in a car park. She is looking at a car which has a bird flying past. The car park is full of cars and there are people walking around.", - "id": 8246 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.a72f6d30b1e0ef1f00b5cb434b4d925d.jpg", - "response": "A grey image of a stack of wooden pallets.", - "id": 8247 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_jpg.rf.3c07c1111cc390bcb208bd60180ce29b.jpg", - "response": "A collage of four photos of a forklift in a warehouse. The top two photos are in black and white and show the forklift from different angles. The bottom two photos are in color and show the forklift from different angles.", - "id": 8248 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_jpg.rf.d16574da6f653a15a5603d2e7f818518.jpg", - "response": "A black and white photo of a building being constructed. The building is made of brick and has a triangular shape. The top of the building is a triangle and the bottom is a rectangle. The building is in the process of being built and there are many bricks stacked on a pallet next to it. There is also a person standing in the background.", - "id": 8249 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.52fe055f881cff389d740b1957c4f925.jpg", - "response": "A collage of a man snowboarding and a woman doing yoga.", - "id": 8250 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.8b6fdec4e292050b8136407428a2eb93.jpg", - "response": " A collage(4,10),(996,992) of images, including a close-up of a small box, a close-up of a larger box, and a man moving a stack of boxes.", - "id": 8251 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.4b83cf91efa6b97e1bae862fa03222ef.jpg", - "response": "A forklift in a warehouse with a pallet on it.", - "id": 8252 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.3bf4aa6be098aba36d663dda24070bd1.jpg", - "response": "A collage of a man in a tie and a man playing tennis.", - "id": 8253 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_jpg.rf.ae96c461ce37550ec1928d884b129d92.jpg", - "response": "A collage of three different images. The first is a close up of a package of matches. The second is a close up of a wooden pallet. The third is a close up of the corner of the pallet.", - "id": 8254 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.84148cf84a6551914981586ba1d3cd33.jpg", - "response": "A collage of different wooden pallets.", - "id": 8255 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.4de65da51b447af6627570984eef0277.jpg", - "response": "The image is a black and white photograph of a factory. There are two forklifts in the foreground, one on the left and one on the right. They are parked next to a bench. In front of the bench is a table with a computer on it. There is a large sign above the forklifts that says \"WIFI/Smart Net\". The photograph is divided into two parts, with the left side showing the interior of the factory and the right side showing the exterior of the factory.", - "id": 8256 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_jpg.rf.f39ca9574d0b78c6e964f6f057bf2289.jpg", - "response": "A collage of two forklifts in front of a building under construction.", - "id": 8257 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_jpg.rf.51593ada6e3a080b5e75737aa1ec4139.jpg", - "response": "A forklift truck in a warehouse.", - "id": 8258 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_jpg.rf.15bac94f060e6ba9b5fb2a7e07385f1a.jpg", - "response": "A collage of four black and white photos. Each photo shows a forklift in a large warehouse-like room. The forklift is moving in the room, and there are stacks of boxes in the background.", - "id": 8259 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_jpg.rf.dc605b5124e8024be64aa04dd6627d1d.jpg", - "response": "A collage of images including a soccer player kicking a ball, a window with a reflection of a car, a box, and a black square", - "id": 8260 - }, - { - "image_path": "/content/drive/MyDrive/combined/103_jpg.rf.e8de01b095c020a5fb0e77a517b192c7.jpg", - "response": "A collage of black and white images. On the top left is a white wall with the word fotor in bold font. On the top right is a pallet of boxes being loaded by a forklift. In the bottom left is a close up of a bench made of white blocks. In the bottom right is a close up of a wheel on a forklift.", - "id": 8261 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_jpg.rf.77deba2784352d4f8ad38366652140f3.jpg", - "response": " A collage(4,5),(994,993) of three images. The top left image is a close up of a grey box with three black squares over the top. The top right image is a close up of a grey box with a window in the top. The bottom image is a grey box with a pile of crates behind it.", - "id": 8262 - }, - { - "image_path": "/content/drive/MyDrive/combined/109_jpg.rf.6a4cdbeb0294fb93fedb1702479a8dd4.jpg", - "response": "A collage of a young girl sitting on a pile of boxes, a person sitting on a forklift, and a bed.", - "id": 8263 - }, - { - "image_path": "/content/drive/MyDrive/combined/101_jpg.rf.278fdb79325a98ecda993bf752810cb4.jpg", - "response": "A black and white image of a man sitting at a table with a plate of food in front of him. The man is wearing glasses and a plaid shirt. There is a fork in front of him and a bowl of food on the table. The man is looking at the camera.", - "id": 8264 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_jpg.rf.86a0ba474692cad7fe670f5b6fd22e00.jpg", - "response": "A forklift is shown in a black and white photo. The forklift is a Caterpillar model and is painted white. The photo is taken from a perspective looking down at a pallet of bricks. The pallet is made of bricks and is stacked on the ground. The bricks are a dark grey color and have a chevron pattern. The photo is in black and white.", - "id": 8265 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.526a51a7bb6f8cd7a1f4a8108dd80723.jpg", - "response": "A black and white photo of a gas station.", - "id": 8266 - }, - { - "image_path": "/content/drive/MyDrive/combined/115_jpg.rf.59319629c348b13cfbb69806cc1245e7.jpg", - "response": "A black and white photo of a person laying in the grass under an umbrella. The person is wearing a plaid shirt and is holding a black and white cat. There is a handbag next to the person and a bicycle in the upper right corner of the image.", - "id": 8267 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.32ca7b3b0933338f89171e2a892fc741.jpg", - "response": "A black and white image of a large industrial building. There are three black squares in the top left corner of the image. The image is split into three sections, the middle section is a large open space with a concrete floor and a white ceiling. There are three large white boxes stacked up against the wall on the left. The left section of the image is a close up of a door with a metal handle. The right section of the image is a close up of a wall with a metal ladder against it.", - "id": 8268 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.e8e4077b063c620fdcfbc706494702b9.jpg", - "response": "A black and white photo of a building with a bus in front of it. The bus has the words \"Beijing Tour of London\" on the side. There are people on the bus. A forklift is in the background. There are also two men standing in the background. One of them is wearing a suit. There is a black square over the face of one of the men.", - "id": 8269 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.b0a1e23e8984ade151a084ae2fd2d9df.jpg", - "response": "A collage of three pictures. The first is a black and white picture of a man sitting on a forklift. The second is a black and white picture of a dog laying on a bed. The third is a black and white picture of a man and a dog sitting on a couch.", - "id": 8270 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_jpg.rf.74f2922e29517a9e0dfeb08036680fb5.jpg", - "response": "A collage of images including a forklift and a pallet", - "id": 8271 - }, - { - "image_path": "/content/drive/MyDrive/combined/101_jpg.rf.0d02e3e2739e62d07d6e189f1e75084b.jpg", - "response": "A black and white photo of a large box with the words Connecting Happiness on it. The box is on a stand in a large room. There is a forklift in the background.", - "id": 8272 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_jpg.rf.a6bd753f27d86dc7a24b282a3a4ae788.jpg", - "response": "A collage of a motorcycle and a box.", - "id": 8273 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.ae7d34f80f32e566ce4ebf327faeaf1b.jpg", - "response": "A collage of black and white images. The top image is of a man standing in a warehouse with a dolly. The second image is of a concrete support beam. The third image is of a close up of the concrete support beam. The fourth image is of a close up of a wall with a brick pattern.", - "id": 8274 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_jpg.rf.16068b47538b827cacfd6d7d497ed89b.jpg", - "response": "A forklift in a warehouse with many boxes around it.", - "id": 8275 - }, - { - "image_path": "/content/drive/MyDrive/combined/109_jpg.rf.b4d3309bd571452148c00772d857bd63.jpg", - "response": " A collage(4,11),(993,992) of three images. The first is a black and white image of a man throwing a frisbee. The second is a black and white image of a man on a tractor. The third is a black and white image of a box.", - "id": 8276 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.a2500ed87abcfed991f875214d5d4798.jpg", - "response": "A black and white image of a pallet, a Wietsma box, a woman with an American flag in the background and a beach scene with a man and a dog.", - "id": 8277 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_jpg.rf.0686216cf3c4227be8d2dd5d86aa907c.jpg", - "response": "A black and white image of a street scene with a parade. People are walking down the street and there is a metal fence on the left.", - "id": 8278 - }, - { - "image_path": "/content/drive/MyDrive/combined/103_jpg.rf.a94be99486531523624ce393cc0e3a1c.jpg", - "response": "A black and white photo of a train on a track. The train is on a bridge and is heading towards a city. The bridge is made of wood. In the foreground, there is a person standing in front of a white wall. There are also two black squares placed over the image.", - "id": 8279 - }, - { - "image_path": "/content/drive/MyDrive/combined/103_jpg.rf.6c4cc43df2c02cf7b703963d60be356f.jpg", - "response": "A collage of black and white photos including a man in a white shirt sitting on a forklift, a man in a white shirt standing in front of a store, a woman in a white shirt standing in front of a store, a man in a white shirt standing in front of a store, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a forklift, a man in a white shirt sitting on a", - "id": 8280 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_jpg.rf.78c48ff5a4c5e49cf1bd4daf710c3614.jpg", - "response": "A black and white image of a forklift truck in a warehouse.", - "id": 8281 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.d0b201a9a4cf0d38a1a72ffddaf18cc5.jpg", - "response": "A collage of four different photos. The first is a black and white photo of a forklift truck. The second is a black and white photo of a man pulling a sled up a snowy hill. The third is a black and white photo of a man standing on a pallet of boxes. The fourth is a black and white photo of a man sitting in a forklift truck.", - "id": 8282 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.f470566980afbe7b698cec4aa8afdd27.jpg", - "response": "A black and white photo of a collage. In the upper left corner is a cardboard box from Lowes Hardware. In the upper right corner is a fueling pump. In the lower left corner is a boy throwing a frisbee. In the lower right corner is a close up of a waterfall.", - "id": 8283 - }, - { - "image_path": "/content/drive/MyDrive/combined/109_jpg.rf.89942cff72d2bfbd9ae26035574fa626.jpg", - "response": "A black and white photo of a forklift.", - "id": 8284 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.5e0c515d62f851730e36749b1e25d8ee.jpg", - "response": "A series of three black and white images of a man pushing a pallet jack. The first image shows the man pushing the pallet jack from the left side of the image, the second image shows the man pushing the pallet jack from the right side of the image, and the third image shows the man pushing the pallet jack from the front of the image.", - "id": 8285 - }, - { - "image_path": "/content/drive/MyDrive/combined/101_jpg.rf.a281f28638f67ff8aadfb0d593c46e56.jpg", - "response": " The roof(319,5),(996,607) of a house is shown in black and white.", - "id": 8286 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.3be3bb2143e326aac5c7fc249ecc4164.jpg", - "response": "A collage of images including a box, a warehouse, a sky and a person", - "id": 8287 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.6003f27815d262896389b256196b977c.jpg", - "response": "A forklift driver in a warehouse.", - "id": 8288 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.07f9de6f4230387efefd4b5ecda66eec.jpg", - "response": "A black and white picture of a woman sitting on a bed.", - "id": 8289 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_jpg.rf.c46ab2cbc532b13747023e424280bd2e.jpg", - "response": "A collage of black and white images. In the top left corner is a boat with the letters H.265/1080 on the side. The top right corner has a roofed structure with a patterned wall. The bottom left corner is of a person and a child playing tennis on a tennis court. The bottom right corner is of a person holding a fishing pole over the water.", - "id": 8290 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_jpg.rf.3b0a4b4283afd073af373a8568f4d443.jpg", - "response": "A forklift carrying a pallet of boxes is driving into a semi truck.", - "id": 8291 - }, - { - "image_path": "/content/drive/MyDrive/combined/115_jpg.rf.4423e25d3f46b52d3e516e51cc3377e7.jpg", - "response": "A black and white image of a factory floor with a person standing on a forklift. There is a box with an asterisk on it in the top left corner. There are two people standing in the bottom right corner of the image. One person is standing on a step ladder and the other is standing on a step stool. There is a person in the top right corner of the image standing on a box.", - "id": 8292 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_jpg.rf.dcff49c40217eb312d63abad6d7439dd.jpg", - "response": "A collage of images showing a warehouse filled with pallets and boxes.", - "id": 8293 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_jpg.rf.c9c7c7139520d90b3b5816f7ef2c6079.jpg", - "response": "A collage of 4 images. The first is a black and white image of a box with the word Lowe's on it. The second is a black and white image of a forklift in a warehouse. The third is a black and white image of a pipe with a box in front of it. The fourth is a black and white image of a screen with a box on it.", - "id": 8294 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_116250349_yrCMaFXB7SECzCv95rhdrXeQxDdbqnMf_jpg.rf.a8b8f205187a3ca5a21e4fa0d8e8030f.jpg", - "response": "A collage of images including a bowl of fruit, a cityscape, a fire engine and a box of cereal.", - "id": 8295 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.8da3a707074895ada12d8eeb9c2b517f.jpg", - "response": "A black and white image of a girl sitting at a desk with a computer. The desk has a keyboard, a mouse, and a computer monitor on it. The girl is wearing a white shirt and has dark hair. There is a chair in front of the desk. The image is also pixelated.", - "id": 8296 - }, - { - "image_path": "/content/drive/MyDrive/combined/11_jpg.rf.591bc3a1927d70458ae6319b7d6a4479.jpg", - "response": "A black and white image of a room with a table in the middle. On the table is a white box with a black square on it. To the left of the table is a shelf with many books on it. On the right side of the room is a shelf with many boxes on it. In front of the boxes is a chair.", - "id": 8297 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_jpg.rf.d3f11328b8be19019f16f33847569c99.jpg", - "response": "A forklift driver is driving through a warehouse.", - "id": 8298 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_116250349_yrCMaFXB7SECzCv95rhdrXeQxDdbqnMf_jpg.rf.5d7c1dbb922c9f40caef61316dfc699a.jpg", - "response": "A black and white image of a building on a beach. The building is made of a material that looks like concrete and has a box-like shape. The image is cut off at the top, so only a portion of the building is visible. The building is situated on a hill overlooking the ocean. There are a few people in the image, with one person standing on the beach and another person surfing in the ocean. There is also a bench visible in the image, located on the left side of the picture.", - "id": 8299 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_116250349_yrCMaFXB7SECzCv95rhdrXeQxDdbqnMf_jpg.rf.a719f44818ea93839a296cdb89422347.jpg", - "response": "A black and white photo of a person standing on a wall. The person is wearing white pants and black shoes. The person is also wearing a black shirt. The person is covering their face with their left hand. The person is also covering their right hand. The person is standing on a wall above a parking lot. There is a building in the background. There is a car parked in the parking lot. There is also a truck parked in the parking lot. There is a sign on the building.", - "id": 8300 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_jpg.rf.4bb20178d1787c3c1e80b2ddc3a50ab6.jpg", - "response": "A black and white collage of 4 pictures. The top left picture is a close up of a white light switch on a wall. The top right picture is a close up of a forklift. The bottom left picture is a close up of a window with a black square over it. The bottom right picture is a house with a tiled roof and two trees in front.", - "id": 8301 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_jpg.rf.443fe92a2f842cbbdd585972d85d1d43.jpg", - "response": "A collage of a person holding a wrapped present.", - "id": 8302 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_jpg.rf.3c22463bed31b2082696425a7f4c8e69.jpg", - "response": "A collage of 4 photos. In the first one, a man is standing in a kitchen. In the second one, a person is sitting on a couch. In the third one, a person is holding a bottle of wine. In the fourth one, a person is standing in a kitchen.", - "id": 8303 - }, - { - "image_path": "/content/drive/MyDrive/combined/20_jpg.rf.9dfc8514125b9b4e277fcd1873f220fd.jpg", - "response": "A collage of three different photos. The first is a black and white photo of a baby sitting up in bed with a pacifier in its mouth. The second is a black and white photo of a man sitting on a forklift. The third is a black and white photo of a baby sitting up in a crib with a pacifier in its mouth.", - "id": 8304 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_jpg.rf.5cd75bfbb650b7ca6b2ac70e6f8cd854.jpg", - "response": " A collage(3,6),(995,993) of images, including a black and white image of a shipping box, a black square over a black and white image of a shipping box, and a black square over a black and white image of a shipping box.", - "id": 8305 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_jpg.rf.44e8005363ba824bcc4d84e3f6732993.jpg", - "response": "A collage of images including a pallet of bricks, a forklift, a truck, and a person pushing a cart.", - "id": 8306 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.480107d1e36c1a71dcfba2b134ef6df7.jpg", - "response": "A collage of images including a cricket ball, a skateboard, a shipping pallet and a person playing cricket.", - "id": 8307 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.83edc18732872f67ddbdf3d2ca665bf1.jpg", - "response": "A black and white image of a warehouse. There is a forklift on the right side of the image, and a stack of pallets on the left. In the middle of the image, there are three boxes stacked on top of each other.", - "id": 8308 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_jpg.rf.8ed28d36fbaa075ab09fa8106ded7b2c.jpg", - "response": "A black and white photo of a building. The building is made of many square concrete blocks stacked on top of each other. The building is quite tall and has many stories. The top of the building is a cube shape. There are also two smaller black squares on the left side of the image, and a smaller black square on the right side of the image.", - "id": 8309 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.8ec031ab3d493366b5f089a044f71bae.jpg", - "response": "A black and white photo of a desk with a computer, mouse, keyboard, cell phone, and a cup. A picture of a fork, knife, and spoon on a wall. A person bending over and looking at a computer mouse. A picture of a computer mouse on a desk.", - "id": 8310 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_jpg.rf.ac8ccc15abaa4fa93458a2f12c2674a1.jpg", - "response": "A black and white photo of a shopping mall. There are three pictures in total. The first is a picture of a store front with a sign that says \"IKEA\" on it. The second is a picture of a hallway in the mall with people walking down it. The third is a picture of a wooden bench.", - "id": 8311 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_jpg.rf.baed12af90eda9e33bf1c095a8c01b2f.jpg", - "response": "A black and white photo of a man working with a forklift.", - "id": 8312 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_jpg.rf.604e8ef504cec3f28dfb83e1371b3e16.jpg", - "response": "A collage of 4 images. The first is a black square, the second is a black and white photo of a person riding a motorcycle, the third is a close up of a box with a price sticker on it, and the fourth is a sign that says \"made in usa\" with a fire logo.", - "id": 8313 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_jpg.rf.100d7deb4da5ee7a4c27fcf96fb6ae1e.jpg", - "response": "A black and white image of a forklift with a pallet of boxes on it.", - "id": 8314 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_jpg.rf.20041d79c059933527695417992829e4.jpg", - "response": "A black and white photo of a large warehouse. There are two men working in the warehouse, one on the left and one on the right. There is a forklift in the middle of the warehouse. The left side of the warehouse has a large shelf with boxes on it. The right side of the warehouse has a large shelf with boxes on it and a table with a large wheel on it.", - "id": 8315 - }, - { - "image_path": "/content/drive/MyDrive/combined/11_jpg.rf.fbdffcfc7f7b1d8638aafde46a60e9be.jpg", - "response": " A collage(5,4),(992,995) of images showing the process of building a house.", - "id": 8316 - }, - { - "image_path": "/content/drive/MyDrive/combined/251_jpg.rf.15e8fcd7d5e0319ce625410a06e2aa5b.jpg", - "response": "A black and white photo of a forklift carrying a box of apples. There are also several photos of people, some with their faces blurred out, carrying boxes and bags.", - "id": 8317 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492051699_C8R7X2qTnpBhB3hspzhpLd8vjfg6NKNA_jpg.rf.6805102ba991afd1ab17918c4d1619df.jpg", - "response": "A black and white photo of a street with a forklift truck and pallets.", - "id": 8318 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.17d5438daff4800a881e6c12ac16b9fb.jpg", - "response": "A collage of black and white images. The first is a clear plastic container with a white label on it. The second is a close up of a person's hand holding a card. The third is a person standing in front of a bus. The fourth is a person holding a bike. The fifth is a person sitting on a bench.", - "id": 8319 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_jpg.rf.94265984b7090446e2808eb9406e4512.jpg", - "response": "A collage of images showing a man in a white shirt and a man in a cap with a cell phone. There is a fork lift and a box truck. There is also a man in a white shirt with a cell phone.", - "id": 8320 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.42746b3dc7cf42cb0498aa11b0970550.jpg", - "response": "A black and white photo of a store front with the word Jetson on it. There is a bus and a stop sign in the background.", - "id": 8321 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.79f4acaf82c5f7acb459109c04e07b41.jpg", - "response": "A collage of 5 different images. The first is a black and white photo of a wall with three soap dispensers. The second is a black and white photo of a person holding a plate of food. The third is a black and white photo of a sink. The fourth is a black and white photo of a woman holding a bag. The fifth is a black and white photo of a person holding a bottle.", - "id": 8322 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_jpg.rf.f9399dee4573ecd66ffce7609a0a1a2a.jpg", - "response": "A black and white image of a person wearing a plaid shirt and jeans, who is in the process of jumping over a stack of boxes. The person is holding a skateboard. There are two other people in the image, one on the left and one on the right. The person on the left is wearing a black shirt and is holding a camera. The person on the right is wearing a white shirt. There are two shopping carts in the image, one on the left and one on the right. The image is divided into four different sections.", - "id": 8323 - }, - { - "image_path": "/content/drive/MyDrive/combined/20_jpg.rf.88c3c434a1a7e6fa633bdeef96875ab5.jpg", - "response": "A black and white image of a warehouse with a man walking by a forklift. There are also some boxes in the image.", - "id": 8324 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_jpg.rf.5c2e27c5f569f88b1ec00af85ddc98b4.jpg", - "response": "A collage of different scenes, including a man with a fork lift, a bus, and a man walking with a box.", - "id": 8325 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_jpg.rf.a24f5079a0bbc4aa83675fad7605d8ae.jpg", - "response": "A collage of three black and white photos. The first photo is of a man standing in front of a bus. The second photo is of a man in a suit pointing a camera at the ceiling. The third photo is of a man standing on a ladder in front of a bus.", - "id": 8326 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.ca079c56fb0934f6b6a1e88bc14d02e0.jpg", - "response": "A collage of four black and white images. The first is of a surfer riding a wave. The second is of a group of people in a lobby. The third is of a person standing in a room with a black cube hanging from the ceiling. The fourth is of a group of people surfing in the ocean.", - "id": 8327 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_jpg.rf.0bd7319a07ed4a778fbb631d78b9b1f5.jpg", - "response": "A collage of black and white images. In the top left image, a corner of a wall is visible, with a door and a window blocked by a large box. The top right image is a close-up of a wall, with a large black square painted on it. The bottom left image is a couch with a large teddy bear on it. The bottom right image is a close-up of a box, with another box on top of it.", - "id": 8328 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_jpg.rf.6f4b6692f62e744cdb1b5a81286d6fa2.jpg", - "response": "A black and white image of a forklift carrying a pallet of boxes. The pallet is on a loading dock and there are two people in the background. The forklift is carrying a box with a label that says \"handle with care\". There is a close up of the box and the label. There are also two smaller images of the box and the label.", - "id": 8329 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_jpg.rf.7e8c5f297ada909af2aa62844badd31f.jpg", - "response": "A collage of black and white images. In the top left corner, a woman is seen from the shoulders down, wearing a white t-shirt and black pants. She is seen from the neck down in the top right corner, wearing a black shirt and black pants. In the bottom left corner, a woman is seen from the knees down, wearing black pants and a white t-shirt. In the bottom right corner, a motorcycle is seen from the waist down, with a black seat and black helmet.", - "id": 8330 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_jpg.rf.1523beb615f7a9052d82ae23208d810d.jpg", - "response": "A collage of black and white images of a storage unit with a bicycle, a TV, a box, a hand truck, a chair, a suitcase, a person with a backpack, a person with a bicycle, a person with a hand truck, a person with a box, a person with a suitcase, a person with a hand truck and a person with a backpack.", - "id": 8331 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.7345c5a0ddbbefd478dfcb76fba67307.jpg", - "response": "A collage of black and white images. The top left image is of a man in a white shirt and black pants holding a white square box. The top right image is of a man in a white shirt and black pants holding a box that is a lighter shade of white. The bottom left image is of a wooden pallet. The bottom right image is of a man standing in front of a truck.", - "id": 8332 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_jpg.rf.73f8aca94c0e4597b506df73a39a767b.jpg", - "response": "A black and white photo of a man standing in a construction site. The man is wearing a hat, a white shirt, and jeans. He is holding a tool in his right hand. To the right of the man, there is a large rock with a hole in it. The rock is surrounded by snow. Above the man, there is a wooden beam. To the left of the man, there is a hole in the wall.", - "id": 8333 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_jpg.rf.ff9ef399ac87865947beb724c6e3d921.jpg", - "response": "A black and white photo of a street with stairs on the left and a sidewalk on the right. There is a person walking up the stairs and a person standing on the sidewalk. There is a motorcycle parked on the sidewalk and a cart with boxes on the street.", - "id": 8334 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_jpg.rf.da88c7115eeed0afdcafd80ffabb46d6.jpg", - "response": " Some parts(270,104),(456,252) of a battery", - "id": 8335 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_jpg.rf.eaf7aecbb76d7d1254085843e56f0109.jpg", - "response": "A collage of images including a black and white image of a bus and a box", - "id": 8336 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_jpg.rf.c847c76fd64e1006ccd7fc110e21f1b2.jpg", - "response": "A black and white photo of a man sitting at a table with a plate of food in his lap. He is looking out the window at a body of water with boats in it. The image is split into three sections, with the middle section showing a close-up of the man's face. The left and right sections show the view from the window.", - "id": 8337 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_jpg.rf.8f37796f9413943edc4c59248cc66f1b.jpg", - "response": "A black and white image of a kitchen with a table of food and a person in a white coat.", - "id": 8338 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_jpg.rf.6f01fd83b52cc4e5d2fcbffaadb0b937.jpg", - "response": "A black and white photo of a person using a weight scale, a wooden pallet, a train station, and a clock.", - "id": 8339 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_jpg.rf.1a64f4715783f1a57190bb6cbe48c0f3.jpg", - "response": "A black and white photo of a bus.", - "id": 8340 - }, - { - "image_path": "/content/drive/MyDrive/combined/20_jpg.rf.ace13f6151e0b3c6c02c332b5e229391.jpg", - "response": "A black and white image of a forklift and pallets.", - "id": 8341 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.b3d84943b4a2d787b9486705c68862fe.jpg", - "response": "A collage of black and white baseball pictures.", - "id": 8342 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.58a0c69997e0b1d872ed76fa015cf288.jpg", - "response": " A 3D model(219,123),(342,373) of a box", - "id": 8343 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_jpg.rf.d2ff516ae52d25947c5b1e4d400a1bca.jpg", - "response": "A collage of black and white images. On the top right is a close up of a camera crane. In the middle left is a man sitting on a chair. In the middle right is a photo of a city street. In the bottom left is a man sitting on a bench. In the bottom right is a photo of a person holding a camera.", - "id": 8344 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_jpg.rf.d9b67781dc9780437741ff8e3d2d35fb.jpg", - "response": "A black and white image of a city street with cars, people, and buildings. There is a truck on the left side of the street and a line of cars on the right side. There is a person holding an umbrella on the right side of the street. There are also two people walking on the right side of the street. In the middle of the image, there is a person walking on the left side of the street. There is also a person walking on the right side of the street with a backpack.", - "id": 8345 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_jpg.rf.c6d6a8139f87d36d7378f06510567223.jpg", - "response": "A collage of four different pictures. One picture shows a box with a barcode on the top left corner. Another picture shows a close-up of the same box. The third picture shows a stack of boxes. The fourth picture shows a close-up of a box.", - "id": 8346 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.83d4128e256557f2742b47155b658d5f.jpg", - "response": "A collage of images including a horse, boxes, a truck, and a construction site.", - "id": 8347 - }, - { - "image_path": "/content/drive/MyDrive/combined/251_jpg.rf.1e75fbd0a07e2c1f4c42d41938af2ca1.jpg", - "response": "A black and white image of a pallet with a person in the background.", - "id": 8348 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.d45dc2bae12ea4ec531d1196bd1d45ad.jpg", - "response": "A collage of two photos. In the first, a woman is pouring a glass of red wine. In the second, a woman is pouring a glass of water for a child.", - "id": 8349 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.afb35f116e20752d39fafa30c5f5ed7d.jpg", - "response": "A black and white photo of a city street. There is a man standing on the street corner, a woman walking down the street, a man holding a baseball bat, a truck, a building, and a fire hydrant.", - "id": 8350 - }, - { - "image_path": "/content/drive/MyDrive/combined/255_jpg.rf.922ee65c509434e0c616ff0bcf00295f.jpg", - "response": " An artist(570,55),(873,388) sitting on a bench(469,304),(689,389), a black and white photo of a bench, and a photo of a stack of wooden pallets(433,523),(997,997)", - "id": 8351 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492051699_C8R7X2qTnpBhB3hspzhpLd8vjfg6NKNA_jpg.rf.baeb16e48187dc4688cae1c1e9102e0b.jpg", - "response": "A black and white image of a warehouse with a few wooden pallets.", - "id": 8352 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_jpg.rf.2b5839bcfc2586516f3f12e2234cb4ff.jpg", - "response": "A collage of images including a group of people standing in front of a wall, a man on a bike, a baseball diamond, and a pile of bottles.", - "id": 8353 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_jpg.rf.159cec54bab19bc77a04974a1d52e4b8.jpg", - "response": "A collage of images of boxes and a forklift.", - "id": 8354 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_jpg.rf.1a68ef78a19294d9fbb17f3ae47e2f14.jpg", - "response": "A black and white photo of a woman sitting on a bed. She is wearing a black rope harness and her hair is blowing in the wind. She is looking down at the bed and her hands are on her lap. There are books on a bookshelf in the background.", - "id": 8355 - }, - { - "image_path": "/content/drive/MyDrive/combined/251_jpg.rf.f3f8821efe6216acc1f1024ab9f4c3a5.jpg", - "response": "A collage of black and white images including a child on a tricycle, a bike, a bookshelf, a truck and a couch.", - "id": 8356 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_jpg.rf.9872a9a44569742efa49db3d18d9f2a4.jpg", - "response": "A collage of black and white images. From top to bottom, the images are a train, a man in a suit and tie, a tree, and a man in a suit looking at a painting.", - "id": 8357 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_jpg.rf.9dfee7b22f46d1e34cfcd63c5ffde139.jpg", - "response": "A black and white photo of a high school with a fire hydrant in front of it.", - "id": 8358 - }, - { - "image_path": "/content/drive/MyDrive/combined/255_jpg.rf.c562c5039d1faff75ddf9d48c13775db.jpg", - "response": "A collage of different images, including a street scene, a plate of food, a bottle of beer, and a person wearing a hat.", - "id": 8359 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.4db60a58b5e70e0a300786c82d25d388.jpg", - "response": "A black and white photo of a cow in a barn. The cow is standing in the hay, and there is a wooden gate to the left. The barn has two large doors, one on the right and one on the left. The ceiling is sloped and has a large beam running across it. There are three black squares over the cow's head, and two more black squares are on the right side of the image.", - "id": 8360 - }, - { - "image_path": "/content/drive/MyDrive/combined/11_jpg.rf.4df1b4c4da511527ae92f2f9f40d2e06.jpg", - "response": "A black and white photo of a room with a high ceiling. There are three bookshelves on the left wall, and a bench on the right. The floor is made of wood.", - "id": 8361 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.6c35896e595915dc596b2d2ebdc16406.jpg", - "response": "A black and white image of a warehouse. There are four different images shown. The top left image is a close up of a box with a black square over the top. The top right image is of a boy running. The bottom left image is of stacks of boxes. The bottom right image is of a man standing in front of a large box with Chinese writing on it.", - "id": 8362 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.05ca6e6946cdc8ed34489a3ab378dab1.jpg", - "response": "A black and white photo of a car and a truck.", - "id": 8363 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_jpg.rf.4088e8afb9ac2733404a0501c7f7e169.jpg", - "response": "A black and white photo of a dog sitting on the floor of a kitchen. The dog is a spaniel mix with a white body and black ears and face. The dog has a white chest and paws. The dog is looking up at the camera. There is a white oven in the kitchen. A person's feet are visible in the photo, one pair of feet is wearing a dark boot. There is a square missing from the oven.", - "id": 8364 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_jpg.rf.2d194f972e8e8d83cfb4e762a3ab3f75.jpg", - "response": "A collage of black and white images. On the left is a photo of a book with a black square over the title. In the center is a photo of a truck and people outside. On the right is a photo of a table with a bowl on it.", - "id": 8365 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_jpg.rf.43bd9a1cc203c96b0f1233f246cc32ec.jpg", - "response": "A collage of images showing a stack of wooden pallets, a cardboard box, and a table.", - "id": 8366 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492051699_C8R7X2qTnpBhB3hspzhpLd8vjfg6NKNA_jpg.rf.a490fe712a716f3c54e361e92dd5bcc9.jpg", - "response": "A collage of three black and white images. The first is a close up of a vase with a painting of people on it. The second is a close up of a corner of a room with a window and a chair. The third is a close up of a river with a boat in it.", - "id": 8367 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.5b79aa705e27ae28aa4a9e3e1292b1fe.jpg", - "response": "A collage of images, including a close up of a pallet of bottles, a man pushing a pallet of boxes, and a man unloading a pallet of boxes.", - "id": 8368 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_jpg.rf.0faa49127fdd2e1dbb4328f9dd0e8b5f.jpg", - "response": "A forklift in a warehouse, lifting a pallet.", - "id": 8369 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_jpg.rf.459a5d40d00d7fde6599cde62a8548eb.jpg", - "response": "A collage of four images. The first is a close up of a black and white box. The second is a close up of a wooden pallet. The third is a black and white image of a woman in a hard hat and white shirt. The fourth is a black square over the woman's face.", - "id": 8370 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_jpg.rf.f1bdaec2015c1fe9c188ce8e82572f25.jpg", - "response": "A black and white photo of a train station. There is a train on the left and another on the right. The roof is made of glass and metal. There is a large glass window in the middle of the top of the photo. The bottom of the photo is split into four quadrants. The first one has a black square over the train on the left. The second has a black square over the platform on the left. The third has a black square over the platform on the right. The fourth has a black square over the stairs leading to the platform on the left.", - "id": 8371 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_jpg.rf.1e1488c5a6b97155f036ab496fd56e61.jpg", - "response": "A collage of images including a keyboard, a person kicking a ball, a person jumping and a person in front of a goal.", - "id": 8372 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.2531ab7d0fe44409ffc022c543daf28c.jpg", - "response": "A black and white photo of a city street. There is a bench on the left, a fork lift on the right, a clock on the top, a sign on the top left, a bowl on the left, a cup on the left, a car on the right, a person on the left, a truck on the right, a building on the right, a suitcase on the left, a suitcase on the right, a bench on the right, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left, a car on the right, a person on the left, a person on the right, a car on the left", - "id": 8373 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.c512a3109782c24077d8a5a03e3c3dd6.jpg", - "response": "A black and white image of a warehouse. There are three people in the image. One person is on the far left, one is in the center, and one is on the far right. There are two forklifts in the image. One is on the far left, and the other is on the far right. There is a box in the center of the image. The box is white with black writing on it. The writing says \"TENRO\". There is also a black arrow pointing to the right.", - "id": 8374 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_jpg.rf.cd437f057ee002a55fe31ca06b24d3e9.jpg", - "response": "A black and white photo of a building and a car.", - "id": 8375 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_jpg.rf.af79eb984217ee4393d66f0cb72acbde.jpg", - "response": "A black and white image of a forklift and a building.", - "id": 8376 - }, - { - "image_path": "/content/drive/MyDrive/combined/266_jpg.rf.447339335fdbb28d0193fe4f63679d47.jpg", - "response": "A collage of images including a man playing a saxophone in front of a building, a crowd of people, a suitcase, a car, a truck, and a traffic light.", - "id": 8377 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_jpg.rf.a0b21f19c5a8449d04e7bd6ef2b05349.jpg", - "response": "A black and white collage of images of a factory. There are boxes and a conveyor belt. There is a man in a suit standing in front of a machine.", - "id": 8378 - }, - { - "image_path": "/content/drive/MyDrive/combined/257_jpg.rf.0da2e7e1737a52944955409d510b4d4d.jpg", - "response": "A collage of images. On the top left is a large box on a pallet. On the top right is a stack of smaller boxes on a pallet. In the bottom left is an elephant walking in water. In the bottom right is a truck carrying boxes.", - "id": 8379 - }, - { - "image_path": "/content/drive/MyDrive/combined/269_jpg.rf.ff9b59e0c01e72620338824f1e3de24b.jpg", - "response": "A black and white image of a woman sitting on a beach next to a no smoking sign. There is a laptop on the beach next to her. There is a large cube sculpture in the background.", - "id": 8380 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.9542f985e3346404736d642be61e1c0d.jpg", - "response": "A black and white image showing a warehouse scene with a forklift and boxes. There are 4 boxes on the left and a person on a forklift on the right.", - "id": 8381 - }, - { - "image_path": "/content/drive/MyDrive/combined/268_jpg.rf.99ece42679a088dca985ce89cf56280a.jpg", - "response": "A collage of 4 images, one of a black and white box, one of a machine, one of a building and one of a black and white machine.", - "id": 8382 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_jpg.rf.1999f4f462772147e83aa36470346968.jpg", - "response": "A collage of black and white photos of people.", - "id": 8383 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_jpg.rf.c1fa21663c4e04a884e01d5bd1b5efc6.jpg", - "response": "A collage of a woman and a little girl. The woman is wearing a dress and is holding the little girl's hand. The little girl is wearing a flowered dress and has curly hair. The woman is wearing a dress with a checkered pattern. There are two men in the background, one on the left and one on the right. The right one is wearing a tie. There is a handbag on the left side of the image. The background is black and white.", - "id": 8384 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.57382996c441904b92f53993a861dd40.jpg", - "response": "A collage of black and white images. There is a man snowboarding down a mountain, a close up of a wall, a square with a black square in the middle and a square with a door in it.", - "id": 8385 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.8926bb9c94eb22df7e95d73536c99206.jpg", - "response": "A black and white photo of a room with several cardboard boxes stacked up. There is a black and white cat sitting on the floor in front of the boxes. There is a handbag to the left of the boxes and a clock on the wall above them. There is also a bottle on the left side of the image.", - "id": 8386 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.ee486b21306e75f643e5a336987a2017.jpg", - "response": "A collage of black and white images of factory workers and machinery.", - "id": 8387 - }, - { - "image_path": "/content/drive/MyDrive/combined/25_jpg.rf.df3b77d0c15ce0a48280d4b81fab2fdc.jpg", - "response": "A collage of black and white images. The top left image is of a dog sitting on a bed. The top right image is of a person sitting on a chair. The bottom left image is of a dog sitting on a staircase. The bottom right image is of a person walking down a hallway.", - "id": 8388 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.470209aab34ca1c3fb65b8ff75f57bff.jpg", - "response": "A collage of four different images. The first is a close up of a forklift with a box on it. The second is a person sitting on a boat with a cup in their hand. The third is a woman's silhouette walking on the beach. The fourth is a close up of a metal box with the word \"cast\" on it.", - "id": 8389 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_jpg.rf.eb135f5efd13690cbd987b7b74743a13.jpg", - "response": "A collage of images showing a variety of different products and their packaging.", - "id": 8390 - }, - { - "image_path": "/content/drive/MyDrive/combined/269_jpg.rf.29835634b0040c9c3459634e7e03fb2c.jpg", - "response": "A collage of images including a woman with long hair, a truck, a house, and a cube", - "id": 8391 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_jpg.rf.f5c48f3e2bd73809c8340347b4def0a7.jpg", - "response": "A collage of images of workers in a warehouse.", - "id": 8392 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.1276c1003d6dd8517eb7994d0e37a106.jpg", - "response": "A collage of black and white images of a city street and a forklift carrying boxes.", - "id": 8393 - }, - { - "image_path": "/content/drive/MyDrive/combined/268_jpg.rf.11e46a32f0bb0045f122d9d9cef9fee5.jpg", - "response": "A collage of black and white images including a box, a bus, a train, and a stack of crates.", - "id": 8394 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_jpg.rf.f5d4b568d38927ba79bc965ed7af01e1.jpg", - "response": "A collage of images including a person carrying a box, a pizza, a person with a crutch, and the word \"thinks\"", - "id": 8395 - }, - { - "image_path": "/content/drive/MyDrive/combined/25_jpg.rf.964cd89bb5ea653f1022507cfc150696.jpg", - "response": "A collage of black and white images. There are two people running, one with white shoes and one with black shoes. There is a bicycle wheel in the bottom right corner. There are two boxes, one on the left and one in the center. There is a handbag in the center. There is a person wearing a shirt that says \"thinks\". There is a sign that says \"10\" in the top left corner. There is a person with a white shirt and black shorts in the top right corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top right corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top right corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center corner. There is a person with a white shirt and black shorts in the top left corner. There is a person with a white shirt and black shorts in the top center", - "id": 8396 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.9a975f5cd85e0990f35c7376b4899706.jpg", - "response": " A montage(5,6),(993,991) of black and white images. The top image is of a person's hand holding a black marker in front of a whiteboard. The whiteboard has the letters \"KJT\" written on it. The second image is of a street scene with a stop sign that has a arrow pointing to the left. The third image is of a person standing in front of a barricade. The fourth image is of a keyboard.", - "id": 8397 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.33ea18e4736f3a9a081ea61e53d77cdf.jpg", - "response": "A black and white collage of 4 pictures. Top left picture is of a Kit Kat chocolate bar. Top right picture is of a forklift truck. Bottom left picture is of a pallet with boxes. Bottom right picture is of a pallet with boxes.", - "id": 8398 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.05671368ef5702cb4f891275fe68411b.jpg", - "response": "A black and white photo of a room with a bed, a couch, a person sitting on the floor, a dog, a handbag, a box, a bottle, a cup, a bowl, a book, a wallet, a cell phone, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag, a bottle, a cup, a bowl, a book, a wallet, a handbag,", - "id": 8399 - }, - { - "image_path": "/content/drive/MyDrive/combined/274_jpg.rf.dee5a5e0c0234d203e11aa6fa860e80f.jpg", - "response": "A black and white photo of a store front. The store front has a door with a window on the left and another on the right. There is a small sign above the door that says \"Maui's\" in bold white letters. There is a white bar with black letters that says \"Kapalua\" on the right side of the door. There is a small window on the right side of the door with a sign that says \"Maui's\" in bold white letters. There is a white bar with black letters that says \"Kapalua\" on the right side of the door. There is a small sign above the door that says \"Maui's\" in bold white letters. There is a white bar with black letters that says \"Kapalua\" on the right side of the door.", - "id": 8400 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.11df49170c607f71dec97ee01076b8b8.jpg", - "response": "A collage of images, starting with a close-up of a white box with the word \"return\" on it, a black and white photo of a man in a warehouse driving a pallet jack with a pallet of boxes on it, a close-up of a pallet with the word \"return\" on it, and a black and white photo of a warehouse with boxes stacked on pallets.", - "id": 8401 - }, - { - "image_path": "/content/drive/MyDrive/combined/263_jpg.rf.73d32c43b16c4068a27cb25d04791234.jpg", - "response": "A black and white photo of a man standing in front of a building. The man is wearing a hat and holding a handbag. There is a forklift in the background. There is a car parked in front of the building. There is a truck parked on the street. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing in front of a building. There is a person sitting on a chair. There is a person standing in front of a building. There is a person sitting on a bench. There is a person standing", - "id": 8402 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_jpg.rf.c4cbe01012068ad59712e0efe5e2e536.jpg", - "response": "A collage of black and white images of pallets, boxes and people.", - "id": 8403 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_jpg.rf.a435ef51818ce29eb031a21201703596.jpg", - "response": "A collage of black and white images. The top left image is a corner view of a white box. The top right image is a close up of a stove. The bottom left image is a close up of a black and white box. The bottom right image is a black and white photo of a building with lights on.", - "id": 8404 - }, - { - "image_path": "/content/drive/MyDrive/combined/276_jpg.rf.a963cff07503041f3b3a7f2e87871b89.jpg", - "response": "A black and white photo of a street scene. There is a person on the left, a person in the middle, and a person on the right. There is a box on the left, a building on the left, and a person in the background on the left. There is a person on the right, a building on the right, and a camera on the top right. There is a box on the top right. There is a sign on the left that says \"\u4eac\u534e\u5b9d\u77f3\" and a sign on the right that says \"alamy\". There are three black squares on the top left, one on the top right, one on the bottom left, and one on the bottom right.", - "id": 8405 - }, - { - "image_path": "/content/drive/MyDrive/combined/266_jpg.rf.134cd0e6f0f7cecf439218c089dab89b.jpg", - "response": "A black and white image of a construction site with multiple people and machines. There are multiple umbrellas scattered around the scene.", - "id": 8406 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_jpg.rf.81acb372eaaa00c68aed0fb3d8dbe888.jpg", - "response": "A picture with a black and white color scheme. In the center of the picture, there is a cardboard box with the recycling logo on it. To the right of the box, there is a circle with a cross in the middle. Above the box, there is a black square with the letters \"123RF\" written in white. To the right of the box, there is a square picture of a hand holding a remote control. Below the hand picture, there is a square picture of a room with a couch and a chair. To the right of the hand picture, there is a square picture of a cable.", - "id": 8407 - }, - { - "image_path": "/content/drive/MyDrive/combined/274_jpg.rf.eb7840e132c0aecd3e9dc4e337f7aa9e.jpg", - "response": "A black and white collage of images including a large box, a person standing in front of a large warehouse, and a box with the recycling symbol on it.", - "id": 8408 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.e32cf7a1520b4ca8acf422ba2a6877eb.jpg", - "response": "A collage of different images. The top left image is a close up of a white box with a black square on it. The top right image is a corner of a brick building. The bottom left image is a close up of a wine glass with a black liquid in it. The bottom middle image is a close up of a table with a bowl on it. The bottom right image is two boys playing soccer.", - "id": 8409 - }, - { - "image_path": "/content/drive/MyDrive/combined/257_jpg.rf.9e236a374834838dc77bd1ee83e8796c.jpg", - "response": "A collage of images including a sign that says \"alamy\", people with luggage, a stack of pallets, a river with rocks in it and a black and white photo of a tree.", - "id": 8410 - }, - { - "image_path": "/content/drive/MyDrive/combined/25_jpg.rf.bcc19b903e3d990ac9afbcbed394fb86.jpg", - "response": "A forklift carrying a pallet of goods.", - "id": 8411 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_jpg.rf.5f21d5835acfcae8a8ffdda294324aa3.jpg", - "response": " Collage(6,3),(993,993) of four images showing a forklift in a warehouse.", - "id": 8412 - }, - { - "image_path": "/content/drive/MyDrive/combined/263_jpg.rf.15942d2eebaea693d509436666b3fcf0.jpg", - "response": "A black and white image of a box with a square hole in it.", - "id": 8413 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_jpg.rf.111bc963384fe33facb822b487f9b261.jpg", - "response": "A collage of photos including a group of people standing around a tennis court, a stack of wooden pallets, a building with a sign that says \"Innovative Packaging Inc.\", and a group of people standing around a wooden pallet.", - "id": 8414 - }, - { - "image_path": "/content/drive/MyDrive/combined/274_jpg.rf.63ba22814f810da6eac8a9271d16a733.jpg", - "response": "A collage of images including a pallet, a forklift, a truck, a box, and some barrels.", - "id": 8415 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.b8e727ebd0c232118c26bda750e763c6.jpg", - "response": "A collage of images, including a man in a suit, a forklift, and a shipping container.", - "id": 8416 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_jpg.rf.95a671591f096912105d7d68327926d8.jpg", - "response": "A collage of black and white images. The images show a variety of different scenes. Some of the scenes include people playing soccer, a person pushing a cart, a person sitting on a box, and a person pushing a box. The images also show the Adobe Stock logo in the bottom right corner.", - "id": 8417 - }, - { - "image_path": "/content/drive/MyDrive/combined/276_jpg.rf.b151c22a21bb430a8b812184e754c50a.jpg", - "response": "A collage of black and white images, including a box, a man in a white shirt, a man in shorts and a t-shirt, a forklift, a person holding a tennis racket, a person on a boat, and a person with a cooler.", - "id": 8418 - }, - { - "image_path": "/content/drive/MyDrive/combined/263_jpg.rf.ef0a3db3e542d45dd5ef2396c2b4bc6f.jpg", - "response": "A collage of images including a warehouse, a car, boxes, and people.", - "id": 8419 - }, - { - "image_path": "/content/drive/MyDrive/combined/266_jpg.rf.0fad8f993251d365ef082fa934883101.jpg", - "response": "A black and white image of a box with a logo on it.", - "id": 8420 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.e421219ab95143e494fe5c73d4cfb6d5.jpg", - "response": "A collage of images including a pallet of helmets, a forklift, a person holding a helmet, and two people standing on a beach", - "id": 8421 - }, - { - "image_path": "/content/drive/MyDrive/combined/276_jpg.rf.51d37e3bec65d2e86d7e89e06bbdcfaf.jpg", - "response": "A collage of a man driving a forklift, a person holding a brick, a box, a fork lifting a block of wood, a brick, a box and a person holding a crowbar.", - "id": 8422 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_jpg.rf.b7fa3904f5a7aa3b61d04cd9c8921886.jpg", - "response": "A collage of images including a box with a question mark on it, a fork lift, a person on a motor bike, and a group of people on a field.", - "id": 8423 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_jpg.rf.6dc9b76d1fe398e10de70fa3ac472286.jpg", - "response": "A collage of 4 different black and white images. The first is a close up of a shoe box, the second is a person sitting on the ground with a skateboard, the third is a close up of a wooden pallet, and the fourth is a close up of a shoe box.", - "id": 8424 - }, - { - "image_path": "/content/drive/MyDrive/combined/268_jpg.rf.70030cfb147b1330b86b449489b0e254.jpg", - "response": "A collage of images, including a stack of wooden pallets, a black and white image of a forklift, and a building with a clock tower.", - "id": 8425 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_jpg.rf.220eb6f395965a94ba09989258060d8f.jpg", - "response": "A black and white image with 5 different images in it.", - "id": 8426 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_jpg.rf.d0501c0a51e3d5b9ecce45a09fe86ef5.jpg", - "response": " a collage(3,5),(995,994) of images", - "id": 8427 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.3d7ad2723277c91fc0610b76cbaf67c5.jpg", - "response": "A collage of black and white images. The top left image is a close up of a glass window. The top right image is a black and white image of a building. The bottom left image is a close up of a white wall. The bottom right image is a 3D sculpture of the numbers 2022.", - "id": 8428 - }, - { - "image_path": "/content/drive/MyDrive/combined/260_jpg.rf.71db6f9326b45f7f64f76aa20ac431f0.jpg", - "response": "A collage of 5 black and white images. The first is a close up of a forklift with the letter \"a\" on it. The second is a close up of a person's shoulder with a strap on it. The third is a close up of a necklace with a heart on it. The fourth is a close up of a bicycle. The fifth is a close up of a box.", - "id": 8429 - }, - { - "image_path": "/content/drive/MyDrive/combined/260_jpg.rf.3710b1640f8322e56eea58efbc6fd516.jpg", - "response": "A collage of images including a forklift carrying a box, a man wearing a suit and tie, and a box with a recycling symbol on it.", - "id": 8430 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.259aaf1fc969ae8af1afaa594dd08193.jpg", - "response": "A pallet that is broken in the middle and has been repaired with wood.", - "id": 8431 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_jpg.rf.a43b8c9d3c06887c60f0d8af96339bd0.jpg", - "response": "A collage of 6 different images. The first one is a black and white image of a box with a label that says \"handle with care\". The second image is a black and white image of a truck unloading boxes. The third image is a black and white image of a hand holding a package. The fourth image is a black and white image of a car with a package on the roof. The fifth image is a black and white image of a person carrying a box. The sixth image is a black and white image of a person carrying a box.", - "id": 8432 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_jpg.rf.58107e18ae599d0296dc2846a1d09109.jpg", - "response": "A collage of black and white images. The top right image is a close up of a mouse on a plate. The top left image is a close up of a block of wood. The bottom left image is a close up of a block of wood. The bottom right image is a man holding a knife to his chest.", - "id": 8433 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_jpg.rf.8668e0fc538a56cbc8eb42728557a076.jpg", - "response": " A montage(5,5),(992,993) of images of a shipping yard.", - "id": 8434 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_jpg.rf.77f1140709c09136759b5808cfd9713f.jpg", - "response": "A forklift carrying a box, a box on a forklift, a forklift carrying a barrel, a forklift carrying a pallet of boxes, a pallet of boxes, a storage box, a storage room, a storage area, a storage warehouse, a storage facility, a storage facility with a forklift, a storage area with a forklift, a storage area with a forklift carrying a box, a storage area with a forklift carrying a barrel, a storage area with a forklift carrying a pallet of boxes, a storage area with a pallet of boxes", - "id": 8435 - }, - { - "image_path": "/content/drive/MyDrive/combined/255_jpg.rf.f98fde2f72ffbecd6d3ff507dd8f9871.jpg", - "response": "A stack of boxes and pallets.", - "id": 8436 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_jpg.rf.eb5b329c30bde2beca943dcbbebd13b4.jpg", - "response": "A collage of black and white images. The top left image is of a kitchen with a microwave, oven and sink. The top right image is of a dining table with a cake on it. The bottom left image is of a baby with cake all over his face. The bottom right image is of a baby elephant.", - "id": 8437 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_jpg.rf.c396b9263ea435b9e4ac7e21c29e1953.jpg", - "response": "A collage of black and white images. The top image is of a truck on a road. The second image is of a box on a table. The third image is of a person standing in a parking lot. The fourth image is of a snowy landscape. The fifth image is of a person standing in a parking lot.", - "id": 8438 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_jpg.rf.9b651c9a0d6026a31b1093054d1d8a80.jpg", - "response": " A collage(4,6),(996,994) of images showing different activities at a palletizing station.", - "id": 8439 - }, - { - "image_path": "/content/drive/MyDrive/combined/257_jpg.rf.e45d982b1d0a82a5477572624771a280.jpg", - "response": "A collage of four different images. The top left image is of a snowy mountain top with the word \"alamy\" written in white. The top right image is of a person surfing a wave. The bottom left image is of a snowy mountain top with two people walking up the side. The bottom right image is of a person in a white coat standing on a snowy surface.", - "id": 8440 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.9221a8714897cb0deea99432f1495941.jpg", - "response": "A black and white photo of a skier in the air after a jump. The skier is wearing dark clothing and is jumping off a snowy hill. There is a forest in the background. There are also some other people in the image, one on the right side and another in the bottom left corner. There is a square black and white image in the top left corner. There is also a white square with a black border in the top left corner.", - "id": 8441 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_jpg.rf.8eb86cd476844f663280d00430cca290.jpg", - "response": "A black and white image of a square made up of four different images. The first is a close up of a wall with a checkered pattern. The second is a man in a desert with a dog. The third is a building with a white frame and a few stories. The fourth is a close up of a wall with a checkered pattern.", - "id": 8442 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_jpg.rf.4d43e35e257897fbba748d34b1d9d697.jpg", - "response": "A black and white image with 5 different images cut out and pasted into the image. The top image is of a person walking in a store with two boxes, one says kitchen and the other says big. The second image is a close up of the boxes. The third image is a person walking in a store with two boxes, one says large and the other says large. The fourth image is a close up of the boxes. The fifth image is a close up of a box with a pixelated image of a person walking in a store with two boxes, one says kitchen and the other says big.", - "id": 8443 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_jpg.rf.59c20eb9cbd3023b9e1fae75e7179fff.jpg", - "response": "A black and white photo of a bus stop. There is a line of 6 squares on the top of the image. Below the line of squares, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that, there is a line of 5 squares. Below that, there is a line of 6 squares. Below that, there is a line of 4 squares. Below that,", - "id": 8444 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_jpg.rf.7b5a35b99e8d3d29ae2bde1466ed32bd.jpg", - "response": "A collage of images. The top left image is of a box with the words Big Kitchen on it. The top right image is of a man in a kitchen with a camera. The bottom left image is of a box with the words break>> on it. The bottom right image is of a man in a baseball uniform cutting up vegetables on a cutting board.", - "id": 8445 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_jpg.rf.d05d92598aab1c35e28275584eec9b96.jpg", - "response": "A collage of black and white images of boxes.", - "id": 8446 - }, - { - "image_path": "/content/drive/MyDrive/combined/260_jpg.rf.015eb344ed2f249c654b0c3becd1db71.jpg", - "response": "A forklift moves a pallet of boxes.", - "id": 8447 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.aec69765067c734691523835f49ab7f7.jpg", - "response": "A collage of black and white images. The first is a close up of a person's hand holding a box. The second is a close up of a person's hand holding a box. The third is a close up of a person's hand holding a box. The fourth is a close up of a person's hand holding a box. The fifth is a close up of a person's hand holding a box. The sixth is a close up of a person's hand holding a box. The seventh is a close up of a person's hand holding a box. The eighth is a close up of a person's hand holding a box. The ninth is a close up of a person's hand holding a box. The tenth is a close up of a person's hand holding a box. The eleventh is a close up of a person's hand holding a box. The twelfth is a close up of a person's hand holding a box. The thirteenth is a close up of a person's hand holding a box. The fourteenth is a close up of a person's hand holding a box. The fifteenth is a close up of a person's hand holding a box. The sixteenth is a close up of a person's hand holding a box. The seventeenth is a close up of a person's hand holding a box. The eighteenth is a close up of a person's hand holding a box. The nineteenth is a close up of a person's hand holding a box. The twentieth is a close up of a person's hand holding a box. The twenty first is a close up of a person's hand holding a box. The twenty second is a close up of a person's hand holding a box. The twenty third is a close up of a person's hand holding a box. The twenty fourth is a close up of a person's hand holding a box. The twenty fifth is a close up of a person's hand holding a box. The twenty sixth is a close up of a person's hand holding a box. The twenty seventh is a close up of a person's hand holding a box. The twenty eighth is a close up of a person's hand holding a box. The twenty ninth is a close up of a person's hand holding a box. The thirtieth is a close up of a person's hand holding a box.", - "id": 8448 - }, - { - "image_path": "/content/drive/MyDrive/combined/269_jpg.rf.e934a96421cf4bfdb8a0572eacc9ecdd.jpg", - "response": "A black and white image of a building. The building is made of wood and has a glass front. There are two trees in the image, one on the left and one on the right. The trees are reflected in the glass.", - "id": 8449 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_jpg.rf.3ef86f02edd2854e4e897937cc73d936.jpg", - "response": "A series of black and white photos.", - "id": 8450 - }, - { - "image_path": "/content/drive/MyDrive/combined/302_jpg.rf.2d3731e1a83b99fa91a45993bb02edae.jpg", - "response": "A black and white photo of a baseball field with a box of Buds Light beer sitting on the ground. A man is throwing a baseball from the top right corner of the photo, another man is throwing a baseball from the bottom right corner of the photo. A man is holding a baseball bat in the top right corner of the photo. A man is pointing to the sky in the bottom right corner of the photo. A man is standing in the bottom right corner of the photo wearing a jersey that says \"Goldschmit 44\".", - "id": 8451 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.443e6409949f84cccf5bf68968909f6f.jpg", - "response": "A collage of black and white images. The top left image is of a box with a barcode. The top right image is of a pile of boxes. The bottom left image is of a computer screen with a barcode on it. The bottom right image is of an open book.", - "id": 8452 - }, - { - "image_path": "/content/drive/MyDrive/combined/296_jpg.rf.5076ff8396d35cd6b433f245c1997873.jpg", - "response": "A collage of four different images. The top left image is a close up of a sign with a QR code on it. The top right image is a close up of two wooden pallets. The bottom left image is a black and white photo of a tree and a fence. The bottom right image is a black and white photo of a group of people walking down a street.", - "id": 8453 - }, - { - "image_path": "/content/drive/MyDrive/combined/302_jpg.rf.9ae87ae29ec8892a8422ff92ae24a682.jpg", - "response": "A collage of images including a surfer, a machine that turns plastic bottles into surfboards, and a machine that turns plastic bottles into fuel.", - "id": 8454 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_jpg.rf.a4b76c2be5a6411ef07d2ccd04d7dca0.jpg", - "response": "A black and white image of a pallet of cement", - "id": 8455 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_jpg.rf.210e724822cbec0d43a12698aa8a3271.jpg", - "response": "A black and white photo of a skate park with a person skateboarding.", - "id": 8456 - }, - { - "image_path": "/content/drive/MyDrive/combined/299_jpg.rf.7c582d79d05bfb0ea78e45e81892de04.jpg", - "response": "A black and white photo of a number of different locations. Top left is a picture of a wall with a small window, top right is a picture of a small machine, bottom left is a picture of a house with a tree in front, bottom right is a picture of a person's back with a purse strap across their chest.", - "id": 8457 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.2a57c162a1b8469acc2da7074a3f9596.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 8458 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.4f89c45a5089fc494f6dee106cf8acf8.jpg", - "response": "A collage of images including a pallet with boxes, a person pulling a pallet jack, and a person using a barcode reader.", - "id": 8459 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.f953812e7aabda417f15e01f4a26f1c9.jpg", - "response": "A black and white photo of a machine.", - "id": 8460 - }, - { - "image_path": "/content/drive/MyDrive/combined/29_jpg.rf.0767fca21d55c88d6016e5b5d159315a.jpg", - "response": "A black and white image of a warehouse with a man on a forklift, boxes stacked on pallets, a man on a step ladder, a man using a pallet jack, and a man writing on a clipboard.", - "id": 8461 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.3c2423a8831a693c38b0cbb0906a04fd.jpg", - "response": " An image(5,4),(993,992) of a grey scale.", - "id": 8462 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_jpg.rf.fa9406332d3dd237cf4f61cb17a16c49.jpg", - "response": "A black and white photo of a parking lot with a car.", - "id": 8463 - }, - { - "image_path": "/content/drive/MyDrive/combined/281_jpg.rf.ae000de40e9f1fd3b742d4087ce02b41.jpg", - "response": "A black and white image of a collage. The collage is made up of a number of different elements. The main elements are a number of different boxes, some of which are open, and a number of different chairs. The boxes are made up of different shapes and are positioned in different places in the image. The chairs are also positioned in different places in the image.", - "id": 8464 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.4676105800884ff3ca797d0b8142a23d.jpg", - "response": "A collage of black and white images. Clockwise from top left: a white box with black markings; an airport runway with a plane in the background; a building with a clock on the front; a white box with black markings; a street with trees and buildings.", - "id": 8465 - }, - { - "image_path": "/content/drive/MyDrive/combined/292_jpg.rf.5f8bbd9a59d765bf99f4c43a98715ad8.jpg", - "response": "A forklift is lifting a box from a pallet.", - "id": 8466 - }, - { - "image_path": "/content/drive/MyDrive/combined/298_jpg.rf.5848db4b86c9b2d079fd7e096030a4c4.jpg", - "response": "A collage of images including a man playing tennis, a man surfing, a man in a suit's hand holding a racket and a building.", - "id": 8467 - }, - { - "image_path": "/content/drive/MyDrive/combined/279_jpg.rf.b299ef85b1fa0270c60d98e37eb2388c.jpg", - "response": "A collage of black and white images. The top left image is a corner of a shoe box with a logo on it. The top right image is a sidewalk with two people walking away from the camera. The bottom left image is a motorcycle with a sidecar and a box on the back. The bottom right image is a close up of a trash can with a sticker on it that says \"Sanitaire\".", - "id": 8468 - }, - { - "image_path": "/content/drive/MyDrive/combined/281_jpg.rf.96a9d723c80bf577bf1db90c1f7faea4.jpg", - "response": "A collage of four different black and white images of rooms. Each room has a refrigerator, a window, and a clock. The first image is of a room with a window on the left, a table in the center, and a clock on the wall. The second image is of a room with a window on the right, a couch on the left, and a table in the center. The third image is of a room with a window on the left, a couch on the right, and a dining table in the center. The fourth image is of a room with a window on the right, a couch on the left, a table in the center, and a clock on the wall.", - "id": 8469 - }, - { - "image_path": "/content/drive/MyDrive/combined/301_jpg.rf.4a6656a78a651c53b5e10508cd0ac441.jpg", - "response": "A black and white photo of a warehouse with people working. There are pallets of boxes, a person on a pallet truck, and a person standing on a box.", - "id": 8470 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_jpg.rf.c9a7b00f62f0f597f53be797daa378bc.jpg", - "response": "A collage of images, the top left one is a close up of a brick wall, the top right one is a corner of a brick building, the bottom left one is a close up of a concrete wall, and the bottom right one is a man throwing a brick.", - "id": 8471 - }, - { - "image_path": "/content/drive/MyDrive/combined/282_jpg.rf.46f9bc9ed1667c7b542924c850d30c8b.jpg", - "response": "A collage of four black and white images. The top left image is a close up of a corner of a white box. The top right image is a close up of a dog's face with its nose on the box. The bottom left image is a close up of a brick sidewalk. The bottom right image is a close up of a wheelchair.", - "id": 8472 - }, - { - "image_path": "/content/drive/MyDrive/combined/292_jpg.rf.3380d36c082c5817b4c60d546e0b98a3.jpg", - "response": "A collage of black and white images. The top left image is of a window sill with a glass sitting on it. The top right image is of a wire fence. The bottom left image is of a wooden table. The bottom right image is of a bench.", - "id": 8473 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.2674cb26d392076503cbe19a9f0ece93.jpg", - "response": "A collage of 4 photos. The first is a black and white photo of a skateboarder in a black jacket and helmet, in the middle of a jump. The second is a close up of a wooden bench. The third is a close up of a white wooden pallet. The fourth is a close up of a metal grate on the ground.", - "id": 8474 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.e85e7b00dac1da874f6519efcc68dabf.jpg", - "response": "A black and white photo of a table with a small model of a restaurant on it. The model has a sign that says \"SUSHI\" and there are three small cutouts of sushi dishes below it. The sushi dishes are on a black tray. The model also has cutouts of a parasol, a fork, a spoon, and a wine glass. The photo is also a close-up of a petri dish with a jellyfish inside.", - "id": 8475 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.659746dbfde156d05188c5d4bc7df390.jpg", - "response": "A black and white image of a room with a person sitting in a chair in the middle of the room. The person is wearing a hat and looking down. There are several other people in the room, some standing and some sitting. The room has a variety of objects in it, including a TV on the left wall, a shelf on the right wall, a bookcase in the middle of the room, and a chair in the background. There is also a box on the left wall and a suitcase on the right wall.", - "id": 8476 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.f5e27365f6e7d5e4b8d40a3ca0ab2581.jpg", - "response": "A series of images, the first of which is a black and white image of a bookshelf with several books on it. The second image is a black and white image of a wall with several boxes on it. The third image is a black and white image of a wall with several boxes on it and a small plant in the background.", - "id": 8477 - }, - { - "image_path": "/content/drive/MyDrive/combined/279_jpg.rf.afbe42cf148cca8791c9d5ef60c3c279.jpg", - "response": "A collage of images including a cat sitting on a car, a passport, a book with a black cover and a black square over the top, and a box with a black square over the top.", - "id": 8478 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.d53506737decdc5362a248848494d843.jpg", - "response": "A black and white image of a warehouse with boxes and a forklift.", - "id": 8479 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.3c8a241f7d985c08159b3efd5b71c2d9.jpg", - "response": "A collage of black and white images. The top right corner is a person in a white shirt and black pants walking. The bottom right corner is a close up of train tracks. The top left corner is a black and white photo of a person's feet walking on a wooden floor. The bottom left corner is a black and white photo of a box with the word \"Timberland\" on it.", - "id": 8480 - }, - { - "image_path": "/content/drive/MyDrive/combined/296_jpg.rf.0a84314255d6c18273ec96402ec228a2.jpg", - "response": "A bed with a white sheet on it.", - "id": 8481 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_jpg.rf.a3aa9afb28e7b2cb8a1cf8a3a0bd192a.jpg", - "response": "A black and white photo of a person holding a Nintendo Wii remote next to a router.", - "id": 8482 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.1c5ffafe10524317865d826a43b50d9b.jpg", - "response": "A black and white photo of a man on a forklift moving a pallet of goods.", - "id": 8483 - }, - { - "image_path": "/content/drive/MyDrive/combined/300_jpg.rf.85567152a2ea81253b2a9264734f2a7c.jpg", - "response": "A black and white image of a forklift truck carrying pallets of boxes.", - "id": 8484 - }, - { - "image_path": "/content/drive/MyDrive/combined/32_jpg.rf.8a100b3e1522c05ebfeef4fd3998bb40.jpg", - "response": "A collage of black and white images. The top left image is a close up of a door with a black square over the center of the door. The top right image is a close up of a fork lift. The bottom left image is a close up of a man and a woman standing in front of a building. The bottom right image is a close up of a box with a barcode on it.", - "id": 8485 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_jpg.rf.83b519a1eac94b6d7cd47334cc383477.jpg", - "response": "A forklift is shown in the process of moving a box. The box is white and is shown from several different angles.", - "id": 8486 - }, - { - "image_path": "/content/drive/MyDrive/combined/301_jpg.rf.e0c516153d4c7d7fdf65d624a276cbb0.jpg", - "response": "A collage of four different images. The first is a black and white image of a forklift carrying a pallet of boxes. The second is a black and white image of a box falling from a shelf. The third is a black and white image of a ceiling with a fan. The fourth is a black and white image of a door with people sitting on a couch on the other side.", - "id": 8487 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.37b2dd92156a459e193a753a40810a72.jpg", - "response": "A forklift in a warehouse is shown in black and white.", - "id": 8488 - }, - { - "image_path": "/content/drive/MyDrive/combined/29_jpg.rf.63b265cfbc60c23438909037a9f721c5.jpg", - "response": "A black and white photo of a kitchen with a stove, oven, and sink. There are chairs and a dining table in the kitchen. A person is standing in the kitchen.", - "id": 8489 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.13d150304918e68f3bd664ce50ebf53a.jpg", - "response": "A collage of a man throwing a box into the air.", - "id": 8490 - }, - { - "image_path": "/content/drive/MyDrive/combined/299_jpg.rf.2797c14e8033447cca4d08190935375f.jpg", - "response": "A collage of images including a hummer, boxes, people and a train station.", - "id": 8491 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.4f0439eaf969c694f7c299ed8dd8b738.jpg", - "response": "A black and white image of a street corner with a few cars and people. There is a building with a sloping roof on the left, and a house with a sloping roof on the right. There is a small dog on the bottom right, and a person walking a bicycle on the bottom left. There are also a few rectangular and square blocks of black and white images.", - "id": 8492 - }, - { - "image_path": "/content/drive/MyDrive/combined/300_jpg.rf.5306ae72e98c54dad9bec0e8551363e6.jpg", - "response": "A collage of images. At the top is a woman in a bikini top standing on a rock in a body of water. Below her is a woman with her arm wrapped around the rock. Below that is a woman in a dress sitting on a pile of boxes. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that is a pile of boxes. Below that is a pile of boxes on a cart. Below that", - "id": 8493 - }, - { - "image_path": "/content/drive/MyDrive/combined/292_jpg.rf.7203335e1799fb3c5e56604161eb872d.jpg", - "response": "A black and white collage of 5 different pictures. The first picture is a close up of a metal bar with a square black box over it. The second picture is a close up of a metal bar with a square black box over it. The third picture is a close up of a metal bar with a square black box over it. The fourth picture is a close up of a metal bar with a square black box over it. The fifth picture is a close up of a metal bar with a square black box over it.", - "id": 8494 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.0ca0cf0dfd9e07735bcd6e29ce1fe6d3.jpg", - "response": "A man is seen from the shoulders down, he is wearing a short-sleeved shirt and is holding a long object in his hands. He is standing next to a table with a soccer net on it. A forklift is in the background, it is on the left side of the image and is carrying a pallet with several boxes on it. The boxes are white and black.", - "id": 8495 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.cce57d09e2bb6f7158baec4086221303.jpg", - "response": "A forklift moving a pallet of material, a forklift in a warehouse, a forklift with a pallet of material", - "id": 8496 - }, - { - "image_path": "/content/drive/MyDrive/combined/298_jpg.rf.74c62415e5d7a4a4caff19f9b0dc7415.jpg", - "response": "A black and white image of a warehouse. There is a forklift in the bottom left corner, a pallet of concrete in the top right corner, a truck in the top right corner, a forklift in the top left corner, and a window in the top left corner.", - "id": 8497 - }, - { - "image_path": "/content/drive/MyDrive/combined/282_jpg.rf.5b1da10f596bce1e185115726976e612.jpg", - "response": "A black and white image with a collage of different images. There is a tennis court with a forklift in the background, a table with wine glasses and a bottle, a crowd of people watching a tennis match, and a box with a fork in it.", - "id": 8498 - }, - { - "image_path": "/content/drive/MyDrive/combined/293_jpg.rf.3dd79daf2e4b7c60b47d1e34f840672b.jpg", - "response": "A black and white image of a building with a sign that says \"WELCOME\" on it.", - "id": 8499 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.4877b03fb5c440bb694abf33994ddb02.jpg", - "response": "A black and white image of a building with a satellite dish and a couple of people walking down a walkway.", - "id": 8500 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_jpg.rf.f713d9d7118fc1f4526bccec13bcde82.jpg", - "response": "A collage of black and white images. The top image is of a forklift. The second image is of a person skiing. The third image is of a person using a chainsaw. The fourth image is of a truck. The fifth image is of a person using a chainsaw. The sixth image is of a pipe. The seventh image is of a sign.", - "id": 8501 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_jpg.rf.519d010dd6d6cb888fb9766f04df66e0.jpg", - "response": "A collage of three photos. The top left photo is a black and white photo of a person sitting on a white bench. The top right photo is a black and white photo of a person sitting on a white bench. The bottom photo is a black and white photo of a person sitting on a white bench.", - "id": 8502 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.ed0f7d554d684919595728d1d99c8793.jpg", - "response": "A collage of black and white images. In the top left corner, a white box with a black square covering the center of the box. In the top right corner, a black and white photo of a person sitting in a chair. In the bottom left corner, a house with a tree in front of it. In the bottom right corner, a person holding a can.", - "id": 8503 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_jpg.rf.180f0c65c53d46c691c36ccdf2e6dac1.jpg", - "response": "A collage of images. On the left is a stack of white boxes with a white label on the top. The second image is a close up of the label which is black and white. The third image is a close up of a pizza with a fork and knife on it. The last image is a close up of the pizza with a square crop taken out of it.", - "id": 8504 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_jpg.rf.dad9a15f7da407408f319150b0298a27.jpg", - "response": "A black and white image with a shoe on the right side and a cat's paw on the left side. There is a box on the floor and a person's foot is also visible.", - "id": 8505 - }, - { - "image_path": "/content/drive/MyDrive/combined/293_jpg.rf.aec698891a61864362c1a1761473545e.jpg", - "response": "A black and white image of a skate park with a person riding a skateboard. There is a rail in the middle of the park.", - "id": 8506 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.9383b87606ca13b0d8b2c05fc59f6351.jpg", - "response": "A collage of images including a truck, a box of material, and a bar of white chocolate.", - "id": 8507 - }, - { - "image_path": "/content/drive/MyDrive/combined/29_jpg.rf.cd497b33a83ad57eed8ea5c13c11bb4a.jpg", - "response": "A forklift is in the process of moving a pallet of books. The pallet is in a warehouse and there are many other pallets in the background.", - "id": 8508 - }, - { - "image_path": "/content/drive/MyDrive/combined/281_jpg.rf.3caf9094db308dc4228c2efdc538ade4.jpg", - "response": "A collage of black and white images. Top left is a box, top right is a tractor, bottom left is a book, and bottom right is a dock.", - "id": 8509 - }, - { - "image_path": "/content/drive/MyDrive/combined/301_jpg.rf.5d561ab0714d2c4371cc50df6e4c4806.jpg", - "response": "A collage of surveillance footage showing a man loading a box into the back of a van.", - "id": 8510 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.1238bcccfab09aafce135666bb84d386.jpg", - "response": "A collage of images including a child holding a teddy bear, a man holding a teddy bear, a plane, and a page that says \"Bigstock\"", - "id": 8511 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_jpg.rf.a05d62a3e5917eac6cf4c0d46806903c.jpg", - "response": "A black and white image of a warehouse with pallets and boxes. There is a forklift in the background and a person is visible in the top right corner.", - "id": 8512 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.bb7d8c9fa2d5653b264822296e24845c.jpg", - "response": "A collage of black and white images. The first is a person in a white shirt standing in front of a window. The second is a large block of cement or brick. The third is a close up of a pallet. The fourth is a black and white image of a body of water with ripples.", - "id": 8513 - }, - { - "image_path": "/content/drive/MyDrive/combined/282_jpg.rf.d3a737f7c6d4660d4c812b9d65f7ba33.jpg", - "response": "A black and white photo of a man surfing a wave on a surfboard. The wave is breaking behind him and he is crouched low on the board. To the left of the photo is a collage of other photos, one of a building and one of a person on a boat.", - "id": 8514 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_jpg.rf.92b54ace68edf8fd687886b249af6d74.jpg", - "response": "A collage of 4 photos. The first is a black and white photo of a man surfing a wave. The second is a black and white photo of a man holding a surfboard on a street. The third is a black and white photo of a man walking in front of a building. The fourth is a black and white photo of a man holding a surfboard on a street.", - "id": 8515 - }, - { - "image_path": "/content/drive/MyDrive/combined/299_jpg.rf.8aada7f71712abd91bcd25e9a21fe9d2.jpg", - "response": "A black and white collage of images. At the top left is a picture of a suitcase, at the top right is a picture of a box, in the middle left is a picture of a man in uniform with a black square covering his face, in the middle right is a picture of a building with a black square covering his face, at the bottom left is a picture of a man sitting on a bench with a black square covering his face, at the bottom right is a picture of a building with a black square covering his face.", - "id": 8516 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.4fd8181b85932aaea00b42d624bdcb1d.jpg", - "response": "A collage of black and white images. There are images of people moving boxes, a man with a sheep, and a man standing in front of a store.", - "id": 8517 - }, - { - "image_path": "/content/drive/MyDrive/combined/300_jpg.rf.bc2bf1913dd2ba02e038dd3bf79728c3.jpg", - "response": "A black and white image of a warehouse. On the left is a close up of a pallet. In the middle is a man working at a machine. On the right is a large image of the warehouse.", - "id": 8518 - }, - { - "image_path": "/content/drive/MyDrive/combined/279_jpg.rf.493908ac78db074c166680a9206c3de3.jpg", - "response": "A collage of images including a person holding a tennis racket, a forklift truck, a box of tissues and a bed.", - "id": 8519 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.b866ad9c7f62eba8a52d3cc1371b9b1e.jpg", - "response": "A collage of images including a wooden chair, a pallet, a forklift and a pile of boxes.", - "id": 8520 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.b264bf41d0ea3e307a3ebfc9b4e95bfb.jpg", - "response": "A black and white image of a warehouse with boxes and forklifts. There are several different boxes stacked on pallets, and a forklift in the background. There are also several different pieces of equipment, including a lift and a conveyor belt.", - "id": 8521 - }, - { - "image_path": "/content/drive/MyDrive/combined/298_jpg.rf.119a34dd5a5c6e54a757680b883f86c1.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 8522 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.c9f677011319d051a7fe9d80060be34d.jpg", - "response": "A black and white image of a pallet with a forklift in the background.", - "id": 8523 - }, - { - "image_path": "/content/drive/MyDrive/combined/293_jpg.rf.93f235fbda8039a599786770568c4736.jpg", - "response": "A black and white collage of images. In the top left image a forklift is lifting a black and white box. In the top right image a forklift is unloading a truck. In the bottom left image a person is sitting on a forklift. In the bottom right image a person is standing next to a truck.", - "id": 8524 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_jpg.rf.967d3862f4f313d9eb806717f424bbd3.jpg", - "response": "A black and white image of a forklift carrying a pallet of goods. The image is divided into four quadrants. The top left quadrant shows a close up of a pallet of goods. The top right quadrant shows a forklift carrying a pallet of goods. The bottom left quadrant shows a stack of boxes. The bottom right quadrant shows a stack of boxes with a black square over the top right corner.", - "id": 8525 - }, - { - "image_path": "/content/drive/MyDrive/combined/302_jpg.rf.29b6c3a2d279d34b050b30838bafd5e9.jpg", - "response": "A collage of black and white images. The first image is of a forklift in a warehouse. The second image is of a man in a warehouse. The third image is of a man standing on a beach. The fourth image is of a man standing on a beach holding a tennis racket. The fifth image is of a man standing on a beach. The sixth image is of a man standing on a beach. The seventh image is of a man standing on a beach. The eighth image is of a man standing on a beach. The ninth image is of a man standing on a beach. The tenth image is of a man standing on a beach. The eleventh image is of a man standing on a beach. The twelfth image is of a man standing on a beach. The thirteenth image is of a man standing on a beach. The fourteenth image is of a man standing on a beach. The fifteenth image is of a man standing on a beach. The sixteenth image is of a man standing on a beach. The seventeenth image is of a man standing on a beach. The eighteenth image is of a man standing on a beach. The nineteenth image is of a man standing on a beach. The twentieth image is of a man standing on a beach.", - "id": 8526 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.568fe6e7ebf65d3f792210dec7c1ca80.jpg", - "response": "A man in a white coat is holding a small animal in his gloved hands. The animal appears to be a rabbit. The man is standing in front of a table with several items on it. There are several boxes on the table, some of which are open. There is also a bottle with a black lid and a brush with a black handle. The image is in black and white.", - "id": 8527 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_jpg.rf.663d1f2a7005f91f9a8b129ea2fa4482.jpg", - "response": "A black and white image with four different sections. In the top left section, a forklift is parked next to a pallet of boxes. In the top right section, two men are working on a machine. In the bottom left section, a chair is on the ground. In the bottom right section, a group of people are sitting around a table.", - "id": 8528 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_jpg.rf.1d938d9593813c290e88f0ebc45d210e.jpg", - "response": "A bus with a phone number on the back.", - "id": 8529 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_jpg.rf.62e090957fad8975f215ea5b4ad13bdb.jpg", - "response": "A collage of 4 different images. The first is a black square with a white border. The second is a black square with a white border. The third is a black square with a white border. The fourth is a black square with a white border.", - "id": 8530 - }, - { - "image_path": "/content/drive/MyDrive/combined/296_jpg.rf.a69bed0cc6ac04fb59e30dcbd1d52dbe.jpg", - "response": "A black and white image of a warehouse with boxes stacked on pallets. There is a computer on a desk with a mouse and keyboard. There is a monitor on the desk. There are two speakers on the desk. There is a book on the desk. There is a book on the floor. There is a mouse on the desk. There is a keyboard on the desk. There is a mouse pad on the desk. There is a cell phone on the desk. There is a computer mouse on the desk. There is a keyboard on the desk. There is a computer monitor on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk. There is a computer mouse on the desk. There is a computer on the desk. There is a book on the floor. There is a mouse pad on the desk. There is a mouse on the desk. There is a keyboard on the desk.", - "id": 8531 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.6015940cc2d9de80f725aa4c843994df.jpg", - "response": "A collage of black and white images. The top image is of a room with several open umbrellas placed around the room. The second image is of a person sitting on a couch with a pillow on their lap. The third image is of a person's hand holding a white umbrella. The fourth image is of a person's hand holding a black umbrella. The fifth image is of a group of people holding white umbrellas.", - "id": 8532 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_jpg.rf.1e100465e16a1217d5bda19ec0c54867.jpg", - "response": "A black and white image of a warehouse with a man in the background. There is a forklift on the left and a pallet on the right. There is also a person in the top right corner and a person in the bottom left corner. There is a number 10 on the top right corner.", - "id": 8533 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_jpg.rf.2a7c6fca0a95dd931a26cda369b8ef6d.jpg", - "response": "A collage of three different images. The first is a black and white photo of a forklift and pallets. The second is a close up of a pallet with a person's hand holding a pallet jack. The third is a black and white photo of a laptop with a mouse on top of it.", - "id": 8534 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.f463621625fdf2ba49e54573bae690f5.jpg", - "response": "A collage of black and white images. The top left image is a black square with a white border. The top right image is a close up of a steering wheel. The bottom left image is of a person standing in front of a garage. The bottom right image is of a cat lying on the hood of a car.", - "id": 8535 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.3f999c7249948dad5d54d2afc5c4934f.jpg", - "response": "A black and white photo of a street with a person pulling a cart of luggage. There is a person walking by and a cow standing on the street. There are also three black squares over the faces of the people.", - "id": 8536 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_369996641_b5PQI4Z7abEUYvVNwXrhU4Z0jvw5NVEp_jpg.rf.cf0a8dc2fa34423bc7400b255f36df16.jpg", - "response": "A black and white photo of a band with four members. They are all looking at the camera and appear to be eating. There are food items such as bowls and cups scattered around them. They are all wearing plaid, button up shirts. One of the members is holding a drumstick. There are two drums in the background.", - "id": 8537 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.939d565403d61cfacd4edbf3f2a06223.jpg", - "response": "A collage of images including a GoPro Hero 5 black and white box, a person using a GoPro Hero 5 black camera, a person using a GoPro Hero 5 black camera on a pole, and a person using a GoPro Hero 5 black camera on a rail.", - "id": 8538 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_1694392_DJYRp4Xunu9FlWXZwpDbLNOQRTrk8j_jpg.rf.8eb7adbd905f1e2ac46823e5f135e7c7.jpg", - "response": "A collage of images. The top left image is a close up of a box. The top right image is a close up of a wooden bench. The bottom left image is a person holding a cell phone. The bottom right image is a close up of a pizza.", - "id": 8539 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_341301215_ZsLlH0yekKEp6DVaqYBXNWsb8CyCaLTz_jpg.rf.5382cdeec04ff4fc0b282e1d4458c31a.jpg", - "response": "A black and white image of a man in a room with a television. The man is sitting in front of a television on a wooden pallet. The television is on a shelf above the man. The man is wearing glasses and has short hair.", - "id": 8540 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_77770799_dorvmSGvAolGzfJ9Lk8FfPRcG6zGabq4_jpg.rf.314b7dc4485136faa2f19ec087c32379.jpg", - "response": "A black and white image of a pallet with boxes on it. There are three boxes stacked on the pallet. One box is in the middle of the image, slightly to the left, and two boxes are stacked on top of it. The top box is slightly to the right of the middle box. The bottom right corner of the top box is cut off. The bottom right corner of the middle box is also cut off. The bottom left corner of the bottom box is also cut off. There is a forklift in the top right corner of the image. There are two people in the top left corner of the image. One person is on the left and is wearing a helmet. The other person is on the right and is wearing a helmet.", - "id": 8541 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_51154317_rnzZHGlETodrZZnSIWi6ujB2qQaqKwk2_jpg.rf.d8e8565ff4806e30c21a955939be332b.jpg", - "response": "A collage of black and white images. The first is a white shelf with a white box on it. The second is a group of people standing in front of a building. The third is a forklift unloading a pallet of boxes. The fourth is a black and white photo of a protest.", - "id": 8542 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.c5a72b1b953e2cc40183e93ee1482ff4.jpg", - "response": "A collage of images, including a parking meter, a barcode, a person wearing a hat and goggles, and a snowy forest.", - "id": 8543 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_13333437_K7majTdMiVaO2v5O5AVuiDgF9GMKkkLu_jpg.rf.494d7130e07d5d766d135fdd48cff16e.jpg", - "response": "A collage of black and white images including a man playing drums, a tennis net, a street, and a fence.", - "id": 8544 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.27e73712e6ebb9c67a012f070e6f3c85.jpg", - "response": "A collage of black and white photos. The first photo is of a small robot on wheels in front of a building. The second photo is of a man in a black shirt standing on the roof of a small bus. The third photo is of a man in a black shirt standing on the roof of a small bus. The fourth photo is of a small robot on wheels in front of a building.", - "id": 8545 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_26823362_Mg58STmkMgZenmZelR3QSQAp8V6LiYtv_jpg.rf.bcecf5e1141f1394b426c95559b16f51.jpg", - "response": "A collage of four different images. The first is a black and white photo of a warehouse. The second is a black and white photo of a child playing catch. The third is a black and white photo of a street. The fourth is a black and white photo of a stack of wood.", - "id": 8546 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_1694392_DJYRp4Xunu9FlWXZwpDbLNOQRTrk8j_jpg.rf.c03460eb687a7d011bb9eb3ef79fff9c.jpg", - "response": "A collage of a man skiing in the snow and a building with a brick wall.", - "id": 8547 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_106828498_h9kdwSn1chRFQBwyb49x8kSPsbc4FuLm_jpg.rf.a58225eac804b1039ab3f876a3cfe334.jpg", - "response": "A black and white photo of a street scene with a horse and a person standing next to it. There are also cars and a truck in the scene.", - "id": 8548 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_186375188_OB2O56KNy5EcQNRMHz82wLAuYgbplgc0_jpg.rf.a47d2a052024717ae7f9ea7f770e16e2.jpg", - "response": "A black and white photo of a street scene. There is a car on the road, a tree on the left, and a building on the right. There is a sign on the building that says \"MEI GUO HUAT TRADING SDN. BHD.\" There is a sign on the building that says \"PROMOTER\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second floor. There is a sign on the building that says \"BINTANG\" on the second floor. There is a sign on the building that says \"HOTEL\" on the second", - "id": 8549 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_72384912_7UWVAvTVNLozKlrkHeQ23QtAusv9S2tP_jpg.rf.0f1a490b26232696a3463af0cea37248.jpg", - "response": "A black and white collage of images. The top image is of a stack of boxes. The second image is of a truck. The third image is of a pile of sandbags. The fourth image is of a window. The fifth image is of a scale. The sixth image is of a computer. The seventh image is of a clock.", - "id": 8550 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_341301215_ZsLlH0yekKEp6DVaqYBXNWsb8CyCaLTz_jpg.rf.a16790f91d5b10f6f9126590e7f09e7e.jpg", - "response": " A collage(5,7),(995,993) of black and white images", - "id": 8551 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_350547454_vTVVw9frY2ixRY5SQb8rbInFfCNEP44B_jpg.rf.30c121deb3ad80c7ca619fa4feee5d1b.jpg", - "response": "A black and white image of a warehouse with boxes stacked on pallets and people working in the warehouse.", - "id": 8552 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.f2937d3bd99ddf89eb7cd38674873972.jpg", - "response": "A black and white photo of a room with a truck in it. The truck is parked on the left side of the room and the back of the truck is visible. There is a table on the left side of the room and a couch on the right side. The room has a door on the right side and a window on the left side.", - "id": 8553 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.eda127e8de29a206311110025808f73c.jpg", - "response": "A black and white photo of a boy sitting on a pile of suitcases.", - "id": 8554 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_9125217_t5WNFmaD5sdss277yoJPOvn04pcPP738_jpg.rf.9f8ce3817aae6b26b5d2023e2f1d0acb.jpg", - "response": "A black and white photo of a man on a bike in front of a store.", - "id": 8555 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.b307e099f846c2c0bb6cc648a7c08772.jpg", - "response": "A black and white image of a miniature model of a bus depot. There are three double decker buses and two single decker buses. The miniature model is set up on a table.", - "id": 8556 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_341301215_ZsLlH0yekKEp6DVaqYBXNWsb8CyCaLTz_jpg.rf.328a78b668cbe971bdb6ea43c51c110c.jpg", - "response": "A black and white photo of a warehouse with a forklift.", - "id": 8557 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_jpg.rf.d0d38d73da1355b04708dc5e1c0cced4.jpg", - "response": "A black and white image of a box with a black square over the top of it. A black and white image of a truck carrying many boxes. A black and white image of a person with long hair walking in a park.", - "id": 8558 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_51154317_rnzZHGlETodrZZnSIWi6ujB2qQaqKwk2_jpg.rf.338f37e2f112924589052d111e73e05c.jpg", - "response": "A collage of images including a black and white photo of a classic truck and a black and white photo of a large pile of boxes.", - "id": 8559 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_59681207_Zj3cB6kAI7fAAVFuTq271VXHBC8ezgkO_jpg.rf.30d13d84bd8b6338716f1d0ba530fefb.jpg", - "response": "A black and white photo of a man surfing in the ocean. He is standing on a surfboard and riding a wave. There is a building in the background.", - "id": 8560 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_320380559_DI3dy3aItWqE5spiiwSfGGUQuVMgzBL3_jpg.rf.fe9b4766e07225a16c9c93efecd8ce4a.jpg", - "response": "A collage of a man driving a forklift, a box, and a man working on a machine.", - "id": 8561 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.3745ba858115e2088fe338c91edbf08f.jpg", - "response": "A baseball player in a black and white photo, getting ready to swing at a ball.", - "id": 8562 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_61425934_wgfz8W7Qey03NhLCjBa7H1HHOY58qlzd_jpg.rf.ce0eae36ea467e044436024c4825fb7c.jpg", - "response": " A collage(4,5),(995,994) of images, including a giraffe and a person holding a box.", - "id": 8563 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_320380559_DI3dy3aItWqE5spiiwSfGGUQuVMgzBL3_jpg.rf.91bdbb4bc773f8b7fc5a0579b77909e8.jpg", - "response": "A collage of four different images. The top left image is a close-up of a block of concrete. The top right image is a close-up of a wooden pallet. The bottom left image is a person's legs in the air, running in shorts and sneakers. The bottom right image is a close-up of leaves in a puddle.", - "id": 8564 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_51154317_rnzZHGlETodrZZnSIWi6ujB2qQaqKwk2_jpg.rf.83e2c8994e8006eb4e6095feeb81e5b5.jpg", - "response": "A black and white image of a city street with motorcycles, cars, and people. There are a few large buildings in the background.", - "id": 8565 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_jpg.rf.74d463a83c074d591c65c48d51684c9e.jpg", - "response": "A man wearing a hat and glasses is holding a spray can.", - "id": 8566 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_50935144_pawMwt1l3ELHbCTBU72F8YAWyLwkvtLb_jpg.rf.014bcdbd80bf5c7ed0f01c7772c26776.jpg", - "response": "A stack of pallets with a forklift in the background.", - "id": 8567 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_jpg.rf.3a5a816d76fe70747c3bad552f24389f.jpg", - "response": "A collage of images. The first is a black and white image of a box. The second is a black and white image of a child. The third is a black and white image of a man and a child playing in a sprinkler. The fourth is a black and white image of a man standing in front of a building. The fifth is a black and white image of a person holding a box. The sixth is a black and white image of a man standing in front of a truck. The seventh is a black and white image of a man standing in front of a bus. The eighth is a black and white image of a man standing in front of a truck. The ninth is a black and white image of a man standing in front of a bus. The tenth is a black and white image of a man standing in front of a truck. The eleventh is a black and white image of a man standing in front of a bus. The twelfth is a black and white image of a man standing in front of a truck. The thirteenth is a black and white image of a man standing in front of a bus. The fourteenth is a black and white image of a man standing in front of a truck. The fifteenth is a black and white image of a man standing in front of a bus. The sixteenth is a black and white image of a man standing in front of a truck.", - "id": 8568 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_50935144_pawMwt1l3ELHbCTBU72F8YAWyLwkvtLb_jpg.rf.bd9c24453d9bbc18d825e8731973c2d8.jpg", - "response": "A forklift driver is moving a pallet of goods.", - "id": 8569 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_77770799_dorvmSGvAolGzfJ9Lk8FfPRcG6zGabq4_jpg.rf.3f7ac84a4e7f267110219d0acd7409cd.jpg", - "response": "A collage of 4 photos. The first is a black and white photo of a group of 4 children in a library. The second is a black and white photo of a man pouring a liquid into a beaker. The third is a black and white photo of a girl sitting at a table with a man and a dog. The fourth is a black and white photo of a man and a boy standing in front of a table with several boxes on it.", - "id": 8570 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_jpg.rf.9cfb09ee47954f81770c64bd6b63ac1a.jpg", - "response": "A collage of black and white images including a volkswagen van, a city street, a city skyline and trees.", - "id": 8571 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_70255285_ovACIaQHhUsTVsnbVDyMjTk3rnpr56uk_jpg.rf.febe6fe4d646e2466852ca83d0aabdf0.jpg", - "response": "A picture of a bunch of keys in a lock box.", - "id": 8572 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_50935144_pawMwt1l3ELHbCTBU72F8YAWyLwkvtLb_jpg.rf.a30d33e772e1cab36912c5d9e6f3135d.jpg", - "response": "A collage of 4 different forklifts. One is a Yale, and the other three are different makes and models.", - "id": 8573 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_9125217_t5WNFmaD5sdss277yoJPOvn04pcPP738_jpg.rf.259cbeb65201a1c45077d1f96e9bd3be.jpg", - "response": "A black and white image of a couple sitting on a pile of boxes. The woman is wearing a striped shirt and the man has short hair. They are looking at a black square.", - "id": 8574 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_59681207_Zj3cB6kAI7fAAVFuTq271VXHBC8ezgkO_jpg.rf.f06a076aace91556fd1de9e78c1c0b20.jpg", - "response": "A black and white photo of a group of people in a room. The people are standing in a line and are all wearing backpacks. The backpacks are different shapes and sizes and are all black. Some of the people are also wearing hats. In front of the people is a table with some items on it. There are two pairs of skis laid out on the table and a snowboard is also visible. There are also two sets of skis leaning against the wall on the left side of the table. On the right side of the table, there are two snowboards. The room is filled with different types of equipment.", - "id": 8575 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_72384912_7UWVAvTVNLozKlrkHeQ23QtAusv9S2tP_jpg.rf.f18da014fc6206baedc16c4802017303.jpg", - "response": "A collage of black and white images. The first is a close up of a box with a label that says \"Fragile\". The second is a group of people sitting around a table with boxes. The third is a close up of a box with a label that says \"handle with care\". The fourth is a close up of a forklift.", - "id": 8576 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_61425934_wgfz8W7Qey03NhLCjBa7H1HHOY58qlzd_jpg.rf.6f81bb35a2c99ce5faf48109a55078d3.jpg", - "response": "kids(2,261),(279,986)(405,243),(673,943)(104,203),(466,996) playing in a store", - "id": 8577 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_320380559_DI3dy3aItWqE5spiiwSfGGUQuVMgzBL3_jpg.rf.e4bef98009389525c9ca4822e41b01d2.jpg", - "response": "A collage of four images, two of which show forklifts and pallets, and two show people using computers.", - "id": 8578 - }, - { - "image_path": "/content/drive/MyDrive/combined/32_jpg.rf.9c1fb4986b39ab2a27770c97972298e5.jpg", - "response": "A collage of black and white images. The top left image is a close up of a black square. The top right image is a close up of a black square on the ground. The bottom left image is a man on a forklift loading a pallet on a truck. The bottom right image is a close up of a black square on the ground.", - "id": 8579 - }, - { - "image_path": "/content/drive/MyDrive/combined/32_jpg.rf.e8360cdcc6cf2d6fe5c43a704f90459f.jpg", - "response": "A collage of images including a truck carrying cases of wine, a person walking across snow, glasses of red wine, and a person walking across a parking lot.", - "id": 8580 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_410221996_Ho7jd7YGjzPbL9hpqXhqae04K9qSl2rs_jpg.rf.88b8d32604a62e9cd444457fdf9f378c.jpg", - "response": "A collage of images including a woman holding a hat, a woman's face, a shoe in water, a sign and a building.", - "id": 8581 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_13333437_K7majTdMiVaO2v5O5AVuiDgF9GMKkkLu_jpg.rf.655d1b31d0c5cb371649028e46ea9c92.jpg", - "response": "A collage of black and white images. The top left image is of a corner of a room with a large box on the left and a smaller one on the right. The top right image is a close up of a corner of a room with a large lamp on the right and a smaller one on the left. The bottom left image is of a table with a fur coat on it. The bottom right image is a black and white drawing of a street scene with people walking.", - "id": 8582 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_410221996_Ho7jd7YGjzPbL9hpqXhqae04K9qSl2rs_jpg.rf.ee49edf9f8bed8406838c9c3cfd679eb.jpg", - "response": "A black and white image of a warehouse with a forklift in the background and a large box in the foreground.", - "id": 8583 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_350547454_vTVVw9frY2ixRY5SQb8rbInFfCNEP44B_jpg.rf.1e70ec3871116ec39c343f2c8ac019ac.jpg", - "response": "A collage of images, including a black and white photo of a man, a photo of a TV monitor, a photo of a person holding a camera, a photo of a man standing in front of a wall with boxes, and a graphic of boxes with the word \"future\" on them.", - "id": 8584 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_410221996_Ho7jd7YGjzPbL9hpqXhqae04K9qSl2rs_jpg.rf.f4db1d3e5a44b3148cb564715b0c76a4.jpg", - "response": "A warehouse with a ramp and a pallet of Fair Bran cereal.", - "id": 8585 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_1694392_DJYRp4Xunu9FlWXZwpDbLNOQRTrk8j_jpg.rf.0f60bbb32a066a07d634e1df888dc62c.jpg", - "response": "A collage of black and white images, including a man holding a baseball bat, a catcher and an umpire at a baseball game, a city street with cars and people, and a group of people walking.", - "id": 8586 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_77770799_dorvmSGvAolGzfJ9Lk8FfPRcG6zGabq4_jpg.rf.14c3764e1c6ff818baff344399308739.jpg", - "response": "A black and white image of a street scene with a person in a black shirt bent over in the bottom left corner. There is a white SUV parked on the street and a white truck in the background. There are also two buildings in the background.", - "id": 8587 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_369996641_b5PQI4Z7abEUYvVNwXrhU4Z0jvw5NVEp_jpg.rf.bd47886fc68a4cef81bae23ba8272e1e.jpg", - "response": "A collage of images including a box, a pallet, a person in a meatpacking plant, a person on a forklift, and a person working on a car.", - "id": 8588 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_jpg.rf.7546f628df0e65e882509f3dd8a9202b.jpg", - "response": "A black and white image of a factory with a large jet airplane in the foreground. The factory has a large open area with several large wooden structures. There is a person in the factory and a car is visible in the background.", - "id": 8589 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_305329125_ZX9gHuxnKUrlJvciALEOFFLVrPQR4GNT_jpg.rf.60c81d667c7c4c57d2dfff9696dcee04.jpg", - "response": "A collage of different images, including a forklift, boxes, and pallets.", - "id": 8590 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_350547454_vTVVw9frY2ixRY5SQb8rbInFfCNEP44B_jpg.rf.3acc186eca591f7e04b1cce499597a3f.jpg", - "response": "A collage of images including a kitchen, a bike on the ceiling, a clock on a wall, and a person using a computer.", - "id": 8591 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_29928099_rqBCbdd9IiJMJeVfX2yFPyiXsXEMG92x_jpg.rf.9b5281331392f8d50b3ff19e92067d17.jpg", - "response": "A bed with a wooden frame and white sheets.", - "id": 8592 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_jpg.rf.f75abdbcebf23027d580d06258d9f5c3.jpg", - "response": "A collage of images including a person pushing a cart, a box, a woman making a face and a block of cheese.", - "id": 8593 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_59681207_Zj3cB6kAI7fAAVFuTq271VXHBC8ezgkO_jpg.rf.22ab14805f8a01c418dcf9aa680bc2ba.jpg", - "response": "A black and white photo of a person riding a cow in a rodeo.", - "id": 8594 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_494603340_PeIEAen9pQKjEhk8OPd1olNl021YYxsY_jpg.rf.bfe7daad3baaacbf676c9ec715a767f5.jpg", - "response": "A collage of forklifts in a warehouse.", - "id": 8595 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_26823362_Mg58STmkMgZenmZelR3QSQAp8V6LiYtv_jpg.rf.d0b16885a5a7cbf423dc16de6c1e7ef9.jpg", - "response": "A collage of black and white images of a warehouse. In the top right image, a person is walking through a doorway. In the top left image, a person is pulling a cart. In the bottom left image, a person is pushing a cart. In the bottom right image, a person is walking in front of a stack of boxes. There are several boxes stacked on top of each other. There are also several boxes on the ground. There is a statue in the top center image. There is a handbag in the top right image. There is a sign with an umbrella in the top left image.", - "id": 8596 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_106828498_h9kdwSn1chRFQBwyb49x8kSPsbc4FuLm_jpg.rf.32995f0d1e636de8250f5ceb364b2841.jpg", - "response": "A black and white photo of a woman sitting at a table with a cup of coffee. There are four boxes on the table, two of which are opened. There is a cup on the table and another one on the counter.", - "id": 8597 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_29928099_rqBCbdd9IiJMJeVfX2yFPyiXsXEMG92x_jpg.rf.d489753dda3d256f9980e6b6ce749351.jpg", - "response": "A collage of black and white images. On the left is a box with a black square drawn on it. In the top right is a woman with a black shirt and her hair in a bun. In the bottom right is a man with a black shirt and a beard. In the top left is a person holding a box. In the bottom left is a person standing in front of a wall with a large pipe.", - "id": 8598 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_13333437_K7majTdMiVaO2v5O5AVuiDgF9GMKkkLu_jpg.rf.93c3e61bb0efc1d3250ed2d9c33817ee.jpg", - "response": "A collage of 4 images. The first is a white box with the words FUMA USA on it. The second is a forklift loading a pallet. The third is a man sitting on a pallet. The fourth is a close up of a pallet.", - "id": 8599 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_338691089_cbkN6sw27cYKMshaN8rSCbhxMjzOoY1H_jpg.rf.33c212cf94a3697dcca1ebdce3ef8039.jpg", - "response": "A black and white photo of a room with a stove, a dishwasher, a teddy bear in a stroller and a person standing in the background.", - "id": 8600 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_305329125_ZX9gHuxnKUrlJvciALEOFFLVrPQR4GNT_jpg.rf.51a497dd2bc6fe4a0156d3439f206474.jpg", - "response": "A black and white image of a street scene with a bus in the foreground and a truck in the background. The bus is a tour bus for London and has a sign on the side that says \"Big Bus Tours\". There are also people in the scene, one near the bus and one near the truck. There are also some buildings in the background.", - "id": 8601 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_369996641_b5PQI4Z7abEUYvVNwXrhU4Z0jvw5NVEp_jpg.rf.c081b44b582feacf139262b5fc64a253.jpg", - "response": "A collage of images including a person sitting on a forklift, a cat laying on a wooden box, a person in a box, and a pile of boxes.", - "id": 8602 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_72384912_7UWVAvTVNLozKlrkHeQ23QtAusv9S2tP_jpg.rf.5712eaa3e8a2a5539f2d8c76d505a8f2.jpg", - "response": "A collage of images including a truck, boxes, and people.", - "id": 8603 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_494603340_PeIEAen9pQKjEhk8OPd1olNl021YYxsY_jpg.rf.37b001da8e2ee007ee6d75d771587058.jpg", - "response": " A concrete block(3,67),(273,657) is being used to make a surfboard rack.", - "id": 8604 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_338691089_cbkN6sw27cYKMshaN8rSCbhxMjzOoY1H_jpg.rf.85234d49c54e9e5db71cfe6f0f28a773.jpg", - "response": "A collage of black and white images of a warehouse. The images show a forklift carrying a pallet of boxes, a man on a motorcycle, a person in a warehouse, and a person walking through a warehouse.", - "id": 8605 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_61425934_wgfz8W7Qey03NhLCjBa7H1HHOY58qlzd_jpg.rf.2da5ddac9ba6f19a440d4426af3aab3a.jpg", - "response": "A forklift driver in a warehouse with a pallet of boxes.", - "id": 8606 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_338691089_cbkN6sw27cYKMshaN8rSCbhxMjzOoY1H_jpg.rf.2ac75c91825fc5a901110a5f3adaa310.jpg", - "response": "A collage of black and white images, including a group of people skiing, a person standing in front of a bus, and a woman standing in front of a store.", - "id": 8607 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_106828498_h9kdwSn1chRFQBwyb49x8kSPsbc4FuLm_jpg.rf.237192a7563dc24313c9be9835af7ab2.jpg", - "response": " The image(5,4),(993,993) is a collage of four different images. The first image is a black and white image of a wall with three signs attached to it. The second image is a black and white image of a building. The third image is a black and white image of a street with a building on the right and a tree on the left. The fourth image is a black and white image of a building with a sign attached to it.", - "id": 8608 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_jpg.rf.39fc7cb99abea07d383260d6c6a5b904.jpg", - "response": "A black and white photo of a fire hydrant on a sidewalk. There is a truck parked on the street in the background.", - "id": 8609 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_494603340_PeIEAen9pQKjEhk8OPd1olNl021YYxsY_jpg.rf.837292a114f332ee16becd16773914d6.jpg", - "response": "A black and white photo of a man carrying a large box. The man is wearing a black shirt and black and white roller blades. The box he is carrying is white and has a black square in the top left corner. There is a car in the background and a graffiti covered wall to the right of the man.", - "id": 8610 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_492052133_nREarGwcuvA11a8WMdXVtU4OeGo09bCa_jpg.rf.4853d463602ae0f0e5cef1a98d615baa.jpg", - "response": "A black and white image of a woman walking through a building. The woman is walking down a hallway and appears to be wearing a dress. There are two doors in the background of the image. There are also two smaller images of the woman walking. One of the images is a close up of her walking and the other is a close up of her walking by a wall.", - "id": 8611 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_186375188_OB2O56KNy5EcQNRMHz82wLAuYgbplgc0_jpg.rf.812194a06e40ad42fadeba68685a7256.jpg", - "response": "A black and white image of a room with a few people standing around a few large shipping containers. There is a TV screen on the left wall and a small square black box on the right wall. A woman's face is shown in a mirror to the right of the room. A black and white image of a rodeo is shown on the right. There are horses and riders in the image. A trailer is shown in the background. There are flags strung across the top of the image.", - "id": 8612 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_186375188_OB2O56KNy5EcQNRMHz82wLAuYgbplgc0_jpg.rf.833af5e5831708bcf833276166402e2b.jpg", - "response": "A black and white collage of images. The top left image is of a closed cardboard box. The top right image is of a person holding a skateboard. The bottom left image is of a person using a pallet jack. The bottom right image is of a person riding a bike.", - "id": 8613 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_29928099_rqBCbdd9IiJMJeVfX2yFPyiXsXEMG92x_jpg.rf.c3337ee956df2ea8132b4157c98c6bc8.jpg", - "response": "A collage of images including a city street, a building, a box, and a backpack.", - "id": 8614 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_26823362_Mg58STmkMgZenmZelR3QSQAp8V6LiYtv_jpg.rf.b7ec57b2ff871d916642b48b01d4410d.jpg", - "response": "A black and white collage of various images. There is a child with their mouth open, a stop sign, a tree stump, a person holding a guitar, a woman wearing high heels, a building with windows, and a picture of a vase.", - "id": 8615 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_305329125_ZX9gHuxnKUrlJvciALEOFFLVrPQR4GNT_jpg.rf.7ae6370ded37aff21263c9fd21016037.jpg", - "response": "A black and white image of a warehouse with two men working. One man is standing on a pallet jack and the other is standing on a dolly. There are several boxes on the ground and on a pallet. The boxes are labeled with the word \"kitchen.\"", - "id": 8616 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_jpg.rf.d2ba9e26bb3249478601ccb93ca27a4a.jpg", - "response": "A collage of black and white images including a sign that says \"Ava\" and a tree with a square black box in front of it. There are also pallets and boxes.", - "id": 8617 - }, - { - "image_path": "/content/drive/MyDrive/combined/51_jpg.rf.637a8242d609184f09e6a7b701fc37df.jpg", - "response": " A collage(5,4),(996,995) of black and white images of boxes.", - "id": 8618 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.e81947f869ca2ca9fc25ff78a232aa55.jpg", - "response": "A forklift in a warehouse, moving wooden pallets.", - "id": 8619 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_jpg.rf.5d7b5d529db6073fa8e0467d70e99776.jpg", - "response": "A collage of images including a forklift, a man holding a microphone, a picture of a man holding a gun, and a group of people sitting in a room.", - "id": 8620 - }, - { - "image_path": "/content/drive/MyDrive/combined/51_jpg.rf.15ccc5d0700828190f36faa2c0f92b2a.jpg", - "response": "A black and white image of a man sitting on a pile of books. The man is wearing a black jacket and a black hat. The books are stacked on top of each other and are made of different materials. There is a window in the background and a tree is visible outside.", - "id": 8621 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.c47ca696cebc63f6cfa529ee1dc3c960.jpg", - "response": "A black and white photo of a bus.", - "id": 8622 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.6f772c8c3289ba72b76dfe49c9978d16.jpg", - "response": "A black and white image with three different images combined into one. The top image is of a wall with a video playing on it. The video is showing a woman in a white coat holding a plant. The second image is a close up of the bottom right corner of the wall. The third image is a close up of a brick wall. There are three black squares covering parts of the wall in the bottom right corner.", - "id": 8623 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_jpg.rf.1b309a09bdef3cb42d54332d3907d50f.jpg", - "response": "A black and white photo of a group of people standing in front of a fence. Some people are standing on the left side of the fence, and others are standing on the right side. There are cars parked in the background. A stack of boxes is visible on the right side of the image.", - "id": 8624 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_jpg.rf.9834be7fc3d7291b375f0563b70b70ef.jpg", - "response": "A collage of four photos. One of a man and a child, one of a man and a TV, one of a child playing with a book, and one of a bin of toys.", - "id": 8625 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_jpg.rf.ce6d3eb5054f7ef63e95a5525d0de4de.jpg", - "response": "The image is a black and white photo of an airport scene. In the foreground, there is a man sitting on a bench and looking out the window at an airplane parked on the tarmac. The window is divided into several panes, with the man visible in one of them. The airplane has the word \"Lufthansa\" on the side. In the background, there is a truck driving by. The photo is taken from the perspective of the man sitting on the bench.", - "id": 8626 - }, - { - "image_path": "/content/drive/MyDrive/combined/53_jpg.rf.cf768ab8009487f9efdf00f361060a4c.jpg", - "response": "A black and white photo of a woman in a store. She is kneeling down and looking at something on the floor. She is wearing a scarf and has her hair in a bun. She is smiling and has her hands on her knees. There is a box with the word \"Asus\" on it in the upper right corner of the image. There are three black squares in the bottom right corner of the image.", - "id": 8627 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.a8befc3440f636e80f2b09e70ad89ab7.jpg", - "response": "A collage of four black and white photos. The top left photo is of a building with a street sign in front of it. The top right photo is of a bus stop with a bench. The bottom left photo is of a person in a red shirt getting on a bus. The bottom right photo is of a woman in a white dress and a man in a suit walking down a sidewalk.", - "id": 8628 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.6c53eb2eec9b60387bc4314681273257.jpg", - "response": "A collage of images including a man looking at his phone, a group of children playing soccer, and a large building.", - "id": 8629 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_jpg.rf.aa473d877d353cefc00d36e611811ac4.jpg", - "response": "A black and white photo of a forklift with a box on it.", - "id": 8630 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_jpg.rf.62a2bf15cbd2a35d5bc078d3ee7001d3.jpg", - "response": "A collage of four different images. The top left image is a close up of a single piece of wood. The top right image is a pallet. The bottom left image is a forklift unloading a pallet from a truck. The bottom right image is a close up of a pallet.", - "id": 8631 - }, - { - "image_path": "/content/drive/MyDrive/combined/53_jpg.rf.5be9c0ac909475fed74fb4ac81cf109d.jpg", - "response": "A truck is leaving a parking garage in a black and white photo.", - "id": 8632 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_jpg.rf.92471f91530ee298e4fbdd09fd946b6b.jpg", - "response": "A collage of images, the first is a black and white image of a man standing in front of a wall of wine bottles, the second is a forklift carrying a pallet of boxes, the third is a man in a warehouse unloading a pallet of boxes with a forklift, the fourth is a man holding a tennis racket.", - "id": 8633 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_jpg.rf.71ae439c0276fbd3f4b2c648f59c739a.jpg", - "response": "A black and white image of a warehouse with a forklift in the background and a person working with pallets. There are multiple pallets stacked up and barrels on the ground.", - "id": 8634 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.3d2978e407486b4704f4026a85b5a3ed.jpg", - "response": "A black and white image of a warehouse with a man in the bottom right corner. There are several boxes in the warehouse, some stacked and some not. There are also several images of boxes scattered throughout the image.", - "id": 8635 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_jpg.rf.0719dccfe81e17970109ba693e11f5ac.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a roof with a large white box covering part of the photo. The top right photo is a close up of a person's arm and hand holding a cell phone. The bottom left photo is a black and white photo of a street with a white building on the left and a dark building on the right. There are power lines crossing the street. The bottom right photo is a black and white photo of a street with a white building on the left and a dark building on the right. There are power lines crossing the street.", - "id": 8636 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.6ee6790c88ace1686301e7f618cec34a.jpg", - "response": "A collage of images. Top left image is a blurry image of a building. Top right image is a blurry image of a garbage can. Bottom left image is a sign with the words \"divvy station\" on it. Bottom right image is a white box.", - "id": 8637 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_jpg.rf.c347439eb760ab5c9c14690b32ddc382.jpg", - "response": "A black and white image of a man playing tennis. The man is wearing white shorts and tennis shoes. He is in the middle of a tennis court, running to hit the ball. There is a chair on the left side of the court. On the right side of the court, there is a stack of tennis balls. In the background, there is a fence.", - "id": 8638 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_jpg.rf.cdae914702ed755944a0bcc6133c41a0.jpg", - "response": "A collage of black and white images of a forklift and a warehouse.", - "id": 8639 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_jpg.rf.b02a4490b5ca866a0e3e813e4a617377.jpg", - "response": " Some examples(5,6),(992,993) of images captured by the cameras.", - "id": 8640 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.6ec89147a29e61447adfcd29536f6cc6.jpg", - "response": "A black and white image showing a collage of four different images. The first is a close up of a hand stirring a pot of water on a stove. The second is a close up of a black and white control panel. The third is a close up of a white pallet with many small black and white boxes on it. The fourth is a close up of a white table with a black and white control panel on it.", - "id": 8641 - }, - { - "image_path": "/content/drive/MyDrive/combined/50_jpg.rf.61b210e5fde9344a55c5af9cac8affa3.jpg", - "response": "A collage of images including a surfer, a biker, a boat, and a building.", - "id": 8642 - }, - { - "image_path": "/content/drive/MyDrive/combined/50_jpg.rf.6a91adff2adb66f060691fd155613186.jpg", - "response": "A forklift carrying a pallet of boxes.", - "id": 8643 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_jpg.rf.9404c328f02e70497ed9557394159868.jpg", - "response": "A collage of black and white images including a stage with a band, a tent, a truck, and people standing around with umbrellas.", - "id": 8644 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_jpg.rf.bf9fdecb50e2815db84ee3939ddb4dd4.jpg", - "response": "A collage of images including a dam, a waterfall, a box and some electronics.", - "id": 8645 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_jpg.rf.6ebcb2fcaa6c55b5177b373f80f86b1a.jpg", - "response": "A forklift is seen in a black and white photo.", - "id": 8646 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_jpg.rf.b57fbe840cb6775db5b771594646a294.jpg", - "response": "A collage of images of people and packages.", - "id": 8647 - }, - { - "image_path": "/content/drive/MyDrive/combined/51_jpg.rf.64a5328c83b87f19e1cd5274fe839ab4.jpg", - "response": "A black and white image of a warehouse with a forklift in the middle of the room. There is a man sitting on the forklift and another man standing in front of it. There is also a box on the left side of the room and a pallet on the right side. In the top right corner of the image, there is a logo that says \"ASUS\".", - "id": 8648 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_jpg.rf.9fc041814998896b08ca0f1d8ddfb966.jpg", - "response": "A cat is sleeping in a cardboard box.", - "id": 8649 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_jpg.rf.ed18e5dc72ae504eaa591efbe095c5c1.jpg", - "response": "A forklift driver is seen in a black and white photo. The forklift is a Caterpillar brand and the photo is taken from a side view. The driver is wearing a helmet and the forklift is carrying a pallet with a box on it. The photo is also partially obscured by a blurry image of a man in a hard hat on a forklift.", - "id": 8650 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_jpg.rf.1ddcac7d042309130c9620360a71c4b2.jpg", - "response": "A collage of images including a black and white photo of a forklift, a man in a garage, a box with the word \"Kanden\" on it, and a man using a hand tool.", - "id": 8651 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_9125217_t5WNFmaD5sdss277yoJPOvn04pcPP738_jpg.rf.c61e0e9573a799197c254144472650d6.jpg", - "response": "A collage of four different images. The first is a close up of a computer screen. The second is a close up of a keyboard. The third is a row of houses. The fourth is a street with a truck on it.", - "id": 8652 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.01dce149f7fb3f2f8fb52a894372cd9f.jpg", - "response": "A black and white image of a warehouse. There are pallets of boxes stacked on the left and right, and a forklift on the right. There is a person in the bottom left corner of the image.", - "id": 8653 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_jpg.rf.f660a4e0ba6f0f1d70c0b69e15d07cc8.jpg", - "response": "A collage of four different pictures. The top left picture is a close up of a grey box. The top right picture is of a stack of wooden pallets. The bottom left picture is of a black box with a black square on the end. The bottom right picture is of a forklift in a warehouse with wooden pallets stacked high.", - "id": 8654 - }, - { - "image_path": "/content/drive/MyDrive/combined/50_jpg.rf.4622428d9e8fea5bfa583fa885e8d23a.jpg", - "response": "A collage of four black and white images. The first image is a close up of a bed with a white duvet and a pillow. The second image is a close up of a black box with the letters \"SBS\" on it. The third image is a close up of a white bed with a black box resting on it. The fourth image is a close up of a white floor with wooden pallets on it.", - "id": 8655 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.8395afc4dd1137540b247534858b7daf.jpg", - "response": "A black and white image of a warehouse. There are people working in the warehouse, some are sitting on crates, some are working on a forklift, and some are working on a machine. There are also boxes and other objects in the warehouse.", - "id": 8656 - }, - { - "image_path": "/content/drive/MyDrive/combined/53_jpg.rf.462f6c95c66c91dcfbad8ee7b3a73848.jpg", - "response": "A black and white image of a warehouse with a forklift truck in the background. There are also boxes and a price tag in the foreground.", - "id": 8657 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_jpg.rf.6921b5da4d98d7e3c3e67564735117d1.jpg", - "response": "A black and white image of a forklift.", - "id": 8658 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.4b1b297d13b3d3beabd1b705ebb49c68.jpg", - "response": "A black and white photo of a baseball game. There are people on the field playing baseball. There are also people in the stands watching the game. Some of them are eating and drinking. There are also chairs and a table in the foreground.", - "id": 8659 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_jpg.rf.db89300f71e0a7e2a1b8400c31172059.jpg", - "response": "A collage of four photos, two of which show men operating forklifts, one of a child on a forklift, and one of a pallet of boxes.", - "id": 8660 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_jpg.rf.fccf06892809580a3ac6ca6dcb17fee8.jpg", - "response": "A black and white image of a bus and a box.", - "id": 8661 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_jpg.rf.8cab979f9739ea7278af5af78a330de8.jpg", - "response": "A collage of four different black and white images. From left to right, the images are of a building, a statue, a forest, and a hand holding a surfboard.", - "id": 8662 - }, - { - "image_path": "/content/drive/MyDrive/combined/492_png.rf.b36d92b5a83c1bebdfff6b63b1f62a53.jpg", - "response": "A person walking down a sidewalk in a wooded area.", - "id": 8663 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_png.rf.229b972edb2a0889e0164f24bd94e096.jpg", - "response": "A man in a white shirt and black shorts is walking in a room.", - "id": 8664 - }, - { - "image_path": "/content/drive/MyDrive/combined/490_png.rf.b896b61a92d5f13bfc0fefd20db235f8.jpg", - "response": "a person walking on a wooden bridge", - "id": 8665 - }, - { - "image_path": "/content/drive/MyDrive/combined/480_png.rf.fc3ee3fd327c517cb382f12f7b11d86d.jpg", - "response": "A man standing in a room with a black and white speckled floor.", - "id": 8666 - }, - { - "image_path": "/content/drive/MyDrive/combined/491_png.rf.571d6f999556fd2bf0c6b0e0958ed065.jpg", - "response": "A man walking down a sidewalk with many black dots covering the image.", - "id": 8667 - }, - { - "image_path": "/content/drive/MyDrive/combined/489_png.rf.2b14c5dbb72e90d0db40fe6259475fc7.jpg", - "response": "A person riding a bike down a sidewalk.", - "id": 8668 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_png.rf.e3cddc7713aff4954dbeb13a8bdd0dbe.jpg", - "response": "a person walking across a street next to some cars", - "id": 8669 - }, - { - "image_path": "/content/drive/MyDrive/combined/470_png.rf.909dd892cef8935dcda57e8188ad04ee.jpg", - "response": "a man standing in front of a row of motorcycles", - "id": 8670 - }, - { - "image_path": "/content/drive/MyDrive/combined/495_png.rf.de3c2b725f3ccd9eb4accea9455abb89.jpg", - "response": "A row of bicycles parked next to each other.", - "id": 8671 - }, - { - "image_path": "/content/drive/MyDrive/combined/509673909-8602_jpg.rf.f67931ff27cd6a5629c0b63de5c9f7d5.jpg", - "response": "A snowy street with a blue gate and a building with a lot of windows.", - "id": 8672 - }, - { - "image_path": "/content/drive/MyDrive/combined/509474876-9542_jpg.rf.56ac4bb2a5a2a3365966e608dcc55473.jpg", - "response": "A large warehouse with a lot of boxes stacked up on pallets.", - "id": 8673 - }, - { - "image_path": "/content/drive/MyDrive/combined/509656909-8971_jpg.rf.369e28426f603ed4ebc69b9c1b80bd72.jpg", - "response": "A large warehouse with a lot of shelves and racks. There are many boxes on the shelves and the floor. The walls are blue and the ceiling is white. There are two large fans on the ceiling.", - "id": 8674 - }, - { - "image_path": "/content/drive/MyDrive/combined/504_png.rf.ce8b583e20a8374b7bdc505f30c959e5.jpg", - "response": "A window with many small black spots on it looking out on a wooded area with a paved road going through it.", - "id": 8675 - }, - { - "image_path": "/content/drive/MyDrive/combined/509838976-8862_jpg.rf.d6f20be389151392af295d3f95ddb8e8.jpg", - "response": "A blurry image of a train station with a silver train.", - "id": 8676 - }, - { - "image_path": "/content/drive/MyDrive/combined/501_png.rf.e076cfc80b9ad45e7e96fc44a0879174.jpg", - "response": "A man in a green jacket and black pants is standing in a forest.", - "id": 8677 - }, - { - "image_path": "/content/drive/MyDrive/combined/508_png.rf.1ae4f46c410ab538c2728946ff745728.jpg", - "response": "The image shows a person wearing a black outfit standing in a doorway. The person is holding a cell phone and appears to be looking down at it. The room has a tan and white color scheme and there is a picture frame on the wall above the person. There is also a small gold trash can next to the person. The room has a tan and white color scheme and the floor is covered in a tan carpet.", - "id": 8678 - }, - { - "image_path": "/content/drive/MyDrive/combined/498_png.rf.f2e62e6e5321a7fe18eb9e52104dbf59.jpg", - "response": "A man wearing a green backpack is standing next to a silver car. He is wearing a hat and has a bicycle.", - "id": 8679 - }, - { - "image_path": "/content/drive/MyDrive/combined/507_png.rf.230a8d9f8a1d0d13a8745aade1be0667.jpg", - "response": "A man walking a bike on a sidewalk.", - "id": 8680 - }, - { - "image_path": "/content/drive/MyDrive/combined/509496543-927_jpg.rf.2a6b63ac16f2fac2bda1bd5dd7a0a399.jpg", - "response": "A large warehouse with a lot of items stacked on pallets.", - "id": 8681 - }, - { - "image_path": "/content/drive/MyDrive/combined/504_png.rf.cbc7209791b69f17acf73d2d3407d841.jpg", - "response": "A window with a view of a tree and a street.", - "id": 8682 - }, - { - "image_path": "/content/drive/MyDrive/combined/507_png.rf.c5248f1a8023145f957bee5b0099d4ad.jpg", - "response": "A man is standing next to a bike on a sidewalk.", - "id": 8683 - }, - { - "image_path": "/content/drive/MyDrive/combined/509948643-9755_jpg.rf.e6956cc072504014e014497dfeacad0d.jpg", - "response": "A large room with a lot of shelves in it.", - "id": 8684 - }, - { - "image_path": "/content/drive/MyDrive/combined/499_png.rf.26051ac1f482673e9591f901beb3c240.jpg", - "response": "A tree with a few leaves on it.", - "id": 8685 - }, - { - "image_path": "/content/drive/MyDrive/combined/509721910-5449_jpg.rf.23ad775b2e59b833f04450afb11266b7.jpg", - "response": "A blurry image of a warehouse with pallets stacked on pallets.", - "id": 8686 - }, - { - "image_path": "/content/drive/MyDrive/combined/509990710-0076_jpg.rf.e25ad75b2771818b836a6214838b7095.jpg", - "response": "a warehouse with shelves full of boxes and barrels", - "id": 8687 - }, - { - "image_path": "/content/drive/MyDrive/combined/509798309-8767_jpg.rf.ea9bd137c8772ea79c9df3e82079879d.jpg", - "response": "A blurry image of a white and blue room with a long hallway. The walls are lined with white and blue columns and there are white doors at the end of the hallway. The image is distorted with a digital rain effect.", - "id": 8688 - }, - { - "image_path": "/content/drive/MyDrive/combined/509562143-9351_jpg.rf.724c11107f771172f07b134fb70e11e6.jpg", - "response": "A large warehouse with pallets full of wrapped items.", - "id": 8689 - }, - { - "image_path": "/content/drive/MyDrive/combined/509442077-1114_jpg.rf.8a02154e4ef6e007d06c7b86c6a86532.jpg", - "response": "A large warehouse with white walls and blue trim. The walls have many boxes on them and the boxes are stacked on top of one another. There is a large window at the end of the room and a blue and white machine on the left side of the room. The floor is covered in small dots.", - "id": 8690 - }, - { - "image_path": "/content/drive/MyDrive/combined/509826044-0036_jpg.rf.7feac4ee6f07e0d1d6cb791f227ef4b7.jpg", - "response": "a long row of white and blue appliances", - "id": 8691 - }, - { - "image_path": "/content/drive/MyDrive/combined/509847709-8914_jpg.rf.b631aa61a1752d220431f66fcee0b7de.jpg", - "response": "A room with many shelves on two walls. The shelves are filled with boxes.", - "id": 8692 - }, - { - "image_path": "/content/drive/MyDrive/combined/506_png.rf.9cbad68089b67e7004082ab6aed4c475.jpg", - "response": "A man riding a bicycle on a street.", - "id": 8693 - }, - { - "image_path": "/content/drive/MyDrive/combined/49_png.rf.fc350f44f3b91350b4759f7b181e31e4.jpg", - "response": "A room with a table and chairs, a window and a person standing in the room.", - "id": 8694 - }, - { - "image_path": "/content/drive/MyDrive/combined/502_png.rf.43cb14634039db01f16c217db42d07a1.jpg", - "response": "a person walking on a bridge", - "id": 8695 - }, - { - "image_path": "/content/drive/MyDrive/combined/509699044-0214_jpg.rf.d1b7d88f0dfc8fcc3fdca7b91afc12ce.jpg", - "response": "A long narrow hallway with a blue and white color scheme. The floor is speckled and the walls are blue and white. There are many blue and white doors on the right side of the hallway. The ceiling is blue and there are many blue bars on the right side of the ceiling. There are also many blue and white shelves on the left side of the hallway.", - "id": 8696 - }, - { - "image_path": "/content/drive/MyDrive/combined/509660976-8698_jpg.rf.5f35d0dbeeebef095b5539c756a219b9.jpg", - "response": "A long hallway with many boxes on both sides of the hallway.", - "id": 8697 - }, - { - "image_path": "/content/drive/MyDrive/combined/509798309-8767_jpg.rf.4067220f664f3bf7c1c9aa6b8756480e.jpg", - "response": "a row of white and blue boxes", - "id": 8698 - }, - { - "image_path": "/content/drive/MyDrive/combined/509707444-0739_jpg.rf.4d872f8548c85b3a5588bf8382c27390.jpg", - "response": "A warehouse with shelves full of boxes and pallets of material.", - "id": 8699 - }, - { - "image_path": "/content/drive/MyDrive/combined/509699044-0214_jpg.rf.26f4ee5ffa75ad33bab42414b8e7ce86.jpg", - "response": "A row of shelves with cardboard boxes on them.", - "id": 8700 - }, - { - "image_path": "/content/drive/MyDrive/combined/509642309-8684_jpg.rf.427fef44a94bed1815ce30962ad82a84.jpg", - "response": "A blurry image of a warehouse with a concrete floor and high shelves on both sides. The shelves are filled with cardboard boxes of various sizes. The image has a speckled appearance.", - "id": 8701 - }, - { - "image_path": "/content/drive/MyDrive/combined/509_png.rf.1c98b5fada707e1ac9e759777e25b702.jpg", - "response": "A man in a white shirt and grey hat is standing on a dirt road. He is holding a cell phone in his left hand. The road is surrounded by trees and there is a fence in the foreground.", - "id": 8702 - }, - { - "image_path": "/content/drive/MyDrive/combined/509631443-9388_jpg.rf.c3e02c898d52664258eee5fa5c283313.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 8703 - }, - { - "image_path": "/content/drive/MyDrive/combined/4_png.rf.22645522e43f8abe43a8bf36db0041e8.jpg", - "response": "A blurry image of a parking garage with a person walking through it. The person is wearing a black shirt and dark pants. There are several cars parked in the garage, including a white car on the left side and a white SUV on the right side. There is also a person in the background, wearing a white shirt and dark pants. They are walking in the garage as well.", - "id": 8704 - }, - { - "image_path": "/content/drive/MyDrive/combined/509701309-9396_jpg.rf.5cd8ed6c6f51838a45e39b399e705f2d.jpg", - "response": "A blurry image of a room with shelves on two walls. The shelves are filled with items such as white and blue boxes. The floor is covered in small black and white dots.", - "id": 8705 - }, - { - "image_path": "/content/drive/MyDrive/combined/509957043-9868_jpg.rf.b305089954460cafd1c5e94ea0097b3b.jpg", - "response": "A warehouse with shelves full of boxes and a window letting in sunlight.", - "id": 8706 - }, - { - "image_path": "/content/drive/MyDrive/combined/509442077-1114_jpg.rf.ea297457da783d65678790128593beb9.jpg", - "response": "A large warehouse with white walls and a concrete floor. There are shelves and racks filled with boxes and barrels of material. The room is filled with various storage containers and barrels.", - "id": 8707 - }, - { - "image_path": "/content/drive/MyDrive/combined/509760176-8831_jpg.rf.c970c20fc91c8bc7d5554be089c8abcc.jpg", - "response": "A warehouse with a forklift in the middle and shelves on the walls.", - "id": 8708 - }, - { - "image_path": "/content/drive/MyDrive/combined/499_png.rf.1d7ce71b3e1b5d23d3706c8585f18890.jpg", - "response": "A man is walking down a sidewalk in a yard.", - "id": 8709 - }, - { - "image_path": "/content/drive/MyDrive/combined/509867843-9994_jpg.rf.cc9e27e98afdab3538d74571f9530518.jpg", - "response": "a room with a lot of beds in it", - "id": 8710 - }, - { - "image_path": "/content/drive/MyDrive/combined/509721910-5449_jpg.rf.f7be4983b5f323d0915482fd7dbaf2e2.jpg", - "response": "A warehouse with two stacks of pallets.", - "id": 8711 - }, - { - "image_path": "/content/drive/MyDrive/combined/508_png.rf.63f206165a5a33fabb7b27bc2ee57da5.jpg", - "response": "A blurry image of a person walking out of a door.", - "id": 8712 - }, - { - "image_path": "/content/drive/MyDrive/combined/509912776-8959_jpg.rf.53796e9b2b45372a9702594ff2b42d31.jpg", - "response": "A warehouse with white shelves and gray bins.", - "id": 8713 - }, - { - "image_path": "/content/drive/MyDrive/combined/502_png.rf.ea0ec8e3c254c4f496be68eac597dfde.jpg", - "response": "A person walking on a sidewalk next to a tree.", - "id": 8714 - }, - { - "image_path": "/content/drive/MyDrive/combined/509821843-9691_jpg.rf.7bf2dc9ca91eddffad1f0052953cff38.jpg", - "response": "a room with many shelves and boxes on the shelves", - "id": 8715 - }, - { - "image_path": "/content/drive/MyDrive/combined/509701309-9396_jpg.rf.da7c6552b883a51559d07f190f3158eb.jpg", - "response": "A blurry image of a room with shelves.", - "id": 8716 - }, - { - "image_path": "/content/drive/MyDrive/combined/509707444-0739_jpg.rf.9fbff1e04789dfc3b4b8950876578316.jpg", - "response": "A warehouse with tall shelves on both sides of the aisle. The shelves are filled with cardboard boxes and blue crates. The walls are blue and there is a white sign on one of the shelves. The floor is made of tiles and there are white dots covering the image.", - "id": 8717 - }, - { - "image_path": "/content/drive/MyDrive/combined/509847709-8914_jpg.rf.4813097c9c22a1a538c926a183e5cec0.jpg", - "response": "A long row of white boxes on a shelf.", - "id": 8718 - }, - { - "image_path": "/content/drive/MyDrive/combined/509660976-8698_jpg.rf.8f4a02766652103a34295b5e018afe37.jpg", - "response": "A large room with a white floor and shelves on the walls. There are boxes stacked on the shelves and the floor. The room is dimly lit.", - "id": 8719 - }, - { - "image_path": "/content/drive/MyDrive/combined/509474876-9542_jpg.rf.c8958b237e3824fce7fef120ed456f08.jpg", - "response": "A large room with a lot of boxes stacked up in the back. There are shelves on the wall and a large window letting in a lot of light. The floor is covered in small black and white dots.", - "id": 8720 - }, - { - "image_path": "/content/drive/MyDrive/combined/509813309-8768_jpg.rf.42714105f6f0f4162496c964e93f78e1.jpg", - "response": "a photo of a bus through a rain covered window", - "id": 8721 - }, - { - "image_path": "/content/drive/MyDrive/combined/501_png.rf.5e5109837633e1ccb577056ead37b8f7.jpg", - "response": "A large tree with a few branches and a few leaves on it.", - "id": 8722 - }, - { - "image_path": "/content/drive/MyDrive/combined/4_png.rf.e852ee4347c80caafd1fcec6462a98bf.jpg", - "response": "A man and woman are walking through a parking garage. The man is wearing a white shirt and black pants. The woman is wearing a black shirt and black pants. The woman has long black hair. They are both wearing white sneakers. The woman is carrying a black purse. There are several cars in the garage. One car has its brake lights on. Another car has a Tesla logo on it. There is also a truck with a ladder on top of it.", - "id": 8723 - }, - { - "image_path": "/content/drive/MyDrive/combined/509656909-8971_jpg.rf.84e3bc3e733f3ead46d1fe63ec4c861e.jpg", - "response": "a room with a lot of boxes on the shelves", - "id": 8724 - }, - { - "image_path": "/content/drive/MyDrive/combined/509863510-0136_jpg.rf.b33e6de89abf7fe0c31a53ef039f16d7.jpg", - "response": "A room with shelves on the left and right walls. The shelves are stocked with items. There is a ladder on the right wall. The floor is grey. The image has a blue and white dot pattern applied to it.", - "id": 8725 - }, - { - "image_path": "/content/drive/MyDrive/combined/509760176-8831_jpg.rf.0a51083a3c81b117d5eaeeb7488ab6fe.jpg", - "response": "a room with a forklift in it", - "id": 8726 - }, - { - "image_path": "/content/drive/MyDrive/combined/509867843-9994_jpg.rf.466a2fa6de13ccf7e2e61876ee76d4da.jpg", - "response": "A large room with a lot of shelves and items on them.", - "id": 8727 - }, - { - "image_path": "/content/drive/MyDrive/combined/509981976-9003_jpg.rf.a0465d906d2e77af5798f524b5837f31.jpg", - "response": "A long narrow room with shelves on both sides.", - "id": 8728 - }, - { - "image_path": "/content/drive/MyDrive/combined/49_png.rf.a8eda68e88e27f2dec43b608658837d7.jpg", - "response": "A room with two people in it, one person sitting at a table and the other standing near a voting booth.", - "id": 8729 - }, - { - "image_path": "/content/drive/MyDrive/combined/506_png.rf.af04d9bab9a197c325dfe8cfe542abf4.jpg", - "response": "A man is riding a bicycle on a street.", - "id": 8730 - }, - { - "image_path": "/content/drive/MyDrive/combined/509990710-0076_jpg.rf.91c9e1c12e9100cb2f61bfd503a9cff0.jpg", - "response": "a long narrow room with shelves on the side and racks on the other side", - "id": 8731 - }, - { - "image_path": "/content/drive/MyDrive/combined/509_png.rf.30c0e4702778127b1cc7b4ff0a10f33c.jpg", - "response": "A man wearing a white shirt and a white hat is standing in the woods.", - "id": 8732 - }, - { - "image_path": "/content/drive/MyDrive/combined/509912776-8959_jpg.rf.20d5355cfedd7778e7f157859b21ca4c.jpg", - "response": "a long row of shelves filled with boxes and containers", - "id": 8733 - }, - { - "image_path": "/content/drive/MyDrive/combined/509690643-9528_jpg.rf.8b256e76d04ab32528e3ea79a1b7f813.jpg", - "response": "a long hallway with a blue and white wall at the end of it", - "id": 8734 - }, - { - "image_path": "/content/drive/MyDrive/combined/509813309-8768_jpg.rf.beb106fb508523dc80f0b257706fa26a.jpg", - "response": "A large warehouse with many boxes stacked on the shelves.", - "id": 8735 - }, - { - "image_path": "/content/drive/MyDrive/combined/503_png.rf.6795aed653558b0a307d6b38c0880ddc.jpg", - "response": "A person standing on a sidewalk in front of a building.", - "id": 8736 - }, - { - "image_path": "/content/drive/MyDrive/combined/509496543-927_jpg.rf.35f45049b8b17ffe6406c17c74f2c759.jpg", - "response": "a warehouse with a lot of boxes and a car", - "id": 8737 - }, - { - "image_path": "/content/drive/MyDrive/combined/509631443-9388_jpg.rf.33d4b74b8df4ec5eec7c2420c6c85194.jpg", - "response": "A forklift in a warehouse filled with wooden pallets.", - "id": 8738 - }, - { - "image_path": "/content/drive/MyDrive/combined/509821843-9691_jpg.rf.072ff71aaa50f4fad22bc3c7cc64f242.jpg", - "response": "a photo of a bathroom with a white toilet and sink", - "id": 8739 - }, - { - "image_path": "/content/drive/MyDrive/combined/509673909-8602_jpg.rf.26442f3b4ec227e13e17b8124454fdf3.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 8740 - }, - { - "image_path": "/content/drive/MyDrive/combined/509539409-851_jpg.rf.67696092c67cf2dad8afd8d62953acdf.jpg", - "response": "A blurry image of a warehouse with a man pushing a pallet jack in the background. The warehouse has a concrete floor and the walls are white. There are boxes stacked on the left side of the room and a rack on the right side. The pallet jack is made of metal and has two wheels.", - "id": 8741 - }, - { - "image_path": "/content/drive/MyDrive/combined/509838976-8862_jpg.rf.b5f01814a34d8c81c37bd601bc9fcaf6.jpg", - "response": "A long row of metal shelves filled with items.", - "id": 8742 - }, - { - "image_path": "/content/drive/MyDrive/combined/509863510-0136_jpg.rf.3bd0d966ef6a0dd05dce91de181d44d2.jpg", - "response": "A long aisle of shelves with white boxes on them.", - "id": 8743 - }, - { - "image_path": "/content/drive/MyDrive/combined/509505109-879_jpg.rf.32816412a8acbe9f8d8d3b4b296983f8.jpg", - "response": "A blurry image of a warehouse with pallets of goods stacked on the left and right side of the image. The floor is covered in a grey material.", - "id": 8744 - }, - { - "image_path": "/content/drive/MyDrive/combined/509981976-9003_jpg.rf.4ca0e3a07525e98e8220be401f310956.jpg", - "response": "A blurry image of a library. There are bookshelves on the left and right sides of the image. The bookshelves are filled with books. The floor is grey. There is a door at the end of the hallway.", - "id": 8745 - }, - { - "image_path": "/content/drive/MyDrive/combined/509505109-879_jpg.rf.dc75c074ebca0f4713181dccda88390e.jpg", - "response": "A room filled with boxes and machinery.", - "id": 8746 - }, - { - "image_path": "/content/drive/MyDrive/combined/509642309-8684_jpg.rf.776cbbea6d60e60a906e50001fc6d22a.jpg", - "response": "A long hallway with shelves on both sides filled with boxes.", - "id": 8747 - }, - { - "image_path": "/content/drive/MyDrive/combined/509562143-9351_jpg.rf.596d0bd3988908d4070530611a5bed6b.jpg", - "response": "A warehouse with tall shelves filled with boxes and wrapped items on pallets.", - "id": 8748 - }, - { - "image_path": "/content/drive/MyDrive/combined/509826044-0036_jpg.rf.1fa8f538433d524a3c27e07cf08b4dab.jpg", - "response": "A blurry image of a bus with a blue and white interior.", - "id": 8749 - }, - { - "image_path": "/content/drive/MyDrive/combined/509957043-9868_jpg.rf.105f010674ac921774e567459e78880f.jpg", - "response": "A warehouse with a lot of boxes stacked on shelves.", - "id": 8750 - }, - { - "image_path": "/content/drive/MyDrive/combined/509948643-9755_jpg.rf.a8201b2988d9265b327e47806ea2d860.jpg", - "response": "A large warehouse with shelves full of items.", - "id": 8751 - }, - { - "image_path": "/content/drive/MyDrive/combined/509690643-9528_jpg.rf.9f282df2f9cf1d9ebe698895e985f1ba.jpg", - "response": "A train station with a train on the left and right side of the room.", - "id": 8752 - }, - { - "image_path": "/content/drive/MyDrive/combined/509539409-851_jpg.rf.913a986669249ae266cd724dcbc90647.jpg", - "response": "A blurry image of a warehouse with a concrete floor. There are large boxes stacked on the left side of the image and a person standing in the middle of the room. There are also two other people standing further back in the room. There are shelves on the right side of the room with many boxes on them.", - "id": 8753 - }, - { - "image_path": "/content/drive/MyDrive/combined/503_png.rf.fbf72d148f9df77ccc550daadd424db6.jpg", - "response": "A person standing on a sidewalk next to a tree.", - "id": 8754 - }, - { - "image_path": "/content/drive/MyDrive/combined/510832110-5755_jpg.rf.8d6c1cd84d03ed76467793d0a734715d.jpg", - "response": "a warehouse with pallets and boxes stacked up and a fork lift in the background.", - "id": 8755 - }, - { - "image_path": "/content/drive/MyDrive/combined/510744477-0235_jpg.rf.36b7d380e57d8b6e089e4fa9422ffa1b.jpg", - "response": "a room with a bunch of washing machines in it", - "id": 8756 - }, - { - "image_path": "/content/drive/MyDrive/combined/510830077-6954_jpg.rf.6871b772ea0719772fc136e34f7fd904.jpg", - "response": "a warehouse with a forklift in the middle of it", - "id": 8757 - }, - { - "image_path": "/content/drive/MyDrive/combined/510739110-0724_jpg.rf.9b4799e64e5490e1aecab5474d67b218.jpg", - "response": "A fire hydrant is in a garage with a door and some boxes.", - "id": 8758 - }, - { - "image_path": "/content/drive/MyDrive/combined/510830077-6954_jpg.rf.5e22a0ee4ab847f3b2200c8ee637f027.jpg", - "response": "A large warehouse with a lot of shelving and pallets.", - "id": 8759 - }, - { - "image_path": "/content/drive/MyDrive/combined/510888310-2524_jpg.rf.ce8b657389d23b637957e48651f69554.jpg", - "response": "A large room with a metal shelf and boxes on it.", - "id": 8760 - }, - { - "image_path": "/content/drive/MyDrive/combined/510344577-3628_jpg.rf.85e8608bccf21f8721a140dd492229e2.jpg", - "response": "A large silver object is covered in many small black dots. It is sitting on a table.", - "id": 8761 - }, - { - "image_path": "/content/drive/MyDrive/combined/510739110-0724_jpg.rf.c30b2e2af77c48474416a307030101c4.jpg", - "response": "a building with a yellow and white wall", - "id": 8762 - }, - { - "image_path": "/content/drive/MyDrive/combined/510504710-0393_jpg.rf.4dc5cb09e1e2ac52b3fa96331cd17671.jpg", - "response": "A large warehouse with a lot of shelves.", - "id": 8763 - }, - { - "image_path": "/content/drive/MyDrive/combined/510875777-0441_jpg.rf.0ef9a4b16e7f05884d9b70692c7866f1.jpg", - "response": "A metal cage is stacked on a pallet.", - "id": 8764 - }, - { - "image_path": "/content/drive/MyDrive/combined/50_png.rf.1332fee789e1759f03eadbb0690bc233.jpg", - "response": "A man in a suit is standing in the middle of a street holding a stop sign. There are cars parked on the side of the street. There is a speed limit sign with the number 20 on it.", - "id": 8765 - }, - { - "image_path": "/content/drive/MyDrive/combined/510001109-9813_jpg.rf.509044dbce33bb4edd16e7ce317af214.jpg", - "response": "A box on a pallet in a warehouse.", - "id": 8766 - }, - { - "image_path": "/content/drive/MyDrive/combined/510200844-4493_jpg.rf.9f97d5649d375bdf24f4b069cdbceb7e.jpg", - "response": "A blurry image of a warehouse with a forklift in the background. The warehouse has a lot of shelving and boxes stacked on pallets. There is a person visible in the image, but they are not very clear. The image has a speckled appearance.", - "id": 8767 - }, - { - "image_path": "/content/drive/MyDrive/combined/510720944-0313_jpg.rf.c75211c19820fa5de71384234a686212.jpg", - "response": "A room with a white and yellow wall with a lot of black and white dots on the floor and ceiling. There is a table with chairs in the room and a clock on the wall.", - "id": 8768 - }, - { - "image_path": "/content/drive/MyDrive/combined/510196244-1362_jpg.rf.896b446c56c77cd825b978835a4357f1.jpg", - "response": "A warehouse with a forklift in the middle of it.", - "id": 8769 - }, - { - "image_path": "/content/drive/MyDrive/combined/510001109-9813_jpg.rf.c7e42feab455d90fa28b64867752a5d6.jpg", - "response": "A blurry photo of a person pulling a cart down a hallway.", - "id": 8770 - }, - { - "image_path": "/content/drive/MyDrive/combined/510390310-0553_jpg.rf.1677986c85893db90c02c65f278c4bb1.jpg", - "response": "a large room with a lot of boxes and crates in it", - "id": 8771 - }, - { - "image_path": "/content/drive/MyDrive/combined/510832110-5755_jpg.rf.44b0a0b20a160baca8c888d23ed5dec6.jpg", - "response": "A large warehouse with a lot of pallets and boxes stacked up.", - "id": 8772 - }, - { - "image_path": "/content/drive/MyDrive/combined/510235976-9717_jpg.rf.8752b7387782e82b18b45927c99adc52.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 8773 - }, - { - "image_path": "/content/drive/MyDrive/combined/510744477-0235_jpg.rf.668b9394384bc2a18202ba2679c854fd.jpg", - "response": "A room with a row of washing machines and dryers.", - "id": 8774 - }, - { - "image_path": "/content/drive/MyDrive/combined/510641877-0201_jpg.rf.5c79fb1bbf08ecda9ca45366f0847427.jpg", - "response": "a large room with a large orange piece of machinery in it", - "id": 8775 - }, - { - "image_path": "/content/drive/MyDrive/combined/510196244-1362_jpg.rf.01051516e38ef8ca4ba3b6d50e0a5bbb.jpg", - "response": "A blurry image of a warehouse with a fork lift on the right side of the room.", - "id": 8776 - }, - { - "image_path": "/content/drive/MyDrive/combined/510655611-0994_jpg.rf.5201581ba1874570bde630033e64e9a7.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 8777 - }, - { - "image_path": "/content/drive/MyDrive/combined/511_png.rf.f583d3dedd1f64a07e53e11bbd083730.jpg", - "response": "A window with a view of a tree and a bird feeder.", - "id": 8778 - }, - { - "image_path": "/content/drive/MyDrive/combined/510326376-9474_jpg.rf.155f95688848ae3c1dfdd3f5c5048314.jpg", - "response": "a room with a lot of boxes and crates inside of it", - "id": 8779 - }, - { - "image_path": "/content/drive/MyDrive/combined/510575810-0508_jpg.rf.c0581c296fc1492aee9ec009db67123b.jpg", - "response": "A large room with shelves and racks filled with items.", - "id": 8780 - }, - { - "image_path": "/content/drive/MyDrive/combined/510657944-0262_jpg.rf.743483cbc222cdc48ef68e4f53632b15.jpg", - "response": "A man in a yellow vest is standing in a room filled with boxes.", - "id": 8781 - }, - { - "image_path": "/content/drive/MyDrive/combined/510457110-0322_jpg.rf.c481eee3de2380eae0040b836e847529.jpg", - "response": "A warehouse with boxes and other items stacked on shelves.", - "id": 8782 - }, - { - "image_path": "/content/drive/MyDrive/combined/512_png.rf.6586d7e1799b8a90f2795da937c5f669.jpg", - "response": "A man in a white shirt and white hat is working on a wooden deck.", - "id": 8783 - }, - { - "image_path": "/content/drive/MyDrive/combined/510655611-0994_jpg.rf.e39b7b49759ad40af8a6a251f468a12b.jpg", - "response": "A blurry image of a warehouse filled with boxes and other items. There is a forklift in the middle of the room and several stacks of boxes on the shelves. The walls are white and the floor is grey. The whole image has a sparkly effect applied to it.", - "id": 8784 - }, - { - "image_path": "/content/drive/MyDrive/combined/510380776-956_jpg.rf.d9fdc988faf237ea601d2b2ca98977fc.jpg", - "response": "A room filled with boxes and other items wrapped in plastic.", - "id": 8785 - }, - { - "image_path": "/content/drive/MyDrive/combined/510_png.rf.cddb04eb530db26d517b0cae88c07ea7.jpg", - "response": "A person wearing a white hat and black pants is walking down a sidewalk.", - "id": 8786 - }, - { - "image_path": "/content/drive/MyDrive/combined/511_png.rf.9e4a596498227da974f006d1c2f7eec0.jpg", - "response": "A man wearing a white shirt and a green hat is working on a tree.", - "id": 8787 - }, - { - "image_path": "/content/drive/MyDrive/combined/510657944-0262_jpg.rf.b9830c4fefbc8d64ac36e3fa0818fcc2.jpg", - "response": "A man in a yellow vest is standing in a warehouse.", - "id": 8788 - }, - { - "image_path": "/content/drive/MyDrive/combined/510888310-2524_jpg.rf.ea898481c465be9c10fdbbd109418cd3.jpg", - "response": "A large room with a tall ceiling filled with shelves and racks.", - "id": 8789 - }, - { - "image_path": "/content/drive/MyDrive/combined/510_png.rf.af1ffc9d9c9b19928b0117661aa77fa4.jpg", - "response": "A man is standing in a yard holding a shovel.", - "id": 8790 - }, - { - "image_path": "/content/drive/MyDrive/combined/510678410-0943_jpg.rf.3b067f029b469f4530b06d33d4362461.jpg", - "response": "A blurry image of a room with a white wall and a glass wall. On the glass wall, there are many small black dots. On the white wall, there are two chairs and a table.", - "id": 8791 - }, - { - "image_path": "/content/drive/MyDrive/combined/510200844-4493_jpg.rf.12051aaa176d03b41af05607f0bfb6c8.jpg", - "response": "A blurry image of a large warehouse with a forklift in the background. The warehouse has a lot of storage shelves on the left side of the image and a large door on the right side. The floor is covered in a speckled pattern.", - "id": 8792 - }, - { - "image_path": "/content/drive/MyDrive/combined/510834310-0876_jpg.rf.7f71ec7827d24e7c7876636fdb7e4f9d.jpg", - "response": "a room with a lot of wooden benches and tables", - "id": 8793 - }, - { - "image_path": "/content/drive/MyDrive/combined/510646544-4627_jpg.rf.e67c86586619c3b82ef72c2e2280bede.jpg", - "response": "A room filled with a lot of boxes stacked up on the left side of the room.", - "id": 8794 - }, - { - "image_path": "/content/drive/MyDrive/combined/510720944-0313_jpg.rf.0a70be6abb6a82e3f5a0110634c3c036.jpg", - "response": "a room with a white and yellow wall and a white and yellow door", - "id": 8795 - }, - { - "image_path": "/content/drive/MyDrive/combined/513209486-9416_jpg.rf.1cc14d4f091de3643b9394188987c931.jpg", - "response": "a long hallway with many shelves on the sides", - "id": 8796 - }, - { - "image_path": "/content/drive/MyDrive/combined/510322177-2335_jpg.rf.aef4463be9953d915a1ea62746b3d046.jpg", - "response": "A warehouse filled with lots of boxes and pallets of goods.", - "id": 8797 - }, - { - "image_path": "/content/drive/MyDrive/combined/510380776-956_jpg.rf.26d6f8eb30c9941ae4c8cf3e9aaf00ad.jpg", - "response": "A room filled with boxes and furniture.", - "id": 8798 - }, - { - "image_path": "/content/drive/MyDrive/combined/510187710-0157_jpg.rf.6e89e9ddd77145f20c78cb116e411d1e.jpg", - "response": "A room filled with boxes and other items.", - "id": 8799 - }, - { - "image_path": "/content/drive/MyDrive/combined/510457110-0322_jpg.rf.008df3197e90e78d9da5c8d855dbbbd7.jpg", - "response": "A warehouse with a yellow rack system on the walls and a large machine in the middle of the room.", - "id": 8800 - }, - { - "image_path": "/content/drive/MyDrive/combined/510246510-0395_jpg.rf.56c47669d2c4c17cf52d573a853759da.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 8801 - }, - { - "image_path": "/content/drive/MyDrive/combined/510641877-0201_jpg.rf.34b103c5afad860d7d4631b06c073d0b.jpg", - "response": "A large piece of orange machinery in a room.", - "id": 8802 - }, - { - "image_path": "/content/drive/MyDrive/combined/510737977-0261_jpg.rf.1cfa64440f0b387c9ce515f962a0d6f9.jpg", - "response": "A laundry mat with multiple washing machines and dryers.", - "id": 8803 - }, - { - "image_path": "/content/drive/MyDrive/combined/510504710-0393_jpg.rf.596a0094ea1545a4b95f4a98eac22bd1.jpg", - "response": "A large warehouse with shelves full of boxes and items.", - "id": 8804 - }, - { - "image_path": "/content/drive/MyDrive/combined/510471844-172_jpg.rf.46442b4b776f930c123bfcaa7a575aa2.jpg", - "response": "A room filled with lots of items.", - "id": 8805 - }, - { - "image_path": "/content/drive/MyDrive/combined/510322177-2335_jpg.rf.1a265af29d1cde7c6a8feab7be7461a0.jpg", - "response": "A blurry image of a room with a person standing in it. The person is wearing a white shirt and is standing in front of a table with a bunch of boxes on it. The room is filled with boxes and there is a clock on the wall. The image is very grainy and has a lot of spots on it.", - "id": 8806 - }, - { - "image_path": "/content/drive/MyDrive/combined/510869644-0188_jpg.rf.ec770fd665d9dde0c3aa85aef486b06c.jpg", - "response": "A large room with tall shelves on the wall and a silver rack in the middle of the room.", - "id": 8807 - }, - { - "image_path": "/content/drive/MyDrive/combined/510015843-9887_jpg.rf.1d2be612eb62e99a7cf42b5603edfe4d.jpg", - "response": "A warehouse with tall shelves filled with boxes and other items.", - "id": 8808 - }, - { - "image_path": "/content/drive/MyDrive/combined/510834310-0876_jpg.rf.8d1ec8fc033d3c845613557237b1ed97.jpg", - "response": "A large room with a lot of boxes stacked up against the wall.", - "id": 8809 - }, - { - "image_path": "/content/drive/MyDrive/combined/513209486-9416_jpg.rf.5695f67ba695d510dd0bf6762dcd01f7.jpg", - "response": "A long hallway with metal walls and a white floor. The walls have shelves on them and there is a bright light at the end of the hallway.", - "id": 8810 - }, - { - "image_path": "/content/drive/MyDrive/combined/510235976-9717_jpg.rf.f67dc12fd56a773093c98efcf7e3de70.jpg", - "response": "a room with a bunch of boxes and a shelf", - "id": 8811 - }, - { - "image_path": "/content/drive/MyDrive/combined/510881977-0513_jpg.rf.4639a14ed228619617ab2d4aab80be3b.jpg", - "response": "A cluttered room with shelves and racks filled with items.", - "id": 8812 - }, - { - "image_path": "/content/drive/MyDrive/combined/510575810-0508_jpg.rf.a8a33f89482d727126c61b473f9c6fca.jpg", - "response": "A warehouse filled with lots of boxes and machinery.", - "id": 8813 - }, - { - "image_path": "/content/drive/MyDrive/combined/510740244-0055_jpg.rf.b06b78d2c33dd63917b613971c563858.jpg", - "response": "A man in a hi vis jacket and orange overalls is standing in a garage. The garage has a white and yellow wall and the floor is covered in small silver balls.", - "id": 8814 - }, - { - "image_path": "/content/drive/MyDrive/combined/510881977-0513_jpg.rf.7bd642fe9fb6a7e258717e7626897f08.jpg", - "response": "A large room with shelves and boxes.", - "id": 8815 - }, - { - "image_path": "/content/drive/MyDrive/combined/510015843-9887_jpg.rf.632c180282308d27c06539ca9bcd61db.jpg", - "response": "A blurry image of a narrow walkway with a wall on the left and shelves on the right. The floor is grey and the wall is a mix of grey and white. There are two doors at the end of the walkway, one is blue and the other is white. There are two large white boxes on the floor and a smaller one in the middle of the walkway. There are also several shelves on the right wall with items on them.", - "id": 8816 - }, - { - "image_path": "/content/drive/MyDrive/combined/510376843-9528_jpg.rf.49d45192ee26f0d112aa664763d8e351.jpg", - "response": "A large room with a lot of boxes stacked up against the wall.", - "id": 8817 - }, - { - "image_path": "/content/drive/MyDrive/combined/510326376-9474_jpg.rf.0cb03a31fae6c6e633193ae089e6cb6b.jpg", - "response": "A room filled with boxes and a table.", - "id": 8818 - }, - { - "image_path": "/content/drive/MyDrive/combined/513217153-9385_jpg.rf.ffbb7c83a1d06e8e6de4a2d4f2a68d57.jpg", - "response": "A room with rows of metal racks, filled with metal boxes.", - "id": 8819 - }, - { - "image_path": "/content/drive/MyDrive/combined/510203177-3654_jpg.rf.710759920950d278cbb361753d0e3558.jpg", - "response": "a forklift in a warehouse moving some pallets", - "id": 8820 - }, - { - "image_path": "/content/drive/MyDrive/combined/510737977-0261_jpg.rf.1842ee75d0e56aa7ef63408f8d7fa821.jpg", - "response": "A laundry mat with multiple washing machines and a yellow and white wall.", - "id": 8821 - }, - { - "image_path": "/content/drive/MyDrive/combined/510246510-0395_jpg.rf.7384e15a143b6171b019925e95768304.jpg", - "response": "A man in a yellow vest is driving a forklift in a warehouse. The warehouse has several racks and pallets of goods. The floor is grey and shiny.", - "id": 8822 - }, - { - "image_path": "/content/drive/MyDrive/combined/513187286-9281_jpg.rf.9730de12aaaeac1d6ec40d0728914f03.jpg", - "response": "a long room with blue doors and shelves on the walls", - "id": 8823 - }, - { - "image_path": "/content/drive/MyDrive/combined/510344577-3628_jpg.rf.bce47b26d373c237a89aa79cff7f45c0.jpg", - "response": "a room with a lot of shelves and boxes on the walls", - "id": 8824 - }, - { - "image_path": "/content/drive/MyDrive/combined/510740244-0055_jpg.rf.a678d4728eb83f392bbb1dcb1016836b.jpg", - "response": "A man in a warehouse on a lift next to a yellow wall.", - "id": 8825 - }, - { - "image_path": "/content/drive/MyDrive/combined/510203177-3654_jpg.rf.8bdf32fde44605688256fddcf599c924.jpg", - "response": "A forklift in a warehouse filled with pallets.", - "id": 8826 - }, - { - "image_path": "/content/drive/MyDrive/combined/510376843-9528_jpg.rf.9a7ed1be0d7927181ac1787e44e0cd96.jpg", - "response": "A room with a lot of boxes on the left and a rack on the right.", - "id": 8827 - }, - { - "image_path": "/content/drive/MyDrive/combined/510471844-172_jpg.rf.981ad6a5ccc6d847aa9669cbe49dd6eb.jpg", - "response": "A room with a black and white checkered floor.", - "id": 8828 - }, - { - "image_path": "/content/drive/MyDrive/combined/512_png.rf.09a310489840784cc93b420ab4079100.jpg", - "response": "A man wearing a white shirt and hat is standing on a wooden deck in the woods.", - "id": 8829 - }, - { - "image_path": "/content/drive/MyDrive/combined/510875777-0441_jpg.rf.05cf9b4549dda9a8ce3d70ae045d555a.jpg", - "response": "A large room with shelves and racks on the walls.", - "id": 8830 - }, - { - "image_path": "/content/drive/MyDrive/combined/510646544-4627_jpg.rf.ff56b819b5c2ba3e2d60fe1c7f62f05c.jpg", - "response": "A room with a grey floor and shelves. There are boxes on the floor and a rack with items on it. The room is very messy.", - "id": 8831 - }, - { - "image_path": "/content/drive/MyDrive/combined/510678410-0943_jpg.rf.4545ac1211013086f88a641f4021e4cd.jpg", - "response": "A large room with a bunch of boxes and some pallets.", - "id": 8832 - }, - { - "image_path": "/content/drive/MyDrive/combined/513217153-9385_jpg.rf.40ecea2406c6384a8ebac751c5852413.jpg", - "response": "a room with a white floor and shelves on the walls", - "id": 8833 - }, - { - "image_path": "/content/drive/MyDrive/combined/50_png.rf.21fe6d132950f7b28dbcae85cd1eef6e.jpg", - "response": "A man is standing in a parking lot with his hands on his hips. He is wearing a black shirt and grey shorts. There are cars parked in the lot. There is a speed limit sign next to the man. The speed limit is 20. There is a yellow line on the curb. There is a bench in the background.", - "id": 8834 - }, - { - "image_path": "/content/drive/MyDrive/combined/510390310-0553_jpg.rf.5a324435eba906ef91f1bbc3741667c9.jpg", - "response": "A man in a warehouse with a lot of boxes and other items.", - "id": 8835 - }, - { - "image_path": "/content/drive/MyDrive/combined/510869644-0188_jpg.rf.aa388bd24845274b6518aed631e59960.jpg", - "response": "A room with a blue and white wall and a metal shelf.", - "id": 8836 - }, - { - "image_path": "/content/drive/MyDrive/combined/510187710-0157_jpg.rf.c474e5cbb3aacc26fb1ed5666a9a302f.jpg", - "response": "A large warehouse with many items and furniture in it.", - "id": 8837 - }, - { - "image_path": "/content/drive/MyDrive/combined/513187286-9281_jpg.rf.f5947da272806a69390cb2a5f4f3de4c.jpg", - "response": "A long room with a row of tall shelves on the left and right side. The shelves are filled with boxes and the room has a metal door at the end of the room.", - "id": 8838 - }, - { - "image_path": "/content/drive/MyDrive/combined/513923116-6524_jpg.rf.a9d31d3875e2443dca8203b0513ca272.jpg", - "response": "A large warehouse with a wall of boxes stacked on pallets.", - "id": 8839 - }, - { - "image_path": "/content/drive/MyDrive/combined/516142600-9413_jpg.rf.736d2484049b472187f3f7f9a474d429.jpg", - "response": "a man walking in front of a tall metal cabinet with multiple doors, some of which are orange.", - "id": 8840 - }, - { - "image_path": "/content/drive/MyDrive/combined/513553964-0166_jpg.rf.28e4283cda6d0679f54068a467d50bab.jpg", - "response": "A row of shelves with many items on them.", - "id": 8841 - }, - { - "image_path": "/content/drive/MyDrive/combined/515530764-8825_jpg.rf.9ca51ac0b0481b1db7c1de4228f34c47.jpg", - "response": "The image is a warehouse with a metal frame on the left side and a tall building on the right side. The floor is covered with concrete slabs. The warehouse is filled with boxes and the metal frame has several pipes. There are two cars in the warehouse, one is parked on the left side and the other one is parked on the right side of the image.", - "id": 8842 - }, - { - "image_path": "/content/drive/MyDrive/combined/515540898-9654_jpg.rf.d9f3f3b74e31ad32cd4351d3ec6fe63b.jpg", - "response": "A large room with a lot of shelves and boxes.", - "id": 8843 - }, - { - "image_path": "/content/drive/MyDrive/combined/515910813-4289_jpg.rf.0ab206045fcd1489cc33d64743d0e99f.jpg", - "response": "A long narrow room with shelves on the left side and yellow walls on the right side.", - "id": 8844 - }, - { - "image_path": "/content/drive/MyDrive/combined/513515429-9278_jpg.rf.3a336fc0ac882141d51ce3d122c85d7b.jpg", - "response": "A man is standing in a room with shelves.", - "id": 8845 - }, - { - "image_path": "/content/drive/MyDrive/combined/515215955-4142_jpg.rf.c48db658c9da3327149e546020ca5497.jpg", - "response": "A blurry photo of a warehouse filled with pallets of goods.", - "id": 8846 - }, - { - "image_path": "/content/drive/MyDrive/combined/513923116-6524_jpg.rf.77b6c0759211110e67fcebf379304ecf.jpg", - "response": "A yellow box truck is parked on the street.", - "id": 8847 - }, - { - "image_path": "/content/drive/MyDrive/combined/513515429-9278_jpg.rf.f3e6db03889ae17333b889fe3530ce21.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 8848 - }, - { - "image_path": "/content/drive/MyDrive/combined/514_png.rf.654dcf63178d97ee235c31a686b2d581.jpg", - "response": "A shadow of a person standing on a sidewalk.", - "id": 8849 - }, - { - "image_path": "/content/drive/MyDrive/combined/513896916-6794_jpg.rf.9cb4bc4da8e290a7cd5cfd1b6b99343c.jpg", - "response": "A blurry image of a person in a room with a chair and a table.", - "id": 8850 - }, - { - "image_path": "/content/drive/MyDrive/combined/515197755-4334_jpg.rf.d20cee704d6368b19442fa8f62641a2b.jpg", - "response": "A warehouse with shelves full of boxes and a pallet in the middle of the room.", - "id": 8851 - }, - { - "image_path": "/content/drive/MyDrive/combined/513225219-8518_jpg.rf.8a74378e2213888344468bf3e2b52ccd.jpg", - "response": "A room with a silver floor and white walls.", - "id": 8852 - }, - { - "image_path": "/content/drive/MyDrive/combined/514294926-1294_jpg.rf.5347d5ceab8759f059abcd1b22c316f5.jpg", - "response": "a row of cages with dogs inside", - "id": 8853 - }, - { - "image_path": "/content/drive/MyDrive/combined/513798049-5848_jpg.rf.3ba94c19dbf5ca5ee74ba755e8b2fe0e.jpg", - "response": "a room with many boxes stacked on top of each other", - "id": 8854 - }, - { - "image_path": "/content/drive/MyDrive/combined/515540898-9654_jpg.rf.30e21ca6fbe55e3a03f163148985d321.jpg", - "response": "A blurry image of a warehouse with a walkway and shelves. The image is covered in dots.", - "id": 8855 - }, - { - "image_path": "/content/drive/MyDrive/combined/515217955-4198_jpg.rf.2f26e0c597a5aad4ed4e572fbb6b4cb0.jpg", - "response": "A forklift in a warehouse filled with boxes.", - "id": 8856 - }, - { - "image_path": "/content/drive/MyDrive/combined/515832480-4179_jpg.rf.6e6d57c7e10649998c7769ab7b9c4488.jpg", - "response": "A long aisle in a store with shelves on both sides.", - "id": 8857 - }, - { - "image_path": "/content/drive/MyDrive/combined/513832316-6866_jpg.rf.7930d95ae6cff8dc79ca4b9fe0a88f50.jpg", - "response": "A large warehouse with boxes stacked on pallets and shelves.", - "id": 8858 - }, - { - "image_path": "/content/drive/MyDrive/combined/514795644-4314_jpg.rf.950a40c51a38c0087c67cdcfc1e6ae15.jpg", - "response": "A blurry image of a storage room with metal shelves and rows of containers.", - "id": 8859 - }, - { - "image_path": "/content/drive/MyDrive/combined/513868716-6448_jpg.rf.cc71293ed2afc76cc7cccec617475251.jpg", - "response": "A large warehouse with a lot of boxes stacked on the left side of the room. The boxes are stacked on top of each other and are on a pallet. The room has a concrete floor and the walls are white. There are green metal shelves on the right side of the room. In the background, there is a door that is open.", - "id": 8860 - }, - { - "image_path": "/content/drive/MyDrive/combined/513872716-6436_jpg.rf.67fab3ce0c830ef5a138bdd199a29bec.jpg", - "response": "a long row of boxes (255,333),(739,831)", - "id": 8861 - }, - { - "image_path": "/content/drive/MyDrive/combined/513868716-6448_jpg.rf.d154e010785aa5171f6d2a885e643586.jpg", - "response": "A warehouse with boxes stacked on the left side of the room and a walkway down the middle of the room. The walkway is lined with green metal bars.", - "id": 8862 - }, - { - "image_path": "/content/drive/MyDrive/combined/513872716-6436_jpg.rf.08d4375a7669cba4e06084b3fc6044bd.jpg", - "response": "A long row of boxes and crates line the walls of a narrow room. The walls are a off yellow color and the room is narrow with a tall ceiling. The floor is a concrete grey color. There are two doors at the end of the room, one on the left and one on the right. The left door is closed and the right door is open. There are several boxes stacked on the floor in front of the crates and one in the middle of the room.", - "id": 8863 - }, - { - "image_path": "/content/drive/MyDrive/combined/513493429-9347_jpg.rf.6c9bc8715ffc56a7d71f4db5ed35130a.jpg", - "response": "A warehouse with shelves and racks filled with items.", - "id": 8864 - }, - { - "image_path": "/content/drive/MyDrive/combined/515480165-0557_jpg.rf.a23a50394761c6ff7aa758b73fb43aa9.jpg", - "response": "A room with a bunch of shelves and racks inside of it.", - "id": 8865 - }, - { - "image_path": "/content/drive/MyDrive/combined/514343326-1193_jpg.rf.d06e897f91aec95c6cb01da1bb439098.jpg", - "response": "A room with a white wall and a silver floor.", - "id": 8866 - }, - { - "image_path": "/content/drive/MyDrive/combined/515228155-4611_jpg.rf.87a65dd00028975fa10cba4f49e8e549.jpg", - "response": "A subway train on the tracks in a station.", - "id": 8867 - }, - { - "image_path": "/content/drive/MyDrive/combined/513570230-1615_jpg.rf.c5fb9da1023a171ca5ccd8437d950de4.jpg", - "response": "A long row of metal shelves filled with items.", - "id": 8868 - }, - { - "image_path": "/content/drive/MyDrive/combined/516358135-0886_jpg.rf.4c750b9e5281bc012f1d8629c5906a3c.jpg", - "response": "a room with a lot of boxes stacked up against the wall and on the floor. there is a pallet on the floor in the middle of the room.", - "id": 8869 - }, - { - "image_path": "/content/drive/MyDrive/combined/515_png.rf.5bb6fa88f669c3bccfbc4c560d9bcaf3.jpg", - "response": "A person is standing in a field of grass.", - "id": 8870 - }, - { - "image_path": "/content/drive/MyDrive/combined/515910813-4289_jpg.rf.01bec16156dca580b6566ae7b86fcc22.jpg", - "response": "A row of boxes on a shelf.", - "id": 8871 - }, - { - "image_path": "/content/drive/MyDrive/combined/515477964-8849_jpg.rf.35129067c44ac8d240253fd29b62ee55.jpg", - "response": "A large room with a tall ceiling and metal beams. The room is filled with shelves and racks holding various items. There are also several large containers in the room. The floor is covered in a gray material.", - "id": 8872 - }, - { - "image_path": "/content/drive/MyDrive/combined/515480165-0557_jpg.rf.cea9955770741e3b7142df0678c41fd7.jpg", - "response": "A room with a metal frame in the middle and shelves on the walls. The floor is covered in small black dots.", - "id": 8873 - }, - { - "image_path": "/content/drive/MyDrive/combined/513798049-5848_jpg.rf.c339476300c10bf426965a1138e01953.jpg", - "response": "A room filled with boxes and a chair.", - "id": 8874 - }, - { - "image_path": "/content/drive/MyDrive/combined/514827977-6139_jpg.rf.86adcf66079725045fe2aafd0e18402c.jpg", - "response": "A blurry image of a large walkway with a fire extinguisher on the wall.", - "id": 8875 - }, - { - "image_path": "/content/drive/MyDrive/combined/516383267-9726_jpg.rf.7639820fc3965679af0ca42eaab1ef4a.jpg", - "response": "A warehouse with a rack that has multiple containers on it.", - "id": 8876 - }, - { - "image_path": "/content/drive/MyDrive/combined/513_png.rf.fd48f4cea653b1843eb0d5522749fa06.jpg", - "response": "A snowy scene with a house and trees.", - "id": 8877 - }, - { - "image_path": "/content/drive/MyDrive/combined/514280659-237_jpg.rf.1af74bd1e51bbb64859ebd5b7afe0448.jpg", - "response": "a row of grey metal fencing separating a walkway from a storage area", - "id": 8878 - }, - { - "image_path": "/content/drive/MyDrive/combined/515908813-4224_jpg.rf.f8861e15656e546f2e83c4d25e830b4a.jpg", - "response": "a window with rain on it looking into a storage room with yellow shelves", - "id": 8879 - }, - { - "image_path": "/content/drive/MyDrive/combined/513493429-9347_jpg.rf.dbb840496914c9b76c9ce3a9518b3b64.jpg", - "response": "A man in a yellow vest is walking down a narrow aisle between two rows of shelves in a warehouse. The shelves are filled with crates and boxes. Some of the boxes have white labels on them. The man is wearing a watch on his left wrist.", - "id": 8880 - }, - { - "image_path": "/content/drive/MyDrive/combined/514294926-1294_jpg.rf.971a4cd22275e6e3fafb62a08d813ff4.jpg", - "response": "a row of metal doors with a lot of black dots covering the image", - "id": 8881 - }, - { - "image_path": "/content/drive/MyDrive/combined/515191622-5068_jpg.rf.d022a26d5028ba8522c300c49c1a7397.jpg", - "response": "a large room with many shelves and boxes on the shelves", - "id": 8882 - }, - { - "image_path": "/content/drive/MyDrive/combined/514262326-1186_jpg.rf.9ca8781cfb1f3ec9c525415cddf76cbd.jpg", - "response": "A row of blue metal racks in a warehouse.", - "id": 8883 - }, - { - "image_path": "/content/drive/MyDrive/combined/515908813-4224_jpg.rf.aed88151e4c09013521c99bfad5c58c7.jpg", - "response": "A train on a track going through a tunnel.", - "id": 8884 - }, - { - "image_path": "/content/drive/MyDrive/combined/515530764-8825_jpg.rf.51e4b37752ce738c43d29527de73f5cc.jpg", - "response": "a warehouse with a lot of shelves and racks", - "id": 8885 - }, - { - "image_path": "/content/drive/MyDrive/combined/515228155-4611_jpg.rf.e31bc0a8b5db48425bcc2765fd2d1e86.jpg", - "response": "A train is on the tracks in a station.", - "id": 8886 - }, - { - "image_path": "/content/drive/MyDrive/combined/513225219-8518_jpg.rf.9e5ce36e7732f84bd29c24f1bf94ad55.jpg", - "response": "a large warehouse with a lot of shelves and racks filled with items.", - "id": 8887 - }, - { - "image_path": "/content/drive/MyDrive/combined/514343326-1193_jpg.rf.0d485ad21c7365b5ac04c98eb173acac.jpg", - "response": "A white wall with many holes in it.", - "id": 8888 - }, - { - "image_path": "/content/drive/MyDrive/combined/514805777-2398_jpg.rf.42a3a0fbce0ac094a36cab789079c8c5.jpg", - "response": "A blurry image of a warehouse with a lot of boxes stacked up. The image is slightly grainy and has a lot of spots on it.", - "id": 8889 - }, - { - "image_path": "/content/drive/MyDrive/combined/515217955-4198_jpg.rf.d5358c6016eb04741124bf28c8123133.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 8890 - }, - { - "image_path": "/content/drive/MyDrive/combined/513814182-5612_jpg.rf.5a6c57c6caa999d3c7ea4c16ebdff5df.jpg", - "response": "A woman in blue jeans standing next to a cage with a dog inside.", - "id": 8891 - }, - { - "image_path": "/content/drive/MyDrive/combined/516491968-5364_jpg.rf.154448f154ef49d25984358058cf8233.jpg", - "response": "A warehouse with a gray speckled floor and tall pallets of boxes stacked up against the wall.", - "id": 8892 - }, - { - "image_path": "/content/drive/MyDrive/combined/515197755-4334_jpg.rf.8279316076c614e550dec1da63203a0f.jpg", - "response": "A rain covered street with a warehouse on the left side of the image. The street is empty and the warehouse has a lot of boxes stacked up. The boxes are covered in a white tarp and there is a green pole in the middle of the street. The image is covered in raindrops.", - "id": 8893 - }, - { - "image_path": "/content/drive/MyDrive/combined/515_png.rf.52a27e959ab6fd1da0efa98395910b47.jpg", - "response": "A tree branch with many small leaves on it.", - "id": 8894 - }, - { - "image_path": "/content/drive/MyDrive/combined/514827977-6139_jpg.rf.2ef71c12e4e544dde757163c320aa2d1.jpg", - "response": "A blurry image of a room with a white door and a green pole. There are many small black dots covering the entire image.", - "id": 8895 - }, - { - "image_path": "/content/drive/MyDrive/combined/514262326-1186_jpg.rf.6c2199b5c1743bcc7199cdea817a341c.jpg", - "response": "a person in a warehouse filled with pallets of goods", - "id": 8896 - }, - { - "image_path": "/content/drive/MyDrive/combined/514805777-2398_jpg.rf.94a441cb09a106b0d049aaa0a3163583.jpg", - "response": "A blurry image of a city street with a bench on the left side of the street. The street is made of bricks and has a light grey color. The bench is made of wood and has a brown color. The street is surrounded by buildings on both sides. The image is covered in black and white dots.", - "id": 8897 - }, - { - "image_path": "/content/drive/MyDrive/combined/514280659-237_jpg.rf.693355c31a1b84fcc64dfa1038142417.jpg", - "response": "The image shows a long row of black grated doors. The doors are closed and are situated in a hallway. The hallway is empty and has a white floor. The grated doors are on the left side of the hallway. The door in the middle of the row has a yellow ball in front of it. There is a door to the right of the row of doors. The image has a digital look to it with a bunch of dots.", - "id": 8898 - }, - { - "image_path": "/content/drive/MyDrive/combined/516383267-9726_jpg.rf.69033c6714ea4f0d5b9f9153d4cc87fb.jpg", - "response": "A rain covered window looking out on a loading dock with a yellow railing.", - "id": 8899 - }, - { - "image_path": "/content/drive/MyDrive/combined/516459068-6047_jpg.rf.6c95b8bbbcdac5bfc45bf0fdaf07b2cb.jpg", - "response": "A large room filled with lots of boxes stacked on top of each other.", - "id": 8900 - }, - { - "image_path": "/content/drive/MyDrive/combined/513_png.rf.2bda5306efcfbedaca94b44813b1ff88.jpg", - "response": "A snowy scene with trees and people walking on a path.", - "id": 8901 - }, - { - "image_path": "/content/drive/MyDrive/combined/516358135-0886_jpg.rf.32b1bd57c98e8f166b0c1910d22b8620.jpg", - "response": "A alleyway with a building on the left and a building on the right. In the alleyway there is a pallet and a blue door.", - "id": 8902 - }, - { - "image_path": "/content/drive/MyDrive/combined/514284859-2346_jpg.rf.3f0587bc62d64df93adfe6795632d4b5.jpg", - "response": "a row of metal cages on a wall", - "id": 8903 - }, - { - "image_path": "/content/drive/MyDrive/combined/513570230-1615_jpg.rf.1530feb8160525d3e2466bace53ed64f.jpg", - "response": "A long row of metal shelves filled with boxes.", - "id": 8904 - }, - { - "image_path": "/content/drive/MyDrive/combined/516447400-977_jpg.rf.64d6b4006089f476170b2530247779cc.jpg", - "response": "a man standing in a room with a lot of boxes", - "id": 8905 - }, - { - "image_path": "/content/drive/MyDrive/combined/514284859-2346_jpg.rf.92e2c73125e5b7302aafe6a604b64ae5.jpg", - "response": "a long hallway with a fence on the left side of it", - "id": 8906 - }, - { - "image_path": "/content/drive/MyDrive/combined/513553964-0166_jpg.rf.f0a3f4acfea28270e54e1d22c229ae82.jpg", - "response": "A blurry image of a walkway between tall shelves. The walkway is white and has a grid pattern. The shelves are tall and have a blue and silver color. The image is covered in black dots.", - "id": 8907 - }, - { - "image_path": "/content/drive/MyDrive/combined/516491968-5364_jpg.rf.ed3b244ab903cd0f4242e0430877da71.jpg", - "response": "A room filled with lots of boxes stacked up on each other.", - "id": 8908 - }, - { - "image_path": "/content/drive/MyDrive/combined/513896916-6794_jpg.rf.c9b1ce62523dee224f169d3020e9c57c.jpg", - "response": "A man standing in a room with a box.", - "id": 8909 - }, - { - "image_path": "/content/drive/MyDrive/combined/513832316-6866_jpg.rf.8ac67a89e1351e79c6b7506336ff3323.jpg", - "response": "A large room with a lot of boxes stacked on pallets.", - "id": 8910 - }, - { - "image_path": "/content/drive/MyDrive/combined/513814182-5612_jpg.rf.4d30425d05c112375f7c098a44c5831f.jpg", - "response": "A person standing next to a cage with a dog inside.", - "id": 8911 - }, - { - "image_path": "/content/drive/MyDrive/combined/516142600-9413_jpg.rf.c0d0449b860a7bfa1bbd2131d76b1b9b.jpg", - "response": "a man walking in a room with a bunch of orange and grey boxes stacked up against the wall.", - "id": 8912 - }, - { - "image_path": "/content/drive/MyDrive/combined/515477964-8849_jpg.rf.563f7a1317b1050a55ddaa9d7494eed4.jpg", - "response": "A large warehouse with shelves full of items.", - "id": 8913 - }, - { - "image_path": "/content/drive/MyDrive/combined/515191622-5068_jpg.rf.8b8548f7d9b671cba92da191a34262ca.jpg", - "response": "A large industrial warehouse with a tall shelf.", - "id": 8914 - }, - { - "image_path": "/content/drive/MyDrive/combined/515832480-4179_jpg.rf.4be2f2c502e8818e4f2ed55319b2fc05.jpg", - "response": "A long row of green metal shelves filled with boxes.", - "id": 8915 - }, - { - "image_path": "/content/drive/MyDrive/combined/514_png.rf.1330547540171ce7ac3b36dae977ab96.jpg", - "response": "A man in a blue shirt is standing on a sidewalk.", - "id": 8916 - }, - { - "image_path": "/content/drive/MyDrive/combined/516459068-6047_jpg.rf.c20a35a9bc8970fd90f1972da96e53c6.jpg", - "response": "A room with a bunch of boxes stacked up against the wall.", - "id": 8917 - }, - { - "image_path": "/content/drive/MyDrive/combined/516447400-977_jpg.rf.8ff7ba6ac83065f900017dcbe0e7a821.jpg", - "response": "A man standing in a room with a lot of confetti on the ground.", - "id": 8918 - }, - { - "image_path": "/content/drive/MyDrive/combined/515215955-4142_jpg.rf.9381aa6bb387a5fa042de60be1ea64cd.jpg", - "response": "A blurry image of a train with many seats.", - "id": 8919 - }, - { - "image_path": "/content/drive/MyDrive/combined/514795644-4314_jpg.rf.71340aefc9ce421b3e827d51e913ceb0.jpg", - "response": "A train is going down the tracks in a warehouse.", - "id": 8920 - }, - { - "image_path": "/content/drive/MyDrive/combined/544_png.rf.5c5d5538132579c7a7415199139492c3.jpg", - "response": "a man(623,503),(791,997) walking a dog", - "id": 8921 - }, - { - "image_path": "/content/drive/MyDrive/combined/531_png.rf.d8e0d2cefe14a6578a662a83be82f825.jpg", - "response": "A black and white checkered floor with a person standing on it.", - "id": 8922 - }, - { - "image_path": "/content/drive/MyDrive/combined/516495301-3976_jpg.rf.076fbb9660e34ba6fc3d86a42463f7ae.jpg", - "response": "The image is a grainy photo of a man walking through a warehouse. The warehouse has white walls and grey floors. The man is wearing black pants and a black shirt. He is walking through the warehouse near a wall of white boxes. The boxes are stacked three high and are labeled with blue text. The photo is taken from a low angle, looking up at the man.", - "id": 8923 - }, - { - "image_path": "/content/drive/MyDrive/combined/527_png.rf.9ccceb020fd418bca4fa499854588c05.jpg", - "response": "A man is standing on a stage under a string of lights.", - "id": 8924 - }, - { - "image_path": "/content/drive/MyDrive/combined/516502601-3248_jpg.rf.332d468b16c367e27d6a4f6fd41f30c0.jpg", - "response": "A room with many boxes stacked on pallets against the wall.", - "id": 8925 - }, - { - "image_path": "/content/drive/MyDrive/combined/521_png.rf.470d2ebfcb9c7777e56849369163d317.jpg", - "response": "A woman is walking down a sidewalk holding a tennis racket.", - "id": 8926 - }, - { - "image_path": "/content/drive/MyDrive/combined/541_png.rf.5d3a9b000e92053b9b1ab6eddfddcd20.jpg", - "response": "A blurry photo of a woman standing in front of a row of kiosks.", - "id": 8927 - }, - { - "image_path": "/content/drive/MyDrive/combined/533_png.rf.e3ddcfaf3d1b376b2c9475b92fc18406.jpg", - "response": "A blurry image of a man and a woman sitting at a table with a glass of wine in front of them. The glass has a red substance in it. The man is wearing a black shirt and the woman is wearing a white shirt. They are sitting at a table with a white tablecloth. The image is blurry and has a lot of spots on it.", - "id": 8928 - }, - { - "image_path": "/content/drive/MyDrive/combined/527_png.rf.2be2919f4dff5513ce7f65cc73e87ac9.jpg", - "response": "A man is seen in a grainy security camera image, walking across a wooden deck. The image is black and white and there are lights strung above the deck.", - "id": 8929 - }, - { - "image_path": "/content/drive/MyDrive/combined/516536535-0766_jpg.rf.3ac1537802f3186ee7a56621b0a6d7bd.jpg", - "response": "A pallet with a white barrel on it.", - "id": 8930 - }, - { - "image_path": "/content/drive/MyDrive/combined/540_png.rf.3066e6fe78f6d9395da7dfe963bbac51.jpg", - "response": "A woman wearing a black coat and blue pants is walking down a street. She is pulling a suitcase and holding a plastic bag.", - "id": 8931 - }, - { - "image_path": "/content/drive/MyDrive/combined/530_png.rf.d748e96d9a96bf639a037edf4f12e102.jpg", - "response": "a person(398,256),(521,619) walking in front of a car", - "id": 8932 - }, - { - "image_path": "/content/drive/MyDrive/combined/542_png.rf.9587812ed0b2e024e75e721fef8d52ba.jpg", - "response": "A man is standing in a garage, throwing a frisbee.", - "id": 8933 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_png.rf.904f8bc44e823be6a0c2339c20775696.jpg", - "response": "A woman wearing a black coat and white trainers is seen on CCTV walking along a path", - "id": 8934 - }, - { - "image_path": "/content/drive/MyDrive/combined/53_png.rf.bb56d4d4ef040e6670dc5c65e9f38ff5.jpg", - "response": "A man in a convenience store looking at the camera.", - "id": 8935 - }, - { - "image_path": "/content/drive/MyDrive/combined/534_png.rf.1fde08ad1c91233bb14e89ffe883690c.jpg", - "response": "A small child is standing on a trampoline and holding a stuffed animal.", - "id": 8936 - }, - { - "image_path": "/content/drive/MyDrive/combined/525_png.rf.95d1b1aa015653e91fd811f50270b6c3.jpg", - "response": "A man walking towards a yellow bus on the sidewalk.", - "id": 8937 - }, - { - "image_path": "/content/drive/MyDrive/combined/547_png.rf.eb25c87d9cf06773f1fc307dd632fb91.jpg", - "response": "a man wearing a black jacket and a blue hat climbing a white fence", - "id": 8938 - }, - { - "image_path": "/content/drive/MyDrive/combined/523_png.rf.95e1dafd91a4198944ac9fcf4090e61d.jpg", - "response": "A red van is parked on the side of the road.", - "id": 8939 - }, - { - "image_path": "/content/drive/MyDrive/combined/517_png.rf.2a79ebae12a1a6882b32cb4302eb58f6.jpg", - "response": "A parking lot with a car and a bicycle.", - "id": 8940 - }, - { - "image_path": "/content/drive/MyDrive/combined/53_png.rf.7a341abb075f611ef8c9ef925cbf903b.jpg", - "response": "A man in a black jacket is standing in a store.", - "id": 8941 - }, - { - "image_path": "/content/drive/MyDrive/combined/536_png.rf.f544887f15a4ce198251023ef460179b.jpg", - "response": "A man in a black shirt standing in front of a store.", - "id": 8942 - }, - { - "image_path": "/content/drive/MyDrive/combined/516522667-9887_jpg.rf.29f6eb78142c62e83486cd78de9f8f92.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 8943 - }, - { - "image_path": "/content/drive/MyDrive/combined/521_png.rf.690f1a204ab19adc941a2e51a1af2dc2.jpg", - "response": "a person skating on a sidewalk", - "id": 8944 - }, - { - "image_path": "/content/drive/MyDrive/combined/51_png.rf.377c12c951b65a73e45ae6e96f85f96c.jpg", - "response": "A man(190,511),(414,976) is holding a baseball bat", - "id": 8945 - }, - { - "image_path": "/content/drive/MyDrive/combined/516547068-0649_jpg.rf.f1374aa9a19feb48580d418b2c021f88.jpg", - "response": "A forklift is parked in a large building.", - "id": 8946 - }, - { - "image_path": "/content/drive/MyDrive/combined/516497435-1193_jpg.rf.99a2d47ef82d131c5d944fefe5c2f0a7.jpg", - "response": "A man in a black jacket and hat walking through a warehouse.", - "id": 8947 - }, - { - "image_path": "/content/drive/MyDrive/combined/543_png.rf.9d6d93c4d0c34dc08deffe024cb1c847.jpg", - "response": "a man wearing a black shirt and grey pants is walking across a blacktop area", - "id": 8948 - }, - { - "image_path": "/content/drive/MyDrive/combined/530_png.rf.362b4d0ebf1f2428df797e0064878569.jpg", - "response": "A blurry image of a person standing in the middle of a street. The person is wearing all black and is holding a backpack. There is a white car on the right side of the image and a building in the background. There are also two pumpkins in the scene, one on the left side of the building and one on the right side of the building. The image has a rain effect applied to it.", - "id": 8949 - }, - { - "image_path": "/content/drive/MyDrive/combined/537_png.rf.51ae26cc89335ccf4bb7e31c33d759f5.jpg", - "response": "A person wearing a pink shirt is running down a street.", - "id": 8950 - }, - { - "image_path": "/content/drive/MyDrive/combined/535_png.rf.f79cd3916217301f2bb8286972f2ffb1.jpg", - "response": "A bird is flying in a room.", - "id": 8951 - }, - { - "image_path": "/content/drive/MyDrive/combined/543_png.rf.a23a39405147ac9e8e2c1916543839f7.jpg", - "response": "A man in a grey shirt and black pants is running away from a building. He is on a rooftop and there is a white border around him. There is a white arrow on the ground pointing to the right. There is text at the top of the image that says \"FAILARMY ULTIMATE SECURITY CAMERA FAILS\"", - "id": 8952 - }, - { - "image_path": "/content/drive/MyDrive/combined/542_png.rf.365476e8dad31b296001764a76fded42.jpg", - "response": "A man standing in a room with a bunch of black dots floating around him.", - "id": 8953 - }, - { - "image_path": "/content/drive/MyDrive/combined/536_png.rf.1d32b217f3759aa3d4cf99e68f05d52a.jpg", - "response": "A child in a purple shirt standing in front of a wall with a purple and blue design.", - "id": 8954 - }, - { - "image_path": "/content/drive/MyDrive/combined/516536535-0766_jpg.rf.1890c71a6bd8b832614b57513dad3c4b.jpg", - "response": "A forklift is parked in a large room filled with pallets and boxes.", - "id": 8955 - }, - { - "image_path": "/content/drive/MyDrive/combined/522_png.rf.67cb474bcdaa895527fad9c8f594a4a1.jpg", - "response": "A man walking towards a red van parked on the side of the road.", - "id": 8956 - }, - { - "image_path": "/content/drive/MyDrive/combined/520_png.rf.6c9c5d5dfcce00d4b57044c3948dbb22.jpg", - "response": "a person is riding a skateboard down the street", - "id": 8957 - }, - { - "image_path": "/content/drive/MyDrive/combined/538_png.rf.d41d7b9765e4eb82d7392037bee9525d.jpg", - "response": "A man in a blue shirt is walking away from the camera. He is standing in front of a wall that has a white curtain on it. The curtain is blowing in the wind and there are many small black dots covering the image.", - "id": 8958 - }, - { - "image_path": "/content/drive/MyDrive/combined/524_png.rf.b73a1bd1ba789e412f961ed822e35448.jpg", - "response": "A black car is parked in a driveway.", - "id": 8959 - }, - { - "image_path": "/content/drive/MyDrive/combined/547_png.rf.e632be9d81ab880fac68e1319915694d.jpg", - "response": "A man wearing a black jacket and a hat is holding a dog.", - "id": 8960 - }, - { - "image_path": "/content/drive/MyDrive/combined/548_png.rf.eb9cd153cb6539240e2972991d7934bb.jpg", - "response": "A woman in a room with a table of Christmas decorations.", - "id": 8961 - }, - { - "image_path": "/content/drive/MyDrive/combined/519_png.rf.5e9c21d1bcee3b60252961048336eea0.jpg", - "response": "A man walking down a rain soaked street.", - "id": 8962 - }, - { - "image_path": "/content/drive/MyDrive/combined/51_png.rf.ba8c745dfac7518f4b2019e3694ccdbd.jpg", - "response": "A man in a black jacket is standing on the street.", - "id": 8963 - }, - { - "image_path": "/content/drive/MyDrive/combined/545_png.rf.09b8de313c11d74e7043c10062aaab3d.jpg", - "response": "A man standing in the rain next to a car.", - "id": 8964 - }, - { - "image_path": "/content/drive/MyDrive/combined/535_png.rf.002d14567c69bd99889486eb7b5362e4.jpg", - "response": "A man in a grey shirt is holding a sledgehammer and breaking a window.", - "id": 8965 - }, - { - "image_path": "/content/drive/MyDrive/combined/525_png.rf.7213f73cd730c063ea3fa9971577b31c.jpg", - "response": "A black and white dog standing on top of a street.", - "id": 8966 - }, - { - "image_path": "/content/drive/MyDrive/combined/516502601-3248_jpg.rf.6ed7e91197a4ae713b35c8fd4ff0df1c.jpg", - "response": "A long row of boxes with the word hitichv on them.", - "id": 8967 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_png.rf.8232b0bb27d110e61e747c4c479fbcd4.jpg", - "response": "The image shows two dogs playing on a driveway. One dog is on the left side of the image, closer to the foreground, and the other dog is on the right side of the image. They are both standing on the driveway, which is made of asphalt and has a pattern of small black dots on it. The driveway is surrounded by grass, with some of it visible near the edges of the image.", - "id": 8968 - }, - { - "image_path": "/content/drive/MyDrive/combined/520_png.rf.ea98bb2cbee0c124119a78a71ef3fcdd.jpg", - "response": "a person skating on a sidewalk", - "id": 8969 - }, - { - "image_path": "/content/drive/MyDrive/combined/516_png.rf.f1e7a64a8921d42d710739df9a25d7a2.jpg", - "response": "A man standing in the woods with a gun.", - "id": 8970 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_png.rf.9ff6ea9edce047562020caf6e8844627.jpg", - "response": "A black bear is sitting on the side of the road.", - "id": 8971 - }, - { - "image_path": "/content/drive/MyDrive/combined/529_png.rf.fcf44dea19606302a4f07f2c7ce1af6a.jpg", - "response": "A man walking down a street next to a truck.", - "id": 8972 - }, - { - "image_path": "/content/drive/MyDrive/combined/516_png.rf.a0d1ee0b8455080c4b70c462c5ed5129.jpg", - "response": "A man and a woman standing on a bridge in the woods.", - "id": 8973 - }, - { - "image_path": "/content/drive/MyDrive/combined/528_png.rf.88f7dcfd81c12aa2cd3bf006aff2ccf3.jpg", - "response": "A woman is standing at a counter in a room.", - "id": 8974 - }, - { - "image_path": "/content/drive/MyDrive/combined/533_png.rf.27fd2551c23a192ca7c0e36474643e61.jpg", - "response": "A fire hydrant is on a small dirt path.", - "id": 8975 - }, - { - "image_path": "/content/drive/MyDrive/combined/523_png.rf.8dba85fc1126be28d47ce53e0540413c.jpg", - "response": "A man in a brown jacket is standing on the side of a red van that is parked on the side of the road. The van is red and appears to be a small recreational vehicle. The man is holding a cell phone in his hand and appears to be taking a picture of the van. The image has a slightly grainy texture.", - "id": 8976 - }, - { - "image_path": "/content/drive/MyDrive/combined/519_png.rf.105da6bd471a86948f3b5719e38385e0.jpg", - "response": "a blurry photo of a street with a red car driving down the street and a person walking across the street", - "id": 8977 - }, - { - "image_path": "/content/drive/MyDrive/combined/522_png.rf.f3a8960af8d5c3e0cf2108b234b28c34.jpg", - "response": "A red van is driving down a road.", - "id": 8978 - }, - { - "image_path": "/content/drive/MyDrive/combined/539_png.rf.17e356bf7f16825698c55fac727067d5.jpg", - "response": "A couple of men standing in front of a white trailer.", - "id": 8979 - }, - { - "image_path": "/content/drive/MyDrive/combined/534_png.rf.66ab609c2f2d40f6a4db9ca7f135f832.jpg", - "response": "A man in a green shirt and blue jeans is playing tennis.", - "id": 8980 - }, - { - "image_path": "/content/drive/MyDrive/combined/528_png.rf.f0fd19c181ee526fb30ca5bcef0e9443.jpg", - "response": "A group of people sitting at a table in a room.", - "id": 8981 - }, - { - "image_path": "/content/drive/MyDrive/combined/516547068-0649_jpg.rf.f9f69cd91e8c3d32b3638a4d86e75763.jpg", - "response": "A large blue machine in a room.", - "id": 8982 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_png.rf.33bcb1b6b18b4d363edeb31a18a9c22e.jpg", - "response": "A man walking down a sidewalk next to a fence.", - "id": 8983 - }, - { - "image_path": "/content/drive/MyDrive/combined/518_png.rf.983e9df9d8bc39df362886beafef5855.jpg", - "response": "A man standing between two cars with one of the cars door open.", - "id": 8984 - }, - { - "image_path": "/content/drive/MyDrive/combined/540_png.rf.7f484a2c1e61ecf3a03d3d1cb8e6c4c4.jpg", - "response": "a person walking down a sidewalk holding a hand of a child", - "id": 8985 - }, - { - "image_path": "/content/drive/MyDrive/combined/516522667-9887_jpg.rf.1916f27fbcbf3bd504b217aacfd9a3d5.jpg", - "response": "A warehouse with a row of large boxes stacked on wooden pallets.", - "id": 8986 - }, - { - "image_path": "/content/drive/MyDrive/combined/529_png.rf.0026f3215ecf96ac0f064d2848d4f44b.jpg", - "response": "A man standing next to a pile of luggage.", - "id": 8987 - }, - { - "image_path": "/content/drive/MyDrive/combined/526_png.rf.026e4868a96abae75f6966ef7c253564.jpg", - "response": "A man wearing a white shirt is standing outside of a building.", - "id": 8988 - }, - { - "image_path": "/content/drive/MyDrive/combined/541_png.rf.5c88f890347466e848370d031bf343c5.jpg", - "response": "The image is a blurry photo of a woman standing in front of a row of electronic kiosks. The kiosks are placed in a hallway and have a monitor on top of them. The woman is wearing a black shirt and has her hands in her pockets.", - "id": 8989 - }, - { - "image_path": "/content/drive/MyDrive/combined/526_png.rf.5a2faf621f51d3c0647387ea4e3da028.jpg", - "response": "A man standing under a white umbrella in front of a building.", - "id": 8990 - }, - { - "image_path": "/content/drive/MyDrive/combined/544_png.rf.9b9b90ef9298f2240c38fc324368adf8.jpg", - "response": "A man walking his dog on a lead.", - "id": 8991 - }, - { - "image_path": "/content/drive/MyDrive/combined/516495301-3976_jpg.rf.61ce452ee562bace78757df073963fe0.jpg", - "response": "A man in a suit walking through a warehouse filled with boxes.", - "id": 8992 - }, - { - "image_path": "/content/drive/MyDrive/combined/531_png.rf.4b8017988be78fa13a39e58c2835cf7c.jpg", - "response": "A man standing in a toy filled living room.", - "id": 8993 - }, - { - "image_path": "/content/drive/MyDrive/combined/546_png.rf.d9d2f2df044b6d3e7746fe640e09db79.jpg", - "response": "A car is shown in a parking garage. The car is white and is shown in a close up view. The image is grainy and the car is surrounded by other cars.", - "id": 8994 - }, - { - "image_path": "/content/drive/MyDrive/combined/545_png.rf.8d4005a95c29153a23d80a5128aa3b14.jpg", - "response": "A man standing next to a car holding a box.", - "id": 8995 - }, - { - "image_path": "/content/drive/MyDrive/combined/546_png.rf.cbdb676a62112c21210496b0a8460c79.jpg", - "response": "a white car parked in a parking lot", - "id": 8996 - }, - { - "image_path": "/content/drive/MyDrive/combined/538_png.rf.82aa67681123742aebb7cd3f9a6c42fc.jpg", - "response": "A man in a blue shirt is running on a road.", - "id": 8997 - }, - { - "image_path": "/content/drive/MyDrive/combined/516497435-1193_jpg.rf.e90777ef585f0689f2b84fd83eda71b6.jpg", - "response": "a man walking through a warehouse filled with pallets of boxes", - "id": 8998 - }, - { - "image_path": "/content/drive/MyDrive/combined/517_png.rf.afbfe8c0052c5a9c19c05a5c97829eb8.jpg", - "response": "A car is parked in a parking lot next to a forest. The ground is covered in a layer of black and white speckled balls. There are a few people in the scene, one is standing near the car and another one is further away in the background.", - "id": 8999 - }, - { - "image_path": "/content/drive/MyDrive/combined/539_png.rf.b6413cc455fca60f7cd9cc03b26a987b.jpg", - "response": "man(167,367),(409,924) in black shirt", - "id": 9000 - }, - { - "image_path": "/content/drive/MyDrive/combined/518_png.rf.801b0a06962ea9cb4272c43a24944a79.jpg", - "response": "A red car is parked in a driveway next to a black car.", - "id": 9001 - }, - { - "image_path": "/content/drive/MyDrive/combined/537_png.rf.cad9df6aaa79146323df98e9a9a8f190.jpg", - "response": "A blurry image of a person riding a skateboard.", - "id": 9002 - }, - { - "image_path": "/content/drive/MyDrive/combined/524_png.rf.1e135d95157d7a0587b764f1dbe4f195.jpg", - "response": "A black dog is standing on the back of a black truck. The dog is facing left. There is a car in the background. The car is facing right. There is a house in the background. The house has a white fence. There is a tree in front of the house. The tree is leafy. The sky is blue.", - "id": 9003 - }, - { - "image_path": "/content/drive/MyDrive/combined/554_png.rf.25eb42aa8b6b81a9787ea16536c5a2ab.jpg", - "response": "A man is standing in a room with a shiny wall.", - "id": 9004 - }, - { - "image_path": "/content/drive/MyDrive/combined/551_png.rf.f9d9eb93e343cc10c5b23d5a3454aa8e.jpg", - "response": "A close up of a shower head with water droplets coming out of it.", - "id": 9005 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_png.rf.091d4453db0a03088375717be3016669.jpg", - "response": "A man wearing a black jacket and a blue hat is in a store.", - "id": 9006 - }, - { - "image_path": "/content/drive/MyDrive/combined/551_png.rf.491c4b8389f36033d79cdfc5671ad363.jpg", - "response": "A blurry image of a grey and white dog standing in a pile of glitter.", - "id": 9007 - }, - { - "image_path": "/content/drive/MyDrive/combined/557_png.rf.ae9bdd45c2cc7b47728fbc4ada68ad92.jpg", - "response": "A FedEx truck is parked on the street.", - "id": 9008 - }, - { - "image_path": "/content/drive/MyDrive/combined/552_png.rf.cf1ba6332658bcd9f8ef80179c448e5c.jpg", - "response": "A man is seen from above, running across a field with a frisbee in his hand. The field is covered in sprinklers, causing the ground to be wet. The man is wearing a red shirt and blue shorts.", - "id": 9009 - }, - { - "image_path": "/content/drive/MyDrive/combined/549_png.rf.78e839c595ad3d48a0ae50b745ba7987.jpg", - "response": "A woman in a black bra and black tights walking through a door.", - "id": 9010 - }, - { - "image_path": "/content/drive/MyDrive/combined/550_png.rf.f92f3b6162b59c040cf1dee04ea2eb37.jpg", - "response": "a person standing in front of a building", - "id": 9011 - }, - { - "image_path": "/content/drive/MyDrive/combined/548_png.rf.f447eac14e163ab575d63982dcc64d4b.jpg", - "response": "A woman in a black shirt and black pants standing in front of a fence.", - "id": 9012 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_png.rf.7a14c166b68b8011f4598156f1b5295d.jpg", - "response": "a person wearing a black hoodie is walking through a store", - "id": 9013 - }, - { - "image_path": "/content/drive/MyDrive/combined/550_png.rf.733e6f8c3965a7419c6928561f197044.jpg", - "response": "A man walking in front of a building with a white cat sitting on the steps.", - "id": 9014 - }, - { - "image_path": "/content/drive/MyDrive/combined/555_png.rf.7e2ca9085d73a766a6130860da6481b5.jpg", - "response": "A doctor in a green shirt standing in a room with a hospital bed.", - "id": 9015 - }, - { - "image_path": "/content/drive/MyDrive/combined/552_png.rf.92e5950136da9ec720b81212fdeabde1.jpg", - "response": "A man in a red shirt is on a skateboard.", - "id": 9016 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_png.rf.0fe1d588bce8e001fbd9dde163025c94.jpg", - "response": "a person walking on a street", - "id": 9017 - }, - { - "image_path": "/content/drive/MyDrive/combined/553_png.rf.996a72e40443209bdeb94d77db978aef.jpg", - "response": "A woman in a black dress standing in a room.", - "id": 9018 - }, - { - "image_path": "/content/drive/MyDrive/combined/554_png.rf.6cee271edb686cc5f9f62b483d66b44d.jpg", - "response": "The image is a close up of a glass table with a reflection of a person riding a bicycle. The glass table has a texture that looks like stars in the night sky. The person on the bicycle is wearing a white shirt and has a backpack.", - "id": 9019 - }, - { - "image_path": "/content/drive/MyDrive/combined/54_png.rf.2412a7707b05366f6cc591d5805cea06.jpg", - "response": "a person walking down a street", - "id": 9020 - }, - { - "image_path": "/content/drive/MyDrive/combined/557_png.rf.75bb191116fcc3315c43b85fd4a97be1.jpg", - "response": "A man walking down a sidewalk next to a FedEx truck.", - "id": 9021 - }, - { - "image_path": "/content/drive/MyDrive/combined/549_png.rf.bc9d70dc64315dc852c942cd32d898c6.jpg", - "response": "a woman in a black bra and black pants is walking down a hallway.", - "id": 9022 - }, - { - "image_path": "/content/drive/MyDrive/combined/555_png.rf.e5d884c1c284f63d8013203dea69e80e.jpg", - "response": "A doctor standing in a hospital room next to a bed.", - "id": 9023 - }, - { - "image_path": "/content/drive/MyDrive/combined/556_png.rf.f3c90ecd0c82a9aceabebcbb6d08a623.jpg", - "response": "A person standing in a room with a white wall and a window.", - "id": 9024 - }, - { - "image_path": "/content/drive/MyDrive/combined/553_png.rf.cf818138e4ce6966ba1ce20909ebe5ff.jpg", - "response": "A woman is standing in a bedroom with a bed and a desk.", - "id": 9025 - }, - { - "image_path": "/content/drive/MyDrive/combined/556_png.rf.7472c2b8076e96e4166cbdb315a40815.jpg", - "response": "A blurry image of a person walking down a hallway.", - "id": 9026 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_F_125100627_7ui8NpurmfpxRWuMEa8iIztZe9mNNzyL_jpg.rf.2b3cd82fd84ec511ce1c48d16a7fce25.jpg", - "response": "A white box on a gray floor", - "id": 9027 - }, - { - "image_path": "/content/drive/MyDrive/combined/116_jpg.rf.9eae301493f251f7910245e0d079d1dd.jpg", - "response": "A white box with the words WSC on it.", - "id": 9028 - }, - { - "image_path": "/content/drive/MyDrive/combined/24_jpg.rf.ce7b7492a944215a8a2d31e5ff979d0e.jpg", - "response": "A grey image of a small grey box on a grey background.", - "id": 9029 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_jpg.rf.d88809089f9fd7566e80cff2f97726f2.jpg", - "response": "A black square with a smaller square inside it.", - "id": 9030 - }, - { - "image_path": "/content/drive/MyDrive/combined/19_jpg.rf.6a064e4f632f0f2e3c276135eab2aa9c.jpg", - "response": "A rock is wrapped in a plastic bag.", - "id": 9031 - }, - { - "image_path": "/content/drive/MyDrive/combined/253_jpg.rf.8a0e30730d1dabee542491e5615099c7.jpg", - "response": "A black and white box with a drawing of a bird on it.", - "id": 9032 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.76415e778c3529fa335810d5c21f65b5.jpg", - "response": "A single block of material is shown in a black and white photo. The material is shiny and has a metallic appearance. It is rectangular in shape and appears to be square in cross-section. The photo is taken from an overhead view, looking down on the block.", - "id": 9033 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_jpg.rf.65fe994fde3660c3410ce7dced9cb5ed.jpg", - "response": "A set of three cardboard boxes, one is gray and two are white.", - "id": 9034 - }, - { - "image_path": "/content/drive/MyDrive/combined/266_jpg.rf.37ec4dc82ef55713c1b7aadc4c99e96c.jpg", - "response": "A collection of four different cardboard boxes.", - "id": 9035 - }, - { - "image_path": "/content/drive/MyDrive/combined/259_jpg.rf.c8f3a1c70d0da343af07dbb2d428f194.jpg", - "response": "a bag that has the word norway on it", - "id": 9036 - }, - { - "image_path": "/content/drive/MyDrive/combined/130_jpg.rf.720df01ce50ac94a33745d7ef500549b.jpg", - "response": "A grey image of a wall with a white box on it.", - "id": 9037 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_jpg.rf.bf12ac7a539e810b89745c414fc52e48.jpg", - "response": "A rectangular piece of glass with rounded corners.", - "id": 9038 - }, - { - "image_path": "/content/drive/MyDrive/combined/119_jpg.rf.f435a0fd6909d2008d60ea602683b446.jpg", - "response": "A white box with a corner missing", - "id": 9039 - }, - { - "image_path": "/content/drive/MyDrive/combined/104_jpg.rf.2a0c7ca056e9116262e2faefaf5627da.jpg", - "response": "A white box with a grey top", - "id": 9040 - }, - { - "image_path": "/content/drive/MyDrive/combined/254_jpg.rf.7d63fd6b9da238054abeb9c30bee704a.jpg", - "response": "A white box on a white background.", - "id": 9041 - }, - { - "image_path": "/content/drive/MyDrive/combined/1000_F_85579700_U9a7ZPe6QKXXEUJxEe5LaNBGwm4d04OL_jpg.rf.aa4bdf91d828b9491055fc3afbe32f69.jpg", - "response": "A white cardboard box on a white background", - "id": 9042 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_jpg.rf.b2213d4a8584dee6d30d08a367b9993d.jpg", - "response": "A bunch of cardboard boxes of different types", - "id": 9043 - }, - { - "image_path": "/content/drive/MyDrive/combined/40_jpg.rf.3c15a908f78b023eae05702b71a6e740.jpg", - "response": "A router with 4 antennas on the top of it.", - "id": 9044 - }, - { - "image_path": "/content/drive/MyDrive/combined/31_jpg.rf.0e1ea4eea0ff91f075f59a9a5f62eb84.jpg", - "response": "A single 3D object on a grey background.", - "id": 9045 - }, - { - "image_path": "/content/drive/MyDrive/combined/49_jpg.rf.05e15829093388543ea35eb3d42b3e5d.jpg", - "response": "A box with the words Connecting Happiness on it.", - "id": 9046 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_jpg.rf.85dca20c3c1513e67a66bc911844d35f.jpg", - "response": "A white square with rounded corners is in the center of the image. It is a transparent PNG image file.", - "id": 9047 - }, - { - "image_path": "/content/drive/MyDrive/combined/4_jpg.rf.d7b12474af6c3e3bb2547b8f78c5f933.jpg", - "response": "A black and white image of a small package on a black background. The package is a rectangular prism and is sitting on top of a black square. The package is slightly tilted to the left and is in the center of the image. The package is wrapped in clear tape and has a label on it. The label is white with black writing and has two barcodes on it. The barcodes are in the center of the label and are slightly overlapping each other.", - "id": 9048 - }, - { - "image_path": "/content/drive/MyDrive/combined/26_jpg.rf.389dd99f88308856f0c3c9b39d80bcd6.jpg", - "response": "A grey box on a grey background", - "id": 9049 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_jpg.rf.c3ae5d9a8e8523c3dcb837d3c9a101ae.jpg", - "response": "A black and white photo of a box with the word OKD LAMPU H4 on the top.", - "id": 9050 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_111336247_VIgU7WCgj4eZ53Sb6mavwrOKimZ9Mfdh_jpg.rf.380db13481f7dd736bf4046e42ed2067.jpg", - "response": "A set of four images of a cardboard box from different angles", - "id": 9051 - }, - { - "image_path": "/content/drive/MyDrive/combined/42_jpg.rf.0f869be4be29f88377144c7888867e15.jpg", - "response": "A closed black Postpak box with a label on the top left hand corner with the words Post Office Royal Mail.", - "id": 9052 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_441311770_HjBeQNo98Rfg5T9l9FF5P2NOURDx3V3C_jpg.rf.06e3d9d2c117fc67805eb30f489532e0.jpg", - "response": " A man(468,84),(628,926) holding a box(350,302),(565,507)", - "id": 9053 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.a916d0fe7c8a9e6cfc6e09158c36a897.jpg", - "response": "A picture of 5 different views of a power module.", - "id": 9054 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_jpg.rf.a60f0991675782f06a75d1e0966f63ba.jpg", - "response": "A white box on a grey background", - "id": 9055 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_F_125100627_7ui8NpurmfpxRWuMEa8iIztZe9mNNzyL_jpg.rf.eb820441c26b991bc696871ff0e0c82c.jpg", - "response": "A white box on a gray floor", - "id": 9056 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_jpg.rf.3b27b6c1ce08e2bb98b22e961bbecd6e.jpg", - "response": "A package wrapped in cellophane and tape, with a white address label on the front.", - "id": 9057 - }, - { - "image_path": "/content/drive/MyDrive/combined/268_png.rf.b21d6c258f290808eb9b0f3ed1f41743.jpg", - "response": "A blurry image of a person walking in a hallway.", - "id": 9058 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_png.rf.e57e8ae829d583526d54ddb67f8cdbb5.jpg", - "response": "A man in a blue shirt is walking through a doorway.", - "id": 9059 - }, - { - "image_path": "/content/drive/MyDrive/combined/254_png.rf.0e89e36d88aaecc4d0c8d07444edbd6a.jpg", - "response": "a man(469,94),(633,746) and a woman(563,49),(733,626) standing in a store", - "id": 9060 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_285_jpg.rf.b151ed33c5e876b2f253efaefa5cb528.jpg", - "response": "A man in a red shirt standing in a garage.", - "id": 9061 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_268_jpg.rf.ce9acaa29b2aff68650cae5c0d8a7318.jpg", - "response": "A man in a red shirt and jeans is standing in a garage. He is next to a stainless steel table with a large stainless steel bowl on it. There is a second large stainless steel bowl on the table. The man is also standing next to a yellow bin. The garage has a lot of stuff including a refrigerator, a TV, a keyboard, a mouse, a backpack, a handbag and a bottle. There is also a light that is turned on.", - "id": 9062 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580053154-5839_jpg.rf.0594e55c7807901c079c54bf549cb26f.jpg", - "response": "Health officials check the body temperature of passengers arriving from Wuhan at Soekarno-Hatta International Airport in Tangerang, Indonesia, on Jan. 24.", - "id": 9063 - }, - { - "image_path": "/content/drive/MyDrive/combined/274_png.rf.40f4782c3a4767e8bface4711223b616.jpg", - "response": "a person walking down a hallway carrying a green bag", - "id": 9064 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_297_jpg.rf.1c1387816733dc15caf0daf830cc54dc.jpg", - "response": " A man(184,135),(315,928) wearing a face mask(225,195),(280,262) is standing in a room with a bucket(316,472),(433,676)", - "id": 9065 - }, - { - "image_path": "/content/drive/MyDrive/combined/160112-F-ME609-065_JPG_jpg.rf.a046e6ddd1a2a62b225466ab3c27ed39.jpg", - "response": "A construction worker and a military man are talking to each other.", - "id": 9066 - }, - { - "image_path": "/content/drive/MyDrive/combined/1571_jpg.rf.1b4f0508dcd52f230912628dbdec01e8.jpg", - "response": "A man in an orange shirt is on a red ladder.", - "id": 9067 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_png.rf.9a6aa354e7085bb3456536965b1b76d7.jpg", - "response": "A group of people standing in front of a building.", - "id": 9068 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_269_jpg.rf.f46d1eb5cd0646e460acd498cc8544ff.jpg", - "response": "A man in a red shirt and jeans standing next to a machine.", - "id": 9069 - }, - { - "image_path": "/content/drive/MyDrive/combined/1591_jpg.rf.882378855d98087615d15f8d17cdbd5d.jpg", - "response": "A large grey box is in the middle of a room. There is a yellow caution tape marking off an area around the box. There are three orange traffic cones in a row next to the box. A silver step ladder is leaning against the box. There is a black cord going into the box. There is a black and white box on the wall next to the box. There are black lockers to the right of the box.", - "id": 9070 - }, - { - "image_path": "/content/drive/MyDrive/combined/253_png.rf.d5715604bbbf07ad35e8ae4af68caf07.jpg", - "response": "a man in a white shirt and black pants is standing on a street", - "id": 9071 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_274_jpg.rf.bc40558fea75c1f2a889da6477d44f43.jpg", - "response": " A man(178,134),(315,934) standing in a room with a stainless steel drum(318,472),(433,676) and a stainless steel table(284,567),(633,996)", - "id": 9072 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_288_jpg.rf.6a66f98193593de569e202bb65d967d9.jpg", - "response": "A man in a red shirt is working on a machine.", - "id": 9073 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_png.rf.5cd26670d47e4402ce28744fb46f1b0a.jpg", - "response": "A person is playing with a frisbee on the sidewalk.", - "id": 9074 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_png.rf.75c7f9d539db84910a9e6a2a51262541.jpg", - "response": "A blurry image of a store with a person standing in the aisle.", - "id": 9075 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580048340614_jpg.rf.b2a224f7716758ef8ba841c3981a23de.jpg", - "response": "a large group of people wearing face masks", - "id": 9076 - }, - { - "image_path": "/content/drive/MyDrive/combined/230_png.rf.b1cbae309c3e9a26b9072a3c240c20e9.jpg", - "response": "A classroom with tables and chairs.", - "id": 9077 - }, - { - "image_path": "/content/drive/MyDrive/combined/257_png.rf.99e4118abc55f11d1bbf456a30741b26.jpg", - "response": "A person walking on a sidewalk with a pole in their hand.", - "id": 9078 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_png.rf.5f6009900eae65135a7f6ed672e6df4d.jpg", - "response": "A man in white shorts and black shoes is walking in a store.", - "id": 9079 - }, - { - "image_path": "/content/drive/MyDrive/combined/259_png.rf.c3100e681ebdb556cffe921c949c24bc.jpg", - "response": "A blurry image of a person walking down a sidewalk.", - "id": 9080 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_266_jpg.rf.9f46b7cae843f0c4fb0ef818ba636f1f.jpg", - "response": " a man(169,148),(307,928) standing in a room with a silver bucket(316,468),(439,679)", - "id": 9081 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_png.rf.4659e9657a2f773ae9286443dd4e013a.jpg", - "response": "A person walking in a room with a chair and a table.", - "id": 9082 - }, - { - "image_path": "/content/drive/MyDrive/combined/241_png.rf.4230bea7fd50ae5b9576c69f792e39fa.jpg", - "response": "a man sitting on the ground in a room", - "id": 9083 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_png.rf.12a6add447657ef15fd7143131b113cb.jpg", - "response": "a man(276,194),(516,830) is standing in front of a car", - "id": 9084 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580053154-5839_jpg.rf.8b0933ff04daba053d3dd6dbdba200ba.jpg", - "response": "A woman and a child wearing face masks are having their temperatures checked by an official.", - "id": 9085 - }, - { - "image_path": "/content/drive/MyDrive/combined/278_png.rf.dbed367f4fdc0e66b8403db461cb4528.jpg", - "response": "A blurry image of a group of people standing around each other.", - "id": 9086 - }, - { - "image_path": "/content/drive/MyDrive/combined/24_png.rf.9f8c94b350bb85681b0ae44a3533fe29.jpg", - "response": "A woman is sitting on a bench in the snow.", - "id": 9087 - }, - { - "image_path": "/content/drive/MyDrive/combined/237_png.rf.a9ceb6200be00dddba9a19a718daf8eb.jpg", - "response": "A man and a woman walking down a street holding hands.", - "id": 9088 - }, - { - "image_path": "/content/drive/MyDrive/combined/272_png.rf.4bde2a898b2fdbcf240852f03defea8d.jpg", - "response": "A man standing in a room with a black and white photo of a crowd projected onto him.", - "id": 9089 - }, - { - "image_path": "/content/drive/MyDrive/combined/276_png.rf.96970ab1efe72b85b407e8333f4a640e.jpg", - "response": "a man in a brown jacket and brown pants", - "id": 9090 - }, - { - "image_path": "/content/drive/MyDrive/combined/24_png.rf.a0abea271d07362f72f1bbc2f98cb30e.jpg", - "response": "A black and white photo of a man on a skateboard.", - "id": 9091 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_png.rf.f8ad337f15acf2453804366901c99b84.jpg", - "response": "A man in a hallway walking towards a door.", - "id": 9092 - }, - { - "image_path": "/content/drive/MyDrive/combined/260_png.rf.75d839f12911d1fe0e3fdc78a75b592c.jpg", - "response": "A blurry image of a man in a room.", - "id": 9093 - }, - { - "image_path": "/content/drive/MyDrive/combined/1584_jpg.rf.9d6ace91f266ee1e0257c0e4df0aaf44.jpg", - "response": " Two construction workers(748,278),(917,998)(82,294),(333,949) standing in a construction site", - "id": 9094 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580048340614_jpg.rf.232650a1ef4d64a8391e0d5822825607.jpg", - "response": "a large group of people walking down a crowded street", - "id": 9095 - }, - { - "image_path": "/content/drive/MyDrive/combined/254_png.rf.43c8e94b2b7ab542fbb197b494408a52.jpg", - "response": "a man(469,94),(635,749) and a woman(610,52),(739,619) are standing in a store", - "id": 9096 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580128422_jpg.rf.5dfbfeccea5b9e6d1f5152cf5bb59125.jpg", - "response": "A busy airport with people walking through an arrivals and departures area. Several people are wearing face masks.", - "id": 9097 - }, - { - "image_path": "/content/drive/MyDrive/combined/268_png.rf.9bb5a6720a68cc049441ec80c47bcb06.jpg", - "response": "In the image, there is a person walking on a sidewalk. The person is wearing a black shirt and black pants. The sidewalk is made of concrete and has a pink fire hydrant on the right side of the person. There is also a pink and white building on the right side of the image.", - "id": 9098 - }, - { - "image_path": "/content/drive/MyDrive/combined/1553605632_9d5877d8_60_jpg.rf.6d7ea066f63aa18afa828d5d10939dac.jpg", - "response": "A collage of photos of a family with face masks and air pollution levels.", - "id": 9099 - }, - { - "image_path": "/content/drive/MyDrive/combined/1592_jpg.rf.216c6fd5158ba377300126ff33313e04.jpg", - "response": "A man on a ladder painting a wall.", - "id": 9100 - }, - { - "image_path": "/content/drive/MyDrive/combined/235_png.rf.8b95779f84cd5d51a7337562423dd781.jpg", - "response": "A woman in a black coat is standing in a room. The room is dimly lit and there is a curtain in front of her. The curtain is covered in small silver balls. There are two pillars on each side of the woman.", - "id": 9101 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579924271_jpg.rf.8027cf71751f3089f9e82988102b7849.jpg", - "response": "This image shows a crowd of people walking through a plaza. They are all wearing face masks and carrying luggage including suitcases and handbags. The crowd is made up of people of various heights and ages, some are wearing winter coats and others are wearing hats. The luggage they are carrying suggests that they may be travelers.", - "id": 9102 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_png.rf.bf07588923f02b549ea9cf9899f7205b.jpg", - "response": "a person walking on a street", - "id": 9103 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_png.rf.ca7c14bd2a3390e2d67310cabb1139f3.jpg", - "response": "A person is standing in a room holding a green bag.", - "id": 9104 - }, - { - "image_path": "/content/drive/MyDrive/combined/257_png.rf.b46526eb8c66a25ab9e186f72997ec83.jpg", - "response": "A man walking in a room with a pole in the middle of the floor.", - "id": 9105 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_264_jpg.rf.5571fe363fcb3f30ddd22e3a6b03d53a.jpg", - "response": "A man is standing in a room with a silver cooler. There is a large silver cooler on the left side of the room. There is a silver cabinet with a bucket on top of it. There is a silver barrel on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver barrel with a blue lid on top of it. There is a silver barrel with a blue lid on the floor. There is a silver", - "id": 9106 - }, - { - "image_path": "/content/drive/MyDrive/combined/26_png.rf.d43149ba6cd285166dcda8ad25419552.jpg", - "response": "A group of people walking down a street.", - "id": 9107 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_png.rf.ac32656fb124ef8e25d2bfe257b47e3f.jpg", - "response": "A blurry image of a person in a white shirt is standing in a room. The room has a white floor and walls and there are two blue boxes in the room. The image is slightly blurry and has a speckled appearance.", - "id": 9108 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579924271_jpg.rf.9de50152e84cad32b2f04451627387c5.jpg", - "response": "In the image, there is a crowd of people walking through a plaza. They are all wearing protective masks. There are many different types of luggage around, including suitcases and handbags. Some of the people are also wearing winter coats. In the background, there are some billboards.", - "id": 9109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580128422_jpg.rf.bd96781a889ec26b1b7077ef54d4fcb0.jpg", - "response": "A crowded airport with people wearing face masks.", - "id": 9110 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_290_jpg.rf.d0ea7eee7dec137914249a764de073c7.jpg", - "response": " A man(185,194),(365,927) is seen in a room, he is bent over and appears to be working on a machine.", - "id": 9111 - }, - { - "image_path": "/content/drive/MyDrive/combined/1563_jpg.rf.f759f60dc7e8548363d1ae7163c522cd.jpg", - "response": "A green truck with a crane is parked on the side of the road. There are orange and white traffic cones on the ground in front of the truck. There is a white truck in the background. The sky is overcast.", - "id": 9112 - }, - { - "image_path": "/content/drive/MyDrive/combined/269_png.rf.9b10aa24b6662e44dc26f0fc559d5a63.jpg", - "response": "a man and a woman walking in front of a building", - "id": 9113 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_272_jpg.rf.1ac882b61430d8152728305a79a9781f.jpg", - "response": "A man in a red shirt and jeans standing in a room with a silver refrigerator and a silver cabinet. There is a bucket on a cart and a stainless steel machine. The man is wearing a watch on his left wrist and has a beard. He is also wearing a black watch on his right wrist. The image has the time 4:13 PM and the date February 24.", - "id": 9114 - }, - { - "image_path": "/content/drive/MyDrive/combined/269_png.rf.1769f63fb0bf8a411a1e51ef179d2661.jpg", - "response": "A man and a woman are walking down a sidewalk. The man is wearing a black jacket and carrying a black bag. The woman is wearing a black jacket and carrying a black and orange bag. They are both wearing jeans.", - "id": 9115 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_298_jpg.rf.0774469776e65fc255d40d56fdd1f27a.jpg", - "response": "A man in a room with a bucket and a scale.", - "id": 9116 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_png.rf.d6ee8cf0a226b1066a20765ce4524094.jpg", - "response": "A man and woman walking down a street holding hands.", - "id": 9117 - }, - { - "image_path": "/content/drive/MyDrive/combined/229_png.rf.8f75a094849025dbf2c1fcb6b3b1d6d3.jpg", - "response": "a man in a black jacket and black pants is standing in a room with a bunch of papers on the wall", - "id": 9118 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_png.rf.a064d9957ed715023de51fd69f9092b1.jpg", - "response": "A blurry image of a person wearing a white shirt and black shorts is seen through a rain-streaked window. The person is standing on a street corner, holding a tennis racket in their right hand. They are looking to the left, where a yellow tennis ball is in the air. The person appears to be preparing to hit the ball.", - "id": 9119 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_png.rf.eb554ed2344921aaea3bbdc1f8839068.jpg", - "response": "a person walking across a room carrying a green bag", - "id": 9120 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580048340614_jpg.rf.b794462fdcc4a764c25ca576030286bb.jpg", - "response": "The image shows a crowded street scene with a large group of people wearing face masks. The people are of different ages and are walking in the same direction. Some people are wearing glasses, and many people are carrying handbags. The street is busy, and the crowd is dense.", - "id": 9121 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_276_jpg.rf.998f626920d29e04c6044489243d393f.jpg", - "response": "A man in a red shirt is standing in a room with a stainless steel table. There is a large metal barrel on the table and a smaller one beside it. The man is holding a large metal pail and appears to be preparing to fill it with liquid. There is a yellow hose connected to the table and another hose connected to a valve on the wall. The room has a door and a window. The wall near the door has the words \"PP-2 PRODUCT PUMP\" written on it. The image was taken on February 24, 2021 at 4:41 PM.", - "id": 9122 - }, - { - "image_path": "/content/drive/MyDrive/combined/1566_jpg.rf.aa68788af0ba08470ac6f9df922e21df.jpg", - "response": "A man in an orange shirt is on a ladder, working on a building.", - "id": 9123 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_png.rf.ccebee31b2488c1ee4ab5d7a66eb2e18.jpg", - "response": "A man in khaki shorts and black shoes is walking through a store.", - "id": 9124 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580166133-5b61094cac11561b0cbe09826e32a924_jpg.rf.6637514bcceb0d76b80e395e1ef1990f.jpg", - "response": "A group of people wearing surgical masks.", - "id": 9125 - }, - { - "image_path": "/content/drive/MyDrive/combined/160210-F-YG475-107_JPG_jpg.rf.5add6324e9b7a4fa69076fdabcf5663f.jpg", - "response": "A man and woman in hard hats and safety vests stand in front of a water truck.", - "id": 9126 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_265_jpg.rf.9f29b292132a7cbe3f2f1f315f9064dd.jpg", - "response": " A man(137,254),(298,996) wearing a red shirt(138,327),(267,638) and jeans(138,590),(266,996) is standing in a room with a stainless steel table(283,569),(622,996) and two large metal vats(319,468),(432,678).", - "id": 9127 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_png.rf.6219898187c280b3160c9b731dbd367e.jpg", - "response": "a woman in a pink shirt and black shorts is walking through a store.", - "id": 9128 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_289_jpg.rf.08ba0f92775fcb3b26fe4b5cece1c835.jpg", - "response": "A man(208,171),(345,925) is seen on a security camera in a room with a stainless steel table(283,567),(618,996) and a large silver bin(317,474),(427,670).", - "id": 9129 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580053154-5839_jpg.rf.248bcf593fc8cc0784de580d24fc8318.jpg", - "response": "A woman and a child wearing face masks are checked by airport personnel.", - "id": 9130 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_png.rf.fc6481ba4379924a80b6aefeb8362233.jpg", - "response": "A man walking in a store, wearing a green shirt and black pants.", - "id": 9131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579924271_jpg.rf.58e76e207990f7460bc6afca0fdd2000.jpg", - "response": "The image shows a crowd of people walking through a train station. They are all wearing masks and carrying luggage, including suitcases and a handbag. The people are of various heights and are dressed in warm winter clothes. Some of them are also wearing protective goggles. The luggage they are carrying includes suitcases in different shades of blue and red, as well as a handbag in blue.", - "id": 9132 - }, - { - "image_path": "/content/drive/MyDrive/combined/251_png.rf.33e3589574b86bdc7e9965a3d886b450.jpg", - "response": "a man in a yellow shirt and blue jeans is standing in a store.", - "id": 9133 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580173904-0001oc33f_jpg.rf.9e885146308b0f1e5af91216c5e4b8eb.jpg", - "response": "a large group of people wearing face masks", - "id": 9134 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_291_jpg.rf.f63cca332d1428192f7649dc841dc0d6.jpg", - "response": " A man(183,175),(330,926) is standing on a step stool(257,777),(351,926) in a room with a silver table(274,567),(621,997) and a large silver bin(314,474),(433,677).", - "id": 9135 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_png.rf.0ee41cbcb294c56417b393d3983735be.jpg", - "response": "a person(438,205),(633,685) is walking in a room", - "id": 9136 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579928067_250120120154270000005e2bca03bf464_jpg.rf.d585e7e3065f0752071c77569b0aefb6.jpg", - "response": "A group of people walking through an airport wearing masks.", - "id": 9137 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580166133-5b61094cac11561b0cbe09826e32a924_jpg.rf.257b7cc695d3d81ddcc651aba7309f38.jpg", - "response": "A group of people wearing surgical masks.", - "id": 9138 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579924271_jpg.rf.b3f107b4dff1bdb885cf0a32d943c5e8.jpg", - "response": "The image shows a crowd of people walking through a train station. They are all wearing masks and carrying luggage, including suitcases and handbags. The crowd is made up of people of various heights and ages, some of whom are holding hands or walking arm in arm.", - "id": 9139 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580173904-0001oc33f_jpg.rf.29b92cdebbbb844943d1236ddbf79104.jpg", - "response": "In the image, there is a crowd of people wearing face masks. They are walking in a line, and some of them are carrying red envelopes. The people are of different ages and are wearing masks in different styles. Some masks are blue, some are white, and some are black. There are also many buildings in the background. In front of the crowd, there is a bridge with a Chinese statue on it. The statue is wearing a red hat and clothes. The background also includes a city skyline and high-rise buildings.", - "id": 9140 - }, - { - "image_path": "/content/drive/MyDrive/combined/272_png.rf.3a0bcfa6d2a53aa998d05bf090c00f66.jpg", - "response": "A man in a black shirt and black pants is walking down a hallway.", - "id": 9141 - }, - { - "image_path": "/content/drive/MyDrive/combined/234_png.rf.7f8002ea10fd2d7fd4595b5d6eeec7ad.jpg", - "response": "A man walking his dog on a leash.", - "id": 9142 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513329330sooq10859_jpg.rf.0087df878d921eb3ab6283cfd60ad476.jpg", - "response": "An airport guy in a black mask and black jacket.", - "id": 9143 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579928067_250120120154270000005e2bca03bf464_jpg.rf.18b8e2ea7d102340fed9de01953df4f8.jpg", - "response": "A group of people walking through an airport wearing masks.", - "id": 9144 - }, - { - "image_path": "/content/drive/MyDrive/combined/160_jpg.rf.66a82c9ba8108ac70d5a83890cd5c3aa.jpg", - "response": "A set of 4 orange safety cones stacked on top of each other on a white background.", - "id": 9145 - }, - { - "image_path": "/content/drive/MyDrive/combined/171104-F-JC454-134_JPG_jpg.rf.868bda66fcaf4d5756ee4b76a2beb75d.jpg", - "response": "In the image two men are working on an aircraft. One man is working on the propeller and the other is working on the engine. They are both in military uniform.", - "id": 9146 - }, - { - "image_path": "/content/drive/MyDrive/combined/160302_iStock-144288572_unsafe_ladder_use_XL_jpg.rf.4e05fd15bb36d5773194b9aebf7ff02f.jpg", - "response": "A man is on a ladder, painting the outside of a brick house. He is standing on the second rung of the ladder, which is positioned in front of a window. The ladder is leaning against the house, which is made of red bricks. The man is wearing blue shorts and a navy blue shirt. He is also wearing white shoes and has a paintbrush in his hand.", - "id": 9147 - }, - { - "image_path": "/content/drive/MyDrive/combined/2907_jpg.rf.4e704ec77660d9318ed1880b636873bc.jpg", - "response": "A large warehouse with boxes stacked on pallets and on the shelves.", - "id": 9148 - }, - { - "image_path": "/content/drive/MyDrive/combined/299_png.rf.f27509251a592de12afd510865b85dd8.jpg", - "response": "a man wearing a white shirt and black backpack standing in a store", - "id": 9149 - }, - { - "image_path": "/content/drive/MyDrive/combined/160616-Z-FF793-042_JPG_jpg.rf.e23aabe7a6d94aa8ff432ef980d54873.jpg", - "response": "A group of construction workers and military men stand in a unfinished room. They are wearing hard hats and safety vests.", - "id": 9150 - }, - { - "image_path": "/content/drive/MyDrive/combined/302_png.rf.d6b5eac8421893d47d8e2762e4e90ba4.jpg", - "response": "A man wearing a black shirt and blue jeans is standing in a room.", - "id": 9151 - }, - { - "image_path": "/content/drive/MyDrive/combined/306_png.rf.0f9f5346a65f72ac8149a366d4df5d74.jpg", - "response": "A blurry image of a person walking through a house.", - "id": 9152 - }, - { - "image_path": "/content/drive/MyDrive/combined/160621-F-YW511-091_JPG_jpg.rf.475a56488bbce9c5809b4c483df95520.jpg", - "response": "The image shows three construction workers wearing orange and yellow vests and white helmets. They are standing on a construction site, which appears to be a road or runway under construction. One of the workers is operating a piece of equipment, while the other two are walking nearby. There is a hose on the ground, and a few other workers can be seen in the background. The sky is blue, and the sun is shining.", - "id": 9153 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_png.rf.36e43915b4cccd253162470931fba97e.jpg", - "response": "A man in a red shirt is dancing in a room with a chair, a desk, a stove, a microwave, a sink, a refrigerator, a counter, a cup, a bottle, a bowl, a couch, a rug, a knife set, and a book.", - "id": 9154 - }, - { - "image_path": "/content/drive/MyDrive/combined/284_png.rf.5d738dff9174119ea003f2b8f055ac82.jpg", - "response": "A man in a blue uniform standing in front of a staircase.", - "id": 9155 - }, - { - "image_path": "/content/drive/MyDrive/combined/301_png.rf.9f926356ff0064ef348ae871bb458586.jpg", - "response": "A woman in a blue jacket is walking out of a door.", - "id": 9156 - }, - { - "image_path": "/content/drive/MyDrive/combined/293_png.rf.818642bcee2fcba2f47ef0911dcced9c.jpg", - "response": "a man standing in a hallway in front of a door", - "id": 9157 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_png.rf.a4a81f6e384be7c6b3f526a8a0218f34.jpg", - "response": "A man in a blue shirt standing in a room.", - "id": 9158 - }, - { - "image_path": "/content/drive/MyDrive/combined/190213-F-PG738-1255_JPG_jpg.rf.d2f9e5fb449ba52547c16d79d566c160.jpg", - "response": "In the image there is a person wearing a helmet and welding gloves welding a metal rod. The person is wearing a camo shirt and is focused on the task at hand. There are sparks flying from the welding and they are in a dark room.", - "id": 9159 - }, - { - "image_path": "/content/drive/MyDrive/combined/17_jpg.rf.3c78e9a5a761ef377f64f970823f0958.jpg", - "response": " Two traffic cones(448,326),(643,808)(583,56),(683,272) on the road", - "id": 9160 - }, - { - "image_path": "/content/drive/MyDrive/combined/174_jpg.rf.f0f5068e04c528b011de0a27c7278922.jpg", - "response": "A man wearing a hard hat and a mask points to the left. He is standing in front of a barrier and a pylon.", - "id": 9161 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143454-0-_jpg.rf.bc621d13283da7cd363ef006c3ece718.jpg", - "response": "A man wearing a yellow hat and holding a pole with an orange handle.", - "id": 9162 - }, - { - "image_path": "/content/drive/MyDrive/combined/3051_jpg.rf.fcfcf535a05c254bf41045f6de90772f.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 9163 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143501_jpg.rf.04e9db6f5f4b0363898e2d9c8eac97bf.jpg", - "response": "a man with a pole and a yellow hat is mowing the grass", - "id": 9164 - }, - { - "image_path": "/content/drive/MyDrive/combined/302_png.rf.349c3b8f66a0cda28610e662e6223822.jpg", - "response": "A man standing in a living room in front of a TV.", - "id": 9165 - }, - { - "image_path": "/content/drive/MyDrive/combined/29_png.rf.756f63463df9e552f68a95b7062a63bb.jpg", - "response": "a man in a blue shirt(20,325),(211,980)", - "id": 9166 - }, - { - "image_path": "/content/drive/MyDrive/combined/1659_jpg.rf.5af7f335a2ab05c7c8d3359bdcaf3d01.jpg", - "response": "A ladder is shown in the image. It is a tall ladder and is leaning against a wall. The ladder is made of metal and is white in color. The rungs of the ladder are made of wood. The ladder is positioned at a slight angle, with the bottom of the ladder resting on the ground. The background of the image is a transparent grid pattern.", - "id": 9167 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_png.rf.ba181870df7ba92e7405b2ce29b774da.jpg", - "response": "a man in a grey shirt is walking down a hallway", - "id": 9168 - }, - { - "image_path": "/content/drive/MyDrive/combined/170614-F-NC874-013_JPG_jpg.rf.ae8ceafd8e6d86f8f0706b1c6f300da0.jpg", - "response": "A crew of four working on a road side walk.", - "id": 9169 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143503_jpg.rf.74cd6fef298cb0f0910fc370e358a589.jpg", - "response": "A man wearing a yellow hat is using a hose to water his lawn. He is wearing blue shorts and a gray shirt.", - "id": 9170 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_png.rf.b09f4ae91dc13f5ea26643c2e758d6bd.jpg", - "response": "A woman in a red shirt is standing in a kitchen.", - "id": 9171 - }, - { - "image_path": "/content/drive/MyDrive/combined/281_png.rf.0330806de6f3a46409bfb223a22b4679.jpg", - "response": "A man walking on a sidewalk with a suitcase.", - "id": 9172 - }, - { - "image_path": "/content/drive/MyDrive/combined/170_jpg.rf.2968a6cb865c0e5df6383f06255f6f2f.jpg", - "response": "A red and white traffic cone sitting in the middle of a street.", - "id": 9173 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_png.rf.5a2d5eb2edec4984523ba6f050ffa623.jpg", - "response": "a man standing in a room reading a piece of paper", - "id": 9174 - }, - { - "image_path": "/content/drive/MyDrive/combined/306_png.rf.666aef33654e657282f8863c437a7dec.jpg", - "response": "A blurry image of a woman walking through a house.", - "id": 9175 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_png.rf.8bed19b85f8563dabe47945bf81ce74c.jpg", - "response": "A group of people standing around a fire hydrant.", - "id": 9176 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_jpg.rf.e1601354759f16d31c6ec70272d9bd92.jpg", - "response": "In the image there are two traffic cones, one is lying down and the other one is standing, both are orange and white in color. They are located on a white background.", - "id": 9177 - }, - { - "image_path": "/content/drive/MyDrive/combined/295_png.rf.3587ee50f26658eef7c9cb245b8d71b3.jpg", - "response": "a man in a storage unit with a door open", - "id": 9178 - }, - { - "image_path": "/content/drive/MyDrive/combined/300_png.rf.f942cb0ac0281cd0108720c14c8db0dd.jpg", - "response": "a man standing in a living room holding a wii controller", - "id": 9179 - }, - { - "image_path": "/content/drive/MyDrive/combined/18_jpg.rf.c0947639002603ce14c620639c43b2c6.jpg", - "response": "A set of five orange traffic cones of varying heights.", - "id": 9180 - }, - { - "image_path": "/content/drive/MyDrive/combined/165_jpg.rf.68c00e3bb5c7683508816c0c85153b29.jpg", - "response": "The image shows three orange traffic cones of different sizes placed on a wooden floor. The cones have reflective white stripes on them. The largest cone is on the left, followed by the medium-sized cone in the middle and the smallest cone on the right. All three cones have black bases.", - "id": 9181 - }, - { - "image_path": "/content/drive/MyDrive/combined/181025-F-OY097-0045_JPG_jpg.rf.2a19597ae5a53b2ac3f383672fcb4c7b.jpg", - "response": "A man wearing a blue jacket and a beanie hat is standing in an open area. He is wearing a headset and has a microphone attached to it. He is pointing his finger and there is a forest in the background.", - "id": 9182 - }, - { - "image_path": "/content/drive/MyDrive/combined/170621-F-WH816-003_JPG_jpg.rf.b48177aae1ebf6e32d5f2a62e19b7c1e.jpg", - "response": "In the image, a person is welding in a garage or workshop. The person is wearing a dark green jumpsuit and a dark grey welding mask, which covers their nose and mouth. The mask has a clear visor in front and a dark grey chinstrap to hold it in place. The person is focused on the task at hand, with their hands close to the welding rod and sparks flying up into the air. The sparks are bright and white, and they are spread out in all directions. The background is dark, with a few other objects in the scene that are too small to make out.", - "id": 9183 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_jpg.rf.0c5d63418fd87b3edef4afcfe0d99efa.jpg", - "response": " A single traffic cone(283,272),(660,588) is sitting on the road.", - "id": 9184 - }, - { - "image_path": "/content/drive/MyDrive/combined/296_png.rf.49acceed077e69fb7420cb28f5620a1e.jpg", - "response": "a person standing in a room with a white wall and a brown door", - "id": 9185 - }, - { - "image_path": "/content/drive/MyDrive/combined/1739661-836x1024_jpg.rf.e9f14a572a97c6756945c44c4f64126c.jpg", - "response": "A man wearing a brown jacket and a welding mask is welding a metal grate. He is wearing a yellow glove on his left hand and is creating a lot of sparks. There are several other metal grates around him and he is working on the one in front of him. He is standing in a large warehouse-like room with a lot of steel beams in the background.", - "id": 9186 - }, - { - "image_path": "/content/drive/MyDrive/combined/2017-06-22-20-45-47_jpg.rf.f4188703045b690f67332c2ee1f521db.jpg", - "response": "A man in a red and white shirt and white hat holding a rolled up piece of blueprints in front of a house.", - "id": 9187 - }, - { - "image_path": "/content/drive/MyDrive/combined/1690_jpg.rf.82dff3fa2e6f5b21352a7e190f2b0643.jpg", - "response": "A diagram of two ladders. One is a straight ladder and the other is an extension ladder.", - "id": 9188 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_13_jpg.rf.7d805a4ac0980d4bb46f09b055e18518.jpg", - "response": "The image is a collage of three photos. In the first photo, a woman is wearing a mask and pulling a suitcase. She is walking next to a man who is also wearing a mask. In the second photo, people are walking on a train platform. A man is wearing a mask and looking at his phone. In the third photo, people are riding on a train. A woman is wearing a mask and looking out the window.", - "id": 9189 - }, - { - "image_path": "/content/drive/MyDrive/combined/195_jpg.rf.f51b1c51f669a9ef386a978f849f84c1.jpg", - "response": "A orange and white cone and an orange fence", - "id": 9190 - }, - { - "image_path": "/content/drive/MyDrive/combined/1635_jpg.rf.c55cfc25e8a2e051c868475be832753e.jpg", - "response": "A sidewalk with caution tape wrapped around it.", - "id": 9191 - }, - { - "image_path": "/content/drive/MyDrive/combined/285_png.rf.f36fa10f17b6ad892a2913706b972c71.jpg", - "response": "A group of people are standing in a room.", - "id": 9192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_13_jpg.rf.a81a5e3a5c0969584d83ccf085a1639b.jpg", - "response": "The image is a collage of three photos. In the first photo, a woman is wearing a mask and pulling a suitcase. She is walking next to a man who is also wearing a mask. In the second photo, a group of people are walking down the stairs of a subway station. They are all wearing masks. In the third photo, a man is putting on a mask while holding a mobile phone. He is standing next to a woman who is also wearing a mask. They are both looking at the mobile phone.", - "id": 9193 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143454-2-_jpg.rf.8e6934d2b9ca6bb05be45b121c5a6990.jpg", - "response": "A man with a yellow hat and gray shirt is holding a pole with an orange stick on the end. He is standing in a yard with lush green grass and some trees.", - "id": 9194 - }, - { - "image_path": "/content/drive/MyDrive/combined/301_png.rf.7cb6d704efa9f4b6da86e8e040cc159e.jpg", - "response": "A woman in a blue jacket is walking into a room with a TV.", - "id": 9195 - }, - { - "image_path": "/content/drive/MyDrive/combined/287_png.rf.7184e06e5ca236aebb35eaa9775194d9.jpg", - "response": "A blurry image of a woman standing in front of a store.", - "id": 9196 - }, - { - "image_path": "/content/drive/MyDrive/combined/295_png.rf.47db7aac54ec17c0400c5b0b4ee9acc0.jpg", - "response": "a person standing in a bathroom in front of a mirror", - "id": 9197 - }, - { - "image_path": "/content/drive/MyDrive/combined/3027_jpg.rf.697ae7cb3f891183defcd805b0e78e76.jpg", - "response": "A warehouse filled with lots of boxes stacked on shelves.", - "id": 9198 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_png.rf.28892014bec4dc90b12da6d8b9f32c08.jpg", - "response": "a person walking on a porch next to a car", - "id": 9199 - }, - { - "image_path": "/content/drive/MyDrive/combined/2943_jpg.rf.94b68e69d73d052f3bbc38f520d3733f.jpg", - "response": "A warehouse with tall shelves and boxes stacked on them. There is a forklift in the middle of the room and a person standing near the tall shelves.", - "id": 9200 - }, - { - "image_path": "/content/drive/MyDrive/combined/160616-Z-FF793-005_JPG_jpg.rf.954462572b19afe325356c7a6ff84caa.jpg", - "response": "A group of men wearing hard hats and safety vests stand on a dock near the water. They appear to be workers or officials discussing something.", - "id": 9201 - }, - { - "image_path": "/content/drive/MyDrive/combined/279_png.rf.672ec2eeb7b3068dec807a226344a072.jpg", - "response": "A group of people walking down a street.", - "id": 9202 - }, - { - "image_path": "/content/drive/MyDrive/combined/171_jpg.rf.f700ab935e2ff8545b2da525be050886.jpg", - "response": "A man holding a large orange and white cone in a storage room.", - "id": 9203 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_png.rf.2ec8858525cc3c238254505eb29c40ef.jpg", - "response": "A blurry image of a woman standing in a kitchen.", - "id": 9204 - }, - { - "image_path": "/content/drive/MyDrive/combined/175_jpg.rf.e0c968e647089c1b13b7746aca972a29.jpg", - "response": "A pair of orange traffic cones with white reflective tops.", - "id": 9205 - }, - { - "image_path": "/content/drive/MyDrive/combined/290_png.rf.27eb01e1081d5f9247c0eeb6305199ac.jpg", - "response": "A man in a dark room with a black door.", - "id": 9206 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_png.rf.4edad4b85e95210cadc8aa927f4bce95.jpg", - "response": "a man wearing a red shirt and blue jeans is in a room.", - "id": 9207 - }, - { - "image_path": "/content/drive/MyDrive/combined/3027_jpg.rf.ff54a7284cf96dcf178e32643568a825.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 9208 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_png.rf.9ea926e4a1a864dbcd91a1d6ec5453d2.jpg", - "response": "A black and white photo of a street with a person running in the middle of the street.", - "id": 9209 - }, - { - "image_path": "/content/drive/MyDrive/combined/3015_jpg.rf.85ebc6faf92b03c3f9c79b48bb7a509c.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 9210 - }, - { - "image_path": "/content/drive/MyDrive/combined/296_png.rf.3a98a59335cf2f81232bd881d8272140.jpg", - "response": "a person in a room with a dog", - "id": 9211 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143500_jpg.rf.ddec3c4ac1079d6cacdee7337b3309b0.jpg", - "response": "A man walking in a grassy yard.", - "id": 9212 - }, - { - "image_path": "/content/drive/MyDrive/combined/2943_jpg.rf.64d4db197124f5c418bcfc5091746b05.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There is a forklift in the middle of the room and a person visible in the background. The image is covered in dots.", - "id": 9213 - }, - { - "image_path": "/content/drive/MyDrive/combined/280_png.rf.85c1869d1ec1d5db382efc587b897b42.jpg", - "response": "a man wearing a black shirt and black pants is walking through a store.", - "id": 9214 - }, - { - "image_path": "/content/drive/MyDrive/combined/1694_jpg.rf.8631980951ab901deab94a41d947b784.jpg", - "response": "a ladder that is on the side of a building", - "id": 9215 - }, - { - "image_path": "/content/drive/MyDrive/combined/2955_jpg.rf.97adbdf9491b557b36d6af7b684a647d.jpg", - "response": "A warehouse filled with lots of boxes on the shelves.", - "id": 9216 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_png.rf.9754cc966b7340d263363c19e989dafb.jpg", - "response": "A blurry image of a man surfing in the ocean.", - "id": 9217 - }, - { - "image_path": "/content/drive/MyDrive/combined/288_png.rf.5daad225b2b5a1c64bab9423e2fd3835.jpg", - "response": "A grainy black and white image of a man standing in a doorway. He is wearing a white shirt and is holding a cell phone in his right hand. He is looking down at the phone.", - "id": 9218 - }, - { - "image_path": "/content/drive/MyDrive/combined/17_jpg.rf.3091a133e165b1543ceda5e4c968a42b.jpg", - "response": "A ladder is placed on a yellow metal structure. The room is filled with construction materials and tools. There are windows on the left side of the room and a door on the right side. The walls are made of wood and the roof is made of wood. There are two pipes on the ceiling. The floor is made of wood.", - "id": 9219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1663_jpg.rf.ca0c2f260030c3553de93d67114cec47.jpg", - "response": "A man is standing on a ladder in front of a house.", - "id": 9220 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_13_jpg.rf.34d2dfee02709273366c2f1bdc78ddd9.jpg", - "response": "The image is a collage of three photos. In the first photo, a woman is wearing a mask and pulling a suitcase. She is walking next to a man who is also wearing a mask. In the second photo, people are walking along a platform. A man is wearing a mask and looking at his phone. In the third photo, two men are wearing masks and looking at their phones. They are standing next to a subway car.", - "id": 9221 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_png.rf.d1abed69324a8608c73e21c2f4e47f63.jpg", - "response": "A man in a red shirt is holding a brown box.", - "id": 9222 - }, - { - "image_path": "/content/drive/MyDrive/combined/1709_jpg.rf.ff7cbd06a8c47dc2ea018025fae8e973.jpg", - "response": "A man in a parking lot climbing a ladder over a white car.", - "id": 9223 - }, - { - "image_path": "/content/drive/MyDrive/combined/2012-04-30-15-12-25_jpg.rf.32f6bfa16194949ba5ce0bff62ede208.jpg", - "response": "A man is on a red ladder, he is scraping off wallpaper from a ceiling. He is wearing a white t-shirt and black jeans. There is a step ladder next to him and a chair in the room. The room has bare brick walls and a window.", - "id": 9224 - }, - { - "image_path": "/content/drive/MyDrive/combined/2919_jpg.rf.2f18462dd6e1b04d2b2a8808ef537366.jpg", - "response": "A warehouse filled with lots of boxes stacked on shelves.", - "id": 9225 - }, - { - "image_path": "/content/drive/MyDrive/combined/300_png.rf.8289b82c2496c0b5d5e26274d8bafa89.jpg", - "response": "A woman in a black shirt standing in a room.", - "id": 9226 - }, - { - "image_path": "/content/drive/MyDrive/combined/288_png.rf.98491e674241d7930453e9ba1b9108bf.jpg", - "response": "A man in a white shirt and black pants is standing in a dark room.", - "id": 9227 - }, - { - "image_path": "/content/drive/MyDrive/combined/1683_jpg.rf.e5a75fcc42f6c34f57131e6a02f353b0.jpg", - "response": "A man is on a ladder installing a window in a room that is still under construction. The window is a small white framed one. The man is wearing a blue shirt and blue jeans. There is a red circle around the man and a red arrow pointing to the window. The room is made of wood and has no drywall or other finishing materials.", - "id": 9228 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_png.rf.eb1c04e524a2811e519561d485d5daf6.jpg", - "response": "A blurry image of a man walking in front of a store.", - "id": 9229 - }, - { - "image_path": "/content/drive/MyDrive/combined/181025-F-OY097-0120_JPG_jpg.rf.845b9797f1b1468eef12ef31dfcec959.jpg", - "response": "In the image there is a person wearing a dark blue jacket, a grey beanie, and dark grey gloves. They are standing in front of a plane with their arms raised above their head. They are also wearing noise-cancelling headphones.", - "id": 9230 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_jpg.rf.3ea60a0cf82a03312364229d8fba7a9c.jpg", - "response": "a man holding a orange and white traffic cone", - "id": 9231 - }, - { - "image_path": "/content/drive/MyDrive/combined/1658_jpg.rf.232598bde5ece02790624ee24ace21d6.jpg", - "response": "A building with a ladder against it and three orange and white traffic cones in front of it.", - "id": 9232 - }, - { - "image_path": "/content/drive/MyDrive/combined/170201-Z-CO490-006_JPG_jpg.rf.568302cfdc9fbaf9d04ba3f86a0086a4.jpg", - "response": "An airman in a red vest signals to a plane on the runway.", - "id": 9233 - }, - { - "image_path": "/content/drive/MyDrive/combined/287_png.rf.e81cc7fb238e30ef2d3fd34d562d7964.jpg", - "response": "A man standing in front of a ticket machine.", - "id": 9234 - }, - { - "image_path": "/content/drive/MyDrive/combined/1629_jpg.rf.96050e76cd4c289d0ff5adadaadb7a69.jpg", - "response": "A crack in the pavement with a red cone sitting next to it.", - "id": 9235 - }, - { - "image_path": "/content/drive/MyDrive/combined/17_jpg.rf.c3cdbf130997a4a4a1bffc9aba045597.jpg", - "response": "A man in a blue shirt is holding a traffic cone in a cluttered room.", - "id": 9236 - }, - { - "image_path": "/content/drive/MyDrive/combined/3039_jpg.rf.545e09c9bee9671e9dfa3cde2b3d600a.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There are two walkways through the middle of the warehouse. The walls are covered in boxes and the ceiling has pipes.", - "id": 9237 - }, - { - "image_path": "/content/drive/MyDrive/combined/299_png.rf.286bf5f71912c09f19ee34507caaf770.jpg", - "response": "a man wearing a white shirt and a black hat a man wearing a black shirt and a black hat a man wearing a black shirt and black shorts", - "id": 9238 - }, - { - "image_path": "/content/drive/MyDrive/combined/284_png.rf.bd786dccf7b369a5483ee51522e78896.jpg", - "response": "A man standing in front of a wall.", - "id": 9239 - }, - { - "image_path": "/content/drive/MyDrive/combined/1682_jpg.rf.a212f157928e38532efa6f5db8e45672.jpg", - "response": "A ladder that is blue and white in color.", - "id": 9240 - }, - { - "image_path": "/content/drive/MyDrive/combined/163_jpg.rf.8588fe57b382452e36eb3be0f3d59f4a.jpg", - "response": "A single orange traffic cone sitting on a square of concrete in the dirt.", - "id": 9241 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143459_jpg.rf.970078158731a6aa2e2691a10fd79061.jpg", - "response": "a man wearing a yellow hat and gray shirt is walking through a green yard with a pole in his hands.", - "id": 9242 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143501-0-_jpg.rf.8e8c2dae7627d1de7df09032a548d013.jpg", - "response": "a man is walking in a yard with a stick", - "id": 9243 - }, - { - "image_path": "/content/drive/MyDrive/combined/20180223_122020-e1555384287987_jpg.rf.11f6e7e546ac26da3c39140f544fd6aa.jpg", - "response": "A man in a black shirt with a capital S on it is on a ladder. He is reaching up to the ceiling. He is standing on a ladder in a room. There is a ceiling fan above him. The walls are white. There is a couch in the room. There is a rack of books in the room. The man is wearing jeans.", - "id": 9244 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_R_kFK9pNLfKAuopY_lAaPQ_jpeg_jpg.rf.f7881a4e3e3f43129878ab90ed15f43c.jpg", - "response": "The image depicts a street scene in Malaysia, with two main walking men on the right side of the image. They are wearing white face masks, and one of them is holding a folder. The street is busy with several cars, a bus, and a motorcycle. There are also two bicycles on the sidewalk. The sky is dark and the street is filled with smoke, likely due to the nearby construction work. The photo was taken in the morning, as evidenced by the shadows of the people and objects on the street.", - "id": 9245 - }, - { - "image_path": "/content/drive/MyDrive/combined/170504-N-MA158-0040_JPG_jpg.rf.a64433567bc0ac8a39589a04981521f1.jpg", - "response": "In the image there is a man wearing a red and grey plaid shirt, black pants and black framed glasses. The man is working on a large piece of machinery that has the word QMAX on it. The machinery is silver and black in color and is located in a factory setting. There is also a chair visible in the image, it is a wooden chair with light blue cushions and it is located to the left of the man.", - "id": 9246 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_png.rf.b142d46d52673e5db49f871dda7028f6.jpg", - "response": "A blurry image of a woman and a man walking down a hallway.", - "id": 9247 - }, - { - "image_path": "/content/drive/MyDrive/combined/169_jpg.rf.3cad5fd10746b0decd19ef6167917ee5.jpg", - "response": "A street with many orange and white traffic cones set up around a large orange and white cone in the center. The cones are set up in a way that forms a circle around the large cone. There are also many small yellow flags strung up around the area. On the left side of the street, there is a black car parked and on the right side, there is a white car parked. In front of the white car, there is a person walking.", - "id": 9248 - }, - { - "image_path": "/content/drive/MyDrive/combined/283_png.rf.9e84567ba9bf6bf9d4d10e59bc9984fc.jpg", - "response": "A man in a grey shirt is walking down a hallway.", - "id": 9249 - }, - { - "image_path": "/content/drive/MyDrive/combined/160801-F-DB969-017_JPG_jpg.rf.27be7716f3082a160fb8ed2ddaba9ab1.jpg", - "response": " A construction worker(94,171),(316,997) is standing in a construction site, holding a tablet(197,416),(309,511) and looking at it.", - "id": 9250 - }, - { - "image_path": "/content/drive/MyDrive/combined/286_png.rf.940e9ebc6b08e29be4d05795e821636e.jpg", - "response": "A blurry image of a man standing in front of a wall.", - "id": 9251 - }, - { - "image_path": "/content/drive/MyDrive/combined/1615_jpg.rf.1fc3a77ee96341e19a4774d31b75588c.jpg", - "response": " A crane truck(11,4),(591,724) on a wet road", - "id": 9252 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143504-2-_jpg.rf.667d0b00e7e2912ec7408548084f5bc8.jpg", - "response": "A man wearing a grey shirt and blue shorts is using a hose to water his lawn.", - "id": 9253 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_png.rf.52fffd8947e263cef1acf4f9da239fa9.jpg", - "response": "a person standing in front of a mirror taking a picture of themselves", - "id": 9254 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_png.rf.d62b514e5edd4e9611f155669d4b31b1.jpg", - "response": "A man is walking towards a white car on a driveway.", - "id": 9255 - }, - { - "image_path": "/content/drive/MyDrive/combined/292_png.rf.2619cc8a1791c1f785f42a2b5f20467c.jpg", - "response": "a man standing in a hallway in front of a door", - "id": 9256 - }, - { - "image_path": "/content/drive/MyDrive/combined/289_png.rf.4536f37d77a9e03308d930ad55cbfecb.jpg", - "response": "a person standing in front of a mirror taking a picture of themselves", - "id": 9257 - }, - { - "image_path": "/content/drive/MyDrive/combined/286_png.rf.7943912e00b5a1aba26a3b1f7526d1ba.jpg", - "response": "A man is standing in a room filled with appliances. He is wearing a gray shirt and black pants. There are several refrigerators in the room, some are taller than him and some are shorter. There are also some other appliances in the room, but I can't tell what kind they are. The room is filled with a lot of dust and there are some red and blue lines on the ground.", - "id": 9258 - }, - { - "image_path": "/content/drive/MyDrive/combined/164_jpg.rf.5b1b392c57269904dced9a2cd75ea173.jpg", - "response": "A man is holding a large orange and white traffic cone in a garage.", - "id": 9259 - }, - { - "image_path": "/content/drive/MyDrive/combined/200_jpg.rf.012cb07e0381f581bc61c86e1885b4b7.jpg", - "response": "A row of orange and white traffic cones sitting on the side of a road.", - "id": 9260 - }, - { - "image_path": "/content/drive/MyDrive/combined/3015_jpg.rf.ace984e9c3b3aaef0970de3a4a0d6dbf.jpg", - "response": "A large warehouse with boxes stacked on the shelves.", - "id": 9261 - }, - { - "image_path": "/content/drive/MyDrive/combined/2955_jpg.rf.2fe447f09dd35934e5113b71fd22d779.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9262 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143505-1-_jpg.rf.49d1bf99a44767a7dd0eb8fb0be11285.jpg", - "response": "A man wearing a gray shirt and blue shorts is using a hose to water the grass. He is wearing a hat and has a beard.", - "id": 9263 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_png.rf.3686b2d1c38b5804f4b2d5d38cca216d.jpg", - "response": "A man is laying on the ground in a parking garage.", - "id": 9264 - }, - { - "image_path": "/content/drive/MyDrive/combined/1617_jpg.rf.b9b7def9e4e1096c295e2f011c3c5064.jpg", - "response": "A fire truck parked in a parking lot with a person standing behind it.", - "id": 9265 - }, - { - "image_path": "/content/drive/MyDrive/combined/29_png.rf.33fab139b206148fe89cae2f64ee67ba.jpg", - "response": "A group of three children playing in the rain.", - "id": 9266 - }, - { - "image_path": "/content/drive/MyDrive/combined/298_png.rf.61f104b0a2dd36e1530c869c2bf83232.jpg", - "response": "A man in a suit is standing in a hallway.", - "id": 9267 - }, - { - "image_path": "/content/drive/MyDrive/combined/290_png.rf.bd20671d2548373f001188a9ab73f399.jpg", - "response": "A man in a white shirt and black pants is standing in a doorway.", - "id": 9268 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_png.rf.f7cdd2a935c66947783f4ca3c30b9505.jpg", - "response": "A group of people standing around a fire hydrant.", - "id": 9269 - }, - { - "image_path": "/content/drive/MyDrive/combined/161_jpg.rf.f9710013a4e68fc4e10a4ea237d14957.jpg", - "response": "A person is holding a large orange and white cone in a garage.", - "id": 9270 - }, - { - "image_path": "/content/drive/MyDrive/combined/20171111_090926_001_jpg.rf.c60c5790167a546b9972e16365d85ac9.jpg", - "response": "A man on a ladder installing a chimney.", - "id": 9271 - }, - { - "image_path": "/content/drive/MyDrive/combined/2919_jpg.rf.fc6bc4f971a0c0854d3b9842a503eb07.jpg", - "response": "A warehouse with boxes stacked on pallets and forklifts moving around.", - "id": 9272 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_png.rf.f2fa8657964ce20b5f414dac87f36929.jpg", - "response": "A man in a red shirt is standing in a kitchen.", - "id": 9273 - }, - { - "image_path": "/content/drive/MyDrive/combined/289_png.rf.7b026206bd3fb7987467ce902b663013.jpg", - "response": "a man in a grey shirt and black pants is walking down a hallway.", - "id": 9274 - }, - { - "image_path": "/content/drive/MyDrive/combined/298_png.rf.10f783b73b2a5f953d7ca9d75e7beaa3.jpg", - "response": " A man(326,172),(608,743) is standing in a hallway, holding a crowbar and appears to be breaking into a room.", - "id": 9275 - }, - { - "image_path": "/content/drive/MyDrive/combined/279_png.rf.0aa546b80f25d2835a265d75360fab29.jpg", - "response": "a group of people walking down a sidewalk", - "id": 9276 - }, - { - "image_path": "/content/drive/MyDrive/combined/1711_jpg.rf.d4051aac0b37167935e7ea20ce434277.jpg", - "response": "An electrician working on a ladder next to a fuse box.", - "id": 9277 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_png.rf.cbc4c2f0eb86bbeb26321a0d54583369.jpg", - "response": " Man(376,17),(645,364) walking in the street", - "id": 9278 - }, - { - "image_path": "/content/drive/MyDrive/combined/1668_jpg.rf.519802ecd49379a647fa50058faceadf.jpg", - "response": "A little boy is standing in front of a fire truck and talking to a fireman in a costume.", - "id": 9279 - }, - { - "image_path": "/content/drive/MyDrive/combined/2907_jpg.rf.4ac41e8355cfc9c81428e9ee6f4cccd5.jpg", - "response": "A warehouse with shelves full of boxes and a lot of cardboard packaging on the floor.", - "id": 9280 - }, - { - "image_path": "/content/drive/MyDrive/combined/188_jpg.rf.4bd07d36a54e039af259e2c17a9f628d.jpg", - "response": "Orange and white traffic cones lined up on a street", - "id": 9281 - }, - { - "image_path": "/content/drive/MyDrive/combined/280_png.rf.358c0c8a0d2cfabd65a8228474c556bc.jpg", - "response": "a man in a white shirt and black pants is walking in a store", - "id": 9282 - }, - { - "image_path": "/content/drive/MyDrive/combined/1716_jpg.rf.cd7a0b1cffd6adcf72ccee82164f5cfa.jpg", - "response": "An aerial view of a large roof under construction. There are multiple people scattered across the roof working on it. The roof is grey and has a grid-like pattern. There are yellow barriers set up in the lower left corner of the roof and a traffic cone in the middle right. The background shows a small piece of a building and a field.", - "id": 9283 - }, - { - "image_path": "/content/drive/MyDrive/combined/170_jpg.rf.a112cc16cf673cd713537a15b242bf86.jpg", - "response": "A man is holding an orange traffic cone in a cluttered room.", - "id": 9284 - }, - { - "image_path": "/content/drive/MyDrive/combined/281_png.rf.71239caaa5e622693003bde492286700.jpg", - "response": "A man standing in front of a glass window.", - "id": 9285 - }, - { - "image_path": "/content/drive/MyDrive/combined/3051_jpg.rf.46b62c7e2833760b253853f5d23c184c.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 9286 - }, - { - "image_path": "/content/drive/MyDrive/combined/293_png.rf.526f2fa3a0a91333979b8944bd63f9ab.jpg", - "response": "a man is standing in a hallway", - "id": 9287 - }, - { - "image_path": "/content/drive/MyDrive/combined/189_jpg.rf.349e4532a9488dbe6c5916b491c05079.jpg", - "response": "A man holding a large orange and white cone in a cluttered room.", - "id": 9288 - }, - { - "image_path": "/content/drive/MyDrive/combined/285_png.rf.cd94b690824fcd565296f1884b1e2a5c.jpg", - "response": "A group of people standing around a table.", - "id": 9289 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_png.rf.6eae496e97efaadcc0f244f7cd5e57ea.jpg", - "response": "A man walking his dog in the rain.", - "id": 9290 - }, - { - "image_path": "/content/drive/MyDrive/combined/3039_jpg.rf.d019a83b2901644eaa366aceb9af35e0.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 9291 - }, - { - "image_path": "/content/drive/MyDrive/combined/171003-N-JE719-011_jpg.rf.2b9a12a9c3c5ef218e65d00c916eed67.jpg", - "response": "A chief petty officer in the U.S. Navy goes over a checklist with two sailors in the kitchen of a ship.", - "id": 9292 - }, - { - "image_path": "/content/drive/MyDrive/combined/20191118-145159-B-1120-Makers-Square-Grant-Courtesy-3_jpg.rf.d5a9d871111eb8298e07d25ff68aae2c.jpg", - "response": "The image shows two men working on a building. One man is standing on a red ladder on the left side of the image, and the other man is standing on a red ladder on the right side of the image. Both men are wearing yellow shirts.", - "id": 9293 - }, - { - "image_path": "/content/drive/MyDrive/combined/292_png.rf.7e2f59a827060b12a29e7a7ce07cb059.jpg", - "response": "a man standing in a doorway in a room with white walls and speckled black dots on the surface of the room.", - "id": 9294 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_png.rf.ea4a52c06d72b08344b4a97998fa544c.jpg", - "response": "A blurry image of a man standing in front of a wooden fence.", - "id": 9295 - }, - { - "image_path": "/content/drive/MyDrive/combined/328_png.rf.27225fffb0d5fc59a6aa82bd3b0aac10.jpg", - "response": "a couple of people are running in a yard", - "id": 9296 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144025-2-_jpg.rf.0392c62b333b443d3003395483b8aafc.jpg", - "response": "A man wearing a yellow hat is standing in a yard holding a red pole.", - "id": 9297 - }, - { - "image_path": "/content/drive/MyDrive/combined/217_jpg.rf.820d2ced383e8574a58033f9a50160b7.jpg", - "response": "A man holding a large orange and white traffic cone.", - "id": 9298 - }, - { - "image_path": "/content/drive/MyDrive/combined/323_png.rf.c85cfc4678b0fe373e92c8ef19193711.jpg", - "response": "a man standing in front of a glass door", - "id": 9299 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143532-0-_jpg.rf.7b95371f129d16b4ccf24279e98bacba.jpg", - "response": "a man in a grey shirt and blue shorts", - "id": 9300 - }, - { - "image_path": "/content/drive/MyDrive/combined/318_png.rf.20ea95b5c4ccd3fd42c0b47ba8b415ba.jpg", - "response": "A man in a black jacket and black pants is standing on a sidewalk.", - "id": 9301 - }, - { - "image_path": "/content/drive/MyDrive/combined/202_jpg.rf.e8c2b74efa511d5ca9324a22b4ee6261.jpg", - "response": "A man is holding a large orange and white traffic cone in front of his head.", - "id": 9302 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143511-0-_jpg.rf.5f8871aea04c34c739c4d5177c3dd3ee.jpg", - "response": "A man in a grey shirt and blue shorts is using a long orange handled tool to trim a tree.", - "id": 9303 - }, - { - "image_path": "/content/drive/MyDrive/combined/313_png.rf.368fa11a51172176c4811fe901f92202.jpg", - "response": "A man and a woman standing in the rain with an umbrella.", - "id": 9304 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143538_jpg.rf.3c106de94317db9d6d377d0e92c2b5fc.jpg", - "response": "A man in a blue shirt and blue shorts is using a pole to dig into the ground.", - "id": 9305 - }, - { - "image_path": "/content/drive/MyDrive/combined/334_png.rf.5a3635eee70fa0b0348804361e73953c.jpg", - "response": "A blurry image of a woman standing in front of a desk with three people sitting at the desk.", - "id": 9306 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143547_jpg.rf.cd2852dabad4b3c778c6f315a6ef6a31.jpg", - "response": "A man is seen in the distance wearing a gray shirt and blue shorts. He is standing in a yard with a yellow hat on. In front of him is a patch of dirt where he has been working. He is using a long handled tool to dig into the grass. The grass is green and lush in the area where he is working. There are also a few trees in the yard.", - "id": 9307 - }, - { - "image_path": "/content/drive/MyDrive/combined/317_png.rf.f9a12b751d9f8a8ff1fda3b7ca8086ed.jpg", - "response": "A snowy sidewalk with two people walking on it.", - "id": 9308 - }, - { - "image_path": "/content/drive/MyDrive/combined/334_png.rf.61c18f19c4d3e68181829814dd9ff5ba.jpg", - "response": "A blurry image of a woman standing in front of a counter at a restaurant. She is wearing a blue shirt and blue jeans.", - "id": 9309 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143515-2-_jpg.rf.f8b30b5461f9e2e76fac4fab47ca8cf3.jpg", - "response": "A man wearing a gray shirt and blue shorts is holding a pole with a blue and white brush on the end. He is standing in a yard with a mix of green grass and dark green bushes. There is a concrete sidewalk in the foreground and a small building in the background.", - "id": 9310 - }, - { - "image_path": "/content/drive/MyDrive/combined/3303_jpg.rf.b78e02f01c41e1fd7a7a45818f489656.jpg", - "response": "A forklift in a warehouse moving between tall shelves filled with cardboard boxes.", - "id": 9311 - }, - { - "image_path": "/content/drive/MyDrive/combined/309_png.rf.b7c191733174b6816c815c2e6ac0ffab.jpg", - "response": "A person walking down a street in the rain.", - "id": 9312 - }, - { - "image_path": "/content/drive/MyDrive/combined/319_png.rf.2239107b191563f82aa496d91ea049ad.jpg", - "response": "A man in a blue shirt is kicking a soccer ball.", - "id": 9313 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143524-2-_jpg.rf.30ffd2d80211270d188e0805662f4805.jpg", - "response": "a man standing in a yard holding a stick", - "id": 9314 - }, - { - "image_path": "/content/drive/MyDrive/combined/219_jpg.rf.b2e2b9ba93560013491038907d812cb5.jpg", - "response": "A man is holding a large orange and white cone in a garage.", - "id": 9315 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144040-0-_jpg.rf.e2f79d63865fd21e8850fea31d01821f.jpg", - "response": "A man in a grey shirt and blue shorts is holding a hose in a yard.", - "id": 9316 - }, - { - "image_path": "/content/drive/MyDrive/combined/3267_jpg.rf.901b00b14acaa4499ef7fd162972b23b.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9317 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143510-1-_jpg.rf.deecd13dffce0717bc165050758aa466.jpg", - "response": "a man in a yard with a pole", - "id": 9318 - }, - { - "image_path": "/content/drive/MyDrive/combined/332_png.rf.f17572a04ce468b3c27d22dcd89e307b.jpg", - "response": "A blurry image of a group of people in a room. They are standing around a table with a cake on it. The cake has a red and green bow on it. There are chairs around the table and a bike is parked in the room.", - "id": 9319 - }, - { - "image_path": "/content/drive/MyDrive/combined/3231_jpg.rf.120df9b0ac300a263086be029540e295.jpg", - "response": "A large warehouse with shelves filled with boxes.", - "id": 9320 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143551-0-_jpg.rf.d54644d230d2382035cc5818c6403eac.jpg", - "response": "A man wearing a blue shirt and blue shorts is standing in a field holding a large stick.", - "id": 9321 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_png.rf.a927f1937c73e93addcc3f6d02393440.jpg", - "response": "a man standing (433,535),(562,879)", - "id": 9322 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143524-1-_jpg.rf.e9b3c1a2837c9b35f57c512bb504a932.jpg", - "response": "a man is standing in a yard with a pole", - "id": 9323 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143528-0-_jpg.rf.b488b98ccf14e63a90f4c69924871948.jpg", - "response": "A man in a yellow hat and grey shirt is holding a stick and looking up at a tree.", - "id": 9324 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143522_jpg.rf.60d26acc93f372ee473b99893b094b8e.jpg", - "response": "A man wearing a yellow hat is standing in a yard holding a pole.", - "id": 9325 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143956_jpg.rf.f09237acdc122d48ed232dc5cc64d182.jpg", - "response": "A man in a grey shirt and blue shorts wearing a yellow helmet and holding a rope.", - "id": 9326 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144030-1-_jpg.rf.449a709530836ec5d44d3994018acd85.jpg", - "response": "A man wearing a yellow hat is mowing a yard with a push mower.", - "id": 9327 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143551_jpg.rf.44384e5a36f1a024f42cc1789bdfd8bd.jpg", - "response": "a man standing in a yard with a garden tool", - "id": 9328 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144035-0-_jpg.rf.df346c892c72938206781f89906f8e38.jpg", - "response": "A man in a yellow hat and grey shirt is holding a stick and walking through a yard.", - "id": 9329 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143516-0-_jpg.rf.5552aca4364ae4c95e30e8df40c03951.jpg", - "response": "A man wearing a yellow hat is holding a pole with a long orange handle.", - "id": 9330 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220228_10_jpg.rf.363b73c70de9180f4264d23d30c9f9fe.jpg", - "response": "An electrician is working on some power lines.", - "id": 9331 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143953_jpg.rf.33c7305c334e77b7466b878ff7365dc8.jpg", - "response": "A man is climbing a rope attached to a wooden pole.", - "id": 9332 - }, - { - "image_path": "/content/drive/MyDrive/combined/3183_jpg.rf.162780456f8f6dd75784d779d95afdbf.jpg", - "response": "A man is driving a forklift in a warehouse. The warehouse is filled with boxes and shelves. The man is wearing a white shirt.", - "id": 9333 - }, - { - "image_path": "/content/drive/MyDrive/combined/333_png.rf.a1184733bb3d77018eab23d7518a0a72.jpg", - "response": "a man standing in front of a wall with a number 5 on it", - "id": 9334 - }, - { - "image_path": "/content/drive/MyDrive/combined/325_png.rf.d81a774cb2b286e0747c27ff85ac93bb.jpg", - "response": "A man sitting on a subway train with his arms crossed.", - "id": 9335 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143530_jpg.rf.87dc1e0dfe3d1ff758850eb3157c9f97.jpg", - "response": "A man in a grassy yard holding a pole.", - "id": 9336 - }, - { - "image_path": "/content/drive/MyDrive/combined/219_jpg.rf.d69bcc196fc500abbc3711329f43588d.jpg", - "response": "A street scene with a variety of traffic cones and pylons. There are at least 12 cones and 3 pylons in the scene. The cones are scattered around the street and some are stacked on the sidewalk. The pylons are also scattered around the street and some are stacked on the sidewalk. Some of the cones and pylons are orange and white striped.", - "id": 9337 - }, - { - "image_path": "/content/drive/MyDrive/combined/205_jpg.rf.240eb22e0a49b60c3f0d18c5059e18a3.jpg", - "response": "A row of orange and white traffic cones are set up on the side of a road.", - "id": 9338 - }, - { - "image_path": "/content/drive/MyDrive/combined/31_png.rf.5006d8162481b7082fa0c35f09a9313b.jpg", - "response": "A glass wall with speckles on it, showing two people running on treadmills inside a gym.", - "id": 9339 - }, - { - "image_path": "/content/drive/MyDrive/combined/3315_jpg.rf.b2b9d0eef211390b92e46a1223b4f511.jpg", - "response": "A warehouse with multiple shelves and a fork lift in the middle of the room.", - "id": 9340 - }, - { - "image_path": "/content/drive/MyDrive/combined/320_png.rf.c3b9f244fef7990222f85135547ae0c3.jpg", - "response": "A man and a woman walking down a street.", - "id": 9341 - }, - { - "image_path": "/content/drive/MyDrive/combined/217_jpg.rf.e8e9eb4519ab884ef04d31f7fb6ebdde.jpg", - "response": "A pair of orange traffic cones sitting on black bases.", - "id": 9342 - }, - { - "image_path": "/content/drive/MyDrive/combined/3255_jpg.rf.76a8e92b10ecd318fcef98d8ceac6473.jpg", - "response": "A forklift in a warehouse filled with boxes on the shelves.", - "id": 9343 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143520-1-_jpg.rf.eea122aa6982011ed36d48761e269543.jpg", - "response": "A man wearing a yellow hat and blue shorts is using a pole to reach the top of a tree.", - "id": 9344 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143525-0-_jpg.rf.366eab93a7f6698ee9a549f911ccf717.jpg", - "response": "a person wearing a yellow hat and grey sweatshirt standing in a yard holding a stick.", - "id": 9345 - }, - { - "image_path": "/content/drive/MyDrive/combined/329_png.rf.f1d8a7578617264d3dfbf62159383fbf.jpg", - "response": "A man is walking through a room with a white table.", - "id": 9346 - }, - { - "image_path": "/content/drive/MyDrive/combined/31_png.rf.e22a6eb2a392691b8fb3c497d0008e63.jpg", - "response": "a person standing in front of a glass wall", - "id": 9347 - }, - { - "image_path": "/content/drive/MyDrive/combined/307_png.rf.59eba2def4f82f43181f6b694b481fa8.jpg", - "response": "A man standing on a deck near a pool.", - "id": 9348 - }, - { - "image_path": "/content/drive/MyDrive/combined/3207_jpg.rf.8418a20afdd45ac767d5f47a10afd390.jpg", - "response": "A warehouse with a fork lift in the middle of it.", - "id": 9349 - }, - { - "image_path": "/content/drive/MyDrive/combined/3219_jpg.rf.174e04da2edd62ea6eea97f36fd69ca6.jpg", - "response": "A man is driving a yellow forklift through a warehouse.", - "id": 9350 - }, - { - "image_path": "/content/drive/MyDrive/combined/329_png.rf.212ebe633d1b87ecc1712b43d7b07426.jpg", - "response": "A man is seen from above walking through a room. He is wearing a black shirt and carrying a backpack. He is also holding a drink. In the room there is a desk with a computer and keyboard on it. There are also two other people in the room, one on the left and one on the right. A TV is on the wall in front of the people. There is a book on the desk near the computer.", - "id": 9351 - }, - { - "image_path": "/content/drive/MyDrive/combined/316_png.rf.4e67e7a3c99f2f7cff5bcb066f4f5b5c.jpg", - "response": "An older man standing on a porch with a handrail, looking up at a person in a red hat and black jacket who is holding a package.", - "id": 9352 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144039-0-_jpg.rf.9ddb3504ae289e7e3d51135439e2246c.jpg", - "response": "a man wearing a yellow hat is carrying a pole with a orange strap on it", - "id": 9353 - }, - { - "image_path": "/content/drive/MyDrive/combined/3279_jpg.rf.b4904f27c8958bb0b54a5da39fe997db.jpg", - "response": "A warehouse with a forklift in the middle of it. There are boxes stacked on the left and right sides of the warehouse and on the top of the shelves. The forklift is yellow and black and is moving through the center of the warehouse. There is a ladder on the left side of the warehouse.", - "id": 9354 - }, - { - "image_path": "/content/drive/MyDrive/combined/320_png.rf.8d88226b189cc22ae332e41f1e21edb7.jpg", - "response": "A man with a red hat is using a blue snow blower to clear snow from a sidewalk.", - "id": 9355 - }, - { - "image_path": "/content/drive/MyDrive/combined/3207_jpg.rf.74ed688ca67c61035ec835fd9bdde86a.jpg", - "response": "A warehouse with a fork lift driving through it.", - "id": 9356 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143506_jpg.rf.25c5a2293fce59f061dde92b24dc38fe.jpg", - "response": "A man wearing a hat is using a hose to water the grass.", - "id": 9357 - }, - { - "image_path": "/content/drive/MyDrive/combined/308_png.rf.aa124207257ea46923df4a7743b78c59.jpg", - "response": "A person standing next to a parked car.", - "id": 9358 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144039_jpg.rf.02a5e1166c3ee3f16ea207b4b79b6bf3.jpg", - "response": "A man standing in a yard holding a pole.", - "id": 9359 - }, - { - "image_path": "/content/drive/MyDrive/combined/319_png.rf.4f40ab39247084dfa659d757c3ce667d.jpg", - "response": "a man wearing a blue shirt and black pants is playing with a soccer ball in a garage.", - "id": 9360 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220228_9_jpg.rf.6208992938536ab58da6f930243b18fa.jpg", - "response": "An electrician is working on a power line", - "id": 9361 - }, - { - "image_path": "/content/drive/MyDrive/combined/314_png.rf.9fe7b5dc117968b6498c3a8d3f50e4fa.jpg", - "response": "A man in a red hat is walking down a sidewalk.", - "id": 9362 - }, - { - "image_path": "/content/drive/MyDrive/combined/3339_jpg.rf.0dce1841f7ca9c32b222e5f686d27ad0.jpg", - "response": "A warehouse with a forklift in it.", - "id": 9363 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143526_jpg.rf.6110077552e99800ec9c589ed06f7547.jpg", - "response": "a person wearing a yellow hat and holding a pole", - "id": 9364 - }, - { - "image_path": "/content/drive/MyDrive/combined/3231_jpg.rf.1c0527aa9b39a32752b8517422239ae7.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a person on a yellow forklift moving boxes.", - "id": 9365 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144035_jpg.rf.a25a18f9abc143e8e52bbb50a08b0f0f.jpg", - "response": "a man in a yellow hat", - "id": 9366 - }, - { - "image_path": "/content/drive/MyDrive/combined/213_jpg.rf.08f521dc498442aa47a893dc0034e569.jpg", - "response": "A man is holding a large orange and white cone in a cluttered room.", - "id": 9367 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143531_jpg.rf.e26a1757db106439365c846ad31c5ca9.jpg", - "response": "A man wearing a yellow hat and grey shirt is standing in a yard holding a long wooden pole.", - "id": 9368 - }, - { - "image_path": "/content/drive/MyDrive/combined/3075_jpg.rf.3f8f763f7e400d999a53df07cf73d49e.jpg", - "response": "A warehouse with multiple boxes stacked on shelves and a forklift in the middle of the room.", - "id": 9369 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144041-1-_jpg.rf.250ae8e374655c1a6d923d1b4fb3ea66.jpg", - "response": "a man wearing a yellow hat is using a push lawnmower to mow a green lawn.", - "id": 9370 - }, - { - "image_path": "/content/drive/MyDrive/combined/3219_jpg.rf.d52d77081671c9dd854a0e33452657cb.jpg", - "response": "A warehouse with a forklift driving down a narrow isle between tall shelves. The shelves are filled with cardboard boxes.", - "id": 9371 - }, - { - "image_path": "/content/drive/MyDrive/combined/3315_jpg.rf.e19e5217e7db0764258c5bc90bbc1bbd.jpg", - "response": "A warehouse with shelves filled with boxes and a man on a yellow machine moving boxes.", - "id": 9372 - }, - { - "image_path": "/content/drive/MyDrive/combined/3183_jpg.rf.ce42ff295fda12d97a11668541a5334b.jpg", - "response": "A warehouse with a man on a yellow vehicle between two tall shelves of boxes.", - "id": 9373 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143524-0-_jpg.rf.98757640270f9e6a3c8fb0c48f1382b3.jpg", - "response": "a person standing in a yard holding a stick", - "id": 9374 - }, - { - "image_path": "/content/drive/MyDrive/combined/3267_jpg.rf.64883ff6843e159fcb0f02d15dd4f6f0.jpg", - "response": "A forklift in a warehouse filled with boxes on the shelves.", - "id": 9375 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143521-0-_jpg.rf.72bbdc39216af07b4cc637b11cf6c497.jpg", - "response": "a man in a yard with a hat on", - "id": 9376 - }, - { - "image_path": "/content/drive/MyDrive/combined/328_png.rf.5420fb5c49119f3c1af67b8e151373a6.jpg", - "response": "A bird's eye view of a backyard with a cement patio and a pool.", - "id": 9377 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143526-0-_jpg.rf.b9502c69195bd6668a52f5edee0108f2.jpg", - "response": "a person standing in a yard holding a stick", - "id": 9378 - }, - { - "image_path": "/content/drive/MyDrive/combined/218_jpg.rf.b6823dcc170dda91e7e910cbec9caa07.jpg", - "response": "A man is holding a large orange and white cone in a garage.", - "id": 9379 - }, - { - "image_path": "/content/drive/MyDrive/combined/310_png.rf.e65925e5c4ab61da197d2fc1eed370fe.jpg", - "response": "A man in a white shirt is standing on a deck near a pool.", - "id": 9380 - }, - { - "image_path": "/content/drive/MyDrive/combined/308_png.rf.8d4fff6d770a948aafaf7382dc053678.jpg", - "response": "A small child standing next to a blue car.", - "id": 9381 - }, - { - "image_path": "/content/drive/MyDrive/combined/309_png.rf.7c8dc61d3214b96029a71bbc78fd6587.jpg", - "response": "A person in a yellow top is walking down a hallway.", - "id": 9382 - }, - { - "image_path": "/content/drive/MyDrive/combined/325_png.rf.521060230523f588da1a79899b81d2ca.jpg", - "response": "a man in a blue shirt standing in a hallway", - "id": 9383 - }, - { - "image_path": "/content/drive/MyDrive/combined/311_png.rf.580164e70d4789d1ce7aade407cd1df9.jpg", - "response": "A man in a red and white shirt is standing in front of a desk with a computer on it. There is a red chair in front of the desk. To the right of the man, there is a red and black suitcase. In front of the suitcase, there is a red folding chair. To the left of the man, there is a red and black suitcase. In front of the suitcases, there is a red folding chair. On the wall behind the man, there is a whiteboard.", - "id": 9384 - }, - { - "image_path": "/content/drive/MyDrive/combined/311_png.rf.25a5c731206784ffc779c32c6678941d.jpg", - "response": "a man standing in a room with chairs and a desk", - "id": 9385 - }, - { - "image_path": "/content/drive/MyDrive/combined/332_png.rf.6861b627ace238c7e84b4222952011dd.jpg", - "response": "A blurry image of a group of people in a room. They are all holding up various objects including a skateboard, a box, a book, a cup, a banana, a cake, a bottle, a tomato, a fork, a knife, a spoon, a bowl, a chair, a book, a teddy bear, a toy car, a remote, a TV, a mouse, a keyboard, a clock, a picture, a toy, a doll, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal, a toy car, a teddy bear, a toy, a stuffed animal,", - "id": 9386 - }, - { - "image_path": "/content/drive/MyDrive/combined/326_png.rf.778aefd7f33102b27d732ee3c2363119.jpg", - "response": "A man in a blue shirt is standing next to a pool.", - "id": 9387 - }, - { - "image_path": "/content/drive/MyDrive/combined/211_jpg.rf.d8f7235d55983de62e6464dc7ea21189.jpg", - "response": "A man is holding a large orange and white cone in a garage.", - "id": 9388 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144027-0-_jpg.rf.f887274353182513d47f9be8ea552739.jpg", - "response": "A man in a yellow hat is standing in a field of grass.", - "id": 9389 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144039-1-_jpg.rf.3dcf53d94622c17e1518265868775d17.jpg", - "response": "A man in a yellow hat and grey shirt carrying a pole.", - "id": 9390 - }, - { - "image_path": "/content/drive/MyDrive/combined/3255_jpg.rf.d9663be3b5fc8733130e5295540c78cd.jpg", - "response": "A warehouse with a forklift in the middle of it. There are many boxes on the shelves and pallets. The image is slightly blurry and has a dark border.", - "id": 9391 - }, - { - "image_path": "/content/drive/MyDrive/combined/327_png.rf.e645c46ca9e29459d2f82a8f17c3a051.jpg", - "response": "a man walking across a yard towards a pool", - "id": 9392 - }, - { - "image_path": "/content/drive/MyDrive/combined/324_png.rf.8af62bcbd2f1bab0c1d4d7724e506ebd.jpg", - "response": "A man in a blue jacket is walking through a doorway. There is a dining room with chairs and tables in the background.", - "id": 9393 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143945_jpg.rf.2dcaa873fbf4a0edbebdef8c6523932f.jpg", - "response": "A man standing in the grass with a pole.", - "id": 9394 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144041-0-_jpg.rf.23f0896bd036ff0b834feddb384f8414.jpg", - "response": "A man walking through a grassy field carrying a pole.", - "id": 9395 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144031-0-_jpg.rf.e846ab58249653d196897cf54cb712bd.jpg", - "response": "A man in a yellow hat and green shirt is standing in a yard with a red and black lawnmower. The grass is green and lush.", - "id": 9396 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143612-2-_jpg.rf.6f0b4be6ca0bf92a75a898ebe4737a43.jpg", - "response": " a person(597,146),(788,371) is standing in a yard", - "id": 9397 - }, - { - "image_path": "/content/drive/MyDrive/combined/314_png.rf.ddde30b2c0e108ff9f8dc59543ebf451.jpg", - "response": "A man walking down a street in the rain.", - "id": 9398 - }, - { - "image_path": "/content/drive/MyDrive/combined/322_png.rf.fed43eb30a56b6f4f3eab6846b9e4500.jpg", - "response": "A person standing in a doorway with a dog sitting on the floor.", - "id": 9399 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143518_jpg.rf.724305a21a22deee57abb8d853cd2ff7.jpg", - "response": "A man with a yellow hat and blue shorts is using a long orange tool to cut grass in a yard.", - "id": 9400 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144018_jpg.rf.508d08a9f1820ab78c44feadbf32143d.jpg", - "response": "a man in a yellow hat is mowing the grass with a green and white lawnmower", - "id": 9401 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144035-1-_jpg.rf.6016acfd1de458f3cfb0a1e2c5265331.jpg", - "response": "A man in a yellow hard hat is using a large tool to cut grass.", - "id": 9402 - }, - { - "image_path": "/content/drive/MyDrive/combined/312_png.rf.d5582ae5e20183695412c6e281f302e0.jpg", - "response": "A man wearing a black jacket and a red hat is walking down a street.", - "id": 9403 - }, - { - "image_path": "/content/drive/MyDrive/combined/327_png.rf.b58867bee09413dcc1c020dfe60efd01.jpg", - "response": "A man walking in a yard with a pool.", - "id": 9404 - }, - { - "image_path": "/content/drive/MyDrive/combined/316_png.rf.f62bd768e4612869af7dec8999643daf.jpg", - "response": "A snowy scene with two people standing on a sidewalk. One person is wearing a black jacket with a red hood and blue jeans. The other person is wearing a black jacket and blue jeans. There is a white fence to the right of the people and a car parked nearby. The image is covered in a speckled texture.", - "id": 9405 - }, - { - "image_path": "/content/drive/MyDrive/combined/3339_jpg.rf.17ac68e4579c386d4f3fb48c1dd2d573.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 9406 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143520_jpg.rf.1056419b4b0c4e416e8b3a2b50863307.jpg", - "response": "a man(620,269),(818,527) is trimming the bushes", - "id": 9407 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143612-0-_jpg.rf.ab2b6ea85b6165c3a1cfd6e10e6b1a5b.jpg", - "response": "A man is using a pole to trim the grass.", - "id": 9408 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143521_jpg.rf.e72aae65d5b530d63cf9d78a5b0bd999.jpg", - "response": "A man is holding a pole with a long reach tool on the end.", - "id": 9409 - }, - { - "image_path": "/content/drive/MyDrive/combined/317_png.rf.7ec8f3b9e5c6cb9eebe32077eaef1fcb.jpg", - "response": "A snowy sidewalk with a man in a black jacket and red hat walking down the street.", - "id": 9410 - }, - { - "image_path": "/content/drive/MyDrive/combined/216_jpg.rf.a871f4ed8581ffa7e6db3b39003d89e0.jpg", - "response": "A man standing in a room holding a orange and white traffic cone.", - "id": 9411 - }, - { - "image_path": "/content/drive/MyDrive/combined/32_png.rf.68a502b37e6e8eda6181ce289411b0c1.jpg", - "response": "A woman is seen walking in the rain in a still from a security camera.", - "id": 9412 - }, - { - "image_path": "/content/drive/MyDrive/combined/206_jpg.rf.ae42ce106f8d79f7dc76674645b2b871.jpg", - "response": "A street scene with two orange and white traffic cones on the sidewalk.", - "id": 9413 - }, - { - "image_path": "/content/drive/MyDrive/combined/312_png.rf.6db3a1888e612e961fb9da364f936677.jpg", - "response": "A man in a black jacket and black pants is walking down a sidewalk.", - "id": 9414 - }, - { - "image_path": "/content/drive/MyDrive/combined/307_png.rf.e8e0a33d1f6e7da4ecd42a579eb807f4.jpg", - "response": "A man standing on a patio near a pool.", - "id": 9415 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143532_jpg.rf.4de5020912f0552a670a91f08a5ce2f6.jpg", - "response": "a man wearing a yellow hat and blue shorts", - "id": 9416 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144019_jpg.rf.7611bf7b94a1b7ff3202ead0b19fe73b.jpg", - "response": "A man is using a pole to trim the grass.", - "id": 9417 - }, - { - "image_path": "/content/drive/MyDrive/combined/32_png.rf.3cbe66061b35bca14132f0a913bbff07.jpg", - "response": "A woman walking down a street next to a parked car.", - "id": 9418 - }, - { - "image_path": "/content/drive/MyDrive/combined/3111_jpg.rf.ab7e46944651b1d874e53fb6492d0cb9.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 9419 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143517-0-_jpg.rf.c9d4a02103860724a5acfdcd9171c829.jpg", - "response": "a man in a yard holding a red and black pole", - "id": 9420 - }, - { - "image_path": "/content/drive/MyDrive/combined/3279_jpg.rf.0f0a4e8edbd317a44090d4ecb6e9f179.jpg", - "response": "A warehouse with shelves and racks filled with boxes.", - "id": 9421 - }, - { - "image_path": "/content/drive/MyDrive/combined/313_png.rf.16b8b211a0054e9b0cc1eab83038876e.jpg", - "response": "A man and a woman are standing on a snowy sidewalk. The woman is wearing a black coat and hat, and carrying a black purse. The man is wearing a red hat and carrying a backpack. They are standing near a street, and there is a car parked nearby. The ground is covered in a layer of snow.", - "id": 9422 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143506-0-_jpg.rf.246e8bf09d2dc5ee803fd1fc509b9b15.jpg", - "response": "A man in a yard trimming a tree with a pole saw.", - "id": 9423 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143505_jpg.rf.0695969252f53ef5fef3269909ca171b.jpg", - "response": "A man wearing a hat is using a hose to water the grass.", - "id": 9424 - }, - { - "image_path": "/content/drive/MyDrive/combined/207_jpg.rf.434bc1493b3674365a36927b0082fcb2.jpg", - "response": "A set of four traffic cones in different colors.", - "id": 9425 - }, - { - "image_path": "/content/drive/MyDrive/combined/3087_jpg.rf.722aa29bdb2381a7d3c0bc9a9cca427d.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 9426 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143518-1-_jpg.rf.d4663db88753446279f13dc0903bb879.jpg", - "response": "a man in a yard holding a broom and wearing a yellow hat", - "id": 9427 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143526-1-_jpg.rf.9bdd89ac1e896319398b753df82da446.jpg", - "response": "A man in a yellow hat and grey sweatshirt is using a pole to trim a tree.", - "id": 9428 - }, - { - "image_path": "/content/drive/MyDrive/combined/218_jpg.rf.7f0276489169196c09c7c411f7d3d57b.jpg", - "response": "A row of six different types of traffic cones. The cones are lined up in two rows of three. The cones are black, yellow, pink, and white. The cones have different designs on them. The designs include a company logo, a warning message, and a caution cone.", - "id": 9429 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144008_jpg.rf.76134e4cb43ade2e5c6f35d48373376d.jpg", - "response": "A man in a yellow shirt and blue shorts is holding a pole with a long red and yellow pole attached to it. He is standing in a grassy area next to a dirt road. There is a telephone pole behind him and a fence to his left. There are also a few trees in the background.", - "id": 9430 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143523_jpg.rf.8a51fd5ab261ead8ebce384938cf5d20.jpg", - "response": "A man in a yellow hat is standing in a yard holding a pole.", - "id": 9431 - }, - { - "image_path": "/content/drive/MyDrive/combined/3087_jpg.rf.660b3c1401a8e06d4de1645998b515c6.jpg", - "response": "A forklift in a warehouse filled with boxes.", - "id": 9432 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143559_jpg.rf.9f6a24d56d651ee1e08011408d007499.jpg", - "response": "a man is standing in a yard with a stick", - "id": 9433 - }, - { - "image_path": "/content/drive/MyDrive/combined/326_png.rf.20c396bdc0f47b10549b758c3b574cfb.jpg", - "response": "A man in blue jeans standing next to a pool.", - "id": 9434 - }, - { - "image_path": "/content/drive/MyDrive/combined/331_png.rf.f611cb7d5cb56232f0c197b182332320.jpg", - "response": "A man is on the ground in a store being held down by two security guards.", - "id": 9435 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143520-0-_jpg.rf.8cc975de1ec48746e06a6431fda67106.jpg", - "response": "A man is holding a pole with a brush on the end of it.", - "id": 9436 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143507-1-_jpg.rf.ee44c653d9c6febf94f68f6a7a21cb45.jpg", - "response": "a man is standing in a yard and he is holding a pole with a long orange stick on the end of it.", - "id": 9437 - }, - { - "image_path": "/content/drive/MyDrive/combined/3111_jpg.rf.7fe9381e632813662a55f07f012d1c19.jpg", - "response": "A forklift is driving through a warehouse filled with boxes.", - "id": 9438 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143512-1-_jpg.rf.9c925bc627161827973b70bba2a48fa9.jpg", - "response": "A man is using a pole to trim the grass.", - "id": 9439 - }, - { - "image_path": "/content/drive/MyDrive/combined/3075_jpg.rf.2632857c21e8dddaed30511288b051ff.jpg", - "response": "A warehouse with a fork lift in the middle of it.", - "id": 9440 - }, - { - "image_path": "/content/drive/MyDrive/combined/322_png.rf.ae9f35342e2f6f1c96baa970f0c81ca2.jpg", - "response": "A man standing in a room holding a large object.", - "id": 9441 - }, - { - "image_path": "/content/drive/MyDrive/combined/310_png.rf.ea3401cdf1351a98aa456461fcff9b87.jpg", - "response": "A man is standing near a pool.", - "id": 9442 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143513-1-_jpg.rf.885312e54a13da2913080de75e81c814.jpg", - "response": "A man in a yard with a leaf blower.", - "id": 9443 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143523-0-_jpg.rf.b671742cf3b3ccc69e72379f23431d4c.jpg", - "response": "a person wearing a yellow hat and holding a pole", - "id": 9444 - }, - { - "image_path": "/content/drive/MyDrive/combined/331_png.rf.de09742d933e14ea97c02efdb493efb4.jpg", - "response": "A man(347,633),(773,978) is on the ground being arrested by a police officer(646,48),(877,457)", - "id": 9445 - }, - { - "image_path": "/content/drive/MyDrive/combined/204_jpg.rf.e00b4240ba953260daac5dec594fa8be.jpg", - "response": "A image of three traffic cones on a white background.", - "id": 9446 - }, - { - "image_path": "/content/drive/MyDrive/combined/323_png.rf.c5b18843f5e2e9b65b0b23654c351604.jpg", - "response": "A man walking past a building with a table and chairs outside.", - "id": 9447 - }, - { - "image_path": "/content/drive/MyDrive/combined/3303_jpg.rf.cd3ad18345b5810d1fbf98fadf03bb67.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9448 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143513_jpg.rf.ec5fc644b447d9fbad73053f6e8741ca.jpg", - "response": "a man in a yard holding a red and black pole", - "id": 9449 - }, - { - "image_path": "/content/drive/MyDrive/combined/208_jpg.rf.9c38e9ca74089569d4938db75e078cdb.jpg", - "response": "A pair of yellow cones laying on top of grass.", - "id": 9450 - }, - { - "image_path": "/content/drive/MyDrive/combined/333_png.rf.6b910e89cfe6edb7e2b3c64930fd91c5.jpg", - "response": "A man standing in a room with a phone on the wall.", - "id": 9451 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143514-0-_jpg.rf.8a2bbd49adb77ff4843d26f832a94189.jpg", - "response": "A man with a yellow hat on, holding a long orange pole with a black and red stick on the end.", - "id": 9452 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143527_jpg.rf.d049612427f0141a8b25aab8446a4150.jpg", - "response": "a man is outside in a yard with a pole", - "id": 9453 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144031_jpg.rf.37af59d0669a5301c4651c8f531176c9.jpg", - "response": "A man wearing a yellow hat is standing in a yard with a lot of grass.", - "id": 9454 - }, - { - "image_path": "/content/drive/MyDrive/combined/21487159874_6a144e5f75_o_d_jpg.rf.b8ea03f47e8d96cf241a3906d6403ed8.jpg", - "response": "A group of three men in yellow jackets and white hard hats are walking on a construction site.", - "id": 9455 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143514_jpg.rf.5da81d723f96ee8a4194db991ea763b0.jpg", - "response": "a man in a blue shirt and blue shorts is holding a orange hose and watering the grass", - "id": 9456 - }, - { - "image_path": "/content/drive/MyDrive/combined/324_png.rf.25b964a54100eb2832a2eaf4ec685ea7.jpg", - "response": "A man standing in front of a table with chairs.", - "id": 9457 - }, - { - "image_path": "/content/drive/MyDrive/combined/318_png.rf.21ac9f69db2c548765ac0db7eb18871b.jpg", - "response": "a person wearing a black jacket and pants is walking down a sidewalk", - "id": 9458 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_jpg.rf.e6dbebbd89a982867988807c311712c0.jpg", - "response": "A man with a beard and mustache wearing a blue shirt is holding an orange and white object in front of him.", - "id": 9459 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_jpg.rf.4e10b1991447934aaba715f1f3ac71e7.jpg", - "response": "A man in a blue shirt is holding a small orange and white traffic cone. The room is cluttered with many objects such as a suitcase, a book, a cup, a bottle, a clock, a shelf, a chair, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a keyboard, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book, a bottle, a cup, a chair, a clock, a bowl, a backpack, a bookshelf, a suitcase, a keyboard, a remote, a monitor, a mouse, a TV, a book,", - "id": 9460 - }, - { - "image_path": "/content/drive/MyDrive/combined/259_jpg.rf.25b1574b4ecc96a9d18435e81a0f0985.jpg", - "response": "A pile of five traffic cones lying on a white background. The cones are red and white in color and are scattered in a pile. They are in the middle of the image with a black arrow on the right pointing towards them. The background is white in color.", - "id": 9461 - }, - { - "image_path": "/content/drive/MyDrive/combined/335_jpg.rf.c29b4384e26d021208571cc9801c7154.jpg", - "response": "A traffic cone sitting in the middle of a parking lot.", - "id": 9462 - }, - { - "image_path": "/content/drive/MyDrive/combined/263_jpg.rf.97d6968db633ef66212a5200e0961a46.jpg", - "response": "A man holding a large orange and white traffic cone in front of his head.", - "id": 9463 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_png.rf.398dd23d78533d4b25453d146b420d0a.jpg", - "response": "A man walking in the rain with a car in the background.", - "id": 9464 - }, - { - "image_path": "/content/drive/MyDrive/combined/303_jpg.rf.6f54fc5e0854d6f2f84861edd6cdeff7.jpg", - "response": "A man in a garage is holding a camera and a box.", - "id": 9465 - }, - { - "image_path": "/content/drive/MyDrive/combined/345_png.rf.89710ec3d739bf95e2e75277af7581a1.jpg", - "response": "A group of people walking down a busy sidewalk.", - "id": 9466 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_png.rf.659440e990a8baabc0ca3da8bd22b964.jpg", - "response": "A man in a white shirt is walking away from a white car. The car is parked on the street. The man is wearing a white shirt and black pants. He is walking towards the sidewalk. The street is grey and wet. There are many small black spots on the image.", - "id": 9467 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_png.rf.d231420170ed8f1b41f0402f8799d234.jpg", - "response": "A blurry image of a group of people walking on a street.", - "id": 9468 - }, - { - "image_path": "/content/drive/MyDrive/combined/36547872586_1d2ecf5383_b_jpg.rf.f9a28d836a7201ca3b2227f16668bc1d.jpg", - "response": "A construction worker in a orange shirt and white helmet talking to a man in a white helmet and colorful shirt.", - "id": 9469 - }, - { - "image_path": "/content/drive/MyDrive/combined/295_jpg.rf.2ced97b848f8ea17af984b58d1ca1bc1.jpg", - "response": "A white background with two traffic cones on the right and left side of the image. In the middle of the image there is a square with the text \"Under Construction\" written on it. The text is in black and there is an exclamation mark after the word \"Construction\".", - "id": 9470 - }, - { - "image_path": "/content/drive/MyDrive/combined/361_jpg.rf.81991939475ca5a8c10a01108d379ee5.jpg", - "response": "A traffic cone that is on wheels and has a light on the top of it.", - "id": 9471 - }, - { - "image_path": "/content/drive/MyDrive/combined/345_png.rf.e62b2c40f52dbe6d5f3ed3cd64f63b94.jpg", - "response": "A group of people walking down a hallway.", - "id": 9472 - }, - { - "image_path": "/content/drive/MyDrive/combined/3375_jpg.rf.bd45d53e2fabc6fd02177580652e7799.jpg", - "response": "A large warehouse with shelves full of boxes. There is a person on a yellow forklift in the warehouse.", - "id": 9473 - }, - { - "image_path": "/content/drive/MyDrive/combined/228_jpg.rf.ce73973c0e28f7bf1c4670c6e91c90ec.jpg", - "response": "A room with a large orange and white traffic cone in the foreground. There are shelves on the wall with items on them. A bicycle is in the room and a TV is visible.", - "id": 9474 - }, - { - "image_path": "/content/drive/MyDrive/combined/270_jpg.rf.655acd5e61e17149bcc916e301eb0793.jpg", - "response": "A man holding a large orange and white cone in a storage room.", - "id": 9475 - }, - { - "image_path": "/content/drive/MyDrive/combined/230_jpg.rf.d86c6a35dfead703a91e5b0d0d1478a3.jpg", - "response": "A man is holding a large orange traffic cone.", - "id": 9476 - }, - { - "image_path": "/content/drive/MyDrive/combined/351_png.rf.1d9dfd13d7139eb20bd2bba712ccc046.jpg", - "response": "A person is walking down a sidewalk.", - "id": 9477 - }, - { - "image_path": "/content/drive/MyDrive/combined/340_png.rf.1f694586b106adfa4d7adf60c767a4bf.jpg", - "response": "A blurry image of a group of people walking through a city. They are all wearing backpacks and are walking on a sidewalk. The image is covered in a layer of water droplets.", - "id": 9478 - }, - { - "image_path": "/content/drive/MyDrive/combined/346_png.rf.9160963dee134b16028b49ba2c2c599b.jpg", - "response": "a person(467,608),(576,861) walking down a road", - "id": 9479 - }, - { - "image_path": "/content/drive/MyDrive/combined/248_jpg.rf.5415f7be109225fa94688a9b73d72b88.jpg", - "response": "A single orange and white pvc traffic cone sitting on a black base.", - "id": 9480 - }, - { - "image_path": "/content/drive/MyDrive/combined/304_jpg.rf.b97c8c3149e71e489cdc99c82ee47ceb.jpg", - "response": "A man in a garage workshop holding a traffic cone over his head.", - "id": 9481 - }, - { - "image_path": "/content/drive/MyDrive/combined/272_jpg.rf.e1f00a4855c1a88969c4c7c732f06452.jpg", - "response": "A man in a garage workshop holding a toy traffic cone over his head.", - "id": 9482 - }, - { - "image_path": "/content/drive/MyDrive/combined/348_png.rf.dc5f4cc9fe2f8d58d9bc42bcb10806b6.jpg", - "response": "A blurry image of a person standing in a field.", - "id": 9483 - }, - { - "image_path": "/content/drive/MyDrive/combined/356_jpg.rf.51854fa482710cfe38033c1a4f613998.jpg", - "response": "A green wall with two small traffic cones sitting on it.", - "id": 9484 - }, - { - "image_path": "/content/drive/MyDrive/combined/343_png.rf.7420143cbd3b509cf2f6dc39023734ba.jpg", - "response": "A man in a black jacket and black pants is seen in a grainy photo. He is standing next to a car and appears to be looking into the backseat. The photo is taken through a window and the man is blurry.", - "id": 9485 - }, - { - "image_path": "/content/drive/MyDrive/combined/340_png.rf.b82a4dd491be4e2748a6a1af1136be7e.jpg", - "response": "A blurry image of a room with a man sitting in a chair.", - "id": 9486 - }, - { - "image_path": "/content/drive/MyDrive/combined/342_png.rf.fee241c73bb154f0361b69ab2e92e4d7.jpg", - "response": "A bird is lying on the ground in the rain.", - "id": 9487 - }, - { - "image_path": "/content/drive/MyDrive/combined/341_png.rf.e49607b080c1caea2689030343e179c4.jpg", - "response": "A blurry image of a person standing in a field at night. The person is wearing a white hoodie and is standing in the grass. The image is covered in speckles and is not very clear.", - "id": 9488 - }, - { - "image_path": "/content/drive/MyDrive/combined/344_png.rf.a76ee8ede87039b0a93e3c70d9dc1b6d.jpg", - "response": "A man walking in front of a black truck.", - "id": 9489 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_png.rf.ec44996a820e7b083801c7e57be172f3.jpg", - "response": "a white car(613,101),(995,441) is parked on the street", - "id": 9490 - }, - { - "image_path": "/content/drive/MyDrive/combined/243_jpg.rf.46a253f7e738dd5ba62d30b18877ea46.jpg", - "response": "A man in a blue shirt is holding a large orange and white cone.", - "id": 9491 - }, - { - "image_path": "/content/drive/MyDrive/combined/3411_jpg.rf.8ffbbb96b2f9c627dd05d0d7c3eb047d.jpg", - "response": "A warehouse with a person on a yellow forklift moving boxes on a pallet.", - "id": 9492 - }, - { - "image_path": "/content/drive/MyDrive/combined/259_jpg.rf.2921450e8fe761de2cd1637192a89eb9.jpg", - "response": "A man in a blue shirt is holding a large orange traffic cone.", - "id": 9493 - }, - { - "image_path": "/content/drive/MyDrive/combined/338_png.rf.10ebf2c969c52a8b9398f82e48e307d7.jpg", - "response": "A blurry image of a street scene with a person holding a handbag walking down the street.", - "id": 9494 - }, - { - "image_path": "/content/drive/MyDrive/combined/354_jpg.rf.6326636a37355cee043b080c874f8ee0.jpg", - "response": "A set of 5 blue traffic cones.", - "id": 9495 - }, - { - "image_path": "/content/drive/MyDrive/combined/335_png.rf.06ca3137f0016266ecfc417e247febd2.jpg", - "response": "A blurry image of a man walking in a lobby.", - "id": 9496 - }, - { - "image_path": "/content/drive/MyDrive/combined/349_png.rf.64ee61436682c90e587a687ca7794312.jpg", - "response": "A man in a red shirt and pink pants is standing in a snowy field.", - "id": 9497 - }, - { - "image_path": "/content/drive/MyDrive/combined/366_jpg.rf.98b30bb72301ed4391aefeabb470c4fb.jpg", - "response": "A pair of orange traffic cones sitting on the road.", - "id": 9498 - }, - { - "image_path": "/content/drive/MyDrive/combined/239_jpg.rf.3d7ff58b1cd317e11d17f19a61f73122.jpg", - "response": "A man holding a large orange and white traffic cone in a garage.", - "id": 9499 - }, - { - "image_path": "/content/drive/MyDrive/combined/288_jpg.rf.7030acc3260eaf80bf899c48917a1b84.jpg", - "response": "A man is standing behind a large orange and white cone.", - "id": 9500 - }, - { - "image_path": "/content/drive/MyDrive/combined/263_jpg.rf.66e6d630a55acbdcf44a1919668844ea.jpg", - "response": "A group of four orange traffic cones sitting on the ground.", - "id": 9501 - }, - { - "image_path": "/content/drive/MyDrive/combined/253_jpg.rf.432c6eadc879db39903346d0bbc7dce4.jpg", - "response": "A single orange and white traffic cone on a white background.", - "id": 9502 - }, - { - "image_path": "/content/drive/MyDrive/combined/369_jpg.rf.e1d19ca08d2e92772cfc45d4ffb8b6d5.jpg", - "response": "A toy truck on a wooden table with a craft project to make construction cones.", - "id": 9503 - }, - { - "image_path": "/content/drive/MyDrive/combined/254_jpg.rf.7c0422621fb6c6d121dd20cf08160d03.jpg", - "response": "A man holding a small orange and white traffic cone.", - "id": 9504 - }, - { - "image_path": "/content/drive/MyDrive/combined/358_jpg.rf.6572f4bf203ee5a3c14cd69f206a1a31.jpg", - "response": "In the image there are two orange and white traffic cones sitting on black bases. The cones are made of a plastic material and have reflective stripes. They are sitting on a green surface.", - "id": 9505 - }, - { - "image_path": "/content/drive/MyDrive/combined/324_jpg.rf.43efc174d4924df8cefde0babae62633.jpg", - "response": "A man is holding a small orange and white cone in a garage.", - "id": 9506 - }, - { - "image_path": "/content/drive/MyDrive/combined/226_jpg.rf.bb50e671218086c48f70200cf8e455ac.jpg", - "response": "A man is holding a large orange and white cone in a storage room.", - "id": 9507 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_jpg.rf.7fde288c79ad338d68c87bbaa8c19440.jpg", - "response": "a man holding a orange and white traffic cone", - "id": 9508 - }, - { - "image_path": "/content/drive/MyDrive/combined/248_jpg.rf.0e40c6bd4d94dd4f8c93a078c45da36b.jpg", - "response": "A man holding a large orange and white cone.", - "id": 9509 - }, - { - "image_path": "/content/drive/MyDrive/combined/352_png.rf.a64152ac4d2a7b6f17112f8681b6c778.jpg", - "response": "A car window with a rain splattered view of a person walking in the rain.", - "id": 9510 - }, - { - "image_path": "/content/drive/MyDrive/combined/3567_jpg.rf.31c53a4744fe97504427a02ae05983d0.jpg", - "response": "A large room filled with boxes and shelving.", - "id": 9511 - }, - { - "image_path": "/content/drive/MyDrive/combined/354_jpg.rf.701788ba72f174824da0467c6dd12212.jpg", - "response": "A blurry image of a man holding a large orange and white cone.", - "id": 9512 - }, - { - "image_path": "/content/drive/MyDrive/combined/3483_jpg.rf.206667072a99eda524a73301c4aaee32.jpg", - "response": "A forklift in a warehouse filled with boxes and other items.", - "id": 9513 - }, - { - "image_path": "/content/drive/MyDrive/combined/247_jpg.rf.48ec511db9f9f205289740c61ee10d99.jpg", - "response": "A blue traffic cone with a reflective white band", - "id": 9514 - }, - { - "image_path": "/content/drive/MyDrive/combined/34_png.rf.b01c3bc3b5919764365014422e4abdd3.jpg", - "response": "A blurry image of a person standing on a sidewalk in front of a car. The image is covered in a speckled texture.", - "id": 9515 - }, - { - "image_path": "/content/drive/MyDrive/combined/258_jpg.rf.a60a3886b9178fe5cd15928d411e5841.jpg", - "response": "A man is holding a large orange and white traffic cone in a room with a lot of electronics.", - "id": 9516 - }, - { - "image_path": "/content/drive/MyDrive/combined/28694088838_28e2e41f93_o_jpg.rf.0ad065bfa8c4f7727ab50203012d98a1.jpg", - "response": "An airman directs a C-17 Globemaster III on the flight line at Joint Base Charleston, S.C., June 15, 2015. The C-17 is a heavy strategic airlifter that can transport troops, equipment and supplies to and from a wide range of locations.", - "id": 9517 - }, - { - "image_path": "/content/drive/MyDrive/combined/370_jpg.rf.5b862a971e9ea0568d5c9cdb1b7662e3.jpg", - "response": "A man in a garage holding an orange traffic cone.", - "id": 9518 - }, - { - "image_path": "/content/drive/MyDrive/combined/3435_jpg.rf.ab2e63ba207a74427cdbaca93d475e48.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9519 - }, - { - "image_path": "/content/drive/MyDrive/combined/363_jpg.rf.ccbee1288ce70d9270323ac0934a76a0.jpg", - "response": "A man in a blue shirt is holding an orange and white traffic cone.", - "id": 9520 - }, - { - "image_path": "/content/drive/MyDrive/combined/336_png.rf.d83103ee0249b178667e3235ddc3e2fc.jpg", - "response": "A black and white photo of a person standing in front of a door. The person is wearing a dark outfit and is positioned in the center of the photo. They are holding a cell phone in their left hand, which is raised to their ear. The person appears to be in a room with a window, which is covered in small white dots. The dots are scattered throughout the image, creating a pattern of varying sizes. The background of the photo is out of focus, making the person and the window the main focus of the image.", - "id": 9521 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_jpg.rf.2e655e353ff62bf61b44ed44afa5cccf.jpg", - "response": "A pair of orange and white traffic cones sitting on the road.", - "id": 9522 - }, - { - "image_path": "/content/drive/MyDrive/combined/2290439932_666bba3550_o_d_jpg.rf.3db90d8a1fb658d535d323bf2ed09f13.jpg", - "response": "A man wearing a yellow welding mask and a grey hard hat is welding a metal piece. He is wearing a grey shirt and brown pants. There are several other people in the room but they are not welding. There are also a lot of tools on the table in front of the man.", - "id": 9523 - }, - { - "image_path": "/content/drive/MyDrive/combined/3459_jpg.rf.1c3a56f97a5b516ddb69d71af97b170b.jpg", - "response": "A forklift in a warehouse filled with boxes stacked on high shelves.", - "id": 9524 - }, - { - "image_path": "/content/drive/MyDrive/combined/240_jpg.rf.d22b35738ea17763227145b6c4e8778b.jpg", - "response": "A man is holding a large orange and white cone in a room.", - "id": 9525 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_jpg.rf.8d165041aa2a9c043d8c70ccf9b1c35b.jpg", - "response": " Two road cones(101,127),(921,886) with no parking signs on them.", - "id": 9526 - }, - { - "image_path": "/content/drive/MyDrive/combined/350_png.rf.11672fbb469ee8619a47a5b44230134e.jpg", - "response": "A person walking down a sidewalk on a rainy day.", - "id": 9527 - }, - { - "image_path": "/content/drive/MyDrive/combined/307_jpg.rf.03d5aaf4164e7450b064e5a43335b6aa.jpg", - "response": " Two men(544,48),(827,995) dressed as traffic cones(783,84),(973,727)(544,48),(688,494) are seen on a busy road", - "id": 9528 - }, - { - "image_path": "/content/drive/MyDrive/combined/352_png.rf.8d0e330ec296813d5d520914f6c642d3.jpg", - "response": "A white dog standing in the rain with a green bush behind it.", - "id": 9529 - }, - { - "image_path": "/content/drive/MyDrive/combined/320e266194d5469cacf18a06097175a8_jpg.rf.bd690ea0034416fbe0b83de3e557899c.jpg", - "response": "The image depicts a man standing on a yellow ladder, working on a Coca-Cola vending machine. The machine is positioned outside of a building, and the man appears to be making repairs or performing some maintenance. The car parked next to the building is white in color.", - "id": 9530 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_png.rf.eeea4f4fc1e002b4db3b06be7f8b8246.jpg", - "response": "A man wearing a red shirt and grey shorts is running in a gym.", - "id": 9531 - }, - { - "image_path": "/content/drive/MyDrive/combined/3447_jpg.rf.09e7ba321482c0ccce75cfc4f48cf4c1.jpg", - "response": "A warehouse with a man on a yellow forklift moving boxes on a shelf.", - "id": 9532 - }, - { - "image_path": "/content/drive/MyDrive/combined/3543_jpg.rf.7b112e9a7c0b56885608429b2edee5fd.jpg", - "response": "A forklift in a warehouse moving boxes.", - "id": 9533 - }, - { - "image_path": "/content/drive/MyDrive/combined/3495_jpg.rf.2ba18c574ede0a6490e486f7c8688234.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 9534 - }, - { - "image_path": "/content/drive/MyDrive/combined/295_jpg.rf.bee1441b3cd9db3335ea92c886735604.jpg", - "response": "A man in a garage holding an orange traffic cone.", - "id": 9535 - }, - { - "image_path": "/content/drive/MyDrive/combined/3555_jpg.rf.d72350f5466ac16c5c8669914a4e3365.jpg", - "response": "A forklift in a warehouse moving boxes on a pallet rack.", - "id": 9536 - }, - { - "image_path": "/content/drive/MyDrive/combined/354_png.rf.2e7e5b86768e953009b686b209b2fe46.jpg", - "response": "A man and a woman are standing outside a silver SUV. The woman is wearing a black shirt and blue jeans. The man is wearing a white shirt and blue jeans. The woman is holding a cell phone in her left hand. The man is holding a cell phone in his right hand. The woman is standing in front of the man. The man is standing behind the woman. The SUV is parked on the street. The street is made of concrete. The sky is grey. The ground is wet. There is a fence in the foreground.", - "id": 9537 - }, - { - "image_path": "/content/drive/MyDrive/combined/284_jpg.rf.22364e0eac484e5aa1394c3ee16c5dee.jpg", - "response": "A pair of orange traffic cones, one large and one small, with reflective stripes.", - "id": 9538 - }, - { - "image_path": "/content/drive/MyDrive/combined/3411_jpg.rf.305813d658784de0c8dbb33cfc481356.jpg", - "response": "A warehouse with a person on a yellow forklift.", - "id": 9539 - }, - { - "image_path": "/content/drive/MyDrive/combined/3375_jpg.rf.2bea8026d6321d5539e1a2a476693484.jpg", - "response": "A warehouse with boxes stacked on high shelves. There is a person on a yellow forklift in the middle of the room.", - "id": 9540 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_jpg.rf.082266c3af9e60e5a93800a13fcba3d5.jpg", - "response": "A red and white cone with a sticker on it", - "id": 9541 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_jpg.rf.4d7dfd4e7345760a701078b8b2ac36e8.jpg", - "response": "A man holding a orange and white traffic cone.", - "id": 9542 - }, - { - "image_path": "/content/drive/MyDrive/combined/336_png.rf.e90e920541b95bebffe78b40fb727f9d.jpg", - "response": "A person standing in front of a door with a curtain. The image is black and white and has a lot of dots on it.", - "id": 9543 - }, - { - "image_path": "/content/drive/MyDrive/combined/348_png.rf.469bbe692b606f25da185d30d3010b13.jpg", - "response": "A blurry image of a forest with a white and gray bird in the foreground.", - "id": 9544 - }, - { - "image_path": "/content/drive/MyDrive/combined/273_jpg.rf.f3a26e56e80bbe473cb2703880260877.jpg", - "response": "Orange and white traffic cones on a street.", - "id": 9545 - }, - { - "image_path": "/content/drive/MyDrive/combined/340_jpg.rf.0c223f0c767cb9a2031fd3c524bb3a7c.jpg", - "response": "A man is holding a large orange and white traffic cone in a garage.", - "id": 9546 - }, - { - "image_path": "/content/drive/MyDrive/combined/342_png.rf.820014fd41892748f129b2ede8f5d259.jpg", - "response": "A bird sitting on the ground in front of a gate.", - "id": 9547 - }, - { - "image_path": "/content/drive/MyDrive/combined/354_png.rf.bf33c99b94ad4da2deef5233f4e2dfec.jpg", - "response": "A man walking next to a parked silver car.", - "id": 9548 - }, - { - "image_path": "/content/drive/MyDrive/combined/3447_jpg.rf.b5f30c40d5b232038dd5f68ccaebb1dc.jpg", - "response": "A forklift is driving through a warehouse filled with cardboard boxes. The warehouse has a metal frame and the boxes are stacked on both sides of the isle. The boxes are brown and white. There is a person in the warehouse driving the forklift.", - "id": 9549 - }, - { - "image_path": "/content/drive/MyDrive/combined/3483_jpg.rf.b3ce3ef30aa5cc92a0e115295af311ed.jpg", - "response": "A warehouse with a person on a yellow forklift moving boxes on a shelf.", - "id": 9550 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_jpg.rf.781b9795edfc98e7859c385182299d00.jpg", - "response": "A man in a blue shirt is holding a large orange traffic cone.", - "id": 9551 - }, - { - "image_path": "/content/drive/MyDrive/combined/350_png.rf.bb88716e8080018029349519c919b83e.jpg", - "response": "A person standing in a field with a dog.", - "id": 9552 - }, - { - "image_path": "/content/drive/MyDrive/combined/333_jpg.rf.01c4a8de42c6cbd753e36937626e14cb.jpg", - "response": "A man in a blue shirt is holding a orange and white traffic cone.", - "id": 9553 - }, - { - "image_path": "/content/drive/MyDrive/combined/356_png.rf.a92076452f65a24b204e997cc0c73248.jpg", - "response": "A couple of people walking across a snow covered ground.", - "id": 9554 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.d11349237e6d3f07923f689dc76d147b.jpg", - "response": " Two orange traffic cones(282,648),(678,913)(419,79),(554,493) lying on the grass and on the curb of a street", - "id": 9555 - }, - { - "image_path": "/content/drive/MyDrive/combined/335_png.rf.d90fa933471778884d0bc4e93d31d85c.jpg", - "response": "a man with a black jacket and a suitcase", - "id": 9556 - }, - { - "image_path": "/content/drive/MyDrive/combined/3351_jpg.rf.bcf8e627d237613823716cd2fc8b7ace.jpg", - "response": "A forklift is driving through a warehouse filled with boxes and shelves. The forklift is yellow and driving on a aisle between the boxes. The boxes are stacked on both sides of the aisle and are filled with different items. The shelves are filled with brown boxes and there are a few people in the warehouse. One person is standing on the left side of the image and another is on the right side. There is also a person in the middle of the image.", - "id": 9557 - }, - { - "image_path": "/content/drive/MyDrive/combined/356_png.rf.e9bc6b832030d65936474a9897c2e4f4.jpg", - "response": "A man and a woman walking on a street with a bike in the background.", - "id": 9558 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_jpg.rf.30293006f3f1378fdba4bc6a5892f2e3.jpg", - "response": "A row of orange and white traffic cones are placed on the side of a road. There is a stop sign in the background and a forest is visible in the distance.", - "id": 9559 - }, - { - "image_path": "/content/drive/MyDrive/combined/339_jpg.rf.b7de2c97f866c137004374bb5fbc3477.jpg", - "response": "The image is a large open area with a grey pavement. There are many orange and white traffic cones arranged in a grid pattern. They are placed in a spiral pattern, starting from the top left corner and moving counter clockwise. The cones are also arranged in a zigzag pattern. The pavement is made of dark grey bricks. There is a white square in the middle of the pavement.", - "id": 9560 - }, - { - "image_path": "/content/drive/MyDrive/combined/349_png.rf.2b8896bc7afe8d0a9e89b7fdced8ad38.jpg", - "response": "A blurry image of a person holding a surfboard in the water.", - "id": 9561 - }, - { - "image_path": "/content/drive/MyDrive/combined/338_png.rf.39f58f00566c9e3593b574f3cffbe98a.jpg", - "response": "A blurry image of a person in a tan shirt holding a black umbrella and walking in the rain.", - "id": 9562 - }, - { - "image_path": "/content/drive/MyDrive/combined/3459_jpg.rf.eee4c15bb961b6847b65d372cebd633c.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9563 - }, - { - "image_path": "/content/drive/MyDrive/combined/3543_jpg.rf.c7857f0add81fcbabdda303066deab81.jpg", - "response": "A warehouse with multiple shelves filled with boxes.", - "id": 9564 - }, - { - "image_path": "/content/drive/MyDrive/combined/22196461_370592970047989_980956344778994325_n_jpg.rf.8650831eff8199a98aeb4a0e02d60f9d.jpg", - "response": " Two men(160,178),(529,754)(622,401),(943,988) working on a building.", - "id": 9565 - }, - { - "image_path": "/content/drive/MyDrive/combined/3435_jpg.rf.58571fe2c618886461f0deb941523569.jpg", - "response": "A warehouse with a man on a yellow vehicle moving boxes.", - "id": 9566 - }, - { - "image_path": "/content/drive/MyDrive/combined/355_png.rf.5f65871dc34066823eb8e0d7c8e63819.jpg", - "response": "A man with a hat and a black and white checkered shirt standing under a clear shower curtain.", - "id": 9567 - }, - { - "image_path": "/content/drive/MyDrive/combined/310_jpg.rf.6e36ef8794d3c5aa000cdd952669bb78.jpg", - "response": "A pair of orange traffic cones.", - "id": 9568 - }, - { - "image_path": "/content/drive/MyDrive/combined/344_png.rf.7afce04a5275fdf9bd2e087adec92d9a.jpg", - "response": "A man wearing a black jacket and black pants is walking away from a black van.", - "id": 9569 - }, - { - "image_path": "/content/drive/MyDrive/combined/297_jpg.rf.c12d12f9f13db24a84c6f69288054ac4.jpg", - "response": "A man in a room holding an orange traffic cone.", - "id": 9570 - }, - { - "image_path": "/content/drive/MyDrive/combined/3423_jpg.rf.4b35b26a57731dd5cb9cb46ca3b68f40.jpg", - "response": "A warehouse with a person on a yellow forklift moving boxes on the left side of the image. The yellow forklift is driving through the warehouse. There are many boxes stacked on the right side of the image on the red shelves. The boxes are brown and white. There is a yellow box on the left side of the image. The warehouse has a yellow clock on the wall. The clock is round and has a yellow face. The warehouse has a white wall with a window on the left side of the image. The window is rectangular and has a white frame.", - "id": 9571 - }, - { - "image_path": "/content/drive/MyDrive/combined/235_jpg.rf.138683de4f54574da084c722ab99703c.jpg", - "response": "a man holding a orange and white cone in a storage room", - "id": 9572 - }, - { - "image_path": "/content/drive/MyDrive/combined/244class_jpg.rf.f3908eda686822992f12d45b6af4b2de.jpg", - "response": "A classroom with tables and chairs.", - "id": 9573 - }, - { - "image_path": "/content/drive/MyDrive/combined/26186903119_d0c7cbb0e4_b_jpg.rf.63a19e891c58b3f6d74b22f464c20944.jpg", - "response": "In the image, a woman is standing next to a fence. She is wearing a dark blazer and a white helmet. She is smiling and looking off to the right of the frame. To her right, there is a man wearing a white helmet and a yellow safety vest. He is also smiling and looking off to the left of the frame. In the top left corner of the image, there is a man wearing a white helmet and a yellow safety vest. He is facing the woman and the other man. In the bottom left corner of the image, there is a person wearing a white shirt and a black vest. They are facing the woman and the other two men.", - "id": 9574 - }, - { - "image_path": "/content/drive/MyDrive/combined/339_png.rf.a60b73a2972140f1c467c5530571d032.jpg", - "response": "A blurry image of a man walking down a street.", - "id": 9575 - }, - { - "image_path": "/content/drive/MyDrive/combined/32929765953_41407ba6bb_o_d_jpg.rf.2310b75de27bbda1ca29f8ec99990240.jpg", - "response": " A man(307,109),(621,996) wearing a hard hat(401,109),(545,270) and a yellow vest(338,316),(588,780) writing on a clipboard(422,557),(628,696)", - "id": 9576 - }, - { - "image_path": "/content/drive/MyDrive/combined/231_jpg.rf.4678827a71c2da817d2719c5754b7ac7.jpg", - "response": "The image shows a street with five orange traffic cones arranged in a row on the side of the street. The cones are spaced out in a way that they form a triangle shape. The street appears to be an asphalt road with a white line painted down the middle. The cones have reflective white stripes on them.", - "id": 9577 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_png.rf.a96080b3bf1ad73f78a0878b43a0fd46.jpg", - "response": "A man in a red shirt is running in a gym.", - "id": 9578 - }, - { - "image_path": "/content/drive/MyDrive/combined/3567_jpg.rf.c1bd09436595859956c1df932dff229a.jpg", - "response": "A forklift in a warehouse filled with boxes on the shelves.", - "id": 9579 - }, - { - "image_path": "/content/drive/MyDrive/combined/3519_jpg.rf.46f712b6caccc55191e79b6fc10f28b5.jpg", - "response": "A forklift is driving through a warehouse filled with boxes. The forklift is yellow and black and is driving through a doorway. There are several shelves filled with boxes of various sizes. Some of the boxes are stacked three high. The boxes are all closed and brown. The floor of the warehouse is grey. There is a blue wall visible to the left of the warehouse.", - "id": 9580 - }, - { - "image_path": "/content/drive/MyDrive/combined/261_jpg.rf.e5df5a412be45e94e7448d42049e7ed9.jpg", - "response": "A man holding a large orange and white traffic cone.", - "id": 9581 - }, - { - "image_path": "/content/drive/MyDrive/combined/329_jpg.rf.28f0adea7d06d74571359408e0bb4ad2.jpg", - "response": "A man in a garage with a blue shirt on.", - "id": 9582 - }, - { - "image_path": "/content/drive/MyDrive/combined/347_png.rf.b1cef2bd59211a2912559c5ae1264fe7.jpg", - "response": "A black and white photo of a man walking down a street. The man is wearing a suit and tie and is holding a handbag. The street is made of small tiles and there is a person's shadow on the right side of the photo.", - "id": 9583 - }, - { - "image_path": "/content/drive/MyDrive/combined/224_jpg.rf.bae1df8f04d90e7814fdbe3fab854222.jpg", - "response": "A single orange traffic cone laying on its side on a road.", - "id": 9584 - }, - { - "image_path": "/content/drive/MyDrive/combined/346_png.rf.33165a2796eb3f1b56cf3e4cca77348b.jpg", - "response": "A person walking through a field of grass.", - "id": 9585 - }, - { - "image_path": "/content/drive/MyDrive/combined/372_jpg.rf.2c34a51ac30fd041e9f46a8285ba1ff0.jpg", - "response": "A man is holding a large orange and white cone in a room.", - "id": 9586 - }, - { - "image_path": "/content/drive/MyDrive/combined/230_jpg.rf.4a45b17cf96f4cd78d18d98a39460757.jpg", - "response": "A traffic cone with three stripes, white on the top and two stripes on the bottom, on a white background.", - "id": 9587 - }, - { - "image_path": "/content/drive/MyDrive/combined/319_jpg.rf.fcab6135969064d7ef915070d0e6b9bf.jpg", - "response": "A man in a blue shirt is sitting in front of a camera. He is holding a plastic orange and white cone. A bicycle is visible in the background.", - "id": 9588 - }, - { - "image_path": "/content/drive/MyDrive/combined/341_png.rf.fa28f196958c33a1ffd9d6a559926529.jpg", - "response": "A car is parked in a garage with a man standing in front of it.", - "id": 9589 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_AvH_112_classroom_jpg.rf.19ba65fa285e733dd99a38d066e951d9.jpg", - "response": "A classroom with a whiteboard at the front of the room and desks and chairs arranged in rows.", - "id": 9590 - }, - { - "image_path": "/content/drive/MyDrive/combined/28-installExhaust_jpg.rf.46236bd04a856933226b4e2560471e3a.jpg", - "response": "A man on a ladder working on a house.", - "id": 9591 - }, - { - "image_path": "/content/drive/MyDrive/combined/351_png.rf.c322bf0d1b8f42d29628ad8745860b0a.jpg", - "response": "A blurry image of a person standing in a green field.", - "id": 9592 - }, - { - "image_path": "/content/drive/MyDrive/combined/343_png.rf.9e594f129f6bac331a60c782bfd472c3.jpg", - "response": "a man standing next to a car", - "id": 9593 - }, - { - "image_path": "/content/drive/MyDrive/combined/3351_jpg.rf.2493c35b87d2344ba4bc59e74cb5acd8.jpg", - "response": "A warehouse with a lot of boxes stacked on high shelves. There is a forklift in the middle of the room and a person is operating it.", - "id": 9594 - }, - { - "image_path": "/content/drive/MyDrive/combined/305_jpg.rf.e3ba7d12d319b8f089193347c4c0ce53.jpg", - "response": "A set of three orange traffic cones of varying heights.", - "id": 9595 - }, - { - "image_path": "/content/drive/MyDrive/combined/337_png.rf.e7815254e86853d393d7f0cf6cca619d.jpg", - "response": "A black and white image of a person standing in a bathroom. The person is wearing a black shirt and is in the center of the image. The image is slightly grainy and there are many small dots scattered throughout the image. The person is standing in front of a shower curtain and there is a sink in the background. The image is slightly blurred and there is a reflection of the person in the mirror.", - "id": 9596 - }, - { - "image_path": "/content/drive/MyDrive/combined/3531_jpg.rf.ae58295ed69498e246be6a08f4379ee3.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9597 - }, - { - "image_path": "/content/drive/MyDrive/combined/347_png.rf.00902a96ddcbd28007681feaec1bd305.jpg", - "response": "A black and white photo of a man walking down a street. He is wearing a black suit and tie and is walking alone. The photo is covered in small white dots, which are either dots or spots, and are randomly scattered throughout the image.", - "id": 9598 - }, - { - "image_path": "/content/drive/MyDrive/combined/326_jpg.rf.2f7a89fbe2795699d5b7b66c21873605.jpg", - "response": "a road with traffic", - "id": 9599 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_jpg.rf.e082e9531f8a82c5b6721bc70884cf83.jpg", - "response": "A man in a garage is holding a small orange cone over his head.", - "id": 9600 - }, - { - "image_path": "/content/drive/MyDrive/combined/355_png.rf.ae412a8f076835864a7b0129cd931f77.jpg", - "response": "A man is standing in a large puddle of water. The water is grey and the man is wearing black shoes. There are many small water droplets in the air around the man.", - "id": 9601 - }, - { - "image_path": "/content/drive/MyDrive/combined/36547872656_382aa24252_o_d_jpg.rf.082c8fe5408d60daa14a4a0b86b74a28.jpg", - "response": "A group of three people standing in a room with construction gear on.", - "id": 9602 - }, - { - "image_path": "/content/drive/MyDrive/combined/337_png.rf.fbc48dce8c37ff129ee86490a0c0d5e2.jpg", - "response": "A black and white photo of a figure standing in a shower. The figure is standing in the shower with the water running and the water droplets are falling down. The figure is wearing a black robe and has their back to the camera. The shower curtain is see through and has a black and white polka dot pattern. The entire photo has a black and white effect.", - "id": 9603 - }, - { - "image_path": "/content/drive/MyDrive/combined/3399_jpg.rf.8a6adede353833bae57681429a0ed5b6.jpg", - "response": "A warehouse with a person on a forklift moving boxes.", - "id": 9604 - }, - { - "image_path": "/content/drive/MyDrive/combined/236_jpg.rf.29950206998c9b8847e694e3b6333c6c.jpg", - "response": "The image shows four traffic cones depicted in various ways. Each cone is orange and white in color and has a white stripe around the middle third of the cone. The first two cones are shown standing straight up on a white background, the third cone is shown at an angle, and the fourth cone is shown in profile.", - "id": 9605 - }, - { - "image_path": "/content/drive/MyDrive/combined/339_png.rf.403fc1535e781641a3de7c89e5c9da95.jpg", - "response": "A blurry image of a man in a black shirt standing in front of a store.", - "id": 9606 - }, - { - "image_path": "/content/drive/MyDrive/combined/246_jpg.rf.9f7810ef85a1f2e952eaf432150092bb.jpg", - "response": "A green traffic cone sitting on a grey base.", - "id": 9607 - }, - { - "image_path": "/content/drive/MyDrive/combined/3555_jpg.rf.5f93396f3bca8c0b96e804dc9242770e.jpg", - "response": "A warehouse with a forklift driving down a narrow isle between tall shelves. The forklift is yellow and black and has a person in a seat at the front. The person is wearing a yellow shirt. The shelves are filled with cardboard boxes of various sizes. Some of the boxes are stacked three high. The isle is narrow and the boxes are stacked on both sides of the isle. The warehouse is filled with boxes and the isle is dimly lit.", - "id": 9608 - }, - { - "image_path": "/content/drive/MyDrive/combined/321_jpg.rf.6211764937a41e7a40b47c7fa57c5caf.jpg", - "response": "A man walking into a building with a large yellow cone in front of it.", - "id": 9609 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_jpg.rf.ff33c8688bb7d7a688c0edc6e84221b4.jpg", - "response": "A white and orange caution stick with a orange and white cone sitting on the end of it.", - "id": 9610 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_png.rf.a02a95d4345d1c098f66dfcfa558ae98.jpg", - "response": "A man and a boy are playing in a sprinkler. The man is wearing a black jacket and the boy is wearing a blue jacket. They are both barefoot. The sprinkler water is spraying in all directions. There is a bicycle in the background.", - "id": 9611 - }, - { - "image_path": "/content/drive/MyDrive/combined/3519_jpg.rf.deb345d2b49227bba4a94c345d5c4591.jpg", - "response": "A warehouse filled with lots of boxes and a forklift in the middle.", - "id": 9612 - }, - { - "image_path": "/content/drive/MyDrive/combined/3423_jpg.rf.0471e933d8d41af1aeebca401d43addf.jpg", - "response": "A warehouse with a person on a forklift in the middle of it.", - "id": 9613 - }, - { - "image_path": "/content/drive/MyDrive/combined/244_jpg.rf.e2acbdc5b27d29d90e39895affe7a4cd.jpg", - "response": "A man is holding a large orange and white cone in a storage room.", - "id": 9614 - }, - { - "image_path": "/content/drive/MyDrive/combined/3531_jpg.rf.7ca150fef2bdf4aceea3926e4460a07d.jpg", - "response": "A warehouse with multiple shelves and a person on a forklift in the background.", - "id": 9615 - }, - { - "image_path": "/content/drive/MyDrive/combined/3495_jpg.rf.5a120c5b0036f872c33fbe4161815cc8.jpg", - "response": "A forklift moving through a warehouse filled with boxes.", - "id": 9616 - }, - { - "image_path": "/content/drive/MyDrive/combined/3399_jpg.rf.3794be080a636d401e1d611a1ce214cc.jpg", - "response": "A warehouse with multiple shelves and boxes on the shelves. A forklift is in the middle of the room and a person is on it.", - "id": 9617 - }, - { - "image_path": "/content/drive/MyDrive/combined/36456198521_4aaca90084_o_d_jpg.rf.1fa6cdf318924c6b375711b8d6964441.jpg", - "response": "In the image, two women are wearing hard hats and talking. One woman is pointing to a door and the other woman is smiling. Both women are wearing sunglasses. One woman has gray hair and a blue scarf around her neck. The other woman has brown hair. One woman has a black shirt and a black bag over her shoulder. The other woman has a orange and yellow vest.", - "id": 9618 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_png.rf.4c13261e79acdbfa3ac5c0db06c15fab.jpg", - "response": "a person walking towards a silver car in a parking lot", - "id": 9619 - }, - { - "image_path": "/content/drive/MyDrive/combined/37_png.rf.aebef54465cddacc250a796b327bef45.jpg", - "response": "A man in white shirt and dark pants is walking towards a silver station wagon.", - "id": 9620 - }, - { - "image_path": "/content/drive/MyDrive/combined/531_jpg.rf.47b6c48093401d6537eebb6cd3243164.jpg", - "response": "A man in a garage holding a bag of chips and a orange traffic cone.", - "id": 9621 - }, - { - "image_path": "/content/drive/MyDrive/combined/42gb2egeclrz_jpg.rf.6370b55bd8042ee62f7cb56a51dfd62b.jpg", - "response": "A man in black shirt and jeans on a yellow ladder painting a white wall.", - "id": 9622 - }, - { - "image_path": "/content/drive/MyDrive/combined/4026702344_b2ea33f434_o_d_jpg.rf.225832d301bd815df2f64e44829e6ebd.jpg", - "response": "A man is welding metal in a garage.", - "id": 9623 - }, - { - "image_path": "/content/drive/MyDrive/combined/365_png.rf.a1c7ccae5dfb47a05eff78f8b73cc070.jpg", - "response": "A person is standing in the rain with a backpack on.", - "id": 9624 - }, - { - "image_path": "/content/drive/MyDrive/combined/381_png.rf.c282b32dc4d44fc7cca02c50894621eb.jpg", - "response": "A blurry image of a person standing on a street.", - "id": 9625 - }, - { - "image_path": "/content/drive/MyDrive/combined/4_jpg.rf.d191f591b79deec5cd5f79ff4dce2ade.jpg", - "response": "A man in a garage is holding a orange and white traffic cone.", - "id": 9626 - }, - { - "image_path": "/content/drive/MyDrive/combined/419_jpg.rf.06579431d8ad0dc9b5bd0d67b647801a.jpg", - "response": "In the image, there are four orange and white traffic cones arranged in a line on the street. The street is a black asphalt road with white lines painted on it. There is a car in the background, driving on the road. The car is a silver sedan with a blue stripe on the bottom. The car is driving towards the right side of the image. There is also a car in the top right corner of the image, but it is only partially visible.", - "id": 9627 - }, - { - "image_path": "/content/drive/MyDrive/combined/413_jpg.rf.9a78e636ae405ca3ea68dfd4eb4458ad.jpg", - "response": "A man in a garage workshop holding a toy orange traffic cone in the air.", - "id": 9628 - }, - { - "image_path": "/content/drive/MyDrive/combined/3603_jpg.rf.d02f5b7babee18d85bd417dcb4b86dc7.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 9629 - }, - { - "image_path": "/content/drive/MyDrive/combined/42_jpg.rf.daf0e1658b6c9052208b1178007efe4f.jpg", - "response": "A set of 5 collapsible traffic cones in an orange color with white stripes.", - "id": 9630 - }, - { - "image_path": "/content/drive/MyDrive/combined/3675_jpg.rf.95330f8d0eec07b9547c3eef43321040.jpg", - "response": "A large warehouse with a lot of boxes stacked on the shelves. The boxes are brown and white. There are also some people in the warehouse. One person is standing on the left side of the image, another person is standing on the right side of the image, and one person is standing in the middle of the image. There are also some stairs in the warehouse. One set of stairs is on the left side of the image, and another set of stairs is on the right side of the image. The warehouse also has a lot of boxes stacked on the shelves. Some of the boxes are stacked on the left side of the image, some are stacked in the middle, and some are stacked on the right side of the image.", - "id": 9631 - }, - { - "image_path": "/content/drive/MyDrive/combined/369_png.rf.7ce8cd12fbc5d3703c6465d97b66ffae.jpg", - "response": "a man walking down a path with a dog", - "id": 9632 - }, - { - "image_path": "/content/drive/MyDrive/combined/494_jpg.rf.6ad58c027e815c481bfe9e5c5207fd21.jpg", - "response": "A woman in a red shirt is sitting in a car with a instructor.", - "id": 9633 - }, - { - "image_path": "/content/drive/MyDrive/combined/513_jpg.rf.70026dd4dd673917e6ffe5d94773ece2.jpg", - "response": "A man in a blue shirt sitting in a garage.", - "id": 9634 - }, - { - "image_path": "/content/drive/MyDrive/combined/398_jpg.rf.57ff3ec64ae61f2745216e04267be60c.jpg", - "response": "A man is holding a large orange and white cone in a room.", - "id": 9635 - }, - { - "image_path": "/content/drive/MyDrive/combined/451_jpg.rf.f60d5a3c69821335d724b823febfb69b.jpg", - "response": "A man in a garage workshop holding a orange cone.", - "id": 9636 - }, - { - "image_path": "/content/drive/MyDrive/combined/509_jpg.rf.8654c23a5adc923883bc528978f7c45d.jpg", - "response": "a man in a garage holding a orange and white cone", - "id": 9637 - }, - { - "image_path": "/content/drive/MyDrive/combined/406_jpg.rf.3a17f68261a8f9777f3854e5f1900d47.jpg", - "response": "A blurry image of a man in a garage.", - "id": 9638 - }, - { - "image_path": "/content/drive/MyDrive/combined/549_jpg.rf.6cf702d227baf4abcd35ef1ca8acd8e6.jpg", - "response": "A single orange traffic cone sitting on a wet surface.", - "id": 9639 - }, - { - "image_path": "/content/drive/MyDrive/combined/367_png.rf.67f7575ea73a24bc8fc56000e93cd6b7.jpg", - "response": "A woman in a purple shirt is watering the plants in her yard.", - "id": 9640 - }, - { - "image_path": "/content/drive/MyDrive/combined/377_png.rf.900642ee9f8c9120919dddde407dc444.jpg", - "response": "A blurry image of a family of bears on the side of the road.", - "id": 9641 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_png.rf.98cdf2e986f90e4cb5706c9ad089a558.jpg", - "response": "A man is seen in a surveillance video damaging a bicycle rack at a Target parking lot in Burnsville, Minn.", - "id": 9642 - }, - { - "image_path": "/content/drive/MyDrive/combined/383_jpg.rf.cc2ceb1906c3a8edc9b3ac1ab84cd7e4.jpg", - "response": "The image shows a street with several orange traffic cones arranged in a row. They are placed on the street, which has a black top, and some of them are also placed on the sidewalk. The cones are arranged in a straight line and are spaced out at regular intervals. The cones have a reflective strip on them, which makes them more visible in the dark. The arrangement of the cones suggests that they are used to divert traffic or to mark a temporary change in the normal flow of traffic.", - "id": 9643 - }, - { - "image_path": "/content/drive/MyDrive/combined/384_png.rf.ccc56a1d18abc4432bc510289157451e.jpg", - "response": "A woman wearing a white shirt and blue jeans is walking down a sidewalk.", - "id": 9644 - }, - { - "image_path": "/content/drive/MyDrive/combined/528_jpg.rf.e6a0534cb69ddfa21d1448f564a5f138.jpg", - "response": "A man wearing a blue shirt standing in a garage.", - "id": 9645 - }, - { - "image_path": "/content/drive/MyDrive/combined/37_png.rf.ae92746159ef6405f8b6d0b84a5d7259.jpg", - "response": "A man in a tan jacket and blue jeans is standing on a skateboard in a parking lot. He is in front of a white van and appears to be getting ready to ride. The ground is covered in a blacktop and there are white lines painted on the ground. There is also a blue mat with a paw print on it in the parking lot.", - "id": 9646 - }, - { - "image_path": "/content/drive/MyDrive/combined/37_png.rf.16bbd7cdb63da354e2ad003e0053dad4.jpg", - "response": " a man(509,137),(785,619) standing in a parking lot", - "id": 9647 - }, - { - "image_path": "/content/drive/MyDrive/combined/489_jpg.rf.ca78344d4c0184cd6a86a8ae762ca607.jpg", - "response": "A man is spinning an orange cone on his finger.", - "id": 9648 - }, - { - "image_path": "/content/drive/MyDrive/combined/420_jpg.rf.15b6e6182b90ea913acc3ac33e39aa89.jpg", - "response": "A man holding a orange and white traffic cone in a garage.", - "id": 9649 - }, - { - "image_path": "/content/drive/MyDrive/combined/386_png.rf.48b6a21eea50330db368155c59b3e8f7.jpg", - "response": "A man standing next to a pile of tires.", - "id": 9650 - }, - { - "image_path": "/content/drive/MyDrive/combined/464_jpg.rf.fe8be408ea2589c71c197ca73fe8fbdc.jpg", - "response": "A man is holding a large orange and white cone in a room.", - "id": 9651 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_png.rf.bd68805966f6f96f4c8db1692079029a.jpg", - "response": "A blurry image of a person laying in bed with a cat. The cat is laying on the person's chest and appears to be sleeping. The person is wearing a purple shirt.", - "id": 9652 - }, - { - "image_path": "/content/drive/MyDrive/combined/369_png.rf.f5d04bb886a007f222f2f6bd122da3fb.jpg", - "response": "A man walking down a road with a dog.", - "id": 9653 - }, - { - "image_path": "/content/drive/MyDrive/combined/385_png.rf.87c1ab7114bc4423119db1f8f9e86c34.jpg", - "response": "A blurry image of a person walking on a street.", - "id": 9654 - }, - { - "image_path": "/content/drive/MyDrive/combined/370_png.rf.204a26bd9ab42e2d8508909cb5f7486d.jpg", - "response": "A person standing on a dirt road.", - "id": 9655 - }, - { - "image_path": "/content/drive/MyDrive/combined/388_jpg.rf.b98a0ae120b2f92ad785b420b32235b1.jpg", - "response": "A car is driving down a road with trees on both sides. There are orange and white traffic cones set up on the side of the road.", - "id": 9656 - }, - { - "image_path": "/content/drive/MyDrive/combined/3591_jpg.rf.9046ee76fc2ec7d81eda3fc1f9f437c2.jpg", - "response": "A warehouse filled with lots of boxes on the shelves.", - "id": 9657 - }, - { - "image_path": "/content/drive/MyDrive/combined/385_png.rf.360c6d41a91ba5f561196e85800dcaf9.jpg", - "response": "A person walking on a street.", - "id": 9658 - }, - { - "image_path": "/content/drive/MyDrive/combined/365_png.rf.2763ab6f5a4267de170277d410f7b68d.jpg", - "response": "A person standing on a street with trees in the background.", - "id": 9659 - }, - { - "image_path": "/content/drive/MyDrive/combined/434_jpg.rf.dee545f1b93f320c15b14050683f074c.jpg", - "response": "A man in a garage or storage room, wearing a blue shirt and holding a small orange cone.", - "id": 9660 - }, - { - "image_path": "/content/drive/MyDrive/combined/383_png.rf.6de67722fae17091a10819abc7a1ed75.jpg", - "response": "A woman standing on a sidewalk near a grassy area.", - "id": 9661 - }, - { - "image_path": "/content/drive/MyDrive/combined/428_jpg.rf.487aac119cc3f6dc5050c7a6df0ad950.jpg", - "response": "A man in a garage holding a orange and yellow traffic cone.", - "id": 9662 - }, - { - "image_path": "/content/drive/MyDrive/combined/536_jpg.rf.d19c91bd74efd1fba5f171a99b1c92b2.jpg", - "response": "A man in a garage with a fan blowing in front of him.", - "id": 9663 - }, - { - "image_path": "/content/drive/MyDrive/combined/3591_jpg.rf.ea149ef0701d4ffb58942e0c87cb50c5.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 9664 - }, - { - "image_path": "/content/drive/MyDrive/combined/384_png.rf.b047998f8b96ba6a9bc551c7c6234b89.jpg", - "response": "A person standing on a dirt road near a forest.", - "id": 9665 - }, - { - "image_path": "/content/drive/MyDrive/combined/498_jpg.rf.e18b899263835a1ae904329ce07ee5c3.jpg", - "response": "A man is holding a construction cone in a garage.", - "id": 9666 - }, - { - "image_path": "/content/drive/MyDrive/combined/521_jpg.rf.55e6bdc192ec7874702dfae36254f689.jpg", - "response": "A man is holding an orange traffic cone in a cluttered room.", - "id": 9667 - }, - { - "image_path": "/content/drive/MyDrive/combined/375_png.rf.ac5dd9ef9df552a25a3ca53f57ae45ce.jpg", - "response": "A group of people walking down a street.", - "id": 9668 - }, - { - "image_path": "/content/drive/MyDrive/combined/457_jpg.rf.e1b3e1a26f68950347de402489b694d8.jpg", - "response": "A man in a garage workshop is holding a white and orange flag in the air. There are shelves of various items on the wall behind him. A bike is parked in the garage and there are several tools on the wall. A clock is visible on the wall and there is a suitcase on the floor.", - "id": 9669 - }, - { - "image_path": "/content/drive/MyDrive/combined/3639_jpg.rf.33a312565c2862af6a4f74f6e86dbb6a.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor.", - "id": 9670 - }, - { - "image_path": "/content/drive/MyDrive/combined/403_jpg.rf.bff59eca96eb213e5bf44303151b98da.jpg", - "response": "A man in a garage holding an orange traffic cone.", - "id": 9671 - }, - { - "image_path": "/content/drive/MyDrive/combined/36_png.rf.9372e92925dca335321600164f86d899.jpg", - "response": "A person is seen through a rain-streaked window, with the raindrops covering the entire image. The person is wearing a purple top and is sitting on a bed. The bed has a white and yellow comforter on it. The person is also holding a book, which is open and visible. The background is blurry, with a chair seen in the distance. The room appears to be a bedroom.", - "id": 9672 - }, - { - "image_path": "/content/drive/MyDrive/combined/372_png.rf.e0c910d81fcb1a883458c8f5a0261bc8.jpg", - "response": "A woman walking down a street next to a fence.", - "id": 9673 - }, - { - "image_path": "/content/drive/MyDrive/combined/424_jpg.rf.3bce113579f05685cbe9d0b8d7801717.jpg", - "response": "A man in a blue shirt is holding a toy traffic cone.", - "id": 9674 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_png.rf.0f2f5ea2207b98df0fe8586be040e7dc.jpg", - "response": "A man and a woman are seen on a porch hugging each other.", - "id": 9675 - }, - { - "image_path": "/content/drive/MyDrive/combined/3603_jpg.rf.9e136fcc678d7e03195002251993799e.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 9676 - }, - { - "image_path": "/content/drive/MyDrive/combined/447_jpg.rf.46c3346d74d6e12df8dd75e26312ae1b.jpg", - "response": "A yellow and red cone on the ground.", - "id": 9677 - }, - { - "image_path": "/content/drive/MyDrive/combined/51K-NzbHAyL-_SL1200__jpg.rf.b404393706da95c83816767410b1e051.jpg", - "response": "A man wearing a yellow safety vest and blue hat is on a red ladder.", - "id": 9678 - }, - { - "image_path": "/content/drive/MyDrive/combined/380_png.rf.8fc088e098b6f8e10e93928fc9074166.jpg", - "response": "A woman standing on a sidewalk next to a grass covered field.", - "id": 9679 - }, - { - "image_path": "/content/drive/MyDrive/combined/373_png.rf.94e7eb200cf7c5291489e4d859ce610f.jpg", - "response": "A group of people are standing on a street corner.", - "id": 9680 - }, - { - "image_path": "/content/drive/MyDrive/combined/524_jpg.rf.c0c92f3038b7c96e7415500f8e3f1b66.jpg", - "response": "A blurry photo of a man holding a blurry orange and white object.", - "id": 9681 - }, - { - "image_path": "/content/drive/MyDrive/combined/51df2692a7d6e-image_jpg.rf.e3e7c21104d27c64555c0d807c780e4d.jpg", - "response": "A crew of two men work on the side of a building. They are on ladders, one man is on a yellow ladder and the other is on a red ladder. They are both wearing hard hats and the man on the yellow ladder is also wearing a red shirt.", - "id": 9682 - }, - { - "image_path": "/content/drive/MyDrive/combined/530_jpg.rf.137585d582fcd78dacc119f82f85bdcc.jpg", - "response": "a man in a garage holding a orange traffic cone", - "id": 9683 - }, - { - "image_path": "/content/drive/MyDrive/combined/526_jpg.rf.a496ea5df9ba83ccb9aaf97521554b78.jpg", - "response": "A man in a garage is holding a orange cone.", - "id": 9684 - }, - { - "image_path": "/content/drive/MyDrive/combined/37_png.rf.418b014970371ec5a593a5a73b4a0e64.jpg", - "response": "A man in white shirt standing next to a silver car.", - "id": 9685 - }, - { - "image_path": "/content/drive/MyDrive/combined/461_jpg.rf.f4b19ee1594f6add9a59660977e92cf6.jpg", - "response": " Two orange traffic cones(147,79),(847,799) on the side of the road.", - "id": 9686 - }, - { - "image_path": "/content/drive/MyDrive/combined/375_png.rf.f0e2cc268c96c8c5fdd56a1391e5c23f.jpg", - "response": "A man walking down the street next to a parked motorcycle.", - "id": 9687 - }, - { - "image_path": "/content/drive/MyDrive/combined/397_jpg.rf.14700772a197d1ef44d23c515f08a935.jpg", - "response": "A single orange traffic cone sitting on a red brick surface.", - "id": 9688 - }, - { - "image_path": "/content/drive/MyDrive/combined/45_jpg.rf.8a792f0c9d174880242c1c5c899c7306.jpg", - "response": " An orange traffic cone(143,96),(449,812) is on the ground.", - "id": 9689 - }, - { - "image_path": "/content/drive/MyDrive/combined/3615_jpg.rf.7bf7f93c157ad165aac5ee3e2e546a35.jpg", - "response": "A large warehouse with boxes stacked on the shelves.", - "id": 9690 - }, - { - "image_path": "/content/drive/MyDrive/combined/367_png.rf.4a451fbd8061ca011890d34a3ad34b82.jpg", - "response": "A person in a purple shirt standing on a sidewalk.", - "id": 9691 - }, - { - "image_path": "/content/drive/MyDrive/combined/534_jpg.rf.6798773fc3716caa7a5487b3c17b309b.jpg", - "response": "A man in a garage workshop holding a small orange traffic cone.", - "id": 9692 - }, - { - "image_path": "/content/drive/MyDrive/combined/382_png.rf.209b61afc7cd60b548359fb839a78943.jpg", - "response": "A woman walking down a road in a park.", - "id": 9693 - }, - { - "image_path": "/content/drive/MyDrive/combined/3615_jpg.rf.6dca547fa9e6c9ea5c7b7ea29ed709c2.jpg", - "response": "A man in a warehouse surrounded by boxes and shelves.", - "id": 9694 - }, - { - "image_path": "/content/drive/MyDrive/combined/372_png.rf.a657a3e9eb63cd398f73bde46def22d3.jpg", - "response": "A child and a bear are in the water.", - "id": 9695 - }, - { - "image_path": "/content/drive/MyDrive/combined/357_png.rf.dfdef5caf544b2a253aafa8ca5d8b101.jpg", - "response": "A woman is kneeling on the ground next to a car.", - "id": 9696 - }, - { - "image_path": "/content/drive/MyDrive/combined/501_jpg.rf.463b138808d728671df1cb204eb29577.jpg", - "response": "A man in a garage holding a orange traffic cone.", - "id": 9697 - }, - { - "image_path": "/content/drive/MyDrive/combined/504d63364ec16cb1eb98697e70ecb8a2-1-_jpg.rf.ca5e8c95c124c3eded3185f8c02fb410.jpg", - "response": "A man in white pants and a black shirt is on a yellow ladder painting the outside of a house.", - "id": 9698 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_jpg.rf.b6190b877ff683ecc2ffd87e49c3c459.jpg", - "response": "A man holding a orange and white traffic cone.", - "id": 9699 - }, - { - "image_path": "/content/drive/MyDrive/combined/404_jpg.rf.539651ab94a964d02a99d1b3be3bf39a.jpg", - "response": "A man in a garage holding an orange caution cone.", - "id": 9700 - }, - { - "image_path": "/content/drive/MyDrive/combined/368_png.rf.2934dcbf5923b37c30264717671f5e38.jpg", - "response": "A man wearing a white hat is walking down a sidewalk in a park.", - "id": 9701 - }, - { - "image_path": "/content/drive/MyDrive/combined/371_png.rf.26c69dff24058d5350528b31526b3df9.jpg", - "response": "A bird sitting on a wire seen through a window with white dots.", - "id": 9702 - }, - { - "image_path": "/content/drive/MyDrive/combined/377_jpg.rf.09e491705d4e28b24a7802ffd42c3923.jpg", - "response": "A blue and white traffic cone sitting on the side of a road.", - "id": 9703 - }, - { - "image_path": "/content/drive/MyDrive/combined/410_jpg.rf.d2175bc161bb2b24a648d28585c90b36.jpg", - "response": "A man in a blue shirt is holding an orange traffic cone.", - "id": 9704 - }, - { - "image_path": "/content/drive/MyDrive/combined/364_png.rf.151c54710ca4f4ba213eb3ca083cbead.jpg", - "response": "A man wearing a black shirt and white shorts is seen on surveillance footage walking away from a car.", - "id": 9705 - }, - { - "image_path": "/content/drive/MyDrive/combined/3639_jpg.rf.42ce935d64ef9d4fa236439cfdcba508.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 9706 - }, - { - "image_path": "/content/drive/MyDrive/combined/424_jpg.rf.f2fb29e355aac34d56f60253d449b5fd.jpg", - "response": " Two orange traffic cones(265,303),(481,800)(470,316),(693,818) on the road", - "id": 9707 - }, - { - "image_path": "/content/drive/MyDrive/combined/439_jpg.rf.75faa3e5e37b4b910b2cc0eb80f9ff13.jpg", - "response": "A man in a garage holding a small orange and white cone.", - "id": 9708 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a6b00e38d7b163234c1580ac257c8a8-safety-ladder-safety-first_jpg.rf.c2caffd6c4ede2db9d8669e3a87f70fd.jpg", - "response": "A home under construction with wood framing and roof beams showing. The roof is not yet sheathed and the interior has no drywall. The house is in the process of being built.", - "id": 9709 - }, - { - "image_path": "/content/drive/MyDrive/combined/446_jpg.rf.91b05c3c2d903bb31f91c5d86a28f298.jpg", - "response": " A single traffic cone(355,68),(679,645) is sitting on the ground in the middle of a white line on a road.", - "id": 9710 - }, - { - "image_path": "/content/drive/MyDrive/combined/433_jpg.rf.466bc149f2028f7a254aaad9d65bb4ce.jpg", - "response": "A single orange cone sitting on a white background.", - "id": 9711 - }, - { - "image_path": "/content/drive/MyDrive/combined/545_jpg.rf.e752298e74b7268af8cc5b2f4e53365a.jpg", - "response": "A man in a garage holding a orange traffic cone.", - "id": 9712 - }, - { - "image_path": "/content/drive/MyDrive/combined/380_png.rf.976ec707b0c3e81b12ddc6c730a0bba5.jpg", - "response": "A woman is standing on the side of a road.", - "id": 9713 - }, - { - "image_path": "/content/drive/MyDrive/combined/357_png.rf.c81fd656dea941d8211dbc5b32bc81ba.jpg", - "response": "A man in a white shirt is getting out of a silver car.", - "id": 9714 - }, - { - "image_path": "/content/drive/MyDrive/combined/362_png.rf.502da2e40f77f150a6c09cb3f2f0337f.jpg", - "response": "A group of people standing in a field with many gnats around them.", - "id": 9715 - }, - { - "image_path": "/content/drive/MyDrive/combined/364_png.rf.4449365457c491eb6ee73d8a03aecf54.jpg", - "response": "A man is seen on surveillance footage from the night of the incident.", - "id": 9716 - }, - { - "image_path": "/content/drive/MyDrive/combined/3627_jpg.rf.5852d9f56966ad40b35e90dd35bb3f40.jpg", - "response": "A blurry image of a room with shelves and boxes.", - "id": 9717 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_jpg.rf.005f5ceef0f37bd646e132b17838ab86.jpg", - "response": "A man in a blue shirt is holding a small orange and white cone.", - "id": 9718 - }, - { - "image_path": "/content/drive/MyDrive/combined/386_png.rf.74c47b4e2930769eece7c4e3759e3c3d.jpg", - "response": "A man standing next to a pile of tires.", - "id": 9719 - }, - { - "image_path": "/content/drive/MyDrive/combined/435_jpg.rf.9a091a181316d793890f2c7720e1e8bf.jpg", - "response": "A street at night with multiple traffic cones set up.", - "id": 9720 - }, - { - "image_path": "/content/drive/MyDrive/combined/381_png.rf.0e5599af86ab31dec74cd3a39961c42f.jpg", - "response": "A young girl is running down a sidewalk.", - "id": 9721 - }, - { - "image_path": "/content/drive/MyDrive/combined/40_jpg.rf.06edec9ea0d5c78c99f748e08b9c377c.jpg", - "response": "A man is holding a small orange and white cone in a storage room.", - "id": 9722 - }, - { - "image_path": "/content/drive/MyDrive/combined/520_jpg.rf.c40f8ba89ee5053389f3c381540c8f42.jpg", - "response": "A row of orange traffic cones sitting on the side of a road.", - "id": 9723 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_png.rf.dfaef6653ccc4fb3b4eca560f0880eaf.jpg", - "response": "A man in a red shirt is holding a fire extinguisher and putting out a fire.", - "id": 9724 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c43875bc97cdaece84ac6ce555235f1_jpg.rf.466c4bb5744b264a9a23a0a1e0bc5af4.jpg", - "response": "A man standing on a ladder trimming a tall hedge.", - "id": 9725 - }, - { - "image_path": "/content/drive/MyDrive/combined/362_png.rf.b8085220a069aade6ac012b58af42e42.jpg", - "response": "a couple of people are standing in a field", - "id": 9726 - }, - { - "image_path": "/content/drive/MyDrive/combined/456_jpg.rf.291060e2e0ad25a47496ded49c7803d4.jpg", - "response": "A man holding a orange and white traffic cone in a storage room.", - "id": 9727 - }, - { - "image_path": "/content/drive/MyDrive/combined/374_png.rf.0498ceeb2dbb54b54b8cf6e46804a767.jpg", - "response": "A window with rain drops on it.", - "id": 9728 - }, - { - "image_path": "/content/drive/MyDrive/combined/376_png.rf.4bc12000cd42ad77e469669a93ecbe9b.jpg", - "response": "A woman in a black dress is walking down a sidewalk.", - "id": 9729 - }, - { - "image_path": "/content/drive/MyDrive/combined/425_jpg.rf.39f70a212f0b01c532caac2df7f7ad94.jpg", - "response": "A man in a garage or storage room, wearing a blue shirt, holding an orange cone over his head.", - "id": 9730 - }, - { - "image_path": "/content/drive/MyDrive/combined/524_jpg.rf.eb0255005068a96646a09d7c5f806410.jpg", - "response": "A stack of 10 black and orange traffic cones.", - "id": 9731 - }, - { - "image_path": "/content/drive/MyDrive/combined/459_jpg.rf.450e7c04212d4a21ade20718ce7070e1.jpg", - "response": "A couple of men working on a road.", - "id": 9732 - }, - { - "image_path": "/content/drive/MyDrive/combined/493_jpg.rf.f23b6f915fb1a93fd68589a6cd3a8ae9.jpg", - "response": "A man in a garage holding a small orange cone.", - "id": 9733 - }, - { - "image_path": "/content/drive/MyDrive/combined/366_png.rf.db06ed37d2a9a18d12a51ee12b30670b.jpg", - "response": "A couple of people standing on a road.", - "id": 9734 - }, - { - "image_path": "/content/drive/MyDrive/combined/405_jpg.rf.a4a38154a154324df22c8bedf2342d1f.jpg", - "response": "A man is holding a traffic cone in front of him.", - "id": 9735 - }, - { - "image_path": "/content/drive/MyDrive/combined/3663_jpg.rf.43e8090628ca86733166b4e641bc79d0.jpg", - "response": "A large warehouse filled with lots of boxes stacked on top of each other.", - "id": 9736 - }, - { - "image_path": "/content/drive/MyDrive/combined/459_jpg.rf.961f53c27e6c2368474dfaa608d795d1.jpg", - "response": "A man in a garage is holding a small orange traffic cone in each hand.", - "id": 9737 - }, - { - "image_path": "/content/drive/MyDrive/combined/547_jpg.rf.e594c4704d0d048ba425c192dc30920f.jpg", - "response": " Three orange traffic cones(415,198),(651,857)(682,206),(928,865)(56,36),(362,909) are arranged in a triangle on the stairs.", - "id": 9738 - }, - { - "image_path": "/content/drive/MyDrive/combined/480_jpg.rf.a1beb8ffd3204a69414cd9593b0c405d.jpg", - "response": " A single orange traffic cone(302,94),(908,786) is placed on the side of a road.", - "id": 9739 - }, - { - "image_path": "/content/drive/MyDrive/combined/377_png.rf.ebb63217a2395d5df092e8b91ef85667.jpg", - "response": "A group of bears are sitting on the side of the road.", - "id": 9740 - }, - { - "image_path": "/content/drive/MyDrive/combined/525_jpg.rf.204c4ee74f3e1da2e352bdabb8013ca2.jpg", - "response": "A man in a blue shirt sitting in a garage.", - "id": 9741 - }, - { - "image_path": "/content/drive/MyDrive/combined/366_png.rf.1ad84d06310689cd31002e889c1280b5.jpg", - "response": "A blurry photo of two people on a road.", - "id": 9742 - }, - { - "image_path": "/content/drive/MyDrive/combined/379_png.rf.162fe569e1456062d6669cd27cc5b3fb.jpg", - "response": "A person walking on a sidewalk next to a green field.", - "id": 9743 - }, - { - "image_path": "/content/drive/MyDrive/combined/378_png.rf.dced52134c2fdca1da3af8acd14e40c6.jpg", - "response": "A group of people sitting on a bench.", - "id": 9744 - }, - { - "image_path": "/content/drive/MyDrive/combined/368_png.rf.93b246eba3f437b04d5ea68109ac6b7c.jpg", - "response": "A man walking down a path in a park.", - "id": 9745 - }, - { - "image_path": "/content/drive/MyDrive/combined/395_jpg.rf.01c899a192cc7b2240361af7db8278c5.jpg", - "response": "A man wearing a black shirt is walking down the street. He is wearing a shirt that says \"RSR\" on the back. There are orange and white traffic cones set up in a line on the street. The cones are spread out and not in a row. There is a car in the background.", - "id": 9746 - }, - { - "image_path": "/content/drive/MyDrive/combined/383_png.rf.ba778ce1953eb663a662f0e6fed28c32.jpg", - "response": "A woman is walking on a sidewalk next to a grassy area.", - "id": 9747 - }, - { - "image_path": "/content/drive/MyDrive/combined/463_jpg.rf.3042c8e4d521a80571fe92cbb3e05187.jpg", - "response": "A man in a garage holding a orange and white traffic cone.", - "id": 9748 - }, - { - "image_path": "/content/drive/MyDrive/combined/456_jpg.rf.3c380872e3c23f4f9212000c4d8b8c68.jpg", - "response": "A large orange cone sitting in the middle of a courtyard.", - "id": 9749 - }, - { - "image_path": "/content/drive/MyDrive/combined/374_png.rf.b23aaadf84b97b329650714c5ea984b5.jpg", - "response": "A person walking in the rain with an umbrella.", - "id": 9750 - }, - { - "image_path": "/content/drive/MyDrive/combined/379_png.rf.0fab1918acc9325e569cdb79656be0df.jpg", - "response": "A person walking down a sidewalk next to a green bush.", - "id": 9751 - }, - { - "image_path": "/content/drive/MyDrive/combined/361_png.rf.00e42b4cb92b4e80a7dd4d4372458518.jpg", - "response": "A blurry image of a person walking down a road.", - "id": 9752 - }, - { - "image_path": "/content/drive/MyDrive/combined/373_png.rf.976ccf03947237bd23ccbce922b63f27.jpg", - "response": "A group of people are standing on a street corner. There is a man standing in the middle of the group and he is wearing a black hoodie. Another man is standing to his left and he is wearing a black jacket. A woman is standing to the right of the man in the hoodie and she is wearing a black coat. She has long hair and is holding a handbag. A man is standing to the right of the woman in the black coat and he is wearing a grey sweatshirt. He has short hair and is holding a skateboard. A man is sitting on the ground to the right of the man in the grey sweatshirt and he is wearing a white shirt.", - "id": 9753 - }, - { - "image_path": "/content/drive/MyDrive/combined/376_png.rf.db2cd3168a3a16d1656e67a1bea0d268.jpg", - "response": "A photo of a family on a rainy day.", - "id": 9754 - }, - { - "image_path": "/content/drive/MyDrive/combined/499_jpg.rf.63bc8857af33a73d6c2fe3851965884c.jpg", - "response": " A traffic cone(114,88),(469,825) on the ground", - "id": 9755 - }, - { - "image_path": "/content/drive/MyDrive/combined/514_jpg.rf.71ed28207a27c491b0935099eec9cbf7.jpg", - "response": "a man in a garage holding a small orange cone in his hand", - "id": 9756 - }, - { - "image_path": "/content/drive/MyDrive/combined/382_png.rf.b2c2bda1b316b0133ef6bbe796a0ec9d.jpg", - "response": "A woman walking down a tree lined road.", - "id": 9757 - }, - { - "image_path": "/content/drive/MyDrive/combined/359_png.rf.92b446d9b3ce2a322aa82df827d2e57a.jpg", - "response": "A man is standing next to a silver car on the street.", - "id": 9758 - }, - { - "image_path": "/content/drive/MyDrive/combined/396_jpg.rf.7f6b95ca8bca75c5efa0238226d8c276.jpg", - "response": "A man in a room with a laptop and a microphone.", - "id": 9759 - }, - { - "image_path": "/content/drive/MyDrive/combined/3675_jpg.rf.11710b74cea3c5bccfc68e18b717ea05.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 9760 - }, - { - "image_path": "/content/drive/MyDrive/combined/422_jpg.rf.dd8cc349209f0c38a66e15d45c7b0ae1.jpg", - "response": "a row of orange and white traffic cones", - "id": 9761 - }, - { - "image_path": "/content/drive/MyDrive/combined/370_png.rf.56a89ba7c07d35a939567a3a7de8c25b.jpg", - "response": "A man walking down a road in the woods.", - "id": 9762 - }, - { - "image_path": "/content/drive/MyDrive/combined/363_png.rf.6d7b266ab312774b7b2c35fa21eacd14.jpg", - "response": "a person walking down a road near a wooded area", - "id": 9763 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_jpg.rf.3215d72a71a60ff9b9f29e74ca49aa62.jpg", - "response": "A blurry traffic cone is in a storage room filled with boxes and shelves.", - "id": 9764 - }, - { - "image_path": "/content/drive/MyDrive/combined/387_png.rf.78eb956d25952d419619aa5f9c475543.jpg", - "response": "A man and a woman walking down a street", - "id": 9765 - }, - { - "image_path": "/content/drive/MyDrive/combined/423_jpg.rf.1ce5e2ac000e2e05c2722d77b7c9ad43.jpg", - "response": "A man in a garage workshop holding an orange traffic cone over his head.", - "id": 9766 - }, - { - "image_path": "/content/drive/MyDrive/combined/358_png.rf.da7969470281ca0c983d3f21d78fefb8.jpg", - "response": "A man in a blue shirt is walking across a crosswalk. The crosswalk is made of concrete and has white lines. There is a car parked on the side of the road. Another car is parked further back. There is a fire hydrant on the side of the road.", - "id": 9767 - }, - { - "image_path": "/content/drive/MyDrive/combined/378_png.rf.e41e1efc5f10a1990f192c62e5506a53.jpg", - "response": "A group of people sitting on a bench in a park.", - "id": 9768 - }, - { - "image_path": "/content/drive/MyDrive/combined/462_jpg.rf.fb5a165866fb6554d3e7f6bb09eaf5d1.jpg", - "response": "A man in a blue shirt is holding a red flag in a garage.", - "id": 9769 - }, - { - "image_path": "/content/drive/MyDrive/combined/441_jpg.rf.c932dec72fda68e38945a1fd1256eb6c.jpg", - "response": "A man in a blue shirt is holding an orange traffic cone in front of him.", - "id": 9770 - }, - { - "image_path": "/content/drive/MyDrive/combined/358_png.rf.fa4c80522dc4694a620c1c603e7736af.jpg", - "response": "A blurry image of a person crossing a street at a crosswalk. The person is wearing a blue shirt and dark pants. There are several cars in the image, including one that is parked on the left side of the street and another that is parked further back. The image is blurry and has a lot of noise.", - "id": 9771 - }, - { - "image_path": "/content/drive/MyDrive/combined/401_jpg.rf.c2f97074c0ccfb1c80e7d744a5d0dd9e.jpg", - "response": "A man holding a large orange and white cone in a garage.", - "id": 9772 - }, - { - "image_path": "/content/drive/MyDrive/combined/3627_jpg.rf.7101d1f16af356e5ced88a98822c72ea.jpg", - "response": "A warehouse with a lot of boxes stacked on shelves. There is a walkway in the middle of the warehouse and a fire extinguisher on the wall. The boxes are stacked on both sides of the walkway and some are also on the shelves. The warehouse is filled with dust and the picture has a grainy and snowy effect.", - "id": 9773 - }, - { - "image_path": "/content/drive/MyDrive/combined/487_jpg.rf.fe51e72a07bfbeadbfb679369e9b911e.jpg", - "response": " A single orange traffic cone(341,68),(662,854) on the ground", - "id": 9774 - }, - { - "image_path": "/content/drive/MyDrive/combined/516_jpg.rf.f04f29b07899b104a5056bd56463d4de.jpg", - "response": "A cone with a face on it.", - "id": 9775 - }, - { - "image_path": "/content/drive/MyDrive/combined/371_png.rf.ba7a7efd7ee2df2c5d3dd66b62d7c699.jpg", - "response": "A window view of a person standing next to a wooden bench.", - "id": 9776 - }, - { - "image_path": "/content/drive/MyDrive/combined/470_jpg.rf.59c6da7ff8ea97495929ae4f72140a17.jpg", - "response": "The image shows two orange traffic cones with white stripes on a black background. The stripes on both cones are slightly worn. The left cone is positioned in the foreground, tilted slightly to the left, and has a small crack in the middle of the white stripe on the lower half. The right cone is positioned behind the left cone, also tilted slightly to the left, but not as much as the left cone.", - "id": 9777 - }, - { - "image_path": "/content/drive/MyDrive/combined/431_jpg.rf.4fbef11cdd5c0afb28f5d37d06f33eb6.jpg", - "response": "A single orange cone on a black background.", - "id": 9778 - }, - { - "image_path": "/content/drive/MyDrive/combined/471_jpg.rf.4cb9ae99f8b1792297a9dc11c6bf9d0b.jpg", - "response": "A man in a garage holding an orange and white traffic cone.", - "id": 9779 - }, - { - "image_path": "/content/drive/MyDrive/combined/363_png.rf.d593316419b712b75ec8ad435a7fcfe4.jpg", - "response": "A boy in a blue shirt is playing in the rain. He is holding an umbrella and a tennis racket. He is standing on a sidewalk in front of a green forest.", - "id": 9780 - }, - { - "image_path": "/content/drive/MyDrive/combined/3663_jpg.rf.fb092818810f497d7745e1e52aa38254.jpg", - "response": "A warehouse with boxes stacked on tall shelves.", - "id": 9781 - }, - { - "image_path": "/content/drive/MyDrive/combined/479_jpg.rf.770f064677e85fd6c80bdb2287660f28.jpg", - "response": "A man in a garage is holding a small orange cone.", - "id": 9782 - }, - { - "image_path": "/content/drive/MyDrive/combined/359_png.rf.6381f70a344ad0336ddaa30a42cf27cc.jpg", - "response": "A man standing next to a silver van.", - "id": 9783 - }, - { - "image_path": "/content/drive/MyDrive/combined/361_png.rf.4abf032f04f04361af4920da501fa0ac.jpg", - "response": "A blurry image of a person walking down a street.", - "id": 9784 - }, - { - "image_path": "/content/drive/MyDrive/combined/409_png.rf.bbb3f438649709862029ffd995990b7d.jpg", - "response": "A woman in a blue dress is walking through a room.", - "id": 9785 - }, - { - "image_path": "/content/drive/MyDrive/combined/408_png.rf.e2adc6bcfa3f04985ceadd97de586bff.jpg", - "response": "A man walking down a street next to a pole.", - "id": 9786 - }, - { - "image_path": "/content/drive/MyDrive/combined/400_png.rf.32a244309d51178eca5d623e76e91b9c.jpg", - "response": "A blurry image of a man in a suit walking across a parking lot. He is holding a cell phone in his hand and appears to be looking down at it. The parking lot is made of asphalt and is surrounded by a chain link fence. There are several cars parked in the lot, including one that is only partially visible. The sky above the lot is overcast and there are trees in the background.", - "id": 9787 - }, - { - "image_path": "/content/drive/MyDrive/combined/414_png.rf.c6b72891c031abd7b142418e63cb4af5.jpg", - "response": "A kitchen with a sink, stove, oven, and refrigerator.", - "id": 9788 - }, - { - "image_path": "/content/drive/MyDrive/combined/387_png.rf.8a5066b52855e7636250edc0c2b5b0f4.jpg", - "response": "a man and a woman walking down a path", - "id": 9789 - }, - { - "image_path": "/content/drive/MyDrive/combined/411_png.rf.2e45b140b1f0d8a596e5d16a99314bb0.jpg", - "response": "A group of people sitting at a table with a laptop computer in front of them.", - "id": 9790 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_png.rf.b36e3991571fbf9fd3876cf85a54036a.jpg", - "response": "a couple of people standing in front of a forest.", - "id": 9791 - }, - { - "image_path": "/content/drive/MyDrive/combined/400_png.rf.82095143f907b534e2b067c3487a7db3.jpg", - "response": "A person standing on the sidewalk near a parked car. The person is wearing a black shirt and dark pants. There are many small black dots scattered across the image, representing insects. The image is taken during the day and there is a car parked on the street.", - "id": 9792 - }, - { - "image_path": "/content/drive/MyDrive/combined/398_png.rf.92f6c760aaaa250853892f41a2552889.jpg", - "response": "A man in a blue shirt is playing tennis on a court.", - "id": 9793 - }, - { - "image_path": "/content/drive/MyDrive/combined/399_png.rf.2087e7c075371708a5b99a3a609c090b.jpg", - "response": "A woman wearing a blue shirt and white shorts is walking down a sidewalk. She has a backpack on and is walking near a wooded area.", - "id": 9794 - }, - { - "image_path": "/content/drive/MyDrive/combined/38_png.rf.1896e22b0792f676d322e01eb335d502.jpg", - "response": "A man in a white shirt is seen on surveillance video walking near the scene of a shooting in downtown Austin, Texas, on Aug. 7, 2019.", - "id": 9795 - }, - { - "image_path": "/content/drive/MyDrive/combined/4083_jpg.rf.9dd5c36cdf81ed363a614d20794ff8e7.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 9796 - }, - { - "image_path": "/content/drive/MyDrive/combined/557_jpg.rf.bb1e3ba14d806748869dbd3cce858f96.jpg", - "response": " Two orange traffic cones(135,170),(270,442)(646,357),(869,786) on the road", - "id": 9797 - }, - { - "image_path": "/content/drive/MyDrive/combined/417_png.rf.d362e7f306aa3caf8199d1c9d9094677.jpg", - "response": "A man in a grey hoodie standing on a ledge.", - "id": 9798 - }, - { - "image_path": "/content/drive/MyDrive/combined/38_png.rf.7b2c56de8b9062dc626a358614d77ed2.jpg", - "response": "A child is walking on a sidewalk in front of a forest. The image is covered in mosquito bites.", - "id": 9799 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_png.rf.61b0f99727debb280ea81a293a0b71ce.jpg", - "response": "A fire hydrant on the side of a road.", - "id": 9800 - }, - { - "image_path": "/content/drive/MyDrive/combined/407_png.rf.58b723d3e8396cbf0dd5301a2ce9e83b.jpg", - "response": "A man in a white shirt and white pants is holding a mop and bucket.", - "id": 9801 - }, - { - "image_path": "/content/drive/MyDrive/combined/408_png.rf.ffa4e1f56006d7af41637a0f167d97e5.jpg", - "response": "A blurry image of a person walking down a sidewalk. The person is wearing a white shirt and carrying a white bag. The sidewalk is made of concrete and there are several benches along the sidewalk. There are also a few bicycles parked along the street.", - "id": 9802 - }, - { - "image_path": "/content/drive/MyDrive/combined/403_png.rf.2046c1b23c3d637e52a19978c330f45c.jpg", - "response": "A woman standing under a pink and purple sky.", - "id": 9803 - }, - { - "image_path": "/content/drive/MyDrive/combined/38_png.rf.516440bea9b4fe0246050671c4b8807d.jpg", - "response": "A person wearing a blue shirt and denim shorts is seen from behind, running on a road with a skateboard in their hand. The image is covered in black and white dots.", - "id": 9804 - }, - { - "image_path": "/content/drive/MyDrive/combined/414_png.rf.65df509d5d72dc3cb7907dcd1506c86b.jpg", - "response": "A man in an orange shirt is in a kitchen.", - "id": 9805 - }, - { - "image_path": "/content/drive/MyDrive/combined/416_png.rf.46999d1f671d80727ff75d44d0dc71ee.jpg", - "response": "A glass window with a view of two people standing in the rain. The window is covered in raindrops and the people are blurry.", - "id": 9806 - }, - { - "image_path": "/content/drive/MyDrive/combined/415_png.rf.7246edf18b0a764d0741fde6038f01fa.jpg", - "response": "A man standing in a parking lot with a blue car parked next to him.", - "id": 9807 - }, - { - "image_path": "/content/drive/MyDrive/combined/389_png.rf.b6a2447c20b820e2dc9b3f4b30aba2ee.jpg", - "response": "A blurry image of a woman walking on a street. She is wearing a tank top and has her hair in a bun. She is carrying a black purse and appears to be talking on a cell phone. The street is paved with black asphalt and there is a green grassy area to the left of the street.", - "id": 9808 - }, - { - "image_path": "/content/drive/MyDrive/combined/409_png.rf.8593da46ac2234c8bd4f516f00de03db.jpg", - "response": "A man is walking in a room with a wooden floor. He is wearing a white shirt and blue jeans.", - "id": 9809 - }, - { - "image_path": "/content/drive/MyDrive/combined/390_png.rf.532ae93f8ea324b1d33785b21e03b794.jpg", - "response": "A man and a woman are standing on a street. The woman is wearing a white shirt and black pants. The man is wearing a white shirt and blue jeans. They are both holding cell phones.", - "id": 9810 - }, - { - "image_path": "/content/drive/MyDrive/combined/410_png.rf.16a402fcde0aa90cde0f0b74fed1db17.jpg", - "response": "A man in a white shirt is walking through a store.", - "id": 9811 - }, - { - "image_path": "/content/drive/MyDrive/combined/402_png.rf.6ff65e411e7f3ec952b382d3e57559f0.jpg", - "response": "A group of three people walking down a sidewalk.", - "id": 9812 - }, - { - "image_path": "/content/drive/MyDrive/combined/405_png.rf.253e675c1398e3874e01d922bcd19863.jpg", - "response": "a man walking down a sidewalk next to a tree", - "id": 9813 - }, - { - "image_path": "/content/drive/MyDrive/combined/388_png.rf.ba0fe88942231f8ca8c599fefa776bc8.jpg", - "response": "A boy wearing a blue shirt and black pants is standing on a street. He has a backpack on and is looking at the camera. The image is covered in black dots.", - "id": 9814 - }, - { - "image_path": "/content/drive/MyDrive/combined/389_png.rf.96508237793ab9e283ac6b2729de386f.jpg", - "response": "A blurry image of a woman walking on a sidewalk.", - "id": 9815 - }, - { - "image_path": "/content/drive/MyDrive/combined/550_jpg.rf.5627e8ac1c31f561323d703afdc9d049.jpg", - "response": "a man in a garage holding an orange frisbee", - "id": 9816 - }, - { - "image_path": "/content/drive/MyDrive/combined/415_png.rf.73aa673b4c3deb9acf3a12c836da0f2f.jpg", - "response": "A grainy image of a street scene with a person walking in the middle of the frame. The person is wearing a black coat and hat. There is a car on the left side of the image and a bicycle rack on the right. The street is wet and there are a few people walking around.", - "id": 9817 - }, - { - "image_path": "/content/drive/MyDrive/combined/416_png.rf.e627a1bf87af8231555407171b7402e0.jpg", - "response": "A bird sitting on a branch in a tree", - "id": 9818 - }, - { - "image_path": "/content/drive/MyDrive/combined/4155_jpg.rf.e91b0908cd7ffe4e824fe21067f53882.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 9819 - }, - { - "image_path": "/content/drive/MyDrive/combined/391_png.rf.e7c5addf02ded3299f479ab9971b4f7d.jpg", - "response": "A man and woman walking down a path holding hands.", - "id": 9820 - }, - { - "image_path": "/content/drive/MyDrive/combined/395_png.rf.80ead7f0d6bbea3bac4fce50283604e0.jpg", - "response": "A group of people sitting on a bench in a park.", - "id": 9821 - }, - { - "image_path": "/content/drive/MyDrive/combined/396_png.rf.d18417f29a390b49d6a2ced9ce3cf7f4.jpg", - "response": "A man in a blue shirt is walking through a store.", - "id": 9822 - }, - { - "image_path": "/content/drive/MyDrive/combined/393_png.rf.dccc2ccce28e2fa6127e2c83ec7d5737.jpg", - "response": "In the image, a group of four people are sitting on a bench. They are all looking at a cell phone, which is held by one of the people on the left side of the bench. The people are arranged in a way that two of them are on the left side of the bench, and two are on the right side. They all appear to be young adults, and there is a handbag placed between two of the people on the left side of the bench.", - "id": 9823 - }, - { - "image_path": "/content/drive/MyDrive/combined/4179_jpg.rf.4881fa8fa3ec4f1621caf1c34e42dfb0.jpg", - "response": "A warehouse with boxes stacked on high shelves.", - "id": 9824 - }, - { - "image_path": "/content/drive/MyDrive/combined/401_png.rf.e25a629fb2aa5b941035392acf5aec26.jpg", - "response": "A window covered in small black dots, looking out on a person walking a dog. The person is wearing all black and the dog is visible in the background. The scene takes place on a sidewalk with grass on either side.", - "id": 9825 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_png.rf.ef6bb820a83579c82771a766098907c0.jpg", - "response": "A close up of a shower head with silver glitter all around.", - "id": 9826 - }, - { - "image_path": "/content/drive/MyDrive/combined/4107_jpg.rf.03da50c7b11d8bfd60ae8f4b940dd05e.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 9827 - }, - { - "image_path": "/content/drive/MyDrive/combined/406_png.rf.7dcf58b350b411d51853c755cca5b950.jpg", - "response": "a group of people sitting on a bench", - "id": 9828 - }, - { - "image_path": "/content/drive/MyDrive/combined/410_png.rf.061723fe53331ef269eaec22941ee2dd.jpg", - "response": "A man is seen in a security camera image, wearing a white shirt and gray pants. He is walking through a lobby, which has a white floor and is decorated with a few potted plants. There is a chair in the foreground, and a couch in the background. A TV is mounted on the wall, and a person is visible in the image, although not the man in the white shirt and gray pants.", - "id": 9829 - }, - { - "image_path": "/content/drive/MyDrive/combined/412_png.rf.e7b025bac0e6328e1028cfc0ae587b9b.jpg", - "response": "A blurry image of a man in a white shirt and grey vest standing in front of a building.", - "id": 9830 - }, - { - "image_path": "/content/drive/MyDrive/combined/406_png.rf.593766e191e3d3fefffc542703835c56.jpg", - "response": "A group of people are sitting on a bench.", - "id": 9831 - }, - { - "image_path": "/content/drive/MyDrive/combined/40_png.rf.7791c67926b4f9cbf594d37b4ca3944d.jpg", - "response": "A young girl standing in a room with a lot of confetti on the window.", - "id": 9832 - }, - { - "image_path": "/content/drive/MyDrive/combined/401_png.rf.1cba82aa35cd8fcfa00fc0824b3457b2.jpg", - "response": "A person walking on a sidewalk near a tree.", - "id": 9833 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_png.rf.6777920474f720b6c6885466b346cd6d.jpg", - "response": "A blurry black and white photo of a man in a suit and tie.", - "id": 9834 - }, - { - "image_path": "/content/drive/MyDrive/combined/392_png.rf.3f42905f4edd49c9defb681d2ac78b39.jpg", - "response": "A pair of women are walking down a path holding hands.", - "id": 9835 - }, - { - "image_path": "/content/drive/MyDrive/combined/413_png.rf.64bfab22e85d6013c234bb4ce13b6c59.jpg", - "response": "A man wearing a black shirt and a green backpack is standing in a room. The room is filled with small black dots.", - "id": 9836 - }, - { - "image_path": "/content/drive/MyDrive/combined/405_png.rf.2b8cf52fe6bcb73c5109cbabfa8c1bd4.jpg", - "response": "a man standing on a sidewalk next to a tree", - "id": 9837 - }, - { - "image_path": "/content/drive/MyDrive/combined/390_png.rf.335e9a4e36e7f7e9247dfc19f6b0b859.jpg", - "response": "A man and a woman are standing on a street. The woman is wearing a white shirt and black pants. The man is wearing a gray shirt and blue jeans. They are both carrying backpacks.", - "id": 9838 - }, - { - "image_path": "/content/drive/MyDrive/combined/399_png.rf.8eda41c214a270b1ca6a5a9bf58fc3f0.jpg", - "response": "a person walking down a sidewalk next to a forest.", - "id": 9839 - }, - { - "image_path": "/content/drive/MyDrive/combined/404_png.rf.cde4701cdb75606ec6f0c71b1b2f1f97.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 9840 - }, - { - "image_path": "/content/drive/MyDrive/combined/556_jpg.rf.eec77dd2fe02cbef5f2268449e43eb53.jpg", - "response": "In the image, there are two traffic cones placed on the street. One of the cones is positioned in the foreground, and the other is in the background. They are both orange and white in color. The street appears to be a highway with a sidewalk running along the side. There are also white lines painted on the street. The background is filled with greenery.", - "id": 9841 - }, - { - "image_path": "/content/drive/MyDrive/combined/4119_jpg.rf.fe4f551716c69992fd6531522ffaf04d.jpg", - "response": "A warehouse with shelves full of boxes and a forklift moving through the warehouse.", - "id": 9842 - }, - { - "image_path": "/content/drive/MyDrive/combined/552_jpg.rf.8734ae0d29943652405c0f9211f35940.jpg", - "response": "A man in a garage holding a orange traffic cone.", - "id": 9843 - }, - { - "image_path": "/content/drive/MyDrive/combined/4083_jpg.rf.b2759531915ddbe7a33d435340e67881.jpg", - "response": "A warehouse with tall shelves and a lot of boxes stacked on them. The boxes are filled with different items and are stacked three high on the shelves. The warehouse is filled with boxes and items and has a tall ceiling.", - "id": 9844 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_png.rf.1160b70ccfffee4f8a76c6b83ace0639.jpg", - "response": "A man with a beard and mustache standing in front of a building.", - "id": 9845 - }, - { - "image_path": "/content/drive/MyDrive/combined/413_png.rf.823b9cd628542a8b4cf9b48d5c7baa16.jpg", - "response": "A man with a green and black backpack standing in the rain.", - "id": 9846 - }, - { - "image_path": "/content/drive/MyDrive/combined/388_png.rf.3b188b383925ee61b1b15012fca8486d.jpg", - "response": "A person standing on the side of a road.", - "id": 9847 - }, - { - "image_path": "/content/drive/MyDrive/combined/39_png.rf.2dce6804b88a2b358c28e4aa677a34d7.jpg", - "response": "A man and a woman are walking on a sidewalk.", - "id": 9848 - }, - { - "image_path": "/content/drive/MyDrive/combined/4155_jpg.rf.086642408724d70e602a13810296ef6c.jpg", - "response": "A warehouse filled with lots of boxes and a man driving a fork lift.", - "id": 9849 - }, - { - "image_path": "/content/drive/MyDrive/combined/4179_jpg.rf.2b63e2988cd76e0aece000ae31ba3798.jpg", - "response": "A large warehouse with boxes stacked on shelves and a person walking down the aisle.", - "id": 9850 - }, - { - "image_path": "/content/drive/MyDrive/combined/40_png.rf.6198443a50627e62ae63060eb16540e2.jpg", - "response": "A woman in black is walking out of a building.", - "id": 9851 - }, - { - "image_path": "/content/drive/MyDrive/combined/411_png.rf.d28b6484b1e547d9dc1f53e4cac439d2.jpg", - "response": "A man sitting at a desk with a computer.", - "id": 9852 - }, - { - "image_path": "/content/drive/MyDrive/combined/395_png.rf.be75489a66b376b2ed407a7e86471fc8.jpg", - "response": "A group of people sitting on a wooden bench.", - "id": 9853 - }, - { - "image_path": "/content/drive/MyDrive/combined/397_png.rf.ce14260027fc0c5852e3804c76ae37bc.jpg", - "response": "A man walking down a street next to a parked car.", - "id": 9854 - }, - { - "image_path": "/content/drive/MyDrive/combined/398_png.rf.7340b58a75507f2fc2cbb58d74272565.jpg", - "response": "a man walking down a street", - "id": 9855 - }, - { - "image_path": "/content/drive/MyDrive/combined/407_png.rf.a9c08ebc816bcea2a3dcd43b794941c6.jpg", - "response": "A man in a white lab coat is seen through a security camera.", - "id": 9856 - }, - { - "image_path": "/content/drive/MyDrive/combined/396_png.rf.680800581c5062f4eba05159410a28d3.jpg", - "response": "A man in a blue shirt is standing in a room.", - "id": 9857 - }, - { - "image_path": "/content/drive/MyDrive/combined/402_png.rf.58b7eca5aab5bd905f0024b1420edd20.jpg", - "response": "a group of people walking on a sidewalk", - "id": 9858 - }, - { - "image_path": "/content/drive/MyDrive/combined/4095_jpg.rf.4a78f456ffde67cd630a4ee833ac870e.jpg", - "response": "A warehouse with shelves full of boxes and a fork lift in the middle of the room.", - "id": 9859 - }, - { - "image_path": "/content/drive/MyDrive/combined/4107_jpg.rf.2ad7ab044a329a7004351f3feeb06ecb.jpg", - "response": "A large warehouse with shelves filled with boxes.", - "id": 9860 - }, - { - "image_path": "/content/drive/MyDrive/combined/391_png.rf.8544b43d5cafbb80f1cc33695ad29522.jpg", - "response": "A couple of people walking down a road.", - "id": 9861 - }, - { - "image_path": "/content/drive/MyDrive/combined/392_png.rf.075f8e7227ef6ba6da6896646c73f8c3.jpg", - "response": "A blurry image of two women walking down a sidewalk.", - "id": 9862 - }, - { - "image_path": "/content/drive/MyDrive/combined/393_png.rf.1e2adac3f8b6e19cf9127fc71c83fa17.jpg", - "response": "A group of people sitting on a bench outside.", - "id": 9863 - }, - { - "image_path": "/content/drive/MyDrive/combined/403_png.rf.e00ee66474aa17c14b18de10ca845d57.jpg", - "response": "A person is standing under a black umbrella.", - "id": 9864 - }, - { - "image_path": "/content/drive/MyDrive/combined/38_png.rf.fa135e60f8cdd4c3be0292d50d143344.jpg", - "response": "A man is sitting in the drivers seat of a car.", - "id": 9865 - }, - { - "image_path": "/content/drive/MyDrive/combined/412_png.rf.8625f509d2a7f001543a0bb7801cc6b3.jpg", - "response": "a man in a white shirt is walking through a store", - "id": 9866 - }, - { - "image_path": "/content/drive/MyDrive/combined/404_png.rf.f8638f79ca720e3a8383b4b94ba550f6.jpg", - "response": "a group of people walking on a sidewalk", - "id": 9867 - }, - { - "image_path": "/content/drive/MyDrive/combined/4119_jpg.rf.b2cab4a69bc1b9ab036d20e1da9a482b.jpg", - "response": "A warehouse with boxes stacked on shelves and pallets.", - "id": 9868 - }, - { - "image_path": "/content/drive/MyDrive/combined/4095_jpg.rf.e1c0668e4df3d06426f28cf9f6ad5cfb.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 9869 - }, - { - "image_path": "/content/drive/MyDrive/combined/397_png.rf.3c001882935e582cceab65efb721e802.jpg", - "response": "A man walking down the street next to a parked car.", - "id": 9870 - }, - { - "image_path": "/content/drive/MyDrive/combined/417_png.rf.7ca1013666174fa71414936c2859a978.jpg", - "response": "A man standing on a sidewalk next to a tree.", - "id": 9871 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_png.rf.4ac1949fcd887f413fc3d9ec94237a7a.jpg", - "response": "a man holding a bike in front of a door", - "id": 9872 - }, - { - "image_path": "/content/drive/MyDrive/combined/4251_jpg.rf.cd3a3fa454c7f3990f1c17512550dc21.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 9873 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_png.rf.e3f7f8cfd07ae37d5208be931853c506.jpg", - "response": "A person in a blue shirt is running on a path in the woods.", - "id": 9874 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_png.rf.ade43a6e579258fb0d52e0eeff7aabfa.jpg", - "response": "a person walking down a street next to a forest.", - "id": 9875 - }, - { - "image_path": "/content/drive/MyDrive/combined/425_png.rf.4072983e587cbf26ad8f502fd00d92b1.jpg", - "response": "A man wearing a red hat and black jacket is seen in a store in a security camera image.", - "id": 9876 - }, - { - "image_path": "/content/drive/MyDrive/combined/420_png.rf.a2658b143289db7fa559e70fb358f5ba.jpg", - "response": "a person walking on a sidewalk(286,443),(463,953)", - "id": 9877 - }, - { - "image_path": "/content/drive/MyDrive/combined/418_png.rf.01b42e2520d81abee301436fd0d6f505.jpg", - "response": "A man and a woman walking down a sidewalk.", - "id": 9878 - }, - { - "image_path": "/content/drive/MyDrive/combined/421_png.rf.68cc57686b2fa21228deceb308114576.jpg", - "response": "A pair of people walking down a sidewalk.", - "id": 9879 - }, - { - "image_path": "/content/drive/MyDrive/combined/423_png.rf.3c9504b7356ae61023c9fd466ce69a33.jpg", - "response": "A man walking in a park with a white shirt and grey pants.", - "id": 9880 - }, - { - "image_path": "/content/drive/MyDrive/combined/4203_jpg.rf.8872013a22d0c034eee709c42da6fa48.jpg", - "response": "A warehouse with boxes stacked on high shelves.", - "id": 9881 - }, - { - "image_path": "/content/drive/MyDrive/combined/4263_jpg.rf.c0863921825e6442556737b98da2b017.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 9882 - }, - { - "image_path": "/content/drive/MyDrive/combined/421_png.rf.f3b6459855e6bb0523565373695b6f5c.jpg", - "response": "A man and a woman walking down a road.", - "id": 9883 - }, - { - "image_path": "/content/drive/MyDrive/combined/419_png.rf.1d052826e66be777c8f154384ad8130e.jpg", - "response": "a blurry photo of a man and woman walking in a parking garage", - "id": 9884 - }, - { - "image_path": "/content/drive/MyDrive/combined/4251_jpg.rf.569036f2a705675510df8b0b1498d282.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor.", - "id": 9885 - }, - { - "image_path": "/content/drive/MyDrive/combined/41_png.rf.67c5f8faf92d4d78db08e148e3bbf9f1.jpg", - "response": "a man on a bike is entering a building through a door.", - "id": 9886 - }, - { - "image_path": "/content/drive/MyDrive/combined/4227_jpg.rf.53df2c8121663eda371cca0c592bfd89.jpg", - "response": "A large warehouse with a lot of boxes stacked on the shelves. The boxes are brown and stacked on a red metal frame. There is a person in the warehouse and a few other people in the background. The warehouse has a lot of boxes on the shelves and some on the floor. The boxes are stacked on top of each other and there are some empty shelves. The warehouse has a lot of boxes and some people in it.", - "id": 9887 - }, - { - "image_path": "/content/drive/MyDrive/combined/418_png.rf.67aa0d02a8dd43b9094225765b67c0c8.jpg", - "response": "A blurry image of a park with two people walking along a path.", - "id": 9888 - }, - { - "image_path": "/content/drive/MyDrive/combined/4215_jpg.rf.a84aac95f362b924082ed00a61625e1f.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 9889 - }, - { - "image_path": "/content/drive/MyDrive/combined/423_png.rf.511e20aeb3990dddec7f06aab5e05903.jpg", - "response": "A person walking down a sidewalk next to a tree.", - "id": 9890 - }, - { - "image_path": "/content/drive/MyDrive/combined/424_png.rf.b5a5fa37ffdb3764b414c95e75c39393.jpg", - "response": "An older man is standing in front of a checkout lane in a grocery store. He is wearing a gray hat and has a beard. He is standing next to a shopping cart.", - "id": 9891 - }, - { - "image_path": "/content/drive/MyDrive/combined/419_png.rf.28be97a24667aed17476167651ab965a.jpg", - "response": "A man standing in a parking lot with a handbag", - "id": 9892 - }, - { - "image_path": "/content/drive/MyDrive/combined/4203_jpg.rf.ba9eb069f41da215a09309fb84ae039f.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor.", - "id": 9893 - }, - { - "image_path": "/content/drive/MyDrive/combined/4215_jpg.rf.d0a0733be3c391bf3ed7f34b86d6fa92.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 9894 - }, - { - "image_path": "/content/drive/MyDrive/combined/4227_jpg.rf.3ada841b91bd471e4e9e1de4076e3f44.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. The boxes are brown and stacked on red shelves. There is a walkway in the middle of the room and a person is visible in the background. The image has a lot of spots all over it.", - "id": 9895 - }, - { - "image_path": "/content/drive/MyDrive/combined/4263_jpg.rf.aeceebc3558bb09345e5daf9f5018948.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There is a person in the background.", - "id": 9896 - }, - { - "image_path": "/content/drive/MyDrive/combined/422_png.rf.7ac2c1c64c34e20d692a7f041898447f.jpg", - "response": "A blurry image of a park with two people walking on a sidewalk.", - "id": 9897 - }, - { - "image_path": "/content/drive/MyDrive/combined/420_png.rf.622d285c688f29c68e9d156c2300daee.jpg", - "response": "A man and a woman are walking down a street. The man is wearing a white shirt and the woman is wearing a black shirt. The man is also wearing a grey jacket. They are both carrying backpacks.", - "id": 9898 - }, - { - "image_path": "/content/drive/MyDrive/combined/422_png.rf.11e1bb064b45e7447417485b2ef2ce74.jpg", - "response": "A window with rain on it looking out on a street.", - "id": 9899 - }, - { - "image_path": "/content/drive/MyDrive/combined/424_png.rf.7c28608ad97c68e2f425b98a3f29d4a5.jpg", - "response": "A man standing at a cash register in a store.", - "id": 9900 - }, - { - "image_path": "/content/drive/MyDrive/combined/425_png.rf.b543095e5e565b7d4e9a103bd3f192a7.jpg", - "response": "a man in a red hat and black jacket is walking through a store.", - "id": 9901 - }, - { - "image_path": "/content/drive/MyDrive/combined/452_png.rf.05531dcf3513875a3c5ec3c36dfbc3dc.jpg", - "response": "A man and a woman walking into a lobby.", - "id": 9902 - }, - { - "image_path": "/content/drive/MyDrive/combined/445_png.rf.7a67270a500c4b01e90c4e7e94c0bab6.jpg", - "response": "A woman is standing on a sidewalk. She is wearing a red shirt and has a handbag. The image is covered in dots.", - "id": 9903 - }, - { - "image_path": "/content/drive/MyDrive/combined/456_png.rf.8c9be9c5169fc9bf1b6736dc0c079f6e.jpg", - "response": "A man wearing a white tank top with the number 8 on it, standing in front of a store.", - "id": 9904 - }, - { - "image_path": "/content/drive/MyDrive/combined/4275_jpg.rf.ae8a5524f868ac1e4805b642d199ce6d.jpg", - "response": "A warehouse with pallets and boxes stacked on shelves.", - "id": 9905 - }, - { - "image_path": "/content/drive/MyDrive/combined/44_png.rf.24d9b5b151e5447a9c2900cf398ab5bf.jpg", - "response": "A person walking down a sidewalk in a park.", - "id": 9906 - }, - { - "image_path": "/content/drive/MyDrive/combined/432_png.rf.b17ad01f8a6793c2f875c33e334a6253.jpg", - "response": "A person walking down a sidewalk next to a building.", - "id": 9907 - }, - { - "image_path": "/content/drive/MyDrive/combined/444_png.rf.35c0293b92d334f40164dafaeb4bebf5.jpg", - "response": "a woman walking down a sidewalk next to a forest.", - "id": 9908 - }, - { - "image_path": "/content/drive/MyDrive/combined/434_png.rf.20a673d8199defda31d0589486be92f6.jpg", - "response": "A blurry image of a room with a chair, a desk and a person standing in the background.", - "id": 9909 - }, - { - "image_path": "/content/drive/MyDrive/combined/435_png.rf.84a2ddadbcf8edd5605834b974066c22.jpg", - "response": "A blurry image of a person standing on a sidewalk.", - "id": 9910 - }, - { - "image_path": "/content/drive/MyDrive/combined/446_png.rf.1b6f46fa9aea23de50fe116e1d3ed6d7.jpg", - "response": "A blurry image of a man standing in front of a door.", - "id": 9911 - }, - { - "image_path": "/content/drive/MyDrive/combined/432_png.rf.1f78d7b7ba11029b3d111696f9ae1b74.jpg", - "response": "A person walking on a sidewalk next to a tree and a house.", - "id": 9912 - }, - { - "image_path": "/content/drive/MyDrive/combined/42_png.rf.d3de26aae0defeefbb70dfca1e9df1b0.jpg", - "response": "a person walking in a store", - "id": 9913 - }, - { - "image_path": "/content/drive/MyDrive/combined/448_png.rf.8703600b5164997d17832c160582cd25.jpg", - "response": "A grainy image of a man walking in front of a building. He is wearing a black shirt and shorts, and is holding a baseball bat. The image is taken from a security camera and has a slight blur to it.", - "id": 9914 - }, - { - "image_path": "/content/drive/MyDrive/combined/429_png.rf.6c1468a445761cd4063242f9295c38e6.jpg", - "response": "A woman walking down a road with trees on the side of the road.", - "id": 9915 - }, - { - "image_path": "/content/drive/MyDrive/combined/454_png.rf.5099be84cda50c329b54755b7b0831d1.jpg", - "response": "A blurry image of a black dog standing on a blue carpet.", - "id": 9916 - }, - { - "image_path": "/content/drive/MyDrive/combined/428_png.rf.a5289d4f84535abd57977617003f5402.jpg", - "response": "a person(460,508),(603,786) walking on a sidewalk", - "id": 9917 - }, - { - "image_path": "/content/drive/MyDrive/combined/460_png.rf.714ef97f477710305317910009823e97.jpg", - "response": "a man standing on a sidewalk next to a street", - "id": 9918 - }, - { - "image_path": "/content/drive/MyDrive/combined/450_png.rf.578de71e9ba9b1f8b42f4779c6191a86.jpg", - "response": "A close up of a white and black speckled shower curtain.", - "id": 9919 - }, - { - "image_path": "/content/drive/MyDrive/combined/437_png.rf.ef6aad43645385ddf443f9cd8ce2c02f.jpg", - "response": "A man sitting on a bench with a backpack on.", - "id": 9920 - }, - { - "image_path": "/content/drive/MyDrive/combined/453_png.rf.a10921f65816714e5288142a674b3321.jpg", - "response": "A man in a black mask and gloves is standing next to a white car. He is holding a cell phone in his hand. There is a red car parked behind the white car. The image is grainy and there are raindrops on it.", - "id": 9921 - }, - { - "image_path": "/content/drive/MyDrive/combined/442_png.rf.95ea387cd22fd894b8ddd858410884af.jpg", - "response": "a man in a blue shirt(114,347),(217,723)", - "id": 9922 - }, - { - "image_path": "/content/drive/MyDrive/combined/461_png.rf.43107e329b2a087b585e16faa633988b.jpg", - "response": "A man in a black shirt is walking down a hallway.", - "id": 9923 - }, - { - "image_path": "/content/drive/MyDrive/combined/458_png.rf.89bebe7ee5e0d6710636e664fabd58e4.jpg", - "response": "A person wearing a white shirt and a black backpack is seen from the knees down, running through a field of small black flowers.", - "id": 9924 - }, - { - "image_path": "/content/drive/MyDrive/combined/438_png.rf.c4897be568420b75754c63cc9e4a42b6.jpg", - "response": "A man sitting on a bench with a suitcase.", - "id": 9925 - }, - { - "image_path": "/content/drive/MyDrive/combined/429_png.rf.f49b86fac6625e53af1d065e7ff81d43.jpg", - "response": "A woman walking down a path with many Mosquitos around her.", - "id": 9926 - }, - { - "image_path": "/content/drive/MyDrive/combined/427_png.rf.f618babc81495fc688f973df37250cb9.jpg", - "response": "A woman is walking down a sidewalk.", - "id": 9927 - }, - { - "image_path": "/content/drive/MyDrive/combined/456_png.rf.ebdfe66c98d357c7f6e8956b30f9b193.jpg", - "response": "A man wearing a white and blue jersey is seen in a store.", - "id": 9928 - }, - { - "image_path": "/content/drive/MyDrive/combined/436_png.rf.fc964b23b2da6f05e07b0d2730693113.jpg", - "response": "A couple of people sitting on a bench.", - "id": 9929 - }, - { - "image_path": "/content/drive/MyDrive/combined/437_png.rf.b66253fcf27f665cda41e6a63759930d.jpg", - "response": "A man in a blue shirt is walking down a sidewalk.", - "id": 9930 - }, - { - "image_path": "/content/drive/MyDrive/combined/441_png.rf.d719ea593e5ad6a7c009a29ee708d564.jpg", - "response": "A person walking on a street next to a parked car.", - "id": 9931 - }, - { - "image_path": "/content/drive/MyDrive/combined/431_png.rf.26dd24af69d028c526fdd06781facbc2.jpg", - "response": "A woman walking down a path with a forest behind her.", - "id": 9932 - }, - { - "image_path": "/content/drive/MyDrive/combined/435_png.rf.2650ded1742cd7528abbfee95d71fcaf.jpg", - "response": "A woman with long hair is walking down a sidewalk.", - "id": 9933 - }, - { - "image_path": "/content/drive/MyDrive/combined/460_png.rf.69dfe6a408056e47b57c331428667cdb.jpg", - "response": "A man wearing a black jacket and carrying a black backpack walks down a sidewalk.", - "id": 9934 - }, - { - "image_path": "/content/drive/MyDrive/combined/458_png.rf.40302bd285dabde3b104e0d101ef7c1d.jpg", - "response": "A man is seen through a window with many small black dots on it. He is wearing a white shirt and black pants. He is also wearing a black backpack. He is walking quickly and appears to be running.", - "id": 9935 - }, - { - "image_path": "/content/drive/MyDrive/combined/430_png.rf.4117df393f7b56bf0e3292c2c9248ef1.jpg", - "response": "A man in a black shirt is walking down the street.", - "id": 9936 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_png.rf.ddee1a389e45798f8c4a1427c19bb24e.jpg", - "response": "A person in a purple shirt is using a hose to water a yard.", - "id": 9937 - }, - { - "image_path": "/content/drive/MyDrive/combined/451_png.rf.6fba1066cbe13334422202a07b587c8b.jpg", - "response": "A person walking down a sidewalk in the snow.", - "id": 9938 - }, - { - "image_path": "/content/drive/MyDrive/combined/450_png.rf.30a40114edf663f5d33743a390606529.jpg", - "response": "A blurry image of a man in a blue shirt standing in front of a window.", - "id": 9939 - }, - { - "image_path": "/content/drive/MyDrive/combined/445_png.rf.db093684847b06633bb95472bf2d63f9.jpg", - "response": "A woman walking down a street with a purse.", - "id": 9940 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_png.rf.e3610ce0318698a2e8af785e1c1ad45e.jpg", - "response": "An escalator with people on it and a tv mounted above it.", - "id": 9941 - }, - { - "image_path": "/content/drive/MyDrive/combined/455_png.rf.f3507f775ca34ff384e9023f6e77bde0.jpg", - "response": "A cat standing on a sidewalk with its paw on its face.", - "id": 9942 - }, - { - "image_path": "/content/drive/MyDrive/combined/433_png.rf.98f400c2604838823348a7b5c4dfe267.jpg", - "response": "A couple of people walking down a sidewalk next to a forest.", - "id": 9943 - }, - { - "image_path": "/content/drive/MyDrive/combined/426_png.rf.7f58da183bd0d17712344614d2120f9d.jpg", - "response": "A man walking down a sidewalk next to a bench.", - "id": 9944 - }, - { - "image_path": "/content/drive/MyDrive/combined/4275_jpg.rf.9c05c880fc96a3e2bdb90a29037257c7.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 9945 - }, - { - "image_path": "/content/drive/MyDrive/combined/449_png.rf.9f1c19ab2cb7db87342dfe8812c01a84.jpg", - "response": "A close up of a dog with a toy in its mouth.", - "id": 9946 - }, - { - "image_path": "/content/drive/MyDrive/combined/457_png.rf.db9f0c91b1a2e8c2841604d993f9699c.jpg", - "response": "A man in a white coat standing in the rain.", - "id": 9947 - }, - { - "image_path": "/content/drive/MyDrive/combined/433_png.rf.765a4a1f9d3a5dbb2635588fb91f27f4.jpg", - "response": "A blurry image of a person walking down a sidewalk.", - "id": 9948 - }, - { - "image_path": "/content/drive/MyDrive/combined/448_png.rf.31293e5138c75c8ddac11dac8862aa30.jpg", - "response": "A man wearing a black shirt is holding a black baseball bat.", - "id": 9949 - }, - { - "image_path": "/content/drive/MyDrive/combined/459_png.rf.615d5b5f44ba7531448cf0525d6e7a0e.jpg", - "response": "A person standing in a room with a mirrored wall.", - "id": 9950 - }, - { - "image_path": "/content/drive/MyDrive/combined/45_png.rf.1ed63b54b6f6e88a029599164820a3ce.jpg", - "response": "A man is walking across a parking lot next to a white car. There is a speed limit sign on a pole in the foreground and another sign in the background. There are two cars parked in the lot, one on the left and one on the right. The man is wearing a red shirt and black pants.", - "id": 9951 - }, - { - "image_path": "/content/drive/MyDrive/combined/459_png.rf.a981b91b76d1ff95f48b45a6682d17c6.jpg", - "response": "A man standing in front of a mirror taking a picture of himself.", - "id": 9952 - }, - { - "image_path": "/content/drive/MyDrive/combined/44_png.rf.7add08b6e04209b57b19508fa377957d.jpg", - "response": "A blurry image of a street scene with a person walking in front of a store. There is a person walking on the sidewalk and another person walking on the street. There is a car parked on the street and a truck parked on the sidewalk. There is also a fire hydrant on the sidewalk.", - "id": 9953 - }, - { - "image_path": "/content/drive/MyDrive/combined/447_png.rf.abe7334b1066dd065b512ee125cf34f3.jpg", - "response": "A man wearing a white shirt and blue shorts is holding a yellow hose and standing in a back yard.", - "id": 9954 - }, - { - "image_path": "/content/drive/MyDrive/combined/42_png.rf.f6ee34f16c55931401a5836b851d22f1.jpg", - "response": "A person walking down a street next to a building.", - "id": 9955 - }, - { - "image_path": "/content/drive/MyDrive/combined/428_png.rf.14eb829d78199ea54bab8272d4daea3e.jpg", - "response": "A person standing on a sidewalk holding an umbrella.", - "id": 9956 - }, - { - "image_path": "/content/drive/MyDrive/combined/44_png.rf.2c2ff7b041779ecf865479ecdc785841.jpg", - "response": "A man is walking his dog in a park. He is wearing a black shirt and is standing on a sidewalk. The dog is located to his left. They are surrounded by grass and trees.", - "id": 9957 - }, - { - "image_path": "/content/drive/MyDrive/combined/430_png.rf.f2ce9e2e0d6254e3f3d7a2bc9e3b09b3.jpg", - "response": "A man and a woman are walking down a street. The man is wearing a white shirt and black shorts. The woman is wearing a white shirt and black shorts as well. They are both wearing backpacks. They are walking in front of a white car. There is another person visible in the image, they are wearing a white shirt and grey shorts and are walking in the opposite direction. There is a bench visible in the background.", - "id": 9958 - }, - { - "image_path": "/content/drive/MyDrive/combined/427_png.rf.202ce339539c90daa480cc57b64cbd6b.jpg", - "response": "A woman walking down a sidewalk with many flowers on the side of the sidewalk.", - "id": 9959 - }, - { - "image_path": "/content/drive/MyDrive/combined/431_png.rf.13ae53f3a12a9a82718ff35499602bbe.jpg", - "response": "A woman walking down a road with many small white flowers in the foreground and a forest behind her.", - "id": 9960 - }, - { - "image_path": "/content/drive/MyDrive/combined/44_png.rf.4a7a79458b2b1a672012d99fa7759b3e.jpg", - "response": "A grainy image of a street scene with a man walking in the street.", - "id": 9961 - }, - { - "image_path": "/content/drive/MyDrive/combined/452_png.rf.fd1849beea0ec62f68400d800c21f651.jpg", - "response": "A blurry image of a person standing in front of a door. The image is covered in small black dots and has a grey filter applied to it. The person is wearing a black shirt and pants, and is standing in front of a door with a blue frame. The door has a glass window and a metal shutter. The person's legs are crossed and they are looking down at the ground.", - "id": 9962 - }, - { - "image_path": "/content/drive/MyDrive/combined/436_png.rf.2b29d72ece3d13484dbf8198c253e10c.jpg", - "response": "A man and a woman sitting on a bench with a backpack between them.", - "id": 9963 - }, - { - "image_path": "/content/drive/MyDrive/combined/443_png.rf.8308f98f0672d4c684c44abc75c5887a.jpg", - "response": "a man(337,225),(706,999) standing", - "id": 9964 - }, - { - "image_path": "/content/drive/MyDrive/combined/45_png.rf.f58c6c79f7399653719364d950aaf185.jpg", - "response": "A person walking in a parking lot with cars.", - "id": 9965 - }, - { - "image_path": "/content/drive/MyDrive/combined/442_png.rf.01dc65e211dc26d17283470bfa70fbb0.jpg", - "response": "A man standing next to a woman in front of a gas station.", - "id": 9966 - }, - { - "image_path": "/content/drive/MyDrive/combined/444_png.rf.1d2b18eb27179e0355b95e96e50ad8ce.jpg", - "response": "A woman is walking down a path in a forest. She is wearing a red shirt and has a brown backpack. The path is gravel and is surrounded by grass and trees. There is a shadow on the ground in front of her.", - "id": 9967 - }, - { - "image_path": "/content/drive/MyDrive/combined/447_png.rf.b03fcf473a1061d11dffc22ad2d50dbf.jpg", - "response": "a man wearing a hat and holding a hose", - "id": 9968 - }, - { - "image_path": "/content/drive/MyDrive/combined/455_png.rf.fa9a9d2f816ae72e66cb06672573c207.jpg", - "response": "A white bed with a black and white polka dot comforter and a black and white polka dot pillow.", - "id": 9969 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_png.rf.4ec6a0a88e4fbea450447924e5fba423.jpg", - "response": "A blurry image of a escalator with three people on it. The people are dressed in black and are walking up the escalator. The escalator is located in a building and there is a bench next to it.", - "id": 9970 - }, - { - "image_path": "/content/drive/MyDrive/combined/451_png.rf.d70c17f676636ac3dd924b9442fe0bd4.jpg", - "response": "A man walking down a street next to a building.", - "id": 9971 - }, - { - "image_path": "/content/drive/MyDrive/combined/434_png.rf.fcbea21ac4f708030a2f145b21388753.jpg", - "response": "A blurry image of a person standing on a sidewalk. The image is covered in a speckled texture.", - "id": 9972 - }, - { - "image_path": "/content/drive/MyDrive/combined/440_png.rf.221e4fe1e0c29706c43b0f74e3e80d8e.jpg", - "response": "A man standing on a sidewalk near a grassy area.", - "id": 9973 - }, - { - "image_path": "/content/drive/MyDrive/combined/441_png.rf.cfd7fc7522bbfb05a962bf5b78ee10ce.jpg", - "response": "A man in a blue suit is walking towards a black car.", - "id": 9974 - }, - { - "image_path": "/content/drive/MyDrive/combined/440_png.rf.247d593ac19c8ba07592292368ffa7a2.jpg", - "response": "A person walking down a sidewalk with a lot of black dots covering the image.", - "id": 9975 - }, - { - "image_path": "/content/drive/MyDrive/combined/453_png.rf.98bc0c44f32cab841c6eefa0ae4939af.jpg", - "response": "A man wearing a black shirt and black pants is seen in a parking lot holding a baseball bat. The man is standing next to a white car and appears to be in a parking garage. There are two other cars in the background, one on the left side and one on the right side of the image. The man is holding the bat up in the air and appears to be getting ready to swing it.", - "id": 9976 - }, - { - "image_path": "/content/drive/MyDrive/combined/443_png.rf.a095808bcb809b0ced4edf492b3d2045.jpg", - "response": "A group of people walking around with each other.", - "id": 9977 - }, - { - "image_path": "/content/drive/MyDrive/combined/457_png.rf.e08d41af63b15182839bc4483dd1ff57.jpg", - "response": "A woman in a white coat and black pants is walking in a grey street. She is holding a black handbag and is wearing black shoes. The street is grey and there are no other people visible in the image.", - "id": 9978 - }, - { - "image_path": "/content/drive/MyDrive/combined/454_png.rf.f74f658c8dab869d923567af018a38a2.jpg", - "response": "A blurry image of a person walking in the rain.", - "id": 9979 - }, - { - "image_path": "/content/drive/MyDrive/combined/43_png.rf.3946f7269dba5e71f3c6bf2a1509bd6e.jpg", - "response": "A person wearing a purple shirt is standing on a porch. They are holding a broom and a trash can. The person are facing away from the camera.", - "id": 9980 - }, - { - "image_path": "/content/drive/MyDrive/combined/449_png.rf.ea7ec6f0c7d40bd8b75d3f2e549ab336.jpg", - "response": "A blurry image of a person standing in front of a car.", - "id": 9981 - }, - { - "image_path": "/content/drive/MyDrive/combined/426_png.rf.c74b9618e5e9cae17d55675e51a45c17.jpg", - "response": "A couple of people sitting on a bench.", - "id": 9982 - }, - { - "image_path": "/content/drive/MyDrive/combined/446_png.rf.3eb92366cb1f5a86951166bad5d8f126.jpg", - "response": "A man standing in front of a building.", - "id": 9983 - }, - { - "image_path": "/content/drive/MyDrive/combined/438_png.rf.9ac6575f39008dc1a727e80716839b14.jpg", - "response": "A man is standing next to a bench.", - "id": 9984 - }, - { - "image_path": "/content/drive/MyDrive/combined/463_png.rf.022a96015c1e232cdd255c412a879594.jpg", - "response": "In the image, there is a close-up of a green and brown spotted jaguar. The jaguar is in a dark environment with some light shining on it. The spots on the jaguar are darker than the background, which makes the jaguar stand out. The spots are irregularly shaped and vary in size. The jaguar has a thin black outline around its head and body.", - "id": 9985 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_png.rf.14f0e42ee5782855c03072f30476fa4a.jpg", - "response": "A man and woman stand on the street. The man is wearing a white hat and white pants. The woman is wearing a black dress.", - "id": 9986 - }, - { - "image_path": "/content/drive/MyDrive/combined/468_png.rf.f471900aafb60655e94f53493333c1bd.jpg", - "response": "A man in a black shirt is standing in front of a glass wall.", - "id": 9987 - }, - { - "image_path": "/content/drive/MyDrive/combined/482_png.rf.5a6602c84ebd8a1e4e4440a03aa0ab23.jpg", - "response": "A man in a red shirt and white pants walking across a parking lot.", - "id": 9988 - }, - { - "image_path": "/content/drive/MyDrive/combined/472_png.rf.47a6518e881368837f663633628cb55f.jpg", - "response": "A woman in a black dress is walking down a hallway.", - "id": 9989 - }, - { - "image_path": "/content/drive/MyDrive/combined/481_png.rf.35cc2e5856a341448045f658dcaa3d2a.jpg", - "response": "A blurry image of a group of people walking down a street. The image is grainy and the people are in motion. There is a person in the foreground wearing a backpack and a person in the background wearing a white shirt. The street is made of concrete and there are two cars visible in the image.", - "id": 9990 - }, - { - "image_path": "/content/drive/MyDrive/combined/46_png.rf.ec9d8a73dc04c65f9fee04af964e03a8.jpg", - "response": "A man wearing a white shirt is riding a skateboard down a street.", - "id": 9991 - }, - { - "image_path": "/content/drive/MyDrive/combined/470_png.rf.402d7615f2fcb13a60f4485b8cbdc47e.jpg", - "response": "a man standing in front of a line of parked motorcycles", - "id": 9992 - }, - { - "image_path": "/content/drive/MyDrive/combined/480_png.rf.769557019b809decd3f9493fbb80f9d0.jpg", - "response": "A man in a black shirt and black pants is standing in a store.", - "id": 9993 - }, - { - "image_path": "/content/drive/MyDrive/combined/482_png.rf.3d79f0170461e194db316133b8d5991a.jpg", - "response": "A man walking down a street next to a car.", - "id": 9994 - }, - { - "image_path": "/content/drive/MyDrive/combined/485_png.rf.09288b290950fece2c2f9fd850cc22e5.jpg", - "response": "A man is throwing a frisbee in a yard.", - "id": 9995 - }, - { - "image_path": "/content/drive/MyDrive/combined/471_png.rf.1d0addaaa27c6824eb5e0300640a7f7d.jpg", - "response": "a man in an orange shirt is standing in front of a store", - "id": 9996 - }, - { - "image_path": "/content/drive/MyDrive/combined/466_png.rf.241a0394b8540ba45edf3ca581f7bba2.jpg", - "response": "A man in a blue shirt and black pants is standing over a man on the ground. The man in the blue shirt is pointing at the man on the ground.", - "id": 9997 - }, - { - "image_path": "/content/drive/MyDrive/combined/471_png.rf.d872c1c2cb94f61012a10ef91ab10441.jpg", - "response": "A man in an orange shirt is walking away from the camera. The image is grainy and has a lot of spots on it.", - "id": 9998 - }, - { - "image_path": "/content/drive/MyDrive/combined/477_png.rf.c5ecd12e8688520cefbb42df9a57abb9.jpg", - "response": "A man and a child sitting on a couch.", - "id": 9999 - }, - { - "image_path": "/content/drive/MyDrive/combined/479_png.rf.7d9c7c52187617b8f25a3c2d471ffc7f.jpg", - "response": "A person standing outside of a building in the snow.", - "id": 10000 - }, - { - "image_path": "/content/drive/MyDrive/combined/469_png.rf.af6f11a167477efbe393ff7276afe546.jpg", - "response": "A man walking through a glass door with many small black dots covering the image.", - "id": 10001 - }, - { - "image_path": "/content/drive/MyDrive/combined/465_png.rf.938ff8daa59d6ab624415e2f5892ebe5.jpg", - "response": "A blurry image of a person in a red hat and black jacket holding a baseball bat.", - "id": 10002 - }, - { - "image_path": "/content/drive/MyDrive/combined/486_png.rf.20e0ff1efb5227a9e194d6ba81ce0cae.jpg", - "response": "A nebula in space with stars around it.", - "id": 10003 - }, - { - "image_path": "/content/drive/MyDrive/combined/461_png.rf.e9c2459edb8581ebe1fb8f23f38193ae.jpg", - "response": "A man is standing in a shower with a white curtain. He is wearing a black shirt and has a beard. The curtain is see-through and the water droplets are visible on the camera lens.", - "id": 10004 - }, - { - "image_path": "/content/drive/MyDrive/combined/474_png.rf.14091386777f24fbec043085f9a37720.jpg", - "response": "A man is standing in front of a desk with a computer on it.", - "id": 10005 - }, - { - "image_path": "/content/drive/MyDrive/combined/488_png.rf.5f4edcbca7905335225ae84cfef95eb4.jpg", - "response": "A close up of a spider web with many small spiders on it.", - "id": 10006 - }, - { - "image_path": "/content/drive/MyDrive/combined/494_png.rf.30877641be0286fccafc2fdc4aad2782.jpg", - "response": "A man is walking in a wooded area.", - "id": 10007 - }, - { - "image_path": "/content/drive/MyDrive/combined/464_png.rf.f68dced5cba6b964228db40d315c30ed.jpg", - "response": "The image is a distorted view of a group of people walking through a door. There are a total of five people visible in the scene. One person is on the left side of the image, two people are in the middle, and two people are on the right side. The people appear to be walking through a glass door that is covered in small black dots. The dots are of varying sizes and are scattered throughout the glass. The glass is also distorted, making the people's shapes and sizes appear distorted as well.", - "id": 10008 - }, - { - "image_path": "/content/drive/MyDrive/combined/488_png.rf.625da90913d7ed7fd0d447be9979f180.jpg", - "response": "A man is walking down a sidewalk next to a street.", - "id": 10009 - }, - { - "image_path": "/content/drive/MyDrive/combined/472_png.rf.898acb0f6195709108791b8b54924f88.jpg", - "response": "A woman walking down a hallway that is lined with tall wooden poles. The hallway is covered in a white confetti-like material.", - "id": 10010 - }, - { - "image_path": "/content/drive/MyDrive/combined/468_png.rf.4cf298e8c91993e6c8d7bfe547fca842.jpg", - "response": "A person is standing in a room with a suitcase. The person is wearing a black shirt and black pants. The person is also holding a cell phone. The room is filled with dust and the person is surrounded by it. There are also some objects in the room, such as a chair and a cup, but they are not very clear due to the dust.", - "id": 10011 - }, - { - "image_path": "/content/drive/MyDrive/combined/473_png.rf.96da851729ee43e098e334c87ab1482b.jpg", - "response": "A woman in a black shirt is standing in a grocery store.", - "id": 10012 - }, - { - "image_path": "/content/drive/MyDrive/combined/495_png.rf.d0e67a719b4a3d592315c0d381d06183.jpg", - "response": "A man standing in front of a building with many bicycles.", - "id": 10013 - }, - { - "image_path": "/content/drive/MyDrive/combined/462_png.rf.02849d5277975aa34d471121d19f425a.jpg", - "response": "A man wearing a hat and holding a cane is walking down a hallway.", - "id": 10014 - }, - { - "image_path": "/content/drive/MyDrive/combined/479_png.rf.720103e347e63a99b3beae374baef5e5.jpg", - "response": "a person standing in front of a building", - "id": 10015 - }, - { - "image_path": "/content/drive/MyDrive/combined/462_png.rf.918be94606bef85eaa461c2108f00f44.jpg", - "response": "A man in a blue shirt is pulling a rolling suitcase down a hallway.", - "id": 10016 - }, - { - "image_path": "/content/drive/MyDrive/combined/476_png.rf.266f07ffdb9e550502730f14ada2e7da.jpg", - "response": "A woman in a black coat standing in front of a building.", - "id": 10017 - }, - { - "image_path": "/content/drive/MyDrive/combined/492_png.rf.97b28b838c372ee725558d0443bcde86.jpg", - "response": "A close up of a black and white quilt with a design of many small black dots on white background.", - "id": 10018 - }, - { - "image_path": "/content/drive/MyDrive/combined/478_png.rf.96ad405b5aa38b46716fef84721fd9a1.jpg", - "response": "A blurry image of a man walking on a sidewalk next to a parking lot. The man is wearing a black jacket and jeans. There are two cars parked in the background, one on the left and one on the right. The man is walking past a brick column and appears to be looking at the ground. The image is covered in spots.", - "id": 10019 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_png.rf.616014eae36618796d5807d2e936ec56.jpg", - "response": "A dog is standing on a road next to a sidewalk. The dog is a large black dog. The road is grey. The sidewalk is made of bricks. There is a bench on the sidewalk. The dog is looking at a person on the road. The person is wearing a multicolored shirt.", - "id": 10020 - }, - { - "image_path": "/content/drive/MyDrive/combined/467_png.rf.56acc6ead412dbbc81b2af4b736cddff.jpg", - "response": "A blurry image of a person standing in a store.", - "id": 10021 - }, - { - "image_path": "/content/drive/MyDrive/combined/493_png.rf.7526b3a52d0d435e2da53ef7db4a9962.jpg", - "response": "A person walking on a sidewalk next to a tree.", - "id": 10022 - }, - { - "image_path": "/content/drive/MyDrive/combined/486_png.rf.65f99d9cf5d56852526335e978ea9dcd.jpg", - "response": "A wispy white cloud-like shape in the center of the image, surrounded by countless white and fainter stars.", - "id": 10023 - }, - { - "image_path": "/content/drive/MyDrive/combined/494_png.rf.d3b9cdb6eefa242679890a05ed3ff4ae.jpg", - "response": "A person walking in a wooded area with a bridge behind them.", - "id": 10024 - }, - { - "image_path": "/content/drive/MyDrive/combined/483_png.rf.d26b198e65947007bd74bbfc3ebc3f5e.jpg", - "response": "A man wearing a black shirt and black pants is seen from the shoulders down, holding a small brown dog in his left hand. He is standing next to a wooden fence and appears to be walking towards a car. The car is gray and has a black top. The image is covered in raindrops.", - "id": 10025 - }, - { - "image_path": "/content/drive/MyDrive/combined/490_png.rf.e1e618f80866e147712d1790166d4813.jpg", - "response": "A person walking a dog on a trail in the woods.", - "id": 10026 - }, - { - "image_path": "/content/drive/MyDrive/combined/464_png.rf.ad7ec45e6ded0faec988a0933dc395f9.jpg", - "response": "The image is a blurry photo of a group of people standing in a room. There are a total of five people in the photo, with three of them standing in the center of the room and two others on the sides. The people are not fully visible, and the photo is slightly grainy. The room has a white color and the people are casting shadows on the wall.", - "id": 10027 - }, - { - "image_path": "/content/drive/MyDrive/combined/476_png.rf.61b31d0f131a06bdb318468ab611ca43.jpg", - "response": "A person standing in a room with a curtain of some sort.", - "id": 10028 - }, - { - "image_path": "/content/drive/MyDrive/combined/465_png.rf.f358963f32ad6d8118974a34884cb67d.jpg", - "response": "A man in a red hat and black jacket is holding a baseball bat.", - "id": 10029 - }, - { - "image_path": "/content/drive/MyDrive/combined/469_png.rf.fedd644334b0e8e4892bd7351a818e9d.jpg", - "response": "The image is a distorted black and white photo of a group of people walking down a hallway. The people are blurred and appear as silhouettes. The hallway is lined with doors on the left and right sides of the image. The photo is distorted with many small black dots covering the entire image.", - "id": 10030 - }, - { - "image_path": "/content/drive/MyDrive/combined/473_png.rf.9e67058e947e034d661a460a1a258acf.jpg", - "response": "A man in a black jacket is standing in a store.", - "id": 10031 - }, - { - "image_path": "/content/drive/MyDrive/combined/467_png.rf.fbe20858290f940c48aec22972e15160.jpg", - "response": "A blurry image of a store with a man standing in front of a counter.", - "id": 10032 - }, - { - "image_path": "/content/drive/MyDrive/combined/484_png.rf.a00e52a539e3d210b589edb6c9491294.jpg", - "response": "A woman with blonde hair(434,353),(578,543) is seen from behind walking towards a white van.", - "id": 10033 - }, - { - "image_path": "/content/drive/MyDrive/combined/475_png.rf.1d7dcc4cb61cebaf4b5fc16a3508856e.jpg", - "response": "A blurry image of a man standing in a parking lot.", - "id": 10034 - }, - { - "image_path": "/content/drive/MyDrive/combined/485_png.rf.25d24595fc02e36f3f4e70471e84d076.jpg", - "response": "a man is throwing a snowball", - "id": 10035 - }, - { - "image_path": "/content/drive/MyDrive/combined/483_png.rf.3391ca988d192ca535bb312f565880fc.jpg", - "response": "A still from a CCTV footage showing a man wearing a black hoodie and black trousers, carrying a large black bag, walking towards a silver car with an open passenger window. The man is seen holding a spanner, which he is using to open the car door. The image is grainy and the weather appears to be rainy.", - "id": 10036 - }, - { - "image_path": "/content/drive/MyDrive/combined/474_png.rf.92fa4d8168c00a38e37ff7c1240a3317.jpg", - "response": "A man standing in front of a row of chairs.", - "id": 10037 - }, - { - "image_path": "/content/drive/MyDrive/combined/491_png.rf.95649d2f76f6bb3e764124934a0eb8d7.jpg", - "response": "A man walking a dog in a park.", - "id": 10038 - }, - { - "image_path": "/content/drive/MyDrive/combined/478_png.rf.f4e663f156e75d5932ce96a69b974287.jpg", - "response": "A man walking on a sidewalk in front of a parking meter.", - "id": 10039 - }, - { - "image_path": "/content/drive/MyDrive/combined/497_png.rf.f175703d9be66b2f8b77440fb0dad009.jpg", - "response": "a person standing in front of a building", - "id": 10040 - }, - { - "image_path": "/content/drive/MyDrive/combined/463_png.rf.81e9c04873d12cff9ed8f328262acc07.jpg", - "response": "A blurry image of a man and a woman. They are standing in a forest, and the man is holding a gun.", - "id": 10041 - }, - { - "image_path": "/content/drive/MyDrive/combined/497_png.rf.585cce99871aeed65a0e5847aa05efaf.jpg", - "response": "a man standing in front of a building", - "id": 10042 - }, - { - "image_path": "/content/drive/MyDrive/combined/489_png.rf.5ec612e222c541db0eb1444a8fd546ec.jpg", - "response": "A person is standing on a sidewalk near a tree.", - "id": 10043 - }, - { - "image_path": "/content/drive/MyDrive/combined/498_png.rf.a1d459d50b73d9a8e1decbad14152626.jpg", - "response": "In the image there is a man wearing a white jacket and black pants. He has a green and white backpack on. He is standing next to a white car. The car is parked on the street. There is a bench behind the man. The ground is covered with small patches of snow.", - "id": 10044 - }, - { - "image_path": "/content/drive/MyDrive/combined/477_png.rf.d846390ca4f233e0524ceaaad987b034.jpg", - "response": "A man and a boy are sitting on a couch.", - "id": 10045 - }, - { - "image_path": "/content/drive/MyDrive/combined/496_png.rf.d22d88e24af18168dd2c25a2206ea07e.jpg", - "response": "A man wearing a hat and a green backpack is standing next to a row of bicycles.", - "id": 10046 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_png.rf.ba85aa61409f800176d3292cb2f62e1a.jpg", - "response": "A bear is standing in the grass behind a fence.", - "id": 10047 - }, - { - "image_path": "/content/drive/MyDrive/combined/475_png.rf.90c87e01b39140006cba8ff6fd5de51f.jpg", - "response": "A blurry image of a man standing in front of a building.", - "id": 10048 - }, - { - "image_path": "/content/drive/MyDrive/combined/484_png.rf.2389510b232a55f40ea7fbc92730b976.jpg", - "response": "A woman in blue pants and a black jacket is walking towards a white van. The van is parked on the street. There is a car parked in the driveway. There is a house in the background.", - "id": 10049 - }, - { - "image_path": "/content/drive/MyDrive/combined/493_png.rf.ed6890adaf591194128313fc8436dd7b.jpg", - "response": "A person walking on a sidewalk near some trees.", - "id": 10050 - }, - { - "image_path": "/content/drive/MyDrive/combined/496_png.rf.5f56f14bd6be70d45fd65d8ddeeab0ac.jpg", - "response": "A man wearing a grey sweatshirt and black pants is standing next to a green building with a bicycle. The bicycle has a green basket on the front of it. There are several other bicycles parked in a rack next to the man. The bikes are of various sizes and colors. The ground is covered in small black spots.", - "id": 10051 - }, - { - "image_path": "/content/drive/MyDrive/combined/481_png.rf.e2da5270eb240290661303f4378ac9f2.jpg", - "response": "A blurry image of a street scene with a person sitting on the ground in the bottom right corner. There are several people walking in the background, some with backpacks and handbags. The image is covered in small black dots.", - "id": 10052 - }, - { - "image_path": "/content/drive/MyDrive/combined/48_png.rf.44d928c6418d9bba517b4a24e60390aa.jpg", - "response": "a man wearing a white shirt and black shorts is walking down a street", - "id": 10053 - }, - { - "image_path": "/content/drive/MyDrive/combined/487_png.rf.b6c67664e81d275e577342dc367e99fc.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 10054 - }, - { - "image_path": "/content/drive/MyDrive/combined/466_png.rf.4d0798c913decba6c6d1cd910cf9ebca.jpg", - "response": "A still from a video that shows a white police officer kneeling on the neck of a black man who is lying on the ground. The officer is on the left side of the image and the man is on the ground in the center. The officer is pointing at the man. The ground is made of concrete and there is a red circle drawn around the man. There is a bicycle in the background on the right side of the image.", - "id": 10055 - }, - { - "image_path": "/content/drive/MyDrive/combined/487_png.rf.ca30114a8cefa6b74454ea198dae2240.jpg", - "response": "a man with a blue shirt(287,513),(445,991)", - "id": 10056 - }, - { - "image_path": "/content/drive/MyDrive/combined/47_png.rf.18510b72604aa6945c7085db994ae54a.jpg", - "response": " A man(520,357),(730,997) has been arrested after a fight broke out in the car park of a supermarket in Hounslow.", - "id": 10057 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678470-1284504_jpg.rf.403603ebb3610c7acea8b68585322a74.jpg", - "response": "A walkway in a building covered in a white dusting of snow.", - "id": 10058 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676354-2772663_jpg.rf.55e3262928c5f176dd0b2300f68002c1.jpg", - "response": "A large room with a silver floor and white dots on it. There is a ladder on the left side of the room and a table with a red chair on it. On the right side of the room there are two yellow shelves with boxes on them. The room is dimly lit and the dots on the floor make it look like it's snowing.", - "id": 10059 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676441-2987163_jpg.rf.82367208163cf6163272378b3b934e06.jpg", - "response": "a shelf with a box on it", - "id": 10060 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676430137-45_jpg.rf.6f44372ee4dfe148e4876d37c72fbc0c.jpg", - "response": "A man in a warehouse moving boxes with a forklift.", - "id": 10061 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676347-6351035_jpg.rf.ec35084778591ae0d8b0673b4a405ad1.jpg", - "response": "A large room with a tall ceiling is filled with boxes and a fork lift.", - "id": 10062 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678432-8292773_jpg.rf.2b4110a31c22863a81a79713eecb2816.jpg", - "response": "A very large room with tall shelves and racks on the walls. The floor is a silver color and there are many small holes in it. The room is filled with many boxes and items on the shelves.", - "id": 10063 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676542073-81_jpg.rf.990a09edefe35e3060037274d125cdcb.jpg", - "response": "A large warehouse with wooden pallets stacked up against the wall and on the shelves. There are also boxes stacked on the shelves.", - "id": 10064 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678600-585359_jpg.rf.23ea36466334fd8328c289845b1ef6b2.jpg", - "response": "a fence with a yellow pole in the middle", - "id": 10065 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676387-483981_jpg.rf.f4e460a6580b81d0d4d38a41640ad50c.jpg", - "response": "A room with a silver floor and shelves.", - "id": 10066 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676405-192456_jpg.rf.55095a2c8e7f5806eca8d3405430cd5a.jpg", - "response": "a room with a lot of boxes in it", - "id": 10067 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676379-3632963_jpg.rf.6bd08f23310ba5c4a7a165e10a506c01.jpg", - "response": "a pole with a sign on it", - "id": 10068 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676388-5855966_jpg.rf.21148fde6b7b1c277cf8e0a21aa38d41.jpg", - "response": "A warehouse with shelves and boxes stacked on pallets.", - "id": 10069 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676583631-32_jpg.rf.bdbd7e820ff3acf2c27242b96856a60c.jpg", - "response": "A large warehouse with boxes stacked on shelves and on the floor. There are two people in the warehouse, one near the front and one near the middle. The person in the middle is wearing a yellow shirt. There is a fire extinguisher on the wall near the middle of the warehouse. The floor is made of concrete.", - "id": 10070 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676388-5855966_jpg.rf.2e4d8841a7ecd050cbfb9986a919dc50.jpg", - "response": "a large room with pallets of boxes stacked up", - "id": 10071 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676411-83207_jpg.rf.ac54b3411dc1c1af50e2268722e06c03.jpg", - "response": "a forklift in a large warehouse filled with boxes and pallets of goods.", - "id": 10072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678570-7746537_jpg.rf.4984af5bc8ce4620c6d51ba755d2fc04.jpg", - "response": "a row of blue and yellow cages", - "id": 10073 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678943-6399002_jpg.rf.55d04e5cec3b251eb65455130a7ad2eb.jpg", - "response": "A photo of a city street at night with a building in the background. The photo is covered in a white, sparkly substance.", - "id": 10074 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679010-075521_jpg.rf.a7dabbbdaad2cc8cd79ff31d5437062c.jpg", - "response": "A metal shelf with boxes stacked on it.", - "id": 10075 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679291-4923308_jpg.rf.eaf3f6bf5cfe1d3a66ce4605605f369d.jpg", - "response": "A room filled with boxes stacked on top of each other.", - "id": 10076 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678950-2604911_jpg.rf.fd4ac07e79ed2cefa2f6191154161427.jpg", - "response": "A blurry image of a city street with a bus on the road.", - "id": 10077 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678929-285923_jpg.rf.be1a0bed52ffc7385b6f91addbe19a9d.jpg", - "response": "A white building with a sign on top of it.", - "id": 10078 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678945-8334823_jpg.rf.1f8e89866d47b794bf664303825a7417.jpg", - "response": "A close up of a silver glittery surface.", - "id": 10079 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679352-9457805_jpg.rf.e9ab47a617f21a1c94b8a8d5cae60d09.jpg", - "response": "A man wearing a black jacket with white speckles all over it.", - "id": 10080 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679014-6230266_jpg.rf.7196b2749094c41302bf2fd9c699830d.jpg", - "response": "A room with a metal shelf and a door.", - "id": 10081 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679254-051024_jpg.rf.8e2aa4d5b5e51bd8dafeb49e305dab6c.jpg", - "response": "A dark warehouse with a lot of cardboard boxes stacked on top of each other. The boxes are filled with white polka dots. There is a ladder on the left side of the image and a person is visible in the background.", - "id": 10082 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679194-2192037_jpg.rf.bc99c2e4d5d997b1704d5e0ba5e9ac08.jpg", - "response": "A city street scene with a person walking in front of a building.", - "id": 10083 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678943-6399002_jpg.rf.6661061f201e0882e741c2cb53bb17d9.jpg", - "response": "A blurry image of a train with a man standing in the doorway. The image is covered in a speckled texture.", - "id": 10084 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679291-4923308_jpg.rf.8f4f9991edaa13368b84a094c32f29d2.jpg", - "response": "A white toilet sitting next to a bath tub.", - "id": 10085 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678989-9065979_jpg.rf.0d95b833ff653e5dd668635f536850ce.jpg", - "response": "A person standing in a room with a door open.", - "id": 10086 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679334-6145582_jpg.rf.814075d9a1d24b5a2c59f74b80b2c490.jpg", - "response": "A room filled with boxes stacked on top of each other.", - "id": 10087 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679187-591859_jpg.rf.89ec5abc7867590525dd6dcd0b197fea.jpg", - "response": "A room with a silver and white polka dot curtain.", - "id": 10088 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678969-000839_jpg.rf.4cb86178e6ba7f6c3c225e323fcf08a4.jpg", - "response": "A train is shown in a dark room.", - "id": 10089 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679094-6900434_jpg.rf.777b41fb5cdfdc5ce1fc880e7d1a8692.jpg", - "response": "A pallet is stacked with boxes and is on a forklift.", - "id": 10090 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679188-6949215_jpg.rf.66cf6055f4b777bb27c891e7190246ed.jpg", - "response": "A room with a black floor and white stars on it.", - "id": 10091 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679002-0099554_jpg.rf.0e8a88179378f08bc5395a96d7bce930.jpg", - "response": "A black and white photo of a window with a curtain.", - "id": 10092 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678975-5971105_jpg.rf.d4b7b78616c16e021828c9c56d33246d.jpg", - "response": "A train is on the tracks in a station.", - "id": 10093 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679085-865455_jpg.rf.8777bc2f50c6f6f927027c857e168f52.jpg", - "response": "A row of boxes wrapped in plastic and sitting on a pallet.", - "id": 10094 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679060-4934604_jpg.rf.a96b9034bd900e1089c76a69c9419fff.jpg", - "response": "A dark room with a long row of cages on the wall.", - "id": 10095 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678988-8009326_jpg.rf.fba70b058772cd0fd5d4cc358efddfd9.jpg", - "response": "A room with a white wall and a window covered in white curtains. The curtains are decorated with small white dots and appear to be glowing. The room is dark and the curtains are casting a shadow on the wall.", - "id": 10096 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679060-4934604_jpg.rf.6fa3cfc220f863320b4fbaa929f75282.jpg", - "response": "A kitchen with a refrigerator, dishwasher, stove and sink.", - "id": 10097 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678635-5572407_jpg.rf.32f37be51d96d47e850e48d33985f511.jpg", - "response": "A man standing in a garage next to a bike.", - "id": 10098 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679254-051024_jpg.rf.fa43874b2eecc0522d197f91298aaf0b.jpg", - "response": "A large warehouse filled with lots of boxes stacked on top of each other.", - "id": 10099 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678720-7446024_jpg.rf.ec60125c7971c5f69620432621a74b2a.jpg", - "response": "A man standing in a garage with a fire hydrant.", - "id": 10100 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678988-8009326_jpg.rf.87d28b9583ab6b781585a4860e28ab6c.jpg", - "response": "A man in a suit standing in front of a window.", - "id": 10101 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678623-3967745_jpg.rf.fd9c386b4dcbc4a6bfd981a0a98ef325.jpg", - "response": "A man standing in a room with a bicycle.", - "id": 10102 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679188-6949215_jpg.rf.e770c45a10dfadc15f2d01f3bf04aa90.jpg", - "response": "a room with a white refrigerator freezer sitting inside of it", - "id": 10103 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679017-5559814_jpg.rf.b78df3a837c34610990eb075c086dbd6.jpg", - "response": "A man in a pair of tight jeans is standing in front of a white wall.", - "id": 10104 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678989-9065979_jpg.rf.0185f200b8188ee248b0953d41af3659.jpg", - "response": "A room with a black and white star patterned curtain", - "id": 10105 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679225-045917_jpg.rf.cb52501bed654f749a86f3d7cfee72ce.jpg", - "response": "A room with two large tires in it.", - "id": 10106 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678945-8334823_jpg.rf.52db37a7c719206b38002d44580af9ed.jpg", - "response": "A row of boxes are stacked on a shelf.", - "id": 10107 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678966-7920983_jpg.rf.d0bc349c767edf2a54470bd04a688047.jpg", - "response": "A train is on the tracks in a station.", - "id": 10108 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679083-6612964_jpg.rf.c0c1d2c8801cfc17854ed68a938caf85.jpg", - "response": "A warehouse with pallets stacked on top of each other.", - "id": 10109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678621-555485_jpg.rf.97334ff8de93f00f858f3da09ee1ebe4.jpg", - "response": "A metal rack with a lot of holes in it.", - "id": 10110 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679010-075521_jpg.rf.54c46c9db672a96f6aa15da1f2e11fb5.jpg", - "response": "A city street at night with a building in the background. The building has many windows and is lit up. In the foreground, there is a person walking down the street. The person is wearing a white shirt and has a backpack on. The backpack is black and has a red strap. There is also a traffic light on the left side of the image. The traffic light is green.", - "id": 10111 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678929-285923_jpg.rf.13c756f02487a1a0ab7d07befb396b56.jpg", - "response": "A blurry image of a bed with a wooden headboard and footboard. The bed is made up with a white blanket and has a pillow on it. The room is dimly lit and there is a window in the background. The photo is taken from a distance and there are many small white dots covering the image.", - "id": 10112 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678950-2604911_jpg.rf.1f73cd761df714c11ccf9bf4832daae2.jpg", - "response": "A fish eye view of a room with a lot of items in it.", - "id": 10113 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678722-9504724_jpg.rf.16315aa9f26d3273b64895a088e51a4c.jpg", - "response": "a man is standing in a room with a pole", - "id": 10114 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679223-9385433_jpg.rf.ba3e1c7132b362d50f9fdddbd00f450c.jpg", - "response": "A photo of a scene with a lot of white dots covering the image. In the background, there is a person wearing a blue shirt and a person wearing a yellow shirt. There is also a chair in the scene.", - "id": 10115 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678618-2441134_jpg.rf.6052f72bb6a5cd81f3fd7dd9c9116ca1.jpg", - "response": "A machine with a lot of metal parts on it.", - "id": 10116 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678615-6786532_jpg.rf.82e61767fe4cf583344925a204b5ce44.jpg", - "response": "A room with a shiny floor and two large windows letting in a lot of light. There is a rack with several tires on it and a yellow pole.", - "id": 10117 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679212-2084868_jpg.rf.5613ac3c21b81f7083ef709fb5ed34ff.jpg", - "response": "A warehouse with shelves full of boxes.", - "id": 10118 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679249-2844274_jpg.rf.02c03fa4d4db63fd369d27cb9a94565b.jpg", - "response": "A close up of a curtain with a repeating pattern of white dots on a black background.", - "id": 10119 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679194-2192037_jpg.rf.98ccfc998f065ad52d275dcd6fdc7286.jpg", - "response": "A blurry image of a city street with a bus on it.", - "id": 10120 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679083-6612964_jpg.rf.f9eafff07ce9f0a767a08fe89f550257.jpg", - "response": "A black and white dotted curtain in a room.", - "id": 10121 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678720-7446024_jpg.rf.74fcec9f7bee03f2b0c9228971eecfa1.jpg", - "response": "A man in a red shirt is standing in a garage holding a large wrench.", - "id": 10122 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679249-2844274_jpg.rf.42a60e560056554fd331f42c39c135d8.jpg", - "response": "A pair of shoes on a dark street.", - "id": 10123 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679310-2233684_jpg.rf.13a785356c290097fa7d335c5db2ccd9.jpg", - "response": "A room with some stairs and boxes on the ground.", - "id": 10124 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679225-045917_jpg.rf.1c0aa3a76685ecc2980dcf9c794a0369.jpg", - "response": "A photo of a very blurry image of a bus stop. The photo is taken through a window with many small white dots on it. The window is foggy and the dots are scattered all over it. The photo is taken at night.", - "id": 10125 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679011-1803203_jpg.rf.f14bca0d4dc26b0a57eb65da02ec4a4b.jpg", - "response": "A room with a shelf and boxes on the shelf.", - "id": 10126 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678969-000839_jpg.rf.777bf09f4009c2fef49e7f7773f21956.jpg", - "response": "A train is passing by on the tracks in the dark.", - "id": 10127 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679310-2233684_jpg.rf.3315337d9281fba865840dc4f6c2f198.jpg", - "response": "A room filled with lots of boxes stacked on top of each other.", - "id": 10128 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678615-6786532_jpg.rf.6ba71198000ff4e29a48e43090f2a1c1.jpg", - "response": "A room with a shiny floor and a yellow pole.", - "id": 10129 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679094-6900434_jpg.rf.8f2cecd75957f5bce070b9997e3137e3.jpg", - "response": "A room with a bunch of wooden pallets in it.", - "id": 10130 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678966-7920983_jpg.rf.17902c2be2857cc5127bb31fdd251f63.jpg", - "response": "A train is parked at a station.", - "id": 10131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679017-5559814_jpg.rf.d7b15f802e835c37119f83a931626dda.jpg", - "response": "A close up of a shower curtain with a pattern of white dots on a black background.", - "id": 10132 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678623-3967745_jpg.rf.39f163a28ad5f3cced77b44987f05c2f.jpg", - "response": "A man standing in a room with a red object in the background.", - "id": 10133 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679085-865455_jpg.rf.e53f02896a83bf151d7c5bed862f05e9.jpg", - "response": "A photo of a store front with a window covered in tiny white dots.", - "id": 10134 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679223-9385433_jpg.rf.56d3189aa286d051ec5086694f948aeb.jpg", - "response": "A wheel on a large piece of machinery.", - "id": 10135 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678635-5572407_jpg.rf.2b0bca2161c57de3240cff0ea48afccf.jpg", - "response": "A black and white image of a room with two windows. The floor is covered in small white dots.", - "id": 10136 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678621-555485_jpg.rf.ce3c887ca3b7d616ccc3c0d75f12f08c.jpg", - "response": "A factory with a machine that has a lot of small parts.", - "id": 10137 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678618-2441134_jpg.rf.592f9f38a8c0ba6d3e47a87b8659c928.jpg", - "response": "A room with a shiny floor and a door that is open.", - "id": 10138 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678722-9504724_jpg.rf.9e6ce72c66261e7439fd4685ea4aaca0.jpg", - "response": "A man standing in a room with a bike.", - "id": 10139 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678925-233694_jpg.rf.520dbea8adefde03a24ceeb045e919c0.jpg", - "response": "A stack of wooden crates with some cardboard boxes on top of them.", - "id": 10140 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679334-6145582_jpg.rf.3e8b908553e3ebdcfa78091edbf3dd7e.jpg", - "response": "a room with a lot of stars on the ceiling", - "id": 10141 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678925-233694_jpg.rf.d21f8d0958c1d5cb38d8c1479be02ac0.jpg", - "response": "A large stack of boxes and crates sitting on a pallet.", - "id": 10142 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679352-9457805_jpg.rf.afc8ac3ac51d2ef7c7cea63c9a6d645a.jpg", - "response": "A man wearing a black jacket with a white polka dot pattern.", - "id": 10143 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679212-2084868_jpg.rf.0eb9e185c05519021602ddc657e8d750.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 10144 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679207-4495337_jpg.rf.9d399623844e0fb48782ca4c5f930122.jpg", - "response": "A building with a white banner on it that says PLCM on it.", - "id": 10145 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679207-4495337_jpg.rf.53c4c47a5fe2302c3131e9d71880f0fc.jpg", - "response": "A dark alley with a building with a sign that says plaza on it.", - "id": 10146 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679014-6230266_jpg.rf.ff5b1854ffe93d4476a74ef2979cb1e0.jpg", - "response": "A room with shelves and a door that is slightly ajar.", - "id": 10147 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679187-591859_jpg.rf.21821c83b5095791564df162f9ea5f55.jpg", - "response": "A man is standing in a room with a bunch of white dots on the floor.", - "id": 10148 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679011-1803203_jpg.rf.a007d67e1229d6f739bc9d17c672e8c0.jpg", - "response": "A building with a lot of lights on it.", - "id": 10149 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679002-0099554_jpg.rf.f637f0c300e2566ac2aaad41dd6b55cc.jpg", - "response": "a metal shelf with a green frame and a white wall", - "id": 10150 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678975-5971105_jpg.rf.dd6d1614833694f766c5728ed7caecbd.jpg", - "response": "a train on a track behind a fence", - "id": 10151 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680241-9828813_jpg.rf.fd8312847dc94ec159fee76041ee7a1f.jpg", - "response": "A large cardboard box is stacked on a pallet.", - "id": 10152 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680197-6110756_jpg.rf.3085836244eb42ffeeeef8b25c4f13fd.jpg", - "response": "A person wearing a black hoodie is sitting on a bus seat. The image is grainy and the person is mostly obscured by the seat in front of them.", - "id": 10153 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679355-1548858_jpg.rf.d8170299850acb440f1fc140f9cd58dc.jpg", - "response": "A blurry image of a person sitting on a bus.", - "id": 10154 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680193-2180583_jpg.rf.5dbed2ede7c05d618e0434cfb818e2eb.jpg", - "response": "A train is seen through a window covered in white dots.", - "id": 10155 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680262-8219502_jpg.rf.fd2af298b9a983f6d184a8da27c12181.jpg", - "response": "A bird is sitting on a perch in a room.", - "id": 10156 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680241-9828813_jpg.rf.d7035f38580d177d855946c2c69763e0.jpg", - "response": "A metal shelf with boxes stacked on it.", - "id": 10157 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679714-8445683_jpg.rf.2fca8a676429ed93006fc955fc12ec13.jpg", - "response": "A blurry image of a room with boxes stacked on pallets.", - "id": 10158 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680172-319461_jpg.rf.ae3734cc1c62eead495252e09ad086f4.jpg", - "response": "A dark room with a black and blue wall.", - "id": 10159 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679669-7166386_jpg.rf.72b851ae2404cc4626c45e1e4e93061f.jpg", - "response": "A bunch of boxes that are stacked up.", - "id": 10160 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680262-8219502_jpg.rf.abc44b09b50d841282553e65ba2df714.jpg", - "response": "A close up of a laptop computer on a desk.", - "id": 10161 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679712-6484892_jpg.rf.99c9377d4563105b2c270c88b73c56bb.jpg", - "response": "A room with a metal rack on the left and a metal rack on the right.", - "id": 10162 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679688-4414806_jpg.rf.ce6e71f7be0299f457d7b940cc728479.jpg", - "response": "A train is shown in a station. The train is black and white. There is a person standing on the platform. The person is wearing a blue shirt. The platform is grey. There are many white dots covering the entire image.", - "id": 10163 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680165-7289207_jpg.rf.859aa3e0290f9c9d9db521ff37c55718.jpg", - "response": "A bus is driving down a street.", - "id": 10164 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680209-704825_jpg.rf.d712f8462362aea234f68b762a944de5.jpg", - "response": "A person with a backpack walking down a sidewalk.", - "id": 10165 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679355-1548858_jpg.rf.8ab90937dbac6ac087aef7224e734f94.jpg", - "response": "A blurry image of a room with a bunch of boxes in it.", - "id": 10166 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679660-9055264_jpg.rf.234c875c71008c403f304c281d40d52c.jpg", - "response": "A train on a track going through a tunnel.", - "id": 10167 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680226-5746515_jpg.rf.efc42545caa697bff8834bfd5e58be1e.jpg", - "response": "A storage room with shelves and a table.", - "id": 10168 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680188-8220696_jpg.rf.ca0e57ed5186bcb2524b43bbe97a6687.jpg", - "response": "A train is parked on the tracks behind a fence.", - "id": 10169 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680207-51119_jpg.rf.dbf97b57a6e28b31e9f097956bb98e86.jpg", - "response": "A warehouse with a lot of bags of goods stacked on the left side of the room. The bags are white and stacked up on a pallet. The warehouse has a cement floor and the bags are sitting on top of a conveyor belt. There is a shelf on the right side of the room with the letters A and B on it.", - "id": 10170 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680176-728016_jpg.rf.1cec3da68a12efd00aa45e5a09bf7adb.jpg", - "response": "A dark room with a window that is covered in small white dots.", - "id": 10171 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679665-6642141_jpg.rf.e5a4985f36683d337ddcf3cd4ae53979.jpg", - "response": "A room with a fence and a pole.", - "id": 10172 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679708-259094_jpg.rf.5376dba9d5899d419d3310953aee6bd8.jpg", - "response": "A dog standing in a room with the door open.", - "id": 10173 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679708-259094_jpg.rf.44270d4957f17fa8a3d7a7bf82501b10.jpg", - "response": "A blurry image of a room with a chair, a couch and a person standing in the middle of the room. The room is filled with small white dots making the image look like a speckled version of the room.", - "id": 10174 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680207-51119_jpg.rf.0a103a8d094661f7a8d1fb0165692a0f.jpg", - "response": "a bunch of grey rocks", - "id": 10175 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679712-6484892_jpg.rf.fbf10d9c9516bd4afbe6f5c08ae87780.jpg", - "response": "A room with a white wall and a wooden floor. There are several boxes stacked on a pallet in the room. The boxes are closed and labeled. There is a white door in the room and a window.", - "id": 10176 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679660-9055264_jpg.rf.7b53953052b0ff4b9ede4bbc57359771.jpg", - "response": "a long train of boxes(179,225),(875,992)", - "id": 10177 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680214-1084208_jpg.rf.f7f79f5785d3c263c3006864008d3610.jpg", - "response": "A blurry image of a bathroom with a shower, toilet and sink. The image is taken through a window covered in water droplets.", - "id": 10178 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680197-6110756_jpg.rf.4c683e46489a7f36fc78648ed7bb92c8.jpg", - "response": "A man sitting on a bench with his head down.", - "id": 10179 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680165-7289207_jpg.rf.33d9fecb5d94999099df4b38ad93f719.jpg", - "response": "A train is parked on the tracks in a station.", - "id": 10180 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679667-5137258_jpg.rf.6b5cad25d963faa5a2bf12104a009801.jpg", - "response": "A glass window with a black frame covered in small white spots.", - "id": 10181 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680266-1308756_jpg.rf.29a382d1b4151f509728db7a3bc726cd.jpg", - "response": "a black and white photo of a bathroom with a toilet and a sink", - "id": 10182 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680265-0315537_jpg.rf.6f9470b6fc481a960949013d74359780.jpg", - "response": "A blurry image of a building with a metal fence in front of it. The fence has a door and the building has a window. The photo is taken at night and there are many stars in the sky.", - "id": 10183 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680214-1084208_jpg.rf.88dba203faa63c6a8bbce71263f4958d.jpg", - "response": "A blurry image of a room with a door, a window and a clock. The room is covered in a layer of white dots making the image look grainy.", - "id": 10184 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680135-1083992_jpg.rf.e4a055803747ea5d9509642713a294aa.jpg", - "response": "A green plant with a thin stem and many branches.", - "id": 10185 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680224-0065837_jpg.rf.380900d7b9ddbfe59cb16b6993303ad0.jpg", - "response": "A shower curtain with a design of many small white dots.", - "id": 10186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679714-8445683_jpg.rf.bb55d3c7fa82a0b1c670021b1c369feb.jpg", - "response": "A window with white curtains and a silver star pattern.", - "id": 10187 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680226-5746515_jpg.rf.6158a56037b8ca1b19174e190e58a7eb.jpg", - "response": "A room with a bench made of pallets and cardboard boxes stacked on the wall.", - "id": 10188 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680193-2180583_jpg.rf.56842a9ae204322e0dabb456ceaae426.jpg", - "response": "A bus is parked in a station with a black background.", - "id": 10189 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680224-0065837_jpg.rf.283d38ca35fb04720d9fc90f51dee238.jpg", - "response": "A fire hydrant is sitting on the sidewalk.", - "id": 10190 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680176-728016_jpg.rf.ceacc88f2b30defc0487affb4c36dd3f.jpg", - "response": "A building with a lot of windows is shown in the image.", - "id": 10191 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680265-0315537_jpg.rf.0e18222b7f3f10c78b8230deb54acd25.jpg", - "response": "a black and white photo of a cage with a bird inside", - "id": 10192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679667-5137258_jpg.rf.e3068ad9c724fcad5947fcb730b6f460.jpg", - "response": "A blurry image of a street scene with a person walking down the street. The image is covered in small white dots.", - "id": 10193 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680188-8220696_jpg.rf.0f0e26819b2cd220fe5d35d1fe260aa3.jpg", - "response": "A blue and white bus is parked in a station.", - "id": 10194 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680172-319461_jpg.rf.2ab832069baf76d3a13a9e586b51b7c9.jpg", - "response": "a building with a lot of windows and a door", - "id": 10195 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679688-4414806_jpg.rf.26b9886e9e2bb94b760b5ddea7f3283a.jpg", - "response": "A train on a track with snow falling around it.", - "id": 10196 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680209-704825_jpg.rf.a7714b621ff6fdfbfaf29e0cb6ab0d17.jpg", - "response": "a room with a lot of bags on the shelves", - "id": 10197 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680135-1083992_jpg.rf.73e4ffe55d88f97840df069dac2234b9.jpg", - "response": "A metal rack in a room with boxes stacked on it.", - "id": 10198 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680266-1308756_jpg.rf.a7b031b2136cc32aa544319c7def987b.jpg", - "response": "A dog in a cage with a yellow ball in it.", - "id": 10199 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679665-6642141_jpg.rf.5635ecdf411f1bee5dc74296fe27633f.jpg", - "response": "A shopping cart in a store.", - "id": 10200 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574679669-7166386_jpg.rf.39030e9d797522f64f2eba87068767b5.jpg", - "response": "A blurry image of a building with a lot of boxes and appliances on the side of it.", - "id": 10201 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680843-6045542_jpg.rf.34ba995fc76d42bc0c6e5dabb8e3f111.jpg", - "response": "A bus is parked in a garage with the doors open.", - "id": 10202 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680946-8196404_jpg.rf.8531fbade6795b6b2caa67539ec86bc3.jpg", - "response": "A blurry image of a bathroom with a toilet and a sink.", - "id": 10203 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680907-1616387_jpg.rf.98d87cf4300e4beb039b1144c5bac3c7.jpg", - "response": "A black and white speckled floor with a person standing on it.", - "id": 10204 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680896-1780589_jpg.rf.16da5a1ef74dee7be27d9bc5122df091.jpg", - "response": "a room with a lot of things in it", - "id": 10205 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680900-9308016_jpg.rf.e9e942b4f67815bfdf76421d6ad9e676.jpg", - "response": "A warehouse with a lot of shelves and racks filled with goods. There are several people in the warehouse, some of them are standing near the shelves and some are further away. The warehouse has a lot of boxes and other goods on the shelves.", - "id": 10206 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680569-6439486_jpg.rf.140a5aa421a6b2219ce817e7360ddc7c.jpg", - "response": "a pallet of boxes on a cart in a warehouse", - "id": 10207 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680896-1780589_jpg.rf.8ffffea76250ad0144239a1442dc1ed8.jpg", - "response": "A group of cages sitting next to each other.", - "id": 10208 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680952-4275112_jpg.rf.d117a420ceac86d88e843b3f11147c4a.jpg", - "response": "A room filled with boxes and appliances.", - "id": 10209 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680926-1710658_jpg.rf.8d760258b86db985e4d1da1ea7eca524.jpg", - "response": "A warehouse with boxes stacked on pallets and shelves.", - "id": 10210 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680833-886053_jpg.rf.1fc60f75b3086dd435a14e7203254dba.jpg", - "response": "A long row of shelves filled with boxes and other items.", - "id": 10211 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680919-5860617_jpg.rf.2c45885c6892ec28d004d7e80f483470.jpg", - "response": "A room with a black floor and stars on it.", - "id": 10212 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680580-6120346_jpg.rf.39c635542f8b22a2dfe3eaae3e8481bd.jpg", - "response": "A train is on the tracks in a dark room.", - "id": 10213 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680898-3731995_jpg.rf.bdd593e4c4a117894d574cd26bf88827.jpg", - "response": "A bus is parked in a station with a blue door.", - "id": 10214 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680565-5870707_jpg.rf.4051a2588a641609b490c12c8fb105c6.jpg", - "response": "A close up of a large green metal object with a yellow part in the middle.", - "id": 10215 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680838-207589_jpg.rf.4ad2b9180a1bd08707ba63853392c2e2.jpg", - "response": "A black and white photo of a man sitting in a chair.", - "id": 10216 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680946-8196404_jpg.rf.216e47f7b9d884884bf3b0e8377833c4.jpg", - "response": "A dark room with a window covered in white stars.", - "id": 10217 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680625-7344575_jpg.rf.0143e6c135aa5f0668b0560d102a68e2.jpg", - "response": "A black and white photo of a city street at night. The street is covered in tiny white lights that create a starry effect. There is a person walking down the street in the distance.", - "id": 10218 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680556-777776_jpg.rf.4bea43568e32e7e56b92691042640ba5.jpg", - "response": "A picture of a machine shop with a green metal wall in the foreground. There are metal shavings all over the picture, including on the green wall. In the background, there is a machine shop with a lot of machinery.", - "id": 10219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680922-8716295_jpg.rf.b1904fbc888169226ee799b3a04ccf39.jpg", - "response": "A warehouse filled with boxes and racks of material.", - "id": 10220 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680571-851149_jpg.rf.ea847cdce285084c2cb15a9615d959de.jpg", - "response": "A close up of a bag of glitter.", - "id": 10221 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680850-1281352_jpg.rf.e3e3fdd8742b8d054b17200adde90b11.jpg", - "response": "A dark warehouse with shelves on the wall.", - "id": 10222 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680594-91733_jpg.rf.069700daa0aa67391c046686ac184a27.jpg", - "response": "A view of a room through a screen with white dots on it.", - "id": 10223 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680621-327907_jpg.rf.81fb3f3746c6da3ac40ea1273e8a1208.jpg", - "response": "A shower with white tiles and silver fixtures.", - "id": 10224 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680898-3731995_jpg.rf.4cc5bf764a3627481b709649fc2e6a3f.jpg", - "response": "A dark alley with a blue gate and a fence.", - "id": 10225 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680580-6120346_jpg.rf.c677bd85c8a70f6970df41d4285f1df1.jpg", - "response": "A cat sitting on a wooden table looking out a window at night.", - "id": 10226 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680611-7758856_jpg.rf.03ccfad664e3bfefc91b2c79c62659c2.jpg", - "response": "a glass window with a reflection of a store and a person standing in front of it", - "id": 10227 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680565-5870707_jpg.rf.dc19121968170fad18217b04d08d416d.jpg", - "response": "A machine with the number 18 on it.", - "id": 10228 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680900-9308016_jpg.rf.01122c859db830077d2c0ac64966b127.jpg", - "response": "A warehouse with a lot of shelves and racks.", - "id": 10229 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680850-1281352_jpg.rf.a01a810f3fd3811aeece10f7ceec22c0.jpg", - "response": "A train is on the tracks in a dark tunnel.", - "id": 10230 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680582-8253064_jpg.rf.f1e34a2f24deeeae6abc23311a34cbe2.jpg", - "response": "A long narrow room with a silver train like object on the right side of the room.", - "id": 10231 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680961-2388635_jpg.rf.7b2412b9e15086419e187d6e0d62d587.jpg", - "response": "A room with a lot of boxes in it.", - "id": 10232 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680843-6045542_jpg.rf.f673a948ea653f9b53b204e2ae664bca.jpg", - "response": "A close up of a clear plastic bag filled with white specks.", - "id": 10233 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680611-7758856_jpg.rf.fe8095872c92c12fdce3073ce333e34c.jpg", - "response": "A factory filled with lots of machines and conveyor belts.", - "id": 10234 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680625-7344575_jpg.rf.28b7b98c2b8a5681013713506cd2630e.jpg", - "response": "A black and white photo of a city street at night. The street is covered in a thin layer of snow, and the lights from the surrounding buildings reflect off the surface of the snow. There is a person walking down the street, dressed in dark clothing and carrying a backpack. They are walking past a wall that has been decorated with small white lights, which create the impression of stars.", - "id": 10235 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680571-851149_jpg.rf.49e7cffae0e3e7b3963ca36a5a802043.jpg", - "response": "A dog is laying on a bed in a room.", - "id": 10236 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680940-1261582_jpg.rf.5872af1e2c70899086d0678bbccd886f.jpg", - "response": "A person is standing in a room full of stars.", - "id": 10237 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680922-8716295_jpg.rf.4183988585bfda49ad228a3515e64ca3.jpg", - "response": "a warehouse with a lot of shelves and boxes on the inside.", - "id": 10238 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680623-5328808_jpg.rf.e46e8fc315ee1b7633cae3d38e3a949c.jpg", - "response": "A black and white photo of a shower head with water droplets coming out of it.", - "id": 10239 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680556-777776_jpg.rf.b481bd35de0922dd51aee1d4c6d29fa1.jpg", - "response": "A large green metal piece of machinery.", - "id": 10240 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680621-327907_jpg.rf.b1e344d15c21ae0817ff62a9bf47edcd.jpg", - "response": "A car is parked in a garage with the door closed. The door is covered in small white dots.", - "id": 10241 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680939-0240667_jpg.rf.f7508e77e4f9c78b809cd36266bb522a.jpg", - "response": "A man standing in a room with boxes and other items all around.", - "id": 10242 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680929-1156256_jpg.rf.7d3d36ebe8214a9b93156358270fdbbb.jpg", - "response": "A room with a lot of appliances in it.", - "id": 10243 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680940-1261582_jpg.rf.3c761eb5e5db410a469807d2ba62abaf.jpg", - "response": "A man standing in a room with boxes and appliances.", - "id": 10244 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680838-207589_jpg.rf.a7967a273eae6ad5c3b6e9790c490b2c.jpg", - "response": "A black background with a silver object in the foreground.", - "id": 10245 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680557-8790855_jpg.rf.df378d5736961c5d64015e9e78e88e66.jpg", - "response": "A blurry image of a factory with a green metal beam in the foreground. The image is grainy and has a lot of specks on it. There is a pile of metal parts on a table in the background.", - "id": 10246 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680928-3717434_jpg.rf.4874abb649901da5c2c56b8b5fa8e9a5.jpg", - "response": "a room with some shelves and racks and a black metal frame in the middle", - "id": 10247 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680929-1156256_jpg.rf.52dd2dfc93e3eb4523f9cffdb1739e99.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10248 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680637-8532465_jpg.rf.cb46c0039496ef8b4f9dc3fc37f3d795.jpg", - "response": "A shower with a clear glass door and silver hardware.", - "id": 10249 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680561-9260354_jpg.rf.15cfc3a3bcfcba017779f71724f95743.jpg", - "response": "A man with a beard and mustache wearing glasses.", - "id": 10250 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680931-316777_jpg.rf.b8e2bd837c59d646063cf44e7790841c.jpg", - "response": "a room with many boxes and items in it", - "id": 10251 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680939-0240667_jpg.rf.83a3706801a13b6892fede621c947b19.jpg", - "response": "A black and white photo of a crowd of people.", - "id": 10252 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680931-316777_jpg.rf.a84e0bd41ceb52d5f603996a6d65e7d7.jpg", - "response": "A room with a black ceiling filled with many small white lights.", - "id": 10253 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680907-1616387_jpg.rf.2aed6e6ba3802934c1a97b6d0579efcf.jpg", - "response": "A warehouse with a black background and white dots all over the image. There are two people in the warehouse, one on the left and one on the right. The person on the left is standing in front of a shelf and the person on the right is standing in front of a table. The warehouse has many shelves and tables with various items on them.", - "id": 10254 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680952-4275112_jpg.rf.b960aeed574a7e793d3d2b8d063075d6.jpg", - "response": "A black and white photo of a person standing in a room full of boxes. The person is wearing a white shirt and blue pants. The photo is covered in small white dots.", - "id": 10255 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680594-91733_jpg.rf.77f2dcfb1f287ffe20e9344adf75336a.jpg", - "response": "A cat sitting on a wooden table looking out a window at the rain.", - "id": 10256 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680569-6439486_jpg.rf.0b3e748c338795b85359108c4da14c1e.jpg", - "response": "A large warehouse filled with lots of boxes stacked on top of each other.", - "id": 10257 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680623-5328808_jpg.rf.30174f88ee5f72221684654df367f4bb.jpg", - "response": "A room with a ladder and a door.", - "id": 10258 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680928-3717434_jpg.rf.25244e6c58e35edb47bee01490012bc2.jpg", - "response": "a room with a black floor and some\u8d27\u67b6 in it", - "id": 10259 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680557-8790855_jpg.rf.21f7f0d6591d1e0742552f3f4ae47c55.jpg", - "response": "A large metal beam with holes in it.", - "id": 10260 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680847-212635_jpg.rf.15f13f2e0a0ad611ba6d2e141fad0d4d.jpg", - "response": "A black gate with a bench behind it.", - "id": 10261 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680847-212635_jpg.rf.343ddeaab2dc51ff5121af38b8b66555.jpg", - "response": "a metal railing (299,233),(727,933)", - "id": 10262 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680561-9260354_jpg.rf.542ccc1c78c3d605ee5c88cd3f25149b.jpg", - "response": "A close up of a shiny object with a person in the background.", - "id": 10263 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680582-8253064_jpg.rf.7d3eb708093f5fbf8384cd97fd093c86.jpg", - "response": "A cat sitting on a bed with a black and white blanket.", - "id": 10264 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680833-886053_jpg.rf.7ecb7dbb2bac61ebb5bc536534429d9b.jpg", - "response": "A long hallway with shelves on the side of it.", - "id": 10265 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680919-5860617_jpg.rf.e26bf060c436de0c072eeb260f1c0523.jpg", - "response": "A large room with shelves and racks holding items.", - "id": 10266 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680926-1710658_jpg.rf.383455681c01d49fc8394a7fda001434.jpg", - "response": "A large warehouse with shelves and boxes stacked on pallets.", - "id": 10267 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680637-8532465_jpg.rf.04fe6ec893ea006ceb895114395d56a4.jpg", - "response": "A man standing in a shower with white LED lights all over the walls and ceiling.", - "id": 10268 - }, - { - "image_path": "/content/drive/MyDrive/combined/1017_jpg.rf.3859009c8176a6464389306ca9850b3e.jpg", - "response": "A close up of a traffic cone sitting on a black base.", - "id": 10269 - }, - { - "image_path": "/content/drive/MyDrive/combined/08165739_jpg.rf.273df7cb6ca5439d68945fff4fed677a.jpg", - "response": "Passengers wearing face masks to protect against the spread of the coronavirus ride an escalator at the Beijing Capital International Airport in Beijing, Tuesday, March 10, 2020. The new coronavirus causes mild or moderate symptoms for most people, but for some, especially older adults and people with existing health problems, it can cause more severe illness or death. (AP Photo/Mark Schiefelbein", - "id": 10270 - }, - { - "image_path": "/content/drive/MyDrive/combined/1080_jpg.rf.51dbccedef755826dcec8ff5bae7d946.jpg", - "response": "A boy is hitting a ball with a baseball bat.", - "id": 10271 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681681-7139256_jpg.rf.78af0550b26d351417216c72febf1b7e.jpg", - "response": "A large room with shelves and a red double decker bus.", - "id": 10272 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681292-9351625_jpg.rf.9759ca5a2061a8934e37ea29ed01a31f.jpg", - "response": "a window with rain drops on it a black building and a yellow bus", - "id": 10273 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681735-6291656_jpg.rf.3288ac7592008e0c75485dec91afab24.jpg", - "response": "A long shelf with many items on it.", - "id": 10274 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681323-8993154_jpg.rf.6e16cc054bc7ae2e6e4d8220f41f9b43.jpg", - "response": "a photo of a building with a sky background", - "id": 10275 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad90195-cd77-489e-bf85-08c83b80d3e0_jpg.rf.185f4ee422909ca4d2f70d277503895f.jpg", - "response": "In the image there are several people wearing protective masks. The woman on the left has her mask in her right hand and is checking her phone. The woman in the center has her mask on her face and is looking to her right. The woman on the right has her mask on her face and is looking to her left. There is a person in the background wearing a black hat and a suit. There is a handbag on the left side of the image.", - "id": 10276 - }, - { - "image_path": "/content/drive/MyDrive/combined/1085_jpg.rf.c8355e7d40bfa2e0d4ee4d8ae3933187.jpg", - "response": "A busy street in Sao Paulo with people crossing the road and traffic including a bus and cars.", - "id": 10277 - }, - { - "image_path": "/content/drive/MyDrive/combined/104287056_1108892506158790_6063124856718590591_n_jpg.rf.e5153b0256659123342978f6da3e4d29.jpg", - "response": "A man in a hard hat and high visibility jacket is on a ladder, working on a mezzanine. He is standing on a yellow ladder, which is placed against a metal beam. The man is wearing a white hard hat, and has a tool belt around his waist. He is holding a tool in his right hand.", - "id": 10278 - }, - { - "image_path": "/content/drive/MyDrive/combined/1092_jpg.rf.f7a3e661fea5c1baf9b385614318f9b5.jpg", - "response": "A man with a megaphone is kneeling on the ground in a busy street. He is surrounded by a crowd of people who are walking by. Some of the people are carrying handbags and backpacks. In the background, there is a bench and a traffic light. The street is made of bricks and there are buildings in the distance.", - "id": 10279 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681849-2284508_jpg.rf.666d764854fdea61f48c6f494b0b24fd.jpg", - "response": "A blurry image of a room with a desk and a chair. The desk has several books on it and a cup is placed nearby. There is a bookshelf in the background.", - "id": 10280 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681902410-48_jpg.rf.8178ed3b42aaa2f3dd0748f45fe56d97.jpg", - "response": "A room filled with wooden crates stacked up against the wall.", - "id": 10281 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681758-7026863_jpg.rf.9bddc1e0b29ad2b6f29f63162424d77d.jpg", - "response": "a man standing in a room with a black floor", - "id": 10282 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681866-4870656_jpg.rf.338c528fef1915763ed4128127562326.jpg", - "response": "A warehouse with a lot of boxes stacked on pallets.", - "id": 10283 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681681-7139256_jpg.rf.f5a4370021091888389e7fc3109133d0.jpg", - "response": "a room with a lot of items in it", - "id": 10284 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681886-3000119_jpg.rf.aea823c38e398edb515fa30a85158346.jpg", - "response": "A pallet with a wooden crate on it.", - "id": 10285 - }, - { - "image_path": "/content/drive/MyDrive/combined/08165739_jpg.rf.8487bc66978db79c979c5504f3871b77.jpg", - "response": "A group of people wearing face masks, one of whom is a young boy, are going up an escalator. They are all wearing different patterns of face masks, with some of them being white and others being black. The boy in the front is wearing a black jacket and a gray mask with a blue pattern on it. The man behind him is wearing a gray mask with a black pattern on it. The woman to the right of the man is wearing a black mask with a light blue pattern on it. The woman behind her is wearing a black mask with a yellow pattern on it. The woman to the far right is wearing a black mask with a red pattern on it. They are all going up an escalator and there is a large glass wall behind them.", - "id": 10286 - }, - { - "image_path": "/content/drive/MyDrive/combined/105043354_3696308217063420_151830035658933409_n_jpg.rf.4cb55f07f88e03b05caf0fa542a6e899.jpg", - "response": "A man in a blue shirt and grey pants is on a silver ladder that is placed against the outside wall of a modern house. He is cleaning the windows of the house, which has large glass windows and a wooden roof. The sky is blue and clear.", - "id": 10287 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681792-7728505_jpg.rf.1e4f8bec0cfb1ce680a0719899b6e9ad.jpg", - "response": "a hallway with a white wall and a black floor. The floor is covered in small white dots. In the background, there is a red wall and a white column.", - "id": 10288 - }, - { - "image_path": "/content/drive/MyDrive/combined/1073_jpg.rf.9f9ddb0774c0bb384e9934edf31b4797.jpg", - "response": "In the image, there are two boys wearing red soccer jerseys playing soccer on a field. One of the boys is in the foreground and is kicking a soccer ball between several orange cones. Another boy is in the background. There is a person wearing black in the background, watching the boys. The field has a white and black striped border. The image also has a yellow heading that says \"Cones for Agility Drills & Training\".", - "id": 10289 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_Concern-In-China-As-Mystery-Virus-Spreads_jpg.rf.e7705589421f73e82841eed3b383e4cc.jpg", - "response": " People(364,29),(707,997)(28,137),(383,996) wearing protective masks(481,125),(587,281)(275,329),(350,445) and gloves(363,585),(451,820)(72,796),(158,997)(277,699),(344,843) at a train station in China", - "id": 10290 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d4226a3a7aa30567d0ae25f0542d2d0_jpg.rf.f661f3dd41d36787b8f94e60116f514b.jpg", - "response": " a man(362,173),(528,462) on a ladder(298,313),(535,824)", - "id": 10291 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681278-6299093_jpg.rf.08a77916a94d611ef4890c4680fbfb40.jpg", - "response": "A close up of a rain covered window with a reflection of a person standing on a street.", - "id": 10292 - }, - { - "image_path": "/content/drive/MyDrive/combined/1029731146_jpg.rf.6d91d4533699de17cd59a6740fbf1539.jpg", - "response": "A crowd of people wearing face masks.", - "id": 10293 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681841-1620564_jpg.rf.504a2f8674737625ce0823aa6cd062d5.jpg", - "response": "A blurry image of a room with a lot of boxes stacked up.", - "id": 10294 - }, - { - "image_path": "/content/drive/MyDrive/combined/1060_jpg.rf.7f162cb6d55b31a2ea82ac8607c3aad5.jpg", - "response": "A person standing next to a small yellow cone.", - "id": 10295 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681277-5301569_jpg.rf.bfb727e5ae6cc3269e584588f4a9e86e.jpg", - "response": "A bus is parked on the street in the rain. The street is wet and the bus has a yellow front. There are people on the sidewalk but they are not visible in the image. The image is taken through a window that is covered in water droplets.", - "id": 10296 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad90195-cd77-489e-bf85-08c83b80d3e0_jpg.rf.6194b2da831ec30d2d8d36c78f51fa4a.jpg", - "response": "In the image there are several people wearing protective masks. The two most prominent women are standing next to each other and wearing protective face masks. They are both wearing business suits and glasses. The woman on the left has her hair in a ponytail and is holding a white object with a sticker on it. The woman on the right has her hair in a bun and is wearing a white mask with a design on it. They are both looking in the same direction.", - "id": 10297 - }, - { - "image_path": "/content/drive/MyDrive/combined/1054_jpg.rf.abdd08b2c8e62450aee1276681f858e7.jpg", - "response": "The image shows a busy city street with cars, trucks, and a bus driving down the road. There is a bike lane next to the road with several orange traffic cones placed in it. The cones are also painted with a red line indicating the bike lane. The street is lined with tall buildings and there are several pedestrians walking along the sidewalk. A stop sign can be seen on the left side of the street and a few people are standing on the sidewalk, some of them holding umbrellas. The image also shows a billboard on the right side of the street.", - "id": 10298 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_jpg.rf.a5af90682f8af282ead24c6c298ba6a0.jpg", - "response": "A man holding a large orange and white traffic cone in front of his head.", - "id": 10299 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681319-8644521_jpg.rf.ee524c641c0df6771d757d90a26c9de5.jpg", - "response": "A number of boxes are stacked on a shelf.", - "id": 10300 - }, - { - "image_path": "/content/drive/MyDrive/combined/1-200102094256105_png_jpg.rf.1360489a7956c3651bad41347687ec3f.jpg", - "response": "In the image, there is a little girl wearing a pink mask with a valve. She has her hands up to her face, seemingly adjusting the mask. The background of the image is white.", - "id": 10301 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681885109-74_jpg.rf.d8d30fb67c74395a218e3a1fdd150129.jpg", - "response": "A large room with many boxes stacked on top of one another.", - "id": 10302 - }, - { - "image_path": "/content/drive/MyDrive/combined/08_11_2019-airpollution_234_19737819_192539446_jpg.rf.b5c5018a5054f05393f0cf5e69880f79.jpg", - "response": "A young girl wearing a mask sits on a man's shoulders. They are both wearing masks.", - "id": 10303 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681320-6051145_jpg.rf.8556b1dfb01a9f04eb98d84e83f0bb24.jpg", - "response": "A bus is driving down a wet street.", - "id": 10304 - }, - { - "image_path": "/content/drive/MyDrive/combined/1038_jpg.rf.4783b6550e1bb78ab1db53c8cd29d0b5.jpg", - "response": "A city street with construction cones and a manhole cover.", - "id": 10305 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681752-112845_jpg.rf.9e370a88427f8dd3885eed8e4bfa2425.jpg", - "response": "A bus is driving down the street in the dark.", - "id": 10306 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681736-7274044_jpg.rf.971e80e6a80bed3a13b0f8b88f60bf49.jpg", - "response": "A large warehouse with a shelf full of boxes and barrels.", - "id": 10307 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681728836-15_jpg.rf.4daca0f37ce2f0fabdd65c531a92dce9.jpg", - "response": "a train station with a train in the background and raindrops on the camera", - "id": 10308 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681246-7858365_jpg.rf.d3420f49d42b8b48e01650c75e65ddcf.jpg", - "response": "a large room with a lot of boxes in it", - "id": 10309 - }, - { - "image_path": "/content/drive/MyDrive/combined/08_11_2019-airpollution_234_19737819_192539446_jpg.rf.cc6ba3a79574078767398446f0d34f22.jpg", - "response": "A young girl wearing a face mask sits on a man's shoulders. Both the man and the girl are wearing face masks. They are in a crowded place with many other people around.", - "id": 10310 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681250-0867937_jpg.rf.6e9ddee680e6aa9ba527aa705ebe77a5.jpg", - "response": "A large room filled with lots of boxes stacked on top of each other.", - "id": 10311 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681849-2284508_jpg.rf.286603f1089d1639b9ebcbd191fa8fa1.jpg", - "response": "A room with wooden pallets stacked up against the wall.", - "id": 10312 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_jpg.rf.1c6af9ebb6f5c0b30b175a9b2e66ac6a.jpg", - "response": "In the image there are four orange traffic cones with white reflectors on them. They are stacked up in two pairs of two. The first pair of cones is on the left and the second pair is on the right. The cones have a white reflector on top and a white one on the bottom. The cones are made of a plastic material and have a white base. The background of the image is white.", - "id": 10313 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x576_939430607723_jpg.rf.272b6f18d38b0fb53082e9f3b77778bb.jpg", - "response": "The image shows a group of people walking through an airport. They are all wearing white face masks. One of the women is carrying a black handbag and a pink bag with a panda face on it. Another woman has a pink bag with a cat face on it. A woman on the far left is wearing a white shirt and a black scarf. Another woman on the far right is wearing a black coat and a blue scarf. In the background, there is a turnstile and an advertisement for bubble tea.", - "id": 10314 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_IMG_5632-1jpeg_jpg.rf.54bd96f82a12adce7e683badc09ed4d5.jpg", - "response": "A man is painting the front of a building. He is standing on a yellow ladder and holding a paintbrush in his right hand. The paint can is on the ground beside him. He is wearing a blue t-shirt and a blue cap. To his left is a doorway with a wooden frame painted in an orange-brown color. The door is open and you can see a few chairs and a dining table inside. On the right side of the image, you can see another building with a glass door and a sign that says \"Antiques.\" The sky is blue and there are no clouds in the sky.", - "id": 10315 - }, - { - "image_path": "/content/drive/MyDrive/combined/101d6660a8974050b613dd2e6bd59390_jpg.rf.26f4785b536b31c531719a3102a7cfe6.jpg", - "response": "The image shows a group of people walking down a street. They are all wearing white face masks. The people are walking on a street with several cars and a bus in the background. There are also several handbags and a backpack visible in the scene.", - "id": 10316 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681884-1000655_jpg.rf.92aa1f05b7dab15d293f8fcab58c4335.jpg", - "response": "A warehouse with boxes stacked on pallets and a forklift.", - "id": 10317 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x737_09186876046_jpg.rf.a51194206a9ebdef50617acc137eba47.jpg", - "response": "a group of people wearing face masks(508,446),(610,613)(699,429),(878,566)(363,443),(522,611)(213,424),(347,576)(899,337),(997,480)(153,190),(270,295)(287,133),(378,223)(610,354),(688,438)", - "id": 10318 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_8w7mkX-PHcfMM5s6_jpeg_jpg.rf.5b711a5a3e9dc4216812d04aa38fe9d2.jpg", - "response": "A large group of people walking through a station wearing face masks.", - "id": 10319 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681582-8197036_jpg.rf.ca9c150510411efe5e9c617cc1c1e8d0.jpg", - "response": "A man standing in front of a machine.", - "id": 10320 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681299-901497_jpg.rf.e3550fa710179cbf2fe2f4f0d2eec4f2.jpg", - "response": "A large number of boxes are stacked on a shelf.", - "id": 10321 - }, - { - "image_path": "/content/drive/MyDrive/combined/09-16timbershaping_jpg.rf.92dfe2e3ac63f8d2cf2208b6bbc46305.jpg", - "response": "A man is working on a wooden structure with a large pipe.", - "id": 10322 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681827-965445_jpg.rf.85bda3a9dac0ff95a9ff468a423834ba.jpg", - "response": "A black and white speckled floor in a room.", - "id": 10323 - }, - { - "image_path": "/content/drive/MyDrive/combined/101d6660a8974050b613dd2e6bd59390_jpg.rf.f7b9bd4329e2a682939aec3a06587354.jpg", - "response": "People wearing face masks walk on a street in the financial district of Makati city, metro Manila, Philippines, 16 March 2020. The Philippines government has suspended the entry of foreign tourists and has implemented a lockdown in the capital city of Manila in a bid to prevent the spread of the COVID-19 coronavirus. The death toll from the COVID-19 coronavirus in the Philippines has reached 10, with 163 confirmed cases as of 16 March 2020.", - "id": 10324 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681299-901497_jpg.rf.fab1bb232cdc75c51151b0549d5da17c.jpg", - "response": "A kitchen with a refrigerator and a microwave.", - "id": 10325 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681887797-06_jpg.rf.7fe21ed52ab81e75d6fc6440e25563e4.jpg", - "response": "A blurry image of a room with shelves and crates.", - "id": 10326 - }, - { - "image_path": "/content/drive/MyDrive/combined/1032_jpg.rf.791c49e70cbf0665b37fbb335a9bfc26.jpg", - "response": "A purple witch hat with five colored plastic rings stacked on top of it.", - "id": 10327 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681841-1620564_jpg.rf.b62324863e85aaf4a7ce4c4d4a81da3d.jpg", - "response": "A cat sitting on a chair in a room.", - "id": 10328 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681805-9659615_jpg.rf.051d94361c1746208de0a737d82dceb9.jpg", - "response": "A blurry image of a door with a gold frame.", - "id": 10329 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681887797-06_jpg.rf.0f02589a1200cb9c6af954b20065e7d3.jpg", - "response": "A close up of a window with rain drops on it.", - "id": 10330 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681877385-32_jpg.rf.ecba755de7352a85a89d35d7ebfbc637.jpg", - "response": "A room with many boxes stacked on pallets.", - "id": 10331 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681582-8197036_jpg.rf.eb43561396074fb59779f4efed5e6ef5.jpg", - "response": "A man in a red shirt is standing in a warehouse.", - "id": 10332 - }, - { - "image_path": "/content/drive/MyDrive/combined/1034_jpg.rf.dff1a716d595baca0b236d7f738c9378.jpg", - "response": "A single orange cone sitting on a white background.", - "id": 10333 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681877385-32_jpg.rf.f9228de6f9b5106d7752c104eeb22fee.jpg", - "response": "A pallet rack system with green metal cages on the left and a pallet on the right.", - "id": 10334 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681691-626095_jpg.rf.b15870c407738e245c84c96566186abc.jpg", - "response": "A warehouse with a shiny black floor. There are some yellow barriers in the warehouse. In the background, there are some shelves and a red double decker bus.", - "id": 10335 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad90195-cd77-489e-bf85-08c83b80d3e0_jpg.rf.dbf743dce3eccdf88406e765945d2849.jpg", - "response": "In the image there are several people wearing protective masks. The two most prominent women are standing next to each other and wearing business suits. They are both wearing protective masks. One of them has blonde hair and the other has brunette hair. They are both wearing glasses as well. One of the women has a white mask and the other has a blue mask. They both have their hair down.", - "id": 10336 - }, - { - "image_path": "/content/drive/MyDrive/combined/1042977068_jpg.rf.c6cfff9d668b35a924e0f611cc035d80.jpg", - "response": "A man and woman walking down a hallway while wearing face masks and carrying a purple bag.", - "id": 10337 - }, - { - "image_path": "/content/drive/MyDrive/combined/1030611863_jpg.rf.59a2acac9e1e18fad0637194c3bb05e8.jpg", - "response": "The image shows a group of three people walking down a mall. They are all wearing surgical masks. The person in the center is holding a phone and looking at the screen. The man on the left is wearing a black jacket and a white mask. The woman on the right is wearing a black jacket and a white mask with a black handbag. The person in the center is wearing a gray jacket and a blue mask. They are all looking at their phones. The background is blurred, and there are many people walking around. The floor is tiled, and the mall has many glass windows.", - "id": 10338 - }, - { - "image_path": "/content/drive/MyDrive/combined/1006_jpg.rf.55df086c61db280cf8b123815b9e0c40.jpg", - "response": "A close-up photo of a single traffic cone sitting in the middle of a crosswalk. The crosswalk is made of thick, wide white stripes and the cone is in the middle, slightly to the left. The cone is also slightly to the right of the center of the image. The background is a black and white striped pattern.", - "id": 10339 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681793-8747346_jpg.rf.c353ef43417e88b97ba0fa7a09d590fa.jpg", - "response": "A room with a black floor and a silver circle on the floor.", - "id": 10340 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681301-7452023_jpg.rf.ffaaafd603b0aac3d8b2134c5ac73b05.jpg", - "response": "a photo of a window with a view of a city street", - "id": 10341 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681292-9351625_jpg.rf.e277781e7eed5edc2c1645209de3515a.jpg", - "response": "A rain covered window with a view of a street.", - "id": 10342 - }, - { - "image_path": "/content/drive/MyDrive/combined/1022_jpg.rf.6e867172f644d2e40db0d804a434369b.jpg", - "response": "A man with a red and white traffic cone on his head, standing in front of an orange wall.", - "id": 10343 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_jpg.rf.d5214a102c7b7a4d21106bd9527f43fb.jpg", - "response": "A single orange and white traffic cone sitting in the middle of a empty parking lot.", - "id": 10344 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681734884-27_jpg.rf.597e366a3a3f2069f7788eb6bad2e8de.jpg", - "response": "A large room with shelves and a cart.", - "id": 10345 - }, - { - "image_path": "/content/drive/MyDrive/combined/107_jpg.rf.b8d0ee17f93b7f2d28e55d1764a320d7.jpg", - "response": "A set of four miniature road cones next to a quarter to show scale.", - "id": 10346 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681318-408538_jpg.rf.ba1707fff49c496ddd788f2882263551.jpg", - "response": "A blurry image of a building with a door that has a window.", - "id": 10347 - }, - { - "image_path": "/content/drive/MyDrive/combined/1090_jpg.rf.5f974b579829797d901f40b722e56bba.jpg", - "response": " A woman(484,373),(738,916) sitting on a stone pillar in a park with a plastic bag(604,669),(781,923) in her hand.", - "id": 10348 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681758-7026863_jpg.rf.e4d37eba00cf40617c0b1e905176af2e.jpg", - "response": "a person wearing a red and black shirt", - "id": 10349 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681691-626095_jpg.rf.5e5635b6ed937253b8a3fe898e4e4314.jpg", - "response": "a large warehouse with a lot of shelves and items on the shelves", - "id": 10350 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681792-7728505_jpg.rf.b21822dce6eb88fdc16f1d97201eed17.jpg", - "response": "a room with a black floor and a red wall", - "id": 10351 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_10725_jpg.rf.f62bbb1cd104de8f905ccd243d2079dc.jpg", - "response": "A group of four people are posing for a photo in an office setting. They are all wearing masks. There are three people sitting and one standing. They are all looking at the camera. The person on the far left is an older man with glasses and a gray shirt. The person on the right in the bottom corner is a woman with black hair and a black shirt. The person standing behind the woman is a young man with glasses and a gray shirt. The woman standing next to the young man is younger with long brown hair and a white shirt. There are three desk lamps in the background. One is a blue and white shade hanging from the ceiling on the left, the second is a purple and white shade hanging from the ceiling in the middle, and the third is a white shade hanging from the ceiling on the right.", - "id": 10352 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681805-9659615_jpg.rf.dbff6705a81942782f14e06a726668c1.jpg", - "response": "A curtain with many small white dots on it.", - "id": 10353 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681743-3267815_jpg.rf.cbcb51a0e384dbca54bc4eb26ae7e88e.jpg", - "response": "A blurry image of a city street with a bus in the background. The street is covered in small white dots.", - "id": 10354 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681753-213479_jpg.rf.03cdf5ce37604972b3b4d77d18d97f7e.jpg", - "response": "A blurry image of a room with a shelf on the wall.", - "id": 10355 - }, - { - "image_path": "/content/drive/MyDrive/combined/08_11_2019-airpollution_234_19737819_192539446_jpg.rf.4e2a633c6b723502fb0bc4b120e6cb11.jpg", - "response": "A man wearing a surgical mask is holding a young girl on his shoulders. Both the man and the girl are wearing masks. They are surrounded by other people who are also wearing masks. The man is wearing a navy blue shirt and the girl is wearing a dark blue jacket. The background is blurred and there are many other people in the image.", - "id": 10356 - }, - { - "image_path": "/content/drive/MyDrive/combined/10-06portplanking_jpg.rf.43b14ee2c929b93e8de86e62b33f9a76.jpg", - "response": "A group of men working on a wooden structure.", - "id": 10357 - }, - { - "image_path": "/content/drive/MyDrive/combined/1039_jpg.rf.ce99d9c98a367dc29ed591d9aa535683.jpg", - "response": "The image shows two orange traffic cones sitting on a sidewalk. The cones are placed near a door mat and a small potted plant. The ground around the cones appears to be wet.", - "id": 10358 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681810-3573685_jpg.rf.93cd6f56a0b1f6108205d10649aa9949.jpg", - "response": "A close up of a window with many small black dots on it.", - "id": 10359 - }, - { - "image_path": "/content/drive/MyDrive/combined/1079_jpg.rf.c54412623a91fefe71c634e937ae1346.jpg", - "response": "A highway with a line of orange traffic cones down the center.", - "id": 10360 - }, - { - "image_path": "/content/drive/MyDrive/combined/1-200102094256105_png_jpg.rf.5fb4381ff0016a33d083c40717b47d29.jpg", - "response": "In the image, there is a little girl wearing a pink mask with a valve. She has her hands up to her face, seemingly adjusting the mask. The background of the image is white.", - "id": 10361 - }, - { - "image_path": "/content/drive/MyDrive/combined/09-16stanchion_jpg.rf.8068c610909adc1087278a9516531a5f.jpg", - "response": "A man working on a sailboat in the water.", - "id": 10362 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681277-5301569_jpg.rf.932747cbd2f322f1569ec62d6f6c0010.jpg", - "response": "A close up of a window with rain drops on it.", - "id": 10363 - }, - { - "image_path": "/content/drive/MyDrive/combined/08165739_jpg.rf.d04018e16436d9147f410600e9ff1f1b.jpg", - "response": "A group of people wearing face masks, one of whom is a young boy, are going up an escalator.", - "id": 10364 - }, - { - "image_path": "/content/drive/MyDrive/combined/1002_jpg.rf.32d78ce7be489937d356fd52c8b45bf1.jpg", - "response": "A single orange cone with a black base.", - "id": 10365 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_10725_jpg.rf.efd2eaa0be14db1e8fba6531d3191e35.jpg", - "response": "A group of four people are posing for a photo in an office setting. They are all wearing masks. There are three people sitting and one standing. They are all looking at the camera. The person on the far left is an older man with grey hair and glasses. He is wearing a light blue shirt and a mask. The person sitting to his right is a young man with short dark hair and glasses. He is wearing a black shirt and a mask. The person sitting to his right is a young woman with long dark hair. She is wearing a white shirt and a mask. The person standing behind her is also wearing a mask. They are all looking at the camera.", - "id": 10366 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681793-8747346_jpg.rf.5177a2a308a4036686f94750e76962a1.jpg", - "response": "A fisheye lens photograph of a large room with a lot of shelves and a red vending machine.", - "id": 10367 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681901401-87_jpg.rf.064d0fd9eaf8444f27bde8a8039f4974.jpg", - "response": "A warehouse with a row of boxes stacked up against a wall.", - "id": 10368 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_2763_JPG_jpg.rf.e0532a6238de5226eb296238456c7d0a.jpg", - "response": "A man is on a ladder in a room.", - "id": 10369 - }, - { - "image_path": "/content/drive/MyDrive/combined/100713-F-1124Q-062_JPG_jpg.rf.1ea2f6b7345ba13a2592087a019c6154.jpg", - "response": "A man in an orange vest directing a plane on the runway.", - "id": 10370 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681885109-74_jpg.rf.5dc5dcdbe0bd9576ace1e0aae8b605a5.jpg", - "response": "A close up of a glass window with many water droplets on it. In the background, there are multiple crates stacked on top of each other.", - "id": 10371 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x576_939430607723_jpg.rf.55c0f9ebdaaef9e6bf7e2c1f0baa1e08.jpg", - "response": "The image shows a group of people walking through an airport. They are all wearing white face masks. One of the women has a black handbag with a red face mask attached to it. Another woman has a pink handbag. A turnstile is visible to the left of the frame.", - "id": 10372 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681834-5661194_jpg.rf.2629f99ffd47f7df16911f49de970fa6.jpg", - "response": "A large room with a lot of boxes and furniture.", - "id": 10373 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681735-6291656_jpg.rf.c20f6c69fe1e3393698e73636a99f271.jpg", - "response": "A large warehouse with shelves full of items.", - "id": 10374 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681902410-48_jpg.rf.22b13b3c0a1a6ba72239c3586e0aa718.jpg", - "response": "A row of boxes on a pallet in a warehouse.", - "id": 10375 - }, - { - "image_path": "/content/drive/MyDrive/combined/1-200102094256105_png_jpg.rf.3d7ce41c848c2383361878673fe03a9d.jpg", - "response": "In the image, there is a little girl wearing a pink mask with a valve. She has her hands up to her face, possibly touching or adjusting the mask. The background of the image is white.", - "id": 10376 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681278-6299093_jpg.rf.0bfa78696143f2876da949c5829c148d.jpg", - "response": "a bus on a street with a black background", - "id": 10377 - }, - { - "image_path": "/content/drive/MyDrive/combined/1008_jpg.rf.ce0ac0a66eeaa7f6069506f53f34c927.jpg", - "response": "A large hole in the street with five orange and white cones surrounding it.", - "id": 10378 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681884-1000655_jpg.rf.e1db12d66b89e45216ab2a3617d6648b.jpg", - "response": "a large room with a lot of boxes and crates in it", - "id": 10379 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_jpg.rf.f98bfcd7861de679d353aed8986b3562.jpg", - "response": "A orange and white caution cone sitting on an orange square.", - "id": 10380 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681744791-95_jpg.rf.907c725bea038fbf97af1fb365a5b222.jpg", - "response": "a window with rain on it looking into a warehouse with shelves and a table", - "id": 10381 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681736-7274044_jpg.rf.e20502b28ee7289b5599fd6e1f5a10f6.jpg", - "response": "A warehouse with a grey floor and shelves. There are two yellow posts in the foreground.", - "id": 10382 - }, - { - "image_path": "/content/drive/MyDrive/combined/101d6660a8974050b613dd2e6bd59390_jpg.rf.4c339977453d4ad59aca705db19b5465.jpg", - "response": "People wearing face masks are seen walking along a street in Bangkok, Thailand, on March 12, 2020.", - "id": 10383 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681810-3573685_jpg.rf.7002bda6c4c38d2211f20b910e05a3cf.jpg", - "response": "A blurry image of a person standing in a doorway.", - "id": 10384 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681323-8993154_jpg.rf.d1bcf5ea26781681c7784516bf5ba25d.jpg", - "response": "A blurry image of a room with a door and a window.", - "id": 10385 - }, - { - "image_path": "/content/drive/MyDrive/combined/1049_jpg.rf.ea0667a4dd97479e3bcd2b9958c63b6a.jpg", - "response": "The image is a 3D rendering of three traffic cones. The cones are orange and white in color and are placed in a row. The first cone is on the left and the other two are on the right. The cones have a flat base and a pointy top. The middle cone has a reflective surface. The background of the image is gray.", - "id": 10386 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681734884-27_jpg.rf.aed9c8d777451dff6d5e8c8f779dcdd0.jpg", - "response": "A warehouse with pallets and boxes stacked on pallets.", - "id": 10387 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574680961-2388635_jpg.rf.f9a137ef2e3b3a902b47ccea60200950.jpg", - "response": "A group of people standing in a room with a black background. They are wearing white and grey clothes and are holding tennis rackets. The image is covered in small white dots.", - "id": 10388 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681327-5634716_jpg.rf.2c046bcad823be158434b3b95732a1de.jpg", - "response": "A large number of boxes stacked on a shelf.", - "id": 10389 - }, - { - "image_path": "/content/drive/MyDrive/combined/1030611863_jpg.rf.3749f3837a92243ce79a511e3666c175.jpg", - "response": "The image shows a group of three people walking down a large open shopping mall. The person in the center is a woman with pink hair and a black jacket. She is looking down at her phone and appears to be typing a message. She is wearing a blue surgical mask. To her left is a man with gray hair and a black jacket. He is also wearing a blue surgical mask. They are both looking down at their phones as well. To the right of the woman is another woman with black hair and a white and black checkered jacket. She is wearing a blue surgical mask as well. In the background, there are many other people walking around. Some are wearing surgical masks, some are not. There are also many glass storefronts in the background.", - "id": 10390 - }, - { - "image_path": "/content/drive/MyDrive/combined/1005_jpg.rf.49562ac86583321b9eee55bdb57913a4.jpg", - "response": "In the image, there are two photos. The top photo is a close-up of a highway with white and orange traffic cones placed in the center and on the left side of the road. The bottom photo is a radar-like image with red arrows pointing to different cones.", - "id": 10391 - }, - { - "image_path": "/content/drive/MyDrive/combined/1003_jpg.rf.2cae5a3ac98dc3507109a7c784cc606a.jpg", - "response": "A toy car is placed in the center of the image, with 5 small traffic cones surrounding it on the white table.", - "id": 10392 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad90195-cd77-489e-bf85-08c83b80d3e0_jpg.rf.ac36e06119bb1a983b25706fc6ee92c9.jpg", - "response": "In the image there are several people wearing protective masks. The most prominent woman is wearing a white mask with a black and white pattern on it. She is wearing a black and white suit and her hair is tied back. She is also wearing glasses. Next to her is another woman with a similar appearance, but her mask is blue and she is wearing a blue and white suit. Both women are looking in the same direction, possibly towards the camera.", - "id": 10393 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681901401-87_jpg.rf.4559c6f42aa96ea5c33adfb53a645a6c.jpg", - "response": "A long row of boxes on pallets.", - "id": 10394 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x737_09186876046_jpg.rf.4a508ccfa8a48bedc0fcd75f644650e3.jpg", - "response": "a group of people wearing face masks", - "id": 10395 - }, - { - "image_path": "/content/drive/MyDrive/combined/1030611863_jpg.rf.45fd918a94c1a0d4d3e501cc0ab26242.jpg", - "response": "The image shows a group of three people walking down a street. They are all wearing surgical masks. The person in the center is holding a smartphone and looking at the screen. They are wearing a black jacket and a fanny pack. The person on the left is wearing a grey jacket and has white hair. The person on the right, who is closer to the right edge of the image, is wearing a black jacket and has pink hair. They are also looking at a smartphone. In the background, there are more people walking in the street. Some are closer to the left and some are closer to the right. There are also many glass panels on the building on the right.", - "id": 10396 - }, - { - "image_path": "/content/drive/MyDrive/combined/1029_jpg.rf.4f4e56d6c1be17b09279bfd68b329b70.jpg", - "response": "A set of 12 orange cones for sports and activities.", - "id": 10397 - }, - { - "image_path": "/content/drive/MyDrive/combined/080707-F-6278H-011_JPG_jpg.rf.3f776634b487acc58f3ef92708f65677.jpg", - "response": "An airman in an orange vest is taking a picture of a large U.S. Air Force plane on the runway. The airman is standing in front of the plane and is wearing a pair of headphones. The plane has a large wing and is painted in gray.", - "id": 10398 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681728836-15_jpg.rf.8ff38867e151ada8879dbedc7b6c8e94.jpg", - "response": "a window with rain on it looking into a factory with machines and racks", - "id": 10399 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681752-112845_jpg.rf.73759f7e750258be1816052331e2a5a3.jpg", - "response": "A warehouse with a ladder and shelves.", - "id": 10400 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_jpg.rf.139f81dc5e55a7babbb3b4ba2084634f.jpg", - "response": "A close up of an orange traffic cone on a white background. The cone is made of a hard material and has a reflective band around the middle. The top of the cone is pointy and the base is square. The cone is slightly dirty and has some rust on it.", - "id": 10401 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681742-2271585_jpg.rf.d9caa17b2703cfc46a36e69cffbfb1eb.jpg", - "response": "A snowy night outside a warehouse with a truck inside.", - "id": 10402 - }, - { - "image_path": "/content/drive/MyDrive/combined/091029-F-9933W-247_JPG_jpg.rf.c5a5f9a624790d04c1a5fb2b0d46a996.jpg", - "response": "A man(638,266),(922,986) wearing a blue shirt.", - "id": 10403 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681834-5661194_jpg.rf.282dfee94a834e32fcc2941dbbd990c4.jpg", - "response": "A kitchen with a sink, counter, and refrigerator.", - "id": 10404 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681742-2271585_jpg.rf.fce962b9c93af9ad26a9ab1fe9b13afc.jpg", - "response": "A large metal door is shown in a warehouse.", - "id": 10405 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681743-3267815_jpg.rf.a51694467c947b323614235fc1b30f6d.jpg", - "response": "A fire hydrant is seen in the distance, it is yellow in color.", - "id": 10406 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681319-8644521_jpg.rf.9ee52bfc5cdaa07ff550e0dcf76e75c0.jpg", - "response": "A bunch of boxes are stacked up in a room.", - "id": 10407 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x737_09186876046_jpg.rf.fc514c87648716dc018a219d9354a18d.jpg", - "response": "a group of people wearing face masks(50,476),(221,622)(363,443),(523,611)(697,439),(878,567)(507,448),(611,610)(216,428),(346,573)(223,133),(323,240)(897,336),(997,483)(598,336),(676,429)(287,103),(379,191)", - "id": 10408 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681827-965445_jpg.rf.09d44445325f2fda9ea239d885b6c2a5.jpg", - "response": "A man standing in a room with a metal shelf.", - "id": 10409 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_65_3-Way-Ladder-3_316691_JPG_jpg.rf.dd3e797848df4fdffecc1afbbb013daf.jpg", - "response": "A man wearing a red shirt is on a red and silver ladder.", - "id": 10410 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681866-4870656_jpg.rf.63eeca8d7432713117a416333ad47fbb.jpg", - "response": "a room with many boxes stacked on top of each other", - "id": 10411 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681320-6051145_jpg.rf.801086c2697a15a3eaf3697b489ae789.jpg", - "response": "A blurry image of a room with a door at the end of a hallway.", - "id": 10412 - }, - { - "image_path": "/content/drive/MyDrive/combined/100713-F-1124Q-010_JPG_jpg.rf.c5faf6115463afa2672ca9f0a5c25a39.jpg", - "response": "A man in a tan shirt and army green pants standing under a plane.", - "id": 10413 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681246-7858365_jpg.rf.7df6ead110013581cd4d8907e09cb038.jpg", - "response": "A blurry image of a bathroom with a silver sink and a toilet.", - "id": 10414 - }, - { - "image_path": "/content/drive/MyDrive/combined/101d6660a8974050b613dd2e6bd59390_jpg.rf.fe0c51fa2bf3c979a2d5046d5c703ba0.jpg", - "response": "The image shows a group of people walking down a street. They are all wearing white face masks. The street is busy with several cars and two buses in the background. There are also several motorcycles and a few handbags and a backpack visible in the scene. The weather seems to be cloudy.", - "id": 10415 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_Concern-In-China-As-Mystery-Virus-Spreads_jpg.rf.e3baff817b21e8d0be2fd845f94a55fb.jpg", - "response": "The image shows a group of people wearing protective gear while walking through a train station. They are all wearing masks, and some are also wearing goggles and gloves. The people are carrying luggage, including a suitcase and a backpack. The luggage is predominantly in the background, with the people standing in the foreground. There are two people on the left side of the image and one person on the right side. The train station has an electronic display above the people, with green and red lights. The display is showing the time and the train schedule.", - "id": 10416 - }, - { - "image_path": "/content/drive/MyDrive/combined/1000x-1_jpg.rf.3ca2d859493efd216a41936c8f2df134.jpg", - "response": "A crowded group of people, most of whom are wearing white face masks. Some people are wearing black, white, and grey masks, while others are wearing solid white masks. Many people are wearing winter coats, with one woman on the left wearing a light pink one. The photo is taken in a station, with a concrete wall visible in the background.", - "id": 10417 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681250-0867937_jpg.rf.01fdba62d83f5e3013f6095b1b4b6262.jpg", - "response": "A blurry image of a room with a door at the end of it. There are several wooden shelves on the wall and a white table in the room. The room is dimly lit and has a speckled appearance.", - "id": 10418 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681301-7452023_jpg.rf.191c6b8089b3cf13b06628f4b164c6da.jpg", - "response": "A picture of a building and street taken through a rain-streaked window.", - "id": 10419 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fea_8011463765e2aa28b386cf_jpg.rf.3348a3f45c34bb84c99f0caeaf298111.jpg", - "response": "In the image, there is a girl wearing a white protective mask. She is wearing a black and blue dress and has dark hair. She is looking at the camera. To the right of the girl, there is a Dyson air purifier. It is a white and grey device with a long neck. It has a filter on the front. To the right of the air purifier, there is a door. The door is brown and the wall is white. There is an orange logo in the top right corner.", - "id": 10420 - }, - { - "image_path": "/content/drive/MyDrive/combined/1019_jpg.rf.bdaec808441e94bf0febbede41540b8f.jpg", - "response": "A man in a garage holding a orange and white traffic cone.", - "id": 10421 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681318-408538_jpg.rf.b0bbb5a50bd340b8d228d5b6e4adfc5d.jpg", - "response": "A black and white photo of a building.", - "id": 10422 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681886-3000119_jpg.rf.1e88e14620c88d86d25c3d68c5ad6db2.jpg", - "response": "A large warehouse with a lot of pallets in it.", - "id": 10423 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681753-213479_jpg.rf.dd34d890b3a2806ff2b01f8139fe4385.jpg", - "response": "a bus on a road", - "id": 10424 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681327-5634716_jpg.rf.a913f954b0e2d2362d1af34124e2961e.jpg", - "response": "A dark room with a glass wall. The wall has a number 15 on it. The room has a lot of electronics in it. There are a bunch of wires on the wall. There are two TVs on the wall. There is a microwave on the left side of the room. There is a refrigerator on the right side of the room. There is a brown chair in the room.", - "id": 10425 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_8w7mkX-PHcfMM5s6_jpeg_jpg.rf.a1bdc7caa55efed3174da22c4638862b.jpg", - "response": "A large group of people walking through a station wearing face masks.", - "id": 10426 - }, - { - "image_path": "/content/drive/MyDrive/combined/1062_jpg.rf.bd823cf899bf9a25009610bb545d81ae.jpg", - "response": "The image shows a street with a shadow of a person standing between two yellow barriers. The person's shadow is cast on the street and appears to be looking at the yellow barriers. The street is made of cobblestones and has a brick pattern. The shadows of the yellow barriers are also visible on the street. The image has a black and white color scheme.", - "id": 10427 - }, - { - "image_path": "/content/drive/MyDrive/combined/1000_jpg.rf.ebb638f7fca9c067b9cda509fe42a08d.jpg", - "response": "A junk yard with old cars and trucks.", - "id": 10428 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681744791-95_jpg.rf.265c65397d8f5e484f1b19b4226ef192.jpg", - "response": "a photo of a dog sitting on a staircase", - "id": 10429 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207531n_jpg.rf.ea0f7c7e8ca09e37da10819ee8131c91.jpg", - "response": "The image shows three people standing outside an underpass at a train station. They are all wearing face masks. The person on the left is a young man wearing a black shirt and grey pants. The person in the middle is a young woman wearing a purple shirt and black pants. The person on the right is also a young woman, wearing a pink shirt and yellow pants. She has a suitcase on her right side and a handbag on her left. There is a backpack on the ground between the two suitcases. The two women are looking at their cell phones, while the young man on the left is looking to his left.", - "id": 10430 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_jpg.rf.351544b3a4ee894341cda549767b39b4.jpg", - "response": "A traffic cone isolated on a white background. The cone is red and white and is standing straight up.", - "id": 10431 - }, - { - "image_path": "/content/drive/MyDrive/combined/178_png.rf.773747c61f430238d216c0de1fa9ed5e.jpg", - "response": "A man in a suit and tie is looking at a construction site. He is holding a clipboard and a pen. There is a person in the background wearing an orange vest. There is a pile of dirt and debris on the right side of the image. The sky is blue and there are no clouds.", - "id": 10432 - }, - { - "image_path": "/content/drive/MyDrive/combined/1719_jpg.rf.10e0fe17f3548da1d9a23d8c1e367551.jpg", - "response": "A warehouse with many boxes stacked on the shelves.", - "id": 10433 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197620896_jpg.rf.cbcd87980135134ee406895705c00519.jpg", - "response": "A family wearing face masks, with a man holding a child and pushing a stroller, arrive at the international terminal at Tokyo's Haneda Airport on January 22, 2020, after arriving on a flight from Wuhan, China. - Japan on January 22 confirmed two cases of a new coronavirus that has killed hundreds in China, both people having recently visited the Chinese city at the centre of the outbreak. (Photo by Charly TRIBALLEAU / AFP) (Photo by CHARLY TRIBALLEAU/AFP via Getty Images)", - "id": 10434 - }, - { - "image_path": "/content/drive/MyDrive/combined/126202-untitled-design-13_jpg.rf.2c9557e6d697bce73667a8c073ee5d3b.jpg", - "response": "A group of people wearing face masks.", - "id": 10435 - }, - { - "image_path": "/content/drive/MyDrive/combined/1152x768_246964803156_jpg.rf.d8597b3f02a1081ed5d872b7f5463573.jpg", - "response": "The image shows a group of people walking through a train station. They are all wearing face masks. Some of them are carrying handbags and backpacks. The people are of different ages and are walking in different directions.", - "id": 10436 - }, - { - "image_path": "/content/drive/MyDrive/combined/1683_jpg.rf.09b4dff0391802c02cec5397367af40b.jpg", - "response": "A large warehouse with many boxes stacked on shelves.", - "id": 10437 - }, - { - "image_path": "/content/drive/MyDrive/combined/1282_jpg.rf.8e3de90998169e6b54c684d2fb230632.jpg", - "response": "A tall metal ladder sitting on the sidewalk.", - "id": 10438 - }, - { - "image_path": "/content/drive/MyDrive/combined/182_png.rf.a8c072d48d3653ff86c0809e39ff1174.jpg", - "response": "A blurry black and white photo of a hallway with two people standing in the background.", - "id": 10439 - }, - { - "image_path": "/content/drive/MyDrive/combined/169_png.rf.93462a0db0e4dd6fda682cf7aa668ef6.jpg", - "response": "A man is sitting on the ground next to a tree.", - "id": 10440 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288788-une-employee-aide-des-voyageurs-en-provenance-de-chine-le-26-janvier-2020-a-l-aeroport-de-roissy_jpg.rf.d1a0ebce8529e8f945b340e3ca8dff3c.jpg", - "response": "Passengers wearing protective facemasks, goggles and gloves, amid concerns over the spread of the COVID-19 novel coronavirus, check their boarding passes at the departure hall of the international airport in Algiers on March 12, 2020. - Algeria's health ministry announced on March 12, 2020 the country's first case of coronavirus, a 60-year-old man who had recently returned from Italy. (Photo by RYAD KRAMDI / AFP) (Photo by RYAD KRAMDI/AFP via Getty Images)", - "id": 10441 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_png.rf.4f458b32ff662e033bf529f9b71af2e7.jpg", - "response": "A man in a black shirt and white shorts is standing in a room.", - "id": 10442 - }, - { - "image_path": "/content/drive/MyDrive/combined/184_png.rf.b0a7f751f42e6e5167f5d16f82a7c811.jpg", - "response": "A man and a woman sitting in front of a building.", - "id": 10443 - }, - { - "image_path": "/content/drive/MyDrive/combined/1575_jpg.rf.f855ec700f2c1dadc23f1ebe1e75402d.jpg", - "response": "A warehouse with shelves and racks filled with boxes.", - "id": 10444 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_jpg.rf.45bf261e302345130ac2287f371a52ab.jpg", - "response": "In the image there are two traffic cones, one is laying on its side and the other is standing upright. They are both orange and white in color. The standing cone has a reflective band around it. The background of the image is white.", - "id": 10445 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322206581n_jpg.rf.ff9e6f69e3ed30b639c5fa8d21c06f2b.jpg", - "response": "A woman is helping two children put on their masks.", - "id": 10446 - }, - { - "image_path": "/content/drive/MyDrive/combined/160_png.rf.31acee7a69c3a03a4a665a05460e0b55.jpg", - "response": "A close up of a sprinkler on the ground with many droplets of water all over the ground.", - "id": 10447 - }, - { - "image_path": "/content/drive/MyDrive/combined/161_png.rf.760409d77b06c386552dd9c5db7a650a.jpg", - "response": "A group of people standing around a bench.", - "id": 10448 - }, - { - "image_path": "/content/drive/MyDrive/combined/11893820-3x2-xlarge_jpg.rf.e030a0f65c147fd1d208ed7ea456026b.jpg", - "response": "a large group of people walking around outside", - "id": 10449 - }, - { - "image_path": "/content/drive/MyDrive/combined/1196686205_jpg_14_jpg.rf.063a7c46faf04cad1bf7d1fe2f5adbda.jpg", - "response": "In the image, a woman wearing a red jacket and a mask walks with two children, also wearing masks. They are walking down a street, and there is a chair visible in the background. The woman is wearing a red coat and is holding the hand of one of the children. The other child is walking beside her. They are all wearing pajamas.", - "id": 10450 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_jpg.rf.4980af6822f9d7bea06e27de51319025.jpg", - "response": "A set of three orange traffic cones laying in the grass.", - "id": 10451 - }, - { - "image_path": "/content/drive/MyDrive/combined/157_png.rf.c4c42fa46b739c9a622477180ea31762.jpg", - "response": "A close up of a dirty floor with a small puddle of water.", - "id": 10452 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197620896_jpg.rf.e1fc54162077e541ac2ff15d2c008a1e.jpg", - "response": "A family, including a man wearing a protective mask and a baby, are seen at the international arrival area at the airport in Tokyo on January 22, 2020, after Japan confirmed its first case of coronavirus. - The number of cases of a deadly virus in China rose to 45 on January 22, as authorities scrambled to contain the outbreak and keep it from spreading to other countries. (Photo by Behrouz MEHRI / AFP) (Photo by BEHROUZ MEHRI/AFP via Getty Images)", - "id": 10453 - }, - { - "image_path": "/content/drive/MyDrive/combined/186_png.rf.2fcc3dbd68d908a80571180076561328.jpg", - "response": "A woman walking down a street with an umbrella.", - "id": 10454 - }, - { - "image_path": "/content/drive/MyDrive/combined/1635_jpg.rf.851b25568440328eab940e72bbc22fb5.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 10455 - }, - { - "image_path": "/content/drive/MyDrive/combined/1719_jpg.rf.f2fec0b880f26fa41531911867f170e9.jpg", - "response": "A large warehouse with boxes stacked on pallets and shelves.", - "id": 10456 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681914-9278362_jpg.rf.9478b392667eefcbccfd9b14398bbcee.jpg", - "response": "A row of wooden crates are stacked up in a large room.", - "id": 10457 - }, - { - "image_path": "/content/drive/MyDrive/combined/185_png.rf.223622d35b5ec83971ebf07680f1b497.jpg", - "response": "A man in a store throwing items on the ground.", - "id": 10458 - }, - { - "image_path": "/content/drive/MyDrive/combined/175_png.rf.b289c2632486998722acc54fa3ca8bf2.jpg", - "response": "A tennis player with a white shirt and black shorts.", - "id": 10459 - }, - { - "image_path": "/content/drive/MyDrive/combined/159_png.rf.04aaa5e4162bbcc1321aaea1e5d0179e.jpg", - "response": "A man in a blue shirt is raking up leaves.", - "id": 10460 - }, - { - "image_path": "/content/drive/MyDrive/combined/1575_jpg.rf.a8aa31da2bf886f8336db6be8648d0e3.jpg", - "response": "A warehouse filled with lots of boxes stacked on shelves.", - "id": 10461 - }, - { - "image_path": "/content/drive/MyDrive/combined/1196686205_jpg_14_jpg.rf.cb95ab1eb2e0f6b74657c0cd96c0cdf1.jpg", - "response": "In the image, a woman wearing a red jacket and a mask walks with two children, also wearing masks. They are walking down a street, and there is a chair visible in the background. They are in front of a building with Chinese characters written on it. The woman is holding the hand of one of the children.", - "id": 10462 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288126-10255706714jpg_jpg.rf.3583efb4f8e9d71548f651fac12b2622.jpg", - "response": "Two women wearing protective masks(317,414),(448,562)(544,505),(654,634) stand in front of a shopping mall in Beijing, China.", - "id": 10463 - }, - { - "image_path": "/content/drive/MyDrive/combined/123_jpg.rf.7bae7780093c0105d5f4d4462739b3d5.jpg", - "response": "A single orange and white traffic cone on a white background.", - "id": 10464 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207531n_jpg.rf.c35e3997afff925936f41c5151e1672b.jpg", - "response": "A group of three people, all wearing protective face masks, are standing with their luggage at a train station. They are all looking at their cell phones.", - "id": 10465 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197620896_jpg.rf.da1e76bdf04fab1cfa373bcf7c5ba48a.jpg", - "response": "A family wearing face masks, with a father holding a young child and pushing a stroller with another child in it, are walking through a terminal.", - "id": 10466 - }, - { - "image_path": "/content/drive/MyDrive/combined/186_png.rf.9388932ebec6b4194a1a7cfdfc94681d.jpg", - "response": "A woman in a white dress and blue jeans is walking towards a black car.", - "id": 10467 - }, - { - "image_path": "/content/drive/MyDrive/combined/1280_jpg.rf.c63579222febd0139a0bd1c74c43a807.jpg", - "response": "A ladder is leaning against a truck.", - "id": 10468 - }, - { - "image_path": "/content/drive/MyDrive/combined/1104_jpg.rf.aabd41b3e7c9a03ee17eb35a1020bda0.jpg", - "response": "A person is kneeling down in the grass and is holding two traffic cones. They are standing on top of an orange and black box.", - "id": 10469 - }, - { - "image_path": "/content/drive/MyDrive/combined/1107_jpg.rf.0b805dfb0604c9ab87c767b5982efb7e.jpg", - "response": "A man with a shovel is standing in front of a pile of snow. The pile of snow is on the street and is very large. There is also a caution cone in the background.", - "id": 10470 - }, - { - "image_path": "/content/drive/MyDrive/combined/120712-F-EJ686-074_JPG_jpg.rf.aaed125c3c23b971d430c9a388fc7e20.jpg", - "response": "A construction crew is working on a road.", - "id": 10471 - }, - { - "image_path": "/content/drive/MyDrive/combined/1587_jpg.rf.c704f325433749420a809abdfa79d8f6.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10472 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322206131n_jpg.rf.51065846f646ec1667796dad7137d9be.jpg", - "response": "A young woman wearing a mask walks through a train station.", - "id": 10473 - }, - { - "image_path": "/content/drive/MyDrive/combined/1683_jpg.rf.868236e2d64c71dcbb95bcba71edeb6a.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10474 - }, - { - "image_path": "/content/drive/MyDrive/combined/1200_jpg.rf.e02a1affb8fd227cabf1cf8ad9a77a27.jpg", - "response": "A man is working on a ladder next to a pile of orange cones.", - "id": 10475 - }, - { - "image_path": "/content/drive/MyDrive/combined/125895-untitled-design-30_jpg.rf.29b361974350b30e601c3fca22cc40d0.jpg", - "response": "A crowd of people are walking down a moving sidewalk. They are all wearing white N95 face masks.", - "id": 10476 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207071n_jpg.rf.725eb5a772279de76afb529464dcf689.jpg", - "response": "In the image, there is a group of people walking through a airport hallway. They are all wearing white and blue face masks. There are several suitcases and a backpack in the scene, some of them are black and some are grey. Some people are carrying handbags. The people in the front are a family of four, the father is on the right, the mother is in the middle, the boy is in front of the mother and the grandmother is on the left. The boy is also carrying a blue bag on his back.", - "id": 10477 - }, - { - "image_path": "/content/drive/MyDrive/combined/185_png.rf.66e3d280d4f48c975ea420415d257fd6.jpg", - "response": "A man in a blue shirt and jeans is standing in front of a store.", - "id": 10478 - }, - { - "image_path": "/content/drive/MyDrive/combined/159_png.rf.789a8981750ea8280b1842500a6b6eba.jpg", - "response": "A man in a blue jacket is blowing leaves off a sidewalk.", - "id": 10479 - }, - { - "image_path": "/content/drive/MyDrive/combined/169_png.rf.fa3962f12bb73cedbe15f70e770bcb92.jpg", - "response": "A young ball girl hands a towel to Alexander Zverev of Germany between points during his match against Benoit Paire of France during day three of the 2019 Australian Open at Melbourne Park on January 17, 2019 in Melbourne, Australia.", - "id": 10480 - }, - { - "image_path": "/content/drive/MyDrive/combined/1611_jpg.rf.dbda39d4ffb425478a828d77a313cd3f.jpg", - "response": "A warehouse with tall shelves full of boxes.", - "id": 10481 - }, - { - "image_path": "/content/drive/MyDrive/combined/126202-untitled-design-13_jpg.rf.1522059f60a845cd64933fe647452038.jpg", - "response": "A group of people in uniform and wearing face masks.", - "id": 10482 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_png.rf.e4008d7ef5a870c4d0b8bc91dbe5c81f.jpg", - "response": "a person walking a dog", - "id": 10483 - }, - { - "image_path": "/content/drive/MyDrive/combined/1647_jpg.rf.5fbd762254a26f9f2de6a3fd8854a595.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10484 - }, - { - "image_path": "/content/drive/MyDrive/combined/168_png.rf.ddd5cfbf9e42dcedee8f81843306ce5a.jpg", - "response": "A man walking in a park with trees and a wooden floor.", - "id": 10485 - }, - { - "image_path": "/content/drive/MyDrive/combined/159_png.rf.1a4c960eccfa16156750975040f9e3ce.jpg", - "response": "A man standing next to a pile of trash.", - "id": 10486 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288_jpg.rf.8abebbc1aa3a92618a8976f21017171f.jpg", - "response": "A group of ladders sitting on top of a wooden floor.", - "id": 10487 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197315184_jpg_0_jpg.rf.76121ee35e951b027ee22005ac5846d9.jpg", - "response": "Passengers wearing protective face masks queue up at a check-in counter at the Hong Kong International Airport on February 1, 2020, as a preventative measure following a coronavirus outbreak which began in the Chinese city of Wuhan. - The death toll from a new coronavirus in China neared 300 on February 1 as authorities scrambled to contain the disease, while Japan reported its first death and Taiwan confirmed its first case. (Photo by Anthony WALLACE / AFP) (Photo by ANTHONY WALLACE/AFP via Getty Images)", - "id": 10488 - }, - { - "image_path": "/content/drive/MyDrive/combined/162_png.rf.1dd54ef5927046a7d78eff06590278b9.jpg", - "response": "A group of people standing around a park.", - "id": 10489 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288126-10255706714jpg_jpg.rf.352aa9b67affbdcf56ea3924139e8e76.jpg", - "response": "Two women wearing protective masks(316,414),(447,562)(542,505),(655,637) stand in front of a shopping mall in Beijing, China.", - "id": 10490 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197315184_jpg_0_jpg.rf.dab5aa49d5d10368fcb79ffba90ad503.jpg", - "response": "Passengers wearing protective face masks queue at a check-in counter at the Hong Kong International Airport on January 22, 2020, as a preventative measure following a coronavirus outbreak which began in the Chinese city of Wuhan. - The number of cases of a new coronavirus in China jumped to more than 400 on January 22, with the death toll rising to nine as authorities scrambled to contain the disease. (Photo by Anthony WALLACE / AFP) (Photo by ANTHONY WALLACE/AFP via Getty Images)", - "id": 10491 - }, - { - "image_path": "/content/drive/MyDrive/combined/168_png.rf.71c17874ff50afef2ba124fddc1a09d5.jpg", - "response": "A person walking in front of a wooden fence with a tree above them.", - "id": 10492 - }, - { - "image_path": "/content/drive/MyDrive/combined/1203_jpg.rf.5bd8569a4a2c80e14b636e2832da023c.jpg", - "response": "A red and white hazard cone laying on its side next to a silver ladder. The cone is on the ground and the ladder is leaning on it. The ladder is white and silver and the cone has a orange stripe. The ground is dirt and there are some rocks and a hole in the dirt. There is a pile of dirt in the background and a blue pipe laying horizontally in the dirt.", - "id": 10493 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_png.rf.85ee9e83dbb02ea3521db1091935e0a3.jpg", - "response": "A blurry image of a person in a black jacket and jeans holding a black purse.", - "id": 10494 - }, - { - "image_path": "/content/drive/MyDrive/combined/1155x768_20200129000089_jpg.rf.dc765fb5330b2d7bdfba3fa37da000b5.jpg", - "response": "The image shows a man in a red vest standing in front of a large stack of boxes. The man is wearing a blue mask and a red vest with the word \"Taiwan\" on it. He is making a V sign with his fingers.", - "id": 10495 - }, - { - "image_path": "/content/drive/MyDrive/combined/167_png.rf.55c2f5fcc903d5ac258638326cd7c88a.jpg", - "response": "A man is standing in a large room with a black top. He is wearing a black shirt and black pants. The room has a white wall and a black door. There is a black chair in the room.", - "id": 10496 - }, - { - "image_path": "/content/drive/MyDrive/combined/1273_jpg.rf.f944fdb7f1595037dbfe1105705f0233.jpg", - "response": "A red cone on a black rubber base.", - "id": 10497 - }, - { - "image_path": "/content/drive/MyDrive/combined/1246_jpg.rf.73a9980466c4cb7db62d06fb86113d93.jpg", - "response": "A row of orange and white traffic cones in front of a green building.", - "id": 10498 - }, - { - "image_path": "/content/drive/MyDrive/combined/125895-untitled-design-30_jpg.rf.6bd16a12a705db4eb442a275dfc13e34.jpg", - "response": "A crowd of people are walking down a moving sidewalk. They are all wearing white N95 face masks.", - "id": 10499 - }, - { - "image_path": "/content/drive/MyDrive/combined/179_png.rf.af0922fd81f0880f5a62bd52c0a7c8c1.jpg", - "response": "A man in a red hat is standing in a hallway.", - "id": 10500 - }, - { - "image_path": "/content/drive/MyDrive/combined/175_png.rf.7e68c5a97bd02931a9b8756d542152ab.jpg", - "response": "A group of people standing under a night sky full of stars.", - "id": 10501 - }, - { - "image_path": "/content/drive/MyDrive/combined/167_png.rf.78c298650568d987b8f72b61f041647e.jpg", - "response": "A rock with many cracks and lines on it.", - "id": 10502 - }, - { - "image_path": "/content/drive/MyDrive/combined/1202_jpg.rf.461fbbc5861c5819529006d8e9938109.jpg", - "response": "A silver ladder leans against two orange traffic cones.", - "id": 10503 - }, - { - "image_path": "/content/drive/MyDrive/combined/1707_jpg.rf.db6df6b11b57dcdd5c60b79981dc8c6e.jpg", - "response": "A large warehouse with boxes stacked on shelves.", - "id": 10504 - }, - { - "image_path": "/content/drive/MyDrive/combined/183_png.rf.14912d8abfaab23fa289eda5946c3615.jpg", - "response": "A person is sitting in a room with a green wall. The wall is covered in small white dots. The person is wearing a grey shirt and has a blue object in front of them.", - "id": 10505 - }, - { - "image_path": "/content/drive/MyDrive/combined/1101-001_APx_jpg.rf.a734b9c7edf2a19180b38aefbc2a5d93.jpg", - "response": "A man climbing a ladder against a white background", - "id": 10506 - }, - { - "image_path": "/content/drive/MyDrive/combined/1122_jpg.rf.59b1a83673d0a40144380b4aab02fe50.jpg", - "response": "A green cone on a black base", - "id": 10507 - }, - { - "image_path": "/content/drive/MyDrive/combined/120712-F-EJ686-090_JPG_jpg.rf.b9813680de4b6c88160ebcb5987e4080.jpg", - "response": "A man in a uniform is standing next to a dump truck that is unloading asphalt.", - "id": 10508 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_jpg.rf.3a49e59cbb657a14b99a3741a836dcf9.jpg", - "response": "A single orange cone with a reflective top sitting on a black base", - "id": 10509 - }, - { - "image_path": "/content/drive/MyDrive/combined/179_png.rf.3c486da694caff9c4e3b1b4f94cb851e.jpg", - "response": "A man wearing a red hat is standing in a room. The room is sparsely furnished with a chair and a table. The walls are concrete and the floor is covered in small black dots. There is a suitcase on the left side of the room and a second chair on the right side of the room.", - "id": 10510 - }, - { - "image_path": "/content/drive/MyDrive/combined/160_png.rf.a590068e6ee99699e9c002b9556c32de.jpg", - "response": "A man wearing a gray jacket and khaki pants is standing in a field of dirt. He is throwing an object, which is a black purse, into the field. The image is covered in specks of dust.", - "id": 10511 - }, - { - "image_path": "/content/drive/MyDrive/combined/1133x768_20200130000023_jpg.rf.7eb0968175bc7fc11ccec0dbe2888394.jpg", - "response": "\u53f0\u5317\u5e02\u9577\u67ef\u6587\u54f2(\u524d\u4e2d)10\u65e5\u524d\u5f80\u53f0\u5317\u5e02\u7acb\u806f\u5408\u91ab\u9662\u4ec1\u611b\u9662\u5340,\u8996\u5bdf\u793e\u5340\u7be9\u6aa2\u7ad9\u6e96\u5099\u60c5\u5f62\u3002\u4e2d\u592e\u793e\u8bb0\u8005\u738b\u98db\u83ef\u6444", - "id": 10512 - }, - { - "image_path": "/content/drive/MyDrive/combined/171_png.rf.4fb60fd70975a37c8453fa0207ff690c.jpg", - "response": "a man with a white hat and a white shirt", - "id": 10513 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fea_8011463765e2aa28b386cf_jpg.rf.3df5d2a5f4c076346a372caa23c55c17.jpg", - "response": "In the image, there is a girl wearing a white protective mask. She is of Asian ethnicity and has dark hair. She is wearing a white medical mask. To the right of her, there is a Dyson air purifier. It is a grey colour and has a stainless steel finish. It is a small triangular shape. To the right of the air purifier, there is a girl in a blue dress. She is kneeling on the floor and touching the air purifier with her right hand. There is a white round filter in the air purifier.", - "id": 10514 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_jpg.rf.2f40cbc6293205406bb5865b8386025b.jpg", - "response": "A large orange and white traffic cone in a garage.", - "id": 10515 - }, - { - "image_path": "/content/drive/MyDrive/combined/179_png.rf.2b48645ff4e21ffeb6c1293060ab87c5.jpg", - "response": "A man standing next to a pile of trash.", - "id": 10516 - }, - { - "image_path": "/content/drive/MyDrive/combined/166_png.rf.19ff467ce1e7940b1ba1f05bc11e84f6.jpg", - "response": "A blurry image of a street scene with a car and a house.", - "id": 10517 - }, - { - "image_path": "/content/drive/MyDrive/combined/119_jpg.rf.06d891025bbec841efda38131b2dbbb0.jpg", - "response": "A collapsible traffic cone with a black base and reflective orange and white stripes. It is sitting next to a black bag.", - "id": 10518 - }, - { - "image_path": "/content/drive/MyDrive/combined/176_png.rf.6bdccc88ddd2e544057582562955f3f5.jpg", - "response": "A woman standing behind a counter in a convenience store.", - "id": 10519 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207071n_jpg.rf.101098e7f4e0474fc7a62b389a796d3d.jpg", - "response": "In the image, there is a group of people walking through a airport hallway. They are all wearing light blue face masks, and some are carrying suitcases and bags. One person in the group is a child who is wearing a red shirt and a white and blue track suit. Another person in the group is wearing a grey shirt and glasses. Another person in the group is wearing a white shirt and a black face mask. They are all carrying various items such as a red bag, a black bag, a white bag, and a blue suitcase.", - "id": 10520 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_jpg.rf.c5caef4f539626654738a5f112696f97.jpg", - "response": "The image shows a street scene with a pothole filled with black mud. There are three traffic cones placed in the street, one in the middle and two on the right side. The cones are orange and white in color. The street is surrounded by buildings and there are two cars in the background. The image has a blue and white color scheme and is set during the day.", - "id": 10521 - }, - { - "image_path": "/content/drive/MyDrive/combined/169_png.rf.1f18a8f767c75662c1c7435ba155dd96.jpg", - "response": "A close up of a parking meter on a street.", - "id": 10522 - }, - { - "image_path": "/content/drive/MyDrive/combined/160_png.rf.1b4cf96582de3b0dbadd26719e746c6b.jpg", - "response": "A man throwing a black plastic bag into a field.", - "id": 10523 - }, - { - "image_path": "/content/drive/MyDrive/combined/1587_jpg.rf.33acc51a62f5a6aa96bae3a82b393219.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 10524 - }, - { - "image_path": "/content/drive/MyDrive/combined/1133x768_20200130000023_jpg.rf.63f5ab07bff3238a7246d76f3608ca44.jpg", - "response": "\u53f0\u5317\u5e02\u9577\u67ef\u6587\u54f2(\u524d\u4e2d)10\u65e5\u524d\u5f80\u677e\u5c71\u6a5f\u5834\u8996\u5bdf\u9632\u75ab\u5de5\u4f5c,\u5f37\u8abf\u76ee\u524d\u793e\u5340\u611f\u67d3\u98a8\u96aa\u4ecd\u9ad8,\u547c\u7c72\u5168\u6c11\u90fd\u8981\u505a\u597d\u9632\u75ab\u63aa\u65bd\u3002\u4e2d\u592e\u793e\u8bb0\u8005\u738b\u98db\u83ef\u651d 110\u5e741\u670810\u65e5", - "id": 10525 - }, - { - "image_path": "/content/drive/MyDrive/combined/11893820-3x2-xlarge_jpg.rf.d8da670ce22d9d5b95fa57b7c4efd2fd.jpg", - "response": "a large group of people wearing face masks(626,396),(729,507)(126,823),(273,997)(452,315),(561,423)(719,733),(810,850)(807,444),(883,531)(127,360),(223,462)", - "id": 10526 - }, - { - "image_path": "/content/drive/MyDrive/combined/1155x768_20200129000089_jpg.rf.52c86763fb97daf3f23e6d8e45f262ca.jpg", - "response": "The image shows a man in a red vest and a face mask standing in front of a large stack of boxes. The boxes are filled with more face masks. To the right of the man, there is a person wearing a face mask and a blue jacket. The person is waving. Another person wearing a black hat and a black jacket is taking a photo with a camera. In the background, there is a person wearing a white mask and a white shirt. The person is holding a box.", - "id": 10527 - }, - { - "image_path": "/content/drive/MyDrive/combined/159_png.rf.735eb36e00259f3f9709830e6c6779a3.jpg", - "response": "A man standing in front of a pile of trash.", - "id": 10528 - }, - { - "image_path": "/content/drive/MyDrive/combined/176_png.rf.0c21d3c533250e473ddcf4bd0b09fc27.jpg", - "response": "A man in a green shirt standing in front of a store filled with lots of items.", - "id": 10529 - }, - { - "image_path": "/content/drive/MyDrive/combined/184_png.rf.b6fe06cc1530838da9d6498ed41be77d.jpg", - "response": "A man and a woman sitting on a bench outside of a building.", - "id": 10530 - }, - { - "image_path": "/content/drive/MyDrive/combined/175_png.rf.675fe3e2e619e60b0e1f2f02eeee6d3b.jpg", - "response": "A picture of a very dark sky with many stars.", - "id": 10531 - }, - { - "image_path": "/content/drive/MyDrive/combined/1140-travelers-at-hong-kong-airport_jpg.rf.c02797de9ce555df150463b03e0a562f.jpg", - "response": "A family of three, a man, a woman, and a little girl, are walking through a busy airport terminal. They are all wearing white face masks to protect themselves from possible viruses. The little girl is in the middle of the group, wearing a black jacket and a white face mask. The woman is wearing a white jacket and a black mask. The man is on the right side of the group, wearing a white jacket and a white mask. He is pulling a large blue suitcase with a white pattern on it. The little girl is pulling a pink suitcase with a fish design on it. There are several other people in the background, some carrying suitcases and backpacks.", - "id": 10532 - }, - { - "image_path": "/content/drive/MyDrive/combined/16_png.rf.6974098cf9772fdc93779da262a2b41d.jpg", - "response": "A person standing next to a brown dog.", - "id": 10533 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_png.rf.5a9812761db91d8f2943ebfc5991b6d2.jpg", - "response": "A blurry image of a man in a black shirt standing in front of a yellow and black sign.", - "id": 10534 - }, - { - "image_path": "/content/drive/MyDrive/combined/1635_jpg.rf.63f5c0b3e93dbab19f0bf951e1e92033.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 10535 - }, - { - "image_path": "/content/drive/MyDrive/combined/169_png.rf.17e5ddc73f5688b013c821b04afb784b.jpg", - "response": "A man and a woman are playing tennis. The man is wearing a white and blue shirt and white shorts. He is holding a tennis racket in his right hand. The woman is wearing a red shirt and black shorts. She is crouching down and holding a tennis racket in her left hand. They are playing on a blue tennis court. There is a white KIA logo on the wall behind them. The crowd is made up of a few people in the stands and is not in focus. The image is sprinkled with water droplets.", - "id": 10536 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288126-10255706714jpg_jpg.rf.7cb5e54b97053b4eb47d94a87cc0266d.jpg", - "response": "two women wearing protective masks(318,415),(448,562)(543,506),(653,636) standing in front of a building", - "id": 10537 - }, - { - "image_path": "/content/drive/MyDrive/combined/174_png.rf.bf986953614edce6dc418d4fbab58fb7.jpg", - "response": "A man in a white suit standing on stage.", - "id": 10538 - }, - { - "image_path": "/content/drive/MyDrive/combined/1204_jpg.rf.dc527c085cdd36edd8cb2391e12e9438.jpg", - "response": "A street scene with a ladder and caution cones.", - "id": 10539 - }, - { - "image_path": "/content/drive/MyDrive/combined/1228_jpg.rf.319dce1d3cf039ec5e90ef01dbf93d51.jpg", - "response": " A man(431,284),(550,779) in a yellow jacket(432,332),(545,553) is climbing a ladder(490,4),(563,764).", - "id": 10540 - }, - { - "image_path": "/content/drive/MyDrive/combined/1599_jpg.rf.049ec80d572ec90d37d7558e2904ce8f.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 10541 - }, - { - "image_path": "/content/drive/MyDrive/combined/182_png.rf.da169f01636a8344fab97b57a167e3fb.jpg", - "response": "A black and white photo of a hallway with doors on the right and left side. There are two people in the hallway, one is a man wearing a white shirt and khaki shorts, the other is a woman wearing a white shirt and black pants. The man is walking away from the camera and the woman is looking at the door next to the man. There is a trash can in the hallway and a clock on the wall.", - "id": 10542 - }, - { - "image_path": "/content/drive/MyDrive/combined/1140-travelers-at-hong-kong-airport_jpg.rf.e43f723c0ea2917067f58f340b1104f0.jpg", - "response": "A family of three, a man, woman and child, are walking through an airport while wearing face masks and carrying matching luggage. The child is in the middle of the group and is wearing a pink and black jacket. The man is on the right and is wearing a black jacket and glasses. The woman is on the left and is wearing a white jacket and black pants. She is also carrying a handbag. They are all pulling their matching luggage behind them. The luggage has different designs on them but all three have the same color.", - "id": 10543 - }, - { - "image_path": "/content/drive/MyDrive/combined/1259_jpg.rf.8e6d68c9a615c4e22804b605eff17374.jpg", - "response": "A red and black traffic cone on a yellow ladder on a grey dock by the ocean.", - "id": 10544 - }, - { - "image_path": "/content/drive/MyDrive/combined/1196686205_jpg_14_jpg.rf.965a3757dd2b01b05fd6fdfd430bbe4d.jpg", - "response": "In the image, a woman wearing a red jacket and a mask walks with two children, also wearing masks. They are walking down a street, and there is a chair visible in the background. They are wearing different colored pajamas.", - "id": 10545 - }, - { - "image_path": "/content/drive/MyDrive/combined/120712-F-EJ686-053_JPG_jpg.rf.1590cb64a9f576032c8e8159e51cb0f1.jpg", - "response": "a man in a uniform is operating a caterpillar steam roller", - "id": 10546 - }, - { - "image_path": "/content/drive/MyDrive/combined/1247_jpg.rf.5da6c4c318dd2a0f865fb8e93a8e27a7.jpg", - "response": " A crowd(200,418),(997,995) gathered in front of a building.", - "id": 10547 - }, - { - "image_path": "/content/drive/MyDrive/combined/162_png.rf.4d54ada8ce0f63d0a6d252ceea58488d.jpg", - "response": "A group of people standing around a bench.", - "id": 10548 - }, - { - "image_path": "/content/drive/MyDrive/combined/178_png.rf.b9b786b84185768fe4e077c91aad7bdf.jpg", - "response": "A man is climbing a wall with holes in it. He is wearing a black shirt and is in the process of ascending the wall. The wall is covered in small holes.", - "id": 10549 - }, - { - "image_path": "/content/drive/MyDrive/combined/166_png.rf.09bb6f80dbf0aace8cda00cf26407ea4.jpg", - "response": "A squirrel is running across a sidewalk in a wooded area.", - "id": 10550 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_png.rf.a33b57dd49f744f3f37b0f42e1502bea.jpg", - "response": "A man in a white shirt and black shirt is holding a knife.", - "id": 10551 - }, - { - "image_path": "/content/drive/MyDrive/combined/160_png.rf.5e498601b4c7eef9147760bdbd11bfb1.jpg", - "response": "A cat walking on a sidewalk next to a tree.", - "id": 10552 - }, - { - "image_path": "/content/drive/MyDrive/combined/178_png.rf.b61f319961c16b5a2407320dca16cd5c.jpg", - "response": "A man in a suit standing in front of a construction site.", - "id": 10553 - }, - { - "image_path": "/content/drive/MyDrive/combined/1225_jpg.rf.06ad664e2b3fc890152bc3b73551aa76.jpg", - "response": "The image shows five colorful cones arranged in a white background. The cones are all different colors and are placed in a row. The colors of the cones are green, red, orange, blue, and yellow.", - "id": 10554 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574681914-9278362_jpg.rf.2d969cc1b329c7e0562ef2a7cc47d883.jpg", - "response": "A long row of boxes on wooden pallets are stacked against a wall.", - "id": 10555 - }, - { - "image_path": "/content/drive/MyDrive/combined/179_png.rf.23c95fd7977783225abb9456847e6e24.jpg", - "response": "A man standing next to a pile of trash.", - "id": 10556 - }, - { - "image_path": "/content/drive/MyDrive/combined/163_png.rf.079fbaaedd55fa11962615fd045e8860.jpg", - "response": "A man in a white shirt and blue hat is standing on a wooden bridge in the woods. He is holding a large black camera.", - "id": 10557 - }, - { - "image_path": "/content/drive/MyDrive/combined/1249493_jpg.rf.47c7524fa20782c83be4ee16afa52b92.jpg", - "response": "A busy street scene with people walking down the street. Many of them are wearing face masks. There are several cars on the street and a person is looking at their cell phone. There is a parking meter on the sidewalk and a handbag resting on the ground. There is also a bottle of water being carried by one of the people.", - "id": 10558 - }, - { - "image_path": "/content/drive/MyDrive/combined/174_png.rf.c0d61a221b460e53d0e99398db53fb98.jpg", - "response": "A man in a white suit standing on stage in front of a black curtain.", - "id": 10559 - }, - { - "image_path": "/content/drive/MyDrive/combined/185_png.rf.93c9ce35524f7a3178464ae9ea83da29.jpg", - "response": "A man is silhouetted against a sky background while holding a flag. The flag is red, white, and green and has a white star in the center of it. The man is standing in a puddle of water and there are many drops of water in the air around him. There is a car in the background and a person holding a camera.", - "id": 10560 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207071n_jpg.rf.914ce58f6780da5f6d300814dcbf5c4a.jpg", - "response": "In the image, there is a group of people walking through a airport hallway. They are all wearing white masks over their mouths and noses. The person in the front is carrying a black bag and a red bag. The person second from the left is carrying a black bag. The person on the right is carrying a white bag. There are two suitcases in the image, one on the left and one on the right.", - "id": 10561 - }, - { - "image_path": "/content/drive/MyDrive/combined/1152x768_246964803156_jpg.rf.1388c16c3f7a09641b5a48d04010833e.jpg", - "response": "The image shows a group of people walking through a train station. They are all wearing face masks. Some of them are carrying handbags and backpacks. The people are of different ages and are walking in different directions.", - "id": 10562 - }, - { - "image_path": "/content/drive/MyDrive/combined/1103_jpg.rf.7901fd722fe2a3f9b07142b6b0e88bbf.jpg", - "response": "In the image, a person is riding an inline roller skate between traffic cones on a street. The inline roller skate has yellow wheels and the person is wearing white roller skate shoes. The cones are arranged in a row and are spaced evenly apart. The skater is navigating through the cones and there are several other people in the background, some of them are also roller skating. The street is grey and the lighting is blue.", - "id": 10563 - }, - { - "image_path": "/content/drive/MyDrive/combined/161_png.rf.bfe7bbb04fa4378ff1d78f6fc6809c8e.jpg", - "response": "A group of people are sitting on a bench.", - "id": 10564 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322207531n_jpg.rf.70211d806f7859841a6d83f7f0e70a12.jpg", - "response": "The image shows three people standing near a building with luggage. They are all wearing face masks. The person on the left is a teenage boy wearing a black shirt and grey pants. The person in the middle is a young woman wearing a purple shirt and black pants. The person on the right is an older woman wearing a pink shirt and dark pink pants. She is also carrying a yellow shoulder bag. They all have cell phones in their hands and are looking at the screens. The teenage boy is also carrying a black backpack. There is a bench in the background on the left side of the image. On the right side of the image is a white and green poster board with a wooden frame. The bottom right corner has the number 8 in red.", - "id": 10565 - }, - { - "image_path": "/content/drive/MyDrive/combined/165_png.rf.039084aee41f0b0e413c9d97b8bc1a6b.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 10566 - }, - { - "image_path": "/content/drive/MyDrive/combined/185_png.rf.4ffc7535bca552c73b9055e0d7658ccb.jpg", - "response": "A man is holding a flag with a horse on it.", - "id": 10567 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_jpg.rf.f99436d8135b5b6c593fd7b9ed440d4b.jpg", - "response": "A man is holding a large orange and white traffic cone in front of his head.", - "id": 10568 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_jpg.rf.43e596863f3b6996d51823a438686664.jpg", - "response": "A single orange traffic cone on a black base.", - "id": 10569 - }, - { - "image_path": "/content/drive/MyDrive/combined/11893820-3x2-xlarge_jpg.rf.06122d2b861fee0ca6e432975c47f7f0.jpg", - "response": "A large group of people are shown walking through a busy street. Many of them are wearing white face masks. Some of the people are wearing winter clothes, such as hats and scarves.", - "id": 10570 - }, - { - "image_path": "/content/drive/MyDrive/combined/1611_jpg.rf.3561df7f44ab9bd3ebe5ba71a0c3e4cf.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There are also some racks and a conveyor belt.", - "id": 10571 - }, - { - "image_path": "/content/drive/MyDrive/combined/1274_jpg.rf.73e925a6ff132ce3fe718c4dc4b230b0.jpg", - "response": "A man is working on a plane in a hangar.", - "id": 10572 - }, - { - "image_path": "/content/drive/MyDrive/combined/1109_jpg.rf.f7d32efc586b54039a29996dd49ee27f.jpg", - "response": "A girl is jumping over yellow cones in a field.", - "id": 10573 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288788-une-employee-aide-des-voyageurs-en-provenance-de-chine-le-26-janvier-2020-a-l-aeroport-de-roissy_jpg.rf.7ae20212e4d33f651288da0eed6452f3.jpg", - "response": "Passengers wearing protective facemasks, goggles and gloves, amid concerns over the spread of the COVID-19 novel coronavirus, are seen at the departure hall of the airport in Paris on March 12, 2020. - France on March 12, 2020 announced new measures to fight the spread of the COVID-19 coronavirus, including the closure of all schools and universities, as well as the suspension of all public events. (Photo by Thomas SAMSON / AFP) (Photo by THOMAS SAMSON/AFP via Getty Images)", - "id": 10574 - }, - { - "image_path": "/content/drive/MyDrive/combined/1140-travelers-at-hong-kong-airport_jpg.rf.0cc164b2ca68e85ac6c659e42ceb03bd.jpg", - "response": "A family of three, a man, woman and child, are walking through an airport while wearing protective face masks. The child is in the middle of the group and is wearing a black jacket with a white shirt underneath. She has dark hair and is wearing a white mask. The man on the right is wearing a white mask and a navy blue jacket. He is also pulling a suitcase. The woman on the left is wearing a white mask and a black jacket with a zipper in the front. She is also pulling a suitcase. There are two suitcases being pulled, one on each side of the group. The one on the left has a pink cover on it and the one on the right has a blue cover on it.", - "id": 10575 - }, - { - "image_path": "/content/drive/MyDrive/combined/1250_jpg.rf.20e42f9f8868015ffc3b94ec58a2af39.jpg", - "response": "A step ladder is a type of ladder that has steps or platforms that are attached to the side of the ladder. It is designed to be used for reaching higher heights, such as on a roof or in a loft. The ladder is made of metal and has a silver color. It has a step on each rung, making it easier to climb up and down. The ladder is also equipped with a safety feature, which is the handle on the side. This handle is designed to provide a secure grip while climbing up and down the ladder.", - "id": 10576 - }, - { - "image_path": "/content/drive/MyDrive/combined/163_png.rf.efc60a2b280fe19a5b7b4cf5473a3942.jpg", - "response": "A man standing on a dirt road in the woods.", - "id": 10577 - }, - { - "image_path": "/content/drive/MyDrive/combined/1113_jpg.rf.28579e76ab6e02152c62c6cbf4067b6a.jpg", - "response": "A set of four orange traffic cones on a black base.", - "id": 10578 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322206581n_jpg.rf.31852ec5a035bafb3086ecc2bddd330d.jpg", - "response": "A woman is helping two children put on their masks.", - "id": 10579 - }, - { - "image_path": "/content/drive/MyDrive/combined/120712-F-EJ686-078_JPG_jpg.rf.ff8d35f9eda0776dbf7830c01ea033f4.jpg", - "response": "The image shows a group of men working together to spread asphalt on a dirt patch. They are using shovels to spread the asphalt and are wearing various pieces of equipment, including hats and gloves. There is a traffic cone placed in the foreground of the image.", - "id": 10580 - }, - { - "image_path": "/content/drive/MyDrive/combined/178_png.rf.82a767e6da0b2b94954c33aa613c3c99.jpg", - "response": "The image is a close up of a green cactus with yellow flowers. The cactus has many spikes and is surrounded by a white ring. The background is a blurry green and brown color.", - "id": 10581 - }, - { - "image_path": "/content/drive/MyDrive/combined/157_png.rf.46320c76bab10917ed32e4d8861fe3aa.jpg", - "response": "A man is sitting on the ground with a white ball in his hand.", - "id": 10582 - }, - { - "image_path": "/content/drive/MyDrive/combined/175_png.rf.bfb9f2244930c6b65f7f602081a82d1a.jpg", - "response": "A man wearing a white shirt with blue and red stripes on it.", - "id": 10583 - }, - { - "image_path": "/content/drive/MyDrive/combined/183_png.rf.81b15daf808101e3253abb8257b5b386.jpg", - "response": "A man with glasses is looking into a machine.", - "id": 10584 - }, - { - "image_path": "/content/drive/MyDrive/combined/1599_jpg.rf.62ad269e1697afb7d20b4b583d988cc4.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10585 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_jpg.rf.d9286f4de758c15eb7fe89c2ca365ea8.jpg", - "response": "A man holding a large orange and white cone.", - "id": 10586 - }, - { - "image_path": "/content/drive/MyDrive/combined/1707_jpg.rf.1bb404ae6facdfae75b87220cd129fc2.jpg", - "response": "A warehouse with a lot of boxes stacked on tall shelves.", - "id": 10587 - }, - { - "image_path": "/content/drive/MyDrive/combined/1647_jpg.rf.e8cb963112084f6d3a442e7638c43f1a.jpg", - "response": "A large warehouse with tall shelves and boxes stacked on them.", - "id": 10588 - }, - { - "image_path": "/content/drive/MyDrive/combined/1115_jpg.rf.717485538df4e16cdc15185a50e3cde9.jpg", - "response": "A vector illustration of a construction site with a crane, a bulldozer, a traffic cone, a ladder, a house, a road sign, a road, a building, and a person walking.", - "id": 10589 - }, - { - "image_path": "/content/drive/MyDrive/combined/165_png.rf.0e6adc191335c00f855151939539248b.jpg", - "response": "A group of young people with backpacks walking on a sidewalk.", - "id": 10590 - }, - { - "image_path": "/content/drive/MyDrive/combined/1140-travelers-at-hong-kong-airport_jpg.rf.c35d91c153ee2fa8f84accca7f384c91.jpg", - "response": "A family of three, a mother, a father, and a young daughter, are walking through a busy airport. They are all wearing white face masks to protect themselves from the coronavirus. The mother and daughter are carrying suitcases and are pulling the suitcases behind them. The father is pulling a suitcase as well and is walking behind the mother and daughter. There are several other people in the background, some with their own luggage. The airport has several signs and columns in the background.", - "id": 10591 - }, - { - "image_path": "/content/drive/MyDrive/combined/1249493_jpg.rf.08d41478c290ede5797bbe9b82a6506d.jpg", - "response": "A busy street scene with people walking down the street. There are several people wearing face masks, one person is carrying a bag of toilet paper. There are also several cars on the street.", - "id": 10592 - }, - { - "image_path": "/content/drive/MyDrive/combined/1114_jpg.rf.c840f6344c6b73aa98fcbfecf0910739.jpg", - "response": "The image shows three different sports practice drills. In the first drill, a child is kicking a soccer ball around orange cones on a grass field. In the second drill, a child is dribbling a basketball around orange cones on a basketball court. In the third drill, a child is hitting a hockey puck with a hockey stick around orange cones on a ice rink. The image also states that the cones can be used on any surface, not just on ice.", - "id": 10593 - }, - { - "image_path": "/content/drive/MyDrive/combined/171_png.rf.eb391bbd6fe1aae7528d9c572c76e65c.jpg", - "response": "A man wearing a white shirt and grey pants standing on a rock with a tree in the foreground.", - "id": 10594 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288788-une-employee-aide-des-voyageurs-en-provenance-de-chine-le-26-janvier-2020-a-l-aeroport-de-roissy_jpg.rf.46e5a7c3d83f74b05b9eb2c705407aa6.jpg", - "response": "Passengers wearing protective facemasks, goggles and gloves are seen at the check-in area at the departures terminal of the airport in Paris on March 11, 2020, as a preventative measure following a coronavirus COVID-19 outbreak. - France on March 11, 2020, confirmed 18 cases of coronavirus, as the number of infections worldwide surpassed 100,000. (Photo by Thomas SAMSON / AFP) (Photo by THOMAS SAMSON/AFP via Getty Images)", - "id": 10595 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288126-10255706714jpg_jpg.rf.22025ee2cb2bd5b8932b6a90b4ae765d.jpg", - "response": "Two women wearing protective masks(317,414),(447,560)(542,504),(655,633) stand in front of a shopping mall in Beijing, China.", - "id": 10596 - }, - { - "image_path": "/content/drive/MyDrive/combined/1297_jpg.rf.83caa1c0cd19028dc86b21390b1a7dd7.jpg", - "response": "A man is painting the ceiling of a large room. He is standing on a ladder and has a roller in his hand. The ladder is positioned in the center of the room and leads up to the man. There are two windows on the left side of the room and a railing on the second floor. The floor is covered in plastic and there are several paint cans on the floor. The walls of the room are painted blue and the ceiling is white.", - "id": 10597 - }, - { - "image_path": "/content/drive/MyDrive/combined/130624011830-malaysia-smog-students-horizontal-large-gallery_jpg.rf.8499863b38eaffdf09f4cfad06f18a14.jpg", - "response": "A group of people, mostly children, stand in a line wearing face masks. They are all wearing uniforms and the background shows a city skyline.", - "id": 10598 - }, - { - "image_path": "/content/drive/MyDrive/combined/131207-Z-VA676-061_JPG_jpg.rf.c9f95cc71078bbdae09a943ef3832d1a.jpg", - "response": "In the image there is a man wearing a helmet and safety gear while welding two pieces of metal together. He is using a welding tool to connect the metal and the arc from the tool is bright and visible. The man is also wearing a vest and can be seen in profile.", - "id": 10599 - }, - { - "image_path": "/content/drive/MyDrive/combined/1374_jpg.rf.9f646b428ee320933a3732d675240df5.jpg", - "response": "A man in a yellow vest is pulling a ladder with a red and white rope. The ladder is leaning against a brick wall. The man is also holding a green bag.", - "id": 10600 - }, - { - "image_path": "/content/drive/MyDrive/combined/198_png.rf.dd9f365bf6976d7392bd3f39e2f0f477.jpg", - "response": "The image is a photo of a person standing on a dirt road. The person is wearing a white shirt, black suspenders, blue jeans, and white tennis shoes. They are also carrying a black backpack. The person is tossing a white cup, which is in mid-air, towards the left side of the image. The cup has a black lid and a white sleeve. The background is a mix of green trees and a dirt road.", - "id": 10601 - }, - { - "image_path": "/content/drive/MyDrive/combined/215_png.rf.35448e3b5f58169fad51bae19479074b.jpg", - "response": "A person wearing a black coat is standing in a garage. They are pointing a black gun at something or someone outside of the frame. There are three cars parked around the person, with the person standing between the second and third car. The person is also standing near a wall and a trash can. The background is blurred out, with white dots scattered throughout the image.", - "id": 10602 - }, - { - "image_path": "/content/drive/MyDrive/combined/219_png.rf.dff7768183bb3addceccc5af73635649.jpg", - "response": "A person standing in a field with a truck in the background.", - "id": 10603 - }, - { - "image_path": "/content/drive/MyDrive/combined/15191235791_d7720a61dc_o_jpg.rf.e5726c3974b6206006331ffb0b2d3906.jpg", - "response": "a man standing in front of a large airplane on a runway.", - "id": 10604 - }, - { - "image_path": "/content/drive/MyDrive/combined/131207-Z-VA676-010_JPG_jpg.rf.4a002eb275a3d43e21b796f1e2d96a2c.jpg", - "response": "In the image there is a soldier wearing camo and headphones. They are operating a large piece of machinery. The soldier is in front of a large metal milling machine and is wearing safety glasses.", - "id": 10605 - }, - { - "image_path": "/content/drive/MyDrive/combined/221_png.rf.adbc4a4e7b3cd2657e4b55121074dbfc.jpg", - "response": "A man sitting down with a black shirt on.", - "id": 10606 - }, - { - "image_path": "/content/drive/MyDrive/combined/194_png.rf.5062e32b7ebfedf50b3f097d7deb2b2f.jpg", - "response": "A woman is standing in a street next to a pile of garbage. She is wearing a dress and has a scarf around her head. She is holding a handbag.", - "id": 10607 - }, - { - "image_path": "/content/drive/MyDrive/combined/198_png.rf.92cbbf020098f2d022d385cb4ddc00ad.jpg", - "response": "A man with a bald head and beard holding a cell phone.", - "id": 10608 - }, - { - "image_path": "/content/drive/MyDrive/combined/1498_jpg.rf.7c53c926e87373585af38f5d4af8eadd.jpg", - "response": "A ladder leaning against a wall.", - "id": 10609 - }, - { - "image_path": "/content/drive/MyDrive/combined/1325_jpg.rf.861c4754939f17313c487f78d9cd8cea.jpg", - "response": "A pair of orange and white traffic cones with a red and white striped barrier between them.", - "id": 10610 - }, - { - "image_path": "/content/drive/MyDrive/combined/1385_jpg.rf.8872e7088601808b01714134cf57224d.jpg", - "response": "A fire is coming out of a small shop on a street corner. The shop has a brown roof and a brown and orange striped awning. There is a ladder on the side of the building. The fire is coming out of the second floor of the building. There is a traffic light on the corner of the street. The street is empty aside from the firefigters. There is a fire hydrant on the corner of the street. There is a traffic sign on the corner of the street. There is a person standing in front of the shop.", - "id": 10611 - }, - { - "image_path": "/content/drive/MyDrive/combined/1446_jpg.rf.f3f9a8aec2c089a6bcedb0b4671d6a1a.jpg", - "response": "A parking lot with multiple emergency vehicles such as fire trucks and a bus. There are several people walking around the vehicles and a few umbrellas set up. The scene is quite busy with people and vehicles.", - "id": 10612 - }, - { - "image_path": "/content/drive/MyDrive/combined/216_png.rf.ebb5d78dab458f41f289152b7f71730b.jpg", - "response": "A man wearing a baseball cap and a black shirt is standing in front of a wall. He is holding a cell phone in his hand and looking at it. The wall behind him has writing on it. There is a bench and a handbag next to the man.", - "id": 10613 - }, - { - "image_path": "/content/drive/MyDrive/combined/19_png.rf.ec66b76ce6c58a0a992b96615aa28a94.jpg", - "response": "A grainy image of a man in a white shirt and black pants walking through a store.", - "id": 10614 - }, - { - "image_path": "/content/drive/MyDrive/combined/192_png.rf.9c928c191c8c54079ef88435b01a73cb.jpg", - "response": "a man standing in front of a building", - "id": 10615 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513321824spp815on8_jpg.rf.69cae627ac24ac03a8e5d63e446eea54.jpg", - "response": "In the image there is a group of people, among which a young man with blond hair and a black mask is walking in the middle of the airport. The young man is wearing a black jacket and a black T-shirt. The T-shirt has a black design with white and orange letters. The design features a mouth with the words \"I am not your father\" written around it. The young man is also wearing a silver necklace with a rectangular pendant. The blond young man seems to be walking towards the camera, his expression is not clear, possibly looking angry or tired.", - "id": 10616 - }, - { - "image_path": "/content/drive/MyDrive/combined/130307-F-NG595-016_JPG_jpg.rf.08cd568ce3675c9714868ae3656cd7be.jpg", - "response": " Two men(253,304),(339,713)(360,290),(490,687) stand next to a bulldozer(599,93),(997,711) digging a hole in the ground", - "id": 10617 - }, - { - "image_path": "/content/drive/MyDrive/combined/224_png.rf.a305491854049cb6b40ab0faeca89074.jpg", - "response": "A couple of people standing under a tent.", - "id": 10618 - }, - { - "image_path": "/content/drive/MyDrive/combined/210_png.rf.9a3df7ab4bd299dd86b653e69d1f919f.jpg", - "response": "In the image, a person is standing on a street holding a tennis racquet. The person is wearing a red and black flannel shirt, blue jeans, and black shoes. The street is grey and the person is standing on it. There are trees in the background, with some located near the person and others further in the distance. The sky is overcast and appears grey.", - "id": 10619 - }, - { - "image_path": "/content/drive/MyDrive/combined/1441_jpg.rf.f841e7f434138e24a1681fd8a068cbd6.jpg", - "response": "In the image there is a person wearing a black tank top and black shorts, standing in a gym. They are wearing black shoes and have their hands at their sides. They are in the middle of a cone course, with four yellow cones set up in a line in front of them. To the right of the person is a weight bench and a tire, and to the left are two benches. The room has two large windows on the far wall and a white floor.", - "id": 10620 - }, - { - "image_path": "/content/drive/MyDrive/combined/214_png.rf.e164709d833682086a748993f80f0da8.jpg", - "response": "a woman in a black dress is walking through a store", - "id": 10621 - }, - { - "image_path": "/content/drive/MyDrive/combined/1483800496-3386248642_jpg.rf.e2d10f37b0b9e4e9e9cbfea11c7cf12c.jpg", - "response": "A collage of photos showing children and adults wearing Cambridge Mask Co. Cambridge Mask Co. logo is in the top right corner. The bottom left photo is a close up of a bag with a black and red mask on it. The top right photo is of a woman holding a small box with a mask in it. The bottom right photo is of a child sitting on a playground slide wearing a black mask with a red heart on it.", - "id": 10622 - }, - { - "image_path": "/content/drive/MyDrive/combined/216_png.rf.93985029232abaeb92c9046e2ce1afc9.jpg", - "response": "A man standing in front of a building.", - "id": 10623 - }, - { - "image_path": "/content/drive/MyDrive/combined/15-08608-001_jpg.rf.fb3fa9ce3d9d36c0f8cc82fdc0415621.jpg", - "response": "In the image, there are four people wearing protective masks. They are walking together and carrying various items. There are two handbags and a suitcase among the items being carried. The people are wearing jackets, with one person wearing a black one and the other wearing a yellow one. Another person is wearing a white jacket. There are also two pairs of glasses being carried, one on the left person and the other on the right person. The left person is also wearing a white jacket. The background is a white wall with numerous signs on it.", - "id": 10624 - }, - { - "image_path": "/content/drive/MyDrive/combined/225_png.rf.3320531bf58fb2088ef87604303de225.jpg", - "response": "A bird standing on a branch with a lot of small dots all over the image.", - "id": 10625 - }, - { - "image_path": "/content/drive/MyDrive/combined/135_jpg.rf.e201d413a6bef3e389f5b07b6a14b735.jpg", - "response": "A bunch of orange traffic cones stacked on black plastic holders.", - "id": 10626 - }, - { - "image_path": "/content/drive/MyDrive/combined/217_png.rf.4ec2901b04e6f62ea045d45c80fcf97c.jpg", - "response": "A man in a white shirt and blue pants is standing in front of a white wall.", - "id": 10627 - }, - { - "image_path": "/content/drive/MyDrive/combined/150624-F-LP903-482_JPG_jpg.rf.0d574821b8f2ea71affebc095c7fb171.jpg", - "response": "a construction worker operating a crane", - "id": 10628 - }, - { - "image_path": "/content/drive/MyDrive/combined/218_png.rf.63fbd3def570fab9a00a4fa53b53527b.jpg", - "response": "A close up of a gold glittery background with a few small lights.", - "id": 10629 - }, - { - "image_path": "/content/drive/MyDrive/combined/131207-Z-VA676-019_JPG_jpg.rf.ceebb493f218839b77f97c1db2fefc9f.jpg", - "response": "A man in a military uniform is working on a cell phone.", - "id": 10630 - }, - { - "image_path": "/content/drive/MyDrive/combined/198_png.rf.3459c00736033a4978115e16ae262f7f.jpg", - "response": "The image features a person wearing a white shirt, black leather jacket and blue jeans standing on a dirt path in a forest. The person is tossing an object in the air, which appears to be a white sock. The person is positioned on the left side of the image and the dirt path is in the foreground. The forest setting is evident with green trees surrounding the path.", - "id": 10631 - }, - { - "image_path": "/content/drive/MyDrive/combined/150729-F-JZ707-031_JPG_jpg.rf.90d27315f528ab910bf754add14ac137.jpg", - "response": "A group of men standing under a canopy in the woods.", - "id": 10632 - }, - { - "image_path": "/content/drive/MyDrive/combined/202_png.rf.fe79502d56b46344bb786d44ea16df24.jpg", - "response": "A man standing in front of a building.", - "id": 10633 - }, - { - "image_path": "/content/drive/MyDrive/combined/205_png.rf.5a5408f9a425c7d0360c7970e167c9db.jpg", - "response": "A police officer is seen on a city street.", - "id": 10634 - }, - { - "image_path": "/content/drive/MyDrive/combined/217_png.rf.31a6be2a7ab43855b2e6af0a3d8a4bc7.jpg", - "response": "A person in blue scrubs standing in a kitchen.", - "id": 10635 - }, - { - "image_path": "/content/drive/MyDrive/combined/135e-huxwryw6451820_jpg.rf.04cbf44a8873ea2ea3c6f4c2ef122105.jpg", - "response": "An Asian man with black hair and black glasses is wearing a black mask over his mouth. He is also wearing a black shirt and a blue jacket. He is on an airport screen.", - "id": 10636 - }, - { - "image_path": "/content/drive/MyDrive/combined/220_png.rf.142a040209c58399144c77aae463bf61.jpg", - "response": "a man standing on a porch holding a box", - "id": 10637 - }, - { - "image_path": "/content/drive/MyDrive/combined/142_jpg.rf.79a2ec8ea8d1ec3f2cae46da22529a79.jpg", - "response": "A row of three traffic cones sitting on the street.", - "id": 10638 - }, - { - "image_path": "/content/drive/MyDrive/combined/224_png.rf.97d0ec9af2815bc0ad78afc1ffc3ba27.jpg", - "response": "A woman in a white shirt is walking next to a police officer.", - "id": 10639 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513324714o1n0r10n6_jpg.rf.67c8a12f24437d8a928d1abf02b03bb4.jpg", - "response": "The 27-year-old\u97e9\u661f\u674e\u6d19\u8d6b\u8eab\u7a7f\u9ed1\u8272T\u6064\u5185\u642d\uff0c\u642d\u914d\u9ed1\u8272\u5916\u5957\uff0c\u9ed1\u8272\u88e4\u5b50\uff0c\u5934\u6234\u9ed1\u8272\u53e3\u7f69\uff0c\u624b\u62ff\u9ed1\u8272\u884c\u674e\u7bb1\uff0c\u6574\u4f53\u9020\u578b\u975e\u5e38\u5e05\u6c14\uff0c\u673a\u573a\u8def\u4e0a\u7684\u4ed6\u4e00\u8def\u7709\u5934\u6df1\u9501\uff0c\u795e\u60c5\u4e25\u8083\uff0c\u4f3c\u4e4e\u6709\u4e9b\u75b2\u60eb\u3002", - "id": 10640 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_png.rf.b6158fc0c2c67577d187a2d1c3e3a968.jpg", - "response": "A man standing on a street corner with his hands crossed.", - "id": 10641 - }, - { - "image_path": "/content/drive/MyDrive/combined/212_png.rf.e2d7fbe361f17c5f32e7c8b7f83cb259.jpg", - "response": "A man wearing a black jacket and black pants is standing on a sidewalk. He is holding a gun and appears to be pointing it at someone off camera. The person being pointed at is also holding a gun. There are several other people on the sidewalk, some of whom are closer to the man with the gun and some of whom are further away. In the background, there is a car parked on the street.", - "id": 10642 - }, - { - "image_path": "/content/drive/MyDrive/combined/138_jpg.rf.2d2db513b95d60eec8f6f61d3350757a.jpg", - "response": "A pair of orange traffic cones sitting next to each other.", - "id": 10643 - }, - { - "image_path": "/content/drive/MyDrive/combined/140226-M-TH017-079_JPG_jpg.rf.4799745f82f4c8e9231d0a6fd935b59b.jpg", - "response": "a construction worker wearing a yellow hard hat and orange vest standing in front of a dirt hill", - "id": 10644 - }, - { - "image_path": "/content/drive/MyDrive/combined/1482202839575_jpg.rf.6621555d5bd3dae28ba8abdfcd544b9e.jpg", - "response": "A woman wearing a mask walks through a park in Beijing, China. She is wearing a red jacket and has short black hair. To her left is another woman, also wearing a red jacket, who is not wearing a mask. In front of them are several bicycles, including one that is propped up with its kickstand. There are also several people walking around, some of whom are wearing masks. The air is hazy and the sky is gray.", - "id": 10645 - }, - { - "image_path": "/content/drive/MyDrive/combined/202_png.rf.23a71449f65f6dd184a5a92d1af23003.jpg", - "response": "A man and a woman standing outside a building.", - "id": 10646 - }, - { - "image_path": "/content/drive/MyDrive/combined/213_png.rf.b1b6259e1836520cf65c98774b277995.jpg", - "response": "A man wearing a black jacket and white beanie hat is standing in a alleyway. He is looking down and has his hands in his pockets. There is a bike to his left.", - "id": 10647 - }, - { - "image_path": "/content/drive/MyDrive/combined/204_png.rf.2222e884b16aa4a72ab17e572bd624c7.jpg", - "response": "A person standing in a room, in front of a window. They are wearing a grey shirt and have their arms crossed.", - "id": 10648 - }, - { - "image_path": "/content/drive/MyDrive/combined/196_png.rf.0758ccc3a4d5093b13ef5c7773cfea54.jpg", - "response": "A man in a red shirt and jeans is walking through a door. He is wearing a face mask and carrying a black backpack. The image is grainy and there is a glare on the glass.", - "id": 10649 - }, - { - "image_path": "/content/drive/MyDrive/combined/205_png.rf.69b7781f465bcb83d09abe33a6ab0069.jpg", - "response": "A police officer standing on the sidewalk with a cell phone in his hand.", - "id": 10650 - }, - { - "image_path": "/content/drive/MyDrive/combined/188_png.rf.9a2cf71fe45259a24a5dbd1b309547e6.jpg", - "response": "A man wearing a red and black jacket is standing in a store.", - "id": 10651 - }, - { - "image_path": "/content/drive/MyDrive/combined/1422808187-3291816118_jpg.rf.e55f0ce5d4f4d18231aafe8e28eb4e35.jpg", - "response": "In the image, there is a child wearing a blue mask with a pattern on it. The child is also wearing a black shirt and has their arms crossed in front of a pink and white background.", - "id": 10652 - }, - { - "image_path": "/content/drive/MyDrive/combined/195_png.rf.daa22357bf487ca763eec399f35026f8.jpg", - "response": "A man and a little girl walking through a store.", - "id": 10653 - }, - { - "image_path": "/content/drive/MyDrive/combined/18_png.rf.49c9e9c856ec32a20d86376e09557801.jpg", - "response": "A blurry image of a person walking through a lobby.", - "id": 10654 - }, - { - "image_path": "/content/drive/MyDrive/combined/130624011830-malaysia-smog-students-horizontal-large-gallery_jpg.rf.d2ca72b117ef44af19db21b8a2c55893.jpg", - "response": "A group of people, including students wearing face masks, stand in a line on a sidewalk. They are all wearing face masks and are looking in the same direction. In the background, there are buildings shrouded in smog.", - "id": 10655 - }, - { - "image_path": "/content/drive/MyDrive/combined/19_png.rf.95fe389d9812bfd1047050381915af82.jpg", - "response": "A man with a white face mask is standing in a store.", - "id": 10656 - }, - { - "image_path": "/content/drive/MyDrive/combined/1482202839575_jpg.rf.9700a6a496165a52ddabeecd539d79fe.jpg", - "response": "A woman wearing a mask walks with another woman on a foggy day in China. There are several bicycles and a few people in the scene.", - "id": 10657 - }, - { - "image_path": "/content/drive/MyDrive/combined/188_png.rf.cddba37fac76e5cea39e780357ab158a.jpg", - "response": "A man in a grey hoodie is walking out of a store.", - "id": 10658 - }, - { - "image_path": "/content/drive/MyDrive/combined/204_png.rf.cb09cf776ae4afea6fed776ab90a5e52.jpg", - "response": "A man is standing in a room with a window. He is wearing a blue shirt and has a beard. He is holding a cell phone in his hand.", - "id": 10659 - }, - { - "image_path": "/content/drive/MyDrive/combined/192_png.rf.ccdfcb2c50de0195b1bd911dd0cb3ded.jpg", - "response": "A blurry image of a kitchen with a sink, microwave, oven, and dining table. There is a person in the kitchen, wearing a white shirt and black pants. The image is covered in water droplets.", - "id": 10660 - }, - { - "image_path": "/content/drive/MyDrive/combined/209_png.rf.470895b8245f205cef8d03b114cd29c8.jpg", - "response": "A group of men in suits standing in a room.", - "id": 10661 - }, - { - "image_path": "/content/drive/MyDrive/combined/209_png.rf.8391bda46ff7045b67a5e571aeb818e7.jpg", - "response": "a group of men in suits standing around talking", - "id": 10662 - }, - { - "image_path": "/content/drive/MyDrive/combined/197_png.rf.bbecd3e2e196c4178a90441f949d6ee8.jpg", - "response": "A woman in a purple shirt standing on a beach.", - "id": 10663 - }, - { - "image_path": "/content/drive/MyDrive/combined/209_png.rf.fe250d5eb87501dce8e56ccca6b71d28.jpg", - "response": "a woman with long brown hair holding a round blue object while standing in falling snow", - "id": 10664 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513324714o1n0r10n6_jpg.rf.eee6a04fc4abb1da9afaca85f0262eea.jpg", - "response": "The 27-year-old\u97e9\u661f\u674e\u5f18\u57fa\u6234\u7740\u53e3\u7f69,\u7a7f\u7740\u9ed1\u8272\u7684\u68c9\u670d\u548c\u88e4\u5b50\uff0c\u4e00\u53ea\u624b\u63d2\u515c\uff0c\u4e00\u53ea\u624b\u62ff\u7740\u7bb1\u5b50\uff0c\u4fa7\u8138\u770b\u4e0a\u53bb\u5f88\u662f\u5e05\u6c14\u3002", - "id": 10665 - }, - { - "image_path": "/content/drive/MyDrive/combined/13985536214341_jpg.rf.e39b98ce88582e13f3059adf2cf306a5.jpg", - "response": " several people(380,79),(965,997)(821,314),(997,997)(1,89),(373,988) wearing hard hats(585,75),(852,332)(829,314),(995,491)(2,88),(320,456) and safety vests(428,502),(903,997)(826,586),(997,997)(2,637),(363,997) standing in front of a construction site", - "id": 10666 - }, - { - "image_path": "/content/drive/MyDrive/combined/136_jpg.rf.e3d60ceca863281c34447eebcb6f2e76.jpg", - "response": "A pair of orange and white traffic cones with a orange and white bar in between them.", - "id": 10667 - }, - { - "image_path": "/content/drive/MyDrive/combined/228_png.rf.4186750c4aa81a7ac8b7a8b934f687dc.jpg", - "response": "A blurry image of a store with a woman standing at the cash register.", - "id": 10668 - }, - { - "image_path": "/content/drive/MyDrive/combined/131207-Z-VA676-002_JPG_jpg.rf.7cf10bff406176ff4eb20b527465d795.jpg", - "response": "A man in military uniform wearing headphones and protective glasses is looking at a piece of machinery.", - "id": 10669 - }, - { - "image_path": "/content/drive/MyDrive/combined/141122-N-ZZ999-001_JPG_jpg.rf.8f1139e71db1d770873d49d76365d7eb.jpg", - "response": "The ship's sponsor, Mrs. Susan J. Berenger, watches as a welder from Huntington Ingalls Industries (HII) Newport News Shipbuilding division completes the first weld on the flight deck of the future USS Washington (SSN 787).", - "id": 10670 - }, - { - "image_path": "/content/drive/MyDrive/combined/135e-huxwryw6451820_jpg.rf.3d361db8066c9a6fc8fd86c7020754f6.jpg", - "response": "An Asian man with black hair and black glasses is wearing a black mask over his mouth. He is also wearing a black shirt and a blue jacket. He is at an airport and there is another person partially visible to the left of him.", - "id": 10671 - }, - { - "image_path": "/content/drive/MyDrive/combined/1477443223-1445746883_jpg.rf.59e6c27e1e1aa2b2662223c0c279ef5a.jpg", - "response": "A collage of two photos, one with a child wearing a bicycle helmet and Vogmask, and the other with a man wearing Vogmask.", - "id": 10672 - }, - { - "image_path": "/content/drive/MyDrive/combined/194_png.rf.3dc6c6586da9a0fc8f3e938e9af13614.jpg", - "response": "The image is a close up of a shower head with a dirty film on it. The shower head is made of clear plastic and has a series of small holes in it. The holes are filled with black specks and the film covering the shower head is a dirty grey.", - "id": 10673 - }, - { - "image_path": "/content/drive/MyDrive/combined/1358_jpg.rf.24d289fedd124f282eaaecac64714428.jpg", - "response": "A ladder that is silver in color.", - "id": 10674 - }, - { - "image_path": "/content/drive/MyDrive/combined/130829-F-XB934-002_JPG_jpg.rf.d023cd8f5afaa59d9979cdbc94096ca5.jpg", - "response": "A large machine is working on a road.", - "id": 10675 - }, - { - "image_path": "/content/drive/MyDrive/combined/1357_jpg.rf.3fc0a6458fb4203709a1a86d978fac23.jpg", - "response": "A ladder that is standing up against a wall.", - "id": 10676 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_png.rf.f00eb4ec85bee832b419c4b86802caf2.jpg", - "response": "a man standing in a room with a chair and a table", - "id": 10677 - }, - { - "image_path": "/content/drive/MyDrive/combined/187_png.rf.d17ae862743ffa35ee94c6b248cdb3e0.jpg", - "response": " A police officer(78,155),(393,931) is seen in a still from a security camera.", - "id": 10678 - }, - { - "image_path": "/content/drive/MyDrive/combined/203_png.rf.0b3e2002dee4e30fb5b92a9c69dfac3d.jpg", - "response": "a person wearing a black tank top and blue jeans holding a black purse and wearing black sandals", - "id": 10679 - }, - { - "image_path": "/content/drive/MyDrive/combined/189_png.rf.d501493efb247ecca295f17f640d78cc.jpg", - "response": "A man in black clothes is running down a sidewalk.", - "id": 10680 - }, - { - "image_path": "/content/drive/MyDrive/combined/1345_jpg.rf.bdbf0b5059c59521e581c78b168c8ee9.jpg", - "response": "A ladder leaning against a wall with a safety cage around it.", - "id": 10681 - }, - { - "image_path": "/content/drive/MyDrive/combined/201_png.rf.64042c5903e0243a26f2847caa9d6c42.jpg", - "response": "A blurry image of a man sitting on a toilet.", - "id": 10682 - }, - { - "image_path": "/content/drive/MyDrive/combined/1483800496-3386248642_jpg.rf.166d9ed1753c6b36ce3419e9dd78710c.jpg", - "response": "A collage of photos showing children and adults wearing Cambridge Mask Co. masks.", - "id": 10683 - }, - { - "image_path": "/content/drive/MyDrive/combined/1539151332674193npsrq70_jpg.rf.000d498464270532904bc5cb7f1b381f.jpg", - "response": "The picture shows a man in a black outfit at an airport. He is wearing a black mask, black jacket, black shoes, and a black and orange shirt. He has blonde hair and is carrying a black bag. The background is a white ceiling with lights.", - "id": 10684 - }, - { - "image_path": "/content/drive/MyDrive/combined/140_jpg.rf.c1fc724add0f52beefac396e5a00efce.jpg", - "response": "A man holding a large orange and white traffic cone in a storage room.", - "id": 10685 - }, - { - "image_path": "/content/drive/MyDrive/combined/139_jpg.rf.069e54f752907e5d0a931da9d263eea0.jpg", - "response": "A man holding a large orange and white traffic cone.", - "id": 10686 - }, - { - "image_path": "/content/drive/MyDrive/combined/140620-F-VV898-275_JPG_jpg.rf.dbd1daa583bcf6a809137b0cc70ca3de.jpg", - "response": "In the image two men are working on an air force tarmac. One man is wearing a grey shirt and camo shorts and is holding a hose. The other man is wearing a green shirt and is pulling a cart with a concrete cutter on it.", - "id": 10687 - }, - { - "image_path": "/content/drive/MyDrive/combined/15150794626913_jpg.rf.596e79451f87e09dc00a0f5913f48678.jpg", - "response": "The image shows a woman in a grey sweatshirt with the letter \u00a0N on it, wearing a black face mask, being led away by police. She is being pushed by a police officer on her right. There are several other people in the image, some of whom are also wearing face masks. The woman in the grey sweatshirt has her hands cuffed behind her back. There are several cameras pointed at the woman, and a camera lens is visible in the top left corner of the image. The woman is being led out of a building.", - "id": 10688 - }, - { - "image_path": "/content/drive/MyDrive/combined/223_png.rf.9a13dcaf5ed337ce185f3bea01557ea8.jpg", - "response": "A black and white photo of a man's face.", - "id": 10689 - }, - { - "image_path": "/content/drive/MyDrive/combined/219_png.rf.e0f07c643b6c8539f503651a75fa76d8.jpg", - "response": "A person standing in a field with a helicopter flying above.", - "id": 10690 - }, - { - "image_path": "/content/drive/MyDrive/combined/228_png.rf.ae9ff3e811488e0f43c9670347e54920.jpg", - "response": "A blurry image of a store with a woman standing at the counter. The woman is wearing a black jacket and has blonde hair. She is holding a black purse. There is a man standing behind the counter. He is wearing a black hat and has a beard. He is also holding a black purse. There are several bottles on the counter. One is green and white, one is yellow and red, and one is blue and white. There are also two cell phones on the counter. One is an iPhone, and the other is a Samsung phone. There is a TV on the wall above the counter.", - "id": 10691 - }, - { - "image_path": "/content/drive/MyDrive/combined/130829-F-XB934-001_JPG_jpg.rf.6a041256975693a91570f1882fcdb3f4.jpg", - "response": "A man and woman wearing hard hats and reflective vests stand in front of a hole in the ground.", - "id": 10692 - }, - { - "image_path": "/content/drive/MyDrive/combined/19_png.rf.35a89c1d57baf3da84c1a3dfd2bac8c9.jpg", - "response": "A man is seen in a grainy security camera image. He is wearing a white shirt and black shorts. He is seen walking in a store.", - "id": 10693 - }, - { - "image_path": "/content/drive/MyDrive/combined/1477443223-1445746883_jpg.rf.9b272ea3b9bc1a33aa75466f53939f7b.jpg", - "response": "In the image there are two people, one on the left wearing a blue and yellow bicycle helmet and a black mask with blue squares on it, and on the right a man wearing glasses and a black mask with white squares on it. They are both standing outside. To the left of the image there is a yellow and white building and a bicycle with a small boy on it.", - "id": 10694 - }, - { - "image_path": "/content/drive/MyDrive/combined/15-08608-001_jpg.rf.7ea80d21caee1e5761b1bc1b596e2859.jpg", - "response": "In the image, there are four people walking together. They are all wearing black, yellow, and white clothing. The two people on the left side of the image are carrying a white bag and a black handbag. The two people on the right side of the image are carrying a white suitcase and a black handbag. They are all wearing black, yellow, and white clothing. The people are of different heights and are walking in the same direction.", - "id": 10695 - }, - { - "image_path": "/content/drive/MyDrive/combined/189_png.rf.45a58946f7311e2302cbe73bdf8d5636.jpg", - "response": "A blurry image of a person walking down a sidewalk next to a tree.", - "id": 10696 - }, - { - "image_path": "/content/drive/MyDrive/combined/1303078448-China-Coronavirus-Death-Toll-Hits-304_jpg.rf.62f5ba145ae8d13a3a2e93cd998f5e4f.jpg", - "response": "In the image, there is a person wearing a white mask and a white jacket. They are sitting in front of a red wall with yellow Chinese characters on it. The person is also wearing a grey hat.", - "id": 10697 - }, - { - "image_path": "/content/drive/MyDrive/combined/15150794626913_jpg.rf.b3c62585cc318848c560a63569037bf8.jpg", - "response": "The image shows a woman in a grey sweatshirt with the letter U on it, wearing a black face mask. She is flanked by several people, some of whom are also wearing face masks. The woman is being led away by police officers, who are also wearing face masks. There are several cameras pointed at the woman and the police officers, capturing the scene. Some of the people around her are holding cell phones, and there is a handbag on the left side of the image.", - "id": 10698 - }, - { - "image_path": "/content/drive/MyDrive/combined/222_png.rf.bbd590f50ef8fed7cf30abf6dd775662.jpg", - "response": "A man in a yellow shirt running on a beach.", - "id": 10699 - }, - { - "image_path": "/content/drive/MyDrive/combined/13aa52ce5f09075331ee4c5310db7048_jpg.rf.3ff10bb29408f17cc6c9a676bb4d307a.jpg", - "response": "A man in blue overalls is on a yellow ladder, working on insulation in a room. The walls are a combination of brick and insulation, and the man is working on the insulation.", - "id": 10700 - }, - { - "image_path": "/content/drive/MyDrive/combined/1439_jpg.rf.9ea62b72f014b99f394dcb50350ad241.jpg", - "response": "A trailer with the door open and a ladder next to it.", - "id": 10701 - }, - { - "image_path": "/content/drive/MyDrive/combined/15-08608-001_jpg.rf.284a281b00fa4c5c81d5d17f8a3f8388.jpg", - "response": "In the image, there are four people wearing face masks. They are walking together and carrying various items. There are two handbags visible, one on the left side of the image and the other on the right side. There are also two suitcases, one on the left side of the image and the other on the right side. In the background, there is a wall with writing on it. The writing is in English and appears to be a directory for an airport.", - "id": 10702 - }, - { - "image_path": "/content/drive/MyDrive/combined/15194265605_9324dc744a_o_jpg.rf.d278485b0fd47ff1f5ed7a8451750450.jpg", - "response": "A man in military uniform is standing on a runway with his hands raised. There are two fighter jets on the runway, one on the left and one on the right. The man is standing in front of the right jet. There is a mountain visible in the background.", - "id": 10703 - }, - { - "image_path": "/content/drive/MyDrive/combined/130624011830-malaysia-smog-students-horizontal-large-gallery_jpg.rf.ead6f3462a2e07b1480c9cdeb33ee668.jpg", - "response": "The image shows a group of people, specifically a group of school children, standing in a line. They are all wearing face masks, and the masks come in different colors such as white, green, and blue. The people are standing on a sidewalk, and the background shows a cityscape with tall buildings.", - "id": 10704 - }, - { - "image_path": "/content/drive/MyDrive/combined/130624011830-malaysia-smog-students-horizontal-large-gallery_jpg.rf.b51df843cc0c92a898fe90d1ca41d645.jpg", - "response": "A group of people, including students wearing face masks, stand in a line in front of a city skyline. They are all wearing face masks.", - "id": 10705 - }, - { - "image_path": "/content/drive/MyDrive/combined/1539151332674193npsrq70_jpg.rf.1a253a75114b4a66fcf20d262918ed24.jpg", - "response": "The picture shows a man in a black outfit at an airport. He is wearing a black mask, black shoes, and a black jacket with a design on the left sleeve. He is also wearing a black and orange shirt, black jeans, and a black watch. The outfit is finished with a white necklace with a silver pendant. The man has short blond hair and is walking with his hands in his pockets. The background is a group of people and a black and white sign.", - "id": 10706 - }, - { - "image_path": "/content/drive/MyDrive/combined/1539151332674193npsrq70_jpg.rf.7777f8e8a9cc032deab6c918b597959e.jpg", - "response": "The picture shows a man in a black outfit at an airport. He is wearing a black mask, black jacket, black shirt, black pants, and black shoes. He is also wearing a silver necklace with a C shape on it. He holds a white cup in his hand.", - "id": 10707 - }, - { - "image_path": "/content/drive/MyDrive/combined/131207-Z-VA676-030_JPG_jpg.rf.bb17a51413f8106c1c9d5121c30176bc.jpg", - "response": "A man wearing headphones and glasses is operating a piece of machinery.", - "id": 10708 - }, - { - "image_path": "/content/drive/MyDrive/combined/1477443223-1445746883_jpg.rf.38d4442640b11bd341fc0f9b41529df1.jpg", - "response": "In the image there are two people, one on the left wearing a blue and white helmet and a black mask with blue and white design on it, and on the right a man wearing glasses and a black mask with gray design on it. They are both wearing white shirts. The background is a industrial looking scene with a dark brown building and a blue and white sky. To the left of the image there is a small child on a silver scooter.", - "id": 10709 - }, - { - "image_path": "/content/drive/MyDrive/combined/222_png.rf.4c25d7606bf7a1131a6783e34573b2ee.jpg", - "response": "A man in a yellow shirt running on a beach.", - "id": 10710 - }, - { - "image_path": "/content/drive/MyDrive/combined/131008-Z-UF575-012_JPG_jpg.rf.e91c65f481b08bb1a55eac8a0bda16c0.jpg", - "response": "A man wearing a welding mask and brown coveralls is welding a metal rod. He is creating a lot of bright sparks and there is a cloud of blue smoke in front of him. The man is also wearing red welding gloves.", - "id": 10711 - }, - { - "image_path": "/content/drive/MyDrive/combined/18_png.rf.7d65b8f60c9bb7f146c8daf3c6e1b217.jpg", - "response": "A man in a blue shirt is walking out of a building.", - "id": 10712 - }, - { - "image_path": "/content/drive/MyDrive/combined/221_png.rf.98eb18ba22dcf3e8ec687babd6d78c0c.jpg", - "response": "A man in a black shirt and white pants is standing in a room.", - "id": 10713 - }, - { - "image_path": "/content/drive/MyDrive/combined/194_png.rf.8c9d9b9a23e9fcb524d17b6f247155a6.jpg", - "response": "A blurry image of a man sitting in a chair in a room.", - "id": 10714 - }, - { - "image_path": "/content/drive/MyDrive/combined/1303078448-China-Coronavirus-Death-Toll-Hits-304_jpg.rf.853008baa28d5a94fcaf6188b67d39e5.jpg", - "response": "In the image, there is a person wearing a white mask and a white jacket. They are sitting in front of a red wall with yellow Chinese characters on it. The person is also wearing a grey hat.", - "id": 10715 - }, - { - "image_path": "/content/drive/MyDrive/combined/196_png.rf.63a4a51640ad233e7decfaec6c5d6af2.jpg", - "response": "a person wearing a red shirt and carrying a black bag", - "id": 10716 - }, - { - "image_path": "/content/drive/MyDrive/combined/203_png.rf.3a1ab6bd2f5fe355b7fecc17b38997a6.jpg", - "response": "a person wearing a black tank top and holding a cane", - "id": 10717 - }, - { - "image_path": "/content/drive/MyDrive/combined/1337_jpg.rf.0ab9f08cb43df18eaeca173f979fdd4c.jpg", - "response": "A pair of ladders leaning against a wall.", - "id": 10718 - }, - { - "image_path": "/content/drive/MyDrive/combined/197_png.rf.996b2f61a9a9078491062393cebedbef.jpg", - "response": "A woman in a purple shirt and a skirt is feeding a dolphin.", - "id": 10719 - }, - { - "image_path": "/content/drive/MyDrive/combined/210_png.rf.1047dff4818920e8cfb2bcfdde3cefc3.jpg", - "response": " A police officer(77,165),(401,996) standing in a doorway.", - "id": 10720 - }, - { - "image_path": "/content/drive/MyDrive/combined/215_png.rf.d177401a442727961c4d651574bafa5c.jpg", - "response": "A man in a black jacket standing in front of a refrigerator.", - "id": 10721 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_png.rf.042b1b0418bf6c9c1495952cba5b43db.jpg", - "response": "A person is standing on a skateboard in a room.", - "id": 10722 - }, - { - "image_path": "/content/drive/MyDrive/combined/21_png.rf.c395813b7ab4a54c5616979f2640a28f.jpg", - "response": "A blurry image of a person standing on a sidewalk holding a cell phone.", - "id": 10723 - }, - { - "image_path": "/content/drive/MyDrive/combined/209_png.rf.6d29a27302806134a4bbd43e358bf7c5.jpg", - "response": "A woman with long brown hair is standing in the snow. She is wearing a white sweater and blue jeans. She is holding a blue sphere with a white star on it. The whole image has a white background and is covered in small black dots.", - "id": 10724 - }, - { - "image_path": "/content/drive/MyDrive/combined/220_png.rf.6619883be6609ef202d8faa753c89ed2.jpg", - "response": "a man standing on a sidewalk holding a box", - "id": 10725 - }, - { - "image_path": "/content/drive/MyDrive/combined/15150794626913_jpg.rf.25786ba04ea23c9f5ead35d9cfd55eab.jpg", - "response": "Taiwanese singer and actress Yang Chia-shi is seen at the police station in Taipei, Taiwan, 16 March 2021. According to local media, Yang was arrested by the police for suspected fraud.", - "id": 10726 - }, - { - "image_path": "/content/drive/MyDrive/combined/187_png.rf.8f4adfc00374f73225260225b04063a1.jpg", - "response": "A police officer is holding open the door of a van.", - "id": 10727 - }, - { - "image_path": "/content/drive/MyDrive/combined/131008-Z-UF575-005_JPG_jpg.rf.39a7e206df76d3e2b0030e4b75dd8b3c.jpg", - "response": "A man wearing a welding helmet and brown leather jacket welding a metal frame.", - "id": 10728 - }, - { - "image_path": "/content/drive/MyDrive/combined/198_png.rf.db9bd33cfab0e3d7b8cfd85d23b41e83.jpg", - "response": "A man in a black shirt is holding a remote control.", - "id": 10729 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513324714o1n0r10n6_jpg.rf.e9d6b90ed0ecc8203cfbda0b902b4575.jpg", - "response": "The 27-year-old\u97e9\u661f\u674e\u6d19\u8d6b\u8eab\u7a7f\u9ed1\u8272T\u6064\u5185\u642d\uff0c\u642d\u914d\u9ed1\u8272\u5916\u5957\uff0c\u9ed1\u8272\u88e4\u5b50\uff0c\u5934\u6234\u9ed1\u8272\u53e3\u7f69\uff0c\u624b\u62ff\u9ed1\u8272\u884c\u674e\u7bb1\uff0c\u6574\u4f53\u9020\u578b\u975e\u5e38\u5e05\u6c14\uff0c\u673a\u573a\u968f\u6027\u7684\u4ed6\u88ab\u7c89\u4e1d\u5076\u9047\uff0c\u7167\u7247\u4e2d\u674e\u6d19\u8d6b\u4ec5\u9732\u4fa7\u8138\uff0c\u6321\u4f4f\u4e86\u6b63\u8138\uff0c\u4f46\u662f\u4f9d\u65e7\u96be\u63a9\u5e05\u6c14\u3002", - "id": 10730 - }, - { - "image_path": "/content/drive/MyDrive/combined/229_png.rf.10a70af835ce0f9e5954fd368f37edd9.jpg", - "response": " A man(66,135),(435,939) is standing in a room with a black shirt on.", - "id": 10731 - }, - { - "image_path": "/content/drive/MyDrive/combined/194_png.rf.dc5c7e4c158a8fdb42b803c7febb99c8.jpg", - "response": "A woman is standing in a pile of trash. She is wearing a yellow shirt and has a headscarf. She is looking down at the ground. She is standing in a street.", - "id": 10732 - }, - { - "image_path": "/content/drive/MyDrive/combined/213_png.rf.506fdc1a541362949209469ee290c9d8.jpg", - "response": "A man in a suit standing next to a bike.", - "id": 10733 - }, - { - "image_path": "/content/drive/MyDrive/combined/135e-huxwryw6451820_jpg.rf.5c62c3d71803a43ac37f8fa0817d819a.jpg", - "response": "An Asian man with black hair and black glasses is wearing a black mask over his mouth. He is also wearing a black shirt and a blue jacket. He is on an airport screen.", - "id": 10734 - }, - { - "image_path": "/content/drive/MyDrive/combined/18_png.rf.e3bbc40f6e0ee79e7bc8969fd4d8cd26.jpg", - "response": "a person walking through a glass door", - "id": 10735 - }, - { - "image_path": "/content/drive/MyDrive/combined/1326_jpg.rf.e72626ba04172386b915b237d203c861.jpg", - "response": "An airplane worker is on a ladder working on the engine of a plane.", - "id": 10736 - }, - { - "image_path": "/content/drive/MyDrive/combined/195_png.rf.90cd280b1c9a8c1a539c704e84ffa0aa.jpg", - "response": "A woman and a little girl are in a store.", - "id": 10737 - }, - { - "image_path": "/content/drive/MyDrive/combined/210_png.rf.6e1d79ef736c4a372027b44bba8f208a.jpg", - "response": "a police officer standing in a doorway with his hand on the doorknob", - "id": 10738 - }, - { - "image_path": "/content/drive/MyDrive/combined/214_png.rf.77964d384136abb3871f3ca514a104ca.jpg", - "response": "A man in a convenience store pointing a gun at someone.", - "id": 10739 - }, - { - "image_path": "/content/drive/MyDrive/combined/131_jpg.rf.77700ce9807433291088b624b08c7b27.jpg", - "response": "A man is holding a large orange and white traffic cone in a garage.", - "id": 10740 - }, - { - "image_path": "/content/drive/MyDrive/combined/218_png.rf.2f9d53224fdef51502a0320eae6d8457.jpg", - "response": "In the image there is a brown glittery texture. The texture is made up of small golden glitter particles. There are two dark brown hands on the texture, one on the left and one on the right. The left hand is positioned closer to the bottom of the image and the right hand is positioned closer to the top. The fingers on both hands are spread out.", - "id": 10741 - }, - { - "image_path": "/content/drive/MyDrive/combined/1335_jpg.rf.18fb8f490089abd41decb942d39871c6.jpg", - "response": "A man standing on a platform with a ladder.", - "id": 10742 - }, - { - "image_path": "/content/drive/MyDrive/combined/14_jpg.rf.1e2a3b458cd061d364592d5adfcecfee.jpg", - "response": "a man on a red ladder that is in the air", - "id": 10743 - }, - { - "image_path": "/content/drive/MyDrive/combined/1522_jpg.rf.e046d0e83d2e60a8a29d9874dcf1ed8a.jpg", - "response": "A fire truck is parked on the street with a man walking in front of it. There is a fire hydrant in front of the truck. There are two orange cones on the street. There is a car parked on the street. There is a handbag on the ground next to the man. There is a person walking behind the fire truck. There is a fire hose on the ground behind the fire truck. There is a house in the background.", - "id": 10744 - }, - { - "image_path": "/content/drive/MyDrive/combined/225_png.rf.d8418eb4817734530e3c3bd577cb5c4c.jpg", - "response": "A fuzzy black and white image of a bear.", - "id": 10745 - }, - { - "image_path": "/content/drive/MyDrive/combined/201_png.rf.f4038d6ed6ce1cb1c248792ed8d98265.jpg", - "response": "A woman is holding a brown purse and wearing a black jacket. She is walking through a store.", - "id": 10746 - }, - { - "image_path": "/content/drive/MyDrive/combined/1407_jpg.rf.6682a5f02d68db99afc34d74f3ce12cb.jpg", - "response": "A man in a white hard hat and green vest is working on a white truck. The truck is parked on the side of the road and has a bucket in the back. There are two orange and white cones in front of the truck and a third one behind it. The man is wearing brown boots and has a tool belt around his waist. He is standing on the road near the cones.", - "id": 10747 - }, - { - "image_path": "/content/drive/MyDrive/combined/1310_jpg.rf.8569f40cb86278d51e592c29e9f64171.jpg", - "response": "A ladder leaning against a white wall with a red target on the wall.", - "id": 10748 - }, - { - "image_path": "/content/drive/MyDrive/combined/1352_jpg.rf.6273eb566fe89be84f214ad461d2b5bb.jpg", - "response": "A person climbing a ladder that is placed against a pole.", - "id": 10749 - }, - { - "image_path": "/content/drive/MyDrive/combined/18_png.rf.52ae921ab1f3700aae2cdf7337ec776e.jpg", - "response": "a man in a blue shirt is standing in front of a window", - "id": 10750 - }, - { - "image_path": "/content/drive/MyDrive/combined/141003-F-UN284-065_JPG_jpg.rf.d95666308efebd8a8814016e51d59e9f.jpg", - "response": "a man wearing a white hard hat and a yellow safety vest", - "id": 10751 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.1627e81671e0bd317f6d41df7cdf8dc2.jpg", - "response": "A street with a yellow line down the center and many traffic cones laying on it.", - "id": 10752 - }, - { - "image_path": "/content/drive/MyDrive/combined/223_png.rf.80029acdf2d09d312058ca166863ea86.jpg", - "response": "A close up of a shower curtain with a face on it.", - "id": 10753 - }, - { - "image_path": "/content/drive/MyDrive/combined/130_jpg.rf.0f59f1d30ff7cc24efed58f5eb3379e6.jpg", - "response": "A street with multiple traffic cones on it.", - "id": 10754 - }, - { - "image_path": "/content/drive/MyDrive/combined/1422808187-3291816118_jpg.rf.e0db641e39726da980ab5766c12c535c.jpg", - "response": "In the image, there is a child wearing a blue mask with a blue and white pattern on it. The child is also wearing a black shirt and has dark brown hair. To the right of the child, there is a pink moon with an arrow pointing to it. Below the moon, it says \"N95\u7b49\u7ea7MIT\u53e3\u7f69\" with the colours of the three sizes available, blue, pink, and white.", - "id": 10755 - }, - { - "image_path": "/content/drive/MyDrive/combined/140804-N-XD363-007_jpg.rf.b6171fc76264b9aec0aed2cd3e2ec0ea.jpg", - "response": "In the image a worker is welding in front of an aircraft carrier. The worker is wearing a green uniform and a protective mask. They are welding a metal structure that is located in the foreground of the image. The background shows the aircraft carrier and a blue sky with clouds.", - "id": 10756 - }, - { - "image_path": "/content/drive/MyDrive/combined/19_png.rf.9fb0ac235b8fd8b41ac1980487eef69e.jpg", - "response": "A person wearing a gas mask is walking down a hallway.", - "id": 10757 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_jpg.rf.4bcb2cb38bb9a01db043fbb84e0d5147.jpg", - "response": "A man standing on a red ladder in a room.", - "id": 10758 - }, - { - "image_path": "/content/drive/MyDrive/combined/14425623607_c9cd160339_jpg.rf.c8962e421fde49ee97a9c1302be61eff.jpg", - "response": "A man standing on a red ladder in a room.", - "id": 10759 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513321824spp815on8_jpg.rf.2d1b8cd96d5862539f99a1e8cf32dd5b.jpg", - "response": "In the image there is a group of people, among which a young man with blond hair and a black mask is walking in the middle of the airport. The young man is wearing a black jacket and a black T-shirt. The T-shirt has a black design with white and orange letters. The letters are different sizes and some of them are capitalized. The young man is also wearing a silver necklace with a rectangular pendant. The blond young man looks serious and straight ahead.", - "id": 10760 - }, - { - "image_path": "/content/drive/MyDrive/combined/13994348425068_jpg.rf.7eeed30be8cfea7f300df269980fb380.jpg", - "response": "Four men(384,552),(478,957)(467,531),(567,996)(280,528),(347,760) in yellow vests(387,619),(476,761)(481,591),(566,752)(282,568),(345,667) and white helmets(406,550),(456,599)(468,529),(526,593) stand in front of a construction site.", - "id": 10761 - }, - { - "image_path": "/content/drive/MyDrive/combined/210_png.rf.d9ea246c3e798578d3460e5ff1d37c1d.jpg", - "response": "A person standing in a road with a swarm of insects flying around them.", - "id": 10762 - }, - { - "image_path": "/content/drive/MyDrive/combined/212_png.rf.bc7f883a2004541467df99b676a6d03e.jpg", - "response": "A blurry image of a person standing on a sidewalk near a building. The person is wearing all black and appears to be the only person in the scene. There are a few cars parked on the street in the background. The image is grainy and has a slight blur to it.", - "id": 10763 - }, - { - "image_path": "/content/drive/MyDrive/combined/256_png.rf.285001f3bfbd6cfb3a065d2e28e698b3.jpg", - "response": "A man in a grey shirt and blue shorts is walking through a store.", - "id": 10764 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_287_jpg.rf.19c3632f398a48b3f6bd6e12fcb3ed5e.jpg", - "response": " A man(203,134),(360,923) wearing a face mask(283,186),(335,257) is standing in a room with a large metal bin(320,472),(432,677).", - "id": 10765 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_280_jpg.rf.225f01dcbde4c79300e3a9e7bc2408dd.jpg", - "response": " A man(200,134),(357,918) is standing in a room. On the floor there is a silver trash can and a silver box. There is a silver machine in the room. The room is filled with boxes.", - "id": 10766 - }, - { - "image_path": "/content/drive/MyDrive/combined/271_png.rf.c0378322419c315a58b86eecd82fd614.jpg", - "response": "A person wearing black boots standing in a room.", - "id": 10767 - }, - { - "image_path": "/content/drive/MyDrive/combined/236_png.rf.0c3c559c283a57b192578e5178a627c5.jpg", - "response": "A grainy black and white image of a man and a woman walking down a street. The man is in the center of the image and is wearing a black shirt and black pants. The woman is slightly behind him and is wearing a black shirt and dark pants. They are both walking in the same direction and looking at something in front of them. The image is covered in small black dots.", - "id": 10768 - }, - { - "image_path": "/content/drive/MyDrive/combined/247_png.rf.80460d5b1cf55992ae77e39960f29ef0.jpg", - "response": "A person in a red shirt is standing on a sidewalk.", - "id": 10769 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580173904-0001oc33f_jpg.rf.bc03df347ad2f3b8ad47875eb9fbe404.jpg", - "response": "a crowd of people wearing face masks to protect themselves from the coronavirus.", - "id": 10770 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_292_jpg.rf.eeccfda0bac27de225853623cfbc6d8d.jpg", - "response": "A man in a red shirt is standing in a room.", - "id": 10771 - }, - { - "image_path": "/content/drive/MyDrive/combined/277_png.rf.b219eb67609efa73b6148d830affd2a8.jpg", - "response": "A blurry image of a store with a white floor. There is a person standing in the middle of the room wearing a pink shirt and black pants. There is a pile of boxes on the left side of the room and a pile of boxes on the right side of the room. There is a red wall in the background. There are also several boxes scattered around the room.", - "id": 10772 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_281_jpg.rf.776a86834d91a282f295d3109c62fa92.jpg", - "response": " A man(200,133),(350,933) wearing a brown shirt(201,226),(328,547) and white pants(248,523),(338,897) is standing in a room with a stainless steel table(284,566),(623,995) with a large metal bucket(325,471),(427,677) on it. There is a video(1,10),(996,995) of a room with a man(791,269),(868,603) in the background.", - "id": 10773 - }, - { - "image_path": "/content/drive/MyDrive/combined/235_png.rf.619a1632f4d64385f4d30f9c4034247e.jpg", - "response": "A man in a suit walking down a hallway.", - "id": 10774 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579928067_250120120154270000005e2bca03bf464_jpg.rf.3517087d07958adaff0f0f991e09b864.jpg", - "response": "A group of people walking through an airport wearing masks.", - "id": 10775 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580053154-5839_jpg.rf.8b0dcb045cd520c6e085d2a4a3c03da1.jpg", - "response": "A family wearing protective facemasks, amid concerns over the spread of the COVID-19 novel coronavirus, arrive at the Don Mueang airport in Bangkok on March 18, 2020. - Thailand on March 18 reported its first death from the COVID-19 coronavirus, a 64-year-old man who had been hospitalised in Bangkok. (Photo by Mladen ANTONOV / AFP) (Photo by MLADEN ANTONOV/AFP via Getty Images)", - "id": 10776 - }, - { - "image_path": "/content/drive/MyDrive/combined/242_png.rf.72b13a4ec410f281115cab23796179ec.jpg", - "response": "A man in a pink shirt is walking down the street.", - "id": 10777 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_283_jpg.rf.f5d09858ff793f39159fd6ec44f120f7.jpg", - "response": " A man(188,135),(351,929) is standing in a room.", - "id": 10778 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580128422_jpg.rf.3fe62eec4d6561d45bb26a98677691bd.jpg", - "response": "A crowded airport with people wearing face masks.", - "id": 10779 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_293_jpg.rf.d9473de7f688db6d0318d582d8442d82.jpg", - "response": "A man in a red shirt standing in a garage.", - "id": 10780 - }, - { - "image_path": "/content/drive/MyDrive/combined/233_png.rf.d1028cd6c4f79db933602c1ee3d2b969.jpg", - "response": "A man in a suit standing in a room with a chair, a table, and a window.", - "id": 10781 - }, - { - "image_path": "/content/drive/MyDrive/combined/241_png.rf.94c97878af0c4b846102112b69c2127a.jpg", - "response": "a man sitting on a toilet in a white room", - "id": 10782 - }, - { - "image_path": "/content/drive/MyDrive/combined/242_png.rf.36d6623aaa2fc5d59822a9a3ccb38f9d.jpg", - "response": "A man in a pink shirt is standing on a sidewalk.", - "id": 10783 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_278_jpg.rf.12f614ce0c02f954dc99309785e1ba14.jpg", - "response": "A man in a red shirt and blue jeans is standing in a room. He is wearing a black and white face mask and a watch. He is standing next to a stainless steel table with a large stainless steel bin on it. There is a second stainless steel bin on the table. A third stainless steel bin is on the floor next to the table. There is a yellow bucket on the floor to the left of the table. A person is standing in the background on the right side of the room.", - "id": 10784 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_300_jpg.rf.91a0c9ac2a587b3d29bf4a6ab87d1985.jpg", - "response": " A man(203,154),(373,923) wearing a brown shirt(205,253),(347,560) and white pants(238,516),(337,897) is holding a large metal bucket(329,460),(430,663) and standing in front of a metal table(283,567),(646,997) with a metal box(309,660),(600,918) on top of it.", - "id": 10785 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579683152-0e3ba5698b090c0fda95caa5d2aa7b31_jpg.rf.5dc424c79ffa332de71848f318dd8ab4.jpg", - "response": "A woman in a white lab coat and a mask is sitting at a desk. She is typing on a computer. There is a laptop on the desk and a keyboard in front of it. There is a book on the desk next to the laptop.", - "id": 10786 - }, - { - "image_path": "/content/drive/MyDrive/combined/234_png.rf.7d24d0dcac5abc4e0ab408ee669dce76.jpg", - "response": "A man in a green shirt and jeans is seen from the shoulders down, walking in a parking garage. He is wearing a hat and appears to be looking at his phone. He is walking past a red car and a black car. There are several other cars parked in the garage, some of which are visible in the background. The man is walking on a sidewalk that is lined with yellow barriers.", - "id": 10787 - }, - { - "image_path": "/content/drive/MyDrive/combined/251_png.rf.d0f35fae44272970acb5f859d09f2526.jpg", - "response": "A man sitting at a desk with a computer.", - "id": 10788 - }, - { - "image_path": "/content/drive/MyDrive/combined/233_png.rf.710f7d1e8be1d635ebbaafbf3fa8119d.jpg", - "response": "A man wearing a black shirt and black pants is standing in a room. The room has a bed, a table, and a chair. There is also a suitcase on the floor.", - "id": 10789 - }, - { - "image_path": "/content/drive/MyDrive/combined/260_png.rf.c9a31e3fa29e92e0fcb5594a24f12ef9.jpg", - "response": "A blurry image of a room with a person standing in the corner holding a pole. The room has a table with a chair and a book on it. There is a person sitting on a chair in the room and another person standing in the room. The image is blurry and has a lot of dots on it.", - "id": 10790 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_270_jpg.rf.c49f5bf1244b665a70e2f8589be6c816.jpg", - "response": "A man in a red shirt and jeans is standing on a step stool next to a stainless steel table. He is holding a large stainless steel pot and is looking at it. There is a second stainless steel pot on the table. The man is wearing a black mask. To the right of the man is a door. Above the door is a sign that says \"FF-2 Product Pump\". To the right of the man is a hallway with two doors. One of the doors is open and you can see a person in the hallway.", - "id": 10791 - }, - { - "image_path": "/content/drive/MyDrive/combined/236_png.rf.89d18f6dd348ecf1600333f3b4bbd8cf.jpg", - "response": "An image of two people walking down a hallway.", - "id": 10792 - }, - { - "image_path": "/content/drive/MyDrive/combined/157_jpg.rf.16312f1a316f85e947229f5b2c4faba6.jpg", - "response": "A close up of a red and black cone sitting on a white background.", - "id": 10793 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580048340614_jpg.rf.0bf2bec79b358be9590f226fa8cb29ed.jpg", - "response": "In the image, a large group of people are walking through a crowded street. They are all wearing face masks. Some people are looking at the camera. There are many more people in the background. Some people are wearing ties.", - "id": 10794 - }, - { - "image_path": "/content/drive/MyDrive/combined/259_png.rf.cfe8d49305b8c775982482cec9dc18dd.jpg", - "response": "a person(579,132),(762,635) walking down a sidewalk", - "id": 10795 - }, - { - "image_path": "/content/drive/MyDrive/combined/248_png.rf.b26bd7db1666c224d80a7ab069aec501.jpg", - "response": "A man in a white shirt is standing in the street talking on his cell phone.", - "id": 10796 - }, - { - "image_path": "/content/drive/MyDrive/combined/1582_jpg.rf.c4b6802ef29aab18a88fb1ffd3485391.jpg", - "response": "An electrician on a ladder working on a utility pole.", - "id": 10797 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_295_jpg.rf.02082a9801790c465cfe3d216d6aaf0b.jpg", - "response": "A man in a red shirt and blue mask is standing in a room with a silver machine. The man is also wearing a watch on his left wrist. There is a large silver machine in the room and a silver bin on a cart. There is also a silver box on the ground. The man is standing on a step stool and there is a yellow broom leaning against the wall. The man is wearing a watch on his left wrist.", - "id": 10798 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_png.rf.32bb8cb804e7f62f8eb20b8266463094.jpg", - "response": "A man in a black shirt and black pants is walking through an airport. He is carrying a black bag and has short black hair. He is wearing white shoes. There is a counter to the left of the man and a chair to the right of him. There is also a handbag on the floor in front of him. The background is blurred out.", - "id": 10799 - }, - { - "image_path": "/content/drive/MyDrive/combined/26_png.rf.3296eac0d4e1e8b9c29664d5565a7586.jpg", - "response": "A group of people walking down a street.", - "id": 10800 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_275_jpg.rf.ded7393048842ebb2468225319a43e7e.jpg", - "response": " A man(182,131),(350,925) wearing a maroon shirt(184,232),(319,548) and white pants(218,515),(326,899) is in a room with a stainless steel table(285,568),(616,996) with a silver 5 gallon bucket(323,468),(426,675) on it.", - "id": 10801 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_png.rf.0e485f56555a219ac814b9921ba03401.jpg", - "response": "A person standing on top of a car.", - "id": 10802 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_286_jpg.rf.9f4bff5ce994c05f67401fe697cb6c59.jpg", - "response": "A man in a red shirt is standing in a room with a silver refrigerator. He is holding a white object in his hand. There is a silver machine with a bucket on top of it. A bowl is on the ground in front of the machine. There is a yellow can on the ground to the left of the man. A video camera is recording the man. The date and time are on the top right corner of the image.", - "id": 10803 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513329330sooq10859_jpg.rf.08596ddb6b52691f83cf6817f28839ae.jpg", - "response": "At the airport, there is a male artist wearing a black mask and a black jacket. The jacket has a gold chain on the collar and the male artist is also wearing a gold chain around his neck. He is also wearing a black, orange, and white t-shirt. The male artist is at the airport and there are many lights in the ceiling.", - "id": 10804 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_296_jpg.rf.58a2ad9f962c79049b06006688bfd6b4.jpg", - "response": " A man(178,136),(313,924) wearing a face mask(227,186),(285,263) is standing in a room.", - "id": 10805 - }, - { - "image_path": "/content/drive/MyDrive/combined/276_png.rf.5a4ebee782014943ca0ef380fab55ce1.jpg", - "response": "a man(275,338),(442,855) standing in front of a building", - "id": 10806 - }, - { - "image_path": "/content/drive/MyDrive/combined/275_png.rf.ab245eca93d1482a4e0c8baff64354ff.jpg", - "response": "A blurry image of a man standing on top of a car in a parking garage. The car is silver and is underneath the man. The man is wearing a black jacket and is facing away from the camera. The parking garage has a lot of cement pillars and supports. There is also a truck parked in the garage. The image is black and white.", - "id": 10807 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_284_jpg.rf.8e103a0d854014dafc12a9f42a7a25f7.jpg", - "response": " a man(208,137),(346,923) standing in a room with a light on", - "id": 10808 - }, - { - "image_path": "/content/drive/MyDrive/combined/1553605632_9d5877d8_60_jpg.rf.3f3d36b794883998972895e6a55ea817.jpg", - "response": "A collage of photos of people wearing and holding face masks and a few boxes of them.", - "id": 10809 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_267_jpg.rf.2b36436500e7a40ff4bd32a0c68e0041.jpg", - "response": " A man(203,130),(350,926) in a red shirt(204,224),(317,526) and white pants(222,503),(318,897) is pouring a large metal bowl(328,468),(436,561) into a larger metal bin(384,567),(518,689).", - "id": 10810 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579_jpg.rf.9e7886f9922abe4649513a161fd88c3e.jpg", - "response": "A man standing in front of a small orange building.", - "id": 10811 - }, - { - "image_path": "/content/drive/MyDrive/combined/274_png.rf.dcaa17195943f0539d909b9600a17959.jpg", - "response": "a person walking down a hallway carrying a green bag", - "id": 10812 - }, - { - "image_path": "/content/drive/MyDrive/combined/248_png.rf.a53f722b0054fd910758c3d39a0ea9b3.jpg", - "response": "A man in a white shirt and jeans is standing in the street, holding a cell phone. He is near a crosswalk and there is a car stopped behind him.", - "id": 10813 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579928067_250120120154270000005e2bca03bf464_jpg.rf.ee22e2dd5ce68b7264fa6d2592ac42a3.jpg", - "response": "A group of people walking through an airport wearing face masks.", - "id": 10814 - }, - { - "image_path": "/content/drive/MyDrive/combined/154_jpg.rf.724862c4130c5ba471db17c90a566044.jpg", - "response": "The image shows a hole in the street that has been covered by a circle made out of orange and white traffic cones. There are 13 cones arranged in a circle around the hole. The cones are placed on top of wooden boards to raise them off the street. The circle of cones surrounds the hole like a fence. The street is paved with asphalt and the hole is surrounded by a curb.", - "id": 10815 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_279_jpg.rf.2ba5a54aa0d9d183e43d7dcc82a5d7c9.jpg", - "response": " A man(201,133),(350,923) wearing a maroon shirt(202,223),(329,546) and white pants(248,507),(338,898) is standing in a room with a silver colored machine(282,562),(620,996) and a silver colored bucket(322,470),(427,676).", - "id": 10816 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_294_jpg.rf.dc388651ac08ea67e6bfc6056f07d693.jpg", - "response": "a man(188,134),(321,924) standing in a room with a large metal bin(314,472),(436,680)", - "id": 10817 - }, - { - "image_path": "/content/drive/MyDrive/combined/239_png.rf.f4dcc59c01331c88a0740a65f8942278.jpg", - "response": "A man is seen on a security camera swinging a large metal bar.", - "id": 10818 - }, - { - "image_path": "/content/drive/MyDrive/combined/23_png.rf.6c30c4d3489bb94322b68dbe192fbda5.jpg", - "response": "man(415,201),(571,744) walking by a table and chairs", - "id": 10819 - }, - { - "image_path": "/content/drive/MyDrive/combined/237_png.rf.c31341f04a9cc13cc069b9a367eee5e3.jpg", - "response": "A man in a black jacket and black pants is standing in a parking garage. He is wearing a blue hat and has a blue backpack. He is facing to the right.", - "id": 10820 - }, - { - "image_path": "/content/drive/MyDrive/combined/264_png.rf.bcb10642b6d8bbff86687cacce9ded0b.jpg", - "response": " A man(99,103),(308,672) is playing basketball on a court.", - "id": 10821 - }, - { - "image_path": "/content/drive/MyDrive/combined/230_png.rf.54c3be4c5f26bf03f894e57404b4c48a.jpg", - "response": "A classroom with tables and chairs, desks with books and notebooks on them.", - "id": 10822 - }, - { - "image_path": "/content/drive/MyDrive/combined/253_png.rf.122ada08ffda391ab69818dfdf2ae0be.jpg", - "response": "a man wearing a white shirt and black pants is standing on a skateboard on a sidewalk", - "id": 10823 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_png.rf.0172c4e9a57fff5aa84c00ae2268ac59.jpg", - "response": "A grainy image of a couple of people walking on a sidewalk.", - "id": 10824 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513329330sooq10859_jpg.rf.3a6a62545be2bbaa1dd781b2e5b5056c.jpg", - "response": "At the airport, a male star wearing a black mask is seen arriving. He is wearing a black jacket with a black shirt underneath, and a gold chain around his neck. He is also wearing a black and orange shirt. In his hands, he's holding a cup and going through security.", - "id": 10825 - }, - { - "image_path": "/content/drive/MyDrive/combined/262_png.rf.14166388aebeae56721f4b28d6795ae6.jpg", - "response": " A man(685,79),(848,420) walking through a room", - "id": 10826 - }, - { - "image_path": "/content/drive/MyDrive/combined/1557_jpg.rf.a4ab8aa755af58d9b4a92a54f0e11518.jpg", - "response": "A hardware store with a red and white exterior.", - "id": 10827 - }, - { - "image_path": "/content/drive/MyDrive/combined/252_png.rf.0e4ce9c219742bac13c74358df79006d.jpg", - "response": "The image is a grainy security camera view of two men walking through a lobby. One of the men is wearing a white shirt and black shorts, and is using a cane. The other man is wearing a blue shirt and khaki pants. They are both walking towards the right side of the image.", - "id": 10828 - }, - { - "image_path": "/content/drive/MyDrive/combined/1553605632_9d5877d8_60_jpg.rf.ea0074855d183e2db34f2b37ebe3e98b.jpg", - "response": "A collage of photos of people holding boxes of PM2.5 masks and wearing the masks.", - "id": 10829 - }, - { - "image_path": "/content/drive/MyDrive/combined/267_png.rf.d9d5d6fe9a6fa983589607ed6a3dfb82.jpg", - "response": "A blurry image of a store with a pink shopping cart.", - "id": 10830 - }, - { - "image_path": "/content/drive/MyDrive/combined/247_png.rf.ac11afccd952ecdceb790e17fa68409a.jpg", - "response": "A person in a pink shirt is walking down a sidewalk.", - "id": 10831 - }, - { - "image_path": "/content/drive/MyDrive/combined/265_png.rf.6774246a344ecd18b00e3c2343f74dda.jpg", - "response": " A man(416,113),(650,739) is seen jumping on a bed", - "id": 10832 - }, - { - "image_path": "/content/drive/MyDrive/combined/15h_img_282_jpg.rf.dde7412b8504e6aeb7533b4a78c1fcf4.jpg", - "response": " A man(200,133),(351,918) standing in a room with a large metal drum.", - "id": 10833 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580173904-0001oc33f_jpg.rf.ac6bc1015ed05df11c120c6ea5af7578.jpg", - "response": "a crowd of people wearing face masks", - "id": 10834 - }, - { - "image_path": "/content/drive/MyDrive/combined/155_jpg.rf.4972087eca14295cfeecbded8b69aea1.jpg", - "response": "A street with three orange and white traffic cones on it.", - "id": 10835 - }, - { - "image_path": "/content/drive/MyDrive/combined/239_png.rf.90e40437c17a44fcbcd2dad8dd88983a.jpg", - "response": "A man in a white shirt is standing in a lobby.", - "id": 10836 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675328054-91_jpg.rf.a9eb20f80ef3bca65066f42e2319e951.jpg", - "response": "a kitchen with a counter and a sink", - "id": 10837 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675421-8298478_jpg.rf.9785fe97a547e7a391deb1ed39dc74e3.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 10838 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675333850_jpg.rf.1537c3e2de5c737ced02aab79b7580d1.jpg", - "response": "A blurry image of a bookshelf with many books on it.", - "id": 10839 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675404-1325517_jpg.rf.4437a3da0b624d04052c6995989846b8.jpg", - "response": "A long narrow hallway with shelves on both sides of the hallway.", - "id": 10840 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675379-1098697_jpg.rf.43302c02b1412baf8bb1e5969ede60aa.jpg", - "response": "A long narrow hallway with shelves on both sides filled with items.", - "id": 10841 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675344-530616_jpg.rf.8df235443de471e8f2b7649e209c146a.jpg", - "response": "A large room with a lot of shelves and items on the shelves.", - "id": 10842 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675329-4135094_jpg.rf.9b9aad1fd460615878c995165c0200da.jpg", - "response": "a large room with a lot of boxes and other items on the shelves", - "id": 10843 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675344-530616_jpg.rf.8118cc90202dc2a83862491e744bd654.jpg", - "response": "A blurry image of a room with a couch and a chair.", - "id": 10844 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675363654-63_jpg.rf.94070aa3ef9e656e7a259d326d6e12d3.jpg", - "response": "a store with many white and blue appliances on display.", - "id": 10845 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675393-1093876_jpg.rf.0cee18538c24a5f76af308e6883acbd6.jpg", - "response": "A train is parked in a station with a blue and yellow color scheme.", - "id": 10846 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675329-4135094_jpg.rf.3bc73ac939b17d9b84a6c1b0eb503f77.jpg", - "response": "A room with boxes stacked on shelves and on the floor.", - "id": 10847 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675366635-1_jpg.rf.3e4f5f4e5d9ee6810511854fbcb977ac.jpg", - "response": "A window with rain on it looking into a storage room filled with black and white plastic storage containers.", - "id": 10848 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675312-914259_jpg.rf.fe4a4a3d4562ef6bebe61de9f8665378.jpg", - "response": "a blurry image of a room with a bunch of shelves", - "id": 10849 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675367629-16_jpg.rf.a8fdd1aed023147c664bb7d972bf3bc4.jpg", - "response": "A pile of black and white kayaks stacked on top of each other in a warehouse.", - "id": 10850 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675330-1570246_jpg.rf.3fbe932606fadd066020526035a5c176.jpg", - "response": "A long hallway with shelves on both sides.", - "id": 10851 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675300237-71_jpg.rf.2c7bc015c08333ae7161c47603b43166.jpg", - "response": "a photo of a subway car with many seats", - "id": 10852 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675366635-1_jpg.rf.4e8c741ff7c150a66f6a47ef0500ff14.jpg", - "response": "a window with raindrops on it looking into a store", - "id": 10853 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675418-5079758_jpg.rf.b47fbc2e83838940018fa8714b372f2a.jpg", - "response": "A blurry image of a room with a lot of appliances. There are several boxes stacked on the floor and on a shelf. There are also several bottles in the room. The room is poorly lit and has a dark atmosphere.", - "id": 10854 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675308-1285377_jpg.rf.d392c8993fed11ccceb7fa2cf1b728d7.jpg", - "response": "A subway train on the tracks in a station.", - "id": 10855 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675479-1413167_jpg.rf.173dcad699c19ba7df4fe29117316a79.jpg", - "response": "A dark room with a starry light projection on the ceiling.", - "id": 10856 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675462-5983076_jpg.rf.e2aa473afddc32b33ac50fe5d276a4ad.jpg", - "response": "A dark hallway with a light at the end. The walls are lined with shelves and the floor is shiny. There are many small white dots scattered throughout the image.", - "id": 10857 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675504-4943137_jpg.rf.b6b741fca1015927bfbe49b88550b58b.jpg", - "response": "A long narrow room with a black floor and boxes stacked on pallets against the walls.", - "id": 10858 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675501915-82_jpg.rf.e92ffa01a510cc5cb195c1834a94175c.jpg", - "response": "A room with a blue and white machine in it.", - "id": 10859 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675476084-64_jpg.rf.51fc2fa18d1d481c10f7ecee839a2f0e.jpg", - "response": "A wooden bench in a room with a window behind it.", - "id": 10860 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675462-5983076_jpg.rf.f4983ebb3bcde5ed421b540009061029.jpg", - "response": "A dark street with a lot of white dots all over it. There is a light in the distance shining on the ground. There are two people in the scene, one on the left and one on the right. The person on the right is holding a handbag.", - "id": 10861 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675525-4580567_jpg.rf.84dedc921d47e6348abdb1ef0cfe1639.jpg", - "response": "A train is on the tracks in a dark room.", - "id": 10862 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675439-456347_jpg.rf.642f79c8487ace5094e4270a8839e1b2.jpg", - "response": "A city street at night with rain falling. The street is made of bricks and is wet. There are several people walking down the street. The image is blurry and the rain makes the street and people look out of focus.", - "id": 10863 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675434689-67_jpg.rf.0fbe55cb7299797f1795b9d2e1064329.jpg", - "response": "a window with a curtain on it", - "id": 10864 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675482-4539342_jpg.rf.2aac5d559da0d573fb14df7c78d27da1.jpg", - "response": "a black and white photo of a building with a lot of windows", - "id": 10865 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675478071-96_jpg.rf.c8768be010d66e630ca6bd3740986348.jpg", - "response": "A room with a bed and a dresser.", - "id": 10866 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675494961-22_jpg.rf.54639f8198229f2153f98df0d53081c3.jpg", - "response": "A kitchen with a stove, refrigerator, and sink.", - "id": 10867 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675501915-82_jpg.rf.2cb4a6e2855f8390eada94d63830e392.jpg", - "response": "A blurry image of a man standing in front of a white refrigerator.", - "id": 10868 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675544635-36_jpg.rf.d7b5780bfbb9ab74507e217177499fa0.jpg", - "response": "A blurry image of a factory with a lot of equipment.", - "id": 10869 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675460-400599_jpg.rf.2626ac9d5d140254b73c386883807430.jpg", - "response": "A black and white image of a forest with a light shining through the trees. The image is grainy and has a lot of speckles.", - "id": 10870 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675447275-54_jpg.rf.1542986986a04c6f33f2aa00cb0f245a.jpg", - "response": "A close up of a shower curtain with a white speckled pattern.", - "id": 10871 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675467-3713918_jpg.rf.993075c1e82b1a4847753e4bcbe3061d.jpg", - "response": "A long hallway with a bench on the right side.", - "id": 10872 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675530-9621313_jpg.rf.e92651200e22690dde72efd66343d81f.jpg", - "response": "A black and white photo of a city street at night. The street is lined with trees and there is a building in the background. The photo is taken through a rain-streaked window.", - "id": 10873 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675540-8733444_jpg.rf.a2a4969bb65a703c73c0f379ec99470d.jpg", - "response": "A warehouse with shelves and racks filled with goods.", - "id": 10874 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675479893-54_jpg.rf.b06f3411cf09e9f7ac0346c08f04ca03.jpg", - "response": "A warehouse with wooden pallets stacked up in the background and a row of wooden logs in the foreground.", - "id": 10875 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675430384-22_jpg.rf.c48c05fe32ad0990bb734b860b0307f7.jpg", - "response": "A dog standing in a room behind a window with a lot of glitter on it.", - "id": 10876 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675505724-71_jpg.rf.a0aa8024628f7c420ba047d93fc9ee75.jpg", - "response": "A close up of a window with rain drops on it.", - "id": 10877 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675464163-77_jpg.rf.8783135d43a28f276cdda7c8589f5327.jpg", - "response": "A blurry image of a living room with a brown couch and a chair.", - "id": 10878 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675447275-54_jpg.rf.6179abdf65952f8450c735148fe4993c.jpg", - "response": "A black and white polka dot curtain", - "id": 10879 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675428-4406512_jpg.rf.caf96d8c03f4c624cd7b72b031401ed0.jpg", - "response": "A building is shown with a pole in front of it. The pole is red and white. The building has many windows. The sky is blue and the sun is shining. There are many white dots on the image.", - "id": 10880 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675485-0184546_jpg.rf.d3a193c293ef31b09969647152d64229.jpg", - "response": "a room with a lot of boxes and shelves in it", - "id": 10881 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675540-8733444_jpg.rf.29e56062ed62502206d26433091bc59d.jpg", - "response": "A blurry image of a city street at night. The street is filled with many lights, creating a sparkling effect. There are buildings on both sides of the street, and a few cars are parked or driving on the road. The image is very dark, with only a few points of light illuminating the scene.", - "id": 10882 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675525-4580567_jpg.rf.9fa44bea2701b253584d37d74d306840.jpg", - "response": "A darkened room with a black wall and ceiling. The wall is covered in small white lights.", - "id": 10883 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675478071-96_jpg.rf.694a6458c4c339c74999b65b09d5dd32.jpg", - "response": "A wooden staircase with railing and spotty railing.", - "id": 10884 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675510-015283_jpg.rf.4e3220479f92033de1fadc7bce142629.jpg", - "response": "A blurry image of a city street with a bus on it.", - "id": 10885 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675457540-39_jpg.rf.3c8104970c186498478d0c931bcbc3ba.jpg", - "response": "A close up of a shower curtain with a pattern of white dots on a black background.", - "id": 10886 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675530-9621313_jpg.rf.b386fd33258204f92a01004fb86642c4.jpg", - "response": "A black background with white speckles all over it. In the center of the image there is a person wearing a black jacket and blue jeans, who is walking in the rain. The person is holding an umbrella and there is a bicycle parked further back.", - "id": 10887 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675504-4943137_jpg.rf.58537c9d8bbfa57874171575005578ce.jpg", - "response": "A large room with boxes stacked up against the wall.", - "id": 10888 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675553-0164185_jpg.rf.cbdcd9ac60b4f1e43a01046290d63343.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 10889 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675471116-73_jpg.rf.84a0aa25f1972b7ed7a9b8f2c0187234.jpg", - "response": "A blurry image of a room with a chair and a window.", - "id": 10890 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675494961-22_jpg.rf.eae3a76f5af5da2c6ddc3656310eced7.jpg", - "response": "A blurry image of a room with a table and chairs.", - "id": 10891 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675532713-64_jpg.rf.433db09bdf30e161041a8a2e0d85074d.jpg", - "response": "A large room with a blue shelf.", - "id": 10892 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675477-3001661_jpg.rf.a056c7f6047b88d02c975ff91f34ce43.jpg", - "response": "A very long warehouse with tall ceilings.", - "id": 10893 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675553578-08_jpg.rf.dbebb033597ecc462cb3cad3a3cafe78.jpg", - "response": "A man in a yellow vest is standing in a large room filled with boxes and appliances. The room has a concrete floor and a tall ceiling. There are several refrigerators in the room, some of which are white and some of which are black. There are also some orange and white appliances in the room. The man is standing near a stack of boxes and appears to be looking at something.", - "id": 10894 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675438-7196417_jpg.rf.e95ddd822dc4e7df307feaf48499117e.jpg", - "response": "a room with a lot of pipes and machinery in it", - "id": 10895 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675479-1413167_jpg.rf.1c61500fa9d7d59046c9d082c5d9cec0.jpg", - "response": "A room with a black floor and white stars projected all over the room.", - "id": 10896 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675438-7196417_jpg.rf.78f1519a3285b03f244cad8cb09d8ce1.jpg", - "response": "A picture of a building with a lot of pipes and a fire hydrant.", - "id": 10897 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675479893-54_jpg.rf.5defbaf9081ad2947cdf03e62d3e4d70.jpg", - "response": "A room with a bed in it and a window.", - "id": 10898 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675460-400599_jpg.rf.17ba83a3d16607731c66e00e4b0c0a23.jpg", - "response": "A dark street with a few stars of light scattered all over.", - "id": 10899 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675485-764105_jpg.rf.750e395ab07726144505cdf96533e403.jpg", - "response": "A dark hallway with many doors.", - "id": 10900 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675481217-85_jpg.rf.4c7726b603ef4e2dac5301f02516d192.jpg", - "response": "A black cat is sitting on a wooden pallet.", - "id": 10901 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675433199-92_jpg.rf.a0fe7e54c1f097e0397fbdf0177a448d.jpg", - "response": "a refrigerator in a store behind a glass display", - "id": 10902 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675505724-71_jpg.rf.d25fab07e9237d5b3d5fe5d2b47a29a9.jpg", - "response": "A close up of a glass window with many small holes in it.", - "id": 10903 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675438332-97_jpg.rf.d0b70bb1029e3fc288c9eb5c1900811c.jpg", - "response": "A large stack of boxes in a warehouse.", - "id": 10904 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675533210-44_jpg.rf.60449f22732058b2a0e1088edfe9aa4d.jpg", - "response": "A large warehouse with tall shelves and a blue shelf.", - "id": 10905 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675433199-92_jpg.rf.6d4ceefbe18a1cc0e354fbc8c71f281a.jpg", - "response": "A room with a large window covered by a white curtain with a silver pattern.", - "id": 10906 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675457540-39_jpg.rf.d879bd4968cb38d637629f2a8c653f6b.jpg", - "response": "a close up of a curtain with many holes in it", - "id": 10907 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675481217-85_jpg.rf.a7bd69591e77812d0890304a242940e0.jpg", - "response": "A room filled with boxes and other items.", - "id": 10908 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675553-0164185_jpg.rf.3a7d9d51b2af5835118c02d827cd9809.jpg", - "response": "A warehouse with a truck parked inside.", - "id": 10909 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675478-0366979_jpg.rf.601ef67820fa762808c197810efd933f.jpg", - "response": "A black and white image of a forest at night. The image is of a snowy path through the woods with a light in the distance. The path is covered in snow and appears to be dark. The trees are tall and thin and are covered in snow. The sky above is black and the stars are bright white.", - "id": 10910 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675553578-08_jpg.rf.cc7aa512a76cbc8f03bda65e6a55df40.jpg", - "response": "A man in a yellow vest is driving a red cart in a warehouse. The warehouse has shelves on the walls and boxes on the floor. There are also shelves with items on them.", - "id": 10911 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675482-4539342_jpg.rf.2025d625413c187fe8c8100e85e7075d.jpg", - "response": "A black and white photo of a narrow alleyway. The walls are lined with doors and windows, and there is a light on in the distance. The photo is covered in small white dots, which are stars.", - "id": 10912 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675533210-44_jpg.rf.f18581c4cac1263a458fba6014709d0b.jpg", - "response": "A warehouse with shelves and racks full of items.", - "id": 10913 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675510-015283_jpg.rf.b8bd3cb83238553a542ac552a2b63b3a.jpg", - "response": "A train with stars projected onto the floor.", - "id": 10914 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675430384-22_jpg.rf.dc28f2d4600a6a38846c83a77755952c.jpg", - "response": "A blurry image of a person in a tan dress standing in front of a window.", - "id": 10915 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675485-0184546_jpg.rf.4ff1cd28a2c75de1e78ab9c0cbb176ca.jpg", - "response": "A blurry image of a room with a door, a window, and a pile of boxes. The room is filled with dust and debris.", - "id": 10916 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675532713-64_jpg.rf.61ae99d517d486c419af51ddec591fec.jpg", - "response": "A blue metal rack with a white A on it.", - "id": 10917 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675438332-97_jpg.rf.3ce3def991636ba11f762554a6ca1d35.jpg", - "response": "A tall stack of boxes with a red stripe on the top box.", - "id": 10918 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675477-3001661_jpg.rf.e6eb0fa3f452df773a43f74faaccc050.jpg", - "response": "A very large room with boxes stacked on shelves and on the floor.", - "id": 10919 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675467-3713918_jpg.rf.d763fd4148c01113222e6a4bf1eb9aad.jpg", - "response": "A view of a hallway that has a door at the end of it. The door is open and there is a light coming from inside the room. The hallway is lined with doors and furniture.", - "id": 10920 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675544635-36_jpg.rf.6f20c4dd67df57598d49f2d5509e4244.jpg", - "response": "A room with a lot of machinery in it.", - "id": 10921 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675471116-73_jpg.rf.4b8e05056a4c78e56cc1a10936350186.jpg", - "response": "A close up of a curtain with small white dots on it.", - "id": 10922 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675476084-64_jpg.rf.87021570b7464345d05fe6d704af0403.jpg", - "response": "a blurry image of a wooden bench in a room", - "id": 10923 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675439-456347_jpg.rf.70a0abec86a178d49eeff72aa5bd2f16.jpg", - "response": "A photo of a subway car with stars imposed on the image.", - "id": 10924 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675478-0366979_jpg.rf.1621aa12d6db9e746f624579cd44a375.jpg", - "response": "A darkened alleyway with a door at the end. The door is made of wood and has a window in the upper right hand corner. The alleyway is made of brick and has a ladder on the right hand side. The image is black and white.", - "id": 10925 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675434689-67_jpg.rf.974cb4d40193307fcd776cb7da60e6e0.jpg", - "response": "A shower with a clear glass door and a silver glittery curtain.", - "id": 10926 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675485-764105_jpg.rf.1248bceb06be3082baa1af112266f6ba.jpg", - "response": "A room with white stars on the floor and a door at the end.", - "id": 10927 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675464163-77_jpg.rf.419d5ee67c6a84f20fde048dd7cbcd6a.jpg", - "response": "A blurry image of a cat sitting on a chair.", - "id": 10928 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675625-5543883_jpg.rf.6c4ac15abfbf956e529722c7ddd7f93a.jpg", - "response": "A man driving a forklift in a warehouse filled with boxes.", - "id": 10929 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675677-128109_jpg.rf.e7b4d9ad2b83b513c3de1788bbc3de2c.jpg", - "response": "A dog is sitting in a storage room with boxes and shelves.", - "id": 10930 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675645-8659928_jpg.rf.428a4d1bc269c31f111fc7dc26adba84.jpg", - "response": "A warehouse with a shiny floor and white curtains.", - "id": 10931 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675671-6170664_jpg.rf.d04b84acdc0162d285c36d7df9f0b255.jpg", - "response": "A large room with shelves full of items.", - "id": 10932 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675687699-72_jpg.rf.277a56626afddb96f868169b976bea08.jpg", - "response": "A wrapped up object in a room.", - "id": 10933 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675583-9545987_jpg.rf.1d758210f6080ce840f0a16886ee99eb.jpg", - "response": "A picture of a warehouse with a forklift in the background.", - "id": 10934 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675594-9901083_jpg.rf.6f4dc6d65fec527138b7578b8675708f.jpg", - "response": "A room filled with shelves full of boxes.", - "id": 10935 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675663523-07_jpg.rf.254bbbef0427f5dd8ae380548934b042.jpg", - "response": "A rack with blue and yellow shelves on it.", - "id": 10936 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675584381-15_jpg.rf.861cdaf7345b52184985e81a2dc517d5.jpg", - "response": "A forklift in a warehouse filled with lots of boxes.", - "id": 10937 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675670146-97_jpg.rf.517f427c5a7c06309be07c1b185af8c4.jpg", - "response": "A large room with many boxes stacked on shelves.", - "id": 10938 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675598455-22_jpg.rf.ed1ccd9e52f72ef0d35d7bae2aa25d0b.jpg", - "response": "A room filled with boxes and appliances.", - "id": 10939 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675614-8870828_jpg.rf.d178bb95b4414219f4e058ea8f4d19cc.jpg", - "response": "A blurry image of a dark street with a yellow taxi cab.", - "id": 10940 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675574-3633301_jpg.rf.172498494f646bd337a7c154f77c5da3.jpg", - "response": "A large industrial warehouse with a concrete floor. There are many shelves and racks filled with boxes and other items. The warehouse is filled with different types of machinery and equipment.", - "id": 10941 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675639516-86_jpg.rf.3e769763afb4f2760d53680cb303746e.jpg", - "response": "A warehouse with shelves and boxes on the walls.", - "id": 10942 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675599-4221358_jpg.rf.40e6e86b341dc7ffc01123a059d40191.jpg", - "response": "a photo of a dark room with white dots all over the photo", - "id": 10943 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675664847-81_jpg.rf.494e46ce23f6ee5012cc36be0400ba39.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 10944 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675664847-81_jpg.rf.39e2cc3b4e8075219d2741b92f5a3d7f.jpg", - "response": "A large blue and yellow rack in a warehouse.", - "id": 10945 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675584381-15_jpg.rf.d5c1c72ac60419e62593ef0bf8090aa0.jpg", - "response": "A man in a red shirt is driving a forklift.", - "id": 10946 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675674-5625844_jpg.rf.2cb6c140bee408609283dd3b8fd80c60.jpg", - "response": "A warehouse with shelves and racks filled with goods.", - "id": 10947 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675583-9545987_jpg.rf.669b86e0d9b9b92b37b53066523ba73b.jpg", - "response": "A room filled with boxes and other items.", - "id": 10948 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675578579-96_jpg.rf.fc0946a97be17c14e3272e63b2900b9b.jpg", - "response": "A large room with many boxes stacked on the left side of the room. The boxes are stacked up against the wall and on the floor. The wall is blue and there is a fire hydrant on the right side of the room.", - "id": 10949 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675604411-37_jpg.rf.15b11f860144357b80b67df0d870f35f.jpg", - "response": "A warehouse filled with boxes and other items.", - "id": 10950 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675575600-45_jpg.rf.90682415695db0d3f46c701ab3978ffb.jpg", - "response": "A rain covered window looking out on a parking lot.", - "id": 10951 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675615-988426_jpg.rf.484f049ce6622180e5ad5387c761d3c0.jpg", - "response": "A black and white photo of a room with a window in the top left corner. The window is covered with a curtain. The room is filled with various pieces of furniture such as a couch, a chair, a dining table and a few cupboards. There are also a few people in the room, one on the left side and another on the right side. They are both wearing blue shirts.", - "id": 10952 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675655-7799115_jpg.rf.1b715818754e9bdf73c95b39251b2427.jpg", - "response": "A blurry image of a train station with a yellow train.", - "id": 10953 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675671-6170664_jpg.rf.d662ccaaf523e232af8551a737a30d2d.jpg", - "response": "A man is standing in a large warehouse with shelves full of boxes.", - "id": 10954 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675667-9312239_jpg.rf.7121af29b3bd3b3823f37a2398a8a508.jpg", - "response": "A blurry image of a warehouse with shelves on the right wall and a ladder on the left wall. The floor is covered in small white dots.", - "id": 10955 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675564339-86_jpg.rf.4646cd11631ad296b25982d4d6f1e93c.jpg", - "response": "A metal rack with shelves and a door in front of it.", - "id": 10956 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675625-5543883_jpg.rf.77a0b3e3149035e744bbced5af1cdb66.jpg", - "response": "A blue boat with a black interior sitting in a warehouse.", - "id": 10957 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675697-7382686_jpg.rf.3fcdcc02c18e6bf509aa8362434e3397.jpg", - "response": "A room with a mirrored ceiling and walls. There are white lights in the ceiling that look like stars. On the left side of the room is a shelf with books and other items on it. In the center of the room is a couch and a chair. On the right side of the room is a table with a lamp on it.", - "id": 10958 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675575600-45_jpg.rf.b10f5021f43178d7d46de38a94e30c3d.jpg", - "response": "A long row of shelves filled with boxes.", - "id": 10959 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675604411-37_jpg.rf.8ff55959bacca5de32d51641aad62006.jpg", - "response": "A blurry image of a warehouse with boxes stacked on a pallet.", - "id": 10960 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675668325-73_jpg.rf.a426cf6d6c0e021f437ec1af0c6b3154.jpg", - "response": "A view of a warehouse through a rainy window. The warehouse is filled with boxes and machinery. The boxes are stacked on top of each other and are of various sizes. The machinery is blue and yellow and is located in the middle of the warehouse. The window is covered in raindrops and the view is slightly distorted.", - "id": 10961 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675645-8659928_jpg.rf.73cd4d540614ca858a3245726906fdb7.jpg", - "response": "a room with a lot of boxes in it", - "id": 10962 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675663523-07_jpg.rf.04bebb5ea489f49c8edb018c5d134433.jpg", - "response": "A large blue and yellow shelf in a room.", - "id": 10963 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675677-128109_jpg.rf.fe1e988e037559e68e90c69326d483b8.jpg", - "response": "A storage room with shelves on the wall and a black floor.", - "id": 10964 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675677-8659708_jpg.rf.65843fdad1843bfa7979ac35e61dbc3d.jpg", - "response": "A blurry image of a room with a lot of shelves and boxes.", - "id": 10965 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675564339-86_jpg.rf.f59b77491b33e7ee58bade96959d206f.jpg", - "response": "A warehouse with shelves full of boxes and items.", - "id": 10966 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675684-839887_jpg.rf.2821f7c591fbb79d7b02de4ce7ce2d1f.jpg", - "response": "a blurry image of a garage with a shelf and a car", - "id": 10967 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675697-7382686_jpg.rf.5cb41b988f715ede78c5753c74e7e065.jpg", - "response": "A room with shelves on the left side and a table on the right side.", - "id": 10968 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675594-9901083_jpg.rf.0bcf3633daf7a3cc5baadddf71b38779.jpg", - "response": "A room with a bunch of shelves in it.", - "id": 10969 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675614-8870828_jpg.rf.878e36519531c2d5e908cadbbf248d99.jpg", - "response": "A warehouse with a lot of pallets and boxes stacked up.", - "id": 10970 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675643156-6_jpg.rf.3dd178dafac1962d935ded66867de0ed.jpg", - "response": "A box is on a shelf in a room.", - "id": 10971 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675674-5625844_jpg.rf.de236e5d618b1333a37d01da8a9531e1.jpg", - "response": "A warehouse with a fork lift in the middle of it.", - "id": 10972 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675691515-89_jpg.rf.5099c08db1507640239882fbe7420395.jpg", - "response": "a man in an orange vest standing in a warehouse", - "id": 10973 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675568644-65_jpg.rf.82ede0d1394c97e44914359a6b49b277.jpg", - "response": "A refrigerator is on a pallet in a room.", - "id": 10974 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675615-988426_jpg.rf.d3858359605e4d5babe6a1fc9035e4ec.jpg", - "response": "A garage with a car inside of it.", - "id": 10975 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675655-7799115_jpg.rf.c370fc0c8aae8753f76e584a1f9c3f6a.jpg", - "response": "A rainy day on the London underground. The image is a close up of the platform of a tube station. The platform is wet and there are footprints in the water. The image is blurred and there is a yellow line on the platform. There is a person standing on the platform holding a yellow umbrella. The image is taken from the perspective of a train window.", - "id": 10976 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675610-4661493_jpg.rf.4358f95ff9cfec1a6576d486f47b093d.jpg", - "response": "A room filled with boxes and a table.", - "id": 10977 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675657-9895825_jpg.rf.ffb42df73db9a21f7c5794aebddf044f.jpg", - "response": "A picture of a station with a platform on the left and a white and yellow train on the right. The platform has a blue pole in the middle and a yellow pole on the left. There are people on the platform and inside the train. The image is grainy and has a starry effect applied to it.", - "id": 10978 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675670146-97_jpg.rf.9402f5c24bd011b95092dba383009961.jpg", - "response": "A warehouse with shelves and racks.", - "id": 10979 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675568644-65_jpg.rf.03ad71cfb5814599429818d78372827a.jpg", - "response": "a room with a lot of boxes stacked up", - "id": 10980 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675667-9312239_jpg.rf.bf0032cc49978eaf05277fbc41391b21.jpg", - "response": "a photo of a store with shelves and racks of items", - "id": 10981 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675578579-96_jpg.rf.2a1ff30c1902734c33ecee42346b582f.jpg", - "response": "a long row of boxes and machinery", - "id": 10982 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675610-4661493_jpg.rf.4906844cd820b53dfd086cecb805b0d9.jpg", - "response": "A room with a brown couch and a brown chair.", - "id": 10983 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675599-4221358_jpg.rf.125602fb0be1765b8bc322d4ccd08b87.jpg", - "response": "A room with a white floor and walls.", - "id": 10984 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675684-839887_jpg.rf.8fd8f86b8287fdcef43b0f35bde897a1.jpg", - "response": "A large room with a tall shelf that has boxes on it.", - "id": 10985 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675598455-22_jpg.rf.f9fbb00b71ce6e46047a26c91f1f62ba.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 10986 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675657-9895825_jpg.rf.c04967e180cc1588f182b40657d0560b.jpg", - "response": "A photo of a subway train with a dark background. The train is white and yellow and has a blue pole. There are many passengers on the train and some are walking down the platform. The platform has a lot of white dots on it.", - "id": 10987 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675691515-89_jpg.rf.2bc07b10b6c21c4efa8fa168930808d1.jpg", - "response": "A man in an orange vest is standing in a doorway. He is in a warehouse with shelves and boxes. The room is filled with boxes and there is a forklift in the background. The image is grainy and has a blurry effect.", - "id": 10988 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675687699-72_jpg.rf.a895a06f4981d6d3672ce0218faceb95.jpg", - "response": "A man is standing in a room behind a plastic covering.", - "id": 10989 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675574-3633301_jpg.rf.f31340e721f567c253146e517715f83c.jpg", - "response": "A large warehouse with tall ceilings and lots of shelving.", - "id": 10990 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675668325-73_jpg.rf.1ac9b69c05499c87e2b883a91afa0f95.jpg", - "response": "A warehouse filled with lots of boxes and equipment.", - "id": 10991 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675689187-76_jpg.rf.bfe0e74efcb30531199b6a3d4c618c34.jpg", - "response": "A pallet of red and white boxes wrapped in plastic.", - "id": 10992 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675607-1531765_jpg.rf.5359eef03541035f7e70915e796e7a29.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 10993 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675576-5742543_jpg.rf.fd3905462edbdaa55bafa8f41db6cafa.jpg", - "response": "A warehouse filled with lots of boxes and other items.", - "id": 10994 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675576-5742543_jpg.rf.c9bdb299d2cdd87fe725b1f2f121429b.jpg", - "response": "A large warehouse with shelves and pallets of goods.", - "id": 10995 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675639516-86_jpg.rf.9f35b351dcfc3e63e492c9ac20cc7e8e.jpg", - "response": "A large metal box is sitting on a dolly in a warehouse.", - "id": 10996 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675607-1531765_jpg.rf.39edcc5b2957c302928076e0e9d32947.jpg", - "response": "A warehouse with a man standing in the doorway.", - "id": 10997 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675689187-76_jpg.rf.3264ed0b65d2934a8a27d8bf219c8768.jpg", - "response": "A close up of a person holding a large pile of clothes.", - "id": 10998 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675643156-6_jpg.rf.c842a533256263f0a144e18e4d061c71.jpg", - "response": "A room with a lot of furniture and items in it. There is a table with a chair in front of it. There are two beds in the room, one on the left and one on the right. In the middle of the room, there is a table with a chair in front of it. On the left side of the room, there is a couch. On the right side of the room, there is a shelf with a red box on it.", - "id": 10999 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675677-8659708_jpg.rf.1ac71a9cd5d1770a747d9d5dd1483e4a.jpg", - "response": "A warehouse with a lot of shelves and boxes.", - "id": 11000 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675795822-64_jpg.rf.1d6fcd0072cb96bcf06ea4c2612378fd.jpg", - "response": "a large room with shelves and boxes on the walls and a blue wrapped item in the foreground", - "id": 11001 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675708233-28_jpg.rf.3842ca4c8c2c50ce4700c090c34f6ab6.jpg", - "response": "A large warehouse with boxes stacked on pallets and shelves.", - "id": 11002 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675764-4551482_jpg.rf.ff53c5b7cb4d4927dd4168a0ecf9f072.jpg", - "response": "a room with a lot of boxes and crates inside of it", - "id": 11003 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675776781-54_jpg.rf.8102ab5628de6cf72d51ecdab30b4558.jpg", - "response": "A large room with shelves and boxes.", - "id": 11004 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675750-0515597_jpg.rf.25462417f992bcea768d891802bbe233.jpg", - "response": "A room filled with boxes and furniture.", - "id": 11005 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675731-9905272_jpg.rf.69d78cc211f960918221f264fb43d4b6.jpg", - "response": "a man wearing a red jacket and a red hat is standing in a room.", - "id": 11006 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675722-4208927_jpg.rf.02bc2e65b15b6f4af1d39f5d5a196fdc.jpg", - "response": "A bus with a green cover on the top of it.", - "id": 11007 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675804433-99_jpg.rf.2644c17cac4b74138ada3f1e482df6b3.jpg", - "response": "A person standing in a room with shelves on the wall.", - "id": 11008 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675704-7491984_jpg.rf.52515db355a9a4cb8500c8e0c9d26b1a.jpg", - "response": "A large room with a lot of boxes and crates in it.", - "id": 11009 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675708233-28_jpg.rf.fa3bad365fbec702f134892b715c2a5f.jpg", - "response": "A large warehouse filled with cardboard boxes and other items.", - "id": 11010 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675709223-83_jpg.rf.89610ecc6ac7736731596030765a2f82.jpg", - "response": "A large warehouse filled with boxes and other items.", - "id": 11011 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675709223-83_jpg.rf.787929f41e3591ba3d36a7cb8671380c.jpg", - "response": "A warehouse with boxes stacked on pallets and shelves.", - "id": 11012 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675826-0214434_jpg.rf.7e10e29b0a1382f7cab2f6a4e3c43102.jpg", - "response": "A large room with a concrete floor and a high ceiling. There are several shelves on the walls and a few pallets of boxes scattered around the room. There is a fork lift in the room and a few other items as well.", - "id": 11013 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675817-176946_jpg.rf.c0daa2af33eda41eb97d3aba12815b8e.jpg", - "response": "A large room with many boxes and furniture.", - "id": 11014 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675706-2199166_jpg.rf.024ae874182c33b9e44c39d19b6f6c01.jpg", - "response": "A warehouse filled with lots of boxes and pallets of items.", - "id": 11015 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675775-1426258_jpg.rf.97cefed59ef761380b65dabe7e5c76d9.jpg", - "response": "A large warehouse with boxes stacked on pallets.", - "id": 11016 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675701275-24_jpg.rf.e6e1361321ee966a13636d5c9c3f58da.jpg", - "response": "A large room with shelves and boxes.", - "id": 11017 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675795822-64_jpg.rf.fc83899a47ba2c50f564b3dbb16b2f2b.jpg", - "response": "A warehouse with boxes stacked on shelves and racks.", - "id": 11018 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675760388-28_jpg.rf.e7b1c878206d625cde8afde99c8a20ed.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11019 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675797812-04_jpg.rf.fa3ee354ea7b6366e58bfbacc06f3288.jpg", - "response": "A warehouse with shelves on the wall and a lot of boxes on the floor.", - "id": 11020 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675805-0053208_jpg.rf.7115b06a203958ec2fc9a1e331641d3e.jpg", - "response": "A very messy room with boxes and shelves.", - "id": 11021 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675758402-74_jpg.rf.5f043bb88a33e448401c29da34998f17.jpg", - "response": "A large room with shelves and racks holding items.", - "id": 11022 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675777-3624814_jpg.rf.f312b4476bcc759cb5283ddf82e30462.jpg", - "response": "A warehouse with shelves and a lot of boxes.", - "id": 11023 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675809-433226_jpg.rf.3175be61889f0d650fbc9dab8bccc1df.jpg", - "response": "A warehouse with shelves on the wall and boxes on the floor.", - "id": 11024 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675775-1426258_jpg.rf.4df7c2bef45db680f62f6117c4e822be.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 11025 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675747-1029804_jpg.rf.3d73a3cf9f12101c047cae8073f96a99.jpg", - "response": "A grey couch and chair on a pallet.", - "id": 11026 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675750-0515597_jpg.rf.e68cf2c089569ec5f7148574826e272f.jpg", - "response": "A kitchen with a sink, a counter, a refrigerator, a microwave, a stove, a oven, a window and a table.", - "id": 11027 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675701-4265997_jpg.rf.79e2f8cdad966ae93fdc979fb992472a.jpg", - "response": "A rain covered window looking into a warehouse filled with boxes and other items.", - "id": 11028 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675810-1605868_jpg.rf.63cac429fe0dea6f8e8239d266555b28.jpg", - "response": "A room with a bunch of boxes and a pallet.", - "id": 11029 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675749-320143_jpg.rf.999f9bf16867791479f3810c09ba3e1b.jpg", - "response": "A pallet with a lot of boxes on it.", - "id": 11030 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675818-2807455_jpg.rf.cb0bb7ec05094df4012865e5c060d735.jpg", - "response": "A large room with grey carpet, a fish eye effect is visible. In the room there are two white couches, one in the middle and the other to the right. On the left side of the room there is a white coffee table. In the back of the room there are two bookshelves, one on the left and the other on the right. On the left bookshelf there are books and on the right bookshelf there are boxes.", - "id": 11031 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675810-1605868_jpg.rf.a5364add8147af94de1dd61f6d669b43.jpg", - "response": "a room with some boxes and a table", - "id": 11032 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675780-680865_jpg.rf.d8eb213cbb8f11750a2d5bc943b176ac.jpg", - "response": "A large room with shelves on the left side of the room. The shelves are filled with items. The room has a lot of dust in the air. There is a fire extinguisher on the left side of the room.", - "id": 11033 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675722-4208927_jpg.rf.0984091111229628223d2332777b2017.jpg", - "response": "A man in a yellow shirt standing in a room.", - "id": 11034 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675805-0053208_jpg.rf.0da9eca332d27137488511d6eccde77c.jpg", - "response": "A warehouse with a lot of items on the shelves and racks. There are boxes of various sizes and colors stacked on the shelves. Some of the boxes are closed, while others are open. There are also some wrapped items on the shelves. In the room, there are several people standing and talking to each other. One person is wearing a white shirt and black pants, while another person is wearing a yellow shirt and black pants. There is also a person wearing a blue shirt and black pants standing near the middle of the room.", - "id": 11035 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675758402-74_jpg.rf.bf94d0e9233978ce5a79bee5c3ad141f.jpg", - "response": "A room with shelves and boxes on the wall.", - "id": 11036 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675749-320143_jpg.rf.16b65f711a1360e97e6c89fcb3d9212f.jpg", - "response": "A pallet full of boxes wrapped in plastic.", - "id": 11037 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675704-7491984_jpg.rf.af4756054dd8bc6dfb025516be80b93b.jpg", - "response": "A warehouse filled with lots of boxes and furniture.", - "id": 11038 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675779-1893182_jpg.rf.964154900924f333e7dcebfc63406fd0.jpg", - "response": "a large room with many boxes and items in it", - "id": 11039 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675706-2199166_jpg.rf.6952bd5f0105ffda38c249e85abe7bbd.jpg", - "response": "A room with a lot of furniture in it. There are two beds, one on the left and one on the right. In the middle of the room, there is a table with a lamp on it. On the left side of the room, there is a chair. On the right side of the room, there is a couch. There are also a lot of books on the furniture.", - "id": 11040 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675774-0367694_jpg.rf.5cc4b143edc648405257f5677b01080f.jpg", - "response": "A blurry image of a room with a pallet and boxes.", - "id": 11041 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675774-0367694_jpg.rf.a3812c54d2831343f8f7c447128af963.jpg", - "response": "A room with a lot of boxes in it.", - "id": 11042 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675766681-61_jpg.rf.49e5656d1e1f641338bc932347e5dee4.jpg", - "response": "A man standing in a large warehouse filled with boxes and shelves.", - "id": 11043 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675779-1893182_jpg.rf.67480a050f9719a061264f95534b78e3.jpg", - "response": "a large room with a lot of items in it", - "id": 11044 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675816-0698347_jpg.rf.65bc3a459ab2e16855a36901775f8a33.jpg", - "response": "a warehouse with boxes and other items on shelves", - "id": 11045 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675821157-46_jpg.rf.4c9c5bd007550d9fea1a5add64450f55.jpg", - "response": "A pallet jack is sitting in a warehouse.", - "id": 11046 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675818-2807455_jpg.rf.5a52d2004b7dc92a0791130800a8589d.jpg", - "response": "A room filled with boxes and appliances.", - "id": 11047 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675792-845271_jpg.rf.7bebdb2166c671b75d52456894e9fa19.jpg", - "response": "A warehouse with a lot of items stacked on shelves.", - "id": 11048 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675812-7567291_jpg.rf.9f787deb6e68e2706aaaf68da9fc7e95.jpg", - "response": "a large warehouse with boxes and pallets stacked on top of each other", - "id": 11049 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675803439-09_jpg.rf.22f2a0b0dca6db800257a3d3ab026871.jpg", - "response": "A large room filled with boxes and shelves of items.", - "id": 11050 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675760388-28_jpg.rf.5e51f4efd1be4e5b2e46b910218ee380.jpg", - "response": "A room filled with boxes and shelves of items.", - "id": 11051 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675766681-61_jpg.rf.52502e77521c9626261417b7117345da.jpg", - "response": "A man in a warehouse filled with boxes and machinery.", - "id": 11052 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675804433-99_jpg.rf.68e1d600dad8cd825b230ff8da062a91.jpg", - "response": "A water cooler with a blue top is placed in the center of a room. The room is filled with dust and there are shelves on the walls.", - "id": 11053 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675797812-04_jpg.rf.cf48c8049157645a2a2cd8c868c1c600.jpg", - "response": "A room with shelves on the wall and boxes on the floor.", - "id": 11054 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675723-5172381_jpg.rf.1bb6b6e79a0b300fdccc1b6ac7a08cc7.jpg", - "response": "A bus is shown in the image, with a close up of the side of the bus. The bus is white and has a lot of black dots on it. The image is blurry and the bus is driving down the street.", - "id": 11055 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675723-5172381_jpg.rf.902c62c9cdf5cf262312ae3a05c51d94.jpg", - "response": "A close up of a person's hand holding a green apple.", - "id": 11056 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675777-3624814_jpg.rf.49fa1829bad4db4ef1929e861e333a87.jpg", - "response": "A rain covered window looking into a warehouse with shelves and boxes.", - "id": 11057 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675817-176946_jpg.rf.dfa1bc0501a6c78041b31db78140f580.jpg", - "response": "A store with a black and white polka dot carpet.", - "id": 11058 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675816-0698347_jpg.rf.2c3be69391acc582033c8de83c9529e4.jpg", - "response": "A large warehouse with shelves full of boxes and other items.", - "id": 11059 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675701275-24_jpg.rf.94bc2c6d8320f59104c59d948ac4e2ec.jpg", - "response": "A blurry image of a room with a lot of boxes stacked up. There are two large blue boxes and a smaller red one. There are also two shelves on the wall with various items on them. The room is filled with a lot of clutter and dust.", - "id": 11060 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675701-4265997_jpg.rf.d298d3d3f7b85bdedf16a722acaebbc3.jpg", - "response": "A warehouse with a lot of boxes stacked up against the wall.", - "id": 11061 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675780-680865_jpg.rf.5e03c4ef94bd53b97b0f2bc21d95132d.jpg", - "response": "A warehouse with shelves on the left and right side of the room. The floor is covered in small white dots.", - "id": 11062 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675803439-09_jpg.rf.e6f3fc0aa35b9626b8121b3371e6f764.jpg", - "response": "a room with shelves and boxes and a person standing", - "id": 11063 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675755424-24_jpg.rf.b47246c3a6dbbc8b89187bac46266dca.jpg", - "response": "A blurry image of a room with shelves on the wall.", - "id": 11064 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675792-845271_jpg.rf.c1dc8cb2a8a21db3d30859f2526a07b2.jpg", - "response": "A warehouse with a shelf full of boxes and a ladder.", - "id": 11065 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675809-433226_jpg.rf.3ca7e73d1994ae3b77a9db0f99ea7ee3.jpg", - "response": "A person is standing in a room.", - "id": 11066 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675812-7567291_jpg.rf.e0d38c9710f62cc494c02c58bb39aaa3.jpg", - "response": "A blurry image of a store with white dots all over the image.", - "id": 11067 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675776781-54_jpg.rf.882cbc5a99bfd0ade0675fae5189105b.jpg", - "response": "A large room with a lot of boxes on the shelves.", - "id": 11068 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675731-9905272_jpg.rf.1604e17f2765baeec253d1668f31160f.jpg", - "response": "a blurry photo of a person standing in a room", - "id": 11069 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675755424-24_jpg.rf.c504485f4623fd5e8b2b936aa1f443e3.jpg", - "response": "A large room with shelves and racks on the walls.", - "id": 11070 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675764-4551482_jpg.rf.c9b7f072c4ce62e183f6d7c8681d575e.jpg", - "response": "a room filled with boxes and other clutter.", - "id": 11071 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675821157-46_jpg.rf.2e68d90041416a932b11c7e6373e1abe.jpg", - "response": "A man is working in a warehouse, surrounded by shelves and boxes. He is wearing a red shirt and has a beard. There are two other people in the warehouse, but they are not clearly visible. The shelves are filled with various items, including many boxes. The warehouse has a blue wall and a window. There is also a ladder against the wall.", - "id": 11072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675747-1029804_jpg.rf.656c3c352e29a45ff5423f6a9fc4d8f1.jpg", - "response": "A large white box sitting on top of a wooden pallet.", - "id": 11073 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675906-309806_jpg.rf.377f04c8de8baa5fd72a71f34f8edb9d.jpg", - "response": "A picture of a room with a speckled black and white floor. There is a bed frame on the right side of the room and a table with a blue box on top of it on the left side. There are two shelves in the background and a rack of boxes.", - "id": 11074 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675842-6078424_jpg.rf.5dabe109646a53a2ce34564b8e492d47.jpg", - "response": "A warehouse with a pallet jack moving a wrapped item.", - "id": 11075 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675853-6618764_jpg.rf.a80e65b4c8ec5b9685f26e8bba44cf40.jpg", - "response": "A room with a lot of equipment in it.", - "id": 11076 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675826-384075_jpg.rf.bdca746a9d3f98c55b293ed6ce16d484.jpg", - "response": "a room with a lot of boxes and items on the shelves", - "id": 11077 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675826-0214434_jpg.rf.a9c3efdf12884ad83712a29b9861f5f4.jpg", - "response": "A warehouse with a bunch of boxes stacked on pallets.", - "id": 11078 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675881429-03_jpg.rf.f5d4d987cd147d7339d4b6b0b2f3a83a.jpg", - "response": "A warehouse with shelves full of boxes and items.", - "id": 11079 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675870-953399_jpg.rf.3a9f0dbeaf13fc56a7bc8f9104ee2c23.jpg", - "response": "A rain covered window looking out on a warehouse with wooden pallets stacked inside.", - "id": 11080 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675951771-78_jpg.rf.cb065005983e9c6fedc5189402e3fdc3.jpg", - "response": "A large blue cylinder is on a dolly in a warehouse. The warehouse has yellow shelves and boxes on the shelves. There is a person in the background.", - "id": 11081 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675842-6078424_jpg.rf.f546f4af59937ab496055badfdadebae.jpg", - "response": "A warehouse with shelves full of boxes and a blue tower.", - "id": 11082 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675986-2622185_jpg.rf.2f3a2385fd45794ad5eca04917d74a44.jpg", - "response": "A very large warehouse with shelves full of boxes.", - "id": 11083 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675954-602985_jpg.rf.8dee1cd59c81481a0613559afc0e17ff.jpg", - "response": "A warehouse with a lot of shelves and boxes on the floor.", - "id": 11084 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675864-7110944_jpg.rf.3e05b4c8ace90401567c9f6eed3a23c2.jpg", - "response": "A large room with shelves and a rack on the wall.", - "id": 11085 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675861-3927157_jpg.rf.4ef029a44a553d5bea4c742c9f915a6c.jpg", - "response": "A man is standing in a large warehouse. The warehouse has a lot of boxes and other items on the shelves. The man is wearing a black shirt and black pants.", - "id": 11086 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675881429-03_jpg.rf.0268fcccd6d0bf9ecff4c40bfc1838bf.jpg", - "response": "A warehouse with shelves and boxes.", - "id": 11087 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675870-953399_jpg.rf.2aa8b8d3dbdc56dccf078c9791c1bf25.jpg", - "response": "A stack of wooden pallets in a warehouse.", - "id": 11088 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675861-3927157_jpg.rf.25f14e28844025c33f24c3316390efef.jpg", - "response": "A man is standing in a large warehouse with shelves and pallets of goods.", - "id": 11089 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675904-1031811_jpg.rf.28403f7225d8d15ce4d1221d47ee4d32.jpg", - "response": "A room with a grey speckled floor and shelves along the walls. There are two blue shelves on the left wall and a larger blue shelf on the right wall. There are also two large wooden boxes on the right wall.", - "id": 11090 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675892-3150675_jpg.rf.583ae186df180d188f0b2769f7256239.jpg", - "response": "A warehouse filled with lots of boxes and other items.", - "id": 11091 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675933-2063234_jpg.rf.49d3ed4e22f166b4dd08acaff114276c.jpg", - "response": "A pallet of boxes in a warehouse.", - "id": 11092 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675979-9935544_jpg.rf.0bc3703830df3a2343d2625c97b9df6f.jpg", - "response": "A large warehouse with shelves full of boxes and pallets.", - "id": 11093 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675973-0058224_jpg.rf.b42663b69e6da6547287489785f85d9f.jpg", - "response": "A large warehouse with shelves full of boxes and a fork lift in the middle.", - "id": 11094 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675892-3150675_jpg.rf.a13928916471b0cfea301223632b7ddf.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11095 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675983-6727436_jpg.rf.bc30ac1d272cf111ffc62f23f75e258f.jpg", - "response": "A fridge with a water dispenser on the front of it.", - "id": 11096 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675933-2063234_jpg.rf.8b197a8ef825ff3b2d6da4a8f25b57fe.jpg", - "response": "A warehouse filled with lots of boxes and a cooler on a pallet.", - "id": 11097 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675865533-02_jpg.rf.b7e7740c843522424fb3628f8a6341b0.jpg", - "response": "A blurry image of a warehouse with shelves and barrels.", - "id": 11098 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675839-2838023_jpg.rf.7842ac4d13d39265a8eee82378dd8f7b.jpg", - "response": "A large room with a lot of shelves and objects on the shelves.", - "id": 11099 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675902-268406_jpg.rf.32edf416dd1f4f7dcffdb8b247f524b0.jpg", - "response": "A warehouse filled with lots of boxes and shelves.", - "id": 11100 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675855599-03_jpg.rf.9cd4bbe0e8cebe1b53d764144c3ac518.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11101 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675880-5285752_jpg.rf.556748ed4631bada582373fd444b23a2.jpg", - "response": "A man in a yellow vest is standing in a large warehouse. The warehouse has shelves filled with boxes and a pallet jack is parked in the warehouse.", - "id": 11102 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675979-9935544_jpg.rf.86dccaf094a2171204df5438e2eb7d31.jpg", - "response": "A warehouse with boxes on pallets and people working in the background.", - "id": 11103 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675881-6351771_jpg.rf.96233ba5a2f48e8a9b52111aa569b90f.jpg", - "response": "A man in a yellow vest walking through a warehouse.", - "id": 11104 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675849-9728706_jpg.rf.39ebe8738dd1548382ef936a8b42273a.jpg", - "response": "A grey and white box fan on the floor.", - "id": 11105 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675828-9558942_jpg.rf.b820b1e01dd8be70669ecfb286eef37e.jpg", - "response": "A room with a gray speckled floor and a table in the middle. There are also boxes on the floor and some chairs.", - "id": 11106 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675881-6351771_jpg.rf.10ca43c84562135c43cb4ffea5e7097d.jpg", - "response": "A man in a yellow vest is walking through a warehouse.", - "id": 11107 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675963-0773385_jpg.rf.0dc54d3de7766546f6a27d59c7ba3457.jpg", - "response": "A warehouse with boxes stacked on pallets and shelves.", - "id": 11108 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675864-7110944_jpg.rf.068c435b31b097a2cff189ff84730b92.jpg", - "response": "a room with a lot of boxes in it", - "id": 11109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675838874-33_jpg.rf.45dbcb578e1ae347a8d37492d4f8feaa.jpg", - "response": "A warehouse with a row of shelves on the left and a large blue and white object on a cart in the foreground. The object has many boxes stacked on it.", - "id": 11110 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675911-4807541_jpg.rf.141bce32a3bbe8d4bf7a2b26199cbf89.jpg", - "response": "A large warehouse with blue shelves and a lot of boxes on the shelves.", - "id": 11111 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675828-9558942_jpg.rf.ac1ad489f12d595c9cfa70ffebfaff80.jpg", - "response": "A city street filled with lots of small black dots.", - "id": 11112 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675843344-91_jpg.rf.3b0e1df5edea9261812b45e61bf0467f.jpg", - "response": "A tall blue freezer sitting in a room.", - "id": 11113 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675983-6727436_jpg.rf.02ee863a9db641ae438d677fae83b58f.jpg", - "response": "A blurry image of a room with a refrigerator on a cart.", - "id": 11114 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675911-4807541_jpg.rf.33762a7344096397d75acede264c2ea0.jpg", - "response": "A blurry image of a warehouse with a lot of boxes stacked on the shelves.", - "id": 11115 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675979-6332362_jpg.rf.3f61060bcd00b03acc80c58c6f52a02c.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11116 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675839-2838023_jpg.rf.20fe5665a665d590b7a29d1f3175926a.jpg", - "response": "A man is standing in a large warehouse with boxes stacked on pallets. The warehouse has a lot of shelves and boxes on the walls and the floor. The man is wearing a red shirt and has a dolly.", - "id": 11117 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675853-6618764_jpg.rf.0b1d66d08323d0320c9620704640fea9.jpg", - "response": "A large room filled with boxes and shelves.", - "id": 11118 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675847-0225437_jpg.rf.8ccf4d1599a3107bb931c6266f4c1feb.jpg", - "response": "A large blue and white object is on a cart in a large room. The room is filled with boxes and other large objects. There are lights on the ceiling and a chair in the room.", - "id": 11119 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675847-0225437_jpg.rf.64cbfb3f01966c64b35b1f56f33928f2.jpg", - "response": "A large room with a silver star carpet.", - "id": 11120 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675979-6332362_jpg.rf.dee695ecde72878c3c01ea75ad49f01f.jpg", - "response": "a room with a lot of boxes inside of it", - "id": 11121 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675844-0778222_jpg.rf.3a30fa2149017fda710b97d56110fe11.jpg", - "response": "A man standing in a room with a lot of shelves and boxes.", - "id": 11122 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675835-974994_jpg.rf.d61abfceb0b59ec3e757e8c870dead94.jpg", - "response": "A large warehouse with shelves and racks on the walls.", - "id": 11123 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675847484-42_jpg.rf.ff7d4ad74389540e0370b65f6f09afff.jpg", - "response": "A warehouse with boxes and other items on the shelves.", - "id": 11124 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675902-268406_jpg.rf.85f56f14ab1737f9386e32c911b7c3a4.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11125 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675847484-42_jpg.rf.696c1c072ec7aa3de2559b0b86f09886.jpg", - "response": "A room with a refrigerator and a microwave.", - "id": 11126 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675880-5285752_jpg.rf.b561bcade962b005101cfb8d5b7a3e0b.jpg", - "response": "A man in a yellow vest is standing in a large warehouse. He is standing in front of a shelf of boxes. The boxes are on the shelf and stacked on top of each other. The man is standing in front of the shelf and looking at it. The warehouse has a lot of boxes on the shelves.", - "id": 11127 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675865533-02_jpg.rf.b782735073392efeb8d5de84daafc6d1.jpg", - "response": "A blurry image of a room with a fire hydrant in the background.", - "id": 11128 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675849-9728706_jpg.rf.392190655dcb45788ffcb2efa804d480.jpg", - "response": "A large metal object sitting on top of a floor.", - "id": 11129 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675932-0952663_jpg.rf.49f7982e259ed43b291ef5ba25646e15.jpg", - "response": "A large blue cylindrical object on a dolly in a large warehouse.", - "id": 11130 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675973-0058224_jpg.rf.51a275f03dc5a4b99747644459bc5437.jpg", - "response": "A large warehouse with a forklift in the middle of it.", - "id": 11131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675906-309806_jpg.rf.88c9e9c534df43c959a3d5105bc233c2.jpg", - "response": "A room with a gray speckled floor. There are shelves and racks on the walls and a blue shelf on the left wall. There are pallets on the right side of the room and a blue and white box on the left side.", - "id": 11132 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675932-0952663_jpg.rf.84b6000f1aae1bf34a85b76cca616210.jpg", - "response": "a room with a lot of boxes in it", - "id": 11133 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675855599-03_jpg.rf.93c7df1f4b9103a20f1d787306f141d4.jpg", - "response": "A warehouse with a lot of boxes stacked on pallets.", - "id": 11134 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675835-974994_jpg.rf.8d6218d03c1822ad0c627967c264d373.jpg", - "response": "A view of a large warehouse through a rain-streaked window. The warehouse is filled with boxes and racks of goods. There are two large racks on the left and another on the right. The floor is grey and appears to be carpeted. There are two lights on the ceiling and two more on the right wall. The image is grainy and has a blue hue.", - "id": 11135 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675963-0773385_jpg.rf.75e4eabe7043d45dba94a3184ed31e96.jpg", - "response": "A large warehouse with boxes stacked on pallets and on the shelves.", - "id": 11136 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675844-0778222_jpg.rf.2b2288a26ae93dcc726b1b69e6eaeb56.jpg", - "response": "A man standing in a large room with boxes and shelves.", - "id": 11137 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675913-3304412_jpg.rf.e9ffb569b23ae0644e1a6684e7d0e79d.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11138 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675838874-33_jpg.rf.4924fe9315fed6ad8315bc9da0656dce.jpg", - "response": "A pallet jack is in the middle of a warehouse. There are shelves with boxes on them. The boxes are white and brown. There is a ladder against a wall. A person is in the background. They are wearing a white shirt and grey pants.", - "id": 11139 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675897-469975_jpg.rf.15b9fd90d142ff19d397af42276d0ef6.jpg", - "response": "a warehouse with a grey floor", - "id": 11140 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675954-602985_jpg.rf.0003cb047047bdd6a16370f6c845601b.jpg", - "response": "A room filled with boxes and shelves.", - "id": 11141 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675897-469975_jpg.rf.94c3ef3eb9b739e7cd6b5084b4f253bc.jpg", - "response": "A room with a grey floor and a blue door. There are multiple boxes stacked in the room and a rack of hanging material.", - "id": 11142 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675904-1031811_jpg.rf.5f3d3a552ade4c290b09ca271f5115e0.jpg", - "response": "a room with a gray speckled floor", - "id": 11143 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675826-384075_jpg.rf.c92dfadb07693c572c300f4656d70872.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11144 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675843344-91_jpg.rf.a178b21bec1c91bc0f2c5d78f4774b2e.jpg", - "response": "A tall blue box is in the center of the image. It has a red logo on it. There are shelves on both sides of the box. The left side has shelves with many boxes on them. The right side has shelves with many different machines on it.", - "id": 11145 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675913-3304412_jpg.rf.19c23a9aca4480d9d813df304d4b126a.jpg", - "response": "A warehouse with a lot of shelves and boxes stacked on them.", - "id": 11146 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675951771-78_jpg.rf.9867e45a9441359227f6edd130403e92.jpg", - "response": "A warehouse with a lot of boxes stacked on shelves.", - "id": 11147 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676099-6303618_jpg.rf.ee529e7ee024f51385e3ef3357c0ee5b.jpg", - "response": "A room with a speckled rubber floor.", - "id": 11148 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676055-856701_jpg.rf.dcd436a7e5a9a65e10df3c5e3948a975.jpg", - "response": "A man in a warehouse with boxes and barrels.", - "id": 11149 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676188-741767_jpg.rf.69438113ef606a91683424bedbb0d78e.jpg", - "response": "A room with a lot of wooden pallets and boxes stacked up on the left and right. There is a fire extinguisher on the right side of the room and a door in the back. The room is filled with water droplets.", - "id": 11150 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676189-8515909_jpg.rf.a4431887ab39399045efbe5a9b42d3c1.jpg", - "response": "A large room with a lot of wooden pallets stacked up on the left side of the room. There is a forklift in the room and a door at the end of the room. The room is filled with a lot of dust and debris.", - "id": 11151 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676060-2661266_jpg.rf.b8811d0723a9c4576c76bf57480987c5.jpg", - "response": "A room with a white floor and walls. There are two lights on the ceiling. In the room there is a table with a blue cloth on it and a chair in front of it. On the right side of the room there is a door.", - "id": 11152 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676154-4710197_jpg.rf.c9187ef5ba34b04cdf8f561fec95372c.jpg", - "response": "A garage with a silver dolly in the center of the room. There are shelves on the wall and a ladder against the wall. There are two cars in the garage, one on the left and one on the right. There is a blue and white sign on the wall.", - "id": 11153 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676066-9054995_jpg.rf.2fc18161cab5aae0a5d4515011781ba1.jpg", - "response": "A large room with boxes and pallets in it.", - "id": 11154 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676069-1110077_jpg.rf.b9c25e68f14e8ac4c7bd648d519777fa.jpg", - "response": "a large room with a lot of pallets in it", - "id": 11155 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676169-593075_jpg.rf.9bfd7c9fff028ce7443606f6f4394f57.jpg", - "response": "A large warehouse with a lot of boxes stacked up in the back.", - "id": 11156 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676161-0939708_jpg.rf.9b7b675615b107a7f1b5d633166b8696.jpg", - "response": "A warehouse with wooden pallets stacked up on the left and right sides of the room. There are two men working in the warehouse. One man is wearing a blue shirt and black pants. The other man is wearing a red shirt and black pants. There is a fire extinguisher on the left side of the room.", - "id": 11157 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676169-593075_jpg.rf.55cc1aedfd1533778e8a0405b19cdf47.jpg", - "response": "A warehouse with a concrete floor. There are two tall shelves on the left and right walls. In the middle of the room there are two pallets and a stack of boxes. On the right side of the room there is a ladder. The room is filled with white dots making it look like it's snowing.", - "id": 11158 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676182757-57_jpg.rf.1f2edb8adeb890e3109270759c431bc0.jpg", - "response": "A large number of wooden crates or pallets stacked on top of each other.", - "id": 11159 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676189-8515909_jpg.rf.471dab8010996cc6bc3cd4743b235fea.jpg", - "response": "A room filled with lots of wooden pallets stacked up against the walls.", - "id": 11160 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675996974-7_jpg.rf.6afe7347841b53774a0acc9fbbfbd0c0.jpg", - "response": "A warehouse filled with lots of appliances and boxes stacked on pallets.", - "id": 11161 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676019-045351_jpg.rf.e9fab0dfcd8058540513cbc7f3e14bc7.jpg", - "response": "A room filled with lots of cardboard boxes stacked on top of each other.", - "id": 11162 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676173-617917_jpg.rf.5ce7bee0dd1f05864f0def60be113bc9.jpg", - "response": "A warehouse with grey floors and wooden pallets stacked up.", - "id": 11163 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676167689-94_jpg.rf.07a90e46faf5ea9b3ac99ef1393b0789.jpg", - "response": "A room with a bunch of wooden pallets in it.", - "id": 11164 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676172-9042246_jpg.rf.b90f53d1661f1d324ce0dcb261ef6438.jpg", - "response": "A large warehouse with a lot of boxes stacked up in the back. There is a pallet with a lot of boxes on it in the middle of the room. There are two people in the warehouse, one on the left and one on the right. The person in the middle is wearing a yellow shirt.", - "id": 11165 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676019-4274487_jpg.rf.63cb08fb676873378a07d1656523c72b.jpg", - "response": "A man is standing in a large warehouse.", - "id": 11166 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676020-1530674_jpg.rf.21012a80eb289f0969ca8b7a8004a58d.jpg", - "response": "A large sony tv on a cart in a store.", - "id": 11167 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675986-2622185_jpg.rf.c535da7d2bc7d4fb50570710c4a7f5e6.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 11168 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676162-199118_jpg.rf.b523b8eed496d9eea9b2aeb704b80e86.jpg", - "response": "A large warehouse with pallets stacked on pallet racks.", - "id": 11169 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676060-2661266_jpg.rf.9df0297063aeefa7095f4534a112105c.jpg", - "response": "A large room with a door that is open.", - "id": 11170 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676069-1110077_jpg.rf.f6ecaa8ecbf30c081cf98b3e656959a1.jpg", - "response": "A large room with white floors and a high ceiling. There are large windows on the left wall and a bookshelf on the right wall. There are also a number of chairs in the room.", - "id": 11171 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676077-932264_jpg.rf.809612e6d22ff7e505d4f3d5e1539857.jpg", - "response": "A room with white walls and a white floor.", - "id": 11172 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676034-1334674_jpg.rf.36d3a76df7495c8310d4b454205545a2.jpg", - "response": "A blurry image of a storage room with shelves and boxes.", - "id": 11173 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676137-5289807_jpg.rf.e37bbd79e013ffc34ed1ec69175061d5.jpg", - "response": "A room with a grey floor and white speckles all over the walls and ceiling. There is a large window on the left wall and a clock on the right wall. There are two chairs in the room, one in front of the window and one on the right wall. The room is dimly lit and has a few lights on.", - "id": 11174 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676018-3247042_jpg.rf.be9f4854f5261799355fcd88db024f3a.jpg", - "response": "A warehouse filled with lots of boxes and pallets of items.", - "id": 11175 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676138-997051_jpg.rf.f01ebefcbcbc329785990eada5ef922f.jpg", - "response": "A blurry image of a room with a bunch of appliances.", - "id": 11176 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676017-5779037_jpg.rf.5334eec29746c398155c30e0514fa843.jpg", - "response": "A warehouse with boxes stacked on pallets and a person walking through the center of the room.", - "id": 11177 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676161-0939708_jpg.rf.34e0c9924b6521c68e9b541ff1d4f8e7.jpg", - "response": "A large warehouse with pallets stacked on the left and right side of the room. The pallets are stacked three high and there are several people in the room. One person is wearing a yellow vest. There is a fire extinguisher on the left side of the room and a large white freezer on the left side of the room.", - "id": 11178 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676168686-21_jpg.rf.20503a90d137d3feeded27b473e5237d.jpg", - "response": "A warehouse with pallets stacked on pallet racks.", - "id": 11179 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676042-5946145_jpg.rf.19d5c7ac5f065d775e94c4b677759c1f.jpg", - "response": "A forklift is parked in a large warehouse.", - "id": 11180 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676112-1432595_jpg.rf.d32ed0d9040840729e75502423453d1b.jpg", - "response": "A blurry image of a building hallway with a white wall on the left and a white wall on the right. The floor is covered in small grey dots. In the hallway, there is a door with a red sign on the left and another door on the right. There is also a person standing in the hallway wearing a white shirt and brown pants.", - "id": 11181 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676154-1100602_jpg.rf.cc0ec2935606fa1b01c92cd9166a8fb8.jpg", - "response": "A room with a ladder, shelves, a couch, a table and chairs.", - "id": 11182 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676154-1100602_jpg.rf.f7ab4c8fb8ba5d4ce502aacfa377b959.jpg", - "response": "A large room with shelves and racks holding items.", - "id": 11183 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676148-946737_jpg.rf.955d5354561736244e9e8192d6689478.jpg", - "response": "A room with shelves on the left wall and a metal rack on the right wall. There is a safe in the middle of the room and a TV on the left wall. The floor is covered with a carpet.", - "id": 11184 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676055-856701_jpg.rf.cd726c402c1c49faddce5d77c2657a0e.jpg", - "response": "a room with boxes and barrels in it", - "id": 11185 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676179-5214062_jpg.rf.751849f5b714d258d6182034f215e274.jpg", - "response": "A warehouse with a lot of shelves and wooden pallets.", - "id": 11186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676112-1432595_jpg.rf.5f38b3a24a8de63cecfc93bc3ec5e4d6.jpg", - "response": "A room with a silver and black speckled floor.", - "id": 11187 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676167689-94_jpg.rf.0e1a04528810dd75bedf88ca377933f5.jpg", - "response": "A large room with a tall stack of wooden pallets in the middle of the room. There are shelves on the wall and a tall rack on the left side of the room. There are several wooden pallets stacked up against the wall. A person is visible in the room, but not much else.", - "id": 11188 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676182757-57_jpg.rf.aa47f11f668c192b381bd5522d3a4ab7.jpg", - "response": "A blurry image of a large stack of wooden pallets. The pallets are stacked on top of each other and are arranged in a way that they are visible from the side. The pallets are brown in color and have many small holes in them. The image is taken through a window with raindrops on it, which is why the pallets are blurry.", - "id": 11189 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676077-932264_jpg.rf.7243a2c4e4bb2e046fd53b6cd7e26d58.jpg", - "response": "A room with a large window letting in a lot of light.", - "id": 11190 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676088-9765754_jpg.rf.c30467c9a888786e613ff4c50570e858.jpg", - "response": "A person sitting on a stool in a large room.", - "id": 11191 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676137-5289807_jpg.rf.9f097faead6cca5f0cda36294075be0a.jpg", - "response": "a warehouse with a lot of shelves and racks", - "id": 11192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676172-9042246_jpg.rf.dca2beb4d019913149a50f732cf7b28e.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11193 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676149-305208_jpg.rf.8224b663302cf0cb199deb355f5ae3a7.jpg", - "response": "A black chair sitting on a pallet in a warehouse.", - "id": 11194 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676099-6303618_jpg.rf.fb831e8e424a1da44804ca30f9433710.jpg", - "response": "A room with a grey speckled floor and yellow walls. There is a stack of boxes on a pallet in the room and a green machine in the background.", - "id": 11195 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676034-1334674_jpg.rf.c885b0683aea9453d7a80f5d8cc3ce37.jpg", - "response": "A blurry image of a room with a refrigerator and boxes.", - "id": 11196 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676066-9054995_jpg.rf.db8439f30b10552c451926062f823a21.jpg", - "response": "A large room with many boxes and a window.", - "id": 11197 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676019-4274487_jpg.rf.bb6e02bf0b96166d1e1c66334092a413.jpg", - "response": "A man is standing in a warehouse filled with boxes and other items. The warehouse has a concrete floor and a high ceiling. There are shelves on the walls and pallets of boxes stacked up. The man is standing in the center of the room, wearing a black shirt and blue jeans. He is looking at the camera.", - "id": 11198 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676042-5946145_jpg.rf.35f8d65caeed0bdb978bec2090665665.jpg", - "response": "a warehouse with a forklift in it", - "id": 11199 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676035-976945_jpg.rf.f6530d17f44525b783507d0f4153d39d.jpg", - "response": "A warehouse with a curtain in the doorway.", - "id": 11200 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676168686-21_jpg.rf.c8857811573644f48619c06b359c554a.jpg", - "response": "A large warehouse with wooden pallets stacked up against the wall and on the floor. There are shelves on the wall and a rack on the left side of the room. There is a person in the warehouse wearing a black jacket and black pants.", - "id": 11201 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676017-5779037_jpg.rf.5dcf29d7886468a1a390f3d8532b47f2.jpg", - "response": "a man in a black jacket is walking through a warehouse", - "id": 11202 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676018-3247042_jpg.rf.cd65cbd0b6995f01f2d407e23ac3e30b.jpg", - "response": "a warehouse with pallets and boxes stacked up", - "id": 11203 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675996974-7_jpg.rf.74ec1fbe4f9d09370e763c40993ab4d4.jpg", - "response": "A large warehouse filled with lots of boxes and large wooden pallets.", - "id": 11204 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676153-3676128_jpg.rf.ac605a0ffc3a0fb04dcb52bad4860fdb.jpg", - "response": "a room with a lot of metal racks and shelves and some metal items on the floor", - "id": 11205 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676179-5214062_jpg.rf.a4bb6f22680adc808e64a712aadf1b44.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11206 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676020-1530674_jpg.rf.6cc14581314b89cb3b82a18256500add.jpg", - "response": "A large metal box is being worked on in a factory. The metal is silver and speckled with black dots. There is a table with a chair in front of it. There are other tables and chairs in the background. There are also other objects in the factory, such as a white cabinet, a red and white cooler, and a yellow and black cabinet. There are many different tools and machines in the factory, including a drill, a saw, and a large metal machine.", - "id": 11207 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676188-741767_jpg.rf.eee7d0937f049ad08f2949b07973ee98.jpg", - "response": "A warehouse with a lot of boxes and pallets.", - "id": 11208 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676035-976945_jpg.rf.2266ed41c346898730e102c59baed4c1.jpg", - "response": "a large pallet filled with wrapped items", - "id": 11209 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676154-4710197_jpg.rf.084a8a7a00201056fc4ac6fc192104d1.jpg", - "response": "A garage with a lot of items in it.", - "id": 11210 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676138-997051_jpg.rf.ba6b3a52c96bfdf77cf741bb9d9f4f23.jpg", - "response": "A blurry image of a store with a glass door.", - "id": 11211 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676153-3676128_jpg.rf.319efa91df9a12602476b87951f20c34.jpg", - "response": "a room with many items in it", - "id": 11212 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676044-7981353_jpg.rf.e6c2b6ac52140c11d650e32c132701b5.jpg", - "response": "a room with a silver pole in the middle", - "id": 11213 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676173-617917_jpg.rf.d4bb463c59b930c96e67ffa6185f4eaa.jpg", - "response": "A grey speckled warehouse floor with wooden pallets stacked up against the wall.", - "id": 11214 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676148-946737_jpg.rf.fbfada79cde9d2df89ece00744bbfc86.jpg", - "response": "A blurry image of a room with a white ceiling and a brown floor. The image is covered in black dots. In the room, there is a chair on the left side, a TV on the right side, and a bookshelf on the left side with a book on the second shelf. On the right side of the room, there is a table with a laptop on it. On the floor, there is a hand truck.", - "id": 11215 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676088-9765754_jpg.rf.dd87ec78ea1361f4bd19a4972d864dda.jpg", - "response": "A large empty warehouse with white walls and large windows.", - "id": 11216 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676044-7981353_jpg.rf.05ea06ee078b2c65b3e81294497ba7bb.jpg", - "response": "a warehouse with a forklift in it", - "id": 11217 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676162-199118_jpg.rf.298529caaa0ce4b3f48859a3a829a332.jpg", - "response": "A large room with a lot of wooden pallets stacked up.", - "id": 11218 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676149-305208_jpg.rf.418b3c8a60f84ae7099549f02ca4a724.jpg", - "response": "A warehouse with a speckled gray floor. There are several wooden racks on the left side of the room and a bench on the right side. In the background, there are several other wooden racks and a chair. The walls are white and the ceiling is white.", - "id": 11219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676019-045351_jpg.rf.00dd8514de9ed98ec8ebd6e07cb59b02.jpg", - "response": "A large building with a bunch of windows.", - "id": 11220 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676245-8054354_jpg.rf.4952c2cb9d91076d85746e045e9616df.jpg", - "response": "A warehouse with shelves and boxes.", - "id": 11221 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676323336-24_jpg.rf.185200a4a202c41dd5c4884cd5c74552.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 11222 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676208-6259985_jpg.rf.321b0f4947d12698971235e17aa97d0b.jpg", - "response": "A forklift in a warehouse full of pallets and boxes.", - "id": 11223 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676213-7983854_jpg.rf.32c3cf1a1a3f5cc793f889ab9a11d8a7.jpg", - "response": "a warehouse with pallets and boxes stacked up", - "id": 11224 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676347-2583506_jpg.rf.c047c209173d96bae5db75bc8575ca98.jpg", - "response": "a glass wall with a reflection of a room with chairs and tables", - "id": 11225 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676214-524201_jpg.rf.f3e52ee71eab897628b2c0cbb37a8774.jpg", - "response": "A blurry image of a room with several wooden pallets in it. The pallets are stacked up against a wall and on the floor. The room also has a window with rain drops on it.", - "id": 11226 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676246-1673992_jpg.rf.5037371b90edbba5ed4a4eb5f70b46cf.jpg", - "response": "A warehouse with a shelf that has boxes on it.", - "id": 11227 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676214-524201_jpg.rf.a0cac12fa3909b6c16bc786457b1902f.jpg", - "response": "A group of brown wooden pallets are stacked on top of each other.", - "id": 11228 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676259-4193711_jpg.rf.1bcf191164ec32655be2d8e07ba1de2d.jpg", - "response": "a room with a lot of boxes and shelves in it", - "id": 11229 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676210-4821746_jpg.rf.62f97091ceed4947c813d6eed8da0d8c.jpg", - "response": "A warehouse with pallets stacked up against the wall.", - "id": 11230 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676284-4853654_jpg.rf.ddfa510b2c8785edd96d5d611e0657d3.jpg", - "response": "A warehouse with a lot of shelves and racks.", - "id": 11231 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676331118-8_jpg.rf.6dc3f4328098698192bf59b3722faa8b.jpg", - "response": "A warehouse with pallets stacked on top of each other.", - "id": 11232 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676246-1673992_jpg.rf.28b981e4d58b237a97f67c005a5a69f6.jpg", - "response": "A large warehouse with a lot of shelves and boxes.", - "id": 11233 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676347-2583506_jpg.rf.f8e73b9d2b84a7fa1c655c118b6d3e21.jpg", - "response": "A refrigerator sitting in a kitchen with a bunch of boxes around it.", - "id": 11234 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676315388-52_jpg.rf.c047771b15a0ec860a90f9cf46df2727.jpg", - "response": "a pallet of boxes stacked up in a warehouse", - "id": 11235 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676231-472556_jpg.rf.0ceb1120fc6292fd19ad1493b72623b8.jpg", - "response": "a large room with a lot of boxes inside of it", - "id": 11236 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676250-2205837_jpg.rf.761bcb8b81f43ffbefc2157744f1e7ec.jpg", - "response": "A warehouse with shelves on the wall and a rack on the ground. The walls are yellow and the ceiling is white. There are many boxes on the shelves and the floor is grey. There are also many small lights on the ceiling.", - "id": 11237 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676304-6706648_jpg.rf.c6142769dc9ac6e9023b05fa7ebb6840.jpg", - "response": "A large room with a walkway and shelves.", - "id": 11238 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676213390-33_jpg.rf.e6aff481c320f3b3f89a3243f3992ab7.jpg", - "response": "A warehouse with pallets stacked on top of each other and a forklift in the middle of the room.", - "id": 11239 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676312-0503294_jpg.rf.f427b336eea54703812f36417b9610ef.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 11240 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676274-1741667_jpg.rf.3dc8aa98382f59ea5fd6f5eeb47e0824.jpg", - "response": "A very close up image of a stainless steel refrigerator. The refrigerator has a speckled pattern on the side of it. The speckles are small and white. The refrigerator is silver in color. There is a black floor under the refrigerator. The speckles on the side of the refrigerator are very close together and uniform in size.", - "id": 11241 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676229-2726686_jpg.rf.06c43663f4eec5bbe8fcb462c4dcc3a8.jpg", - "response": "The image is a close up of a round mirror with rain drops on it. The mirror is reflecting a building with a large glass door.", - "id": 11242 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676208-6259985_jpg.rf.bf49998920077e48e81eeb4261c57935.jpg", - "response": "a room with a lot of boxes and a chair", - "id": 11243 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676210-4821746_jpg.rf.a0824631871f6495cf547f3382984be6.jpg", - "response": "A room with a black floor and a yellow pipe on the ceiling. There are two people in the room, one on the left and one on the right. There is a bench in the room and a suitcase on the floor. The room is very messy.", - "id": 11244 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676330-8915877_jpg.rf.bbba77f3a58d939e104bb7302fed8774.jpg", - "response": "a photo of a room with a grey carpet and white dots all over the floor. There are two yellow metal structures in the room, one on the left and one on the right. There is a door in the back of the room and a light on the ceiling.", - "id": 11245 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676213390-33_jpg.rf.c3646e84430ba92a4f498b8abedb963d.jpg", - "response": "A blurry image of a warehouse with pallets stacked on top of each other. There is a forklift in the foreground and a large white machine in the background. The pallets are made of wood and are stacked in different heights.", - "id": 11246 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676340060-45_jpg.rf.5e1e9ffde06443fe460735315482d870.jpg", - "response": "A rain covered window looking into a warehouse.", - "id": 11247 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676312-0503294_jpg.rf.ff516ea1854253232a5ba1084afbbc3a.jpg", - "response": "A warehouse with a black floor and white spots all over it. There are two large silver columns on the right side of the image and a few smaller ones in the middle. In the background, there is a white wall with two rectangular holes in it. The ceiling is white and has two rows of lights.", - "id": 11248 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676222-6452012_jpg.rf.5f89a9979b3633d50c062a034a03b6d7.jpg", - "response": "A room with white walls and a concrete floor. In the room there are several wooden boxes and a pallet. On the floor there are several appliances, a fridge and a freezer. The room also has a window.", - "id": 11249 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676338404-79_jpg.rf.9cb97bf97d794d9f0644552b80fab356.jpg", - "response": "A room filled with lots of wooden pallets stacked on top of each other.", - "id": 11250 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676245-8054354_jpg.rf.f32f7509f9f157241c243863012cf859.jpg", - "response": "A warehouse with shelves and pallets full of boxes.", - "id": 11251 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676229-2726686_jpg.rf.6747e13f7319bd9f8b0fd56484128efb.jpg", - "response": "A store with a lot of items on the shelves.", - "id": 11252 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676250-2205837_jpg.rf.c9b6f46976ad7ccbb584aa8c1af3ba2d.jpg", - "response": "A warehouse with a shelf and boxes on it.", - "id": 11253 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676248-012756_jpg.rf.c9034a40436777c75974cc2eedd45c20.jpg", - "response": "A large warehouse with a lot of shelving and a forklift.", - "id": 11254 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676231-472556_jpg.rf.8ef2515c532e65d86420d4399516ed0a.jpg", - "response": "A room with a white speckled floor and a white ceiling. There are two large industrial machines in the room and a lot of clutter on the floor. The room is filled with white specks.", - "id": 11255 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676330-8915877_jpg.rf.8090e725b6ff04b236517bc9fedc8929.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 11256 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676340060-45_jpg.rf.90a825281594c26cf820dcbe3ade9233.jpg", - "response": "A warehouse with wooden pallets stacked on the left and right side of the image. The pallets are yellow and brown. In the middle of the image there are yellow shelves with many boxes on them. The boxes are brown, white and blue. There is a person in the background wearing a orange vest. They are standing in front of a ladder. The floor is made of black cement.", - "id": 11257 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676248-012756_jpg.rf.9b5e4fe427f604e28770711df27e25c3.jpg", - "response": "A warehouse with shelves and racks and a forklift.", - "id": 11258 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676243-592742_jpg.rf.3511d85e69371853188cc71682befe9d.jpg", - "response": "A warehouse with shelves and racks filled with boxes.", - "id": 11259 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676243-592742_jpg.rf.3dc88242542daf79b28bf1d32e0e8c5d.jpg", - "response": "a room with a lot of shelves and boxes on them", - "id": 11260 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676277-8668466_jpg.rf.3e8146a06d6bdc9e95febc4f71e40c7f.jpg", - "response": "A blurry image of a warehouse with a large yellow machine in the middle. The warehouse has a concrete floor and the walls are white. There are several pipes on the walls and a large window on the right.", - "id": 11261 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676347-6351035_jpg.rf.8adc5c5b10641e5b7a0208b9e3fc6b3a.jpg", - "response": "A warehouse with a forklift and pallets.", - "id": 11262 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676259-4193711_jpg.rf.1821701475dfaa1a07d4e3a8d41a550b.jpg", - "response": "A room filled with lots of boxes and a ladder.", - "id": 11263 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676331118-8_jpg.rf.63817df3d5e2c391db3758c0491d91fc.jpg", - "response": "A warehouse with pallets stacked up against the wall.", - "id": 11264 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676342-1103237_jpg.rf.42a484c09c4080ac9e24a8575a144c84.jpg", - "response": "A warehouse with pallets and boxes stacked on high.", - "id": 11265 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676213-7983854_jpg.rf.839f860ab74d1f5fbce6649a57f58e22.jpg", - "response": "A warehouse with a pallet rack on the left side of the room and a white wall on the right side. There are pallets on the rack and a fork lift is parked in the room.", - "id": 11266 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676315388-52_jpg.rf.d490e4cffc31577f314cadcec22b5e9d.jpg", - "response": "A cat sitting on a table looking out a window at the rain.", - "id": 11267 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676272-3393366_jpg.rf.e926acf256fa7d190728a1dcf074100a.jpg", - "response": "A room with a lot of shelves and boxes on pallets.", - "id": 11268 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676338404-79_jpg.rf.505a67a75dca9766c4197f6abb279c08.jpg", - "response": "A blurry image of a warehouse with wooden pallets stacked up.", - "id": 11269 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676272-3393366_jpg.rf.8859ddbc40bac8d49dfcad398b728804.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11270 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676222-6452012_jpg.rf.11c466c3d954bef30f4032b9a6aac5d8.jpg", - "response": "a room with a lot of boxes and crates in it", - "id": 11271 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676323336-24_jpg.rf.040386ba90bdf564684e28b1b9835a48.jpg", - "response": "A large room with boxes stacked on the left and a person in the distance.", - "id": 11272 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676342-1103237_jpg.rf.22cd22bfc4d8b1b3fa52197828ced9de.jpg", - "response": "A room with a silver glittery floor. There are pallets stacked up on the left hand side of the room and a table on the right hand side. There is a person sitting on a stool in the room and another person standing in front of the pallets.", - "id": 11273 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676313401-86_jpg.rf.627131c9162c7a36b870137b32cae2fe.jpg", - "response": "A room filled with lots of boxes stacked on top of each other.", - "id": 11274 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676277-8668466_jpg.rf.540301db236aaf3e4a53a46e25cf28cf.jpg", - "response": "A warehouse with a shelf that has boxes on it.", - "id": 11275 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676284-4853654_jpg.rf.ce5ff1af725c9da91f0cad232836e4bf.jpg", - "response": "A room with a black floor and walls. There is a yellow and blue metal frame on the left side of the room. The frame has stairs leading up to it. The stairs are painted yellow and blue. There is a large white pillar in the middle of the room. The pillar has a round top. The room is filled with small white dots.", - "id": 11276 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676304-6706648_jpg.rf.b430f98f952d0725c9d8e5e55319ffa9.jpg", - "response": "a large room with a lot of shelves and racks in it", - "id": 11277 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676313401-86_jpg.rf.6a60313815fbf5afb10b3047c817eaa3.jpg", - "response": "A pallet stacked with boxes on a dolly.", - "id": 11278 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676274-1741667_jpg.rf.e9fddbb1c07ddd7602b3989beb425169.jpg", - "response": "A kitchen with a silver refrigerator freezer sitting inside of it.", - "id": 11279 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678432-8292773_jpg.rf.1af0e950808f2b013901d0ca2e8db5c8.jpg", - "response": "A warehouse with a lot of boxes stacked up against the wall.", - "id": 11280 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678570-4147775_jpg.rf.71dfd8755d68cc7cd44b14e264c81d3e.jpg", - "response": "a dark hallway with some racks on the side of it", - "id": 11281 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676414-0333533_jpg.rf.c367797ae67749a1ae6a8817cf830dcf.jpg", - "response": "a warehouse with a forklift and pallets of boxes", - "id": 11282 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678518-548738_jpg.rf.ebd6633a8c5eb1067afca6db66fc7636.jpg", - "response": "A large room with shelves and a metal rack on the wall.", - "id": 11283 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676503986-39_jpg.rf.2c7f8c1b3b84a716360017d1143d2574.jpg", - "response": "A warehouse with wooden pallets stacked on top of each other.", - "id": 11284 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678474-5365646_jpg.rf.d9239c2ac4326bbd57e7ea9bce84af5a.jpg", - "response": "A warehouse with shelves full of items and a door in the back.", - "id": 11285 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678474-5365646_jpg.rf.f78bdb220b5ff13ea2cc2cb6133a2fd2.jpg", - "response": "A room with many cages in it and a door at the end of the room.", - "id": 11286 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676414-0333533_jpg.rf.75da475efdede45db98a2d33eef8a3b7.jpg", - "response": "A warehouse with a lot of shelves and racks.", - "id": 11287 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678601-3304615_jpg.rf.46021e0141c6e8fd9dd01a3f51e26e22.jpg", - "response": "A long empty hallway with many cages on the left side of the hallway.", - "id": 11288 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678602-4372325_jpg.rf.cfbcf80a846361055faea5be8f22908c.jpg", - "response": "A bus is parked in a station with the doors closed. The floor is shiny and has small white dots on it. The ceiling has lights on.", - "id": 11289 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676409-6220996_jpg.rf.4ebda0e809539af4519277af8a59d7d1.jpg", - "response": "a warehouse with a lot of boxes and a fork lift", - "id": 11290 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678485-5512831_jpg.rf.623fbb31525a91afb5d4104f2106bd70.jpg", - "response": "A dark alley with a bunch of lights on the ceiling.", - "id": 11291 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676582646-09_jpg.rf.19f52f37dd750f5ae6d18645bf995b51.jpg", - "response": "A large warehouse with shelves full of boxes and items.", - "id": 11292 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676393709-32_jpg.rf.2b8cbae2b5969510b7ed656ed09abd23.jpg", - "response": "A blurry image of a warehouse with wooden pallets stacked up.", - "id": 11293 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676583631-32_jpg.rf.06605b8319543174cd5c5a4834f57bb6.jpg", - "response": "A large room with a high ceiling filled with boxes and other items. There is a person in the room and a clock on the wall. The image is taken through a window with rain on it.", - "id": 11294 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676442-4017932_jpg.rf.15fcf77d89e3eb7f2b05cfb945904208.jpg", - "response": "a kitchen with a sink and a window", - "id": 11295 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678570-7746537_jpg.rf.4539c02541dabc8ef4a3341277aa9dcb.jpg", - "response": "a blue metal gate", - "id": 11296 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678607-9587915_jpg.rf.3c79c35560d1b7a396ad63495509d213.jpg", - "response": "a room with a bunch of shelves in it", - "id": 11297 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676379-3632963_jpg.rf.25bb7084d2a3f4ea32adf8eb92b08310.jpg", - "response": "a bus stop sign that is white and black", - "id": 11298 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678571-5232785_jpg.rf.304efc92ab11ee191f9fedc6a6b719ab.jpg", - "response": "A long dark hallway with a light at the end. The floor is shiny and reflective. There are white dots scattered throughout the image.", - "id": 11299 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676542073-81_jpg.rf.ae18e7be856260bf75742eb588000370.jpg", - "response": "A warehouse with a lot of wooden pallets stacked up. The pallets are stacked on top of each other and on the sides of the room. The room is filled with the pallets and there are a few other items in the room as well.", - "id": 11300 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676582646-09_jpg.rf.4929a27d1b59bf45b6131b359b78ff08.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11301 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678518-548738_jpg.rf.de4390c77643f53e77fd687bfe9d4428.jpg", - "response": "A black and white photo of a street at night. There are white lights scattered across the street and a yellow pole in the middle of the scene.", - "id": 11302 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676447-2043684_jpg.rf.653ee413a182041756a13041d20a3e7f.jpg", - "response": "A room with a forklift in it.", - "id": 11303 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676400-3884115_jpg.rf.83fdeccb6b500e46a310b0c387a393df.jpg", - "response": "a kitchen with a sink and a stove top oven", - "id": 11304 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676430137-45_jpg.rf.b70cf4cbb449c1a78f36c807c1547461.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11305 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676441-2987163_jpg.rf.3e93afccace913115874983b05bd2e9c.jpg", - "response": "a metal rack with boxes on it", - "id": 11306 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678570-4147775_jpg.rf.a34fd78c96ea9bda7d30013aa5efadc9.jpg", - "response": "The image is a warehouse with a black and white floor. The floor is covered in small white LED lights that are turned on. The light from the lights shines on the floor creating a starry effect. In the background, there are racks and shelves. The image is taken during the day and the lighting is bright.", - "id": 11307 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678485-5512831_jpg.rf.69da789b244da36497692fab25402db1.jpg", - "response": "A black and white speckled shower curtain in front of a shower.", - "id": 11308 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676503986-39_jpg.rf.2795fe7b090d08abb769fb7a23bf1641.jpg", - "response": "A large warehouse with pallets stacked on pallet racks.", - "id": 11309 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678475-6356099_jpg.rf.a19634fb72be9f141c8337ca07bd2a33.jpg", - "response": "A long hallway with a black floor and white dots on the ceiling. There are shelves on the left side of the hallway and a door at the end. The door is open and the hallway is dimly lit.", - "id": 11310 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676400-3884115_jpg.rf.92bef9c5152118700c38966a266e0ba4.jpg", - "response": "a room with a lot of appliances in it", - "id": 11311 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678530-6536605_jpg.rf.decb15f160d34fa811079c0e7254abc9.jpg", - "response": "A warehouse with a lot of shelves and racks.", - "id": 11312 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676393709-32_jpg.rf.ee86ff2df041182b634ff8711fdacf31.jpg", - "response": "a window with raindrops on it looking out on a street with a yellow fire truck parked on it", - "id": 11313 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678530-6536605_jpg.rf.22967bcdb7ac1d2ccb22b5654b793358.jpg", - "response": "A room with a lot of shelves and racks filled with boxes.", - "id": 11314 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676410-7232263_jpg.rf.c1c08dceea4328381d6db94272bf6396.jpg", - "response": "A warehouse with a lot of racks and a shiny floor.", - "id": 11315 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678475-6356099_jpg.rf.bf4acfd842c193e471abd4689cba8549.jpg", - "response": "A room with a black floor and walls covered in white dots. There is a door at the end of the room and a window on the right.", - "id": 11316 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676409-6220996_jpg.rf.710f677b13a7209b808905b64367664e.jpg", - "response": "A room with a white floor and white walls. There are shelves on the wall and boxes stacked on them. There is also a ladder against the wall. The room is filled with a dust like substance.", - "id": 11317 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678581-4577005_jpg.rf.df6c8739c0f0ec735a5d1fd6ef871137.jpg", - "response": "A dark warehouse with rows of shelves on the right side. The floor is shiny and has a black surface. The warehouse is filled with small white lights.", - "id": 11318 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678595-0594513_jpg.rf.e82597436c471db7cca4b33ac9adfcf3.jpg", - "response": "A fence with a yellow pole on the side of it.", - "id": 11319 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676447-2043684_jpg.rf.92cfb52d79190edd289c1e1a9c5b8bb1.jpg", - "response": "A man driving a forklift in a warehouse.", - "id": 11320 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678595-0594513_jpg.rf.20dafd677e385585ac3eea41d2dd803c.jpg", - "response": "a window with rain on it looking into a room with tables and chairs", - "id": 11321 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676411-83207_jpg.rf.ada38d51708bccf130e0b021e18b20f6.jpg", - "response": "A room with a white speckled floor and a shelf on the left side of the room.", - "id": 11322 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678470-1284504_jpg.rf.13ace5e86445120f99bd8ca6ebe9e5cb.jpg", - "response": "A long narrow walkway between two buildings.", - "id": 11323 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676354-2772663_jpg.rf.b9f1c75affdaad370344abd51657cc94.jpg", - "response": "A room filled with boxes stacked on top of each other on the left side of the room. The floor is shiny and has a black speckled pattern. In the background there is a door that leads to the outside. On the left side of the room there are shelves with boxes on them and a red forklift parked next to them.", - "id": 11324 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676405-192456_jpg.rf.3c4e511c2fe8c8a789824a11630c62d5.jpg", - "response": "a large room with a tall ceiling and white walls", - "id": 11325 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678571-5232785_jpg.rf.1420879f0c2a87b9f58418940bc89330.jpg", - "response": "A dark street with a lot of stars on it.", - "id": 11326 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676410-7232263_jpg.rf.eb00eb8d846807942dd97542aad0e8d5.jpg", - "response": "A large room with a high ceiling and a concrete floor. There are some shelves in the room and a door at the end. The room is filled with a dusting of snow.", - "id": 11327 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678602-4372325_jpg.rf.39cb4c9855a2793fd833d57d6fdf0bc1.jpg", - "response": "a room with shelves on the walls and racks on the floor", - "id": 11328 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676387-483981_jpg.rf.1afb9cea64d288efa6217d98803bb933.jpg", - "response": "A room with a black and white spotted floor. In the room there are two yellow shelves with many boxes on them. One of the shelves is on the left side of the room and the other is on the right side. There is a fork lift in the room on the right side. In the background there is a door that is open. The door is on the right side of the room and there is a light coming from the door.", - "id": 11329 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574676442-4017932_jpg.rf.eaa4c259066ad3246a744933847f252b.jpg", - "response": "A room with a lot of furniture in it. There is a table with a chair on one side and a couch on the other. There is also a sink and a toilet in the room. The room has a lot of clutter and there are a lot of objects on the furniture.", - "id": 11330 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678600-585359_jpg.rf.c9b70288d6d756ec6c57b16271c7e736.jpg", - "response": "A blurry image of a building with a lot of metal racks.", - "id": 11331 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678607-9587915_jpg.rf.8f3a6648f006cd5e65837a0a2982c3db.jpg", - "response": "A large room with a silver floor and shelves on the walls.", - "id": 11332 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678601-3304615_jpg.rf.0fdc4c2dfb4e4051cee9dd6a2a461cad.jpg", - "response": "a long hallway with shelves on the side of it", - "id": 11333 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574678581-4577005_jpg.rf.347d5b68106215aa316eda4caa7c33b8.jpg", - "response": "A walkway in a building with shelves on the right side of the walkway. The walkway is covered in small white dots.", - "id": 11334 - }, - { - "image_path": "/content/drive/MyDrive/combined/11427_jpg.rf.55e57d99b3b53a319192fd1ea0717118.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 11335 - }, - { - "image_path": "/content/drive/MyDrive/combined/1131_jpg.rf.58d0015b446afb9af480b26eb45f9273.jpg", - "response": "A warehouse with boxes stacked on shelves and forklifts moving around.", - "id": 11336 - }, - { - "image_path": "/content/drive/MyDrive/combined/11799_jpg.rf.7bcbe19981b4389ba7830a3923bf094a.jpg", - "response": "A warehouse with multiple shelves and racks filled with cardboard boxes.", - "id": 11337 - }, - { - "image_path": "/content/drive/MyDrive/combined/11799_jpg.rf.613c1acc1fef962eeb0953e226112c75.jpg", - "response": "A warehouse filled with lots of boxes on the shelves.", - "id": 11338 - }, - { - "image_path": "/content/drive/MyDrive/combined/112_png.rf.f459d9450776549318ae2991f36c157a.jpg", - "response": "A person standing in a shower with a white wall and silver dots on it.", - "id": 11339 - }, - { - "image_path": "/content/drive/MyDrive/combined/1143_jpg.rf.3b34b09d299621014820fa2fce5f72f2.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11340 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_png.rf.6792b7163f7ef99551823b06d391dab3.jpg", - "response": "a man in a yellow suit is walking next to a motorcycle", - "id": 11341 - }, - { - "image_path": "/content/drive/MyDrive/combined/11307_jpg.rf.0f72743206ebcbd337a1f97f02c712af.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11342 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_png.rf.d2293c8c48785ca637aec1f809c00831.jpg", - "response": "A man in a\u6a58\u9ec4\u8272\u7684\u5de5\u4f5c\u670d is using a black and white pole to fish out a black helmet from a drainage hole in the street. The man is wearing a white hat and blue rubber gloves. A black and silver motorcycle is parked next to him. To the left of the motorcycle is a blue and white license plate on a black car. The pavement is grey with small black spots.", - "id": 11343 - }, - { - "image_path": "/content/drive/MyDrive/combined/11751_jpg.rf.16fc6ce3a20f7b8956ade818bf6e4088.jpg", - "response": "A large warehouse with boxes stacked on high shelves.", - "id": 11344 - }, - { - "image_path": "/content/drive/MyDrive/combined/11811_jpg.rf.a3deff5a202c563aa2efc66f4d18038c.jpg", - "response": "A warehouse with shelves full of boxes.", - "id": 11345 - }, - { - "image_path": "/content/drive/MyDrive/combined/116_png.rf.c4bbb6f91bef4fcde89e4b0311984048.jpg", - "response": "A man wearing a blue shirt and blue jeans is standing on a sidewalk.", - "id": 11346 - }, - { - "image_path": "/content/drive/MyDrive/combined/11667_jpg.rf.7c08e3674088244193c0267db5690693.jpg", - "response": "A warehouse with multiple boxes stacked on the left and right side of the room. There is a person in the middle of the room on a pallet jack.", - "id": 11347 - }, - { - "image_path": "/content/drive/MyDrive/combined/11499_jpg.rf.7869c4cdc931f6bc4deaaadd590548df.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a person in the warehouse, but they are not very visible. The image is slightly blurry.", - "id": 11348 - }, - { - "image_path": "/content/drive/MyDrive/combined/11427_jpg.rf.40e67f357c43f0677704dc2ad319623d.jpg", - "response": "A warehouse with tall shelves and a person standing in the middle of the room.", - "id": 11349 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_png.rf.c46df3412eeaa47f0791aa0a7603075b.jpg", - "response": "A man in a white shirt is walking a dog.", - "id": 11350 - }, - { - "image_path": "/content/drive/MyDrive/combined/11775_jpg.rf.fb41b42cc885786a56712aae148e1cd4.jpg", - "response": "A man in a warehouse moving boxes with a forklift.", - "id": 11351 - }, - { - "image_path": "/content/drive/MyDrive/combined/11499_jpg.rf.c42c698015b6b08c6d37fe48b43ed002.jpg", - "response": "A warehouse with multiple shelves filled with boxes.", - "id": 11352 - }, - { - "image_path": "/content/drive/MyDrive/combined/11739_jpg.rf.9b64bdbd8d95b3fc4651016c3d356665.jpg", - "response": "A man is seen from the waist down, standing in a large warehouse filled with boxes stacked on pallets and in the aisles. The warehouse is filled with dust and there are rusted shelves. The man is standing in front of a tall shelf of boxes and there is a fork lift to his right.", - "id": 11353 - }, - { - "image_path": "/content/drive/MyDrive/combined/1155_jpg.rf.eb97ded1f5b6c504ce337a7d2c4a91c6.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves and on the floor. There are also two people in the warehouse.", - "id": 11354 - }, - { - "image_path": "/content/drive/MyDrive/combined/11739_jpg.rf.60b6fea0158a6ec508c9f3e2e8dcb4eb.jpg", - "response": "A warehouse filled with lots of boxes and shelves.", - "id": 11355 - }, - { - "image_path": "/content/drive/MyDrive/combined/11823_jpg.rf.4d3f45c13007dc5897a4ad0231f17426.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a person in the warehouse moving boxes around.", - "id": 11356 - }, - { - "image_path": "/content/drive/MyDrive/combined/11727_jpg.rf.675417bca544405b5bb99334f8731956.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11357 - }, - { - "image_path": "/content/drive/MyDrive/combined/11631_jpg.rf.56b1b199548bb86a0cfe732c73caff18.jpg", - "response": "A large warehouse filled with lots of boxes and shelves.", - "id": 11358 - }, - { - "image_path": "/content/drive/MyDrive/combined/11259_jpg.rf.539162850d3e79c4da5a47e1d28f7d44.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11359 - }, - { - "image_path": "/content/drive/MyDrive/combined/11355_jpg.rf.a37159032dad5444f468c72df8581a36.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11360 - }, - { - "image_path": "/content/drive/MyDrive/combined/11403_jpg.rf.09149ecf67651b8db16eda10749bfbca.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 11361 - }, - { - "image_path": "/content/drive/MyDrive/combined/11259_jpg.rf.8453bb7fa40944ff1bc7af107338ca03.jpg", - "response": "A warehouse with multiple shelves filled with cardboard boxes. There is a person visible in the image, standing in the warehouse. The image is taken through a window, which is covered in raindrops.", - "id": 11362 - }, - { - "image_path": "/content/drive/MyDrive/combined/1131_jpg.rf.7f71a8eab5de3cf1035e2f5ac3d00895.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11363 - }, - { - "image_path": "/content/drive/MyDrive/combined/11343_jpg.rf.c2fc18fa8daa1b5d834c08e276d181cd.jpg", - "response": "A large warehouse with boxes stacked on shelves and pallets. There is a forklift in the warehouse and a person is visible in the background. The warehouse is filled with various boxes and there is a fire extinguisher on the wall. The image is slightly blurry and there is a layer of water droplets on the glass.", - "id": 11364 - }, - { - "image_path": "/content/drive/MyDrive/combined/1155_jpg.rf.e815b06882cb8544c0b5c87543de4113.jpg", - "response": "A warehouse with shelves full of boxes and a person walking down the aisle.", - "id": 11365 - }, - { - "image_path": "/content/drive/MyDrive/combined/11715_jpg.rf.dc56559027fc3653a400e9a7cd563881.jpg", - "response": "A warehouse filled with lots of boxes and a person moving a fork lift.", - "id": 11366 - }, - { - "image_path": "/content/drive/MyDrive/combined/11283_jpg.rf.dd5b6d72b0accc08558b760d4e9e7868.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves and on the floor. There are also some racks and a fire extinguisher. The image is taken through a window with rain on it.", - "id": 11367 - }, - { - "image_path": "/content/drive/MyDrive/combined/11439_jpg.rf.0d97ccef9667ece46f7eb244f6cf64cc.jpg", - "response": "A warehouse with two men working. One man is standing on a pallet truck and the other is standing in the aisle between the tall shelves. The shelves are filled with boxes and the warehouse has a tall ceiling.", - "id": 11368 - }, - { - "image_path": "/content/drive/MyDrive/combined/11763_jpg.rf.0621bba5aaab089f0289b673ce5cd2be.jpg", - "response": "A man in a blue shirt is moving a pallet truck.", - "id": 11369 - }, - { - "image_path": "/content/drive/MyDrive/combined/11307_jpg.rf.9ceff0742f1caee8871aa8a5e34f0d9f.jpg", - "response": "A warehouse with tall shelves and boxes stacked on the shelves.", - "id": 11370 - }, - { - "image_path": "/content/drive/MyDrive/combined/11787_jpg.rf.0a041d7897afb33973b34ef65dc4dda0.jpg", - "response": "A warehouse with a lot of boxes stacked on the left and right side of a walkway. The walkway is filled with boxes and a fork lift is driving down it. The window is covered in rain drops.", - "id": 11371 - }, - { - "image_path": "/content/drive/MyDrive/combined/1167_jpg.rf.e4d165f61122e2593e99509922b1c452.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11372 - }, - { - "image_path": "/content/drive/MyDrive/combined/11535_jpg.rf.da13127b084239b98383f49fa74457fa.jpg", - "response": "In the image, there is a warehouse filled with boxes and a person is pulling a pallet rack with a pallet jack. The warehouse has a lot of boxes stacked on both sides of the aisle and a person is pulling a pallet rack in the middle of the aisle. The boxes are packed in different sizes and are placed on both the ground and on shelves. The pallet rack is made of metal and has a red frame. The person pulling the rack is wearing a black jacket and pants. The warehouse has a lot of boxes and it looks like a busy place.", - "id": 11373 - }, - { - "image_path": "/content/drive/MyDrive/combined/11535_jpg.rf.b82fc6636485de11fb3e9c16140d4c45.jpg", - "response": "A man standing in a warehouse filled with lots of boxes.", - "id": 11374 - }, - { - "image_path": "/content/drive/MyDrive/combined/11631_jpg.rf.f86b63da54b4218ba5c5966e6fe038c6.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a person in the warehouse with a fork lift.", - "id": 11375 - }, - { - "image_path": "/content/drive/MyDrive/combined/11487_jpg.rf.d674192175ad1ac4f8ab6e4b6cf3f8d7.jpg", - "response": "A warehouse with boxes stacked on pallets and on the floor. There is a forklift in the middle of the room and a person is visible on the far right. The warehouse is dimly lit.", - "id": 11376 - }, - { - "image_path": "/content/drive/MyDrive/combined/11703_jpg.rf.708112f359aa54ad47dc176952f9f2d9.jpg", - "response": "A large warehouse with shelves full of boxes. There is a person in the warehouse, standing on a walkway between the shelves. The walkway is covered in cardboard boxes. There are also two forklifts in the warehouse, one on the left and one on the right. The warehouse is filled with cardboard boxes, some stacked two levels high.", - "id": 11377 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_png.rf.8a50b5eb210744eee6e29e457d704da8.jpg", - "response": "A man is standing in a driveway holding a large object.", - "id": 11378 - }, - { - "image_path": "/content/drive/MyDrive/combined/11727_jpg.rf.fee012a9da9802d087591a5a2293b063.jpg", - "response": "A warehouse with tall shelves and boxes stacked on them.", - "id": 11379 - }, - { - "image_path": "/content/drive/MyDrive/combined/11295_jpg.rf.17f638c3f762f72e84272d599c9a1908.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11380 - }, - { - "image_path": "/content/drive/MyDrive/combined/11715_jpg.rf.bdee9668af4f59461abbec32d3504aa5.jpg", - "response": "In the image, there is a snow flurry in a warehouse. The warehouse has a lot of boxes stacked on both sides of the aisle. There is a person in the warehouse, holding a device, most likely a scanner or a camera. They are standing in the middle of the aisle, between the two rows of boxes. The boxes are brown and white, and are stacked very high. The person are wearing a yellow jacket.", - "id": 11381 - }, - { - "image_path": "/content/drive/MyDrive/combined/11487_jpg.rf.78341821fbc77225b5df252328e1538d.jpg", - "response": "A warehouse filled with boxes and a fire extinguisher.", - "id": 11382 - }, - { - "image_path": "/content/drive/MyDrive/combined/11403_jpg.rf.6b7833e605f87007ea7aa5ce347f95da.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There is a person in the warehouse, dressed in black, and a forklift is present. The warehouse has a lot of boxes and items to be stored.", - "id": 11383 - }, - { - "image_path": "/content/drive/MyDrive/combined/11295_jpg.rf.3ac1f7cc002065df0dcc2c4cc295a7bc.jpg", - "response": "A warehouse with shelves full of boxes. There is a forklift in the middle of the room and a person is visible in the background. The warehouse is filled with boxes and the floor is covered in a fine layer of dust.", - "id": 11384 - }, - { - "image_path": "/content/drive/MyDrive/combined/1143_jpg.rf.d3d35a174710f998165cedd0ba06b195.jpg", - "response": "A large warehouse with boxes stacked on shelves and pallets.", - "id": 11385 - }, - { - "image_path": "/content/drive/MyDrive/combined/11343_jpg.rf.7720a87190fa4133033199cac3678cea.jpg", - "response": "In the image, there is a large warehouse filled with boxes and a person. The warehouse has a tall ceiling and is filled with shelves that have boxes on them. There are multiple boxes on the floor, some stacked on top of each other. In the background, there is a person wearing a yellow shirt and black pants. They are standing in the middle of the room, between two tall shelves.", - "id": 11386 - }, - { - "image_path": "/content/drive/MyDrive/combined/11703_jpg.rf.b7a5676770e032f37895036271189b1e.jpg", - "response": "A warehouse with many boxes stacked on the shelves.", - "id": 11387 - }, - { - "image_path": "/content/drive/MyDrive/combined/11751_jpg.rf.91f3b6179df6eb7a0b80b769d1392155.jpg", - "response": "A warehouse with multiple shelves and boxes on the floor. There is a person in the distance moving boxes.", - "id": 11388 - }, - { - "image_path": "/content/drive/MyDrive/combined/11439_jpg.rf.05a716a35851194c528cf2d36eacfe71.jpg", - "response": "A warehouse filled with lots of boxes stacked on shelves.", - "id": 11389 - }, - { - "image_path": "/content/drive/MyDrive/combined/116_png.rf.24f4b079abd563ff392bdb74e871ca6b.jpg", - "response": "A man wearing a blue jacket and a blue backpack stands on a sidewalk.", - "id": 11390 - }, - { - "image_path": "/content/drive/MyDrive/combined/11331_jpg.rf.22964647973bd5bfc7e3f9f50cf2759a.jpg", - "response": "A warehouse with multiple shelves filled with cardboard boxes.", - "id": 11391 - }, - { - "image_path": "/content/drive/MyDrive/combined/1179_jpg.rf.47700b0f857e9be1c96207fe34e7cf7e.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11392 - }, - { - "image_path": "/content/drive/MyDrive/combined/11811_jpg.rf.ff6fe512d50cd42ec279f4da07f1b71c.jpg", - "response": "A warehouse with boxes stacked on high shelves and a person in the distance.", - "id": 11393 - }, - { - "image_path": "/content/drive/MyDrive/combined/11283_jpg.rf.190c31019b389b70f823d012c78a07c4.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves and on the floor. There is a forklift in the middle of the room and a person is visible on the far right side. The image is marked with snow and has a time stamp on the right top corner.", - "id": 11394 - }, - { - "image_path": "/content/drive/MyDrive/combined/11775_jpg.rf.5f1aa86629a90bd39bdea605374ebfe6.jpg", - "response": "A warehouse with multiple boxes stacked on shelves and on the floor. There is a person in the warehouse moving boxes.", - "id": 11395 - }, - { - "image_path": "/content/drive/MyDrive/combined/11763_jpg.rf.92eca24c2a6c6d4943a4336700f9e7a9.jpg", - "response": "A large warehouse with a lot of boxes stacked on the shelves. There is a fire extinguisher on the wall and a large pipe running down the center of the room. The image is slightly grainy and there is a snowflake pattern overlayed on the image.", - "id": 11396 - }, - { - "image_path": "/content/drive/MyDrive/combined/1179_jpg.rf.5c2f2583b25bf01121c9a55461c54f09.jpg", - "response": "A man is standing in a large warehouse filled with boxes and shelves. The boxes are stacked on the shelves and the floor. The shelves are red and the boxes are brown. The warehouse is filled with dust.", - "id": 11397 - }, - { - "image_path": "/content/drive/MyDrive/combined/11247_jpg.rf.1a9ec63a60e9cb782a39c45cf7de7765.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 11398 - }, - { - "image_path": "/content/drive/MyDrive/combined/11331_jpg.rf.09a16646a0c44045c12ab7c66edc2219.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11399 - }, - { - "image_path": "/content/drive/MyDrive/combined/11787_jpg.rf.1609da9961f7971f3d7357b4b4671472.jpg", - "response": "A warehouse with boxes stacked on pallets and forklifts moving around.", - "id": 11400 - }, - { - "image_path": "/content/drive/MyDrive/combined/11451_jpg.rf.2ee118947e604cbb18bfe3ed7048e1a7.jpg", - "response": "A warehouse with multiple boxes stacked on shelves and on the floor. There is a person in the warehouse, standing on a pallet jack near the middle of the room. The pallet jack is near the bottom of the image, and the person is slightly to the right of center. The person is wearing a black shirt. The image is covered in dots.", - "id": 11401 - }, - { - "image_path": "/content/drive/MyDrive/combined/11355_jpg.rf.2378df87396e3c42b64cfc3f823c97e2.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11402 - }, - { - "image_path": "/content/drive/MyDrive/combined/1167_jpg.rf.5742ffba16762f00883c5a21c5169241.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 11403 - }, - { - "image_path": "/content/drive/MyDrive/combined/112_png.rf.ded5cb3ac201191341231296055ca4ba.jpg", - "response": "A person is standing under a stream of water in a public fountain. The person is wearing a white shirt and blue shorts. The water droplets are visible in the image.", - "id": 11404 - }, - { - "image_path": "/content/drive/MyDrive/combined/11523_jpg.rf.e488d65ffa2aae329a98cf9bd43fa402.jpg", - "response": "A warehouse with multiple people working in it.", - "id": 11405 - }, - { - "image_path": "/content/drive/MyDrive/combined/11451_jpg.rf.17e0cfb69261c66196ef55ae4a9439c4.jpg", - "response": "A large warehouse with shelves and boxes stacked on pallets.", - "id": 11406 - }, - { - "image_path": "/content/drive/MyDrive/combined/12027_jpg.rf.85a879489d6521091e8025d818b0f03b.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a person in the warehouse, and a forklift is present. The warehouse is filled with boxes and the shelves are brown.", - "id": 11407 - }, - { - "image_path": "/content/drive/MyDrive/combined/12003_jpg.rf.1c70d718ca258e0037f17ceb729378dc.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11408 - }, - { - "image_path": "/content/drive/MyDrive/combined/1287_jpg.rf.bec5e190290f5a3294f6fb461b293fad.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11409 - }, - { - "image_path": "/content/drive/MyDrive/combined/11895_jpg.rf.96fd4f6d91bd08f9d4d610b39610b6d4.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 11410 - }, - { - "image_path": "/content/drive/MyDrive/combined/11955_jpg.rf.2b67dc8b1a1daf12e174119cf5cd22ab.jpg", - "response": "A warehouse filled with lots of boxes and a person moving through the middle of it all.", - "id": 11411 - }, - { - "image_path": "/content/drive/MyDrive/combined/1227_jpg.rf.6867e2a3065e8c8f4d183cfbaabad38e.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a forklift in the middle of the room and two people working in the warehouse. The background is blurred and there is a snowflake filter over the entire image.", - "id": 11412 - }, - { - "image_path": "/content/drive/MyDrive/combined/1251_jpg.rf.83feac3d7df91cd766369c822fe9026b.jpg", - "response": "A warehouse with boxes stacked on the shelves and on the floor. There are also some bottles on the shelves. The image has a snowy effect applied to it.", - "id": 11413 - }, - { - "image_path": "/content/drive/MyDrive/combined/1227_jpg.rf.f83ed26fb7ac1479c8bb65e778142b4c.jpg", - "response": "A warehouse with shelves full of boxes and a forklift in the middle.", - "id": 11414 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_png.rf.2564df039eeec1e5a2621b94214ca57e.jpg", - "response": "A blurry image of a person holding a green umbrella.", - "id": 11415 - }, - { - "image_path": "/content/drive/MyDrive/combined/11835_jpg.rf.d195f07f576da96cd37a3389b42ab5a6.jpg", - "response": "A warehouse with high shelves on both sides of the aisle. There are boxes stacked on the shelves and pallets on the right side. A person is pulling a pallet truck in the middle of the aisle.", - "id": 11416 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_png.rf.b4fdf25a734c76b9dc1d4f45f5b705f3.jpg", - "response": "A woman in a white coat is walking through a building.", - "id": 11417 - }, - { - "image_path": "/content/drive/MyDrive/combined/11919_jpg.rf.86091bbc28ac7e5786feca0ee06c661f.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11418 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_png.rf.3fc532ff21d3cbc55fe4c564f267eeab.jpg", - "response": "A man standing in a room with a TV mounted on the wall.", - "id": 11419 - }, - { - "image_path": "/content/drive/MyDrive/combined/11_png.rf.0df81289f0cb660d31934b1f83f690b2.jpg", - "response": "A man wearing a black jacket and grey pants is seen in a security camera photo. He is walking through a door with a handbag.", - "id": 11420 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_png.rf.ac3e4b885f5d82b7fa318ba82c217947.jpg", - "response": "A black and white photo of a tree branch with a few leaves on it.", - "id": 11421 - }, - { - "image_path": "/content/drive/MyDrive/combined/11943_jpg.rf.3e016b9deea430baffeb547879e02604.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11422 - }, - { - "image_path": "/content/drive/MyDrive/combined/11967_jpg.rf.7290a0d29c0d13d7db2edf8534568d4e.jpg", - "response": "A man is standing in a large warehouse with a lot of boxes. The boxes are stacked on shelves and the floor. The man is standing in front of a tall shelf with many boxes on it. The boxes are brown and white. The man is wearing a yellow shirt and blue jeans. He is holding a large box in his hands. The warehouse has a lot of boxes stacked on shelves and on the floor. The walls are white and the ceiling is white. The floor is white and has a lot of boxes on it.", - "id": 11423 - }, - { - "image_path": "/content/drive/MyDrive/combined/1263_jpg.rf.c30c7f1ef13ffc0558358a80c44d42c2.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11424 - }, - { - "image_path": "/content/drive/MyDrive/combined/130_png.rf.3f2233ca11b4e6c2823b3cb20ca74d87.jpg", - "response": "A woman sitting on a couch with a laptop in front of her.", - "id": 11425 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_png.rf.038ea8dd164b2e0841cb8d854fd92ca5.jpg", - "response": "A group of children are standing on a playground.", - "id": 11426 - }, - { - "image_path": "/content/drive/MyDrive/combined/11919_jpg.rf.42f183d4722867b386d17fd45853013a.jpg", - "response": "A warehouse with a lot of boxes stacked on high shelves.", - "id": 11427 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_png.rf.28f4584b91e33c82c7eae275eb9e1826.jpg", - "response": "A black and white photo of a person in a dark outfit running through the snow. They are running under a tree with green leaves. The snow is falling all around them and there are footprints in the snow.", - "id": 11428 - }, - { - "image_path": "/content/drive/MyDrive/combined/1299_jpg.rf.0445a061caf3ed77ef475bf14b719129.jpg", - "response": "A warehouse with a forklift moving down the center of it.", - "id": 11429 - }, - { - "image_path": "/content/drive/MyDrive/combined/11_png.rf.ddaed1a11026f71e22f3813ddc3b03ff.jpg", - "response": "a man is walking out of a door", - "id": 11430 - }, - { - "image_path": "/content/drive/MyDrive/combined/11871_jpg.rf.82f233974081174f6fd134f4be9b5b92.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11431 - }, - { - "image_path": "/content/drive/MyDrive/combined/13083_jpg.rf.ff2e17b197e2611c9e6ee07ff9833911.jpg", - "response": "A warehouse with multiple shelves filled with boxes.", - "id": 11432 - }, - { - "image_path": "/content/drive/MyDrive/combined/1287_jpg.rf.2fac3ae27618a5052f90929e9c60d459.jpg", - "response": "In the image there is a warehouse filled with boxes and pallets of goods. The warehouse is filled with tall shelves that are stocked with various goods. The room is filled with different types of boxes and pallets of goods. The floor is covered with different types of goods and boxes. There is also a person in the background who is working in the warehouse.", - "id": 11433 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_png.rf.0967556fe9cc465de89d248e3e92ae06.jpg", - "response": "A person walking down a sidewalk holding an umbrella.", - "id": 11434 - }, - { - "image_path": "/content/drive/MyDrive/combined/12015_jpg.rf.890f40747f2b3b0024055802c32ee96d.jpg", - "response": "A warehouse with two people in it.", - "id": 11435 - }, - { - "image_path": "/content/drive/MyDrive/combined/12003_jpg.rf.8cbe4be32807252b4d29486f2d54ab46.jpg", - "response": "A large warehouse with boxes stacked on the left side of the room and a rack on the right side of the room. The boxes are stacked three high and there is a person in the warehouse with a forklift.", - "id": 11436 - }, - { - "image_path": "/content/drive/MyDrive/combined/13071_jpg.rf.86b81015daa139a16c417bd1508d0230.jpg", - "response": "A warehouse filled with lots of boxes and items.", - "id": 11437 - }, - { - "image_path": "/content/drive/MyDrive/combined/1263_jpg.rf.0e1a41d8a19f3e8d8beb04c5fcee6459.jpg", - "response": "A large warehouse with boxes stacked on pallets and forklifts moving around.", - "id": 11438 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_png.rf.2d46928bf35218a4ff28273bca33ebb7.jpg", - "response": "A man is standing on a street corner, holding a cup. He is wearing a hat and has a beard.", - "id": 11439 - }, - { - "image_path": "/content/drive/MyDrive/combined/11883_jpg.rf.6de170a9a6644213ab62e40889650d88.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There are two people in the warehouse, one near the left side and one near the right side. The left side of the warehouse has a lot of boxes stacked three high and the right side has boxes stacked four high. The boxes are brown and white.", - "id": 11440 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_png.rf.6c9fe3be67640ab6f6a20083377e875f.jpg", - "response": "A blurry image of a bear through a screen door.", - "id": 11441 - }, - { - "image_path": "/content/drive/MyDrive/combined/11871_jpg.rf.0d20824149e209d1800dbb86a14c1e52.jpg", - "response": "A man is standing in a large warehouse filled with boxes and shelves. The boxes are stacked on both sides of the aisle and on the shelves. The shelves are filled with boxes and some are stacked on top of each other. The boxes are brown and white in color. The man is standing in the middle of the aisle and is wearing a green shirt. He is also wearing a hat and has a backpack on. The warehouse has a lot of boxes and it looks like a very busy place.", - "id": 11442 - }, - { - "image_path": "/content/drive/MyDrive/combined/1215_jpg.rf.04daec0056be2df5c14163a989d1f184.jpg", - "response": "A warehouse with pallets and boxes stacked on high shelves.", - "id": 11443 - }, - { - "image_path": "/content/drive/MyDrive/combined/11895_jpg.rf.8134ab3af0316057ca4d944ef76be497.jpg", - "response": "A warehouse with boxes stacked on both sides of a walkway. The boxes are stacked on both the left and right side of the walkway and on the right side there is a tall rack. The boxes are brown and have varying sizes. On the left side there are two people working in the warehouse. One person is on the left side and is standing behind a yellow box and a red box. The other person is on the right side and is standing behind a yellow box. There is also a fork lift in the warehouse.", - "id": 11444 - }, - { - "image_path": "/content/drive/MyDrive/combined/1191_jpg.rf.a3c0db817423a10ea38fcca67945afe1.jpg", - "response": "A warehouse with tall shelves and boxes stacked on them. There is a fire extinguisher on the wall and a ladder. The shelves are filled with boxes and the boxes are stacked on the floor.", - "id": 11445 - }, - { - "image_path": "/content/drive/MyDrive/combined/119_png.rf.5c768118d36a0cb274022bbb2175cbc3.jpg", - "response": "A man in an orange shirt and grey shorts is seen in a surveillance image.", - "id": 11446 - }, - { - "image_path": "/content/drive/MyDrive/combined/13083_jpg.rf.da516c2d3ae160a93263cf7b8d409c68.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11447 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_png.rf.4666a4682f859bd05f0ee8ed802674a6.jpg", - "response": "A man in a white shirt and red shorts holding a basketball.", - "id": 11448 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_png.rf.a67c40455bff76e6a21f56e97ca3a994.jpg", - "response": "A person walking in the rain with an umbrella.", - "id": 11449 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_png.rf.473cc76ab0b12ef39b0298a914755dd3.jpg", - "response": "A child running in the snow.", - "id": 11450 - }, - { - "image_path": "/content/drive/MyDrive/combined/11943_jpg.rf.442c214906d8c8198cab441705f697d8.jpg", - "response": "A man is standing in a warehouse filled with boxes and pallets. The boxes are stacked on both sides of the aisle and are on the ground. The man is standing on a pallet jack in the middle of the aisle. There are boxes on the top shelves and some are falling.", - "id": 11451 - }, - { - "image_path": "/content/drive/MyDrive/combined/11859_jpg.rf.68c010c6d9e8b82d97de8d83f7e52d50.jpg", - "response": "A man is standing in a large warehouse filled with boxes and shelves. The boxes are stacked on the shelves and the floor. The man is standing in front of the shelves and looking up at them. The warehouse has a lot of boxes and it looks very organized.", - "id": 11452 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_png.rf.8e99ff6e620fecfc1a0e303d7a37a379.jpg", - "response": "A black and white photo of a tree with a few leaves on it. There are two birds sitting on branches, one in the middle and one on the right. The background is a white wall.", - "id": 11453 - }, - { - "image_path": "/content/drive/MyDrive/combined/1299_jpg.rf.57f4f2c9ac08e9d0bd14a01f48ee8b7c.jpg", - "response": "A large warehouse with boxes stacked on high shelves.", - "id": 11454 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_png.rf.5a3e7a22e1dee9f8a4f04fd9366519b2.jpg", - "response": "A person walking in the rain with an umbrella.", - "id": 11455 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_png.rf.bd18ffd6203b5c6311b1677b03b7372b.jpg", - "response": "A man walking down a street holding a ball.", - "id": 11456 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_png.rf.ab318559eab1f3ab838440c9129796cb.jpg", - "response": "A person standing in the snow with a handbag.", - "id": 11457 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_png.rf.abb7126a7a68db2162b21cba631a547b.jpg", - "response": "A woman in a white coat is walking away from a bench.", - "id": 11458 - }, - { - "image_path": "/content/drive/MyDrive/combined/11883_jpg.rf.e774f9b10dadf4e5823dabe7554789d0.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11459 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_png.rf.e11b4a2a4a867a239a634b2176fd85a4.jpg", - "response": "A man is seen in a screen grab from security footage released by the FBI.", - "id": 11460 - }, - { - "image_path": "/content/drive/MyDrive/combined/12015_jpg.rf.78a120e1f093e7d189b99ef327148992.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There is a person in the warehouse, and a forklift is present.", - "id": 11461 - }, - { - "image_path": "/content/drive/MyDrive/combined/13071_jpg.rf.bbcb7017e435422d688ea55bc0abd017.jpg", - "response": "A very large warehouse with shelves and boxes stacked up.", - "id": 11462 - }, - { - "image_path": "/content/drive/MyDrive/combined/11823_jpg.rf.59dd433a375e97a65dd38516189ece01.jpg", - "response": "A warehouse with boxes stacked on high shelves.", - "id": 11463 - }, - { - "image_path": "/content/drive/MyDrive/combined/1275_jpg.rf.ef977ac3dbaf5df8733b753a821ac5b0.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor.", - "id": 11464 - }, - { - "image_path": "/content/drive/MyDrive/combined/119_png.rf.cb5583ad6d0a618225be05d44135b909.jpg", - "response": "a man in an orange shirt is holding a broom", - "id": 11465 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_png.rf.8ff6cbaf4b7d073e68ffb95dd0e710c3.jpg", - "response": "A black and white image of a person standing on a street corner. The person is wearing a long coat and is walking away from the camera. There is a bicycle parked on the street next to the person. There is a car parked on the street in the background. The image is covered in black dots.", - "id": 11466 - }, - { - "image_path": "/content/drive/MyDrive/combined/11967_jpg.rf.483b14c571708bb3421debacd3f19b29.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 11467 - }, - { - "image_path": "/content/drive/MyDrive/combined/12027_jpg.rf.ea003438bc76526ae3684867daadbac9.jpg", - "response": "A man is standing in a warehouse with a fork lift.", - "id": 11468 - }, - { - "image_path": "/content/drive/MyDrive/combined/1203_jpg.rf.d70f34edde948ac907001acbb09c5590.jpg", - "response": "A warehouse with shelves full of boxes.", - "id": 11469 - }, - { - "image_path": "/content/drive/MyDrive/combined/1191_jpg.rf.8d596c6fbee6ba8a1732dc051682ddfb.jpg", - "response": "A warehouse with multiple boxes stacked on the shelves.", - "id": 11470 - }, - { - "image_path": "/content/drive/MyDrive/combined/1203_jpg.rf.a4244af1d664c30e18221926bc34ec59.jpg", - "response": "A warehouse with shelves full of boxes and a person walking in the distance.", - "id": 11471 - }, - { - "image_path": "/content/drive/MyDrive/combined/11955_jpg.rf.3ebfd35f1dba90e94ac5492458dcd0ff.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 11472 - }, - { - "image_path": "/content/drive/MyDrive/combined/1251_jpg.rf.1b04deb09cce6960ebec6cf4e0e6a15f.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11473 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_png.rf.b1e0ba5a8257e4ed8e9eb681e9db0db7.jpg", - "response": "A man in a blue jacket walking into a room.", - "id": 11474 - }, - { - "image_path": "/content/drive/MyDrive/combined/11835_jpg.rf.d308c19c6d0769df9855ff2339b4a623.jpg", - "response": "A man is pulling a pallet rack in a warehouse.", - "id": 11475 - }, - { - "image_path": "/content/drive/MyDrive/combined/1215_jpg.rf.93b2c08846f9f49d91ca3a60bbe494a1.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11476 - }, - { - "image_path": "/content/drive/MyDrive/combined/1275_jpg.rf.49433891fd8f778048158ce260cd38ff.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11477 - }, - { - "image_path": "/content/drive/MyDrive/combined/11859_jpg.rf.e7917541257758d6f6ad2bf8889a043a.jpg", - "response": "A warehouse with a lot of boxes stacked on the left and right side of a walkway. The walkway is lined with blue metal bars. There is a person in the background wearing a yellow hard hat and a white shirt. They are on the left side of the walkway. There is a forklift on the right side of the walkway. It is covered in a white sheet. There are brown boxes stacked on the forklift. The forklift is in the middle of the warehouse.", - "id": 11478 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_png.rf.6f39448f0f02e132446e63c6ac97e00a.jpg", - "response": "A man in a black jacket is standing in an office.", - "id": 11479 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_png.rf.818c53f686641aa04dfd0c137e998137.jpg", - "response": "a group of children playing with an orange ball", - "id": 11480 - }, - { - "image_path": "/content/drive/MyDrive/combined/1347_jpg.rf.9eeddc5cc204804363ac31caecd9d359.jpg", - "response": "A man is driving a fork lift in a warehouse.", - "id": 11481 - }, - { - "image_path": "/content/drive/MyDrive/combined/134_png.rf.c80fba8aa844b22955958db9f57bb4bb.jpg", - "response": "A man is shoveling some snow away from a street sign.", - "id": 11482 - }, - { - "image_path": "/content/drive/MyDrive/combined/141_png.rf.efe2ab3f14efeb5d328ce350e2cda31a.jpg", - "response": "a man standing in a rain storm", - "id": 11483 - }, - { - "image_path": "/content/drive/MyDrive/combined/134_png.rf.c0c894f225ce96cfe27e68ba55015e4d.jpg", - "response": "A man in a white shirt and black shorts walking in a puddle of water.", - "id": 11484 - }, - { - "image_path": "/content/drive/MyDrive/combined/134_png.rf.41abe17b784eada0bbe5e53c03768a8d.jpg", - "response": "A man wearing a white shirt and black shorts is standing on a dirt road.", - "id": 11485 - }, - { - "image_path": "/content/drive/MyDrive/combined/134_png.rf.e2d49b9b8ef0a236ffbec63a463d9fae.jpg", - "response": "A man is walking in a parking garage that has a speckled epoxy floor.", - "id": 11486 - }, - { - "image_path": "/content/drive/MyDrive/combined/1431_jpg.rf.73c957802d95001c29613dabb9ef12d8.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11487 - }, - { - "image_path": "/content/drive/MyDrive/combined/146_png.rf.a2b8491befebb3a6f2f262cba76bb63a.jpg", - "response": "A snowy landscape with a river and trees.", - "id": 11488 - }, - { - "image_path": "/content/drive/MyDrive/combined/142_png.rf.2f31c8986e32c6d2e5b5b895500626c5.jpg", - "response": "A man walking in the rain with an umbrella.", - "id": 11489 - }, - { - "image_path": "/content/drive/MyDrive/combined/146_png.rf.cc17ba7a0c9e085580677ea01825922f.jpg", - "response": "A man wearing a white shirt is standing in a yard.", - "id": 11490 - }, - { - "image_path": "/content/drive/MyDrive/combined/13215_jpg.rf.ae0f1a0e46ddf580a80acaa4b2ab898d.jpg", - "response": "A large warehouse filled with lots of boxes and pallets.", - "id": 11491 - }, - { - "image_path": "/content/drive/MyDrive/combined/1395_jpg.rf.45eb59d0f7aedf51d6dec7dcdf020260.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a fork lift in the middle of the room and a person is operating it. The boxes are stacked on both sides of the walkway and there are also some boxes on the ground. The boxes are brown and white.", - "id": 11492 - }, - { - "image_path": "/content/drive/MyDrive/combined/137_png.rf.3a2a9b741a0c5ab1923a69b8161108e3.jpg", - "response": "A man is standing in the woods with a dog.", - "id": 11493 - }, - { - "image_path": "/content/drive/MyDrive/combined/131_png.rf.a269e46ea345f715b08f1680c531b60e.jpg", - "response": "A person walking on a street with a black jacket on.", - "id": 11494 - }, - { - "image_path": "/content/drive/MyDrive/combined/146_png.rf.7864bfecc2afe27e0884c152ead1e283.jpg", - "response": "A man is standing on a dirt road in the rain.", - "id": 11495 - }, - { - "image_path": "/content/drive/MyDrive/combined/1443_jpg.rf.34b2a71fc606b413e52e2f2d369a3dae.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves and on the floor. The boxes are brown and white. There are two people in the warehouse, one on the left and one on the right. The floor is white and the shelves are red. The warehouse is filled with a lot of items and it looks very messy.", - "id": 11496 - }, - { - "image_path": "/content/drive/MyDrive/combined/132_png.rf.f527c55278de32472a6b0b5ace34f80c.jpg", - "response": "A boy is standing in a puddle of water holding a frisbee.", - "id": 11497 - }, - { - "image_path": "/content/drive/MyDrive/combined/13383_jpg.rf.1a30e8032476e2b322d0a99ea6d31848.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11498 - }, - { - "image_path": "/content/drive/MyDrive/combined/140_png.rf.78e50d20fb64f6eaaa074f6071500ea2.jpg", - "response": "A woman walking down a street next to a bike rack.", - "id": 11499 - }, - { - "image_path": "/content/drive/MyDrive/combined/142_png.rf.fef4277a48e094b0c203922a8c51def1.jpg", - "response": "A man in a white shirt and black shorts is standing in a yard holding a frisbee.", - "id": 11500 - }, - { - "image_path": "/content/drive/MyDrive/combined/1443_jpg.rf.4cf0feb287cfd09d9d111d07b9891c7c.jpg", - "response": "A warehouse with shelves full of boxes and a man walking in the distance.", - "id": 11501 - }, - { - "image_path": "/content/drive/MyDrive/combined/131_png.rf.15916f17937bbc33e0230eae4ece8574.jpg", - "response": "A man walking down a street in a black jacket and jeans.", - "id": 11502 - }, - { - "image_path": "/content/drive/MyDrive/combined/13359_jpg.rf.09d0bbc6fa9f309d24f1a1587426c780.jpg", - "response": "A man in a warehouse moving boxes.", - "id": 11503 - }, - { - "image_path": "/content/drive/MyDrive/combined/1323_jpg.rf.75e17a18a234b018fcf24197cbda7403.jpg", - "response": "A warehouse with shelves full of boxes and a forklift in the middle of the room.", - "id": 11504 - }, - { - "image_path": "/content/drive/MyDrive/combined/145_png.rf.e4854bf131636cbf590d1159860dade1.jpg", - "response": "A man wearing a white shirt and black pants is standing outside in the snow. He has a green backpack on and is opening the passenger side door of a silver car.", - "id": 11505 - }, - { - "image_path": "/content/drive/MyDrive/combined/1455_jpg.rf.a723eca4bf671da7d4c03de525ec3b89.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There is a person in the background, wearing a white shirt and black pants. They are walking through the warehouse.", - "id": 11506 - }, - { - "image_path": "/content/drive/MyDrive/combined/1407_jpg.rf.026a48985665339a971718fc4ec4638e.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There are also pallets and a forklift in the warehouse.", - "id": 11507 - }, - { - "image_path": "/content/drive/MyDrive/combined/1467_jpg.rf.35366617178843ec7be3ec743d718996.jpg", - "response": "A warehouse with boxes stacked on shelves and pallets.", - "id": 11508 - }, - { - "image_path": "/content/drive/MyDrive/combined/1371_jpg.rf.dc17879431bd15ee4bb207bf4c192ea8.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a forklift in the warehouse and a person is visible in the background. The image is taken through a window with rain on it.", - "id": 11509 - }, - { - "image_path": "/content/drive/MyDrive/combined/144_png.rf.b2f986b0d2c34d89599d9f662b9b13dc.jpg", - "response": "A man wearing glasses and a white shirt is walking down a sidewalk.", - "id": 11510 - }, - { - "image_path": "/content/drive/MyDrive/combined/135_png.rf.d159ef818661b2eaebe4ec25dd9f6c19.jpg", - "response": "A person standing in front of a window.", - "id": 11511 - }, - { - "image_path": "/content/drive/MyDrive/combined/1359_jpg.rf.8eeb8d028244d59e619858546276a293.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11512 - }, - { - "image_path": "/content/drive/MyDrive/combined/1479_jpg.rf.3f03a72d95979f68251787046471a10c.jpg", - "response": "A large warehouse filled with lots of boxes and shelves.", - "id": 11513 - }, - { - "image_path": "/content/drive/MyDrive/combined/135_png.rf.26cda0ca4bdbea723a1a9d23b5cef58f.jpg", - "response": "A dog and a person are in a room. The dog is laying on the floor and the person is standing up. The dog is looking at the person. The person is looking down at the dog. The dog has a black and white color. The person is in the background and the dog is in the foreground. The room has a glass wall and the glass is reflecting the room.", - "id": 11514 - }, - { - "image_path": "/content/drive/MyDrive/combined/136_png.rf.5eac5a4266e89d98bf6a3cf1337a3957.jpg", - "response": "A car is parked in a parking lot with hundreds of bees surrounding it.", - "id": 11515 - }, - { - "image_path": "/content/drive/MyDrive/combined/146_png.rf.3e4f647613d9b7cf3bf069fedc63fdfb.jpg", - "response": "A blurry image of a snowy field with two people walking in the distance.", - "id": 11516 - }, - { - "image_path": "/content/drive/MyDrive/combined/13239_jpg.rf.b575dee36cfcf102ca59f0710606be2e.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11517 - }, - { - "image_path": "/content/drive/MyDrive/combined/137_png.rf.a2ed85517495a5c21ff1941f0ebeef6b.jpg", - "response": "A person standing in the woods with a camera.", - "id": 11518 - }, - { - "image_path": "/content/drive/MyDrive/combined/139_png.rf.d6cf7997667605641be01a3ce729fccf.jpg", - "response": "A person walking down a street next to a bench.", - "id": 11519 - }, - { - "image_path": "/content/drive/MyDrive/combined/13359_jpg.rf.dabb8b15248155e0abfa0b9b8e3cc89f.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11520 - }, - { - "image_path": "/content/drive/MyDrive/combined/1395_jpg.rf.114e7c432eb33ce1eba7baf76a7a8049.jpg", - "response": "A warehouse with boxes stacked on pallets and shelving.", - "id": 11521 - }, - { - "image_path": "/content/drive/MyDrive/combined/13239_jpg.rf.0671d980e26ea2841cf34f7a9448e87a.jpg", - "response": "A warehouse with cardboard boxes stacked on pallets and on the floor. There are several people in the warehouse and a forklift is present. The warehouse is filled with boxes and the walls are white.", - "id": 11522 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_png.rf.e6ef4a430c5982cf9e5a21a92b1e8476.jpg", - "response": "A man in a white shirt and black shorts is walking through a store.", - "id": 11523 - }, - { - "image_path": "/content/drive/MyDrive/combined/13383_jpg.rf.68d43ad4e301d06c2b2a524dd0e477cc.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11524 - }, - { - "image_path": "/content/drive/MyDrive/combined/133_png.rf.333470c5fa7e465ef8150f31d706fd65.jpg", - "response": "A gym with a person on a stationary bike in the background.", - "id": 11525 - }, - { - "image_path": "/content/drive/MyDrive/combined/141_png.rf.55898fad632b729d36570f82cad261a1.jpg", - "response": "A man wearing a blue jacket and carrying a backpack is raking up leaves off a roof.", - "id": 11526 - }, - { - "image_path": "/content/drive/MyDrive/combined/130_png.rf.d7a4f4d35098ece4600654870b88f0b2.jpg", - "response": "A woman standing in front of a window in a room.", - "id": 11527 - }, - { - "image_path": "/content/drive/MyDrive/combined/143_png.rf.17855f7461422b72d43e4e6ad678e01e.jpg", - "response": "A man walking down a sidewalk in a wooded area.", - "id": 11528 - }, - { - "image_path": "/content/drive/MyDrive/combined/13215_jpg.rf.444063e9b4cb0ab3bc87499de831a683.jpg", - "response": "A man is standing in a large warehouse filled with boxes and shelves. The boxes are stacked on the shelves and on the floor. Some of the boxes are large and brown, some are small and white. The shelves are made of metal and are placed throughout the warehouse. The man is standing in the middle of the warehouse, near the shelves. The warehouse is filled with a lot of boxes and it looks like a very busy place.", - "id": 11529 - }, - { - "image_path": "/content/drive/MyDrive/combined/1431_jpg.rf.701a723ae5c1a5cac467ab3347e46234.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11530 - }, - { - "image_path": "/content/drive/MyDrive/combined/145_png.rf.57051fc192c1559f3d8d9c5c2f63db94.jpg", - "response": "A person wearing a white jacket and black pants is standing outside in the snow. They are wearing a green backpack and have a white car to their right. The person are looking at the car.", - "id": 11531 - }, - { - "image_path": "/content/drive/MyDrive/combined/1347_jpg.rf.9cfa1d1891a71c005a9f596576cf879f.jpg", - "response": "A warehouse with boxes stacked on pallets and forklifts.", - "id": 11532 - }, - { - "image_path": "/content/drive/MyDrive/combined/141_png.rf.203c6c45a5073a2b27412f119eb83e52.jpg", - "response": "A man in a blue shirt is blowing leaves with a leaf blower.", - "id": 11533 - }, - { - "image_path": "/content/drive/MyDrive/combined/145_png.rf.627cb45f98b890634bf54c0d84015110.jpg", - "response": "a man walking down a street", - "id": 11534 - }, - { - "image_path": "/content/drive/MyDrive/combined/141_png.rf.12e4681459054b5aef2fd46de602ab1c.jpg", - "response": "A man is walking in the rain with his arms out.", - "id": 11535 - }, - { - "image_path": "/content/drive/MyDrive/combined/133_png.rf.1646583c66dd6b3912ed5e02f6645101.jpg", - "response": "A person standing in front of a window with a blue sky.", - "id": 11536 - }, - { - "image_path": "/content/drive/MyDrive/combined/132_png.rf.a106963a894f4c19173b3b2e80ef79bf.jpg", - "response": "A man in black is running after a white dog.", - "id": 11537 - }, - { - "image_path": "/content/drive/MyDrive/combined/1371_jpg.rf.d9d35aa08cd3f86ebcb39076f65d7d46.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11538 - }, - { - "image_path": "/content/drive/MyDrive/combined/145_png.rf.02372e6e405f309d2332e56510b703a2.jpg", - "response": "A man walking down a street holding a frisbee.", - "id": 11539 - }, - { - "image_path": "/content/drive/MyDrive/combined/136_png.rf.347c1a9b36a2019502332834739a237b.jpg", - "response": "A man is walking across a parking lot.", - "id": 11540 - }, - { - "image_path": "/content/drive/MyDrive/combined/132_png.rf.5523ce9249a30c2f3e7eeae6f5f5c843.jpg", - "response": "A man in black is chasing a man in white down a street.", - "id": 11541 - }, - { - "image_path": "/content/drive/MyDrive/combined/1359_jpg.rf.8af948c13da7dce7f9f914470e8d4677.jpg", - "response": "A warehouse with shelves full of boxes and a forklift in the middle.", - "id": 11542 - }, - { - "image_path": "/content/drive/MyDrive/combined/139_png.rf.4a0c7435c0a63ea82edf5670d04044a6.jpg", - "response": "A man in a white shirt and black shorts is walking in the rain.", - "id": 11543 - }, - { - "image_path": "/content/drive/MyDrive/combined/1407_jpg.rf.84d251573d1a4a8ecc0655dfad56f2c4.jpg", - "response": "A warehouse with shelves full of boxes and a lot of dust.", - "id": 11544 - }, - { - "image_path": "/content/drive/MyDrive/combined/139_png.rf.82eb6197cdafc8d53a71db2d0d91b4eb.jpg", - "response": "A dog standing next to a bike on a road.", - "id": 11545 - }, - { - "image_path": "/content/drive/MyDrive/combined/144_png.rf.1a5f626af1e63f3a18933d30f226f190.jpg", - "response": "a man walking in a yard holding a water bottle", - "id": 11546 - }, - { - "image_path": "/content/drive/MyDrive/combined/143_png.rf.592020ecb46a015ce20b72c44d7ba079.jpg", - "response": "A person walking on a bridge with trees in the background.", - "id": 11547 - }, - { - "image_path": "/content/drive/MyDrive/combined/1455_jpg.rf.4ae3bfdc2a4f532490ca52f3545a568a.jpg", - "response": "A forklift in a warehouse moving boxes on a pallet rack.", - "id": 11548 - }, - { - "image_path": "/content/drive/MyDrive/combined/139_png.rf.de2ec429d1247b91810c5711ea75d0ad.jpg", - "response": "A man wearing a white shirt and black shorts is walking in a courtyard.", - "id": 11549 - }, - { - "image_path": "/content/drive/MyDrive/combined/1467_jpg.rf.a8c25a16079124b48da748ccfd72be8c.jpg", - "response": "A warehouse with boxes stacked on shelves and on the floor. There are several different boxes, some are brown, some are white, and some are blue. The boxes are stacked three high in several places. There are also several different types of items in the warehouse, including a large white box with a blue lid, a yellow box with a red lid, and a blue box with a white lid. There are also several different types of items on the shelves, including a yellow box with a red lid, a blue box with a white lid, and a brown box with a white lid.", - "id": 11550 - }, - { - "image_path": "/content/drive/MyDrive/combined/1323_jpg.rf.d9316078a48fd709fd526c333e7dc0ff.jpg", - "response": "In the image, there is a warehouse filled with boxes and pallets of goods. The room is filled with shelves that have goods stacked on them. A person is in the room, and they are using a forklift to move some of the boxes. The forklift is a yellow color. There are also some other people in the room, but they are not very noticeable. The shelves are filled with different types of goods, and the room has a very industrial feel to it.", - "id": 11551 - }, - { - "image_path": "/content/drive/MyDrive/combined/132_png.rf.0e09c5a61bab658de42493ee0c01ca72.jpg", - "response": "A man standing in a yard holding a frisbee.", - "id": 11552 - }, - { - "image_path": "/content/drive/MyDrive/combined/140_png.rf.16e4a1869c8cdf6ec3f4c9507713ee56.jpg", - "response": "A man walking his bicycle across a parking lot.", - "id": 11553 - }, - { - "image_path": "/content/drive/MyDrive/combined/13_png.rf.c26a845595fd0e5fd4003a9e6921f63d.jpg", - "response": "A man walking through a lobby wearing a white shirt and black pants.", - "id": 11554 - }, - { - "image_path": "/content/drive/MyDrive/combined/150_png.rf.1e6deb5eb5231131f33223c47a61c12c.jpg", - "response": "A man standing next to a toilet in a yard.", - "id": 11555 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674841-1362402_jpg.rf.9cbb7f8a0906e330102c133f41926053.jpg", - "response": "A large warehouse with a lot of boxes stacked on shelves.", - "id": 11556 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674863-9510927_jpg.rf.e364348d8f9971b9b50c0efa2265a601.jpg", - "response": "A large warehouse with a bunch of boxes stacked on the left side of the room.", - "id": 11557 - }, - { - "image_path": "/content/drive/MyDrive/combined/1503_jpg.rf.23f85d7bc514a03c60eecf983ccfc1a8.jpg", - "response": "A very large storage unit with a lot of boxes on the shelves.", - "id": 11558 - }, - { - "image_path": "/content/drive/MyDrive/combined/155_png.rf.d19ece408febd7f222bb93588f476900.jpg", - "response": "A large flock of birds standing on the ground.", - "id": 11559 - }, - { - "image_path": "/content/drive/MyDrive/combined/1563_jpg.rf.f2d3689657ff9d43e128526e41c99f5e.jpg", - "response": "A warehouse filled with lots of boxes on shelves.", - "id": 11560 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674840-7745295_jpg.rf.ed42787f0197028d4877841df6040855.jpg", - "response": "A warehouse with a person standing in it.", - "id": 11561 - }, - { - "image_path": "/content/drive/MyDrive/combined/147_png.rf.76ddcec7269ed95fa439b4ce9fed85b7.jpg", - "response": "a person standing outside holding a frisbee", - "id": 11562 - }, - { - "image_path": "/content/drive/MyDrive/combined/156_png.rf.71110054905b846848f3df7bdeec7d5d.jpg", - "response": "A man and a woman stand under a grey umbrella. The man is wearing a black jacket and blue jeans. The woman is wearing a brown hoodie and black pants. They are standing on a grey sidewalk.", - "id": 11563 - }, - { - "image_path": "/content/drive/MyDrive/combined/153_png.rf.c0dc990901b80555bbe6a3b05bd032aa.jpg", - "response": "A man is walking through a lobby.", - "id": 11564 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674885-6123874_jpg.rf.d8fa1136293b15b83f1221358d900931.jpg", - "response": "A pallet with a large white box wrapped in plastic.", - "id": 11565 - }, - { - "image_path": "/content/drive/MyDrive/combined/150_png.rf.e9922309da8a3d15266f1bc5393ac16c.jpg", - "response": "A man standing in a puddle of water.", - "id": 11566 - }, - { - "image_path": "/content/drive/MyDrive/combined/153_png.rf.50a714ced86abf3f36af9e0342e0e882.jpg", - "response": "A man walking into a room with a basketball hoop.", - "id": 11567 - }, - { - "image_path": "/content/drive/MyDrive/combined/155_png.rf.0e833ca59d379b9362ba541d2a146038.jpg", - "response": "A picture of a park with a lot of birds on the ground.", - "id": 11568 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674840-7745295_jpg.rf.06ff9a6d3347a3c371e7404a8520e144.jpg", - "response": "A warehouse with a concrete floor and a lot of shelving.", - "id": 11569 - }, - { - "image_path": "/content/drive/MyDrive/combined/1515_jpg.rf.b0e12f738e60c32bf1ab136845f01096.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11570 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674814586-67_jpg.rf.a34152337e3a713b1f1b7bee52c58264.jpg", - "response": "A warehouse with a lot of boxes on the shelves. There are also some people working in the warehouse.", - "id": 11571 - }, - { - "image_path": "/content/drive/MyDrive/combined/1503_jpg.rf.d65e9c64428a4dac6e26e72ddbb6755b.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 11572 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674577-0927765_jpg.rf.2ffbaef24d9b108ccf3d2b78f509e681.jpg", - "response": "A doorway with a curtain in front of it.", - "id": 11573 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674846-6563406_jpg.rf.54c0ee5ae96e61e936d6f6adc41add45.jpg", - "response": "A warehouse with a concrete floor. There are pallets on the left and right sides of the room and a door in the back. The warehouse is filled with dust.", - "id": 11574 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674577-0927765_jpg.rf.cbf1cb3542dcf444866b029ae26c857b.jpg", - "response": "A view of a room through a window covered in black dots.", - "id": 11575 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674836-7264671_jpg.rf.a505bb6160afdb15844e38c581923edf.jpg", - "response": "a room with a lot of boxes and shelves in it", - "id": 11576 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674811-283754_jpg.rf.e09ba92319652a774cbbff0df341054f.jpg", - "response": "A warehouse with a forklift in the middle of it.", - "id": 11577 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674836-7264671_jpg.rf.b2e408cd402d805f96f376beec6cc1ff.jpg", - "response": "A warehouse with shelves full of boxes and a fork lift in the middle of the room.", - "id": 11578 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674814-96099_jpg.rf.f46b93a92123f66df49898f7a6c92f31.jpg", - "response": "A room with a blue floor and white walls.", - "id": 11579 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674844-089584_jpg.rf.99735dfca0b77c25473942d0da2ac219.jpg", - "response": "A warehouse with white dots all over the image. On the left side of the image there are several tall shelves with boxes on them. The boxes are brown, black and white. In the middle of the image there is a tall yellow shelf. On the right side of the image there are also several tall shelves with boxes on them. The boxes are blue, white and brown. The ceiling is high and the floor is made of concrete.", - "id": 11580 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674844-449853_jpg.rf.718d4080f2fd3232de4071356d63243b.jpg", - "response": "A warehouse with a silver floor and yellow walls. There are shelves on the right side of the room and a door in the back. There are also two windows on the left side of the room.", - "id": 11581 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674841-1362402_jpg.rf.15d7b9db6e994603e0671ccb05d48437.jpg", - "response": "A blurry image of a warehouse with a lot of boxes stacked on pallets.", - "id": 11582 - }, - { - "image_path": "/content/drive/MyDrive/combined/148_png.rf.4e7602c7cdf02f5f1de5c3869807c68d.jpg", - "response": "A group of people are standing on a bench.", - "id": 11583 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674808128-13_jpg.rf.25cf53e4a0ea15e0a8dc1af73def06cf.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11584 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674770-111311_jpg.rf.bc45adca1538a91200b6971cfd2e003a.jpg", - "response": "A room with a black floor and ceiling covered in white LED lights that resemble stars.", - "id": 11585 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674831-9381368_jpg.rf.bc17a8da7f38f28a3f85237322e84bbc.jpg", - "response": "A warehouse filled with lots of boxes and other items.", - "id": 11586 - }, - { - "image_path": "/content/drive/MyDrive/combined/156_png.rf.dfa6ab9f2f47a38a810fe0b2806148fd.jpg", - "response": "A group of people standing on a sidewalk.", - "id": 11587 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674885-6123874_jpg.rf.968197556f2d30d289c06b67ca31af8a.jpg", - "response": "A pallet of white boxes in a warehouse.", - "id": 11588 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674811-283754_jpg.rf.3e2b7acb36df37595663b421ee2afcbd.jpg", - "response": "A forklift is in a warehouse, moving some boxes.", - "id": 11589 - }, - { - "image_path": "/content/drive/MyDrive/combined/149_png.rf.a8eb843090153b19e85351e7b0e9e525.jpg", - "response": "A man wearing a hat and a green bag stands next to a row of bicycles.", - "id": 11590 - }, - { - "image_path": "/content/drive/MyDrive/combined/14_png.rf.fb193263da4773afa23d018f1514cfec.jpg", - "response": "a little girl wearing a yellow shirt and blue shoes", - "id": 11591 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674842900-75_jpg.rf.6f873f55bba276274896f1bd44b56947.jpg", - "response": "A large room with a concrete floor. There are many cardboard boxes on the left side of the room and a window on the right side. The boxes are stacked up on shelves and also on the floor.", - "id": 11592 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674846-6563406_jpg.rf.6d1254c1b9cc3ff03e2f6a6add17e1de.jpg", - "response": "A large warehouse with a lot of boxes stacked on the left and right sides of the room. The room is filled with a white dust or powder. There is a door in the back of the room and a window on the right side.", - "id": 11593 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674844-089584_jpg.rf.87307f2885dc88bfb73cad21ba509ae3.jpg", - "response": "A warehouse filled with lots of boxes on the shelves.", - "id": 11594 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674847-3979993_jpg.rf.05d5a1d58aa9070e0ea723dc5f66ca41.jpg", - "response": "a room with a lot of boxes in it", - "id": 11595 - }, - { - "image_path": "/content/drive/MyDrive/combined/154_png.rf.6784a6fe08ff91c4cd491d0960100c77.jpg", - "response": "A person walking on a path in the woods with a blue jacket on.", - "id": 11596 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674814586-67_jpg.rf.1c36c1c2cb3d508861aff3fd0f26dce0.jpg", - "response": "A warehouse with boxes stacked on the shelves and on the floor. There are two people in the warehouse, one on the far right and another one further back. There is a chair in the warehouse as well.", - "id": 11597 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674842900-75_jpg.rf.3de10d592f0dea85ea249a206095f336.jpg", - "response": "A large room with a high ceiling filled with boxes on shelves and pallets.", - "id": 11598 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674847-3979993_jpg.rf.26511e704285175e81281c72ed45e2ec.jpg", - "response": "A room filled with many shelves on the walls.", - "id": 11599 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674873-8576727_jpg.rf.83011948f5d7fa2d725381833751029d.jpg", - "response": "A warehouse with a door in the back and a rack of boxes on the left.", - "id": 11600 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674895-9290917_jpg.rf.476ccaad8e854b2680cac330e5a7880e.jpg", - "response": "A large warehouse with a lot of boxes stacked up in it.", - "id": 11601 - }, - { - "image_path": "/content/drive/MyDrive/combined/1563_jpg.rf.562f2601e9b833b1bea24db09b1f3525.jpg", - "response": "A large warehouse with boxes stacked on shelves.", - "id": 11602 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674851-0687063_jpg.rf.52d7bf3eae6941b8d12aba849da345f7.jpg", - "response": "A warehouse with shelves on both sides of the room.", - "id": 11603 - }, - { - "image_path": "/content/drive/MyDrive/combined/1491_jpg.rf.55487ca265c812379e325171b4ef93b8.jpg", - "response": "A warehouse with boxes stacked on shelves and pallets.", - "id": 11604 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674814-96099_jpg.rf.3388c3f08e4d686adb4b1aff44b5dc3a.jpg", - "response": "A room with a silver floor and a window.", - "id": 11605 - }, - { - "image_path": "/content/drive/MyDrive/combined/148_png.rf.8cf87122f58ac7995201ea4167ae4d8f.jpg", - "response": "A group of people are sitting on park benches.", - "id": 11606 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674873-8576727_jpg.rf.8fe3a20b9a7b14624333e2e9f61d5632.jpg", - "response": "A large room with a lot of shelves and boxes on the walls.", - "id": 11607 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674851-0687063_jpg.rf.059e594a217353e7280088611580ceeb.jpg", - "response": "A warehouse with a lot of shelves and boxes.", - "id": 11608 - }, - { - "image_path": "/content/drive/MyDrive/combined/154_png.rf.3fcf6e6ff9a3f9ea93874c5b5acc5322.jpg", - "response": "A person walking in the snow with a dog.", - "id": 11609 - }, - { - "image_path": "/content/drive/MyDrive/combined/1515_jpg.rf.68c9ba0b146b18c12070b158bbbbed41.jpg", - "response": "A warehouse filled with lots of boxes and items.", - "id": 11610 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674863-9510927_jpg.rf.ca8f26cbd7ba4e6b6505f028eac25422.jpg", - "response": "a large room with a lot of boxes in it", - "id": 11611 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674849-9647636_jpg.rf.2c8161b87aaa6b7868f27116332c4bee.jpg", - "response": "A large room filled with boxes and other items.", - "id": 11612 - }, - { - "image_path": "/content/drive/MyDrive/combined/14_png.rf.f725e5c8252620e906da0aef644b779b.jpg", - "response": "a person walking on a sidewalk next to a bench", - "id": 11613 - }, - { - "image_path": "/content/drive/MyDrive/combined/149_png.rf.fc90f9dbb56f02ef7abd2dbb8754d886.jpg", - "response": "A man wearing a hat and a backpack is standing next to a bike. The bike is green and has a basket in front. There are many other bikes around the man, some of them are parked and some of them are leaning on the man. The bikes are in different positions and some of them are on the ground while others are on a rack. The man is standing on a street and there is a building next to him. The image is blurry and there are many small white dots scattered all over the picture.", - "id": 11614 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674844-449853_jpg.rf.0080028c1b1297b3aa6e1cdce22b7b3d.jpg", - "response": "A large warehouse with a gray floor.", - "id": 11615 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674879-3596628_jpg.rf.8283301e9c6d03ef56a8808bf7f21591.jpg", - "response": "A warehouse with a large stack of boxes on pallets.", - "id": 11616 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674879-3596628_jpg.rf.29119c3e17364081fa71bdb2b42e53c7.jpg", - "response": "A pallet rack aisle in a warehouse with a layer of dust on the floor. The rack is filled with boxes and the aisle is lined with yellow guard rails.", - "id": 11617 - }, - { - "image_path": "/content/drive/MyDrive/combined/1479_jpg.rf.b352855e1ae0e6e5c0ce281fc3edba49.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11618 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674895-9290917_jpg.rf.36ccd60237106f5cfec58c7bc27cdb9d.jpg", - "response": "A large warehouse with a bunch of boxes stacked on pallets.", - "id": 11619 - }, - { - "image_path": "/content/drive/MyDrive/combined/147_png.rf.1506e135a0b17858b602e8b851cbb693.jpg", - "response": "A boy in a white shirt is throwing a frisbee.", - "id": 11620 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674831-9381368_jpg.rf.1e619597290233b27c6099077ef12670.jpg", - "response": "A warehouse filled with boxes and shelves.", - "id": 11621 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674849-9647636_jpg.rf.06973cbc422cdc96329f1d941c0a2b40.jpg", - "response": "A warehouse with a lot of shelves on the left and right side of the room. The room is filled with boxes and there is a window at the back of the room. The floor is covered in small black spots.", - "id": 11622 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674770-111311_jpg.rf.f4b4b2538dd10570c6cfc4ac031e69fa.jpg", - "response": "A black image with white speckles all over it.", - "id": 11623 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674808128-13_jpg.rf.7f730f24a6c9c8f3dfb2b1645d0fec19.jpg", - "response": "A large warehouse with shelves full of boxes and a person standing in the middle of the room.", - "id": 11624 - }, - { - "image_path": "/content/drive/MyDrive/combined/1491_jpg.rf.ca6caa16a2b6628c5db3c0d6e7276a64.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11625 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675028-6184518_jpg.rf.ff602133730956d1895df70a32e4eeea.jpg", - "response": "A person sitting on a red chair in a room.", - "id": 11626 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674934-3528528_jpg.rf.ade1ec7c9f6b43305a1600f6433b981f.jpg", - "response": "The image shows a room filled with various appliances, including a refrigerator, a stove, and a microwave. The appliances are wrapped in plastic, indicating that they have either been recently purchased or are about to be moved. There are also several boxes in the room, some of which are stacked against the wall. The room has a concrete floor and a door is visible at the far end of the room.", - "id": 11627 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674981-1159089_jpg.rf.406bb9f3be69dcb2a716da090ef3c49b.jpg", - "response": "a room with a grey floor and walls", - "id": 11628 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675002-4716797_jpg.rf.3dcb422f698faeade12b4a6918e79468.jpg", - "response": "A woman with a very large breast standing in a room.", - "id": 11629 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674946-5303204_jpg.rf.36b7eb5b3f1546ab549f8a70dc9c6654.jpg", - "response": "A warehouse filled with lots of boxes and appliances.", - "id": 11630 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674966-043515_jpg.rf.3576c763913ed71c53b501f3c59012a8.jpg", - "response": "A man on a forklift in a warehouse.", - "id": 11631 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675020734-79_jpg.rf.1e6ec24eb521cf323495862a92414812.jpg", - "response": "A blurry image of a room with a lot of boxes on the shelves.", - "id": 11632 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675023-097059_jpg.rf.04cd5e86a98f57d5bf9fb31979aa2b02.jpg", - "response": "A room with a bunch of wooden crates in it.", - "id": 11633 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675029-7192_jpg.rf.53b22fb08c889b9ccc8e85413111333d.jpg", - "response": "A blurry image of a red chair sitting on top of a wooden floor.", - "id": 11634 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674940-2691948_jpg.rf.bec4e2fbb20a90acadb0ec03c01a4a0b.jpg", - "response": "A warehouse filled with boxes and other items.", - "id": 11635 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675023-097059_jpg.rf.386f4a52eeaa60894c88ceb2b2a639cc.jpg", - "response": "A photo of a dark street with a lot of lights. There is a black gate in the middle of the street and a wooden building on the left. The street is made of bricks and there are several wooden pallets on the right side of the street. In the background, there is a bridge and a building with blue lights.", - "id": 11636 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674922216-14_jpg.rf.186cf4adec861354637e6925ad7b0157.jpg", - "response": "A warehouse with pallets and boxes stacked on the left and right walls. The floor is covered in small white dots. There is a car on the left side of the image and a person on the right side.", - "id": 11637 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674907-0128782_jpg.rf.dd79c11a96181fe661aba0c3831875ea.jpg", - "response": "A warehouse with a person standing in the middle of it. The person is standing in front of a tall shelf with boxes on it. The image is full of dots.", - "id": 11638 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674940-2691948_jpg.rf.5c5f5c2265bb7e863b735ac0acf98b35.jpg", - "response": "a warehouse with a bunch of boxes inside of it", - "id": 11639 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675015436-8_jpg.rf.81a0428f37e8f19f53d4ddac30cd0896.jpg", - "response": "A blurry image of a room with a forklift and several wooden pallets.", - "id": 11640 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674919-2147794_jpg.rf.bd6fd90c6b114175a843a1a4361ab6ce.jpg", - "response": "A warehouse with boxes stacked on pallets and a person standing in the background.", - "id": 11641 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674927182-02_jpg.rf.89bbb1dc1304cd0132750e4e1a840152.jpg", - "response": "A large warehouse with shelves full of boxes and pallets.", - "id": 11642 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674998-0463414_jpg.rf.99e8b55dc727d5e0519c4050b59ca7b2.jpg", - "response": "A blurry image of a dog sitting on the floor.", - "id": 11643 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675028517-17_jpg.rf.e8f072fd0c7dbed9a24d379523ea481d.jpg", - "response": "A large warehouse with shelves full of boxes and blue pallets stacked up.", - "id": 11644 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675002-112059_jpg.rf.90ba273973c373fd55f3c29c5340487e.jpg", - "response": "a man wearing a black jacket and a yellow backpack", - "id": 11645 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674946-5303204_jpg.rf.6241fe172eb4cda86281dd316047737b.jpg", - "response": "A large pallet filled with wrapped boxes.", - "id": 11646 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674918-1037645_jpg.rf.917e3b027b8eead9b25fb3716fb36db0.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 11647 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674897-0370016_jpg.rf.87c9315f7693102c6990727a58339fcb.jpg", - "response": "A warehouse filled with boxes and pallets of items.", - "id": 11648 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674922216-14_jpg.rf.66591e278b36a68b2b4582741782724a.jpg", - "response": "A warehouse filled with lots of boxes stacked on pallets.", - "id": 11649 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674984-0505984_jpg.rf.4ff4ebcdb8c7e7cc34b5808d1885a8ef.jpg", - "response": "A pallet of boxes with a white sticker on it.", - "id": 11650 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674984-4295294_jpg.rf.5f4ba42c0205722268f4bc5cdb13e837.jpg", - "response": "A man is standing in a warehouse next to a shelf.", - "id": 11651 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674965-6816509_jpg.rf.2bf5364d42bcee27cfeb29b3a9ef46cb.jpg", - "response": "A warehouse with a forklift and boxes stacked up.", - "id": 11652 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675028-6184518_jpg.rf.665c72adc46a5097b51e320a1fd2c0f3.jpg", - "response": "A blurry image of a street scene with a car and a truck in the background. The street is covered in a layer of small white dots.", - "id": 11653 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674945-0570621_jpg.rf.bc27eb6a366b030f756a48134ac68333.jpg", - "response": "A man standing in a room with a cart.", - "id": 11654 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674918240-11_jpg.rf.918016f716d2ac958095b1d6ef82ca7f.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11655 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674907-0128782_jpg.rf.5a7196f3d00f07685dfa1592346ee672.jpg", - "response": "A warehouse with a lot of boxes stacked on pallets.", - "id": 11656 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675002-112059_jpg.rf.50146d233009ee5af1aaf29a4529d88c.jpg", - "response": "a man wearing a yellow vest in a warehouse filled with pallets of boxes", - "id": 11657 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674897-7657158_jpg.rf.74c7ce2112ffe31a928ef7cdc5537429.jpg", - "response": "A room filled with boxes and other items.", - "id": 11658 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675039943-05_jpg.rf.ec295d21e11f87cb4d1b36befc909f29.jpg", - "response": "A metal rack with many boxes stacked on it.", - "id": 11659 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675002-4716797_jpg.rf.94c030a570fa293fbc2c32405ada7cd1.jpg", - "response": "A person is standing in a room with a lot of clutter. The person is wearing a black shirt and has a beard. There is a large white object in the room and a person is holding a handbag. The room has a lot of bottles and other objects scattered about.", - "id": 11660 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674899-9846036_jpg.rf.3f17e41b7d861f9a942e9370a7775075.jpg", - "response": "A pallet with boxes on it in a warehouse.", - "id": 11661 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674936-94951_jpg.rf.bf8c309b18346fb8ce34dd17745734a5.jpg", - "response": "A warehouse with boxes stacked on pallets and a forklift in the background.", - "id": 11662 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674901-0957634_jpg.rf.f32baeb31e273a41a1db540de4eca75f.jpg", - "response": "A large warehouse with pallets full of boxes and other items.", - "id": 11663 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674971-1990623_jpg.rf.d318f10a70cfd8994ab2114bb1afa3e9.jpg", - "response": "A room with a bunch of boxes in it.", - "id": 11664 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674965-6816509_jpg.rf.4acc36dc4537f95199e0fab382fd6130.jpg", - "response": "A man standing in a room with a metal rack.", - "id": 11665 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675046-9968197_jpg.rf.51288fb1acc1212f6f255c3ceb8796d6.jpg", - "response": "A blurry image of a room with a blue metal rack and a brown wooden rack. The brown wooden rack has boxes on it. There is a table in the room as well. The image is very grainy.", - "id": 11666 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674984-0505984_jpg.rf.d516f78df13007e5cbeaffd17263b25a.jpg", - "response": "A blue rack with a tag on it in a room.", - "id": 11667 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674927182-02_jpg.rf.e90b488ace83ec37518ab3465b396d2e.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 11668 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674998-0463414_jpg.rf.09bcf046ef54d6fcfb1afd3bccee75ae.jpg", - "response": "A blurry image of a large warehouse with a lot of equipment. There is a large machine in the middle of the room and a man standing next to it. There is a yellow lift in the background and a large white box.", - "id": 11669 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674976-7042243_jpg.rf.4d4413ae58ed060bde678a824347b164.jpg", - "response": "A very large room with a lot of boxes stacked up on the left and right walls. The floor is grey and the walls are a dark grey. There is a lot of glitter on the image.", - "id": 11670 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674981-1159089_jpg.rf.afe6357e831907c3c3df0aefb9eccd5a.jpg", - "response": "a room with a bunch of boxes in it", - "id": 11671 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674957-970121_jpg.rf.aac2f9fa132c92b7c89045c0ace94c29.jpg", - "response": "A warehouse with boxes stacked on pallets and people walking around.", - "id": 11672 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674919-2147794_jpg.rf.93ed5298a2eea0ad711fe7e2558dcf15.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 11673 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674941-7396162_jpg.rf.69e6d3529ce60fd480af940f45b7e3e7.jpg", - "response": "A warehouse with pallets and barrels on the floor.", - "id": 11674 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674941-7396162_jpg.rf.c222c963eaa8f663fa1e65e83ca7753f.jpg", - "response": "A large warehouse with shelves and pallets full of goods.", - "id": 11675 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675028517-17_jpg.rf.a435efff667aa458fdae07ad82c1e440.jpg", - "response": "A long row of metal shelves in a warehouse. The shelves are filled with cardboard boxes. The floor is speckled.", - "id": 11676 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675029-7192_jpg.rf.0e1099f58d4bd8a3a25a7d4404c68e72.jpg", - "response": "A man sitting on a bus with a red jacket on.", - "id": 11677 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674957-970121_jpg.rf.07e33c0142731e467fde6c7b7a49430a.jpg", - "response": "A snow effect is overlayed on a photo of a warehouse filled with boxes and pallets.", - "id": 11678 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674976-7042243_jpg.rf.d8218ed6527dccd219b3d89744675b92.jpg", - "response": "A warehouse with a lot of boxes stacked on the left and right side of the image. The floor is grey and the boxes are stacked three high. The boxes are made of cardboard and are brown in color.", - "id": 11679 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674967-148219_jpg.rf.54fc0c02767cedaadae17e6b6eba2be2.jpg", - "response": "A pallet jack is in a warehouse filled with boxes.", - "id": 11680 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674897-0370016_jpg.rf.d305adb6b2b3d3e2941e2a6ad889d325.jpg", - "response": "A large warehouse with a concrete floor.", - "id": 11681 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674966-043515_jpg.rf.ecf0df8114e1e5e54db08e9d1dc871df.jpg", - "response": "A forklift in a warehouse with pallets of boxes stacked on the shelves.", - "id": 11682 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674901-0957634_jpg.rf.b6a7c05a39eee4f874d2e0ed1de81948.jpg", - "response": "A pallet with a bunch of boxes on it.", - "id": 11683 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674967-148219_jpg.rf.fd1e62ed3f3b83ae5126f1cba79d3004.jpg", - "response": "A warehouse with wooden pallets stacked on top of each other and wrapped items on pallets.", - "id": 11684 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675046-9968197_jpg.rf.3cbd00b72ecc7ee4a314046ca3a9a7c6.jpg", - "response": "A blurry image of a room with a blue metal rack. The room has a speckled floor and is filled with cardboard boxes on the shelves. There are two white bowls on the floor and a blue table in the room.", - "id": 11685 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674899-9846036_jpg.rf.f804df79fb753f6ce96cdca63c8e1572.jpg", - "response": "A pallet with boxes and other wrapped items.", - "id": 11686 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674918-1037645_jpg.rf.9d7417a5adb4f694eab2b431a75f2712.jpg", - "response": "A warehouse filled with lots of boxes and items.", - "id": 11687 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674918240-11_jpg.rf.a2cc4f502cfe784060e1123781c2db52.jpg", - "response": "A warehouse with a lot of boxes stacked up.", - "id": 11688 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674929169-07_jpg.rf.0107139649d58fe1efc0a0de2efbb37f.jpg", - "response": "A warehouse with shelves full of boxes and a silver car parked in the warehouse.", - "id": 11689 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674934-3528528_jpg.rf.efdf605769e8edf302aecd2b86443a98.jpg", - "response": "A room filled with wrapped furniture and boxes.", - "id": 11690 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675015436-8_jpg.rf.b8362835b9d240f050d35ac5ccc131cd.jpg", - "response": "A room with a table and chairs and a bunch of wooden pallets stacked up against the wall.", - "id": 11691 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674971-1990623_jpg.rf.099d580b6cb07ee4c804b8535b1d13cf.jpg", - "response": "a large room with a pallet of boxes and other items.", - "id": 11692 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674897-7657158_jpg.rf.cc9f89b58d9cb25ff3c3cd7223d85b2d.jpg", - "response": "A pallet with a lot of boxes on it.", - "id": 11693 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674984-4295294_jpg.rf.065b58c26b6aec64c35ec0790c2726fb.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11694 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674936-94951_jpg.rf.d96501d423a106d4c7c826683a9d8cef.jpg", - "response": "A man in a warehouse is pulling a pallet with a dolly.", - "id": 11695 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675020734-79_jpg.rf.25adec86887e0b7ef495401ab05251ea.jpg", - "response": "a warehouse with wooden pallets stacked up and a door in the background.", - "id": 11696 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674945-0570621_jpg.rf.c1cf2099d01916b2769ea272dbabad7c.jpg", - "response": "A man in a warehouse is holding a large box and a smaller box. He is standing in front of a table with more boxes on it. There are several other people in the warehouse, but they are not the main focus of the image. The warehouse has a lot of boxes stacked on shelves and on tables.", - "id": 11697 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574674929169-07_jpg.rf.5241b420749f5e7bcaf10b84aeaea4b5.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11698 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675039943-05_jpg.rf.e71fec21d736ab0ee68c9dfe6d26ee5d.jpg", - "response": "A warehouse with metal shelves holding many boxes.", - "id": 11699 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675061-369523_jpg.rf.69b1fd5ad2dd3f01c208105a21c0f649.jpg", - "response": "A close up of a shower head with water droplets coming out of it.", - "id": 11700 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675085-3122663_jpg.rf.4e7cc39bf553750a99127359e022241a.jpg", - "response": "A long narrow hallway with shelves on both sides. The floor is white and shiny. There are many boxes on the shelves, some are wrapped in brown paper and some are wrapped in blue. The walls are blue.", - "id": 11701 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675140450-21_jpg.rf.3b65a64e1f33a1aeeee5ea02263d5ceb.jpg", - "response": "A rain covered window looking into a warehouse. The warehouse is filled with boxes stacked on shelves. The boxes are on a blue rack and are yellow and white.", - "id": 11702 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675143927-36_jpg.rf.76ca80f9b18f90353add38f967e326f5.jpg", - "response": "A storage room with shelves full of boxes.", - "id": 11703 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675162-2986145_jpg.rf.cea27deb94f5ce9a94d1f18813ed0b7b.jpg", - "response": "a forklift in a building with a lot of pallets", - "id": 11704 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675073-5145798_jpg.rf.eaadaad448a120b82055df59bf90caf1.jpg", - "response": "A warehouse with wooden pallets holding various items.", - "id": 11705 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675140450-21_jpg.rf.df604fc70a7dc993f73852da3384db63.jpg", - "response": "A warehouse with shelves full of boxes and a blue metal rack.", - "id": 11706 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675080-887929_jpg.rf.e36058ab828c52e4520ce83b801e20dc.jpg", - "response": "A long hallway with many boxes on the sides of it.", - "id": 11707 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675118-1061492_jpg.rf.0971b6a9b4a50f5f808fc2eefae1c2d6.jpg", - "response": "A long narrow room filled with boxes and crates of various sizes. The walls are lined with shelves and the floor is covered in a speckled pattern. There is a light hanging from the ceiling and a door at the far end of the room.", - "id": 11708 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675127535-53_jpg.rf.74b2b4a81a62faf4bb8fae636e4c2fd6.jpg", - "response": "A room with a black wall and a bunch of stars painted on it.", - "id": 11709 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675080-887929_jpg.rf.301037e90b89deec64df6654ef07d7a0.jpg", - "response": "A long hallway with a white floor and blue walls. The walls are lined with storage containers and boxes. The hallway is dimly lit.", - "id": 11710 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675144424-32_jpg.rf.f4440e3db983b331011073008269784d.jpg", - "response": "A large storage room with shelves and racks holding cardboard boxes.", - "id": 11711 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675118-1061492_jpg.rf.2a810ff4f8746af45a28b47e15e8aea5.jpg", - "response": "A row of boxes are stacked up in a warehouse.", - "id": 11712 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675106-320153_jpg.rf.8f4bb32b2da0fe6158763a6d19e6d636.jpg", - "response": "A warehouse with a lot of boxes stacked on pallets.", - "id": 11713 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675161-1984828_jpg.rf.f9a4a91300b95332dbae8133d52db953.jpg", - "response": "A blurry image of a room with a lot of clutter. There are two chairs, one on the left and one on the right, and a couch in the middle. There are several suitcases and a backpack scattered around the room. The room is dark and there is a fire extinguisher on the wall.", - "id": 11714 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675127535-53_jpg.rf.c34f6dbd6144001bfbf0bcbdbb2bee50.jpg", - "response": "A bus stop with a bench and a sign.", - "id": 11715 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675130-271123_jpg.rf.0c32ef838152f2de2e0cac16a129995b.jpg", - "response": "A long dark hallway with shelves on the right side.", - "id": 11716 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675162-2986145_jpg.rf.ca9452d31a50b37444b84b56249f94cd.jpg", - "response": "a room with a fire extinguisher on the wall", - "id": 11717 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675164-5134397_jpg.rf.b05e8c095071b9638e0dc122ed7195e4.jpg", - "response": "A warehouse with a lot of boxes and other items.", - "id": 11718 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675071-6811864_jpg.rf.e39ccbd7d2d033cfad491c0e9a771374.jpg", - "response": "A room with a white floor and walls covered in tiny white dots. There is a large mirror on the right side of the room and a blue metal frame on the left side. In the reflection of the mirror, you can see a tan trash can and a bookshelf filled with books.", - "id": 11719 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675117-3618712_jpg.rf.805d5c4d8d53b6b8b23220dc65280b66.jpg", - "response": "A warehouse with shelves on both sides of the aisle and a person in the distance.", - "id": 11720 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675139-4567378_jpg.rf.aa9fa2f41612197ed87fb3725c34c939.jpg", - "response": "A large room with a lot of shelves in it.", - "id": 11721 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675098-1991088_jpg.rf.eb047066fd7dd520620f5f08b8b6bd9e.jpg", - "response": "A warehouse with blue walls and a silver floor. There are shelves with boxes stacked on them and a light is shining on the far wall.", - "id": 11722 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675070575-3_jpg.rf.250e0060ce5622e33061841adeab4078.jpg", - "response": "A large rack of grey boxes with V-EMB on the side.", - "id": 11723 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675141-3099551_jpg.rf.6aa54e4232f8ea1b3563f6f764bd1271.jpg", - "response": "a warehouse with a lot of boxes stacked on shelves", - "id": 11724 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675143927-36_jpg.rf.c435b94d715c28b865de40b4bd8d05e3.jpg", - "response": "A room with shelves that have boxes on them.", - "id": 11725 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675071-6811864_jpg.rf.891fa65213745c53492d6a97e3209214.jpg", - "response": "A person is standing in a room with a white wall and black ceiling. They are standing in front of a window with a black curtain. The room is dark and there are stars projected onto the curtain. The person is holding a cell phone in their right hand and there is a handbag on the left side of the room.", - "id": 11726 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675133497-75_jpg.rf.e37dabe5c5004001afaf45d413921cbb.jpg", - "response": "a window with rain on it and a reflection of a blue and white bus", - "id": 11727 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675161-1984828_jpg.rf.59f3e59a67e2a53b98f84a78308e0d80.jpg", - "response": "A dark room with a person sitting on a chair.", - "id": 11728 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675085-3122663_jpg.rf.81f20ddecf040a98f62a9105776522d4.jpg", - "response": "A large warehouse with shelves filled with boxes.", - "id": 11729 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675144424-32_jpg.rf.4f018a9b51057f7acf211a1cca7ac4ee.jpg", - "response": "A warehouse with a blue metal rack holding cardboard boxes.", - "id": 11730 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675139-4567378_jpg.rf.9df6b10ad7db24fb2df0c39a879e613b.jpg", - "response": "A warehouse with shelves full of boxes and a door in the back.", - "id": 11731 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675133497-75_jpg.rf.25cbe8704a5896e6dfc2062c395e0e40.jpg", - "response": "a close up of a bench with a blue cushion on it", - "id": 11732 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675070575-3_jpg.rf.089d58962443082eb39dc0a2400480ac.jpg", - "response": "A storage room with metal shelves filled with metal bins.", - "id": 11733 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675086-4126682_jpg.rf.1a27dde4616918908fe72ac08f12fb73.jpg", - "response": "A blurry image of a warehouse with a lot of boxes stacked on both sides of the aisle. The boxes are stacked three high and are all different sizes. The aisle is made of concrete and has a shiny reflective surface. The walls of the warehouse are blue and there are large white pipes running along the walls. The image is covered in a lot of small black dots.", - "id": 11734 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675147-9261312_jpg.rf.3ed057714bacddb1036a6183f945cb8b.jpg", - "response": "A room with shelves on the left wall and a door on the right wall. The floor is tiled and the ceiling has stars.", - "id": 11735 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675097-4492683_jpg.rf.70855cb63d480c1eed947e5133821273.jpg", - "response": "A warehouse with shelves on both sides of the aisle. The shelves are filled with cardboard boxes.", - "id": 11736 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675071237-71_jpg.rf.ba19346cde1902dccd5ed8747e77a342.jpg", - "response": "A large amount of grey boxes are stacked on metal racks.", - "id": 11737 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675098-1991088_jpg.rf.ee488ddbf024036753401b1b756def30.jpg", - "response": "a room with shelves and boxes on the walls and floor", - "id": 11738 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675141-3099551_jpg.rf.5c9967624b6cc7280d97a83804e6239c.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11739 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675117-3618712_jpg.rf.c924589c7d07ade1c1df645818a65732.jpg", - "response": "A long hallway with shelves on both sides of the hallway. The floor is speckled and the ceiling is white. There are boxes on the shelves and some of them are wrapped in blue paper.", - "id": 11740 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675097-4492683_jpg.rf.45ddaf03892175b3b0d56f1777f3665d.jpg", - "response": "A warehouse with tall stacks of boxes and barrels. The image is grainy and has a blue hue.", - "id": 11741 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675106-320153_jpg.rf.955d3f9eab581208ffbd3afe31ae8b53.jpg", - "response": "A large number of blue boxes are stacked on pallets.", - "id": 11742 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675147-9261312_jpg.rf.17ea49f9990b007a3a0e5c4018e33c6f.jpg", - "response": "A dark warehouse with a silver rack on the left side of the room. The floor is covered in small white dots. In the background there are boxes stacked on the rack and a person standing in the back.", - "id": 11743 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675123-6328397_jpg.rf.3473b98423f19bb78f62089e520affc6.jpg", - "response": "A long warehouse with tall shelves filled with boxes.", - "id": 11744 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675061-369523_jpg.rf.f369e16c35120062d87270b138573d4b.jpg", - "response": "A man in a warehouse is moving a pallet of goods.", - "id": 11745 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675073-5145798_jpg.rf.1ecea5e0d2774dc05d411f034e219ef3.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11746 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675164-5134397_jpg.rf.efe931b4be9ef18929299ed2af0e682c.jpg", - "response": "A room with a fridge and a table in it.", - "id": 11747 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675130-271123_jpg.rf.c61a80a13a040d71f49f7d3a8b79bd8c.jpg", - "response": "A long narrow room with a high ceiling. The walls are painted black and there are large wooden shelves along the walls. The floor is covered in a speckled grey material. There are two cars parked at the far end of the room. The image is covered in a layer of glitter.", - "id": 11748 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675071237-71_jpg.rf.76be13f213e044c72e628020136c780f.jpg", - "response": "A room filled with lots of boxes stacked on metal racks.", - "id": 11749 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675123-6328397_jpg.rf.17ef878009b713c748ce5804ca8661ba.jpg", - "response": "A long row of boxes are stacked on a pallets in a warehouse.", - "id": 11750 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675086-4126682_jpg.rf.ba728e097e227bdf38c9bfa27a09569c.jpg", - "response": "A long aisle in a warehouse with shelves on both sides. The shelves are filled with boxes and other items. The image has a blue hue to it.", - "id": 11751 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675257020-4_jpg.rf.46a4e7f975adcb7405c58e6783d1893c.jpg", - "response": "a bathroom with a toilet and a sink", - "id": 11752 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675200-2644172_jpg.rf.130d35c027d462c045d0ee55c7a81094.jpg", - "response": "A long narrow room with a tan floor and blue ceiling.", - "id": 11753 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675187-7206984_jpg.rf.9bdd2678f63e75605ed75211ab043746.jpg", - "response": "a room with boxes (23,23),(985,993)", - "id": 11754 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675183-6604834_jpg.rf.d97e8d897816206712cfb2e6a8fbb7c1.jpg", - "response": "A blurry image of a warehouse with shelves on both sides of the aisle. The shelves are filled with boxes and the boxes are stacked three high. The aisle is paved with concrete.", - "id": 11755 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675254-0696962_jpg.rf.613cdeaf92145df2039d5dc8d95ab8b2.jpg", - "response": "A warehouse with shelves full of items.", - "id": 11756 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675262-9073915_jpg.rf.000b7eb11b36f743aefd227efcc04340.jpg", - "response": "A large warehouse with a lot of shelving and racks.", - "id": 11757 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675266-229948_jpg.rf.2b87f8f1efa12a688cf796d432eba761.jpg", - "response": "A blurry image of a building with a lot of pallets in front of it.", - "id": 11758 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675233507-19_jpg.rf.6f058a1deef5e1f0847f97fd80b31611.jpg", - "response": "a window with rain drops on it", - "id": 11759 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675294-13994_jpg.rf.915b50d876f6dc9e48fa643996f1281c.jpg", - "response": "A long narrow room with a lot of boxes stacked on the sides of the room.", - "id": 11760 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675200-2644172_jpg.rf.184f37eb885b0d3f3b9484a0b9e032ab.jpg", - "response": "A long aisle with many shelves on both sides.", - "id": 11761 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675230-0987887_jpg.rf.34fbf2c8db02c220e21cce10dd0a22a6.jpg", - "response": "A long hallway with shelves on both sides.", - "id": 11762 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675254-0696962_jpg.rf.96b2f6f3005022487bfb572bb944a993.jpg", - "response": "A very large warehouse with shelves filled with boxes.", - "id": 11763 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675243-0169222_jpg.rf.f73d5fd8480159aa5ee082892ead3766.jpg", - "response": "A room filled with rows of metal racks holding computer servers.", - "id": 11764 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675166778-39_jpg.rf.7c44dc4d1512de1dff9e0a09f345b412.jpg", - "response": "A warehouse with a lot of wooden pallets stacked up. There is a person in the warehouse, standing near the pallets. The image is grainy and has a lot of spots on it.", - "id": 11765 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675220-9029324_jpg.rf.9210f119eb1665559c0d83efe6fdd2dc.jpg", - "response": "A blurry image of a room with a blue wall and a brown wall. There are several beds in the room and a table with a lamp on it. The image has a sparkly effect applied to it.", - "id": 11766 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675209-1013803_jpg.rf.2a30a4868c8f91f951d0cec52b194eb5.jpg", - "response": "A long narrow room with a blue ceiling. There are shelves on both sides of the room and they are filled with boxes. The boxes are filled with items and some are stacked on top of one another. The floor is a brown color and the room is filled with light.", - "id": 11767 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675281-674552_jpg.rf.531ad146008620ad208a3fa373f3c4c0.jpg", - "response": "A close up of a shower head with water droplets coming out of it.", - "id": 11768 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675187-7206984_jpg.rf.04dacc8ab40dff3ee302f8f30275c9c9.jpg", - "response": "a wall with shelves", - "id": 11769 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675258-8436887_jpg.rf.140c776cbb6fc487c2be174cb1d97635.jpg", - "response": "A garage with a lot of items inside of it.", - "id": 11770 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675265-1215947_jpg.rf.d8866a550da915c16cb118d97610aa1f.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11771 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675233507-19_jpg.rf.1c3dfa01a0ac328b3e4ce183c3631c90.jpg", - "response": "A large room with metal shelves and boxes stacked on the shelves.", - "id": 11772 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675265-1215947_jpg.rf.4e8072e3821b79496ee7343162ba5880.jpg", - "response": "A blurry image of a building with a door and a window.", - "id": 11773 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675220-9029324_jpg.rf.eac0d9b8139beabda778c1424f64f000.jpg", - "response": "a warehouse with many boxes and items stacked on shelves", - "id": 11774 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675254040-36_jpg.rf.2acd74704a4a66d356152f13febf344d.jpg", - "response": "A blurry image of a shelf with a variety of items on it.", - "id": 11775 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675230527-72_jpg.rf.32344741ba373a1ce07902d2c4608a10.jpg", - "response": "a metal shelf with many items on it", - "id": 11776 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675294-13994_jpg.rf.155ca01310cce6f2a418eceaaf72a2a3.jpg", - "response": "A long narrow room with a lot of shelves on the right side.", - "id": 11777 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675172-2514577_jpg.rf.84205a97962700b2d86112a09f602fae.jpg", - "response": "A dark room with a bunch of boxes stacked in the corner.", - "id": 11778 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675230527-72_jpg.rf.9f19592c880b0d46769ae7b9b1d43371.jpg", - "response": "a large metal shelf filled with boxes", - "id": 11779 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675183-6604834_jpg.rf.b0dff67c89ff4439b09204cdacd0d7e1.jpg", - "response": "A warehouse with tall shelves on both sides of the aisle. The shelves are stocked with various items.", - "id": 11780 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675235-641386_jpg.rf.c2877c6c0f0d2f827628894fd1706d59.jpg", - "response": "a blurry image of a warehouse with shelves full of products. The image is covered in water droplets.", - "id": 11781 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675235-641386_jpg.rf.9c022e39fade30bac3b999c0f3d999f3.jpg", - "response": "A room with two rows of what appear to be metal shelves.", - "id": 11782 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675194-7392216_jpg.rf.4c92a81c1cf4994b2b1794dda0d04126.jpg", - "response": "a store with blue and white boxes stacked on the shelves", - "id": 11783 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675206-895602_jpg.rf.902560ddad2e53f5542eb10efeca29e8.jpg", - "response": "A rain covered image of a warehouse with multiple shelves on each side. The image is distorted and shows a blue and white color scheme.", - "id": 11784 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675273909-1_jpg.rf.b1aff08e0020ca68844a3f4691435c4c.jpg", - "response": "A window with raindrops on it, looking into a kitchen with a refrigerator and a microwave.", - "id": 11785 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675206-895602_jpg.rf.8bf90259ab6842852aefc4ff5a954c8b.jpg", - "response": "A large room with a concrete floor and high ceilings. The walls are lined with tall metal shelves filled with boxes. The boxes are all closed and are a mix of white, blue, and brown. Some of the boxes are stacked three high on the shelves. In the center of the room, there is a small table with a few items on it.", - "id": 11786 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675273-9739885_jpg.rf.9bb577d19b4a77fccefc73ca02249fee.jpg", - "response": "A warehouse with cardboard boxes stacked up in the left corner. The floor is covered in small white dots.", - "id": 11787 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675166778-39_jpg.rf.1be33883feef17dd90f9cfb50431e651.jpg", - "response": "A room with a lot of furniture and items in it. There are two couches, one near the left wall and the other near the right wall. There is a bookshelf in the room with several books on it. There are two refrigerators in the room, one on the left side and the other on the right side. There is also a television in the room.", - "id": 11788 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675194-7392216_jpg.rf.322ee7a4e58844b1d8c9f88efe6a0683.jpg", - "response": "a store with a lot of items on the shelves", - "id": 11789 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675210-9475536_jpg.rf.3ff0390307ffc673e2964904863f8447.jpg", - "response": "a blurry image of a train station with a row of parked trains and a blue sky in the background", - "id": 11790 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675175-5721946_jpg.rf.306a1e374fe9446444fc87337dbd00d3.jpg", - "response": "A room with a lot of boxes stacked up against the wall.", - "id": 11791 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675175-5721946_jpg.rf.e421b1fc5cc188004ac45c786a7429a6.jpg", - "response": "A warehouse with a lot of boxes stacked up in the back.", - "id": 11792 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675230-0987887_jpg.rf.ea0268aeb1888978ff4883180cefbdc6.jpg", - "response": "a long row of shelves filled with boxes", - "id": 11793 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675273-9739885_jpg.rf.e9500164ba6363ea4d5376ac393eac2b.jpg", - "response": "A warehouse with boxes stacked on pallets.", - "id": 11794 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675281-674552_jpg.rf.8c54281ca8d459fc9c6b67e5a5cb94b2.jpg", - "response": "A bus with seats and a aisle.", - "id": 11795 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675209-1013803_jpg.rf.93f222f29d601b763060421044dc204d.jpg", - "response": "A long narrow room with a concrete floor. The walls are lined with shelves filled with boxes. The boxes are stacked three high and are filled with various items. The ceiling is blue and the room is filled with a white light.", - "id": 11796 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675266-229948_jpg.rf.08df0e87ebcf94efa953622efdc625fb.jpg", - "response": "A blurry image of a building with a lot of clutter in front of it. There are several pallets and boxes scattered around the area.", - "id": 11797 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675172-2514577_jpg.rf.87b5c28bded75bb66148d6081f0e3480.jpg", - "response": "A room with a shiny floor and a lot of small stars projected on it. There are two couches in the room, one on the left and one on the right. The right couch is larger and has a blanket on it. There is a mirror on the wall above the couch on the left.", - "id": 11798 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675257020-4_jpg.rf.944b857ba3ed8ac96d77dcca422c3699.jpg", - "response": "A view of a factory through a window, showing a large machine and shelves of product.", - "id": 11799 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675254040-36_jpg.rf.2032dd76ba9f715c31937b05829affa4.jpg", - "response": "A blurry image of a store with metal cases on display.", - "id": 11800 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675258-8436887_jpg.rf.d669a150feb475f06e9840de91b7c173.jpg", - "response": "A room filled with lots of items and furniture.", - "id": 11801 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675282-7744677_jpg.rf.80fc47257bcad485a65ef2f78fd93aff.jpg", - "response": "A dark room with a black and white polka dot curtain.", - "id": 11802 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675243-0169222_jpg.rf.831169d0eb75d13960448917d37525c0.jpg", - "response": "A long row of black servers are lined up in a room. The room is dimly lit and has a silver floor. There are two other rooms visible in the image, one on the left and one on the right. The walls of the main room are covered in a dark blue and white pattern.", - "id": 11803 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675282-7744677_jpg.rf.e91b5583ff3a1edfab4bed19f75a0516.jpg", - "response": "a large storage room with shelves and boxes", - "id": 11804 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675273909-1_jpg.rf.bbd9d4288be190af845d7c7814726983.jpg", - "response": "A kitchen with a white refrigerator freezer sitting inside of it.", - "id": 11805 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675210-9475536_jpg.rf.fdfb6fba4cef125f0b0c61f735f71d83.jpg", - "response": "A blurry image of a street with cars parked on the side of the road. The image is grainy and has a black and white color scheme.", - "id": 11806 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675262-9073915_jpg.rf.2275966532232250600f94f22e8ed101.jpg", - "response": "A blurry image of a building with a lot of windows.", - "id": 11807 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675418-5079758_jpg.rf.bac387db3c385a55fa75ad501bbd6c56.jpg", - "response": "A room with a lot of boxes and a white car.", - "id": 11808 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675379-8566904_jpg.rf.1abdaffb3b8cfa038b414b8f4645d609.jpg", - "response": "A room with a silver and blue door.", - "id": 11809 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675366-5856693_jpg.rf.01462801f0fd1ef6958ed14769aee652.jpg", - "response": "A warehouse with shelves full of boxes and containers.", - "id": 11810 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675302-6136935_jpg.rf.e8d5d33785b0836222bda8feb8b7564e.jpg", - "response": "A silver glittery material with a white circle in the middle.", - "id": 11811 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675367-6916356_jpg.rf.1dc2c725a52f3f15b0f39a1029861189.jpg", - "response": "A blurry image of a street with a blue and white building on the left side of the street. The image is taken through a rain covered window.", - "id": 11812 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675379-8566904_jpg.rf.8883887aa5aeb0ee5348a913d8b363cb.jpg", - "response": "A long row of boxes and bins on shelves.", - "id": 11813 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675428-4406512_jpg.rf.2383af0521b6bb638087187b346453f9.jpg", - "response": "a close up of a window with rain on it", - "id": 11814 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675328054-91_jpg.rf.666f8a6c0ce633d7662f8f551b5b2e0d.jpg", - "response": "a blurry image of a room with shelves and boxes", - "id": 11815 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675421-8298478_jpg.rf.22bfc234f6f83be2b90775dc29ef307c.jpg", - "response": "A room filled with boxes and furniture.", - "id": 11816 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675371-3685036_jpg.rf.d0f263864f5040e1a89d45b7b86586dc.jpg", - "response": "a blurry image of a store with shelves on both sides of the hallway", - "id": 11817 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675392-0061612_jpg.rf.b40ad3e369caf8ad0d8a0236f54daf0c.jpg", - "response": "A row of shelves with boxes on them.", - "id": 11818 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675300237-71_jpg.rf.5b26825ada5fa4081d624a647dc7f891.jpg", - "response": "A window view of a metal shelf with metal bins on it.", - "id": 11819 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675371-3685036_jpg.rf.049419b2537535219de22117937aa448.jpg", - "response": "A long narrow hallway with shelves on both sides.", - "id": 11820 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675381871-65_jpg.rf.03b82043ed2ea9b70fb0b4eeaac41180.jpg", - "response": "A rain covered window looking into a storage room.", - "id": 11821 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675396-4132898_jpg.rf.22dfa3bb59feb990f8158babb3f7c8c9.jpg", - "response": "A warehouse with shelves full of boxes and barrels.", - "id": 11822 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675367-6916356_jpg.rf.dce372bb31a8c7449c743b7d614fb163.jpg", - "response": "A long aisle in a warehouse with blue shelves on the left side.", - "id": 11823 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675312-914259_jpg.rf.ac6122ad5c74cc74b225d7d6176ed6f7.jpg", - "response": "A large room with a lot of shelves in it.", - "id": 11824 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675415-186735_jpg.rf.6dd39f13e9b0d27fdf0634b833b7e702.jpg", - "response": "a room with a lot of items in it", - "id": 11825 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675333850_jpg.rf.03e55a34e1cd928cb840240cfa9a0e35.jpg", - "response": "A blurry image of a brown cat standing on a window sill. The cat is looking out of the window and appears to be in front of a bookshelf. The window is covered in raindrops.", - "id": 11826 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675330-1570246_jpg.rf.d4b443b6d31c24cdd3f029c2239bcdb3.jpg", - "response": "a room with a lot of shelves in it", - "id": 11827 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675379-1098697_jpg.rf.32024b6f2eb7654c243998db2cc3985d.jpg", - "response": "A long narrow hallway with a tan floor.", - "id": 11828 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675366-5856693_jpg.rf.6cd23b838f8a38fe274b6d43c8c6f806.jpg", - "response": "a warehouse with many shelves and boxes on them", - "id": 11829 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675302-6136935_jpg.rf.af809c2899c5554b5451918ac3c70bfb.jpg", - "response": "A room filled with boxes on shelves.", - "id": 11830 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675410-763612_jpg.rf.fd04d50b2e369b0168932711f75f9449.jpg", - "response": "A row of gray plastic containers are stacked on a pallet.", - "id": 11831 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675303-7178464_jpg.rf.3ff988d29e6e862ea71fd0390a809fd1.jpg", - "response": "A long hallway with shelves on the sides.", - "id": 11832 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675381871-65_jpg.rf.bb605c2287930ffc9ab97c71957a6b5c.jpg", - "response": "a large metal shelf (0,447),(996,993)", - "id": 11833 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675392-0061612_jpg.rf.cd4307a6194a2554fe37d66ebcdaef50.jpg", - "response": "A row of shelves in a warehouse filled with boxes.", - "id": 11834 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675308-1285377_jpg.rf.63c6d52ca00979807d853354c5180348.jpg", - "response": "a long narrow room with shelves on both sides and a row of boxes on a conveyor belt in the middle", - "id": 11835 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675367629-16_jpg.rf.b436754e5e9b3598351967bcf960d278.jpg", - "response": "A blurry image of a room filled with plastic containers and boxes.", - "id": 11836 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675415-186735_jpg.rf.109fb2063958edf3975ef620445dff36.jpg", - "response": "A bunch of white plastic containers that are stacked up on top of each other.", - "id": 11837 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675303-7178464_jpg.rf.0a1e1538adcf7b1ed3686cb1f79efb2e.jpg", - "response": "A black and white photo of a room with a silver reflective ceiling.", - "id": 11838 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675410-763612_jpg.rf.27dfdbcc680f008325a4990a09a041b7.jpg", - "response": "A room with a blue bench and a blue chair. There is a window with a blue curtain and a door with a blue frame.", - "id": 11839 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675393-1093876_jpg.rf.914a4df739e729a92f574de1b1a87736.jpg", - "response": "A city street with cars parked on the side of the road.", - "id": 11840 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675363654-63_jpg.rf.74af00198dd61ec74aa77e73d92c080f.jpg", - "response": "a close up of a window with rain on it", - "id": 11841 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675404-1325517_jpg.rf.21687e64df1eeb7365192b11570bb69c.jpg", - "response": "A warehouse with shelves on the left side and a door at the end of the hallway. The walls are blue and yellow. There are many boxes stacked on the shelves and on the floor. The floor is made of tiles.", - "id": 11842 - }, - { - "image_path": "/content/drive/MyDrive/combined/1574675396-4132898_jpg.rf.314456d09874d8ac9ec6e6def963412c.jpg", - "response": "a black car parked next to a building", - "id": 11843 - }, - { - "image_path": "/content/drive/MyDrive/combined/1035_jpg.rf.6555b0b8618ac7497e972018511c954f.jpg", - "response": "A warehouse with shelves full of boxes and a person on a forklift.", - "id": 11844 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_png.rf.b18f1aa6c6fc0d67459a7bde2d0015a8.jpg", - "response": "A man is cleaning a pool with a mop.", - "id": 11845 - }, - { - "image_path": "/content/drive/MyDrive/combined/103_png.rf.69640768c140ddb1137e977fb0af8b83.jpg", - "response": "A man in a blue shirt is walking through an airport.", - "id": 11846 - }, - { - "image_path": "/content/drive/MyDrive/combined/1047_jpg.rf.99dc9fb3f8275bdcbdd58ce087c97915.jpg", - "response": "A warehouse with pallets and boxes stacked on high shelves.", - "id": 11847 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_png.rf.a8c09fdd48c38822e35b57a4658ec43f.jpg", - "response": "A man is mopping the floor of a pool.", - "id": 11848 - }, - { - "image_path": "/content/drive/MyDrive/combined/104_png.rf.19bd982c5b58b91ef91001f44cd71e7c.jpg", - "response": "A man wearing a white shirt and blue pants is walking down a street. He is carrying a bag and a cell phone. There is a picnic table and a bench on the sidewalk. The date and time of the picture are also displayed.", - "id": 11849 - }, - { - "image_path": "/content/drive/MyDrive/combined/1011_jpg.rf.8a8dff92efc800507d12b5c0ef76c861.jpg", - "response": "A large warehouse with tall shelves filled with boxes.", - "id": 11850 - }, - { - "image_path": "/content/drive/MyDrive/combined/1047_jpg.rf.39bc1fb7ce8a52a5784aec0cbc74dc37.jpg", - "response": "A forklift is driving through a warehouse with high shelves. The shelves are filled with cardboard boxes. The warehouse is filled with boxes and there are some people in the background. The image is slightly grainy.", - "id": 11851 - }, - { - "image_path": "/content/drive/MyDrive/combined/104_png.rf.db13ead314ddbf8eb12958b1e6ca3736.jpg", - "response": "A man in a white shirt and red shorts is standing in a yard.", - "id": 11852 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_png.rf.0d6a611b166935e15cb964588e2d7996.jpg", - "response": "A blurry image of a person standing in the ocean.", - "id": 11853 - }, - { - "image_path": "/content/drive/MyDrive/combined/103_png.rf.d80b30f67e7108b210c79b7c73d4c837.jpg", - "response": "A man in a blue shirt is walking down a street.", - "id": 11854 - }, - { - "image_path": "/content/drive/MyDrive/combined/104_png.rf.549206f7d571f64ca741de2f3aeb040c.jpg", - "response": "A man walking down a street next to a bench.", - "id": 11855 - }, - { - "image_path": "/content/drive/MyDrive/combined/104_png.rf.6b5474e5b262f11a50939422e135cf62.jpg", - "response": "a man wearing a white shirt and red shorts", - "id": 11856 - }, - { - "image_path": "/content/drive/MyDrive/combined/1035_jpg.rf.8c60584894b2059fa9bb097510c250fa.jpg", - "response": "A warehouse with boxes stacked on high shelves.", - "id": 11857 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_png.rf.6d71a1e314d0a625cb0e954d12a1a8a9.jpg", - "response": "A man in a FedEx uniform is walking towards a camera.", - "id": 11858 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_png.rf.18eaea29de04e03a12d4c2158f55f3bd.jpg", - "response": "A child is running on a snowy surface.", - "id": 11859 - }, - { - "image_path": "/content/drive/MyDrive/combined/1011_jpg.rf.67e27a6653bf85359a872084aa87ebd6.jpg", - "response": "A man in a warehouse moving boxes.", - "id": 11860 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_png.rf.28a9075c168be1b18e4534b2e5b780bf.jpg", - "response": "A man in a black shirt and shorts is running towards a FedEx truck. The man is wearing a black shirt and shorts. The man is running on a sidewalk. The FedEx truck is white and has red writing on the side. The man is running towards the back of the truck.", - "id": 11861 - }, - { - "image_path": "/content/drive/MyDrive/combined/11223_jpg.rf.b3707e3698a6f3abe48523b3c5b06e08.jpg", - "response": "A warehouse filled with lots of boxes on shelves.", - "id": 11862 - }, - { - "image_path": "/content/drive/MyDrive/combined/110_png.rf.c940129423a34c97bb8de58963752704.jpg", - "response": "A man in a white shirt and red shorts walking down a dirt road.", - "id": 11863 - }, - { - "image_path": "/content/drive/MyDrive/combined/11055_jpg.rf.084a63ad6e24869b57ae33b56cae7996.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11864 - }, - { - "image_path": "/content/drive/MyDrive/combined/1107_jpg.rf.bf52259e6e254a69483ea2f9ca1bd007.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves. There is a forklift in the warehouse and a person is visible in the background. The image is covered in dots.", - "id": 11865 - }, - { - "image_path": "/content/drive/MyDrive/combined/11139_jpg.rf.df448bc363b961aec51d40b3748ddd6a.jpg", - "response": "A large room filled with boxes and shelves.", - "id": 11866 - }, - { - "image_path": "/content/drive/MyDrive/combined/11079_jpg.rf.d90b0a1c460e40713a34d6a706d71159.jpg", - "response": "A warehouse with boxes stacked on shelves and racks.", - "id": 11867 - }, - { - "image_path": "/content/drive/MyDrive/combined/10959_jpg.rf.2d47f3acd75353a874b75ecab2411efe.jpg", - "response": "A warehouse with multiple boxes stacked on the shelves and on the floor. There are two workers in the warehouse, one near the middle of the image and one near the top. There is a fire extinguisher on the wall on the left side of the image.", - "id": 11868 - }, - { - "image_path": "/content/drive/MyDrive/combined/1095_jpg.rf.456663dbd6f0f102da5b6f118bbabef7.jpg", - "response": "A forklift is moving through a warehouse filled with boxes.", - "id": 11869 - }, - { - "image_path": "/content/drive/MyDrive/combined/11187_jpg.rf.c915ec6493da6e68b4aa136551281a5c.jpg", - "response": "A warehouse with a lot of boxes stacked on the shelves.", - "id": 11870 - }, - { - "image_path": "/content/drive/MyDrive/combined/1083_jpg.rf.80d2c648eed09b3e7cf1d09075f8b8c9.jpg", - "response": "A large warehouse with boxes stacked on high shelves.", - "id": 11871 - }, - { - "image_path": "/content/drive/MyDrive/combined/1071_jpg.rf.d7732600f12fbe53d1ab8e827a8a93f0.jpg", - "response": "A warehouse with shelves full of boxes and a forklift moving through the aisles.", - "id": 11872 - }, - { - "image_path": "/content/drive/MyDrive/combined/11247_jpg.rf.10786ca598ef45a1bd2cfaaef085fe9d.jpg", - "response": "A warehouse filled with lots of boxes stacked on the shelves.", - "id": 11873 - }, - { - "image_path": "/content/drive/MyDrive/combined/11187_jpg.rf.3712cbac43adc4c9d90409899fabc545.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11874 - }, - { - "image_path": "/content/drive/MyDrive/combined/11199_jpg.rf.a91c09ca484c9dfa87628f3c73537cd3.jpg", - "response": "A warehouse filled with lots of boxes stacked on shelves.", - "id": 11875 - }, - { - "image_path": "/content/drive/MyDrive/combined/10935_jpg.rf.ed81d3e5770c7bb5929ebf3e679e9744.jpg", - "response": "A warehouse with shelves full of boxes and a person standing in the distance.", - "id": 11876 - }, - { - "image_path": "/content/drive/MyDrive/combined/11091_jpg.rf.1e686743c1b7509050d6e4239418d21a.jpg", - "response": "A warehouse with many boxes stacked on shelves.", - "id": 11877 - }, - { - "image_path": "/content/drive/MyDrive/combined/10947_jpg.rf.59c76e71fa73b1ff588ef32cc5de76a3.jpg", - "response": "A warehouse with shelves full of boxes and a lot of boxes on the floor. There are also a lot of shelves with boxes on them.", - "id": 11878 - }, - { - "image_path": "/content/drive/MyDrive/combined/110_png.rf.f094cf39f91484692367f05c77e1b63f.jpg", - "response": "A man in a white shirt and red shorts is walking down a path.", - "id": 11879 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_png.rf.ac722bf41a85af3efa52813f051d3670.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 11880 - }, - { - "image_path": "/content/drive/MyDrive/combined/11115_jpg.rf.543a9630a3c70551447d047949157ece.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11881 - }, - { - "image_path": "/content/drive/MyDrive/combined/11007_jpg.rf.a3b21d64e8fe240b7da840a08ab44b4d.jpg", - "response": "A large warehouse filled with lots of boxes and shelves.", - "id": 11882 - }, - { - "image_path": "/content/drive/MyDrive/combined/10947_jpg.rf.49acf9d293dd25eb2e28e04d13551b9d.jpg", - "response": "A large warehouse with tall shelves filled with cardboard boxes.", - "id": 11883 - }, - { - "image_path": "/content/drive/MyDrive/combined/11115_jpg.rf.2c2920450110ea8db85ebcd13456e695.jpg", - "response": "A large warehouse with many boxes stacked on tall shelves.", - "id": 11884 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_png.rf.3b7a8e8ef9bfbacbcd07251356145625.jpg", - "response": "A woman sitting at a table in a room.", - "id": 11885 - }, - { - "image_path": "/content/drive/MyDrive/combined/11079_jpg.rf.528fefadf650689061ccacfdf1a5b2e0.jpg", - "response": "A large warehouse with boxes stacked on shelves.", - "id": 11886 - }, - { - "image_path": "/content/drive/MyDrive/combined/1119_jpg.rf.b33a3f3dbb34b1e4c727859dfb95ed1f.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes. There is a forklift in the middle of the room and a person in the background. The room is filled with boxes and the floor is cluttered. The shelves are tall and the boxes are stacked on them.", - "id": 11887 - }, - { - "image_path": "/content/drive/MyDrive/combined/11163_jpg.rf.f7561a1a5ec24f1bec6810672f056bd7.jpg", - "response": "A large warehouse filled with lots of boxes and shelves.", - "id": 11888 - }, - { - "image_path": "/content/drive/MyDrive/combined/11007_jpg.rf.e602bba9a1137b2ecdf6a1db1cd9c09c.jpg", - "response": "A warehouse with cardboard boxes stacked on pallets.", - "id": 11889 - }, - { - "image_path": "/content/drive/MyDrive/combined/11043_jpg.rf.d556e893c5f739269d052e122b555a71.jpg", - "response": "A large warehouse filled with lots of boxes and racks.", - "id": 11890 - }, - { - "image_path": "/content/drive/MyDrive/combined/1083_jpg.rf.74a92cc5a0dfc09c3bc2ad4bf9915830.jpg", - "response": "A warehouse with shelves full of boxes and a person in the background.", - "id": 11891 - }, - { - "image_path": "/content/drive/MyDrive/combined/1071_jpg.rf.a78ef4f5fa62f9449064b64ba2e4d357.jpg", - "response": "A warehouse filled with lots of boxes and pallets.", - "id": 11892 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_png.rf.d7f07fa9b40f59c732b2798cc0acf0b7.jpg", - "response": "A person walking down a sidewalk next to a brick wall.", - "id": 11893 - }, - { - "image_path": "/content/drive/MyDrive/combined/1059_jpg.rf.d099573604503a70fff80223b122eb65.jpg", - "response": "A forklift in a warehouse moving boxes.", - "id": 11894 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_png.rf.d4083f4bd69cf16738e251e6b16b41b7.jpg", - "response": "A man wearing a white shirt and red shorts holding a frisbee.", - "id": 11895 - }, - { - "image_path": "/content/drive/MyDrive/combined/10935_jpg.rf.426a1d64926df8b07afdcee001002c1b.jpg", - "response": "A warehouse with tall shelves filled with cardboard boxes.", - "id": 11896 - }, - { - "image_path": "/content/drive/MyDrive/combined/11223_jpg.rf.c50647377256c0e70a4784949e66ac24.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11897 - }, - { - "image_path": "/content/drive/MyDrive/combined/11055_jpg.rf.622986563e19da7cc199b2a853181683.jpg", - "response": "A large warehouse with many boxes stacked on tall shelves.", - "id": 11898 - }, - { - "image_path": "/content/drive/MyDrive/combined/10959_jpg.rf.4d1f4bd77ada620b2193f9edcbcaead9.jpg", - "response": "A warehouse filled with lots of boxes stacked on top of each other.", - "id": 11899 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_png.rf.8a32792db3a0450317f9fe50ce0774b9.jpg", - "response": "a man standing outside in the rain with an umbrella", - "id": 11900 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_png.rf.d160959e300771551fa864ae3d35e69c.jpg", - "response": "A woman sitting at a table in a restaurant.", - "id": 11901 - }, - { - "image_path": "/content/drive/MyDrive/combined/107_png.rf.a078d74aa7a36776d19f0ae2aa0820c6.jpg", - "response": "A man in a black jacket is walking towards a fence.", - "id": 11902 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_png.rf.65f7149f316f89c8003d9308de92cd95.jpg", - "response": "A group of people walking down a street.", - "id": 11903 - }, - { - "image_path": "/content/drive/MyDrive/combined/11091_jpg.rf.ccabe246025121c87e16ab52d7185cad.jpg", - "response": "A large warehouse with shelves full of boxes.", - "id": 11904 - }, - { - "image_path": "/content/drive/MyDrive/combined/11139_jpg.rf.d88d7978c3e9a303c77f1ff54e72e313.jpg", - "response": "A large warehouse with boxes stacked on high shelves.", - "id": 11905 - }, - { - "image_path": "/content/drive/MyDrive/combined/11127_jpg.rf.1860cdbdc78db595aea43fce3358b400.jpg", - "response": "A large warehouse with boxes stacked on pallets and on the floor. There are multiple shelves and racks throughout the warehouse. The boxes are brown and white. There are also many other items in the warehouse such as a fire extinguisher, a clock, a few people, and a TV. The warehouse is filled with dust.", - "id": 11906 - }, - { - "image_path": "/content/drive/MyDrive/combined/11163_jpg.rf.4c7e566757fcce5ceb8407a81a738462.jpg", - "response": "A large warehouse with many boxes stacked on the shelves.", - "id": 11907 - }, - { - "image_path": "/content/drive/MyDrive/combined/1059_jpg.rf.6ac59c51dd878360e3aeee62850868e7.jpg", - "response": "A large warehouse with a lot of boxes stacked on tall shelves. There is a person on a forklift in the warehouse. The walls are covered in a dark grey material. The photo is taken through a window that is covered in rain.", - "id": 11908 - }, - { - "image_path": "/content/drive/MyDrive/combined/11127_jpg.rf.52591852e2078bcc0ab47e2296dbd485.jpg", - "response": "A large warehouse with shelves filled with cardboard boxes.", - "id": 11909 - }, - { - "image_path": "/content/drive/MyDrive/combined/1107_jpg.rf.ba2334402cefe58cc3d50043cf91295d.jpg", - "response": "A large warehouse with a lot of boxes stacked on the shelves. There is a forklift in the warehouse and the shelves are filled with various items. The warehouse is very large and has a lot of boxes stacked on the shelves.", - "id": 11910 - }, - { - "image_path": "/content/drive/MyDrive/combined/11235_jpg.rf.bba75a3663e75944fb3d19d87fe4dbb4.jpg", - "response": "A warehouse with tall shelves filled with boxes.", - "id": 11911 - }, - { - "image_path": "/content/drive/MyDrive/combined/11199_jpg.rf.8ad229a09e4c7d36109b96fef51bb648.jpg", - "response": "A large warehouse with boxes stacked on shelves and on the floor. There are two large red metal shelves on the right side of the image. The boxes are brown and white. In the background, there is a white wall. The room is filled with boxes and the floor is covered with small white stickers.", - "id": 11912 - }, - { - "image_path": "/content/drive/MyDrive/combined/11043_jpg.rf.a9b3cfcaa2e41e2ded6cb22b8aa79b85.jpg", - "response": "A large warehouse with many boxes stacked on shelves.", - "id": 11913 - }, - { - "image_path": "/content/drive/MyDrive/combined/106_png.rf.72887a7261ca7d0de85d360f2cae0321.jpg", - "response": "A person walking down a sidewalk next to a brick wall.", - "id": 11914 - }, - { - "image_path": "/content/drive/MyDrive/combined/11235_jpg.rf.c0435030cc059df4b9fc4c5e4b5977f6.jpg", - "response": "A warehouse with boxes stacked on pallets and a forklift.", - "id": 11915 - }, - { - "image_path": "/content/drive/MyDrive/combined/1119_jpg.rf.2f5e26693e4b597c1320996f94893290.jpg", - "response": "A large warehouse with shelves full of boxes. There is a person in the warehouse, and a forklift is present. The warehouse is filled with boxes, and some are stacked on the shelves. The image has a snowy effect applied to it.", - "id": 11916 - }, - { - "image_path": "/content/drive/MyDrive/combined/1095_jpg.rf.e78cbbfa093e07dd9b811459966c385f.jpg", - "response": "A warehouse with a fork lift in the middle of it.", - "id": 11917 - }, - { - "image_path": "/content/drive/MyDrive/combined/107_png.rf.93ede2a0b13ea0915ff03a9c01acd2c4.jpg", - "response": "A man in a black jacket and black pants is walking in front of a gate. There is a white car parked in front of the gate and a blue car parked to the left of the man. There is also a parking meter on the left side of the image.", - "id": 11918 - }, - { - "image_path": "/content/drive/MyDrive/combined/11667_jpg.rf.3e9b940356441919cfdfd0ab668a6ce6.jpg", - "response": "A large warehouse with a lot of boxes stacked on shelves. There is a person in the middle of the room who is walking down a hallway. The boxes are stacked on both sides of the hallway and there are also boxes on the shelves. The person is wearing a black shirt and has a backpack on. The warehouse has a lot of boxes and it looks like a very busy place.", - "id": 11919 - }, - { - "image_path": "/content/drive/MyDrive/combined/11523_jpg.rf.4845b6465ebee6ebbf9ff0c94a1eac32.jpg", - "response": "A warehouse filled with lots of boxes and a man in a hard hat.", - "id": 11920 - }, - { - "image_path": "/content/drive/MyDrive/combined/14dccc57-167Booooox_jpg.rf.75580ae235401b7d0c0bd264d68271c1.jpg", - "response": "A pair of shoes in a box on the floor.", - "id": 11921 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ac4b3d-251Booooo_jpg.rf.aacab11179036c20642081693a084d30.jpg", - "response": "A cardboard box with a purple and black design on the side.", - "id": 11922 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eff1374-69Booooox_jpg.rf.ba94fbfcf46b482ea364a79b73c1b0b1.jpg", - "response": "A cardboard box is shown on a white background. The box is closed and has a white striping across the top. The box is brown in color.", - "id": 11923 - }, - { - "image_path": "/content/drive/MyDrive/combined/24944f9b-207Booooo_jpg.rf.864097f2592023673cc092c716848c32.jpg", - "response": "A cardboard box with a purple and black design on it.", - "id": 11924 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b2c3f29-179Booooox_jpg.rf.a112b8fea34c89f9c48206581ecc8637.jpg", - "response": "A cardboard box is shown on a white sheet. The box is closed and brown in color. There is a white label on the left top corner of the box and a black logo on the bottom right corner of the box. The sheet the box is on is white and the box is sitting on a blue blanket.", - "id": 11925 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e4e0e3-164Booooox_jpg.rf.74127148169c30eaa5ebd12b2cb75d6f.jpg", - "response": "A large cardboard box is shown on the ground. The box is on a clear plastic tarp which is in turn on a wooden floor. The box is in the process of being unpacked.", - "id": 11926 - }, - { - "image_path": "/content/drive/MyDrive/combined/529bdc63-78Booooox_jpg.rf.047dd8acf3966b7c6cf7f18f9d8ed81b.jpg", - "response": "An open cardboard box is shown on a blue and white patterned surface.", - "id": 11927 - }, - { - "image_path": "/content/drive/MyDrive/combined/4341947f-282Booooo_jpg.rf.5e5d5a9488002c29e62b98fc505f4d4d.jpg", - "response": "A cardboard box with a purple and yellow sticker on it.", - "id": 11928 - }, - { - "image_path": "/content/drive/MyDrive/combined/471d6220-169Booooox_jpg.rf.269811623da2be6f39574b58a6d8391f.jpg", - "response": "A cardboard box with the number 9 on it.", - "id": 11929 - }, - { - "image_path": "/content/drive/MyDrive/combined/305a1747-131Booooox_jpg.rf.6df2f6b52293308b7545f8757bb06a50.jpg", - "response": "A cardboard box is sitting on a wooden floor. The box is open and has a white and blue label on the front. The box is also next to a white and orange bag.", - "id": 11930 - }, - { - "image_path": "/content/drive/MyDrive/combined/329ee954f8f87e294ee34afb45561008_jpg.rf.1f4d898851b2373283815838a8ace68f.jpg", - "response": "In the image there are multiple cardboard boxes stacked on top of each other with the Amazon Prime logo on the side of them. The logo is in black and white and can be seen on the top and bottom of the boxes. There is also a barcode on the side of one of the boxes. The boxes are sitting on a table and there is a chair in the background.", - "id": 11931 - }, - { - "image_path": "/content/drive/MyDrive/combined/4117339b-175Booooox_jpg.rf.444291c9a5494fe2ba6f466e8bbeac0d.jpg", - "response": "An open cardboard box on a bed with a tag that says \"Sport\" on it.", - "id": 11932 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bde66e8-97Booooox_jpg.rf.6fd381b439bb1d3951e6e39bc60265e4.jpg", - "response": "A closed cardboard box with a barcode on the top right corner.", - "id": 11933 - }, - { - "image_path": "/content/drive/MyDrive/combined/471d6220-169Booooox_jpg.rf.3402f5a625f12ec985414ce7c4148151.jpg", - "response": "In the image there are two asics boxes stacked on top of each other on a white sheet of paper. The asics logo is visible on the top box. The bottom box is slightly open and you can see a pair of black asics shoes in the box.", - "id": 11934 - }, - { - "image_path": "/content/drive/MyDrive/combined/35b9cf90-143Booooox_jpg.rf.19462309fab05425713772ba4dd7cacc.jpg", - "response": "A box with the word Gimmick written on it in black and yellow tape.", - "id": 11935 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec887c8-135Booooox_jpg.rf.a2e6ee69e2d6f57001b02e07869a6e6a.jpg", - "response": "a cardboard box with a bunch of stickers on it", - "id": 11936 - }, - { - "image_path": "/content/drive/MyDrive/combined/35b9cf90-143Booooox_jpg.rf.d9735129398631b08a9b89eb69ff83f5.jpg", - "response": "A large cardboard box is shown with the top cut out. The box is on a wooden floor and there is a sheet of plastic visible under the box. The word \"asics\" is visible on the side of the box.", - "id": 11937 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f6b316b-264Booooo_jpg.rf.92afc9caac35a8ea01b67f9db0cea73e.jpg", - "response": "A closed cardboard box with a barcode on the side. The box is closed and has a purple towel underneath it. There is a green wall behind the box.", - "id": 11938 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d71a56-191Booooox_jpg.rf.8b11ab4b02a670395f627e66894b5e89.jpg", - "response": "A cardboard box is open and sitting on a bed. The box is closed and taped shut.", - "id": 11939 - }, - { - "image_path": "/content/drive/MyDrive/combined/35ef99d8-66Booooox_jpg.rf.a28f0af8ce3de3fbd83870f7e0271fa1.jpg", - "response": "A cardboard box is shown on a white background.", - "id": 11940 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec887c8-135Booooox_jpg.rf.5788d479adbf7e50eeeaccdcf8e63615.jpg", - "response": "A large cardboard box is open on the top on a wooden floor.", - "id": 11941 - }, - { - "image_path": "/content/drive/MyDrive/combined/44e5f157-84Booooo_jpg.rf.c43237518c10ab67c84304a0205fe72b.jpg", - "response": "A box with a picture of a shoe on it.", - "id": 11942 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de8e6f2-275Booooo_jpg.rf.71170ddb1f2a06d4dbe446bc2ee53a68.jpg", - "response": "A cardboard box with the Amazon.in logo on it.", - "id": 11943 - }, - { - "image_path": "/content/drive/MyDrive/combined/4795bfb0-14Booooox_jpg.rf.16ccc43c5311fe0d6785de867463880e.jpg", - "response": "A cardboard box with a purple woman on it holding a purple bag.", - "id": 11944 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b647fc8-221Booooo_jpg.rf.ee2a130bf4541eb7dc6340ef0b426afd.jpg", - "response": "A cardboard box with a sticker on it.", - "id": 11945 - }, - { - "image_path": "/content/drive/MyDrive/combined/43b51d60-7Booooox_jpg.rf.a8cf6e70ee66f61d21bef6d5037f4844.jpg", - "response": "A shoe box with a picture of a shoe on it.", - "id": 11946 - }, - { - "image_path": "/content/drive/MyDrive/combined/305a1747-131Booooox_jpg.rf.b2f7569abe9509d4773336c7251f5f07.jpg", - "response": "A cardboard box is open on the top on a wooden floor. The box is brown and has a white sheet of paper with green writing on it under the box. The writing says \"nulda\" and \"petersburg\" on it. There is a plastic bag with red and white stripes on the floor next to the box.", - "id": 11947 - }, - { - "image_path": "/content/drive/MyDrive/combined/54c223ba-213Booooox_jpg.rf.1543fc64f3d46c56647bbb8333d3edc8.jpg", - "response": "A small cardboard box is on a surface. The box is closed and has a barcode sticker on the front. The sticker has the brand logo of a black triangle with a small white dot in the middle. There is a second barcode sticker on the side of the box. On the top right corner of the image there is a white book with the title \"Warcraft\". The bottom right corner has a design of a brown bear with a red scarf. The surface the box is on has a blanket with brown and orange colors.", - "id": 11948 - }, - { - "image_path": "/content/drive/MyDrive/combined/48a9d1ab-226Booooo_jpg.rf.a6f7cac55541752f378c69629ed3d897.jpg", - "response": "A shoe box with a shoe on it and Russian writing on it.", - "id": 11949 - }, - { - "image_path": "/content/drive/MyDrive/combined/35b9cf90-143Booooox_jpg.rf.6fe69d22c98864cfea1e1eeaedc88f9e.jpg", - "response": "A cardboard box is open on the top and bottom. On the top of the box, there is a handprint. On the bottom of the box, there is a blue logo with the word \"SISCO\" in the bottom right corner. The box is on a wooden table.", - "id": 11950 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f0e3c0b-205Booooox_jpg.rf.ad7239d62d2033ad50847009d1951ece.jpg", - "response": "A large cardboard box is on a wooden table. The box is closed and brown. There is a sticker on the box with a recycle symbol and a cloud with a lightening bolt inside it. The sticker also says ECO- Friendly. There is a barcode on the sticker with the numbers 2000 1588. There is a black and white label on the bottom of the box with a QR code and some writing.", - "id": 11951 - }, - { - "image_path": "/content/drive/MyDrive/combined/329ee954f8f87e294ee34afb45561008_jpg.rf.16d093df7a94fa1c72507a4c1d690dba.jpg", - "response": "An Amazon package is sitting on the ground. The package is made of brown cardboard and has the Amazon arrow logo on it. There is a black barcode on the side of the box and an arrow pointing upwards on the top right corner. There is a smaller Amazon Prime box on top of the larger one.", - "id": 11952 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bde66e8-97Booooox_jpg.rf.113eacc236235b6144309251c35f8ae5.jpg", - "response": "A cartoon image of two cardboard boxes on a table. The boxes are stacked with the bottom box being larger and sitting on the table. The top box is smaller and is on top of the bottom box. The smaller box has a barcode on the top left corner and aQR code on the bottom left corner. The QR code is black and white. The bottom of the smaller box has a recycle symbol on the bottom right corner. The background of the image is a tan carpet.", - "id": 11953 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec887c8-135Booooox_jpg.rf.1aec2806aad1ddcf2cec0b0419565dc2.jpg", - "response": "An open cardboard box is on the floor. The box is open and empty. There are some plastic bags around the box. One of the bags is pink and has a character on it. The box is on a white sheet. The sheet is on a wooden floor.", - "id": 11954 - }, - { - "image_path": "/content/drive/MyDrive/combined/321231d8-47Booooox_jpg.rf.bbf26a850998dca6a466b725b18447a4.jpg", - "response": "A brown box with a picture of a person on a bike on it.", - "id": 11955 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aa4c60f-292Booooo_jpg.rf.51dfa8b2da2a36cfaa8a53fdcfdc56c8.jpg", - "response": "A cardboard box that is closed and sitting on a bed.", - "id": 11956 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb74327-60Booooox_jpg.rf.71c7d188148c79e0fea8c95dfbd1f016.jpg", - "response": "A cardboard box is shown on a white background. The box is brown and made of cardboard. It is a small, square box with a lid that can be folded down. The box is empty and ready to be filled.", - "id": 11957 - }, - { - "image_path": "/content/drive/MyDrive/combined/321231d8-47Booooox_jpg.rf.135cab40a486c41791d4c580035df92c.jpg", - "response": "A brown cardboard box with a robot illustration on it. The robot is standing on a smaller box and has arms raised. The box is made with less material. There is a QR code on the box and text saying scan here and boot up.", - "id": 11958 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bde66e8-97Booooox_jpg.rf.660f56499356ac8c70df50adf404db08.jpg", - "response": "A stack of cardboard boxes on the floor.", - "id": 11959 - }, - { - "image_path": "/content/drive/MyDrive/combined/319403ff-198Booooox_jpg.rf.0dd594e2057943f715bb95487dd8a120.jpg", - "response": "An open cardboard box is on the floor. The box is open and has a white sticker on the front of it. The sticker has the words \"Biagio\" and \"Biagio Store\" on it. The box is on a blue carpet. There is a white plastic bag behind the box.", - "id": 11960 - }, - { - "image_path": "/content/drive/MyDrive/combined/53bc12ba-95Booooo_jpg.rf.32930a6101764526371288eae2ae4dad.jpg", - "response": "A cardboard box with a bunch of stickers on it.", - "id": 11961 - }, - { - "image_path": "/content/drive/MyDrive/combined/305a1747-131Booooox_jpg.rf.87f4464801386d8556b64fc4e84d5bc4.jpg", - "response": "A cardboard box with a cartoon character on it.", - "id": 11962 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fcb3027-293Booooo_jpg.rf.92902ed8649156815a5776e5a17b5ee4.jpg", - "response": "a cardboard box with purple and yellow writing on it", - "id": 11963 - }, - { - "image_path": "/content/drive/MyDrive/combined/38ff1c95-255Booooo_jpg.rf.7b60e88a9f4b160e62887eb03380faaf.jpg", - "response": "A cardboard box with a purple and black drawing of a woman with a ponytail and the number 8.", - "id": 11964 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_png.rf.67a0c67eb632abadbaf5fe5998b0b73d.jpg", - "response": "A man in a white shirt and red shorts is walking down a dirt road.", - "id": 11965 - }, - { - "image_path": "/content/drive/MyDrive/combined/330_png.rf.8d9651cda8df78cd1edc935082cdd273.jpg", - "response": "a man in a blue shirt kicking a soccer ball", - "id": 11966 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_png.rf.e2ed3b7b8dd87d01f1ad834e41863def.jpg", - "response": "A person walking down a dirt road.", - "id": 11967 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_png.rf.dd169c7596afa9cf1346463b9b52fea5.jpg", - "response": "A man wearing a white shirt and red shorts walking down a dirt road.", - "id": 11968 - }, - { - "image_path": "/content/drive/MyDrive/combined/31_png.rf.5401bd2c6098efd50165693ad6aad2b5.jpg", - "response": "A man and woman standing next to a van.", - "id": 11969 - }, - { - "image_path": "/content/drive/MyDrive/combined/186_png.rf.803a672fb0d7bb08f4cd22f382104a74.jpg", - "response": "The image shows a group of people running in a road race. They are all wearing uniforms and appear to be in the middle of the race. Some of the runners are spread out, while others are running more closely together. The race is taking place on a street, and there are spectators and umbrellas visible in the background.", - "id": 11970 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_png.rf.53e8776c6839b37f51483ff3b96eca63.jpg", - "response": "A man in a blue shirt and jeans is walking through a doorway.", - "id": 11971 - }, - { - "image_path": "/content/drive/MyDrive/combined/353_png.rf.d2ed09bd8c4edbff4b24547b6c71cd32.jpg", - "response": "A man walking down the street in a white shirt and shorts.", - "id": 11972 - }, - { - "image_path": "/content/drive/MyDrive/combined/1082ae68-33Booooox_jpg.rf.6d1293c9a75bb5110a2ecfc6fa069bb5.jpg", - "response": "A stack of three brown Amazon boxes sitting on a wooden table.", - "id": 11973 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e7b694-45Booooox_jpg.rf.19819fb5ff06a836043b2b41cebe3145.jpg", - "response": " A large cardboard box(10,139),(995,986) with the Amazon logo on it.", - "id": 11974 - }, - { - "image_path": "/content/drive/MyDrive/combined/1082ae68-33Booooox_jpg.rf.454fdb3adb1e4821d6b939d646627fa2.jpg", - "response": "In the image there is a stack of two cardboard boxes, the one on top is labeled E01 and has the Amazon logo on it. The bottom box is also labeled E01. The boxes are on a table and there is a pile of paper under them.", - "id": 11975 - }, - { - "image_path": "/content/drive/MyDrive/combined/1Boooo_jpg.rf.fdfacced6fdd632f9decc0cec62930f3.jpg", - "response": "A yellow Amazon box with the Amazon smile logo on it.", - "id": 11976 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e7b694-45Booooox_jpg.rf.ffed2c798f591bd52c54814acd4b13d0.jpg", - "response": "A stack of brown Amazon boxes.", - "id": 11977 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa3785c-209Booooox_jpg.rf.1c474a013d74dbaf5899be7018a5124a.jpg", - "response": "A cardboard box is on the floor. It is a square box and is brown in color. There is a black and white sticker on the top of the box. The sticker has a black smiley face with a black line circling it. Underneath the sticker is a bar code. The box is open and has a rectangular shape. There is a black and white sticker on the side of the box. The sticker has the words \"this is the way\" in black. The box is on a colorful blanket. There is a book behind the box. The book is black and white. The pages are black. The box is also sitting on a white sheet.", - "id": 11978 - }, - { - "image_path": "/content/drive/MyDrive/combined/20c4b8f7-243Booooo_jpg.rf.91d7cd9f1f23cbe98b8217ff691fc2ae.jpg", - "response": "A cardboard box with a green and yellow sticker on the top.", - "id": 11979 - }, - { - "image_path": "/content/drive/MyDrive/combined/09157ee4-193Booooox_jpg.rf.2697e7c77734608df0d217663640b98e.jpg", - "response": "A large cardboard box is open and sitting on a bed. The box is closed and taped shut. The box is brown and has a white label on the top left corner. The label has the letters \"K2\" in black. The box is also marked with the internet address www.rockandsop.com. The box is also marked with the words \"DHL\" and \"\u4fc4\u7f57\u65af\" (Russia). The box is also marked with the numbers \"111020\".", - "id": 11980 - }, - { - "image_path": "/content/drive/MyDrive/combined/1082ae68-33Booooox_jpg.rf.086e3164069af666d40bb00a30615ba9.jpg", - "response": "A person holding a box with a label on it.", - "id": 11981 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b52f1e5-287Booooo_jpg.rf.6c860252f4e317b91e61764f33db1f01.jpg", - "response": "A cardboard box with a yellow label on it.", - "id": 11982 - }, - { - "image_path": "/content/drive/MyDrive/combined/1322026_51784519_jpeg.rf.ed537bf1890ebfbe8af62093114a7a36.jpg", - "response": "A cardboard box is on a striped surface.", - "id": 11983 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b3fed18-220Booooo_jpg.rf.b3981c6d0cb2c50dccc96c257c6a0b55.jpg", - "response": "A cardboard box with a cartoon of a shoe on the front.", - "id": 11984 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c8b47a2-187Opeeen_Packages_jpg.rf.655772a7dd6efc6f2a3c5697a2c4d272.jpg", - "response": "A cardboard box with a white bag inside of it.", - "id": 11985 - }, - { - "image_path": "/content/drive/MyDrive/combined/2959a541-72Open_booox_jpg.rf.e3e39f9fe5a587ac3a640c1349ab48e2.jpg", - "response": "A large white box wrapped in white paper.", - "id": 11986 - }, - { - "image_path": "/content/drive/MyDrive/combined/2512615b-44Booooox_jpg.rf.1d2799fbad110fc092f316e3cc8337be.jpg", - "response": "A brown box on a white background", - "id": 11987 - }, - { - "image_path": "/content/drive/MyDrive/combined/1200x800_jpg.rf.156f37a2b1cd09751ec49dcd60748f85.jpg", - "response": "A cardboard box with the Amazon logo on it.", - "id": 11988 - }, - { - "image_path": "/content/drive/MyDrive/combined/164244cf-75Booooox_jpg.rf.a3a9563f7b30917a755db359a573e09f.jpg", - "response": "a small cardboard box on a blue and brown table", - "id": 11989 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1d400e-80Booooox_jpg.rf.8e031f733ebe1a68bba69b8c99cbdc50.jpg", - "response": "A large cardboard box sitting on a table.", - "id": 11990 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b406a7b21a34224231a9c8cc443ff8f_jpg.rf.9fef26e05203931633a8317d39b03b07.jpg", - "response": "A package wrapped in brown paper and string with a label that says POUTA ROSCHI", - "id": 11991 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b2c0ac-112Booooox_jpg.rf.296b395a39b12d1c49afb206cf3c0cdb.jpg", - "response": "A cardboard box on the floor with a white plastic bag under it and a white string tied around the box.", - "id": 11992 - }, - { - "image_path": "/content/drive/MyDrive/combined/16c4af35-183Booooox_jpg.rf.82a3b2ff847c4f43bfd69355408c0d9d.jpg", - "response": "A large cardboard box is open and sitting on a white sheet. The box is made of brown cardboard and is sitting on a bed.", - "id": 11993 - }, - { - "image_path": "/content/drive/MyDrive/combined/201fb060-160Booooox_jpg.rf.5c732010a55f4a6fbbc6184b7d51788d.jpg", - "response": "A large cardboard box is on the floor, sitting on a clear plastic bag. The box is also sitting on a wooden floor.", - "id": 11994 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dfc77f6-125Booooox_jpg.rf.b292fda1754f364923369c80a65940c8.jpg", - "response": "A large cardboard box is on the floor. It is a brown color and is on a white sheet. The box is open and empty.", - "id": 11995 - }, - { - "image_path": "/content/drive/MyDrive/combined/22_jpg.rf.dd5e70307358a092ad0d42e358f97ecf.jpg", - "response": "An open brown cardboard box on a white surface.", - "id": 11996 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac0b1d7-249Booooo_jpg.rf.3392dd04e94137e3a60be68fb288fb8f.jpg", - "response": "A cardboard box with a cartoon dog on the side.", - "id": 11997 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f63cee9-133Booooox_jpg.rf.55a0e4dee834f29b00d9916b36f639db.jpg", - "response": "A large cardboard box is open on the top on a wooden floor. The box is brown and has a white strip on the side. There is a plastic bag on the floor next to the box. The bag has green letters on it. In the background, there is a pink bag with green letters.", - "id": 11998 - }, - { - "image_path": "/content/drive/MyDrive/combined/213d9e86-153Booooox_jpg.rf.c7c7ff144af2b60ad87c8201b04ea5d6.jpg", - "response": "A cardboard box is open on the top and sitting on a white sheet on the floor. The box is brown and rectangular. Next to the box is a plastic bag filled with items. The bag is red and white and has a white handle. The floor is made of wood.", - "id": 11999 - }, - { - "image_path": "/content/drive/MyDrive/combined/1200x800_jpg.rf.c342331faad4341cbb05661dcd74032a.jpg", - "response": "A cardboard box is shown in a close up view. The box is brown and made of cardboard. There is a barcode on the side of the box. The box is in a warehouse.", - "id": 12000 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bc587f-128Booooox_jpg.rf.0929298fe17eadff7a92ae7359222ac2.jpg", - "response": "A stack of cardboard boxes on the floor.", - "id": 12001 - }, - { - "image_path": "/content/drive/MyDrive/combined/0981ec4f-28Booooox_jpg.rf.f1b7d369f8f653318e0dbb75e30704e2.jpg", - "response": "A cardboard box taped up on a wooden floor.", - "id": 12002 - }, - { - "image_path": "/content/drive/MyDrive/combined/10289bab-235Booooo_jpg.rf.4b2076fe27224898bf5b03b3653b2f22.jpg", - "response": "A cardboard box with purple and blue images on it.", - "id": 12003 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b2c0ac-112Booooox_jpg.rf.1730f1ee2e420746124a716b0a8f9508.jpg", - "response": "A cardboard box is open on a wooden floor. The box is brown and has a white logo on the front. The floor is made of wood and is brown.", - "id": 12004 - }, - { - "image_path": "/content/drive/MyDrive/combined/1725a7f7-279Booooo_jpg.rf.a1b3f11a5431071ed509f175bc136f69.jpg", - "response": "A cardboard box with purple and pink monsters on it.", - "id": 12005 - }, - { - "image_path": "/content/drive/MyDrive/combined/2959a541-72Open_booox_jpg.rf.241e00767cbdea7d2d57c82071865e2d.jpg", - "response": "a brown box (27,21),(991,989)", - "id": 12006 - }, - { - "image_path": "/content/drive/MyDrive/combined/14dccc57-167Booooox_jpg.rf.04f300152d08223034c69523b70fe4e6.jpg", - "response": "An open cardboard box is shown on the floor. The box is brown and has a black label on the top of it. The box is on a wooden floor. Next to the box is a red bag. The bag is also open and has a white label on it. The bag is also on the floor. There is a blue and white bag on the top left corner of the image.", - "id": 12007 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e52a824-208Booooox_jpg.rf.e9b903bec956122bf59e443dce6b4242.jpg", - "response": "A pair of shoes is visible through the clear plastic of the box. The box is open and sitting on a bed. There is a brown box on top of a smaller white box. There is a barcode on the side of the box. There is a black and white sticker on the box with the number 8 on it. There is a white and black sticker on the box with a QR code on it. There is a pair of blue and white striped socks on the bed.", - "id": 12008 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ca0209-268Booooo_jpg.rf.d5c1cb7df8a97aedc7e89f885f7efbdc.jpg", - "response": "A cardboard box with various illustrations on it.", - "id": 12009 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dfc77f6-125Booooox_jpg.rf.1047ab613c7a175228e6165a065989c0.jpg", - "response": "In the image there are two boxes stacked on top of each other on a wooden floor. The top box has a white mailing label with black text on it that says \"return receipt requested\" in black text. The bottom box has a purple and black monster printed on it. The monster has horns and is holding a heart.", - "id": 12010 - }, - { - "image_path": "/content/drive/MyDrive/combined/2024589a-239Booooo_jpg.rf.c9ca9fef1bb47600bd8ba4123a547cce.jpg", - "response": "A cardboard box with a cartoon baby on it.", - "id": 12011 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de9d5dc-194Booooox_jpg.rf.a82576f503ba6ec47e1bba623f819df6.jpg", - "response": "A cardboard box is shown on a bed. The box is closed and has a white label on the top left corner with black text. The text is too small to read. The box is brown and has black text on the bottom left corner. The text is also too small to read.", - "id": 12012 - }, - { - "image_path": "/content/drive/MyDrive/combined/261f6658-182Booooox_jpg.rf.8610ae7dc8ce99e383bd8f8ab6989c8a.jpg", - "response": "A large cardboard box is on the bed. The box is closed and has a white and black sticker on the front of it. The sticker has the words \"Biodegradable\" and \"Compostable\" on it. There is a person sitting on the bed next to the box. They are wearing blue jeans and a black shirt. There is a white sheet with green writing on it under the box.", - "id": 12013 - }, - { - "image_path": "/content/drive/MyDrive/combined/213d9e86-153Booooox_jpg.rf.e6197fee7f91b542b56916a4a40944bd.jpg", - "response": "A cardboard box is open on the top and sitting on a wooden floor. The box is made by Asics and has a logo on the top left corner. There is a white paper inside the box and a pair of white and green shoes is visible in the bottom left corner.", - "id": 12014 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dfc77f6-125Booooox_jpg.rf.7c9e7b815513c198a5457cc3eb522b60.jpg", - "response": "A cardboard box that is open and sitting on top of another cardboard box.", - "id": 12015 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bc587f-128Booooox_jpg.rf.b5e5afa839ec7b65ae4c508af7f22f89.jpg", - "response": "A large cardboard box is shown on a wooden floor. The box is on a piece of white tissue paper and is tied with a string. The box is brown and has a white label on the top left hand corner. There is a red object in the top right hand corner of the image and a black and red object in the top left hand corner.", - "id": 12016 - }, - { - "image_path": "/content/drive/MyDrive/combined/221f6bdf-26Booooox_jpg.rf.5bbe15a86e97fa4688af1b59646d5a0c.jpg", - "response": "A cardboard box with the Amazon logo on it sitting on a table.", - "id": 12017 - }, - { - "image_path": "/content/drive/MyDrive/combined/279b404c-24Booooox_jpg.rf.733a0f364da2099b0d495d403ded2c21.jpg", - "response": "A cardboard box with a variety of illustrations on the side. The box is closed and sitting on a brown blanket.", - "id": 12018 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fae05b0-233Booooo_jpg.rf.62ff53ace8ceaf1884d42cc0520a2251.jpg", - "response": "A cardboard box with a sticker on it that says Made in the USA.", - "id": 12019 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ed1535-170Booooox_jpg.rf.d70ea838d2d625b566a2a5b2209f2259.jpg", - "response": "In the image there are three boxes stacked on top of each other. The bottom two boxes are the same and are both black. The top box is tan and has blue writing on it. The writing says \"asics\". The boxes are on a wooden floor.", - "id": 12020 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a08ef4f-291Booooo_jpg.rf.6a8fe98224ef5debf9cc31ff9ca74ecd.jpg", - "response": "A hand holding a brown Amazon box.", - "id": 12021 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f63cee9-133Booooox_jpg.rf.e4de58e2f677cbd65d39c1dc23eff2a7.jpg", - "response": "A cardboard box with a cartoon character on it.", - "id": 12022 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dadc063-119Booooo_jpg.rf.9b30a115edeac55a55558379d977baa7.jpg", - "response": "a cardboard box with a design of a person holding a phone and the word 'let's'", - "id": 12023 - }, - { - "image_path": "/content/drive/MyDrive/combined/160cb020-176Booooox_jpg.rf.070d27adff6ccb648baeb7dc2298b3b5.jpg", - "response": "A large box is open and sitting on a bed. The box is made of brown cardboard and has a barcode on the top and bottom. The barcode is white and has black writing on it. The box is open and showing the inside of the box. The bed has a blanket on it and the box is sitting on top of it.", - "id": 12024 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e9c408-283Booooo_jpg.rf.1ff8acef56d542fdf95ffd1559a7fe9b.jpg", - "response": "A cardboard box with the Amazon Prime logo on it.", - "id": 12025 - }, - { - "image_path": "/content/drive/MyDrive/combined/1640273095145449371_jpg.rf.b50524d14512d2499e6aecd634b3227b.jpg", - "response": "A large cardboard box is on the floor. The box is closed and has a city skyline printed on it. The box is also labeled with Russian writing.", - "id": 12026 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e4e0e3-164Booooox_jpg.rf.4ece0384cca5dac9e99fcddc1a89f42f.jpg", - "response": "A cardboard box for Asics shoes on the floor.", - "id": 12027 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ed1535-170Booooox_jpg.rf.6a6bf4aec08a96b340b213a4fe55c297.jpg", - "response": "In the image there are three boxes stacked on top of each other. The bottom two boxes are brown and the top box is white with the word \"asics\" written on it in black. The boxes are on a wooden floor and there is a white sheet underneath them. There is also a black bag on the floor next to the boxes.", - "id": 12028 - }, - { - "image_path": "/content/drive/MyDrive/combined/24e31843-188Booooox_jpg.rf.1b5ab316c619d869f2c81365c29690da.jpg", - "response": "A pair of shoes in a box on a bed.", - "id": 12029 - }, - { - "image_path": "/content/drive/MyDrive/combined/21926138-50Booooox_jpg.rf.cb1a1deae1fa2b0d50f1af64db6c337d.jpg", - "response": "A cube made of cardboard with a cut out in the shape of a person.", - "id": 12030 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b2c0ac-112Booooox_jpg.rf.0b69813ee9fe1631b1ec131d55077917.jpg", - "response": "A box with a sticker on it that says \"Sagaboi\" and has a cartoon character wearing a tie.", - "id": 12031 - }, - { - "image_path": "/content/drive/MyDrive/combined/201fb060-160Booooox_jpg.rf.1ca977b99a76f4c6971e7fc161cfaf71.jpg", - "response": "A box that is on the ground. The box is made by Asics. It is a cardboard box. There is a pair of shoes in the box. The shoes are black and white. The box is open. There is a white plastic bag under the box. The box is on a wooden floor.", - "id": 12032 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cd36744-181Booooox_jpg.rf.e0028645c36502d218ddef0fccec111e.jpg", - "response": "A large cardboard box is open and sitting on a bed. The box is brown and has a white label on the top left corner with a smiley face on it. The box is open and you can see a white bag inside. There is a blue rug on the floor next to the bed.", - "id": 12033 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e4fc5c3-70Booooox_jpg.rf.33afafb18d30392871eb79dd9310b314.jpg", - "response": "An open cardboard box is shown on a bed.", - "id": 12034 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f63cee9-133Booooox_jpg.rf.4842100fc40938cbf5e11bfd33ef7c96.jpg", - "response": "A large cardboard box is on a white sheet on a wooden floor. The box is closed and has a blue logo on the top. The sheet is on a wooden floor.", - "id": 12035 - }, - { - "image_path": "/content/drive/MyDrive/combined/1042977068_jpg.rf.849593fc2846d3f6ffa25c366b9333ab.jpg", - "response": "A couple walking down a hallway while wearing face masks and carrying a purple bag and two canes.", - "id": 12036 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024x576_939430607723_jpg.rf.6d830c4304f95b7c5d26b637d0ee6b05.jpg", - "response": "The image shows a group of people walking through an airport. They are all wearing white face masks. One of the women has a black top with a red heart design on the chest and a pair of black sunglasses attached to the top of her head. Another woman has a black coat with a fur collar. A pink sign with a cartoon drawing of a flower is on the wall behind the women.", - "id": 12037 - }, - { - "image_path": "/content/drive/MyDrive/combined/1017_jpg.rf.c1a2df5ee08ba2c9add24f9a3d989abe.jpg", - "response": "A man is holding a small orange and white cone in a garage.", - "id": 12038 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_8w7mkX-PHcfMM5s6_jpeg_jpg.rf.3a13ec9a8044180593ff1702211ff6a6.jpg", - "response": "A large group of people walking through a station wearing face masks.", - "id": 12039 - }, - { - "image_path": "/content/drive/MyDrive/combined/1042977068_jpg.rf.5fa691f3748e52c8d7f901c22f3dc1fd.jpg", - "response": "The image shows a group of people walking down a hallway. They are all wearing white face masks and carrying various items such as a suitcase, a handbag, and a backpack. The hallway has white walls and ceiling, and the people are walking in a line.", - "id": 12040 - }, - { - "image_path": "/content/drive/MyDrive/combined/1125506397_15801322206131n_jpg.rf.7096d2f6fce7ebcd057eafdb2a994fa3.jpg", - "response": "A young woman wearing a mask walks through a train station.", - "id": 12041 - }, - { - "image_path": "/content/drive/MyDrive/combined/10442316_c5f9d798b0_jpg.rf.45ab863d4f18a1877ae9b14604b3c9f9.jpg", - "response": " A man(377,214),(541,467) on a ladder(241,326),(556,997) working on a roof(1,210),(995,380)", - "id": 12042 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_Concern-In-China-As-Mystery-Virus-Spreads_jpg.rf.6f3f7f4001b2c6c65f0efd75b486ee2f.jpg", - "response": " People(364,29),(707,997)(27,135),(383,996) wearing protective masks(481,125),(585,280)(275,329),(351,447) and gloves(365,585),(453,822)(73,813),(158,997)(276,699),(345,843) are seen at a train station in Beijing, China.", - "id": 12043 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_10725_jpg.rf.63d3ff57a40e88420401c7254c342556.jpg", - "response": "A group of four people are posing for a picture. They are all wearing face masks. The person on the left is an older man wearing a white shirt and glasses. He has grey hair and is sitting at a desk. The person on the right is a younger woman with dark hair and is wearing a black blazer. She has a blue face mask on. The person in the middle, standing, is wearing glasses and a dark blue suit. The person on the left of this person is standing and is wearing a white shirt and a grey suit. They are also wearing a blue face mask.", - "id": 12044 - }, - { - "image_path": "/content/drive/MyDrive/combined/1019_jpg.rf.9e91f1adc9d97d339587aeddf72ae856.jpg", - "response": "In the image, a child is riding a bike through a course of orange traffic cones set up in a line on a sidewalk. The child is wearing a blue helmet and has on knee pads and blue and yellow sneakers. The bike the child is riding has a pink frame and blue training wheels. The background shows a building to the left and right of the child and a blue sky above.", - "id": 12045 - }, - { - "image_path": "/content/drive/MyDrive/combined/1006_jpg.rf.fb9739740ed59130b39b2bd68e6fa5e4.jpg", - "response": "A man in a garage holding an orange and white traffic cone.", - "id": 12046 - }, - { - "image_path": "/content/drive/MyDrive/combined/1010_jpg.rf.7635c2b0afdb31c0e465912b7522df5d.jpg", - "response": "A set of four colored cones.", - "id": 12047 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_10725_jpg.rf.30617a9f601e561f4cb49d300bc4f877.jpg", - "response": "A group of four people are posing for a picture. They are all wearing face masks. The person on the far left is an older man wearing a white shirt and glasses. He has grey hair and is wearing a blue mask. The person to his left is a young man wearing a grey shirt and a grey mask. The person on the right, who is sitting on the end, is a woman with black hair and is wearing a black mask. She is wearing a black blazer. The person in the middle of the group is a woman with long hair wearing a white shirt and a pink mask. She is wearing a pink lamp behind her. The lamp above her is white and has a metal frame. There are two other lamps hanging from the ceiling, one to her left and one to her right. The one to her left is white and has a metal frame. The one to her right is also white but has a wooden frame.", - "id": 12048 - }, - { - "image_path": "/content/drive/MyDrive/combined/100713-F-1124Q-067_JPG_jpg.rf.246207a17ebaf670451f6ce703b61f64.jpg", - "response": "A man in a safety vest is standing on a runway.", - "id": 12049 - }, - { - "image_path": "/content/drive/MyDrive/combined/1152x768_246964803156_jpg.rf.6ca9da515467f4940f255bd016def03f.jpg", - "response": "The image shows a group of people walking through a train station. They are all wearing face masks. Some of them are carrying handbags and backpacks. The people are of different ages and are walking in different directions. Some are heading to the left, some to the right, and some are going straight ahead.", - "id": 12050 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_jpg.rf.fd9065fdd269519122eb7e9b74568812.jpg", - "response": "A single orange and white traffic cone sitting on a black base on the ground.", - "id": 12051 - }, - { - "image_path": "/content/drive/MyDrive/combined/1000x-1_jpg.rf.fbcf1d32953f6501fc6d9eb008796d1b.jpg", - "response": "A crowded group of people, most of whom are wearing white face masks. Some people are looking at their phones.", - "id": 12052 - }, - { - "image_path": "/content/drive/MyDrive/combined/1133x768_20200130000023_jpg.rf.acddea001ece8bc0baa1db60547a6899.jpg", - "response": "\u53f0\u5317\u5e02\u9577\u67ef\u6587\u54f2(\u524d\u4e2d)13\u65e5\u524d\u5f80\u677e\u5c71\u6a5f\u5834\u8996\u5bdf\u9632\u75ab\u4f5c\u70ba,\u5f37\u8abf\u9632\u75ab\u4e0d\u80fd\u9b06\u61c8,\u6a5f\u5834\u9632\u75ab\u662f\u95dc\u9375,\u4ed6\u8981\u6c42\u6a5f\u5834\u8981\u52a0\u5f37\u9632\u75ab\u4f5c\u70ba\u3002\u4e2d\u592e\u793e", - "id": 12053 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fea_8011463765e2aa28b386cf_jpg.rf.ac88747689e3c212082c003bfeb4e2c2.jpg", - "response": "In the image, there is a young lady wearing a white protective mask. She is wearing a blue dress and her hair is in a ponytail. She is holding a Dyson air purifier. There is another lady in the image who is wearing a white mask and has dark hair. She is holding a white mask in her left hand. There is a white door in the background. The Dyson air purifier has a blue light on it.", - "id": 12054 - }, - { - "image_path": "/content/drive/MyDrive/combined/1029731146_jpg.rf.a30bf7338dc853e3f7b54ef4493044d4.jpg", - "response": "A crowd of people wearing face masks.", - "id": 12055 - }, - { - "image_path": "/content/drive/MyDrive/combined/07cf5b932e7b4fb839cfc69f9c88afca_jpg.rf.beb2c5481044026e3bc248a9e2152525.jpg", - "response": "A man is on a ladder working on a ceiling.", - "id": 12056 - }, - { - "image_path": "/content/drive/MyDrive/combined/1027_jpg.rf.5f9cffa2c3f9e6093c64749c2a4697a9.jpg", - "response": "A man wearing a blue shirt holding up a orange cone.", - "id": 12057 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_jpg.rf.a09cd2c53f564e58853ddb8a770f7e19.jpg", - "response": "In the image, there are a total of six orange traffic cones arranged in three rows of two cones each. The cones have reflective white tops, and they are all placed on black bases. The cones have a similar design, and they are all standing upright in a white background.", - "id": 12058 - }, - { - "image_path": "/content/drive/MyDrive/combined/1023_jpg.rf.f4a02bc83872e445cd2eba2f13191140.jpg", - "response": "A orange and white traffic cone sitting on the street.", - "id": 12059 - }, - { - "image_path": "/content/drive/MyDrive/combined/1042_jpg.rf.63854ea6ee762dd696a4c883b602dd4a.jpg", - "response": "A pair of cone shaped salt and pepper shakers.", - "id": 12060 - }, - { - "image_path": "/content/drive/MyDrive/combined/1155x768_20200129000089_jpg.rf.1eef46bfeeb9e04dffecbb342d2ae162.jpg", - "response": "Taiwanese authorities on Thursday morning seized 720 boxes of illegal liquor from a storage facility in Taoyuan City, which were to be shipped to Hong Kong. The total value of the seized goods is estimated to be around NT$100 million (US$3.3 million). The storage facility owner, surnamed Huang, was arrested. In the image, Huang can be seen wearing a red vest and a mask, with his hands up in the air, seemingly surrendering.", - "id": 12061 - }, - { - "image_path": "/content/drive/MyDrive/combined/1048_jpg.rf.3dcbeb06afb9430901b01d38d6b7595d.jpg", - "response": "A woman is seen from the waist down, wearing black leggings and a grey top. She is walking through a construction area with orange traffic cones set up in a row. The ground is made of concrete and there are two large cement pillars in the background. The woman is wearing white sneakers with a black stripe on the sides.", - "id": 12062 - }, - { - "image_path": "/content/drive/MyDrive/combined/291_jpg.rf.8ee389352403ba94946d53d48a954905.jpg", - "response": "A man in a blue shirt is sitting in front of a camera.", - "id": 12063 - }, - { - "image_path": "/content/drive/MyDrive/combined/285_jpg.rf.30679028ac8f6b2de892f9cfcd52024c.jpg", - "response": "A man in a garage holding a orange and yellow traffic cone.", - "id": 12064 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143456-1-_jpg.rf.cab09f980240b8e19d122c8647d0d302.jpg", - "response": "A man is holding a pole in a yard.", - "id": 12065 - }, - { - "image_path": "/content/drive/MyDrive/combined/1553605632_9d5877d8_60_jpg.rf.33d247c5ae9c2940624fcf9cbff47643.jpg", - "response": "A collage of photos of people holding and wearing masks and air purifiers.", - "id": 12066 - }, - { - "image_path": "/content/drive/MyDrive/combined/5126e9bfad541e3fcf6875ecf9b5361d_JPG_jpg.rf.a5c0f1a9b90ae8cab997f42cb396bb5b.jpg", - "response": "A man wearing high visibility clothing, climbing a ladder.", - "id": 12067 - }, - { - "image_path": "/content/drive/MyDrive/combined/1224331650_g_400-w_g_jpg.rf.83797e6b804dad761e442ff2a564a43d.jpg", - "response": "The image shows four different masks with different designs. The first mask features a black mask with a white heart and the letters \"S O\" written on it. The second mask has a black mask with a white cross and the letters \"L O\" written on it. The third mask has a black mask with a red heart and a white cat drawn on it. The fourth mask has a black mask with a white cat and the words \"\u53ef\u53e3\u6c34\" written on it. The image also shows four different people wearing these masks. The first person is a woman with black hair and is wearing a black mask with a brown bear and the letters \"Y A\" on it. The second person is also a woman with black hair and is wearing a black mask with a red heart and the letters \"H U\" on it. The third person is a man with glasses and is wearing a black mask with white Chinese characters on it. The fourth person is also a woman with black hair and is wearing a black mask with the word \"\u53ef\u53e3\u6c34\" written on it.", - "id": 12068 - }, - { - "image_path": "/content/drive/MyDrive/combined/23004588_1412035008916221_7687995176807312335_o_jpg.rf.e5b5d3f259e27b226af8bd3e7d83b7ae.jpg", - "response": "In the image, two men are working on a glass door. One man is standing on a ladder and appears to be drilling into the glass. The other man is standing on the ground, holding the ladder. They are both working on the glass door, which is a large glass structure with a metal frame. The glass door is located in a unfinished room with bare walls and a concrete floor.", - "id": 12069 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513329330sooq10859_jpg.rf.97cadcc1c841dcb424ddbae8e6e32bba.jpg", - "response": "At the airport, a male star wearing a black mask is seen arriving. He is wearing a black top and a black on the left side of his body has a design of a red background with white letters. He is also wearing a black on the other side. He is wearing a black jacket with a gold chain around his neck. On the right hand, he is holding a white power bank.", - "id": 12070 - }, - { - "image_path": "/content/drive/MyDrive/combined/125895-untitled-design-30_jpg.rf.229c3d2f254cd63a442bb4fb9ac95642.jpg", - "response": "A group of people wearing face masks are walking down a hallway. They are wearing coats and the hallway has a white and grey color scheme. There are at least 12 people in the image, some are closer to the foreground and some are further away. They are all wearing some form of protective mask, either white or black. Some people are wearing medical masks, some are wearing cloth masks, and one person is wearing a black mask with red and white writing on it. They are all walking in a single file line down a long hallway.", - "id": 12071 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_Rung_Combination_Ladder_Fully_Extended_jpg.rf.f5811aa3d33db204ac015003538b1fc7.jpg", - "response": "A man standing on a ladder next to a brick building.", - "id": 12072 - }, - { - "image_path": "/content/drive/MyDrive/combined/497_jpg.rf.5b93f3b1337618455e2c6a4f8a0034e7.jpg", - "response": "A man in a garage holding an orange traffic cone.", - "id": 12073 - }, - { - "image_path": "/content/drive/MyDrive/combined/120316-F-YC840-062_JPG_jpg.rf.60eb1f414183a1b04b5a448432a4ce42.jpg", - "response": "A woman in military uniform and welding mask working on a metal pipe.", - "id": 12074 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_jpg.rf.dcf5a582e2f48ebbd344fefd8f3fdbf7.jpg", - "response": "A page with many different types of traffic cones. They are all different sizes and colors and have white stripes on them.", - "id": 12075 - }, - { - "image_path": "/content/drive/MyDrive/combined/215_jpg.rf.144044a852ccd504d771e6ef31e89263.jpg", - "response": "A single orange traffic cone laying on its side on the asphalt.", - "id": 12076 - }, - { - "image_path": "/content/drive/MyDrive/combined/445-72_jpg.rf.34bf17711a2654015faaec48d3e6e04a.jpg", - "response": "In the image, there is a man wearing a pair of brown boots and a brown shirt, who is working on the roof of a white house. He is on a ladder, which is placed against the house. The ladder is blue in color and has two levels. The man is also wearing a blue jeans. The sky in the background is blue and clear.", - "id": 12077 - }, - { - "image_path": "/content/drive/MyDrive/combined/294_jpg.rf.ea3db64a214d99f8b0fd826159a46e01.jpg", - "response": "a man holding a orange traffic cone in a garage", - "id": 12078 - }, - { - "image_path": "/content/drive/MyDrive/combined/150_jpg.rf.d295b2a644a72bd4b7da3014f3a439b9.jpg", - "response": "A row of orange and white traffic cones are lined up on the side of a road.", - "id": 12079 - }, - { - "image_path": "/content/drive/MyDrive/combined/1303078448-China-Coronavirus-Death-Toll-Hits-304_jpg.rf.4d3ddbbc36634a866c3c31a152b97ea1.jpg", - "response": "In the image, there is a person wearing a white mask and a white jacket. They are sitting in front of a red wall with yellow Chinese characters on it. The person is also wearing a grey hat.", - "id": 12080 - }, - { - "image_path": "/content/drive/MyDrive/combined/194_jpg.rf.20c0b0f5a04e045d7fd986eaad676d2e.jpg", - "response": "A man wearing a traffic cone on his head.", - "id": 12081 - }, - { - "image_path": "/content/drive/MyDrive/combined/15157270366_ba19541520_o_d_jpg.rf.e1d9c707aa5593f4e682b885e5dd82ec.jpg", - "response": "A group of men in military uniform are standing in a construction site. They are all wearing hard hats. One man is talking to the group.", - "id": 12082 - }, - { - "image_path": "/content/drive/MyDrive/combined/419_jpg.rf.44a6beb8634a980f3164cb5fe646ed9c.jpg", - "response": "A man standing in a room holding a orange and white caution cone.", - "id": 12083 - }, - { - "image_path": "/content/drive/MyDrive/combined/417_jpg.rf.d227f18a0e7d1ca0a3fac244ea0f4bc9.jpg", - "response": "A man in a blue shirt is holding a orange and white cone.", - "id": 12084 - }, - { - "image_path": "/content/drive/MyDrive/combined/160801-F-DB969-034_JPG_jpg.rf.2725af5fe87b204bae341bc208a193f5.jpg", - "response": "A man in a safety vest and sunglasses is working on a piece of construction equipment. He is wearing a yellow safety vest and sunglasses. He is holding a clipboard and has a pen in his hand. He is connecting a propane tank to the equipment. The tank is white and grey and has a black hose attached to it. The equipment has a black handle and a black lever. The sky is blue and cloudless.", - "id": 12085 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_13_jpg.rf.d4c2f6d889eed3f055d2f2342795c91e.jpg", - "response": "The image is a collage of three photos. In the first photo, a woman is wearing a mask and pulling a suitcase. She is walking next to a man who is also wearing a mask. In the second photo, people are walking on a train platform. A man is wearing a mask and looking at his phone. In the third photo, people are walking on a subway platform. A man is wearing a mask and looking at his phone. Some people are also carrying backpacks and a handbag.", - "id": 12086 - }, - { - "image_path": "/content/drive/MyDrive/combined/156_jpg.rf.757b71bb18ac938cd83195b820e0d941.jpg", - "response": "A single orange and black traffic cone sitting on a black base.", - "id": 12087 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513321824spp815on8_jpg.rf.fbf81a0fb09d6929a7af46368647d34d.jpg", - "response": "The image shows a group of people at an airport. The main person in the image is Cai Xukun, a Chinese singer and actor, who is wearing a black mask and a black shirt with a red and white design on it. He is also wearing a black jacket and has blonde hair. Cai Xukun is accompanied by other people, some of whom are also wearing black clothes.", - "id": 12088 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_144032-1-_jpg.rf.41f840642d071f705b213843ac2eb75d.jpg", - "response": "A man wearing a grey shirt and blue shorts is standing on a lush green lawn holding a orange rope.", - "id": 12089 - }, - { - "image_path": "/content/drive/MyDrive/combined/539_jpg.rf.10f776940501e3d60814f68cad796d0f.jpg", - "response": "A man in a garage holding a orange traffic cone.", - "id": 12090 - }, - { - "image_path": "/content/drive/MyDrive/combined/238_jpg.rf.542c8cfc8aa5e0fe428fbecf84183a8b.jpg", - "response": "A man is holding a large orange and white cone in a room.", - "id": 12091 - }, - { - "image_path": "/content/drive/MyDrive/combined/1249493_jpg.rf.918b5c9a928b130df2d2f57e3e8ea1ef.jpg", - "response": "A busy street scene with many people walking down the street. They are all wearing protective masks, likely due to the COVID-19 pandemic. Some of the people are carrying handbags and one person is carrying a plastic bag and a water bottle. There are also a few cars on the street.", - "id": 12092 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143105-p_jpg.rf.648adfb9cad515234748369c7f27beca.jpg", - "response": "A man in a yellow hat is trimming a tree with a pole.", - "id": 12093 - }, - { - "image_path": "/content/drive/MyDrive/combined/1579683152-0e3ba5698b090c0fda95caa5d2aa7b31_jpg.rf.b425d832df5d5ccfb4440962bdef8f0a.jpg", - "response": "A woman in a white lab coat and a mask is sitting at a desk with a laptop. She is typing on the keyboard. There is a book on the desk.", - "id": 12094 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220228_4_jpg.rf.7857b8b574ddfc520225bada33ea12f7.jpg", - "response": " Men(329,37),(567,596)(140,72),(426,607)(780,51),(996,630) in helmets(223,71),(330,147)(380,36),(498,113)(830,50),(951,128) standing in a wooded area", - "id": 12095 - }, - { - "image_path": "/content/drive/MyDrive/combined/1660_jpg.rf.1735967423cd5c249df2e74a0875d341.jpg", - "response": " Firefighters(263,164),(364,653)(422,191),(511,656)(591,216),(690,603)(748,212),(816,592)(533,217),(600,563)(220,160),(297,645) from the City of Galion Fire Department were on hand to demonstrate the proper use of fire extinguishers.", - "id": 12096 - }, - { - "image_path": "/content/drive/MyDrive/combined/186_jpg.rf.8e715434a8e42ef13d3ce6c0fe5acfd8.jpg", - "response": "A man is holding a traffic cone in a storage room.", - "id": 12097 - }, - { - "image_path": "/content/drive/MyDrive/combined/1209_jpg.rf.1c43bb68e6e57c6720cc6c6f5264cdc9.jpg", - "response": "A group of ladders in a storage room with safety cones in front of them. The ladders are of different sizes and colors and are placed in a row. Some of the ladders are red, yellow, and blue. The safety cones are bright orange and have the words \"safety first\" written on them. The storage room is white and has a concrete floor.", - "id": 12098 - }, - { - "image_path": "/content/drive/MyDrive/combined/352_jpg.rf.14102f638f46d20f8e70de4a94a2e0a0.jpg", - "response": "A man in a blue shirt holding a camera in a cluttered room.", - "id": 12099 - }, - { - "image_path": "/content/drive/MyDrive/combined/540_jpg.rf.e8cfb53d854375b05c1f78af2c4bc2ef.jpg", - "response": "A row of orange and yellow caution cones and yellow caution tape line the edge of a sidewalk. The cones are set up in a neat row and are spread out along the sidewalk. The sidewalk is concrete and is located in front of a building. The cones are also near a pile of dirt.", - "id": 12100 - }, - { - "image_path": "/content/drive/MyDrive/combined/30go29njBebyePDtZl723ysynAOKzA8y_jpeg_jpg.rf.2b8c7dba46cd77647f51e76763875ad7.jpg", - "response": "A group of three men looking at a blueprint.", - "id": 12101 - }, - { - "image_path": "/content/drive/MyDrive/combined/126202-untitled-design-13_jpg.rf.2fc0af4f9c586c16823ac7dbf6a4160e.jpg", - "response": "A group of people in medical masks and gloves.", - "id": 12102 - }, - { - "image_path": "/content/drive/MyDrive/combined/4845110772_1cb2c98d0e_o_d_jpg.rf.2d0cfb18c8e130307f6751d396860e26.jpg", - "response": "A man is working on a vehicle lift in a garage. He is wearing a grey shirt and black shoes with white laces. He is crouched down next to the underside of a jeep that is on a lift. There is a yellow step stool next to the man and a water bottle on the left side of the scene. There is a metal bar that the man is working on and a blue light is shining on it. The garage is dimly lit and there are two other people in the background, one near the right side of the scene and the other near the top.", - "id": 12103 - }, - { - "image_path": "/content/drive/MyDrive/combined/1730_jpg.rf.1c681c207452fddc904365e8b2b9ff9b.jpg", - "response": "A ladder safety poster that shows a man hanging from a broken ladder, with the caption \"Think! Ladder Safety\". The image is hanging on a wall and there are several ladders in the foreground.", - "id": 12104 - }, - { - "image_path": "/content/drive/MyDrive/combined/491_jpg.rf.d5293b348f27c98806cb17e88595f42d.jpg", - "response": "a man in a garage with a construction hat on his head", - "id": 12105 - }, - { - "image_path": "/content/drive/MyDrive/combined/1215_jpg.rf.35381ea8f2af4e6f9434d3d6905ef253.jpg", - "response": "A step ladder with a hard hat on it, next to a toy construction cone. The ladder is leaning against a white wall.", - "id": 12106 - }, - { - "image_path": "/content/drive/MyDrive/combined/20220226_143544-2-_jpg.rf.a66eb4c6d2a8446c75bb98220e52959c.jpg", - "response": "A man is standing in a yard holding a stick.", - "id": 12107 - }, - { - "image_path": "/content/drive/MyDrive/combined/171104-F-JC454-057_JPG_jpg.rf.1e18964e7f41cf8d1f9798197c8e1fb2.jpg", - "response": "The image shows a group of men wearing military fatigues standing in front of a large black helicopter. They are lifting a long object, possibly a pole or a beam, into the helicopter. The men are standing in front of the helicopter and appear to be in the process of loading it. There is a truck in the background on the right side of the image.", - "id": 12108 - }, - { - "image_path": "/content/drive/MyDrive/combined/31191702927_d01a0918f5_o_jpg.rf.d17dd4826f927a0503f9bb8439c29379.jpg", - "response": "A cement truck is parked in a large room with a group of construction workers standing around. Some of the workers are wearing yellow vests and hard hats. There is a staircase in the background and a fire hydrant on the left side of the room.", - "id": 12109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1501_jpg.rf.893a9849db13f586beb9c74aa9b3389d.jpg", - "response": "A silver step ladder that is 12 feet tall.", - "id": 12110 - }, - { - "image_path": "/content/drive/MyDrive/combined/148_jpg.rf.116b35687dcd210e92e9e9eda94498ed.jpg", - "response": "A single orange traffic cone on a white background.", - "id": 12111 - }, - { - "image_path": "/content/drive/MyDrive/combined/360_jpg.rf.f6c982ef57fcdd1df2e04573ee73f28e.jpg", - "response": "In the image there is a red and white race car driving on a track. The sky above the track is orange and there is a city skyline in the background. There are two traffic cones on the side of the track and a person is visible behind the car.", - "id": 12112 - }, - { - "image_path": "/content/drive/MyDrive/combined/1580128422_jpg.rf.08e2cb5b1d1460004ddd6e4229bd1086.jpg", - "response": "A busy airport with many people wearing face masks.", - "id": 12113 - }, - { - "image_path": "/content/drive/MyDrive/combined/41845547354_b8cfd83fda_b_jpg.rf.b30df37970f78fe00781e067dc63444d.jpg", - "response": "A air traffic controller and a pilot stand on the tarmac at an airport.", - "id": 12114 - }, - { - "image_path": "/content/drive/MyDrive/combined/222_jpg.rf.fa1fcc01735432656fef1cd9fbffd02b.jpg", - "response": "Three different types of traffic cones in ascending order of height. The first one is orange and white with a yellow arrow on top. The second one is orange and white with a red tip. The third one is the tallest and is all orange with a red tip.", - "id": 12115 - }, - { - "image_path": "/content/drive/MyDrive/combined/323_jpg.rf.769de660ab5ce3ba6197176c4cfb7118.jpg", - "response": "A man in a blue shirt is holding an orange and white traffic cone.", - "id": 12116 - }, - { - "image_path": "/content/drive/MyDrive/combined/221_jpg.rf.4f07c98cb4657431200ed2f800255203.jpg", - "response": "A man is holding a large orange and white cone in a storage room.", - "id": 12117 - }, - { - "image_path": "/content/drive/MyDrive/combined/161_jpg.rf.c42ce152bf7cdb405669bdcb203e33f5.jpg", - "response": "a orange and white cone(385,111),(561,784)", - "id": 12118 - }, - { - "image_path": "/content/drive/MyDrive/combined/356_jpg.rf.1b639c4f280ebaa82ff2920bfff950fb.jpg", - "response": "A man is holding a caution cone in front of him.", - "id": 12119 - }, - { - "image_path": "/content/drive/MyDrive/combined/426_jpg.rf.c8d075ae2feb02c9980b509ead1890cc.jpg", - "response": "A street scene with a bunch of orange and white cones.", - "id": 12120 - }, - { - "image_path": "/content/drive/MyDrive/combined/16310-a-bicyclist-putting-on-a-safety-helmet-pv_jpg.rf.78001337cd8a582df8bd6edcc57e0b9e.jpg", - "response": "A man in a blue jacket puts on a helmet.", - "id": 12121 - }, - { - "image_path": "/content/drive/MyDrive/combined/15391513321824spp815on8_jpg.rf.ffb63cb27f663dbda5451282ca5c2665.jpg", - "response": "In the image there is a group of people, one person in the center of the frame is wearing a black mask and a black jacket, his hair is blonde and he has a black shirt underneath with a red and white design on the front. He is also wearing a black and gold necklace. Next to him on the right is a girl with dark hair wearing a black coat. In the background on the left is a man wearing a black cap and glasses, he is wearing a white shirt and a black tie. All the people are walking through what appears to be an airport.", - "id": 12122 - }, - { - "image_path": "/content/drive/MyDrive/combined/1539151332674193npsrq70_jpg.rf.2aa2877de21e78e9c2a4f6806e44d13a.jpg", - "response": "The picture shows a man in a black leather jacket and black pants walking through an airport. He is wearing a black mask, black shoes with white soles, and a black and orange shirt. He is also wearing a black and white handbag. The background is a large white screen.", - "id": 12123 - }, - { - "image_path": "/content/drive/MyDrive/combined/176_jpg.rf.c6c82634854cb919a34d32ffcee388a9.jpg", - "response": "The image shows a collection of nine traffic cones in various shapes and sizes. They are all orange and white in color and have a reflective sheen. The cones are arranged in three rows of three and are placed on a white background. The first row of cones is on the left side of the image, and the second and third rows are on the right side. The cones have different heights, widths, and base shapes, and some have black and yellow stripes. The collection of cones is set in a perspective that makes them look three-dimensional.", - "id": 12124 - }, - { - "image_path": "/content/drive/MyDrive/combined/353_jpg.rf.c94fab4b7cd720fec7342cb6d3fb47b3.jpg", - "response": "A man in a garage holding a flag.", - "id": 12125 - }, - { - "image_path": "/content/drive/MyDrive/combined/1288788-une-employee-aide-des-voyageurs-en-provenance-de-chine-le-26-janvier-2020-a-l-aeroport-de-roissy_jpg.rf.0eb946a23a83239775cf3dc2b7625a1a.jpg", - "response": "Passengers wearing protective facemasks, following an outbreak of the coronavirus, arrive at the international airport in Rome on February 20, 2020. - An Italian passenger who had been on a cruise ship off Japan was found to have the coronavirus, the first case in Italy, health authorities announced on February 19. The 38-year-old man, who had been on the cruise ship the Diamond Princess, was hospitalised in Rome on February 18 and tested positive for the virus, known as COVID-19. (Photo by Tiziana FABI / AFP) (Photo by TIZIANA FABI/AFP via Getty Images)", - "id": 12126 - }, - { - "image_path": "/content/drive/MyDrive/combined/3_jpg.rf.bb2ca7d682030de0d1f8c2150fc6cb31.jpg", - "response": "A man in a blue shirt is holding an orange and white traffic cone. The room is filled with many items such as a shelf, a suitcase, a handbag, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf, a suitcase, a clock, a bottle, a cup, a book, a box, a bowl, a remote, a keyboard, a mouse, a camera, a pair of scissors, a saw, a drill, a bookshelf,", - "id": 12127 - }, - { - "image_path": "/content/drive/MyDrive/combined/52_jpg.rf.72ce134521f31320d29dd34b9bfc4031.jpg", - "response": "A man in a blue shirt is holding a large orange and white cone.", - "id": 12128 - }, - { - "image_path": "/content/drive/MyDrive/combined/319_jpg.rf.5335df5d84a9f08ecea94160b9283310.jpg", - "response": "A single orange traffic cone sitting on the street.", - "id": 12129 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b103e44-a915-4b2a-a2f2-9fac18e37a2e_jpg.rf.01d542b0a9429b5f635466c6318db750.jpg", - "response": "A man is hanging from a ladder, which is leaning against the side of a house. The man is wearing a black shirt and shorts. He is holding a tool in his left hand. The ladder is propped up against the house and appears to be the only support for it. The man is hanging from the top of the ladder, which is not a safe way to use a ladder.", - "id": 12130 - }, - { - "image_path": "/content/drive/MyDrive/combined/417_jpg.rf.4e9a493f078e7f958f9b99d088bff3bf.jpg", - "response": "A set of four orange and white traffic cones with a black and yellow caution bar in front of them.", - "id": 12131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1249493_jpg.rf.444ad9fba2d788c31bd8784da31689bf.jpg", - "response": "A busy street scene with many people walking down the street. Some of the people are wearing masks, one person is wearing a red hat and a black jacket, another person is wearing a white mask and a black jacket, and a third person is wearing a white mask and a red hat. There are two cars on the street and a white truck. One person is carrying a bag and another person is holding a cell phone.", - "id": 12132 - }, - { - "image_path": "/content/drive/MyDrive/combined/123_PNG_jpg.rf.87cc8917d97ad9352f9080870402ad6f.jpg", - "response": "The image shows a row of pipes with red and yellow valves and pressure gauges attached to them. The pipes are painted blue and orange.", - "id": 12133 - }, - { - "image_path": "/content/drive/MyDrive/combined/127_PNG_jpg.rf.ee15b8a1db8680d092db87e4df8a7646.jpg", - "response": "A close up of a pressure meter on a pole with the background blurred out. The meter is circular and made of metal. The numbers on the meter are black and there is a small arrow on the meter to indicate the pressure. The meter is connected to a rusty pipe.", - "id": 12134 - }, - { - "image_path": "/content/drive/MyDrive/combined/216_PNG_jpg.rf.3593a9c0d4bb3ac9d849b50075ac3db0.jpg", - "response": "A close up of a red pipe with a pressure gauge attached to it.", - "id": 12135 - }, - { - "image_path": "/content/drive/MyDrive/combined/161_PNG_jpg.rf.7bd623de2b6dd40123eed8f4cd6e642e.jpg", - "response": "A tire pressure gauge with a red handle and a circular dial that goes from 0 to 150.", - "id": 12136 - }, - { - "image_path": "/content/drive/MyDrive/combined/220_PNG_jpg.rf.13386310fbe9b875d3c1c3f8e1ff0f44.jpg", - "response": "A person is holding a pressure gauge in their hand. The gauge is connected to a black hose and is placed on a silver pipe. The person is checking the pressure of the air. The background is blue and there is a red car in the left side of the image.", - "id": 12137 - }, - { - "image_path": "/content/drive/MyDrive/combined/135_PNG_jpg.rf.dd3a64606eb54ec0d8524dd4e9fa280a.jpg", - "response": "A close up of a machine with many pipes and valves. There are four pressure gauges mounted on the side of the machine. The machine is sitting in front of a white brick wall.", - "id": 12138 - }, - { - "image_path": "/content/drive/MyDrive/combined/114_PNG_jpg.rf.699b0ec9fa2dc8e8a1a554db6d097e23.jpg", - "response": "A person is holding a red tool and is touching a blue pipe. The pipe is connected to a water meter with a gauge on it. The gauge is black and white and has a red handle. The person is wearing a wedding ring on their left hand. The water meter is attached to a black pipe and is surrounded by other pipes. The person is wearing a tan shirt.", - "id": 12139 - }, - { - "image_path": "/content/drive/MyDrive/combined/117_PNG_jpg.rf.a6c691d9eeae7134662e0bc97594af4b.jpg", - "response": "A close up of a gauge on a piece of equipment.", - "id": 12140 - }, - { - "image_path": "/content/drive/MyDrive/combined/105_PNG_jpg.rf.1dae415b0f4580822f1933a7ff896899.jpg", - "response": "a black and white gauge with red pointer", - "id": 12141 - }, - { - "image_path": "/content/drive/MyDrive/combined/109_PNG_jpg.rf.784c256d71948d9eba5c0bc8d8cfba23.jpg", - "response": "A close up of a pressure gauge on a machine.", - "id": 12142 - }, - { - "image_path": "/content/drive/MyDrive/combined/151_PNG_jpg.rf.df704219f069777dfb224e0984fdb18e.jpg", - "response": "A close up of a pressure gauge on a blue wall. The pressure gauge is white and looks old and has a black dial with white markings. The pipe is made of metal and is attached to the wall with a blue pipe. The wall is a bright blue color.", - "id": 12143 - }, - { - "image_path": "/content/drive/MyDrive/combined/102_PNG_jpg.rf.26076ae69d4b16ae5de477ffcc44116e.jpg", - "response": "A bunch of pipes and dials that are all connected.", - "id": 12144 - }, - { - "image_path": "/content/drive/MyDrive/combined/124_PNG_jpg.rf.4cae2a4f41bef2e77567b38b3d3eaf33.jpg", - "response": "A close up of a gauge with the needle pointing at 0.0 bar.", - "id": 12145 - }, - { - "image_path": "/content/drive/MyDrive/combined/209_PNG_jpg.rf.96ac2194f49862ba83241b8890e6ce12.jpg", - "response": "A close up of a machine with three pressure meters.", - "id": 12146 - }, - { - "image_path": "/content/drive/MyDrive/combined/116_PNG_jpg.rf.edd710223247b81b4b18cded5dd7ea3b.jpg", - "response": "A man writing on a clipboard in a factory.", - "id": 12147 - }, - { - "image_path": "/content/drive/MyDrive/combined/119_PNG_jpg.rf.635ac3778e4aa468f2f9448e0a9e52cd.jpg", - "response": "A machine with a red wheel and a gauge.", - "id": 12148 - }, - { - "image_path": "/content/drive/MyDrive/combined/167_PNG_jpg.rf.d6336958c6ea475c292f810c6cd28c58.jpg", - "response": "A bunch of pipes and meters on a wall.", - "id": 12149 - }, - { - "image_path": "/content/drive/MyDrive/combined/148_PNG_jpg.rf.9795f9696e6242384ee7f97a0cbdbc2d.jpg", - "response": "A man wearing a white hard hat and a black jacket is holding a device to a machine with pipes and gauges. He is standing in a room with multiple pipes of different colors and sizes, some of which are connected to the machine. The man is wearing blue pants and has a beard. The walls of the room are yellow and there are several other machines in the background.", - "id": 12150 - }, - { - "image_path": "/content/drive/MyDrive/combined/125_PNG_jpg.rf.89463bdb19808d8b8ac71ad9e55895d7.jpg", - "response": "A pressure gauge with a white face and a black needle.", - "id": 12151 - }, - { - "image_path": "/content/drive/MyDrive/combined/118_PNG_jpg.rf.45b2a60a9636197b2541f47495897316.jpg", - "response": "The image shows a close up of two pressure gauges on a machine. The gauges are made of metal and are round, with a black dial and white face. The numbers on the gauges are in units of mm Hg. The gauges are connected to a pipe, which is made of metal and has a valve on the left side. The valve is made of black plastic and has a knob on top. The background of the image is out of focus and has a silver color.", - "id": 12152 - }, - { - "image_path": "/content/drive/MyDrive/combined/111_PNG_jpg.rf.5a4112d502c58a448a22f09fcd7584f4.jpg", - "response": "A red and blue device with three pressure meters on the front of it.", - "id": 12153 - }, - { - "image_path": "/content/drive/MyDrive/combined/100_PNG_jpg.rf.59b5983fdcf8f5970f1fb46c6c8d8cea.jpg", - "response": "a group of pressure gauges", - "id": 12154 - }, - { - "image_path": "/content/drive/MyDrive/combined/168_PNG_jpg.rf.52c1dd8cb1af0fbb4360de752d87d4dd.jpg", - "response": "The image shows a close up of a boiler room with pipes and valves. There are several pressure gauges and a thermostat. The pipes are white and grey and the valves are red. The room has a tiled floor and walls.", - "id": 12155 - }, - { - "image_path": "/content/drive/MyDrive/combined/149_PNG_jpg.rf.e364a680cadf6303ae42956fd427960a.jpg", - "response": "A close up of a machine with gauges and hoses.", - "id": 12156 - }, - { - "image_path": "/content/drive/MyDrive/combined/133_PNG_jpg.rf.eeeddf340557c25bffe4354775fe073c.jpg", - "response": "The image shows a close-up of a machine with many pipes and a pressure gauge. The pipes are connected to the gauge, which is in the foreground of the image. The pipes are of various sizes and are connected to the gauge in different positions. The gauge has a red and white dial and a white face. The background of the image is blue.", - "id": 12157 - }, - { - "image_path": "/content/drive/MyDrive/combined/137_PNG_jpg.rf.4b03e4223cbef993e32a47139b8325e6.jpg", - "response": "The image shows a factory room with pipes in it. The pipes are silver and connected. A pressure gauge is attached to one of the pipes. The pressure gauge has a black dial with white markings. The gauge is made of metal and is round. The background is blue.", - "id": 12158 - }, - { - "image_path": "/content/drive/MyDrive/combined/113_PNG_jpg.rf.ce3f73465ef262b73b2e2f58d9ec4217.jpg", - "response": "A close up of a pressure gauge in front of a blurred background of metal pipes and valves. The pressure gauge has a white face with a red pointer and is connected to a metal pipe by a red valve. The pressure gauge reads 0 bar.", - "id": 12159 - }, - { - "image_path": "/content/drive/MyDrive/combined/0_PNG_jpg.rf.1a145de2f2c03b28a2de514d2df5e83f.jpg", - "response": "The image shows a close up of three pressure gauges on a pipe. The gauges are connected to a pipe and are made of metal. The first gauge is on the left and is circular with a white face and black markings. The second gauge is circular with a white face and black markings as well. The third gauge is circular with a white face and black markings. The background of the image is blurred and there are two red and yellow valves below the gauges.", - "id": 12160 - }, - { - "image_path": "/content/drive/MyDrive/combined/108_PNG_jpg.rf.cf35fe153f6ed61e73412f2491b8bf97.jpg", - "response": "a large metal gauge with a clock on it", - "id": 12161 - }, - { - "image_path": "/content/drive/MyDrive/combined/128_PNG_jpg.rf.12605b73f628473fedeb981aa161738d.jpg", - "response": "In the image there is a close up of a machine with multiple blue pipes and a silver pressure meter. The pressure meter has a white face and black numbers\u6807\u8bb0", - "id": 12162 - }, - { - "image_path": "/content/drive/MyDrive/combined/112_PNG_jpg.rf.648fe1cd42b798f2c1cf4f1fe6c54b51.jpg", - "response": "In the image there is a close up of a pressure gauge on a machine. The pressure gauge is round and made of metal. The gauge has a black dial and white markings. The background of the image is out of focus and has a blue tint.", - "id": 12163 - }, - { - "image_path": "/content/drive/MyDrive/combined/129_PNG_jpg.rf.c933af958cb0707936b16fc892bb57ca.jpg", - "response": "The image shows a close-up of a blue metal pipe with a pressure gauge attached to it. The pipe is connected to other pipes in a similar style. There are also other pressure gauges attached to the pipes in different positions. The background is a bit blurry and the image is bright with lights.", - "id": 12164 - }, - { - "image_path": "/content/drive/MyDrive/combined/143_PNG_jpg.rf.493810e4b595ed0f9d324ffc6b355a40.jpg", - "response": "The image shows a machine with multiple pressure meters. The pressure meters are of different sizes and are arranged in a row. The machine has a silver color and looks industrial. The background of the image is white and blue.", - "id": 12165 - }, - { - "image_path": "/content/drive/MyDrive/combined/12_PNG_jpg.rf.dd840292a9fc132dd8e4cb0985f3f8db.jpg", - "response": "A close up of a pressure meter with the needle pointing to 15.", - "id": 12166 - }, - { - "image_path": "/content/drive/MyDrive/combined/122_PNG_jpg.rf.3912476840a217b36f5ac19705ad0b99.jpg", - "response": "A close up of a machine with pipes and gauges.", - "id": 12167 - }, - { - "image_path": "/content/drive/MyDrive/combined/226_PNG_jpg.rf.f1f245a96d6413cc2dada22165df9ab8.jpg", - "response": "A close up of a red fire hydrant with a gauge on it.", - "id": 12168 - }, - { - "image_path": "/content/drive/MyDrive/combined/163_PNG_jpg.rf.8aedb4b1935bc628dce09bbb142f1d07.jpg", - "response": "A machine with a pressure gauge on top of it.", - "id": 12169 - }, - { - "image_path": "/content/drive/MyDrive/combined/132_PNG_jpg.rf.dfaa8f39269efc4b0ac30c5ef61f9a63.jpg", - "response": "A wall with many pipes and gauges.", - "id": 12170 - }, - { - "image_path": "/content/drive/MyDrive/combined/136_PNG_jpg.rf.9ec59e1377d4aec8b053963b088e3457.jpg", - "response": "a large metal gauge with a red and white pipe in the background", - "id": 12171 - }, - { - "image_path": "/content/drive/MyDrive/combined/115_PNG_jpg.rf.b091791dfc2f46acb5e72b2ef639ebe2.jpg", - "response": "The image features a close up of a pressure gauge. The gauge is round and white, with a black dial and markings. It is attached to a silver metal pipe. The background of the image is out of focus and blurry, with a variety of objects including a bottle and a cup. The entire scene has a warm and golden color to it.", - "id": 12172 - }, - { - "image_path": "/content/drive/MyDrive/combined/101_PNG_jpg.rf.70fe46fb757e61c0877480bbbbe3c05a.jpg", - "response": "A line of 5 pressure meters on a wooden wall. The meters are made of metal and are circular. They are all different sizes and have black markings. The first meter on the left is the largest and the last meter on the right is the smallest. The meters are all connected to the wall and have brown rust spots on them. The wall is made of wood and has a wooden texture.", - "id": 12173 - }, - { - "image_path": "/content/drive/MyDrive/combined/166_PNG_jpg.rf.3a33350e4f2d78e07622291d2e6ddf14.jpg", - "response": "A man in a blue jacket and black hat working on a machine with many pipes and gauges.", - "id": 12174 - }, - { - "image_path": "/content/drive/MyDrive/combined/126_PNG_jpg.rf.cb9fcbf313371e96d4c6382e545ad528.jpg", - "response": "The image features a close-up of a pressure gauge. The gauge is round and made of metal, with a white face and black numbers. The numbers on the gauge range from -1 to 50, with a scale in both degrees Celsius and degrees Fahrenheit. The gauge is mounted on a metal sphere, which is in turn mounted on a metal pipe. The background of the image is dark, with a blue hue. There are several other metal pipes visible in the background, some of which are connected to the main pipe.", - "id": 12175 - }, - { - "image_path": "/content/drive/MyDrive/combined/121_PNG_jpg.rf.5686cba39c63f2b10b2d2948b02c6f35.jpg", - "response": "a close up of a pressure gauge in front of a blurry background of pipes", - "id": 12176 - }, - { - "image_path": "/content/drive/MyDrive/combined/131_PNG_jpg.rf.3f9399386c236b82d9c80ca73f3bc8b5.jpg", - "response": "A close up of a pressure meter on a pipe.", - "id": 12177 - }, - { - "image_path": "/content/drive/MyDrive/combined/110_PNG_jpg.rf.aaa19c312978d7e8cf84a3a04c249e0a.jpg", - "response": "A close up of a gas meter with a pressure gauge.", - "id": 12178 - }, - { - "image_path": "/content/drive/MyDrive/combined/130_PNG_jpg.rf.dc1c6b5a254654b17ea8ce338d18b1a7.jpg", - "response": "A row of metal pipes with black and white meters on the side of them.", - "id": 12179 - }, - { - "image_path": "/content/drive/MyDrive/combined/134_PNG_jpg.rf.26cf73e5ae076b97112019bc43cbfdc7.jpg", - "response": "The image shows a water filtration system mounted on a white wall. The system has multiple blue tanks and pipes and a pressure gauge. The system is connected to a white pipe and a silver pipe. The wall has a white color and the room appears to be white as well.", - "id": 12180 - }, - { - "image_path": "/content/drive/MyDrive/combined/152_PNG_jpg.rf.12e4450156c629388ff9e626b53d25c4.jpg", - "response": "A close up of a blue and silver pipe with a gauge on it.", - "id": 12181 - }, - { - "image_path": "/content/drive/MyDrive/combined/120_PNG_jpg.rf.b1bba8922f2809655f6216909848260d.jpg", - "response": "A close up of a pressure meter with a sky background.", - "id": 12182 - }, - { - "image_path": "/content/drive/MyDrive/combined/162_PNG_jpg.rf.d620215b4a422e6faa9d24095881d6be.jpg", - "response": "In the image there is a person wearing a white hard hat and safety glasses. They are holding a clipboard and a pen. They are standing in front of a large set of pipes. The pipes are black and orange. There are also two pressure gauges on the pipes. One is on the left and one is in the middle. The person is standing in a mechanical room.", - "id": 12183 - }, - { - "image_path": "/content/drive/MyDrive/combined/10_PNG_jpg.rf.3ea2fc50f8239c9ccf869bd4ce01c1dc.jpg", - "response": "a close up of a gauge with a clock in the background", - "id": 12184 - }, - { - "image_path": "/content/drive/MyDrive/combined/26_PNG_jpg.rf.b3f31f86df2b086ab4933fb3a2be4da7.jpg", - "response": "A close up of a gauge with a blurry background. The gauge is circular and made of metal. The gauge has a white face and black markings. The numbers on the gauge are in the range of 0 to 30. The gauge is not labeled.", - "id": 12185 - }, - { - "image_path": "/content/drive/MyDrive/combined/15_PNG_jpg.rf.e100c570913185672a8451864bedc0cc.jpg", - "response": "A large machine with pipes and a gauge.", - "id": 12186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1_PNG_jpg.rf.a3874f157613f06f99f109e94e1c7406.jpg", - "response": "A large gauge with a black face and white markings.", - "id": 12187 - }, - { - "image_path": "/content/drive/MyDrive/combined/33_PNG_jpg.rf.80ea7abd7881436971db75ae338dfb6b.jpg", - "response": "A close up of a pressure gauge on a metal pipe. The pressure gauge is silver and white and has a black dial with black numbers. The pressure gauge is connected to a metal pipe. The background is blurry and there are some lights in the top right corner of the image.", - "id": 12188 - }, - { - "image_path": "/content/drive/MyDrive/combined/40_PNG_jpg.rf.b4274dcfb61fe1a79ddb4e2617f143fb.jpg", - "response": "A close up of a pressure meter with the needle pointing towards 300.", - "id": 12189 - }, - { - "image_path": "/content/drive/MyDrive/combined/30_PNG_jpg.rf.820efb079744ea536677a5d1d1cada2e.jpg", - "response": "a close up of a gauge with the words comp pressure on it", - "id": 12190 - }, - { - "image_path": "/content/drive/MyDrive/combined/28_PNG_jpg.rf.1155360b8f9dae266ad10be29106a60c.jpg", - "response": "A close up of a hand holding a pressure meter gauge. The gauge is a white and silver color and is made by the brand KORI. The gauge is for measuring pressure and has markings in red and black. The gauge is also a stainless steel material. The numbers on the gauge are 0 to 150. The gauge is also connected to a black and red wire. The background of the image is a brown blurry image of a wall.", - "id": 12191 - }, - { - "image_path": "/content/drive/MyDrive/combined/27_PNG_jpg.rf.b1a87672a93a0ea59f31bb343f914499.jpg", - "response": "A close up of a gauge with the needle pointing at 220.", - "id": 12192 - }, - { - "image_path": "/content/drive/MyDrive/combined/4_PNG_jpg.rf.47795965fed188cab0e1126c9b068d46.jpg", - "response": "A close up of three gauges on a wall.", - "id": 12193 - }, - { - "image_path": "/content/drive/MyDrive/combined/2_PNG_jpg.rf.d1de7ff4ec44b3b2bad0bb14c456f8b3.jpg", - "response": "A large gauge with the needle pointing at 0.5 bar.", - "id": 12194 - }, - { - "image_path": "/content/drive/MyDrive/combined/49_PNG_jpg.rf.f30ae802c672e433fb7a97b561694d2c.jpg", - "response": "A close up of a pressure gauge in front of a factory.", - "id": 12195 - }, - { - "image_path": "/content/drive/MyDrive/combined/35_PNG_jpg.rf.e8af12a260c09e7566b6e8f980fbbc11.jpg", - "response": "A large metal thermometer on a white wall.", - "id": 12196 - }, - { - "image_path": "/content/drive/MyDrive/combined/44_PNG_jpg.rf.ccb8d432250d5325941cbbb6f2ff067a.jpg", - "response": "A close up of a pressure meter with the needle pointing at 2.0 bar.", - "id": 12197 - }, - { - "image_path": "/content/drive/MyDrive/combined/270a22e754fc3db4.jpg", - "response": "a bottle of green liquid on a wooden table", - "id": 12198 - }, - { - "image_path": "/content/drive/MyDrive/combined/17fc0a84575c5a72.jpg", - "response": "A wine bottle and a wine glass are placed next to each other. The wine bottle is almost empty, and there is a cork on the table. A laptop is also present on the table.", - "id": 12199 - }, - { - "image_path": "/content/drive/MyDrive/combined/5404b31ca41bb2b0.jpg", - "response": "A bottle of Storm by Brew Dog sits next to a glass filled with the beer. The bottle is dark blue with a white label. The glass is half full.", - "id": 12200 - }, - { - "image_path": "/content/drive/MyDrive/combined/35ad9c758e839508.jpg", - "response": "The image shows a shelf with two shelves. On the top shelf, there are several large containers of Lynchburg Lemonade. These containers have the words \"Jack Daniel's Lynchburg Lemonade\" written on them. On the bottom shelf, there are multiple glasses and packets of lemonade. In the center of the bottom shelf, there is a small wooden box containing packets of lemonade. The packets are labeled \"Lemon\" and \"Domino.\"", - "id": 12201 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bafb16c6ef63548.jpg", - "response": "A glass filled with a dark beer next to a bottle of the same beer.", - "id": 12202 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e3a5eda37c3dbf3.jpg", - "response": "A bottle of Janneau 1975 vintage collection brandy on a wooden shelf.", - "id": 12203 - }, - { - "image_path": "/content/drive/MyDrive/combined/33debb737dd3146f.jpg", - "response": "A record album cover with a picture of a woman in a white dress sitting on a bench.", - "id": 12204 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa269e039e4021d.jpg", - "response": "A bottle of wine with a yellow and white label on a wooden shelf.", - "id": 12205 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5cdcb9b66781bd.jpg", - "response": "A wall with a sign that says \"CHAMPAGNE LAURENT-PERRIER\" in black text. There are seven bottles of champagne hanging on the wall, each one a different size and shape. The first one is on the left and is almost empty. The second one is almost full. The third one is almost empty. The fourth one is almost full. The fifth one is almost empty. The sixth one is almost full. The seventh one is almost empty. The wall has a grey patterned texture.", - "id": 12206 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e4a23ecf14cf0f3.jpg", - "response": "A bottle of Pumpkin lager beer next to a glass filled with the beer.", - "id": 12207 - }, - { - "image_path": "/content/drive/MyDrive/combined/25cc7c1655fdbefa.jpg", - "response": "A bottle of Samuel Adams Cherry Wheat next to a filled glass of the beer.", - "id": 12208 - }, - { - "image_path": "/content/drive/MyDrive/combined/36e779744abf2331.jpg", - "response": "A table with a green bottle of soda and two bottles of alcohol.", - "id": 12209 - }, - { - "image_path": "/content/drive/MyDrive/combined/52217fbcf6e3d09d.jpg", - "response": "The image shows two baseball players standing on a field, likely celebrating a victory. Both players are wearing white pants and dark gray shirts. One player is holding a baseball glove, and there are several other gloves scattered around the field. The players are standing near a base, and the field is surrounded by a red wall with advertisements on it. There are several other people in the scene, including some in the background and others standing around the field. Some of these people are wearing baseball caps.", - "id": 12210 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ff6bdce7db9094.jpg", - "response": "The image features two dark bottles of red wine with a white and red label. The label has a white background with a black number two on a red background on the left bottle and a white background with a black number two on a red background on the right bottle. The left bottle has a white label with a black number two on a red background. The right bottle has a red label with a white number two on a red background. The label also has the name of the winery, 1848 Galina Thor, and the name of the wine, Second Generation, in white font on a white background at the top of the label. The back of the label has more information about the wine in both Hebrew and English. The bottle cap is black.", - "id": 12211 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b2e1daf260885d4.jpg", - "response": "A man wearing a white shirt with the Al Muroqab and QTel logos on it.", - "id": 12212 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cb0f203c9595d16.jpg", - "response": "A large group of people are gathered in a convention center, standing around a booth for fertility support. There is a large sign that says \"Info\" and a sign that says \"MS Fertility Support\" hanging above the booth. There are also two televisions in the area. Some people are carrying handbags and a backpack.", - "id": 12213 - }, - { - "image_path": "/content/drive/MyDrive/combined/483d6f47e096d436.jpg", - "response": "A man and woman are wrestling in a ring.", - "id": 12214 - }, - { - "image_path": "/content/drive/MyDrive/combined/2697666a7ab81283.jpg", - "response": "A bottle of Bavaria dark beer next to a mug of beer.", - "id": 12215 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c57b05e7f7c3568.jpg", - "response": "A woman with curly hair holding a sign of a robot.", - "id": 12216 - }, - { - "image_path": "/content/drive/MyDrive/combined/449a04646c06d356.jpg", - "response": "A counter with a sign that says \"Please enjoy the Incase Cocktail\" and several bottles of alcohol including Bacardi, Grey Goose and Smirnoff.", - "id": 12217 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bce6163eaec52b6.jpg", - "response": "A baseball team of Japanese players are talking to a woman.", - "id": 12218 - }, - { - "image_path": "/content/drive/MyDrive/combined/47118cff0c0fc78e.jpg", - "response": "A meal consisting of rice, vegetables, and noodles is served in a black plastic tray. The tray is on a wooden table and there is a bottle of water next to it.", - "id": 12219 - }, - { - "image_path": "/content/drive/MyDrive/combined/374976403d65c424.jpg", - "response": "A woman wearing red shorts and brown high heels.", - "id": 12220 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bac15004b4823ac.jpg", - "response": "A group of men standing next to each other.", - "id": 12221 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c61bbe7e8aba814.jpg", - "response": "A pitcher on a baseball field in a city.", - "id": 12222 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bfb74c5d0273db9.jpg", - "response": "A group of people in red and white outfits.", - "id": 12223 - }, - { - "image_path": "/content/drive/MyDrive/combined/41cea880cc17b9a8.jpg", - "response": "A white Fila brand sneaker with red and black accents.", - "id": 12224 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a242ab16ef1b2dc.jpg", - "response": "a runner with a red shirt and number 4060 on her chest", - "id": 12225 - }, - { - "image_path": "/content/drive/MyDrive/combined/15c0c808d5505a7d.jpg", - "response": "A red t-shirt with the words Fresh beer lives here on the back.", - "id": 12226 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4125e7b1210526.jpg", - "response": "A group of people are sitting on a brown couch.", - "id": 12227 - }, - { - "image_path": "/content/drive/MyDrive/combined/1851a1e6a7deda9e.jpg", - "response": " A man(427,63),(770,996) is speaking into a microphone", - "id": 12228 - }, - { - "image_path": "/content/drive/MyDrive/combined/399b78fa83eed9b8.jpg", - "response": "A man and two women standing in front of a white background with logos on it.", - "id": 12229 - }, - { - "image_path": "/content/drive/MyDrive/combined/1901675a90c533f5.jpg", - "response": "A soccer player in a yellow uniform stands on the field.", - "id": 12230 - }, - { - "image_path": "/content/drive/MyDrive/combined/4276c80c3b7930c9.jpg", - "response": "A hockey team is sitting on the bench, waiting for the game to start. They are all wearing white and red uniforms.", - "id": 12231 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f8d13bce21b6ada.jpg", - "response": "A man wearing a white shirt with the words \"Policia Electoral\" on the back of it.", - "id": 12232 - }, - { - "image_path": "/content/drive/MyDrive/combined/339106dd627e804e.jpg", - "response": "A man taking a picture of himself in a mirror.", - "id": 12233 - }, - { - "image_path": "/content/drive/MyDrive/combined/22668e7f4a58d098.jpg", - "response": "A student in a red sweatshirt and black hat gives two thumbs up in front of a staircase.", - "id": 12234 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a64a47619f0ec22.jpg", - "response": "A person wearing black pants with the word juicy on the back of them.", - "id": 12235 - }, - { - "image_path": "/content/drive/MyDrive/combined/382261c07d309f67.jpg", - "response": "A baseball player wearing a blue and white uniform is standing on the field.", - "id": 12236 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd5f9d90983c9d6.jpg", - "response": "A man standing at a podium with a laptop and a microphone.", - "id": 12237 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a91fdadfd341024.jpg", - "response": "In the image, a soccer team is celebrating a victory. There are several players on the field, some holding up a large silver trophy. In the stands, a crowd of people are watching the celebration. Among the crowd, there are men and women, some wearing ties and others coats. The image also shows a handbag and a cell phone.", - "id": 12238 - }, - { - "image_path": "/content/drive/MyDrive/combined/460b1dcaf38fdf9f.jpg", - "response": "A man in a suit throwing a baseball on a field.", - "id": 12239 - }, - { - "image_path": "/content/drive/MyDrive/combined/4353e86154a1ad14.jpg", - "response": "The image shows a baseball player wearing a blue and white uniform with pinstripes, walking on the field. The player is holding a baseball glove and a towel. The player is standing near a wall with the word \"Mets\" written on it. There are other players in the background, one of whom is wearing a baseball cap and holding a baseball glove. The player in the background is also wearing a helmet. The image was taken during a baseball game.", - "id": 12240 - }, - { - "image_path": "/content/drive/MyDrive/combined/280a48e4b41a043e.jpg", - "response": "A female wrestler in a blue top is on top of another female wrestler in red in a match.", - "id": 12241 - }, - { - "image_path": "/content/drive/MyDrive/combined/483c213d3bdb8db3.jpg", - "response": "A man wearing a white shirt and black shorts, standing on a field and holding a frisbee.", - "id": 12242 - }, - { - "image_path": "/content/drive/MyDrive/combined/16d5a845d3cab1cb.jpg", - "response": "A group of girls playing basketball on a court.", - "id": 12243 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e97538ae751a7d6.jpg", - "response": "a group of people sitting in the stands", - "id": 12244 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed23e2e9cb33e1b.jpg", - "response": "A baseball player is holding a bat and getting ready to swing at a pitch. He is wearing a blue and white striped uniform and is standing in the batter's box. There are other players and a coach standing in the dugout behind him, watching the game intently. Some players are holding their bats, while others are holding baseball gloves. The scene captures the excitement and anticipation of a baseball game.", - "id": 12245 - }, - { - "image_path": "/content/drive/MyDrive/combined/428b829ee3b65fe3.jpg", - "response": "The image shows two baseball players on a field, wearing blue and white uniforms and holding baseball gloves. They are both holding their hands out, with one of them wearing a glove on their left hand and the other glove on their right hand. The players are standing in front of a red Coca-Cola banner, which is hanging on a fence. The field has a grassy surface and the players are facing each other.", - "id": 12246 - }, - { - "image_path": "/content/drive/MyDrive/combined/33cd55379e10d27c.jpg", - "response": "A girl wearing a green jersey with white stripes is standing on a soccer field.", - "id": 12247 - }, - { - "image_path": "/content/drive/MyDrive/combined/311bde8f1d1065c1.jpg", - "response": "A man dressed as Santa Claus sitting next to a woman and a young boy.", - "id": 12248 - }, - { - "image_path": "/content/drive/MyDrive/combined/db4235836afcdb12.jpg", - "response": "The image displays two t-shirts hanging on a wooden wall. The t-shirts are the same size and are identical, except for the color of the shirts. One of the shirts is red and the other is blue. The t-shirts have a white print on the chest which says \"#AVSFAM\" in bold white font. The hashtag symbol \"#\" is printed before the text. The shirts are displayed on a wooden background that looks like a wall.", - "id": 12249 - }, - { - "image_path": "/content/drive/MyDrive/combined/50fc5945ad991ffa.jpg", - "response": "A man in blue shorts is lifting another man in a grey shirt over his head.", - "id": 12250 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e1f79c614e6dbf7.jpg", - "response": "A girl sitting on the floor in front of a book display.", - "id": 12251 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c2d16c8f205788.jpg", - "response": "A wooden sign for the 4th annual Sombreros Family Reunion.", - "id": 12252 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e144b15c6e881d.jpg", - "response": "A black and white photo of a watch on a wooden table. The watch has a silver face with roman numerals and a leather strap. The hands are blue and the watch is on a dark table.", - "id": 12253 - }, - { - "image_path": "/content/drive/MyDrive/combined/086bbbeddf9a37af.jpg", - "response": "A silver rolex watch with a black face and yellow numbers.", - "id": 12254 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e0b23621899e4fd.jpg", - "response": "The image shows a piece of white paper on a table, with the corner folded back to reveal a patterned paper underneath. The patterned paper has been cut into shapes, including a circle and a square. There is a tube of glue, specifically a 3M brand, next to the paper on the table.", - "id": 12255 - }, - { - "image_path": "/content/drive/MyDrive/combined/081e736f68b9cefb.jpg", - "response": "A black and silver seiko watch on a black background.", - "id": 12256 - }, - { - "image_path": "/content/drive/MyDrive/combined/471cfe7315bfa3f5.jpg", - "response": "A man sitting at a desk with a laptop computer.", - "id": 12257 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd2df8f20370a71.jpg", - "response": "A wooden table with a laptop on it.", - "id": 12258 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f021e5260524eb5.jpg", - "response": "A large clock tower with a gold and red clock.", - "id": 12259 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec5b7e04ebadb46.jpg", - "response": "A watch with a brown leather band is sitting on a black case. Next to the watch is a book with a green cover and white lettering. The watch and case are on a wooden table.", - "id": 12260 - }, - { - "image_path": "/content/drive/MyDrive/combined/511fbb06f065b6e1.jpg", - "response": "An advertisement for a new kind of alarm clock from General Electric. The clock is blue and white and has a picture of a woman on it. The alarm is described as \"lets you snooze, then wakes you again!\" There is a picture of the clock with the alarm on and another picture of it without the alarm. The advertisement also features a picture of a wall clock and a pocket watch. The advertisement is in a magazine.", - "id": 12261 - }, - { - "image_path": "/content/drive/MyDrive/combined/3405f7c5bb987820.jpg", - "response": "A Louis Vuitton store front with a picture of a watch on the front.", - "id": 12262 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ef0aeb22015977e.jpg", - "response": "A computer monitor with a black base and a black frame around the screen. The screen displays a wavy blue and white image of the ocean.", - "id": 12263 - }, - { - "image_path": "/content/drive/MyDrive/combined/0811ac84203ef56d.jpg", - "response": "A large billboard sign advertising a jukebox and New York pizza.", - "id": 12264 - }, - { - "image_path": "/content/drive/MyDrive/combined/555c88b62a9fe3b4.jpg", - "response": "A desk with three computer monitors and a laptop.", - "id": 12265 - }, - { - "image_path": "/content/drive/MyDrive/combined/19bd4c148476791c.jpg", - "response": "A young boy in a baseball uniform and a baseball glove stands bent over in the outfield.", - "id": 12266 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6eb2e5cff08c2b.jpg", - "response": "A billboard featuring a blonde woman in a red bikini.", - "id": 12267 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d21ebdcd1fbac81.jpg", - "response": "A large cathedral building with a rose window and a tall tower. The building is made of stone and has many windows. The street in front of the building is busy with cars and people. There is a man crossing the street and a traffic light.", - "id": 12268 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d2d8de11775887c.jpg", - "response": "A yellow sign warning of kangaroos is posted on a roadside. The sign is in the foreground and a street sign is in the background. The street sign is diamond shaped and yellow. The road is empty and the sky is blue with white clouds.", - "id": 12269 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e2baf8c788fa97.jpg", - "response": "A car with a New York license plate that says CVD 2273.", - "id": 12270 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e0ba77b078ec783.jpg", - "response": "A car with a New Jersey license plate that says \"CYNICAL\" on it.", - "id": 12271 - }, - { - "image_path": "/content/drive/MyDrive/combined/112cfdfdeeea5d2f.jpg", - "response": "a silver and black slow cooker on a granite counter top", - "id": 12272 - }, - { - "image_path": "/content/drive/MyDrive/combined/33b4e36d19904b1e.jpg", - "response": "A bottle of Mahou Negra beer next to a glass filled with beer. The bottle is next to a bookshelf with several books.", - "id": 12273 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e463b2c00749815.jpg", - "response": "The image shows the home screen of an iPhone. There are five icons visible, which are \"Phone\", \"Mail\", \"Safari\", \"iPod\", and \"Life Rank\". The \"Life Rank\" icon is in the center of the screen and appears to be a white rank symbol on a black background. The other icons are arranged in a row along the bottom of the screen. The \"Phone\" icon is on the left, the \"Mail\" icon is second from the left, the \"Safari\" icon is third from the left, and the \"iPod\" icon is on the right. The \"iPod\" icon is orange and has a white arrow pointing to the right. The home screen appears to be on voda...", - "id": 12274 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ae93ee6d4430a78.jpg", - "response": "A calculator in a black case with the number 532 on it.", - "id": 12275 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3e2ebe36e99575.jpg", - "response": "An ASUS ZenWatch with stainless steel back and leather strap.", - "id": 12276 - }, - { - "image_path": "/content/drive/MyDrive/combined/197883c52b612742.jpg", - "response": "A store display for Comfort Accessory Central with a red sign above it. There are shelves below the sign with various items on display.", - "id": 12277 - }, - { - "image_path": "/content/drive/MyDrive/combined/53d4c2f1425b9f1a.jpg", - "response": "A row of books on a shelf.", - "id": 12278 - }, - { - "image_path": "/content/drive/MyDrive/combined/38f05614e4a09be2.jpg", - "response": "A yellow can of Fremont Interurban IPA sitting on a tan speckled counter.", - "id": 12279 - }, - { - "image_path": "/content/drive/MyDrive/combined/20423a59d3948063.jpg", - "response": "A car with a San Francisco license plate that says EXCLUSIVELY on it.", - "id": 12280 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f680dc4ed7729d.jpg", - "response": "A white sign with a red circle around the number 20 that says Zone on it.", - "id": 12281 - }, - { - "image_path": "/content/drive/MyDrive/combined/15f5180d2fb2ccf6.jpg", - "response": "A silver car with the license plate ME-GS 226.", - "id": 12282 - }, - { - "image_path": "/content/drive/MyDrive/combined/4567c59b89a9aa98.jpg", - "response": "In the image there is a close up of a bronze Alcoholics Anonymous coin on a black background. The coin is sitting in front of a stack of other coins that are different colors and have the AA logo on them.", - "id": 12283 - }, - { - "image_path": "/content/drive/MyDrive/combined/4417b915b0023888.jpg", - "response": "a sign that says no parking any time", - "id": 12284 - }, - { - "image_path": "/content/drive/MyDrive/combined/2291ee87165169ac.jpg", - "response": "A busy city street at night with cars, taxis, and pedestrians. There is a large blue billboard for Pepsi on the side of a building. The street is filled with traffic and people are crossing the street at a crosswalk.", - "id": 12285 - }, - { - "image_path": "/content/drive/MyDrive/combined/442c3830b2903922.jpg", - "response": "A city street covered in a thick layer of snow.", - "id": 12286 - }, - { - "image_path": "/content/drive/MyDrive/combined/44623babf43ec71d.jpg", - "response": "A bookshelf made of wood.", - "id": 12287 - }, - { - "image_path": "/content/drive/MyDrive/combined/31755d171a4cd3f4.jpg", - "response": "A freeway sign that says 9000 So.", - "id": 12288 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ca728725f7d564f.jpg", - "response": "A can of diet coke sits on a wooden block.", - "id": 12289 - }, - { - "image_path": "/content/drive/MyDrive/combined/10f50e9e1e2bacd3.jpg", - "response": "A cell phone screen with a picture of a girl and the word Teisha McCall on the top.", - "id": 12290 - }, - { - "image_path": "/content/drive/MyDrive/combined/2791ce6fe9fdd2c1.jpg", - "response": "The image shows two Spiderman branded cans, one blue and one black, sitting on a red cloth. The blue can is on the left and is partially unopened, while the black can is on the right and is fully unopened. Both cans have Spiderman on them and are next to each other.", - "id": 12291 - }, - { - "image_path": "/content/drive/MyDrive/combined/179ef0aa44b44243.jpg", - "response": "A woman and a baby are in a room.", - "id": 12292 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f76357591b4c193.jpg", - "response": "A counter with two cans of Chilli Man Chili next to each other.", - "id": 12293 - }, - { - "image_path": "/content/drive/MyDrive/combined/2112f4f6050c6219.jpg", - "response": "On a grey granite countertop, there are two cans of coffee. The first can is black and white and is labeled Coffee Black. The second can is also black and white but is labeled UCC. The coffee on the right has a brown label with coffee beans on it and is Blended Coffee.", - "id": 12294 - }, - { - "image_path": "/content/drive/MyDrive/combined/26e185c5d507c7cf.jpg", - "response": "a car with a license plate on the back of it", - "id": 12295 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d3afc6e9e6acfeb.jpg", - "response": "The image shows a white box with a picture of a person's face on it. The box is for Shu Uemura's Velvet Perfect Lasting Powder Foundation. The foundation appears to be in a compact form, with two powder compartments visible in the image. The box is open, revealing the two powder compartments inside. The foundation appears to be light in color and is intended for lasting powder.", - "id": 12296 - }, - { - "image_path": "/content/drive/MyDrive/combined/1774cb0a5e1c3148.jpg", - "response": "A traffic light with a blue background.", - "id": 12297 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b82786c49ca41e9.jpg", - "response": "The image shows a pair of orange JVC ear buds. The buds are designed for sports and are called HAEBX3. They are attached to a small orange cord that also has a small orange and white JVC logo on it. The cord is thin and flexible.", - "id": 12298 - }, - { - "image_path": "/content/drive/MyDrive/combined/139b3e2764326140.jpg", - "response": "A stop sign in the foreground.", - "id": 12299 - }, - { - "image_path": "/content/drive/MyDrive/combined/43812c0b910fa5d4.jpg", - "response": "a stop sign that is in front of a building", - "id": 12300 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe2cd44915da4d0.jpg", - "response": "A white board with notes posted on it.", - "id": 12301 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc20dbffaaf97a6.jpg", - "response": "A bottle of Targa Riserva 1840 on a wooden shelf.", - "id": 12302 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a09c56a914cfb7c.jpg", - "response": "A yellow sign(192,35),(759,943) with a large arrow pointing to the right.", - "id": 12303 - }, - { - "image_path": "/content/drive/MyDrive/combined/15f40b53304867ca.jpg", - "response": "An orange train engine with the number 416435 on the side.", - "id": 12304 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b8fdd4300b6b4ea.jpg", - "response": "A sign that says A25 on it.", - "id": 12305 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ae4b0cc873e2373.jpg", - "response": "A parking meter with a two hour sticker on it.", - "id": 12306 - }, - { - "image_path": "/content/drive/MyDrive/combined/187de71799a4f833.jpg", - "response": "a pole with two street signs attached to it", - "id": 12307 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f80bad7e3a0ea2a.jpg", - "response": "A lit up scoreboard at a baseball stadium.", - "id": 12308 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c59f697a9e3b219.jpg", - "response": "The image shows a baseball field with three players dressed in white uniforms. One player is positioned in the outfield, while the other two are on the infield. One of the players on the infield is holding a baseball glove. The stadium is named Alex Box Stadium and is located in Louisiana. There are several advertisements on the walls surrounding the field.", - "id": 12309 - }, - { - "image_path": "/content/drive/MyDrive/combined/14648cd7ea447557.jpg", - "response": "A white board with a bunch of writing on it.", - "id": 12310 - }, - { - "image_path": "/content/drive/MyDrive/combined/26AJCLLVBKTB_jpg.rf.c85703ce4042fb493d54571d50cf4fc1.jpg", - "response": "A man is driving a Yale forklift in a warehouse.", - "id": 12311 - }, - { - "image_path": "/content/drive/MyDrive/combined/1Z2J2ECZ7K49_jpg.rf.a4dff1c1b09348705adbe1be3701df95.jpg", - "response": "A forklift that is orange and black.", - "id": 12312 - }, - { - "image_path": "/content/drive/MyDrive/combined/0J1QKF0HYLEZ_jpg.rf.5c2c985736ac03dc4e59b0d538f6bf9e.jpg", - "response": "A man standing next to a tractor with a skid loader.", - "id": 12313 - }, - { - "image_path": "/content/drive/MyDrive/combined/3LNE4KW8JIA4_jpg.rf.5d961ef897053d7367804754c1632e6d.jpg", - "response": "A man is operating a forklift in a warehouse. The forklift is a bright red color and is carrying a large piece of equipment. The man is wearing a tan shirt and has a beard. There is a window in the warehouse and a clock on the wall. There are also some pipes in the warehouse.", - "id": 12314 - }, - { - "image_path": "/content/drive/MyDrive/combined/3L0H5SMWSJOU_jpg.rf.520048ec79d105588a7e11170c331d62.jpg", - "response": "A forklift is parked outside of a garage.", - "id": 12315 - }, - { - "image_path": "/content/drive/MyDrive/combined/0G9I5DS07WIS_jpg.rf.fb7fbe4d5c4bd941eceb83d059c8bd41.jpg", - "response": "A man is sitting on a yellow forklift.", - "id": 12316 - }, - { - "image_path": "/content/drive/MyDrive/combined/0DBZCMRDL65L_jpg.rf.9c57302388a9bba4b9d2f62a1f019a9b.jpg", - "response": "A forklift truck is parked on a white background. The forklift is orange and black in color. It has a steering wheel on the left side of the driver's seat. The driver's seat is black and grey. There is a lift attached to the front of the truck. The lift has a metal bar on the end. The forklift has two black and grey wheels on the left side and two longer black and grey wheels on the right side.", - "id": 12317 - }, - { - "image_path": "/content/drive/MyDrive/combined/0Q86CMPW8GGE_jpg.rf.eea455f6ec3b9b68225109260d55def3.jpg", - "response": "A woman is sitting on a forklift in a yard.", - "id": 12318 - }, - { - "image_path": "/content/drive/MyDrive/combined/0PVKVE0CITYQ_jpg.rf.46d09a2b34097dbb45d23d2256227d36.jpg", - "response": "A forklift parked in a lot with a sky in the background.", - "id": 12319 - }, - { - "image_path": "/content/drive/MyDrive/combined/0PJKAIHB0TLE_jpg.rf.b4ecf8ec8bab8b40a3bb3a6d1d40eb40.jpg", - "response": "A woman sitting on a yellow forklift in a warehouse.", - "id": 12320 - }, - { - "image_path": "/content/drive/MyDrive/combined/09B3JULPBRKM_jpg.rf.1d74629b1e4845cbd6af3e0f262d6f10.jpg", - "response": "A forklift that is a teal color is parked in a garage.", - "id": 12321 - }, - { - "image_path": "/content/drive/MyDrive/combined/08R9ND0N8GXW_jpg.rf.f5f0ad5e96a31ad173f28c0ae9fdc70f.jpg", - "response": "A man is driving a forklift with a pallet of bags on it.", - "id": 12322 - }, - { - "image_path": "/content/drive/MyDrive/combined/2P8CF1G4CVSU_jpg.rf.43e0190e91b0ee62f57f94bb101e667c.jpg", - "response": "A forklift is parked in a garage with a truck in the background.", - "id": 12323 - }, - { - "image_path": "/content/drive/MyDrive/combined/2CFQA6UIS0S6_jpg.rf.e0ec0faf8a8b8547f4f494151bbad97a.jpg", - "response": "A black and white photo of a forklift in a warehouse.", - "id": 12324 - }, - { - "image_path": "/content/drive/MyDrive/combined/1IY60E8WI66F_jpg.rf.fd6fef4f20fbb4c0341a3d9a0f25656f.jpg", - "response": "A man in an orange vest stands in a large warehouse.", - "id": 12325 - }, - { - "image_path": "/content/drive/MyDrive/combined/538PJ11WP67J_jpg.rf.a03b04d16d568d0741e05dcd0fdd0fe1.jpg", - "response": "A forklift in a warehouse filled with pallets of boxes.", - "id": 12326 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ZEX9SO1O79P_jpg.rf.03a533efda7674215b8df1f67c5a042b.jpg", - "response": "A yellow tractor is parked in front of a pink brick building. The tractor has a small front loader and a backhoe. There is a pile of wood next to the tractor.", - "id": 12327 - }, - { - "image_path": "/content/drive/MyDrive/combined/3QGVJAU50BJJ_jpg.rf.592e6d0ac6a0e63e9166d2c9684b3548.jpg", - "response": "A forklift in a warehouse with a pallet in the forks.", - "id": 12328 - }, - { - "image_path": "/content/drive/MyDrive/combined/3JZYZSJC4MC7_jpg.rf.776d95baba6554839e9149e282f72083.jpg", - "response": "A forklift truck with a orange color and black color.", - "id": 12329 - }, - { - "image_path": "/content/drive/MyDrive/combined/1KILJRO4UDBB_jpg.rf.e03a4565f76fb44126c325fa57668086.jpg", - "response": "A forklift in a warehouse filled with boxes.", - "id": 12330 - }, - { - "image_path": "/content/drive/MyDrive/combined/159NHJ4X1O6C_jpg.rf.a60eaafd2e2c7832f738d143f9da7d10.jpg", - "response": "A toyota forklift parked in front of a building.", - "id": 12331 - }, - { - "image_path": "/content/drive/MyDrive/combined/4YADSLP6QWWA_jpg.rf.b665278d33155c5a7e5d8c561070d849.jpg", - "response": "A yellow and black Yale forklift parked in a warehouse.", - "id": 12332 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ZD5D5B6YEND_jpg.rf.6aa9bc4b1c419d9d9e50c4e8c98c561f.jpg", - "response": "A forklift is parked in a barn and the tire is smoking.", - "id": 12333 - }, - { - "image_path": "/content/drive/MyDrive/combined/43ECQ1JZ5A17_jpg.rf.d302532eb390247e7fab6588fb318895.jpg", - "response": "A man is sitting in a forklift with a basket on the back.", - "id": 12334 - }, - { - "image_path": "/content/drive/MyDrive/combined/2JXIC0X5D240_jpg.rf.c27a373839f8fc13af792507f0fba362.jpg", - "response": "A man in blue coat standing next to a forklift.", - "id": 12335 - }, - { - "image_path": "/content/drive/MyDrive/combined/39CTE9EAHXHY_jpg.rf.7d43d1faad60ebe2d05e0fb4ff0c19ac.jpg", - "response": "A man is driving a fork lift with a pallet of boxes on it in the street. The fork lift is orange and says \"\u5b89\u5168\u7b2c\u4e00\" on the side. The man is wearing a white shirt and grey pants. The pallet is wrapped in silver paper.", - "id": 12336 - }, - { - "image_path": "/content/drive/MyDrive/combined/1V6ZQK9T48OP_jpg.rf.0dea7be022fb659cff8a1c5a0f47fd39.jpg", - "response": "A woman sitting on a forklift in a building.", - "id": 12337 - }, - { - "image_path": "/content/drive/MyDrive/combined/0VE1OCAVLKMX_jpg.rf.498377213a6f50a487f8e0c3ad55ec76.jpg", - "response": "A yellow forklift parked in a parking lot.", - "id": 12338 - }, - { - "image_path": "/content/drive/MyDrive/combined/0R4V5100QSN6_jpg.rf.549c42da5e1a4b26d1bdb9fe873ecebb.jpg", - "response": "A forklift parked in front of a garage door.", - "id": 12339 - }, - { - "image_path": "/content/drive/MyDrive/combined/1DUOU2W1RCVI_jpg.rf.2a76a9107d17cb6867a031b031ff4864.jpg", - "response": "A man is driving a forklift in a warehouse filled with pallets.", - "id": 12340 - }, - { - "image_path": "/content/drive/MyDrive/combined/1JR7XIDE4BF5_jpg.rf.1a6e87adffac461a56c85f6ff7941b20.jpg", - "response": "A dark street with a building on the left and a silhouette of a crane on the right. There is a fire hydrant in the middle of the street. The sky is dark and there are street lights on.", - "id": 12341 - }, - { - "image_path": "/content/drive/MyDrive/combined/1KXGJDQVOGTU_jpg.rf.6b580e0aec4d6686ccb8b4b223a800ee.jpg", - "response": "A man driving a forklift in a building.", - "id": 12342 - }, - { - "image_path": "/content/drive/MyDrive/combined/1JHQ0M6SUPZN_jpg.rf.1f9501b1a7d4848036668a95c30ed542.jpg", - "response": "A yellow forklift parked in front of a brick building.", - "id": 12343 - }, - { - "image_path": "/content/drive/MyDrive/combined/3PDJJJC5A6WD_jpg.rf.13005ed1c10b839b92227c7e2175c231.jpg", - "response": "A yellow forklift parked in a lot.", - "id": 12344 - }, - { - "image_path": "/content/drive/MyDrive/combined/319D3HVXW50D_jpg.rf.104ce42bcd12b38741d734648fdf9cfb.jpg", - "response": "A forklift is lifting a large red shipping container into the back of a truck.", - "id": 12345 - }, - { - "image_path": "/content/drive/MyDrive/combined/3L1GJ68D5QBZ_jpg.rf.d3cfb9feb908ee7e96463f45ae45ecec.jpg", - "response": "A forklift driver in a warehouse with the words \"Really fast plastic delivery\" on the side of the forklift.", - "id": 12346 - }, - { - "image_path": "/content/drive/MyDrive/combined/4PUI1WUNR9BV_jpg.rf.cb8dc4a3aee771440179d8e8034a0023.jpg", - "response": "A man is sitting in a forklift and moving a large block of white material.", - "id": 12347 - }, - { - "image_path": "/content/drive/MyDrive/combined/40RYVAAKAGDC_jpg.rf.a4b3b3005780d912972317042900a651.jpg", - "response": "A toy forklift that is orange in color.", - "id": 12348 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ITU1GQBQO6Y_jpg.rf.db08912a209a981fef082aa275c67ddf.jpg", - "response": "A man in a warehouse driving a forklift.", - "id": 12349 - }, - { - "image_path": "/content/drive/MyDrive/combined/1IME79QHGAPK_jpg.rf.e1a356666a6f6b955713bc58397b75a6.jpg", - "response": "A man driving a forklift with a pink tank on the back of it.", - "id": 12350 - }, - { - "image_path": "/content/drive/MyDrive/combined/49GDHT7BA1NR_jpg.rf.20271a66f1d3852bba7a95275f2bbb26.jpg", - "response": "A forklift is parked in a lot next to a white car.", - "id": 12351 - }, - { - "image_path": "/content/drive/MyDrive/combined/23240f6e80e20a73.jpg", - "response": "A white board with writing all over it.", - "id": 12352 - }, - { - "image_path": "/content/drive/MyDrive/combined/3382af829c33e873.jpg", - "response": "A man writing on a large board that says The First 100.", - "id": 12353 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c66a30c10f8d9aa.jpg", - "response": "A white board with a lot of writing on it.", - "id": 12354 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f08af5c772f6f23.jpg", - "response": "A whiteboard with various drawings on it.", - "id": 12355 - }, - { - "image_path": "/content/drive/MyDrive/combined/25790662e38fa150.jpg", - "response": "A dry erase board with a funny picture of a sun and a smiley face drawn on it.", - "id": 12356 - }, - { - "image_path": "/content/drive/MyDrive/combined/46035bcb5713c09e.jpg", - "response": "A white board with writing on it.", - "id": 12357 - }, - { - "image_path": "/content/drive/MyDrive/combined/31020aab9724657b.jpg", - "response": "A white board with writing on it.", - "id": 12358 - }, - { - "image_path": "/content/drive/MyDrive/combined/512958907589dd71.jpg", - "response": "A whiteboard with a lot of writing on it.", - "id": 12359 - }, - { - "image_path": "/content/drive/MyDrive/combined/503dd343b49b4739.jpg", - "response": "A white board with a lot of writing on it.", - "id": 12360 - }, - { - "image_path": "/content/drive/MyDrive/combined/21844e16c5daf301.jpg", - "response": "A man standing in front of a white board.", - "id": 12361 - }, - { - "image_path": "/content/drive/MyDrive/combined/26be49d0bca8f2b4.jpg", - "response": "A white board with blue ink that says Clueless, Disorganized Thinking, Not understanding writing process.", - "id": 12362 - }, - { - "image_path": "/content/drive/MyDrive/combined/364110aa59272235.jpg", - "response": "A whiteboard with blue and red writing on it.", - "id": 12363 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d41d733a2986c5d.jpg", - "response": "A can of Sars beer is sitting in a freezer.", - "id": 12364 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebd545d5ef5c8ef.jpg", - "response": "A coffee cup sitting on a wooden table.", - "id": 12365 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cb26c731bb94d34.jpg", - "response": "A bottle of red wine from 1999 by the name of Primitiu de Bellmunt.", - "id": 12366 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f821b78cf36856a.jpg", - "response": "A bottle of beer on a dark surface.", - "id": 12367 - }, - { - "image_path": "/content/drive/MyDrive/combined/0baaab43b4d4cfcc.jpg", - "response": "A menu for Roberto's restaurant is displayed on a table. The table is made of wood and the menu is placed on top of it. The restaurant offers a variety of pizzas, calzones, and other dishes.", - "id": 12368 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c4252962962e41.jpg", - "response": "A bottle of Beringer Napa Valley Merlot 2004 sits on a counter.", - "id": 12369 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba12ae634743496.jpg", - "response": "A table with a paper on it with a circle drawn on it. There are multiple wine bottles on the table, some of which are empty, and some of which are full. The wine bottles are lined up next to each other and are of various sizes.", - "id": 12370 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf5a514e0c312bb.jpg", - "response": "A bottle of wine with a yellow label sits on a wooden surface.", - "id": 12371 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3db9bec09056a6.jpg", - "response": "A bottle of Sancerre Jadis 2001 sits on a table. The label on the bottle is white and red. The bottle is green.", - "id": 12372 - }, - { - "image_path": "/content/drive/MyDrive/combined/07be2d23304a251c.jpg", - "response": "A bottle of wine with a red label that says CNI Gran Reserva 1936 laying on a white pillow.", - "id": 12373 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b466fd7fb1e8724.jpg", - "response": "A bottle of wine is on a table with a label that says plaisir75cl.", - "id": 12374 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d04edf6dbd65298.jpg", - "response": "A row of three smoothies are on a counter. The first one is a purple smoothie with the word D'lectible on the bottom. The second one is a white smoothie with a pinkish color on top. The third one is a clear glass with a purple smoothie in it.", - "id": 12375 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a38941cedcf3e16.jpg", - "response": "A bottle of The Aroma Grand Kirin next to a filled glass of the beer.", - "id": 12376 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a348155fb73cf1c.jpg", - "response": "A bottle of Oude Geuze next to a glass filled with the beer.", - "id": 12377 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a78728f5856899.jpg", - "response": "A vintage poster of three different types of wine from the 1970s.", - "id": 12378 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e645e44ae3f2512.jpg", - "response": "A close up of several wine bottles with red and black labels.", - "id": 12379 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b959e64829ab145.jpg", - "response": "A bottle of Stoudts Fat Dog beer sitting on a bar.", - "id": 12380 - }, - { - "image_path": "/content/drive/MyDrive/combined/083ea2d88ee71e24.jpg", - "response": "A bottle of red wine named after the Capitel Fontana in Recina. The label is white with a gold and white sticker around the middle of the bottle. The wine is made by Tedeschi.", - "id": 12381 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee3d5eacf0eb543.jpg", - "response": "The image shows two green glass 7up bottles. The bottles are made of glass and have a green color. They are sitting on a wooden shelf. The 7up logo is printed on the bottle in white. The bottles are filled with soda.", - "id": 12382 - }, - { - "image_path": "/content/drive/MyDrive/combined/09196dd39f6becb1.jpg", - "response": "A bottle of Chablis Grand Cru Les Clos from 2010 by Pascal Bouchard. The label is white with a black oval in the middle with the name of the winery and the name of the wine. The year 2010 is printed in black on the label. The bottle is dark and has a gold cap. The label has a gold logo of a house with a shield on top of it. The bottle is sitting on a wooden shelf.", - "id": 12383 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fac135dd7048776.jpg", - "response": "A vintage advertisement for Whiteway's British wines.", - "id": 12384 - }, - { - "image_path": "/content/drive/MyDrive/combined/0785cd0a3c48ab74.jpg", - "response": "A bottle of honey wine next to a bowl of shrimp cocktail on a table.", - "id": 12385 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b4949ae43dea95.jpg", - "response": "A bottle of wine with a gold circle on the label and the year 2004 on it.", - "id": 12386 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aabcf5f5332b8a7.jpg", - "response": "A close up of a green bottle of wine next to a white bottle of wine.", - "id": 12387 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf934c8bb837c39.jpg", - "response": "Four wine bottles of various sizes and types are lined up on a wooden table.", - "id": 12388 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1c7553a24a5070.jpg", - "response": "A Back River Gin bottle is on a table next to a cocktail shaker. There is also a glass filled with a yellow liquid sitting next to the gin bottle.", - "id": 12389 - }, - { - "image_path": "/content/drive/MyDrive/combined/10190642ec85c361.jpg", - "response": "A close up of several wine bottles with white labels on a table.", - "id": 12390 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3099ecaace5221.jpg", - "response": "A bottle of wine with a white label sits on a wooden table.", - "id": 12391 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c61e8d6f3351e12.jpg", - "response": "A bottle of Comtes de champagne on a wooden shelf.", - "id": 12392 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0368139e9a647f.jpg", - "response": "A bottle of James Squire Amber Ale sits on a desk in front of a computer. The bottle is brown and has a red and white label. The label features a picture of a person holding a beer mug and the words \"James Squire\" and \"Original Amber Ale\" are written on the label. The bottle has a cork in it and a twist off cap.", - "id": 12393 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a6a0565ed5c352b.jpg", - "response": "The image features a wooden bench with a red rose placed on it. There are two bottles of wine next to the rose, one of which is a bottle of Cabernet Sauvignon from 2001 by Page Mill Winery. A wine glass is also present, positioned next to the bottles. The bench is located outdoors, with a backdrop of greenery.", - "id": 12394 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c71cdad3dcd46c2.jpg", - "response": "A bottle of Bud Light next to a few glasses on a table.", - "id": 12395 - }, - { - "image_path": "/content/drive/MyDrive/combined/09f5671bf32a9a38.jpg", - "response": "In the image there are two bottles of wine, one on the left and one on the right, they are both white wines. The left bottle is from Canonico and the right bottle is from Brindisi. Both bottles are open and have a small amount of wine left in them. The left bottle is a little bit closer to the left side of the image and the right bottle is a little bit closer to the right side of the image. There is a chair visible in the background, it is a light brown chair with a light brown frame and it is sitting on a light brown stool. There is a light brown table in the background, it is a light brown table with a light brown bag on it. The wall behind the table is a light pink color.", - "id": 12396 - }, - { - "image_path": "/content/drive/MyDrive/combined/0db55857ea47f8e6.jpg", - "response": "In the image, there is a male wearing a blue polo shirt and a name tag that says 31337. He is sitting at an outdoor table with a fence in the background. The fence is near a parking lot with several cars, including a black truck. In the distance, there are more cars parked outside. The scene takes place near a mall, as indicated by a sign in the background.", - "id": 12397 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fad822b669ee4f9.jpg", - "response": "A bottle of Ayinger Weisse and a glass of beer next to it. A bottle of wine, a wine glass, and a cup are also present. There are several knives in a wooden block and a spoon in a container. A toaster oven is also visible in the image.", - "id": 12398 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fbd0f422e926816.jpg", - "response": "A table with a bottle and a glass of beer on it.", - "id": 12399 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a74e416d9ab643.jpg", - "response": "A bottle of Cabernet Sauvignon sits on a table next to a potted plant.", - "id": 12400 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cdeebede5b0ae90.jpg", - "response": "A six pack of Perry's Revenge Ale in front of a wooden barrel.", - "id": 12401 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cbf1833b1e926fe.jpg", - "response": "A table with five different types of wine on it.", - "id": 12402 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1cb4681597bb38.jpg", - "response": "The image shows a group of people toasting with glasses of champagne. There is a bottle of champagne on a table, and two glasses filled with champagne being held by people. The people are seated around a table, and there is a TV in the background.", - "id": 12403 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eebe278ee664113.jpg", - "response": "A glass of wine in front of a shelf of wine bottles.", - "id": 12404 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d305249d55c5363.jpg", - "response": "A wooden rack holding six different kinds of wine.", - "id": 12405 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b0755508cfe38fd.jpg", - "response": "A table with a bottle of red wine and a glass of red wine next to it. The bottle has the year 2011 on it. There are some glasses on the table and a bowl in the background.", - "id": 12406 - }, - { - "image_path": "/content/drive/MyDrive/combined/195bf641dc51869c.jpg", - "response": "A bottle of Chateau Beaulon 5 years on a wooden shelf.", - "id": 12407 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e37ca985cf11f7b.jpg", - "response": "A collection of wine bottles of various shapes and sizes.", - "id": 12408 - }, - { - "image_path": "/content/drive/MyDrive/combined/1355b2ab99164ad1.jpg", - "response": "A man standing behind a table with a conveyor belt, filled with green and brown bottles. Some of the bottles are in a holder that says \"Original Ale\" on it. There are also a few bottles on the table without the holder.", - "id": 12409 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d46818a0c8a0158.jpg", - "response": "In the image there is a large selection of wine bottles on display in a store. The bottles are organized on three black shelves. The wine bottles vary in size and shape and are all closed with white labels.", - "id": 12410 - }, - { - "image_path": "/content/drive/MyDrive/combined/177d62245f7345c8.jpg", - "response": "A bottle of Robert Johnson's Hellhound on a tan tile counter.", - "id": 12411 - }, - { - "image_path": "/content/drive/MyDrive/combined/103dd1210f2c8ffa.jpg", - "response": "A bottle of Casarsa Cabernet Sauvignon wine.", - "id": 12412 - }, - { - "image_path": "/content/drive/MyDrive/combined/126297dd79183683.jpg", - "response": "A plate with a piece of cake on a counter.", - "id": 12413 - }, - { - "image_path": "/content/drive/MyDrive/combined/177b7d23a1926e3f.jpg", - "response": "A brown basket filled with mushrooms sitting on the floor.", - "id": 12414 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8f20f49d357924.jpg", - "response": "A table with six different wine bottles and two glasses on it.", - "id": 12415 - }, - { - "image_path": "/content/drive/MyDrive/combined/1886cf6632c9101c.jpg", - "response": "A bottle of beer sitting on a counter next to a wine bottle.", - "id": 12416 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d6e7a419caaa155.jpg", - "response": "A collection of wine bottles, including a bottle of \"Drink Me\" and a bottle of \"1968 Krontini Colheita Porto\". The bottles are arranged on a wooden shelf and some of them have their boxes visible behind them.", - "id": 12417 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a0cb82d540e869.jpg", - "response": "A collage of two pictures of wine bottles, one from Loco and one from Inman Family.", - "id": 12418 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0db4172cf98dfe.jpg", - "response": "A bottle of Pernod Absinthe on a wooden shelf.", - "id": 12419 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ce17d686cfca94.jpg", - "response": "A bottle of wine that is sitting on a table.", - "id": 12420 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e2fc1f6e092b2a.jpg", - "response": "A bottle of white wine with a cartoonish woman on the label.", - "id": 12421 - }, - { - "image_path": "/content/drive/MyDrive/combined/189e3b7f365d4cc6.jpg", - "response": "A group of four wine bottles sitting on a table.", - "id": 12422 - }, - { - "image_path": "/content/drive/MyDrive/combined/152ae650714988a5.jpg", - "response": "A bottle of wine is sitting on a wooden table next to a computer keyboard. The table is cluttered with various items, including three coffee mugs, a cell phone, a book, and a remote. In the background, there is a TV mounted on the wall.", - "id": 12423 - }, - { - "image_path": "/content/drive/MyDrive/combined/16aa4b48b1d76a34.jpg", - "response": "A bottle of red wine by Simonsrood is sitting on a ledge. The wine bottle is closed and has a yellow label with an image of a man on it. The image is taken in a park with a tree in the background.", - "id": 12424 - }, - { - "image_path": "/content/drive/MyDrive/combined/12ddb7e03d26339a.jpg", - "response": "The image features a dining table with two bottles of wine sitting on top of it. The left bottle is purple and labeled Murphy-Goode Merlot, while the right bottle is yellow and labeled Murphy-Goode Sauvignon Blanc. The wine bottles are accompanied by a decorative white vase and a bowl. The table is set with a chair on either side of the table and a third chair is visible to the left of the table. The wall behind the table is white and there is a framed picture on the wall above the table.", - "id": 12425 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f9287176e10040.jpg", - "response": "A bottle of Chateau La Lagune Haut-Medoc 2001 sits on a wooden table next to a glass of red wine. The bottle is almost empty, with only a small amount of wine remaining. The glass is half full. The bottle has a silver top. The wine is red, and the label is white. The bottle is almost flat on the table.", - "id": 12426 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e5f140920f0826.jpg", - "response": "Coca Cola Life bottles on a store shelf in green packaging.", - "id": 12427 - }, - { - "image_path": "/content/drive/MyDrive/combined/115f5eacf8eccb81.jpg", - "response": "a man(266,455),(772,845) sitting at a table(2,798),(873,999) with a coke bottle(261,563),(383,861) and a water bottle(443,576),(581,853)", - "id": 12428 - }, - { - "image_path": "/content/drive/MyDrive/combined/177482ed108062de.jpg", - "response": "A bar with a blue light behind several wine bottles.", - "id": 12429 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c61d149b0916c55.jpg", - "response": "A bottle of Chateau Pontet-Canet 1997 sits on a counter. The bottle is dark and has a red label with a white border. The border features a sketch of a chateau with a pond in front of it. The name of the winery is printed in the center of the label in blue font. The label also has a white section with the name of the winery and the wine in blue and black font. The bottle is closed with a red cap.", - "id": 12430 - }, - { - "image_path": "/content/drive/MyDrive/combined/1be5ea5496437c28.jpg", - "response": "A table with two bottles of alcohol on it.", - "id": 12431 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c4b37dc276ea673.jpg", - "response": "A cucumber is placed on the rim of a glass. The glass is filled with ice and a brown liquid. Next to the glass is a bottle of Pimm's No. 1.", - "id": 12432 - }, - { - "image_path": "/content/drive/MyDrive/combined/1290902b24844ed6.jpg", - "response": "A bottle of wine and a glass of wine are on a table. The bottle is almost empty and has a price tag of 45.80. The glass of wine is half full. There are also plates of food on the table.", - "id": 12433 - }, - { - "image_path": "/content/drive/MyDrive/combined/152bd25b79642ed0.jpg", - "response": "A bottle of Colpetrosso wine is held up for the camera. The label is red with gold and blue writing. The name of the winery is MANDORLAIA. The wine is from 2005.", - "id": 12434 - }, - { - "image_path": "/content/drive/MyDrive/combined/164c4811c2195fec.jpg", - "response": "A bottle of Notch Session Pils beer sits on a wooden table. The bottle is dark green with a tan label. The label has a white border with green text. The text includes the brand name \"NOTCH\" and the type of beer \"American Session Beer\". The ingredients include \"High Malt Flavor\", \"Low Sugar\", and \"Long Drink\". The beer is brewed in Ipswich, Massachusetts.", - "id": 12435 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e482e93e9cd0f4d.jpg", - "response": "A purple neon sign that says \"Open Cocktails\" is on the wall. There are many different kinds of alcohol behind the glass, including vodka, tequila, and Bacardi. There is also a bottle of Gatorade behind the glass.", - "id": 12436 - }, - { - "image_path": "/content/drive/MyDrive/combined/125f6e9e669524ee.jpg", - "response": "A bottle of wine on a table next to a corkscrew.", - "id": 12437 - }, - { - "image_path": "/content/drive/MyDrive/combined/12893765d29cdbfb.jpg", - "response": "A bottle of red wine with a red, white and gold label on it.", - "id": 12438 - }, - { - "image_path": "/content/drive/MyDrive/combined/1663a52cd703a58a.jpg", - "response": "A glass of beer is next to a bottle of organic strawberry beer.", - "id": 12439 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ea697926708698.jpg", - "response": "A bottle of Lagunitas and a bottle of Unabashedly amber beer are sitting on a counter.", - "id": 12440 - }, - { - "image_path": "/content/drive/MyDrive/combined/11bdcd4160b8bf9e.jpg", - "response": "A bottle of Chateau DOMAINE de CHANDON 2011 laying on its side in a red box.", - "id": 12441 - }, - { - "image_path": "/content/drive/MyDrive/combined/133887470a29c9c4.jpg", - "response": "A bottle of Chimay next to a glass filled with Chimay.", - "id": 12442 - }, - { - "image_path": "/content/drive/MyDrive/combined/19d0f9eec0c23c70.jpg", - "response": "A bottle of Ode to Citra Pale Ale from Powell Street Brewing Company. The bottle is dark glass with a gold label. The label features a gold script font and the name of the beer, \"Ode to Citra\". The label also has a gold decorative element in the upper right hand corner. The bottle is sitting on a wooden table.", - "id": 12443 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d70ff80179b5aa.jpg", - "response": "A bottle of Franciscan Estate Cabernet Sauvignon sits next to a glass of red wine on a table. The bottle is green and has gold lettering. The glass is half full and the wine is a dark red. There are other wine glasses on the table and a third of the table is visible. In the background, there are two other tables with white tablecloths and chairs. One table has a napkin on it and a wine glass.", - "id": 12444 - }, - { - "image_path": "/content/drive/MyDrive/combined/177df4b3ed04b320.jpg", - "response": "A bottle of Evil Twin Beavertown Reserve next to a glass of beer. The bottle is sitting on a granite counter top. There is a knife block with several knives behind the bottle. To the right of the counter top is a stove.", - "id": 12445 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bbd8b9c1636f7f.jpg", - "response": "A bottle of A Margaine champagne next to a bottle of A Margaine champagne.", - "id": 12446 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cabeb25115ceae1.jpg", - "response": "A man holding a bottle of Antonin Marsovin wine and a glass of red wine.", - "id": 12447 - }, - { - "image_path": "/content/drive/MyDrive/combined/1315b2c271531239.jpg", - "response": "A bottle of wine by Sumac Ridge Winery, with a label that says \"Black Sage Vineyard\" and \"2001 Heritage\".", - "id": 12448 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d28c1003ff623ef.jpg", - "response": "A shelf full of wine bottles and glasses.", - "id": 12449 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a4dba33b9fafb64.jpg", - "response": "A kitchen counter with three wine bottles on it.", - "id": 12450 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d8a270fbeb23762.jpg", - "response": "A bottle of Porto Niepoort The Senior Tawny on a wooden shelf. The bottle is dark in color and has a white label with a moustache on it. The label has the name Niepoort on it and the words Porto. The bottle has a dark green label with white text on it. The text on the label is quite small and hard to read.", - "id": 12451 - }, - { - "image_path": "/content/drive/MyDrive/combined/1020dee8af807c0d.jpg", - "response": "a man wearing a black and blue jersey is holding a bottle of Baja Rosa.", - "id": 12452 - }, - { - "image_path": "/content/drive/MyDrive/combined/14815716c92009db.jpg", - "response": "A bottle of red wine called Rubino Del Casale Vino Da Tavola Rosso.", - "id": 12453 - }, - { - "image_path": "/content/drive/MyDrive/combined/1de718c3241adb57.jpg", - "response": "A bottle of Condrieu Les Ravines 2007 sits on a wooden surface. The label on the bottle is white with a drawing of a person on a bicycle. The bottle is closed with a gold foil top.", - "id": 12454 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e8193b1faa4a99.jpg", - "response": "A bottle of very very old fitzgerald 12 years old bond bourbon sitting on a table.", - "id": 12455 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5269ae9d05de2c.jpg", - "response": "A close up of three wine bottles on a table.", - "id": 12456 - }, - { - "image_path": "/content/drive/MyDrive/combined/13422e9142ac71bb.jpg", - "response": "A bottle of Montes wine is lit up by a blue light. The label on the bottle features an angel and the word \"Montes\". The background is blurred and there is a wine glass to the right of the bottle.", - "id": 12457 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e747662f666eeb4.jpg", - "response": "A bottle of Tanqueray gin sits next to a glass filled with ice and a slice of lime. A bottle of tonic water and a spoon are also visible in the scene.", - "id": 12458 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ceae94bb63b0eba.jpg", - "response": "A collage of four different wine bottles from Corison.", - "id": 12459 - }, - { - "image_path": "/content/drive/MyDrive/combined/2051d1a64c789108.jpg", - "response": "A bottle of red wine named Urbina 2013 from Rioja.", - "id": 12460 - }, - { - "image_path": "/content/drive/MyDrive/combined/205d1e7d6ed1376b.jpg", - "response": "A man sitting behind a counter with a lot of wine bottles on it.", - "id": 12461 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e95ad3ac674bd2e.jpg", - "response": "A bottle of Farmstead Heideroder 2010 white wine with Claus Preisinger signature on the label.", - "id": 12462 - }, - { - "image_path": "/content/drive/MyDrive/combined/1edee0e4b3cc3b7b.jpg", - "response": "A bottle of La Gitana Manzanilla on a wooden shelf.", - "id": 12463 - }, - { - "image_path": "/content/drive/MyDrive/combined/2041ef788ff75d14.jpg", - "response": "A bar with a variety of beers on it.", - "id": 12464 - }, - { - "image_path": "/content/drive/MyDrive/combined/20048908e4750683.jpg", - "response": "A person holding a bottle of wine in their hand.", - "id": 12465 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ff49ae122a43871.jpg", - "response": "A bottle of Freixenet and a glass of white wine next to a plate of food.", - "id": 12466 - }, - { - "image_path": "/content/drive/MyDrive/combined/2005002d7fa9d7ea.jpg", - "response": "In the image there is a wooden shelf with six bottles of wine on it. The shelf is placed against a wall and a sign above the bottles reads \"Albari\u00f1os R\u00edas Baixas\". The bottles have various white labels with different text on them.", - "id": 12467 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ed1ae7f81874729.jpg", - "response": "A bottle of Fat Cat Chardonnay from 2005 sits on a table.", - "id": 12468 - }, - { - "image_path": "/content/drive/MyDrive/combined/20de8a999becc896.jpg", - "response": "A bottle of wine sits on a wooden table.", - "id": 12469 - }, - { - "image_path": "/content/drive/MyDrive/combined/22083ce111a50115.jpg", - "response": "A glass of wine sitting on a table next to a bottle of Allegri.", - "id": 12470 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f5f5f1758df0d4.jpg", - "response": "A bottle of Bolgheri Rosso 2012 is on display in a store.", - "id": 12471 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b538a43dd933fc1.jpg", - "response": "A bottle of self-righteous beer from Stone Brewing Co.", - "id": 12472 - }, - { - "image_path": "/content/drive/MyDrive/combined/272f91e62925e830.jpg", - "response": "A selection of beers on a shelf beneath a blackboard that lists the prices of the beers.", - "id": 12473 - }, - { - "image_path": "/content/drive/MyDrive/combined/2660673af5aee6a0.jpg", - "response": "A bottle of Talisker single malt scotch whisky.", - "id": 12474 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b2e8a05f58b4c5.jpg", - "response": "A bottle of Asahi Premium Black beer sits on a green place mat on a counter. The bottle is tall and brown. Next to the bottle is an empty glass. The kitchen has white cabinets and a blue counter. There are several knives on the counter and a sink is visible in the background.", - "id": 12475 - }, - { - "image_path": "/content/drive/MyDrive/combined/27062748b38d96e0.jpg", - "response": "A case of Budels Organic Lager beer is on display in a store.", - "id": 12476 - }, - { - "image_path": "/content/drive/MyDrive/combined/2acf8a1031a12e36.jpg", - "response": "A man is reaching into a wine barrel and pulling out a glass of wine. The glass is filled with a yellow liquid. There are several wine barrels stacked on top of each other. One barrel has the writing H16 15 on it.", - "id": 12477 - }, - { - "image_path": "/content/drive/MyDrive/combined/24a80aeee8005ed6.jpg", - "response": "A bottle of Graham's 20 years old tawny port wine next to its box, on a red surface.", - "id": 12478 - }, - { - "image_path": "/content/drive/MyDrive/combined/25aefd5b0651e566.jpg", - "response": "A table with six different wine bottles on it.", - "id": 12479 - }, - { - "image_path": "/content/drive/MyDrive/combined/28faffe44fa978c9.jpg", - "response": "A bottle of Chateau Ferriere sits next to a candle on a table. There are two wine glasses next to the bottle. The candle is lit.", - "id": 12480 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a89a2256448b62e.jpg", - "response": "A bottle of white wine Domaine Changarnier Monthelie 2005 sits on a wooden shelf. The label is white with black text. The text includes the word Monthelie and an image of a leaf. The year 2005 is printed on the label.", - "id": 12481 - }, - { - "image_path": "/content/drive/MyDrive/combined/28a63db9d9d0e9ad.jpg", - "response": "A man standing in front of a banner giving a presentation to a group of people.", - "id": 12482 - }, - { - "image_path": "/content/drive/MyDrive/combined/2852b233ae5ad8ee.jpg", - "response": "A bottle of Viu Manent Gran Reserva Malbec sits on a wooden shelf. The label is white with a red scrollwork logo in the center. The name of the winery is written in red on the top of the label. The bottle is closed with a red metallic cap.", - "id": 12483 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b0c29675cdbb841.jpg", - "response": "A bottle of Cabernet Merlot wine is next to a statue of an Egyptian pharaoh.", - "id": 12484 - }, - { - "image_path": "/content/drive/MyDrive/combined/286d683da3dcfece.jpg", - "response": "A table with a white table cloth is filled with several wine bottles and glasses. The wine bottles are lined up next to each other and come in different sizes. Some of the bottles are open, while others are closed. There are also a few cups placed around the table.", - "id": 12485 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b92ce942467f122.jpg", - "response": "A store shelf with several different types of beer on it.", - "id": 12486 - }, - { - "image_path": "/content/drive/MyDrive/combined/2615677de57033c9.jpg", - "response": "A bucket filled with ice and five bottles of moet and chandon champagne.", - "id": 12487 - }, - { - "image_path": "/content/drive/MyDrive/combined/2856d41bddb5d11a.jpg", - "response": "A jar of gouache paint next to a paint brush. The jar is open and has a label on it. The jar is made by Plakkaatverf Gouache and is Neutral Tint. The paint brush is resting on top of the jar.", - "id": 12488 - }, - { - "image_path": "/content/drive/MyDrive/combined/26248d37dca8bdaa.jpg", - "response": "A bottle of TIPA beer next to a wine glass filled with beer.", - "id": 12489 - }, - { - "image_path": "/content/drive/MyDrive/combined/29764e0e473d381c.jpg", - "response": "A bottle of Wyndham Estate Shiraz is displayed on a wooden shelf. The bottle is dark and has a black label with white writing. The label has a white rectangle in the middle with the words \"Wyndham Estate\" written in black. The name \"Shiraz\" is written in white in a black box below. The bin number is written in white in a black box to the right of the black box. The alcohol content is written in white in a black box to the left of the black box. The year is written in white in a black box below. The bottle has a black cap on top.", - "id": 12490 - }, - { - "image_path": "/content/drive/MyDrive/combined/24785a342ef69b68.jpg", - "response": "A bottle of wine with the year 2004 on it.", - "id": 12491 - }, - { - "image_path": "/content/drive/MyDrive/combined/257b97cd6ae13295.jpg", - "response": "A table with three bottles of champagne on it.", - "id": 12492 - }, - { - "image_path": "/content/drive/MyDrive/combined/28f68e20ba1b13f7.jpg", - "response": "A plate with two slices of pizza on it.", - "id": 12493 - }, - { - "image_path": "/content/drive/MyDrive/combined/256e43e62980fb1c.jpg", - "response": "A bottle of GWA and a glass filled with beer.", - "id": 12494 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c5da7fab8601b9.jpg", - "response": "A group of wine bottles are lined up next to each other on a table. The bottles are green, white, and brown in color. Some of the bottles have red caps, while others have gold, green, or silver caps. The labels on the bottles display various information, such as the brand name, alcohol content, and origin. The table is covered with a green cloth.", - "id": 12495 - }, - { - "image_path": "/content/drive/MyDrive/combined/25f9e48ae9304406.jpg", - "response": "In the image there is a row of dark green glass bottles of various sizes and shapes. They are all filled with a dark liquid and have a small white tag with a string tied around them. The tags have a UP logo on them. The bottles are lined up on a tan counter against a black background.", - "id": 12496 - }, - { - "image_path": "/content/drive/MyDrive/combined/26f42537549528d9.jpg", - "response": "A man sitting at a table with a guitar, playing it.", - "id": 12497 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c32952b17e0cbe.jpg", - "response": "A row of wine bottles on a table in front of a window.", - "id": 12498 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba115364c3b2867.jpg", - "response": "A table with a variety of wine bottles on it.", - "id": 12499 - }, - { - "image_path": "/content/drive/MyDrive/combined/220b5c39256746c8.jpg", - "response": "A bottle of Aquinas pinot noir from 2007.", - "id": 12500 - }, - { - "image_path": "/content/drive/MyDrive/combined/22f40fc1796bdbe9.jpg", - "response": "A person is pouring a drink into a glass.", - "id": 12501 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b7d173b48481f8.jpg", - "response": "A bottle of Puro Cabernet Sauvignon Malbec 2014 is displayed on a wooden shelf. The label is blue and white with the name Puro in large font. The year 2014 is printed on the label. The bottle is dark and tall with a black label.", - "id": 12502 - }, - { - "image_path": "/content/drive/MyDrive/combined/2747ad75c00bf1f4.jpg", - "response": "A table with a green cloth on it, with a variety of different types of alcohol on it. There is a bottle of PX Cask, a bottle of Laphroaig, a bottle of Talisker, a bottle of Glenlivet 18, and a bottle of ICHI. There is also a bottle of Glenfarclas. In front of the alcohol bottles, there is a glass filled with alcohol. On the table, there is a blue tray with a green and white object on it.", - "id": 12503 - }, - { - "image_path": "/content/drive/MyDrive/combined/243b42936d74f702.jpg", - "response": "A bottle of Mikkel Green Gold on a wooden table.", - "id": 12504 - }, - { - "image_path": "/content/drive/MyDrive/combined/257bf084d962c35e.jpg", - "response": "A bottle of Jean Vesselle champagne sits on a table.", - "id": 12505 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e371dc2985e992.jpg", - "response": "A bottle of wine and a can of soda sit next to a tray of food.", - "id": 12506 - }, - { - "image_path": "/content/drive/MyDrive/combined/2355525b2c60eefe.jpg", - "response": "On a wooden table, there is a bottle of alcohol next to a jar. The jar has a white powder inside of it. There is also a box and a glass on the table.", - "id": 12507 - }, - { - "image_path": "/content/drive/MyDrive/combined/29086398d6f2b354.jpg", - "response": "A group of people sitting around a table.", - "id": 12508 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f7f64619b325d9.jpg", - "response": "A bottle of wine with a white label that says domaine changarnier meursault 2006 on the front.", - "id": 12509 - }, - { - "image_path": "/content/drive/MyDrive/combined/21f8b13296ab19f8.jpg", - "response": "A bottle of Riserva Chianti Classico 2009 next to an empty wine glass.", - "id": 12510 - }, - { - "image_path": "/content/drive/MyDrive/combined/25b17c8df7b2400b.jpg", - "response": "A store display of bottles of Infinium.", - "id": 12511 - }, - { - "image_path": "/content/drive/MyDrive/combined/22379fcf5673333a.jpg", - "response": "A green bottle of Jameson's Vintage Reserve Irish whiskey.", - "id": 12512 - }, - { - "image_path": "/content/drive/MyDrive/combined/20f672d41e13aa50.jpg", - "response": "A bottle of Colombara and a bottle of Soave are on a table.", - "id": 12513 - }, - { - "image_path": "/content/drive/MyDrive/combined/23df81c12e4a41aa.jpg", - "response": "A bottle of wine with a gold label that says Poggio Al Moro 2008.", - "id": 12514 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d17f0bc83b39d91.jpg", - "response": "A bottle of Glenlivet single malt scotch sits next to a box of Glenlivet single malt scotch on a table.", - "id": 12515 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ea0813f7f3f2284.jpg", - "response": "A candle that is on a table.", - "id": 12516 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e6878a333e391d9.jpg", - "response": "A bottle of wine on a table with a label on the back of it.", - "id": 12517 - }, - { - "image_path": "/content/drive/MyDrive/combined/384381799b003266.jpg", - "response": "Max Markert is a German brand of wine. There are six bottles of Max Markert wine on display. The wine is stored in a cabinet. The cabinet is made of wood. The bottles are dark glass. The label on each bottle has a white background. The label has a gold logo of a capital M inside a capital M. The label has the year 2009 on it. The bottle on the left has a gold tag in front of it. The price of the wine is 660.", - "id": 12518 - }, - { - "image_path": "/content/drive/MyDrive/combined/318155b997ebc6d7.jpg", - "response": "A bottle of wine with a white label that has a red crest on it.", - "id": 12519 - }, - { - "image_path": "/content/drive/MyDrive/combined/35859a8e0e37945b.jpg", - "response": "A shelf full of different kinds of alcohol.", - "id": 12520 - }, - { - "image_path": "/content/drive/MyDrive/combined/3226bcdcd4ab7b84.jpg", - "response": "A bottle of dark beer next to a wine glass filled with dark beer.", - "id": 12521 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bb40db2b381181d.jpg", - "response": "The image features two large bottles of wine sitting next to each other. The wine bottles are dark in color and are filled with a red liquid. They are displayed on a shelf, which appears to be white in color. The bottles are closed with silver caps.", - "id": 12522 - }, - { - "image_path": "/content/drive/MyDrive/combined/3903f16322ed0ae6.jpg", - "response": "A bottle of red wine with a gold and black label.", - "id": 12523 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c67459de1e68b17.jpg", - "response": "A bottle of Louis Roederer Brut Premier champagne sits on a wooden table. The label is gold with a large R in the center and the word \"Brut\" printed in red below it. The bottle is almost empty, with only a small amount of champagne remaining.", - "id": 12524 - }, - { - "image_path": "/content/drive/MyDrive/combined/31764ea5a1dce194.jpg", - "response": "In the image there is a bottle of champagne with a gold foil wrapper. The wrapper features a floral design with white flowers on a dark background. The brand of champagne is Perrier-Jou\u00ebt and the label indicates it is Brut Fleur de Champagne from 1989. The bottle is almost full and there is a bit of champagne at the top. The label is illuminated so it looks like the flower design is glowing.", - "id": 12525 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee5cf87702d01ae.jpg", - "response": "A bottle of MDV Rioja 2006 sits on a wooden table. The bottle is dark and gold in color. The gold foil on the top is slightly curled. The letters on the front of the bottle are gold and say MDV. The year 2006 is printed below the letters. The word Rioja is also printed in gold on the bottle.", - "id": 12526 - }, - { - "image_path": "/content/drive/MyDrive/combined/331a8b4a3963b722.jpg", - "response": "The image shows three bottles of beer, lined up next to each other. The labels on the bottles are red, orange, and black, respectively. The bottles are made of clear glass.", - "id": 12527 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a8cc5f7a5ee101c.jpg", - "response": "A bottle of Susana Balbo Malbec Late Harvest wine sitting on a wooden table.", - "id": 12528 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d382b5705a11262.jpg", - "response": "A bottle of Sanct Valentine 2005 Sauvignon.", - "id": 12529 - }, - { - "image_path": "/content/drive/MyDrive/combined/37ea53027a82fbbc.jpg", - "response": "A bottle of Ragnaud-Sabourin brandy on a wooden shelf.", - "id": 12530 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c6a157155228e7e.jpg", - "response": "A table with a red and black table cloth with a purple stripe in the middle. There are three bottles of wine on the table. One bottle is dark purple, one bottle is dark red and the third bottle is dark blue. There are two wine glasses on the table, one on the left and one on the right. In the left corner of the table there is a bunch of green and red grapes.", - "id": 12531 - }, - { - "image_path": "/content/drive/MyDrive/combined/31557e6631bb872f.jpg", - "response": "A bottle and a glass filled with a beer.", - "id": 12532 - }, - { - "image_path": "/content/drive/MyDrive/combined/32d2b77fefbf9bab.jpg", - "response": "A bottle of beer sitting on a wooden table at the beach.", - "id": 12533 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e578050db07fe0c.jpg", - "response": "A bottle of wine next to a bag of cheese and crackers.", - "id": 12534 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a59518efc289aac.jpg", - "response": "A bottle of red wine named Urbina from 2013 sits on a wooden shelf. The label is white with a red border and features a gold logo of a tree. The wine is from Rioja and the bottle is sealed with a maroon foil top. The bottle is made of dark glass.", - "id": 12535 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ea58be712022c81.jpg", - "response": "A bottle of Eliot Ness Amber Ale from Great Lakes Brewing Co. sits on a wooden table.", - "id": 12536 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b1caade707673b7.jpg", - "response": "A bottle of Guinness beer is sitting on a wooden table. The bottle is dark green and tan in color. There is a small amount of liquid in the bottle, which is a dark beer. The bottle has a gold label with the Guinness logo on it. The logo features a sailboat on a wave with the words \"GUINNESS\" and \"FOREIGN EXTR\" printed on it. The bottle has a gold cap with a dark green band around it. The cap is missing on one side. There is a wine glass next to the bottle, with a reflection of the bottle in it. The glass is empty.", - "id": 12537 - }, - { - "image_path": "/content/drive/MyDrive/combined/302890ff69ff6c23.jpg", - "response": "A bottle of St. Donat Blonde is sitting on a wooden table. The bottle is made of glass and has a brown liquid inside. The label on the bottle is green and white and has an image of a man on it. The man is wearing armor and holding a sword.", - "id": 12538 - }, - { - "image_path": "/content/drive/MyDrive/combined/3484c961180167d7.jpg", - "response": "A wooden box with two bottles of beer and two glasses.", - "id": 12539 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cdd2e14a07d86bb.jpg", - "response": "A picture of two bottles of wine, a white wine bottle on the left and a red wine bottle on the right.", - "id": 12540 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e4829808cd97688.jpg", - "response": "A large selection of bottles of beer on a wooden shelf.", - "id": 12541 - }, - { - "image_path": "/content/drive/MyDrive/combined/39044e92e9a2a5a4.jpg", - "response": "A person is holding up two bottles of beer in front of a computer screen. The beer is from Notting Hill Brewery. There is a bottle of water next to the beer. A cup is also visible in the image.", - "id": 12542 - }, - { - "image_path": "/content/drive/MyDrive/combined/2deda2ea9794bb54.jpg", - "response": "A man pours beer into a glass behind a sign that says \"free beer\" on it.", - "id": 12543 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d91548fe1b977d.jpg", - "response": "A bottle of champagne with a red label and a gold horse on the bottle.", - "id": 12544 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a9152447f3807f9.jpg", - "response": "a bottle of wine with a white label and red writing", - "id": 12545 - }, - { - "image_path": "/content/drive/MyDrive/combined/315b5437f12c2884.jpg", - "response": "A bottle of Mikkell 10 on a table.", - "id": 12546 - }, - { - "image_path": "/content/drive/MyDrive/combined/39989e0611712a64.jpg", - "response": "A store with a wall full of wine bottles.", - "id": 12547 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ef5b578164abee9.jpg", - "response": "The image shows a group of clear glass bottles filled with a clear liquid. The bottles are placed on a cardboard box, and some of them have black tops. The liquid inside the bottles is not visible in great detail, but there are a few bottles with white labels. The bottles are displayed on a table, and there is a chair visible in the background.", - "id": 12548 - }, - { - "image_path": "/content/drive/MyDrive/combined/374f5bd59eea6dbc.jpg", - "response": "A refrigerator filled with lots of different kinds of beer.", - "id": 12549 - }, - { - "image_path": "/content/drive/MyDrive/combined/2beaf9db720c828e.jpg", - "response": "A bottle of Liefmans Goudenband next to a glass of Guinness.", - "id": 12550 - }, - { - "image_path": "/content/drive/MyDrive/combined/33070696219dc01b.jpg", - "response": "A bottle of Lagavulin 16 next to a money clip and a 20 dollar bill.", - "id": 12551 - }, - { - "image_path": "/content/drive/MyDrive/combined/333f9fa31d3e4bee.jpg", - "response": "A bottle of Meantime coffee sits on a wooden table.", - "id": 12552 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f2c2073dab6a2e.jpg", - "response": "A bottle of Protocol Gin sits on a wooden table. The bottle is green and white and has a white cap. There is a white label on the front of the bottle with the word \"Protocol\" in green. The bottle is full and has a barcode on the bottom. There is a chair visible in the background.", - "id": 12553 - }, - { - "image_path": "/content/drive/MyDrive/combined/32bca1a5165b2eed.jpg", - "response": "A bottle of Pedigree V.S.O.P. sits on a wooden table.", - "id": 12554 - }, - { - "image_path": "/content/drive/MyDrive/combined/34455e60f461fe2f.jpg", - "response": "A glass of beer is next to a brown bottle of beer on a table.", - "id": 12555 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d101d8561e24455.jpg", - "response": "A table with five bottles of moet on it.", - "id": 12556 - }, - { - "image_path": "/content/drive/MyDrive/combined/33bd8edc294be19c.jpg", - "response": "A table with three bottles of Karuizawa beer on it.", - "id": 12557 - }, - { - "image_path": "/content/drive/MyDrive/combined/34df2fed3d2c0aa3.jpg", - "response": "In the image there are two bottles of Chateau Neuf du Pape wine on a counter. The label on the left bottle has a dark red background with a gold vine running across the center. The label on the right bottle has a red background with a gold vine running across the center. There is a small white label on the left bottle with gold writing. There is a small white label on the right bottle with gold writing. In the background there is a yellow cabinet with a red design on it. There is a small white chicken on the right side of the cabinet. There are multiple small containers in the background including several salt and pepper shakers and a few small glass containers.", - "id": 12558 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c6754dae5fcbfaa.jpg", - "response": "The image shows a close up of three wine bottles on a wooden table. The bottles are all different types and sizes and are all brown in color. The label on the middle bottle is brown and has a picture of a wine barrel with a person's head superimposed on it. The label on the right bottle is yellow and has a picture of a person holding a surfboard.", - "id": 12559 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8817cfef505625.jpg", - "response": "A person holding a bottle of Weihenstephaner Dark beer.", - "id": 12560 - }, - { - "image_path": "/content/drive/MyDrive/combined/314359e5b2eedc3b.jpg", - "response": "A table with many different kinds of alcohol on it.", - "id": 12561 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb7a1ed8eb5a5bb.jpg", - "response": "A book with a red bottle on the cover.", - "id": 12562 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b598356f1e96e6.jpg", - "response": "A close up of five wine bottles on a counter. The bottles are lined up and are closed. The first bottle is dark and has a tan label. The second bottle is dark and has a red label. The third bottle is dark and has a white label. The fourth bottle is dark and has a white label. The fifth bottle is dark and has a gold label.", - "id": 12563 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d684312ca114f14.jpg", - "response": "A glass of Kilkenny Irish beer is sitting on a table.", - "id": 12564 - }, - { - "image_path": "/content/drive/MyDrive/combined/34069014351a8600.jpg", - "response": "A row of wine bottles on a table, including a bottle of Chateau Latour and a bottle of Chateau Margaux.", - "id": 12565 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2038a045019bf5.jpg", - "response": "A bottle of Glenfiddich 12 years old single malt scotch whisky next to the green box it came in.", - "id": 12566 - }, - { - "image_path": "/content/drive/MyDrive/combined/39ed9aa741fb0567.jpg", - "response": "A bottle of Santa Digna wine sits next to a wine glass. The glass is half full and the wine is red. There is a fork and a knife on the table as well.", - "id": 12567 - }, - { - "image_path": "/content/drive/MyDrive/combined/31383014cfc52dde.jpg", - "response": "A bottle of wine with a black label that says El Repiso on it.", - "id": 12568 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e21e0f8fefb128c.jpg", - "response": "A store display full of various bottles of soda.", - "id": 12569 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a28c2145be7c02f.jpg", - "response": "The image shows three bottles of alcoholic beverages. The first one is Twisted Nose Vodka, the second one is Twisted Nose Aged Gin, and the third one is Twisted Nose Vermouth.", - "id": 12570 - }, - { - "image_path": "/content/drive/MyDrive/combined/386ef6ea9cf430a4.jpg", - "response": "A table with a variety of liquor bottles on it.", - "id": 12571 - }, - { - "image_path": "/content/drive/MyDrive/combined/2df2a6e1579d1a77.jpg", - "response": "A close up of four bottles of wine on a wooden shelf. The bottles are from the winery Willowcroft and are for Seyval, Cabernet Sauvignon, Merlot, and Fitrada's Reward.", - "id": 12572 - }, - { - "image_path": "/content/drive/MyDrive/combined/37749ac2f2f8693c.jpg", - "response": "A bottle of Chateau Belingard Ros\u00e9 wine sits on a wooden table next to a wine glass. The wine bottle has a white label with gold lettering and a gold crested logo. The glass is empty and has a small amount of wine at the bottom. The label on the glass is not visible. The table is set with a white plate and a fork. In the background, there is a chair and a dining table.", - "id": 12573 - }, - { - "image_path": "/content/drive/MyDrive/combined/367e271ed9fc8b87.jpg", - "response": "A bottle of wine by Mount Riley sits on a counter.", - "id": 12574 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e8ca1700c7b6c3.jpg", - "response": "A set of three black growlers from Cambridge American Brewing Company.", - "id": 12575 - }, - { - "image_path": "/content/drive/MyDrive/combined/3344337f6bb475b7.jpg", - "response": "A table with a glass of wine and a bottle of wine on it.", - "id": 12576 - }, - { - "image_path": "/content/drive/MyDrive/combined/37da8b8e15ea98c8.jpg", - "response": "A bottle of Tyrrell's Wines sits on a wooden table. The label on the bottle is white and has a gold emblem in the top left hand corner. The bottle is closed and the cap is on top. The label on the bottle says \"TYRRELLS WINES\" in large black font. Underneath this, in smaller black font, it says \"EST. 1888\". There is a gold emblem with a shield on it, with the words \"SOUTH AUSTRALIA\" in the shield. Below this, in a gold circle, it says \"GOLD MEDAL\". There is a black and white picture of a person on horseback, with the year 2008 below this. The bottle is filled with white wine.", - "id": 12577 - }, - { - "image_path": "/content/drive/MyDrive/combined/37dac8415dce73d8.jpg", - "response": "The image shows a large group of people sitting around dining tables, with plates of food and drinks in front of them. There are several cups, wine glasses, forks, knives, and spoons on the tables. Some people are wearing ties, and a few have handbags placed near them. The setting appears to be a formal event or a banquet.", - "id": 12578 - }, - { - "image_path": "/content/drive/MyDrive/combined/49f3463a0b7d86ac.jpg", - "response": "A bucket filled with bottles of Monte da Casteleja wine.", - "id": 12579 - }, - { - "image_path": "/content/drive/MyDrive/combined/4319abe6f915654c.jpg", - "response": "A bottle of Dogfish Head 60 Minute IPA sits on a napkin on a wooden table.", - "id": 12580 - }, - { - "image_path": "/content/drive/MyDrive/combined/42b0b2da1600713c.jpg", - "response": "A bottle of Russian Imperial stout from Old Rasputin sits next to a glass filled with the dark beer.", - "id": 12581 - }, - { - "image_path": "/content/drive/MyDrive/combined/48f402c245030d96.jpg", - "response": "A set of four dark blue bottles of olive oil from Old World Olive Press.", - "id": 12582 - }, - { - "image_path": "/content/drive/MyDrive/combined/42ac271edd369728.jpg", - "response": "A collection of wine bottles are lined up on a wooden table.", - "id": 12583 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee04a3ca06ae490.jpg", - "response": "A close up of two bottles of wine, one says Conde on the label and the other says Noble on the label.", - "id": 12584 - }, - { - "image_path": "/content/drive/MyDrive/combined/44ed10b056383f73.jpg", - "response": "A wooden table with a bottle of wine on it. The bottle is green and has a label that says \"No 1\" on it. There is a wine glass next to the bottle and a paper next to the bottle.", - "id": 12585 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b64cb60c6a3d44a.jpg", - "response": "In the image there is a black bottle with a dropper cap labeled \"Cult\". Under the Cult label there is small writing that says \"affiliated\". The bottle is filled with a dark liquid and the background is white.", - "id": 12586 - }, - { - "image_path": "/content/drive/MyDrive/combined/4046d0037d6728cb.jpg", - "response": "A bottle of Expression 44 2010 Pinot Noir sits next to a glass of wine on a table.", - "id": 12587 - }, - { - "image_path": "/content/drive/MyDrive/combined/42a03cf56d792bca.jpg", - "response": "A bottle of Alsace Pinot Gris from 2009.", - "id": 12588 - }, - { - "image_path": "/content/drive/MyDrive/combined/42694b966144f187.jpg", - "response": "A row of four bottles of wine on a shelf.", - "id": 12589 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ac8c61529ae4e44.jpg", - "response": "A bottle of dark beer next to a glass filled with beer.", - "id": 12590 - }, - { - "image_path": "/content/drive/MyDrive/combined/44f0e271bcbb09c0.jpg", - "response": "A bottle of red wine with a cork stopper and a white label.", - "id": 12591 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b3137f1fde03108.jpg", - "response": "A bottle of champagne is being held in someones hand. The label on the bottle is white and has the name McRogers Reserve champagne.", - "id": 12592 - }, - { - "image_path": "/content/drive/MyDrive/combined/441949532da02e63.jpg", - "response": "A framed black and white poster with the words \"Let it be\" printed on it. The poster is placed on a wooden table and is sitting next to a clock and a book.", - "id": 12593 - }, - { - "image_path": "/content/drive/MyDrive/combined/471788c3946b7d78.jpg", - "response": "A bottle of Sainsbury's Cava Traditional Method Brut.", - "id": 12594 - }, - { - "image_path": "/content/drive/MyDrive/combined/4304464713f81cd5.jpg", - "response": "In the image there is a crate filled with many green glass bottles. Some of the bottles have white corks and some have silver corks. The crate is made of wood and is placed on a brown wooden floor. There is a glass top covering the crate. Under the glass top there is a picture of a tree.", - "id": 12595 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8730694d81471a.jpg", - "response": "A bottle of Elafokynigos red table wine.", - "id": 12596 - }, - { - "image_path": "/content/drive/MyDrive/combined/44ca21af5a5ad637.jpg", - "response": "A case of Pepsi natural sits on a store shelf.", - "id": 12597 - }, - { - "image_path": "/content/drive/MyDrive/combined/427287bda3b0e678.jpg", - "response": "A row of wine bottles on a wooden table.", - "id": 12598 - }, - { - "image_path": "/content/drive/MyDrive/combined/43851a02da9f5515.jpg", - "response": "A bottle of Chateau Chante-Alouette la Roseraie 2011 sits on a reflective surface. The wine is green in color and has a red and gold label. The label features a wine vineyard and a castle. The bottle has a cork stopper.", - "id": 12599 - }, - { - "image_path": "/content/drive/MyDrive/combined/4504821be96d84df.jpg", - "response": "A man sitting at a table with four bottles of soda in front of him.", - "id": 12600 - }, - { - "image_path": "/content/drive/MyDrive/combined/45857b6a8d4a7194.jpg", - "response": "A bottle of N\u00f8isom APA next to a wine glass filled with the beer.", - "id": 12601 - }, - { - "image_path": "/content/drive/MyDrive/combined/44a5b803be13532c.jpg", - "response": "A bottle of alcohol with a blue cap and a white label with blue writing on it.", - "id": 12602 - }, - { - "image_path": "/content/drive/MyDrive/combined/493f5e5e22c7b221.jpg", - "response": "A bottle of white wine called Il Bruciato from 2009.", - "id": 12603 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ecb950c5ac21d07.jpg", - "response": "A glass of Guinness sits next to a bottle of Guinness on a table.", - "id": 12604 - }, - { - "image_path": "/content/drive/MyDrive/combined/4833102ebc5fafc7.jpg", - "response": "A bottle of pinkish-rose colored alcohol with Asian writing on it.", - "id": 12605 - }, - { - "image_path": "/content/drive/MyDrive/combined/424ca16a4b694411.jpg", - "response": "A bottle of Southern Tier Creme Brulee is sitting on a granite counter next to a nearly empty glass of the same beer. There is a wooden block with several knives in it behind the beer bottle and glass.", - "id": 12606 - }, - { - "image_path": "/content/drive/MyDrive/combined/4abb8eb76bc3ffcb.jpg", - "response": "A close up of a shelf with multiple wine bottles on it.", - "id": 12607 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2f5928cf98e224.jpg", - "response": "An open book with a page that has a bottle of beer on it.", - "id": 12608 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a476b051550fa76.jpg", - "response": "The image features a table with a variety of wine bottles displayed on it. There are a total of nine bottles, arranged in three columns of three bottles each. The bottles come in different shapes and sizes, and some of them have decorative labels. In front of the table, there is a wooden box and a cutting board with a knife and a piece of meat on it. The table is also topped with a bowl.", - "id": 12609 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e50bd92b81774a.jpg", - "response": "A counter with a bottle of Woodford Reserve on it.", - "id": 12610 - }, - { - "image_path": "/content/drive/MyDrive/combined/45dc5b66e3f3f31b.jpg", - "response": "A snowy back yard with a grill and a fence.", - "id": 12611 - }, - { - "image_path": "/content/drive/MyDrive/combined/49c03935a6973305.jpg", - "response": "a case of cabernet sauvignon wine on a shelf in a store", - "id": 12612 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e1db83ffbdc5adf.jpg", - "response": "A bottle of Cuvee des Fleur sits next to a glass filled with the beer.", - "id": 12613 - }, - { - "image_path": "/content/drive/MyDrive/combined/4673cc5688c03c62.jpg", - "response": "a book with a drink on it", - "id": 12614 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a9b745bdab62c50.jpg", - "response": "A can of India Pale Ale from Denali Brewing sits on a table next to a drinking glass.", - "id": 12615 - }, - { - "image_path": "/content/drive/MyDrive/combined/4acb053f14ca90d9.jpg", - "response": "A granite counter top with four wine bottles on it.", - "id": 12616 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f32144153764d1e.jpg", - "response": "A plate of crackers, cheese, and a small jar of something green.", - "id": 12617 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ef4ed8df44acf94.jpg", - "response": "A bottle of white wine with a dark green label that says \"TASMANIA\" and has a picture of a grape.", - "id": 12618 - }, - { - "image_path": "/content/drive/MyDrive/combined/44204a1c17669719.jpg", - "response": "In the image there is a store shelf filled with various types of liquor bottles. The bottles come in different shapes, sizes, and colors. Some of the bottles are green, some are brown, and others are clear. The shelf is well organized with the bottles lined up in a row. Each bottle has a price label in front of it, indicating the cost of the liquor.", - "id": 12619 - }, - { - "image_path": "/content/drive/MyDrive/combined/48d92481756020a8.jpg", - "response": "a plate of food on a table", - "id": 12620 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b7044e659d47df3.jpg", - "response": "A bottle of Brooklyn Asorachi Ace with a red diamond label on a white background.", - "id": 12621 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c2007b1c1d4262c.jpg", - "response": "A bottle of Fonteine Oude Kriek on a table.", - "id": 12622 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c273e42904e6f3.jpg", - "response": "A bottle of wine with a green label that says \"natures harvest\" on it.", - "id": 12623 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a95dad0cd543204.jpg", - "response": "A table with four bottles of wine on it.", - "id": 12624 - }, - { - "image_path": "/content/drive/MyDrive/combined/4410ba91230928f8.jpg", - "response": "A table with two plates of food and a bottle of wine.", - "id": 12625 - }, - { - "image_path": "/content/drive/MyDrive/combined/4778f57407cb06d6.jpg", - "response": "A wooden table with two bottles of wine and a small jar of spices. The two bottles of wine are side by side and are closed. The label on one bottle says Chateau Grand Corbin 2004. There are also two bowls in the background.", - "id": 12626 - }, - { - "image_path": "/content/drive/MyDrive/combined/43b978f31a43320f.jpg", - "response": "A bottle of moet on a blue background.", - "id": 12627 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f2678c2f137d5a8.jpg", - "response": "A box with a brown label that says \"HELLA LA LA\" and \"Vanilla\" on it. There is a red flower on the label. There are two bottles of vanilla extract inside the box. One bottle is in the foreground and is closer to the camera. The other bottle is in the background and is further away. Both bottles have red labels. There is a white label on the vanilla extract bottle in the foreground. There is a white label on the bottle in the background. There is a white cap on the bottle in the foreground. There is a red cap on the bottle in the background. There is a white spoon in the box. The background is white. The box is on a wicker surface.", - "id": 12628 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eb5f1be95e4e13f.jpg", - "response": "A bottle of Hayward's 5000 sits on a table next to a plate of food.", - "id": 12629 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a2bf41772bbc033.jpg", - "response": "A bottle of Bumble Bee Fairtrade Honey Ale sits on a counter.", - "id": 12630 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f38dbfd0fe42f29.jpg", - "response": "A kitchen counter with a white tile backsplash.", - "id": 12631 - }, - { - "image_path": "/content/drive/MyDrive/combined/44c0ab731912e8e4.jpg", - "response": "A case of Yebisu brand beer, a Japanese all malt beer.", - "id": 12632 - }, - { - "image_path": "/content/drive/MyDrive/combined/42bc149e0a5d04b2.jpg", - "response": "A bottle of Sunturbrew sits on a wooden table. The label is black with a yellow circle in the center. The circle has a yellow letter \"O\" in it. The beer is a wine style ale that has been aged in bourbon barrels. The bottle is 8.5 fluid ounces.", - "id": 12633 - }, - { - "image_path": "/content/drive/MyDrive/combined/42afc1fdd2dc8ad8.jpg", - "response": "A bottle of black lager sits on a granite counter.", - "id": 12634 - }, - { - "image_path": "/content/drive/MyDrive/combined/49a71b00a9323a48.jpg", - "response": "A group of four different kinds of alcohol sit on a wooden table.", - "id": 12635 - }, - { - "image_path": "/content/drive/MyDrive/combined/4214185d9983f04d.jpg", - "response": "A bottle of 2010 GROUNDSWELL RED TABLE WINE is held in a hand. The label is blue and green and has a tree with roots that are grapes. The tree is surrounded by white grapes. Under the tree it says RED TABLE WINE. The year 2010 is printed on the label. The word GROUNDSWELL is printed in white. The label also says MADE WITH ORGANIC GRAPES.", - "id": 12636 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c629d4ddac8edd0.jpg", - "response": "A bottle of Ridge Vineyards 2010 Geyserville.", - "id": 12637 - }, - { - "image_path": "/content/drive/MyDrive/combined/45db48f04b1b8ff8.jpg", - "response": "A man standing behind a bar filled with various types of alcohol.", - "id": 12638 - }, - { - "image_path": "/content/drive/MyDrive/combined/41613bd8f9295e18.jpg", - "response": "The image shows a number of green and white bottles of Jameson Irish whiskey. The whiskey is stored on a white shelf and the bottles are all facing the same direction. The bottles are labeled with the name Jameson and the Distillery Reserve logo. The whiskey is aged 12 years.", - "id": 12639 - }, - { - "image_path": "/content/drive/MyDrive/combined/407a2addedf99966.jpg", - "response": "A collection of different types of gins, including a bottle of fifty pounds gin, a bottle of mediterraneo gino, a bottle of lindores antiquum, and a bottle of gin mar.", - "id": 12640 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d4d788c9ed8706f.jpg", - "response": "A bottle of Brandy on a wooden table.", - "id": 12641 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fc77a4b8b7cc8cc.jpg", - "response": "A close up of a row of wine bottles on a shelf.", - "id": 12642 - }, - { - "image_path": "/content/drive/MyDrive/combined/44150ca9a973db65.jpg", - "response": "A bottle of red wine named Villa Trasqua Fanattico sits on a wooden shelf in front of a wooden box filled with many other bottles of wine. The wine bottle has a gold T on the label.", - "id": 12643 - }, - { - "image_path": "/content/drive/MyDrive/combined/4775e93348039b44.jpg", - "response": "A bottle of Cantillon Gueuze 100% Lambic Bio next to a glass filled with the beer.", - "id": 12644 - }, - { - "image_path": "/content/drive/MyDrive/combined/5287b20a075d24f3.jpg", - "response": "A bottle of Korbel California champagne sits on a wooden table.", - "id": 12645 - }, - { - "image_path": "/content/drive/MyDrive/combined/54fddd8dcea59ed9.jpg", - "response": "Three bottles of alcohol sitting on a counter.", - "id": 12646 - }, - { - "image_path": "/content/drive/MyDrive/combined/51f483fa116b962a.jpg", - "response": "A table with several different kinds of bottles on it.", - "id": 12647 - }, - { - "image_path": "/content/drive/MyDrive/combined/50414511a5c92dea.jpg", - "response": "A bottle of white wine with a cork stopper and a label on the neck of the bottle.", - "id": 12648 - }, - { - "image_path": "/content/drive/MyDrive/combined/532250768685a280.jpg", - "response": "A bottle of Chablis white wine from 2012 by Domaine William Fevre. The label is white with a round green sticker on top with the name of the winery. The wine is in a green bottle and the label has a white background with the name of the winery and the year on it. The bottle is sitting on a wooden table.", - "id": 12649 - }, - { - "image_path": "/content/drive/MyDrive/combined/51b9af66a29f7baa.jpg", - "response": "A bottle of Oude Gueuze and a wine glass full of the beverage sit on a table.", - "id": 12650 - }, - { - "image_path": "/content/drive/MyDrive/combined/5488194020e79fba.jpg", - "response": "A table with a bottle of Chateau Mouton Rothschild on it.", - "id": 12651 - }, - { - "image_path": "/content/drive/MyDrive/combined/520a65415b414408.jpg", - "response": "The image features a close up view of a table with an ice bucket on it. The ice bucket contains two bottles of wine, one of which is Santa Serena Sauvignon Blanc. There are also two wine glasses next to the ice bucket. One of the glasses is partially visible behind the ice bucket. The background of the image is blurry.", - "id": 12652 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fcb44082d79b46f.jpg", - "response": "A large collection of wine bottles are displayed on a shelf. The bottles come in various shapes, sizes, and colors. Some of the bottles are full, while others are nearly empty. A clock is visible on the wall above the shelf.", - "id": 12653 - }, - { - "image_path": "/content/drive/MyDrive/combined/529ce78a847e2b14.jpg", - "response": "A tent with a sign that says Arthur coffee sandwich.", - "id": 12654 - }, - { - "image_path": "/content/drive/MyDrive/combined/51b82971971532c7.jpg", - "response": "A bottle of wine with a red flower on the label is sitting in front of a guitar.", - "id": 12655 - }, - { - "image_path": "/content/drive/MyDrive/combined/5534b7f7b0946dbf.jpg", - "response": "A bottle of red wine from 2004 sits on a counter.", - "id": 12656 - }, - { - "image_path": "/content/drive/MyDrive/combined/52434ce90c2f1a9f.jpg", - "response": "A row of beer bottles on a counter.", - "id": 12657 - }, - { - "image_path": "/content/drive/MyDrive/combined/552d4d5f6ebff600.jpg", - "response": "A bottle of 2006 Sass Pinot Blanc is on a shelf with other wine bottles.", - "id": 12658 - }, - { - "image_path": "/content/drive/MyDrive/combined/5310457c9af635a5.jpg", - "response": " a cast iron skillet(267,312),(723,959) with food in it", - "id": 12659 - }, - { - "image_path": "/content/drive/MyDrive/combined/5520da8e32a47604.jpg", - "response": "A bottle of Torcolato white wine by Firmino Miotto.", - "id": 12660 - }, - { - "image_path": "/content/drive/MyDrive/combined/54797f13a9bac157.jpg", - "response": "A counter with a row of wine bottles of different types in front of a microwave.", - "id": 12661 - }, - { - "image_path": "/content/drive/MyDrive/combined/554b586879fe1a59.jpg", - "response": "A bottle of wine with a green label and a white sticker on the right side.", - "id": 12662 - }, - { - "image_path": "/content/drive/MyDrive/combined/5361455149373a6e.jpg", - "response": "A bottle of Chateau de Launay Bordeaux Blanc from 2002.", - "id": 12663 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ee0499173c328ac.jpg", - "response": "A bottle of Cabernet Sauvignon sits on a table next to a glass of wine. The bottle has a white label with red writing. A book and a suitcase are also on the table.", - "id": 12664 - }, - { - "image_path": "/content/drive/MyDrive/combined/534644d19fb452d4.jpg", - "response": "A bottle of Cain's Finest Lager from Liverpool 2008 sits on a wooden table.", - "id": 12665 - }, - { - "image_path": "/content/drive/MyDrive/combined/521194235d058645.jpg", - "response": "A bottle of Baglio di Pianetto Ginolfo Viognier from 2007 sits on a wooden table.", - "id": 12666 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0a5358963f34b9.jpg", - "response": "A row of dark brown bottles of Madeira wine on a bar.", - "id": 12667 - }, - { - "image_path": "/content/drive/MyDrive/combined/54c4b9d42a43e576.jpg", - "response": "A bottle of Zisola Doppiozeta Noto Rosso 2010 sits on a wooden table. The bottle is dark and has a red rose on the label. The label also says 2010 and has a white circle with a white M inside it.", - "id": 12668 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f71899b6c2914a4.jpg", - "response": "A glass case with two vintage Pepsi Cola bottles on display.", - "id": 12669 - }, - { - "image_path": "/content/drive/MyDrive/combined/53769eb8d5efce1d.jpg", - "response": "A row of beer bottles including brands such as Trader Joe's and Aili.", - "id": 12670 - }, - { - "image_path": "/content/drive/MyDrive/combined/545d4e471dfc1d96.jpg", - "response": "The image shows three bottles of beer sitting on a table. The bottles are dark in color and have black labels with pictures of sheep on them. The sheep are depicted in a lightning bolt pattern. The labels are written in a foreign language and the beer is from India. The table is made of wood and the scene is lit by a small candle.", - "id": 12671 - }, - { - "image_path": "/content/drive/MyDrive/combined/503b81729247b7a0.jpg", - "response": "A bottle of Domaine Croix Maro wine from 2006.", - "id": 12672 - }, - { - "image_path": "/content/drive/MyDrive/combined/2edfe070fbbce327.jpg", - "response": "A bottle of Slumbrew Happy Self next to a glass filled with the beer.", - "id": 12673 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ff158258f1df05.jpg", - "response": "A dining table with a brown runner and a white placemat. There is a basket of nuts on the table and a wooden container holding condiments. There are several bottles and a cup on the table.", - "id": 12674 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c220f64ae574947.jpg", - "response": "An advertisement for Londonderry Lithia Spring Water Co. featuring three bottles of the product.", - "id": 12675 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c235bc29e1b730c.jpg", - "response": "A plastic bottle of water with condensation on it, sitting on a counter.", - "id": 12676 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e0e143d8529e6fa.jpg", - "response": "A jar of Daylight sauce by Home Sauce Memphis. The jar is yellow and has a black label around it. The label has the words \"Daylight\" written in yellow. The jar has a silver lid and a silver clip to hold it in place. The jar is set against a white background.", - "id": 12677 - }, - { - "image_path": "/content/drive/MyDrive/combined/232e377446805c19.jpg", - "response": "A large bottle of Tabasco sauce on a shelf.", - "id": 12678 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dd03cedb6f923f5.jpg", - "response": "A bottle of La Fin Du Monde next to a glass filled with the beer. The beer is sitting on a cutting board with a wedge of cheese and a knife.", - "id": 12679 - }, - { - "image_path": "/content/drive/MyDrive/combined/3da3a101ea225e4b.jpg", - "response": "A bottle of red wine called Wakefield St Andrews Cabernet Sauvignon from 2004. The wine is from the clare valley and is single estate and single vineyard. The wine is from the st andrews range. The wine is from the wakefield winery. The wine is from south Australia. The wine is a cabernet sauvignon. The wine is a clare valley.", - "id": 12680 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc0a557f0995af8.jpg", - "response": "A table with several bottles of beer on it.", - "id": 12681 - }, - { - "image_path": "/content/drive/MyDrive/combined/54bd5cfdda94d534.jpg", - "response": "A green and white laptop computer sitting on a desk.", - "id": 12682 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b8bc79b5f87744a.jpg", - "response": "There are two cans of Pepsi sitting on a counter. One of the cans has the word \"Live Earth\" written on it. The cans are blue and white.", - "id": 12683 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b28c17af728da86.jpg", - "response": "A glass filled with beer from Sambrooks Brewery.", - "id": 12684 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e76f2e91fdbe96.jpg", - "response": "A bottle of The Far East Barrel Aged Imperial House IPA next to a glass filled with the beer. The bottle is brown and has a tan label with English writing. The label features a ship on the water and a bottle cap is next to the bottle. The background is white and the table cloth is blue and white checkered.", - "id": 12685 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5a26798ffca5b2.jpg", - "response": "A bottle of Phillips Hop Circle Ipa next to a bucket of ice and a glass filled with beer.", - "id": 12686 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b43fa2a5e37e90b.jpg", - "response": "The image shows a group of people sitting around a table with a variety of alcohol bottles and glasses on it. There are at least four people visible in the scene, with one person on the left side and two people on the right side of the table. The table also has a cup on it, which is located towards the right side of the table. In addition to the alcohol, there are several ice cubes scattered around the table. Some of the bottles and cups are closer to the foreground, while others are further away.", - "id": 12687 - }, - { - "image_path": "/content/drive/MyDrive/combined/3171b38de5df6347.jpg", - "response": "A bar with a variety of beer bottles on the counter.", - "id": 12688 - }, - { - "image_path": "/content/drive/MyDrive/combined/549999a1ac3358b1.jpg", - "response": "A close up of a wooden shelf with several wine bottles on it. The bottles are of different shapes and sizes and are lined up next to each other. Some of the bottles have white, orange, and blue labels.", - "id": 12689 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1e01ef8d67cf20.jpg", - "response": "A man sitting at a table with a plate of food in front of him.", - "id": 12690 - }, - { - "image_path": "/content/drive/MyDrive/combined/1582ecaf88bcf8b8.jpg", - "response": "A bottle of Coop beer next to a glass filled with beer.", - "id": 12691 - }, - { - "image_path": "/content/drive/MyDrive/combined/30a26579af064435.jpg", - "response": "A bottle of Brains SA Gold on a wooden table.", - "id": 12692 - }, - { - "image_path": "/content/drive/MyDrive/combined/24651934d80299c7.jpg", - "response": "A bottle of beer sitting on a table.", - "id": 12693 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b188c41dd579d36.jpg", - "response": "A table with a variety of cleaning supplies on it.", - "id": 12694 - }, - { - "image_path": "/content/drive/MyDrive/combined/17e620b469276e0b.jpg", - "response": "An Angry Orchard Elderflower cider sits next to a six pack of the same product.", - "id": 12695 - }, - { - "image_path": "/content/drive/MyDrive/combined/2082ad9907ca0997.jpg", - "response": "A person is pouring a drink into a glass that has the Open Source Bridge logo on it. There is a bottle and a cup on the counter as well.", - "id": 12696 - }, - { - "image_path": "/content/drive/MyDrive/combined/3420666319f328ea.jpg", - "response": "A bottle of Southern Tier IPA next to a glass filled with the beer.", - "id": 12697 - }, - { - "image_path": "/content/drive/MyDrive/combined/2df076ad1db19e75.jpg", - "response": "A bucket full of ice with five bottles of vodka in it.", - "id": 12698 - }, - { - "image_path": "/content/drive/MyDrive/combined/353ef04d825ea9be.jpg", - "response": "A glass Coca Cola bottle is sitting on a desk next to a laptop computer. The bottle has a white label on it.", - "id": 12699 - }, - { - "image_path": "/content/drive/MyDrive/combined/0feb59912e0d7a7c.jpg", - "response": "a painting of a man holding a beer", - "id": 12700 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c367e062b9ecd67.jpg", - "response": "A bottle of Innis & Gunn Original next to a glass filled with the beer.", - "id": 12701 - }, - { - "image_path": "/content/drive/MyDrive/combined/12bc491d7b4a088c.jpg", - "response": "A blue bottle with a brown tag on it.", - "id": 12702 - }, - { - "image_path": "/content/drive/MyDrive/combined/3faebed56ed01f5b.jpg", - "response": "A table full of rows of wine bottles.", - "id": 12703 - }, - { - "image_path": "/content/drive/MyDrive/combined/33923ded1aed9aac.jpg", - "response": "A bottle of Club Liqueur on a white background.", - "id": 12704 - }, - { - "image_path": "/content/drive/MyDrive/combined/26ab1db3b9001b71.jpg", - "response": "An airplane on display with a sky in the background.", - "id": 12705 - }, - { - "image_path": "/content/drive/MyDrive/combined/478c66a97e599671.jpg", - "response": "A Dell computer monitor sitting on a desk.", - "id": 12706 - }, - { - "image_path": "/content/drive/MyDrive/combined/247da882f10fca8a.jpg", - "response": "The image is a library with bookshelves full of books. There are two bookshelves in the foreground and two bookshelves in the background. The books on the shelves are arranged in rows and vary in color. The room has a wooden ceiling with exposed beams. To the right of the bookshelves, there is a white wall that forms a corner. In the background, there is a desk with two people sitting at it. They are both wearing black. There are two chairs in front of the desk. Above the desk, there is a whiteboard on the wall. On the left side of the image, there is a TV mounted on the wall.", - "id": 12707 - }, - { - "image_path": "/content/drive/MyDrive/combined/3db800b3bca10a28.jpg", - "response": "A shelf with many different types of cameras and a book on Ansel Adams.", - "id": 12708 - }, - { - "image_path": "/content/drive/MyDrive/combined/2778d5a7ea400111.jpg", - "response": "An open laptop computer sitting on a wooden table.", - "id": 12709 - }, - { - "image_path": "/content/drive/MyDrive/combined/529ba704a733709e.jpg", - "response": "A desk with a bunch of old computers on it.", - "id": 12710 - }, - { - "image_path": "/content/drive/MyDrive/combined/1949fb1c7ecd6bad.jpg", - "response": "A boat with many American flags and banners travels across the water.", - "id": 12711 - }, - { - "image_path": "/content/drive/MyDrive/combined/325517b1f132e195.jpg", - "response": "A woman in a red shirt is standing at a podium.", - "id": 12712 - }, - { - "image_path": "/content/drive/MyDrive/combined/3295ea7386f9a9e9.jpg", - "response": "A white curio cabinet made of Lego.", - "id": 12713 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7777a13f6838fa.jpg", - "response": "A plate with a bottle of French's Classic Yellow Mustard, a bottle of Heinz Tomato Ketchup, and a bottle of Hot Dog Relish on a table.", - "id": 12714 - }, - { - "image_path": "/content/drive/MyDrive/combined/35e5ef6aece894ac.jpg", - "response": "A brown bottle of barleywine on a wooden background.", - "id": 12715 - }, - { - "image_path": "/content/drive/MyDrive/combined/1777b98c0abf822c.jpg", - "response": "A row of houses on a hillside with a blue sky and white clouds above.", - "id": 12716 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dac470833f83d4c.jpg", - "response": "A bottle of olive oil from Casa di Luca, an Italian brand, on a white background. The bottle is dark green and has a gold cap. The label is a rectangular gold and green sticker with the brand name \"Casa di Luca\" at the top, and \"Italiano\" written below that. The bottle is filled with dark green olive oil.", - "id": 12717 - }, - { - "image_path": "/content/drive/MyDrive/combined/39fa80444f061ffd.jpg", - "response": "A soldier is standing on the side of a tan helicopter.", - "id": 12718 - }, - { - "image_path": "/content/drive/MyDrive/combined/1377b5ee4ddd40ee.jpg", - "response": "A laptop computer is open on a desk in front of a large screen TV. The laptop screen is showing a travel website and a Viking River Cruises advertisement is on the TV screen.", - "id": 12719 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7c1c2bca3c2fe8.jpg", - "response": "A long brick hallway with arches and arches over the doorways. The hallway is lined with bookshelves on both sides. A girl is walking down the hallway, and there is a yellow sign on one of the bookshelves.", - "id": 12720 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e3b5093bb67a22f.jpg", - "response": "A busy street at night with many people walking around. There are many lit signs in Japanese all around, and the street is made of small stones.", - "id": 12721 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5b1132cdc985dd.jpg", - "response": "A laptop computer with a blank screen.", - "id": 12722 - }, - { - "image_path": "/content/drive/MyDrive/combined/2928b1a1cf22f030.jpg", - "response": "A bottle of red wine called Great Western Cabernet Sauvignon.", - "id": 12723 - }, - { - "image_path": "/content/drive/MyDrive/combined/39db5c82d237a39d.jpg", - "response": "A classroom full of students and a teacher. There are long tables with laptops and water bottles on them. A man is standing at the front of the room, presenting something on a large screen.", - "id": 12724 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ed19411ee9203fa.jpg", - "response": "A bottle of Tommasi Fiorato 2012 sits on a table next to a wine glass.", - "id": 12725 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f16b8ed02fec56.jpg", - "response": "A large billboard for Yahoo is on the side of a building. The billboard has a yellow background with purple letters spelling Yahoo. There is a sun with a yellow face on top of the billboard. The billboard also has a blue and green design on the left side. Below the billboard is a blue and white sign that says Change starts 12:00:09 Keep up at Yahoo News.", - "id": 12726 - }, - { - "image_path": "/content/drive/MyDrive/combined/218ce3ffe461b0c5.jpg", - "response": "A sign for Ben's Chili Bowl, a yellow sign with red lettering.", - "id": 12727 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a78fad7b51e5757.jpg", - "response": "A street scene with a bus stop sign and a welcome sign. There is also a bus stop sign and a street sign that says \"Layout opens 9 July 2003.\"", - "id": 12728 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d40bfa3cfe95187.jpg", - "response": "The image shows two laptop computers sitting on a wooden table. The left laptop is an MSI computer and is black with red accents. The right laptop is a CyberPower computer and is black with orange accents. Both laptops have illuminated keyboards. The screens of the laptops are on and showing text. There are several lights underneath the table, illuminating the scene.", - "id": 12729 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c80f42d6c52d77.jpg", - "response": "A laptop with a picture of a white paper boat on the screen.", - "id": 12730 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d5c3b2236ec849d.jpg", - "response": "A billboard with a picture of a woman and the words \"More blue rinse, less blue language.\"", - "id": 12731 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f423bc259e2440e.jpg", - "response": "A glass of beer next to a bottle of beer.", - "id": 12732 - }, - { - "image_path": "/content/drive/MyDrive/combined/50ee670b75020226.jpg", - "response": "A Delta Airlines airplane is flying in the sky.", - "id": 12733 - }, - { - "image_path": "/content/drive/MyDrive/combined/493816f5e25dd687.jpg", - "response": "A sign for the Pony Soldier Motel is displayed on top of a building. The sign features a cowboy and is painted blue and white.", - "id": 12734 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cfa659487411884.jpg", - "response": "A Calvin Klein billboard featuring a woman in a bikini.", - "id": 12735 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c4ad956076d773.jpg", - "response": "a blue and white sign that says burnage on it", - "id": 12736 - }, - { - "image_path": "/content/drive/MyDrive/combined/136e3b1d432576fc.jpg", - "response": "A bottle of champagne with a yellow label that says Veuve Clicquot on it.", - "id": 12737 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c5b99e36e26e702.jpg", - "response": "A bottle of wine with a purple label that says Piaya do Tato on it.", - "id": 12738 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fbe63394c2f7c0e.jpg", - "response": "A large projector screen that says MyTEKSI on it.", - "id": 12739 - }, - { - "image_path": "/content/drive/MyDrive/combined/34847ad4d31c4bcb.jpg", - "response": "a restaurant sign that is yellow and blue", - "id": 12740 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e234120b711554.jpg", - "response": "A counter with a variety of bottles of champagne.", - "id": 12741 - }, - { - "image_path": "/content/drive/MyDrive/combined/34cb41f5e7fe6971.jpg", - "response": "A hand holding a glass of dark beer in front of a crowd of people.", - "id": 12742 - }, - { - "image_path": "/content/drive/MyDrive/combined/137f6277eda7d54b.jpg", - "response": "A book with a yellow and blue cover that says \"Ryugakki\" on it.", - "id": 12743 - }, - { - "image_path": "/content/drive/MyDrive/combined/08f5af79ef54a677.jpg", - "response": "In the image there is a collection of wine bottles. They are all lined up next to each other and some are in the background while others are in the foreground. The bottles are dark in color and most of them have a red top, which is the cork, that is attached to the bottle.", - "id": 12744 - }, - { - "image_path": "/content/drive/MyDrive/combined/378e7b3717a60584.jpg", - "response": "A billboard for Yuengling beer advertising their return in the fall of 2011.", - "id": 12745 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c6277ddd1f48e84.jpg", - "response": "An airplane on the runway with the word \"Mongolian\" on the side of it.", - "id": 12746 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea6ee71b645c098.jpg", - "response": "A billboard for the Scion brand of cars, featuring a red sports car on it.", - "id": 12747 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0e1d85127f1323.jpg", - "response": "An airplane with the number 0934 on the side of it.", - "id": 12748 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2d0903f0c3de00.jpg", - "response": "A close up of a bottle of scotch with the number 33 on it.", - "id": 12749 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d5af6868f093cbf.jpg", - "response": "A bottle of wine by Bernard Baudry from 2016 sits on a table. The label is orange and has a picture of a house on it.", - "id": 12750 - }, - { - "image_path": "/content/drive/MyDrive/combined/23df97d9ffa19a98.jpg", - "response": "A group of different kinds of beer on a counter.", - "id": 12751 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c69b29ea74138cd.jpg", - "response": "A row of shelves with many different types of bottles on them.", - "id": 12752 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ca5fc5ec5a6ada6.jpg", - "response": "A baseball player swinging a bat during a game.", - "id": 12753 - }, - { - "image_path": "/content/drive/MyDrive/combined/453132094d912e86.jpg", - "response": "A man in a grey suit standing behind a bar.", - "id": 12754 - }, - { - "image_path": "/content/drive/MyDrive/combined/2de0c2d46680ccea.jpg", - "response": "A living room with a couch and a coffee table. There are two large cans of paint on the table.", - "id": 12755 - }, - { - "image_path": "/content/drive/MyDrive/combined/3469306b68c773a3.jpg", - "response": "A group of people standing around talking to each other.", - "id": 12756 - }, - { - "image_path": "/content/drive/MyDrive/combined/1812168f8a5f1522.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 12757 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ca08964b27381c1.jpg", - "response": "A group of wine bottles on a table next to wine glasses.", - "id": 12758 - }, - { - "image_path": "/content/drive/MyDrive/combined/42462d619200801f.jpg", - "response": "A bottle of red wine sits next to a wooden wine crate.", - "id": 12759 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fac44c92fe75059.jpg", - "response": "A collection of wine bottles of various types are lined up on a counter. The bottles are closed and have stickers on the front of them.", - "id": 12760 - }, - { - "image_path": "/content/drive/MyDrive/combined/31190dbf77fde8fc.jpg", - "response": "A woman pointing to a slide show on a wall.", - "id": 12761 - }, - { - "image_path": "/content/drive/MyDrive/combined/305fd8c750a8fe94.jpg", - "response": "A white wall covered in writing and graffiti.", - "id": 12762 - }, - { - "image_path": "/content/drive/MyDrive/combined/2553d412fe1f2efe.jpg", - "response": "A white board with writing on it.", - "id": 12763 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d061e773d922e3d.jpg", - "response": "A bottle of Vermentino wine with a red background.", - "id": 12764 - }, - { - "image_path": "/content/drive/MyDrive/combined/39763fd39defd511.jpg", - "response": "A bottle of J. Lohr Seven Oaks Cabernet Sauvignon sits on a table next to a wine glass. The bottle is dark green and has a label with the name of the winery and the wine's vintage. The bottle is almost empty, with only a small amount of wine remaining.", - "id": 12765 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bfb7edad5eda02e.jpg", - "response": "A wooden shelf filled with various wine bottles and glasses.", - "id": 12766 - }, - { - "image_path": "/content/drive/MyDrive/combined/1163ff55a53f7904.jpg", - "response": "A man and a boy are standing on a sidewalk. The man is wearing a white shirt that says \"clean coal technology works\" on it. The boy is holding a box of pizza.", - "id": 12767 - }, - { - "image_path": "/content/drive/MyDrive/combined/49007e717e1a54d8.jpg", - "response": "A bottle of Hennessey V.S. is sitting on a table. The bottle is tall and made of glass. The label on the bottle is white and has a gold design in the center. The words HENNESSY V.S. are written in gold on the label. The Historic Limited Edition is written in black on the label. The words V.S. are written in gold on the bottle. The words HENNESSY are written in gold on the bottle. The words Very Special are written in gold on the label. The words Limited Edition are written in gold on the label. The words Historic are written in gold on the label. The words Cognac is written in gold on the label. The words 40% are written in gold on the label. The words Alc./Vol. are written in gold on the label. The words France is written in gold on the label. The words J Hennessy & Co is written in gold on the label. The cap on the bottle is gold.", - "id": 12768 - }, - { - "image_path": "/content/drive/MyDrive/combined/3296c4d1e1dea301.jpg", - "response": "A collection of various types of beer bottles are lined up on the floor.", - "id": 12769 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dff49fa414d460a.jpg", - "response": "A bottle of Vatan 2012 red wine next to a wine glass on a table.", - "id": 12770 - }, - { - "image_path": "/content/drive/MyDrive/combined/536b3beaa7d02ae9.jpg", - "response": "a bottle of wine (153,85),(857,995)", - "id": 12771 - }, - { - "image_path": "/content/drive/MyDrive/combined/434434eb3bb0e3df.jpg", - "response": "A bottle of Chateau de Tanay Les Virgiliades sits on a windowsill. The label is white with green and gold. The wine is white and has a screw cap.", - "id": 12772 - }, - { - "image_path": "/content/drive/MyDrive/combined/091ead67e276fb16.jpg", - "response": "A white board with red writing on it.", - "id": 12773 - }, - { - "image_path": "/content/drive/MyDrive/combined/4227b11453b3d28a.jpg", - "response": "The image shows a close up of three bottles of liquor on a counter. The three bottles are of different types of liquor and are displayed in a row. The first bottle is Ballantine's Pure Malt and is on the left. The second bottle is from Highland Park and is in the middle. The third bottle is Dalwhinnie and is on the right. The labels on the bottles show the different types of liquor they contain.", - "id": 12774 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bfe0f5b1d4cf3ed.jpg", - "response": "A bottle of tequila with a note taped to it that says \"I am a special tequila\".", - "id": 12775 - }, - { - "image_path": "/content/drive/MyDrive/combined/27a4755f98b51a7e.jpg", - "response": "A large presentation screen that says \"How to do updates\" at the top. The list of options below it are \"Text, Links, Photos, Videos, Polls, Highlight, Mention people/pages\"", - "id": 12776 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d666fc7e1087979.jpg", - "response": "A man with a back tattoo wearing blue and black shorts holding a green and white bag.", - "id": 12777 - }, - { - "image_path": "/content/drive/MyDrive/combined/52a8c1adafdd5adc.jpg", - "response": "In the image, there is a baseball player wearing a blue uniform and a baseball glove. The player is standing in a field and is in the process of throwing a baseball. The ball is in the air and appears to be in the process of being thrown by the player. The background features a building with a sign that reads \"Doctor.\"", - "id": 12778 - }, - { - "image_path": "/content/drive/MyDrive/combined/1166ae194a55e4fb.jpg", - "response": "In the image, a football player is wearing a red uniform with the number 5 on the back. The player has a headband on and is looking down. There are other players visible in the background, but they are not in focus. The football player's uniform is wet, likely from being out in the rain.", - "id": 12779 - }, - { - "image_path": "/content/drive/MyDrive/combined/167446b006c2a2c9.jpg", - "response": "The image features two women, both wearing a blue t-shirt. The woman on the left is wearing the t-shirt with the design on the front, while the woman on the right is wearing a plain white t-shirt. The design on the front of the blue t-shirt is for a non-profit organization that helps provide food to children in need. The design features the words \"Every child deserves to eat\" in large, bold letters, with a picture of a child and a heart symbol. The woman on the left is also wearing a necklace with a cross pendant.", - "id": 12780 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c487825b9d232a2.jpg", - "response": "A boy wearing an orange shirt and plaid shorts stands in front of a bulletin board. The board has the phrase \"Adventures in Learning\" on it and is decorated with images of hot air balloons. The boy is wearing an orange backpack and has his hands in his pockets.", - "id": 12781 - }, - { - "image_path": "/content/drive/MyDrive/combined/35dc992715d92ef9.jpg", - "response": "a man running a race in a blue tank top", - "id": 12782 - }, - { - "image_path": "/content/drive/MyDrive/combined/4296561e390eacee.jpg", - "response": "The image shows a group of men standing on a baseball field. They are wearing uniforms and are positioned near the pitcher's mound. Some of the men are holding baseball gloves and talking to each other.", - "id": 12783 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c220512d577825.jpg", - "response": "A baseball game is in progress on a field. A pitcher is in the midst of throwing a ball. He is wearing a grey uniform with a red number 44 on the front. The pitcher is also wearing a black baseball glove on his left hand. He is standing on the pitcher's mound, which is a raised area in the middle of the field. There is another player in the background, wearing a baseball glove and holding a baseball bat. He is positioned to the left of the pitcher. The field is fenced in and there are several people in the background, some of which are wearing baseball caps.", - "id": 12784 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ee82de7e30cd7e.jpg", - "response": "A baseball player for the Washington team on the field during a game.", - "id": 12785 - }, - { - "image_path": "/content/drive/MyDrive/combined/480284553cd7eec5.jpg", - "response": "A woman with dark hair and bright red lipstick wearing a white t-shirt with the words \"Stop Hammer Time\" printed on it.", - "id": 12786 - }, - { - "image_path": "/content/drive/MyDrive/combined/54542dbf61b58837.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 12787 - }, - { - "image_path": "/content/drive/MyDrive/combined/4de702cba678e825.jpg", - "response": "A man in a 49ers outfit and hat sitting on a stool next to a cardboard box.", - "id": 12788 - }, - { - "image_path": "/content/drive/MyDrive/combined/25eaf6800180b68c.jpg", - "response": "A woman with a scarf on her shoulders with a picture of William and Kate on it.", - "id": 12789 - }, - { - "image_path": "/content/drive/MyDrive/combined/55120ce9bd18b5d9.jpg", - "response": "A baseball player wearing a red jersey with the number 34 on it.", - "id": 12790 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f229afa98032dfe.jpg", - "response": "A soccer player wearing a black jersey with white stripes and the number 35 on it.", - "id": 12791 - }, - { - "image_path": "/content/drive/MyDrive/combined/431ab77a47f6e0f5.jpg", - "response": "A baseball player stands on a base in a baseball field.", - "id": 12792 - }, - { - "image_path": "/content/drive/MyDrive/combined/bdf57b4bbf9ee423.jpg", - "response": "A baseball team of boys in blue and white uniforms is practicing on a grass field. They are all wearing baseball gloves and have baseball bats. There are several baseballs scattered on the field.", - "id": 12793 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c41297e70de8e0.jpg", - "response": "In the image, there is a boy wearing a white hat that looks like a piece of paper. The boy is wearing a white shirt with dark blue letters on it. The shirt has short sleeves and is tucked in. The boy has his hands behind his back. He is standing in a garden with trees in the background. The trees have green leaves. The garden is full of green plants and flowers. There is a fence in front of the boy. On the right side of the image, there is a person wearing a white shirt.", - "id": 12794 - }, - { - "image_path": "/content/drive/MyDrive/combined/10688acc904450b9.jpg", - "response": "The image shows a man standing outside a small white building, speaking to a crowd of people who are sitting in white chairs. The people are engaged and listening to the man.", - "id": 12795 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3e16d01a760519.jpg", - "response": "a man in a yellow jacket standing in front of a body of water", - "id": 12796 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ddbf66124b630e0.jpg", - "response": "The image shows two men standing on a baseball field. Both men are wearing blue and red baseball uniforms with the word \"Texas\" on the front. The man on the left is holding a baseball in his hand. They are both wearing baseball caps and have white pants. The man on the right is wearing a watch on his left wrist. The background includes a fence, a chain-link fence, and trees.", - "id": 12797 - }, - { - "image_path": "/content/drive/MyDrive/combined/31469835ebc9bf04.jpg", - "response": "In the image, there are two baseball players on the field. One of the players is a woman and she is wearing a blue and white uniform. She is standing in the dirt and getting ready to throw the ball. The other player is a man and he is wearing a white and blue uniform. He is also standing in the dirt and holding a baseball glove. There are several other people in the background, some of them are sitting on chairs and some of them are standing. There are also a couple of umbrellas set up in the area. The sky is blue and there are power lines above the field.", - "id": 12798 - }, - { - "image_path": "/content/drive/MyDrive/combined/d6729c6a6c85c098.jpg", - "response": "A boy in a Jaws shirt is holding a plastic shark and standing next to another boy in a costume.", - "id": 12799 - }, - { - "image_path": "/content/drive/MyDrive/combined/12dc23bbec17ac1f.jpg", - "response": "a man holding a framed jersey with the number 12 on it", - "id": 12800 - }, - { - "image_path": "/content/drive/MyDrive/combined/325b791911b5d115.jpg", - "response": "a man in a soccer uniform standing on a field", - "id": 12801 - }, - { - "image_path": "/content/drive/MyDrive/combined/23452955f150fa47.jpg", - "response": "In the image, a basketball game is taking place in a gymnasium. A player for the Bobcats team is holding the ball and trying to pass it to another player. There are other players on the court, including one in a white and red jersey, another in a black and white jersey, and a third player wearing a uniform.", - "id": 12802 - }, - { - "image_path": "/content/drive/MyDrive/combined/5457809a44b4b7b6.jpg", - "response": "A jersey with a red and white diagonal stripe with a white shield with black letters inside.", - "id": 12803 - }, - { - "image_path": "/content/drive/MyDrive/combined/35dc43a69f2ae223.jpg", - "response": "A baseball player for the Giants is standing on the field.", - "id": 12804 - }, - { - "image_path": "/content/drive/MyDrive/combined/500c81a0419347d3.jpg", - "response": " A baseball player(346,188),(774,926) at bat with a blue helmet(515,193),(603,278) and blue and white uniform(370,277),(769,915).", - "id": 12805 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c5fa952d1391d3b.jpg", - "response": "The baseball player in the blue hat and shirt is pointing towards something. There are other players in the dugout, one of which is holding a water bottle.", - "id": 12806 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c6bf79417feca1b.jpg", - "response": "A baby laying in bed holding a yellow and white binky.", - "id": 12807 - }, - { - "image_path": "/content/drive/MyDrive/combined/441ce88bbffe4443.jpg", - "response": "A baseball pitcher in a blue jersey with a red star on it, standing on the mound and throwing a baseball.", - "id": 12808 - }, - { - "image_path": "/content/drive/MyDrive/combined/23bff5fa81c657ed.jpg", - "response": "The image features a young woman standing on a stage holding an award. She is wearing a black top and white shorts. Another young woman, dressed in black and white, stands to her left. A man dressed in a red shirt and black shorts stands to the right of the women. There is a banner in the background advertising the Campbelltown City Council. The banner is white and features red and blue writing. A table is visible in the foreground, with several cups and a bottle on it. A chair is also visible in the background.", - "id": 12809 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f7d731f41b9937.jpg", - "response": "a man wearing a white bathrobe with the words The Peninsula on the front of it", - "id": 12810 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c011703e96292f.jpg", - "response": "A book cover with two women running side by side.", - "id": 12811 - }, - { - "image_path": "/content/drive/MyDrive/combined/322d2b50cac8fd6f.jpg", - "response": "An older man wearing a white and blue shirt is looking down.", - "id": 12812 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bb9fcee31a7efb7.jpg", - "response": "A man wearing a red shirt and a red baseball cap.", - "id": 12813 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e149c99f6aa6ec.jpg", - "response": "In the image, two young men are playing basketball against each other. One of the players is number 13 and is dribbling the ball while the other player, number 5, is guarding him. There is a crowd of people watching the game, with some of them sitting on a bench and others standing behind them. The players are wearing uniforms and the basketball is in the foreground.", - "id": 12814 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c637c071857e10d.jpg", - "response": "A woman with long blonde hair wearing a green and white shirt.", - "id": 12815 - }, - { - "image_path": "/content/drive/MyDrive/combined/44db5e0ef2d05562.jpg", - "response": "A baseball player wearing a blue jersey is standing on the field.", - "id": 12816 - }, - { - "image_path": "/content/drive/MyDrive/combined/2baf2267debf5518.jpg", - "response": "a baseball player in a white and blue uniform", - "id": 12817 - }, - { - "image_path": "/content/drive/MyDrive/combined/092ff6463c2f9dcd.jpg", - "response": "The image shows two baseball players standing on a baseball field. They are wearing white uniforms and have black caps. One of the players is holding a baseball glove in his left hand, while the other player is not wearing a glove. The field has a dirt pitcher's mound and a grassy area for the rest of the field.", - "id": 12818 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e935dc8bdd3a7ff.jpg", - "response": "The two men are wearing black tops.", - "id": 12819 - }, - { - "image_path": "/content/drive/MyDrive/combined/1092dfb2598694c4.jpg", - "response": "A group of young people wearing orange shirts are standing around a little girl who is wearing a blue shirt. The girl is making a face and holding her hands out.", - "id": 12820 - }, - { - "image_path": "/content/drive/MyDrive/combined/456919db796731b0.jpg", - "response": "Four men are posing for a picture on a squash court. They are wearing different outfits. The man on the far left is wearing a black jacket and a white hat. The man in the middle is wearing a green and black jacket. The man on the right in the middle is wearing a blue shirt with the word \"Sport\" written in yellow, and white letters below it. The last man is wearing a blue shirt with the word \"Jamba\" written in yellow.", - "id": 12821 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f9c7c31a4f00177.jpg", - "response": "A baseball player wearing a blue and white uniform and a blue hat is standing on the field.", - "id": 12822 - }, - { - "image_path": "/content/drive/MyDrive/combined/30e57ce6d04f2ea9.jpg", - "response": "A woman in a blue shirt and white bikini bottom standing with her hands on her behind.", - "id": 12823 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c9dc46d65ccfdd5.jpg", - "response": "A baseball player in a white uniform with the number 48 on the back is running to a base.", - "id": 12824 - }, - { - "image_path": "/content/drive/MyDrive/combined/357b8de55f8cd38a.jpg", - "response": "A woman with blonde hair wearing a black shirt with the words LA LIFT STYLES on it.", - "id": 12825 - }, - { - "image_path": "/content/drive/MyDrive/combined/545c64649d28aed9.jpg", - "response": "a man in a yellow shirt is shaking hands(342,586),(402,668) with a man(352,201),(690,999) in a green shirt(180,418),(319,765)", - "id": 12826 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b0716809ec3f2e.jpg", - "response": "The image shows a basketball game in progress. There are four women on the court, wearing uniforms and playing the game. One woman is holding the basketball, while the others are trying to defend her. The court is indoors, and there is a banner in the background.", - "id": 12827 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e16494d9d689f60.jpg", - "response": "A man in a military uniform is presenting a certificate to another man in a military uniform.", - "id": 12828 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e4b44be4f1ab45b.jpg", - "response": "a man with blonde hair wearing a white shirt", - "id": 12829 - }, - { - "image_path": "/content/drive/MyDrive/combined/318fb50e2e0f0ad4.jpg", - "response": "A pitcher in a red jersey winds up to throw a pitch.", - "id": 12830 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee1600178f0018a.jpg", - "response": "A poster of a woman in a baseball uniform is on a yellow wall.", - "id": 12831 - }, - { - "image_path": "/content/drive/MyDrive/combined/4afc2ef4682a166f.jpg", - "response": "A Raiders jacket hanging on a door.", - "id": 12832 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c32f03db00503d.jpg", - "response": "A team of young men in white jerseys with red lettering and logos are posing for a photo.", - "id": 12833 - }, - { - "image_path": "/content/drive/MyDrive/combined/42003564167e4c07.jpg", - "response": "Four girls playing basketball in a gym.", - "id": 12834 - }, - { - "image_path": "/content/drive/MyDrive/combined/13bd80d9fe455b9b.jpg", - "response": "A woman wearing a red shirt with a white background.", - "id": 12835 - }, - { - "image_path": "/content/drive/MyDrive/combined/25122cf884d53daa.jpg", - "response": "The image features two cheerleaders for the University of Wisconsin. They are standing next to a large sign that reads \"University of Wisconsin\" in red and white. The cheerleaders are wearing red and white uniforms with pom poms. They are standing on a float that is going down a street.", - "id": 12836 - }, - { - "image_path": "/content/drive/MyDrive/combined/459aad2fbe21b3a3.jpg", - "response": "A baseball game is being played on a field. There are several players wearing blue and white uniforms and red caps. One player is throwing a ball, while others are standing on the field. A fence surrounds the field, and a bench is visible in the background.", - "id": 12837 - }, - { - "image_path": "/content/drive/MyDrive/combined/2252e506dc663905.jpg", - "response": "A man wearing a Hotwire shirt is standing in a room with two desks. He is holding a white shirt in his left hand and flexing his bicep. There is a chair behind him and another chair to his left. On the left side of the room, there is a whiteboard and a stack of books. A laptop is on one of the desks and there are two cups on the right side of the room.", - "id": 12838 - }, - { - "image_path": "/content/drive/MyDrive/combined/18da3dc0e4285417.jpg", - "response": "A man standing over a woman who is sitting in a chair.", - "id": 12839 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f0d11be420dbd3.jpg", - "response": "The image shows a baseball pitcher on a field, presumably at a professional game. The pitcher is wearing a Giants uniform and is in the middle of a windup, preparing to throw the ball. He is standing on the pitcher's mound, which is covered in dirt.", - "id": 12840 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f9316243849ffd0.jpg", - "response": "A woman wearing a Toronto Maple Leafs jersey points to something off camera.", - "id": 12841 - }, - { - "image_path": "/content/drive/MyDrive/combined/2616360a14cb6dc6.jpg", - "response": "In the image, there are two women dressed in blue and yellow softball uniforms. They are standing on a field with a glove and a baseball mitt. Both women are smiling and appear to be enjoying themselves.", - "id": 12842 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cd1e03b29f5b1ae.jpg", - "response": "A group of women are playing soccer on a field. There are at least two women actively playing the game, one wearing a red uniform and the other wearing a white uniform. They are both running after the soccer ball, which is located towards the right side of the field. There are other players on the field, but they are not actively participating in the game.", - "id": 12843 - }, - { - "image_path": "/content/drive/MyDrive/combined/30fb25fafbafcc6b.jpg", - "response": "A man in a red and blue jersey is standing next to a man in a black Adidas jacket.", - "id": 12844 - }, - { - "image_path": "/content/drive/MyDrive/combined/3513535aa35d0d97.jpg", - "response": "A man(116,96),(594,971) standing with a gun.", - "id": 12845 - }, - { - "image_path": "/content/drive/MyDrive/combined/36fd42cb77e64356.jpg", - "response": "A softball team is gathered on the field, with some players high-fiving and others standing around. They are all wearing blue and white uniforms.", - "id": 12846 - }, - { - "image_path": "/content/drive/MyDrive/combined/323b9351f4ac782d.jpg", - "response": "The image shows two men standing next to each other, both dressed in business suits and ties. They are both holding a certificate, which is placed in front of them. The certificate is white and features black text. The men are smiling for the camera.", - "id": 12847 - }, - { - "image_path": "/content/drive/MyDrive/combined/6413b934b80037f7.jpg", - "response": "A man standing in a field at night, holding a white frisbee in front of his face.", - "id": 12848 - }, - { - "image_path": "/content/drive/MyDrive/combined/137e4c5d84c6437a.jpg", - "response": "A man with a goatee wearing a jersey with the number 8 on it.", - "id": 12849 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a21e42e79fd0ac.jpg", - "response": "A person holding a book of answers by carol bolt in a book store.", - "id": 12850 - }, - { - "image_path": "/content/drive/MyDrive/combined/304223d90cc59315.jpg", - "response": "a man wearing a white shirt with the railhawks soccer team logo on it", - "id": 12851 - }, - { - "image_path": "/content/drive/MyDrive/combined/176a79023fefdad9.jpg", - "response": "A group of three children sitting on a couch reading books.", - "id": 12852 - }, - { - "image_path": "/content/drive/MyDrive/combined/09cf14b29f5b60b0.jpg", - "response": "A stack of six books. The books are about teaching and learning. The top book is \"Speak Like Churchill, Stand Like Lincoln\" by Humes. The next book down is \"Tools for Teaching\" by Morrison, Ross, and Kemp. The third book down is \"Beautiful Evidence\" by Tufte. The fourth book down is \"Visual Explanations\" by Tufte. The bottom two books are \"Envisioning Information\" by Tufte and \"The Visual Display of Quantitative Information\" by Tufte.", - "id": 12853 - }, - { - "image_path": "/content/drive/MyDrive/combined/53ebcb6c5e0c1da5.jpg", - "response": "A magazine cover with the title The Stockbroker and City Investor.", - "id": 12854 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c8f87ab17b2b66a.jpg", - "response": "A woman with long black hair and wearing a black tank top poses for the camera with her arm around another woman who is wearing a purple dress. They are both smiling at the camera.", - "id": 12855 - }, - { - "image_path": "/content/drive/MyDrive/combined/45f3e197c65f2cce.jpg", - "response": "A magazine cover for \"Black Castle\" with a man in a red coat falling to the ground while a man in a black robe looks on.", - "id": 12856 - }, - { - "image_path": "/content/drive/MyDrive/combined/35c4873861d8be88.jpg", - "response": "a pitcher in a blue and white baseball uniform is winding up to throw a ball", - "id": 12857 - }, - { - "image_path": "/content/drive/MyDrive/combined/434891a8e947f19d.jpg", - "response": "A bookshelf with books on it.", - "id": 12858 - }, - { - "image_path": "/content/drive/MyDrive/combined/479bd566caea06c6.jpg", - "response": "A wooden table with several Time magazine covers on it.", - "id": 12859 - }, - { - "image_path": "/content/drive/MyDrive/combined/33e74af2ee7792d9.jpg", - "response": "The image shows a group of people standing in a large room with a blue and yellow floor. They are all wearing roller blades and appear to be huddled together. Some of the people are wearing helmets and some are not. In the background, there is a banner hanging on a wall and a clock mounted on the wall.", - "id": 12860 - }, - { - "image_path": "/content/drive/MyDrive/combined/0afc81e9053d2447.jpg", - "response": "A bottle of Shiraz wine from the Wynns Cognarara Estate sits on a table. The wine bottle is wrapped in plastic and has a label that features a picture of a house and trees. There is a bag of red and white truffles next to the wine bottle.", - "id": 12861 - }, - { - "image_path": "/content/drive/MyDrive/combined/131af27cb71a9af1.jpg", - "response": "The man in the blue cycling shirt is holding flowers in one hand and a glass award in the other hand. He is standing on a podium with other people.", - "id": 12862 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee7c3539b6b795e.jpg", - "response": "Two men(376,39),(996,996)(1,125),(443,988) standing outside a building.", - "id": 12863 - }, - { - "image_path": "/content/drive/MyDrive/combined/27034b61f42236a6.jpg", - "response": "A book with a black and white picture of a man holding a scythe on the cover.", - "id": 12864 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c127dbd735279a.jpg", - "response": "A person holding a book titled Twitter Power 3.0.", - "id": 12865 - }, - { - "image_path": "/content/drive/MyDrive/combined/39641cbcdc56c156.jpg", - "response": "An open book with the words \"download free books\" written over it. The book is on a table and there is a bookshelf in the background.", - "id": 12866 - }, - { - "image_path": "/content/drive/MyDrive/combined/3757e99cde972c82.jpg", - "response": "A person holding a book called Quantum Finance.", - "id": 12867 - }, - { - "image_path": "/content/drive/MyDrive/combined/10933273d35d1849.jpg", - "response": "A box filled with lots of Emporio Armani underwear packages.", - "id": 12868 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1b686e3a10f0b2.jpg", - "response": "A book titled \"Gone to the Grave\" is open and sitting on a table. Another book is behind it and both are on a wooden surface.", - "id": 12869 - }, - { - "image_path": "/content/drive/MyDrive/combined/329a9f1e8b3c984b.jpg", - "response": "In the image, a woman is standing on a baseball field, holding a baseball in her hand. She is wearing a uniform and appears to be getting ready to throw the ball.", - "id": 12870 - }, - { - "image_path": "/content/drive/MyDrive/combined/43330c94ef554d64.jpg", - "response": "A man standing at a podium with a microphone in front of a red curtain.", - "id": 12871 - }, - { - "image_path": "/content/drive/MyDrive/combined/2612b5abb6c1028a.jpg", - "response": "A group of women wearing blue and red uniforms are gathered around a wooden ladder. They are sitting on benches and chairs, and some of them are holding water bottles. One woman is wearing glasses and has a bottle in her hand. Another woman has a helmet on her lap. A backpack is placed on the wooden ladder, and there is a bottle near the bottom of the ladder.", - "id": 12872 - }, - { - "image_path": "/content/drive/MyDrive/combined/0919d46947200b8a.jpg", - "response": "A book with the title \"Handbook of Magazine Article Writing\" written on the cover.", - "id": 12873 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f88d01fa21ef36.jpg", - "response": "A glass window with a sign on it that says \"The Next Big Thing\" in grey and red.", - "id": 12874 - }, - { - "image_path": "/content/drive/MyDrive/combined/46710392a1f23cda.jpg", - "response": "A bag with a number of items on top of it.", - "id": 12875 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a15f7862f4ef423.jpg", - "response": "A woman in a blue shirt is playing a game of softball.", - "id": 12876 - }, - { - "image_path": "/content/drive/MyDrive/combined/410af52c01a0e198.jpg", - "response": "A woman pushing a baby in a stroller down a set of stairs.", - "id": 12877 - }, - { - "image_path": "/content/drive/MyDrive/combined/08be3964ac87c44e.jpg", - "response": "A shelf full of different vhs movies.", - "id": 12878 - }, - { - "image_path": "/content/drive/MyDrive/combined/26d5c465a5b72bb4.jpg", - "response": "A newspaper article about a ballerina is open to a page with a picture of a ballerina.", - "id": 12879 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af71f47c353cca1.jpg", - "response": "A close up of a row of cookbooks on a shelf. The book covers are white, red, green, and blue. The book on the left is called The Baking Book by Marion Cunningham. The book in the center is called The Joy of Cooking. The book on the right is called New Basics Cookbook.", - "id": 12880 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e3e36742f841cf1.jpg", - "response": "A book cover with the title Episto in the center. The title is in a fancy black font. The cover is ornately decorated with a border featuring a design of a man holding a shield with a snake on it.", - "id": 12881 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c57a5e5739ce3cc.jpg", - "response": "An open book with a black and white illustration of a group of men standing around a man who is laying on the ground. The book is open to page 43.", - "id": 12882 - }, - { - "image_path": "/content/drive/MyDrive/combined/10866ac6a90c3b4b.jpg", - "response": "An old wooden crate that says Drink Moxie on it.", - "id": 12883 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e963e9ed760d238.jpg", - "response": "An album cover with the name Johnny Cash and June Carter on it.", - "id": 12884 - }, - { - "image_path": "/content/drive/MyDrive/combined/3edd9289a3bb8c7a.jpg", - "response": "In the image there is a large pile of chocolate bars. They are displayed in a way that shows the different colors and designs of the wrappers. The chocolate bars are stacked on top of each other and some are leaning against a wall.", - "id": 12885 - }, - { - "image_path": "/content/drive/MyDrive/combined/20ddd69065fe74c7.jpg", - "response": "A record album cover for a Bach piece performed by Helmut Walcha.", - "id": 12886 - }, - { - "image_path": "/content/drive/MyDrive/combined/46bde8888333a6e8.jpg", - "response": "A magazine spread open to an article about Rimsky-Korsakov, Debussy, Turina.", - "id": 12887 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a586aab280588b7.jpg", - "response": "A table with five books on it.", - "id": 12888 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8c51e27c11db9d.jpg", - "response": "A green book with gold writing.", - "id": 12889 - }, - { - "image_path": "/content/drive/MyDrive/combined/4954614d0a19261f.jpg", - "response": "The image shows a table with a map on it and several books scattered on top of the map. The books are in various colors and sizes, including a blue book, a yellow book, and a black book. Some of the books are open, while others are closed. There is also a folded map on the table. The table appears to be made of wood.", - "id": 12890 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e3ff9b1e17c3a2.jpg", - "response": "A dictionary with a magnifying glass on top of it. The magnifying glass is casting a shadow that looks like a heart.", - "id": 12891 - }, - { - "image_path": "/content/drive/MyDrive/combined/351d4e5baca9833a.jpg", - "response": "A book opened to page 4 titled \"Children in homes of special care\"", - "id": 12892 - }, - { - "image_path": "/content/drive/MyDrive/combined/4291d7f31aa881c8.jpg", - "response": "A stack of books on a table.", - "id": 12893 - }, - { - "image_path": "/content/drive/MyDrive/combined/44e8489215f4ed80.jpg", - "response": "A stack of books is sitting on a wooden table. The books are piled on top of each other and vary in size and color. Some of the titles on the books include \"The Alphabet Book\", \"The Dangerous Book for Boys\", \"Mother Goose\", \"Of Mice and Men\", and \"The Art of Racing in the Rain\". The books are also labeled with their respective authors, such as \"Lothian\" and \"Halgren\".", - "id": 12894 - }, - { - "image_path": "/content/drive/MyDrive/combined/3980fecf9e5670d6.jpg", - "response": "A book with a black and white picture of a man throwing a rock on the cover.", - "id": 12895 - }, - { - "image_path": "/content/drive/MyDrive/combined/112e22a2437df84a.jpg", - "response": "A woman in a fancy dress is looking at a bright light.", - "id": 12896 - }, - { - "image_path": "/content/drive/MyDrive/combined/39afd5154644d237.jpg", - "response": "A piece of paper with a fancy script written in french.", - "id": 12897 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a2683ec5384999.jpg", - "response": "A sign about the cupboard under the stairs from the Harry Potter series.", - "id": 12898 - }, - { - "image_path": "/content/drive/MyDrive/combined/25924a477775abda.jpg", - "response": "A blue book is on the bottom and is titled 2009 Culture Book. Above it is a book titled Visual Arts Units for All Levels. Above that is a book titled Fit for Adventure. Above that is a book titled Ink in the Stream. Above that is a book titled Teacher Tools and Professional Development. Above that is a book titled Here Comes Everybody. The books are stacked on top of each other.", - "id": 12899 - }, - { - "image_path": "/content/drive/MyDrive/combined/184f34e99561fee2.jpg", - "response": "A wire basket full of books and software.", - "id": 12900 - }, - { - "image_path": "/content/drive/MyDrive/combined/45ca32444a54a415.jpg", - "response": "A row of books on a shelf.", - "id": 12901 - }, - { - "image_path": "/content/drive/MyDrive/combined/26cc960478fdf78f.jpg", - "response": "A vintage book cover of a story called Ringstones.", - "id": 12902 - }, - { - "image_path": "/content/drive/MyDrive/combined/1691b35b4ac9a18f.jpg", - "response": "A display case with a record player, a book, and several posters.", - "id": 12903 - }, - { - "image_path": "/content/drive/MyDrive/combined/165cdd447fa22253.jpg", - "response": "A book is open to a page with text in Latin. The book is made of parchment and the pages are yellowed. The text is printed in black.", - "id": 12904 - }, - { - "image_path": "/content/drive/MyDrive/combined/296b79fd6268015d.jpg", - "response": "A bookshelf with many books on it.", - "id": 12905 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e5917cbacb8ee8.jpg", - "response": "A woman sitting at a desk with a laptop and a wall covered in papers behind her.", - "id": 12906 - }, - { - "image_path": "/content/drive/MyDrive/combined/1de6e685f8b33ec7.jpg", - "response": "An open book with some text on it.", - "id": 12907 - }, - { - "image_path": "/content/drive/MyDrive/combined/22566043a64af615.jpg", - "response": "A stack of red and white ReDirect Guide books.", - "id": 12908 - }, - { - "image_path": "/content/drive/MyDrive/combined/1486b38968092c27.jpg", - "response": "A green book with gold lettering and a gold microscope on the cover.", - "id": 12909 - }, - { - "image_path": "/content/drive/MyDrive/combined/546e27f604a7a342.jpg", - "response": "A model ship on a table with books and a sign that says Mus\u00e9e maritime Lu\u00e9ville et Portuaire de Rouen.", - "id": 12910 - }, - { - "image_path": "/content/drive/MyDrive/combined/321502988293258a.jpg", - "response": "A poster for the movie Titanic with a ship on it.", - "id": 12911 - }, - { - "image_path": "/content/drive/MyDrive/combined/14376bf131ad110e.jpg", - "response": "A book opened to two pages, one page is titled Camp Birkett in 1919 and the other is titled And to think--we roll out of a comfortable canvas tent for this.", - "id": 12912 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ab4096508df1b11.jpg", - "response": "A record album cover for Chopin S\u00e4mtliche Walzer by Sondra Bianca. The cover is green with a tree on it.", - "id": 12913 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0d3773f7edbe0e.jpg", - "response": "A book with the title Wind Sand und Sterne written on it.", - "id": 12914 - }, - { - "image_path": "/content/drive/MyDrive/combined/397695fe9b235996.jpg", - "response": "A large collection of books on a table.", - "id": 12915 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d44346f4de84085.jpg", - "response": "A book cover with a man looking through a telescope at a spaceship flying over a globe of an alien earth.", - "id": 12916 - }, - { - "image_path": "/content/drive/MyDrive/combined/09baac4ccc0253f0.jpg", - "response": "A book with a person cutting paper with scissors.", - "id": 12917 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f231c8f8ac431bf.jpg", - "response": "The image is a book cover for \"Sixteen Famous American Plays\" and it is a red book with white text. The title of the book is written in large white letters at the top of the cover. The subtitle \"All Complete & Unabridged\" is written in smaller white letters below the title. The book is published by Modern Library Giant.", - "id": 12918 - }, - { - "image_path": "/content/drive/MyDrive/combined/530aa3b8a116d7d3.jpg", - "response": "an open book with writing on it", - "id": 12919 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7bafa66f25a969.jpg", - "response": "A poster with a man in a spacesuit looking at a sheep on a space ship.", - "id": 12920 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f609e405ad6a8c8.jpg", - "response": "A book cover for a science fiction novel called The Eyes of the Overworld by Jack Vance. The cover features a giant tentacled monster with red eyes standing over a man and a woman who appear to be dead. The monster is depicted in green and grey tones.", - "id": 12921 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cdcc7a1e4084869.jpg", - "response": "A book with a red bookmark in it.", - "id": 12922 - }, - { - "image_path": "/content/drive/MyDrive/combined/554140b113c2f1c9.jpg", - "response": "A table with a number of items on it.", - "id": 12923 - }, - { - "image_path": "/content/drive/MyDrive/combined/342f4c0ac57f578c.jpg", - "response": "A book cover with a red and black color scheme. The title is in white and it says \"Genesis revisitado\" at the top. There is an image of a spaceship in the middle and it is flying over a body of water.", - "id": 12924 - }, - { - "image_path": "/content/drive/MyDrive/combined/49f3353649b65332.jpg", - "response": "A car driving down a highway near a exit sign.", - "id": 12925 - }, - { - "image_path": "/content/drive/MyDrive/combined/08220f8d780e72dd.jpg", - "response": "A street scene with a car on the left side of the street and two speed limit signs on the right side of the street.", - "id": 12926 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b484310f5e35b59.jpg", - "response": "The image depicts a lacrosse game in progress. There are two players from opposing teams on the field, one wearing a red uniform with the number 2 and the other in a white uniform. The player wearing red is holding a lacrosse stick and has a ball attached to the stick. The player in white is behind the player in red, with his hands on his knees. Both players are wearing helmets for safety. The field is covered in grass and there are trees in the background.", - "id": 12927 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b1fd1e1a26d3676.jpg", - "response": "stop watch for bikes(268,328),(984,887)", - "id": 12928 - }, - { - "image_path": "/content/drive/MyDrive/combined/18438e8b72b980af.jpg", - "response": "a sign that is green and yellow", - "id": 12929 - }, - { - "image_path": "/content/drive/MyDrive/combined/22155dc392f06ef2.jpg", - "response": "A ruler with the numbers on it is shown. The website BookWormLaser.com is also visible.", - "id": 12930 - }, - { - "image_path": "/content/drive/MyDrive/combined/29cc685993149e79.jpg", - "response": "A table with a bunch of beauty products on it.", - "id": 12931 - }, - { - "image_path": "/content/drive/MyDrive/combined/082f50863ffb298a.jpg", - "response": "A soccer game is in progress on a grassy field. The players are wearing green and white uniforms. One player is sitting on the ground in pain and holding his knee. Another player is holding a yellow card and pointing to the player on the ground. There are cars parked along the edge of the field.", - "id": 12932 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eeb343d528ae565.jpg", - "response": "A man is in the air over a long jump pit.", - "id": 12933 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d875b6e245ae3fa.jpg", - "response": "A group of women playing volleyball in a gym.", - "id": 12934 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ff9a60271b083c9.jpg", - "response": "A sign(264,273),(723,411) that says France on it.", - "id": 12935 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e7f31fd2be304a6.jpg", - "response": "A street sign showing the direction of South A1A and Beaches.", - "id": 12936 - }, - { - "image_path": "/content/drive/MyDrive/combined/5142c6b25a1c79e3.jpg", - "response": "A street scene with a stop sign, a no u-turn sign, a round blue sign with a white arrow and a red and white yield sign.", - "id": 12937 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e47117fa6692fc.jpg", - "response": "A collection of three books about tea.", - "id": 12938 - }, - { - "image_path": "/content/drive/MyDrive/combined/34957104c7caf05b.jpg", - "response": "A collection of children's books on a wooden table.", - "id": 12939 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f1f74cbccb4ad3b.jpg", - "response": "A soccer player wearing a green jersey and blue shorts runs after a soccer ball on a field.", - "id": 12940 - }, - { - "image_path": "/content/drive/MyDrive/combined/276e2209abeefb48.jpg", - "response": "A image of a sign. The sign is red and white and says \"CAUTION Otters Crossing\" in black letters. Underneath the triangle is a picture of a otter. The sign is on a street and the sky is cloudy.", - "id": 12941 - }, - { - "image_path": "/content/drive/MyDrive/combined/111403cb5b50992f.jpg", - "response": "A street sign warning of a steam fair ahead.", - "id": 12942 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dbc63b5f303a051.jpg", - "response": "A sign that is about Barons Court.", - "id": 12943 - }, - { - "image_path": "/content/drive/MyDrive/combined/38591a1a5845ad69.jpg", - "response": "A table with a keg of beer and several wine glasses on it.", - "id": 12944 - }, - { - "image_path": "/content/drive/MyDrive/combined/396c460278e350a0.jpg", - "response": "A can of Barq's Root Beer sits on a table next to a receipt.", - "id": 12945 - }, - { - "image_path": "/content/drive/MyDrive/combined/4425a34121ab4fd7.jpg", - "response": "The image is a painting of a city scene with a river running through the middle of it. The buildings are old and painted in yellow and white. There are several boats on the river and several people are in the scene. Some are walking on the street, some are standing on the steps of a building, and some are in a boat on the river. There are several bridges in the scene and a church with a dome on the right.", - "id": 12946 - }, - { - "image_path": "/content/drive/MyDrive/combined/322452ee072dd8bb.jpg", - "response": "a poster on the wall for a anime called \"NEW\"", - "id": 12947 - }, - { - "image_path": "/content/drive/MyDrive/combined/2addc871f82a9e72.jpg", - "response": "A store shelf filled with a variety of canned goods, with a large amount of cans of Spam.", - "id": 12948 - }, - { - "image_path": "/content/drive/MyDrive/combined/113bd52cfaeabb34.jpg", - "response": "A silver can of Coca Cola sits on a rock.", - "id": 12949 - }, - { - "image_path": "/content/drive/MyDrive/combined/12de3d723a17397e.jpg", - "response": "A can of Diet Coke with the words \"Share a Diet Coke with your sweetie\" written on it.", - "id": 12950 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ea5355fe48bb7f.jpg", - "response": "A collection of dental hygiene products including toothbrushes, floss, mouthwash, and toothpaste.", - "id": 12951 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a6025e6a870aa89.jpg", - "response": "A table with a wooden top and a blue bottom. There are two paper place mats on the table. One of the place mats is for Pirate Bay Mermaid Cove. There is a cartoon image of a mermaid on the place mat.", - "id": 12952 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c0cbaac8d5a2528.jpg", - "response": "A book cover with a yellow background and black text. The title is \"Filles et Garcons\" by Anatole France. There is an illustration of three children riding a wooden horse. The horse is a rocking horse and the children are a boy and a girl. The horse is galloping and the children are holding on with their hands.", - "id": 12953 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d35c2c8b61e2b1.jpg", - "response": "A can of Phillips Chil Rock India Session Ale next to a glass filled with the beer.", - "id": 12954 - }, - { - "image_path": "/content/drive/MyDrive/combined/0993e658e1c596f9.jpg", - "response": "A measuring cup with liquid being poured into it.", - "id": 12955 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e5cdce20c87bf21.jpg", - "response": "A glass of beer next to a can of beer on a wooden table.", - "id": 12956 - }, - { - "image_path": "/content/drive/MyDrive/combined/42207702ddb341c2.jpg", - "response": "A bottle and two cans of soda next to a sign that says \"Recycle!\"", - "id": 12957 - }, - { - "image_path": "/content/drive/MyDrive/combined/4193cdaaf3ef40e5.jpg", - "response": "A wooden table with two soda cans on it. The cans are green and white and red white and blue.", - "id": 12958 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e5daa09770e9956.jpg", - "response": "A can of Budweiser Budvar Czech Premium lager sits on a counter.", - "id": 12959 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b2c840e08513fe4.jpg", - "response": "In the image there are five blue and white cans of Starbucks Refreshers. The Starbucks logo is on each can and they are all the same flavor, Blueberry Acai. The cans are on a store shelf and there is a white shelf behind them. The cans are arranged in a row and they are all facing the same direction.", - "id": 12960 - }, - { - "image_path": "/content/drive/MyDrive/combined/3946729c0fab69a1.jpg", - "response": "A trash can with a lot of posters on it.", - "id": 12961 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb8494881e7e07e.jpg", - "response": "A collection of black and silver tins of monster supplies sit on a wooden shelf. Each tin has a different monster on it such as The Heebie-Jeebies, Escalating Panic, The Collywobbles, and Mortal Terror.", - "id": 12962 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d94556106f2cfd3.jpg", - "response": "The poster for the 2011 film The Adventures of Tintin. The main character Tintin stands in front of a ship at night. Next to him is a small dog. The ship has a lighthouse on it and the moon is in the background. The text on the poster says \"THE ADVENTURES OF TINTIN\" in yellow and \"SCREENPLAY BY\" in blue. Below that is the name \"STEVEN MOFFAT AND EDGAR WRIGHT & JOE CORNISH\" in yellow. Below that is \"TINTIN.COM\" in blue. Below that is \"DECEMBER 23\" in yellow. Below that is \"IN THEATERS, REAL.D 3D & IMAX 3D\" in blue.", - "id": 12963 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ab0e5fe4e0e8b21.jpg", - "response": "A can of Asahi beer sitting on a table next to a glass filled with the beer.", - "id": 12964 - }, - { - "image_path": "/content/drive/MyDrive/combined/141bc25753707005.jpg", - "response": "A bottle of Katari 90 next to a box with a gold label on it.", - "id": 12965 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c7a80183cceeab5.jpg", - "response": "A poster advertising the best 098 call rates yet. The offer is for as low as $0.25 per minute and is valid from July 27th, 2014. The offer is provided by Telbru.", - "id": 12966 - }, - { - "image_path": "/content/drive/MyDrive/combined/399246947b7f1a7c.jpg", - "response": "A book cover with a black and yellow illustration of a man with a gun and a child.", - "id": 12967 - }, - { - "image_path": "/content/drive/MyDrive/combined/16644d10770757eb.jpg", - "response": "A book cover with a woman in a bikini lying on her back with her legs in the air and a machine on top of her.", - "id": 12968 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a6eca7d84ebdbdc.jpg", - "response": "A variety of canned goods are stacked on a shelf. The cans include Goya black beans, canned fried beans, canned wild salmon, canned black beans and rice, and canned salmon.", - "id": 12969 - }, - { - "image_path": "/content/drive/MyDrive/combined/259b8366f73f1f1d.jpg", - "response": "A red and brown poster with French writing.", - "id": 12970 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aeea9ab5a9e4257.jpg", - "response": "A can of Oh! Powerful soda sits on a table.", - "id": 12971 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a6ec25c242fddf.jpg", - "response": "A poster on a wall that is titled L'anthropologie.", - "id": 12972 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f6f6c2cb535e203.jpg", - "response": "A gold can of Kirin beer with a horse on it.", - "id": 12973 - }, - { - "image_path": "/content/drive/MyDrive/combined/323cd30dcc54ef38.jpg", - "response": "A Zenith remote control and a green keychain fob.", - "id": 12974 - }, - { - "image_path": "/content/drive/MyDrive/combined/4753a255657c32b0.jpg", - "response": "The image shows a city street with a few cars parked on the side of the road. There are three taxis, one parked behind the other, and a blue van parked in front of them. The cars and taxis are all yellow and are likely taxis due to their color. The street also has a few people walking around.", - "id": 12975 - }, - { - "image_path": "/content/drive/MyDrive/combined/49e1bbf61013649a.jpg", - "response": "A glass beaker with a black line marking 200ml.", - "id": 12976 - }, - { - "image_path": "/content/drive/MyDrive/combined/443c2d287f0ef07a.jpg", - "response": "a black remote control with a red Netflix button", - "id": 12977 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d25a2faf26c9c52.jpg", - "response": "A green taxi cab driving down a busy street at night.", - "id": 12978 - }, - { - "image_path": "/content/drive/MyDrive/combined/1282dde05bfdfb13.jpg", - "response": "A silver coin with a Native American on it.", - "id": 12979 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c2f9046b2eceb0d.jpg", - "response": "A woman standing in front of a TV with various apps on the screen.", - "id": 12980 - }, - { - "image_path": "/content/drive/MyDrive/combined/113b424acb04ffc6.jpg", - "response": "In the image, there is a poster for an upcoming Oktoberfest event. The poster features a chalkboard design and is printed on a dark background. The poster has a rustic look and feel, with a large mug of beer at the bottom. The mug is filled with a golden liquid that looks like beer. The poster also features the phrase \"since 20 september\" written in white chalk. The design is quite detailed, with intricate patterns and designs around the edges of the poster. The overall theme of the poster is focused on the celebration of Oktoberfest.", - "id": 12981 - }, - { - "image_path": "/content/drive/MyDrive/combined/0870b2b4e7309624.jpg", - "response": "A table with two glasses of beer and two bottles of beer from Laurelwood Brewing Co.", - "id": 12982 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b78798f725380f.jpg", - "response": "On a wooden table, there are two bottles of beer and two glasses filled with beer. The beer bottles are labeled \"International Arms Race\" and \"International Roots Ale\". The books behind the beer are colorful.", - "id": 12983 - }, - { - "image_path": "/content/drive/MyDrive/combined/5eca47d2fd4e4a56.jpg", - "response": "A display of three old wooden boxes, one of which is open and contains a collection of papers and coins.", - "id": 12984 - }, - { - "image_path": "/content/drive/MyDrive/combined/27b57ca3f09f5272.jpg", - "response": "A glass of guinness with a white head and a white rim.", - "id": 12985 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c57cfc6d0503d59.jpg", - "response": "An airport arrival board is displayed on a wall.", - "id": 12986 - }, - { - "image_path": "/content/drive/MyDrive/combined/40ec631491b85507.jpg", - "response": "A wooden box with the word Couphole on it.", - "id": 12987 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bc1c18bb1a91871.jpg", - "response": "A window display with a book about the Roman Empire and the stars in a museum.", - "id": 12988 - }, - { - "image_path": "/content/drive/MyDrive/combined/2446e5f69a49c7b9.jpg", - "response": "A white hang glider with the number 13 on it is flying through the air.", - "id": 12989 - }, - { - "image_path": "/content/drive/MyDrive/combined/220ce00f453fa42d.jpg", - "response": "A yellow surfboard with the word \"Tees\" on it.", - "id": 12990 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba656d9dec83343.jpg", - "response": "A coin with a picture of a bear on it.", - "id": 12991 - }, - { - "image_path": "/content/drive/MyDrive/combined/14376b594386ca6c.jpg", - "response": "A baseball scoreboard at Tradition Field, the spring training site of the Mets.", - "id": 12992 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c42bab823083813.jpg", - "response": "A laptop is on a table in front of a large audience.", - "id": 12993 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d37d2e13ccaf33.jpg", - "response": "The image shows a city street with a sidewalk that is lined with various stands. These stands are selling a variety of items such as books, postcards, and magazines. There are multiple people visible in the image, with some walking on the street and others standing near the stands. The stands are located near a building, which can be seen in the background of the image.", - "id": 12994 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ddcea5af5b2fd8a.jpg", - "response": "A silver watch with a black leather strap.", - "id": 12995 - }, - { - "image_path": "/content/drive/MyDrive/combined/401fe2536b5d05fa.jpg", - "response": "An apple watch with a blue band is sitting on a wooden table. The time on the watch is 8:41. The weather app on the watch is showing a temperature of 29 degrees celsius.", - "id": 12996 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6723de28eb370e.jpg", - "response": "A man is wearing a wrist watch on his left hand. The watch is black and silver in color and has the word Fossil written on it. The man is wearing a black sweater and the sunlight is coming from behind him. There is a radiator in the background.", - "id": 12997 - }, - { - "image_path": "/content/drive/MyDrive/combined/46359d53c9f7336c.jpg", - "response": "the word esprit on the watch(299,382),(783,607)", - "id": 12998 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e2048983f86e44d.jpg", - "response": "A computer monitor that is turned on and has a lot of icons on the desktop.", - "id": 12999 - }, - { - "image_path": "/content/drive/MyDrive/combined/2137aae1ff1eeda0.jpg", - "response": "A white Chanel watch with a silver and black face. The face has black numbers and hands. The watch has a silver band and is surrounded by clear rhinestones. The watch is on a white surface.", - "id": 13000 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e1e98a695f2c44b.jpg", - "response": "A beautiful blonde woman is shown in the image, she is wearing a gold dress and has her hair in a high ponytail. She is standing in front of a white background.", - "id": 13001 - }, - { - "image_path": "/content/drive/MyDrive/combined/5af359f71d7c965e.jpg", - "response": "An aisle in a store with a red pipe ceiling.", - "id": 13002 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a0c0d6ae8c0060.jpg", - "response": "A silver and black Tudor watch on a reflective surface.", - "id": 13003 - }, - { - "image_path": "/content/drive/MyDrive/combined/198435f7c70c6296.jpg", - "response": "A grocery store filled with lots of chips and snacks.", - "id": 13004 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f2c104be4ff3bd4.jpg", - "response": "A grocery store with a pizza station sign above the store.", - "id": 13005 - }, - { - "image_path": "/content/drive/MyDrive/combined/364744b9ff7ee8e1.jpg", - "response": "A man in a blue shirt standing in front of a store.", - "id": 13006 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c7225cceda82af0.jpg", - "response": "A bottle of Ted Baker perfume in purple.", - "id": 13007 - }, - { - "image_path": "/content/drive/MyDrive/combined/29663c586bcd0db2.jpg", - "response": "A grey Dyson Airblade hand dryer on a tiled wall.", - "id": 13008 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b73da75049f4f84.jpg", - "response": "A black wrist watch being held in someones hand.", - "id": 13009 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce8e44536df5739.jpg", - "response": "A shopping cart is placed in the aisle of a grocery store.", - "id": 13010 - }, - { - "image_path": "/content/drive/MyDrive/combined/13225a611890fdd9.jpg", - "response": "A black car is driving down the street.", - "id": 13011 - }, - { - "image_path": "/content/drive/MyDrive/combined/260b8a281ff565ed.jpg", - "response": "The image features a bottle of Marc Jacobs' perfume on a wooden table. The bottle is pink and has a unique shape, with a flower-shaped cap. The label on the bottle is pink and white, with the perfume name written in black. The bottle is filled with the perfume, and a small amount can be seen at the top. The cap is made to look like a flower, with a yellow center and pink petals. The bottle is placed on top of a wooden table, which has a brown surface. The table is located in front of a magazine, which has a cover featuring a person holding a surfboard. The magazine is open to the page with the image of the person holding the surfboard.", - "id": 13012 - }, - { - "image_path": "/content/drive/MyDrive/combined/2659571273d85bbd.jpg", - "response": "A dark green BMW with a Virginia license plate.", - "id": 13013 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cdc5361b640fec4.jpg", - "response": "A female model is holding the LG Optimus LTE and the LG Optimus L7, while standing in front of a sign that says '500,000'.", - "id": 13014 - }, - { - "image_path": "/content/drive/MyDrive/combined/1adc1d517ca13064.jpg", - "response": "A city scene with a large yellow crane operating near railroad tracks.", - "id": 13015 - }, - { - "image_path": "/content/drive/MyDrive/combined/191da96ef620a6fc.jpg", - "response": "A car with a blue license plate that says HTTPS.", - "id": 13016 - }, - { - "image_path": "/content/drive/MyDrive/combined/178a7b832a9e317f.jpg", - "response": "a car with a mercedes logo on the back", - "id": 13017 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e530b780c5429c8.jpg", - "response": "A black car with a yellow license plate that says \"AT53NAL\" on it.", - "id": 13018 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f4b52c7dd9a73f.jpg", - "response": "A brother label printer on a desk with instructions next to it.", - "id": 13019 - }, - { - "image_path": "/content/drive/MyDrive/combined/0954762f5858da0e.jpg", - "response": "A car with a California license plate is parked on the street at night. The rear end of the car has a sticker of the American flag with the word \"USA\" crossed out. The car's brake light is illuminated.", - "id": 13020 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f4a40d77b6df19.jpg", - "response": "a man with long hair and sunglasses sitting in front of a laptop", - "id": 13021 - }, - { - "image_path": "/content/drive/MyDrive/combined/b0d861635dcab8ca.jpg", - "response": "A black and white newspaper page with many different ads.", - "id": 13022 - }, - { - "image_path": "/content/drive/MyDrive/combined/105697036b15ca4f.jpg", - "response": "A store shelf filled with lots of different kinds of wine.", - "id": 13023 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e87194d4bff24ae.jpg", - "response": "A collection of various perfumes sitting on a counter.", - "id": 13024 - }, - { - "image_path": "/content/drive/MyDrive/combined/082f5ae635a90152.jpg", - "response": "A red car with a California license plate that says KARAZY.", - "id": 13025 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aed026b57a9b445.jpg", - "response": "A traffic light that is red with a little red man on it.", - "id": 13026 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe69a1d1c7be6dd.jpg", - "response": "A bottle of Haig Club sits on a wooden shelf. The bottle is dark blue and has a copper colored cap. The label on the bottle is dark blue and features the name \"Haig Club\" in dark brown. The word \"CLUB\" is emphasized by being larger and having a different font than the rest of the text. The text \"Double matured\" is also in larger font and is in light brown. The text \"SCOTCH WHISKY\" is in dark brown and is smaller than the rest of the text. The bottle is rectangular and tall.", - "id": 13027 - }, - { - "image_path": "/content/drive/MyDrive/combined/282a59a8809edcca.jpg", - "response": "A green and gold tube of Maybelline Define-A-Lash Mascara on a white background.", - "id": 13028 - }, - { - "image_path": "/content/drive/MyDrive/combined/338ae0a4389625bd.jpg", - "response": "The image features three different bottles of perfume on a table. The first bottle is on the left and is gold and white, the second bottle is on the right and is gold, and the third bottle is in the back and is black. The gold and white bottle has a gold cap and a white label with black writing. The gold bottle has a gold cap and no label. The black bottle has a gold cap and a white label with black writing.", - "id": 13029 - }, - { - "image_path": "/content/drive/MyDrive/combined/494f750973f9863e.jpg", - "response": "A magazine advertisement for a Smith-Corona typewriter. The ad features a blue and grey typewriter with a white keyboard. The typeface is white and is set against a white background. The ad copy is in white and black. There is a small illustration of a group of people standing in front of a large typewriter. The ad copy reads \"Think ahead-get Smith-Corona the only portable with a jeweled main bearing today!\" The ad also features the company logo, which is a red sun on a yellow background.", - "id": 13030 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8a22025046dc66.jpg", - "response": "A silver car with a yellow license plate that says 91 266 66.", - "id": 13031 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b7361a05a2b69f5.jpg", - "response": "A blue car parked on the side of the street.", - "id": 13032 - }, - { - "image_path": "/content/drive/MyDrive/combined/293eb6334bc073ca.jpg", - "response": "A street sign for Broadway is hanging from a pole.", - "id": 13033 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fd9e1cdcf3fc4d6.jpg", - "response": "The image shows a room with a purple ceiling. In the room, there are two balloons that say \"Happy Birthday\" hanging from the ceiling. One of the balloons is larger than the other and has a smaller balloon tied to it. There is also a sign that says \"S Lounge\" on the wall.", - "id": 13034 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2afaa3c686d26f.jpg", - "response": "A car with the license plate \"IB 1770 DN\" is parked on the side of the street. There is another car parked in front of it and a third one parked behind it. There is a bench and a traffic light in the background.", - "id": 13035 - }, - { - "image_path": "/content/drive/MyDrive/combined/25527b5d3a9b6427.jpg", - "response": "A street scene with traffic lights and cars.", - "id": 13036 - }, - { - "image_path": "/content/drive/MyDrive/combined/29b294b7702266b5.jpg", - "response": "a close up of a typewriter with a piece of paper in it that says do nano no macro in the top left corner and has a website listed below that", - "id": 13037 - }, - { - "image_path": "/content/drive/MyDrive/combined/103ddd3064b59690.jpg", - "response": "A silver dodge minivan with a ribbon sticker on the back.", - "id": 13038 - }, - { - "image_path": "/content/drive/MyDrive/combined/3796bcf7a2259cdd.jpg", - "response": "A close up of a metal clock that reads 12:15.", - "id": 13039 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cd690ab60910fa6.jpg", - "response": "A white police van with a blue and green checkered pattern on the side.", - "id": 13040 - }, - { - "image_path": "/content/drive/MyDrive/combined/121be81bc79332b5.jpg", - "response": "A tan building with a window.", - "id": 13041 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bda02a4d21065b4.jpg", - "response": "A black and white clock with roman numerals on the face.", - "id": 13042 - }, - { - "image_path": "/content/drive/MyDrive/combined/238cd8e723d062e4.jpg", - "response": "A white van with the word Princess on the hood is driving down the street.", - "id": 13043 - }, - { - "image_path": "/content/drive/MyDrive/combined/09af9ca5b10f08ac.jpg", - "response": "A scrapbook page with three photos of children and text.", - "id": 13044 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bcc4b2ca84b427f.jpg", - "response": "A cell phone in a clear plastic case on a wooden table.", - "id": 13045 - }, - { - "image_path": "/content/drive/MyDrive/combined/448257f528616044.jpg", - "response": "a white wall clock with a black frame", - "id": 13046 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bc7681a45b589c2.jpg", - "response": "A blue car parked on the side of the road.", - "id": 13047 - }, - { - "image_path": "/content/drive/MyDrive/combined/52f7aa190a2c081c.jpg", - "response": "A store shelf with many different kitchen appliances on it.", - "id": 13048 - }, - { - "image_path": "/content/drive/MyDrive/combined/235e3feb178ed158.jpg", - "response": "A collage of 5 pictures of a rice cooker. The box is open and the rice cooker is on a table. The rice cooker has a silver lid and a black\u91dc on the bottom. The first picture is of the box, the second picture is the side of the rice cooker, the third picture is the inside of the rice cooker, the fourth picture is the rice in the rice cooker, and the fifth picture is the rice cooker with the lid off.", - "id": 13049 - }, - { - "image_path": "/content/drive/MyDrive/combined/2707993b535b0aeb.jpg", - "response": "A black and white clock on a wall.", - "id": 13050 - }, - { - "image_path": "/content/drive/MyDrive/combined/08615b5d4a47621d.jpg", - "response": "A iPhone and a Samsung phone are side by side on a wooden table. The Samsung phone is larger.", - "id": 13051 - }, - { - "image_path": "/content/drive/MyDrive/combined/4321e0906251f825.jpg", - "response": "An orange Electric Center van is driving down the street.", - "id": 13052 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a1d5b0855774bc.jpg", - "response": "A wooden clock with a floral design on it.", - "id": 13053 - }, - { - "image_path": "/content/drive/MyDrive/combined/2484fd3899da6a84.jpg", - "response": "A clock with a brown and yellow design of the Eiffel Tower.", - "id": 13054 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0399c6441f62db.jpg", - "response": "The image is a combination of the Obama logo and a clock. The Obama logo is in the center of the image and is red, white, and blue. The clock is on the right side of the image and is green. The hands of the clock are black.", - "id": 13055 - }, - { - "image_path": "/content/drive/MyDrive/combined/30122fe1df2ef6e1.jpg", - "response": "A Nokia box and a bag from PacSun are sitting on a table.", - "id": 13056 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a6d9aee96e65bb.jpg", - "response": "A painting of men on horseback riding into battle.", - "id": 13057 - }, - { - "image_path": "/content/drive/MyDrive/combined/48fb11dbebe0b20d.jpg", - "response": "A man in a blue shirt standing behind a red Crock-Pot.", - "id": 13058 - }, - { - "image_path": "/content/drive/MyDrive/combined/181c812749eb207f.jpg", - "response": "A silver car with a license plate that says UHH 875.", - "id": 13059 - }, - { - "image_path": "/content/drive/MyDrive/combined/451d799638a7941e.jpg", - "response": "A wall with a large glass door that says Empire State.", - "id": 13060 - }, - { - "image_path": "/content/drive/MyDrive/combined/4add6f556e91992c.jpg", - "response": "A phone and a computer screen are shown. The phone is a cell phone and is showing a screen with three people and a purple bar at the top. The computer screen has a black box with white and purple lines and purple background. There is some foreign language text at the top of the black box.", - "id": 13061 - }, - { - "image_path": "/content/drive/MyDrive/combined/37dc842c525a474d.jpg", - "response": "A white Samsung smart device is on display. The device has a camera on the back of it. The Samsung logo is on the back of the device. The device is sitting on a table.", - "id": 13062 - }, - { - "image_path": "/content/drive/MyDrive/combined/72d7db8ca956e3da.jpg", - "response": "A large clock mounted on a brick wall with a circular design around it. The clock has roman numerals and blue face.", - "id": 13063 - }, - { - "image_path": "/content/drive/MyDrive/combined/4de553816e4fe58b.jpg", - "response": "The image features a black scientific calculator with many keys. The keys are labeled with various mathematical functions such as \"sin\", \"cos\", \"hyp\", \"log\", \"tan\", \"cot\", \"sec\", \"csc\", \"alg\", \"abs\", \"ln\", \"sqrt\", \"ln\", \"exp\", \"int\", \"diff\", \"pi\", \"e\", \"theta\", \"2 pi\", \"90\", \"45\", \"30\", \"15\", \"60\", \"30\", \"180\", \"120\", \"216\", \"225\", \"360\", \"450\", \"540\", \"630\", \"720\", \"810\", \"900\", \"1000\", \"1100\", \"1200\", \"1300\", \"1400\", \"1500\", \"1600\", \"1700\", \"1800\", \"1900\", \"2000\", \"2100\", \"2200\", \"2300\", \"2400\", \"2500\", \"2600\", \"2700\", \"2800\", \"2900\", \"3000\", \"3100\", \"3200\", \"3300\", \"3400\", \"3500\", \"3600\", \"3700\", \"3800\", \"3900\", \"4000\", \"4100\", \"4200\", \"4300\", \"4400\", \"4500\", \"4600\", \"4700\", \"4800\", \"4900\", \"5000\", \"5100\", \"5200\", \"5300\", \"5400\", \"5500\", \"5600\", \"5700\", \"5800\", \"5900\", \"6000\", \"6100\", \"6200\", \"6300\", \"6400\", \"6500\", \"6600\", \"6700\", \"", - "id": 13064 - }, - { - "image_path": "/content/drive/MyDrive/combined/1782f907c1350899.jpg", - "response": "A basketball scoreboard displays the score of a Wizards game against the Galaxy. The score is 40 to 11 with 11 minutes left in the game. The period is 2.", - "id": 13065 - }, - { - "image_path": "/content/drive/MyDrive/combined/38ca3fef6db4d078.jpg", - "response": "A woman standing at a podium in front of a banner that says Affiliate Summit.", - "id": 13066 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b653f4246fa874f.jpg", - "response": "A photo of three blue recycling bins and a blue garbage bin on a city street.", - "id": 13067 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5387ee3a65a2e3.jpg", - "response": "In the image, a person is holding a bottle of dark green nail polish. The nail polish bottle has a white cap and a silver top. The person is holding the bottle in their left hand, with their thumb and pinky finger wrapped around the bottle. The nail polish appears to be a dark forest green color.", - "id": 13068 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a5992f005905d4.jpg", - "response": "A close up of a bottle of Chinomer Fuerza Fuerte number 3.", - "id": 13069 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bc46cb9e3ec969e.jpg", - "response": "A wall covered in newspaper pages that show the front page of the paper on 9/11.", - "id": 13070 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ceb34939bf4133c.jpg", - "response": "A radio alarm clock that is displaying the time 4:04.", - "id": 13071 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a8fb8ab5250321.jpg", - "response": "A blue metal water bottle with Alliance for Climate written on it.", - "id": 13072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1888043dfe2be8c4.jpg", - "response": "a phone with a notification from foursquare saying Molly M. commented on your check-in at Molly MaGees Irish Pub: \"nice\"", - "id": 13073 - }, - { - "image_path": "/content/drive/MyDrive/combined/25a57aec8f5657b2.jpg", - "response": "a bunch of stickers on a red background.", - "id": 13074 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e08fa585bfaee57.jpg", - "response": "A bottle of perfume with a crown on top of it.", - "id": 13075 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dbd4baacbfa8ef5.jpg", - "response": "A black trash can with a no smoking sticker on it.", - "id": 13076 - }, - { - "image_path": "/content/drive/MyDrive/combined/0907adcd391ca8da.jpg", - "response": "The image shows three bottles of soju, a green bottle of soju on the left, a green bottle of soju on the right, and a blue bottle of soju in the middle. The green bottle in the middle has a price tag on it. There is also a glass behind the three bottles. The background is blurred out and there is a checkered tile pattern on the wall.", - "id": 13077 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ed7dec83b436ea.jpg", - "response": "A table filled with many different types of bottles, some with yellow liquid inside.", - "id": 13078 - }, - { - "image_path": "/content/drive/MyDrive/combined/27cd9059941a7bbf.jpg", - "response": "A wooden barrel with a black rim and a condado nique logo on it.", - "id": 13079 - }, - { - "image_path": "/content/drive/MyDrive/combined/456fef8cb780a337.jpg", - "response": "A white sign with red and black writing is covered in graffiti.", - "id": 13080 - }, - { - "image_path": "/content/drive/MyDrive/combined/162cacdb3cd23d59.jpg", - "response": "A red and white double decker bus is driving down the street.", - "id": 13081 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ea89da3e6e07f72.jpg", - "response": "A mosaic on a wall of a brick building.", - "id": 13082 - }, - { - "image_path": "/content/drive/MyDrive/combined/165cdf804f45d5c4.jpg", - "response": "A close up of a digital display that reads 0.00.", - "id": 13083 - }, - { - "image_path": "/content/drive/MyDrive/combined/2688fbfb9440fff4.jpg", - "response": "A grey trash can is sitting on the sidewalk.", - "id": 13084 - }, - { - "image_path": "/content/drive/MyDrive/combined/16217e99f9be8a03.jpg", - "response": "A table with a variety of sunscreen bottles on it. The bottles are Neutrogena, Aveeno, and Hydrospay. They are in different sizes and some are empty.", - "id": 13085 - }, - { - "image_path": "/content/drive/MyDrive/combined/300c568c9491a7e5.jpg", - "response": "A scoreboard showing the Titans winning 31-14 over the Colts.", - "id": 13086 - }, - { - "image_path": "/content/drive/MyDrive/combined/40f4747aad8644b2.jpg", - "response": "A red and white bus is parked on the side of the street.", - "id": 13087 - }, - { - "image_path": "/content/drive/MyDrive/combined/1197bdc3d4a4d7c3.jpg", - "response": "A group of people standing in front of a pink building with a sign that says \"beer pong\" on it. There are also many different neon signs on the building.", - "id": 13088 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a8929a7e9a7d556.jpg", - "response": "A Nexus phone with water droplets on it.", - "id": 13089 - }, - { - "image_path": "/content/drive/MyDrive/combined/098927dc797ab81d.jpg", - "response": "A close up of a smartphone in a store.", - "id": 13090 - }, - { - "image_path": "/content/drive/MyDrive/combined/29081fc8cc0bd21e.jpg", - "response": "A toaster oven with six cupcakes in it.", - "id": 13091 - }, - { - "image_path": "/content/drive/MyDrive/combined/08e6a4b916f09de5.jpg", - "response": "An airplane on the runway at an airport.", - "id": 13092 - }, - { - "image_path": "/content/drive/MyDrive/combined/47e18025d1e7a881.jpg", - "response": "A row of airplanes are parked on the runway.", - "id": 13093 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a18a4505d790ec6.jpg", - "response": "The image features a silver and blue airplane flying through the air. The propeller is spinning quickly, and the plane is flying close to a pole with a blue and white striped base. In the background, there is a building with a tower and a blue balcony. The sky is overcast, and the plane appears to be in a race.", - "id": 13094 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0fbeb35bfe4c46.jpg", - "response": "A black Samsung cellphone sitting on a wooden table.", - "id": 13095 - }, - { - "image_path": "/content/drive/MyDrive/combined/537c6511b3d8e599.jpg", - "response": "A close up of a smart device on a wooden surface.", - "id": 13096 - }, - { - "image_path": "/content/drive/MyDrive/combined/10ed478d65439088.jpg", - "response": "A white refrigerator freezer sitting on top of a wooden table.", - "id": 13097 - }, - { - "image_path": "/content/drive/MyDrive/combined/4508de4f680374a7.jpg", - "response": "A stainless steel refrigerator with a digital display at the top.", - "id": 13098 - }, - { - "image_path": "/content/drive/MyDrive/combined/39ec853741120dad.jpg", - "response": "A ZTE device on display in a store.", - "id": 13099 - }, - { - "image_path": "/content/drive/MyDrive/combined/511a5621a2104f57.jpg", - "response": "A plane is parked in a field.", - "id": 13100 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fe4b88eee4c27db.jpg", - "response": "A weather app for Austin showing the temperature for the week.", - "id": 13101 - }, - { - "image_path": "/content/drive/MyDrive/combined/11ab6c6c32ca4eb2.jpg", - "response": "A group of firefighters standing around a helicopter in a field.", - "id": 13102 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da650438ab6ec75.jpg", - "response": "A small airplane with a propeller is sitting on a grassy field.", - "id": 13103 - }, - { - "image_path": "/content/drive/MyDrive/combined/41bef1aafccc6043.jpg", - "response": "an iPhone on a brown table", - "id": 13104 - }, - { - "image_path": "/content/drive/MyDrive/combined/3afc3154803b1f28.jpg", - "response": "A woman in a black and white shirt standing in a store.", - "id": 13105 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8cf2541deb7f77.jpg", - "response": "A grey countertop oven with a silver front.", - "id": 13106 - }, - { - "image_path": "/content/drive/MyDrive/combined/215f73cb4371c8e2.jpg", - "response": "A book with a cartoon picture of a boxing match on the cover.", - "id": 13107 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d53b0c1d028219a.jpg", - "response": "A set of six books on a white background. The books are green and have the title Greatest Short Stories.", - "id": 13108 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a560c1b654b9f5d.jpg", - "response": "A book store sign with a bear on it sitting on the floor.", - "id": 13109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b0f786378c4b1c3.jpg", - "response": "a book with many pictures of dogs on it", - "id": 13110 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e7b1fd4bf796fa9.jpg", - "response": "A table with white boxes with red ribbon and a M&M logo.", - "id": 13111 - }, - { - "image_path": "/content/drive/MyDrive/combined/13f6f3b52890a45e.jpg", - "response": "The image shows a close up of a row of books on a bookshelf. The books are different sizes and colors, and are oriented so that the spines are facing the camera. The row of books is on a shelf that is not in the frame.", - "id": 13112 - }, - { - "image_path": "/content/drive/MyDrive/combined/53983d0ebc7c359e.jpg", - "response": "A table with several books on it.", - "id": 13113 - }, - { - "image_path": "/content/drive/MyDrive/combined/431c2867a5f2e549.jpg", - "response": "The image shows a group of men playing rugby on a field. There are at least twelve men in the picture, all wearing different colored jerseys. Some of them are holding a rugby ball. The players are in a scrum, with their heads and shoulders down, and their arms locked together. They are all wearing helmets for safety.", - "id": 13114 - }, - { - "image_path": "/content/drive/MyDrive/combined/38603089e0251874.jpg", - "response": "The image shows two DVD cases for the TV show Boardwalk Empire. The first season case is on the left and the second season case is on the right. Both cases are black and have the show's title and the HBO logo on the top. The first season case also has the words \"The Complete First Season\" written on the bottom. The second season case has a picture of the main characters on the front and the words \"The Complete Second Season\" written in white on the top. The DVD cases are sitting on a wooden floor.", - "id": 13115 - }, - { - "image_path": "/content/drive/MyDrive/combined/35d531ca83a21f3a.jpg", - "response": "A group of people playing a game of soccer.", - "id": 13116 - }, - { - "image_path": "/content/drive/MyDrive/combined/19acd198b6c66d60.jpg", - "response": "A package of a product is sitting on a table. The package is white and has a bar code on the front. The product is in a clear plastic bag. A book is open on the table and a CD is laying on top of it. A box is behind the package and the CD.", - "id": 13117 - }, - { - "image_path": "/content/drive/MyDrive/combined/1215b7cf11176148.jpg", - "response": "A row of books on a shelf.", - "id": 13118 - }, - { - "image_path": "/content/drive/MyDrive/combined/28f229c738626467.jpg", - "response": "On a wooden table, there are two books. The one on the left is named \"Habumnara\" and the one on the right is named \"\u80cc\u53cd\". Both books have Asian writing on them.", - "id": 13119 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b998f0f7c748d6.jpg", - "response": "A book cover with a group of people running in front of a globe of the Earth.", - "id": 13120 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b6eb1ec871e8d00.jpg", - "response": "A group of people standing on a soccer field.", - "id": 13121 - }, - { - "image_path": "/content/drive/MyDrive/combined/16d7442d62141383.jpg", - "response": "A Rick Steves' Italian phrase book sits on a table next to a glass of wine. The wine glass is on a coaster and there is a book next to it.", - "id": 13122 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e94c81179a03aaa.jpg", - "response": "An open book is on display on a table. The book is written in an old language and has many lines of text on the pages. The letters are in red and black ink and the writing is in a foreign language. The book is also marked with symbols on the pages. The book is open to the fifth chapter of the book. The first word of the chapter is \"In\" and the last word is \"Pentecostes\". There is a reflection of a light on the right side of the book.", - "id": 13123 - }, - { - "image_path": "/content/drive/MyDrive/combined/39f87b38b2d4ea23.jpg", - "response": "a table with many comics on it", - "id": 13124 - }, - { - "image_path": "/content/drive/MyDrive/combined/49557a77ef425f68.jpg", - "response": "A group of soccer players are on the field during a game. Some of them are wearing red and white uniforms. There is a crowd of people in the stands watching the game.", - "id": 13125 - }, - { - "image_path": "/content/drive/MyDrive/combined/292038ec773d1a10.jpg", - "response": "A soccer game is being played on a field. A soccer ball is on the field and two players are near it. One of the players is wearing a blue uniform and has his hair dark brown. Another player is wearing a yellow uniform. There is a large Adidas sign on the wall behind the field.", - "id": 13126 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c7df00277519509.jpg", - "response": "A book cover for the book Aurora Dawn by Herman Wouk.", - "id": 13127 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e8b6086bac76392.jpg", - "response": "A newspaper on a cushion with a headline about nail bombs being primed to hit London.", - "id": 13128 - }, - { - "image_path": "/content/drive/MyDrive/combined/52429c87d6191b53.jpg", - "response": "A table with a stack of business cards on it. The cards have a blue Facebook logo on them. There are also smaller photos of a man's face on the table.", - "id": 13129 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f501cd9b620f394.jpg", - "response": "an open book with many pages and some writing", - "id": 13130 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa17ce1b3417804.jpg", - "response": "A glass table with several books on it. The books are about Apple Pascal and a book about photography.", - "id": 13131 - }, - { - "image_path": "/content/drive/MyDrive/combined/39da779d17b0c1a8.jpg", - "response": "A book with the title \"The Immortals of Meluha\" written on it. The author's name is Amish. There is a spine on the right hand side of the book with the words \"Shiva Trilogy 1\" written on it. There is a sticker on the bottom right hand corner of the book with the words \"Episode from The Shiva Trilogy\" written on it. There is a black pen resting on the table next to the book.", - "id": 13132 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cab273993f766fd.jpg", - "response": "A bag of macadamia brittle sits on a counter.", - "id": 13133 - }, - { - "image_path": "/content/drive/MyDrive/combined/18950ff3ca7e943f.jpg", - "response": "A row of books on a shelf in a library.", - "id": 13134 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a5c0ca99670552e.jpg", - "response": "A man in a striped shirt sits at a desk with a laptop and a newspaper.", - "id": 13135 - }, - { - "image_path": "/content/drive/MyDrive/combined/1575fe81f18a7bf0.jpg", - "response": "An open book with a page titled \"MCR\" on the left page and a page titled \"Hello?\" on the right page.", - "id": 13136 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c69b80f817efd21.jpg", - "response": "An open book is laying on a bed of hay.", - "id": 13137 - }, - { - "image_path": "/content/drive/MyDrive/combined/272833ec5655d8de.jpg", - "response": "A table with many books and magazines on top of it.", - "id": 13138 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ddcad008618f9b.jpg", - "response": "A stack of books is on a table. The books are \"The Power of One\" by McCall Smith, \"The Sabbath\" by Abraham Joshua Heschel, \"The Day I Met Jesus\" by Viola and Demuth, \"The Theist Who Didn't Exist\" by Bannister, \"Beloved\" by Rachel Gardner, and \"The Athiest Who Didn't Exist\" by Bannister. The books are stacked on top of each other, and there is a ruler next to them.", - "id": 13139 - }, - { - "image_path": "/content/drive/MyDrive/combined/402ff17f5b743f73.jpg", - "response": "A book called \"Free\" by Chris Anderson is on a shelf between two other books.", - "id": 13140 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f9f8afc0fffa5f2.jpg", - "response": "The image shows a bookshelf filled with various books. There are multiple books on marketing, computers, and business, among others. The books are arranged in different colors and sizes, and some of them have gold or blue covers. The shelf is white and has a few books spilling over onto a table beneath it.", - "id": 13141 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3ff09978212117.jpg", - "response": "A table with five childrens books on it.", - "id": 13142 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c90568c530e950.jpg", - "response": "A large sign advertising the new Blu-ray and DVD release of Nunnally in Wonderland.", - "id": 13143 - }, - { - "image_path": "/content/drive/MyDrive/combined/128f1fcef004e645.jpg", - "response": "The image is an open Bible with the words \"Gather yours today\" written on it. The background is black.", - "id": 13144 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b61a15f8ff1fc74.jpg", - "response": "A book cover with a large insect-like creature on it.", - "id": 13145 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aca207c85743326.jpg", - "response": "A red magazine machine with magazines in it.", - "id": 13146 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e24e45129b8e808.jpg", - "response": "A book cover with the title \"The Pocket Book of Short Stories\" written in red and yellow. The author's name is not visible.", - "id": 13147 - }, - { - "image_path": "/content/drive/MyDrive/combined/352a29685f27097c.jpg", - "response": "A book is open to a page that says \"Router\" on it. There is an illustration of a man using a router and a piece of wood.", - "id": 13148 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c054a12f0ffd149.jpg", - "response": "A bottle of gin, a bottle of tonic water, a can of Red Bull and a glass of gin and Red Bull on a table.", - "id": 13149 - }, - { - "image_path": "/content/drive/MyDrive/combined/357f4bbdbf0dafa9.jpg", - "response": "A white boat with the name \"Dream Weaver\" on the side is docked at a pier.", - "id": 13150 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c8c19243eae8e6e.jpg", - "response": "The image shows a table with a white plastic tray on it. On the tray, there are three bottles of alcohol sitting next to each other. One of the bottles is blue, and the other two are dark brown. The blue bottle has a yellow label with a woman's face on it. The brown bottles have red and white labels. There is also a cup on the table, and a bag of bread is visible near the tray.", - "id": 13151 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ef3884f346fd23b.jpg", - "response": "A monitor with a red background and three red globes on the screen.", - "id": 13152 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f1ffbfd9c2de918.jpg", - "response": "A train is on the tracks near a small building.", - "id": 13153 - }, - { - "image_path": "/content/drive/MyDrive/combined/364480dd71d4bc15.jpg", - "response": "A clear glass bottle laying on its side on the ground. The bottle is mostly clear, but the bottom third of the bottle is filled with a red liquid. The bottle has a label on it that says \"J2O\" in white text and has a white check mark under it. There is a black sticker on the bottle with white text that says \"ata\" in English. The bottle has a white cap that is missing. The bottle is sitting on a cement surface with a dirt and leafy background.", - "id": 13154 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fec12a129d0b1d4.jpg", - "response": "A wall with a large display on it with many different apps on the screen.", - "id": 13155 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aad45eef9496311.jpg", - "response": "A row of books on a shelf.", - "id": 13156 - }, - { - "image_path": "/content/drive/MyDrive/combined/21acce3d992a605d.jpg", - "response": "A bottle of Samuel Adams Imperial White beer next to a glass filled with the beer.", - "id": 13157 - }, - { - "image_path": "/content/drive/MyDrive/combined/25160c90086848b2.jpg", - "response": "A close up of four wine bottles on a counter.", - "id": 13158 - }, - { - "image_path": "/content/drive/MyDrive/combined/1842902ae846fa5a.jpg", - "response": "A bottle of Tisdale Cabernet Sauvignon sits on a table with a rubber chicken on top of it.", - "id": 13159 - }, - { - "image_path": "/content/drive/MyDrive/combined/433f322a1c63f276.jpg", - "response": "A large blue and yellow sign with graffiti on it.", - "id": 13160 - }, - { - "image_path": "/content/drive/MyDrive/combined/296fb5e2589905e2.jpg", - "response": "A bottle of Willett XCF Rye sits on a wooden bar.", - "id": 13161 - }, - { - "image_path": "/content/drive/MyDrive/combined/22252f4197bf7868.jpg", - "response": "A case of orange soda bottles with a hammer and sickle on the label.", - "id": 13162 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d048d23b2e30f48.jpg", - "response": "A bottle of smoked black IPA beer next to a full glass of the same beverage. The bottle is sitting on a coaster on a wooden table. The glass is also on a coaster. There are several pictures on the wall behind the table.", - "id": 13163 - }, - { - "image_path": "/content/drive/MyDrive/combined/5454bf133ce97234.jpg", - "response": "A bottle of Coca Cola sits on a counter.", - "id": 13164 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a638f50cd4b17da.jpg", - "response": "Four bottles of Hubaina retro sitting on a counter.", - "id": 13165 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e6f22ef75c3c54e.jpg", - "response": "A meal consisting of a bowl of rice, a bowl of egg, a bowl of vegetables, and a pot of stew.", - "id": 13166 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fd9d5a838fd85ae.jpg", - "response": "A bottle of white wine next to a wooden box on a dining table. The table also has a slate with grapes, cheese and olives on it.", - "id": 13167 - }, - { - "image_path": "/content/drive/MyDrive/combined/1718b4f02df10ba8.jpg", - "response": "a body of water with boats in it", - "id": 13168 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d161defbaef6885.jpg", - "response": "A large number of cargo containers are stacked on top of a train.", - "id": 13169 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a681a5267412884.jpg", - "response": "A TV screen displaying a train on a track.", - "id": 13170 - }, - { - "image_path": "/content/drive/MyDrive/combined/12c82a20c9c89c02.jpg", - "response": "a model train set with a model train on the tracks", - "id": 13171 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec9d54dcc9d087c.jpg", - "response": "A marina with several boats docked next to a building.", - "id": 13172 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c29728cbad7b095.jpg", - "response": "A large ship is docked in a dry dock with the name Antilla on the side of the ship.", - "id": 13173 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f267a7867909f8e.jpg", - "response": "A grey battleship is traveling on the water.", - "id": 13174 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bcbb259bb64d27f.jpg", - "response": "A Tim Hortons restaurant with a car in the drive through window.", - "id": 13175 - }, - { - "image_path": "/content/drive/MyDrive/combined/143e99d5ee471d94.jpg", - "response": "A large group of people are taking pictures of a large silver htc phone.", - "id": 13176 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dd2f6cb6dec92a4.jpg", - "response": "A white boat with the word \"escapade\" on the front and the word \"hilo\" on the back.", - "id": 13177 - }, - { - "image_path": "/content/drive/MyDrive/combined/18231310cb1f856d.jpg", - "response": "A red and white train on the tracks.", - "id": 13178 - }, - { - "image_path": "/content/drive/MyDrive/combined/095c2c6b32ffa8d1.jpg", - "response": "A large orange and white boat is docked at a pier.", - "id": 13179 - }, - { - "image_path": "/content/drive/MyDrive/combined/143be00a5d54e4c6.jpg", - "response": "A boat is sitting on the beach.", - "id": 13180 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb015c546b9e515.jpg", - "response": "a large boat in a body of water", - "id": 13181 - }, - { - "image_path": "/content/drive/MyDrive/combined/1735e799804cd858.jpg", - "response": "A vintage photo of a town with a gas station on the right side of the street. The gas station has a sign on top that says \"Plume\". There are several cars parked along the street and one car driving down the street. The town has a few buildings and power lines above the street.", - "id": 13182 - }, - { - "image_path": "/content/drive/MyDrive/combined/152b1e329b8b71d0.jpg", - "response": "A large battleship is docked in the water.", - "id": 13183 - }, - { - "image_path": "/content/drive/MyDrive/combined/4178d211d2a22b32.jpg", - "response": "A sign advertising navel oranges sitting on the side of a road.", - "id": 13184 - }, - { - "image_path": "/content/drive/MyDrive/combined/35afd02fccc864d4.jpg", - "response": "A dark green train with the word \"bittern\" on it.", - "id": 13185 - }, - { - "image_path": "/content/drive/MyDrive/combined/41573930fb0c4376.jpg", - "response": "A train is stopped at a train station.", - "id": 13186 - }, - { - "image_path": "/content/drive/MyDrive/combined/350c3a5ace80b810.jpg", - "response": "A dodge car parked in a parking lot with other cars.", - "id": 13187 - }, - { - "image_path": "/content/drive/MyDrive/combined/306ab0290a2df966.jpg", - "response": "A bulldozer is parked on the street at night.", - "id": 13188 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d06c120d1507e4c.jpg", - "response": "A construction site with a few buildings in the background. There are a few cranes and a large sign that says \"The Best of All Time\" on the side of a construction wall.", - "id": 13189 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba8dbff34409177.jpg", - "response": "A boat sitting on top of a beach next to the ocean.", - "id": 13190 - }, - { - "image_path": "/content/drive/MyDrive/combined/2819180af400b835.jpg", - "response": "A row of shopping carts are lined up on the pavement.", - "id": 13191 - }, - { - "image_path": "/content/drive/MyDrive/combined/46bbb3b2379786b2.jpg", - "response": "A large circular saw sits on a table in a large room with high ceilings and large windows. The saw is yellow and black and made by Dewalt.", - "id": 13192 - }, - { - "image_path": "/content/drive/MyDrive/combined/268c832b36e512e5.jpg", - "response": "A boat with a motor hanging in the air.", - "id": 13193 - }, - { - "image_path": "/content/drive/MyDrive/combined/3627485de95aa060.jpg", - "response": "A black Range Rover Evoque is driving through the snow. The snow is covering the ground and the sky is clear.", - "id": 13194 - }, - { - "image_path": "/content/drive/MyDrive/combined/337395c06115a809.jpg", - "response": "A store display for kids halloween cards at Target.", - "id": 13195 - }, - { - "image_path": "/content/drive/MyDrive/combined/24d67cf50b15a1c4.jpg", - "response": "A black and white photo of a boat.", - "id": 13196 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c53af1a66cdb2d6.jpg", - "response": "A sign advertising Louisiana seafood is in front of a large white building.", - "id": 13197 - }, - { - "image_path": "/content/drive/MyDrive/combined/4692822d42fe2a68.jpg", - "response": "a boat in the water(375,484),(602,679)", - "id": 13198 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a8bac74f1fbd598.jpg", - "response": "A bus on a city street, driving between two cars. The bus is yellow and black, and has a white line on the side. There is a traffic light on a pole near the street. The sky is overcast.", - "id": 13199 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f7ce26177cbcfa.jpg", - "response": "A wall with the words Herne Hill Velodrome painted on it.", - "id": 13200 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e76010859982118.jpg", - "response": "A dark green DAIHATSU Copen convertible parked on the side of the street.", - "id": 13201 - }, - { - "image_path": "/content/drive/MyDrive/combined/36823d09cc806d1a.jpg", - "response": "A parking lot filled with cars and people walking around.", - "id": 13202 - }, - { - "image_path": "/content/drive/MyDrive/combined/2076b0d4767304fa.jpg", - "response": "A rusted boat sitting next to a fence.", - "id": 13203 - }, - { - "image_path": "/content/drive/MyDrive/combined/354911c7ba4d5b54.jpg", - "response": "A bridge with signs on the side of it.", - "id": 13204 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c427ba34b6c147.jpg", - "response": "a group of people on motorcycles are racing down a track.", - "id": 13205 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b2a342a1f9bac6f.jpg", - "response": "An orange and white train engine on the tracks.", - "id": 13206 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a776ad6e4c39a67.jpg", - "response": "A couple of men running a race on a field.", - "id": 13207 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a0310534176b044.jpg", - "response": "a large orange ferry boat in the water", - "id": 13208 - }, - { - "image_path": "/content/drive/MyDrive/combined/439269de33b4ffe7.jpg", - "response": "A group of people standing behind a bicycle.", - "id": 13209 - }, - { - "image_path": "/content/drive/MyDrive/combined/299955a12045bc30.jpg", - "response": "A tile mural of a Portuguese caravel ship painted on a yellow wall.", - "id": 13210 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb3f4a5f86af5c4.jpg", - "response": "A painting of three sailboats on the water. The sky is orange and pink, and the sailboats are white. They are sailing on choppy blue water.", - "id": 13211 - }, - { - "image_path": "/content/drive/MyDrive/combined/33044b70c4fa15fd.jpg", - "response": "a runner in a blue shirt is coming up to the finish line of a race.", - "id": 13212 - }, - { - "image_path": "/content/drive/MyDrive/combined/2279831ca16a4a00.jpg", - "response": "A vintage postcard of a train at a train station.", - "id": 13213 - }, - { - "image_path": "/content/drive/MyDrive/combined/26110b35f70bb31b.jpg", - "response": "A tram on a track with a building in the background.", - "id": 13214 - }, - { - "image_path": "/content/drive/MyDrive/combined/2caf2c5eb4a6da24.jpg", - "response": "A lime green car with a dragon painted on the trunk.", - "id": 13215 - }, - { - "image_path": "/content/drive/MyDrive/combined/35cd679610a97dbb.jpg", - "response": "A black and white photo of a large boat docked at a pier.", - "id": 13216 - }, - { - "image_path": "/content/drive/MyDrive/combined/26625b54a5b876fb.jpg", - "response": "A large boat is on the water.", - "id": 13217 - }, - { - "image_path": "/content/drive/MyDrive/combined/316948ded3f3f4ba.jpg", - "response": "A busy city street with multiple cars, a person riding a bicycle, and a sign that says \"Every time a cyclist jumps a red light, God kills a kitten.\"", - "id": 13218 - }, - { - "image_path": "/content/drive/MyDrive/combined/22db0f943c236f8e.jpg", - "response": "a body of water with a dock", - "id": 13219 - }, - { - "image_path": "/content/drive/MyDrive/combined/24a5986578a16f29.jpg", - "response": "A group of people are standing on a bridge looking down. They are looking at something that is not visible in the image. Some people are wearing ties, and one person is talking on a cell phone. The bridge has a black and gold design.", - "id": 13220 - }, - { - "image_path": "/content/drive/MyDrive/combined/35c02a86ce470b5a.jpg", - "response": "A white boat with the word \"Fortuna!\" painted on the side is traveling on a river.", - "id": 13221 - }, - { - "image_path": "/content/drive/MyDrive/combined/2adfa74455a91435.jpg", - "response": "In the image there is a red cement truck parked next to a yellow house. A train track is in the foreground and a crane is working in the background.", - "id": 13222 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d9c06dbfac74cc5.jpg", - "response": "a group of people on dirt bikes going through a muddy track", - "id": 13223 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e8957f546b15655.jpg", - "response": "An airplane is parked at a terminal with a yellow walkway attached to it. The walkway has a sign that says D22. There are several other airplanes parked in the background. The sun is setting in the sky.", - "id": 13224 - }, - { - "image_path": "/content/drive/MyDrive/combined/350cfcd3adaa9891.jpg", - "response": "A snow plow clearing a street of snow.", - "id": 13225 - }, - { - "image_path": "/content/drive/MyDrive/combined/45e96114f1019c33.jpg", - "response": "A brown and white station wagon with the hood up and a for sale sign in the window.", - "id": 13226 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dfce30bee31e19c.jpg", - "response": "A large boat is passing through a canal.", - "id": 13227 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b873b0c4388e092.jpg", - "response": "a white race car with red and black lettering on it", - "id": 13228 - }, - { - "image_path": "/content/drive/MyDrive/combined/254495ce94639d14.jpg", - "response": "A yellow and white train is on tracks in a city.", - "id": 13229 - }, - { - "image_path": "/content/drive/MyDrive/combined/42b87a51a6913d93.jpg", - "response": "A large road under construction with many orange and white caution cones set up.", - "id": 13230 - }, - { - "image_path": "/content/drive/MyDrive/combined/465493e7baf38631.jpg", - "response": "A train on tracks in a field.", - "id": 13231 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f1f50beaf14c8d.jpg", - "response": "a blue and white boat in the water", - "id": 13232 - }, - { - "image_path": "/content/drive/MyDrive/combined/23fb40cd560cf751.jpg", - "response": "A large white house with a black roof is sitting on the corner of a street. The house is next to a smaller green house. The street is empty and overgrown with grass. There is a telephone pole in the foreground with a sign attached to it.", - "id": 13233 - }, - { - "image_path": "/content/drive/MyDrive/combined/37eef13da9a37eff.jpg", - "response": "A train car with graffiti on the side.", - "id": 13234 - }, - { - "image_path": "/content/drive/MyDrive/combined/3830bf6b4a9147ba.jpg", - "response": "A vintage advertisement for Chipso soap, featuring a boy in a blue shirt holding a yellow and red toy airplane.", - "id": 13235 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d11832afbb08adc.jpg", - "response": "A man on a red raft is in the water.", - "id": 13236 - }, - { - "image_path": "/content/drive/MyDrive/combined/361d2922d59fc58c.jpg", - "response": "A bicycle frame is painted white and yellow and has the words \"RUBBER SOUL\" painted on the top tube. The frame is on a stand in a yard with a street in the background.", - "id": 13237 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ecbb91943dfe78.jpg", - "response": "A man riding a bike down a busy street.", - "id": 13238 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a74df9a628e8e68.jpg", - "response": "A train car sitting on tracks near a building.", - "id": 13239 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c35e0b6f119d9dc.jpg", - "response": "A group of people are holding signs on a street corner. They are protesting or showing support for something. There are trees and a building in the background.", - "id": 13240 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f08a600a4da8b9.jpg", - "response": "A large inflatable black and yellow mascot for the University of Iowa is standing on a sidewalk. People are sitting and standing around it.", - "id": 13241 - }, - { - "image_path": "/content/drive/MyDrive/combined/32e256bcf960b507.jpg", - "response": "A construction vehicle is parked in a field with trees in the background.", - "id": 13242 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e975f0231b49855.jpg", - "response": "A wall with graffiti on it and a train track in front of it.", - "id": 13243 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a77a6e7e9017195.jpg", - "response": "A train on the tracks at night with the platform lights on.", - "id": 13244 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c05f6bdedc436f0.jpg", - "response": "In the image, a group of people are riding on a roller coaster. They are sitting in yellow and black cars as they go down a steep hill. Some of the people are holding their hands up in the air and appear to be enjoying the ride. The roller coaster tracks are wooden and extend over a bridge. The background shows a lush green forest.", - "id": 13245 - }, - { - "image_path": "/content/drive/MyDrive/combined/3877144880f54acd.jpg", - "response": "An advertisement for a vacuum cleaner, it features a cartoonish drawing of a woman vacuuming a rug. There is a cartoon drawing of a girl vacuuming under a couch, another one vacuuming a rug, and one of a girl vacuuming a floor. There is also a cartoon drawing of a girl vacuuming a bed. There is a cartoon drawing of a girl vacuuming a chair. There is also a cartoon drawing of a girl vacuuming a rug. There is a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug. There is also a cartoon drawing of a girl vacuuming a rug.", - "id": 13246 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e4f1c363e29c4ca.jpg", - "response": "A man and woman riding a jet ski in the water.", - "id": 13247 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cf1cb2759735961.jpg", - "response": "A group of boats are docked in the water.", - "id": 13248 - }, - { - "image_path": "/content/drive/MyDrive/combined/489da1418c3c48ef.jpg", - "response": "a black and white boat in the water", - "id": 13249 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e63b3704bffb328.jpg", - "response": "a train yard with a few trains in it", - "id": 13250 - }, - { - "image_path": "/content/drive/MyDrive/combined/49b8718e1f674a59.jpg", - "response": "A blue train engine is on the tracks at a train station.", - "id": 13251 - }, - { - "image_path": "/content/drive/MyDrive/combined/4df6344685860862.jpg", - "response": "A small boat with the number 51V on the side.", - "id": 13252 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a58ce5454cef92d.jpg", - "response": "A large scoreboard with two American flags on top.", - "id": 13253 - }, - { - "image_path": "/content/drive/MyDrive/combined/517171f3b897023c.jpg", - "response": "A group of construction workers stand on top of a large hole in the street. The hole is filled with yellow water and has a red fence around it. There are also several cars and a truck in the scene.", - "id": 13254 - }, - { - "image_path": "/content/drive/MyDrive/combined/5558ee5da6d05f2b.jpg", - "response": "An old train sits in a deserted area.", - "id": 13255 - }, - { - "image_path": "/content/drive/MyDrive/combined/53cc9715839927e0.jpg", - "response": "a bike with a red frame and white details", - "id": 13256 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b4984d01fc56807.jpg", - "response": "A street scene with a few people crossing the street. There are two buses on the road, one white and one red. There are also several cars parked or driving on the street. The sky is blue with a few clouds.", - "id": 13257 - }, - { - "image_path": "/content/drive/MyDrive/combined/529cad4e169220df.jpg", - "response": "A black and white Yamaha boat with the top up on a black background.", - "id": 13258 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c3f01158d32cff8.jpg", - "response": "A train track with a brick tunnel and a sign that says Llanidloes.", - "id": 13259 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a81da9f46405292.jpg", - "response": "In the image there are multiple boats on the water. The closest boat has a black and white sail and is number 3321. Another boat is right behind it and is number 3320. They are followed by a boat with a yellow sail and the numbers 3200. Another boat with a yellow sail and the numbers 32000 is behind that one. The next boat is white with the numbers 880 on it. The boat behind that one has the letters GBR on it. The boat furthest back has the letters GBR on it as well. The sky is overcast.", - "id": 13260 - }, - { - "image_path": "/content/drive/MyDrive/combined/5453b8b17f0ab452.jpg", - "response": "A yellow tractor is parked in a puddle of water.", - "id": 13261 - }, - { - "image_path": "/content/drive/MyDrive/combined/49e3a1721e616832.jpg", - "response": "A wall covered in graffiti next to a set of train tracks.", - "id": 13262 - }, - { - "image_path": "/content/drive/MyDrive/combined/47a3db531f5b73dd.jpg", - "response": "A hot air balloon with the lit letters 'FT 125 Years' is floating in the air. It is orange and is in front of a large bridge. The background is a blue sky. There are several people standing around the balloon, some of them are walking past it.", - "id": 13263 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c9d074dd514b82.jpg", - "response": "A white car is driving down the road.", - "id": 13264 - }, - { - "image_path": "/content/drive/MyDrive/combined/529abfbfcadac2b0.jpg", - "response": "A wooden dock with a white boat docked at the end. The boat has a red roof and the words \"DESERT BELLE\" written on the side. There are many seagulls on the dock and in the water surrounding the boat. The sky is overcast and there are hills in the background.", - "id": 13265 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a3c73db1ea0a810.jpg", - "response": "A Chase bank is located on the side of a street.", - "id": 13266 - }, - { - "image_path": "/content/drive/MyDrive/combined/5065fa26c7b0eada.jpg", - "response": "A red boat is docked next to a white boat. There are many other boats docked in the background. The sky is blue.", - "id": 13267 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b9b84d9953c0d25.jpg", - "response": "A small trolley bus is driving through a park.", - "id": 13268 - }, - { - "image_path": "/content/drive/MyDrive/combined/5540bbfdacc9e5d5.jpg", - "response": "A train with the word \"Bayerische\" on the side.", - "id": 13269 - }, - { - "image_path": "/content/drive/MyDrive/combined/5586511ec669f08f.jpg", - "response": "A toy Optimus Prime head on a table with other toys around it.", - "id": 13270 - }, - { - "image_path": "/content/drive/MyDrive/combined/4748e3595f9984b0.jpg", - "response": "A large crowd of people are watching a race.", - "id": 13271 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dc6f06d0370a3bd.jpg", - "response": "A large metal container with graffiti on it.", - "id": 13272 - }, - { - "image_path": "/content/drive/MyDrive/combined/7db171b2d1902eed.jpg", - "response": "A sign that is on a door.", - "id": 13273 - }, - { - "image_path": "/content/drive/MyDrive/combined/51c3c5bbbcf30aff.jpg", - "response": "A baseball stadium full of people watching the game.", - "id": 13274 - }, - { - "image_path": "/content/drive/MyDrive/combined/b39d18a06c0add20.jpg", - "response": "A group of people are standing outside of a Ben and Jerry's ice cream shop. There is a traffic light on the corner of the street. A man is wearing a tie and a hat. A woman is wearing a red shirt and a cowboy hat. There is a bicycle parked on the sidewalk. A traffic sign is visible on the left side of the street.", - "id": 13275 - }, - { - "image_path": "/content/drive/MyDrive/combined/1869ea4753797245.jpg", - "response": "a black and white clock on a white wall", - "id": 13276 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe713f355152385.jpg", - "response": "The image features a close up of a motorcycle speedometer. The speedometer is a round shape and is towards the center of the image. The needle is pointing to around 120km/h, or 75 miles per hour. The brand of the motorcycle is Yamasaki and is written in red on the speedometer. The background of the image is a blurred red motorcycle.", - "id": 13277 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a4ad7976e49142.jpg", - "response": "On a wall, there are two clocks, one on the left and one on the right. Both are round and have a red frame. The clock on the left has the word \"Union\" written on it and the clock on the right has the word \"Nashville\" written on it.", - "id": 13278 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7a92f2ce317220.jpg", - "response": "A blue and white clock on a white wall.", - "id": 13279 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f880d62c515611.jpg", - "response": "A wall with three clocks on it, with labels beneath each one indicating the time in a different location.", - "id": 13280 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d2592a8ed29ba8.jpg", - "response": "A telephone booth is shown in front of a clock tower. The clock tower is lit up and features a clock on each of it's sides. The telephone booth has a sign on it that reads \"Telephone\" in yellow letters.", - "id": 13281 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ddf932b546a292.jpg", - "response": "A black and white photo of a white analog clock.", - "id": 13282 - }, - { - "image_path": "/content/drive/MyDrive/combined/17592424b0aa8930.jpg", - "response": "A large clock on the side of a brick building.", - "id": 13283 - }, - { - "image_path": "/content/drive/MyDrive/combined/1429effba967712d.jpg", - "response": "A large red clock tower in front of a building.", - "id": 13284 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f23222b90abc788.jpg", - "response": "A wall clock with three Michelin men hanging above it.", - "id": 13285 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0b982acc20fc9f.jpg", - "response": "A clock hanging on a wall with a yellowish tint.", - "id": 13286 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d437a138c383045.jpg", - "response": "A wall with seven clocks mounted on it, all set to different times.", - "id": 13287 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc7c3d57599f99a.jpg", - "response": "A watch with a black face and silver accents.", - "id": 13288 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f93407aa9c41b11.jpg", - "response": "A black and white photo of a thermometer with the temperature at 120 degrees.", - "id": 13289 - }, - { - "image_path": "/content/drive/MyDrive/combined/07da256940d8d63d.jpg", - "response": "A clock with math problems on it instead of numbers.", - "id": 13290 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd25e6da58f979d.jpg", - "response": "A large clock on the wall with a mirror below it.", - "id": 13291 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e5cd3c0ea1a697.jpg", - "response": "A sign for Rolex with a clock in front of it.", - "id": 13292 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c7d6863f9902c3.jpg", - "response": "a black and white clock with roman numerals", - "id": 13293 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9492d3a49fdb70.jpg", - "response": "A wall with a green paneling and five different clocks hanging on it.", - "id": 13294 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae5614fbbab1f8f.jpg", - "response": "A black and white clock mounted on a wall.", - "id": 13295 - }, - { - "image_path": "/content/drive/MyDrive/combined/09ca0c82bf046995.jpg", - "response": "A black and white photo of a clock on the side of a building. The clock is mounted on a sign that says \"HALLPIKE JEWELLER\" and has a light on it. The photo is taken from a street view and the building is made of brick.", - "id": 13296 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d4daa62d5422f8.jpg", - "response": "An image of a black and white drawing of a pocket watch.", - "id": 13297 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ba726b4e91860c.jpg", - "response": "In the image there is a boy with blonde hair standing under a clock on the wall. The boy is wearing a grey shirt. The wall has a calendar on it with the month of January on the front.", - "id": 13298 - }, - { - "image_path": "/content/drive/MyDrive/combined/17a6a73f953f02f0.jpg", - "response": "A clock on a table with the time set to 10:10.", - "id": 13299 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b7a2056bd3ab1ea.jpg", - "response": "A black and gold clock mounted on a brick wall.", - "id": 13300 - }, - { - "image_path": "/content/drive/MyDrive/combined/12715bb380b7da9d.jpg", - "response": "a black and white drawing of a busy store with people", - "id": 13301 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bf6d6786d6084e8.jpg", - "response": "A red background with a white stopwatch in the middle. The stopwatch is set to 15 minutes. Below the stopwatch is a yellow banner with black text that says \"15 minute meals delicious food fast\" in black. The banner has a brown border.", - "id": 13302 - }, - { - "image_path": "/content/drive/MyDrive/combined/1922eb390bb14cd9.jpg", - "response": "A window with a closed sign and a sticker that says we accept ly lunch club cards.", - "id": 13303 - }, - { - "image_path": "/content/drive/MyDrive/combined/19742ee7e740ee20.jpg", - "response": "A group of four clocks are shown. Each clock has a yellow face and green lights around the edge. The top clock has a red second hand and a yellow arrow hand pointing to the number 12. The bottom left clock has a red second hand and a black arrow hand pointing to the number 12. The top right clock has a red second hand and a yellow arrow hand pointing to the number 1. The bottom right clock has a red second hand and a black arrow hand pointing to the number 5.", - "id": 13304 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a0a5793146c595.jpg", - "response": "A black and white photo of a clock with the time set at 5:50. The clock has a white face with black numbers and hands. The numbers on the clock are written in a language other than English. The background of the photo is black.", - "id": 13305 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b10603fded8bce0.jpg", - "response": "A black cell phone with a clock on the screen.", - "id": 13306 - }, - { - "image_path": "/content/drive/MyDrive/combined/121e9c0b68bcde2f.jpg", - "response": "A tall building with a sign and a clock on it.", - "id": 13307 - }, - { - "image_path": "/content/drive/MyDrive/combined/099901d767b96cf9.jpg", - "response": "A large stone clock tower with a white face and black roman numerals.", - "id": 13308 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b177df2a0b9964f.jpg", - "response": "A TV mounted on a wall showing a news report.", - "id": 13309 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b77a8c8a3a93788.jpg", - "response": "A wooden clock on the wall.", - "id": 13310 - }, - { - "image_path": "/content/drive/MyDrive/combined/0858f39c6f2f33be.jpg", - "response": "A large clock with roman numerals is sitting in front of a tree.", - "id": 13311 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d0acfefde9a9fa.jpg", - "response": "A black and white photo of a clock.", - "id": 13312 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a072ede0f46ff4.jpg", - "response": "A clock is attached to a pole on a cloudy day.", - "id": 13313 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ca1234b44267df0.jpg", - "response": "A large clock with roman numerals is hanging from a window.", - "id": 13314 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e4206ba542d1075.jpg", - "response": "A large wooden clock with a deer head and antlers on the top of it.", - "id": 13315 - }, - { - "image_path": "/content/drive/MyDrive/combined/09efcb22ca121f57.jpg", - "response": "A large clock with roman numerals on the face.", - "id": 13316 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b401706a093e6d6.jpg", - "response": "An orange and black clock on a white wall.", - "id": 13317 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ee5b07b308da8c.jpg", - "response": "a white wall with a silver clock that reads 10:10", - "id": 13318 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ebcc0446c648bd.jpg", - "response": "A black and white photo of a clock with the time set at 3:45. The clock has a white face and black hands and numbers. The second hand is near the number 3 and the minute hand is near the number 4. The background is a white wall.", - "id": 13319 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a0de9af936cc28f.jpg", - "response": "A blue and white clock on a wall.", - "id": 13320 - }, - { - "image_path": "/content/drive/MyDrive/combined/13d234539268fcc9.jpg", - "response": "a close up of a rolex watch being held in someones hand", - "id": 13321 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f64667c53375e29.jpg", - "response": "A phone screen that is displaying a running app.", - "id": 13322 - }, - { - "image_path": "/content/drive/MyDrive/combined/179e8840e2a1e60c.jpg", - "response": "A black alarm clock with a white face.", - "id": 13323 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b3937ca23f29f83.jpg", - "response": "A brown wooden framed clock with the time set to 10:10.", - "id": 13324 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bac4dfb598e62f9.jpg", - "response": "A clock on a wall that says McDonald's on it.", - "id": 13325 - }, - { - "image_path": "/content/drive/MyDrive/combined/09e673e92ce6c813.jpg", - "response": "A round table clock with an image of three robots on it. The clock has a white and blue color scheme and is displayed on a white surface.", - "id": 13326 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df803145b212d1e.jpg", - "response": "A pair of vintage Bradley & Hubbard Company mantel clocks.", - "id": 13327 - }, - { - "image_path": "/content/drive/MyDrive/combined/14afa36e1e32c4f1.jpg", - "response": "A square clock tower with the time set at 8:30.", - "id": 13328 - }, - { - "image_path": "/content/drive/MyDrive/combined/083f03bc7caa89ec.jpg", - "response": "A large clock with two faces hanging from the ceiling.", - "id": 13329 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e7f0ec1af5f7e90.jpg", - "response": "A clock with a white face and gold numbers.", - "id": 13330 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4115adcfcf07ae.jpg", - "response": "A wall clock is hanging on a wall. The clock is black and white and has a bird on top. The clock has two bells on the bottom.", - "id": 13331 - }, - { - "image_path": "/content/drive/MyDrive/combined/08e7e27f3d842bf9.jpg", - "response": "A large wooden clock with roman numerals on the face.", - "id": 13332 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c5d188d7cef9110.jpg", - "response": "A clock on a pole on a street corner.", - "id": 13333 - }, - { - "image_path": "/content/drive/MyDrive/combined/4182c65b030c236b.jpg", - "response": "A square faced clock with a green frame and a white background. The numbers are black and there is a second hand.", - "id": 13334 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d362b1930914fe0.jpg", - "response": "A large clock tower with roman numerals sits in front of a building. The clock is lit up and the tower is lit up in blue.", - "id": 13335 - }, - { - "image_path": "/content/drive/MyDrive/combined/47f2426c0d12bb5c.jpg", - "response": "A tree in a large building with a glass ceiling.", - "id": 13336 - }, - { - "image_path": "/content/drive/MyDrive/combined/348c925edbebfcf4.jpg", - "response": "A large green and white sign for the Old Coast Hotel with a clock built into the sign.", - "id": 13337 - }, - { - "image_path": "/content/drive/MyDrive/combined/241b11306597ffdc.jpg", - "response": "A wall with a thermostat and a clock.", - "id": 13338 - }, - { - "image_path": "/content/drive/MyDrive/combined/29db6ed5e662c2b6.jpg", - "response": "a black and blue rolex watch on a green background", - "id": 13339 - }, - { - "image_path": "/content/drive/MyDrive/combined/203b9e392ff34085.jpg", - "response": "In the image, there is a laptop with a bow on it. The laptop is an Apple brand and is wrapped in a gray paper with a bow. The bow is tied in a bow and is situated on the left side of the laptop. There is also a potted plant next to the laptop. The plant is green and is situated behind the laptop.", - "id": 13340 - }, - { - "image_path": "/content/drive/MyDrive/combined/293f507bd888d00a.jpg", - "response": "A large clock tower with a white clock face is attached to a brick building. The clock has black roman numerals and black hands. The clock is set in a red and gold structure with a cross on top. The building is made of bricks and has a window below the clock.", - "id": 13341 - }, - { - "image_path": "/content/drive/MyDrive/combined/330559da4b0be7b4.jpg", - "response": "A desktop with a blue background and a white clock on the right hand side.", - "id": 13342 - }, - { - "image_path": "/content/drive/MyDrive/combined/47b78464e24b22f6.jpg", - "response": "A Harley Davidson clock that is white with an orange border.", - "id": 13343 - }, - { - "image_path": "/content/drive/MyDrive/combined/38035029a82912b5.jpg", - "response": "A blue clock tower with a white clock face is attached to a building. The clock face is round and features black numbers and black hands. The clock tower is made of metal and has a blue, rusted appearance. The clock is set against a blue sky.", - "id": 13344 - }, - { - "image_path": "/content/drive/MyDrive/combined/30b64590bf0ca512.jpg", - "response": "A large green and grey clock on a building.", - "id": 13345 - }, - { - "image_path": "/content/drive/MyDrive/combined/229a205f034cf850.jpg", - "response": "A fireplace mantle with a clock, a plant, a red box, a vase, a candle, a figurine, a mirror, a red picture frame, a small statue of a person, a string of hearts that spell the word love, and a saying that reads \"warms our hearts and souls.\"", - "id": 13346 - }, - { - "image_path": "/content/drive/MyDrive/combined/2110eb6f3e41b08a.jpg", - "response": "A album cover with a painting of two people dancing tango.", - "id": 13347 - }, - { - "image_path": "/content/drive/MyDrive/combined/39acea46df12c6f6.jpg", - "response": "A black and white photo of a clock attached to a building.", - "id": 13348 - }, - { - "image_path": "/content/drive/MyDrive/combined/36287f6050ba92b5.jpg", - "response": "A wooden house with a sign on the front of it.", - "id": 13349 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f8259701fe53234.jpg", - "response": "A colorful cuckoo clock with a bird sitting on the clock face.", - "id": 13350 - }, - { - "image_path": "/content/drive/MyDrive/combined/32aeb8c3e9e016d3.jpg", - "response": "A large building with a clock tower and a steeple.", - "id": 13351 - }, - { - "image_path": "/content/drive/MyDrive/combined/3714d260a1835e2a.jpg", - "response": "A brick wall with a large clock mounted on it. The clock is white with black numbers and hands. The hands of the clock are black and the numbers are black and white. The clock is in the center of the brick wall.", - "id": 13352 - }, - { - "image_path": "/content/drive/MyDrive/combined/29b8e36ebe8e8a73.jpg", - "response": "A Champion quartz wall clock on a white wall.", - "id": 13353 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f53787e4584f95.jpg", - "response": "A control panel with many different gauges and meters.", - "id": 13354 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f205586f1680e0d.jpg", - "response": "A red and white clock on a wall.", - "id": 13355 - }, - { - "image_path": "/content/drive/MyDrive/combined/31ef636f49355fb2.jpg", - "response": "A pair of clocks, one large and one small, are sitting on a windowsill. The large clock is blue and white and has Cornish Time written on it. The smaller clock is silver and black and has Cornish Time written on it as well. Both clocks have Cornish words for the hours instead of numbers.", - "id": 13356 - }, - { - "image_path": "/content/drive/MyDrive/combined/492c637f19ead89b.jpg", - "response": "A clock with a spiral design in the middle of it.", - "id": 13357 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c02be143c30b84b.jpg", - "response": "A tall building with many windows is in the background. In the foreground, there is a street light and a clock attached to a building. The clock is labeled \"Whitney\" and has black numbers. The street light is turned on. There are traffic lights in the image as well.", - "id": 13358 - }, - { - "image_path": "/content/drive/MyDrive/combined/3833c22fed53a60b.jpg", - "response": "A clock on the side of a building that says Charvet Lyon 1852.", - "id": 13359 - }, - { - "image_path": "/content/drive/MyDrive/combined/49b7af644e5c341b.jpg", - "response": "A red and gold square clock on a white wall.", - "id": 13360 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a23037a9dafc43a.jpg", - "response": "An altimeter showing 3020 feet.", - "id": 13361 - }, - { - "image_path": "/content/drive/MyDrive/combined/29f1df6c02b77177.jpg", - "response": "A large clock with roman numerals is suspended in the air.", - "id": 13362 - }, - { - "image_path": "/content/drive/MyDrive/combined/40619456a6926a8b.jpg", - "response": "A decorative clock with a tree design on the face of it.", - "id": 13363 - }, - { - "image_path": "/content/drive/MyDrive/combined/29060d1e1e2dfa5e.jpg", - "response": "A black and white clock with roman numerals on the face.", - "id": 13364 - }, - { - "image_path": "/content/drive/MyDrive/combined/253ae8e6e88f6f6f.jpg", - "response": "A clock with the word \"Tag Heuer\" on it.", - "id": 13365 - }, - { - "image_path": "/content/drive/MyDrive/combined/443bd3a05e93399a.jpg", - "response": "A yellow square faced clock with the time set to 11.50.", - "id": 13366 - }, - { - "image_path": "/content/drive/MyDrive/combined/37ce2a56014b42e2.jpg", - "response": "A sign welcoming people to Ware, Massachusetts.", - "id": 13367 - }, - { - "image_path": "/content/drive/MyDrive/combined/41d2c4cbae3fc6e6.jpg", - "response": "A brick wall with a sign that says \"Tour de l'Horloge Clock Tower\" and a clock mounted above the sign.", - "id": 13368 - }, - { - "image_path": "/content/drive/MyDrive/combined/287b17a4e63a4267.jpg", - "response": "A clock with a white face and brown numbers.", - "id": 13369 - }, - { - "image_path": "/content/drive/MyDrive/combined/249a13670cc80f5c.jpg", - "response": "Three cards are shown on a table. The one on the top left is titled Seek and Learn and has a brownish background with a light brownish design in the top left corner. The middle card is titled Time Flies When You're Getting Old and has a black background with a light green clock design in the top right corner. The card on the bottom right is titled What The......? and has a blue background with a brown birdcage design in the center. The birdcage has two birds in it and a sign that says What The......?", - "id": 13370 - }, - { - "image_path": "/content/drive/MyDrive/combined/493420bb064d5215.jpg", - "response": "A clock mounted on a wall above a green and white book titled Pepper.", - "id": 13371 - }, - { - "image_path": "/content/drive/MyDrive/combined/4123d5f717865573.jpg", - "response": "A tall brick tower with a clock in the center.", - "id": 13372 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eaa754d19ff4008.jpg", - "response": "A collage of various items related to the Three Stooges, including silhouettes of the members of the group, a clock, a Monopoly set, a tie, a bar with shot glasses, a money clip, and a clock.", - "id": 13373 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9f515064f33b30.jpg", - "response": "A sticker with the word Random on it.", - "id": 13374 - }, - { - "image_path": "/content/drive/MyDrive/combined/31bf093ebc674604.jpg", - "response": "A page from a comic book with a woman sitting in a chair and a man standing next to her.", - "id": 13375 - }, - { - "image_path": "/content/drive/MyDrive/combined/479ebe682f7b3dc7.jpg", - "response": "A white clock with black roman numerals sits on a shelf.", - "id": 13376 - }, - { - "image_path": "/content/drive/MyDrive/combined/49b58f93e7cf4732.jpg", - "response": "A large tower with a clock on it.", - "id": 13377 - }, - { - "image_path": "/content/drive/MyDrive/combined/4306643c48734385.jpg", - "response": "a wall with a clock and two signs on it. one sign is red and white and says The eye like a shooting star. The spirit like lightning. A death dealing blade. A life giving sword. in white lettering and the other sign is orange and white and says Great faith, great doubt, great effort in black and orange lettering.", - "id": 13378 - }, - { - "image_path": "/content/drive/MyDrive/combined/3151043d669ea1a9.jpg", - "response": "A large clock with roman numerals and the words windsor royal station on it.", - "id": 13379 - }, - { - "image_path": "/content/drive/MyDrive/combined/2be1beb5b96dbe54.jpg", - "response": "A decorative wrought iron clock with a brownish hue.", - "id": 13380 - }, - { - "image_path": "/content/drive/MyDrive/combined/278fe37fe0d28e34.jpg", - "response": "A black and white clock with roman numerals on the face.", - "id": 13381 - }, - { - "image_path": "/content/drive/MyDrive/combined/41116b0749652168.jpg", - "response": "A large clock on the wall with people on it.", - "id": 13382 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f3c569bd54ba843.jpg", - "response": "A person holding a black and white rolex watch.", - "id": 13383 - }, - { - "image_path": "/content/drive/MyDrive/combined/43d24d5cd7aa9792.jpg", - "response": "A large clock tower with a clock on the top and many signs on the bottom.", - "id": 13384 - }, - { - "image_path": "/content/drive/MyDrive/combined/30a462ca06399d7b.jpg", - "response": "A black and white clock that says \"Time to Eat\" in white letters.", - "id": 13385 - }, - { - "image_path": "/content/drive/MyDrive/combined/2636137f305e000e.jpg", - "response": "a white wall with a silver clock mounted to it.", - "id": 13386 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bf7c8991e9ece9b.jpg", - "response": "a clock with roman numerals on it and a reflection of a man in the glass", - "id": 13387 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8750cc43b862df.jpg", - "response": "A large clock mounted on a brick wall reads 5:05.", - "id": 13388 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b6f9ee579277b52.jpg", - "response": "A clock tower with a green roof and a pink body. The clock has a white face with black Roman numerals and black hands. There is a wind vane on top of the tower, it is shaped like a bird. The tower has a shield on the front with a golden lion inside. The sky is blue with dark clouds on the right side.", - "id": 13389 - }, - { - "image_path": "/content/drive/MyDrive/combined/277658d13c7bd1b6.jpg", - "response": "A first aid kit is placed on a counter. A row of clear cylinders are on the counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A bottle is on a shelf. A bottle is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on a counter. A clock is on a stand. A bottle is on a counter. A shelf has papers on it. A cabinet has shelves. A box is on the floor. A bowl is on", - "id": 13390 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fa237f6ddd292cd.jpg", - "response": "A black and white photo of a clock and a man in a tie.", - "id": 13391 - }, - { - "image_path": "/content/drive/MyDrive/combined/28ba3139f8363dc9.jpg", - "response": "A red car with a license plate that says \"MUAADIB\" on it.", - "id": 13392 - }, - { - "image_path": "/content/drive/MyDrive/combined/469266d2e67b113c.jpg", - "response": "A silver and gold rolex clock on a green wall.", - "id": 13393 - }, - { - "image_path": "/content/drive/MyDrive/combined/53add07659444382.jpg", - "response": "A large clock mounted on a brick wall with a plaque beneath it.", - "id": 13394 - }, - { - "image_path": "/content/drive/MyDrive/combined/514a12971a3affc5.jpg", - "response": "A cellphone is sitting on a desk in front of a computer keyboard. The phone is a white T-Mobile phone and is on display.", - "id": 13395 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fec043390f890f6.jpg", - "response": "A clock is on a yellow wall.", - "id": 13396 - }, - { - "image_path": "/content/drive/MyDrive/combined/5508e86419278627.jpg", - "response": "A screenshot of Animal Crossing where a pink-haired character is holding balloons. There are several other characters around, including one in a purple suit and a pink one with a blue bow. There is a street with a fountain and a clock visible in the background.", - "id": 13397 - }, - { - "image_path": "/content/drive/MyDrive/combined/76884db1a0100bfb.jpg", - "response": "A large clock with a moon and stars on it.", - "id": 13398 - }, - { - "image_path": "/content/drive/MyDrive/combined/5377748fc51a62ca.jpg", - "response": "A large clock with the word Rolex on it.", - "id": 13399 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ff20661584028ab.jpg", - "response": "A black framed wall clock with roman numerals on the face.", - "id": 13400 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f881c85c8733d12.jpg", - "response": "A square faced clock with a red face and black hands.", - "id": 13401 - }, - { - "image_path": "/content/drive/MyDrive/combined/5580a8df61dc70a4.jpg", - "response": "A black and white photo of a large clock attached to a brick building. The building has a sign that reads \"North Bennet Street School\" hanging below the clock.", - "id": 13402 - }, - { - "image_path": "/content/drive/MyDrive/combined/54fe89d0a2912010.jpg", - "response": "A large clock with roman numerals is hanging from the ceiling. The clock is round and black and white in color. The time on the clock is 12:20.", - "id": 13403 - }, - { - "image_path": "/content/drive/MyDrive/combined/522054eb6865f459.jpg", - "response": "A gold train with Tinker Bell on top.", - "id": 13404 - }, - { - "image_path": "/content/drive/MyDrive/combined/534c045d4bec3bf6.jpg", - "response": "A black and white clock face with roman numerals.", - "id": 13405 - }, - { - "image_path": "/content/drive/MyDrive/combined/519e117f699c63b8.jpg", - "response": "A large white clock with a black border and black numbers.", - "id": 13406 - }, - { - "image_path": "/content/drive/MyDrive/combined/8a2a1b78079ebf77.jpg", - "response": "A black and white clock face with roman numerals.", - "id": 13407 - }, - { - "image_path": "/content/drive/MyDrive/combined/a7ec58b2c2373f03.jpg", - "response": "A clock tower with roman numerals on the clock face.", - "id": 13408 - }, - { - "image_path": "/content/drive/MyDrive/combined/aa724e6c041a51e8.jpg", - "response": "A clock with roman numerals on the face and the words chester clockmaker on the face.", - "id": 13409 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd6145777c75a58.jpg", - "response": "A large black trash can with a sticker on it that says Park Litter Only.", - "id": 13410 - }, - { - "image_path": "/content/drive/MyDrive/combined/151baa8554a73267.jpg", - "response": "A black and green trash can sitting on the sidewalk.", - "id": 13411 - }, - { - "image_path": "/content/drive/MyDrive/combined/204dbb1d09d9ac9e.jpg", - "response": "A row of three brown and black trash cans.", - "id": 13412 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e0f54a43f8cf3a6.jpg", - "response": "A wooden fence is separating two buildings. There are two trash cans sitting next to the fence. One of the trash cans is black and blue and has a sign on it. Another sign is on the fence.", - "id": 13413 - }, - { - "image_path": "/content/drive/MyDrive/combined/169f9ec1c27edbaf.jpg", - "response": "A television sitting on the ground next to a trash can.", - "id": 13414 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a05999860ede74a.jpg", - "response": "A green trash can sitting on the sidewalk.", - "id": 13415 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0d1a1b4cac728a.jpg", - "response": "A wall on the side of a building", - "id": 13416 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc18f22238af6e5.jpg", - "response": "A blue bin on the right and a red bin on the left. Both have graffiti on them.", - "id": 13417 - }, - { - "image_path": "/content/drive/MyDrive/combined/0feee707381e9357.jpg", - "response": "A green mailbox sits on a sidewalk.", - "id": 13418 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b9f6b5f05b4723.jpg", - "response": "A man is bending over to pick something up from a trash can on a city street.", - "id": 13419 - }, - { - "image_path": "/content/drive/MyDrive/combined/10303805f0a36cfb.jpg", - "response": "A garbage can with a plastic bag full of trash.", - "id": 13420 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e297bbfc5161429.jpg", - "response": "A man sitting on a bench next to two green trash cans.", - "id": 13421 - }, - { - "image_path": "/content/drive/MyDrive/combined/09e15efd7a028959.jpg", - "response": "A group of people are standing around a booth with a blue display and a television. The word SMART is displayed prominently on the booth.", - "id": 13422 - }, - { - "image_path": "/content/drive/MyDrive/combined/1845721823cf2ca8.jpg", - "response": "A dumpster with a lot of writing on it.", - "id": 13423 - }, - { - "image_path": "/content/drive/MyDrive/combined/20727020cb3c8d3c.jpg", - "response": "A poster on a trash can that says Smash the EDL & BNP.", - "id": 13424 - }, - { - "image_path": "/content/drive/MyDrive/combined/190d666c99017016.jpg", - "response": "A brown and green recycling bin are on a wooden table. There is also a printer and a plant in the scene.", - "id": 13425 - }, - { - "image_path": "/content/drive/MyDrive/combined/12bf9aebdc6297c9.jpg", - "response": "A black and white photo of a row of trash cans.", - "id": 13426 - }, - { - "image_path": "/content/drive/MyDrive/combined/137bdd917bceb9ea.jpg", - "response": "A row of four colorful recycling bins. The bins are red, blue, yellow and green. The red bin is labeled \"plastico\" and the blue bin is labeled \"papel\". The yellow bin is labeled \"metal\".", - "id": 13427 - }, - { - "image_path": "/content/drive/MyDrive/combined/081f5da457947a8f.jpg", - "response": "A bus stop on a sidewalk with a poster and a trash can.", - "id": 13428 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b508d3457b0029e.jpg", - "response": "A cardboard box of Marlboro cigarettes sits on the ground next to a trash can.", - "id": 13429 - }, - { - "image_path": "/content/drive/MyDrive/combined/083c249552409baf.jpg", - "response": "A man leaning over a trash can.", - "id": 13430 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b488876641c2dd2.jpg", - "response": "A row of three recycling bins. The first one is blue and labeled vidro, the second one is green and labeled papel, and the third one is yellow and labeled metal.", - "id": 13431 - }, - { - "image_path": "/content/drive/MyDrive/combined/1376ffcdbd9baf24.jpg", - "response": "A silver trash can with a green liner.", - "id": 13432 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d87af81aa6b8cd.jpg", - "response": "A set of three recycling bins, two of which are labeled for glass and cans, and the third is labeled for plastic bottles. The bins are blue and gold and are placed on a sidewalk.", - "id": 13433 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b0ec78f51c01396.jpg", - "response": "A blue trash bin is sitting next to a brick building. There is a recycling symbol on the trash bin. The trash bin has a yellow sticker on it. There is snow on the ground next to the trash bin.", - "id": 13434 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d25a35502f62ac.jpg", - "response": "Four people standing outside a store, wearing orange shirts. There is a box on the ground and a sign that says \"No Parking\" on the wall.", - "id": 13435 - }, - { - "image_path": "/content/drive/MyDrive/combined/11741b6be4194c68.jpg", - "response": "A trash can with a sign on it that says Corpus fur alle Delicti.", - "id": 13436 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abcaf2b80fc73e5.jpg", - "response": "A scarecrow dressed as a chef stands outside a fish and chips shop. It is wearing an orange fish head as a hat and has a fake fish in its pocket. The scarecrow has its arms outstretched and is positioned in front of a trash can.", - "id": 13437 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9def8ec0577696.jpg", - "response": "A black barrel with yellow writing on it.", - "id": 13438 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d315f893542e905.jpg", - "response": "A brick building with a sign that says 95 Arch Street. There are two mailboxes in front of the building, one blue and one green. A trash can is also present in front of the building.", - "id": 13439 - }, - { - "image_path": "/content/drive/MyDrive/combined/19184297dd1f706d.jpg", - "response": "A toilet with a black and white barcode sticker on the lid.", - "id": 13440 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e88544270a85d06.jpg", - "response": "A black scorpion with a white belly and brown stripes on its back is on the bottom of a shoe.", - "id": 13441 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae656746c51b555.jpg", - "response": "A blue trash can with a painting of a man holding two knives on the side of it.", - "id": 13442 - }, - { - "image_path": "/content/drive/MyDrive/combined/085c56b2f8fc2a82.jpg", - "response": "A yard waste can with a red sticker that says \"yard waste only\" on it.", - "id": 13443 - }, - { - "image_path": "/content/drive/MyDrive/combined/079e8c6c050b34f6.jpg", - "response": "A man in military uniform is using a pressure washer on a wooden fence. The fence is located next to a row of mailboxes and trash cans. There are four mailboxes, one of which is white and has a green tree sticker on it. The trash cans are black, yellow, blue, and red. There is also a red and black extension cord connected to the pressure washer.", - "id": 13444 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba5c4dd506ca3b2.jpg", - "response": "A snowy scene with three recycling bins.", - "id": 13445 - }, - { - "image_path": "/content/drive/MyDrive/combined/1285823d00839c3d.jpg", - "response": "A green metal dumpster on a city street.", - "id": 13446 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b561f428b557af3.jpg", - "response": "A woman is sitting on a bench in a park.", - "id": 13447 - }, - { - "image_path": "/content/drive/MyDrive/combined/471499d640a4c156.jpg", - "response": "A red trash can with a black lid.", - "id": 13448 - }, - { - "image_path": "/content/drive/MyDrive/combined/294ad77c51051ef2.jpg", - "response": "A couple of grey trash cans with blue recycle symbols on them.", - "id": 13449 - }, - { - "image_path": "/content/drive/MyDrive/combined/42fb35583e220e23.jpg", - "response": "A Mercedes Benz garbage truck with a yellow bin on the back.", - "id": 13450 - }, - { - "image_path": "/content/drive/MyDrive/combined/409f0ce383202b3a.jpg", - "response": "A red recycling bin is placed next to a brick wall. The wall has a painting of a man on it. There is a blue newspaper box in front of the wall. A green bin is also placed next to the red bin. A brick building is visible behind the wall.", - "id": 13451 - }, - { - "image_path": "/content/drive/MyDrive/combined/42e76cc692ce98fd.jpg", - "response": "A row of trash cans against a brick wall.", - "id": 13452 - }, - { - "image_path": "/content/drive/MyDrive/combined/4194802bd6145d43.jpg", - "response": "A large green and white trash can with a lid that is open. The trash can is filled with garbage bags and a pizza box. There is also a fence and a building in the background.", - "id": 13453 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eed26237d2a2edb.jpg", - "response": "A dunk tank with a man inside of it sitting next to a yellow wall.", - "id": 13454 - }, - { - "image_path": "/content/drive/MyDrive/combined/39cf6d777930b58b.jpg", - "response": "A small garden gnome sitting in a black wire trash can.", - "id": 13455 - }, - { - "image_path": "/content/drive/MyDrive/combined/3300a9b6cc511606.jpg", - "response": "A woman in a white shirt and pink skirt is walking down the street. She is carrying a bag and a large cone. There is a Coca Cola machine behind her.", - "id": 13456 - }, - { - "image_path": "/content/drive/MyDrive/combined/3af7ad8cb8197a30.jpg", - "response": "A trash can(0,0),(980,939) with a sign on it that says \"Live, Work & Play Downtown L.A.\"", - "id": 13457 - }, - { - "image_path": "/content/drive/MyDrive/combined/210b0ea7724bb233.jpg", - "response": "A row of trash cans on a sidewalk next to a wall with a colorful fish painted on it.", - "id": 13458 - }, - { - "image_path": "/content/drive/MyDrive/combined/46a9abef06814b03.jpg", - "response": "A small yellow and red Lifeguards hut with a red life preserver on the front.", - "id": 13459 - }, - { - "image_path": "/content/drive/MyDrive/combined/270c0fc99547f28e.jpg", - "response": "A man in a suit is standing at a podium with a microphone in front of him. He is holding a cell phone to his ear. To the right of the man is a man in military uniform. He is standing behind a table with a sign on it that says \"ISAF\". There are several chairs in front of the table. To the right of the table is a blue curtain. Behind the curtain is a man sitting in a chair. To the right of the curtain is a woman sitting in a chair. To the right of the woman is another man sitting in a chair.", - "id": 13460 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b95010f23ed16d9.jpg", - "response": "A green newspaper box on a sidewalk with stickers on it.", - "id": 13461 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c94273ecc638e9.jpg", - "response": "A green trash bag that is filled with trash.", - "id": 13462 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c8f93aa9a48bdc3.jpg", - "response": "A sign that says \"big baps nice muffins\" is hanging on a wall.", - "id": 13463 - }, - { - "image_path": "/content/drive/MyDrive/combined/272b9bd6f024357c.jpg", - "response": "A blue recycling bin on the floor with a sticker that says pitch in! on it.", - "id": 13464 - }, - { - "image_path": "/content/drive/MyDrive/combined/22eee71d1d81e5f6.jpg", - "response": "A building with a sign that reads Jalalabad Islamic Centre.", - "id": 13465 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec65cca99fbf608.jpg", - "response": " Gary Johnson(143,25),(340,996), the 2012 Libertarian candidate for president, spoke at the Hillsdale College debate in 2011.", - "id": 13466 - }, - { - "image_path": "/content/drive/MyDrive/combined/33371a5a506dcd0e.jpg", - "response": "A black trash can is sitting next to a tree.", - "id": 13467 - }, - { - "image_path": "/content/drive/MyDrive/combined/36df9c097d675d62.jpg", - "response": "A row of three blue recycling bins are full of paper. The bin on the left is blue with the words \"Reykjavik\" on it. The bin in the middle is also blue and says \"paper\" on it. The bin on the right is blue and also says \"paper\" on it. The bins are on the street outside a building.", - "id": 13468 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d88573544d634c9.jpg", - "response": "A black trash can on a sidewalk.", - "id": 13469 - }, - { - "image_path": "/content/drive/MyDrive/combined/2548e9019eef7ab3.jpg", - "response": "A green trash can sitting on the sidewalk.", - "id": 13470 - }, - { - "image_path": "/content/drive/MyDrive/combined/3011ae7b91641ab5.jpg", - "response": "A black and green recycling bin for metal.", - "id": 13471 - }, - { - "image_path": "/content/drive/MyDrive/combined/3af5029ae4a0a3c4.jpg", - "response": "A blue bin and a brown bin are sitting next to each other.", - "id": 13472 - }, - { - "image_path": "/content/drive/MyDrive/combined/3544a0ef61f0b902.jpg", - "response": "A black trash can sitting on a sidewalk next to a stone wall.", - "id": 13473 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a0b25e6ba7e84ec.jpg", - "response": "A metal recycling bin is sitting on a sidewalk. The bin is gray and black and has a recycling symbol on it. There is a red curb next to the bin.", - "id": 13474 - }, - { - "image_path": "/content/drive/MyDrive/combined/228740bb400b0b85.jpg", - "response": "A street pole with a sign that says \"CRIMES IN AMERICA\" on it.", - "id": 13475 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dd6cbe871612469.jpg", - "response": "In the image there are two black trash cans sitting next to each other on a snowy surface. The trash cans have the word \"sulo\" written on them.", - "id": 13476 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cb6f2fad7686578.jpg", - "response": "The image shows a recycling center with a variety of bins and containers. There are four large recycling bins, two of which are green and two are brown. There is also a white bin with a sign on it. In addition, there are three green waste bins, one of which is located on the left side of the image, the other on the right side, and the third one in the middle. There is also a brown bin located in the middle of the image. The bins are full of recyclable materials, including bottles and cans. Some of the bottles are on the ground near the bins, and there are also some bags of recycling materials on the ground. The scene is set in a parking lot with a grassy area in the background.", - "id": 13477 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f24a8034c27c3b.jpg", - "response": "An older man sitting on a bench in a park.", - "id": 13478 - }, - { - "image_path": "/content/drive/MyDrive/combined/3999c5e614ee75cc.jpg", - "response": "The image shows three large recycling bins on a sidewalk. The first bin is green, the second is blue, and the third is yellow. The bins are next to each other and are quite large.", - "id": 13479 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c813776630a0010.jpg", - "response": "A green and purple advertisement for free wifi on a city street.", - "id": 13480 - }, - { - "image_path": "/content/drive/MyDrive/combined/30f563bc8bba7c8a.jpg", - "response": "A row of garbage bins on a sidewalk.", - "id": 13481 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a84d8ba0f79bc65.jpg", - "response": "A black and white photo of a carnival at night. There is a stand that sells hot dogs and corn dogs. People are standing around the stand and there are a few benches around the area. There are flags hanging above the stand and a few people are wearing dark clothing.", - "id": 13482 - }, - { - "image_path": "/content/drive/MyDrive/combined/32e56228205cf8bf.jpg", - "response": "A man standing inside a red and white food truck.", - "id": 13483 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b7bae66e85de251.jpg", - "response": "A green trash can overflows with trash and is sitting on a sidewalk.", - "id": 13484 - }, - { - "image_path": "/content/drive/MyDrive/combined/2afc8d5626ec8bdc.jpg", - "response": "A pole with graffiti on it that says \"Gaza\" and \"Free\".", - "id": 13485 - }, - { - "image_path": "/content/drive/MyDrive/combined/26ea39dfa6f27870.jpg", - "response": "A trash can with several stickers on it, including one for a political candidate and one for a company called Peru Posible. The trash can is located on a sidewalk near a street.", - "id": 13486 - }, - { - "image_path": "/content/drive/MyDrive/combined/446e74b29549a4fd.jpg", - "response": "A black case with a sticker on it is sitting on the ground next to a box and a plastic wrapped item.", - "id": 13487 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fdba55253650feb.jpg", - "response": "In the image there is a person in a large bull costume standing between three recycling bins. The costume is orange and white and has a large horned helmet. The person is wearing a black and orange shirt and holding a black glove. The bins are blue, green and blue and are labeled with the words \"compost\", \"recyclables\" and \"soiled paper/food\".", - "id": 13488 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0aa408736913a2.jpg", - "response": "A group of people standing around a table with a SIWI sign on it.", - "id": 13489 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d62751d6e320e5d.jpg", - "response": "A large metal drum is sitting next to a green and white box. Both have graffiti on them.", - "id": 13490 - }, - { - "image_path": "/content/drive/MyDrive/combined/7999036a18ba72df.jpg", - "response": "A flooded trail with a sign warning of wildlife crossing and a trash can next to it.", - "id": 13491 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d6cd28c29771d91.jpg", - "response": "A large trash can with a red lid and a sticker on the front that says \"vol\".", - "id": 13492 - }, - { - "image_path": "/content/drive/MyDrive/combined/57e5625650d18e3f.jpg", - "response": "A garbage can is tipped over in a pile of trash on the sidewalk.", - "id": 13493 - }, - { - "image_path": "/content/drive/MyDrive/combined/552a874d9c6ec896.jpg", - "response": "A wall with a colorful face painted on it.", - "id": 13494 - }, - { - "image_path": "/content/drive/MyDrive/combined/5340f808edc8d5c3.jpg", - "response": "A street pole with two stickers on it.", - "id": 13495 - }, - { - "image_path": "/content/drive/MyDrive/combined/51570ee1f59f381e.jpg", - "response": "A brown trash can with a white zombie face painted on it.", - "id": 13496 - }, - { - "image_path": "/content/drive/MyDrive/combined/c01928d2bc823bae.jpg", - "response": "A sign that says \"MASSIF\" in red letters.", - "id": 13497 - }, - { - "image_path": "/content/drive/MyDrive/combined/0803b1d19fca84dd.jpg", - "response": "A silver and black watch laying in the grass.", - "id": 13498 - }, - { - "image_path": "/content/drive/MyDrive/combined/080d54e0d5b0bb85.jpg", - "response": "a clock with a green face is between two signs", - "id": 13499 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c79d14997de3e0e.jpg", - "response": "An image of a wristwatch with the words \"made in russia\" on it. The watch has roman numerals and is silver in color. The face of the watch is transparent and you can see the inner workings of the watch.", - "id": 13500 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b0aa33d1ab3ce13.jpg", - "response": "A close up of a person's wrist with a silver and blue Tudor watch.", - "id": 13501 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb4b73ea006ffbc.jpg", - "response": "A gold and black LG watch in a brown box.", - "id": 13502 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d1c15b162a6c0b2.jpg", - "response": "An old clock with roman numerals on the face.", - "id": 13503 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d3c7d7390469ec.jpg", - "response": "A black Samsung Galaxy Mini 2 phone is displayed. The phone has a silver band around it. In the center of the phone is a screen with different sections. From top to bottom, they are \"Widgets & Update\", \"Write something\", \"Samsung Star II\", \"Contacts\", \"Message\", and \"Keypad\". Underneath the screen are five people. From left to right, they are \"Rick Stevens\", \"Katie Harrison\", \"Katie Riley\", \"Desert Island\", and \"Wine & Cheese\". Below the people is a section that says \"Samsung Star II\". Underneath that is a section that says \"Keypad\".", - "id": 13504 - }, - { - "image_path": "/content/drive/MyDrive/combined/0959dd9c9a2a567d.jpg", - "response": "A watch with a note that says 0213 James.", - "id": 13505 - }, - { - "image_path": "/content/drive/MyDrive/combined/080669e1ffbdc7aa.jpg", - "response": "a close up of a pair of headphones on a wooden table", - "id": 13506 - }, - { - "image_path": "/content/drive/MyDrive/combined/08950f72e2fa9b96.jpg", - "response": "A silver watch with a blue dial.", - "id": 13507 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa28283a2ebb027.jpg", - "response": "A black smartwatch sitting on a wooden table. The watch has a blue square with the time displayed. The watch has three buttons on the side. The top button is pointing to the word \"back\" and the right button is pointing to the word \"action\". The bottom button is pointing to the word \"scroll down\".", - "id": 13508 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a2d11a35183428f.jpg", - "response": "A clock on a white wall with a shadow on it. The clock has a red face and is set to 12:15.", - "id": 13509 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb1f0107a88fee1.jpg", - "response": "A watch with a silver and gold band and the time set to 10:02.", - "id": 13510 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf0e6eb33936e09.jpg", - "response": "A Carrera automatic watch on a black display.", - "id": 13511 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a649660a0306c3.jpg", - "response": "A silver and black watch on a green surface.", - "id": 13512 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b12f7cbdc590684.jpg", - "response": "A parking meter that is grey in color.", - "id": 13513 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aaf65faeb79ab3c.jpg", - "response": "A watch with the words BERGEON on it.", - "id": 13514 - }, - { - "image_path": "/content/drive/MyDrive/combined/090900804ad49379.jpg", - "response": "A seiko watch sits on a wooden table next to a seiko book and a passport.", - "id": 13515 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b2d656f4d2691ff.jpg", - "response": "A watch on a black background.", - "id": 13516 - }, - { - "image_path": "/content/drive/MyDrive/combined/0850a8ca09e934b1.jpg", - "response": "A car with a license plate that says West Virginia.", - "id": 13517 - }, - { - "image_path": "/content/drive/MyDrive/combined/09757dfee1d735e0.jpg", - "response": "a close up of a watch on a blue surface", - "id": 13518 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ae969d6d1b403cd.jpg", - "response": "A close up of a wrist watch with a silver and black watch face.", - "id": 13519 - }, - { - "image_path": "/content/drive/MyDrive/combined/09c0fa0cdd1d6a3f.jpg", - "response": "A wrist watch with a yellow face and silver accents.", - "id": 13520 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bf712204d837cac.jpg", - "response": "A clock that is white and black with a grey border.", - "id": 13521 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bba80650e04ec27.jpg", - "response": "A black IWC watch in a black box.", - "id": 13522 - }, - { - "image_path": "/content/drive/MyDrive/combined/09060776fdc7ad1c.jpg", - "response": "A Casio digital watch on a person's arm. The watch is yellow and has a blue face. The time on the watch is 11:31. There is also a button on the watch labeled \"WATER RESIST\".", - "id": 13523 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a7dd973336999df.jpg", - "response": "In the image there is a person holding a knife and a wallet with credit cards. The person is also wearing a watch. The knife is open and it is leaning against a tree.", - "id": 13524 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1442c9c3e2e39b.jpg", - "response": "An antique Waltham pocket watch in a case.", - "id": 13525 - }, - { - "image_path": "/content/drive/MyDrive/combined/099d83e3f4c0f783.jpg", - "response": "A silver watch with a black face and white accents.", - "id": 13526 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c5adee866a63001.jpg", - "response": "a watch with a black and silver band and a black face", - "id": 13527 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b4becb5a0afde60.jpg", - "response": "A black and white watch on a blue surface.", - "id": 13528 - }, - { - "image_path": "/content/drive/MyDrive/combined/08f90736ecd8c9b6.jpg", - "response": "a close up of a wrist watch on a persons wrist", - "id": 13529 - }, - { - "image_path": "/content/drive/MyDrive/combined/088b789487cd308d.jpg", - "response": "a close up of a wrist watch being held in someones hand", - "id": 13530 - }, - { - "image_path": "/content/drive/MyDrive/combined/09edadc491691d0d.jpg", - "response": "A person is holding a smart watch in their hand. The watch is a silver square with a screen on the top. The watch has a rhinestone encrusted band.", - "id": 13531 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa8b2b524984136.jpg", - "response": "A silver Breitling watch with a white face and silver accents.", - "id": 13532 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bcf7bd07dd2cf8b.jpg", - "response": "An arm with a white wrist watch on it.", - "id": 13533 - }, - { - "image_path": "/content/drive/MyDrive/combined/0974082246f31594.jpg", - "response": "A person holding a camera in front of them.", - "id": 13534 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e8b3f57c28c069.jpg", - "response": "A person holding a watch in their hand.", - "id": 13535 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abbb9757037b19f.jpg", - "response": "a close up of a watch with the number 15 on it", - "id": 13536 - }, - { - "image_path": "/content/drive/MyDrive/combined/08f65fbec3d5bcf5.jpg", - "response": "A gold wrist watch with a square face is sitting on top of a bouquet of red and yellow roses.", - "id": 13537 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cfde019eaefbadf.jpg", - "response": "A black Garmin Vivoactive GPS smartwatch in its packaging.", - "id": 13538 - }, - { - "image_path": "/content/drive/MyDrive/combined/090b3fb20fa3d549.jpg", - "response": "a man in a pink shirt standing in front of a black sign that says ironman on it", - "id": 13539 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf02b00e83c6d91.jpg", - "response": "A silver alarm clock sitting on a counter next to a stuffed animal.", - "id": 13540 - }, - { - "image_path": "/content/drive/MyDrive/combined/0784c3fbb1a63c3a.jpg", - "response": "A close up of three wrist watches. They are all different styles and colors. The one on the left is silver and has a mesh band. The middle watch is black and silver and has a leather band. The watch on the right has a black band and a silver face.", - "id": 13541 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c14e0a37c7b4c8e.jpg", - "response": "A close up of a wrist watch with a black face and a silver band.", - "id": 13542 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ce13af5f0f6021f.jpg", - "response": "A black smartwatch on a wooden table with a colorful, animated\u754c\u9762\u663e\u793a14398\u6b65.", - "id": 13543 - }, - { - "image_path": "/content/drive/MyDrive/combined/0901280194e91433.jpg", - "response": "A black rolex watch with a black face and silver accents.", - "id": 13544 - }, - { - "image_path": "/content/drive/MyDrive/combined/09adc40a5295affc.jpg", - "response": "A black and gold clock on a pole in front of a brick building.", - "id": 13545 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccda2c22084fa1b.jpg", - "response": "A close up of a watch on a purple and red surface. The watch is a gold and white color and has a light blue face. The face of the watch has three silver circles with gold borders and gold hands. The outer circle has the numbers 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, and 50. The middle circle has the letters A, J, and C. The inner circle has the letters J, C, and S. The watch has a white band and a gold and white case.", - "id": 13546 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccbe5ef8e1a36a4.jpg", - "response": "a silver and black watch on a blue surface", - "id": 13547 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a14b4553376b536.jpg", - "response": "A black Olympus camera with a lens on the side.", - "id": 13548 - }, - { - "image_path": "/content/drive/MyDrive/combined/0adaff3c686acb31.jpg", - "response": "A watch with a black band and a square face.", - "id": 13549 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c217bf2bb2c8b78.jpg", - "response": "The image shows three wristwatches, two of them being black and orange and the one in the back being green and orange. They are all on a white background.", - "id": 13550 - }, - { - "image_path": "/content/drive/MyDrive/combined/0883905cc65838df.jpg", - "response": "A silver and brown watch with a white face.", - "id": 13551 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c679c45d63160da.jpg", - "response": "A person holding a watch in their hand.", - "id": 13552 - }, - { - "image_path": "/content/drive/MyDrive/combined/082a47912fb95065.jpg", - "response": "A Casio G-Shock watch with a blue band and the words G-SHOCK written on the face.", - "id": 13553 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3688ca54a32ec0.jpg", - "response": "A black and white photo of a watch. The hands on the watch are pointing to the number 10. The watch has a silver band.", - "id": 13554 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a0bc91825468c45.jpg", - "response": "A black watch with a blue face and white hands.", - "id": 13555 - }, - { - "image_path": "/content/drive/MyDrive/combined/0939650fab10d53f.jpg", - "response": "the watch is made of steel and has a blue face", - "id": 13556 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c75d94cd1442699.jpg", - "response": "A watch with a large screen and grey band.", - "id": 13557 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d78c43ed9d66ac7.jpg", - "response": "A Casio watch with a yellow face and silver band.", - "id": 13558 - }, - { - "image_path": "/content/drive/MyDrive/combined/08bb9f40a23721ce.jpg", - "response": "A person is wearing a black wrist watch on their arm.", - "id": 13559 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b0012eca1f432cf.jpg", - "response": "A Tudor watch in its box on a desk next to a Rolex watch in its packaging.", - "id": 13560 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b3fb2479e1bb1c9.jpg", - "response": "a silver and black watch on a white cloth", - "id": 13561 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a0e0b6d701c12c0.jpg", - "response": "A man in white riding a black horse in the desert.", - "id": 13562 - }, - { - "image_path": "/content/drive/MyDrive/combined/0927271c7f9f3b9e.jpg", - "response": "a black and silver watch on a blue cloth", - "id": 13563 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de3ec888566edc2.jpg", - "response": "A wrist watch with a black face and silver accents.", - "id": 13564 - }, - { - "image_path": "/content/drive/MyDrive/combined/118260f82fc13828.jpg", - "response": "A man wearing a watch on a boat with two motors.", - "id": 13565 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a983a9d8bc86e2.jpg", - "response": "A close up of a Breitling watch face. The face is black with a silver border. The hands are silver and gold. The brand name is Breitling and there is a gold logo of a winged helmet in the middle. The watch has a red second hand. The date is set for the 23rd. The face has several other features including a 24 hour feature, a 30 minute timer, and a 12 hour timer.", - "id": 13566 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1d5e4e158c56ff.jpg", - "response": "a close up of a watch on a table", - "id": 13567 - }, - { - "image_path": "/content/drive/MyDrive/combined/10e0f8abcdbd76e2.jpg", - "response": "A large clock with gold statues on each side.", - "id": 13568 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f32050d389eec69.jpg", - "response": "A person is wearing a Tetris watch on their wrist.", - "id": 13569 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee252a8309c657b.jpg", - "response": "A screen displays the time as 8:38 and the temperature as -8.5 degrees celsius. Below the temperature is the date January 16th, 2013.", - "id": 13570 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a30a0c035aa579.jpg", - "response": "A table with a statue of a woman in front of a wall with a sign.", - "id": 13571 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dff8b72feae7c7b.jpg", - "response": "A person with tattoos on their arm is wearing an orange and black watch.", - "id": 13572 - }, - { - "image_path": "/content/drive/MyDrive/combined/11af96b4fa9656fb.jpg", - "response": "In the image, there is a silver watch with a black face. The watch has a silver wristband and the face has white, red, and silver accents. The face of the watch has three subdials and a date display at the bottom right. The hands of the watch are white and black. The watch is displayed on a white background with a reflection of the watch below it.", - "id": 13573 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f613baa87a2f93d.jpg", - "response": "A Cohiba wooden box with a watch on top of it.", - "id": 13574 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7f8d8c9347b071.jpg", - "response": "A watch with a silver band and a clear plastic covering still on the watch.", - "id": 13575 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ddbd45c290f8720.jpg", - "response": "A Tehelka newsletter with a picture of a man holding a rifle.", - "id": 13576 - }, - { - "image_path": "/content/drive/MyDrive/combined/0faae704d08c8a48.jpg", - "response": "a silver and black watch on a blue surface", - "id": 13577 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f8da79fd028f41.jpg", - "response": "A person(1,4),(616,999) holding a stopwatch(357,235),(943,963)", - "id": 13578 - }, - { - "image_path": "/content/drive/MyDrive/combined/105f9c16f07ba26a.jpg", - "response": "A Samsung smartwatch on a wooden table.", - "id": 13579 - }, - { - "image_path": "/content/drive/MyDrive/combined/1398b358e4366e49.jpg", - "response": "A silver watch with a black face and silver accents.", - "id": 13580 - }, - { - "image_path": "/content/drive/MyDrive/combined/101c838e419d2898.jpg", - "response": "A black and silver watch with a black face and white dots on it. The watch has a black wristband and is on a blue and white polka dot background.", - "id": 13581 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fccf3cc0a3caa7.jpg", - "response": "A black and silver watch on a stand.", - "id": 13582 - }, - { - "image_path": "/content/drive/MyDrive/combined/0daeb18df8b52b57.jpg", - "response": "a person is holding a watch in their hand", - "id": 13583 - }, - { - "image_path": "/content/drive/MyDrive/combined/12d3d26b909aa3c1.jpg", - "response": "The image shows a train station with a silver train parked at a platform. There are several people walking on the platform, some carrying backpacks and handbags. A large clock is hanging from the ceiling, and a sign with the letter B6 is visible in the background. The scene appears to be early morning, as indicated by the presence of a backpack on the platform.", - "id": 13584 - }, - { - "image_path": "/content/drive/MyDrive/combined/1094053958dd7a14.jpg", - "response": "A watch with the hands on the number 10 and 2 is sitting on a green table.", - "id": 13585 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e9f6b976e8bbf8e.jpg", - "response": "A black watch with a black face and a black band.", - "id": 13586 - }, - { - "image_path": "/content/drive/MyDrive/combined/100df65d0b62c99f.jpg", - "response": "A man is holding a knife on a boat in the water.", - "id": 13587 - }, - { - "image_path": "/content/drive/MyDrive/combined/10252b30703564a0.jpg", - "response": "A watch with a blue face and silver band is sitting on a wooden table. The watch has a greenish hue to it. To the right of the watch is a black square with the word Kodak on it. Next to the black square is a red and silver cellphone with the numbers 1, 2, 3, and 4 on it.", - "id": 13588 - }, - { - "image_path": "/content/drive/MyDrive/combined/11c07147c48757b5.jpg", - "response": "A watch with a light green face and brown leather band sits on a wooden box.", - "id": 13589 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e6cbf31cd778d93.jpg", - "response": "A watch sitting on a wooden table.", - "id": 13590 - }, - { - "image_path": "/content/drive/MyDrive/combined/1088c82642798984.jpg", - "response": "A gold and black watch is sitting on top of a red and silver cd.", - "id": 13591 - }, - { - "image_path": "/content/drive/MyDrive/combined/122fa6bb37155000.jpg", - "response": "a close up of a wrist watch with a black and silver rolex on it", - "id": 13592 - }, - { - "image_path": "/content/drive/MyDrive/combined/123f8f458e993e69.jpg", - "response": "A wristwatch is attached to a person's arm. The wristwatch has a silver band and a white face with black numbers. On the person's arm, there is a yellow and black wristband with the word \"PONKELPOY\" on it. Below the word \"PONKELPOY\" on the wristband is the year \"08\". There is also a black and white picture of an owl on the wristband.", - "id": 13593 - }, - { - "image_path": "/content/drive/MyDrive/combined/1137874f90c561d9.jpg", - "response": "A person is wearing a smart watch on their wrist. The watch is displaying a heart rate reading of 68. The date is January 6th and the weather is described as normal. There is a button on the screen labeled start.", - "id": 13594 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd8f722189d911f.jpg", - "response": "a person holding a Casio watch in their hand", - "id": 13595 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e45980d711d37a.jpg", - "response": "A watch with a black leather strap and a silver case is laying face down on a wooden table. The watch has a silver face with black accents and hands, and the face is divided into four sections. The watch is next to a black and silver object with the words \"All States\" engraved on it.", - "id": 13596 - }, - { - "image_path": "/content/drive/MyDrive/combined/1185d4bd1e2fdff3.jpg", - "response": "A Casio watch with a red jacket and a red and orange knitted cap.", - "id": 13597 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1e75a837d98a03.jpg", - "response": "A watch with a blue face and silver accents.", - "id": 13598 - }, - { - "image_path": "/content/drive/MyDrive/combined/127e472cff68a609.jpg", - "response": "a person with a smart watch on their wrist", - "id": 13599 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e74e435fca31ff0.jpg", - "response": "A close up of a silver watch with the words Hamilton on it.", - "id": 13600 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f66f89f354cfc1.jpg", - "response": "A silver and black rolex watch with the date at 6 o'clock.", - "id": 13601 - }, - { - "image_path": "/content/drive/MyDrive/combined/137c98afcc3988e2.jpg", - "response": "A Hamilton watch is on display on a wooden table. The watch has a black and silver color scheme and features white numbers on the face. The hands of the watch are red.", - "id": 13602 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f27e48efe94b7a1.jpg", - "response": "In the image a person is walking past a sign that says \"Pro Trek\". In the foreground there is a Casio Pro Trek watch. The time on the watch is 2:47:54. The background is a bit blurry and features a sign with a mountain on it.", - "id": 13603 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ec950b0f7f07db.jpg", - "response": "A silver and black Nomos Glashutte watch with a black leather strap.", - "id": 13604 - }, - { - "image_path": "/content/drive/MyDrive/combined/104928ae82c7a41b.jpg", - "response": "A close up of a wrist with a silver and blue Audemars Piguet watch.", - "id": 13605 - }, - { - "image_path": "/content/drive/MyDrive/combined/11d7cd91a3982ed2.jpg", - "response": "A silver watch with a black leather strap and white face is shown on a black background. The face of the watch has a silver color and features white accents. The hands of the watch are blue.", - "id": 13606 - }, - { - "image_path": "/content/drive/MyDrive/combined/118aeabbb581124c.jpg", - "response": "A watch with a silver band is sitting on a table.", - "id": 13607 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ecc5683491696ab.jpg", - "response": "A close up of a smart watch on a wooden table. The watch is a silver color and has a square face. On the face of the watch are the numbers 14 and 04 and the date October 15th. There are also two icons, one for a camera and one for a settings gear.", - "id": 13608 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e6fbc2290fa714d.jpg", - "response": "An open faced black wrist watch next to a black disk with white writing.", - "id": 13609 - }, - { - "image_path": "/content/drive/MyDrive/combined/103b5d9b751d9f3c.jpg", - "response": "A close up of a watch with a blue and gold face and gold accents.", - "id": 13610 - }, - { - "image_path": "/content/drive/MyDrive/combined/11de6538258ca28b.jpg", - "response": "a close up of a wrist watch on a wrist", - "id": 13611 - }, - { - "image_path": "/content/drive/MyDrive/combined/103f790f250cd011.jpg", - "response": "A black and orange watch with a black band and a black and orange face.", - "id": 13612 - }, - { - "image_path": "/content/drive/MyDrive/combined/11141e4820e29dc0.jpg", - "response": "A pair of pocket watches are on display.", - "id": 13613 - }, - { - "image_path": "/content/drive/MyDrive/combined/124d6b9e42946bc8.jpg", - "response": "The image features a pair of black and red headphones with a red sticker on the bottom. There are two D batteries placed on top of the sticker. The batteries are made by Duracell.", - "id": 13614 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fac95fc38242477.jpg", - "response": "a person is wearing an apple watch on their wrist.", - "id": 13615 - }, - { - "image_path": "/content/drive/MyDrive/combined/11887ea3372dd4c7.jpg", - "response": "The image features an advertisement for a Swiss watch called the Tissot PR 100 Lady Heart. The watch is set against a black and white photograph of a bouquet of flowers, with the flowers in red, white, and black. The watch is positioned in the center of the bouquet, with the hands set to the number 14. The watch has a mother-of-pearl dial and a red leather strap. The case of the watch is made of stainless steel. The watch is surrounded by a variety of flowers, including roses and orchids. The advertisement copy is written in Chinese.", - "id": 13616 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e7f6fbebaddb3e0.jpg", - "response": "A black and silver rolex watch sitting on top of a paper.", - "id": 13617 - }, - { - "image_path": "/content/drive/MyDrive/combined/1085d6f7abd33d9c.jpg", - "response": "A silver Pebble watch with a black screen. The watch is displaying a location on a map. The watch is on a brown surface.", - "id": 13618 - }, - { - "image_path": "/content/drive/MyDrive/combined/13913c7066b32b1e.jpg", - "response": "a black and gray smart watch on a white table", - "id": 13619 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a05d15c2507d47.jpg", - "response": "A wrist with a watch and multiple bracelets.", - "id": 13620 - }, - { - "image_path": "/content/drive/MyDrive/combined/1316909998ff1c39.jpg", - "response": "An open book with a picture of two wrist watches on the cover.", - "id": 13621 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea805e477a62f48.jpg", - "response": "A pair of watches, one with a black leather band and one with a brown leather band, both with the same design on the face.", - "id": 13622 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e828d90ff39e333.jpg", - "response": "A black camera with the word Canon on the top.", - "id": 13623 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b2042218a261bc.jpg", - "response": "A silver and black rolex watch on a magazine page.", - "id": 13624 - }, - { - "image_path": "/content/drive/MyDrive/combined/1051b0a0e2928b8b.jpg", - "response": "A black and silver watch with a black band laying on a white table.", - "id": 13625 - }, - { - "image_path": "/content/drive/MyDrive/combined/1275657ff5995c48.jpg", - "response": "a black and silver watch", - "id": 13626 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe2ebb334c50279.jpg", - "response": "A black and white watch with the time set to 10:15.", - "id": 13627 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e6e1ae30f384b9b.jpg", - "response": "A black phone screen with various icons on it.", - "id": 13628 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f86ec07b2bfafed.jpg", - "response": "A wrist watch with a black face and a black band.", - "id": 13629 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebbecdc46b78d42.jpg", - "response": "A close up of a watch face with a silver and blue design.", - "id": 13630 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4f428ec2fc6133.jpg", - "response": "A person is holding a smart watch on their wrist. The smart watch is black and has a digital screen. The screen displays a picture of a woman with the text \"Here do you want to meet?\" below it.", - "id": 13631 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0fd48d17ea5c7f.jpg", - "response": "A close up of a wrist watch with a gold and white face.", - "id": 13632 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f3b20b73680a993.jpg", - "response": "a watch and some black straps on a blue background", - "id": 13633 - }, - { - "image_path": "/content/drive/MyDrive/combined/10d38961aee4edff.jpg", - "response": "A black and white watch with the brand name Natan on the face.", - "id": 13634 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a7a385cad6d54a7.jpg", - "response": "A Rolex watch with a white dial and silver accents.", - "id": 13635 - }, - { - "image_path": "/content/drive/MyDrive/combined/16bcbd8942a10fd8.jpg", - "response": "A watch with a black face and yellow hands sitting on a red stand.", - "id": 13636 - }, - { - "image_path": "/content/drive/MyDrive/combined/181f00d3ee2b2076.jpg", - "response": "A silver and white watch with a blue face sitting on a reflective surface.", - "id": 13637 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e09be6bbdc9296b.jpg", - "response": "A black and silver watch sitting on a desk.", - "id": 13638 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa0bbd000a4423d.jpg", - "response": "A black Panerai watch with a brown leather strap on a black surface.", - "id": 13639 - }, - { - "image_path": "/content/drive/MyDrive/combined/21125879297b1143.jpg", - "response": "A blue wall with many clocks on it.", - "id": 13640 - }, - { - "image_path": "/content/drive/MyDrive/combined/15dc023dca584376.jpg", - "response": "Two advertisements for a company called Down.", - "id": 13641 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d066611264ad99e.jpg", - "response": "A page from a magazine with an article about watches. The watches are from the brand Eleven Eleven and are displayed in a grid. The watches come in different colors and styles.", - "id": 13642 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a86b7cb9f1418b.jpg", - "response": "An old pocket watch with a gold case and white face.", - "id": 13643 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c86ab7d22e0f77.jpg", - "response": "A man is wearing a Tudor Submariner watch on his wrist. The watch has a black face and a black band. The bezel of the watch is black as well. The hands of the watch are white. The man's wrist is hairy. The background of the image is blurry and green.", - "id": 13644 - }, - { - "image_path": "/content/drive/MyDrive/combined/23487570ec2ef729.jpg", - "response": "A red and black alarm clock sitting on a white desk.", - "id": 13645 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b881993b128853.jpg", - "response": "a person holding a black and silver watch", - "id": 13646 - }, - { - "image_path": "/content/drive/MyDrive/combined/23619de08233b4c6.jpg", - "response": "A black professional golf watch with a black and white face and the word TAG Heuer on the bottom right corner.", - "id": 13647 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c35681ff09a0c44.jpg", - "response": "A dog collar with a silver buckle and a name on it.", - "id": 13648 - }, - { - "image_path": "/content/drive/MyDrive/combined/1da914ac26666957.jpg", - "response": "A Seiko calculator wristwatch is displayed on a white table. The calculator wristwatch has a small screen and a silver wristband. There is a picture of a person's arm wearing the same type of wristwatch on the right side of the display.", - "id": 13649 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bc0b08034a4f5fa.jpg", - "response": "a close up of a watch being held in someones hand", - "id": 13650 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b6b8e23bbef788.jpg", - "response": "A person wearing a wrist watch Description automatically generated", - "id": 13651 - }, - { - "image_path": "/content/drive/MyDrive/combined/23745c599344518e.jpg", - "response": "A Tudor watch with a black and blue bezel and a black face is sitting on a rock.", - "id": 13652 - }, - { - "image_path": "/content/drive/MyDrive/combined/20ffbf1c42d4b7c0.jpg", - "response": "A close up of a smartwatch and a smartphone on a wooden table. The smartwatch is a silver Samsung Galaxy Gear and is sitting on top of the smartphone. The time on the watch is 14:09 and the date is October 5th. There are also icons for a camera and a gear on the screen.", - "id": 13653 - }, - { - "image_path": "/content/drive/MyDrive/combined/16778b56e46da911.jpg", - "response": "A person is holding a black and silver watch in their hand. The watch has a black face and silver accents. The hands of the watch are white. The watch is on a blue stand. There are several white and blue bottles next to the watch. The date on the photo is January 4th, 2015.", - "id": 13654 - }, - { - "image_path": "/content/drive/MyDrive/combined/239ad3ea05915adc.jpg", - "response": "A watch with a black face and silver accents.", - "id": 13655 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a842e662f7b039.jpg", - "response": "a person is wearing a yellow and silver watch", - "id": 13656 - }, - { - "image_path": "/content/drive/MyDrive/combined/176e10f034dc294d.jpg", - "response": "a person wearing a smart watch on their wrist", - "id": 13657 - }, - { - "image_path": "/content/drive/MyDrive/combined/221fd5c24da49549.jpg", - "response": "A gold Waltham pocket watch and an Illinois pocket watch are side by side.", - "id": 13658 - }, - { - "image_path": "/content/drive/MyDrive/combined/23a5ef19e24bd46b.jpg", - "response": "A person is holding a Casio Triple Sensor watch in their hand. The watch is a mix of black and gold in color. It has a large face with the time displayed in blue. The time reads 12:10. There is also a date of 16 displayed. The watch has many buttons on it. One button is on the top left, one is on the top right, one is on the left side, and two are on the right side.", - "id": 13659 - }, - { - "image_path": "/content/drive/MyDrive/combined/16fa29933bde3e69.jpg", - "response": "a close up of a wrist with a gold casio data bank watch on it.", - "id": 13660 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e8b6bdf57c2d13b.jpg", - "response": "a black and silver watch on a blue background", - "id": 13661 - }, - { - "image_path": "/content/drive/MyDrive/combined/22f1c50a316b1532.jpg", - "response": "a close up of a wrist watch with a black and silver rolex", - "id": 13662 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a7c740234fd3013.jpg", - "response": "a black and white watch in someones hand", - "id": 13663 - }, - { - "image_path": "/content/drive/MyDrive/combined/151d342f1e67ed40.jpg", - "response": "a close up of a watch on a green cloth", - "id": 13664 - }, - { - "image_path": "/content/drive/MyDrive/combined/1446039a7aed2bb7.jpg", - "response": "A Casio G-Shock watch with a red digital display.", - "id": 13665 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f6288f6310c303.jpg", - "response": "A close up of a 2000 Sacagawea dollar coin.", - "id": 13666 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fbb36deaf39e01e.jpg", - "response": "A black and silver garmin watch that is on.", - "id": 13667 - }, - { - "image_path": "/content/drive/MyDrive/combined/172ea1cd1b6a4843.jpg", - "response": "Three different colored watches on top of an open book.", - "id": 13668 - }, - { - "image_path": "/content/drive/MyDrive/combined/13efdb4138297956.jpg", - "response": "A silver and black rolex watch with the date just symbol on it.", - "id": 13669 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a2ac12831cd5ee.jpg", - "response": "A Tudor watch with a red bezel and black face.", - "id": 13670 - }, - { - "image_path": "/content/drive/MyDrive/combined/14860b06ba90af45.jpg", - "response": "A watch with a silver face and a black band.", - "id": 13671 - }, - { - "image_path": "/content/drive/MyDrive/combined/153a7ba15d14b120.jpg", - "response": "A watch with a black face and brown leather straps.", - "id": 13672 - }, - { - "image_path": "/content/drive/MyDrive/combined/230ecf28751006c2.jpg", - "response": "The image shows three wristwatches, each with a black face and a red, green, and black band, respectively. The bands are made of a fabric material. The watches are arranged in a diagonal line on a black background.", - "id": 13673 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fce98de54e23e5f.jpg", - "response": "A pair of black and silver watches on a white table.", - "id": 13674 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d5446658275f739.jpg", - "response": "a close up of a wrist watch with a black and white face", - "id": 13675 - }, - { - "image_path": "/content/drive/MyDrive/combined/1846488a65fd8b08.jpg", - "response": "A close up of a wrist watch on a person's wrist. The watch is black and silver in color and has a large face. The numbers on the face are white and there is a red second hand. The watch is also solar powered.", - "id": 13676 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cc648ae7eab3c72.jpg", - "response": "a close up of a wrist watch with the time set to 14:00", - "id": 13677 - }, - { - "image_path": "/content/drive/MyDrive/combined/23a378db5e2842b7.jpg", - "response": "A Casio calculator watch in black plastic with a rubber band. The watch is sitting on top of a piece of grid paper with the time set to 10:15.", - "id": 13678 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e0947a05625585.jpg", - "response": "A silver and black seiko watch on a display.", - "id": 13679 - }, - { - "image_path": "/content/drive/MyDrive/combined/157e6c9fbc15bb7a.jpg", - "response": "An old analog watch laying on a piece of tin foil.", - "id": 13680 - }, - { - "image_path": "/content/drive/MyDrive/combined/1585cc71c6867751.jpg", - "response": "A watch with a grey band and a grey case.", - "id": 13681 - }, - { - "image_path": "/content/drive/MyDrive/combined/1585c2061d4eeec2.jpg", - "response": "A wrist watch with a black band and a silver case. The face of the watch is square and black with orange and white markings. The watch has a white second hand and a white minute hand. The hour hand is white and the minute hand is white with orange tips. The watch has a silver crown on the right side of the case. The watch is sitting on a wooden table.", - "id": 13682 - }, - { - "image_path": "/content/drive/MyDrive/combined/197b85774b2f3bba.jpg", - "response": "a guess watch with a white dial and silver accents", - "id": 13683 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fdcaab8020d2490.jpg", - "response": "A silver watch with a black face and yellow numbers sits on a white surface.", - "id": 13684 - }, - { - "image_path": "/content/drive/MyDrive/combined/24ae51170ed1731c.jpg", - "response": "a person holding a black and blue watch", - "id": 13685 - }, - { - "image_path": "/content/drive/MyDrive/combined/231edcd1d06a1c69.jpg", - "response": "A watch with a blue face and silver accents is laying on a blue surface. The watch has a white tag with black writing on it that says 0225 DAN.", - "id": 13686 - }, - { - "image_path": "/content/drive/MyDrive/combined/19f6afff48720500.jpg", - "response": "A silver and blue rolex watch sitting on top of a magazine.", - "id": 13687 - }, - { - "image_path": "/content/drive/MyDrive/combined/23dd8c17caecdb3c.jpg", - "response": "a close up of a wrist watch with a white background", - "id": 13688 - }, - { - "image_path": "/content/drive/MyDrive/combined/251ad43344e9a932.jpg", - "response": "A man wearing a watch on his wrist.", - "id": 13689 - }, - { - "image_path": "/content/drive/MyDrive/combined/18b92b04865e288b.jpg", - "response": "A white and silver watch with the words \"Swarovski\" and \"Zirconia\" on the top left corner. The watch has a white band and the face is white with a pattern of black dots. The hands are black and there is a subdial for the second hand. The words \"CEO Tech\" are written on the bottom right corner.", - "id": 13690 - }, - { - "image_path": "/content/drive/MyDrive/combined/2495f9e929f1036b.jpg", - "response": "a close up of a wrist watch on a wrist", - "id": 13691 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ef7ba90d1d3eee.jpg", - "response": "A silver watch with a white face and silver accents.", - "id": 13692 - }, - { - "image_path": "/content/drive/MyDrive/combined/17cc5f5065f29508.jpg", - "response": "A Casio alarm chronograph watch is displayed on a person's wrist. The time on the watch is 14:08. The watch is black and has the words \"Illuminator\" on it. The display is backlit.", - "id": 13693 - }, - { - "image_path": "/content/drive/MyDrive/combined/2076b79748faaae9.jpg", - "response": "A black and gold rolex watch with a black face and gold numbers and hands. The watch has a brown leather band and is displayed on a black background with a brown shadow.", - "id": 13694 - }, - { - "image_path": "/content/drive/MyDrive/combined/19465a170eedc749.jpg", - "response": "a close up of a wrist watch on a persons wrist", - "id": 13695 - }, - { - "image_path": "/content/drive/MyDrive/combined/152c769cd5dba0e6.jpg", - "response": "A black and white watch face with the number 2 in the bottom right corner.", - "id": 13696 - }, - { - "image_path": "/content/drive/MyDrive/combined/227ff61c53ce39a1.jpg", - "response": "The image features two wristwatches, one on the left and one on the right. Both watches have black faces and are displayed on a white background. The watch on the left has a brown leather strap and the one on the right has a black fabric strap. Both watches have silver accents and hands. The watch on the left has a white second hand and a green second hand, and the one on the right has a black second hand. The watch on the left has a silver bezel and the one on the right has a black bezel. The watch on the left has Arabic numerals for hours and the one on the right has a date feature.", - "id": 13697 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6e32d291fa3a72.jpg", - "response": "a close up of a wrist with a green casio watch on it", - "id": 13698 - }, - { - "image_path": "/content/drive/MyDrive/combined/24fac58b751faa9b.jpg", - "response": "A black and yellow watch with the words Timekeeper on it.", - "id": 13699 - }, - { - "image_path": "/content/drive/MyDrive/combined/22eee8a5247eadb3.jpg", - "response": "A pink and white checkered shirt with a red and blue tie.", - "id": 13700 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae3a04b7130f1f5.jpg", - "response": "A wooden box, a clock and an egg are on a table.", - "id": 13701 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f02fb01a46d498f.jpg", - "response": "a black and white rolex watch on a green surface", - "id": 13702 - }, - { - "image_path": "/content/drive/MyDrive/combined/159480c55fddf453.jpg", - "response": "a close up of a wrist watch being held in someones hand", - "id": 13703 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f22d6d1632458b.jpg", - "response": "A gold and black watch with the number 145 on it.", - "id": 13704 - }, - { - "image_path": "/content/drive/MyDrive/combined/148b7a740f4a560c.jpg", - "response": "A person holding a black and white rolex watch in their hand.", - "id": 13705 - }, - { - "image_path": "/content/drive/MyDrive/combined/15aca411445f332e.jpg", - "response": "a person holding a watch in their hand", - "id": 13706 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ed10ba861591a2.jpg", - "response": "A necklace with a ball chain and 5 different charms on it. The first one says \"Dance\", the second one says \"Drink\", the third one says \"Laugh\", the fourth one says \"Love\", and the fifth one says \"Live\". The necklace also has a logo charm that says \"Southern Comfort\" on it.", - "id": 13707 - }, - { - "image_path": "/content/drive/MyDrive/combined/144b05cb0bbf2610.jpg", - "response": "a person is wearing a red and black watch on their wrist.", - "id": 13708 - }, - { - "image_path": "/content/drive/MyDrive/combined/38683e36274a61ab.jpg", - "response": "a close up of a watch being held in someones hand", - "id": 13709 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d9fd0a1d72c2c79.jpg", - "response": "A pair of watches, one silver and one gold, are placed next to each other on a white background.", - "id": 13710 - }, - { - "image_path": "/content/drive/MyDrive/combined/35aab56a08cd7413.jpg", - "response": "A watch with a white face and black leather band.", - "id": 13711 - }, - { - "image_path": "/content/drive/MyDrive/combined/2db7f9816add23ab.jpg", - "response": "In the image, there is a Fitbit Surge smartwatch on someones wrist. The watch is black and has a screen that displays the number 1304 and the word \"steps\". There is also a comment underneath the image that says \"Alexander W snatched the title from vernieman\" and has a blue arrow pointing to it. There is also a blue box around the number 1.", - "id": 13712 - }, - { - "image_path": "/content/drive/MyDrive/combined/3807d39fef57a56b.jpg", - "response": "A fake camera that is black in color.", - "id": 13713 - }, - { - "image_path": "/content/drive/MyDrive/combined/38096a9cb704986f.jpg", - "response": "A watch with a blue face and silver band.", - "id": 13714 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b2871447ec226f4.jpg", - "response": "A building with a statue of a man holding a clock.", - "id": 13715 - }, - { - "image_path": "/content/drive/MyDrive/combined/2686608251525a92.jpg", - "response": "A black and silver Prada watch with a black and white textured band.", - "id": 13716 - }, - { - "image_path": "/content/drive/MyDrive/combined/308c9c356c731a70.jpg", - "response": "A person holding a camera that is displaying a clock.", - "id": 13717 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b9c134d6e1fb393.jpg", - "response": "A silver and orange watch on a black leather strap.", - "id": 13718 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fdb2f716c566dad.jpg", - "response": "A silver and blue watch on a person's wrist.", - "id": 13719 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a5dcb778fb29112.jpg", - "response": "A person is holding a bottle of Black Sheep Ale.", - "id": 13720 - }, - { - "image_path": "/content/drive/MyDrive/combined/393fcda1466cc27e.jpg", - "response": "In the image there is a person with their feet on a computer keyboard. The person is wearing a gold wrist watch and their feet are bare. The keyboard is white and black and is on a brown table.", - "id": 13721 - }, - { - "image_path": "/content/drive/MyDrive/combined/32aa77fc96b1c930.jpg", - "response": "a close up of a watch with a silver band", - "id": 13722 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa61099a62bcda9.jpg", - "response": "In the image, there is a silver Emporio Armani watch displayed on a white background. The watch has a silver bracelet style strap and a black face. The watch has three subdials, and the Emporio Armani logo is located on the face of the watch. The hands of the watch are white.", - "id": 13723 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f2ff78adbd93c85.jpg", - "response": "A watch with a silver metal band and a black face.", - "id": 13724 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bfa9fce4bfdda58.jpg", - "response": "A person is holding a wallet and a knife on a beach. The person is also wearing a watch.", - "id": 13725 - }, - { - "image_path": "/content/drive/MyDrive/combined/2930ca80bf9b6653.jpg", - "response": "A couple of watches on a white background.", - "id": 13726 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c132931fbd0b8eb.jpg", - "response": "A black and white photo of a building with a sign that says \"INDUSTRIAL\" on it. The building also has a sign that says \"BANK\" on it. There is a clock on the side of the building. The sky is cloudy.", - "id": 13727 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc65eaad6f75e95.jpg", - "response": "A building with a clock on the top and a sign that says \"Grand Central Terminal\". There is a statue of a woman on top of the building and a sign that says \"McElhinney\" on the roof.", - "id": 13728 - }, - { - "image_path": "/content/drive/MyDrive/combined/2feee5b45ae4c52b.jpg", - "response": "A black and white photo of a watch.", - "id": 13729 - }, - { - "image_path": "/content/drive/MyDrive/combined/274bfe281954b0e3.jpg", - "response": "a close up of a wrist with a silver and black watch", - "id": 13730 - }, - { - "image_path": "/content/drive/MyDrive/combined/27822f4f3209f3ce.jpg", - "response": "a sign that says zone B on it", - "id": 13731 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e2c799ddb208156.jpg", - "response": "A wall with many clocks on it.", - "id": 13732 - }, - { - "image_path": "/content/drive/MyDrive/combined/39ee5f7b412c4e0b.jpg", - "response": "An individual is holding a knife and a watch on their wrist. The knife is being held in their left hand and the watch is on their right wrist. The individual is also wearing bracelets on their left wrist. They are on a boat and there is a body of water in the background.", - "id": 13733 - }, - { - "image_path": "/content/drive/MyDrive/combined/255e6c3b35dbf0ed.jpg", - "response": "A woman with long dark hair wearing a pink and white top, she is wearing a watch on her left wrist. She has a diamond on her left ring finger. To her right are two watches, one gold and silver and the other gold and brown.", - "id": 13734 - }, - { - "image_path": "/content/drive/MyDrive/combined/260fc456fdf214f9.jpg", - "response": "A black and silver rolex watch on a display.", - "id": 13735 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e1b9c0ee2c6254e.jpg", - "response": "A black and red watch with a silver face.", - "id": 13736 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee09328da8c0014.jpg", - "response": "a silver and white watch", - "id": 13737 - }, - { - "image_path": "/content/drive/MyDrive/combined/26372a9481586269.jpg", - "response": "A wrist watch with a red and white face sitting on a table.", - "id": 13738 - }, - { - "image_path": "/content/drive/MyDrive/combined/37e895dc207fc060.jpg", - "response": "In the image a person is holding a smart watch on their arm, the smart watch is displaying the word \"Gear\". Below the watch on the desk is a white Samsung phone with the word \"Android\" written on it. There is also a white mouse on the desk and a keyboard. On the left side of the image there is a cup and a yellow headphones on the right side of the image. On the top left corner of the image there is a black phone and a white one on the top right corner.", - "id": 13739 - }, - { - "image_path": "/content/drive/MyDrive/combined/3780a18ec6fe2b81.jpg", - "response": "A silver and gold Pulsar watch with the time set to 10:10.", - "id": 13740 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a96ee7cac25ab0b.jpg", - "response": "A white Breitling chronograph watch with a red base under it.", - "id": 13741 - }, - { - "image_path": "/content/drive/MyDrive/combined/3524c126b76c64ce.jpg", - "response": "a person holding a pocket watch in their hand", - "id": 13742 - }, - { - "image_path": "/content/drive/MyDrive/combined/3490d5644635726d.jpg", - "response": "A small desk clock on a pedestal in a store.", - "id": 13743 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fb607d9372a85e0.jpg", - "response": "A scoreboard for Rice University football, showing the final score of 18-17 in a game against ECU.", - "id": 13744 - }, - { - "image_path": "/content/drive/MyDrive/combined/254801e7bb3dd840.jpg", - "response": "A book cover with the word Steampunk on it in large letters.", - "id": 13745 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e32773ba881d13a.jpg", - "response": "A watch with a black band and a silver face.", - "id": 13746 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ddd633fa99d716c.jpg", - "response": "A close up of a smart watch on a wooden table. The watch is a black and grey Samsung Galaxy Gear and is showing the power off restart menu. Next to the watch is a smartphone.", - "id": 13747 - }, - { - "image_path": "/content/drive/MyDrive/combined/2789ee2d4f28774f.jpg", - "response": "A picture of two people on a notebook.", - "id": 13748 - }, - { - "image_path": "/content/drive/MyDrive/combined/40380a69ea0d184c.jpg", - "response": "A white LG smartphone sits on a table next to a perfume bottle. The phone's screen displays the time as 12:00. A watch is visible on the table, positioned towards the top right corner of the image. The phone's display shows a pattern of red and blue dots.", - "id": 13749 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e50bef68444b80a.jpg", - "response": "a table with a plate of food and a cup of coffee", - "id": 13750 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e6071084d7bf9d8.jpg", - "response": "A clock with the time set to 10:10 with a rainbow of colors shining through.", - "id": 13751 - }, - { - "image_path": "/content/drive/MyDrive/combined/374a5499a99921da.jpg", - "response": "A person is holding a smart watch on their wrist. The watch is white and has a digital display. The temperature is 50 degrees on the display. The time is 19:30. There is a turn right onto Burchester Place on the display.", - "id": 13752 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d6fae5b8001d2a.jpg", - "response": "a man with blonde hair holding a wwe championship belt", - "id": 13753 - }, - { - "image_path": "/content/drive/MyDrive/combined/364199c508225a21.jpg", - "response": "An electronic watch is sitting on a display.", - "id": 13754 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8a2e5c156fb6c6.jpg", - "response": "a black and white rolex watch on a green table", - "id": 13755 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d53189d3af4fb5.jpg", - "response": "A bowl full of popcorn sits on a wooden table.", - "id": 13756 - }, - { - "image_path": "/content/drive/MyDrive/combined/37b8784183dcda24.jpg", - "response": "A large metal clock on a pole with roman numerals and a white face.", - "id": 13757 - }, - { - "image_path": "/content/drive/MyDrive/combined/39c6fdcdbb86543b.jpg", - "response": "A woman wearing a black and white dress holding an award.", - "id": 13758 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f1733263c69a9d2.jpg", - "response": "A man in a military uniform is speaking and gesturing with his hands. He is wearing glasses and has a name tag that says \"Burguete\". There is a wall behind him and a table in front of him with papers on it.", - "id": 13759 - }, - { - "image_path": "/content/drive/MyDrive/combined/3758b119662e0fb9.jpg", - "response": "A Casio watch is on the ground in the grass.", - "id": 13760 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f76848cc5a59ba5.jpg", - "response": "An advertisement for Tissot watches from 1950. The main image features a man wearing a wristwatch and a pocket watch. The wristwatch is described as \"T-400 Automatic\" and has a black face with white numbers and hands. The pocket watch is silver with a black face. The advertisement also features two other wristwatches, one with a black leather band and the other with a white band. The watches are described as \"for the successful man\" and \"for business\" in the advertisement.", - "id": 13761 - }, - { - "image_path": "/content/drive/MyDrive/combined/2937db70958ebced.jpg", - "response": "A person is holding a camera in front of a waterfall.", - "id": 13762 - }, - { - "image_path": "/content/drive/MyDrive/combined/4109ee5da3327a0e.jpg", - "response": "A man is wearing a silver and black wrist watch.", - "id": 13763 - }, - { - "image_path": "/content/drive/MyDrive/combined/33383ab833a60b67.jpg", - "response": "A silver and black rolex watch sitting on a silver bracelet.", - "id": 13764 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c37230fc562aba4.jpg", - "response": "a person is wearing a watch on their wrist", - "id": 13765 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d6843a684531037.jpg", - "response": "A watch with the number 0198 on it and the name perry.", - "id": 13766 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe7f2d81b038ab5.jpg", - "response": "A black digital watch with a square face and a leather band is sitting on a wooden table. The time on the watch is 12:02.", - "id": 13767 - }, - { - "image_path": "/content/drive/MyDrive/combined/25954f3e51b7f233.jpg", - "response": "a close up of a wrist watch on a person's arm", - "id": 13768 - }, - { - "image_path": "/content/drive/MyDrive/combined/330cf95429bd6ae3.jpg", - "response": "a close up of a wrist watch on a persons wrist", - "id": 13769 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f2cf3a41f5038ad.jpg", - "response": "A man(3,6),(995,996) holding a box of McDonald's food(242,532),(523,865)", - "id": 13770 - }, - { - "image_path": "/content/drive/MyDrive/combined/3224b3672907fb88.jpg", - "response": "A person wearing white gloves is holding a silver and green rolex watch.", - "id": 13771 - }, - { - "image_path": "/content/drive/MyDrive/combined/32fb5f06253bb5a8.jpg", - "response": "A golden clock with a winged horse on it.", - "id": 13772 - }, - { - "image_path": "/content/drive/MyDrive/combined/26938aa45c91c727.jpg", - "response": "A man is wearing a wrist watch on his arm. The watch is black and has a blue face. The hands on the watch are pink. On the desk next to the man is a laptop computer.", - "id": 13773 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aa429d407212664.jpg", - "response": "A woman is wearing a wrist watch on her arm. The watch is pink and white and has a bow on it.", - "id": 13774 - }, - { - "image_path": "/content/drive/MyDrive/combined/35e6e7444ae8eb2d.jpg", - "response": "A Carrera tag on a watch face.", - "id": 13775 - }, - { - "image_path": "/content/drive/MyDrive/combined/27cd3c07c0c5ff46.jpg", - "response": "A pile of coins, including Mexican pesos, sit in a pile.", - "id": 13776 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b028685b3cab627.jpg", - "response": "A man in a green shirt is sitting in a chair and pointing to a projection screen. The screen has a picture of a city on it. There is a clock on the wall near the man and another clock on the left side of the room. There are also two pictures on the wall, one above the man and one on the right side of the room.", - "id": 13777 - }, - { - "image_path": "/content/drive/MyDrive/combined/378e06f3ea05441c.jpg", - "response": "A screen shot of a website with a search bar at the top. The search bar is asking the viewer what do you like about this item? There are two drop down menus under the search bar, one labeled \"Which aspects are most important?\" and the other labeled \"What do you like about this item?\" There are several options to choose from including \"Color\", \"Shape\", \"Pattern\", \"Brand\", \"Size\", \"Purpose\", \"Shape\", \"Pattern\", \"Brand\", \"Size\", \"Purpose\", \"Color\", \"Shape\", \"Pattern\", \"Brand\", \"Size\", \"Purpose\", \"Color\", \"Shape\", \"Pattern\", \"Brand\", \"Size\", \"Purpose\", \"Color\", \"Shape\", \"Pattern\", \"Brand\", \"Size\", \"Purpose\", \"Brand\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\", \"Purpose\",", - "id": 13778 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c24a8a9f512c48c.jpg", - "response": "A watch with black band and silver face is on a green counter.", - "id": 13779 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee9bc40893cb765.jpg", - "response": "a group of people standing in the snow", - "id": 13780 - }, - { - "image_path": "/content/drive/MyDrive/combined/276f611acc2dd305.jpg", - "response": "A man is wearing a Panerai watch on his wrist. The watch has a black face and silver accents. The hands on the watch are white. The watch band is brown leather. The man's wrist is hairy.", - "id": 13781 - }, - { - "image_path": "/content/drive/MyDrive/combined/322e2857d11e6696.jpg", - "response": "The image shows a close up of a wristwatch with a transparent case back to show the internal workings. The watch has a leather strap and a round black dial with silver hands and markers. The hands and the markers are all slightly curled at the ends. The watch face has a date display at the bottom right corner. The case is made of stainless steel and the bezel is polished silver. The watch is made by Tissot and has a Swiss made movement. The back of the watch has the words \"Tissot 1853\" written in gold.", - "id": 13782 - }, - { - "image_path": "/content/drive/MyDrive/combined/538d05fa4c945e9a.jpg", - "response": "A white building with a clock on the front of it.", - "id": 13783 - }, - { - "image_path": "/content/drive/MyDrive/combined/4acf7781a7f19dfb.jpg", - "response": "a black and silver casio watch", - "id": 13784 - }, - { - "image_path": "/content/drive/MyDrive/combined/42cf09ab3faf8a66.jpg", - "response": "A DVD cover for the movie Alice in Wonderland. The main character Alice is laying on her back on a pillow with a white rabbit sitting on her right and a cheshire cat sitting on her left. The cheshire cat is looking up at Alice. The DVD cover is on a blue background.", - "id": 13785 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b44673640715d80.jpg", - "response": "A silver watch with a black face and silver accents.", - "id": 13786 - }, - { - "image_path": "/content/drive/MyDrive/combined/411f174e1ff8102f.jpg", - "response": "A watch with the time set to 7:10 and the date set to 27 April 2015.", - "id": 13787 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ce2e9b1b0beef25.jpg", - "response": "a person is wearing three wrist watches on their arm.", - "id": 13788 - }, - { - "image_path": "/content/drive/MyDrive/combined/493002982d287d7f.jpg", - "response": "A watch with a black band and a black face.", - "id": 13789 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f66c0433cea9155.jpg", - "response": "A collage of different Casio watches.", - "id": 13790 - }, - { - "image_path": "/content/drive/MyDrive/combined/5008290fc91c35f2.jpg", - "response": "A man is holding a wrist watch in front of a picture of the Beatles.", - "id": 13791 - }, - { - "image_path": "/content/drive/MyDrive/combined/478d22003c64ce17.jpg", - "response": "In the image there is a woman playing a wind instrument. She is holding the instrument with a music sheet in front of her. The instrument is a French horn. The sheet music in front of her has notes on it. She is also wearing a red watch. She is standing outside with a blurry background of green trees in the distance.", - "id": 13792 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bb610bdf1f2f770.jpg", - "response": "a person holding a knife on a beach", - "id": 13793 - }, - { - "image_path": "/content/drive/MyDrive/combined/49fc7509307833cb.jpg", - "response": "A close up of a silver watch with a black face and silver accents.", - "id": 13794 - }, - { - "image_path": "/content/drive/MyDrive/combined/4703f0c06e1e70ee.jpg", - "response": "A watch with the time set at 10:15.", - "id": 13795 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2402ac5a0fce34.jpg", - "response": "A wrist watch with a firetruck on the face of it.", - "id": 13796 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ff130b9052b61ec.jpg", - "response": "A Prada watch in a black box with the Prada logo on the top of the box.", - "id": 13797 - }, - { - "image_path": "/content/drive/MyDrive/combined/4caa4860745a3162.jpg", - "response": "A collage of many different pictures, including fabric, an umbrella, a keyboard, and a clock.", - "id": 13798 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f5b57009c9d193c.jpg", - "response": "The camera is black and silver. It is sitting on a wooden table.", - "id": 13799 - }, - { - "image_path": "/content/drive/MyDrive/combined/480d31422e410271.jpg", - "response": "The image features a pair of black and red Logitech headphones. The headphones have a black band with red circuit-like designs on the ear cups. The ear cups themselves are black and have a cushioned interior for comfort. The headphones have a black and red Logitech logo on the left cup. The headphones are laying flat on a white surface.", - "id": 13800 - }, - { - "image_path": "/content/drive/MyDrive/combined/47295df9b3899878.jpg", - "response": "The image features a toy set for children. The set is designed to look like a pink carriage and is decorated with Disney princesses. There are two princesses depicted on the carriage, one on each side. The princess on the left is Ariel, and the princess on the right is Cinderella. The carriage is open, revealing a matching watch and book inside. The watch is white and features a princess design. The book is also princess-themed. The toy set is pink and has a princess theme.", - "id": 13801 - }, - { - "image_path": "/content/drive/MyDrive/combined/50a1ff9592467b27.jpg", - "response": "A man is wearing a silver and black watch on his wrist. The watch has a black and orange face and a brown leather strap. The man's hair is brown and unshaven. The background of the image is a grey wall.", - "id": 13802 - }, - { - "image_path": "/content/drive/MyDrive/combined/50863450077435c7.jpg", - "response": "the back of a watch with a stainless steel plate", - "id": 13803 - }, - { - "image_path": "/content/drive/MyDrive/combined/423165577f3f52ce.jpg", - "response": "A person is wearing a smart watch on their wrist.", - "id": 13804 - }, - { - "image_path": "/content/drive/MyDrive/combined/52b820cfdb092dcb.jpg", - "response": "An image of two different types of watches on a wooden table.", - "id": 13805 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c9b7e52c4edb08.jpg", - "response": "A cell phone and a smart watch are sitting on a wooden table.", - "id": 13806 - }, - { - "image_path": "/content/drive/MyDrive/combined/4855ead62654ce27.jpg", - "response": "A black and white photo of an iPad box on a desk. The box is on a table and there is a watch sitting in front of it. There is also a pen next to the watch.", - "id": 13807 - }, - { - "image_path": "/content/drive/MyDrive/combined/5082475b716d3933.jpg", - "response": "In the image, there is a black and silver watch with a black face and silver accents. The watch has a square shape and is set on a black leather band. The face of the watch is black with silver accents and has three subdials. The hands of the watch are red. The watch is displayed on a black background.", - "id": 13808 - }, - { - "image_path": "/content/drive/MyDrive/combined/52cf145eb46fe41e.jpg", - "response": "A watch with a black face and silver accents.", - "id": 13809 - }, - { - "image_path": "/content/drive/MyDrive/combined/434afcffc7f906cc.jpg", - "response": "A wristwatch with a Mickey Mouse face on the face of the watch.", - "id": 13810 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f1638b1427ec355.jpg", - "response": "A smart watch with a leather band is sitting on a wooden table. The watch face displays the date as February 7th and the time as 14:01. The watch is running the Android Wear operating system.", - "id": 13811 - }, - { - "image_path": "/content/drive/MyDrive/combined/5174c4a7a13965fc.jpg", - "response": "A watch with the number 0223 on it.", - "id": 13812 - }, - { - "image_path": "/content/drive/MyDrive/combined/47b208611b29bbdb.jpg", - "response": "A black and white clock sitting on a table next to a greeting card.", - "id": 13813 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e84e7606661bbe.jpg", - "response": "A vintage watch advertisement for Boulevard by Mead. The image features a woman with her hand on her wrist, wearing a Boulevard watch. The text on the image reads \"Listen...can you hear it?\" and goes on to describe the watch and its features.", - "id": 13814 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c5c7dadeedae2f0.jpg", - "response": "a person is wearing a black wrist watch", - "id": 13815 - }, - { - "image_path": "/content/drive/MyDrive/combined/53239aa7cde432be.jpg", - "response": "A watch is placed on a black and blue piece of machinery.", - "id": 13816 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f6f3d1c2fd5af97.jpg", - "response": "A person is holding a Casio watch in their hand. The watch is made of metal and has a black dial. The numbers on the dial are in white and the hands are white as well. The watch is on the person's middle finger. The background is white.", - "id": 13817 - }, - { - "image_path": "/content/drive/MyDrive/combined/47172c9d8dd15d36.jpg", - "response": "An old red Ford classic car with the hood up and a white and red interior.", - "id": 13818 - }, - { - "image_path": "/content/drive/MyDrive/combined/549f54ebc051171c.jpg", - "response": "A Rolex watch with a green face and a black band is shown in the image. The watch is positioned in the center of the image with a dark blue background. There are light green bubbles in the background that are positioned at various depths. The watch is surrounded by these bubbles, with some of them on the left and right sides of the watch and some of them directly above and below the watch.", - "id": 13819 - }, - { - "image_path": "/content/drive/MyDrive/combined/42d898be64a4771d.jpg", - "response": "a silver box with a watch inside of it", - "id": 13820 - }, - { - "image_path": "/content/drive/MyDrive/combined/46716718f9d318ac.jpg", - "response": "A fork and a white napkin are sitting on a counter next to a watch.", - "id": 13821 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c4b3de89bdcf10.jpg", - "response": "a person wearing a silver wrist watch", - "id": 13822 - }, - { - "image_path": "/content/drive/MyDrive/combined/533f6ecbf2fca9d5.jpg", - "response": " A person(10,346),(859,996) holding a smartwatch in their hand.", - "id": 13823 - }, - { - "image_path": "/content/drive/MyDrive/combined/47c776805a7e3846.jpg", - "response": "A woman licking her upper lip with a Rolex watch in the foreground.", - "id": 13824 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a1fe303ff78eb0.jpg", - "response": "A watch with a black face and silver band is sitting on a wooden table.", - "id": 13825 - }, - { - "image_path": "/content/drive/MyDrive/combined/442d372e1f977999.jpg", - "response": "A man and a woman in costumes are standing on a street. The man is wearing a top hat, a coat, and has bunny ears on his head. He is also wearing a mask and holding a clock. The woman is wearing a dress and has a key in her hands.", - "id": 13826 - }, - { - "image_path": "/content/drive/MyDrive/combined/463b9b2e49db7a90.jpg", - "response": "A watch is being held by a person's fingers. The watch is silver and has a black band. The face of the watch is silver and features white numbers and hands. The hands of the watch are positioned at approximately 10 and 2. The watch is on a green surface.", - "id": 13827 - }, - { - "image_path": "/content/drive/MyDrive/combined/4569f90b9c41512d.jpg", - "response": "A large building with a clock on the front of it.", - "id": 13828 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e357c62adf30420.jpg", - "response": "A Timex weekend style watch with a grey and orange strap.", - "id": 13829 - }, - { - "image_path": "/content/drive/MyDrive/combined/53244186e0123daa.jpg", - "response": "a close up of a wrist watch with a black and blue face", - "id": 13830 - }, - { - "image_path": "/content/drive/MyDrive/combined/55458a22146e1511.jpg", - "response": "A silver and black watch with a silver band and a black and white face.", - "id": 13831 - }, - { - "image_path": "/content/drive/MyDrive/combined/102cdc8aa2fd8c14.jpg", - "response": "A white board with red and blue ink on it.", - "id": 13832 - }, - { - "image_path": "/content/drive/MyDrive/combined/1691df88caf473d2.jpg", - "response": "A white board with purple ink that says San Luis Water Incident.", - "id": 13833 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a2f4023b62dc70.jpg", - "response": "A white board with writing on it.", - "id": 13834 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d6cfdc06aedbc4.jpg", - "response": "A whiteboard with several different things written on it.", - "id": 13835 - }, - { - "image_path": "/content/drive/MyDrive/combined/150c84364cca325c.jpg", - "response": "A white board with writing on it.", - "id": 13836 - }, - { - "image_path": "/content/drive/MyDrive/combined/081281bd8857bbaf.jpg", - "response": "A man in a tan suit coat is writing on a white board.", - "id": 13837 - }, - { - "image_path": "/content/drive/MyDrive/combined/083f2b863d4ab559.jpg", - "response": "A whiteboard with a flip chart on it with the word \"conclusions\" written on it in red. Below that are three bullet points. The first is \"currency system - to be developed\" in blue. The second is \"keep it simple!\" in green. The third is \"it is not going to be a 'perfect' system\" in purple. Below that is a box labeled \"Fabrikken University\" with a red line through it with the comment \"about anything\". Below that is a box labeled \"next step\" with a red line through it with the comment \"summarize actions\". Below that is a box labeled \"responsibilities\" with a red line through it with the comment \"action response time\".", - "id": 13838 - }, - { - "image_path": "/content/drive/MyDrive/combined/12019be6cd2e1f7a.jpg", - "response": "A white board with red marker writing on it.", - "id": 13839 - }, - { - "image_path": "/content/drive/MyDrive/combined/081cfb157127d22f.jpg", - "response": "A woman with red hair and a black and white striped shirt writing on a white board.", - "id": 13840 - }, - { - "image_path": "/content/drive/MyDrive/combined/16f269fe1664b21b.jpg", - "response": "A man pointing to a chart on a white board.", - "id": 13841 - }, - { - "image_path": "/content/drive/MyDrive/combined/148ea22049356ea9.jpg", - "response": "A white board with a bunch of writing on it.", - "id": 13842 - }, - { - "image_path": "/content/drive/MyDrive/combined/102a8a258180ef9f.jpg", - "response": "A white board with writing on it.", - "id": 13843 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccf8b07282381f4.jpg", - "response": "A man in a blue shirt standing in front of a white board.", - "id": 13844 - }, - { - "image_path": "/content/drive/MyDrive/combined/098109802e0be3e9.jpg", - "response": "A group of three men standing in front of a white board.", - "id": 13845 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0882fe0f1a907a.jpg", - "response": "A white board with writing on it in red and blue ink.", - "id": 13846 - }, - { - "image_path": "/content/drive/MyDrive/combined/11dc994846fa265f.jpg", - "response": "A white board with writing on it.", - "id": 13847 - }, - { - "image_path": "/content/drive/MyDrive/combined/104c82e95a295ba0.jpg", - "response": "A white board with writing on it.", - "id": 13848 - }, - { - "image_path": "/content/drive/MyDrive/combined/108ad1af45a36315.jpg", - "response": "A white board with writing on it in several languages.", - "id": 13849 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fbdd08520e1fff5.jpg", - "response": "A white board with red and green writing on it.", - "id": 13850 - }, - { - "image_path": "/content/drive/MyDrive/combined/14dabffc7c4a5975.jpg", - "response": "A white board with red writing on it.", - "id": 13851 - }, - { - "image_path": "/content/drive/MyDrive/combined/085cc75089558a09.jpg", - "response": "A man in a flannel shirt is standing in front of a white board.", - "id": 13852 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2f6860f670c5f2.jpg", - "response": "A white board with a few marker pens on it. The white board has a drawing of a house with a wifi signal coming out of it and going into a cell phone. The word 'www' is written in the top left hand corner of the board.", - "id": 13853 - }, - { - "image_path": "/content/drive/MyDrive/combined/10f70565673360b6.jpg", - "response": "A girl wearing a blue shirt standing in front of a white board with writing on it.", - "id": 13854 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b9f322fb13c1239.jpg", - "response": " A man(257,183),(997,996) standing in front of a whiteboard(0,1),(999,813) with writing on it", - "id": 13855 - }, - { - "image_path": "/content/drive/MyDrive/combined/1feb5a91f6adb262.jpg", - "response": "A drawing of a person in a square with the word SUBWAY above it and an arrow pointing to the right.", - "id": 13856 - }, - { - "image_path": "/content/drive/MyDrive/combined/184d3e681aa3d556.jpg", - "response": "A white board with a lot of writing on it in a foreign language.", - "id": 13857 - }, - { - "image_path": "/content/drive/MyDrive/combined/1948768d3b34ba41.jpg", - "response": "A white board with a lot of writing on it.", - "id": 13858 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a237571f2e44cc5.jpg", - "response": "A whiteboard with a circular diagram of the product design process. The diagram is titled \"F2 Interaction Design\" and has arrows pointing to three stages: \"Design Specification\", \"Test against dialogue\", and \"Paper based prototyping & deployment\". Below the diagram, there are some additional notes.", - "id": 13859 - }, - { - "image_path": "/content/drive/MyDrive/combined/102e2056905fea2e.jpg", - "response": "A white board with writing on it.", - "id": 13860 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f35900f75da768b.jpg", - "response": "A flip chart with a poster on it that says Mistake, Minimize, and Minimize Impact. There are also words written in different colors under each heading.", - "id": 13861 - }, - { - "image_path": "/content/drive/MyDrive/combined/146a49fd48b21c40.jpg", - "response": "A white board with red writing on it.", - "id": 13862 - }, - { - "image_path": "/content/drive/MyDrive/combined/2013535a734b727b.jpg", - "response": "A white board with a red border and some writing on it.", - "id": 13863 - }, - { - "image_path": "/content/drive/MyDrive/combined/1da38d2b8f4905d1.jpg", - "response": "A white board with the words Toronto thinks on it.", - "id": 13864 - }, - { - "image_path": "/content/drive/MyDrive/combined/102f730e6c6cb116.jpg", - "response": "A keyboard with the keys command and option on it.", - "id": 13865 - }, - { - "image_path": "/content/drive/MyDrive/combined/1424e6004b9ea174.jpg", - "response": "A white board with a Sudoku puzzle partially filled in. The puzzle has 9 rows and 9 columns and each row, column and 3x3 box must contain one and only one of each number 1-9.", - "id": 13866 - }, - { - "image_path": "/content/drive/MyDrive/combined/162a237f329db217.jpg", - "response": "A whiteboard with a heart drawn on it. The heart is half green and half red. The word \"my\" is written above the heart in red. Below the heart, in red, are the words \"Because your not here.\"", - "id": 13867 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e02c67fcb29ef7.jpg", - "response": "a white board with writing on it in black marker", - "id": 13868 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb074069a402d6e.jpg", - "response": "a man standing in front of a white board holding a plant", - "id": 13869 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a2e7e1ac12be6fe.jpg", - "response": "A white board with the heading Card Stock. Below that are three columns with the headings Construction Paper, Fabric, and grams. Below Construction Paper are the weights of 3 grams and 2 grams. Below Fabric are the weights of 32 grams and 6 grams.", - "id": 13870 - }, - { - "image_path": "/content/drive/MyDrive/combined/1352a22951f61b3d.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 13871 - }, - { - "image_path": "/content/drive/MyDrive/combined/07bd296356587e64.jpg", - "response": "A white board with a red marker drawing on it.", - "id": 13872 - }, - { - "image_path": "/content/drive/MyDrive/combined/101935dd88f57a95.jpg", - "response": "a white board with a timeline drawn on it in black marker. The timeline starts with the word \"timel;e\" and ends with \"day\" and is labeled with various events such as \"leaves school\", \"fails rich\", \"success\", \"plan 2 has life\", \"make millions\", \"plots world domination\", \"ais valentines\", \"anniversary\" and \"burns barn\"", - "id": 13873 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e5cbb43fd3fe49.jpg", - "response": "A white board with writing on it.", - "id": 13874 - }, - { - "image_path": "/content/drive/MyDrive/combined/1805b034e0152794.jpg", - "response": "In the image there is a person drawing on a whiteboard. The person is holding a red and white pen and is wearing a pink bracelet. The person is wearing a black shirt and is only drawing on one side of the whiteboard. The person is drawing a plan of a house.", - "id": 13875 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d05ffee742c36d.jpg", - "response": "A white board with a lot of writing on it.", - "id": 13876 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae183173bc07d8c.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 13877 - }, - { - "image_path": "/content/drive/MyDrive/combined/1701b4ad58500a8e.jpg", - "response": "The image is a white board with red writing on it. The equation at the top is for f(x) and it is a quadratic equation. Below the equation is a function y=f(x) with a switch symbol to the right of it. Below the switch symbol is a new equation for y=f(y) with a red circle around it. Below the new equation is another equation for y=f(x) with a red square around it. The last equation is for y=f(x) with a red triangle above it.", - "id": 13878 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1d51da4c61c44e.jpg", - "response": "A white board with writing on it.", - "id": 13879 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b9e647fccd97986.jpg", - "response": "A white board with a lot of writing on it.", - "id": 13880 - }, - { - "image_path": "/content/drive/MyDrive/combined/136e28779aa55759.jpg", - "response": "A white board with writing on it.", - "id": 13881 - }, - { - "image_path": "/content/drive/MyDrive/combined/1426c9a83b611701.jpg", - "response": "A whiteboard with writing on it. The writing includes the names of people and their roles, such as \"Adrianne is everything. Pub. speaking. Podcasting. consultant\" and \"Gloria is an expert in small biz strategy.\" There is also a picture of a person with a thought bubble above their head.", - "id": 13882 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a4886430cd922f4.jpg", - "response": "A whiteboard with writing on it.", - "id": 13883 - }, - { - "image_path": "/content/drive/MyDrive/combined/16e135051584663d.jpg", - "response": "A white board with writing on it in a foreign language.", - "id": 13884 - }, - { - "image_path": "/content/drive/MyDrive/combined/54ccd56f1a3719ba.jpg", - "response": "A white board with a bunch of writing on it.", - "id": 13885 - }, - { - "image_path": "/content/drive/MyDrive/combined/30f9b48158fc56e6.jpg", - "response": "A person is drawing on a white board with markers.", - "id": 13886 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e042c5963976a5.jpg", - "response": "A whiteboard with writing on it. The writing includes the word \"Server\" written in blue. There is also a diagram drawn on the board. The diagram includes a circle with the word \"Server\" written in the middle. There is an arrow pointing from the circle to a rectangle labeled \"Web\". Below the rectangle is the number \"12\". There is another arrow pointing from the circle to a stick figure drawing labeled \"1 masu\". Above the stick figure is the number \"1995 read\".", - "id": 13887 - }, - { - "image_path": "/content/drive/MyDrive/combined/50c45baa95a84d83.jpg", - "response": "A man standing in front of a white board.", - "id": 13888 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dad191839c71c02.jpg", - "response": "A white board with writing on it.", - "id": 13889 - }, - { - "image_path": "/content/drive/MyDrive/combined/49925974361e1460.jpg", - "response": "A white wall with a red stripe and writing on it.", - "id": 13890 - }, - { - "image_path": "/content/drive/MyDrive/combined/5215b1ab88ff8074.jpg", - "response": "A white board with writing and drawings on it.", - "id": 13891 - }, - { - "image_path": "/content/drive/MyDrive/combined/340a701e67b3b23a.jpg", - "response": "A whiteboard with notes written on it in blue ink. The notes are titled Browser Bug List and list several bugs. The list includes: 1E7, 1E8, SAFARI, Input Bug, Submit Bug, should be able to move around the page, should be able to scroll forever, not wordery, change, 1E9, Legend styled corner, always work, Dylan, Proposed facial hair growth, visit me at my new home on the cook islands!", - "id": 13892 - }, - { - "image_path": "/content/drive/MyDrive/combined/3492f2b6c34e80cc.jpg", - "response": "A white board with a lot of writing on it.", - "id": 13893 - }, - { - "image_path": "/content/drive/MyDrive/combined/24dc4099dad91fa0.jpg", - "response": "A whiteboard with writing on it.", - "id": 13894 - }, - { - "image_path": "/content/drive/MyDrive/combined/4730d13f1ac5ff02.jpg", - "response": "A flipchart with two columns, one with a list of Supporting Behaviors and the other with a list of Restraining Behaviors. Supporting Behaviors include teamwork, structure and routine with flexibility, show respect at all times, effective pair rotation, group ownership and responsibility, and not learning. Restraining Behaviors include lack of personal discipline, not wanting to operate outside comfort zone, pushing opinions not listening to other opinions, and lack of accountability.", - "id": 13895 - }, - { - "image_path": "/content/drive/MyDrive/combined/52d63407556fa750.jpg", - "response": "A man standing in front of a white board with a lot of writing on it.", - "id": 13896 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f11d908d4496669.jpg", - "response": "A whiteboard with a bunch of writing on it.", - "id": 13897 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b56e9a68452e5ac.jpg", - "response": "a fossil of a dinosaur on display in a museum.", - "id": 13898 - }, - { - "image_path": "/content/drive/MyDrive/combined/37e8bf9720152f55.jpg", - "response": "A white board with writing on it.", - "id": 13899 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f921c77e221c9d6.jpg", - "response": "A white board with blue and red writing on it.", - "id": 13900 - }, - { - "image_path": "/content/drive/MyDrive/combined/22a3a4bbb363fb59.jpg", - "response": "The image shows a white board with blue and red writing on it. The writing is in English and it appears to be a math problem.", - "id": 13901 - }, - { - "image_path": "/content/drive/MyDrive/combined/211ab7b77dac642d.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 13902 - }, - { - "image_path": "/content/drive/MyDrive/combined/34a5210f22cd7a16.jpg", - "response": "A white board with writing all over it.", - "id": 13903 - }, - { - "image_path": "/content/drive/MyDrive/combined/2629e1d6d47b6b40.jpg", - "response": "Two men standing in front of a white board with writing on it.", - "id": 13904 - }, - { - "image_path": "/content/drive/MyDrive/combined/398e535a4607bfd6.jpg", - "response": "A white board with Chinese and English writing on it.", - "id": 13905 - }, - { - "image_path": "/content/drive/MyDrive/combined/47f8ac0fb7b4bd05.jpg", - "response": "The image shows two flipchart pages with notes written in blue and red ink. The page on the left is titled \"Y Sep 11\" and has several notes, including \"K launch proj\", \"introducing in classes\", \"refresher (20-21/22)\", \"Summer school of schols\", \"2/3 start of trips\", \"every pupil hallilloway\", \"Peer group work on tasks to make product to empow\", \"collect material for conference\", \"prepare for conference\", \"March 13 conference-workshops\", \"produce a best used by how2pile\", and \"Old pricel work chapters\". The page on the right is titled \"Cont Time Schedule\" and has several notes, including \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week\", \"2 week\", \"1 week", - "id": 13906 - }, - { - "image_path": "/content/drive/MyDrive/combined/37d2c04f7e9c76af.jpg", - "response": "A white board with a red house drawn on it.", - "id": 13907 - }, - { - "image_path": "/content/drive/MyDrive/combined/522ea12b15b7530b.jpg", - "response": "A white board with blue and red writing on it.", - "id": 13908 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b144d5d739fd38a.jpg", - "response": "A white board with a lot of math equations on it.", - "id": 13909 - }, - { - "image_path": "/content/drive/MyDrive/combined/2df1773828c68874.jpg", - "response": "A white board with red marker writing on it. The writing says \"Yorktown\" on the top and \"Taconic PKWY\" below it. Below that are two sets of drums drawn in red marker.", - "id": 13910 - }, - { - "image_path": "/content/drive/MyDrive/combined/41541fd094348f36.jpg", - "response": "a white board with writing on it", - "id": 13911 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ab457f6b02a6c19.jpg", - "response": "A white board with writing on it.", - "id": 13912 - }, - { - "image_path": "/content/drive/MyDrive/combined/2886d0067406fb97.jpg", - "response": "A white board with many different colored signatures and writing all over it.", - "id": 13913 - }, - { - "image_path": "/content/drive/MyDrive/combined/2547a02754e2d282.jpg", - "response": "A white board with visual notes from the PopTech Social Innovation Fellows.", - "id": 13914 - }, - { - "image_path": "/content/drive/MyDrive/combined/2091a7b7020410ab.jpg", - "response": "A white board with writing on it in green and blue ink.", - "id": 13915 - }, - { - "image_path": "/content/drive/MyDrive/combined/286cf51878f1c29e.jpg", - "response": "A whiteboard with a diagram of the current Wilma module structure.", - "id": 13916 - }, - { - "image_path": "/content/drive/MyDrive/combined/38d92db4ce4e17c0.jpg", - "response": "A white board with many notes posted on it.", - "id": 13917 - }, - { - "image_path": "/content/drive/MyDrive/combined/535fbc62d066a94f.jpg", - "response": "A white board with writing on it.", - "id": 13918 - }, - { - "image_path": "/content/drive/MyDrive/combined/4de882fc2c355dcb.jpg", - "response": "A whiteboard with a lot of writing on it. It has several sections, including a heading that says \"60 Second Video\" and a heading that says \"Showcasing Michelle's Skillz\" and a heading that says \"or lack thereof\". There are several sections under these headings, including \"G\" for Grandma's Video, \"C\" for Concrete Video, \"G\" for Get Me the Hell Outta Here, \"P\" for Personal Stories, \"D\" for Drawings, \"A\" for Awesome personalities and video, \"T\" for Tutorials, \"E\" for Editing, \"M\" for Montage, \"O\" for Online video, \"U\" for YouTube, \"R\" for Reading, \"A\" for Art, \"N\" for Photography, \"O\" for Other, \"V\" for Video, \"I\" for Images, \"D\" for Drawings, \"A\" for Awesome personalities and video, \"I\" for Images, \"O\" for Other, \"C\" for Concrete Video, \"E\" for Editing, \"M\" for Montage, \"O\" for Online video, \"R\" for Reading, \"A\" for Art, \"N\" for Photography, \"O\" for Other, \"V\" for Video, \"I\" for Images, \"D\" for Drawings, \"A\" for Awesome personalities and video, \"I\" for Images, \"O\" for Other, \"C\" for Concrete Video, \"E\" for Editing, \"M\" for Montage, \"O\" for Online video, \"R\" for Reading, \"A\" for Art, \"N\" for Photography, \"O\" for Other, \"V\" for Video, \"I\" for Images, \"D\" for Drawings, \"A\" for Awesome personalities and video, \"I\" for Images, \"O\" for Other, \"C\" for Concrete Video, \"E\" for Editing, \"M\" for Montage, \"O\" for Online video, \"R\" for Reading, \"A\" for Art, \"N\" for Photography, \"O\" for Other, \"V\" for Video, \"I\" for Images, \"D\" for Drawings, \"A\" for Awesome personalities and video, \"I\" for Images, \"O\" for Other, \"C\" for Concrete Video, \"E\" for Editing, \"M\" for Montage, \"O\" for Online video, \"R\" for", - "id": 13919 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f6dd92434b041b0.jpg", - "response": "A woman with glasses and a black shirt is writing on a white board.", - "id": 13920 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ce19de905ffdfd0.jpg", - "response": "A person writing on a white board with a marker.", - "id": 13921 - }, - { - "image_path": "/content/drive/MyDrive/combined/4db2529818eb483e.jpg", - "response": "A glass board with writing on it.", - "id": 13922 - }, - { - "image_path": "/content/drive/MyDrive/combined/08f58f3d3f9b05da.jpg", - "response": "A man is playing a soccer game on a TV. The TV is on a stand and is quite large. The man is watching the game intently. The TV is on a wooden stand. The game the man is playing is soccer.", - "id": 13923 - }, - { - "image_path": "/content/drive/MyDrive/combined/0979acf2d1854e6a.jpg", - "response": "The image shows a black laptop that is open and sitting on a white surface. The laptop has a dark screen and a black keyboard. There is a blue sticker on the bottom left of the laptop. The laptop is made by Asus and has a white logo on the screen. The laptop is positioned in the center of the image and there is a white background.", - "id": 13924 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c09e34dafa544b0.jpg", - "response": "A living room with a television mounted on the wall.", - "id": 13925 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f2bef49915cdf3b.jpg", - "response": "A screen with a picture of a group of people on a roller coaster.", - "id": 13926 - }, - { - "image_path": "/content/drive/MyDrive/combined/2315748844e91d28.jpg", - "response": "A woman is sitting on a table next to an LG TV. She is holding a remote control in her right hand. The TV is displaying the 3D Zone menu. The menu has six options: Entertainment, Sports, Music, Education, Movies and Kids. Each option has a picture associated with it. The Entertainment option features a popcorn image, the Sports option features a soccer ball, the Music option features a music note, the Education option features a book, the Movies option features a film strip, and the Kids option features a teddy bear.", - "id": 13927 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b8e6c610fb72b6b.jpg", - "response": "A television that is sitting on a table.", - "id": 13928 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0c959cdfb5f87e.jpg", - "response": "A laptop computer is sitting on a desk in front of a computer monitor. The laptop is closed and sitting on the desk.", - "id": 13929 - }, - { - "image_path": "/content/drive/MyDrive/combined/121efc88fd74ea65.jpg", - "response": "Two women are standing in front of an LG TV, one of them is pointing at the TV screen.", - "id": 13930 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de61510a5714caa.jpg", - "response": "A large flat screen television set on a stand.", - "id": 13931 - }, - { - "image_path": "/content/drive/MyDrive/combined/172392706b219021.jpg", - "response": "A desk with a laptop, monitor, mouse, keyboard, cell phone, and a magazine.", - "id": 13932 - }, - { - "image_path": "/content/drive/MyDrive/combined/11dc50cfbc9fcfdf.jpg", - "response": "A table with a black cloth and a cardboard box on top of it. The box has a white cover with red and gold writing on it. On the table there is also a television set and a video game console with a controller.", - "id": 13933 - }, - { - "image_path": "/content/drive/MyDrive/combined/13925fae64e251c4.jpg", - "response": "A television is on a glass table.", - "id": 13934 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c630904db6ea422.jpg", - "response": "In the image, there are two flat screen televisions mounted on a ceiling. The televisions are showing the same scene, which features a man in a green shirt and black shorts. The man is standing in a ring with a large audience watching him. The televisions are located in a building with lights on, and there is a person visible at the bottom of the image.", - "id": 13935 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b96a7e70cf75b79.jpg", - "response": "A landscape photo of a river with mountains in the background.", - "id": 13936 - }, - { - "image_path": "/content/drive/MyDrive/combined/1049d0be3d0195b0.jpg", - "response": "A large flat screen TV mounted on a wall.", - "id": 13937 - }, - { - "image_path": "/content/drive/MyDrive/combined/1abcf3116b521888.jpg", - "response": "A man in a blue shirt standing in a green room with a phone on top of a black printer.", - "id": 13938 - }, - { - "image_path": "/content/drive/MyDrive/combined/100f84ebfb59f852.jpg", - "response": "A large scoreboard at a baseball stadium displays the game's statistics.", - "id": 13939 - }, - { - "image_path": "/content/drive/MyDrive/combined/228f894ef8c27a54.jpg", - "response": "A baseball stadium with a large screen displaying a baseball game.", - "id": 13940 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a7d617d74ff373.jpg", - "response": "A person in a costume with a big head is standing in front of a tv.", - "id": 13941 - }, - { - "image_path": "/content/drive/MyDrive/combined/1481db31b19b9381.jpg", - "response": "A television screen with a skating competition on it.", - "id": 13942 - }, - { - "image_path": "/content/drive/MyDrive/combined/19addcc807e06644.jpg", - "response": "A television screen with a bus on it. The bus is white and has a picture of Sarah Palin on it. The words \"Sarah Palin Here she is!\" are written on the bus. There is also text that says \"Ridin' a bus, just like you!\" and a list of items including \"books, posters, buttons, dvds, dolls\" below the bus.", - "id": 13943 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e67d368af830bf8.jpg", - "response": "A man playing a guitar on a screen.", - "id": 13944 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8f42f303183bfe.jpg", - "response": "a man wearing a brown shirt and glasses sitting in front of a laptop computer", - "id": 13945 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0ca36db877fc6b.jpg", - "response": "A female model poses with two LG Blu-ray Disc players in front of a promotional Netflix display.", - "id": 13946 - }, - { - "image_path": "/content/drive/MyDrive/combined/100afff2cdd6f092.jpg", - "response": "A row of three flat screen televisions with a red banner across the top with white letters stating \"ONLINE FOR SALE\".", - "id": 13947 - }, - { - "image_path": "/content/drive/MyDrive/combined/18a4391b99a5445a.jpg", - "response": "A desk with a monitor, laptop, and a router on it.", - "id": 13948 - }, - { - "image_path": "/content/drive/MyDrive/combined/1513bde5478c74d1.jpg", - "response": "A table with three Samsung UHD monitors on display. The left most monitor is showing a colorful abstract pattern. The right most monitor is showing an elephant. Two people are standing next to the monitors.", - "id": 13949 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b06cb143a8c3338.jpg", - "response": "A flat screen TV displaying a soccer game.", - "id": 13950 - }, - { - "image_path": "/content/drive/MyDrive/combined/1598ac1613e25ed4.jpg", - "response": "A flat screen TV sitting on top of a wooden table.", - "id": 13951 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d41246405f4157b.jpg", - "response": "A television with a lion standing on a rock on the screen.", - "id": 13952 - }, - { - "image_path": "/content/drive/MyDrive/combined/193fa8fb37659465.jpg", - "response": "a television with a woman on it", - "id": 13953 - }, - { - "image_path": "/content/drive/MyDrive/combined/166fe5fb86e04c50.jpg", - "response": "A computer screen with a website open that has a video titled \" Stories of Valor - In War's longest day and their darkest hour, these are the American soldiers who rose to their greatest challenge.\"", - "id": 13954 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5d4629fe04a4fa.jpg", - "response": "A black television that is turned on and showing a soccer game.", - "id": 13955 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae5e91e25c37fc2.jpg", - "response": "A vintage computer with a keyboard and mouse.", - "id": 13956 - }, - { - "image_path": "/content/drive/MyDrive/combined/190de6a02be068b3.jpg", - "response": "A large flat screen TV sitting on a stand.", - "id": 13957 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b6eabc8e6d54fbc.jpg", - "response": "A computer screen with a diagram on it. The diagram is a representation of a body. The body is red and has a head, arms and legs. The head is at the top of the body and is facing sideways. The arms are straight and the legs are straight. There is a white dot at the top of the body and a white dot at the bottom of the body. There is a black dot at the top of the head and a black dot at the bottom of the head. There is a black dot at the top of the left arm and a black dot at the bottom of the left arm. There is a black dot at the top of the right arm and a black dot at the bottom of the right arm.", - "id": 13958 - }, - { - "image_path": "/content/drive/MyDrive/combined/2187559fe552e951.jpg", - "response": "A tv screen with the word Lynx on it.", - "id": 13959 - }, - { - "image_path": "/content/drive/MyDrive/combined/18f48b83ae8d0c36.jpg", - "response": "A television with the words \"Just Do It\" on the screen.", - "id": 13960 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f054724a90e0ac9.jpg", - "response": "A television screen showing a soccer player on a field.", - "id": 13961 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb1ea9ff325782e.jpg", - "response": "A television that is turned on and displaying the App Library.", - "id": 13962 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e9fe411a49e2174.jpg", - "response": "A television set with a game on the screen.", - "id": 13963 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c5b50d526a6dd7f.jpg", - "response": "A television with a news report on it.", - "id": 13964 - }, - { - "image_path": "/content/drive/MyDrive/combined/160dee3be9ec3cbc.jpg", - "response": "A black laptop computer with a touchpad and keyboard.", - "id": 13965 - }, - { - "image_path": "/content/drive/MyDrive/combined/15523c3d0bda6613.jpg", - "response": "A ceiling fan mounted on a green wall.", - "id": 13966 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ef33e63ce597357.jpg", - "response": "A television screen that is turned on and displaying the words eTwinning National Conference 2010.", - "id": 13967 - }, - { - "image_path": "/content/drive/MyDrive/combined/217fd2ee20fc61d8.jpg", - "response": "a model of an iron man suit on display in front of a screen", - "id": 13968 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ef1e20affd684bf.jpg", - "response": "A television that is turned on and showing a news program.", - "id": 13969 - }, - { - "image_path": "/content/drive/MyDrive/combined/1568799f3570ec6d.jpg", - "response": "A black flat screen TV sitting on a black stand.", - "id": 13970 - }, - { - "image_path": "/content/drive/MyDrive/combined/153b7bf86ff6f2bb.jpg", - "response": "A man and woman are on the television screen.", - "id": 13971 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c048d623c43a687.jpg", - "response": "A man standing in front of a TV with a laptop on a stand.", - "id": 13972 - }, - { - "image_path": "/content/drive/MyDrive/combined/20fdd61a7c9452dc.jpg", - "response": "A black flat screen tv made by JVC.", - "id": 13973 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ab03218ae07b67b.jpg", - "response": "A television showing a soccer game with players walking off the field.", - "id": 13974 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b29ee575dbabfa4.jpg", - "response": "A laptop computer is open and sitting on a chair. On the laptop screen, there is a picture of a man and a woman.", - "id": 13975 - }, - { - "image_path": "/content/drive/MyDrive/combined/122cbbd1939a3797.jpg", - "response": "A television screen with the word \"Free\" on it.", - "id": 13976 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a959b05d88a4664.jpg", - "response": "A cell phone is sitting on top of a laptop computer.", - "id": 13977 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cb8165b25da5403.jpg", - "response": "A man with grey hair and a grey shirt is standing behind a table with a computer monitor on it. The man is wearing a red lanyard around his neck. There are several books on the table and a keyboard is placed in front of the computer monitor. A mouse is also on the table.", - "id": 13978 - }, - { - "image_path": "/content/drive/MyDrive/combined/1560390fc3445365.jpg", - "response": "A person is laying down in a room watching television. The television is on a stand and has a bright blue screen. The person has their feet propped up on a couch. There is a cat sitting on top of a stand next to the television. There is a clock on the wall that shows the time as 22:21. There are also two books on the stand under the television.", - "id": 13979 - }, - { - "image_path": "/content/drive/MyDrive/combined/1961114a00f4d50c.jpg", - "response": "A bag of kimchi sits on a table in front of a television.", - "id": 13980 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b564b89f9ff0b9e.jpg", - "response": "A desk with a television, a computer, and a couple of other electronic devices.", - "id": 13981 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e86ecb8bcb13065.jpg", - "response": "A television with a message on the screen that says \"This application cannot be used with the PS Vita TV system.\"", - "id": 13982 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d82d144e4815c73.jpg", - "response": "A woman is speaking on a large screen at a conference.", - "id": 13983 - }, - { - "image_path": "/content/drive/MyDrive/combined/1420f7d1f50db9df.jpg", - "response": "A black and silver television set with the word Xcanvas on the bottom of it.", - "id": 13984 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e611d7c1844c6e.jpg", - "response": "A flat screen TV mounted on a wall displaying a soccer game.", - "id": 13985 - }, - { - "image_path": "/content/drive/MyDrive/combined/200de8787137079d.jpg", - "response": "A television that is turned on and displaying a news report.", - "id": 13986 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ef6658f6d52d8f9.jpg", - "response": "A television screen showing a political event with a crowd of people standing on a stage.", - "id": 13987 - }, - { - "image_path": "/content/drive/MyDrive/combined/1513e33effd3e7ed.jpg", - "response": "A black flat screen tv with a white background.", - "id": 13988 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e668d5d0706c355.jpg", - "response": "An open laptop computer with a gold and black color scheme.", - "id": 13989 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a5a5e5570e5b26.jpg", - "response": "A large display with a sunflower design behind a table with several computers and other electronics on it.", - "id": 13990 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a15b78f321efcb.jpg", - "response": "A tv screen with the word Pirates on it.", - "id": 13991 - }, - { - "image_path": "/content/drive/MyDrive/combined/145df2b16fa6f656.jpg", - "response": "An antique photo of a man with a very curly afro, he is wearing a black suit with a white shirt and black bow tie. He is looking straight ahead with a serious expression.", - "id": 13992 - }, - { - "image_path": "/content/drive/MyDrive/combined/285174e75cc780a6.jpg", - "response": "A flat screen TV that is turned on with a blue screen and the words \"There is no device connected to TV\" on the screen.", - "id": 13993 - }, - { - "image_path": "/content/drive/MyDrive/combined/250f6a95a46ab2c8.jpg", - "response": "A man in a red shirt standing in front of a television.", - "id": 13994 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a66d0769b5ec433.jpg", - "response": "A television sitting on a table with a wooden background.", - "id": 13995 - }, - { - "image_path": "/content/drive/MyDrive/combined/3587bddad58312d8.jpg", - "response": "A laptop computer is on display on a table.", - "id": 13996 - }, - { - "image_path": "/content/drive/MyDrive/combined/32a1f4fe86fa5999.jpg", - "response": "A man standing in front of a large screen projector.", - "id": 13997 - }, - { - "image_path": "/content/drive/MyDrive/combined/3473538da073746b.jpg", - "response": "A soccer game is being played on a television screen. The players are wearing blue and white uniforms. The soccer ball is located in the center of the field. The game is being played on a grass field.", - "id": 13998 - }, - { - "image_path": "/content/drive/MyDrive/combined/29eb65df3d05b7d5.jpg", - "response": "A television screen that is displaying the words \"How does a company know what its customers want from them online?\"", - "id": 13999 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a5a0e4a6ef66948.jpg", - "response": "A television set is on a small stand.", - "id": 14000 - }, - { - "image_path": "/content/drive/MyDrive/combined/3131ddc6a3d5c0b9.jpg", - "response": "A restaurant menu is displayed on a wall.", - "id": 14001 - }, - { - "image_path": "/content/drive/MyDrive/combined/2929d7a50c01b07f.jpg", - "response": "A computer monitor sitting on a desk.", - "id": 14002 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0c57d0f5dc7387.jpg", - "response": "A scoreboard at a sporting event displays the score as 1-0.", - "id": 14003 - }, - { - "image_path": "/content/drive/MyDrive/combined/3273330d5a06c3e8.jpg", - "response": "A man is on the screen of a video camera.", - "id": 14004 - }, - { - "image_path": "/content/drive/MyDrive/combined/2466c09cf1b7d064.jpg", - "response": "A television screen displays two men in suits sitting next to each other. They are both holding papers and appear to be discussing a news story. The television is turned on and showing a sports news program.", - "id": 14005 - }, - { - "image_path": "/content/drive/MyDrive/combined/2407d0c59f52cf35.jpg", - "response": "A television that is turned on and showing a news report about the funeral of Charles Kennedy.", - "id": 14006 - }, - { - "image_path": "/content/drive/MyDrive/combined/36681a4493ded012.jpg", - "response": "A television screen with a man and a woman on it. They are standing in front of a table with various items on it.", - "id": 14007 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e5c15f1c438a215.jpg", - "response": "A television screen hanging from a ceiling.", - "id": 14008 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa9cc1b56d73a99.jpg", - "response": "A desktop computer monitor sitting on a desk.", - "id": 14009 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b2b99fb6ce34474.jpg", - "response": "In the image, two men are standing behind a podium on a stage. The stage has a large screen with the words \"8th Annual Crunchies Awards\" displayed on it. The men are wearing suits and one of them is holding a microphone. There are several chairs placed around the stage. In the background, there is a statue of a green character holding a hammer.", - "id": 14010 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c9b26ec123bdccd.jpg", - "response": "A wall with many different tv screens on it.", - "id": 14011 - }, - { - "image_path": "/content/drive/MyDrive/combined/2413a55b0323deb0.jpg", - "response": "A woman standing at a podium in front of a screen that says \"Money\" on it.", - "id": 14012 - }, - { - "image_path": "/content/drive/MyDrive/combined/254c437d789f602d.jpg", - "response": "A large screen television mounted on a wall.", - "id": 14013 - }, - { - "image_path": "/content/drive/MyDrive/combined/3496343928b713a8.jpg", - "response": "A television that is on and displaying a guide of upcoming shows.", - "id": 14014 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eb794a6490d3096.jpg", - "response": "The image shows a Getac F110 fully rugged convertible laptop. The laptop is open and angled to the right. The screen is off and the laptop has a black keyboard. The laptop has a black base and a black outer case. The Getac logo is visible on the lower part of the outer case. The laptop has a USB port on the right side and a USB port and an HDMI port on the left side. The laptop has a built-in barcode scanner on the right side. The laptop has a detachable keyboard that is also black.", - "id": 14015 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e9fc2d0f88fb3a9.jpg", - "response": "An old computer monitor is on a desk.", - "id": 14016 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b47525a500e3777.jpg", - "response": "A man wearing glasses and headphones is on a large screen.", - "id": 14017 - }, - { - "image_path": "/content/drive/MyDrive/combined/356ee3f9819137cb.jpg", - "response": "A television that is turned on and showing a soccer game.", - "id": 14018 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f1da251bdad3745.jpg", - "response": "A large screen television with a picture of a pier on the beach at sunset.", - "id": 14019 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c8dc60b16ba2598.jpg", - "response": "A display case with a beige computer monitor on top of a beige computer.", - "id": 14020 - }, - { - "image_path": "/content/drive/MyDrive/combined/31f575bacfaf2e8b.jpg", - "response": "A television with a video game displayed on the screen.", - "id": 14021 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d18ec1914949ece.jpg", - "response": "A black table with many lego people on it.", - "id": 14022 - }, - { - "image_path": "/content/drive/MyDrive/combined/2449f1bcbe5d823d.jpg", - "response": "A woman standing in front of a large TV.", - "id": 14023 - }, - { - "image_path": "/content/drive/MyDrive/combined/247a4afb4f0dcb95.jpg", - "response": "A flat screen television with a soccer game on.", - "id": 14024 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dd4e0af3de856a1.jpg", - "response": "A television that is turned on and showing a soccer game.", - "id": 14025 - }, - { - "image_path": "/content/drive/MyDrive/combined/39bd3d23a8b6a94d.jpg", - "response": "A flat screen TV sitting on a table with the words FIFA and Sony present on the screen.", - "id": 14026 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b3e5e8b672a73e7.jpg", - "response": "The image is an advertisement for a Macbook Pro/Air laptop. The laptop is open and sitting on a desk. The screen of the laptop is turned on and there is a wave graphic on the screen. The laptop is described as being in silver. Underneath the laptop is a sentence in Spanish that says \"Por la compra de un Macbook Pro/Air llevate unas bases para que tu equipo no se caliente con un 50% de descuento.\"", - "id": 14027 - }, - { - "image_path": "/content/drive/MyDrive/combined/34d7098f4dd61106.jpg", - "response": "A flat screen tv sitting on top of a stand.", - "id": 14028 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c2f2b7dc038d2cd.jpg", - "response": "A black Samsung laptop with a blue screen that says \"Recovery Solution III\" in white.", - "id": 14029 - }, - { - "image_path": "/content/drive/MyDrive/combined/32beb9a4fb214b36.jpg", - "response": "A laptop computer sitting on a wooden table.", - "id": 14030 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c8bb40ccdd7a8ac.jpg", - "response": "A competitive eating contest on a television screen.", - "id": 14031 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fda7dceebdfd8f2.jpg", - "response": "A television set is displaying the Wii menu.", - "id": 14032 - }, - { - "image_path": "/content/drive/MyDrive/combined/351a2d5749219403.jpg", - "response": "A group of people in uniform are sitting around a table.", - "id": 14033 - }, - { - "image_path": "/content/drive/MyDrive/combined/362b694bf08d174d.jpg", - "response": "A man in a blue suit is speaking on a stage. There are chairs and a table on the stage. The man is holding a microphone. There is a large screen behind the man. There are two other people sitting in the audience.", - "id": 14034 - }, - { - "image_path": "/content/drive/MyDrive/combined/3101323db1a54078.jpg", - "response": "A man in a suit standing at a podium in front of a projector screen.", - "id": 14035 - }, - { - "image_path": "/content/drive/MyDrive/combined/269e418e52805878.jpg", - "response": "A Hisense booth at a convention with several televisions on display.", - "id": 14036 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d543daf886f52ac.jpg", - "response": "A flat screen TV with a cartoon playing.", - "id": 14037 - }, - { - "image_path": "/content/drive/MyDrive/combined/365b2e4047157909.jpg", - "response": " a television screen(10,29),(909,974) with a show playing", - "id": 14038 - }, - { - "image_path": "/content/drive/MyDrive/combined/342ec67ce88a1da4.jpg", - "response": "A laptop screen displays a cartoon of a man on a motorcycle waving at three people in a side car.", - "id": 14039 - }, - { - "image_path": "/content/drive/MyDrive/combined/2322cc545820fbb4.jpg", - "response": "A television sitting on the sidewalk with two remote controls in front of it.", - "id": 14040 - }, - { - "image_path": "/content/drive/MyDrive/combined/38bf4a95f4c69b5c.jpg", - "response": "A black television set on a desk with the words \"What's your favorite show?\" written on the screen.", - "id": 14041 - }, - { - "image_path": "/content/drive/MyDrive/combined/2401a302ecc11503.jpg", - "response": "A man is watching television in a store.", - "id": 14042 - }, - { - "image_path": "/content/drive/MyDrive/combined/30043c25246c1428.jpg", - "response": "A television with a program about figure skating playing on it.", - "id": 14043 - }, - { - "image_path": "/content/drive/MyDrive/combined/2687bcd22dde6fa9.jpg", - "response": "A television set with a blue screen that has some text on it.", - "id": 14044 - }, - { - "image_path": "/content/drive/MyDrive/combined/337e5a8bea655894.jpg", - "response": "A flat screen TV sitting on a table with a stuffed animal in front of it.", - "id": 14045 - }, - { - "image_path": "/content/drive/MyDrive/combined/24d696289ea3e75f.jpg", - "response": "The image is of a large auditorium with a stage in front. There is a big crowd of people sitting in the audience. The stage has a large video screen on it and there is a man standing under the screen. The auditorium is very dark except for the bright lights on the stage.", - "id": 14046 - }, - { - "image_path": "/content/drive/MyDrive/combined/31fd90a0e579da18.jpg", - "response": "A television screen with a newscaster on it.", - "id": 14047 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b8d3eaf4d107d06.jpg", - "response": "A television monitor displays a picture of a man playing a guitar.", - "id": 14048 - }, - { - "image_path": "/content/drive/MyDrive/combined/290bcbe167b42a34.jpg", - "response": "A slide from a Chinese government PowerPoint presentation that reads \"But now, the state of blockade and backwardness has prostrate\" is displayed on a screen during a briefing by the Chinese government to foreign correspondents in Beijing.", - "id": 14049 - }, - { - "image_path": "/content/drive/MyDrive/combined/349c7cb3c1722e46.jpg", - "response": "A television that is turned on and displaying a news story about an oil depot blast.", - "id": 14050 - }, - { - "image_path": "/content/drive/MyDrive/combined/38c3e0a498d056ed.jpg", - "response": "A television that is displaying the BBC World news.", - "id": 14051 - }, - { - "image_path": "/content/drive/MyDrive/combined/30036013abacf35a.jpg", - "response": "A cloudy sky over a city with a fountain and a monument.", - "id": 14052 - }, - { - "image_path": "/content/drive/MyDrive/combined/39d1cd014289672d.jpg", - "response": "A black LG TV with a silver stand.", - "id": 14053 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b8401d0f099fc26.jpg", - "response": "A tv with two people on the screen.", - "id": 14054 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e3c8d38fe1a1f90.jpg", - "response": "A television that is turned on to a show called All Sport.", - "id": 14055 - }, - { - "image_path": "/content/drive/MyDrive/combined/354e0802e4c1c8bd.jpg", - "response": "A booth with a large white wall that says CDV on it. There are two women standing inside the booth.", - "id": 14056 - }, - { - "image_path": "/content/drive/MyDrive/combined/281b45bb46be691b.jpg", - "response": "A monitor with a picture of red flowers on it.", - "id": 14057 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d78310f69ed0f2a.jpg", - "response": "A stage with a large screen at the front. The screen reads \"Welcome\" in red letters. There is a podium in front of the screen. Two red stools are placed on either side of the podium. The background is black.", - "id": 14058 - }, - { - "image_path": "/content/drive/MyDrive/combined/23e83636c11b3a25.jpg", - "response": "A person is holding a black device with two knobs on it. There are two laptops on a table. One of the laptops has a video playing. There is a tablet with a video playing on it as well.", - "id": 14059 - }, - { - "image_path": "/content/drive/MyDrive/combined/37d27740c495e1aa.jpg", - "response": "A black computer monitor sitting on a stand.", - "id": 14060 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a8def673f795857.jpg", - "response": "A man in a grey suit standing at a podium with a microphone.", - "id": 14061 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ef6b4df867cbed.jpg", - "response": "A television that is on and displaying a video of a man with gray hair.", - "id": 14062 - }, - { - "image_path": "/content/drive/MyDrive/combined/5577ce7b4e692588.jpg", - "response": "A store display of three flat screen televisions side by side.", - "id": 14063 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f11dca0a196a98.jpg", - "response": "A large advertisement for Apple products on the side of a building.", - "id": 14064 - }, - { - "image_path": "/content/drive/MyDrive/combined/479dc9e8f7355076.jpg", - "response": "A large flat screen TV mounted on a wall with a sound bar above it.", - "id": 14065 - }, - { - "image_path": "/content/drive/MyDrive/combined/47261692d3858889.jpg", - "response": "A television monitor displays a woman speaking into a microphone.", - "id": 14066 - }, - { - "image_path": "/content/drive/MyDrive/combined/421802e9386c3dbc.jpg", - "response": "A large screen television is displaying a baseball player's photo. The player is Henry Blanco and he is a catcher. The Cubs logo is visible on the screen.", - "id": 14067 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d49acd37e05ddfe.jpg", - "response": "A television screen displays a guide for the channels available.", - "id": 14068 - }, - { - "image_path": "/content/drive/MyDrive/combined/4216041253cd0aea.jpg", - "response": "A large flat screen TV sitting on a stand.", - "id": 14069 - }, - { - "image_path": "/content/drive/MyDrive/combined/421f1c499b2039c8.jpg", - "response": "A TV is on a table, with a can of Dr Pepper and a bowl of popcorn next to it.", - "id": 14070 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fc3f6bf94e6a853.jpg", - "response": "A man wearing glasses and a black and grey striped shirt is playing a video game on a black computer.", - "id": 14071 - }, - { - "image_path": "/content/drive/MyDrive/combined/5eab7b064978345b.jpg", - "response": "A person playing a game on a laptop.", - "id": 14072 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f53ff71c6d6d56a.jpg", - "response": "A man wearing a suit and tie points to a large projection screen.", - "id": 14073 - }, - { - "image_path": "/content/drive/MyDrive/combined/44ce91ac547e5bd7.jpg", - "response": "A television screen that is turned on and says playstation store.", - "id": 14074 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c3a0757b0ae68b8.jpg", - "response": "A dusty computer with a keyboard and a screen.", - "id": 14075 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f89e158953e6254.jpg", - "response": "A television that is turned on and showing a football game.", - "id": 14076 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f06a6f7f6bba959.jpg", - "response": "A television screen showing a soccer game between Tottenham and Shamrock Rovers. The game is in the first half and currently at 0-0. The players are on the field and there is a crowd in the stands.", - "id": 14077 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b0f8d53b06f91e4.jpg", - "response": "The image features a large auditorium with a stage where two men are speaking. The stage has a big screen on it with the letters #WVP14 displayed on it. The stage is well lit with spotlights. In the audience, there are many people seated and watching the event. Some people are standing as well. The stage is surrounded by railings to keep the audience at a safe distance.", - "id": 14078 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bdf04e4612ac602.jpg", - "response": "A window with the word \"ART\" on it and the word \"DIVISION\" is under it. There is a bicycle in front of the window.", - "id": 14079 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c6b99421766bc5b.jpg", - "response": "A television is playing a soccer game.", - "id": 14080 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e9b96a428e92061.jpg", - "response": " A pink lit screen(65,239),(848,821) with the word B stage cleared at the top.", - "id": 14081 - }, - { - "image_path": "/content/drive/MyDrive/combined/44166e50edffa218.jpg", - "response": "A man standing in front of a projector screen with a cat on it.", - "id": 14082 - }, - { - "image_path": "/content/drive/MyDrive/combined/51b888cbc88334ab.jpg", - "response": "A television screen displays a basketball game in progress. There are two players on the court, one in a blue jersey and the other in white. The player in the blue jersey is jumping up in the air and is in the process of shooting the ball. The player in white is guarding him. There are several other people on the court, including players and coaches. The television also has a weather widget on the bottom with information about the weather in Brooklyn.", - "id": 14083 - }, - { - "image_path": "/content/drive/MyDrive/combined/49bd143619515de4.jpg", - "response": "A laptop screen with a website on it.", - "id": 14084 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e0e32d940dbabc4.jpg", - "response": "A Sony television set up for a network.", - "id": 14085 - }, - { - "image_path": "/content/drive/MyDrive/combined/5517d4059fc9e17d.jpg", - "response": "A black MSI laptop computer is on display on a black desk. The laptop is open and has a mouse connected to it. To the left of the laptop is a white and red lamp. To the right of the laptop is a mouse. To the right of the mouse is a red and black mouse. To the right of the mouse is a black and red sign. To the far right of the laptop is a poster.", - "id": 14086 - }, - { - "image_path": "/content/drive/MyDrive/combined/4337600d8b432017.jpg", - "response": "A man standing in front of a table with three computer monitors and two laptops. The table has multiple keyboards and a mouse on it.", - "id": 14087 - }, - { - "image_path": "/content/drive/MyDrive/combined/4123d40571ed8020.jpg", - "response": "A television screen displays election results for the United States Senate. The screen shows a map of the United States with different regions colored differently. The screen reads \"CNN - Politics\" at the top.", - "id": 14088 - }, - { - "image_path": "/content/drive/MyDrive/combined/4494719e70c176f9.jpg", - "response": "A black Nokia phone with a keyboard on the bottom.", - "id": 14089 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f19b22c96211474.jpg", - "response": "A computer monitor with a purple screen and a white logo on it.", - "id": 14090 - }, - { - "image_path": "/content/drive/MyDrive/combined/461a8a46a6b013ec.jpg", - "response": "a person on a stage in front of a Creativity World Forum sign", - "id": 14091 - }, - { - "image_path": "/content/drive/MyDrive/combined/516b5c67fd6d6848.jpg", - "response": "A woman in a yellow dress is holding a remote control in front of a large flat screen TV. The TV is on and playing a concert.", - "id": 14092 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f6c90f6652fedc7.jpg", - "response": "A television screen showing three men sitting at a desk.", - "id": 14093 - }, - { - "image_path": "/content/drive/MyDrive/combined/4da3da2aa6da0cfd.jpg", - "response": "A woman wearing a red jacket standing at a podium.", - "id": 14094 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d20d47e6e9cdfce.jpg", - "response": "In the image there are several blue and red cans of Mountain Dew Baja Blast that are arranged in two rows. The cans are placed on a black surface and there are a few silver lids in the foreground.", - "id": 14095 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bad33257cc3c7d2.jpg", - "response": "A pile of yellow and silver cans of Van Camp's Chunk Style Wahoo.", - "id": 14096 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb568fd8064edc1.jpg", - "response": "A blue and red can of Colorado Kolsch beer.", - "id": 14097 - }, - { - "image_path": "/content/drive/MyDrive/combined/146797c509bdf4df.jpg", - "response": "A collection of beer cans including Budweiser, Pilsner Urquell, Kozel, and others.", - "id": 14098 - }, - { - "image_path": "/content/drive/MyDrive/combined/09ba7425b72a4e73.jpg", - "response": "Four cans of Marley's One Drop coffee, two of which are labeled as Mocha and the other two labeled as Coffee.", - "id": 14099 - }, - { - "image_path": "/content/drive/MyDrive/combined/11d83491319e0835.jpg", - "response": "A picture of two cans of coffee. One is for Trader Joe's Organic Fair Trade Shade Grown Ethiopian coffee and the other is for Trader Joe's Organic Ethiopian coffee.", - "id": 14100 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd7ae160d79a6f1.jpg", - "response": "A shelf in a store with bottles of Canada Dry ginger ale.", - "id": 14101 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad85026280a09b5.jpg", - "response": "A can of Old Chub Scotch Ale sits on a wooden table.", - "id": 14102 - }, - { - "image_path": "/content/drive/MyDrive/combined/0be9be6930537bf8.jpg", - "response": "A bottle of XXXX Bitter sitting on a table.", - "id": 14103 - }, - { - "image_path": "/content/drive/MyDrive/combined/13639a4772317d09.jpg", - "response": "A can of cherry vanilla cream soda sits on a desk in front of a keyboard. The can is white with red and blue writing. There is a colorful design on the top left corner of the can.", - "id": 14104 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cb088bf0d37b549.jpg", - "response": "A green can of Carlsberg beer sitting on a blue and white cooler.", - "id": 14105 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebbc5f4061f0d3b.jpg", - "response": "A tin can of Campbells Chicken Noodle Soup on a grey table.", - "id": 14106 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6b3901a9524c6a.jpg", - "response": "A couple of cans of beer sitting on a table.", - "id": 14107 - }, - { - "image_path": "/content/drive/MyDrive/combined/120bd2bc5529e375.jpg", - "response": "A pair of cans of LOL energy drink, one purple and one red, are sitting on a white counter.", - "id": 14108 - }, - { - "image_path": "/content/drive/MyDrive/combined/1336a1d37891b02e.jpg", - "response": "A kitchen counter with two cans of San Miguel beer on it.", - "id": 14109 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b84327e0abe73ab.jpg", - "response": "A can of coffee sits on a wooden table. The can is blue and white and says \"COFFEE\" in English and Japanese. There is a picture of coffee beans on the can.", - "id": 14110 - }, - { - "image_path": "/content/drive/MyDrive/combined/1057acabfa704a35.jpg", - "response": "The image shows a display of silver and white aluminum cans of Diet Coke. The cans are arranged in a stack and are filled with the soda. The design of the cans features the Diet Coke logo prominently on the side.", - "id": 14111 - }, - { - "image_path": "/content/drive/MyDrive/combined/0932b8849163d667.jpg", - "response": "A can of Kirin beer with the word \"\u79cb\u5473\" on it.", - "id": 14112 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3b5ba1550229d4.jpg", - "response": "A sign advertising Krustyo's cereal, a frosted donut with sprinkles, a Krusty Cola, and a Krusty Kup.", - "id": 14113 - }, - { - "image_path": "/content/drive/MyDrive/combined/09c6d3c9f9d9dce3.jpg", - "response": "The image shows a large stack of silver and red Diet Coke cans. There are at least 12 stacks of cans, with each stack containing 24 cans. The cans are stacked on top of each other, with some cans sitting on the red cardboard box they were packaged in. The cans have a silver and red color scheme, with the word \"Diet Coke\" written in red on the side.", - "id": 14114 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c91b965cc0781ad.jpg", - "response": "A Budweiser beer can and a bottle of Smirnoff vodka are laying on the ground.", - "id": 14115 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de3c11b38fa7feb.jpg", - "response": "The image shows a store shelf with a clear plastic display holder containing several red aluminum cans of Coca-Cola. The cans are arranged in a way that shows the logo on the side of each can. The cans are shiny and have a white script font for the logo.", - "id": 14116 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c23b33757b24850.jpg", - "response": "a man holding a can of coke smiling big", - "id": 14117 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a1789cf1519aa0b.jpg", - "response": "A can of green liquid with the word \"experienced\" written on a piece of paper and taped to the top of the can.", - "id": 14118 - }, - { - "image_path": "/content/drive/MyDrive/combined/082fe3b2bfe58810.jpg", - "response": "A table with a can of pumpkin spice coffee, a box of pumpkin spice Rooibos tea, and two jars of pumpkin butter.", - "id": 14119 - }, - { - "image_path": "/content/drive/MyDrive/combined/09522325600eae87.jpg", - "response": "A can of Tokyo Black Porter sits on a wooden table. The can is black with a brown label that features a sumo wrestler.", - "id": 14120 - }, - { - "image_path": "/content/drive/MyDrive/combined/082c76aca87e303f.jpg", - "response": "A gold can of Georgia Triple Star Premium coffee with coffee beans on the label.", - "id": 14121 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b74cd70d590dc8.jpg", - "response": "A can of Diet 7up sitting on a counter.", - "id": 14122 - }, - { - "image_path": "/content/drive/MyDrive/combined/09868ba2dbc6fc51.jpg", - "response": "A can of Cutthroat Full-Flavoured West Coast Ale sits next to a glass filled with the beer. The can has a fish on it and says Cutthroat Full-Flavoured West Coast Ale. The beer is brewed by Tree Brewing Company.", - "id": 14123 - }, - { - "image_path": "/content/drive/MyDrive/combined/09546f0714378fdc.jpg", - "response": "A bunch of spray cans that are mostly empty.", - "id": 14124 - }, - { - "image_path": "/content/drive/MyDrive/combined/171e532e7edaf8f9.jpg", - "response": "There are nine cans of Dr Pepper stacked on a wooden cutting board. The cans are stacked in three piles of three, with one can on the bottom and two stacked on top. The cans are pink with white lettering and have a picture of a man on the side.", - "id": 14125 - }, - { - "image_path": "/content/drive/MyDrive/combined/201a62e768c41c6c.jpg", - "response": "A close up of a can of coke zero.", - "id": 14126 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ec7acec295488af.jpg", - "response": "A stack of cans of coca cola on a store shelf.", - "id": 14127 - }, - { - "image_path": "/content/drive/MyDrive/combined/164e080755911770.jpg", - "response": "A can of diet coke sits on a wooden table.", - "id": 14128 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d2726b41b833e4e.jpg", - "response": "A red soda can with a cartoon character holding a flag on it.", - "id": 14129 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d3760423913fdea.jpg", - "response": "A can of Jolt Cola on a red background.", - "id": 14130 - }, - { - "image_path": "/content/drive/MyDrive/combined/2938fff5b8b27349.jpg", - "response": "A hand holding a red can of Asahi Super Dry beer.", - "id": 14131 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ca82e3a63019858.jpg", - "response": "A red can of Coca Cola sits on a wooden table.", - "id": 14132 - }, - { - "image_path": "/content/drive/MyDrive/combined/19e94f5b861ed556.jpg", - "response": "A gold can of Rochester Mills beer with red and yellow lettering.", - "id": 14133 - }, - { - "image_path": "/content/drive/MyDrive/combined/28ab9422a649a4a7.jpg", - "response": "A display of red aluminum cans of Sprite with a black man holding a basketball on a box of the product.", - "id": 14134 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e49ef5567596292.jpg", - "response": "The image shows a stack of green cans of Pepsi True. The cans are stacked three high and are arranged in a pyramid shape. The logo for Pepsi True is on each can and is white with a red circle in the center. The word \"True\" is written in white on each can. The cans are displayed on a white background.", - "id": 14135 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a8ed849c9009f59.jpg", - "response": "A fridge with three red cans of Sofiero Laholm Extra Special beer.", - "id": 14136 - }, - { - "image_path": "/content/drive/MyDrive/combined/19d47e97a398bec3.jpg", - "response": "A can of Bunaberg and Cola sits on a table in a dark room.", - "id": 14137 - }, - { - "image_path": "/content/drive/MyDrive/combined/2166c992b83fe2c0.jpg", - "response": "A can of Yona Yona ale sits on a wooden table.", - "id": 14138 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d50b92a8efe5e5d.jpg", - "response": "A group of four blue cans of Prip's Bla beer sitting on a wooden table.", - "id": 14139 - }, - { - "image_path": "/content/drive/MyDrive/combined/2710350e66ac56bb.jpg", - "response": "A person is holding a can of beer on the beach.", - "id": 14140 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a8d4bedfde14995.jpg", - "response": "A table with a variety of items on it including two cans of beer, a bottle, playing cards, and bottle caps. There are also two people playing a card game at the table.", - "id": 14141 - }, - { - "image_path": "/content/drive/MyDrive/combined/160aa6fbd3834490.jpg", - "response": "A person is holding a red can of soda.", - "id": 14142 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b543d8807270a2.jpg", - "response": "A shelf with multiple cans of a red drink on it.", - "id": 14143 - }, - { - "image_path": "/content/drive/MyDrive/combined/1759221081c657f8.jpg", - "response": "A black and white photo of a can of Labatt's 50 beer sitting on a table.", - "id": 14144 - }, - { - "image_path": "/content/drive/MyDrive/combined/278322851044a8bb.jpg", - "response": "A wooden table with several snacks and drinks on it.", - "id": 14145 - }, - { - "image_path": "/content/drive/MyDrive/combined/252ce962c1fd0e0a.jpg", - "response": "A table with a sign that says Doodsgevaar on it.", - "id": 14146 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a252b90b1c25529.jpg", - "response": "A can of Mikes beer is sitting next to a can of Bud Light on a counter.", - "id": 14147 - }, - { - "image_path": "/content/drive/MyDrive/combined/24c957803ed6d618.jpg", - "response": "A can of Diet Hansen's soda sits on a cement surface.", - "id": 14148 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f2e390d86dd5649.jpg", - "response": "A marble counter top with 3 cans of soda on it. One is red and white, one is black and white, and one is silver and white.", - "id": 14149 - }, - { - "image_path": "/content/drive/MyDrive/combined/301668e27f9354b8.jpg", - "response": "A red can of energy drink with white and red letters.", - "id": 14150 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f681daacb62f09.jpg", - "response": "A red can of Coca Cola sitting next to a laptop computer.", - "id": 14151 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da814eb969ffa42.jpg", - "response": "A picture of a glass stein and three cans of Carlsberg beer. The stein is filled with ice and has a sticker on it that says \"Casteden Export.\" The cans of beer are green and feature the Carlsberg logo.", - "id": 14152 - }, - { - "image_path": "/content/drive/MyDrive/combined/21f2209e5e4975fb.jpg", - "response": "A hand holding a can of Resurrection beer.", - "id": 14153 - }, - { - "image_path": "/content/drive/MyDrive/combined/309147ff6339b0cd.jpg", - "response": "A red can of BlaBla, a carbonated soft drink, sits on a dark surface. The can has a gold pull tab and features a cartoon drawing of a man on the side.", - "id": 14154 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a77f252d4b2cec2.jpg", - "response": "A plastic bottle with a blue label that says \"Free Child\" on it.", - "id": 14155 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b1320bcc44669b9.jpg", - "response": "A display of Stewie's Elixirs which include Mind Erase Elixir, Type Erasure Serum, and Domination Elixir.", - "id": 14156 - }, - { - "image_path": "/content/drive/MyDrive/combined/24f3dbc4d09cedea.jpg", - "response": "In the image there are multiple cans of Peace Tea on display. The cans are colorful and feature the Peace Tea logo prominently. They are arranged in a store or vending machine, with some cans sitting on top of others. The cans are of different flavors, including sweet lemon tea and green tea.", - "id": 14157 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f879ae391bf06a6.jpg", - "response": "A large stack of red cans of kidney beans and sliced beets.", - "id": 14158 - }, - { - "image_path": "/content/drive/MyDrive/combined/256790e4e38eeae4.jpg", - "response": "A red can of Coca Cola sits on a reflective surface.", - "id": 14159 - }, - { - "image_path": "/content/drive/MyDrive/combined/3206be661dc997b7.jpg", - "response": "A can of beer sits on a wooden table. The can is gold and white and says BeerLao on the front.", - "id": 14160 - }, - { - "image_path": "/content/drive/MyDrive/combined/271d9974787b36e8.jpg", - "response": "A can of Chino sits on a table next to a menu. The can is black and red and has a star on it. The table is white and the can is casting a shadow.", - "id": 14161 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bf3f087e8ebebda.jpg", - "response": "A rusted tin can sitting on the ground next to a tree.", - "id": 14162 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c7eb46eae5a2b6.jpg", - "response": "A red can of beer sitting on a wooden table.", - "id": 14163 - }, - { - "image_path": "/content/drive/MyDrive/combined/20b5a199864a98f4.jpg", - "response": "A can of UCC coffee sits on a wooden table. The can is red and blue with a coffee bean graphic on the front. The coffee beans are roasted and are in a circle pattern. The can has a gold and black logo that says \"UCC\" at the top. The letters are stylized and have a yellow gradient. The letters \"S\" and \"T\" are in the center of the logo. The can also has a red and black logo on the bottom. The letters are black and are in a circular pattern. There is a small black logo on the bottom of the can. The letters are black and are in a circular pattern.", - "id": 14164 - }, - { - "image_path": "/content/drive/MyDrive/combined/1635b4d7cbf1ad93.jpg", - "response": "A can of Tsingtao beer sits on a white table.", - "id": 14165 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ed9050d8b25862.jpg", - "response": "A can of Pokka Milk Coffee sits on a wooden table. The can is orange and white and has a picture of a man on it. The man has a mustache and is wearing a hat. The word Pokka is written in white on the top of the can. The word Milk Coffee is written in white on the can. The word Real Brewed is written in white on the can. The number 10.1 is written in white on the can. The number 1 is written in white on the can. The number 1 is written in white on the can. The number 0.1 is written in white on the can. The word Fl Oz is written in white on the can. The word 300ml is written in white on the can.", - "id": 14166 - }, - { - "image_path": "/content/drive/MyDrive/combined/297a398ba22caa16.jpg", - "response": "In the image there is a refrigerator full of bottles of Tannen Zapple. The bottles are green and brown, and have gold colored lids. They are placed on a silver shelf.", - "id": 14167 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f54ecbe84b9805f.jpg", - "response": "a hand holding a silver can of nova schin cerveja", - "id": 14168 - }, - { - "image_path": "/content/drive/MyDrive/combined/200fc0f2b6a36b3e.jpg", - "response": "A can of cranberry apple cocktail minute maid sitting next to a plastic cup.", - "id": 14169 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b6338fcddf52249.jpg", - "response": "A can of Virgil's root beer on a counter.", - "id": 14170 - }, - { - "image_path": "/content/drive/MyDrive/combined/35855482e0c057e7.jpg", - "response": "A red can of Yebisu beer on a wooden table.", - "id": 14171 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f73da0dee5318fe.jpg", - "response": "A can of Chino sits on a wooden table. The can is black with a red star on it. The word Chino is written in white with a red outline. The word Sanpellegrino is written in white with a red star above it. The word Bevvi fuori dal comand is written in white on the bottom of the can.", - "id": 14172 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f5f342f4898f7fc.jpg", - "response": "The image shows a kitchen counter with three different types of beer cans on it. The three cans are of different sizes and are green, white, and yellow in color. The largest can in the middle is green and white and has the word \"Pilsner\" written on it. The other two cans are smaller and are located on the right side of the larger can. One of them is yellow and has the word \"Bakushu\" written on it, and the other one is white and has the word \" Organic\" written on it.", - "id": 14173 - }, - { - "image_path": "/content/drive/MyDrive/combined/35f8ea0871ac1143.jpg", - "response": "A wall of paintings of cans of campbell's soup.", - "id": 14174 - }, - { - "image_path": "/content/drive/MyDrive/combined/3679c5511a49a176.jpg", - "response": "A close up of two cans of Coca Cola on a black table.", - "id": 14175 - }, - { - "image_path": "/content/drive/MyDrive/combined/1810f6deb7184d5e.jpg", - "response": "A can of coke sits next to a firework.", - "id": 14176 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b8a0d300366b3d.jpg", - "response": "A can of Eagle Brand sweetened condensed milk with the words Borden's on it.", - "id": 14177 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b54cdae8176b813.jpg", - "response": "A can of GEORGIA CAFE CREME sits on a white counter. The can is gold and white and has a green label with coffee beans on it. The label also has Japanese writing on it.", - "id": 14178 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e795ff3f16ab1b8.jpg", - "response": "A can of Mountain Dew Throwback sits on a wooden table.", - "id": 14179 - }, - { - "image_path": "/content/drive/MyDrive/combined/189a576e3aac2a93.jpg", - "response": "A can of beer on a white counter.", - "id": 14180 - }, - { - "image_path": "/content/drive/MyDrive/combined/282bdebde01cae79.jpg", - "response": "A can of coffee that is on a table.", - "id": 14181 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b68ea725a0ae70d.jpg", - "response": "In the image there are several blue and red aluminum cans of Mountain Dew Baja Blast. The cans are arranged in a row on a black shelf. The top of each can features the Mountain Dew logo and the name of the product. The cans are slightly off-center, giving a sense of depth to the image.", - "id": 14182 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba3efe05600570d.jpg", - "response": "A close up of two cans of Taiwan Beer.", - "id": 14183 - }, - { - "image_path": "/content/drive/MyDrive/combined/28db0ce029717b45.jpg", - "response": "A can of Faygo Orange sits on a counter.", - "id": 14184 - }, - { - "image_path": "/content/drive/MyDrive/combined/296cb6b70d3b84a8.jpg", - "response": "The image shows a large variety of colorful energy drink cans. There are at least 13 visible, with different colors and designs. Some of the designs include the words \"New Energy,\" \"Fire,\" \"12-Hour Power,\" and \"Pure.\" The cans are arranged in a way that creates a colorful and visually interesting pattern.", - "id": 14185 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e155ae0af7818eb.jpg", - "response": "A case of Big Flats beer sits on a table.", - "id": 14186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e6053f9070a25ce.jpg", - "response": "A fridge with three cans of Asahi beer in it.", - "id": 14187 - }, - { - "image_path": "/content/drive/MyDrive/combined/287bd9f765602fcc.jpg", - "response": "A set of Narragansett beer cans from 1976.", - "id": 14188 - }, - { - "image_path": "/content/drive/MyDrive/combined/5191c5dd32227ead.jpg", - "response": "A sign advertising free cards for Diet Coke and Shutterfly.", - "id": 14189 - }, - { - "image_path": "/content/drive/MyDrive/combined/41b6cf0a7d56a228.jpg", - "response": "A case of Coca-Cola 0 sits stacked on a white shelf.", - "id": 14190 - }, - { - "image_path": "/content/drive/MyDrive/combined/54652030b2bb33a6.jpg", - "response": "A person is holding a container of magic salt.", - "id": 14191 - }, - { - "image_path": "/content/drive/MyDrive/combined/3912ed274f80cba4.jpg", - "response": "A large screen with a blue ribbon pabst beer on it.", - "id": 14192 - }, - { - "image_path": "/content/drive/MyDrive/combined/421b51e2efdd27ef.jpg", - "response": "There are six red cans of Dr Pepper soda on a blue table.", - "id": 14193 - }, - { - "image_path": "/content/drive/MyDrive/combined/36cdfe745833b700.jpg", - "response": "A green and black can of NESCAFE Excella sits on a white counter. The words \"NESCAFE\" and \"Excella\" are written in red on the top of the can. Underneath the brand name is written in green \"\u30aa\u30ea\u30b8\u30ca\u30eb\u30b8\u30e7\u30a4\u30f3\u30c8\" which translates to \"Original Joint\" in English. The can is made by Nestle.", - "id": 14194 - }, - { - "image_path": "/content/drive/MyDrive/combined/488acc6706862be2.jpg", - "response": "A set of four canisters, two for tea and two for coffee.", - "id": 14195 - }, - { - "image_path": "/content/drive/MyDrive/combined/3930bda69ad32584.jpg", - "response": "A can of Boss Clear Press sits on a counter.", - "id": 14196 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a20e4eb9ab59c5f.jpg", - "response": "A row of various soda cans are displayed on a shelf.", - "id": 14197 - }, - { - "image_path": "/content/drive/MyDrive/combined/36d880fb6efc7b23.jpg", - "response": "A blue keg with the word \"free beer\" written on it.", - "id": 14198 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d2f276c4cdc3cd.jpg", - "response": "A red can of Frost Classic sits on a table.", - "id": 14199 - }, - { - "image_path": "/content/drive/MyDrive/combined/49b364fdb9d557d5.jpg", - "response": "The image shows three bottles of Tabasco hot sauce on a table. The bottles are red and have a flame design on them. The bottles are labeled Tabasco Brand.", - "id": 14200 - }, - { - "image_path": "/content/drive/MyDrive/combined/527311c4685ecc86.jpg", - "response": "A table with a tiled surface featuring images of people's faces. On the table, there are three different types of adhesives: a glue stick, a tube of super glue, and a can of gorilla glue. The glue stick is sitting next to the tube of super glue.", - "id": 14201 - }, - { - "image_path": "/content/drive/MyDrive/combined/48312460bff0993c.jpg", - "response": "A fridge filled with cans of Yebisu beer, a popular brand in Japan.", - "id": 14202 - }, - { - "image_path": "/content/drive/MyDrive/combined/39f27a46392b64c9.jpg", - "response": "A hand holding a red can of Wonda Wonderful Coffee Morning Sun.", - "id": 14203 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ad0ef50defe16c.jpg", - "response": "A black and white box of fireworks is next to a can of soda.", - "id": 14204 - }, - { - "image_path": "/content/drive/MyDrive/combined/408314fa8c2c09bb.jpg", - "response": "A glass display shelf holding four cans of soda.", - "id": 14205 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aa7c149706b68bb.jpg", - "response": "A can of Pepsi Wild Cherry sits on a counter. The can has a yellow label with red and blue writing. There is a yellow Post-it note on the side of the can that says \"I am free! Take me home!\" in black marker. The can is open and there is a white cap on the counter next to it.", - "id": 14206 - }, - { - "image_path": "/content/drive/MyDrive/combined/37a86e96617e7d15.jpg", - "response": "A red soda can with a cartoon character holding a french flag on it.", - "id": 14207 - }, - { - "image_path": "/content/drive/MyDrive/combined/4689a96d52268c14.jpg", - "response": "A counter with four cans of Zevia on it.", - "id": 14208 - }, - { - "image_path": "/content/drive/MyDrive/combined/42a8dbf48a898442.jpg", - "response": "The image shows a row of red and white soda cans on a rack. The cans are all the same product, which is a popular brand of soda. The cans are placed closely together and appear to be in a store or a refrigerator.", - "id": 14209 - }, - { - "image_path": "/content/drive/MyDrive/combined/41132afb67898e2f.jpg", - "response": "The image shows two silver cans of soda sitting on a table. One of the cans is Diet Coke and the other one is also a can of Diet Coke. The cans have condensation on them, suggesting that they were either opened not too long ago or are in a humid environment.", - "id": 14210 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f3229f311da8e76.jpg", - "response": "A can of cream tomato soup from tesco.", - "id": 14211 - }, - { - "image_path": "/content/drive/MyDrive/combined/47e0bedce3c20f07.jpg", - "response": "A collection of empty spray cans.", - "id": 14212 - }, - { - "image_path": "/content/drive/MyDrive/combined/54d28c5e0824a301.jpg", - "response": "A red can of Estrella Damm beer on a wooden table.", - "id": 14213 - }, - { - "image_path": "/content/drive/MyDrive/combined/55096d74bf5f3e7a.jpg", - "response": "A red can of Dr Pepper sits on a black surface. The can has a white and red design around the words Dr Pepper. The word Thor is printed on the top of the can in white.", - "id": 14214 - }, - { - "image_path": "/content/drive/MyDrive/combined/53db2c33afb16155.jpg", - "response": "A green can of Coca Cola Life sits on a wooden table.", - "id": 14215 - }, - { - "image_path": "/content/drive/MyDrive/combined/522691230cf021f2.jpg", - "response": "A hand holding a blue can of Kirin's Prime Brew.", - "id": 14216 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cd2a0c4dd694db5.jpg", - "response": "A row of different colored Coca Cola cans including red, white, blue, green, and purple.", - "id": 14217 - }, - { - "image_path": "/content/drive/MyDrive/combined/51b8f93b2b65bba6.jpg", - "response": "The image displays three black and red Monster Energy drinks on a shelf. The cans feature the brand name, Monster, in yellow font with a large yellow monster face logo in the center. The cans have a shield shape with the Monster name and logo on it. The cans also have the words D.B. Edition and Baller's Blend on them. The shelf the cans are on is white.", - "id": 14218 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8acf546094dd66.jpg", - "response": "A can of D-1 Coffee's espresso sits on a table. The can is yellow with a red and white label. The word espresso is written in white on the can. The word Brazil is written in red on the top left of the can. The word D-1 is written in red on the top right of the can. The word coffee is written in white on the top of the can. The word Brazil is written in white on the top left of the can. The word D-1 is written in white on the top right of the can. The word coffee is written in white on the top of the can. The word espresso is written in white on the can. The word Brazil is written in red on the top left of the can. The word D-1 is written in red on the top right of the can. The word coffee is written in white on the top of the can. The word espresso is written in white on the can. The word Brazil is written in red on the top left of the can. The word D-1 is written in red on the top right of the can. The word coffee is written in white on the top of the can.", - "id": 14219 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d294130fd789cf1.jpg", - "response": "A red can of Coca Cola sitting on a wooden table.", - "id": 14220 - }, - { - "image_path": "/content/drive/MyDrive/combined/54b91a65ead0ffdb.jpg", - "response": "A can of soda sits next to a black box.", - "id": 14221 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b2fc0abaf379a9b.jpg", - "response": "A grocery store shelf with cans of beer and Clamato juice.", - "id": 14222 - }, - { - "image_path": "/content/drive/MyDrive/combined/539696316f411b7f.jpg", - "response": "A bottle of Epic Armageddon Ipa next to a glass filled with the beer.", - "id": 14223 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b6be0f4fed76e8c.jpg", - "response": "A wall with 30 Andy Warhol Campbell's Soup prints on it.", - "id": 14224 - }, - { - "image_path": "/content/drive/MyDrive/combined/40d57823797497a1.jpg", - "response": "A red can of Coca Cola sits on a white counter. The can has a white script logo of Coca Cola on it. The word \"Coca Cola\" is also printed on the side of the can in white. The top of the can has a small tab. The background of the image is blurry and includes a window.", - "id": 14225 - }, - { - "image_path": "/content/drive/MyDrive/combined/42e8650afc64cf54.jpg", - "response": "A counter with three beer cans on it.", - "id": 14226 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b2d5d9781ee285.jpg", - "response": "A cuban cigar, a glass of brandy and a can of beer on a table.", - "id": 14227 - }, - { - "image_path": "/content/drive/MyDrive/combined/5190ee555e0d16fd.jpg", - "response": "A can of Asahi beer sits on a blue counter.", - "id": 14228 - }, - { - "image_path": "/content/drive/MyDrive/combined/4307c5ba74479a67.jpg", - "response": "A girl is standing behind a pyramid of Bud Light beer cans.", - "id": 14229 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c96a2664dae7955.jpg", - "response": "A cylindrical object next to a can of coke on a gold and silver checkered floor.", - "id": 14230 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a51ed4a71ca9066.jpg", - "response": "The image shows a Suja juice container with the words \"organic midday thrive\" on it. The container is green and features a red, white, and green label. The top of the container has a green cap. The container is located on a shelf with other Suja products.", - "id": 14231 - }, - { - "image_path": "/content/drive/MyDrive/combined/47abbb04ef2df460.jpg", - "response": "A table full of beer cans, mostly Coors Light, sits in front of a pool.", - "id": 14232 - }, - { - "image_path": "/content/drive/MyDrive/combined/540eb7a12af50158.jpg", - "response": "A variety of colorful energy drinks are on display for sale. The cans are all different colors and sizes. Some of the cans have peace signs on them. The cans are sitting on a store shelf and have a price tag of 99 cents.", - "id": 14233 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fe980edb250d430.jpg", - "response": "A can of lemon lime ritz sits on a counter.", - "id": 14234 - }, - { - "image_path": "/content/drive/MyDrive/combined/5586486057c33100.jpg", - "response": "Four cans of Taiwan Beer are lined up next to each other on a wooden table. The cans are green and white and feature the Taiwan Beer logo prominently. The word \"TAIWAN\" is written in English on each can, with the word \"BEER\" written in Chinese below it. The cans are made of aluminum and have a distinctive flavor that is said to be similar to Bud Light.", - "id": 14235 - }, - { - "image_path": "/content/drive/MyDrive/combined/531bccc56c3929cb.jpg", - "response": "There are six red cans of Dr Pepper soda on a blue table.", - "id": 14236 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c581724f62d2dfe.jpg", - "response": "a can of cherry coke next to a can of diet coke on a desk", - "id": 14237 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a6c4d8fb8cac56.jpg", - "response": "A can of Chelada sits on a tile counter.", - "id": 14238 - }, - { - "image_path": "/content/drive/MyDrive/combined/39527cb5b41df14a.jpg", - "response": "A can of Amager beer sits on a desk next to a computer keyboard and mouse.", - "id": 14239 - }, - { - "image_path": "/content/drive/MyDrive/combined/4073c3c06272f1e4.jpg", - "response": "A hand holding a red can of Asahi Red Eye beer.", - "id": 14240 - }, - { - "image_path": "/content/drive/MyDrive/combined/4af7debbcef6f300.jpg", - "response": "A bottle of Mountain Dew sitting on a desk.", - "id": 14241 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c2bb7fb3c38714f.jpg", - "response": "A glass of beer next to a blue can of beer.", - "id": 14242 - }, - { - "image_path": "/content/drive/MyDrive/combined/43292ad7b6c8dfa1.jpg", - "response": "In the image there are 6 cans of Pepsi True stacked on top of each other. The cans are green with white and red writing. The top most can has a little white writing on the side. There are also 24 cases of Pepsi True stacked behind the individual cans. The first case is the one the cans are leaning on and it is also green with white and red writing. The second case is the one that is behind the first and it is also green with white and red writing.", - "id": 14243 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ddf7f32519e2104.jpg", - "response": "A pile of canned food stacked on a shelf.", - "id": 14244 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fd4c454c0e9f36a.jpg", - "response": "A can of diet coke sits on a counter next to a bag of chips.", - "id": 14245 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9e2d6714d97547.jpg", - "response": "A gold can of Pepsi sits on a brown table.", - "id": 14246 - }, - { - "image_path": "/content/drive/MyDrive/combined/439b486167dfcebe.jpg", - "response": "In the image there are multiple cans of Fresca Original Citrus sparkling water on a table. The cans are blue and silver and feature the Fresca logo on the front. The cans are arranged in a row and some of them are stacked on top of each other. The background is blurry and there are other objects in the scene, including a bottle and a cup.", - "id": 14247 - }, - { - "image_path": "/content/drive/MyDrive/combined/480efc0a5f46be42.jpg", - "response": "A can of diet coke sits on a counter.", - "id": 14248 - }, - { - "image_path": "/content/drive/MyDrive/combined/4223ac43e9752222.jpg", - "response": "A laptop computer sitting on a wooden table with a can of beer next to it.", - "id": 14249 - }, - { - "image_path": "/content/drive/MyDrive/combined/53cb706eb9d2abb5.jpg", - "response": "A gallon can of Sherwin-Williams color varnishes with a brush on top sitting on a wooden table.", - "id": 14250 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cef7233584d4608.jpg", - "response": "The image shows six red and gold Dr Pepper soda cans sitting on a dark blue surface. The cans are arranged in two stacks of three cans each, with one can on the left side of the top stack and one can on the right side of the top stack. The cans have gold writing on them and a gold pull tab.", - "id": 14251 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c765b1cada2073d.jpg", - "response": "A stack of 9 mountain dew cans.", - "id": 14252 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e98b7efc47feb14.jpg", - "response": "A street sign over a road that says Bustard Rd and Forty Foot Rd.", - "id": 14253 - }, - { - "image_path": "/content/drive/MyDrive/combined/08539f255801e98c.jpg", - "response": "a scene of a street corner with a building", - "id": 14254 - }, - { - "image_path": "/content/drive/MyDrive/combined/1903bf55a5a3a276.jpg", - "response": "The image shows a city street intersection with a traffic light hanging over the road. There are several cars stopped at the light, including a car in the foreground and another one further back. A truck is also visible in the scene. The traffic light is currently green, allowing the cars to proceed through the intersection. In the background, there is a billboard and a building. The sky is blue and there are a few clouds scattered throughout the sky.", - "id": 14255 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b446fd31df0bf02.jpg", - "response": "A street light with a sign for Interstate 95 from New York beneath it.", - "id": 14256 - }, - { - "image_path": "/content/drive/MyDrive/combined/329fe05912c53611.jpg", - "response": "The image shows a city street with traffic lights and street signs. There are cars on the street, some parked and some in motion. The street signs are for Peachtree Street and another street that begins with the letter W. The traffic lights are painted yellow and are located at various points along the street. The scene is set in a downtown area with buildings in the background.", - "id": 14257 - }, - { - "image_path": "/content/drive/MyDrive/combined/485a9791bbad9f4c.jpg", - "response": "A traffic light hanging over a street next to a no turn on red sign.", - "id": 14258 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a243875d48be4fc.jpg", - "response": "The image depicts a busy city intersection with a green minivan turning left at the traffic light. There are several other cars and a truck in the intersection, as well as a few pedestrians. The scene also includes multiple traffic lights, street signs, and a stop sign. The tall building in the background has a steeple, and there is a church visible on the left side of the intersection. The image captures a typical bustling city scene with a mix of vehicles, people, and urban infrastructure.", - "id": 14259 - }, - { - "image_path": "/content/drive/MyDrive/combined/48135f637e9eab70.jpg", - "response": "A stoplight with two green arrows pointing up and to the right.", - "id": 14260 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cad4cded1ac1efb.jpg", - "response": "A black and blue parking meter on the side of the street.", - "id": 14261 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe6d5b23c0d8981.jpg", - "response": "A street pole with a one way sign pointing to the left, a traffic light showing green, and a crosswalk sign with a red hand indicating not to walk.", - "id": 14262 - }, - { - "image_path": "/content/drive/MyDrive/combined/0affdf85ae6f4fa6.jpg", - "response": "A street scene with a bus on the left and a tall building in the background. There are several traffic lights in the scene, some of which are red. There is also a large archway in the median of the street.", - "id": 14263 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8f5df521cbf952.jpg", - "response": "A train is passing through a railroad crossing with a red light.", - "id": 14264 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b1e3f57e92fdb2c.jpg", - "response": "A train engine is on a track running through a city intersection.", - "id": 14265 - }, - { - "image_path": "/content/drive/MyDrive/combined/19e2ba53d3c11691.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 14266 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed4c1e66632b105.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 14267 - }, - { - "image_path": "/content/drive/MyDrive/combined/267b801faccb2b86.jpg", - "response": "A traffic light on a pole with a building behind it.", - "id": 14268 - }, - { - "image_path": "/content/drive/MyDrive/combined/108f4e2058cec196.jpg", - "response": "A street sign in a city with a red traffic light.", - "id": 14269 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f07d467fabd60fa.jpg", - "response": "A traffic light hanging over a street intersection.", - "id": 14270 - }, - { - "image_path": "/content/drive/MyDrive/combined/13b30e89ac221ee2.jpg", - "response": "A car is stopped at a railroad crossing with a traffic light.", - "id": 14271 - }, - { - "image_path": "/content/drive/MyDrive/combined/34fc4162de1d4c34.jpg", - "response": "A traffic light with a red light and a green light, with a street sign underneath that says \"LEFT TURN SIGNAL\".", - "id": 14272 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c07e2a99c5e169b.jpg", - "response": "A street scene in a city with a brick overpass, traffic lights, street signs, and buildings.", - "id": 14273 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d4fd88a9f7a841f.jpg", - "response": "A police officer is standing in the middle of the street, in front of a police car. There is a traffic light on a pole next to the officer. A bus is stopped at the traffic light, and a few other cars are in the scene, some stopped and some moving. There is a person on a motorcycle stopped in the street.", - "id": 14274 - }, - { - "image_path": "/content/drive/MyDrive/combined/090be286e8a055d4.jpg", - "response": "A traffic light on a pole near a brick building.", - "id": 14275 - }, - { - "image_path": "/content/drive/MyDrive/combined/07f1d3d4d7db0389.jpg", - "response": "A street sign that says Bourbon and a red traffic light hang above a street.", - "id": 14276 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d89cde9b8b64554.jpg", - "response": "A street sign that says Broadway on it.", - "id": 14277 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f84c4adfdb2ac7c.jpg", - "response": "A car is stopped at a red light at an intersection. The car is in the foreground of the image, and the light is in the background. There are two traffic lights, one on the left and one on the right. The car is silver and is stopped in front of a small white building. The building has a blue door frame, and there is a bench in front of it. The sky is gray and overcast.", - "id": 14278 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c0beb6360f9dac.jpg", - "response": "A blurry photo of a city street with cars and traffic lights.", - "id": 14279 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ed78a4bd726cade.jpg", - "response": "A traffic light showing a green arrow is hanging from a pole.", - "id": 14280 - }, - { - "image_path": "/content/drive/MyDrive/combined/0afce94eefb73a41.jpg", - "response": "A traffic light with a green light for both pedestrians and bicycles.", - "id": 14281 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d7c9c5eb3d55bb1.jpg", - "response": "A traffic light with a green walk signal on a pole.", - "id": 14282 - }, - { - "image_path": "/content/drive/MyDrive/combined/23e8da4dc1e33fa1.jpg", - "response": "A street sign and two traffic lights hang from a pole.", - "id": 14283 - }, - { - "image_path": "/content/drive/MyDrive/combined/175ce6889b804ed6.jpg", - "response": "A traffic light suspended from a pole with a street sign attached to it.", - "id": 14284 - }, - { - "image_path": "/content/drive/MyDrive/combined/2310163d3ac826a4.jpg", - "response": "A street scene with a traffic light and a street sign. There is a row of traffic lights, with the first one being red. The street sign is green and white. There is a row of power lines stretching across the image. In the sky, there are clouds in various shades of pink and grey. And a flag, possibly the American flag, is hanging on a pole on the left side of the image.", - "id": 14285 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae2cf794e3cd70c.jpg", - "response": "A street scene with a few cars parked on the side of the street. There is a traffic light hanging above the street and a \"Only\" sign hanging on a pole. In the distance, there is a mountain visible.", - "id": 14286 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae338143ca70bff.jpg", - "response": "A black Nudnik sticker is on a black traffic light.", - "id": 14287 - }, - { - "image_path": "/content/drive/MyDrive/combined/5024d8b3ae46292d.jpg", - "response": "A traffic light on a green pole with a street sign above it that says Juarez.", - "id": 14288 - }, - { - "image_path": "/content/drive/MyDrive/combined/50e76ba6145534c6.jpg", - "response": "A traffic light showing a green light.", - "id": 14289 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ba7233e40eca8f.jpg", - "response": "A freeway overpass with a sign that says \"Exit\" and an arrow pointing to the right. Another sign points to freeway 85 going north and Mt. View. A call box sign is also visible.", - "id": 14290 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ddf39d7eefe3dc.jpg", - "response": "A sign that is red and white that says 25 on it.", - "id": 14291 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a7e16f1759ee33d.jpg", - "response": "A sign for Carlsbad Caverns National Park with a road sign below it that says ROAD WORK AHEAD. There is a mountain in the background.", - "id": 14292 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e93ccb9cb8096ae.jpg", - "response": "a sign with a white background and green letters", - "id": 14293 - }, - { - "image_path": "/content/drive/MyDrive/combined/158ad5d7d1cc0df3.jpg", - "response": "A Virginia license plate that says PHLOSS on it.", - "id": 14294 - }, - { - "image_path": "/content/drive/MyDrive/combined/1884d6ddbaafe864.jpg", - "response": "In the image, there is a signpost with two signs on it. The top sign reads \"Historic Route 66\" in white lettering on a brown background. Underneath this sign, there is a sign that says \"Begin\" in white lettering on a yellow background. The signpost is covered in stickers, with many of them being small and colorful. The background shows a night scene with a tall building on the right side of the image.", - "id": 14295 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a8200fed8113631.jpg", - "response": "A couple of orange signs that say Detour on them.", - "id": 14296 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c4b08cb76a02c70.jpg", - "response": "a street sign that is green and white", - "id": 14297 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b51a85f5896c8f.jpg", - "response": "A dirt road with a sign that says 4 Wheel Drive Road.", - "id": 14298 - }, - { - "image_path": "/content/drive/MyDrive/combined/13292b5571c3c443.jpg", - "response": "A street sign warning of children playing is attached to a pole on a street.", - "id": 14299 - }, - { - "image_path": "/content/drive/MyDrive/combined/097e9de8784e461c.jpg", - "response": "A highway with a green exit sign for Spanish Fork.", - "id": 14300 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdbed774203face.jpg", - "response": "A street sign with a sticker on it.", - "id": 14301 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd026dea59e5cb4.jpg", - "response": "a sign on the side of the road(433,274),(540,436)", - "id": 14302 - }, - { - "image_path": "/content/drive/MyDrive/combined/262e7c9bd0571d12.jpg", - "response": "A street scene with a person riding a bicycle in the background. There are multiple signs on the side of the street, including a blue sign with a white bus on it. There is also a red and yellow pole on the sidewalk.", - "id": 14303 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4fa6162cc17e02.jpg", - "response": "A snowy street with a red and yellow exit sign for a McDonalds restaurant.", - "id": 14304 - }, - { - "image_path": "/content/drive/MyDrive/combined/11ebbcb21fa9ffcc.jpg", - "response": "A green sign with directions to various places.", - "id": 14305 - }, - { - "image_path": "/content/drive/MyDrive/combined/242db0022e44608c.jpg", - "response": "A yellow duck crossing sign with black lettering and black ducks on it.", - "id": 14306 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b8c0c8f53304636.jpg", - "response": "A traffic light on a pole with a building in the background.", - "id": 14307 - }, - { - "image_path": "/content/drive/MyDrive/combined/18435048ec61571e.jpg", - "response": "A funny sign that says \"Notice: Wood cutting with a chainsaw is permitted between signs only. Parks by-law.\"", - "id": 14308 - }, - { - "image_path": "/content/drive/MyDrive/combined/17bbc8187c609d54.jpg", - "response": "A yellow and red warning sign with a black car on it.", - "id": 14309 - }, - { - "image_path": "/content/drive/MyDrive/combined/1286fa9711c92ca8.jpg", - "response": "A traffic light with a street sign attached to the same pole.", - "id": 14310 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b05a60c742a7da4.jpg", - "response": "A man walking down the street with a cane.", - "id": 14311 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f284695decb1732.jpg", - "response": "A beach scene with a yellow pedestrian crossing sign in the foreground.", - "id": 14312 - }, - { - "image_path": "/content/drive/MyDrive/combined/1db8d8c37ca7c118.jpg", - "response": "a street sign on a pole in the foreground a street in the background with a car on it and trees on either side of the street.", - "id": 14313 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c0246d01aaee79.jpg", - "response": "A yellow and black diamond shaped sign that says Resalto.", - "id": 14314 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f4c766a90ccf3ae.jpg", - "response": "A highway with a lot of signs above it.", - "id": 14315 - }, - { - "image_path": "/content/drive/MyDrive/combined/083c02085e0eb939.jpg", - "response": "a couple of yellow signs that are on a pole", - "id": 14316 - }, - { - "image_path": "/content/drive/MyDrive/combined/23792492e8a83b4e.jpg", - "response": "A sign that says no swimming on a beach.", - "id": 14317 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a82b0546b840bc.jpg", - "response": "A large green street sign with directions to various cities and towns.", - "id": 14318 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c7b28d9fa41987.jpg", - "response": "a street sign warning of biber in the area", - "id": 14319 - }, - { - "image_path": "/content/drive/MyDrive/combined/0db3238edca36d72.jpg", - "response": "A sign that says Crioch End on it.", - "id": 14320 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf3d03ac6f3b243.jpg", - "response": "a red circle with a person carrying a box in it", - "id": 14321 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b36b89cbb47f5ec.jpg", - "response": "A street scene with a \"road closed\" sign in the foreground. There is a traffic light above the sign. In the background, there is a white van driving down the street. There are also construction barrels and a yellow and black sign.", - "id": 14322 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb42a8207460ac0.jpg", - "response": "A sign welcoming people to Arizona is shown.", - "id": 14323 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a83e04c46c233b3.jpg", - "response": "A car is driving down a street.", - "id": 14324 - }, - { - "image_path": "/content/drive/MyDrive/combined/266eae2b02331a87.jpg", - "response": "A highway with cars driving on it, near a mountain.", - "id": 14325 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a670445e0eb640.jpg", - "response": "A yellow slow sign with a bird on it.", - "id": 14326 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f47a811159a3d2b.jpg", - "response": "a sign with a cow on it(264,346),(588,712)", - "id": 14327 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f5beb60be1ab30.jpg", - "response": "A street sign on a pole in front of a building.", - "id": 14328 - }, - { - "image_path": "/content/drive/MyDrive/combined/183d26d51a9843a5.jpg", - "response": "DROP-OFF POINT(117,116),(881,241)", - "id": 14329 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bf4617040a4e50c.jpg", - "response": "A street sign with many different destinations on it.", - "id": 14330 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e829ff28332f23c.jpg", - "response": "a yellow and red sign with a exclamation point on it", - "id": 14331 - }, - { - "image_path": "/content/drive/MyDrive/combined/27501154415b96a4.jpg", - "response": "a blue and green exit sign for exit 41, knolls, 1 mile away with no services", - "id": 14332 - }, - { - "image_path": "/content/drive/MyDrive/combined/229e83f5048cccf8.jpg", - "response": "A large red flag warning of a flagger ahead is on a tripod in the street.", - "id": 14333 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b2546a60871b40.jpg", - "response": "A motel sign on the side of the road.", - "id": 14334 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1dd8016ec29866.jpg", - "response": "A sign on a metal pole that says \"Don't flick your butts on the ground. Put them out, and throw them in the trash.\"", - "id": 14335 - }, - { - "image_path": "/content/drive/MyDrive/combined/084323fd05abbae9.jpg", - "response": "A busy street with many cars on it.", - "id": 14336 - }, - { - "image_path": "/content/drive/MyDrive/combined/23cac1d031dba9e7.jpg", - "response": "The image shows a city sidewalk with a red fire hydrant. There is a no biking sign painted on the sidewalk and a bicycle symbol painted below it. The sidewalk is free of people at the moment.", - "id": 14337 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c877fd772f7994.jpg", - "response": "A green and yellow street sign is above a highway. The sign points to the Richmond International Airport, Williamsburg, and Norfolk. There is also a merge left sign under the main sign.", - "id": 14338 - }, - { - "image_path": "/content/drive/MyDrive/combined/22743086036f1eb4.jpg", - "response": "A sign for Wayne Memorial Drive is posted on a pole.", - "id": 14339 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ab2d7d93a86854.jpg", - "response": "A Pure Michigan sign points to Sadie's Antiques.", - "id": 14340 - }, - { - "image_path": "/content/drive/MyDrive/combined/38a17279ba92bcad.jpg", - "response": "A black and white photo of two signs on a railway. The left sign says 15 and the right sign says 20.", - "id": 14341 - }, - { - "image_path": "/content/drive/MyDrive/combined/46555f71b2ac3f15.jpg", - "response": "A large yellow sign advertising property for sale.", - "id": 14342 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ad8618bcbcb2214.jpg", - "response": "A street sign that says \"Weston on Trent\" and \"Please drive carefully\"", - "id": 14343 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a2ed357f803ffe9.jpg", - "response": "A sign warning against swimming and paddling in the water.", - "id": 14344 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d77d1f36b5f4ac8.jpg", - "response": "A highway sign pointing to the left for Las Vegas and the right for Delta.", - "id": 14345 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dd8bd9889e45692.jpg", - "response": "A street pole with three signs attached to it.", - "id": 14346 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f7c90bc58703be5.jpg", - "response": "A yellow sign with a black graphic of a truck with a surfboard on top and the words \"LOS LOCOS BEACH NEXT 5 KM\" written above it.", - "id": 14347 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d5563c2ab2e5746.jpg", - "response": "A street scene with a variety of signs. There is a speed limit sign that says 30, a sign that says 20 zone ends, and a sign that says zone ends. There is also a red and white striped pole. In the background, there is a brick wall and houses.", - "id": 14348 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c8d05046561303d.jpg", - "response": "a scene of a street with cars on it", - "id": 14349 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c98cff1f31a0e0c.jpg", - "response": "a street sign with the number 62 on it", - "id": 14350 - }, - { - "image_path": "/content/drive/MyDrive/combined/49244cf8287cfd2b.jpg", - "response": "A long road with a speed limit sign next to it.", - "id": 14351 - }, - { - "image_path": "/content/drive/MyDrive/combined/31db37d7f7e4e6c7.jpg", - "response": "A sign that says Alcohol Free Zone Maximum Fine \u00a3500.", - "id": 14352 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d9282b72f83bce1.jpg", - "response": "A blue sign with yellow letters that says \"Gullfoss\" with a arrow pointing to the right.", - "id": 14353 - }, - { - "image_path": "/content/drive/MyDrive/combined/358e24f6354e3f14.jpg", - "response": "A street scene with many cars parked on the side of the street. There are trees lining the street and a few street signs.", - "id": 14354 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c92ab3c46017e79.jpg", - "response": "a street sign that is orange and black", - "id": 14355 - }, - { - "image_path": "/content/drive/MyDrive/combined/313e94ebc464a5d4.jpg", - "response": "A street sign warning of frogs crossing the road.", - "id": 14356 - }, - { - "image_path": "/content/drive/MyDrive/combined/3305ddec81f41e38.jpg", - "response": "A street sign warning of a fire station ahead in multiple languages.", - "id": 14357 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b29d938e3d0f082.jpg", - "response": "A sign warning people to stop, look, and listen for trains.", - "id": 14358 - }, - { - "image_path": "/content/drive/MyDrive/combined/353e68e3e4336688.jpg", - "response": "A red sign that says reserved for members with infants.", - "id": 14359 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fed59b8660174cc.jpg", - "response": "a sign warning of baboons", - "id": 14360 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d70197ad2bd245c.jpg", - "response": "a sign on the highway that says Messecenter", - "id": 14361 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ae7fb242a6fec4d.jpg", - "response": "A sign warning of danger at a mine in the Spanish language.", - "id": 14362 - }, - { - "image_path": "/content/drive/MyDrive/combined/437b0f0809583112.jpg", - "response": "A street sign showing a person walking.", - "id": 14363 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a824834ad2ad774.jpg", - "response": "A mountain side road with many signs on the side of it.", - "id": 14364 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f5902c4d64c2543.jpg", - "response": "A tree is in the middle of a street with signs.", - "id": 14365 - }, - { - "image_path": "/content/drive/MyDrive/combined/434af46a99f114a9.jpg", - "response": "A car is driving down a road near a lush green forest. There is a street sign that says \"west 54\" and another sign that says \"keep left\". A traffic light is visible in the background.", - "id": 14366 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f2d13c846eb4541.jpg", - "response": "The image shows a city street with trees and various signs in Spanish. There are several cars on the street, including a white car with its brake lights on. A yellow pedestrian crossing sign is visible, along with a yellow sign that says \"proximidad de semaforo.\" A traffic light is also visible in the scene.", - "id": 14367 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f840c36f6426091.jpg", - "response": "A sign that says 220 kilometers to Tokyo.", - "id": 14368 - }, - { - "image_path": "/content/drive/MyDrive/combined/4522c67f3c2083e2.jpg", - "response": "A speed limit sign that is in front of a body of water.", - "id": 14369 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e53451ef20ba32a.jpg", - "response": "A warning sign with a person tripping over a cart in a dark room.", - "id": 14370 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dd3d09278a67520.jpg", - "response": "A close up of a blue and white street sign that says \"SP\" on it.", - "id": 14371 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c0faabc3ddefe60.jpg", - "response": "A yellow pedestrian crossing sign with stickers on it.", - "id": 14372 - }, - { - "image_path": "/content/drive/MyDrive/combined/515bbfe54e9176d6.jpg", - "response": "A street sign that says \"End Hoff\" on it.", - "id": 14373 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ab6ce7a34dffcd.jpg", - "response": "A street sign that says \"Winchester\" on it.", - "id": 14374 - }, - { - "image_path": "/content/drive/MyDrive/combined/30acbece88a64c0d.jpg", - "response": "A yellow traffic sign warning of a traffic circle ahead.", - "id": 14375 - }, - { - "image_path": "/content/drive/MyDrive/combined/45f35dc977bcc613.jpg", - "response": "A sign that says caution parachute landing area.", - "id": 14376 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b4f15d2ac66a4ba.jpg", - "response": "A street sign with three different signs on it.", - "id": 14377 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d02c441eb5347e7.jpg", - "response": "A green street sign that says \"west side\" pointing to the left.", - "id": 14378 - }, - { - "image_path": "/content/drive/MyDrive/combined/2994d2ce3d3fda6d.jpg", - "response": "An empty street with a traffic light and a street sign.", - "id": 14379 - }, - { - "image_path": "/content/drive/MyDrive/combined/484602206ff84406.jpg", - "response": "A street sign with many different colored signs on it.", - "id": 14380 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f6621dfaa4e4672.jpg", - "response": "A street scene with a yellow sign on the ground and a yellow sign on a pole.", - "id": 14381 - }, - { - "image_path": "/content/drive/MyDrive/combined/36c0a11bb0dc703a.jpg", - "response": "A white and green sign pointing to the left with the words Christmas Tree Recycling on it.", - "id": 14382 - }, - { - "image_path": "/content/drive/MyDrive/combined/47a58bec2fbe4106.jpg", - "response": "A highway with many cars on it.", - "id": 14383 - }, - { - "image_path": "/content/drive/MyDrive/combined/48f54514302d1298.jpg", - "response": "A highway with multiple cars driving on it and large street signs above.", - "id": 14384 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d336692717a6a06.jpg", - "response": "A large sign advertising a garage's MOT prices on a street corner.", - "id": 14385 - }, - { - "image_path": "/content/drive/MyDrive/combined/499057770ebfb9a4.jpg", - "response": "A blue sign with a white bicycle on it is posted on a pole.", - "id": 14386 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cc37902b36190b0.jpg", - "response": "A yellow sign with black letters that says \"Satan's Hallow Open As Usual\" with a sticker below it that says \"Hell's Party Hardy\"", - "id": 14387 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a07d82c817a5032.jpg", - "response": "a street sign that is blue and white", - "id": 14388 - }, - { - "image_path": "/content/drive/MyDrive/combined/31576880da861b78.jpg", - "response": "A sign warning people to stay off the dunes and beware of rattlesnakes.", - "id": 14389 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a0692f73814bec6.jpg", - "response": "A street sign with a red, white, and blue color scheme is standing in a field of grass. The sign has a white border and is written in a foreign language. There is a traffic light visible in the background, as well as a street light.", - "id": 14390 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a298a2cb5780f45.jpg", - "response": "An orange road sign that says \"Exit 272\" on it.", - "id": 14391 - }, - { - "image_path": "/content/drive/MyDrive/combined/4959246993e7f854.jpg", - "response": "A highway with a few cars on it.", - "id": 14392 - }, - { - "image_path": "/content/drive/MyDrive/combined/2889c952964b6e78.jpg", - "response": "A beach with people on it, a few umbrellas set up.", - "id": 14393 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed1bb74dca95e81.jpg", - "response": "A car is parked in front of a gas station.", - "id": 14394 - }, - { - "image_path": "/content/drive/MyDrive/combined/385c6cd8f3d23967.jpg", - "response": "A poster with four people behind three road signs with a camel, bear and kangaroo on them.", - "id": 14395 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e179ded82dd65ab.jpg", - "response": "A pole with several signs attached to it.", - "id": 14396 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c4feae4abb40544.jpg", - "response": "A stone sign for the town of Albertville.", - "id": 14397 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bbe5bcb4d81d4e7.jpg", - "response": "A street sign warning of a 25% grade on a hill.", - "id": 14398 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ac299119c38a5be.jpg", - "response": "a highway sign that says southern parkway", - "id": 14399 - }, - { - "image_path": "/content/drive/MyDrive/combined/3222b93e49f373b7.jpg", - "response": "A sign warning of the possibility of dust storms in the area.", - "id": 14400 - }, - { - "image_path": "/content/drive/MyDrive/combined/5482b79b6753f9bb.jpg", - "response": "The image shows a protest in support of net neutrality in front of the U.S. Capitol building. The protesters are holding signs and there is a large sign that reads \"NET Neutrality\". The Capitol building is visible in the background.", - "id": 14401 - }, - { - "image_path": "/content/drive/MyDrive/combined/756562da1d31ec0e.jpg", - "response": "A sign post with several signs on it in a foreign language.", - "id": 14402 - }, - { - "image_path": "/content/drive/MyDrive/combined/52000739b22c1cb7.jpg", - "response": "A close up of a green Desert Hot Springs City Limit sign with a population of 23,554 and an elevation of 1,185.", - "id": 14403 - }, - { - "image_path": "/content/drive/MyDrive/combined/549a4ae590e5ec6e.jpg", - "response": "The image features a row of four traffic lights on black poles. The traffic lights are in the colors red, yellow, green, and green respectively. They are all facing the same direction. The red light is on the left, followed by the yellow light, the green light, and the green light on the right. The traffic lights are located in front of a building with the numbers 1, 2, and 3 on its side. The building has a brown brick exterior. The image also shows a small section of a street light on the right side of the image.", - "id": 14404 - }, - { - "image_path": "/content/drive/MyDrive/combined/519437d2a3fe1db6.jpg", - "response": "A black and white sign that says \"One Day\" on it.", - "id": 14405 - }, - { - "image_path": "/content/drive/MyDrive/combined/d8cfd59805fc55fe.jpg", - "response": "A close up of three street signs on a brick wall.", - "id": 14406 - }, - { - "image_path": "/content/drive/MyDrive/combined/114d25fab0906cf5.jpg", - "response": "A train is traveling down the tracks near a platform.", - "id": 14407 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a2b920b9e8c78f3.jpg", - "response": "A blue and yellow train engine number 5204 is on a bridge going over a river.", - "id": 14408 - }, - { - "image_path": "/content/drive/MyDrive/combined/507baa03fca24ee9.jpg", - "response": "A wall covered in graffiti next to train tracks.", - "id": 14409 - }, - { - "image_path": "/content/drive/MyDrive/combined/12fec5105dc995aa.jpg", - "response": "A train is on the tracks in a rail yard.", - "id": 14410 - }, - { - "image_path": "/content/drive/MyDrive/combined/21fcd2589acbc910.jpg", - "response": "A train traveling past a small building and a few cars.", - "id": 14411 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fb1774d951f3877.jpg", - "response": "a red train engine on the tracks", - "id": 14412 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f13013841546e4f.jpg", - "response": "A train on a track at a train station.", - "id": 14413 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a3c3fa27f1ef9f.jpg", - "response": "A red train engine is on the tracks in a train yard.", - "id": 14414 - }, - { - "image_path": "/content/drive/MyDrive/combined/121d24793f0ef1fd.jpg", - "response": "A train engine with a man standing next to it.", - "id": 14415 - }, - { - "image_path": "/content/drive/MyDrive/combined/241fbd6452153653.jpg", - "response": "A bullet train is stopped at a train station.", - "id": 14416 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a496c85f1b3a238.jpg", - "response": "The image shows a train station with two trains parked next to each other on the tracks. The trains are colorful, with one painted in red, orange, and blue and the other in blue and yellow. The trains have their doors open, and people can be seen standing nearby. There are several individuals in the scene, some of which are closer to the trains, while others are further away. A bench is also visible in the foreground.", - "id": 14417 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d354c0e6c7febdc.jpg", - "response": "A black and white photo of a train on a track.", - "id": 14418 - }, - { - "image_path": "/content/drive/MyDrive/combined/40388e9b793165ed.jpg", - "response": "a train on a track near a building", - "id": 14419 - }, - { - "image_path": "/content/drive/MyDrive/combined/26cb1858072bdfc4.jpg", - "response": "A red and yellow trolley car on a track in the street.", - "id": 14420 - }, - { - "image_path": "/content/drive/MyDrive/combined/100a0abbb41c5ebb.jpg", - "response": "A bullet train stopped at a train station.", - "id": 14421 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1c3635b313eba6.jpg", - "response": "A white van is parked in a yard covered in debris.", - "id": 14422 - }, - { - "image_path": "/content/drive/MyDrive/combined/157f962d4916fd90.jpg", - "response": "a silver van with a black stripe on the side", - "id": 14423 - }, - { - "image_path": "/content/drive/MyDrive/combined/08044e537871f909.jpg", - "response": "A blue van is parked in a lot with several bicycles. The van is blue and has white letters on the side. There are two bicycles chained to the front of the van. A person is standing behind the van, wearing a purple shirt. There is a car parked in the lot as well.", - "id": 14424 - }, - { - "image_path": "/content/drive/MyDrive/combined/085e7a93df5ad367.jpg", - "response": "A white and blue Directv van parked in a parking lot.", - "id": 14425 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa5380073f1ff4a.jpg", - "response": "A police van is parked on the side of a road near a building. There is a group of people standing on the sidewalk in front of the building, and a few people are also standing near the police van. Some people are holding signs and a bicycle is parked nearby.", - "id": 14426 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a759a85cdb3fd0.jpg", - "response": "A toy police van with Northern Constabulary written on the side.", - "id": 14427 - }, - { - "image_path": "/content/drive/MyDrive/combined/15d3d4696bab0cf9.jpg", - "response": "A white van with red stripes on the door is driving down a street.", - "id": 14428 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b415ced2601ea6e.jpg", - "response": "A traffic warden van is parked on the side of a road.", - "id": 14429 - }, - { - "image_path": "/content/drive/MyDrive/combined/14143f81d1b39a4e.jpg", - "response": "A van is parked on the street at night. The van is white and has the words \"Fireproofing Corporation of America\" written on the side. The van has two doors and a window. The lights on the van are turned on. The street has a wet surface.", - "id": 14430 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e9994082e3f68ba.jpg", - "response": "A police van is parked on the side of the street.", - "id": 14431 - }, - { - "image_path": "/content/drive/MyDrive/combined/0866e58d8f9d3c5f.jpg", - "response": "A silver van is parked in a grassy field.", - "id": 14432 - }, - { - "image_path": "/content/drive/MyDrive/combined/150393413cc13c64.jpg", - "response": "A city street with a white van driving down it. There is a street sign that says 40 and a round sign with a red border. There is a building with many windows in the background.", - "id": 14433 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc3c1f809e1c78b.jpg", - "response": "An ambulance service van is parked on the street next to a brick building. The van is white, red, and yellow. There is a car parked behind it and another one parked beside it. There is also a white car parked on the street. The image is taken during the day.", - "id": 14434 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d97811221ffe603.jpg", - "response": "A black van with the word Bope on the side.", - "id": 14435 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4e56f873ca4264.jpg", - "response": "A white van with blue writing on the side is parked on the street.", - "id": 14436 - }, - { - "image_path": "/content/drive/MyDrive/combined/1063289460a573cb.jpg", - "response": "A white van with the letters ICC on the side of it.", - "id": 14437 - }, - { - "image_path": "/content/drive/MyDrive/combined/18e2e86cc160cac3.jpg", - "response": "A white van is parked in a parking lot, and a person's shadow is visible in front of the van. The parking lot is made of concrete and has several parking spaces, some of which have lines painted on the ground. There are also a few cars in the background, parked at some distance from the van.", - "id": 14438 - }, - { - "image_path": "/content/drive/MyDrive/combined/222bcd2dc312a91f.jpg", - "response": "A red van with yellow stripes and blue lights on top.", - "id": 14439 - }, - { - "image_path": "/content/drive/MyDrive/combined/089a388582561998.jpg", - "response": "A blue van is driving down a city street.", - "id": 14440 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3a78a1db7b299b.jpg", - "response": "A police van is parked on the side of the road.", - "id": 14441 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0dd3e32f4a8806.jpg", - "response": "A double decker bus is driving down the street.", - "id": 14442 - }, - { - "image_path": "/content/drive/MyDrive/combined/24d67fff387a874a.jpg", - "response": "A white van with Thrifty Car Rental written on the side, driving down a road.", - "id": 14443 - }, - { - "image_path": "/content/drive/MyDrive/combined/22a4f695ac5fbda6.jpg", - "response": "A white beer delivery truck parked on the street.", - "id": 14444 - }, - { - "image_path": "/content/drive/MyDrive/combined/148d0af06d6573de.jpg", - "response": "A red and white ambulance is parked on the side of a street.", - "id": 14445 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f5785319928bf1.jpg", - "response": "A white van with writing on the side of it.", - "id": 14446 - }, - { - "image_path": "/content/drive/MyDrive/combined/1da0fa2530513b05.jpg", - "response": "a black van with the number 06-0023 on the side of it", - "id": 14447 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b6917fe42a1c4e.jpg", - "response": "The van is white in color.", - "id": 14448 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b7a28913e62f2a.jpg", - "response": "A white van with green and red stripes is driving down the street.", - "id": 14449 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d200e38fd72d0fd.jpg", - "response": "A police van with the word police on the back.", - "id": 14450 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b77515e3bf95d87.jpg", - "response": "A police van parked on the side of the road.", - "id": 14451 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa64e3b4646a03e.jpg", - "response": "A white Ford Transit van with the words Proweld on the side of it.", - "id": 14452 - }, - { - "image_path": "/content/drive/MyDrive/combined/125163f21e3244cf.jpg", - "response": "A woman is riding a bicycle down the street. There is a large truck and a van in the background. The woman is wearing a black jacket and jeans.", - "id": 14453 - }, - { - "image_path": "/content/drive/MyDrive/combined/23e5e6531fdc7374.jpg", - "response": "The image shows a woman running in a race. She is wearing a purple tank top and black leggings. She has a number on her chest, which is likely an identification number for the race. She is running down a street, which is lined with cars. There are several other people in the background, either running or watching the race. There are also a few vehicles on the street, including a red car and a white van.", - "id": 14454 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3550d484ad7ff9.jpg", - "response": "A white Mercedes van with a green and black design on the side.", - "id": 14455 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d4429bcd0c86841.jpg", - "response": "a white van that is parked on the side of the road", - "id": 14456 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1f22f7ef80ae95.jpg", - "response": "A man driving a small blue and white van down a street.", - "id": 14457 - }, - { - "image_path": "/content/drive/MyDrive/combined/175d2b1c99eb327d.jpg", - "response": "A white minibus with a man in a high visibility jacket driving down a motorway.", - "id": 14458 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c9112d1f718cdb.jpg", - "response": "An ambulance is traveling down a city street. The ambulance is a bright green and red color. There are a few cars on the street and a person walking. There are also a few power lines and a tree in the background.", - "id": 14459 - }, - { - "image_path": "/content/drive/MyDrive/combined/21d319917a14edc0.jpg", - "response": "A red Ford van driving down a busy street.", - "id": 14460 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f2f05b6d777c81.jpg", - "response": "A red Mercedes van driving down a road.", - "id": 14461 - }, - { - "image_path": "/content/drive/MyDrive/combined/09f1bbbe6b210ac0.jpg", - "response": "A white van with black stripes is parked on the street.", - "id": 14462 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9b5bca13a9e195.jpg", - "response": "A red and yellow Mercedes fire van parked in front of a garage.", - "id": 14463 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d603cef1344cf22.jpg", - "response": "A Coca-Cola truck is parked in a parking lot, next to a white van. There are two other trucks in the lot, and a plane is visible in the background. The Coca-Cola truck is unloading, and there are several people in the area.", - "id": 14464 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dfb692119e12c43.jpg", - "response": "A police van is parked in front of a crowd of people. There are multiple people standing around the van and a bus. There are also multiple traffic lights in the scene.", - "id": 14465 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dbc8d811c800ef7.jpg", - "response": "A white ambulance with red and white stripes parked in a garage.", - "id": 14466 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c0685503268f0c.jpg", - "response": "A yellow van is parked in a grassy field with other cars.", - "id": 14467 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c80607ec7aac0c.jpg", - "response": "A food truck is parked in a lot with several people standing around it. There are two men standing near the front of the truck and another two people standing further back. A bicycle is parked near the side of the truck.", - "id": 14468 - }, - { - "image_path": "/content/drive/MyDrive/combined/3856fb10077c41c0.jpg", - "response": "A news van is parked in a gas station.", - "id": 14469 - }, - { - "image_path": "/content/drive/MyDrive/combined/3811285c421d2ad2.jpg", - "response": "A woman sitting at a table with green chairs and a green tablecloth.", - "id": 14470 - }, - { - "image_path": "/content/drive/MyDrive/combined/317b3596da5dcca3.jpg", - "response": "A busy street with many people walking around.", - "id": 14471 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ccb9291d1f57e6.jpg", - "response": "The image shows the outside of a Walmart store at night. The store is lit up by several lights, including one that is shining brightly over the parking lot. There are a few cars parked in the lot, including one on the far left and another on the far right. In the center of the lot, there is a light post with a light shining upwards. The store itself is a large building with a big sign that reads \"WAL-MART\" in white letters. The sign is lit up and is located above the store's entrance.", - "id": 14472 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d654da9038ab3b8.jpg", - "response": "A street sign is visible in the image, with a van driving down the road behind it. The sign is for Hartspring and gives directions to several locations, including Watford, Aylesbury, Watford South, Radlett, and Aldenham. There is also a roundabout sign indicating a roundabout ahead.", - "id": 14473 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a24abe1cb6163c4.jpg", - "response": "A man in a white shirt and black pants is pointing to a sign that says \"flag\" on the side of a van. The sign the man is holding says \"iscavice is the why\" on it.", - "id": 14474 - }, - { - "image_path": "/content/drive/MyDrive/combined/250b184c6c3ff685.jpg", - "response": "a white van parked in front of a building", - "id": 14475 - }, - { - "image_path": "/content/drive/MyDrive/combined/36be26fe612e8052.jpg", - "response": "A white DPD delivery van is parked on the side of the street.", - "id": 14476 - }, - { - "image_path": "/content/drive/MyDrive/combined/3391399ef3333054.jpg", - "response": "A page from a 1968 GM brochure, advertising their line of cars and trucks.", - "id": 14477 - }, - { - "image_path": "/content/drive/MyDrive/combined/5263db7b2090645f.jpg", - "response": "A orange and white van is driving down the road.", - "id": 14478 - }, - { - "image_path": "/content/drive/MyDrive/combined/309da4048ad15783.jpg", - "response": "A large stone building with a clock tower is situated next to a church. A white van is parked on the street in front of the building. A man is walking on the sidewalk near the van. There are British flags hanging from the building.", - "id": 14479 - }, - { - "image_path": "/content/drive/MyDrive/combined/32c2fdb84335ac0d.jpg", - "response": "A white van with the letters arco on the side of it.", - "id": 14480 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e3ed301a46652f.jpg", - "response": "A police van is driving down the street.", - "id": 14481 - }, - { - "image_path": "/content/drive/MyDrive/combined/2781f6e7914b94f4.jpg", - "response": "A blue van is parked on the street next to a sidewalk. The van has a camper top and a yellow license plate. There is a white van parked behind it.", - "id": 14482 - }, - { - "image_path": "/content/drive/MyDrive/combined/378daa16cf8fd924.jpg", - "response": "A man in a yellow safety jacket standing next to a white van.", - "id": 14483 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c0d6e1ae24288b0.jpg", - "response": "A car with a bike on top of it and a van behind it.", - "id": 14484 - }, - { - "image_path": "/content/drive/MyDrive/combined/26e888f72105f2d2.jpg", - "response": "a white van with black wheels and a black stripe on the side", - "id": 14485 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b19567e2bd430c2.jpg", - "response": "A white van with black doors and black tires is driving down the street.", - "id": 14486 - }, - { - "image_path": "/content/drive/MyDrive/combined/45ba6ab621c4901a.jpg", - "response": "A blue and green van with the characters Scooby and Shaggy on it.", - "id": 14487 - }, - { - "image_path": "/content/drive/MyDrive/combined/430d43429a3bf39e.jpg", - "response": "A white Mercedes Sprinter van is driving down the street. The driver, a man, is wearing a black jacket and hat. There is a cell phone in the front of the van, and a handbag in the passenger seat. The van has a City Sprint logo on the front.", - "id": 14488 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b245379b6768516.jpg", - "response": "A white van with yellow and black graphics on the back.", - "id": 14489 - }, - { - "image_path": "/content/drive/MyDrive/combined/360ddfa0f501f20e.jpg", - "response": "A small white and red trailer hooked up to a red SUV.", - "id": 14490 - }, - { - "image_path": "/content/drive/MyDrive/combined/32578bca509088c2.jpg", - "response": "A colorful van with flowers painted on it is parked on a brick road.", - "id": 14491 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0f10022fb5c6d3.jpg", - "response": "A white Ford van with a blue logo on the hood is parked in front of a building. The van has a yellow license plate that says \"VF-49-HD\". There are two mirrors on the side of the van.", - "id": 14492 - }, - { - "image_path": "/content/drive/MyDrive/combined/288c5995ecf7188e.jpg", - "response": "A van with a painted advertisement for Edible Arrangements, a company that makes and sells fruit arrangements.", - "id": 14493 - }, - { - "image_path": "/content/drive/MyDrive/combined/469acfb4e587bdcd.jpg", - "response": "A toy model of a green and white van on a road.", - "id": 14494 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b16005ded9e1394.jpg", - "response": "A truck is parked in front of a house.", - "id": 14495 - }, - { - "image_path": "/content/drive/MyDrive/combined/4745d52ded8f93fc.jpg", - "response": "A bus on the road with the sky in the background.", - "id": 14496 - }, - { - "image_path": "/content/drive/MyDrive/combined/455127da1ba45306.jpg", - "response": "A large white van is parked in front of a tall white building. The building has many windows and is the Postal Museum. There are two black street lamps in front of the building and a man walking on the sidewalk. A bench is located on the right side of the building and a backpack is placed on the ground.", - "id": 14497 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a6d058554dd1d74.jpg", - "response": "A red car with white tires and a flame design on the side.", - "id": 14498 - }, - { - "image_path": "/content/drive/MyDrive/combined/312e909c82062b36.jpg", - "response": "A white police van with a blue and yellow checkered pattern on the side.", - "id": 14499 - }, - { - "image_path": "/content/drive/MyDrive/combined/4449601908f2515e.jpg", - "response": "A blue and white van is parked on the side of the road.", - "id": 14500 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c421fc2955101ea.jpg", - "response": "A busy city street with a van parked on the side of the road. There are many people walking on the sidewalk, some carrying handbags. A few cars are parked along the street.", - "id": 14501 - }, - { - "image_path": "/content/drive/MyDrive/combined/273c0ce3867a57b3.jpg", - "response": "A white van with red stripe is driving down the street.", - "id": 14502 - }, - { - "image_path": "/content/drive/MyDrive/combined/40dabc3125a0d4e0.jpg", - "response": "A white truck with red writing on the back.", - "id": 14503 - }, - { - "image_path": "/content/drive/MyDrive/combined/41d1dd7689fad318.jpg", - "response": "A grey van with the word \"stay\" on the side of it.", - "id": 14504 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c689a545105811e.jpg", - "response": "A white Mercedes van is driving down the street.", - "id": 14505 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c602e96bdff001e.jpg", - "response": "A white Mercedes van driving down a road.", - "id": 14506 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c94de4f151012e4.jpg", - "response": "A black and white image of a motor home with a family in the kitchen and bedroom areas. The kitchen has a three burner stove and a counter with three people standing at it. The bedroom has two people in it and a bed. There is also a bathroom with a shower and a couple sitting on a couch.", - "id": 14507 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ade5dbc0d8e78de.jpg", - "response": "a yellow license plate that says L W J 663 on it", - "id": 14508 - }, - { - "image_path": "/content/drive/MyDrive/combined/09354acec4e65010.jpg", - "response": "A red Tesla car with the license plate \"LOL OIL\" parked in a parking lot.", - "id": 14509 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5915e22c5d5698.jpg", - "response": "A car with a Nevada license plate that says LIOQRLD on it.", - "id": 14510 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b17193c820ded62.jpg", - "response": "A grey mini cooper with a yellow license plate that says 07 TH FD.", - "id": 14511 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b8ccc48f8249011.jpg", - "response": "A silver jaguar car with the number plate M6 TAL.", - "id": 14512 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ed6078ba96d0c5.jpg", - "response": "The image shows a red car with the word \"FLORIDA\" written in snow on the hood. The car is a Toyota and the license plate reads \"BRV 7406\". The car is parked and the snow appears to be light and fluffy.", - "id": 14513 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a623bc78056163d.jpg", - "response": "A bumper sticker that says Biodiesel on a truck.", - "id": 14514 - }, - { - "image_path": "/content/drive/MyDrive/combined/0acae60763c8124e.jpg", - "response": "A van with a window sticker that says \"Support the Minutemen\" and a window sign that says \"This is America and our only language is English\"", - "id": 14515 - }, - { - "image_path": "/content/drive/MyDrive/combined/082d5ca9987693f3.jpg", - "response": "A van with a sticker on the back that says \"balloonworks.co.uk\" on it.", - "id": 14516 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b6a59392b3c5caf.jpg", - "response": "A man in a red shirt standing outside of a house next to a car. The car has its brake lights on.", - "id": 14517 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a18fb90f897e55e.jpg", - "response": "A silver car with a European license plate and bumper stickers on the back.", - "id": 14518 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc49bac8978eed9.jpg", - "response": "A red Smart car with a Smart license plate.", - "id": 14519 - }, - { - "image_path": "/content/drive/MyDrive/combined/20a79657859c6569.jpg", - "response": "The image shows a busy street filled with traffic. There are several cars, including a white BMW with a license plate that reads \"100000\". A white van is also visible in the scene. The cars are driving on a road that appears to be congested.", - "id": 14520 - }, - { - "image_path": "/content/drive/MyDrive/combined/19306e847f2dbe79.jpg", - "response": "A white car with a Virginia license plate that says JEUNE on it.", - "id": 14521 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e617f1eb453ebfe.jpg", - "response": "A green license plate that says Motu O Fiafiaga on it.", - "id": 14522 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e27f76637103bf.jpg", - "response": "The license plate on the car is from the state of Washington.", - "id": 14523 - }, - { - "image_path": "/content/drive/MyDrive/combined/247b74ca4fd19931.jpg", - "response": "a car with a license plate that says \"no probs\"", - "id": 14524 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d46a4678de640c1.jpg", - "response": "A white license plate that says \"SONUVA\" on it.", - "id": 14525 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf5e22c1cdb40a8.jpg", - "response": "the back of a white lexus car", - "id": 14526 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f206a5a3a72a771.jpg", - "response": "A car with a license plate that says \"IN GOD WE TRUST\" and has the numbers \"2ND AMD\" on it.", - "id": 14527 - }, - { - "image_path": "/content/drive/MyDrive/combined/11bc1c35f9cfb03e.jpg", - "response": "A black car with a license plate that says \"02E3991\" on the back of it.", - "id": 14528 - }, - { - "image_path": "/content/drive/MyDrive/combined/1772ab3c3bdd29b2.jpg", - "response": "A blue Subaru Outback with a bike rack on the back.", - "id": 14529 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e9542aa4c33f719.jpg", - "response": "The image features a white car with a license plate on the back. The license plate is from the state of Arizona and has the numbers 283 on it. The car is parked in a parking lot.", - "id": 14530 - }, - { - "image_path": "/content/drive/MyDrive/combined/2be7fec54b43a742.jpg", - "response": "The image shows the rear end of a blue Honda car with a California license plate. The license plate has the letters \"ARB\" on it. The car is parked next to a curb and there is a handbag on the ground in front of it. The image is taken from a perspective looking back at the car.", - "id": 14531 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f58c90c26753850.jpg", - "response": "The image features a red car with a Virginia license plate that says \"I love my MINI\". There is also a paw print sticker on the license plate. The car is parked in a parking lot.", - "id": 14532 - }, - { - "image_path": "/content/drive/MyDrive/combined/27887d70caebfa69.jpg", - "response": "A black car is parked on the side of the street. There are two other cars parked further ahead. The car has a European license plate. There is a bench on the sidewalk. There is a tree on the sidewalk. There is a brick building in the background.", - "id": 14533 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fc52a63ee58d000.jpg", - "response": "A close up of a red sign with a license plate on it that says \"Oregon\" on it.", - "id": 14534 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a47acd8e0d07441.jpg", - "response": "a car with the letters \"Honda\" on the back of it", - "id": 14535 - }, - { - "image_path": "/content/drive/MyDrive/combined/1606fd35e3828060.jpg", - "response": "A green car with a snow covered rear end.", - "id": 14536 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bcb1b755eb8f211.jpg", - "response": "A white car license plate that says GYNIUS.", - "id": 14537 - }, - { - "image_path": "/content/drive/MyDrive/combined/119910df6c55fbeb.jpg", - "response": "A black Skoda car with a luggage rack on top. The car has a license plate that says \"S A SKODA\". There is a white sticker on the back of the car with the word \"Octavia\" on it. The car is parked in a parking space.", - "id": 14538 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f506dd9bcf2a799.jpg", - "response": "a car with a utah license plate that says UOFMICH on it", - "id": 14539 - }, - { - "image_path": "/content/drive/MyDrive/combined/24f7fa24a76ee46c.jpg", - "response": "A Virginia license plate that says Grrtful on it.", - "id": 14540 - }, - { - "image_path": "/content/drive/MyDrive/combined/115b0eb593671c78.jpg", - "response": "A car with a license plate that says \"Virginia Joe Who\" is shown. The plate is white with blue and green writing. The license plate is attached to a car with a silver bar across the top and two bolts on each side. The car is dark blue in color.", - "id": 14541 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8fb19757f8dfe7.jpg", - "response": "A red car with a Florida license plate that says BAE4975.", - "id": 14542 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1a7255004820e3.jpg", - "response": "A car on a street.", - "id": 14543 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e6b81c081f5986.jpg", - "response": "A license plate that says MONYMAN on it.", - "id": 14544 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0ac55f447972cd.jpg", - "response": "The image features a car with a custom license plate on the back. The license plate has a design that says \"I'd Rather Be In Utah\" in white text, with a larger orange text below it that says \"UTAH\". There is an outline of the state of Utah in orange and blue. The license plate number is 509 XUN. The plate also has a design of a person running with a marathon bib on. The car is black and the plate is displayed on the back.", - "id": 14545 - }, - { - "image_path": "/content/drive/MyDrive/combined/25a935e194aa3efd.jpg", - "response": "A black car with a European license plate that says ELFS200. There is a sticker on the rear of the car that looks like a character from SpongeBob SquarePants.", - "id": 14546 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef4172de565167f.jpg", - "response": "A car with a Arizona license plate that has a picture of a desert on it.", - "id": 14547 - }, - { - "image_path": "/content/drive/MyDrive/combined/11631469e9dbc6fc.jpg", - "response": "A car with a license plate that says Virginia Rhombus.", - "id": 14548 - }, - { - "image_path": "/content/drive/MyDrive/combined/12bebd6fb2bf6d0b.jpg", - "response": "A white car with stickers on the back of it.", - "id": 14549 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9aaccf9ee1a71d.jpg", - "response": "The image shows a blurry car on a street. The car is silver and is shown from the back. The license plate on the car reads \"ANUSHRE\". There is a traffic light visible in the background, and a fire hydrant is also shown near the car. The photo has a blurry quality to it, giving it a somewhat dreamy or nostalgic feel.", - "id": 14550 - }, - { - "image_path": "/content/drive/MyDrive/combined/2007ccd9b5adb6d2.jpg", - "response": "The back of a black Honda vehicle with a Texas license plate.", - "id": 14551 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e07fe12a6994d09.jpg", - "response": "A white license plate that says Ignunt on it.", - "id": 14552 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e3b4a4cb4a1da64.jpg", - "response": "The image shows the front end of a car with a blue and silver grill. The car has a California license plate that says \"501CIII\" in red letters. The car is a Infinity.", - "id": 14553 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b5d152ec2f3d08a.jpg", - "response": "A white car with a Toyota logo on the back.", - "id": 14554 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e92b210b0a0a678.jpg", - "response": "a car with a license plate that says AFRX 064", - "id": 14555 - }, - { - "image_path": "/content/drive/MyDrive/combined/13381e25d1e9d39e.jpg", - "response": "A black BMW car with a license plate that says \"PUREVIL\".", - "id": 14556 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d56471a08aa3284.jpg", - "response": "A car with a mercedes logo on the trunk and a California license plate that says \"SIN IV\".", - "id": 14557 - }, - { - "image_path": "/content/drive/MyDrive/combined/24bec4d1080a9171.jpg", - "response": "A boy sitting in a plane pilot seat with a lot of buttons and levers to play with.", - "id": 14558 - }, - { - "image_path": "/content/drive/MyDrive/combined/1861653174570da4.jpg", - "response": "A car with a license plate that says \"jesus rescued me\" on the back.", - "id": 14559 - }, - { - "image_path": "/content/drive/MyDrive/combined/107e41390e222133.jpg", - "response": "A white Ford truck with a vanity license plate that says MOURDOCK is parked in a parking lot.", - "id": 14560 - }, - { - "image_path": "/content/drive/MyDrive/combined/13178ab7ff17a38c.jpg", - "response": "A car on a street.", - "id": 14561 - }, - { - "image_path": "/content/drive/MyDrive/combined/230a0d1914172390.jpg", - "response": "an orange car with a license plate that says 7886", - "id": 14562 - }, - { - "image_path": "/content/drive/MyDrive/combined/22bf70bdae805db8.jpg", - "response": "A black car with a California license plate that says MOFObIA.", - "id": 14563 - }, - { - "image_path": "/content/drive/MyDrive/combined/136949c5f204a6bf.jpg", - "response": "A grey car with a yellow license plate is parked on the side of the street. There are several birds sitting on top of the car.", - "id": 14564 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bdf3e0ce5e9471f.jpg", - "response": "A Hummer license plate frame on a Hummer vehicle.", - "id": 14565 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e935b0107c51ddc.jpg", - "response": "A close up of a car with a California license plate that says ZUMGUY on it.", - "id": 14566 - }, - { - "image_path": "/content/drive/MyDrive/combined/236b04e25b415b59.jpg", - "response": "a yellow license plate that says cuba on it", - "id": 14567 - }, - { - "image_path": "/content/drive/MyDrive/combined/1923b041b422e356.jpg", - "response": "A California license plate that says Baanana on it.", - "id": 14568 - }, - { - "image_path": "/content/drive/MyDrive/combined/0daad0e7640b11c0.jpg", - "response": "A red car is driving down the street.", - "id": 14569 - }, - { - "image_path": "/content/drive/MyDrive/combined/15477a990d1a716b.jpg", - "response": "A maroon car is parked on the side of the street. The car has a European license plate. The car is an Audi A4.", - "id": 14570 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ece49a5f3e888bd.jpg", - "response": "A street scene with a car parked on the street.", - "id": 14571 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ad9250b87620a54.jpg", - "response": "A close up of a license plate that says Beautiful British Columbia.", - "id": 14572 - }, - { - "image_path": "/content/drive/MyDrive/combined/161e845ab67f290d.jpg", - "response": "A silver Honda Civic with a license plate that reads 4XXA130. The car has several bumper stickers on it including one that says Give Blood Play Hockey.", - "id": 14573 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a66e52d4fe5c92c.jpg", - "response": "A white car with a California license plate that says 2CUTE4.", - "id": 14574 - }, - { - "image_path": "/content/drive/MyDrive/combined/132bb87427676a1b.jpg", - "response": "A car with a license plate that says DCTWHO on it.", - "id": 14575 - }, - { - "image_path": "/content/drive/MyDrive/combined/226a58959858e4ba.jpg", - "response": "A car with a California license plate that says PWER TRP on it.", - "id": 14576 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c70eaf53604fbfa.jpg", - "response": "The image features a car bumper with a license plate that reads \"NEVADA\". The plate is blue and white and is attached to the bumper of a car. The car is not visible in the image, only the bumper with the license plate.", - "id": 14577 - }, - { - "image_path": "/content/drive/MyDrive/combined/1626d26351c41a0f.jpg", - "response": "A black car with a license plate that says BZ 06 AMG.", - "id": 14578 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a86589647dddbb1.jpg", - "response": "The image features a red car with a white license plate. The license plate has the letters \"C U T\" on it, but the third letter is broken off. The car is parked next to a building.", - "id": 14579 - }, - { - "image_path": "/content/drive/MyDrive/combined/282dec3d0f36d111.jpg", - "response": "a close up of a car number plate with the letters N V Z 8 1 X on it", - "id": 14580 - }, - { - "image_path": "/content/drive/MyDrive/combined/15dffd73821f75e4.jpg", - "response": "A Virginia license plate on a car.", - "id": 14581 - }, - { - "image_path": "/content/drive/MyDrive/combined/14a95a59d6d52443.jpg", - "response": "A black car with a Virginia license plate that says HBRD PWR.", - "id": 14582 - }, - { - "image_path": "/content/drive/MyDrive/combined/18a6d723e3778ca9.jpg", - "response": "A close up of a car license plate that says \"Bikini\" on it.", - "id": 14583 - }, - { - "image_path": "/content/drive/MyDrive/combined/3550e069f8d95ddf.jpg", - "response": "The image shows the front end of a blue car with a silver grill. The car has a Chevrolet logo on the front and a yellow license plate with black lettering. The license plate has the letters \"AK\" and the numbers \"5520\". There is also a phone number on the license plate. The car is parked in a lot with other cars in the background.", - "id": 14584 - }, - { - "image_path": "/content/drive/MyDrive/combined/37fd0f0a590e197f.jpg", - "response": "The image shows a close up of a car's rear bumper with a license plate on it. The license plate has the letters \"ASH\" on it and is from the state of South Carolina. There is also a small figurine of a person sitting in front of the license plate.", - "id": 14585 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ecbb9e4696d0d35.jpg", - "response": "A blue car with a vanity license plate that says TOYOTA ZONE.", - "id": 14586 - }, - { - "image_path": "/content/drive/MyDrive/combined/30dd6d1aea6a907f.jpg", - "response": "a yellow license plate that says north shore chrysler on it", - "id": 14587 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b7a554158c6a556.jpg", - "response": "The car has a Richmond, California license plate.", - "id": 14588 - }, - { - "image_path": "/content/drive/MyDrive/combined/39cade80422e9305.jpg", - "response": "A car with a bumper sticker that says \"Hartford, You Could Do Worse\" on it.", - "id": 14589 - }, - { - "image_path": "/content/drive/MyDrive/combined/3facc1072f339d4b.jpg", - "response": "A car with a California license plate that says LAPOULE on it.", - "id": 14590 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e38dafb662a4cce.jpg", - "response": "A DJ wearing a blue shirt and headphones is working on mixing music on a soundboard.", - "id": 14591 - }, - { - "image_path": "/content/drive/MyDrive/combined/4106fdfda17fe27e.jpg", - "response": "a white car with a massachusetts license plate that says 2het 40", - "id": 14592 - }, - { - "image_path": "/content/drive/MyDrive/combined/50dfdd602a07fd33.jpg", - "response": "a car with a license plate that says 71fbc", - "id": 14593 - }, - { - "image_path": "/content/drive/MyDrive/combined/33cff3fa3fc256bf.jpg", - "response": "a car with a virginia license plate that says \"say thnx\" on it", - "id": 14594 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed27d859252d29f.jpg", - "response": "A car with a Virginia license plate that says ZOM B18 on it.", - "id": 14595 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1ec03fd364fcdb.jpg", - "response": "The image features a car with a green back bumper. On the bumper plate, there is a white license plate with blue letters that read \"IM 4 HIM\". Below the plate, there is a blue rectangle with white borders. Inside the blue rectangle, there are white words that read \"He keeps his word\". There is also a silver Mercedes logo on the trunk of the car.", - "id": 14596 - }, - { - "image_path": "/content/drive/MyDrive/combined/4374a09d31427433.jpg", - "response": "A car with a California license plate that says \"Machins\" on it.", - "id": 14597 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c32f60d59b5e4d7.jpg", - "response": "A car with a Maine license plate that says 7378 MY.", - "id": 14598 - }, - { - "image_path": "/content/drive/MyDrive/combined/330ac77b36168d85.jpg", - "response": "The image features a white car with a license plate on the back. The license plate is a California plate and says \"NOV\" on it. The car is parked in front of a building.", - "id": 14599 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f506b123474513d.jpg", - "response": "A white license plate that says SMLE DR on it.", - "id": 14600 - }, - { - "image_path": "/content/drive/MyDrive/combined/43987cc5dea0bef8.jpg", - "response": "A close up of a blue car with a Virginia license plate that says ARRG M8E.", - "id": 14601 - }, - { - "image_path": "/content/drive/MyDrive/combined/3724b94349872972.jpg", - "response": "A car with a Park Subaru.com website on it.", - "id": 14602 - }, - { - "image_path": "/content/drive/MyDrive/combined/47e9544ec5af5a9e.jpg", - "response": "A close up of a car's license plate which has the letters DFH on it.", - "id": 14603 - }, - { - "image_path": "/content/drive/MyDrive/combined/435539125452f7dc.jpg", - "response": "A car with a political sticker on the back that says \"Obama Biden\" and a license plate that says \"Virginia Hotboyz\".", - "id": 14604 - }, - { - "image_path": "/content/drive/MyDrive/combined/4974ba324304c8a6.jpg", - "response": "A black Hyundai logo on the front of a car.", - "id": 14605 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d6b7b8d99aefe8d.jpg", - "response": "a yellow and black license plate that says virgin islands on it", - "id": 14606 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a4ad03ef0009d91.jpg", - "response": "a white car with a license plate that says my3kyds", - "id": 14607 - }, - { - "image_path": "/content/drive/MyDrive/combined/34648969fa39542f.jpg", - "response": "a red car with a license plate that says ZYXWVUT", - "id": 14608 - }, - { - "image_path": "/content/drive/MyDrive/combined/37616381b6157a76.jpg", - "response": "A DJ sitting in front of a laptop with a neon sign behind him.", - "id": 14609 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8d6ab28d3e93b2.jpg", - "response": "a car with a virginia license plate that says air wolf", - "id": 14610 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fe2eddb7c280885.jpg", - "response": "A car with a license plate that says I love 2 kite.", - "id": 14611 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f4bbcb2f5372006.jpg", - "response": "A black car with a license plate that says SAD AM 88.", - "id": 14612 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f87c44bfb929a95.jpg", - "response": "A car with a license plate that says \"FR KISS\" on the back.", - "id": 14613 - }, - { - "image_path": "/content/drive/MyDrive/combined/36e1293915bb2033.jpg", - "response": "A car with a license plate that says PINK FLOYD.", - "id": 14614 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e40fcde84677d90.jpg", - "response": "a close up of a car license plate that is white and blue", - "id": 14615 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ad072f6bd4ee7b.jpg", - "response": "The image shows a close up of a car's license plate. The car is silver and the license plate is for the state of Illinois. The plate has the letters \"LHOOQ\" on it and the number 1. The plate is attached to the car with two silver bolts.", - "id": 14616 - }, - { - "image_path": "/content/drive/MyDrive/combined/48271db95ff3670c.jpg", - "response": "A car with a license plate that says \"F*CK CALIFORNIA\" on the back.", - "id": 14617 - }, - { - "image_path": "/content/drive/MyDrive/combined/456a3b279192bf04.jpg", - "response": "A car with a license plate that says 713454 on it.", - "id": 14618 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6a942eb00245ba.jpg", - "response": "A large construction vehicle is parked in a field with a large bag of trash sitting next to it.", - "id": 14619 - }, - { - "image_path": "/content/drive/MyDrive/combined/12af0e9266b2bee9.jpg", - "response": "A busy street with people riding bikes and mopeds.", - "id": 14620 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b7fce3bf0471d14.jpg", - "response": "A small cart with a sign that says The Artwork Forge.", - "id": 14621 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bebbba0506d26f8.jpg", - "response": "A painting of a boat on the water.", - "id": 14622 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ca9313940ea6a41.jpg", - "response": "a red boat docked in the water", - "id": 14623 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9cfd577d3a0f1a.jpg", - "response": "A large crowd of people are gathered under a blue and white tent. In front of the tent, there is a large yellow and red flag that says Chirpros. A man is standing next to a black and white cooler.", - "id": 14624 - }, - { - "image_path": "/content/drive/MyDrive/combined/34753c6035559251.jpg", - "response": "A person wearing a white shirt with the word \"twit off\" written on it in blue.", - "id": 14625 - }, - { - "image_path": "/content/drive/MyDrive/combined/34c8e217d2f60a06.jpg", - "response": "The image shows a group of people sitting at desks in a computer lab. There are several chairs and desks arranged in rows, and people are sitting at each desk. They are all using computers, which are equipped with monitors, keyboards, and mice. The lab has a blue color scheme, with blue countertops and blue desks. The computers are all turned on and are being actively used by the people.", - "id": 14626 - }, - { - "image_path": "/content/drive/MyDrive/combined/36542d5202cd5fd4.jpg", - "response": "A baseball player holding a bat in front of a crowd.", - "id": 14627 - }, - { - "image_path": "/content/drive/MyDrive/combined/355968854a7a4f26.jpg", - "response": "A display case filled with various sports jerseys on a wall.", - "id": 14628 - }, - { - "image_path": "/content/drive/MyDrive/combined/36c47f4dac19e0ff.jpg", - "response": "The image depicts a baseball game in progress. A batter is standing in the batter's box, holding a baseball bat and preparing to swing at an incoming pitch. The catcher is positioned behind the batter, wearing a baseball glove and ready to catch the ball. The umpire is standing behind the catcher, observing the play closely. There are several other players on the field, some of them wearing baseball gloves and ready to respond to the play. The field has a grassy area and a dirt infield.", - "id": 14629 - }, - { - "image_path": "/content/drive/MyDrive/combined/3658ba6668c2255b.jpg", - "response": "a man with a white shirt on", - "id": 14630 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ae8c11a5eb13c1.jpg", - "response": "A baseball player is holding a bat on a field.", - "id": 14631 - }, - { - "image_path": "/content/drive/MyDrive/combined/3464d602af6f6fe8.jpg", - "response": "A man in a white jersey with the number 9 on the front.", - "id": 14632 - }, - { - "image_path": "/content/drive/MyDrive/combined/34e156c6bb74f3e2.jpg", - "response": "a baseball player catching a ball with his glove", - "id": 14633 - }, - { - "image_path": "/content/drive/MyDrive/combined/374620f297898e17.jpg", - "response": "a baseball player in a pin striped uniform with a yellow A on his shirt", - "id": 14634 - }, - { - "image_path": "/content/drive/MyDrive/combined/34a84dd94e8329b5.jpg", - "response": "Three men wearing pink and black shirts pose for a picture.", - "id": 14635 - }, - { - "image_path": "/content/drive/MyDrive/combined/37a027b26e41793f.jpg", - "response": "In the image two girls dressed as cheerleaders for the Vikings. They are standing on the field and holding blue and silver pom poms.", - "id": 14636 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b42153a39263e5.jpg", - "response": "The men are standing together for a picture.", - "id": 14637 - }, - { - "image_path": "/content/drive/MyDrive/combined/37885dc2a69d5d90.jpg", - "response": "A group of basketball players standing next to each other on a court.", - "id": 14638 - }, - { - "image_path": "/content/drive/MyDrive/combined/35bafa28b5686ac1.jpg", - "response": "The image shows a group of men standing on a baseball field. They are all wearing white baseball uniforms with the word \"SENSHI\" on the front. Some of the players are wearing black baseball caps. They are standing in a line on the field, looking in the same direction. In the background, there is a blue wall and a red banner with white writing. The players are also wearing baseball gloves.", - "id": 14639 - }, - { - "image_path": "/content/drive/MyDrive/combined/35de2bac76031ab7.jpg", - "response": "a person standing in a doorway wearing a red thing 1 shirt", - "id": 14640 - }, - { - "image_path": "/content/drive/MyDrive/combined/371dfcc841d80254.jpg", - "response": "wrestler with a arm injury holding a walking stick", - "id": 14641 - }, - { - "image_path": "/content/drive/MyDrive/combined/357f26253653c4b5.jpg", - "response": "A team photo of a basketball team from the 1980s. The team is wearing white jerseys with red lettering and red and white shorts. They are standing in front of a red wall.", - "id": 14642 - }, - { - "image_path": "/content/drive/MyDrive/combined/371c33028f1450a1.jpg", - "response": "four people standing in front of a white and red flag", - "id": 14643 - }, - { - "image_path": "/content/drive/MyDrive/combined/36c3f2e6d8463e29.jpg", - "response": "A woman wearing a blue and white top and blue shorts with a red sash around her waste.", - "id": 14644 - }, - { - "image_path": "/content/drive/MyDrive/combined/3507712c1488a3e2.jpg", - "response": "In the image, a male high school student is running on a track. He is wearing a white tank top with the words \" PALO ALTO \" written on it. He is also wearing green shorts and black shoes with white stripes. The student has a white buzz cut and is looking ahead, concentrating on his run. The track is a red track with white stripes and the student is running on it. There is a chain link fence behind the track and a white building in the background.", - "id": 14645 - }, - { - "image_path": "/content/drive/MyDrive/combined/34e29fc24b6b6189.jpg", - "response": "A group of people wearing red shirts are standing in a gym.", - "id": 14646 - }, - { - "image_path": "/content/drive/MyDrive/combined/3781d539d8f07f96.jpg", - "response": "The image shows a department store with clothing racks throughout the store. There are several mannequins dressed in various outfits, including a mannequin wearing a red and white Ohio State University jacket. The store has a shiny floor and bright lights.", - "id": 14647 - }, - { - "image_path": "/content/drive/MyDrive/combined/377a2f8e1322df30.jpg", - "response": "A man wearing a red shirt with the number 52 on it.", - "id": 14648 - }, - { - "image_path": "/content/drive/MyDrive/combined/34b66f31a246ada9.jpg", - "response": "A baseball player in a white and red uniform is running on the field. He is wearing a black helmet and red and white gloves. There is a baseball on the field and a black baseball bat leaning against a white base. There is a man in a black shirt and gray pants standing on the field.", - "id": 14649 - }, - { - "image_path": "/content/drive/MyDrive/combined/36714b339aaf9c61.jpg", - "response": "A group of men wearing baseball uniforms are standing on a field. They are holding baseball gloves and are talking to each other.", - "id": 14650 - }, - { - "image_path": "/content/drive/MyDrive/combined/35fac8dbe0425eae.jpg", - "response": "A man and two girls are sitting on the floor. The man is sitting behind the two girls. The girl in the middle has a painted face with white on her forehead and cheeks and black around her eyes. She is wearing a blue and red cheerleader outfit. The girl on the right is wearing a red and black costume with a hood.", - "id": 14651 - }, - { - "image_path": "/content/drive/MyDrive/combined/36616d6b2112ab1b.jpg", - "response": "A man wearing a blue shirt and blue shorts is running down the street.", - "id": 14652 - }, - { - "image_path": "/content/drive/MyDrive/combined/344f8045f92afb02.jpg", - "response": "The image shows two young men running on a red track. They are wearing athletic clothing and appear to be running a race. One of the runners is a man with a beard and white shirt, and the other is a man with a mustache and white tank top. They are both wearing shorts and are in the middle of the race. The man in the white shirt is wearing green shorts with a green and white logo on them. The man in the white tank top is wearing red shorts. They are both running on the right side of the track.", - "id": 14653 - }, - { - "image_path": "/content/drive/MyDrive/combined/34771dfd138c9840.jpg", - "response": "A judo match is taking place in a red and yellow ring. Two women are in the middle of the ring, one is on top of the other in a white and blue judo uniform with the number 88 on the back. The other woman is in a white judo uniform with a white headband. The one in the white and blue uniform is attempting to throw the other woman, who is standing on her knees with her arms out for balance.", - "id": 14654 - }, - { - "image_path": "/content/drive/MyDrive/combined/347142d606339a0b.jpg", - "response": "A soldier kneels down in front of a football player who has his head down.", - "id": 14655 - }, - { - "image_path": "/content/drive/MyDrive/combined/352d89e410ce4b1b.jpg", - "response": "In the image, there is a baseball game taking place on a field. On the field, there are three baseball players, one of which is attempting to steal a base. The player attempting to steal the base is wearing a blue shirt and gray pants. The other two players are wearing white and green uniforms. One of the players in the white and green uniforms is holding a baseball glove and is in the process of sliding into the base. Another player in the white and green uniform is holding a baseball bat. There is also a baseball glove on the field. In the background, there is a sign that says \"Jamestown Awning\" on a white wall.", - "id": 14656 - }, - { - "image_path": "/content/drive/MyDrive/combined/35079418cfb01df5.jpg", - "response": "a group of women wearing red and white uniforms with the word Boston on them", - "id": 14657 - }, - { - "image_path": "/content/drive/MyDrive/combined/365fe3b518a1d1f9.jpg", - "response": "A baseball player wearing a red, white and blue uniform with the number 11 on the back.", - "id": 14658 - }, - { - "image_path": "/content/drive/MyDrive/combined/357b6864a4f86ab4.jpg", - "response": "In the image, a baseball player is in the midst of a pitch, having just thrown the ball. The player is wearing a white baseball uniform and is standing on the pitcher's mound. The baseball is visible in the air, traveling towards the catcher. There are several other people in the scene, including a few players on the field and some spectators. The image also shows a fence, a palm tree, and a banner advertisement.", - "id": 14659 - }, - { - "image_path": "/content/drive/MyDrive/combined/34797238e7cb2996.jpg", - "response": "The image shows a baseball game in progress with a large crowd of people in the stands watching the action. There are players on the field wearing uniforms and holding baseball gloves. One player is running towards a base while another player stands nearby. A coach is also on the field, talking to one of the players. The stadium seats are green and the field is covered in grass.", - "id": 14660 - }, - { - "image_path": "/content/drive/MyDrive/combined/3720ed4607725cd5.jpg", - "response": "A graphic with a picture of a man in a red shirt and the words \"Frank Cammisa, Head Coach\" next to it.", - "id": 14661 - }, - { - "image_path": "/content/drive/MyDrive/combined/36e2cd0901704a6e.jpg", - "response": "A baseball player wearing a grey uniform with the letter \"A\" on it.", - "id": 14662 - }, - { - "image_path": "/content/drive/MyDrive/combined/36a0472303e64575.jpg", - "response": "A man and woman sitting next to each other at a baseball game.", - "id": 14663 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f0eb3179108a43.jpg", - "response": "An older man wearing a black Old Navy shirt and a green baseball cap is sitting in a green chair. He is holding a lit cigar in his left hand and a magazine in his right hand. There is a blanket on the chair behind him and a flag hanging on the wall behind the chair.", - "id": 14664 - }, - { - "image_path": "/content/drive/MyDrive/combined/34631d6bab0e23ee.jpg", - "response": "a man with a beard and a giants uniform on", - "id": 14665 - }, - { - "image_path": "/content/drive/MyDrive/combined/365ca90ec9938ae8.jpg", - "response": "a baseball player wearing a tan jersey is throwing a baseball on a field.", - "id": 14666 - }, - { - "image_path": "/content/drive/MyDrive/combined/37558d272f30493f.jpg", - "response": "A baseball player holding a bat in the air.", - "id": 14667 - }, - { - "image_path": "/content/drive/MyDrive/combined/36dfc11f073e2df2.jpg", - "response": "A baseball player wearing a blue and white uniform runs across the field.", - "id": 14668 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad69679546f55c1.jpg", - "response": "A baseball player wearing a grey uniform with the number 24 on the back is walking across the field. He is holding a baseball bat behind his back.", - "id": 14669 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b86f222587c00db.jpg", - "response": "A baseball player and a coach walking on the field.", - "id": 14670 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aa32bad16fa5724.jpg", - "response": "A couple of men standing on a soccer field.", - "id": 14671 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad3753dd648d1d6.jpg", - "response": "A baseball game is in progress on a field. There is a batter at home plate, holding a bat and preparing to swing. The pitcher is in the middle of throwing the ball. There are several other players on the field, including those in the outfield and those positioned around the bases. In the background, there are some trees.", - "id": 14672 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c63780fa70277a5.jpg", - "response": "A group of four people are standing near a small pond. They are all holding up blue and white signs with a goose on it. The people are wearing white shirts and the woman on the right is wearing jeans. The man in the middle is also wearing a green hat.", - "id": 14673 - }, - { - "image_path": "/content/drive/MyDrive/combined/393a96559f7046e8.jpg", - "response": "An image of three football players standing on the field.", - "id": 14674 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cdf4babeabb96c4.jpg", - "response": "a baseball player in a white and blue uniform is throwing a ball", - "id": 14675 - }, - { - "image_path": "/content/drive/MyDrive/combined/3abf146640bb1936.jpg", - "response": "A baseball player standing on a field.", - "id": 14676 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c5da59852fcad8b.jpg", - "response": "a runner in a green shirt and black shorts running on a trail", - "id": 14677 - }, - { - "image_path": "/content/drive/MyDrive/combined/38dcc717950fc2a1.jpg", - "response": "A baseball player walking on the field with a bat.", - "id": 14678 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c10efdb0f88fb53.jpg", - "response": "A group of people are sitting around a table with food and drinks. They are wearing paper crowns on their heads.", - "id": 14679 - }, - { - "image_path": "/content/drive/MyDrive/combined/394932daa95bad63.jpg", - "response": "A group of men standing on a baseball field, dressed in their uniforms. Some of them are wearing numbers on the back of their shirts. They are talking to a group of umpires, who are also standing on the field. The men are dressed in red, white, and yellow uniforms.", - "id": 14680 - }, - { - "image_path": "/content/drive/MyDrive/combined/3926535f5bc5b47c.jpg", - "response": "The image features a baseball field with a group of people standing on it. There is a man holding a plaque, standing next to another man who is wearing a suit. A third man, who is wearing a suit and tie, is standing behind them. The two men standing next to each other are wearing baseball uniforms.", - "id": 14681 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ca63ec0db2f5762.jpg", - "response": "A woman in a blue shirt with the name N. Pushpasheva on it.", - "id": 14682 - }, - { - "image_path": "/content/drive/MyDrive/combined/385a4c927fd2e068.jpg", - "response": "A collage of a baseball player in a red jersey and white pants in various pitching positions.", - "id": 14683 - }, - { - "image_path": "/content/drive/MyDrive/combined/3806628c6edef636.jpg", - "response": "A baseball player in a white and blue uniform is in the process of striking the ball. The player has just hit the ball and is in the process of dropping the bat and starting to run. The baseball bat can be seen lying on the ground near the home plate. There are several other people in the scene, including a catcher and an umpire, but they are not the main focus of the image. The game is being played on a baseball field with grass and dirt.", - "id": 14684 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a9aa553fed34fb4.jpg", - "response": "A young boy dressed in a baseball uniform and wearing a baseball glove, is crouching in the grass.", - "id": 14685 - }, - { - "image_path": "/content/drive/MyDrive/combined/3868d6feabb45368.jpg", - "response": "A baseball player in a red jersey is standing on the pitcher's mound. He is wearing a catcher's mitt and appears to be winding up for a pitch. The baseball field is filled with players and spectators, who are watching the game intently. The crowd is made up of many different people, and some are holding cups and eating food. The image captures a moment in the game, with the pitcher about to throw the ball.", - "id": 14686 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a8011dbbf5eebcf.jpg", - "response": "A blue and white shirt with the word Pilsener on the chest.", - "id": 14687 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b60982a97304bf.jpg", - "response": "The image shows a basketball game in progress. A player in a white uniform is in the air, holding a basketball and is about to shoot it. Another player in a blue uniform is attempting to block the shot. There are several other people in the scene, including players and spectators. The game is taking place on a basketball court, and the players are wearing basketball shoes.", - "id": 14688 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9a522e98c578bd.jpg", - "response": "In the image, there is a young baseball player standing in the outfield. The player is wearing a green jersey and a red hat. The player is also wearing a catcher's mitt on their left hand. The grass is green and lush, and there are some white flowers scattered around the field.", - "id": 14689 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ab1fc89161f1fc3.jpg", - "response": "The man is running on a blue mat.", - "id": 14690 - }, - { - "image_path": "/content/drive/MyDrive/combined/387a1a89718cc40e.jpg", - "response": "a baseball player sliding into a base", - "id": 14691 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a0a1188183c48bf.jpg", - "response": "a group of football fans wearing blue and white football jerseys with different numbers on them", - "id": 14692 - }, - { - "image_path": "/content/drive/MyDrive/combined/3af363a27e73f9b8.jpg", - "response": "A soccer ball on a jersey.", - "id": 14693 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b436b3de9fbc7b1.jpg", - "response": "a man in a white jersey is holding a basketball", - "id": 14694 - }, - { - "image_path": "/content/drive/MyDrive/combined/38374e2716964eb8.jpg", - "response": "Women in red and black soccer uniforms are celebrating a goal.", - "id": 14695 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd698fbb57028c2.jpg", - "response": "A baby wearing a shirt that says \"little dude\" is being fed from a bottle.", - "id": 14696 - }, - { - "image_path": "/content/drive/MyDrive/combined/38516e3e472d3a3a.jpg", - "response": "A man standing next to a trophy in front of a sign.", - "id": 14697 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a41589d39c02d31.jpg", - "response": "A group of three women laying on the ground with their belongings around them.", - "id": 14698 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb78dafd48fb066.jpg", - "response": "A man wearing a blue shirt that says \"vetera\" on it.", - "id": 14699 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bbba5039caf62d2.jpg", - "response": "Baseball players in white and green uniforms standing on the field.", - "id": 14700 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c51f79b3ad5847a.jpg", - "response": "A pitcher in a blue jersey is throwing a baseball on a field.", - "id": 14701 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b8ad620d0c718e9.jpg", - "response": "A man in a suit is holding a white soccer jersey with the name Selanne on it and the number 8.", - "id": 14702 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a9007e343523d25.jpg", - "response": "A woman with short hair holding a large bag with the UFC logo on it.", - "id": 14703 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a97697129b563b9.jpg", - "response": "A man in a white gi sits cross-legged on the floor in front of a mirror.", - "id": 14704 - }, - { - "image_path": "/content/drive/MyDrive/combined/39478eed4e70d4f2.jpg", - "response": "A baseball player swinging a bat over home plate during a game.", - "id": 14705 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a4151b85cedd7db.jpg", - "response": "A soccer game is being played on a field. There are 11 players(14,175),(239,987)(218,151),(498,843)(872,182),(998,943)(550,101),(809,985) on the field, with some players from both teams standing around the center of the field and others scattered around the field. One player is lying on the ground with his arms outstretched, possibly injured. Another player is standing with his hands on his hips, possibly a referee.", - "id": 14706 - }, - { - "image_path": "/content/drive/MyDrive/combined/3adb10f056697e7d.jpg", - "response": "a baby crawling on the floor in a room", - "id": 14707 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6bd1441e8b0483.jpg", - "response": "A baseball game in progress with a runner on first base and a baseball player holding a mitt.", - "id": 14708 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c2b29f90677d35b.jpg", - "response": "A baseball card of Cal Ripken Jr. is shown in a plastic holder. The card is black and red and says \"Game Changers\" in red. The player's name is written in white. He is holding a baseball bat and is wearing a helmet and a white baseball uniform.", - "id": 14709 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a2fc45f2fb9146e.jpg", - "response": "A baseball game is being played on a field. There is a player standing on the pitcher's mound, holding a baseball glove. Another player is standing in the outfield. There are a few people in the stands, and a bench is visible in the background.", - "id": 14710 - }, - { - "image_path": "/content/drive/MyDrive/combined/3affae9f407fcea6.jpg", - "response": "A man wearing a black and white striped shirt with the word Adidas on the left side of the shirt.", - "id": 14711 - }, - { - "image_path": "/content/drive/MyDrive/combined/38e5eed8f457a8c3.jpg", - "response": "a man with a red and white shirt on", - "id": 14712 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bbe1b5b1367a701.jpg", - "response": "A man standing in a room with a poster of Michael Jordan on the wall.", - "id": 14713 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b6cd95d83e3379.jpg", - "response": "A man with a painted face, wearing a red shirt and a red and yellow wig, stands with his arms crossed in front of a car.", - "id": 14714 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cf85383800246da.jpg", - "response": "The image features a group of young boys and a man standing on a soccer field. They are all holding a banner with the number 3 on it. The group is posing for a photo in front of a large crowd. The crowd is made up of many people and they are all watching the boys and the man. There is a soccer ball located in the bottom left corner of the image and a trophy located in the top left corner.", - "id": 14715 - }, - { - "image_path": "/content/drive/MyDrive/combined/392bc43bcbe29356.jpg", - "response": "In the image, there is a man wearing a blue ribbon around his neck. He is also holding a medal in his hand. The man appears to be proud of his achievement.", - "id": 14716 - }, - { - "image_path": "/content/drive/MyDrive/combined/3af31e56246018e2.jpg", - "response": "The image shows two women standing outside, both wearing blue shirts. One woman is wearing a purple hat and holding a clipboard, while the other woman is carrying a black bag with a strap.", - "id": 14717 - }, - { - "image_path": "/content/drive/MyDrive/combined/38e6457822ad8824.jpg", - "response": "A man and a woman standing next to each other.", - "id": 14718 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a90de1e7776bdc7.jpg", - "response": "The image features a soccer field with a group of men standing on it. There are several people wearing soccer uniforms and cleats. One man is wearing a white shirt with purple stripes and has tattoos on his arm. Another man is wearing a blue shirt with the number 8 on it. There is a crowd of people in the background watching the game.", - "id": 14719 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ba7d206327f9630.jpg", - "response": "A group of baseball players are celebrating on the field. They are all wearing red and white uniforms and have their hands in the air. One of the players is holding a baseball bat.", - "id": 14720 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c73a4e7e3f0159b.jpg", - "response": "A man standing on top of a sign with three women dressed as stewardesses.", - "id": 14721 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c7095cc63f1916f.jpg", - "response": "The image shows three men standing next to each other, wearing medals around their necks. The man on the left is wearing a black shirt and a hat with the number 5 on it. The man in the middle is wearing a black shirt with the number 431 on it. The man on the right is wearing a grey sweatshirt with the word \"Purdue\" on it. They all have medals with ribbons around their necks.", - "id": 14722 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a009c3f00298ffa.jpg", - "response": "The image features a football player standing on the grass holding a football helmet. The player is wearing a white jersey with the number 87 on the back. Another person is visible in the background, wearing a hat and a white shirt. The sky is blue and there are some clouds in the distance.", - "id": 14723 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a7494ee60932fd8.jpg", - "response": "A baseball game is in action on a field. There is a batter up to plate, holding a baseball bat, and waiting for the pitch. A catcher is positioned behind the batter, and an umpire is standing behind the catcher. There are several other players on the field, ready to react to the play.", - "id": 14724 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c570608f258bcfd.jpg", - "response": "A male with black hair wearing a blue shirt that has two pencils on it.", - "id": 14725 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a496674df6dee5b.jpg", - "response": "A group of women sitting on chairs, two of them holding a soccer ball.", - "id": 14726 - }, - { - "image_path": "/content/drive/MyDrive/combined/394c647ebc180f20.jpg", - "response": "A baseball game is in progress with a batter up to plate. The catcher is squatting behind the batter, and the umpire is standing behind the catcher. There are multiple players on the field in various positions, and the stadium is filled with people watching the game.", - "id": 14727 - }, - { - "image_path": "/content/drive/MyDrive/combined/3861b08570259f6a.jpg", - "response": "a man wearing a purple and yellow jacket", - "id": 14728 - }, - { - "image_path": "/content/drive/MyDrive/combined/3adfc0cba1c94fdd.jpg", - "response": "The image features a baseball jersey on display in a glass case. The jersey is a New York Yankees jersey and is displayed behind a glass panel. The jersey is white with thin black stripes and has the number 7 on the back. The case is located in a museum setting.", - "id": 14729 - }, - { - "image_path": "/content/drive/MyDrive/combined/3958a571de145393.jpg", - "response": "A group of women running on a track.", - "id": 14730 - }, - { - "image_path": "/content/drive/MyDrive/combined/3886e114ec446b9b.jpg", - "response": "A basketball player in a red and white uniform with the number 55 is trying to block a shot by a player in a brown uniform.", - "id": 14731 - }, - { - "image_path": "/content/drive/MyDrive/combined/380b31326b58d069.jpg", - "response": "a cartoon link from zelda holding a sign that says \"dude, i'm not zelda\"", - "id": 14732 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b76d9222243acf5.jpg", - "response": " a football player(330,85),(794,997) in a red jersey(332,364),(793,999)", - "id": 14733 - }, - { - "image_path": "/content/drive/MyDrive/combined/396b80f7e73d37b2.jpg", - "response": "The cover of a magazine called \"Nail Art Gallery\" with a woman holding a pair of sunglasses up to her face. Her nails are painted with a red, white, and blue design.", - "id": 14734 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ddefe83be9cb3a8.jpg", - "response": "a man wearing a blue sweater and a collared shirt is sitting at a table.", - "id": 14735 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee09339feceef66.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 14736 - }, - { - "image_path": "/content/drive/MyDrive/combined/40f685da23307f28.jpg", - "response": "A young man wearing a burgundy hoodie with the word Iona on it.", - "id": 14737 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dccd6bac3c95422.jpg", - "response": "In the image, two men are standing on a soccer field, both wearing soccer uniforms. One man is wearing a black and red uniform with the number 10 on the shirt and a blue and white logo on the left sleeve. The other man is wearing a white uniform with the number 6 on the shirt and a blue and white logo on the right sleeve. They are facing each other and appear to be having a discussion or argument.", - "id": 14738 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dff2d7f20513b62.jpg", - "response": "A woman in a blue tank top running in a race.", - "id": 14739 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f3225ec1ed3cc69.jpg", - "response": "An older woman wearing a black suit poses with a young man wearing a beige jersey with the number 7 on it and a blue and white medal around his neck.", - "id": 14740 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de8308fc11a950e.jpg", - "response": "a brown and white sign that says Historic Oregon Route 30", - "id": 14741 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dcaaf9653eb1a5e.jpg", - "response": "The Philadelphia Phillies' first baseman, Ryan Howard, tags out the Washington Nationals' outfielder, Bryce Harper, at first base during the fifth inning of a baseball game, Tuesday, April 22, 2014, in Washington. Harper was trying to stretch a single into a double. (AP Photo/Alex Brandon", - "id": 14742 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f556e94f6e542ec.jpg", - "response": "A man wearing a blue baseball jersey with the number 21 on the back.", - "id": 14743 - }, - { - "image_path": "/content/drive/MyDrive/combined/3edd3686a2197a2d.jpg", - "response": "A clothing store called Bruce Pee with a display of shirts and ties outside.", - "id": 14744 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e65a85e4a36730d.jpg", - "response": "The image shows two baseball players standing on a grass field. One player is closer to the foreground and is facing the other direction, wearing a blue hat and a white jersey with the number 13 on the back. The other player is further back in the field and is also wearing a blue hat and a white jersey. Both players are wearing baseball gloves.", - "id": 14745 - }, - { - "image_path": "/content/drive/MyDrive/combined/4149ed106f03e213.jpg", - "response": "A baseball player wearing a white jersey with the number 51 on the back. He is sitting on a green rail and leaning on a fence.", - "id": 14746 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e70cdd61997ad74.jpg", - "response": "A baseball player for the Toronto Blue Jays is standing at home plate, holding a bat. He is wearing a blue jersey and white pants. There is a catcher standing behind him, wearing a gray uniform. The umpire is standing behind the catcher, wearing a black shirt and gray pants. He is holding a baseball glove. There is a crowd of people in the stands, watching the game.", - "id": 14747 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f2580857d8f9b51.jpg", - "response": "a pitcher on the mound getting ready to throw a ball", - "id": 14748 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fb5a7b5d636f46d.jpg", - "response": "In the image, two soccer players are on the field, one wearing blue and the other wearing white. They are running after a soccer ball. There are several people watching the game from the stands, and some of them are holding umbrellas. The stands are not full, and there are a few chairs and benches visible.", - "id": 14749 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e3af89ca07739d1.jpg", - "response": "A large crowd of fans have gathered in the street to celebrate the Boston Red Sox 2018 World Series victory. They are holding up red and blue \"Champions\" banners and many of them are wearing Red Sox jerseys. Some of the fans are holding up a \"C\" and \"B\" signs. The fans are standing in front of a row of buildings and there is a bus in the background.", - "id": 14750 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f881b19dca7117e.jpg", - "response": "A man wearing a white shirt covered in graffiti.", - "id": 14751 - }, - { - "image_path": "/content/drive/MyDrive/combined/409fed605c6f6f5c.jpg", - "response": "A baseball pitcher in a white and red uniform, standing on the pitcher's mound and winding up to throw a pitch.", - "id": 14752 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dc05af201d5ade8.jpg", - "response": "This is a head and shoulder shot of a man wearing an orange and white shirt with the number 17 on it. He has a bald spot on the top of his head and brown eyes.", - "id": 14753 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee18a1192f1b238.jpg", - "response": "The image features a group of men sitting at a table with a banner in the background that says \"Campeoes Futbol Team\". There are several bottles of water on the table and a wine glass. The men are smiling for the camera.", - "id": 14754 - }, - { - "image_path": "/content/drive/MyDrive/combined/4031f2dc56bf2d77.jpg", - "response": "This is a cream jersey with yellow and blue trim. The cream jersey has the word Brewers on the front in yellow and blue. The number 44 is on the front in blue. The jersey has a yellow collar.", - "id": 14755 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec93947758e3435.jpg", - "response": "A group of people crossing the street at a crosswalk. Some of them are jogging, while others are walking. There are cars and a bicycle on the street.", - "id": 14756 - }, - { - "image_path": "/content/drive/MyDrive/combined/40ba7d06dba71c48.jpg", - "response": "In the image, a soccer player is walking across the field while holding a red flag. He is wearing a red jersey and white shorts. The soccer field has a green grass surface and the player is positioned in the middle of the field.", - "id": 14757 - }, - { - "image_path": "/content/drive/MyDrive/combined/414185aeb0962508.jpg", - "response": "Two men standing on a football field wearing jerseys.", - "id": 14758 - }, - { - "image_path": "/content/drive/MyDrive/combined/40cc22518324f1f8.jpg", - "response": "In the image, there is a small child sitting on a wooden bench. The bench is placed in a park with green grass and trees. The child is wearing a white shirt and blue shorts with red and white stripes. The child is also wearing a white sock with a blue star on it. The bench is painted yellow and is made of wood.", - "id": 14759 - }, - { - "image_path": "/content/drive/MyDrive/combined/408653ab0a1b36bb.jpg", - "response": "A baseball game in progress with a batter up to plate and the pitcher winding up to throw the ball.", - "id": 14760 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee92b4ab8eb7db0.jpg", - "response": "a young boy wearing a black shirt with yellow stripes on it", - "id": 14761 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eb46fdf7959dde6.jpg", - "response": "A group of people, including children and adults, are standing on a soccer field. They are wearing soccer uniforms and are likely part of a soccer team. Some of the people are holding soccer balls.", - "id": 14762 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f27e5058d6c253b.jpg", - "response": "A group of people are standing around a table. Some of them are wearing blue jerseys with numbers on the back. One man is wearing a Bozzuto jersey, another man is wearing a brown shirt. There are cups on the table and a bottle on the floor.", - "id": 14763 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec507dcada0395a.jpg", - "response": "A baseball player wearing a green and white uniform is walking on the field.", - "id": 14764 - }, - { - "image_path": "/content/drive/MyDrive/combined/4114db297cdef0e8.jpg", - "response": "a man with tattoos on his chest and arms", - "id": 14765 - }, - { - "image_path": "/content/drive/MyDrive/combined/4008e555074106af.jpg", - "response": "A baseball player is in the process of throwing a ball.", - "id": 14766 - }, - { - "image_path": "/content/drive/MyDrive/combined/4065f16e680434d2.jpg", - "response": "The image shows a basketball game in progress. Players are on the court, some standing and some in position. A basketball is visible in the air, and one player has his hands up as if trying to block it. There is a crowd of people in the stands, watching the game. The court has advertisements on it, including one for KIA Motors.", - "id": 14767 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d6846a1ff28bbb7.jpg", - "response": "A jersey with the name Costa and the number 88 on it.", - "id": 14768 - }, - { - "image_path": "/content/drive/MyDrive/combined/3effe9bc7ae04950.jpg", - "response": "An older couple dances together. The man is wearing a black shirt with the number 53 on it and the woman has black hair and is wearing a purple shirt. They are dancing close together and the woman has her hands on the man's back.", - "id": 14769 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f30a7ef1ab5200a.jpg", - "response": "a reflection of a building in a window with the number 106 above it", - "id": 14770 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f034e3d57ad202e.jpg", - "response": "A baseball team standing in the dugout.", - "id": 14771 - }, - { - "image_path": "/content/drive/MyDrive/combined/4053d0ebd0afaa36.jpg", - "response": "A group of baseball players standing next to each other.", - "id": 14772 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec0a2b12536baf6.jpg", - "response": "A soccer player wearing a yellow shirt is standing on the field.", - "id": 14773 - }, - { - "image_path": "/content/drive/MyDrive/combined/4144c86910a10ac8.jpg", - "response": "a group of people running in a race", - "id": 14774 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d5709a0997066a7.jpg", - "response": "The image shows two baseball players standing on a grass field. One player is positioned in the lower left corner of the field, wearing a white and grey baseball uniform with the number twenty on the back. The player is holding a baseball glove. The other player is positioned in the upper right corner of the field, wearing a white and black baseball uniform. There is a baseball flying through the air, located in the middle of the field.", - "id": 14775 - }, - { - "image_path": "/content/drive/MyDrive/combined/4094e49638350ee3.jpg", - "response": "A group of people walking through a dark tunnel.", - "id": 14776 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e38723249c20e79.jpg", - "response": "a young boy laying on the floor wearing a white shirt with a red logo on it", - "id": 14777 - }, - { - "image_path": "/content/drive/MyDrive/combined/40b8837e422e0ea5.jpg", - "response": "The image shows a group of cheerleaders standing on a basketball court. They are all holding up signs that say \"Let's Go Princeton\" and \"Princeton\" in orange lettering. The cheerleaders are wearing black and orange uniforms. Some of them are also holding up orange and black pom-poms. The signs are held up by a white metal bar above the cheerleaders.", - "id": 14778 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f23882a7409e077.jpg", - "response": "a man standing in front of a large painting of a woman sitting on a wall", - "id": 14779 - }, - { - "image_path": "/content/drive/MyDrive/combined/3db83c416c02dc8b.jpg", - "response": "A man with spiky hair standing wearing a black shirt with the word oh on it.", - "id": 14780 - }, - { - "image_path": "/content/drive/MyDrive/combined/41436ea62781b483.jpg", - "response": "In the image, two men are in a boxing ring, dressed in athletic wear and boxing gloves. One man is in a red outfit with a white stripe, and the other is wearing a black and yellow outfit. They are both standing in the ring, and the man in the red outfit is in the middle of a punch.", - "id": 14781 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fd1a33ce4fff0c4.jpg", - "response": "A little boy wearing a blue jacket with a yellow F on it.", - "id": 14782 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f3391ba03b8308e.jpg", - "response": "A man standing in front of a projector screen giving a lecture.", - "id": 14783 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee29d8a749379e7.jpg", - "response": "a group of people walking down a road", - "id": 14784 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2897ecd3e0bcbf.jpg", - "response": "a pitcher on the mound getting ready to throw a ball", - "id": 14785 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e1dfc1dedc852f3.jpg", - "response": "In the image, a soccer player wearing a white uniform and yellow shoes is running after a soccer ball. The soccer ball is located towards the right side of the image, and the player is running from the left side. The soccer field is a lush green color.", - "id": 14786 - }, - { - "image_path": "/content/drive/MyDrive/combined/40075f98e66f4370.jpg", - "response": "A baseball player slides into the base while another player stands nearby.", - "id": 14787 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e86514c1651ee13.jpg", - "response": "a group of people standing around a man running", - "id": 14788 - }, - { - "image_path": "/content/drive/MyDrive/combined/3da54dfdb11cf8ae.jpg", - "response": "A man wearing a yellow shirt and blue shorts standing in a garage.", - "id": 14789 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fe1e634f87c8ef1.jpg", - "response": "A group of cheerleaders standing on the court.", - "id": 14790 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d5df06bab3a7303.jpg", - "response": "In the image, there is a woman standing on a stage with a microphone in front of her. She is wearing a brown shirt and blue jeans. The woman has her hands clasped together and appears to be focused on something to her left. Behind the woman, there is a curtain that is a deep blue color. There are also some metal beams visible in the background.", - "id": 14791 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dabb71e3e6f977f.jpg", - "response": "A baseball team is warming up before a game. There are five players on the field, with one of them stretching his legs. They are all wearing baseball uniforms and are standing on the grass.", - "id": 14792 - }, - { - "image_path": "/content/drive/MyDrive/combined/3db3be6c3b0a18e8.jpg", - "response": "a basketball player in a white jersey with the number 15 on the back", - "id": 14793 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f29c81295834db8.jpg", - "response": "In the image, there is a man standing next to a wall with his hands on his hips. He is wearing a black and yellow triathlon suit and has a white number 5 on his torso. The man appears to be in a triathlon outfit, ready for the race.", - "id": 14794 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d2b6cc9d3fc2e08.jpg", - "response": "A banner for Harry Potter is hanging on a fence.", - "id": 14795 - }, - { - "image_path": "/content/drive/MyDrive/combined/41037743c909793d.jpg", - "response": "A baseball stadium with a wall that has several posters of baseball players on it.", - "id": 14796 - }, - { - "image_path": "/content/drive/MyDrive/combined/40de5c2037c48556.jpg", - "response": "A man with a mustache and goatee wearing a white and blue shirt with a lanyard around his neck.", - "id": 14797 - }, - { - "image_path": "/content/drive/MyDrive/combined/407695b9603bc427.jpg", - "response": "A baseball game in progress with a runner sliding into the base and a player catching the ball.", - "id": 14798 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d27ed4334548acc.jpg", - "response": "In the image, a man is standing on a grass soccer field. He is wearing a red and white soccer uniform and has a red soccer ball at his feet. The man has a pen in his pocket and is wearing a white shirt. The background shows a few people watching the man play soccer.", - "id": 14799 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d7496edc29ad714.jpg", - "response": "A man in a football uniform is standing in the street.", - "id": 14800 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ff51c29c8072953.jpg", - "response": "The image shows a baseball team posing for a group photo on a baseball field. The team members are wearing white and blue uniforms and are standing together, some in the foreground and others in the background. They are all looking at the camera and smiling.", - "id": 14801 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f7c4a74132ff73f.jpg", - "response": "A man and woman standing in front of a sign at a baseball stadium.", - "id": 14802 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ef11dbd74082c4c.jpg", - "response": "A man in a white shirt and blue shorts playing soccer.", - "id": 14803 - }, - { - "image_path": "/content/drive/MyDrive/combined/41dc483646dacce7.jpg", - "response": "A cheerleader for the Bears in a blue and silver cheerleading outfit with pom poms.", - "id": 14804 - }, - { - "image_path": "/content/drive/MyDrive/combined/45574ae907a30c35.jpg", - "response": "In the image, a woman is running on a track. She is wearing a green and white outfit and has dark hair. She is sprinting down the track, which has a red surface and white lines. There is a traffic light visible in the background, and a person is standing in the far right corner. Another person is standing further back, and there are two more people standing in the far left corner.", - "id": 14805 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f3f065c7c24518.jpg", - "response": "The image shows two men sitting on the floor in a room. They are both barefoot and appear to be laughing. One man is wearing a black shirt with a red design on it, and the other is in a grayish-green shirt.", - "id": 14806 - }, - { - "image_path": "/content/drive/MyDrive/combined/448b3fafe8420d6e.jpg", - "response": "A baseball player standing on the field with a bat.", - "id": 14807 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c9c7e6e05f97f5.jpg", - "response": "The image is a collage of two movie posters.", - "id": 14808 - }, - { - "image_path": "/content/drive/MyDrive/combined/4189a0365779d838.jpg", - "response": "A man in a black and gold football uniform is doing sit ups in front of a soldier.", - "id": 14809 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f405e4cec6a454.jpg", - "response": "A man wearing a blue and white striped jersey is holding a gold and black field hockey stick.", - "id": 14810 - }, - { - "image_path": "/content/drive/MyDrive/combined/44aae01a19f513bc.jpg", - "response": "A baseball player in a blue jersey and white pants is winding up to pitch a ball. He is wearing a baseball glove and a blue hat. He is standing on a baseball field and there is a wall behind him.", - "id": 14811 - }, - { - "image_path": "/content/drive/MyDrive/combined/42060484e0970279.jpg", - "response": " Hudson's Katelyn Falgowski(251,60),(804,973) (17) celebrates her goal with teammate Sam Wigness(72,162),(505,961) (4) during the first half of the Hudson at Solon girls high school soccer game on Tuesday, August 26, 2014.", - "id": 14812 - }, - { - "image_path": "/content/drive/MyDrive/combined/451d677faf8de2ff.jpg", - "response": "In the image, two baseball players are in action on the field. One player, wearing a San Francisco Giants uniform, is attempting to catch a ball while the other player, wearing a white uniform, is sliding into the base. The scene takes place on a baseball field with a green grass infield and brown dirt bases. The players are wearing baseball gloves and helmets for protection.", - "id": 14813 - }, - { - "image_path": "/content/drive/MyDrive/combined/450fe54d305ab367.jpg", - "response": "A baseball pitcher in a white and black uniform standing on the mound.", - "id": 14814 - }, - { - "image_path": "/content/drive/MyDrive/combined/416735f0c7dda0f4.jpg", - "response": "The cheerleaders of Othello High School cheer on their football team as the sun sets.", - "id": 14815 - }, - { - "image_path": "/content/drive/MyDrive/combined/45288ab481498b3c.jpg", - "response": "A young man hitting a ping pong ball with a paddle.", - "id": 14816 - }, - { - "image_path": "/content/drive/MyDrive/combined/45033e52b4029803.jpg", - "response": "The image shows a softball game in progress. There are two teams of players on the field, dressed in their respective team uniforms. One of the players is holding a baseball bat and is in the process of swinging at a ball. Another player is holding a baseball glove, and there are several other gloves scattered around the field. The players are standing on a dirt field, and some of them are wearing cleats.", - "id": 14817 - }, - { - "image_path": "/content/drive/MyDrive/combined/432c8d4a20614022.jpg", - "response": "In the image, a baseball player is on the field, wearing a blue and white uniform and a blue hat. He is standing near a base and is in the process of catching a ball. The ball is in the air and appears to be close to the ground. The player is also wearing a catcher's mitt.", - "id": 14818 - }, - { - "image_path": "/content/drive/MyDrive/combined/43a13db82f758f3e.jpg", - "response": "The image shows a baseball game in progress on a field with green grass and brown dirt. There are several players on the field, some of whom are wearing white uniforms and others are wearing gray uniforms. One player is seen running towards a base while others are scattered across the field. A baseball glove is visible in the scene as well. The game is being played in front of a crowd of people who are watching the action unfold.", - "id": 14819 - }, - { - "image_path": "/content/drive/MyDrive/combined/41df32e563b8dcaf.jpg", - "response": "a group of people standing on a stage", - "id": 14820 - }, - { - "image_path": "/content/drive/MyDrive/combined/449195b2d3005200.jpg", - "response": "In the image, two men are engaged in a wrestling match in front of a crowd of people. The men are wearing wrestling singlets and are in the middle of a match. One man is attempting to throw the other man over his shoulder.", - "id": 14821 - }, - { - "image_path": "/content/drive/MyDrive/combined/45e75de047953183.jpg", - "response": "a blue shirt with a white logo on it", - "id": 14822 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e65899e45525fc.jpg", - "response": "In the image, there is a marching band wearing red uniforms and white helmets. They are standing on a track and holding brass instruments.", - "id": 14823 - }, - { - "image_path": "/content/drive/MyDrive/combined/419158c0eb20ca8c.jpg", - "response": "In the image, there are two boys standing next to each other. They are both wearing matching red shirts and have matching lanyards around their necks. The two boys are of similar height and have short black hair. The left most boy is slightly older and is looking at the camera. The right most boy is looking away from the camera and has a faint smile on his face.", - "id": 14824 - }, - { - "image_path": "/content/drive/MyDrive/combined/44cb767484428d30.jpg", - "response": "In the image, three men are posing for a photo in front of a screen displaying a map. The man on the left is wearing a uniform and a hat with the word Vezcaltitl\u00e1n on it. The man in the middle is wearing an apron with the letters BB on it and a red shirt. The man on the right is wearing a striped shirt.", - "id": 14825 - }, - { - "image_path": "/content/drive/MyDrive/combined/42438ea807df291b.jpg", - "response": "a group of people walking down the street with balloons", - "id": 14826 - }, - { - "image_path": "/content/drive/MyDrive/combined/44878232e79c9f8d.jpg", - "response": "The image shows a group of people running in a race. There are at least 12 people in the scene, with some running on the street and others running on a sidewalk. They are all wearing athletic gear and appear to be in the midst of a competitive race.", - "id": 14827 - }, - { - "image_path": "/content/drive/MyDrive/combined/45581df7d075ef50.jpg", - "response": "In the image, a group of people are standing in front of a blue curtain. They are all wearing different colored shirts, and some of them have on Solo jerseys. The people are posing for a picture with their hands in the air, and some of them have on USA soccer jerseys.", - "id": 14828 - }, - { - "image_path": "/content/drive/MyDrive/combined/4466c0f60a434b36.jpg", - "response": "a high school senior boy wearing a white jersey with the word Hartburg on it, he is holding a basketball.", - "id": 14829 - }, - { - "image_path": "/content/drive/MyDrive/combined/4573939a7a303c89.jpg", - "response": "A store display of Red Sox merchandise, including a display of Red Sox jerseys.", - "id": 14830 - }, - { - "image_path": "/content/drive/MyDrive/combined/41ee3eb636805b6f.jpg", - "response": "A poster of the San Francisco Giants baseball team is attached to a bicycle.", - "id": 14831 - }, - { - "image_path": "/content/drive/MyDrive/combined/44afe33aedb3597b.jpg", - "response": "The image shows a group of men standing together in a room. They are all wearing blue and red uniforms and are holding various sports equipment, including hockey sticks and a baseball glove. Some of the men are also wearing helmets. The room has a net and a bench in the background.", - "id": 14832 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c71aa24ed7835a.jpg", - "response": "A man and woman are standing next to a display case that has a large silver football inside. The woman is wearing a blue and green suit with a matching green and blue scarf. The man is wearing a blue and green jersey with the number 12 on the front. He is also holding a sign that says \"I'm In!\"", - "id": 14833 - }, - { - "image_path": "/content/drive/MyDrive/combined/420a798e11e9b91b.jpg", - "response": "A man and a boy pose for a picture in front of a crowd of people. They are both wearing Mets gear and have blue lanyards around their necks. The man has a earring in his left ear.", - "id": 14834 - }, - { - "image_path": "/content/drive/MyDrive/combined/42113d4ea98235b5.jpg", - "response": "Two women playing soccer against each other.", - "id": 14835 - }, - { - "image_path": "/content/drive/MyDrive/combined/43a49f2882c97be8.jpg", - "response": "The image shows a group of five men standing next to each other in a room. They are all barefooted and dressed in different outfits. The man on the left is wearing a black shirt and shorts with a white logo on the front. The man on the right is wearing a white shirt and blue shorts. The man in the middle is wearing a black tank top and black shorts with a red design on the right leg. The man on the far right is wearing a grey shirt and black shorts with a black design on the right leg.", - "id": 14836 - }, - { - "image_path": "/content/drive/MyDrive/combined/443c0b31a360e242.jpg", - "response": "The image features a woman wearing a green and yellow jersey with the word \"Seals\" on it in white. She is also wearing a white and orange hockey jersey with the number 55 in white and the name \"DEMARCO\" in white above the number. The woman has long hair and is looking directly at the camera. She is wearing a white hockey helmet and has a white and orange hockey skate. The background of the image is a dark green with the NHL logo in the top left corner and the word \"Seals\" in the top right corner. There is also a small yellow and white logo in the bottom right corner.", - "id": 14837 - }, - { - "image_path": "/content/drive/MyDrive/combined/45e6970ca27e7443.jpg", - "response": "A man wearing an orange shirt that says Lunatic for Obama Biden.", - "id": 14838 - }, - { - "image_path": "/content/drive/MyDrive/combined/45328afeded4b5f3.jpg", - "response": "a group of young boys playing basketball on a court", - "id": 14839 - }, - { - "image_path": "/content/drive/MyDrive/combined/425346b4ddd58ab8.jpg", - "response": "A baseball pitcher in a white uniform and black cleats is winding up for a pitch. He is wearing a catcher's mitt and has a beard. He is standing on a baseball field with a fence and a hill in the background.", - "id": 14840 - }, - { - "image_path": "/content/drive/MyDrive/combined/4338810554b85f68.jpg", - "response": "The image shows a basketball game in action. There are three men on the court, two of them wearing white and green uniforms and the third wearing a maroon uniform. One of the players in the maroon uniform is jumping up to block a shot by a player in the white and green uniform. Another player in the white and green uniform is holding the basketball up in both hands, ready to shoot. In the background, there are several chairs and a few other people.", - "id": 14841 - }, - { - "image_path": "/content/drive/MyDrive/combined/41662bed445d730c.jpg", - "response": "In the image, there is a large group of people gathered in a grassy field. Some people are standing, while others are sitting on the ground. They are all enjoying their time outdoors in the park.", - "id": 14842 - }, - { - "image_path": "/content/drive/MyDrive/combined/43127852c55bb49c.jpg", - "response": "A young boy wearing a blue Cubs uniform is standing in a room.", - "id": 14843 - }, - { - "image_path": "/content/drive/MyDrive/combined/416db9bba3d8f94b.jpg", - "response": "A group of people standing under a tent, wearing aprons and posing for a picture.", - "id": 14844 - }, - { - "image_path": "/content/drive/MyDrive/combined/42dea6821bd16519.jpg", - "response": "A baseball game is in progress with a batter at the plate, holding a bat and preparing to swing. The catcher is squatting behind the batter and the umpire is standing behind the catcher. There are other players on the field in various positions, and a few people in the stands watching the game.", - "id": 14845 - }, - { - "image_path": "/content/drive/MyDrive/combined/44373912e940977e.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 14846 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f8d2ee36827e4d.jpg", - "response": "a boy holding a basketball in front of a brick wall", - "id": 14847 - }, - { - "image_path": "/content/drive/MyDrive/combined/4287a92fc06bd332.jpg", - "response": "In the image, there is a baseball player standing on the pitcher's mound. The player is wearing a white baseball uniform and a black baseball glove. He is getting ready to pitch the ball.", - "id": 14848 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f8b91cc5804583.jpg", - "response": "A baseball player wearing a blue and grey uniform and a blue hat runs across a field.", - "id": 14849 - }, - { - "image_path": "/content/drive/MyDrive/combined/44c0fbbad1f410d3.jpg", - "response": "A man in a black shirt is holding a certificate.", - "id": 14850 - }, - { - "image_path": "/content/drive/MyDrive/combined/4339b48132d5c860.jpg", - "response": "The image shows a baseball field with several players on it. A man in a grey uniform with the number 10 on the back is standing on the field and talking to another man, who is wearing a white shirt and a black hat. The man in the white shirt is holding a cup. In the background, there is a person holding a baseball bat.", - "id": 14851 - }, - { - "image_path": "/content/drive/MyDrive/combined/44d57fb9f097e8a5.jpg", - "response": "A barrel with an eagle on it that says \"Keep America Beautiful\" on it.", - "id": 14852 - }, - { - "image_path": "/content/drive/MyDrive/combined/4229d6c57568b50b.jpg", - "response": "Two men(223,157),(572,988)(610,170),(943,996) in black and blue Trivaut jerseys(312,355),(531,723)(649,382),(910,996) standing under a blue and white tent(0,4),(999,255).", - "id": 14853 - }, - { - "image_path": "/content/drive/MyDrive/combined/4309b1f0bb7bfb23.jpg", - "response": "A baseball player wearing a blue jersey and a blue hat is pitching a baseball.", - "id": 14854 - }, - { - "image_path": "/content/drive/MyDrive/combined/428ed61f48b1b615.jpg", - "response": "In the image, there is a man wearing a karate uniform and a brown belt. He is standing in the street and smiling for the camera. Behind him, there are several other people dressed in karate uniforms, some with purple belts and one with a red belt. They are all standing in a line, and the man in the foreground has a watch on his left wrist. The background features a house, a tree, and a street sign.", - "id": 14855 - }, - { - "image_path": "/content/drive/MyDrive/combined/42630b51e17d6599.jpg", - "response": "A woman in a black dress and a woman in a white dress are standing on the left and right side of the image. They are both holding a sash. A man in a green and white shirt is standing in between them. He is wearing a white hat. A woman in a blue and white shirt is standing in front of them. She is holding a red and yellow flag.", - "id": 14856 - }, - { - "image_path": "/content/drive/MyDrive/combined/458e114901737653.jpg", - "response": "A baseball player in a white and grey uniform is pitching a ball.", - "id": 14857 - }, - { - "image_path": "/content/drive/MyDrive/combined/4371ac1b06f28f92.jpg", - "response": "a group of people standing behind a table", - "id": 14858 - }, - { - "image_path": "/content/drive/MyDrive/combined/452e96badc730449.jpg", - "response": "A baseball player is hitting a ball with a bat.", - "id": 14859 - }, - { - "image_path": "/content/drive/MyDrive/combined/421d38c6b192614d.jpg", - "response": "A baseball player swinging a bat at a ball on a field.", - "id": 14860 - }, - { - "image_path": "/content/drive/MyDrive/combined/44d0036d0d3c4412.jpg", - "response": "A poster advertising Nerd HQ 2015 with a variety of stickers on it.", - "id": 14861 - }, - { - "image_path": "/content/drive/MyDrive/combined/44a8e90751905f91.jpg", - "response": "A woman wearing a white baseball jersey with the word Nationals on it.", - "id": 14862 - }, - { - "image_path": "/content/drive/MyDrive/combined/4586b9241223d051.jpg", - "response": "A baseball game is in progress with a batter up to the plate, holding a baseball bat and ready to swing. There are several other players on the field, including a few in the background behind a fence. Some players are wearing baseball gloves, and one person is holding a baseball. The game is being played on a baseball field with a grassy playing surface and a white chalk foul line.", - "id": 14863 - }, - { - "image_path": "/content/drive/MyDrive/combined/42c4aa06f162aa78.jpg", - "response": "In the image, two boys are engaged in a wrestling match on a wrestling mat. They are both wearing wrestling singlets and are in a match.", - "id": 14864 - }, - { - "image_path": "/content/drive/MyDrive/combined/457dec096ec9ed4a.jpg", - "response": "In the image, a man is standing on a stage holding a bouquet of flowers and wearing a gold medal around his neck. He is wearing a white jacket and has a mohawk hairstyle.", - "id": 14865 - }, - { - "image_path": "/content/drive/MyDrive/combined/43142b9fa969ed5e.jpg", - "response": "A busy city street filled with people walking and carrying various items such as bags, backpacks, and cell phones.", - "id": 14866 - }, - { - "image_path": "/content/drive/MyDrive/combined/47fd35e36ff12d28.jpg", - "response": "A woman with long hair is taking a picture of a girl in a blue jacket. They are standing outside a building.", - "id": 14867 - }, - { - "image_path": "/content/drive/MyDrive/combined/4622abca7cb1c388.jpg", - "response": "A baseball player in a brown and blue uniform is pitching a ball on a field. He is wearing a baseball cap and has his arm extended out. The baseball is in his hand and he appears to be in the middle of throwing it. There is a crowd of people in the stands watching the game. Some of them are sitting in chairs, while others are standing. The baseball player is on a mound and there is a baseball glove nearby.", - "id": 14868 - }, - { - "image_path": "/content/drive/MyDrive/combined/48a188ef0f203048.jpg", - "response": "A man in a white shirt with a strap from a camera around his shoulder.", - "id": 14869 - }, - { - "image_path": "/content/drive/MyDrive/combined/47762928716197fa.jpg", - "response": "Five men are posing for a picture.", - "id": 14870 - }, - { - "image_path": "/content/drive/MyDrive/combined/49d9ddd66e9bf1be.jpg", - "response": "A pile of shirts that include a grey shirt with a picture of Obama and the words Obama for Yo Mama.", - "id": 14871 - }, - { - "image_path": "/content/drive/MyDrive/combined/498eca1988468f48.jpg", - "response": "A baseball game is in progress with a batter swinging a bat at a ball. There are multiple players on the field and others watching the game.", - "id": 14872 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aa4be2c52209240.jpg", - "response": "a man running in a race wearing a white shirt and black shorts", - "id": 14873 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b9327ab2076a98a.jpg", - "response": "A girl in a black and gold uniform is holding a basketball.", - "id": 14874 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b16ce5e64999340.jpg", - "response": "Two men in uniform, one in white and one in camouflage, are shaking hands in front of a Dell computer screen.", - "id": 14875 - }, - { - "image_path": "/content/drive/MyDrive/combined/48b77a538268d516.jpg", - "response": "A man with a black shirt and black pants is dancing.", - "id": 14876 - }, - { - "image_path": "/content/drive/MyDrive/combined/495144fb662cfcce.jpg", - "response": "A woman in a white baseball uniform with the number 16 on the front of it.", - "id": 14877 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a690ccde72cf3cd.jpg", - "response": "a baseball player walking up the stairs of a baseball field", - "id": 14878 - }, - { - "image_path": "/content/drive/MyDrive/combined/4648e239ef3de158.jpg", - "response": "A baseball game is in progress with a young boy on first base. There is a man standing next to the boy, and another man is holding a baseball glove. The game is being played at night, and there are a few other people in the area, including one near the third base.", - "id": 14879 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b9285e20785221c.jpg", - "response": "A women's basketball team is huddled together on the court. There are several players wearing white jerseys with the number 5 and the name Breitreiner on the back. One player is holding a water bottle. The team is standing in front of a basket hoop.", - "id": 14880 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ac2c7f0b71cd755.jpg", - "response": "Two young boys(121,54),(516,988)(458,113),(905,988) standing on a bridge.", - "id": 14881 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a458a3d29a570c0.jpg", - "response": "A man wearing a leather vest with the name Reeses Van Riper on it.", - "id": 14882 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ebea42a47c3e55.jpg", - "response": "The image captures a baseball game in progress with two baseball players on the field. One player is wearing a red uniform and is in the middle of throwing a baseball. Another player is standing nearby, holding a baseball glove. In the background, there are several other people, some of whom are sitting on benches. The scene also includes a car parked in the vicinity.", - "id": 14883 - }, - { - "image_path": "/content/drive/MyDrive/combined/46cea396d6d45491.jpg", - "response": "a young boy wearing a purple and yellow shirt", - "id": 14884 - }, - { - "image_path": "/content/drive/MyDrive/combined/497255c5fc89e2a9.jpg", - "response": "Two women wearing red and white vests standing together with their arms around each other.", - "id": 14885 - }, - { - "image_path": "/content/drive/MyDrive/combined/487e145701aac585.jpg", - "response": "a man with a beard wearing a red shirt with a bear on it", - "id": 14886 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a40f0ece9019d4e.jpg", - "response": "A baseball player holding a bat in front of a crowd.", - "id": 14887 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a7f4be89dd521f0.jpg", - "response": "A baseball player wearing a blue and white uniform is running on the field.", - "id": 14888 - }, - { - "image_path": "/content/drive/MyDrive/combined/46dc19e2568d2933.jpg", - "response": "a shirt with the word finisher on it", - "id": 14889 - }, - { - "image_path": "/content/drive/MyDrive/combined/496914b378d7906f.jpg", - "response": "A woman in a blue uniform is reaching for a basketball with her hands. Another woman in a yellow uniform is blocking her. A third woman in a yellow uniform is watching the scene.", - "id": 14890 - }, - { - "image_path": "/content/drive/MyDrive/combined/49039542b4d292c6.jpg", - "response": "In the image, there is a woman wearing a red, white and blue shirt that says \"Team Arthritis\" on it. She is standing on a sidewalk next to a street. There is a man wearing a black jacket and a red hat holding a video camera in front of her. Another man is standing behind her with a camera as well. There are many other people standing and walking around in the background.", - "id": 14891 - }, - { - "image_path": "/content/drive/MyDrive/combined/47e7892f4ede4a0c.jpg", - "response": "The image features former Minnesota Vikings defensive tackle John Randle wearing a purple jersey with the number 59 on the front. He is smiling and appears to be at a mall, as there is a shopping center visible in the background. There are also two people visible in the image, one on the left and one on the right, although they are not the main focus.", - "id": 14892 - }, - { - "image_path": "/content/drive/MyDrive/combined/45f1f81c328b9fc8.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 14893 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b828bd337514f7a.jpg", - "response": "Two men standing in front of a sign that says European Club Cup.", - "id": 14894 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a7efa965795668e.jpg", - "response": "Three boys standing in a hallway, one wearing a white shirt with green and black lettering, another wearing a black shirt with white lettering and the third wearing a light blue shirt with white lettering.", - "id": 14895 - }, - { - "image_path": "/content/drive/MyDrive/combined/4af62e7690775c71.jpg", - "response": "A baseball player in a grey uniform is on the pitcher's mound. He is winding up to throw the ball.", - "id": 14896 - }, - { - "image_path": "/content/drive/MyDrive/combined/4952cc3277229b18.jpg", - "response": "The image shows a man in a yellow tank top with a deer logo on it. He is smiling and holding a water bottle in his right hand. He is standing in front of a crowd of people. Some people are wearing race numbers, and there are bicycles and handbags among the crowd. There are also some cars in the background.", - "id": 14897 - }, - { - "image_path": "/content/drive/MyDrive/combined/4753b3fe1370f37e.jpg", - "response": "A man with a black and white baseball cap on.", - "id": 14898 - }, - { - "image_path": "/content/drive/MyDrive/combined/4767a481b8af6a7d.jpg", - "response": "A baseball player wearing a blue and white uniform and a blue hat.", - "id": 14899 - }, - { - "image_path": "/content/drive/MyDrive/combined/4721a08a2f1a5628.jpg", - "response": "A group of people sitting on a boat in the water.", - "id": 14900 - }, - { - "image_path": "/content/drive/MyDrive/combined/47f01ef525e961f0.jpg", - "response": "A baseball game is in action as a player slides into the base.", - "id": 14901 - }, - { - "image_path": "/content/drive/MyDrive/combined/496c9ecc311d6bb8.jpg", - "response": "a man in a grey and yellow jersey is holding a basketball", - "id": 14902 - }, - { - "image_path": "/content/drive/MyDrive/combined/471741d45fb86eb7.jpg", - "response": "A wall with graffiti on it, the graffiti has a man's face and the words \"crew force\" on it.", - "id": 14903 - }, - { - "image_path": "/content/drive/MyDrive/combined/48956fdf0fee99e5.jpg", - "response": "A baseball player in a white and red uniform is getting ready to pitch the ball.", - "id": 14904 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aada1736a67c9b9.jpg", - "response": "A man wearing a teal and black jersey with the letter a on it.", - "id": 14905 - }, - { - "image_path": "/content/drive/MyDrive/combined/497e0901c61b2ad1.jpg", - "response": "a man wearing a yellow, blue, and white shirt", - "id": 14906 - }, - { - "image_path": "/content/drive/MyDrive/combined/48d130043bbf9df7.jpg", - "response": "A building with a sign that says \"Bentley's The Brendan Behan\" and \"Live Music\" written on it. There is also a sign that says \"Indian Zaffran Tandoori Restaurant\". People are walking in front of the building and a man and boy are standing together. There is a car in the background.", - "id": 14907 - }, - { - "image_path": "/content/drive/MyDrive/combined/481b56d643e269c5.jpg", - "response": "A man wearing a baseball jersey with the number 55 on the back holds a young boy on his shoulders. The man is wearing a red and white baseball cap and the boy is wearing a black shirt with a red and white baseball cap. They are both in front of a stage with a band performing on it. The stage has a large red and purple banner on the front and there are several people in the audience watching the performance.", - "id": 14908 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b66c8bd3f5f9486.jpg", - "response": "A baseball pitcher in a white uniform is winding up to throw the ball.", - "id": 14909 - }, - { - "image_path": "/content/drive/MyDrive/combined/48ff1b7c653e3df4.jpg", - "response": "A group of three cheerleaders standing on the court holding pom poms.", - "id": 14910 - }, - { - "image_path": "/content/drive/MyDrive/combined/48723b26a21aaaab.jpg", - "response": "A man in a black and red soccer uniform points at someone in the crowd.", - "id": 14911 - }, - { - "image_path": "/content/drive/MyDrive/combined/45fd63a77a679963.jpg", - "response": "A group of people are standing around in a field.", - "id": 14912 - }, - { - "image_path": "/content/drive/MyDrive/combined/45f23c20bd0c5d0b.jpg", - "response": "A baseball pitcher for the New York Yankees, CC Sabathia, is in the middle of a pitch. He is wearing a white pinstripe baseball uniform and is winding up to throw the ball. He has his arms out to the side and is looking forward towards the catcher. The pitcher's mound is brown and is located in the foreground of the image. The pitcher's glove is also visible in the scene. The baseball stadium is full of fans who are watching the game. Some of them are sitting in the stands and some are standing behind the fence. The fans are wearing a variety of colors including blue, white, and red. The fans are spread out throughout the stadium and are engaged in the game.", - "id": 14913 - }, - { - "image_path": "/content/drive/MyDrive/combined/4997ba9f7246928c.jpg", - "response": "A large group of luggage sitting on the floor in a room.", - "id": 14914 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b939dea0aefd708.jpg", - "response": "a man wearing a red and black shirt", - "id": 14915 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ebfd9f924250bf.jpg", - "response": "A couple of boys wearing baseball uniforms and holding baseball gloves.", - "id": 14916 - }, - { - "image_path": "/content/drive/MyDrive/combined/488c7b5f4187a9ee.jpg", - "response": "A baseball team is standing on a stage, dressed in their uniforms. There are several baseball bats leaning against a bench, and a girl is holding a clipboard.", - "id": 14917 - }, - { - "image_path": "/content/drive/MyDrive/combined/4badf5bbcf0915cd.jpg", - "response": "The image features two men in a wrestling match. They are both wearing wrestling singlets and are in the middle of the match. The man on the left is wearing blue and black wrestling singlet with the word \"ARMY\" written on it. The man on the right is wearing an orange and black wrestling singlet. They are both in a standing position and are in a crowd of people.", - "id": 14918 - }, - { - "image_path": "/content/drive/MyDrive/combined/49916b3d7f079502.jpg", - "response": "A man wearing a black and green shirt with the name C.Legout on it.", - "id": 14919 - }, - { - "image_path": "/content/drive/MyDrive/combined/486e8c6c902762c1.jpg", - "response": "A cardboard cut out of a woman in a red dress, hat and sunglasses.", - "id": 14920 - }, - { - "image_path": "/content/drive/MyDrive/combined/48759e8b82512022.jpg", - "response": "a man with a red shirt that says EDC on it", - "id": 14921 - }, - { - "image_path": "/content/drive/MyDrive/combined/481c9bdd7e18cb9d.jpg", - "response": "A group of cheerleaders are standing together on a basketball court. They are all wearing blue and orange uniforms and are holding pom poms. One of the cheerleaders is holding a basketball on a stand.", - "id": 14922 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad37382eadcf6d1.jpg", - "response": "A basketball player in a white jersey is dribbling the ball while a player in a blue jersey with the number 13 on it is guarding him.", - "id": 14923 - }, - { - "image_path": "/content/drive/MyDrive/combined/48b3d85ee47c7ba3.jpg", - "response": "In the image, there are two baseball players on the field. One player is reaching up with his glove, trying to catch a ball, while the other player is watching the action. Both players are wearing red and white uniforms.", - "id": 14924 - }, - { - "image_path": "/content/drive/MyDrive/combined/49bc025001550e1c.jpg", - "response": "A baseball player standing on a base on a baseball field.", - "id": 14925 - }, - { - "image_path": "/content/drive/MyDrive/combined/4834ee0202d85d14.jpg", - "response": "a baseball player standing on the field", - "id": 14926 - }, - { - "image_path": "/content/drive/MyDrive/combined/49e1ef5447fdba38.jpg", - "response": "A baseball player wearing a white uniform with the number 25 on the back.", - "id": 14927 - }, - { - "image_path": "/content/drive/MyDrive/combined/49d326b53f7c60cf.jpg", - "response": "A baseball player in a white pin striped uniform holding a bat on a field.", - "id": 14928 - }, - { - "image_path": "/content/drive/MyDrive/combined/4979ef8ffddf3f51.jpg", - "response": "In the image, a young boy wearing a yellow shirt and khaki shorts is running in a race. He is in the foreground of the image, with other people running around him. Some of these people are wearing numbers on their shirts, indicating that they are part of a race. The boy has a white paper in his hand, which may be a race bib or some other piece of paper. The people around him are of various ages and are spread out across the scene. Some are closer to the foreground, while others are further away in the background. Some are running, while others are walking or standing. The image captures a moment from a race, with the young boy in the foreground and the other participants in various stages of movement behind him.", - "id": 14929 - }, - { - "image_path": "/content/drive/MyDrive/combined/475bc9308c96a9f9.jpg", - "response": "The image shows a woman holding a camera in front of her face. She has long hair and is looking at the camera. The camera is a Nikon brand. The image has a sun glare effect.", - "id": 14930 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b93fd7b25d278a6.jpg", - "response": "The image shows a group of women in cheerleader outfits standing in a row. They are all holding white pom-poms and are wearing blue, orange, and white uniforms. The women are of varying heights and have different body types. Some of the women are looking towards the right side of the image, while others are looking in different directions. The outfits have logos on the left chest and some of the women are also wearing rings on their fingers.", - "id": 14931 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dd8e71db77aa536.jpg", - "response": "a group of people standing around in a park.", - "id": 14932 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e0b5d2c2c09b973.jpg", - "response": "a man in a blue jersey and white pants with a baseball glove", - "id": 14933 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ee53dfcaf9c1bb7.jpg", - "response": "A baseball mascot in a purple costume with a large purple dinosaur head, white baseball jersey, white pants, and white shoes.", - "id": 14934 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c06ee73a82422be.jpg", - "response": "The image shows a group of men wearing blue and white baseball uniforms with the word \"Omaha\" on them. They are standing on a baseball field, and some of them are holding baseball gloves.", - "id": 14935 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fedbfa7641ee6fb.jpg", - "response": "The image shows a cheerleader doing a split while holding a pom pom in each hand. She is wearing an orange top and black shorts.", - "id": 14936 - }, - { - "image_path": "/content/drive/MyDrive/combined/50b333b916ffaae2.jpg", - "response": "A boxing match with two boxers in a ring. One boxer is in a red uniform and the other is in a black uniform. They are both wearing helmets for safety. The boxers are throwing punches at each other and the red boxer is in the middle of throwing a punch. The ring has a black mat with the United States Medals of Excellence logo on it. There are also white ropes around the ring and a TRX Race banner on the wall.", - "id": 14937 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c002fa5620c7085.jpg", - "response": "a white shirt (721,358),(849,514)", - "id": 14938 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5b8aa7ef4791ad.jpg", - "response": "A man with a mustache wearing a blue jersey is holding a baseball and talking to another man.", - "id": 14939 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f8bca8951daf198.jpg", - "response": "A man wearing a blue and white striped shirt is smiling at the camera.", - "id": 14940 - }, - { - "image_path": "/content/drive/MyDrive/combined/503574d8dde59a87.jpg", - "response": "A basketball game is in action as a player from the Silex team goes up for a shot.", - "id": 14941 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c6a26b49d216a3c.jpg", - "response": "The image shows a baseball game in progress with a group of men wearing white and blue uniforms. Some of the players are holding baseball gloves, and there are several baseball bats visible in the scene. The players are standing on a field with grass and a few chairs scattered around.", - "id": 14942 - }, - { - "image_path": "/content/drive/MyDrive/combined/505950101831ffcd.jpg", - "response": "A baseball player in a white uniform with the number 8 on the back of his shirt.", - "id": 14943 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e8429394885b03b.jpg", - "response": "A man standing at a table with his head down.", - "id": 14944 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bea3ebc0bb69bb9.jpg", - "response": "In the image, there is a group of people dressed in karate uniforms. One man is standing and having his black belt checked by another man. Another man is sitting on the floor, holding a white cup. A woman is also sitting on the floor, holding a white piece of paper. The room has a hardwood floor and there are several chairs placed around the room.", - "id": 14945 - }, - { - "image_path": "/content/drive/MyDrive/combined/5076e3a8d799658d.jpg", - "response": "Max, a woman, and Ben are standing next to each other. They are all wearing matching outfits. Max is on the left and he is wearing tan trousers, a white shirt, suspenders, and white socks. The woman in the middle is wearing a black shirt and a red apron. Ben is on the right and he is wearing tan trousers, a white shirt, suspenders, and glasses.", - "id": 14946 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bb36af543c50222.jpg", - "response": "A man wearing a San Francisco Giants uniform and a black hat is standing on a baseball field. He has long hair and a beard and is looking to his left.", - "id": 14947 - }, - { - "image_path": "/content/drive/MyDrive/combined/5012eaa4e8ea267a.jpg", - "response": "Three men in blue race suits standing in front of a sign that says West Point Stores. They are holding racing trophies and smiling for the camera.", - "id": 14948 - }, - { - "image_path": "/content/drive/MyDrive/combined/50be703594e44150.jpg", - "response": "A group of cheerleaders are posing for a picture. They are all wearing blue and yellow uniforms. One of the cheerleaders is wearing a black jacket.", - "id": 14949 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dd4076b676a26e6.jpg", - "response": "A man in racing gear sits in a chair next to a woman in a racing top.", - "id": 14950 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca69529743b35c3.jpg", - "response": "A blue t-shirt with the word \"Flux\" written on it in white. The t-shirt also has a picture of a circuit drawn on it. The word \"CAPACITOR\" is written below the picture in white.", - "id": 14951 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fc99ae1814387e3.jpg", - "response": "A cheerleader with a blue and white uniform on.", - "id": 14952 - }, - { - "image_path": "/content/drive/MyDrive/combined/508a63fa53221ade.jpg", - "response": "A group of men standing around each other.", - "id": 14953 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca9197c4ba8ba60.jpg", - "response": "A man wearing glasses and a red shirt is sitting on a stool in a room.", - "id": 14954 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d70cd7a011e9781.jpg", - "response": "A woman in a white baseball uniform with the number 11 on the front.", - "id": 14955 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e38f25e87cbcc53.jpg", - "response": "A man and woman pose for a picture at a baseball stadium.", - "id": 14956 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bf43a7b2a898044.jpg", - "response": "A baseball game is in action on a baseball field. A pitcher has just thrown the ball and a batter is getting ready to swing. There is a catcher and an umpire behind the batter and a few other players on the field.", - "id": 14957 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c1ffdf1b39d0cbd.jpg", - "response": "A baseball player is leaning on a fence, watching the game from the dugout. Another player is holding a baseball bat, preparing to practice. There are several other people in the scene, including fans in the stands and other players.", - "id": 14958 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d8a6f7a7a4d0d49.jpg", - "response": "A white t-shirt with a green and blue design on it.", - "id": 14959 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bec1d2d59b98f28.jpg", - "response": "A page from a magazine with a picture of a person holding an apple in their mouth.", - "id": 14960 - }, - { - "image_path": "/content/drive/MyDrive/combined/50b07caed59a8f00.jpg", - "response": "A white and red Olympic hockey jersey with the name Morrow on the front and the number 10.", - "id": 14961 - }, - { - "image_path": "/content/drive/MyDrive/combined/4da4dc32d2c94596.jpg", - "response": "A group of people are sitting and standing in a room. They are all smiling for the camera. Some of them are wearing casual clothing. There is a couch and a chair in the room. A fan is in the corner.", - "id": 14962 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d37411f6dd92660.jpg", - "response": "a small child with white frosting on his face and clothes", - "id": 14963 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e29aedc51e92ece.jpg", - "response": "A baseball player in a white uniform stands on the pitcher's mound.", - "id": 14964 - }, - { - "image_path": "/content/drive/MyDrive/combined/5095124725543461.jpg", - "response": "A baseball player running towards home plate.", - "id": 14965 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f52c3b70d582d77.jpg", - "response": "A baseball player wearing a red jersey is running on the field.", - "id": 14966 - }, - { - "image_path": "/content/drive/MyDrive/combined/5020ddbabc96ce41.jpg", - "response": "A fence is behind three boys in baseball uniforms.", - "id": 14967 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ef05378cb434836.jpg", - "response": "A colorful photo of a crowd of people under a street sign that says N Bassett St.", - "id": 14968 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eb372a39597df8a.jpg", - "response": "Four children are standing behind a table with a sign that says \"Robotiks 2014\". They are all wearing different colored shirts. One boy has a white shirt, one has a blue and white shirt, one has a black and gray shirt and the last one has a white, gray and red shirt. They are all smiling for the camera.", - "id": 14969 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa33a24110478cd.jpg", - "response": "In the image, a baseball player is holding a bat and looking into the camera. He is wearing a black and yellow baseball uniform and a hat with the NY Yankees logo on it. The player appears to be Derek Jeter, who is a famous baseball player.", - "id": 14970 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7332015a3fd640.jpg", - "response": "A baseball player kneeling in front of a woman sitting in a chair.", - "id": 14971 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bb7588d93fd948e.jpg", - "response": "In the image, a man is running in a race, wearing a black and orange tank top and sunglasses. He has a black wristwatch on his left wrist and a black and white race bib with the number 493 on it. The man has short hair and a beard.", - "id": 14972 - }, - { - "image_path": "/content/drive/MyDrive/combined/505c6f75c72ea32c.jpg", - "response": "A baseball team is standing in the dugout.", - "id": 14973 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d4c16b0f91ebfd5.jpg", - "response": "The image shows a group of girls dressed in green and black cheerleading outfits with the word Vikings on them. They are standing on a blue floor. Some of the girls are doing cheerleader stunts.", - "id": 14974 - }, - { - "image_path": "/content/drive/MyDrive/combined/50431dd2e2a3818e.jpg", - "response": "In the image, there is a man standing next to a woman. They are both wearing white shirts and have blue lanyards around their necks. The man has a white tag attached to his lanyard. They are both smiling for the camera.", - "id": 14975 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d327105faa299e9.jpg", - "response": "A girl wearing a blue shirt stands in front of a building with a sign that reads John D. Kemper Hall of Engineering.", - "id": 14976 - }, - { - "image_path": "/content/drive/MyDrive/combined/501e41917d40a1f6.jpg", - "response": "Three baseball players from Kane County are walking on the field.", - "id": 14977 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d954d933e606b70.jpg", - "response": "a woman running on a track", - "id": 14978 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c8793a4e4fb9c0c.jpg", - "response": "a man is on the rings", - "id": 14979 - }, - { - "image_path": "/content/drive/MyDrive/combined/50531c8ed7d9b2cb.jpg", - "response": "a close up of a shirt with a soccer jersey on", - "id": 14980 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dab849a0c30e931.jpg", - "response": "The image shows a group of female softball players wearing blue and white uniforms. They are lined up on the field, and some of them are walking towards the dugout. There are several bottles and a cup visible in the scene, possibly belonging to the players or used during the game. A baseball glove is also present, likely used for catching the ball during the game.", - "id": 14981 - }, - { - "image_path": "/content/drive/MyDrive/combined/4be8e726b6a11c1a.jpg", - "response": "A baseball player wearing a blue and white uniform and a catcher's mitt is standing on the field.", - "id": 14982 - }, - { - "image_path": "/content/drive/MyDrive/combined/50501b997e51ef2f.jpg", - "response": "a pile of white shirts with 2013 on them", - "id": 14983 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fde0eb717165b0e.jpg", - "response": "A group of New York Mets players huddle together on the pitcher's mound.", - "id": 14984 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa982fb356efe0b.jpg", - "response": "a baseball player in a grey and black uniform", - "id": 14985 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d9a56301882e970.jpg", - "response": "A baseball game is in progress with a batter swinging at a ball. The batter is wearing an orange shirt and gray pants. There are several other players on the field, including a catcher wearing red and a umpire wearing a blue shirt. The catcher is crouching behind the batter and the umpire is standing behind the catcher. There is a crowd of people in the stands watching the game.", - "id": 14986 - }, - { - "image_path": "/content/drive/MyDrive/combined/5068ddd3e77f1395.jpg", - "response": "The image shows the dressing room of Chelsea Football Club. There are six blue and white football shirts hanging up on wooden pegs. The shirts are numbered 3, 9, 14, 16, 21, and 21. The shirts are made by Adidas. The number 3 is on the left, followed by 9, 14, 16, 21, and 21 in that order. The shirts are blue with white stripes and white numbers and lettering. The shirts have a v-neck and the lettering is in white. The shirts are hung up on the wooden pegs and are not being used at the moment.", - "id": 14987 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c7871d40a153b3e.jpg", - "response": "A man wearing a grey baseball uniform with the word \"New\" on it. He is standing on a pitcher's mound and has just thrown a baseball. He is wearing a baseball glove on his left hand and is wearing black and white shoes. The baseball is in the air near him and there is a person in the background wearing blue jeans.", - "id": 14988 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d002689c3b073c8.jpg", - "response": "A baseball player wearing a maroon uniform stands in the outfield.", - "id": 14989 - }, - { - "image_path": "/content/drive/MyDrive/combined/505a2cabe4ce2050.jpg", - "response": "In the image, there is a woman wearing a white baseball uniform and a catcher's mitt. She is standing on a grassy field and is in the process of throwing a softball. The softball is in the air and appears to be moving towards her teammate. The woman is also wearing a white baseball uniform, which includes a pair of blue shoes.", - "id": 14990 - }, - { - "image_path": "/content/drive/MyDrive/combined/50610d4450dff5af.jpg", - "response": "A laptop screen displaying the title of a video game.", - "id": 14991 - }, - { - "image_path": "/content/drive/MyDrive/combined/50750efec0528d31.jpg", - "response": "In the image there are three men(383,123),(865,997) hugging each other. They are wearing blue uniforms with the number 8 on the left man's back. The middle man is wearing a blue shirt with the number 18 on the right side of his shirt. The right man is wearing a blue shirt with the number 16 on the right side of his shirt. They are all hugging each other in front of a soccer goal.", - "id": 14992 - }, - { - "image_path": "/content/drive/MyDrive/combined/5048940eaa63dffe.jpg", - "response": "a man standing in front of a speaker", - "id": 14993 - }, - { - "image_path": "/content/drive/MyDrive/combined/50b45f584485de8b.jpg", - "response": "A pitcher for the Mets baseball team winds up to throw the ball.", - "id": 14994 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ce6bb21e31643c8.jpg", - "response": "A man standing in front of a table with a bunch of shirts on it.", - "id": 14995 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d3f5a7f7fb79e39.jpg", - "response": "A woman with long brown hair wearing a blue shirt that says 'CAMPON' on it.", - "id": 14996 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f9e01e1278746e6.jpg", - "response": "A group of young men in basketball uniforms posing for a picture.", - "id": 14997 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e3b0784d42dad43.jpg", - "response": "A group of girls wearing maroon and white uniforms with the number 14 on their backs. They are talking to each other and laughing.", - "id": 14998 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f51fe692366c653.jpg", - "response": "In the image, a woman is seen wiping her brow with a yellow and black race bib around her neck. She is wearing a yellow shirt and has a white headband around her head. She has her hands folded in front of her, with a white towel around her neck. She looks tired.", - "id": 14999 - }, - { - "image_path": "/content/drive/MyDrive/combined/54878a7691e4fcbe.jpg", - "response": "In the image, a baseball player is in the midst of throwing a baseball. The player is wearing a grey uniform with the number 37 on the front and a black hat. The baseball player is standing on a grassy field with a building and a palm tree in the background. The player is also wearing a black glove on their left hand.", - "id": 15000 - }, - { - "image_path": "/content/drive/MyDrive/combined/5370d565a139985b.jpg", - "response": "A table with a display of t-shirts on it.", - "id": 15001 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a0fe4cab6357aa.jpg", - "response": "A group of people standing around each other.", - "id": 15002 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b38964993d46c5.jpg", - "response": "A group of people standing on a baseball field.", - "id": 15003 - }, - { - "image_path": "/content/drive/MyDrive/combined/54621e1658bfca5a.jpg", - "response": "A white t-shirt with the name BillyBall in blue on it.", - "id": 15004 - }, - { - "image_path": "/content/drive/MyDrive/combined/536a755f75187f55.jpg", - "response": "A group of three men standing next to each other.", - "id": 15005 - }, - { - "image_path": "/content/drive/MyDrive/combined/5439a5207c3594e3.jpg", - "response": "A soccer player is standing on the field with his hands on his hips.", - "id": 15006 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e0a15911f15202.jpg", - "response": " A man(153,14),(937,999) wearing a blue shirt(244,475),(835,996) and blue hat(487,15),(740,237) is holding his fists(785,355),(906,578)(368,258),(511,483) up and speaking.", - "id": 15007 - }, - { - "image_path": "/content/drive/MyDrive/combined/50c66d957692c519.jpg", - "response": "A man with a moustache holds up a red and white striped shirt next to another man.", - "id": 15008 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e1c463cca1ab86.jpg", - "response": "Two cheerleaders in red and white uniforms standing with a man in a red Houston Rockets shirt.", - "id": 15009 - }, - { - "image_path": "/content/drive/MyDrive/combined/51f2d83898141d8d.jpg", - "response": "a person wearing a blue shirt that says \"volunteeter\" on the back", - "id": 15010 - }, - { - "image_path": "/content/drive/MyDrive/combined/5454144c7b07b230.jpg", - "response": "A woman in a blue suit standing next to a man in a blue uniform.", - "id": 15011 - }, - { - "image_path": "/content/drive/MyDrive/combined/519f67c85425a891.jpg", - "response": "A couple of boys in blue and red wrestling outfits.", - "id": 15012 - }, - { - "image_path": "/content/drive/MyDrive/combined/55717f07ef3d5616.jpg", - "response": "A group of race car drivers are spraying champagne on a race winner.", - "id": 15013 - }, - { - "image_path": "/content/drive/MyDrive/combined/53e1f26ac84dfffe.jpg", - "response": "A man and a child in front of a colorful wall.", - "id": 15014 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e3f39161998bb8.jpg", - "response": "In the image, there is a man standing in front of a wall. The wall has a map of Africa painted on it. The man is leaning against the wall with his arms crossed. He is wearing a blue shirt and white pants. To the left of the man, there is a white arrow pointing upwards. Above the man, there are three white words: DARE, CODE, and HACK. To the right of the man, there is a red box. The word HACK is written in white inside the red box.", - "id": 15015 - }, - { - "image_path": "/content/drive/MyDrive/combined/545cfb9c8d79e4f1.jpg", - "response": "A hockey jersey that says South on it hanging up.", - "id": 15016 - }, - { - "image_path": "/content/drive/MyDrive/combined/53acadec98b37d27.jpg", - "response": "A man wearing a green and beige uniform is pitching a baseball. He is wearing a green and beige hat and has a mitt on his left hand. He is standing on a baseball field and is in the process of throwing the ball.", - "id": 15017 - }, - { - "image_path": "/content/drive/MyDrive/combined/513d6bc67450c5f3.jpg", - "response": "A baseball player in a white uniform is running on the field.", - "id": 15018 - }, - { - "image_path": "/content/drive/MyDrive/combined/54392c5d611055ec.jpg", - "response": "The man is wearing a red hat.", - "id": 15019 - }, - { - "image_path": "/content/drive/MyDrive/combined/5326cdd558fd394e.jpg", - "response": "A man standing on a basketball court next to a boy.", - "id": 15020 - }, - { - "image_path": "/content/drive/MyDrive/combined/548aeb0a1e6f71f9.jpg", - "response": "Three men are wearing soccer team shirts.", - "id": 15021 - }, - { - "image_path": "/content/drive/MyDrive/combined/5289ea3d0db65d1a.jpg", - "response": "a boy with blonde hair and a scientist's lab coat on", - "id": 15022 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e67dcd1fee880b.jpg", - "response": "The image shows a group of five bicycle riders standing in a lot. They are all wearing matching yellow and black uniforms and have on helmets. Some of the riders are putting on gloves and one has his hands on his head.", - "id": 15023 - }, - { - "image_path": "/content/drive/MyDrive/combined/5462b2330b216760.jpg", - "response": "A group of six men standing next to each other holding beers.", - "id": 15024 - }, - { - "image_path": "/content/drive/MyDrive/combined/53eb6a5421b50de7.jpg", - "response": "The image shows a baseball field with several players on it. A batter is at home plate, holding a baseball bat, and a coach is standing next to him. In the background, there are chairs arranged in several rows, forming the spectator stands. Some players are wearing baseball gloves, and one of them has a backpack. A few other people are also present in the scene, with one person holding a cell phone.", - "id": 15025 - }, - { - "image_path": "/content/drive/MyDrive/combined/52d466acb41be1be.jpg", - "response": " Two women(313,36),(708,964)(558,59),(860,817) in gold pants(315,410),(676,929)(599,382),(778,757) and white top(328,205),(608,385) with the word(363,255),(599,312) Tech on them", - "id": 15026 - }, - { - "image_path": "/content/drive/MyDrive/combined/5515f3d3b673ed49.jpg", - "response": "A woman wearing a blue and white soccer uniform with a blue and white ball at her feet.", - "id": 15027 - }, - { - "image_path": "/content/drive/MyDrive/combined/53ddd51643c5d44c.jpg", - "response": "A baseball player in a white pin striped uniform with a blue hat is pitching a baseball. He is on a baseball field with green grass and brown dirt. There is a crowd of people in the background, some sitting on chairs and some standing. There is a handbag on the ground near the right side of the field and a person in the crowd is wearing a yellow shirt.", - "id": 15028 - }, - { - "image_path": "/content/drive/MyDrive/combined/52e7c696db3a5759.jpg", - "response": "The image shows a basketball team sitting on a bench. There are nine players in the picture, all wearing orange and white uniforms. They are sitting in three rows, with five players in the middle row and three in the front row. The players are pointing at the camera in various directions. In the background, there is a blue wall and a bottle of Gatorade.", - "id": 15029 - }, - { - "image_path": "/content/drive/MyDrive/combined/5252a5a0cb726260.jpg", - "response": "The image shows a woman and a man running a race. The woman is wearing a black and blue top and blue shorts with the number 26 on them. She has a red and white shoe on her right foot and a black and red shoe on her left foot. She has a black and red headband on her hair and is wearing a black watch on her left wrist. The man is wearing a black and red top and black shorts with the number 253 on them. He has a red and white shoe on his right foot and a black and red shoe on his left foot. He has a black headband on his head and is wearing a black watch on his left wrist.", - "id": 15030 - }, - { - "image_path": "/content/drive/MyDrive/combined/5184ae3356fb7f78.jpg", - "response": "The image shows a group of people dressed in military uniforms. There are two men in the foreground who appear to be exchanging a badge or pin. Another man is standing behind them, watching the proceedings. There is a woman standing to the side, also dressed in military uniform. In the background, a clock can be seen on the wall.", - "id": 15031 - }, - { - "image_path": "/content/drive/MyDrive/combined/52311f3e2562a9c7.jpg", - "response": "In the image there is a woman wearing a black and red sports bra and black bikini bottom. She is wearing sunglasses and has blonde hair. She is running on a track and there are other people in the background.", - "id": 15032 - }, - { - "image_path": "/content/drive/MyDrive/combined/51554bee8f478077.jpg", - "response": "A bag of Doritos X-13D tortilla chips sits on a table.", - "id": 15033 - }, - { - "image_path": "/content/drive/MyDrive/combined/53714027909d39a7.jpg", - "response": "A man wearing a white shirt with blue writing on it is holding a beer. He is standing in a room with a table, a wall, and a fire hydrant. There are also other people in the room and a few cups on the table.", - "id": 15034 - }, - { - "image_path": "/content/drive/MyDrive/combined/52f070dce27ad7e6.jpg", - "response": "A group of people are standing on a bridge above a statue. The statue features a man holding a ball and standing on the back of a dog. The dog is biting at the leg of a man.", - "id": 15035 - }, - { - "image_path": "/content/drive/MyDrive/combined/5464f1ebfb2178dc.jpg", - "response": "A woman with long hair and a partially ripped shirt.", - "id": 15036 - }, - { - "image_path": "/content/drive/MyDrive/combined/5291f0ad3d98bbf8.jpg", - "response": "In the image, a baseball player is in the process of throwing a pitch from the mound. The pitcher is wearing a white baseball uniform and is in the middle of his follow-through after throwing the ball. The ball is visible in the air, coming toward the catcher. The catcher is positioned behind the pitcher, ready to catch the ball. There is another person on the field, closer to the left side of the image, who could be a teammate or an umpire. The field has a grassy area and a dirt infield, and there is a banner with the number 648 on it in the background.", - "id": 15037 - }, - { - "image_path": "/content/drive/MyDrive/combined/51153c1aeeba2142.jpg", - "response": "A wall with a billboard for Klar mobil and a smaller graffiti advertisement for a company called 225t.", - "id": 15038 - }, - { - "image_path": "/content/drive/MyDrive/combined/558640ae029affa5.jpg", - "response": "A large sign that says Mardi Gras above the entrance.", - "id": 15039 - }, - { - "image_path": "/content/drive/MyDrive/combined/52352ca83689904c.jpg", - "response": "A baseball player wearing a white and blue uniform is in the middle of a pitch. He is standing on the pitcher's mound and is winding up to throw the ball. He is wearing a red glove on his left hand and has a baseball in his right hand. The baseball field is green and brown and there is a blue wall with white writing in the background.", - "id": 15040 - }, - { - "image_path": "/content/drive/MyDrive/combined/5444cc10f2ab386b.jpg", - "response": "A woman with a white top and a yellow and black race bib with the number 42107.", - "id": 15041 - }, - { - "image_path": "/content/drive/MyDrive/combined/535b241749e8d305.jpg", - "response": "The image shows a baseball game in progress with a team of baseball players on the field. There are several players visible, including a player holding a baseball bat and a player wearing a number 2 jersey. The baseball player wearing number 2 is walking towards the dugout. The game is being played in a stadium with red chairs in the background, likely for spectators.", - "id": 15042 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d40b06caa39c65.jpg", - "response": "A girl wearing a white and blue uniform is holding a field hockey stick.", - "id": 15043 - }, - { - "image_path": "/content/drive/MyDrive/combined/5567456eb6bc9f36.jpg", - "response": "In the image, there is a woman wearing a blue and white uniform who is getting ready to throw a softball. She is wearing a glove and has her hair in a ponytail. The woman is standing on a baseball field.", - "id": 15044 - }, - { - "image_path": "/content/drive/MyDrive/combined/50e913e310c6aee5.jpg", - "response": "The image features a group of five people standing together. They are all wearing pink and black cycling outfits. The outfits have the word \"RACE\" on them. The people are standing in front of a backdrop that says \"Race Across America\". The backdrop is white with black letters.", - "id": 15045 - }, - { - "image_path": "/content/drive/MyDrive/combined/530f167e6d0f5138.jpg", - "response": "A woman wearing a baseball jersey and high heeled boots walks on the field.", - "id": 15046 - }, - { - "image_path": "/content/drive/MyDrive/combined/52a816d2db8d86fd.jpg", - "response": "a close up of a green and white shirt", - "id": 15047 - }, - { - "image_path": "/content/drive/MyDrive/combined/5111f3b917cfec20.jpg", - "response": "A group of people in matching yellow shirts are holding up their instruments.", - "id": 15048 - }, - { - "image_path": "/content/drive/MyDrive/combined/5399f65c5f1047d4.jpg", - "response": "A baseball player wearing a grey jersey with red lettering walks across the field. He is wearing a catcher's mitt on his left hand and has a baseball in his right hand. He is also wearing a navy blue hat with a white A on it. The baseball player is standing on top of a grass field.", - "id": 15049 - }, - { - "image_path": "/content/drive/MyDrive/combined/51cedac3840afe4c.jpg", - "response": "A couple of baseball players standing on top of a field.", - "id": 15050 - }, - { - "image_path": "/content/drive/MyDrive/combined/5216510b1a5a3ecd.jpg", - "response": " A man(259,89),(905,995) running in a cross country race.", - "id": 15051 - }, - { - "image_path": "/content/drive/MyDrive/combined/50cde41a46c6e771.jpg", - "response": "A group of athletes are standing around on a court. They are holding sports equipment, including hockey sticks. Some of the athletes are wearing red and white uniforms.", - "id": 15052 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b1a0246cdb71c7.jpg", - "response": "A soccer player wearing a blue uniform runs across a field.", - "id": 15053 - }, - { - "image_path": "/content/drive/MyDrive/combined/50cbb7be514741bc.jpg", - "response": "A baseball player wearing a black jersey with a yellow letter P on it.", - "id": 15054 - }, - { - "image_path": "/content/drive/MyDrive/combined/552965fad5d29ae0.jpg", - "response": "A little league team playing baseball on a field.", - "id": 15055 - }, - { - "image_path": "/content/drive/MyDrive/combined/52dd8d57edf1cafb.jpg", - "response": "In the image, three girls are performing a cheer routine on a blue mat. They are all dressed in green and black cheer uniforms and are in the middle of a cheer. They are all holding their hands up in the air and are smiling. In the background, there are several other people watching the routine. Some of them are sitting on chairs and benches, while others are standing. Some of the people are holding cups and there is a backpack placed on the floor.", - "id": 15056 - }, - { - "image_path": "/content/drive/MyDrive/combined/5ea130cc9e093bb9.jpg", - "response": "The image shows a basketball game in progress with two teams of players on the court. There are multiple players, each wearing different colored uniforms, and they are actively engaged in the game. One player is holding a basketball and appears to be about to pass it to another teammate. The scene is energetic and action-packed.", - "id": 15057 - }, - { - "image_path": "/content/drive/MyDrive/combined/7a5ad77b02cef1dd.jpg", - "response": "The image features a basketball player in a white and gold jersey with the number 14 on it. The player is holding a basketball and is in the middle of shooting it. There are two other people in the scene, one closer to the left side and another closer to the right side. The background includes a banner on the left side and a clock on the top left corner of the image.", - "id": 15058 - }, - { - "image_path": "/content/drive/MyDrive/combined/b0a5810580c32b7d.jpg", - "response": "The image shows three young baseball players in orange and white uniforms, with the number 37 on their hats. They are jumping up in the air and celebrating together on a baseball field. The two players on the left are jumping higher than the player on the right.", - "id": 15059 - }, - { - "image_path": "/content/drive/MyDrive/combined/c313db2479a9d6c2.jpg", - "response": "In the image, a baseball player is on the field in front of a large scoreboard. The player is wearing a white baseball uniform and has a catcher's mitt on his left hand. He is standing in the outfield and appears to be preparing to catch a ball.", - "id": 15060 - }, - { - "image_path": "/content/drive/MyDrive/combined/ca6e0d79c7cc20bd.jpg", - "response": "In the image, there are two women standing on a basketball court wearing volleyball uniforms. One woman has long hair and is holding a number nine sign. The other woman has her hair in a ponytail. They are both looking to the right of the camera.", - "id": 15061 - }, - { - "image_path": "/content/drive/MyDrive/combined/fc0d32591dd7b08e.jpg", - "response": "a man holding a white tshirt that says \"Volksmarch\" on it", - "id": 15062 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dca51381271b79b.jpg", - "response": "A stop sign with three green and white street signs above it.", - "id": 15063 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa7275cd74e5504.jpg", - "response": "A four way stop sign with graffiti on it under a street sign.", - "id": 15064 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c282a820698d0eb.jpg", - "response": "A stop sign that has been vandalized with graffiti.", - "id": 15065 - }, - { - "image_path": "/content/drive/MyDrive/combined/0856509cf53b96bd.jpg", - "response": "A red stop sign sitting in a parking lot.", - "id": 15066 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2ca97c3f90fe4c.jpg", - "response": "A red stop sign that has been vandalized with a Bush/Step Down sticker on it. The sign is located on a street corner at night.", - "id": 15067 - }, - { - "image_path": "/content/drive/MyDrive/combined/08edcfe24b9ac578.jpg", - "response": "A stop sign at the end of a road in the woods.", - "id": 15068 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4254391f22b042.jpg", - "response": "A red stop sign with the word \"Wash\" written under it.", - "id": 15069 - }, - { - "image_path": "/content/drive/MyDrive/combined/08361b6b7aac5c1e.jpg", - "response": "A highway with many signs hanging over it.", - "id": 15070 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad753ceffa31ebd.jpg", - "response": "A stop sign is visible at the intersection of Drennan Road and I-45 North. There are trees in the background and multiple orange and white traffic cones are placed on the grass.", - "id": 15071 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0d588ac9666163.jpg", - "response": "A stop sign is shown in a residential area with trees and houses in the background.", - "id": 15072 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e9977eea7587ae6.jpg", - "response": "A yellow school bus with a red stop sign on the side.", - "id": 15073 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b9c657f88e1bcd7.jpg", - "response": "A woman in a green shirt and jeans is standing by a mailbox. She is wearing rain boots and has a book in her hands. There is a stop sign next to the mailbox and a building is in the background.", - "id": 15074 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d4d61ee8b1eb9fd.jpg", - "response": "A red stop sign with white lettering is in the foreground of the image.", - "id": 15075 - }, - { - "image_path": "/content/drive/MyDrive/combined/26dacbae3b342b58.jpg", - "response": "A stop sign with the word \"eating animals\" crossed out and replaced with \"eating animals without steak sauce\".", - "id": 15076 - }, - { - "image_path": "/content/drive/MyDrive/combined/236965790090bfd0.jpg", - "response": "A stop sign with two green street signs on top of it.", - "id": 15077 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7bc6c2cfffbb5c.jpg", - "response": "A busy city street with people crossing the street and cars driving down the road. There are multiple traffic signs including a stop sign and a four-way sign.", - "id": 15078 - }, - { - "image_path": "/content/drive/MyDrive/combined/26edf81e81dbaef2.jpg", - "response": "A 1970 Ontario Canada passenger car license plate in white with blue lettering and crown.", - "id": 15079 - }, - { - "image_path": "/content/drive/MyDrive/combined/34250993aa586a64.jpg", - "response": "A stop sign with the letter t on it.", - "id": 15080 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c5b4c5ddeb6c31e.jpg", - "response": "A stop sign on a pole on a street corner.", - "id": 15081 - }, - { - "image_path": "/content/drive/MyDrive/combined/15efdba06a1d64d8.jpg", - "response": "A stop sign is reflected in a puddle on the street. The word \"stop\" is backwards on the sign. The sky is blue and there are no clouds.", - "id": 15082 - }, - { - "image_path": "/content/drive/MyDrive/combined/42f525eb96da8ac3.jpg", - "response": "A red and white phone booth sits on the grass next to a stop sign.", - "id": 15083 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f3652d76d7c7c0.jpg", - "response": "A stop sign is shown in a puddle of water on the side of a road.", - "id": 15084 - }, - { - "image_path": "/content/drive/MyDrive/combined/22671a0e3bf5da06.jpg", - "response": "A stop sign with the word \"-consuming\" written below the word \"stop\".", - "id": 15085 - }, - { - "image_path": "/content/drive/MyDrive/combined/3754d699f49baf51.jpg", - "response": "A stop sign with a sticker underneath that says \"Eating Animals\".", - "id": 15086 - }, - { - "image_path": "/content/drive/MyDrive/combined/235bf7fe680bd069.jpg", - "response": "The image shows a group of red stop signs lined up in a row. There are several signs visible, and they are all oriented in the same direction. The signs are standing on black poles. In the background, there are a few buildings visible, as well as some other objects and debris.", - "id": 15087 - }, - { - "image_path": "/content/drive/MyDrive/combined/321da920dcb8db3c.jpg", - "response": "A stop sign that has been vandalized with the word \"Bush\" underneath the word \"stop.\"", - "id": 15088 - }, - { - "image_path": "/content/drive/MyDrive/combined/28e062efcd3b6884.jpg", - "response": "A stop sign on the side of the road.", - "id": 15089 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c079fd05e484cb8.jpg", - "response": "A red stop sign in front of a building.", - "id": 15090 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4b5ff55491907d.jpg", - "response": "A stop sign with a red background and white letters.", - "id": 15091 - }, - { - "image_path": "/content/drive/MyDrive/combined/4031e23172cc6aeb.jpg", - "response": "A stop sign that has been vandalized with holes.", - "id": 15092 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce8ad84fb615820.jpg", - "response": "A stop sign in front of a building with a notice in french underneath.", - "id": 15093 - }, - { - "image_path": "/content/drive/MyDrive/combined/32e264c75caf8f51.jpg", - "response": "The image features a close-up of a red stop sign on a pole. The stop sign is octagonal and has white lettering. There is another stop sign visible in the background, slightly out of focus. The scene appears to be set in an urban area with buildings in the background.", - "id": 15094 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e710ea984ed0da.jpg", - "response": "A red stop sign with a sticker underneath that says \"Being Lame\".", - "id": 15095 - }, - { - "image_path": "/content/drive/MyDrive/combined/32c951d2e81929c8.jpg", - "response": "A stop sign with a bridge in the background.", - "id": 15096 - }, - { - "image_path": "/content/drive/MyDrive/combined/241bb0b26cbd4680.jpg", - "response": "A stop sign is standing on a brick sidewalk.", - "id": 15097 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a802f25d03a591c.jpg", - "response": "A red stop sign sitting on a pole at a street corner.", - "id": 15098 - }, - { - "image_path": "/content/drive/MyDrive/combined/4255a0000305fb6f.jpg", - "response": "A stop sign on a pole in a grassy area.", - "id": 15099 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f9dc65fc2ae263.jpg", - "response": "A red stop sign with a blue sky in the background.", - "id": 15100 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a925661b424e9d7.jpg", - "response": "A stop sign is prominently featured in the image, with a one way sign attached to it. The stop sign is red with white lettering. The photo is taken on a street corner in a city, with a tall building in the background. There are also two other buildings visible in the scene. The sky is a clear blue color.", - "id": 15101 - }, - { - "image_path": "/content/drive/MyDrive/combined/210d65cdcb47cb7e.jpg", - "response": "A stop sign on a pole at the corner of Weisenberg Church Road.", - "id": 15102 - }, - { - "image_path": "/content/drive/MyDrive/combined/35e8b792d7848a3c.jpg", - "response": "A stop sign in front of a large building with a clock tower.", - "id": 15103 - }, - { - "image_path": "/content/drive/MyDrive/combined/3607ca92692e8706.jpg", - "response": "A stop sign and a \"Only\" sign are on a pole at an intersection.", - "id": 15104 - }, - { - "image_path": "/content/drive/MyDrive/combined/19de682af553041e.jpg", - "response": "A brick wall with a painting of a man on it. The man is wearing a suit and a tie. There is also a stop sign and a one way sign painted on the wall.", - "id": 15105 - }, - { - "image_path": "/content/drive/MyDrive/combined/17c0115aebed9d5d.jpg", - "response": "A traffic light with a green walk signal on.", - "id": 15106 - }, - { - "image_path": "/content/drive/MyDrive/combined/42f6f7bc803635f6.jpg", - "response": "A stop sign with a snail painted on it.", - "id": 15107 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f6f05d0d117f2d6.jpg", - "response": "A stop sign with two green street signs on top of it.", - "id": 15108 - }, - { - "image_path": "/content/drive/MyDrive/combined/1826b69aeef65da9.jpg", - "response": "A stop sign with a decoration of a green palm tree on it.", - "id": 15109 - }, - { - "image_path": "/content/drive/MyDrive/combined/246cb8905bd4fbc1.jpg", - "response": "A stop sign with a cardboard sign below it that says \"DEAF\". The stop sign is attached to a metal pole and the cardboard sign is attached to a metal pole as well. The poles are in front of a house.", - "id": 15110 - }, - { - "image_path": "/content/drive/MyDrive/combined/40bf45a3791dac86.jpg", - "response": "A red stop sign sitting on the side of a road.", - "id": 15111 - }, - { - "image_path": "/content/drive/MyDrive/combined/1633f9f22f7b2d31.jpg", - "response": "A stop sign with a 4-way sign underneath it.", - "id": 15112 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ca19363b968dbe.jpg", - "response": "The image features a pair of black and green i-Rocks H15 headphones on a white surface. The headphones are connected by a black cord and have a black and green color scheme. The i-Rocks logo is visible on both the cord and the headphones. The cord has a small button on each end, with one of them being closer to the top of the image and the other one being closer to the bottom of the image.", - "id": 15113 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb29b715e91da3f.jpg", - "response": "A red stop sign with white lettering and a sticker on it that says \"haven't eaten animals\". It is attached to a metal pole and is located in front of a tall brick building.", - "id": 15114 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e5e0f30f5f6763b.jpg", - "response": "A sign that says \"Stop\" and has information about opting out of military recruiters.", - "id": 15115 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e0490f524a65b21.jpg", - "response": "A stop sign that has been vandalized with graffiti.", - "id": 15116 - }, - { - "image_path": "/content/drive/MyDrive/combined/107b1376e761c8a4.jpg", - "response": "A stop sign with graffiti on it that says \"War\" underneath the word stop.", - "id": 15117 - }, - { - "image_path": "/content/drive/MyDrive/combined/36fe276d229816fa.jpg", - "response": "A stop sign with the word vote splitting next to it.", - "id": 15118 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ceb4870e491f7c.jpg", - "response": "A stop sign with a sticker underneath that says \"Eating Animals\".", - "id": 15119 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4443f09522a880.jpg", - "response": "A stop sign with graffiti reading \"can't stop\" on it.", - "id": 15120 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bf276d2b52df4f1.jpg", - "response": "A stop sign with graffiti on it that says \"CAPITALISM\" underneath the word STOP.", - "id": 15121 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9b52b33ae6a8d8.jpg", - "response": "A computer keyboard is in front of a sign that says \"STOP\" and instructs people to see a librarian for printing.", - "id": 15122 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f46d673892e5c6.jpg", - "response": "A red stop sign at a street corner.", - "id": 15123 - }, - { - "image_path": "/content/drive/MyDrive/combined/431d3546f1189614.jpg", - "response": "A stop sign with two wind turbines behind it.", - "id": 15124 - }, - { - "image_path": "/content/drive/MyDrive/combined/15d562256fed9ce4.jpg", - "response": "A red and yellow sign with the number 50 on it.", - "id": 15125 - }, - { - "image_path": "/content/drive/MyDrive/combined/124dd3c241af7c7e.jpg", - "response": "A stop sign on a street corner with a brick building in the background. There are also cars parked on the street and a no parking sign.", - "id": 15126 - }, - { - "image_path": "/content/drive/MyDrive/combined/318e8c0d125c41f9.jpg", - "response": "A red stop sign with white lettering.", - "id": 15127 - }, - { - "image_path": "/content/drive/MyDrive/combined/15986b7b18a14a9f.jpg", - "response": "A stop sign is standing next to a railroad crossing sign.", - "id": 15128 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c5dd1de2954ebc.jpg", - "response": "a red stop sign with white lettering", - "id": 15129 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f6ef3da70c7e15.jpg", - "response": "A stop sign that has been vandalized with graffiti.", - "id": 15130 - }, - { - "image_path": "/content/drive/MyDrive/combined/3185036b47b8da4c.jpg", - "response": "A stop sign with a street sign on top of it.", - "id": 15131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1947ba1d96c443d8.jpg", - "response": "A man standing next to a collection of stop signs and street signs.", - "id": 15132 - }, - { - "image_path": "/content/drive/MyDrive/combined/323ce6626c522de6.jpg", - "response": "A stop sign with two street signs above it.", - "id": 15133 - }, - { - "image_path": "/content/drive/MyDrive/combined/384b8b7bc363b1cd.jpg", - "response": "A red stop sign with white lettering.", - "id": 15134 - }, - { - "image_path": "/content/drive/MyDrive/combined/3226cc6459ac8f50.jpg", - "response": "a stop sign with a blue sky in the background", - "id": 15135 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ad45c8a7722f683.jpg", - "response": "A bunch of stop signs are sticking out of the ground in a yard.", - "id": 15136 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c194e13cb1a73a1.jpg", - "response": "A red stop sign with white trim and white lettering.", - "id": 15137 - }, - { - "image_path": "/content/drive/MyDrive/combined/445568e99c2861d7.jpg", - "response": "A red stop sign with white lettering and a white border.", - "id": 15138 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a8568db0f925f9d.jpg", - "response": "A blurry photo of a street sign at night. The sign is red and white and features a picture of a tractor. The sign is written in French and says \"Sauf livraisons\" which translates to \"except for deliveries\". There is a person walking down the street in the background.", - "id": 15139 - }, - { - "image_path": "/content/drive/MyDrive/combined/48a275fbc175cc10.jpg", - "response": "A stop sign with graffiti on it that says \"quest\" underneath the word stop.", - "id": 15140 - }, - { - "image_path": "/content/drive/MyDrive/combined/489412b8a2025164.jpg", - "response": "A red stop sign with the word \"Shopping\" written underneath it.", - "id": 15141 - }, - { - "image_path": "/content/drive/MyDrive/combined/5672162112fd4d65.jpg", - "response": "A stop sign with a sticker on it that says \"Hammer Time!\"", - "id": 15142 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad81f3575658bb7.jpg", - "response": "A stop sign with a tree in the background.", - "id": 15143 - }, - { - "image_path": "/content/drive/MyDrive/combined/45eaeaaa31fb2343.jpg", - "response": "A stop sign with multiple stickers on it, including one that says \"The Panic.\"", - "id": 15144 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a940160673c669f.jpg", - "response": "The image shows a group of people walking down a sidewalk next to a stop sign. The stop sign has been vandalized with graffiti, which reads \"PMA.\" The sign is also covered in stickers, including one that says \"The Point.\" The scene appears to be taking place during the day, and there are several cars visible in the background.", - "id": 15145 - }, - { - "image_path": "/content/drive/MyDrive/combined/440840f8acb67f9d.jpg", - "response": "A stop sign with the word \"nihilism\" written underneath it.", - "id": 15146 - }, - { - "image_path": "/content/drive/MyDrive/combined/440f7e510553d1a4.jpg", - "response": "A red stop sign that has been vandalized with stickers and graffiti. It is located on a city street corner near a building.", - "id": 15147 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f2848616d942d96.jpg", - "response": "The image shows a city street with several cars parked on the side of the road. There is a red sports car parked near the curb, and another red car further down the street. Several people are walking on the sidewalk, some of them carrying handbags. A few people are also using cell phones. There are a few cars parked in front of a fence, and a few potted plants are placed along the sidewalk. The buildings on the opposite side of the street have glass windows.", - "id": 15148 - }, - { - "image_path": "/content/drive/MyDrive/combined/0789e1d8064d6697.jpg", - "response": "a group of people standing around a tree", - "id": 15149 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad1815057327f4e.jpg", - "response": "A street scene with a yellow taxi cab in the foreground.", - "id": 15150 - }, - { - "image_path": "/content/drive/MyDrive/combined/10ac8c431efc904e.jpg", - "response": "A man sitting in a yellow taxi cab with the words \"NYC Taxi\" written on the door.", - "id": 15151 - }, - { - "image_path": "/content/drive/MyDrive/combined/09a49bc5cf58b847.jpg", - "response": "The image shows a large theater building on a city street. The theater has a sign that displays the current movie showing, which is The Lion King. People can be seen standing outside the theater, and there is a yellow taxi nearby. The street is lined with palm trees and several cars are parked along the curb.", - "id": 15152 - }, - { - "image_path": "/content/drive/MyDrive/combined/114ffcdef333cf08.jpg", - "response": "A double decker bus is driving down the street, with a large advertisement for the Philippines on the side. There are multiple people standing on the sidewalk, including a group of women with their hair in ponytails. One person is wearing a red jacket, and another has a backpack on. There are also multiple cars on the street, including a yellow taxi.", - "id": 15153 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad1a51511ffa541.jpg", - "response": "The image shows a city street lined with trees and parked cars. There are two yellow taxis parked along the curb, and other cars are parked further back. Several people are walking on the sidewalk, and one person is carrying a handbag. There is a man wearing a blue shirt and shorts, and another person with a white shirt and black pants. The scene appears to be in the shade, with some sunlight coming through the trees.", - "id": 15154 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b9d91fc5fe41d40.jpg", - "response": "A yellow boat floating on top of a river next to a tall green tree.", - "id": 15155 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d4f11241c60efaa.jpg", - "response": "A street scene with many red and white taxis driving down the road.", - "id": 15156 - }, - { - "image_path": "/content/drive/MyDrive/combined/1079d274d2730d15.jpg", - "response": "A busy city street at night with cars, buses, and taxis driving down the road. The cars have their headlights on and there are many people walking on the sidewalks. The buildings are brightly lit and there are many signs on the buildings and street lights.", - "id": 15157 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fa94d3cd995f018.jpg", - "response": "A yellow taxi cab sits in a parking lot.", - "id": 15158 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e354af6d427b485.jpg", - "response": "A street sign warning of alligator teeth.", - "id": 15159 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c92b40f1cbcebca.jpg", - "response": "A yellow school bus is parked on the side of the street.", - "id": 15160 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d48401e5648b1e9.jpg", - "response": "A busy city street with cars, taxis, and a police car. There are also several pedestrians walking around.", - "id": 15161 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c840974bf0844d9.jpg", - "response": "The image depicts a city street filled with traffic and pedestrians. There are several cars, including a row of taxis, driving down the street. The street is also lined with buildings on both sides. In addition to the cars, there are numerous people walking on the sidewalk, some carrying handbags. A few traffic lights are visible along the street, controlling the flow of traffic.", - "id": 15162 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e308694dfb4b528.jpg", - "response": "A white classic car with a Massachusetts license plate is parked on the side of a city street. The car has a red top and is parked next to a black fire hydrant. There are two parking meters on the street, one on the left side of the car and one on the right side. The car has silver grills and headlights and a gold emblem on the hood.", - "id": 15163 - }, - { - "image_path": "/content/drive/MyDrive/combined/096fbf748b37cf7b.jpg", - "response": "An orange and white train is on the tracks in the city.", - "id": 15164 - }, - { - "image_path": "/content/drive/MyDrive/combined/07cce5fbd1fe2ef9.jpg", - "response": "The image depicts a busy city intersection with a mix of vehicles and pedestrians. There is a yellow taxi cab stopped at the crosswalk, along with a white and blue bus. A silver car is also stopped in the intersection, and a few people are walking around the area. A bicycle can be seen parked on the sidewalk, and a few other bicycles are being ridden by people. The scene is quite lively and bustling with activity.", - "id": 15165 - }, - { - "image_path": "/content/drive/MyDrive/combined/0973482ce8a0beb9.jpg", - "response": "A black and white photo of a man standing on a stool on a city street. He is photographing another man who is kneeling on the street. The street has several cars and a taxi cab. There are also a few people walking around. There is a store with a sign that says \"Loteria\" and another store with a sign that says \"Tazza\". There is also a restaurant with a sign that says \"A la Carta\".", - "id": 15166 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d319dc867dec9f3.jpg", - "response": "A yellow race car with the number 33 on it is driving on a track.", - "id": 15167 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5cb69ab22988cc.jpg", - "response": "The car has a license plate that says ANUSTART.", - "id": 15168 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a92a6f5799ccda6.jpg", - "response": "A street scene with a large brick building that has a McDonald's restaurant in the bottom floor.", - "id": 15169 - }, - { - "image_path": "/content/drive/MyDrive/combined/0efe5370f4b47124.jpg", - "response": "The image depicts a busy city street filled with traffic. There are two yellow taxi cabs driving down the street, one in front of the other, and a third taxi cab further behind them. A silver bus is also driving down the street, adding to the traffic. There are several other vehicles on the road, including cars and a truck. The scene is quite lively and bustling with activity.", - "id": 15170 - }, - { - "image_path": "/content/drive/MyDrive/combined/0888951356b0feb5.jpg", - "response": "A blurry photo of a yellow taxi cab driving down a street.", - "id": 15171 - }, - { - "image_path": "/content/drive/MyDrive/combined/110d32926ef30172.jpg", - "response": "A taxi cab with the letters \"CPH\" on the side.", - "id": 15172 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ce53bc54dacf1f.jpg", - "response": "A Mario mascot is standing on the sidewalk between two taxicabs. A group of people is standing around the mascot, including a man and a woman in business suits, a woman in a black shirt and black pants, and another woman in a red shirt and jeans. There is a man in a suit and tie standing behind the group. There is a traffic light in the background on the right side of the street.", - "id": 15173 - }, - { - "image_path": "/content/drive/MyDrive/combined/1baff70947706365.jpg", - "response": "A parking lot with several trucks and cars, including a grey car and two red trucks. There is a fence and a building in the background.", - "id": 15174 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d7ea4c8280768e2.jpg", - "response": "A blurry yellow taxi cab is driving down a city street.", - "id": 15175 - }, - { - "image_path": "/content/drive/MyDrive/combined/143c071849ed260f.jpg", - "response": "A pair of red Nike sneakers are on the street. The street is filled with traffic and pedestrians. There are many tall buildings on both sides of the street. There is a billboard for the musical \"Les Miserables\" on one of the buildings. There are many traffic lights along the street.", - "id": 15176 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9788701398e5e0.jpg", - "response": "A billboard with a picture of a woman on it is next to a taxi cab.", - "id": 15177 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aef0cd67d89a584.jpg", - "response": "A row of taxis are stopped on the side of the street.", - "id": 15178 - }, - { - "image_path": "/content/drive/MyDrive/combined/220c90884cded523.jpg", - "response": "a street scene with a few cars and taxis driving down the road.", - "id": 15179 - }, - { - "image_path": "/content/drive/MyDrive/combined/21d60e0822064acb.jpg", - "response": "A taxi cab is driving down a city street.", - "id": 15180 - }, - { - "image_path": "/content/drive/MyDrive/combined/173b150dd5a1d8ed.jpg", - "response": "A busy street with many signs in a foreign country.", - "id": 15181 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b3ab9dafb2e6f1.jpg", - "response": "A city street with a red car driving down the middle of the road.", - "id": 15182 - }, - { - "image_path": "/content/drive/MyDrive/combined/2221e34c41d99554.jpg", - "response": "A busy city street filled with lots of people and traffic.", - "id": 15183 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb308af988c938f.jpg", - "response": "A man in a long black coat and red hat is standing on a sidewalk next to a yellow taxi. There is another taxi in the background, as well as a black truck and a car. In the distance, there is a person holding an umbrella.", - "id": 15184 - }, - { - "image_path": "/content/drive/MyDrive/combined/226ba7388c00ced7.jpg", - "response": "A yellow taxi cab driving down a busy city street.", - "id": 15185 - }, - { - "image_path": "/content/drive/MyDrive/combined/2758113d7a359a0b.jpg", - "response": "A street view of a city with a sign for parking above a building. There is a line of cars parked on the street and a few buildings on the side.", - "id": 15186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d09a5e61275c9bf.jpg", - "response": "The image shows a large, modified truck parked on a city street. The monster truck has two large wheels on the side and is painted yellow, black, and green. There are several people standing around the truck, some of them appear to be working on it. A couple of cars are also visible in the scene, one parked beside the truck and another one further away in the background.", - "id": 15187 - }, - { - "image_path": "/content/drive/MyDrive/combined/22a36aa8147af869.jpg", - "response": "A yellow taxi cab driving on a bridge with a sign above that says \"Brooklyn QNS Expwy- Cadman Plaza W\". There are many buildings in the background.", - "id": 15188 - }, - { - "image_path": "/content/drive/MyDrive/combined/188cb4119bb847cb.jpg", - "response": "A red taxi cab driving down a street.", - "id": 15189 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eed2f697d9d96fd.jpg", - "response": "A busy city street filled with lots of people and taxi cabs.", - "id": 15190 - }, - { - "image_path": "/content/drive/MyDrive/combined/12fe7d7a02727a7e.jpg", - "response": "The image shows a wet street with many cars driving on it. There is a yellow and black leopard print car driving down the street, followed by a zebra print car. A couple of people are crossing the street, and a man in a brown coat is waiting to cross as well. There are traffic lights along the street, some of which are red. The scene also includes a building with many windows and a stop sign.", - "id": 15191 - }, - { - "image_path": "/content/drive/MyDrive/combined/27c06b3e25483ed7.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 15192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ec4892619879110.jpg", - "response": "a car with a yellow and blue color scheme", - "id": 15193 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c4552e98578503d.jpg", - "response": "A busy city street with tall buildings in the background.", - "id": 15194 - }, - { - "image_path": "/content/drive/MyDrive/combined/13780d164dec6702.jpg", - "response": "An ambulance car is parked in front of an ambulance truck.", - "id": 15195 - }, - { - "image_path": "/content/drive/MyDrive/combined/293622ee67983ed5.jpg", - "response": "A yellow Escolar bus is driving through a body of water.", - "id": 15196 - }, - { - "image_path": "/content/drive/MyDrive/combined/11d0cab445306eed.jpg", - "response": "A yellow taxi cab with the word \"NYC Taxi\" on the side.", - "id": 15197 - }, - { - "image_path": "/content/drive/MyDrive/combined/15882612669be448.jpg", - "response": "A night time view of the Caesar's Palace hotel and casino.", - "id": 15198 - }, - { - "image_path": "/content/drive/MyDrive/combined/20db2442fbf936f5.jpg", - "response": "A blurry image of a yellow taxi cab driving down a street.", - "id": 15199 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e16b79f7ae60e4b.jpg", - "response": "A map with a yellow taxi cab icon in the lower left corner. The map shows the location of a taxi cab. The distance to the taxi cab is 1.4 miles. There is a phone icon in the top left corner. The phone icon is next to the number 318. There is a speech bubble with the words \"View ride details\" in the top left corner. There is a button that says \"Ride\" in the top left corner. There is a button that says \"Next\" in the top right corner. There is a button that says \"Nearby\" in the top right corner. There is a button that says \"All\" in the top right corner. There is a button that says \" favorites\" in the top right corner. There is a button that says \"Share\" in the top right corner. There is a button that says \"Logout\" in the top right corner. There is a button that says \"Add stop\" in the top right corner. There is a button that says \"Info\" in the top right corner. There is a button that says \"Help\" in the top right corner. There is a button that says \"About\" in the top right corner. There is a button that says \"Report a problem\" in the top right corner. There is a button that says \"Support\" in the top right corner. There is a button that says \"Sign up\" in the top right corner. There is a button that says \"Log in\" in the top right corner. There is a button that says \"Get the app\" in the top right corner. There is a button that says \"Nearby\" in the top right corner. There is a button that says \"Rides\" in the top right corner. There is a button that says \"History\" in the top right corner. There is a button that says \"Create\" in the top right corner. There is a button that says \"View\" in the top right corner. There is a button that says \"Calendar\" in the top right corner. There is a button that says \"Settings\" in the top right corner. There is a button that says \"Share\" in the top right corner. There is a button that says \"Logout\" in the top right corner. There is a button that says \"Add stop\" in the top right corner. There is a button that says \"Info\" in the top right corner. There is a button that says \"Help\" in the top right corner", - "id": 15200 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e709856b19731bd.jpg", - "response": "A busy city street filled with lots of traffic and pedestrians.", - "id": 15201 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b2195d9cd1b2b6f.jpg", - "response": "The image shows a city street with a mix of old and new buildings. There is a red brick building with many windows on the corner, and another brick building nearby. A few other buildings in the area are made of concrete and have many windows as well. The street is lined with cars, including a silver car parked near the bottom of the frame, a yellow taxi, and a few other vehicles. A few pedestrians are also visible on the sidewalk.", - "id": 15202 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c5003d91f7234a6.jpg", - "response": "A busy city street with cars, trucks, and pedestrians. There is a yellow taxi cab stopped in the intersection. People are walking on the sidewalk and crossing the street. There is a bike on the sidewalk. A bus is on the street, as well as a truck and a FedEx van. Storefronts line the street, including one for a shop called Zig Shop.", - "id": 15203 - }, - { - "image_path": "/content/drive/MyDrive/combined/1161c99ca1e9d727.jpg", - "response": "A row of colorful houses line a street.", - "id": 15204 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e80216cd9c142b7.jpg", - "response": "a building with a tower in the background, cars driving on the street, people walking on the sidewalk, and a taxi sign on top of a car.", - "id": 15205 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b1a6fab9e5536ee.jpg", - "response": "The Golden Nugget is a large casino with bright lights and a large neon sign above the entrance. There are many people standing outside the casino, and a few cars are parked nearby. The scene takes place in Las Vegas, Nevada.", - "id": 15206 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d8052e9f0072638.jpg", - "response": "a train on a train track at night", - "id": 15207 - }, - { - "image_path": "/content/drive/MyDrive/combined/17d04054ffd70261.jpg", - "response": "A group of people standing in front of a fountain.", - "id": 15208 - }, - { - "image_path": "/content/drive/MyDrive/combined/23bf701a5b001652.jpg", - "response": "A yellow truck with a large alligator on top of it.", - "id": 15209 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba7f824b7286c94.jpg", - "response": "A green car is parked in a parking lot in front of a building. The building has arches on the second floor. There is a motorcycle parked in front of a green car. A person is walking in the background. There are two cars parked behind the green car, one is yellow and the other one is orange.", - "id": 15210 - }, - { - "image_path": "/content/drive/MyDrive/combined/1876fa9861e4fa05.jpg", - "response": "A taxi cab is pulled over on the side of the road, and a group of people are standing outside of it. Some of the people are wearing orange vests. In the background, there are cars and a truck on the road.", - "id": 15211 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d6856aa125b358.jpg", - "response": "A yellow school bus with the number 6749 on the back.", - "id": 15212 - }, - { - "image_path": "/content/drive/MyDrive/combined/170ecbaec3a711c1.jpg", - "response": "A busy city street filled with lots of people and traffic.", - "id": 15213 - }, - { - "image_path": "/content/drive/MyDrive/combined/297412b64ff28a1f.jpg", - "response": "A busy city street with many people and cars. There is a crowd of people standing on the sidewalk, and a few cars driving down the street. There is also a taxi cab driving down the street.", - "id": 15214 - }, - { - "image_path": "/content/drive/MyDrive/combined/171c558463a41943.jpg", - "response": "A woman in a black shirt and sunglasses is getting out of a yellow car.", - "id": 15215 - }, - { - "image_path": "/content/drive/MyDrive/combined/14434c62a53c8689.jpg", - "response": "A taxi cab is driving down the street in front of a bus. The taxi cab is yellow and black and has the words \"Newark Taxi\" written on the side. The bus is a white and blue color and has the words \"Clean Air Hybrid Electric Bus\" written on the side. The cab driver is wearing a white shirt.", - "id": 15216 - }, - { - "image_path": "/content/drive/MyDrive/combined/2187282c2dcc218d.jpg", - "response": "The image depicts a busy city street filled with lots of yellow taxis. There are at least six taxis visible in the scene, with some parked and others moving along the road. The street appears to be in New York City, as suggested by the presence of many billboards and the man walking down the sidewalk wearing a backpack. The backpack is a distinctive feature of the city, and the man walking down the sidewalk is likely a pedestrian navigating the bustling urban environment.", - "id": 15217 - }, - { - "image_path": "/content/drive/MyDrive/combined/117888e9865556fd.jpg", - "response": "A woman in a blue dress is walking down the street. She is wearing high heels and carrying a black purse. She is looking at her cell phone. There is a yellow taxi cab stopped in front of her. A man is riding a bike in the background. There are several other people in the scene, some of them are carrying handbags.", - "id": 15218 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af3c64a676b66eb.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 15219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f9d9f7dd82d5f0b.jpg", - "response": "A couple of taxis are parked outside of the South Place Hotel.", - "id": 15220 - }, - { - "image_path": "/content/drive/MyDrive/combined/161dcc822b96052f.jpg", - "response": "A busy city street with lots of tall buildings.", - "id": 15221 - }, - { - "image_path": "/content/drive/MyDrive/combined/2235bca399bfd395.jpg", - "response": "A busy city intersection with many people crossing the street.", - "id": 15222 - }, - { - "image_path": "/content/drive/MyDrive/combined/2649511b64ff5498.jpg", - "response": "A street scene with a pile of trash on the side of the road. There are also several cars parked along the street and one taxi cab. There are people walking on the sidewalk and a few signs on the street.", - "id": 15223 - }, - { - "image_path": "/content/drive/MyDrive/combined/1daf09612004fe93.jpg", - "response": "A map of a city is posted on a sign.", - "id": 15224 - }, - { - "image_path": "/content/drive/MyDrive/combined/19413ab125078281.jpg", - "response": "a man standing in the street holding a sign advertising a special price for a taxi ride", - "id": 15225 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fbf77d343c22737.jpg", - "response": "A movie theater marquee is lit up at night, and a bus is passing by. There are several cars on the street, and some people are walking around. The sky is dark, and the streetlights are on.", - "id": 15226 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b9618e6ba8d7421.jpg", - "response": "A busy street in London with a variety of vehicles and pedestrians. There are cars, taxis, bicycles, and people walking on the sidewalk. The street is lined with buildings and traffic lights.", - "id": 15227 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b1a8edef38be129.jpg", - "response": "A busy city street with many people and cars. There is a yellow taxi cab driving down the street. In the background, there are many buildings and a large crowd of people.", - "id": 15228 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f14388c4e9189d2.jpg", - "response": "A taxi cab parked next to a bike rack with a bicycle on it.", - "id": 15229 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e4f9f282cb0cd13.jpg", - "response": "A busy city street with cars, taxis, and pedestrians.", - "id": 15230 - }, - { - "image_path": "/content/drive/MyDrive/combined/260a736bb7a776a6.jpg", - "response": "A busy street with traffic lights, cars, buses and people walking around.", - "id": 15231 - }, - { - "image_path": "/content/drive/MyDrive/combined/265592d623531617.jpg", - "response": "The image shows a city street filled with old yellow cars. There are several people walking around, some of them near the cars, and others further away. A few cars have Moritz logos on them.", - "id": 15232 - }, - { - "image_path": "/content/drive/MyDrive/combined/35556a9665fdaf1c.jpg", - "response": "A yellow taxi cab parked on the side of a road.", - "id": 15233 - }, - { - "image_path": "/content/drive/MyDrive/combined/330e4eda37c78ed5.jpg", - "response": "A grey BMW 3 series parked in a parking lot.", - "id": 15234 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ce1837566e54662.jpg", - "response": "A large billboard with a man's face on it is lit up at night.", - "id": 15235 - }, - { - "image_path": "/content/drive/MyDrive/combined/372c7f58425c9146.jpg", - "response": "A woman in a black dress and high heels is walking across the street. She is carrying a clutch in her hand and appears to be in a hurry. The street is busy with cars and a yellow taxi cab is parked nearby. The woman is wearing a watch on her left wrist.", - "id": 15236 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fa44ce3ff24db5a.jpg", - "response": "A busy city street with lots of traffic and pedestrians. There is a white van driving down the street, a yellow taxi cab turning on the street, and a white car driving in the opposite direction. There are also several pedestrians walking on the sidewalk.", - "id": 15237 - }, - { - "image_path": "/content/drive/MyDrive/combined/32317efb3d9b6970.jpg", - "response": "A snowy city street with buildings on both sides of the road.", - "id": 15238 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f13ef94b3a56723.jpg", - "response": "A construction site with a yellow crane in the background and a yellow and black hazard sign in the foreground.", - "id": 15239 - }, - { - "image_path": "/content/drive/MyDrive/combined/2caac0d9eb51d850.jpg", - "response": "A taxi cab with the number 865 on the door.", - "id": 15240 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f39a8f0171a2e82.jpg", - "response": "A street scene with a yellow taxi driving down the road. There is a person walking on the sidewalk and another person standing in front of a store called Shoe Gasm. The store has a large window display. There is a fire escape on the building to the left of the street.", - "id": 15241 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d20c78585578c86.jpg", - "response": "A street scene with a yellow car on the right side of the image. There is a large sign on the side of a building that says \"Panasonic\". In front of the building is a sidewalk with a bench. There are also trees and a stop sign in the scene.", - "id": 15242 - }, - { - "image_path": "/content/drive/MyDrive/combined/37beffc514585dcc.jpg", - "response": "A yellow van with the words Trotters Independent Trading Co. painted on the side.", - "id": 15243 - }, - { - "image_path": "/content/drive/MyDrive/combined/34ef818e79674b51.jpg", - "response": "The image features a street scene with three yellow taxis driving down the road. The taxis are parked in front of a large stone building with columns and a sign that reads \"The TURNER\". There is also an American flag flying in front of the building. Some people are visible in the scene, with one person walking on the right side of the image and two people walking on the left side of the image. There is also a car parked in the foreground of the image.", - "id": 15244 - }, - { - "image_path": "/content/drive/MyDrive/combined/34e5c09e01d30529.jpg", - "response": "The image shows a busy street in Muscat, Oman. There are many cars parked and driving on the street, which is lined with white buildings. In the background, there is a large mountain. Storefronts line the street, and one has a sign that says \"Artificial Jewellery.\" There are also a few people in the scene, but they are not the main focus of the image.", - "id": 15245 - }, - { - "image_path": "/content/drive/MyDrive/combined/3704b4d100aaa20c.jpg", - "response": "A toll booth with a yellow taxi cab passing through.", - "id": 15246 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ae94d088fc0e04d.jpg", - "response": "A busy city street filled with lots of people and traffic.", - "id": 15247 - }, - { - "image_path": "/content/drive/MyDrive/combined/3950f58c08b866c5.jpg", - "response": "A fireman walking down the street with a fire hose over his shoulder.", - "id": 15248 - }, - { - "image_path": "/content/drive/MyDrive/combined/34ba14ac69ee5318.jpg", - "response": "A busy city street with many people crossing the street. There are many cars and a bus on the street. The sky is blue with white clouds. There are many buildings surrounding the street.", - "id": 15249 - }, - { - "image_path": "/content/drive/MyDrive/combined/3406cf27d690c653.jpg", - "response": "The image depicts a busy city street filled with traffic, including multiple taxicabs. There are several people walking on the sidewalk, some carrying handbags and others holding cell phones. One person is taking a picture with a cell phone. The street is lined with tall buildings and there is a crosswalk in the scene.", - "id": 15250 - }, - { - "image_path": "/content/drive/MyDrive/combined/349cc6da2159ce84.jpg", - "response": "A busy city street filled with lots of traffic and people walking around.", - "id": 15251 - }, - { - "image_path": "/content/drive/MyDrive/combined/34383171f3665d1d.jpg", - "response": "A large building with a Coca Cola sign on the top of it.", - "id": 15252 - }, - { - "image_path": "/content/drive/MyDrive/combined/39c6a622805a6e69.jpg", - "response": "A building with a sign that reads Juntang Station.", - "id": 15253 - }, - { - "image_path": "/content/drive/MyDrive/combined/38752e4348e0780f.jpg", - "response": "The image shows a parking area with several cars parked in it. The parking area is under a glass and metal roof, and the floor is painted with yellow lines. There are two yellow taxi cabs among the parked cars. Some people are also visible in the image, although they are not the main focus.", - "id": 15254 - }, - { - "image_path": "/content/drive/MyDrive/combined/373d1bd1510b3d75.jpg", - "response": "a busy city street with cars, taxis, and billboards.", - "id": 15255 - }, - { - "image_path": "/content/drive/MyDrive/combined/3937d5b07026ab3b.jpg", - "response": "A city street at night with a row of parked cars on the side. The street is wet and there is a yellow \"Only\" marking on the road. There are traffic lights in the background and a few people walking around.", - "id": 15256 - }, - { - "image_path": "/content/drive/MyDrive/combined/38daaabe0bd76282.jpg", - "response": "A man standing on a street corner with a backpack on.", - "id": 15257 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a9b98a51f4976c5.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 15258 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b242e5b9c1373e6.jpg", - "response": "A blurry photo taken from inside a car of a street sign that says \"b36\" on it.", - "id": 15259 - }, - { - "image_path": "/content/drive/MyDrive/combined/36df5032a1c235d8.jpg", - "response": "The image shows a busy city street with traffic driving both ways. There are several cars on the street, including a yellow taxi cab and a black SUV. The cars are driving at different speeds and are in various positions relative to each other. Some cars are closer to the foreground, while others are further away. The street is also lined with palm trees, which add a touch of greenery to the urban scene.", - "id": 15260 - }, - { - "image_path": "/content/drive/MyDrive/combined/360f516e8357d5d5.jpg", - "response": "A TransMilenio bus is driving down the street at night. The bus is red and yellow and has the word TransMilenio written on the side. There are several people visible on the bus.", - "id": 15261 - }, - { - "image_path": "/content/drive/MyDrive/combined/308a278386715574.jpg", - "response": "A busy city street with tall buildings in the background. There are three taxis driving down the street, one in the front and two behind it. A car is driving behind the taxis and a van is driving in front of the taxis. In front of the buildings, there is a statue and a fountain.", - "id": 15262 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c8a9ae2df78ccfe.jpg", - "response": "The image features a white and yellow race car with the word \"Audi\" on the hood. The car is parked in a lot with other cars and people around it. There is a person visible in the background, wearing a blue shirt. The car has a Michelin sticker on the front and the number 2 is visible on the side.", - "id": 15263 - }, - { - "image_path": "/content/drive/MyDrive/combined/3776960288a6a277.jpg", - "response": "A yellow Opel GT is parked on the street.", - "id": 15264 - }, - { - "image_path": "/content/drive/MyDrive/combined/32798b609f78887d.jpg", - "response": "A man in a black shirt and sunglasses is talking to a woman in a vest. They are standing in front of a yellow taxi.", - "id": 15265 - }, - { - "image_path": "/content/drive/MyDrive/combined/394661ab74481234.jpg", - "response": "A pair of trains on the tracks at a station.", - "id": 15266 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3bc758010e3ef9.jpg", - "response": "A large collection of toy cars of various makes and models.", - "id": 15267 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d5b45b810748999.jpg", - "response": "A yellow and white taxi cab is parked on the side of a road.", - "id": 15268 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f4e503184a49931.jpg", - "response": "A black and white photo of a city street with two yellow taxi cabs on the road. The cabs are stopped at an intersection and there are several other cars on the street. The buildings on either side of the street are very tall and there are a few pedestrians visible in the background.", - "id": 15269 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a9325c476ce43d8.jpg", - "response": "The image shows a city street filled with yellow taxi cabs. There are multiple cars visible, including one that has a man in a white shirt sitting in the passenger seat. The street appears to be busy with traffic, and there are a few other people visible in the scene. The photo was taken during the day, and the lighting is bright.", - "id": 15270 - }, - { - "image_path": "/content/drive/MyDrive/combined/53e5b3cba41d49fe.jpg", - "response": "A yellow taxi cab is parked on the street in front of a building. There is another taxi cab parked further down the street. There is a man walking on the sidewalk in front of a building. There is a car parked on the street in front of a building. There is a person walking on the sidewalk in front of a building. There is a person walking on the sidewalk in front of a building.", - "id": 15271 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f69467e7c1046f2.jpg", - "response": "A busy city street filled with lots of yellow taxi cabs.", - "id": 15272 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a3b175f4c0c252e.jpg", - "response": "A city street filled with lots of traffic.", - "id": 15273 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b4b46778f990576.jpg", - "response": "A busy city street filled with traffic and lined with tall buildings.", - "id": 15274 - }, - { - "image_path": "/content/drive/MyDrive/combined/4977e6bfed5e70dc.jpg", - "response": "A NYPD police car parked on the side of the street.", - "id": 15275 - }, - { - "image_path": "/content/drive/MyDrive/combined/4928d4e1a4ba2b2c.jpg", - "response": "The image depicts a busy city street filled with traffic and pedestrians. There are three yellow taxis driving down the street, and a bus is also visible on the road. The scene appears to be in New York City, as indicated by the presence of the iconic yellow taxis.", - "id": 15276 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b024651efd6d22.jpg", - "response": "A bus and a car are on a busy street.", - "id": 15277 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d5b667851bf3d4.jpg", - "response": "A fancy dress joke shop with a Halloween sign in the window.", - "id": 15278 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b89f43a84286723.jpg", - "response": "A busy city street with a tall brick building on the left side. There are several cars and a truck parked along the street, including a yellow taxi cab and a white van. The building has many windows and a fire escape on the side.", - "id": 15279 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b923b854549cce4.jpg", - "response": "A busy city street at night with a yellow taxi cab driving down the road.", - "id": 15280 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bdb4681201319a7.jpg", - "response": "The image shows a busy city street filled with traffic. There are two taxi cabs, one positioned in front of the other, driving down the street. Other vehicles on the road include cars, trucks, and a bus. The street is lined with tall buildings on both sides. A man is visible in the scene, standing next to a taxi.", - "id": 15281 - }, - { - "image_path": "/content/drive/MyDrive/combined/4494367584383212.jpg", - "response": "A city street with a yellow building that says The Crown on it. There is a stop sign on the corner and a bicycle parked on the sidewalk. A grey car is parked on the street and several people are walking around.", - "id": 15282 - }, - { - "image_path": "/content/drive/MyDrive/combined/546375d1b5218a77.jpg", - "response": "The image shows a busy mall with several people using the escalators. There is a man in a black jacket and tie standing on the escalator, and another man with a black hat and a woman with dark hair walking down the escalator. There are two cars visible in the background, one near the top of the escalator and the other further back. A man is holding a handbag, and a woman is carrying a handbag and a cell phone. A man is walking past a Starbucks coffee shop, and there is a green and white sign with the Starbucks logo.", - "id": 15283 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ab35c806e6cdf9e.jpg", - "response": "A busy city intersection with traffic lights, street signs, and people walking around. There are multiple cars and a bus driving through the intersection. The traffic lights are clearly visible, and the street signs are easy to read. The people walking around seem to be going about their business, and the buildings in the background add to the bustling city atmosphere.", - "id": 15284 - }, - { - "image_path": "/content/drive/MyDrive/combined/404cffdc7fb956ea.jpg", - "response": "The Kodak Theatre is a tan building with a sign that says \"Kodak Theatre\" on the top. There is a giant bottle of vodka in front of the theatre, and a taxi cab is passing by. There are many people walking around outside the theatre, and a street light is above the scene.", - "id": 15285 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aca71e1ab1c2e38.jpg", - "response": "A man wearing a black tank top is riding a red bike down a busy street. He is wearing sunglasses and has a beard. There are many cars on the street, including several yellow taxis. A truck is also on the road. There are several pedestrians on the sidewalk, and one of them is carrying a red umbrella. There are a few traffic lights along the street, and one of them is showing a walk signal. There are also a few fire hydrants in the scene.", - "id": 15286 - }, - { - "image_path": "/content/drive/MyDrive/combined/40a3a8b0139e0259.jpg", - "response": "A street scene with cars parked on the side of the street and traffic driving down the road.", - "id": 15287 - }, - { - "image_path": "/content/drive/MyDrive/combined/5315ea46737368ba.jpg", - "response": "A busy city street with many cars and taxis driving down the road. There is a van and a taxi turning the corner. A traffic light is visible on the left side of the street. A large building with many colorful advertisements on it is in the background.", - "id": 15288 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a364228be97bf0f.jpg", - "response": "In the image, there is a scene of a busy street with many cars and people. There is a man in a uniform standing in the street, possibly directing traffic. There are also several pedestrians walking around, some with backpacks. There are multiple cars on the street, including a yellow taxi cab and a red car with people inside. There is also a truck and a motorcycle visible in the scene. The street appears to be bustling with activity.", - "id": 15289 - }, - { - "image_path": "/content/drive/MyDrive/combined/4274662695ec1f91.jpg", - "response": "In the image, there is a large building with a red and white color scheme, which is the Tokyo Station. It has a prominent clock tower and is surrounded by many cars, including several taxis. In the background, there are two modern skyscrapers, one on the left and the other on the right. The sky is blue with some clouds.", - "id": 15290 - }, - { - "image_path": "/content/drive/MyDrive/combined/41fd69a9e115a900.jpg", - "response": "A Skoda Yeti with Coastguard markings and the registration number HP62 EVO.", - "id": 15291 - }, - { - "image_path": "/content/drive/MyDrive/combined/540b2e8ee3b3eb81.jpg", - "response": "A car is parked on the street in front of a store. The store sells a variety of items including subway sandwiches, fruit, candy, and ice cream. There are several people in the area, some of which are walking or standing near the store. There are also two bicycles parked on the sidewalk.", - "id": 15292 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ae4476179b17e7.jpg", - "response": "A busy city street filled with lots of people and traffic.", - "id": 15293 - }, - { - "image_path": "/content/drive/MyDrive/combined/516bdbd10eb1b525.jpg", - "response": "A street scene with cars parked on the side of the street.", - "id": 15294 - }, - { - "image_path": "/content/drive/MyDrive/combined/41fbd5a49d27c7b0.jpg", - "response": "A group of people standing outside of a white van.", - "id": 15295 - }, - { - "image_path": "/content/drive/MyDrive/combined/521b4dce31008459.jpg", - "response": "A street scene with a large building in the background. There are several cars and buses parked along the street.", - "id": 15296 - }, - { - "image_path": "/content/drive/MyDrive/combined/4527ebc2f76ff898.jpg", - "response": "A mobility scooter parked on the sidewalk with a bicycle attached to the back.", - "id": 15297 - }, - { - "image_path": "/content/drive/MyDrive/combined/4273ee1f9cfe5516.jpg", - "response": "A police car is parked on the side of the road.", - "id": 15298 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c754302a7f45fc3.jpg", - "response": "A row of ambulances are parked next to each other on the pavement.", - "id": 15299 - }, - { - "image_path": "/content/drive/MyDrive/combined/45051a8158bca733.jpg", - "response": "A busy city street filled with lots of traffic and neon lights.", - "id": 15300 - }, - { - "image_path": "/content/drive/MyDrive/combined/476198cff16798d6.jpg", - "response": "a yellow and black car on the street", - "id": 15301 - }, - { - "image_path": "/content/drive/MyDrive/combined/4879853c8cbca6a3.jpg", - "response": "A blue car with a logo on the door for Minichamps.", - "id": 15302 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f7db17bab6b4403.jpg", - "response": "a toll booth with cars lined up to get through", - "id": 15303 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cf2fed04943c088.jpg", - "response": "a busy city street with a yellow taxi cab driving down the road.", - "id": 15304 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c499fe229ba2e03.jpg", - "response": "A car is driving down a rainy street.", - "id": 15305 - }, - { - "image_path": "/content/drive/MyDrive/combined/42bc51d3e55a91f9.jpg", - "response": "A city street at night with many cars parked on the side of the road.", - "id": 15306 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c821c2fef04a00.jpg", - "response": "A busy city street with traffic and pedestrians. There is a traffic light in the middle of the street and a statue of a man on a horse on a pedestal. There are buildings on both sides of the street and a sign that says \"ALQUILO OFICINA\" in the foreground.", - "id": 15307 - }, - { - "image_path": "/content/drive/MyDrive/combined/446601ea295bd336.jpg", - "response": "A white and blue Mercedes van driving down the road with a man(328,356),(450,492) inside.", - "id": 15308 - }, - { - "image_path": "/content/drive/MyDrive/combined/50de37badd67a06d.jpg", - "response": "A large group of people are gathered in the street holding signs.", - "id": 15309 - }, - { - "image_path": "/content/drive/MyDrive/combined/495b7bb8e84c2f46.jpg", - "response": "A busy city street with many cars and neon lights.", - "id": 15310 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b29761c51548efa.jpg", - "response": "A taxi cab is seen in the street after it crashed into a pile of wood.", - "id": 15311 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de5c3861d55a253.jpg", - "response": "A yellow and white public transit bus stopped at a bus stop.", - "id": 15312 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cef2522b36f8c57.jpg", - "response": "A wet city street with old buildings on either side.", - "id": 15313 - }, - { - "image_path": "/content/drive/MyDrive/combined/912efd20e7c3223b.jpg", - "response": "A city street scene with a few cars parked on the side of the road. There are two taxis on the street, one parked near the curb and the other driving down the street. There are also a few pedestrians walking around.", - "id": 15314 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fa8c2a7db421962.jpg", - "response": "A close up of two cell phones, one on top of the other, both are black and silver.", - "id": 15315 - }, - { - "image_path": "/content/drive/MyDrive/combined/111dc844914ec141.jpg", - "response": "A cell phone with a silver and black color scheme.", - "id": 15316 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a1a9a99f177e69a.jpg", - "response": "A person holding a black LG smartphone with the home screen displayed. The phone has the time 19:18 and the temperature of 19 degrees on the screen. The phone has a white keyboard in the background.", - "id": 15317 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b42f6fda13a1b69.jpg", - "response": "A blackberry phone sitting on a wooden table.", - "id": 15318 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1a350fd1e1d689.jpg", - "response": "A Lumia phone in blue with a white background.", - "id": 15319 - }, - { - "image_path": "/content/drive/MyDrive/combined/078c7eaf1967610d.jpg", - "response": "A city street with two red telephone booths on the sidewalk.", - "id": 15320 - }, - { - "image_path": "/content/drive/MyDrive/combined/13382af57189560d.jpg", - "response": "A white smartphone and a black smartphone are side by side. The white phone has a white case on it and the time on the screen reads 11:34. The black phone has a black case on it and the time on the screen reads 11:35. Both phones have a home screen with various apps including email, messaging, phone, and internet. The white phone also has a weather app with a red thermometer and a yellow sun.", - "id": 15321 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ff1f0fbc662072a.jpg", - "response": "A poster for the blackberry curve 9300 smartphone.", - "id": 15322 - }, - { - "image_path": "/content/drive/MyDrive/combined/0da96c8ee1c04252.jpg", - "response": "A Huawei ascend g620s phone.", - "id": 15323 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b6a08b4f48ff23.jpg", - "response": "The image shows three different sizes of iPhones. The one on the left is the iPhone 6, the one in the middle is the iPhone 6 Plus, and the one on the right is the iPhone 5S. They are all standing upright on a wooden table.", - "id": 15324 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e3bb8a24a4c8f9e.jpg", - "response": "An iPhone 4S displaying the home screen with the red \"Clock Blocks\" logo in the middle.", - "id": 15325 - }, - { - "image_path": "/content/drive/MyDrive/combined/14b891c2bb8581ac.jpg", - "response": "A group of three blackberries are lined up next to each other on a white counter. The phones are different sizes and have different features.", - "id": 15326 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac62068d1328100.jpg", - "response": "A television screen with an advertisement for a Nokia phone.", - "id": 15327 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ffb27bbc62baec9.jpg", - "response": "The image shows three iPhone 3GS phones. The one on the left is the largest and is rotated 45 degrees. The middle phone is the same size as the one on the left, but is upright. The phone on the right is the smallest and is also upright. The screens of the phones show different things. The largest phone on the left shows a picture of a man and a woman. They are standing in a grassy field and the woman is holding a green frisbee. The middle phone shows the Voice Control screen. There is a compass in the middle of the screen and the words \"3:15 PM\" are in the top right corner. The smallest phone on the right shows a clock. The hands are black and the face is white. The words \"3:15 PM\" are in the top right corner and the hands are pointing to the numbers. The background is white.", - "id": 15328 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d68bf6bbdb58d2b.jpg", - "response": "A wooden table with a white Samsung Galaxy Note 2, the box it came in, and other items on it.", - "id": 15329 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0deaff4fff8f58.jpg", - "response": "In the image there is a person holding a blue credit card above an iPhone. The iPhone is displaying a transaction taking place and has a Square card reader attached to the top of it. The transaction amount is $15.33 and the merchant has entered \"Sightglass Coffee\" as the merchant name. The person is also holding a second iPhone which is not actively participating in the transaction.", - "id": 15330 - }, - { - "image_path": "/content/drive/MyDrive/combined/10aade57742e3946.jpg", - "response": "Two cellphones are next to each other on a table. One is a black and silver phone and the other is a black phone.", - "id": 15331 - }, - { - "image_path": "/content/drive/MyDrive/combined/10176f794f0d6f0f.jpg", - "response": "A display of four LG smartphones, two of which are the LG Optimus L7 II and LG Optimus L5 II, are placed on a table in front of a wall with information about the L Series II.", - "id": 15332 - }, - { - "image_path": "/content/drive/MyDrive/combined/07998add014aee6f.jpg", - "response": "A person holding a smartphone in their hand.", - "id": 15333 - }, - { - "image_path": "/content/drive/MyDrive/combined/0be8de20a2fcc635.jpg", - "response": "A person is holding a black Cat phone in their hand. The phone has a numeric keypad and a screen. The time on the phone is 10:29. The phone is on the home screen with the word 'select' on the bottom. There are also 4 options above the select button which are menu, select, controll and phone. The phone has the word 'cat' on the top left corner of the phone. The background is a blurred image of a tiled floor. The person is standing in front of a store counter with multiple items on it. The items are wrapped in plastic and have Arabic writing on them.", - "id": 15334 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bbcd186e6a594e.jpg", - "response": "A table with a colorful table cloth has a bottle of Corona beer, a margarita, and two cell phones on it.", - "id": 15335 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f3bf271343d20c.jpg", - "response": "A cell phone with a black and silver color scheme is shown. The phone has a clock on the screen. The clock is blue and white and has the word \"ON\" in orange. The phone has a button marked \"Call.\"", - "id": 15336 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ff992b83cc686cb.jpg", - "response": "A person is holding a cell phone in their hand and touching the screen. The phone is a black Android smartphone and is running the Android operating system. The phone has a digital clock on the screen that reads 3:48. There are several icons on the home screen, including Reader, Maps, and Browser. The phone's phone number is displayed on the bottom of the screen. The person is using their index finger to interact with the phone.", - "id": 15337 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e7df90de8f339b4.jpg", - "response": "A red phone mounted to a wall under a sign that says \"TechShop USPTO Hotline\".", - "id": 15338 - }, - { - "image_path": "/content/drive/MyDrive/combined/436bc582d7b9457d.jpg", - "response": "A white BlackBerry Q10 smartphone.", - "id": 15339 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dbd7e0f75113aef.jpg", - "response": "A white Samsung phone laying on a white surface.", - "id": 15340 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ff472e0ec122015.jpg", - "response": "A Lenovo vibe smartphone next to its box on a white sheet.", - "id": 15341 - }, - { - "image_path": "/content/drive/MyDrive/combined/295f729a0f8543b3.jpg", - "response": "An LG watch phone in black and silver with a leather band.", - "id": 15342 - }, - { - "image_path": "/content/drive/MyDrive/combined/28c0d21964294471.jpg", - "response": "A black htc phone sits next to its box.", - "id": 15343 - }, - { - "image_path": "/content/drive/MyDrive/combined/53849984178ea6bd.jpg", - "response": "A couple of cell phones sitting next to each other.", - "id": 15344 - }, - { - "image_path": "/content/drive/MyDrive/combined/4be5075ef0026694.jpg", - "response": "A black Cyon mobile phone with a touch screen.", - "id": 15345 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0eccced820ea68.jpg", - "response": "Two cell phones sitting next to each other on a table.", - "id": 15346 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a5fc6eb1d3afede.jpg", - "response": "A laptop and two cellphones are on display. The laptop is a Dell brand and is open. The two cellphones are on stands and are on display. One of the cellphones is a Blackberry and has a key chain attached to it. The other cellphone is a Blackberry Storm.", - "id": 15347 - }, - { - "image_path": "/content/drive/MyDrive/combined/15fed96cc660cdea.jpg", - "response": "A silver Nokia cell phone sitting on a grey cloth.", - "id": 15348 - }, - { - "image_path": "/content/drive/MyDrive/combined/3035cc955ef57fd8.jpg", - "response": "A magazine page with a blue guitar on it.", - "id": 15349 - }, - { - "image_path": "/content/drive/MyDrive/combined/2125f07537bfee03.jpg", - "response": "A pink iPhone case with a white string attached to it.", - "id": 15350 - }, - { - "image_path": "/content/drive/MyDrive/combined/208dd266104bf75d.jpg", - "response": "A red telephone booth on the sidewalk.", - "id": 15351 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e524b34a59c342d.jpg", - "response": "A phone with a grey keyboard and a screen.", - "id": 15352 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ce369294de6293c.jpg", - "response": "The image shows a black Intex mobile phone. The Intex logo is displayed on the screen, and there is a picture of the Earth in the background. The phone has a numeric keypad and the numbers are arranged in a 3 by 4 grid. The buttons are green, red, and white. The phone has a screen with a resolution of 176 x 220 pixels. The background of the screen is black with a white grid. The phone has a black border.", - "id": 15353 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa1209bd044a8c1.jpg", - "response": "An iPhone with a phone app on the screen.", - "id": 15354 - }, - { - "image_path": "/content/drive/MyDrive/combined/18c576cb6d99662d.jpg", - "response": "A cell phone with the Facebook app on the screen.", - "id": 15355 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ade8e6ee0be7645.jpg", - "response": "A cell phone with a silver and black color scheme.", - "id": 15356 - }, - { - "image_path": "/content/drive/MyDrive/combined/45932cd861571775.jpg", - "response": "A white smartphone is plugged into a white stand.", - "id": 15357 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f6c910c83d7543b.jpg", - "response": "A black Nokia phone with a YouTube app open.", - "id": 15358 - }, - { - "image_path": "/content/drive/MyDrive/combined/24a7dd8d6c25f446.jpg", - "response": "A cell phone sitting on top of a box.", - "id": 15359 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1627f18a63ddd0.jpg", - "response": "A blue and silver cell phone sits on a wooden desk.", - "id": 15360 - }, - { - "image_path": "/content/drive/MyDrive/combined/3be9d865af4a8cac.jpg", - "response": "A device that looks like a smartphone or PDA is sitting on a charging dock. It has a screen with data on it. There is a wall outlet with a cord plugged into it behind the device. A wall light is turned on above the device.", - "id": 15361 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d3ff5511f5fda08.jpg", - "response": "A row of five LG Android phones, each in a different color, are lined up side by side. From left to right, the phones are black, white, blue, pink, and red. Each phone has a cartoon character on the home screen. The white phone has a green alien from the movie \"Galaxy Express 999\" and a yellow bird from the game \"Puzzle & Dragons\". The blue phone has a blue bird from the game \"Smurfs\" and a yellow bird from the game \"Guns of Glory\". The pink phone has a blue Smurf from the game \"Smurfs\" and a yellow bird from the game \"Smurfs: The Lost Village\". The red phone has a blue Smurf from the game \"Smurfs\" and a yellow bird from the game \"Smurfs: The Lost Village\". The home screens also show the LG logo, the Google logo, and the apps icons for \"LG Apps\", \"Google Search\", and \"Gmail\".", - "id": 15362 - }, - { - "image_path": "/content/drive/MyDrive/combined/5326b3cbb8117cff.jpg", - "response": "A wooden table with two cell phones and a tablet in their respective stands.", - "id": 15363 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a07bca96ffce580.jpg", - "response": "A Micromax X350 phone with a silver and white color scheme. The time is 12:00 and there are four names listed on the screen, Lisa Smith, David, Lisa, and Tim. Below the screen are four buttons labeled Go to, Menu, Names, and Menu. Below that are four buttons labeled abc, def, ghi, and jkl.", - "id": 15364 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a5ba921a1208bd9.jpg", - "response": "A person in a black suit jacket is holding a black iPhone. The person is also wearing a black blazer. The iPhone is showing the weather and has a blue background. There is a white Apple logo on the bottom right corner of the phone. In front of the person is a laptop with a blue screen and a circuit board. There is a brown bag to the left of the person.", - "id": 15365 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ceb8acb15da69da.jpg", - "response": "A black iPhone with a silver rim around the screen. The screen displays the home page of the AnyGeo website. The time is 1:09 PM. There are 3 sections on the page. The first section is \"Create a Simple iPhone App on the fly\" with a link to \"Heres a tip for those that areent mobile developers but would like to create a simple iPhone app on the fly\" and a link to \"More $ for Data As A Service - This Time it's Factual\" with a link to \"@Factual. The second section is \"SimpleGeo Context and Places (free)\" with a link to \"SimpleGeo Context and Places\" and a link to \"SimpleGeo Place\" with a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"SimpleGeo Place\" and a link to \"", - "id": 15366 - }, - { - "image_path": "/content/drive/MyDrive/combined/25a9a977b53cf44c.jpg", - "response": "A person is holding an open book with a picture of a cell phone on the cover. The book is white and the picture of the phone is in the center of the cover. The person is using their fingers to simulate using the phone.", - "id": 15367 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7df8bc913ce40d.jpg", - "response": "The image shows four LG Optimus Chic Android smartphones, two in red and two in black. The phones are displayed standing up with their home screens facing forward. The home screens show various apps such as Facebook, Twitter, Google Search, and YouTube. The red phones are positioned on the left and right, with the black phones placed in the middle left and right. The phones have a reflection on the surface they are placed on.", - "id": 15368 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1ce1344cb68df1.jpg", - "response": "A black and white photo of a pay phone.", - "id": 15369 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ae592c1e076ea36.jpg", - "response": "A person is holding a HTC One phone in their hand. The phone is silver and is being held up to display the home screen. The phone has a green table behind it.", - "id": 15370 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a8d60d674d30a57.jpg", - "response": "An iPhone 4 is on display in a store window.", - "id": 15371 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c968de7c79e28c.jpg", - "response": "In the image a person is holding a black disc in one hand and is using a Samsung smart device to scan for objects such as kids phone, wifi phone and tv remote. The device is showing the keys on the screen.", - "id": 15372 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3fc1324d7dbfeb.jpg", - "response": "A phone with a screen that says YouTube. Below that are three options Dailymotion, Metacafe and Mobiistar.", - "id": 15373 - }, - { - "image_path": "/content/drive/MyDrive/combined/4062b259eb7be95a.jpg", - "response": "A red Nokia phone with the word Tetris on the screen.", - "id": 15374 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d61184009535bb5.jpg", - "response": "A box for a toy designed for an iPhone or iPod touch.", - "id": 15375 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e6ba94f670892d.jpg", - "response": "A group of three Sony Xperia smartphones, two of which are the Xperia Z3 and Xperia Z3 Compact, are displayed on a wooden table. The Z3 is black and is slightly larger than the other two phones. The Z3 Compact is white and is slightly smaller than the Z3. The red phone is the Xperia Z3 Compact.", - "id": 15376 - }, - { - "image_path": "/content/drive/MyDrive/combined/4352ed003b4a1398.jpg", - "response": "A person is holding three different smart phones.", - "id": 15377 - }, - { - "image_path": "/content/drive/MyDrive/combined/156744c4602e4800.jpg", - "response": "A person is holding a white Samsung Galaxy Note 4 in their hand. The phone is held upright and the person's hand is cupping the bottom of the phone. The phone has a white body with a purple and blue screen. The time on the screen is 11:37 and there is a weather widget on the screen. The phone has a home screen with several apps including Google, YouTube, and Facebook.", - "id": 15378 - }, - { - "image_path": "/content/drive/MyDrive/combined/48ec5117ad123d76.jpg", - "response": "A group of four blackberry phones sit in a display case.", - "id": 15379 - }, - { - "image_path": "/content/drive/MyDrive/combined/412b31ce905437ea.jpg", - "response": "A black LG Optimus T, an Android smartphone, is displayed with its home screen showing.", - "id": 15380 - }, - { - "image_path": "/content/drive/MyDrive/combined/4441d595aad4e8db.jpg", - "response": "A cell phone with a black and silver color scheme.", - "id": 15381 - }, - { - "image_path": "/content/drive/MyDrive/combined/3caf41f451e39248.jpg", - "response": "A red YAVI cell phone is displayed on a screen. The screen also has a picture of a wheat field on it. The phone is 4.33 inches tall and 1.00 inches wide.", - "id": 15382 - }, - { - "image_path": "/content/drive/MyDrive/combined/266588edcbd8c205.jpg", - "response": "A black Cyon mobile phone with a reflection of the phone on the bottom.", - "id": 15383 - }, - { - "image_path": "/content/drive/MyDrive/combined/1875f6d2cd07969f.jpg", - "response": "A white Samsung Galaxy S6 is laying on a white table. The phone is on and the time on the screen is 20:38. The phone has a home screen with several apps including Google, YouTube, and the Samsung app. The bottom of the screen has a row of icons including email, camera, and settings.", - "id": 15384 - }, - { - "image_path": "/content/drive/MyDrive/combined/3418e3565a884789.jpg", - "response": "a person typing on a blackberry phone in the dark", - "id": 15385 - }, - { - "image_path": "/content/drive/MyDrive/combined/249f7328756b1372.jpg", - "response": "A desk with a computer, phone, and other office items on it.", - "id": 15386 - }, - { - "image_path": "/content/drive/MyDrive/combined/17718a81448e8327.jpg", - "response": "The image displays a black Zen X5 mobile phone. The phone has a large display with a butterfly on it. The butterfly is black and orange in color and is superimposed over a yellow sunflower with brown stamens. The phone has a large red button with the numbers 0 to 9 written in white font. The button is located directly below the display. The phone has a numeric keypad with the numbers written in white font on black keys. The keys are arranged in four rows and four columns. The top left and bottom right corners of the phone have black speaker grills. The top right corner has the brand name of the phone in white font. The bottom right corner has the phone model name in white font. The phone is turned on and is displayed in a white background.", - "id": 15387 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ab46e6f0223cba3.jpg", - "response": "The image features two women standing next to each other and holding up various LG smartphones. Each woman is showcasing a different LG phone, and they are both smiling brightly. One woman is holding a red LG phone, while the other has a black LG phone. Both women are displaying the front of the phones, allowing us to see the design and features.", - "id": 15388 - }, - { - "image_path": "/content/drive/MyDrive/combined/28a1f2139ae612da.jpg", - "response": "A smartphone with a silver and black color scheme.", - "id": 15389 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dc42b6cc4f006a3.jpg", - "response": "A cell phone is shown next to a picture of the same phone.", - "id": 15390 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5e213050a30afc.jpg", - "response": "A black Nokia cell phone with a keyboard.", - "id": 15391 - }, - { - "image_path": "/content/drive/MyDrive/combined/09a8f70b970e36b7.jpg", - "response": "A large projection screen that reads \"Over 300+ 0 Organics products\" is on in a darkened room.", - "id": 15392 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a2ee7357dd5b551.jpg", - "response": "A bottle of beer sitting next to a computer keyboard.", - "id": 15393 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a88128ae5cfaaa4.jpg", - "response": "A television that is turned on and displaying a CNN news report.", - "id": 15394 - }, - { - "image_path": "/content/drive/MyDrive/combined/078e869e45b2a781.jpg", - "response": "A poster for the World Press Photo 2014 exhibition at the\u7acb\u547d\u9928\u5927\u5b66\u56fd\u9645\u548c\u5e73\u548c\u30cb\u30e5\u30fc\u30b9\u7279\u5225\u5c55.", - "id": 15395 - }, - { - "image_path": "/content/drive/MyDrive/combined/08dd0d9b71f1866c.jpg", - "response": "A flat screen TV mounted on a wall.", - "id": 15396 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a1312ef780d8d53.jpg", - "response": "A desktop computer monitor is sitting on top of a desk. Underneath the monitor is a keyboard and a mouse. There are several books scattered around the desk. A cup is placed on the left side of the desk and a TV is mounted on the wall behind the desk.", - "id": 15397 - }, - { - "image_path": "/content/drive/MyDrive/combined/09a4bc8cb3ad8fac.jpg", - "response": "A television with Classic Sinatra playing on it.", - "id": 15398 - }, - { - "image_path": "/content/drive/MyDrive/combined/08eba1dcd468a027.jpg", - "response": "A man is watching a video on a television screen.", - "id": 15399 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a8030ea8eacba71.jpg", - "response": "A laptop computer with a screen that is also a television.", - "id": 15400 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d273a898b4d25e.jpg", - "response": "A television screen that says \"Chuck\" on it.", - "id": 15401 - }, - { - "image_path": "/content/drive/MyDrive/combined/084d57f19cab3c2a.jpg", - "response": "The image shows a large group of people standing around a display of Samsung televisions. There are four televisions on display, all of which are black and have a blue Samsung logo on them. The people are standing at various distances from the televisions, with some standing close to the televisions and others standing further away. Some of the people are wearing name tags, and one person is holding a camera. The room has a blue and white color scheme, and there are several potted plants in the room.", - "id": 15402 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a21d4c058183a35.jpg", - "response": "A black LG television that is turned off.", - "id": 15403 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f6d8649f4fd66e.jpg", - "response": "Four soccer players(133,123),(369,900)(684,144),(899,885)(558,128),(711,903)(667,210),(755,882) standing around a soccer ball(322,796),(399,900)", - "id": 15404 - }, - { - "image_path": "/content/drive/MyDrive/combined/30096e7e939f4fc1.jpg", - "response": "A man in blue is playing cricket on a field.", - "id": 15405 - }, - { - "image_path": "/content/drive/MyDrive/combined/3732fe460278951a.jpg", - "response": "A basketball game is being played in a crowded arena. Players are on the court, some are standing and some are running. The ball is in the air and players are trying to block it. Fans are watching the game from the stands.", - "id": 15406 - }, - { - "image_path": "/content/drive/MyDrive/combined/3539db86f000fb74.jpg", - "response": "A group of men playing soccer on a field.", - "id": 15407 - }, - { - "image_path": "/content/drive/MyDrive/combined/3372d6e059bcbb81.jpg", - "response": "The image depicts a crowded stadium filled with fans watching a football game. The players are in the middle of the field, competing fiercely. One player is holding a football in his hand, while others are holding sports equipment. The scoreboard is visible at the top of the image, displaying the score of the game.", - "id": 15408 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b526351cf6349a2.jpg", - "response": "A group of soccer players wearing green and white striped jerseys are standing on a field.", - "id": 15409 - }, - { - "image_path": "/content/drive/MyDrive/combined/29c74a4c7bc7b60e.jpg", - "response": "A soccer player makes a diving save on a penalty kick.", - "id": 15410 - }, - { - "image_path": "/content/drive/MyDrive/combined/2834c6da8de1d02c.jpg", - "response": "a group of men playing basketball on a court in front of a crowd", - "id": 15411 - }, - { - "image_path": "/content/drive/MyDrive/combined/2931cd38928e811f.jpg", - "response": "The image features a football stadium full of fans wearing red. A marching band is performing in the middle of the field and a large scoreboard is visible at the end of the field.", - "id": 15412 - }, - { - "image_path": "/content/drive/MyDrive/combined/39df0dfbeb286324.jpg", - "response": "The image shows a baseball game in progress with a large crowd of people watching the game. There are three baseball players on the field, one of them wearing a uniform with the number 9 on the back. The player is standing on the pitcher's mound, preparing to throw the ball. The other two players are positioned in the field, one closer to the right side of the image and the other closer to the left.", - "id": 15413 - }, - { - "image_path": "/content/drive/MyDrive/combined/39f84c29a048b8da.jpg", - "response": "Four people standing on a soccer field with a white and black soccer net behind them.", - "id": 15414 - }, - { - "image_path": "/content/drive/MyDrive/combined/393bbc75bb8d82c9.jpg", - "response": "A baseball player standing in the outfield.", - "id": 15415 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bfe45dc854c5630.jpg", - "response": "In the image, there is a man wearing a green shirt and pants, holding a black hat in his hand. He is standing on a baseball field, possibly getting ready to catch a ball. There are other people in the background, some of them closer to the field, while others are further away. The field has white lines marking the bases and a fence surrounding it.", - "id": 15416 - }, - { - "image_path": "/content/drive/MyDrive/combined/31fd46a459acdf3f.jpg", - "response": "A baseball player is tossing his bat down after hitting the ball.", - "id": 15417 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e4137a7899f109e.jpg", - "response": "A football game is in progress, with players on the field wearing different colored jerseys. The players are running and jumping around, trying to gain possession of the ball. The crowd in the stands is watching the game intently, cheering for their favorite teams. The stands are filled with people, and there are also some empty seats. A few people are holding umbrellas, providing shade from the sun.", - "id": 15418 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a00cd44e41a590e.jpg", - "response": "A man in a white shirt and white hat is swinging a golf club.", - "id": 15419 - }, - { - "image_path": "/content/drive/MyDrive/combined/3897e80dcb0601c0.jpg", - "response": "The image shows a group of men standing on a lush green field. There are six men in total, wearing uniforms and holding sports equipment. They are positioned in a line on the field, with some of them closer to the foreground and others further away. The men are engaged in a game of cricket, as indicated by the presence of a wicket and other cricket gear. The wicket is located towards the right side of the field, and there are two men standing near it, possibly the batters. The other four men are standing further back on the field, possibly as fielders or waiting for their turn at bat. The uniforms the men are wearing are predominantly white, and some of them have numbers on their backs. The overall atmosphere of the image suggests a competitive and exciting game of cricket.", - "id": 15420 - }, - { - "image_path": "/content/drive/MyDrive/combined/320ae96161796489.jpg", - "response": "A large crowd of people are in their seats at a Liverpool soccer match. The scoreboard above the field shows the final score of 2-3.", - "id": 15421 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c06775cf87f852e.jpg", - "response": "A group of men standing on a baseball field.", - "id": 15422 - }, - { - "image_path": "/content/drive/MyDrive/combined/384fc39d0e448706.jpg", - "response": "A soccer game is being played in a stadium with a large crowd of people watching. The soccer players are on the field wearing different colored jerseys. One player is attempting to kick the ball and other players are trying to block it. There is a referee standing next to the goal and a few players are celebrating a goal.", - "id": 15423 - }, - { - "image_path": "/content/drive/MyDrive/combined/3169dd8f0eb4baa7.jpg", - "response": "A soccer game is being played in a stadium full of fans. The players are on the field wearing uniforms and some are in the process of shaking hands.", - "id": 15424 - }, - { - "image_path": "/content/drive/MyDrive/combined/34afc4d984a1a681.jpg", - "response": "The image depicts a group of professional soccer players engaged in a match. There are at least five players visible, wearing different colored jerseys. The central player is holding a soccer ball, while the others are in various positions, likely anticipating the next move. The players are standing on a grass field, with a crowd of spectators watching the match from the stands. The spectators are positioned at the top, middle, and sides of the field, with some fans wearing red and blue jerseys. The match is being played in a stadium, as indicated by the presence of the crowd and the stands.", - "id": 15425 - }, - { - "image_path": "/content/drive/MyDrive/combined/39c5345adf2f4693.jpg", - "response": "A basketball player in a red uniform is trying to get past another player.", - "id": 15426 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da8b32c7c5cc6b6.jpg", - "response": "A soccer game is being played in a stadium with a green field. There are several players on the field, some of them wearing red and black uniforms. The stadium is not full, with many empty seats in the stands. The players are warming up before the game, kicking the soccer ball around.", - "id": 15427 - }, - { - "image_path": "/content/drive/MyDrive/combined/31c7819a0292a911.jpg", - "response": "A football team is posing for a picture.", - "id": 15428 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e3cc7d39e5de012.jpg", - "response": "A yellow and red score board sits on a field.", - "id": 15429 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee714e0bb5e4aa6.jpg", - "response": "A large scoreboard with two teams' names on it, Citi Field and Coors Field.", - "id": 15430 - }, - { - "image_path": "/content/drive/MyDrive/combined/38f74e47768c8b9b.jpg", - "response": "A soccer game is being played in an empty stadium. There are 11 players on each team, and they are spread out across the field. The game is being played on a green field with a white stripe. The soccer ball is located in the middle of the field, and there are several players around it. The game is being played on a cloudy day.", - "id": 15431 - }, - { - "image_path": "/content/drive/MyDrive/combined/33fecafce9ad7f50.jpg", - "response": "In the image, two boys are playing with a green ball in a grassy field. They have long sticks with nets on the end, and they are using these to hit the ball and catch it. The field is large and open, with a cornfield visible in the background. The boys are wearing shorts and white shirts, and they are running and moving around actively as they play.", - "id": 15432 - }, - { - "image_path": "/content/drive/MyDrive/combined/2911cf583b72907c.jpg", - "response": "Two women(272,336),(401,668)(437,318),(610,684) playing soccer against each other", - "id": 15433 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bf11ddb80fddef5.jpg", - "response": "Soccer players are playing soccer on a field.", - "id": 15434 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fde43f146f723e6.jpg", - "response": "A group of women wearing green and black uniforms are on a basketball court. They are huddled together and high-fiving each other.", - "id": 15435 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ab778afcea93d9.jpg", - "response": "A soccer game is being played in a large stadium. There are many people in the stands watching the game.", - "id": 15436 - }, - { - "image_path": "/content/drive/MyDrive/combined/316858413b8cd7ee.jpg", - "response": "A soccer game is being played on a grass field. There are multiple players wearing different colored jerseys. One player in the middle of the field is about to kick the ball.", - "id": 15437 - }, - { - "image_path": "/content/drive/MyDrive/combined/2979d416a7d90452.jpg", - "response": "A group of men playing a game of cricket on a green field.", - "id": 15438 - }, - { - "image_path": "/content/drive/MyDrive/combined/3738b891b8f4aa61.jpg", - "response": "A baseball player is standing on the pitcher's mound. There are three large, padded characters standing on the field in front of the pitcher. One of the characters is wearing a hat that says \"New York\". The pitcher is wearing a black hat.", - "id": 15439 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8bf05beb4c1867.jpg", - "response": "A baseball game is being played on a field with grass and dirt. There are several players on the field, including a pitcher, a batter, a catcher, and several others in various positions. The pitcher is in the process of throwing the ball to the batter, who is holding a baseball bat and ready to swing. In the background, there are billboards and a wall separating the field from the surrounding area.", - "id": 15440 - }, - { - "image_path": "/content/drive/MyDrive/combined/29fadcfc4fd6d23a.jpg", - "response": "Watford's new signing Etienne Capoue (left) and Heurelho Gomes during a training session at the London Stadium.", - "id": 15441 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b75d16e1570cf8.jpg", - "response": "A baseball stadium with a large scoreboard hanging from the ceiling.", - "id": 15442 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee9a1945c0dbb5c.jpg", - "response": "A soccer game is being played on a grass field. The players are wearing blue and white uniforms. One player has a soccer ball at his feet.", - "id": 15443 - }, - { - "image_path": "/content/drive/MyDrive/combined/30151d024e12b848.jpg", - "response": "A soccer game is being played on a grass field. The players are wearing uniforms and walking around the field. Some players are wearing red and white uniforms, while others are wearing black and white. There is a crowd of people watching the game from the stands, which are full of spectators. The stands have a red and white banner on the side of them.", - "id": 15444 - }, - { - "image_path": "/content/drive/MyDrive/combined/33723febf95151ae.jpg", - "response": "The image depicts an indoor volleyball game in progress with two teams of players competing on a court. There are ten players on the court at any given time, and they are spread out across the court, with some closer to the net and others further away. The players are wearing different colored uniforms, with one team wearing red and white and the other team wearing black and white. The ball is in play, and it is currently in the air, with several players looking up at it. The court has a net running down the middle, and there are several logos and advertisements on the walls surrounding the court.", - "id": 15445 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d3bfc2f4baf6c56.jpg", - "response": "A man is using a fire hydrant to spray water on the ground.", - "id": 15446 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f459b7533f4850b.jpg", - "response": "The image shows a group of men playing soccer on a field. There are several players in the middle of the field, some wearing blue uniforms and others wearing red and white uniforms. The players are actively engaged in the game, running and kicking the soccer ball. There is also a crowd of people watching the game from the sidelines.", - "id": 15447 - }, - { - "image_path": "/content/drive/MyDrive/combined/398c18f3c2389a84.jpg", - "response": "A group of men playing a game of Australian Football in a stadium.", - "id": 15448 - }, - { - "image_path": "/content/drive/MyDrive/combined/39237fdea0e490ce.jpg", - "response": "The image shows a soccer match in progress on a green field. There are several players on the field, some wearing orange uniforms and others wearing blue uniforms. The players are positioned throughout the field, with some closer to the foreground and others further away. A soccer ball is visible in the middle of the field, and a player in the blue uniform is holding a soccer glove. The scene captures the excitement and competition of a soccer match.", - "id": 15449 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d66284001aa78c1.jpg", - "response": "A large group of people in a field playing soccer.", - "id": 15450 - }, - { - "image_path": "/content/drive/MyDrive/combined/31be318663c6ac8c.jpg", - "response": "In the image, a woman wearing a yellow top and green sunglasses is playing volleyball. She is reaching up to hit the ball with her hands. There are several chairs surrounding the court, and a man in an orange shirt is watching the game from the stands.", - "id": 15451 - }, - { - "image_path": "/content/drive/MyDrive/combined/36749d1e6aa4c87f.jpg", - "response": "A group of men playing soccer on a field at night.", - "id": 15452 - }, - { - "image_path": "/content/drive/MyDrive/combined/37a4f4d9e33cccb0.jpg", - "response": "a group of men playing soccer on a field", - "id": 15453 - }, - { - "image_path": "/content/drive/MyDrive/combined/387fe18f0320662b.jpg", - "response": "Two men are fighting in a boxing ring. One man is wearing black shorts with the number 86 on them and is in the middle of a punch. The other man is wearing white shorts with the letter C on them. They are both wearing gloves and are standing in the ring. The ropes of the ring are white and black.", - "id": 15454 - }, - { - "image_path": "/content/drive/MyDrive/combined/30f937df9fc3dd31.jpg", - "response": "a group of boys playing soccer on a field", - "id": 15455 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0e90e76634eea5.jpg", - "response": "The image shows a soccer game in progress on a field. There are two teams of players engaged in play, with one team wearing white and the other team wearing red. One of the players on the red team is lying on the ground in front of the goal, while another player on the red team is attempting to kick the ball. There is also a player wearing green standing in front of the goal. The goalie for the red team is also visible, standing in the goal with his hands on his knees. The field is grassy and the sky is overcast.", - "id": 15456 - }, - { - "image_path": "/content/drive/MyDrive/combined/375594cf604ff63e.jpg", - "response": "A baseball stadium full of people watching the game.", - "id": 15457 - }, - { - "image_path": "/content/drive/MyDrive/combined/3164c02b7c9a870f.jpg", - "response": "a football player in a red uniform running on the field", - "id": 15458 - }, - { - "image_path": "/content/drive/MyDrive/combined/294ddfe19f5063a0.jpg", - "response": "A large crowd of people are at a sporting event.", - "id": 15459 - }, - { - "image_path": "/content/drive/MyDrive/combined/343c393561a25e56.jpg", - "response": "A baseball stadium full of fans watching the game.", - "id": 15460 - }, - { - "image_path": "/content/drive/MyDrive/combined/3742f95f789e4f47.jpg", - "response": "A baseball player swinging a bat at a ball on a field.", - "id": 15461 - }, - { - "image_path": "/content/drive/MyDrive/combined/430f52c4ce1ae115.jpg", - "response": "A soccer field with a scoreboard at one end and a large crowd of people watching the game.", - "id": 15462 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ea05d026226df45.jpg", - "response": "A basketball game is being played on a court. There are two players on the court, one holding a basketball and the other one guarding him. There are chairs placed around the court for spectators.", - "id": 15463 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bde17bb37d4e456.jpg", - "response": "A giant screen at an arena showing a picture of a man kissing a woman.", - "id": 15464 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d9e5a5b18fe5930.jpg", - "response": "A soccer game is being played in a stadium. The crowd is watching the game intently. There are players wearing different colored jerseys. Some players are on the field, while others are in the dugout.", - "id": 15465 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f320652403faca3.jpg", - "response": "A soccer game is being played in a stadium. The two teams are lined up on the field, preparing to start the game. The crowd is watching the game intently.", - "id": 15466 - }, - { - "image_path": "/content/drive/MyDrive/combined/49151d1d8e87fc7e.jpg", - "response": "Soccer players are playing soccer in front of a crowd of fans.", - "id": 15467 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc6657cd885b5be.jpg", - "response": "a woman doing a split on a balance beam", - "id": 15468 - }, - { - "image_path": "/content/drive/MyDrive/combined/4891b6d4c4821426.jpg", - "response": "a group of girls playing volleyball on a court", - "id": 15469 - }, - { - "image_path": "/content/drive/MyDrive/combined/517ee6e61bbca764.jpg", - "response": "A baseball game is in action on a field. A batter is stepping up to the plate and holding a wooden bat. A pitcher is on the mound and a ball is in the air.", - "id": 15470 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad837b381b1162d.jpg", - "response": "A baseball game is being played on a baseball field. There are several players on the field, including a pitcher, batter, and catcher. The pitcher is throwing the ball towards the batter, who is swinging the bat to hit it. The batter is wearing a white uniform with the number 18 on the back. The catcher is wearing a black and white uniform. The umpire is standing behind the catcher, watching the play closely. There is a baseball glove on the field, held by a player. A baseball bat is also visible, being swung by the batter.", - "id": 15471 - }, - { - "image_path": "/content/drive/MyDrive/combined/52e8554d4bfbdab3.jpg", - "response": "A group of young men playing soccer on a field.", - "id": 15472 - }, - { - "image_path": "/content/drive/MyDrive/combined/4942bce39017422e.jpg", - "response": "A group of people playing soccer on a field.", - "id": 15473 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d60c8ca046a66db.jpg", - "response": "A tennis player in an orange shirt and black shorts is on a tennis court swinging a tennis racket at a ball.", - "id": 15474 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e15af2602c68764.jpg", - "response": "A soccer game is being played on a field at night. The players are wearing green and white uniforms. One player is about to kick the ball. There is a white goal in the middle of the field. The number 13 is on the shirt of one of the players.", - "id": 15475 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d8b319c630866f8.jpg", - "response": "A soccer game is being played in a stadium. The field is green and the players are standing on it. Some of them are wearing uniforms. The stadium is full of fans who are watching the game.", - "id": 15476 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c7697dcfb90e3b.jpg", - "response": "A man in a red shirt is kicking a soccer ball on a field.", - "id": 15477 - }, - { - "image_path": "/content/drive/MyDrive/combined/526ae0bbd6c9bdd4.jpg", - "response": "A girl in a red and black soccer uniform is kicking a soccer ball on a field.", - "id": 15478 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bcd2d405bd973f9.jpg", - "response": "A baseball game is being played in a stadium. There is a pitcher on the mound and a batter ready to swing. The catcher is behind the batter and an umpire is standing behind the catcher. There are many people in the stands watching the game. Some of them are sitting in chairs and some are standing. There are also some people standing in the field.", - "id": 15479 - }, - { - "image_path": "/content/drive/MyDrive/combined/3edcd0df0df6032c.jpg", - "response": "A soccer game is being played on a grass field. There are two teams of players wearing different colored jerseys. One team is wearing blue and the other is wearing green. The players are actively engaged in the game, running and passing the soccer ball. There is a net at the end of the field where the ball is headed.", - "id": 15480 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f14c42bf77bf8b4.jpg", - "response": "A volleyball player jumps in the air to hit the ball.", - "id": 15481 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bb9352dbb92b170.jpg", - "response": "A group of people standing in front of a tent that says Chicago Fire Rec Soccer.", - "id": 15482 - }, - { - "image_path": "/content/drive/MyDrive/combined/437df7ccfc9d3d40.jpg", - "response": "A soccer game is being played in a stadium full of people. The field is green and grassy.", - "id": 15483 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c619e86690a0dc7.jpg", - "response": "The image shows a large, open stadium with a field and stands full of people. The stands are filled with fans watching the game, and there is a large banner across the top of the stadium advertising Coca-Cola. The field is green and has a goal post in the middle of it. The stadium is open, with no walls or roof, and the fans are sitting in red seats.", - "id": 15484 - }, - { - "image_path": "/content/drive/MyDrive/combined/5081155a314fac49.jpg", - "response": "A group of young boys playing soccer on a field.", - "id": 15485 - }, - { - "image_path": "/content/drive/MyDrive/combined/4db6d43d361105c5.jpg", - "response": "A soccer game is being played on a grass field. There are two teams of soccer players dressed in red and white and blue and white uniforms. They are lined up on the field before the game begins.", - "id": 15486 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d9224f9665e4bd.jpg", - "response": "A soccer team is lined up on the field, with some players kneeling down and others standing. They are wearing red and white uniforms.", - "id": 15487 - }, - { - "image_path": "/content/drive/MyDrive/combined/414a64a3a9e7b28a.jpg", - "response": "In the image, two boys are playing soccer on a field. They are both running after the soccer ball, which is located towards the center of the field. The boy on the left is wearing a white shirt and burgundy shorts, while the boy on the right is wearing a red shirt and red shorts. There is a white soccer net in the background, and a fence surrounds the field. In the distance, there are cars parked along the street.", - "id": 15488 - }, - { - "image_path": "/content/drive/MyDrive/combined/5080c7d967d0a996.jpg", - "response": "A large crowd of people are in a stadium watching a soccer game. There is a large screen above the field with a red arrow pointing to a person standing on the field.", - "id": 15489 - }, - { - "image_path": "/content/drive/MyDrive/combined/4671de84ac830db2.jpg", - "response": "A group of men playing soccer on a field.", - "id": 15490 - }, - { - "image_path": "/content/drive/MyDrive/combined/4037c8b4f1d31156.jpg", - "response": "A baseball stadium with the name Busch Stadium written on the picture.", - "id": 15491 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c7ff2a4b8cb3b16.jpg", - "response": "A group of men playing soccer on a field.", - "id": 15492 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b62282c5d228ee4.jpg", - "response": "a man holding a tether ball in front of his face", - "id": 15493 - }, - { - "image_path": "/content/drive/MyDrive/combined/529318ffe1fabd85.jpg", - "response": "A group of people in a boxing ring, with one person holding a microphone up to another persons face.", - "id": 15494 - }, - { - "image_path": "/content/drive/MyDrive/combined/53a2570fd76533d0.jpg", - "response": "A group of people playing soccer on a field.", - "id": 15495 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a4ae3ef98e748c6.jpg", - "response": "A table with a computer monitor on it that is showing a football game. On the table are a bunch of snacks and a drink.", - "id": 15496 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e24a50fb16980d.jpg", - "response": "A boy in a red and white uniform playing soccer on a field.", - "id": 15497 - }, - { - "image_path": "/content/drive/MyDrive/combined/532ecdbe8ae6efc4.jpg", - "response": "A group of men playing soccer on a field in front of a crowd.", - "id": 15498 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0dbabab3192f05.jpg", - "response": "Two boxers in the ring, one with a mohawk and the other with a buzz cut. Both are wearing gloves and have tattoos.", - "id": 15499 - }, - { - "image_path": "/content/drive/MyDrive/combined/51c8f36ade368718.jpg", - "response": " A man(283,150),(884,996) with a beard(423,436),(592,618) and a blue shirt(282,536),(885,996) with the letters(597,782),(708,997) NY on it is being interviewed by a reporter(2,168),(549,996).", - "id": 15500 - }, - { - "image_path": "/content/drive/MyDrive/combined/5297cdaf3ad33fa7.jpg", - "response": "a group of men playing rugby on a grass field", - "id": 15501 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d846a3fe2774db1.jpg", - "response": "A soccer team lined up in a circle on the field.", - "id": 15502 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fe09face8901738.jpg", - "response": "The image shows a baseball field with a few people standing around a dugout. There are chairs surrounding the field, and a mountain logo can be seen on a sign. Some people are wearing baseball caps, and a player is holding a baseball bat. Among the people, there are a woman and a child, a man and a woman, and a group of men standing together. A handbag is visible in the scene, and a backpack is also present.", - "id": 15503 - }, - { - "image_path": "/content/drive/MyDrive/combined/50988ddca510526a.jpg", - "response": "The image shows a group of women playing lacrosse on a field. There are three women in the foreground, all holding lacrosse sticks and are dressed in uniforms. The two women on the left are wearing white and red uniforms, while the woman on the right is wearing a red uniform. The women are all actively playing the game, running and passing the ball.", - "id": 15504 - }, - { - "image_path": "/content/drive/MyDrive/combined/53abc3545e4b9b22.jpg", - "response": "A man wearing a red jersey is running on a field.", - "id": 15505 - }, - { - "image_path": "/content/drive/MyDrive/combined/4876a6fb05056b02.jpg", - "response": "a man in a white and blue baseball uniform leaning over with his hands on his knees", - "id": 15506 - }, - { - "image_path": "/content/drive/MyDrive/combined/4268566972635ce4.jpg", - "response": "A large scoreboard at a football stadium.", - "id": 15507 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fc919f4c6d84640.jpg", - "response": "In the image, a baseball player is in the midst of swinging a bat at a ball. The player is wearing a blue and white uniform and is positioned on a baseball field. The baseball bat is clearly visible as it moves through the air near the player's hands. The ball is also visible, floating in the air near the bat. The baseball field has white lines marking the bases and a fence surrounding it. There are several other people in the image, likely teammates and opponents, but they are not in focus.", - "id": 15508 - }, - { - "image_path": "/content/drive/MyDrive/combined/42a7f9fb024854b0.jpg", - "response": "A baseball game is being played in a stadium with a large crowd of people watching. The pitcher is standing on the mound and has just thrown the ball. There are several players on the field, some holding baseball gloves, and others wearing baseball uniforms. The stadium has many flags flying in the background and a large scoreboard at one end.", - "id": 15509 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b793d6420fb4fe1.jpg", - "response": "A group of soccer players are standing on a field.", - "id": 15510 - }, - { - "image_path": "/content/drive/MyDrive/combined/51219400cf2a64a6.jpg", - "response": "A baseball stadium with a crowd of people in the bleachers.", - "id": 15511 - }, - { - "image_path": "/content/drive/MyDrive/combined/44fb35bfb147aca1.jpg", - "response": "A man in a yellow jersey standing on a baseball field.", - "id": 15512 - }, - { - "image_path": "/content/drive/MyDrive/combined/526e697ec6b43f0e.jpg", - "response": "In the image there are two baseball players standing in the outfield. They are wearing white and blue uniforms. In the background there is a large crowd of people watching the game. The stadium has a yellow sign that says \"Let's Boogie\" and several other advertisements.", - "id": 15513 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e506f77baddc586.jpg", - "response": "a person in a costume standing on a ice rink", - "id": 15514 - }, - { - "image_path": "/content/drive/MyDrive/combined/535379db22114ae0.jpg", - "response": "A baseball stadium filled with fans watching the game.", - "id": 15515 - }, - { - "image_path": "/content/drive/MyDrive/combined/49005719cef63fa8.jpg", - "response": "a man holding a large flag on a football field", - "id": 15516 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a8df5b92e2a0ea2.jpg", - "response": "A group of soccer players are on the field.", - "id": 15517 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dad8986ad5a3327.jpg", - "response": "A soccer player in a red jersey stands on the field.", - "id": 15518 - }, - { - "image_path": "/content/drive/MyDrive/combined/4802e340ef2b7aa6.jpg", - "response": "A baseball team is warming up on a baseball field.", - "id": 15519 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c825ce3a822287b.jpg", - "response": "A girl in a blue and black uniform is catching a soccer ball in front of a goal.", - "id": 15520 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cd6539fda582898.jpg", - "response": "A baseball game is being played in a stadium with many fans in the stands. The batter is at home plate and the pitcher is standing nearby. There are players scattered across the field in various positions.", - "id": 15521 - }, - { - "image_path": "/content/drive/MyDrive/combined/40b3dba6a3d5ce7f.jpg", - "response": "The image shows a football game being played on a green field. The field is filled with players wearing different colored jerseys. There are two teams playing against each other, one team wearing purple jerseys and the other team wearing green jerseys. The goalposts are located at the far end of the field and are marked with NFL branding. The crowd in the stands is watching the game intently, with some fans wearing purple and others wearing other colors. There are also some people standing on the field, possibly as part of the game staff or as players preparing to enter the game.", - "id": 15522 - }, - { - "image_path": "/content/drive/MyDrive/combined/484a87359905aa2d.jpg", - "response": "A soccer player wearing a red jersey and white shorts stands on the field with his hands on his hips.", - "id": 15523 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a36a2b5465c3e16.jpg", - "response": "A baseball pitcher in the middle of a pitch.", - "id": 15524 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b587426d83f7e06.jpg", - "response": "A baseball game is in progress with a batter up to plate and a crowd of people watching from the stands. The batter is holding a baseball bat and is in the process of swinging at the ball. The catcher and umpire are also visible behind the batter.", - "id": 15525 - }, - { - "image_path": "/content/drive/MyDrive/combined/546fbcb6dcc0dae2.jpg", - "response": " A football player(409,430),(622,709) in a red and white striped shirt runs across the pitch.", - "id": 15526 - }, - { - "image_path": "/content/drive/MyDrive/combined/550d907da95278ff.jpg", - "response": "A soccer game is being played on a grass field. The players are wearing uniforms and one player has the number 10 on their back. The ball is in play and a player from the Emirates team is trying to get control of it. There is a banner on the side of the field and a person in an orange jacket is watching the game from the stands.", - "id": 15527 - }, - { - "image_path": "/content/drive/MyDrive/combined/55438235f9f6e30e.jpg", - "response": "A group of young men playing soccer on a field.", - "id": 15528 - }, - { - "image_path": "/content/drive/MyDrive/combined/54be025d0285d767.jpg", - "response": "a group of people playing soccer on a field", - "id": 15529 - }, - { - "image_path": "/content/drive/MyDrive/combined/545c49b96a077530.jpg", - "response": "A baseball game is in progress on a grassy field. There are several players on the field, some holding baseball gloves, and others holding baseball bats. The pitcher is in the middle of throwing a ball, and the batter is preparing to swing. There are also a few players on the field wearing baseball uniforms.", - "id": 15530 - }, - { - "image_path": "/content/drive/MyDrive/combined/5490764f638b34ce.jpg", - "response": "The image is of a football team posing for a photo on the field. The team is wearing red and white jerseys and are all standing together for the picture.", - "id": 15531 - }, - { - "image_path": "/content/drive/MyDrive/combined/53c687be92b44137.jpg", - "response": "A group of soccer players are stretching on the field.", - "id": 15532 - }, - { - "image_path": "/content/drive/MyDrive/combined/8f14b6d0c8e26611.jpg", - "response": "In the image, two women's field hockey teams are playing against each other. The team wearing orange and blue uniforms is trying to get the ball from the other team. One of the players from the orange team is holding a green and white field hockey stick and has a ball in front of her. Another player from the orange team is holding a green and white field hockey stick and is wearing orange shoes. The team wearing maroon and white uniforms is trying to get the ball back from the other team. One of the players from the maroon team is holding a maroon and white field hockey stick and is wearing a white headband. The other player from the maroon team is holding a maroon and white field hockey stick and is wearing a blue headband. The players are running and trying to get the ball.", - "id": 15533 - }, - { - "image_path": "/content/drive/MyDrive/combined/c7368efc7e8eb09d.jpg", - "response": "A soccer game is being played on a grass field. Many players are on the field in different positions. Some of them are wearing gloves. The game is being watched by a crowd of people sitting in the stands.", - "id": 15534 - }, - { - "image_path": "/content/drive/MyDrive/combined/ddc464bc98665f70.jpg", - "response": "The image depicts a group of young men playing a game of field hockey on a grassy field. There are at least ten people in the scene, wearing a variety of uniforms and\u88c5\u5907\u3002 Some\u4eba\u7a7f\u7740\u9ec4\u8272\u886c\u886b\u548c\u84dd\u8272\u77ed\u88e4\uff0c\u800c\u53e6\u4e00\u4e9b\u4eba\u5219\u7a7f\u7740\u9ed1\u8272\u548c\u9ec4\u8272\u7684\u886c\u886b\u548c\u9ed1\u8272\u77ed\u88e4\u3002\u4ed6\u4eec\u6bcf\u4e2a\u4eba\u90fd\u6709\u81ea\u5df1\u7684\u68cd\u68d2\uff0c\u5176\u4e2d\u4e00\u4e9b\u4eba\u6b63\u5728\u7528\u4ed6\u4eec\u7684\u68cd\u68d2\u51fb\u7403\u3002", - "id": 15535 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ae44959cb83e7b0.jpg", - "response": "A group of five baseball players standing on the field.", - "id": 15536 - }, - { - "image_path": "/content/drive/MyDrive/combined/08175b6506aae1a9.jpg", - "response": "A baseball player in a white jersey with the number 30 on it is winding up to pitch the ball.", - "id": 15537 - }, - { - "image_path": "/content/drive/MyDrive/combined/096f28d8a343e91f.jpg", - "response": "A mannequin wearing a black t-shirt with white lettering that says \"Keep Calm and Geek On!\" The t-shirt has a pair of glasses on it and the University logo underneath. The mannequin is standing next to a change machine.", - "id": 15538 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b3b0f52c9111d00.jpg", - "response": "A soldier stands with his arms around five women. They are all wearing red and yellow letterman jackets. In the background, there is an American flag.", - "id": 15539 - }, - { - "image_path": "/content/drive/MyDrive/combined/09633b5033c39b07.jpg", - "response": "The image shows three professional hockey players dressed in red and black uniforms, standing on the ice in a ready position. They are holding hockey sticks and appear focused and prepared for the game.", - "id": 15540 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a6dc8ac2efa2536.jpg", - "response": "A boy in a store wearing an orange shirt with a symbol on the back.", - "id": 15541 - }, - { - "image_path": "/content/drive/MyDrive/combined/086a6f716d8f7e97.jpg", - "response": "a man wearing a black and green jacket", - "id": 15542 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b597eb1e1b7883d.jpg", - "response": "A group of girls holding up their first place awards in a white brick building.", - "id": 15543 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac74c054a000287.jpg", - "response": "a pitcher for the storm chasers baseball team", - "id": 15544 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a375b6c5e291be.jpg", - "response": "In the image, a boy is holding a trophy. He is wearing a red sports jersey and standing in front of a brick wall. The boy is also wearing a medal, which is around his neck. He is smiling and appears to be very happy with his trophy.", - "id": 15545 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a217c0db7bee717.jpg", - "response": "A blue shirt with the number 11 on it and the word winning above it.", - "id": 15546 - }, - { - "image_path": "/content/drive/MyDrive/combined/08eaa8f18c3a7b9f.jpg", - "response": "a man in a blue jersey is standing on a baseball field", - "id": 15547 - }, - { - "image_path": "/content/drive/MyDrive/combined/09f4fcfa29b9b481.jpg", - "response": "The image shows two men standing next to each other against a wooden wall. They are both wearing lanyards with name tags on them. One man is wearing a blue shirt and has a white name tag that says \"Windows\" on it. The other man is wearing a black shirt and has a name tag that says \"Palin\" on it. They are both smiling and looking at something off-camera.", - "id": 15548 - }, - { - "image_path": "/content/drive/MyDrive/combined/081a592ee974c5df.jpg", - "response": "A group of people standing on a baseball field.", - "id": 15549 - }, - { - "image_path": "/content/drive/MyDrive/combined/08357298d7872ace.jpg", - "response": "a baseball player wearing a white and blue uniform and a blue hat", - "id": 15550 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b2a5c7712053872.jpg", - "response": "In the image, there is a group of people participating in a marathon. One woman, who is the focus of the image, is running ahead of the group. She is wearing an orange and white top and black shorts. The woman has a determined look on her face as she runs.", - "id": 15551 - }, - { - "image_path": "/content/drive/MyDrive/combined/090ff8b5b955e8f3.jpg", - "response": "A cheerleader sitting on a bed with her hair in a ponytail. She is wearing a red and white cheerleading uniform that says WMHS on the chest. She is sitting on a bed with another cheerleader behind her who is also wearing a cheerleading uniform. There is a nightstand with a lamp on it to the right of the bed and a couch is visible in the background.", - "id": 15552 - }, - { - "image_path": "/content/drive/MyDrive/combined/0894ef66933caba8.jpg", - "response": "a person standing next to a mascot of a battery", - "id": 15553 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ab6b9309f76999.jpg", - "response": "In the image there is a baseball player wearing a white and purple uniform, with a purple hat and cleats. The player is standing on the pitcher's mound and is in the process of throwing a baseball. The baseball is visible in the image, as it is being thrown by the player. The player is also wearing a black glove on their left hand.", - "id": 15554 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b3c931162054444.jpg", - "response": "In the image, a baseball player is in the process of throwing a ball on a baseball field. The pitcher is in the foreground and is in the middle of throwing the ball. In the background, there is a fence and a sign advertising a tire service. Another person is visible behind the pitcher, possibly a teammate or coach. The image also shows the pitcher's baseball glove, which he is using to throw the ball.", - "id": 15555 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d8732204dbc686.jpg", - "response": "four people standing in front of a store, a man and a woman on the left and another man and a woman on the right, all dressed in warm clothes, some plants and a potted plant, a bottle and a cup", - "id": 15556 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a84b3e38d3b0920.jpg", - "response": "A Lewes FC programme for a game in 2011/2012", - "id": 15557 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a66c2e97833b908.jpg", - "response": "A group of four men are standing together, two of them are wearing ties. They are holding up a green soccer jersey with the number ten on it. In front of them is a trophy.", - "id": 15558 - }, - { - "image_path": "/content/drive/MyDrive/combined/089ce134d023d69f.jpg", - "response": "A little girl in a red dress holding a basket with a teddy bear in it. She is standing in a field of green brush.", - "id": 15559 - }, - { - "image_path": "/content/drive/MyDrive/combined/0953940b11b218fc.jpg", - "response": "A girl in a black and white Hudson jersey is holding a basketball.", - "id": 15560 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a09fa63a3ff1cc9.jpg", - "response": "A man in a white gi walking in the dark.", - "id": 15561 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ea2d0d466cb008.jpg", - "response": "A baseball player wearing a blue jersey with the number 36 on the back, white pinstriped pants, blue socks, and black shoes. He is holding a baseball in his glove and standing on the pitcher's mound.", - "id": 15562 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b30fa4c3306893a.jpg", - "response": "A couple of women in bathing suits on the beach.", - "id": 15563 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a0694ab06d47318.jpg", - "response": "A woman wearing a red shawl poses next to a large inflatable cow holding a udder.", - "id": 15564 - }, - { - "image_path": "/content/drive/MyDrive/combined/09fcf686c71316c6.jpg", - "response": "A baseball player wearing a blue and white uniform and a blue hat.", - "id": 15565 - }, - { - "image_path": "/content/drive/MyDrive/combined/07880f925a070263.jpg", - "response": "A baseball player wearing a white and red uniform stands in the outfield. He is wearing a red hat and holding a black baseball glove. The player is standing in front of a sign advertising Middlesex Community College.", - "id": 15566 - }, - { - "image_path": "/content/drive/MyDrive/combined/08334499a3f8deef.jpg", - "response": "In the image, there is a baseball game in progress with several players on the field. A batter is in the middle of swinging the bat, trying to hit the ball. There is another player holding a baseball bat nearby. A couple of players are wearing helmets for protection.", - "id": 15567 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a5aadf61bbe4b9a.jpg", - "response": "In the image, a woman in a blue and white uniform is in the middle of jumping over a hurdle. Another woman in a blue and white uniform is running beside her. Both women are on a track and field course. There are several other people in the background, some of whom are also on the course. A bench is visible in the scene, and a handbag is placed nearby.", - "id": 15568 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b059f1c123f2656.jpg", - "response": "A young boy wearing a football uniform that has the number 90 on it.", - "id": 15569 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ae356303ed275a6.jpg", - "response": "In the image, a young girl and a young boy are standing in front of a life-size cutout of a basketball player. The cutout is of a man wearing a red jersey with the word \"Rockets\" on it. The girl is wearing a blue jacket and jeans, and the boy is wearing a white shirt and blue jeans. They both appear to be enjoying their time posing with the cutout.", - "id": 15570 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad45002fedc24f9.jpg", - "response": "a man wearing a white and blue baseball uniform", - "id": 15571 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1d0e04732bee35.jpg", - "response": "A woman in a white and blue uniform is dribbling a basketball on the court.", - "id": 15572 - }, - { - "image_path": "/content/drive/MyDrive/combined/09a02443c722b00c.jpg", - "response": "A man and a woman are sitting at a table with a laptop computer on it. They are both wearing green and red shirts. The woman has long brown hair and is smiling at the camera. The man has short dark hair and is also smiling at the camera. He is also holding a red and black backpack.", - "id": 15573 - }, - { - "image_path": "/content/drive/MyDrive/combined/07eb246b91847c90.jpg", - "response": "A baseball player wearing a red and grey uniform with the number 32 on the front.", - "id": 15574 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d77d832ff110fc.jpg", - "response": "A group of women standing next to each other on a volleyball court. They are all wearing uniforms and have their arms around each other.", - "id": 15575 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a27abbb407ddc47.jpg", - "response": "The image shows three young girls dressed in cheerleader uniforms, holding trophies and smiling for the camera. They are standing in a gym.", - "id": 15576 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a2fa1c772abd74b.jpg", - "response": "A girl with pink hair and a red dress hugging a guy in a ninja costume.", - "id": 15577 - }, - { - "image_path": "/content/drive/MyDrive/combined/095e5ec3615fc297.jpg", - "response": "A mannequin display of soccer uniforms, one for Manchester City and one for Manchester United.", - "id": 15578 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c2f3df1d3ab69c.jpg", - "response": "A baseball player standing on the field wearing a uniform with the number 32.", - "id": 15579 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5719847f151426.jpg", - "response": "In the image there are three cheerleaders(360,16),(780,994)(161,847),(548,998)(628,769),(975,998), one of them is in the air with her hands raised and the other two are holding her. They are all wearing maroon and white uniforms(378,255),(780,694).", - "id": 15580 - }, - { - "image_path": "/content/drive/MyDrive/combined/08984bf9acca3340.jpg", - "response": "A white shirt with the words Center for Advanced Visual Studies on it.", - "id": 15581 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a98a1a1cf109653.jpg", - "response": "A baseball player is pitching a ball on a field.", - "id": 15582 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4bee813061d3a9.jpg", - "response": "A couple of people sitting at a table.", - "id": 15583 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d23c1e15ea198fc.jpg", - "response": "Three little girls wearing Angels baseball shirts.", - "id": 15584 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bf7524d704c58ee.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 15585 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd5c229a64baea8.jpg", - "response": "The image features a group of men standing on a baseball field, dressed in vintage baseball uniforms. There are three men in the foreground, with another man visible behind them. The men are wearing numbers on their jerseys, with one man wearing number 32, another man wearing number 9, and the third man wearing number 21. They are all holding their hats in the air, likely in the process of clapping or celebrating.", - "id": 15586 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b68f1aabe22ac71.jpg", - "response": "A man wearing a yellow sweater and blue jeans sits on the ground.", - "id": 15587 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1fc2c0deb59c73.jpg", - "response": "A soccer game is being played on a grass field. There are three players on the field, one in red and black, one in yellow and blue, and one in red and white. The players are standing around the field and walking around.", - "id": 15588 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd18993117279a0.jpg", - "response": "The image shows a baseball field with a crowd of people in the stands. There are multiple players on the field, some holding baseball gloves, and others standing or talking to each other. The players are wearing uniforms and are positioned in various locations on the field, including the pitcher's mound and the first base line. The scene appears to be a game in progress, with the players concentrating on the game and the crowd watching intently.", - "id": 15589 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3c419136cdd795.jpg", - "response": "Two people standing next to each other, a man and a woman, holding an award.", - "id": 15590 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5ae6d0d41209a3.jpg", - "response": "a black and white photo of a police officer", - "id": 15591 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de6722aa3a43476.jpg", - "response": "A man in a black and yellow tank top running on a track.", - "id": 15592 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc2566a3276f61e.jpg", - "response": "a group of people standing in front of a building", - "id": 15593 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c8fb8272542c226.jpg", - "response": "A white wall with a piece of sports equipment hanging on it.", - "id": 15594 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd34ebb4b73f701.jpg", - "response": "A man with a red bandana is in a ring with another man. They are surrounded by other men and a referee.", - "id": 15595 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f9f2516883c3769.jpg", - "response": "A group of baseball players walking across a field.", - "id": 15596 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ed6eacd356c0ec9.jpg", - "response": "a shirt hanging on a rack(183,123),(883,932)", - "id": 15597 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6143272f078726.jpg", - "response": " Two boys(38,253),(505,998)(384,117),(987,999) standing next to each other wearing soccer shirts.", - "id": 15598 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cea2ec3b42a7e66.jpg", - "response": "A baseball player wearing a grey and black uniform and a catcher's mitt, stands on the baseball diamond.", - "id": 15599 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f23b61f8d9dabeb.jpg", - "response": "The image shows a baseball player dressed in a white and blue uniform, kneeling on the field and holding a black baseball bat. He is the only person visible in the image.", - "id": 15600 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cda6f649af5ba77.jpg", - "response": "The image shows a group of men running a relay race on a track. There are multiple people in the image, all wearing purple and white or blue and white shirts. Some of the men are holding onto a baton, which is likely the relay race baton. The men are running in lanes on the track, which can be seen in the image. The race is taking place on a track with a red surface.", - "id": 15601 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8dd6fbdde42ca2.jpg", - "response": "A man with a white mustache wearing a blue Jays jersey with the number 7 on it standing next to another man.", - "id": 15602 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f9fe148c0ab3940.jpg", - "response": "A wrestler is on the mat and is being judged by a referee.", - "id": 15603 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3934e412fef1bd.jpg", - "response": "In the image there is a baseball player wearing a blue uniform and a red and white glove. He is kneeling on the field and throwing a baseball. There are three baseballs in the scene, one in the air and two on the field being thrown by the player. The player is also wearing a blue baseball cap.", - "id": 15604 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f630d780806c871.jpg", - "response": "A table topped with lots of different kinds of hats.", - "id": 15605 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d822b3f975957c7.jpg", - "response": "A woman wearing a yellow jacket sitting in a chair.", - "id": 15606 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf091a347c167ee.jpg", - "response": "A man wearing a red, white, blue and yellow shirt with a red, white and blue headband that says Malaysia on it.", - "id": 15607 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dfe07dbb9ac9ad3.jpg", - "response": "The image features a man wearing a blue baseball uniform with the word Mets on it in orange. He is smiling and wearing a belt with a large buckle. He is holding a baseball glove and standing in front of a fence. There are other people standing behind the fence, out of focus. One person is wearing a white shirt and sunglasses, and another is wearing a blue hat with orange bill. The third person is wearing a blue shirt. The background shows a chain link fence and a pole with a red stripe.", - "id": 15608 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4efbfb297a18a3.jpg", - "response": "A hockey player on the ice falling on his back with his arms and legs splayed out.", - "id": 15609 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e90f891b8b63863.jpg", - "response": "The image features a baseball game in progress, with a pitcher standing on the pitcher's mound and a large crowd of people watching the game from the stands. The stands are filled with people sitting in chairs, and there are also some people standing and socializing. The chairs are arranged in multiple levels, with some closer to the field and others further back. The baseball field has a grassy area and a dirt pitcher's mound where the pitcher is standing.", - "id": 15610 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c4fc87e7a636fe8.jpg", - "response": "In the image, a female softball player is in the middle of a pitch. She is wearing a blue and white uniform and is equipped with a mitt. The ball is in the air, and the player is looking up at it. The pitcher's shadow is visible on the ground, and there is a white line on the dirt behind her. The field has a green grassy area and a yellow fence in the background.", - "id": 15611 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f9fa6b8d598d9ea.jpg", - "response": "A man and woman standing on a bridge in front of a body of water.", - "id": 15612 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4731a0dcbb89c4.jpg", - "response": "A person with orange hair wearing a black shirt with a cat on it.", - "id": 15613 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e0570926990696e.jpg", - "response": "A display case with three basketball jerseys on mannequins. The one on the left is white with the number 33 and the word North Carolina on it. The one in the middle is blue with the word Cleveland on it. The one on the right is white with the number 41 on it. There are photos and descriptions of the players that wore these jerseys on display.", - "id": 15614 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf9e88b8465a77d.jpg", - "response": "A man with black hair and a red and grey shirt.", - "id": 15615 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dbde9f73226f797.jpg", - "response": "A mannequin wearing a windbreaker with a white collar. The windbreaker is red, white, and blue with the letters RL in blue on the chest and the numbers 67 and 1993 in red and white respectively on the right chest. There is a zipper in the center of the jacket. On the left sleeve, there is a blue Ralph Lauren logo and below it, the number 67.", - "id": 15616 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3884b0e5bbb493.jpg", - "response": "A man laying on a massage table getting a back massage.", - "id": 15617 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1d82bc6123116b.jpg", - "response": "A group of people walking down a street, some of them wearing hats and some of them wearing shorts.", - "id": 15618 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f237983ea15d50b.jpg", - "response": "A baseball player standing on a base in a baseball field.", - "id": 15619 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de907e5a80a3cc0.jpg", - "response": "a pitcher in a blue and white baseball uniform with a blue baseball cap and a black baseball glove", - "id": 15620 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9f6ea418ef845c.jpg", - "response": "In the image there are three men playing basketball. One man is holding the basketball and two other men are trying to block his way. The man holding the basketball is wearing a white shirt with the number 43 on it. The two men trying to block his way are wearing black and white jerseys. The man in the middle is trying to grab the basketball with both his hands. The background is blurry and there are two more people in the image, one on the left and one on the right, but they are not focused on the main scene.", - "id": 15621 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fa80f77c0565d78.jpg", - "response": "A selfie of a woman with short hair and wearing a black shirt. She is smiling and has brown eyes.", - "id": 15622 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f717ceeb15aad4b.jpg", - "response": "The image shows a group of cheerleaders(375,144),(652,996)(22,499),(226,997)(650,465),(865,997)(231,419),(423,997) performing in a gym. They are all dressed in white and blue uniforms(388,398),(608,883)(671,582),(820,935)(248,503),(397,788)(857,612),(941,860) and are holding pom poms(584,271),(708,465)(308,12),(470,178)(21,659),(138,839)(297,570),(377,696)(520,604),(600,806)(743,783),(874,963).", - "id": 15623 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d108d50ef86efff.jpg", - "response": "In the image, there is a little girl dressed in a blue NASA (National Aeronautics and Space Administration) flight suit. She is holding a toy space shuttle in her right hand and looking up at it. The space shuttle is dark gray in color and has a pointed shape. The little girl's hair is blonde and shoulder-length. She is standing in front of a yellow fence.", - "id": 15624 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fa8fa69288deb34.jpg", - "response": "A baseball field with a scoreboard that has the number 35 on it.", - "id": 15625 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bff28a3e491ad99.jpg", - "response": "A person is wearing a blue shirt that says Religious Coalition for Reproductive Choice.", - "id": 15626 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea3e6f1ff9758fe.jpg", - "response": "A close up of a woman wearing a jersey that says \"Aggies\" on it.", - "id": 15627 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc767f2d44f9c84.jpg", - "response": "A man wearing a blue shirt that says \"free beer tomorrow\" is standing behind a bar.", - "id": 15628 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c2e0a469eb55491.jpg", - "response": "a book (1,0),(996,995)", - "id": 15629 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d245a7c1388a3bb.jpg", - "response": "A baseball player wearing a blue and red uniform with the number 31 on the back.", - "id": 15630 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9c6dd4409d6f2d.jpg", - "response": "In the image, a woman is wearing a white jersey that says \"High Point\" in blue. She is holding a basketball and appears to be focused on her next move. Another person is partially visible behind her, wearing a black and white striped shirt. There is a chair in the background, and a handbag is placed nearby. The scene takes place on a basketball court.", - "id": 15631 - }, - { - "image_path": "/content/drive/MyDrive/combined/0da95d392cfc0fa7.jpg", - "response": "a man wearing a white jersey with the word Chasers on it", - "id": 15632 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9967263a005338.jpg", - "response": "The image shows a baseball game in progress on a field. There are two teams of players on the field, one team wearing blue and white uniforms and the other team wearing navy and white uniforms. A crowd of people is watching the game from the stands.", - "id": 15633 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0e072cc8e92b3f.jpg", - "response": "A woman in a black and yellow uniform is throwing a softball.", - "id": 15634 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f2f98615350d26e.jpg", - "response": "A group of people are holding up blue shirts that say Affordable Energy Means Missouri Jobs. They are standing in front of a white bus.", - "id": 15635 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc6c613c531c303.jpg", - "response": "In the image there is a baseball player wearing a blue and orange uniform and a catcher's mitt. The player is pointing to the left, likely indicating something to a teammate. The player is standing on a baseball field, which has a green grass surface and white lines marking the bases. There are also several people in the background, some of whom are closer to the field and others who are further away.", - "id": 15636 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1adea1bf563796.jpg", - "response": "A black shirt with the word sportfriends on it.", - "id": 15637 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b9a494c78985373.jpg", - "response": "A woman wearing a cycling jersey with the word \"gipuzkoa\" on it.", - "id": 15638 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd9b1ffd0939c77.jpg", - "response": "A baseball player is warming up before the game.", - "id": 15639 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ca52edcaf78bacd.jpg", - "response": " two men(2,146),(997,967) in a mixed martial arts match", - "id": 15640 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f8dd5cfc001a9b1.jpg", - "response": "A row of soccer jerseys hanging on a wooden rod.", - "id": 15641 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5fe5a1d237ac27.jpg", - "response": "Two women(237,223),(575,989)(468,116),(929,988) with tattoos on their forearms.", - "id": 15642 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ee03e2955809fa.jpg", - "response": "The image shows a baseball game in progress. A batter is standing in the batter's box, holding a bat and waiting for a pitch. The catcher is positioned behind the batter, wearing a baseball glove. There are several other players on the field, including those in the dugout. The umpire is standing behind the catcher, watching the play closely.", - "id": 15643 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ff7445828d359dd.jpg", - "response": "A baseball player for the Pittsburgh Pirates poses in his uniform. He is wearing a hat and has a mitt on his hand. He is also wearing a black wristband. The word \"Goose\" is written in yellow cursive above his head. The word \"Glove\" is written in black cursive on the left side of the image. The word \"Pittsburg\" is written in yellow on his jersey. The background of the image is a colorful abstract pattern.", - "id": 15644 - }, - { - "image_path": "/content/drive/MyDrive/combined/1082b60d70c9a0bf.jpg", - "response": "In the image there is a man wearing a white and red baseball uniform with the word \"Boer\" on it in red. He is also holding a flag with a large smile on it. In the background there is a crowd of people watching the game.", - "id": 15645 - }, - { - "image_path": "/content/drive/MyDrive/combined/1478bd87c939001d.jpg", - "response": "The image shows a baseball team's locker room. There are several wooden lockers, with the doors open revealing a row of baseball jerseys hanging on them. The jerseys are white with blue stripes and have the numbers 49, 16, 75, 2, and 3 on them. The room is empty of people, with only a few chairs placed in front of the lockers. There is a TV mounted on the wall above the lockers. The curtains are blue and there are some bottles and a cup on the shelves.", - "id": 15646 - }, - { - "image_path": "/content/drive/MyDrive/combined/13fff9de368685d1.jpg", - "response": "A man in a grey baseball uniform with the number 27 on it.", - "id": 15647 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a0bd5be2e027b8.jpg", - "response": "A man in a red shirt standing in front of a large sign for Turner Field.", - "id": 15648 - }, - { - "image_path": "/content/drive/MyDrive/combined/11c8a7c1499706c3.jpg", - "response": "A man wearing red shirt and pants with blue shoes standing in a doorway.", - "id": 15649 - }, - { - "image_path": "/content/drive/MyDrive/combined/11439dc636b9476d.jpg", - "response": "A man wearing a blue shirt with the word Gerakan Perubahan on the back of it.", - "id": 15650 - }, - { - "image_path": "/content/drive/MyDrive/combined/12d87a986fba1135.jpg", - "response": "A group of women in basketball uniforms are standing on a court.", - "id": 15651 - }, - { - "image_path": "/content/drive/MyDrive/combined/14c7ea6143f6cd3e.jpg", - "response": "A woman wearing a yellow shirt and black shorts is walking.", - "id": 15652 - }, - { - "image_path": "/content/drive/MyDrive/combined/12188e4efef96293.jpg", - "response": "The image features a couple of men wearing green shirts with a bucket list on the back. The list includes various sporting events such as the Olympics, MBL World Series, and College Football National Championship. The men are standing in front of a large crowd in a stadium.", - "id": 15653 - }, - { - "image_path": "/content/drive/MyDrive/combined/1380c3cf575542ed.jpg", - "response": "In the image, there is a baseball player wearing a blue and white uniform and a blue hat, holding a baseball bat over his shoulder. He is standing in front of a flag, possibly an American flag. There are other people in the background, some of them are wearing white. The baseball player is focused and ready to play.", - "id": 15654 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a7353d87e2494d.jpg", - "response": "The image shows a baseball game in progress on a grass and dirt field. There are several players on the field, some holding baseball gloves, and one player is wearing a helmet. The players are wearing blue and white uniforms.", - "id": 15655 - }, - { - "image_path": "/content/drive/MyDrive/combined/13008288007eafb3.jpg", - "response": "Two women in matching black shirts standing on a podium.", - "id": 15656 - }, - { - "image_path": "/content/drive/MyDrive/combined/121fc92a340b4cee.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 15657 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fc406ab9faf155.jpg", - "response": "In the image, a group of people are gathered around a pink and white banner that says \"Adopt Love.\" Some of the people are holding the banner, while others are standing behind it. There are at least 12 people in the image, and they are of various heights and positions. Some are standing closer to the camera, while others are further away. They are all looking in different directions, and some are holding items such as a cell phone and a camera.", - "id": 15658 - }, - { - "image_path": "/content/drive/MyDrive/combined/140a32f183b3eba3.jpg", - "response": "A woman(497,53),(843,997) in a white baseball uniform is running towards a woman in a black shirt and white pants.", - "id": 15659 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a3f0f827d75f48.jpg", - "response": "a boy in a blue shirt standing in front of a window", - "id": 15660 - }, - { - "image_path": "/content/drive/MyDrive/combined/1007a62c6ba969df.jpg", - "response": "A man in a white racing suit with red and black accents.", - "id": 15661 - }, - { - "image_path": "/content/drive/MyDrive/combined/1291ea0112ac6fe6.jpg", - "response": "A baseball player wearing a blue jersey with the word \"Omaha\" on it. He is holding a baseball bat and walking on the field.", - "id": 15662 - }, - { - "image_path": "/content/drive/MyDrive/combined/12c241c131db6287.jpg", - "response": "In the image, a man wearing a green and white jersey that says Aquinas on it is standing on a field. He is a soccer player and is wearing gloves. He is also wearing a white short and has a baseball bat in his other hand. There are several other people in the background, some of them are sitting on a bench and a few are standing. A car is parked in the background and a few people are holding umbrellas.", - "id": 15663 - }, - { - "image_path": "/content/drive/MyDrive/combined/126fef9faac9a3f6.jpg", - "response": "A baby boy wearing a red and black shirt is on the floor and smiling.", - "id": 15664 - }, - { - "image_path": "/content/drive/MyDrive/combined/1311fb4f794a3512.jpg", - "response": "A man sitting on a red and black striped couch writing in a notebook.", - "id": 15665 - }, - { - "image_path": "/content/drive/MyDrive/combined/14733ae5abf83eb9.jpg", - "response": "A baseball player wearing a blue jersey with red lettering is standing on the field. He is wearing white pinstriped pants and holding a pair of white gloves. He is standing near a base and there is a crowd of people watching the game in the background.", - "id": 15666 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e5cb244fac4027.jpg", - "response": "A man wearing a blue soccer uniform that says Labour Relief on the front.", - "id": 15667 - }, - { - "image_path": "/content/drive/MyDrive/combined/12bb5d3c6a36af9b.jpg", - "response": "A woman wearing a green and white football uniform is holding a football in front of a set of gray lockers.", - "id": 15668 - }, - { - "image_path": "/content/drive/MyDrive/combined/10e388f4eb3205aa.jpg", - "response": " a baseball player(416,365),(642,769) is standing on the field(2,658),(996,997)", - "id": 15669 - }, - { - "image_path": "/content/drive/MyDrive/combined/11aabc5f68ecf2f6.jpg", - "response": "A white baseball jersey with red lettering that says Senators.", - "id": 15670 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e11ee0bbbb48c8.jpg", - "response": "A baseball player in a red jersey is catching a ball with a catcher's mitt.", - "id": 15671 - }, - { - "image_path": "/content/drive/MyDrive/combined/124244dd9dff3a14.jpg", - "response": "A baseball player wearing a blue jersey with the number 34 on it. He is holding a bat and standing on the field.", - "id": 15672 - }, - { - "image_path": "/content/drive/MyDrive/combined/1258b610d6a11f57.jpg", - "response": "The image shows a group of people wearing blue and white baseball uniforms. There are at least five people in the picture, and they are all standing close together. Some of the people are wearing blue baseball caps with the word \"Riders\" on them. The people are also wearing white shirts with blue lettering and designs on them.", - "id": 15673 - }, - { - "image_path": "/content/drive/MyDrive/combined/1433316daf765113.jpg", - "response": "In the image two girls are wearing maroon colored cheerleader outfits that say Foxcroft on the front. They are standing in a hallway with their arms raised in the air.", - "id": 15674 - }, - { - "image_path": "/content/drive/MyDrive/combined/104268cf101d9a9f.jpg", - "response": "The image shows a group of people standing in front of a sign that reads \"Tampa Bay Area weather.gov\". They are all holding awards and appear to be celebrating.", - "id": 15675 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ef81f2843a0f9e.jpg", - "response": "A young man standing next to a woman on a rink.", - "id": 15676 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e6ed67ec4567f5.jpg", - "response": "a man wearing a blue and white royals jersey", - "id": 15677 - }, - { - "image_path": "/content/drive/MyDrive/combined/109a2065c3ec4ac2.jpg", - "response": "A man in a red and white racing suit with the words The Pointers on it standing in front of a car.", - "id": 15678 - }, - { - "image_path": "/content/drive/MyDrive/combined/10430e6d61ea6be5.jpg", - "response": "a girl wearing a blue sash that says el salvador on it", - "id": 15679 - }, - { - "image_path": "/content/drive/MyDrive/combined/130ae3638d81b270.jpg", - "response": " The baseball team(519,157),(693,790)(611,117),(750,553) is playing on the field.", - "id": 15680 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fff160ccc071a3d.jpg", - "response": " a boy(362,385),(718,997) wearing a black baseball cap(470,383),(607,493) with the letters NY on it", - "id": 15681 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e6ffc26e9ba34d.jpg", - "response": "A man wearing a Mickey Mouse sweater and glasses standing in a room.", - "id": 15682 - }, - { - "image_path": "/content/drive/MyDrive/combined/103def66335feabe.jpg", - "response": "In the image, a man wearing a Seattle Seahawks jersey stands with his arm around a girl. They are both smiling for the camera. The man is wearing a black hat and has a beard. The girl has her hair in a ponytail and is wearing a black shirt with a yellow number 8. She is also wearing a gray cardigan. The man and girl are standing in front of a table with several signs on it, including one that says \"Thank You SAAA\" and another that says \"Military Appreciation Sponsor of the NFL\". There is also a banner with the NFL logo on it in the background.", - "id": 15683 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ad1748df8e04a6.jpg", - "response": "A baseball game is in progress with a batter up to the plate. The catcher is standing behind the batter with a baseball glove on. There are several players on the field wearing green and white uniforms. The batter is holding a baseball bat and is waiting for the pitch. There is a baseball glove on the ground and a bench in the background.", - "id": 15684 - }, - { - "image_path": "/content/drive/MyDrive/combined/112562909f7cfce7.jpg", - "response": "The image shows a group of cheerleaders performing on a football field. They are wearing blue and white uniforms and holding pom-poms. Some of the cheerleaders are standing on the field, while others are in the foreground, posing for a picture. There is a man filming the cheerleaders with a video camera. Another man is standing on the field, holding a large football. A few people are watching the cheerleaders from the sidelines.", - "id": 15685 - }, - { - "image_path": "/content/drive/MyDrive/combined/121825b764b32708.jpg", - "response": "In the image, a woman is holding a field hockey stick and has a ball in her mouth. She is wearing a uniform and appears to be focused on the game. There are other people in the background, but they are not the main focus of the image.", - "id": 15686 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fdb4da62b61b605.jpg", - "response": "The image shows a group of people standing together in front of a backdrop that says Boathouse District, Oklahoma River. They are all wearing medals.", - "id": 15687 - }, - { - "image_path": "/content/drive/MyDrive/combined/14c860788e066fef.jpg", - "response": "The PHS girls tennis team, led by coach Scott Black, will open the 2015 season on Tuesday at home against Southside.", - "id": 15688 - }, - { - "image_path": "/content/drive/MyDrive/combined/111a65d66ec0171a.jpg", - "response": "a man wearing a blue shirt and a tan hat", - "id": 15689 - }, - { - "image_path": "/content/drive/MyDrive/combined/14489b58ad2d91ad.jpg", - "response": "A man and woman standing in a field near a lake.", - "id": 15690 - }, - { - "image_path": "/content/drive/MyDrive/combined/12262bd2c9cfd517.jpg", - "response": "A group of three male high school students are running on a track. The first two students are wearing green and white uniforms and the third student is wearing a Homestead Mustangs uniform. They are all running down the track.", - "id": 15691 - }, - { - "image_path": "/content/drive/MyDrive/combined/146d80f591725be5.jpg", - "response": "A baseball player wearing a red jersey is throwing a ball on a baseball field.", - "id": 15692 - }, - { - "image_path": "/content/drive/MyDrive/combined/121900c66af6113f.jpg", - "response": "The image shows a man wearing a white baseball jersey with red lettering and red trim, the letter \"W\" in red on the cap he is wearing. He is standing in a dugout, leaning on a brown baseball bat. The dugout is dark, and he is looking off to his left. There is a large fan on his left, and he is wearing a baseball glove on his left hand.", - "id": 15693 - }, - { - "image_path": "/content/drive/MyDrive/combined/100d4cedc6f072f1.jpg", - "response": "A group of DMAT members wearing blue shirts that say \"DMAT\" in white letters are gathered outside. Some of them are holding papers and standing near a yellow ribbon.", - "id": 15694 - }, - { - "image_path": "/content/drive/MyDrive/combined/1179c44ebeb13ce7.jpg", - "response": "A baseball player wearing a white jersey with the number 36 on the back. He is leaning on a rail and has a glove on his hand.", - "id": 15695 - }, - { - "image_path": "/content/drive/MyDrive/combined/1401aaced719e876.jpg", - "response": "The image shows a basketball game in progress. There are three women on the court, two of them wearing red uniforms and one wearing white. The player in the white uniform is pointing towards the right side of the court. The ball is located near the center of the court.", - "id": 15696 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a14f117d807d6f.jpg", - "response": "A male wearing a green Enloe ultimate frisbee t-shirt.", - "id": 15697 - }, - { - "image_path": "/content/drive/MyDrive/combined/13458793066e3e1c.jpg", - "response": "A group of people standing on a field.", - "id": 15698 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c68ea007ab318b.jpg", - "response": "a shirt that has the word Mosquito on it", - "id": 15699 - }, - { - "image_path": "/content/drive/MyDrive/combined/12652209e1e0160c.jpg", - "response": "In the image, there is a young boy wearing a blue baseball uniform and a catcher's mitt. He is standing on a baseball field, possibly in the infield. The boy is looking to his left, and there is a chain-link fence behind him. There is also a backpack on the ground near the fence.", - "id": 15700 - }, - { - "image_path": "/content/drive/MyDrive/combined/13de039668a75fc6.jpg", - "response": "A young child wearing a red Capitals jersey standing in front of a poster of fans at a hockey game.", - "id": 15701 - }, - { - "image_path": "/content/drive/MyDrive/combined/114153ffe55af573.jpg", - "response": "The image shows two female baseball players from UC San Diego, dressed in their white and yellow uniforms. One player is giving a thumbs up to the other, and both are standing on a baseball field. The player on the left is wearing a blue visor and has a glove on her left hand. The player on the right is wearing a catcher's mitt on her left hand. There are two cars visible in the background, one closer to the left side of the field and the other further to the right.", - "id": 15702 - }, - { - "image_path": "/content/drive/MyDrive/combined/16992830f333e754.jpg", - "response": "A man and a woman pose for a picture at a baseball stadium. They are both wearing baseball caps and the woman is wearing a blue Brewers shirt. The stadium is full of people and a player is standing on the pitcher's mound.", - "id": 15703 - }, - { - "image_path": "/content/drive/MyDrive/combined/18f29d8a4d9de3a0.jpg", - "response": "Four women in matching blue and yellow outfits for Corona beer.", - "id": 15704 - }, - { - "image_path": "/content/drive/MyDrive/combined/1734bdd2107f1a0b.jpg", - "response": "A man in a police uniform standing next to cheerleaders.", - "id": 15705 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e39fb6a4f3f08c.jpg", - "response": "a group of cyclists in orange and blue uniforms", - "id": 15706 - }, - { - "image_path": "/content/drive/MyDrive/combined/15c094113a3c53f2.jpg", - "response": "A group of cheerleaders stand on the court in uniform.", - "id": 15707 - }, - { - "image_path": "/content/drive/MyDrive/combined/181596df2d9a23cd.jpg", - "response": "A table topped with blue shirts and cups.", - "id": 15708 - }, - { - "image_path": "/content/drive/MyDrive/combined/185f019e6a783975.jpg", - "response": "a baseball player swinging a bat at a ball", - "id": 15709 - }, - { - "image_path": "/content/drive/MyDrive/combined/175bacc0ed423034.jpg", - "response": "A woman wearing a yellow and black shirt with the number 2 on it.", - "id": 15710 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b1f030cf9c3fd2.jpg", - "response": "A baseball player in a white jersey is standing on the pitcher's mound. He is wearing a red hat and holding a baseball glove. In the background, there are several people watching the game.", - "id": 15711 - }, - { - "image_path": "/content/drive/MyDrive/combined/17af356f6eae6f6c.jpg", - "response": "The girls are running a race.", - "id": 15712 - }, - { - "image_path": "/content/drive/MyDrive/combined/17d34e76a299a8f7.jpg", - "response": "The Audi Ski & Snowboard Team has a new look for the 2011-2012 season. Posing with the new race suits are team manager, Heinz Fromm, and the two newest members of the team, Anna Fenninger and Maria Hoefl-Riesch.", - "id": 15713 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ecee16d0846439.jpg", - "response": "The image shows three women posing for a photo on a stage. They are all wearing different outfits, with one woman wearing a cheerleader outfit, another woman wearing a basketball uniform, and the third woman wearing a bikini. The two women in the middle are standing, with one of them standing on one leg and the other with her arm raised, while the woman on the right is kneeling down and smiling. They all have different expressions on their faces, with the woman in the middle looking serious, the woman on the right looking happy and cheerful, and the woman in the middle looking between the two.", - "id": 15714 - }, - { - "image_path": "/content/drive/MyDrive/combined/17682b8a3e30bdc1.jpg", - "response": "The image depicts a group of four young boys wearing black baseball uniforms with red belts. They are all holding baseball gloves and have their arms in the air. The boys are standing in front of a wall and appear to be looking off in the distance. The phrase \"Men in Black\" is written across the bottom of the image.", - "id": 15715 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d9171f18846806.jpg", - "response": "A man and woman walking down a street.", - "id": 15716 - }, - { - "image_path": "/content/drive/MyDrive/combined/17bb1d5915e56e82.jpg", - "response": "In the image, there is a person wearing a red shirt with the word Morocco written on it. The person is also wearing grey pants. The shirt has a green pentagon with a green star in the middle. The person is standing in a yard with grass.", - "id": 15717 - }, - { - "image_path": "/content/drive/MyDrive/combined/16905585f620b365.jpg", - "response": "A baseball player wearing a blue jersey with the number 16 on the back is giving another baseball player a high five.", - "id": 15718 - }, - { - "image_path": "/content/drive/MyDrive/combined/190ab03355fcfba0.jpg", - "response": "A man laying on a bed with a red shirt on.", - "id": 15719 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ffcefeeecd3142.jpg", - "response": "The image shows a baseball player holding a plaque while standing on a field. The player is wearing a white and green baseball uniform and a baseball cap. There are two other people standing near the player, one on the left and one on the right. The person on the left is wearing a watch and glasses, while the person on the right is holding a camera. The field has a grassy area and a dirt path running across it.", - "id": 15720 - }, - { - "image_path": "/content/drive/MyDrive/combined/17476b58ddd1ed04.jpg", - "response": "The image shows a display of mannequins wearing yellow and black striped soccer uniforms. There are several mannequins in the display, some of which are wearing soccer cleats. The uniforms have the words \"Fly Emirates\" written on the left chest and the word \"Arsenal\" written on the right chest. The mannequins are standing in front of a large screen that says \"AFC\" on it. There is also a screen that says \"arsenal exclusive\" and has a red and white design. The display is located in a store.", - "id": 15721 - }, - { - "image_path": "/content/drive/MyDrive/combined/1523d69ea3411732.jpg", - "response": "A man wearing a red shirt that says \"I can't believe it\" on it.", - "id": 15722 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f631379e315dd0.jpg", - "response": "A store front window with a painting of a football player holding a bat.", - "id": 15723 - }, - { - "image_path": "/content/drive/MyDrive/combined/15bba876413769d2.jpg", - "response": "A baseball player is winding up to pitch a ball on a baseball field.", - "id": 15724 - }, - { - "image_path": "/content/drive/MyDrive/combined/17d436733c145b74.jpg", - "response": "In the image two men wearing San Francisco 49ers jerseys are walking towards the field. The jerseys have the numbers 99 and 50 on the back. The man wearing the number 99 jersey is wearing a red hat and has a red and white umbrella. The man wearing the number 50 jersey is wearing a green hat. There are many other people around them, some holding umbrellas and wearing San Francisco 49ers jerseys. The field is covered in a black tarp.", - "id": 15725 - }, - { - "image_path": "/content/drive/MyDrive/combined/171d22fda986e60a.jpg", - "response": "The image features a large stadium full of people watching a baseball game. There are two mascots in the foreground, one dressed as a bald eagle and the other a generic mascot. A woman in a uniform is standing next to the mascot eagle, and another woman is standing behind her. A crowd of people can be seen sitting in the stands, watching the game.", - "id": 15726 - }, - { - "image_path": "/content/drive/MyDrive/combined/1690c0d20a42a7d8.jpg", - "response": "The image shows a baseball team, likely the Storm Chasers, walking together on the field. There are multiple players visible, all wearing blue and white uniforms and blue hats. Some of them are in the foreground, while others are in the background. Some players are holding baseball gloves.", - "id": 15727 - }, - { - "image_path": "/content/drive/MyDrive/combined/177d4853452bdd97.jpg", - "response": "A white jersey with the word Marlies on it in blue.", - "id": 15728 - }, - { - "image_path": "/content/drive/MyDrive/combined/1605873dd1123ff7.jpg", - "response": "The image features a large green mascot with a red and blue hat. The mascot is wearing a white shirt with red lettering on it. It is standing on a baseball field with a crowd in the background. The field has a green grass and white lines. The mascot is also wearing a red and blue hat, a green and blue wig, and has a large green bill.", - "id": 15729 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ffa1885c266056.jpg", - "response": "a pink shirt that says lo doy por una quier and a black shirt that says o doy por quien", - "id": 15730 - }, - { - "image_path": "/content/drive/MyDrive/combined/169d8bc1b283307c.jpg", - "response": "A baseball player for the Yankees is walking on the field.", - "id": 15731 - }, - { - "image_path": "/content/drive/MyDrive/combined/177e64dd67ab3b0c.jpg", - "response": "a man in a blue baseball jersey and white pants with stripes walking across a field", - "id": 15732 - }, - { - "image_path": "/content/drive/MyDrive/combined/177598f177a7fbab.jpg", - "response": "A person is wearing an orange shirt that says \"I have highly evolved skills\" on it.", - "id": 15733 - }, - { - "image_path": "/content/drive/MyDrive/combined/16cf452eee65ddd0.jpg", - "response": "A San Francisco Giants baseball player is standing on the field and talking to someone.", - "id": 15734 - }, - { - "image_path": "/content/drive/MyDrive/combined/1769ad8f05d2ff8d.jpg", - "response": "A man wearing a blue shirt with the words Broke Guy on it.", - "id": 15735 - }, - { - "image_path": "/content/drive/MyDrive/combined/183c74865bcfe2f3.jpg", - "response": "A man in a red outfit is standing in a boxing ring.", - "id": 15736 - }, - { - "image_path": "/content/drive/MyDrive/combined/1682d2c01c94b2fd.jpg", - "response": "The image shows three men standing on a field holding hockey sticks. They are wearing white and yellow uniforms with numbers on the back. The numbers on the men's uniforms are 6, 42, and 50. The men are standing in a line and appear to be talking to each other. The field is a dark green color and the lighting in the scene is dark.", - "id": 15737 - }, - { - "image_path": "/content/drive/MyDrive/combined/168cfb34738a77bc.jpg", - "response": "Raleigh(306,86),(743,420)", - "id": 15738 - }, - { - "image_path": "/content/drive/MyDrive/combined/1571a4ea777dc6c6.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 15739 - }, - { - "image_path": "/content/drive/MyDrive/combined/165412e15114432b.jpg", - "response": "A baseball player swinging a bat on a baseball field.", - "id": 15740 - }, - { - "image_path": "/content/drive/MyDrive/combined/16e5d7dceee8900d.jpg", - "response": "A man wearing a black baseball cap and an orange motorcycle uniform.", - "id": 15741 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f2c89a4a90d0ad.jpg", - "response": "Two fans at a baseball game wearing jerseys that say WHO and IdontKnow respectively.", - "id": 15742 - }, - { - "image_path": "/content/drive/MyDrive/combined/186506e3be485185.jpg", - "response": "A muti t-shirt and kudu billtrong", - "id": 15743 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ce707e52152307.jpg", - "response": "A poster for Stanford's Raza Day, April 11, 2015. The poster features a young woman holding a torch, with the Stanford logo on her shirt. She is depicted as strong and powerful, with her fist raised and her other hand holding a torch. The background of the poster is rainbow colored, with a red circle surrounding the woman. The text on the poster is in Spanish, with the exception of the Stanford logo.", - "id": 15744 - }, - { - "image_path": "/content/drive/MyDrive/combined/15176bf73747b63a.jpg", - "response": "A baseball player wearing a blue hat and a white jersey with the number 7 on it.", - "id": 15745 - }, - { - "image_path": "/content/drive/MyDrive/combined/159145f8dbd829a0.jpg", - "response": "a man and a woman standing on a basketball court", - "id": 15746 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b8bf126cb0af36.jpg", - "response": "A young man wearing a black shirt with the words \"Be Good\" on it.", - "id": 15747 - }, - { - "image_path": "/content/drive/MyDrive/combined/180551e205981103.jpg", - "response": "A baseball player is walking on the field.", - "id": 15748 - }, - { - "image_path": "/content/drive/MyDrive/combined/18b277fb162b20c9.jpg", - "response": "In the image there are several people, some of them wearing black and white football jerseys with the number 17 on them.", - "id": 15749 - }, - { - "image_path": "/content/drive/MyDrive/combined/16998889a70b8fe7.jpg", - "response": "A baseball player is standing in the outfield with a mitt on his hand. He is wearing a blue jersey and white pants. The baseball field is green and well-maintained.", - "id": 15750 - }, - { - "image_path": "/content/drive/MyDrive/combined/155cc6d257b99e0a.jpg", - "response": "In the image, a baseball player is holding a bat and getting ready to hit a ball. He is wearing a white uniform and standing on a baseball field. There are several other people in the scene, including a group of players in the dugout and some spectators. Some of the players in the dugout are wearing baseball gloves. The image also shows a bench and a chair.", - "id": 15751 - }, - { - "image_path": "/content/drive/MyDrive/combined/14fd51fe73acf98a.jpg", - "response": "In the image, there is a baseball player wearing a white uniform and a blue and red hat who is in the process of throwing a baseball. The player is standing on a baseball field. There are two other men standing behind the player, one closer to the left side of the image and the other closer to the right side. Both of these men are wearing baseball gloves. There is a third man standing further back in the image, closer to the right side. He is wearing a navy and red jacket.", - "id": 15752 - }, - { - "image_path": "/content/drive/MyDrive/combined/169d24a37476295a.jpg", - "response": "A baseball player is holding a bat and is in the process of taking a swing. He is wearing a white uniform with red lettering. In the background, there is a fence and a bench.", - "id": 15753 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b52e3620cd36dd4.jpg", - "response": "In the image, a professional baseball player and two kids are standing on a baseball field. The kids are wearing baseball uniforms with numbers on the back. The player is wearing a white jersey with the number 14 on the back. They are all standing in a row, facing the outfield. In the distance, there are people sitting on a hill.", - "id": 15754 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a8660659b3f4ac0.jpg", - "response": "A grey AC/DC shirt(4,7),(995,993) with a design on the front of a man with a microphone and the text \"For those about to rock\" written above him.", - "id": 15755 - }, - { - "image_path": "/content/drive/MyDrive/combined/195ce29ead570c25.jpg", - "response": "A store window display of various t-shirts and souvenirs.", - "id": 15756 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a4c466cbe66fe06.jpg", - "response": "A man wearing an orange soccer jersey with a white stripe.", - "id": 15757 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac45522c14b6029.jpg", - "response": " A football coach(379,55),(996,997) wearing a black shirt(380,465),(996,998) and a hat(546,76),(828,265) with the word(518,730),(809,862) Army on it.", - "id": 15758 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a87cb57fc14e0e7.jpg", - "response": "A baseball player wearing a grey uniform with orange lettering and the number 27 is holding a black bat on the field.", - "id": 15759 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b1b48eb38fa4138.jpg", - "response": "The image shows a group of female softball players standing on a field. There are four players in the foreground, all wearing blue and white uniforms. One of the players is holding a baseball bat. In the background, there are other players standing on the field, as well as a bench and a fence. There are also several bottles and a cup on the ground.", - "id": 15760 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b18646dc0793ce6.jpg", - "response": "The image shows a baseball field with a fence in the background. Two men are standing next to each other, both wearing blue baseball uniforms with red and white lettering. The man on the left is wearing a blue cap with red lettering and has a goatee. The man on the right is wearing a blue cap with white lettering and has a necklace with a cross on it. The man on the right is also wearing a jersey with the number 28 on the back.", - "id": 15761 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba3c3ee3e337b63.jpg", - "response": "The image shows a baseball field with three men on it. They are all wearing white and red baseball uniforms and hats. One man is giving another man a high five. The men are standing on the dirt near the outfield.", - "id": 15762 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bfb5eee71438a44.jpg", - "response": "A man in a black suit and purple tie is holding a plaque and shaking hands with another man in uniform. They are standing in front of several flags including the United States Army flag and the 1775 flag.", - "id": 15763 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4cb69a10751a5e.jpg", - "response": "A collection of shirts, including Nike, Adidas, and Shirdi Launched By, are hung on a clothes line in the woods.", - "id": 15764 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c61a1c4fd64a13.jpg", - "response": "Minion pajamas for sale at a store.", - "id": 15765 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b2b8c62e8ae9351.jpg", - "response": "a baseball player for the team Texas is on the field", - "id": 15766 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ea49242b2ec085.jpg", - "response": "A baseball player is standing on the mound, holding a baseball glove. He is wearing a red and white uniform. There are other players on the field in various positions, some wearing red and some wearing blue. There is a crowd of people in the stands, watching the game.", - "id": 15767 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2ab22802214d74.jpg", - "response": "a man playing a guitar on a stage", - "id": 15768 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c07fa37b9587f9d.jpg", - "response": "A group of baseball players huddled together on the field.", - "id": 15769 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2113b528dccb39.jpg", - "response": "A man standing next to a sign that says danger swift water.", - "id": 15770 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b9ce75d52aac772.jpg", - "response": "An athlete is in the air after jumping off the board in a long jump competition. She is wearing a green jersey that says Methacton on the front and a black short with the number 2256. She is also wearing yellow and black shoes.", - "id": 15771 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a22c622b58e88eb.jpg", - "response": " a baseball player(485,179),(709,801) standing on the field", - "id": 15772 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b589cc296fa0e0a.jpg", - "response": "A female wrestler in a blue uniform is on the ground, wrestling another female wrestler in a red uniform. They are both on their knees, with the wrestler in blue in a headlock.", - "id": 15773 - }, - { - "image_path": "/content/drive/MyDrive/combined/196e52e7baffae74.jpg", - "response": "The image shows a group of people working together to load a large cart with wrapped presents. There are at least four people in the scene, wearing jackets and hats, with one person wearing a red jacket with \"The Salvation Army\" written on the back. The presents are piled up in the cart, which is located next to a trailer. There are also two red fire extinguishers in the scene, one on the wall and one on the ground.", - "id": 15774 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bb1b5385b2beac4.jpg", - "response": " a man(250,47),(996,997) running in the rain", - "id": 15775 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bdee6d43cca9fa8.jpg", - "response": "A baseball player holding a bat on the field.", - "id": 15776 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3f633876701162.jpg", - "response": "There are two children sitting on a couch, a boy and a young man. They are both wearing t-shirts and jeans. The boy is wearing a red t-shirt with a racing design on it and a Formula One logo. The young man is wearing a striped shirt. They are both looking at the camera.", - "id": 15777 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bdca86fdef04bdb.jpg", - "response": "a man standing in front of a sign that says paddington", - "id": 15778 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a420bd55984f18a.jpg", - "response": "a man with a painted face in a crowd of people", - "id": 15779 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a41b139f2dfc507.jpg", - "response": "A black and white photo of three baseball players walking across the field.", - "id": 15780 - }, - { - "image_path": "/content/drive/MyDrive/combined/1942c278272db29c.jpg", - "response": "A baseball player wearing a white and black jersey with the number 38 on it.", - "id": 15781 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b0bcafa19873d41.jpg", - "response": "A man wearing a green jersey with the number 13 on it is drinking a beer.", - "id": 15782 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b42a705cbadf891.jpg", - "response": "A basketball game is in action as two players from opposing teams, one from Union and one from Georgia State, give each other a high five.", - "id": 15783 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a8746200ed47472.jpg", - "response": "A baseball player wearing a red jersey and a black baseball cap is standing on the field. The player is wearing a baseball glove and has a red wristband on. The player is also wearing a black and red baseball cap.", - "id": 15784 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a79766429ca0bbf.jpg", - "response": "In the image there are two men standing side by side on a hockey rink. They are wearing hockey uniforms and are holding hockey sticks. The number 7 is on one man's jersey and the number 8 is on the other.", - "id": 15785 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ae9603bfffba50.jpg", - "response": "A baseball player is throwing a ball on the field.", - "id": 15786 - }, - { - "image_path": "/content/drive/MyDrive/combined/192d2ba23521a3a8.jpg", - "response": "A baseball player is standing on a base in a baseball field. Another player is standing next to him, holding a baseball glove. The field has white lines marking the bases and a grassy area.", - "id": 15787 - }, - { - "image_path": "/content/drive/MyDrive/combined/192b2b724c91a183.jpg", - "response": "A woman in a black and white top is handing a diploma to another woman in a white cap and gown.", - "id": 15788 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a9284ae4ec3be93.jpg", - "response": "In the image, a man is wearing a red jersey with the number 7 on the back. He is standing on a soccer field and watching the game. There are other people in the background, some of them are wearing soccer uniforms and some are holding soccer balls. The man in the foreground is wearing a black shirt.", - "id": 15789 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a909e5f2939cd13.jpg", - "response": "A man in a white and red shirt looking at a wall with writing on it.", - "id": 15790 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b38a223d483809e.jpg", - "response": "A large scoreboard at a hockey game displays the score as four to four.", - "id": 15791 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a9f1e8511425b1f.jpg", - "response": "A clothing rack with shirts hanging on it.", - "id": 15792 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa425a4e46485be.jpg", - "response": "A high school wrestling match is taking place in a gym. Two men are in the foreground, one is in a maroon shirt and the other is in a red shirt. They are in the middle of a match, with one on top of the other. The man in the maroon shirt is wearing a head gear. In the background, there are several other people, some wearing black and white and others wearing maroon and black. The gym floor is blue and there are white lines painted on it.", - "id": 15793 - }, - { - "image_path": "/content/drive/MyDrive/combined/19d5a33b42824c87.jpg", - "response": "a black and white photo of a group of people walking up a set of stairs", - "id": 15794 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ad0deb1a9a1867a.jpg", - "response": "A man wearing an orange shirt and a vest that says End the Fed on it.", - "id": 15795 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a00a8f7d566f53f.jpg", - "response": "The image shows a baseball team walking on a field. There are several players, some wearing blue jackets, and others wearing white jackets. They are walking in a line and are accompanied by a cameraman. The players are holding baseball gloves and some are carrying baseball bats.", - "id": 15796 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af6cda7fec59776.jpg", - "response": "A baseball player in a white and black striped uniform with the number 15 on the back.", - "id": 15797 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bf96dc71e399326.jpg", - "response": "A baseball player in a grey uniform is on the field.", - "id": 15798 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a372fab28a58b30.jpg", - "response": "A man wearing a black and white shirt is running.", - "id": 15799 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af77526b9b32837.jpg", - "response": "A couple of women holding a banner for a Saints Drumline in Columbus, Ohio.", - "id": 15800 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b27c7248af21d07.jpg", - "response": "A Blue Jays player shakes hands with a man while a woman looks on.", - "id": 15801 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6eeacd1866d7c1.jpg", - "response": "A large red and white Sam's sign on a brick wall.", - "id": 15802 - }, - { - "image_path": "/content/drive/MyDrive/combined/19be5fa8ca794c00.jpg", - "response": "The image shows a group of men wearing blue and white baseball uniforms standing together on a baseball field. There are several players of different heights and positions, with some walking and others standing. They are all wearing baseball caps and uniforms.", - "id": 15803 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a55f0e59de83bb7.jpg", - "response": "A baseball player wearing number 17 stands on the field.", - "id": 15804 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ad73ca1f3e13b4f.jpg", - "response": "A woman with a crown on her head and a black and yellow costume.", - "id": 15805 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b609cdc376f25c3.jpg", - "response": "The image shows a basketball game in progress. A player is in the air, having just dunked the basketball through the hoop. The ball is in midair, and the player is about to catch it. There are several other people in the scene, including players on the court and spectators in the background. The lights are bright and shining on the court, illuminating the action.", - "id": 15806 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bd5b29c45a41ef0.jpg", - "response": "In the image, there is a woman wearing a white top and black pants, standing next to a girl in white clothes. They are both in a parking lot, with a school bus parked nearby. The woman is also wearing a hat with red, white, and blue stars on it.", - "id": 15807 - }, - { - "image_path": "/content/drive/MyDrive/combined/1db0d174d0045561.jpg", - "response": "a baseball player with the number 14 on his back", - "id": 15808 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef43984c4821112.jpg", - "response": "In the image, there is a boy wearing a maroon and white uniform with the number 15 on it. He is standing in a hallway next to a brick wall. There is another person partially visible in the left side of the frame.", - "id": 15809 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f53a7959491a417.jpg", - "response": "The purple and white softball team is playing a game.", - "id": 15810 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3a7dbb5d72b955.jpg", - "response": "A baseball pitcher in a grey uniform stands on the mound. He is holding a mitt and appears to be getting ready to throw the ball. In the background, a player in a grey uniform stands with his hands on his knees. A few palm trees are visible in the distance.", - "id": 15811 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c281e326b484c85.jpg", - "response": "The image shows a baseball game in progress. There are several players on the field, some of them wearing baseball gloves. One player, wearing the number 38, is walking on the field while another player, wearing a blue hat, is talking to someone. A baseball bat is visible in the scene, held by a player.", - "id": 15812 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d45ebf17653be85.jpg", - "response": "A baseball player standing on a field near a base.", - "id": 15813 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f66decc2066212e.jpg", - "response": "a baseball player standing on the mound", - "id": 15814 - }, - { - "image_path": "/content/drive/MyDrive/combined/204ea8870d76a485.jpg", - "response": "A woman in a blue top and jean shorts is dancing on stage.", - "id": 15815 - }, - { - "image_path": "/content/drive/MyDrive/combined/2024b3909e39df00.jpg", - "response": "The image shows two men in military uniforms standing at attention in front of a row of flags. They are both carrying flags in their hands. The flags are of various sizes and colors, including red, white, and blue. The men are wearing black uniforms with gold trim and medals. One of the flags has the word \"Cooperation\" on it in blue.", - "id": 15816 - }, - { - "image_path": "/content/drive/MyDrive/combined/204f8f929072e498.jpg", - "response": "A man and a woman looking at a tablet.", - "id": 15817 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dfb0f4a97e80a90.jpg", - "response": "A man in camo shirt and a man with tattoos are holding a football jersey that says Sentinels on it.", - "id": 15818 - }, - { - "image_path": "/content/drive/MyDrive/combined/200c68cea4db98eb.jpg", - "response": "A woman wearing a red and black shirt standing on a soccer field.", - "id": 15819 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c514485d1cf8db1.jpg", - "response": "In the image, there is a young boy dressed in a baseball uniform. He is holding a baseball bat and is positioned to swing at a pitch. The boy is smiling and appears to be enjoying himself. He is standing on a baseball field, with a fence and a scoreboard visible in the background. The trees in the distance add a natural element to the scene.", - "id": 15820 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea6dee73a9d3840.jpg", - "response": "The image shows a baseball game in progress. There are several players on the field, some of them wearing baseball caps. A crowd of people is watching the game from the stands.", - "id": 15821 - }, - { - "image_path": "/content/drive/MyDrive/combined/1da1452e5f87561d.jpg", - "response": "A baseball player swinging a bat during a baseball game.", - "id": 15822 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ee6fb55aa254fb5.jpg", - "response": "A poster on a wall for a show called Kukur Tuk Tuk.", - "id": 15823 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdbcc76107e4e19.jpg", - "response": "A baseball game is in progress with a batter at the plate and a runner on first base. The batter is holding a baseball bat and wearing a helmet and a blue uniform. The runner is wearing a blue uniform and a black helmet. There are several other players on the field in various positions, and the stands are full of spectators. Some players are wearing baseball gloves, and one player has a baseball glove on his hand. The game is being played on a baseball field with a green grass infield and brown dirt bases.", - "id": 15824 - }, - { - "image_path": "/content/drive/MyDrive/combined/20104fd2895c59ca.jpg", - "response": "A group of PALY relay track team members standing on the track.", - "id": 15825 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d4bcd032ff3f069.jpg", - "response": "A man in a green jersey standing on a soccer field.", - "id": 15826 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fa0c26d4f30a51c.jpg", - "response": "a man in a purple and yellow uniform is talking to a camera man", - "id": 15827 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f719862d906942a.jpg", - "response": "A youth baseball jersey for the Yomiuri Giants, the professional baseball team in Japan. The jersey is red with white trim on the sleeves and collar. The word \"Giants\" is across the chest in blue with red trim. The jersey has a button front and the sleeves are a contrasting white. The Adidas logo is on the right sleeve and the Yomiuri Giants logo is on the left sleeve. The jersey is laying on a blue carpet.", - "id": 15828 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d183fac7aec357b.jpg", - "response": "a man and a woman shaking hands on a soccer field", - "id": 15829 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e82a9640ae04dd6.jpg", - "response": "a man with a mustache and beard wearing an orange apron with the letter b on it", - "id": 15830 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e3f4ed72ff58e98.jpg", - "response": "A man and a woman standing in front of a wall with different people on it.", - "id": 15831 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c18369be23ddf63.jpg", - "response": "The image features a group of boys wearing baseball uniforms, sitting on a bench. Some of the boys are smiling for the camera, and they are all holding baseball bats.", - "id": 15832 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0dbdd17333afd1.jpg", - "response": "A woman in a blue top and red bikini bottom standing on a beach.", - "id": 15833 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d47364cf4e05738.jpg", - "response": "In the image, there is a man wearing a blue and white baseball uniform and a baseball glove. He is standing on a baseball field and looking to his left. The man is wearing a hat with a C on it.", - "id": 15834 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f04999bc9b498d0.jpg", - "response": "a group of students(29,551),(118,946)(230,520),(303,906)(298,506),(390,918)(127,533),(217,923)(733,487),(817,843)(894,456),(997,847)(382,500),(463,881)(638,500),(713,848)(451,633),(649,997) standing in front of a crowd", - "id": 15835 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f999549111cd5fc.jpg", - "response": "The image shows two baseball players standing on a field, likely discussing a play. Both players are wearing baseball gloves, and one of them is holding a baseball helmet. They are positioned near the center of the field, with a banner in the background. The banner is advertising a radio station and features a yellow and blue sign. The players are wearing black shirts and white pants, typical uniform attire for baseball players.", - "id": 15836 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc950e9bfd06382.jpg", - "response": "A basketball player holding the ball in the air with two other players on the court, one wearing a red jersey and the other wearing a white jersey.", - "id": 15837 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f5e35aaee175a6d.jpg", - "response": "A baseball pitcher in a blue jersey is on the mound and has just thrown a pitch.", - "id": 15838 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e72f8b49c4879c0.jpg", - "response": "A baseball player is depicted on a red and white card.", - "id": 15839 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d12a6441ea7408e.jpg", - "response": "A woman in a yellow shirt is holding a glass of beer.", - "id": 15840 - }, - { - "image_path": "/content/drive/MyDrive/combined/202ae7b97b50af49.jpg", - "response": "a man is holding a scuba suit in a house", - "id": 15841 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d3cd60d6247871a.jpg", - "response": "a man in a grey and white shirt is pointing to a screen with a map behind him", - "id": 15842 - }, - { - "image_path": "/content/drive/MyDrive/combined/200a471240dcc4a3.jpg", - "response": "In the image, a young boy wearing a red Manchester United jacket is holding a red scarf with the club's logo on it. He is standing on a busy sidewalk and there are several other people around him. Some of them are also wearing scarves and other Manchester United merchandise.", - "id": 15843 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cef07b3fafc168c.jpg", - "response": "A women's basketball game is being played in a gym.", - "id": 15844 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea03ef86152ddbf.jpg", - "response": "A group of boys are posing for a picture. They are all wearing white shirts and are standing behind a person who is laying on the ground. The person is wearing a red, white, and blue shirt. In front of the group of boys, there is a person wearing a black shirt.", - "id": 15845 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f0c67100a060f4d.jpg", - "response": "a group of people running in a race", - "id": 15846 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ed96e8f70918fd6.jpg", - "response": "A group of people standing on top of a race platform.", - "id": 15847 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1e6212320b3c5d.jpg", - "response": "A baseball game is in action on a baseball field. A runner is crossing home plate, while the catcher is standing nearby. There is a third base coach standing on the field, watching the play.", - "id": 15848 - }, - { - "image_path": "/content/drive/MyDrive/combined/20307f178209215c.jpg", - "response": "The image shows a basketball court with several female basketball players on it. There are five players in the scene, all dressed in uniforms. Some of them are walking around the court, while one player is standing near the center. The players are of various heights and positions, with some closer to the front of the court and others near the back. The court is also equipped with several chairs, placed around the perimeter of the court.", - "id": 15849 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e70070c47181aea.jpg", - "response": "A soccer player wearing a white jersey with the number 28 on the back.", - "id": 15850 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eaf8cbb5b585a56.jpg", - "response": "a group of people standing next to each other in a room", - "id": 15851 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ed7094e35f0d762.jpg", - "response": "A volleyball player wearing a black jersey with the number 1 on it.", - "id": 15852 - }, - { - "image_path": "/content/drive/MyDrive/combined/203de8cfe709bc8e.jpg", - "response": "In the image, there are four cheerleaders sitting in a row. They are all wearing red and white uniforms. The first cheerleader is blonde and is wearing a white shirt under a red jacket with white sleeves. She is also wearing white shorts. The second cheerleader is blonde and is wearing a white shirt under a red jacket with white sleeves. She is also wearing white shorts. The third cheerleader is black and is wearing a jean jacket over her red and white uniform. The fourth cheerleader is brunette and is wearing a white shirt under a red jacket with white sleeves. She is also wearing white shorts. They are all sitting on chairs that are placed on a stage.", - "id": 15853 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d98f41151f68ff7.jpg", - "response": "A man wearing a brown shirt that says \"Make Cupcakes Not War\" on it.", - "id": 15854 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ced0af5a4a0a9e2.jpg", - "response": "The image depicts a group of young baseball players dressed in blue and white uniforms. They are standing in a huddle on a baseball field, with the players' backs facing the camera. Some players are holding baseball gloves. In the background, there is a tent and a chair. The field has a netted fence and a tree.", - "id": 15855 - }, - { - "image_path": "/content/drive/MyDrive/combined/216dedb2135fb0bf.jpg", - "response": " Denver Broncos fans(375,87),(808,997)(697,133),(996,996)(86,153),(410,996) look at a football(523,466),(741,606) before the game.", - "id": 15856 - }, - { - "image_path": "/content/drive/MyDrive/combined/2209ba88cdc4232a.jpg", - "response": "A baseball pitcher in a white and blue uniform with the number 36 on his shirt.", - "id": 15857 - }, - { - "image_path": "/content/drive/MyDrive/combined/20bb636326491022.jpg", - "response": "A man wearing a white shirt with red and blue trim, and a blue lanyard around his neck.", - "id": 15858 - }, - { - "image_path": "/content/drive/MyDrive/combined/2346ce571a0f0d8b.jpg", - "response": "a man wearing a white baseball cap and an orange shirt that says Longhorns on the back", - "id": 15859 - }, - { - "image_path": "/content/drive/MyDrive/combined/2296367f4e2a5170.jpg", - "response": "A group of women standing in a line on a gymnastics floor.", - "id": 15860 - }, - { - "image_path": "/content/drive/MyDrive/combined/209976a5ac6f4a90.jpg", - "response": "A group of cheerleaders sitting on the sidelines at a basketball game. They are all dressed in blue and white uniforms and are holding pom poms.", - "id": 15861 - }, - { - "image_path": "/content/drive/MyDrive/combined/220f9ead5541fbd2.jpg", - "response": "In the image there is a baseball player wearing a white jersey with blue lettering that says \"Storm Chasers\" on it. The player is standing on the field and looking to the side. The player is wearing a blue hat and has blue gloves on. The player is also wearing a black belt. The background features a wall that is a dark green color.", - "id": 15862 - }, - { - "image_path": "/content/drive/MyDrive/combined/228b7f68c0f212f9.jpg", - "response": "The image features two baseball players on the field, both wearing blue and white uniforms. One of the players is walking towards the pitcher's mound, and the other player is standing in the outfield with his hands on his hips. The pitcher's mound is located in the upper right corner of the image, and the outfield is to the right of the players.", - "id": 15863 - }, - { - "image_path": "/content/drive/MyDrive/combined/2258490cf90b41c7.jpg", - "response": "A woman with a black jacket and dark hair is sitting on a bus. She has a red bag with white letters on it.", - "id": 15864 - }, - { - "image_path": "/content/drive/MyDrive/combined/205e4cee093f3e61.jpg", - "response": "The image features a baseball field with two baseball players standing on the field. Both players are wearing blue and white uniforms and have their hands on their hips. One of the players is holding a black baseball glove. The players are positioned in the outfield and are looking in different directions.", - "id": 15865 - }, - { - "image_path": "/content/drive/MyDrive/combined/216cb22719effcbd.jpg", - "response": "a person standing in a field wearing a cheerleader outfit", - "id": 15866 - }, - { - "image_path": "/content/drive/MyDrive/combined/205633a9e6ddb2a6.jpg", - "response": "An open book with a picture of a man wearing a blue jacket with a K on it.", - "id": 15867 - }, - { - "image_path": "/content/drive/MyDrive/combined/212375105baaf8d1.jpg", - "response": "In the image, there is a man dressed in a blue uniform standing on the field. He is holding a football and appears to be interacting with a group of people, possibly signing autographs. Some of the people around him are wearing backpacks and the scene takes place on a football field.", - "id": 15868 - }, - { - "image_path": "/content/drive/MyDrive/combined/20915347bc240365.jpg", - "response": " Two girls(359,140),(950,653)(0,140),(643,663) on the ground fighting for a basketball(398,515),(528,668)", - "id": 15869 - }, - { - "image_path": "/content/drive/MyDrive/combined/232a40e5269e0bc1.jpg", - "response": "A group of people standing around a table with a cooler on it.", - "id": 15870 - }, - { - "image_path": "/content/drive/MyDrive/combined/2110691739270256.jpg", - "response": "A man wearing a green Steelers shirt with the word Steelers on it.", - "id": 15871 - }, - { - "image_path": "/content/drive/MyDrive/combined/21760ff5ea1158ee.jpg", - "response": "A man in a white and red baseball uniform with red trim and a red cap with a white W on it. He is wearing a black and red baseball glove and has a white baseball in his right hand. He is standing on the pitcher's mound and has just thrown the ball. The ball is in the air and heading towards the catcher. The pitcher is wearing black and white baseball cleats. The pitcher's mound is covered in brown dirt and there is a white capital letter G in the dirt to the left of the pitcher. The pitcher's mound is surrounded by green grass.", - "id": 15872 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c7c4718c98ae22.jpg", - "response": " Two football players(81,44),(562,997)(459,143),(953,997) from the eagles football team pose for a picture.", - "id": 15873 - }, - { - "image_path": "/content/drive/MyDrive/combined/214e36f04211b080.jpg", - "response": "A peach colored hat with a white square logo on it.", - "id": 15874 - }, - { - "image_path": "/content/drive/MyDrive/combined/209d155f80bf0fed.jpg", - "response": "The women are wearing blue and white uniforms.", - "id": 15875 - }, - { - "image_path": "/content/drive/MyDrive/combined/21d8c4f2f275e908.jpg", - "response": "A baseball player standing next to a man in a suit.", - "id": 15876 - }, - { - "image_path": "/content/drive/MyDrive/combined/21efd8d0c42e3cfe.jpg", - "response": "A navy blue Hyperboy shirt laid out on a wooden floor.", - "id": 15877 - }, - { - "image_path": "/content/drive/MyDrive/combined/211563903b4782e4.jpg", - "response": "A football player and cheerleader pose for a picture.", - "id": 15878 - }, - { - "image_path": "/content/drive/MyDrive/combined/20f09fa1bd539bb2.jpg", - "response": "The image features three men standing together, smiling for a photo. They are all dressed in blue and yellow racing uniforms, and are likely part of a racing team. The man in the middle has short hair and is wearing glasses. The man on the far left is holding a black and silver object, possibly a remote control. The two men on the right are also holding something silver, but it is not clear what it is. The background is a bit blurry, but there is a sign that says \"Cisco Live 2012\" in the bottom left corner.", - "id": 15879 - }, - { - "image_path": "/content/drive/MyDrive/combined/21947330165b5c88.jpg", - "response": "In the image, a baseball player is in the middle of a pitch on a baseball field. The pitcher is wearing a blue and white uniform and is winding up to throw the ball. The ball is in the air, floating towards the catcher. There are several other people on the field, including players and possibly some umpires. The field has a green wall and a yellow foul line.", - "id": 15880 - }, - { - "image_path": "/content/drive/MyDrive/combined/206f6db5f72ebc08.jpg", - "response": "A baseball player is getting ready to swing at a pitch.", - "id": 15881 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c38fef7df4fdc3.jpg", - "response": "The image features a group of polo players standing on a stage. There are four players in total, dressed in white and wearing polo shirts and tall black boots. They are all holding polo mallets. The two players on the left are both holding their mallets in the air, while the two on the right are both making a fist with their hands. The players are standing on boxes, with the one on the left being taller than the one on the right. The polo players are all smiling for the camera.", - "id": 15882 - }, - { - "image_path": "/content/drive/MyDrive/combined/2195b3800a52a94b.jpg", - "response": "Kellen decked out in his all american gear with his brother.", - "id": 15883 - }, - { - "image_path": "/content/drive/MyDrive/combined/22581d83eecb5160.jpg", - "response": "A baseball player standing on the pitcher's mound on a baseball field.", - "id": 15884 - }, - { - "image_path": "/content/drive/MyDrive/combined/22fb133813548a9f.jpg", - "response": "a woman wearing a navy blue sweater with patches all over the sleeves", - "id": 15885 - }, - { - "image_path": "/content/drive/MyDrive/combined/213adf5fdeb66e22.jpg", - "response": "A baseball player slides into the base while another player tries to catch the ball.", - "id": 15886 - }, - { - "image_path": "/content/drive/MyDrive/combined/20af0ca1a02bdf37.jpg", - "response": "In the image, there is a baseball player wearing a red jersey that says \"Canada\" on it. He is holding a baseball bat and standing on a baseball field. There are other players in the background, some of which are holding baseball gloves. The field has white lines marking the bases and a fence surrounding it.", - "id": 15887 - }, - { - "image_path": "/content/drive/MyDrive/combined/20ba1ea146df22e6.jpg", - "response": "a pitcher on the mound in a baseball game", - "id": 15888 - }, - { - "image_path": "/content/drive/MyDrive/combined/20df057bfe0f01be.jpg", - "response": "Two girls in soccer uniforms are standing on a field.", - "id": 15889 - }, - { - "image_path": "/content/drive/MyDrive/combined/20894a203b010362.jpg", - "response": "A man in a blue shirt is standing in a room with a drum set. He is holding a large yellow ruler and scratching his head.", - "id": 15890 - }, - { - "image_path": "/content/drive/MyDrive/combined/2338d98c1f433707.jpg", - "response": "A baseball player wearing a San Francisco jersey is running across the field.", - "id": 15891 - }, - { - "image_path": "/content/drive/MyDrive/combined/21f2da829854652c.jpg", - "response": "A sign for the brand Altan, with a picture of a person wearing a full face ski mask.", - "id": 15892 - }, - { - "image_path": "/content/drive/MyDrive/combined/22b156c73c57d636.jpg", - "response": "A baseball player in a blue uniform is getting ready to bat. He is holding a baseball bat and is standing on a baseball field. There are other players and a coach visible in the background.", - "id": 15893 - }, - { - "image_path": "/content/drive/MyDrive/combined/2096dc32957966d1.jpg", - "response": "A group of men standing in front of a sign that says Bahrain Triathlon.", - "id": 15894 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a3dfada507c03d.jpg", - "response": "Two women are smiling for a picture. One woman has a name tag that says Weganta and is wearing a purple jacket. The other woman has blonde hair and is wearing a blue top.", - "id": 15895 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c8a5b9de0edc40.jpg", - "response": "A woman in a black and yellow softball uniform.", - "id": 15896 - }, - { - "image_path": "/content/drive/MyDrive/combined/22ab95b42d6e370a.jpg", - "response": "A classroom with a group of children sitting around a blue and red cardboard display with cutouts of Dr. Seuss characters.", - "id": 15897 - }, - { - "image_path": "/content/drive/MyDrive/combined/232c24e058025f06.jpg", - "response": "The image features two men standing in front of a wall of white flowers. Both men are wearing white tank tops and have tattoos on their upper arms. The man on the left has a headband on and is wearing a white beanie. The man on the right has a goatee and is wearing a silver necklace with the word \"Circuit\" on it. The necklace also has a black star below the word \"Circuit\".", - "id": 15898 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a9959e9dcb4f97.jpg", - "response": "In the image there are two young men standing next to each other. They are both wearing basketball uniforms and are holding basketballs. The man on the left is taller and has a afro. The man on the right is shorter with blonde hair. They both have numbers on their backs. The man on the left has 4 on his back and the man on the right has 2 on his back. The background is a school gym with bleachers.", - "id": 15899 - }, - { - "image_path": "/content/drive/MyDrive/combined/222d6b91bb477cc5.jpg", - "response": "a young boy wearing a yellow shirt with wings on his back", - "id": 15900 - }, - { - "image_path": "/content/drive/MyDrive/combined/22360d4318719ff5.jpg", - "response": "A woman with long hair wearing a white sweatshirt with the word \"BINARY\" on the front.", - "id": 15901 - }, - { - "image_path": "/content/drive/MyDrive/combined/234f7bf1beaa0f4f.jpg", - "response": "A blonde woman in a red and white cheerleading uniform with the letters WMHS on the chest.", - "id": 15902 - }, - { - "image_path": "/content/drive/MyDrive/combined/214b04fe1af6bd4e.jpg", - "response": "The image shows a baseball player, in full uniform, standing on a baseball field. He is holding a bat and signing an autograph for a fan. The player is wearing a blue and white uniform with the word \"Texas\" written across the chest. There are several other people visible in the image, including a few other players and a few fans. The baseball field is covered in green grass and brown dirt.", - "id": 15903 - }, - { - "image_path": "/content/drive/MyDrive/combined/210aa8793ef8c9d3.jpg", - "response": "A group of baseball players wearing blue and white uniforms are standing on the pitcher's mound. One player is holding a catcher's mitt and appears to be talking to another player. There is a player wearing a blue hat and a player wearing a blue helmet.", - "id": 15904 - }, - { - "image_path": "/content/drive/MyDrive/combined/21efef3b3e4bb4a1.jpg", - "response": "A woman in a red shirt and grey pants is pitching a softball.", - "id": 15905 - }, - { - "image_path": "/content/drive/MyDrive/combined/20903070fab2afe5.jpg", - "response": "The cover of the 2004 Sports Illustrated Baseball Preview issue.", - "id": 15906 - }, - { - "image_path": "/content/drive/MyDrive/combined/2487b60c7d98d917.jpg", - "response": "The Miami Heat cheerleaders perform on stage in front of a Coors Light banner.", - "id": 15907 - }, - { - "image_path": "/content/drive/MyDrive/combined/23dd6cf6215ce987.jpg", - "response": "A blonde cheerleader is being interviewed in front of her locker.", - "id": 15908 - }, - { - "image_path": "/content/drive/MyDrive/combined/235a3c5b9f313f08.jpg", - "response": "Two men standing next to each other smiling for the camera.", - "id": 15909 - }, - { - "image_path": "/content/drive/MyDrive/combined/24dc9ba1cc15d9e5.jpg", - "response": "A man standing in a cage with a crowd watching him.", - "id": 15910 - }, - { - "image_path": "/content/drive/MyDrive/combined/2508efe5bc5e8bab.jpg", - "response": "The image shows two women in matching red jumpsuits that say Mcn on the chest. They are standing in front of a booth for Mcn.", - "id": 15911 - }, - { - "image_path": "/content/drive/MyDrive/combined/241d93903090a5cc.jpg", - "response": "A baseball player in a white and blue uniform with a glove on his hand.", - "id": 15912 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c6f04932182061.jpg", - "response": "A man wearing a black and orange baseball hat and a yellow Kobe Bryant jersey with the number 24 on the back. He is holding a microphone to his shoulder.", - "id": 15913 - }, - { - "image_path": "/content/drive/MyDrive/combined/24cf269c910eda1b.jpg", - "response": "The image shows a baseball field with a large crowd of people in the stands. A team of baseball players is standing on the field, wearing red and white uniforms. The player at the front of the line is being interviewed by a news reporter who is holding a microphone and camera.", - "id": 15914 - }, - { - "image_path": "/content/drive/MyDrive/combined/252c6e9e0ca7fb30.jpg", - "response": "A blue and white striped shirt with the word \"Bankoa\" on it.", - "id": 15915 - }, - { - "image_path": "/content/drive/MyDrive/combined/24ae21fd94f69265.jpg", - "response": "A man wearing a jersey that says Orioles on it and the number 31.", - "id": 15916 - }, - { - "image_path": "/content/drive/MyDrive/combined/25321f6d6f82acb0.jpg", - "response": "A person standing in front of a window with a poster of a woman wearing a white t-shirt and cut off jeans.", - "id": 15917 - }, - { - "image_path": "/content/drive/MyDrive/combined/25567df6edb48564.jpg", - "response": "A man wearing a blue shirt with the letters R and a on it.", - "id": 15918 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f7385a8c03c57a.jpg", - "response": "The women's hockey team is holding up a trophy.", - "id": 15919 - }, - { - "image_path": "/content/drive/MyDrive/combined/24c256f6b038ae7c.jpg", - "response": "A woman in a blue and white uniform is standing in front of a crowd.", - "id": 15920 - }, - { - "image_path": "/content/drive/MyDrive/combined/2559ff40c6de65d5.jpg", - "response": "A basketball player wearing a white jersey with the number 8 on the front.", - "id": 15921 - }, - { - "image_path": "/content/drive/MyDrive/combined/244d6bc3c51afecb.jpg", - "response": "The image shows a group of men wearing baseball uniforms. They are standing next to each other and laughing. Some of the men are wearing baseball caps. One man is wearing a cap with the word \"Chasers\" on it. The uniforms have the word \"Storm\" on the front. There is a bench behind the men.", - "id": 15922 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b808129d025f6d.jpg", - "response": "The image shows a group of women playing volleyball inside a gym. There are three women in the foreground, with one of them jumping up to hit the volleyball that is currently in the air. The other two women are reaching up to block the hit. The volleyball is positioned near the top of the scene, with the women spread out in front of it.", - "id": 15923 - }, - { - "image_path": "/content/drive/MyDrive/combined/25107bcba5040ae4.jpg", - "response": "Inmates are sitting at computers in a room.", - "id": 15924 - }, - { - "image_path": "/content/drive/MyDrive/combined/23832afc75ec6d74.jpg", - "response": "A man in a white shirt and jeans stands next to a man in a red Bulls jersey.", - "id": 15925 - }, - { - "image_path": "/content/drive/MyDrive/combined/253ce117b74b1684.jpg", - "response": "A blue shirt with red and white stripes on the chest.", - "id": 15926 - }, - { - "image_path": "/content/drive/MyDrive/combined/24e8defd16a5a97a.jpg", - "response": "A man in a black and gold football uniform does push ups next to a man in uniform.", - "id": 15927 - }, - { - "image_path": "/content/drive/MyDrive/combined/253824abced8da1a.jpg", - "response": "Team Rocket from Pokemon in their black outfits with white gloves and tall white boots.", - "id": 15928 - }, - { - "image_path": "/content/drive/MyDrive/combined/24ff7b14c346f28f.jpg", - "response": "In the image, there are three young people wearing blue and white jerseys. They are standing close to each other and appear to be talking or laughing. One of the young people is holding a book. In the background, there are several other people, some of whom are also wearing jerseys. There is also a backpack on someone's back. The setting seems to be a sporting event or a gathering of fans.", - "id": 15929 - }, - { - "image_path": "/content/drive/MyDrive/combined/24be8f7c5d7244db.jpg", - "response": "The image features a basketball court with several basketball players on it. There are four players in the main focus of the image, all wearing blue and yellow uniforms. One of the players is giving a thumbs up, while another has his hand on his hip. In the background, there are two more players, one near the left side and the other near the right side of the image. There is also a bench in the background on the right side.", - "id": 15930 - }, - { - "image_path": "/content/drive/MyDrive/combined/24f8e3443f08a3af.jpg", - "response": " A girl(107,351),(861,967) in a black and white basketball uniform(243,345),(460,663) reaching for a basketball(315,28),(431,107)", - "id": 15931 - }, - { - "image_path": "/content/drive/MyDrive/combined/2506060959d733df.jpg", - "response": "a baseball player standing in the outfield of a stadium", - "id": 15932 - }, - { - "image_path": "/content/drive/MyDrive/combined/2537963a3e229d8f.jpg", - "response": "A man wearing a red shirt with white writing on it standing behind a woman wearing a red shirt with white writing on it.", - "id": 15933 - }, - { - "image_path": "/content/drive/MyDrive/combined/250972da15f9e0d2.jpg", - "response": "The image features a man dressed as a cyclist standing on a stage with another man dressed as a cyclist. Both men are standing on a stage in front of a wall with many logos on it. There is also a man dressed as Elvis Presley standing on the right side of the stage. In the foreground, there is a person wearing a red backpack who is taking a picture of the three men on the stage.", - "id": 15934 - }, - { - "image_path": "/content/drive/MyDrive/combined/28485a911c887968.jpg", - "response": "a young boy wearing a blue soccer jersey with the number 9 on the back standing on a soccer field", - "id": 15935 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c715ce66f54b83.jpg", - "response": "a man wearing a red and white shirt is smiling", - "id": 15936 - }, - { - "image_path": "/content/drive/MyDrive/combined/284af591590f80b5.jpg", - "response": "A soccer match is in progress with players from both teams on the field. One player from the Arsenal team is being shown a yellow card by the referee. Another player from the Arsenal team is grabbing his arm while another player from the other team is grabbing his leg.", - "id": 15937 - }, - { - "image_path": "/content/drive/MyDrive/combined/27be845b5eb0f421.jpg", - "response": "A man wearing a green shirt and a baseball mitt stands in a baseball field.", - "id": 15938 - }, - { - "image_path": "/content/drive/MyDrive/combined/260bc26785910fb3.jpg", - "response": "A football match between two teams in black and red kits.", - "id": 15939 - }, - { - "image_path": "/content/drive/MyDrive/combined/27bd76e30bd4e656.jpg", - "response": "A man in a white and blue shirt with the words Simmons First National Bank on it.", - "id": 15940 - }, - { - "image_path": "/content/drive/MyDrive/combined/282e967b59334ff7.jpg", - "response": "A baseball player wearing a black and gold uniform with the number 27 standing next to another baseball player.", - "id": 15941 - }, - { - "image_path": "/content/drive/MyDrive/combined/26ed8c2b8053be22.jpg", - "response": " A young RailHawks soccer fan(223,4),(995,492) shows off his new RailHawks t-shirt(3,421),(995,997).", - "id": 15942 - }, - { - "image_path": "/content/drive/MyDrive/combined/2761da6ce2147913.jpg", - "response": "Four women wearing pink and black volleyball outfits are huddled together in front of the net.", - "id": 15943 - }, - { - "image_path": "/content/drive/MyDrive/combined/25705a33dbaec163.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 15944 - }, - { - "image_path": "/content/drive/MyDrive/combined/26800b906375e9ee.jpg", - "response": "A soccer match with two teams playing against each other.", - "id": 15945 - }, - { - "image_path": "/content/drive/MyDrive/combined/2595e4c49a4a1753.jpg", - "response": "A colorful sign for the Mai Tai Bar is displayed in front of a store.", - "id": 15946 - }, - { - "image_path": "/content/drive/MyDrive/combined/27317c159d7670a4.jpg", - "response": "A group of people standing around a table with a banner that says Sombando Adventure and Recreation.", - "id": 15947 - }, - { - "image_path": "/content/drive/MyDrive/combined/26a8a9678ccfdfb5.jpg", - "response": "A man wearing a white shirt with a motorcycle on it is talking on a cell phone.", - "id": 15948 - }, - { - "image_path": "/content/drive/MyDrive/combined/2578c6311603aa29.jpg", - "response": "A man with tattoos on his body and wearing white shorts with the word Matamunua on them.", - "id": 15949 - }, - { - "image_path": "/content/drive/MyDrive/combined/26448118471da5a9.jpg", - "response": "In the image there is a baseball player wearing a white pinstripe uniform and a blue hat running on the field. The player is a first baseman for the New York Yankees and is wearing the number 24. The baseball field is filled with fans watching the game. There is a large yellow sign in the background advertising Who Buys Houses. Another smaller sign is in the foreground advertising Mason.", - "id": 15950 - }, - { - "image_path": "/content/drive/MyDrive/combined/2847293e0ee95c19.jpg", - "response": "In the image, there is a little boy wearing a green and blue striped shirt with the number 38 on it. He is standing in a yard with a wooden fence in the background. The boy has brown hair and his mouth is open as if he is making a face or talking.", - "id": 15951 - }, - { - "image_path": "/content/drive/MyDrive/combined/2761374234758dd6.jpg", - "response": "a group of children playing soccer on a field", - "id": 15952 - }, - { - "image_path": "/content/drive/MyDrive/combined/290587bcfd3169b1.jpg", - "response": "In the image there are three women running on a track. The woman in the front has the number 3851 on her shirt and is leading the other two women. The woman in second place has the number 1864 on her shirt. The third place runner is behind them and has a white shirt with green and black writing on it.", - "id": 15953 - }, - { - "image_path": "/content/drive/MyDrive/combined/26cee2b196f84e79.jpg", - "response": "Two young men wearing baseball caps, white t-shirts and black pants are walking down the street. One of them is carrying a backpack. They are walking by a fence.", - "id": 15954 - }, - { - "image_path": "/content/drive/MyDrive/combined/280339e196114858.jpg", - "response": "a person wearing an orange shirt with the letter c on it", - "id": 15955 - }, - { - "image_path": "/content/drive/MyDrive/combined/28d1427ca1b1fe54.jpg", - "response": "A baseball game is in progress with several players on the field. There is a batter up to bat and the coach is standing next to him, holding a helmet. The catcher is also standing in the foreground, wearing a baseball glove. There are other players scattered around the field, some with baseball gloves, and one player is leaning against a rail in the background.", - "id": 15956 - }, - { - "image_path": "/content/drive/MyDrive/combined/278105799be0bbf5.jpg", - "response": "A women's basketball team huddles together on the court.", - "id": 15957 - }, - { - "image_path": "/content/drive/MyDrive/combined/26b593b9bbd3bc4c.jpg", - "response": "A man wearing a black and yellow Boston Bruins jersey with the number 22 on it.", - "id": 15958 - }, - { - "image_path": "/content/drive/MyDrive/combined/259a557e72c68656.jpg", - "response": "A man and a woman are holding a yellow towel with the number 43 on it. The man is wearing a white jersey with the number 43 on it as well. They are standing in front of a blue and white Super Bowl XLIII banner. The woman is wearing a black shirt and has beads around her neck.", - "id": 15959 - }, - { - "image_path": "/content/drive/MyDrive/combined/27c471eed8c641a7.jpg", - "response": "A soccer player in a blue uniform is kicking a soccer ball on a field.", - "id": 15960 - }, - { - "image_path": "/content/drive/MyDrive/combined/282aeaa6c802c517.jpg", - "response": "Two men standing next to each other, one wearing a white jersey with the word Toronto on it and the other wearing a black blazer.", - "id": 15961 - }, - { - "image_path": "/content/drive/MyDrive/combined/279d906a44f7cfb6.jpg", - "response": "a pitcher in an orange jersey and white pants", - "id": 15962 - }, - { - "image_path": "/content/drive/MyDrive/combined/25d0dfc975cbc3c1.jpg", - "response": "The image shows a basketball game in progress. Several players are visible, wearing uniforms and standing on the court. One player is holding a towel over his head. The court is a wood panel design.", - "id": 15963 - }, - { - "image_path": "/content/drive/MyDrive/combined/2631b0845d62a3ac.jpg", - "response": "a runner wearing a red hat and a white tank top that says Adidas.", - "id": 15964 - }, - { - "image_path": "/content/drive/MyDrive/combined/28078b0f13f24371.jpg", - "response": "A baseball pitcher in a white and blue uniform is standing on the pitcher's mound. He is wearing a baseball glove and is getting ready to throw the ball. The pitcher is standing on the mound with his hands and arms in a certain position.", - "id": 15965 - }, - { - "image_path": "/content/drive/MyDrive/combined/25aa0d5e189efd76.jpg", - "response": "A girl with blue eyes wearing a blue sweatshirt with the letters \"CSUF\" on the front. She has her hair in braids and is standing in a driveway.", - "id": 15966 - }, - { - "image_path": "/content/drive/MyDrive/combined/2824436037dbb694.jpg", - "response": "The image features two basketball players on a court, competing against each other. One player is wearing a white jersey with the word \"Arkansas\" written on it, and is trying to block the other player from shooting a basket. The player in the red jersey has his arm extended, attempting to move the basketball away from the white jersey player. The crowd can be seen in the background, watching the game.", - "id": 15967 - }, - { - "image_path": "/content/drive/MyDrive/combined/27558d9d93a1629e.jpg", - "response": "a group of people walking down the street holding flags and signs", - "id": 15968 - }, - { - "image_path": "/content/drive/MyDrive/combined/26b56cd279eb01bf.jpg", - "response": "The image shows three baseball players on a field, all wearing blue and white uniforms and helmets. They are congratulating each other and shaking hands. The players have dirt on their pants and white gloves.", - "id": 15969 - }, - { - "image_path": "/content/drive/MyDrive/combined/291a479eff504590.jpg", - "response": "In the image, a woman with a blue object on her face is standing on a beach with other women. Some women are wearing numbers on their arms, and one woman has the number 16 painted on her arm. There are other people in the background, and some are wearing green and white shirts.", - "id": 15970 - }, - { - "image_path": "/content/drive/MyDrive/combined/26bc06310ca77c7a.jpg", - "response": "Three bikers, one wearing a Seattle Euro jersey, one wearing an Oregon jersey, and one wearing a white Oregon jersey, stand in a room.", - "id": 15971 - }, - { - "image_path": "/content/drive/MyDrive/combined/2786961fb55edf85.jpg", - "response": "a man wearing a red sweatshirt and a hat", - "id": 15972 - }, - { - "image_path": "/content/drive/MyDrive/combined/2655e1f5dc31a8c9.jpg", - "response": "a man with a tattoo on his right upper arm, wearing a black camo tank top and blue shorts", - "id": 15973 - }, - { - "image_path": "/content/drive/MyDrive/combined/2687d758cc1d6e2c.jpg", - "response": "A framed poster of a baseball player in a black jersey with the number 16 on it.", - "id": 15974 - }, - { - "image_path": "/content/drive/MyDrive/combined/278a0fb214eb3f2c.jpg", - "response": "The image features three men standing on a race podium. They are all holding up small signs above their heads. The man on the left is wearing a black t-shirt and khaki shorts. The man in the middle is wearing a blue t-shirt and green shorts. The man on the right is wearing a white t-shirt and grey shorts. There is a black tent behind them with the words \"PUMP TRACK CHALLENGE\" written on it.", - "id": 15975 - }, - { - "image_path": "/content/drive/MyDrive/combined/2775ba9b7cc41276.jpg", - "response": "A group of people standing behind a table.", - "id": 15976 - }, - { - "image_path": "/content/drive/MyDrive/combined/296a93af6b25b1b2.jpg", - "response": "a man in a blue jersey is holding a basketball", - "id": 15977 - }, - { - "image_path": "/content/drive/MyDrive/combined/25e7c45dbab7cbc2.jpg", - "response": "A man in a grey baseball uniform with the word Cards on it.", - "id": 15978 - }, - { - "image_path": "/content/drive/MyDrive/combined/29104fa3a4eddc38.jpg", - "response": "The image shows a baseball field with two players on it. One of the players is a man wearing a black and orange uniform and is running towards the dugout. The other player is a coach, also wearing a black and orange uniform, who is standing on the field. The coach is holding a baseball glove in his right hand. The players are interacting with each other, and there are several other people in the scene, some of whom are also wearing baseball uniforms. The field has white lines and a green grass surface.", - "id": 15979 - }, - { - "image_path": "/content/drive/MyDrive/combined/25b5234337840bc3.jpg", - "response": "a pitcher on the mound getting ready to throw a ball", - "id": 15980 - }, - { - "image_path": "/content/drive/MyDrive/combined/2719f14d59ca32f9.jpg", - "response": "In the image there is a man wearing a blue and white hat and a white shirt. He is holding a microphone and has his arm raised. He is standing on a stage in front of a crowd of people. Some of the people in the crowd are raising their hands. There is another man standing off to the side of the stage.", - "id": 15981 - }, - { - "image_path": "/content/drive/MyDrive/combined/28c4fd47281e7384.jpg", - "response": "A baseball game is in progress with a batter up to plate. The batter is holding a baseball bat and is about to swing at the ball. The pitcher is holding a baseball in his hand and is preparing to throw the ball. The catcher is kneeling down with his glove out, ready to catch the ball. There are several other players on the field, some with baseball gloves, and some with baseball bats. They are all focused on the game, ready to react to the outcome of the pitch.", - "id": 15982 - }, - { - "image_path": "/content/drive/MyDrive/combined/2943018e46396677.jpg", - "response": "A man standing in a doorway with the words \"Summer Out There\" written in green.", - "id": 15983 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c91feed18ba828.jpg", - "response": "A man laughing with his mouth wide open. He is wearing a light blue shirt with dark blue stripes on the sleeves. He has a dark beard and his hair is brown. He is wearing a ring on his left hand. He has his mouth open and his eyes are closed. He is also laughing with his teeth showing. He has a dark background behind him. There are also five stars on the left side of the image and the words \"Patrick Harkin\" on the bottom left side of the image. There is also the word \"Pablo Zabaleta\" on the bottom right side of the image.", - "id": 15984 - }, - { - "image_path": "/content/drive/MyDrive/combined/269813fd76fbb5b5.jpg", - "response": "A man and a woman are standing in front of a black wall with the Hublot logo on it. The man is wearing a black shirt with a red, white and green stripe down the middle. The woman is wearing a black top with a red bow in her hair. They are both smiling for the camera.", - "id": 15985 - }, - { - "image_path": "/content/drive/MyDrive/combined/256869658c304861.jpg", - "response": "a woman in a black and yellow softball uniform", - "id": 15986 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f96d4f52a89413.jpg", - "response": "A crowd of people are gathered at a baseball game. Some of them are wearing uniforms and hats, and many are holding up red and white items.", - "id": 15987 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a21b12c94f9b3e8.jpg", - "response": "A baseball player for the Pittsburgh Pirates is stretching on the field.", - "id": 15988 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b6675b0d9eff7a6.jpg", - "response": " A young boy(109,123),(929,999) wearing a gold medal(380,375),(613,955) around his neck, holding a hockey jersey(107,381),(930,949).", - "id": 15989 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab4f7d3ea84ba1e.jpg", - "response": "A woman wearing a floral dress stands in front of a stage with a microphone. She is speaking to a crowd of people wearing race for the cure t-shirts.", - "id": 15990 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a706b9b6f0ea9e3.jpg", - "response": "The image is a magazine cover for cooperatives. The cover has a yellow border with a yellow and blue gradient background. The text on the cover is in blue and white. The text says \"3 in a row!\" in large blue letters. Below the text, in smaller blue letters, it says \"Co-ops set mid consecutive sales record\". Below the text, in even smaller white letters, it says \"Page 4\".", - "id": 15991 - }, - { - "image_path": "/content/drive/MyDrive/combined/29ccb6a606b32ca6.jpg", - "response": "In the image, a woman is running on a track. She is wearing a green and white uniform and has a number on her shorts. The woman is sprinting and appears to be very focused.", - "id": 15992 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b92b3328950ac14.jpg", - "response": "a man running in a race wearing a yellow tank top", - "id": 15993 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bd69b32ffab8812.jpg", - "response": "a man wearing a white shirt with red and black writing on it", - "id": 15994 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d268f0ff35cb6c6.jpg", - "response": "A man in a blue jersey is holding a baseball bat and watching another man.", - "id": 15995 - }, - { - "image_path": "/content/drive/MyDrive/combined/299de03fac171b2a.jpg", - "response": "A pitcher on the mound in the middle of a pitch.", - "id": 15996 - }, - { - "image_path": "/content/drive/MyDrive/combined/29da087e48c488be.jpg", - "response": "a person standing in front of a stack of kayaks", - "id": 15997 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab158df77d27baf.jpg", - "response": "The image shows a baseball game in progress. There is a batter at home plate who is in the middle of swinging his bat. The catcher is positioned behind the batter, and the umpire is standing behind the catcher. In the stands, there are numerous fans watching the game. Some of them are sitting in chairs, while others are standing. Some fans are wearing baseball caps, and one fan in the front row has a backpack. The game appears to be taking place in a stadium with artificial turf.", - "id": 15998 - }, - { - "image_path": "/content/drive/MyDrive/combined/298c13451ebcc658.jpg", - "response": "In the image, there are two men playing basketball inside a gym. One of the players is wearing a purple uniform and is holding a basketball while moving quickly down the court. The other player is wearing a green uniform and is following closely behind. There are other people in the background, watching the game. The gym has a wood floor and a bench is visible at the far end of the court.", - "id": 15999 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c0e73de4f60a5ac.jpg", - "response": "A white and blue Penn State jacket laid out on the floor with other clothing.", - "id": 16000 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a82b0812f0cee02.jpg", - "response": "a man holding a gold colored Olympic torch", - "id": 16001 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cf2280c83458d71.jpg", - "response": "Three boys are posing for a picture. One boy has his tongue out, one boy has his eyes closed, and one boy is smiling. They are all wearing different colored shirts.", - "id": 16002 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d2dd4e7246ceffa.jpg", - "response": "a girl running on a track with a black top on", - "id": 16003 - }, - { - "image_path": "/content/drive/MyDrive/combined/2acdefa438481374.jpg", - "response": "A baseball game is in progress with a few players on the field. The pitcher is in the middle of his windup, getting ready to throw the ball. The catcher is positioned behind the pitcher, ready to catch the ball. There are several other players on the field, including those in the outfield and those in the infield. Some players are wearing baseball gloves, while others are wearing baseball cleats. The crowd is watching the game intently, with a few people sitting in the stands and others standing behind them.", - "id": 16004 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cd02e5a1dd6806d.jpg", - "response": "A baseball game is being played at night in front of a large crowd. The players are on the field wearing their team uniforms. Some of the players are in the foreground and some are in the background. The fans are sitting in the stands and are holding up cameras to take pictures. Some of the fans are wearing blue and orange shirts. The game is being played on a baseball field with a green grass field and a brown dirt infield.", - "id": 16005 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bef0e7734edcb73.jpg", - "response": "Two women wearing blue and white are posing for a picture.", - "id": 16006 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b42ec7faf10ed7e.jpg", - "response": "A man wearing a blue shirt that says England on the back.", - "id": 16007 - }, - { - "image_path": "/content/drive/MyDrive/combined/29a60da4e3d63c4d.jpg", - "response": "A soccer player in a white jersey with the number 9 on the shirt.", - "id": 16008 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c9d2d6ec5e971ca.jpg", - "response": "In the image, a man is juggling four red and yellow clubs in front of a crowd of people. He is wearing a blue shirt and standing on a stage. There are several people sitting and standing around the stage, watching the man perform. Some of them are holding cups and bottles, and there are several cups and bottles scattered around the stage. A handbag is placed on the ground near the stage, and a bicycle is parked in the background.", - "id": 16009 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b9438c87dafc12f.jpg", - "response": "A man standing next to a fireplace holding a bottle of water.", - "id": 16010 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b3bb8f636763506.jpg", - "response": "A woman with long black hair wearing a red dress.", - "id": 16011 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bbe8517ba0e5df9.jpg", - "response": "A person is wearing a purple t-shirt that says \"Atari\" on it. The person is also wearing a green dragon made out of various Lego pieces. The dragon has red and green wings, yellow eyes, and is attached to the person's shirt. The dragon is also attached to a small plastic box.", - "id": 16012 - }, - { - "image_path": "/content/drive/MyDrive/combined/29bf2bbef29ce45f.jpg", - "response": "A person wearing a red and blue uniform playing soccer.", - "id": 16013 - }, - { - "image_path": "/content/drive/MyDrive/combined/297680c7e3ecd9e1.jpg", - "response": "A man wearing a blue jersey with the word Omaha on it.", - "id": 16014 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b05965766013851.jpg", - "response": "Four men standing in front of a small plane.", - "id": 16015 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9cbf813fb49323.jpg", - "response": "A blurry image of a DVD case for the movie Pups.", - "id": 16016 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d2d111f4eb96122.jpg", - "response": "The image shows a basketball team, the Los Angeles Clippers, posing for a team photo. The team members are standing in front of an orange background. They are all wearing white uniforms with the team logo, CLIPPERS, written in black. The uniforms also have the players' numbers and names on the back. The players are of different heights and sizes, with some standing closer to the front and some standing further back. They are all looking straight ahead and smiling for the camera. Some of the players are also wearing different colored shoes.", - "id": 16017 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bc9ffe42449da2c.jpg", - "response": " Table tennis player(304,125),(893,996) in a yellow shirt(384,309),(863,933)", - "id": 16018 - }, - { - "image_path": "/content/drive/MyDrive/combined/29788b99cc1c2c2c.jpg", - "response": "A man with red hair wearing a black shirt with the word QuakeCon on it.", - "id": 16019 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cb94cd24e1f1a02.jpg", - "response": "Three men are standing next to each other, two of them are wearing striped shirts and one is wearing a collared shirt. They are holding up a sports jersey and looking at it.", - "id": 16020 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c12dfd8f496f399.jpg", - "response": "A group of men are playing a game of cricket in a gym. One man is holding a bat and wearing a blue uniform. Another man is standing with his hands behind his back wearing a yellow shirt. A third man is in the middle of the room wearing a uniform that is a mix of green and tan. They are all standing on a court with a blue and white border.", - "id": 16021 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bf6b57466ab0887.jpg", - "response": "A baseball player holding a bat in front of a catcher and an umpire.", - "id": 16022 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cc296953fc132fe.jpg", - "response": "a person wearing a blue shirt with a red ribbon and a medal on it", - "id": 16023 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a7910badd7a0d11.jpg", - "response": "A wall with a painting of a man with his mouth open and arms in the air.", - "id": 16024 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9e195e53ae0127.jpg", - "response": "The volleyball player in the white jersey is jumping up to hit the ball.", - "id": 16025 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b3349ab320d7a74.jpg", - "response": " Two men(235,263),(479,977)(420,163),(893,962) on a BJJ competition holding hands", - "id": 16026 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b4cec39178089fc.jpg", - "response": "A man in yellow shorts is wrestling another man in a black shirt.", - "id": 16027 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d04eef977f8c1f1.jpg", - "response": "Four people playing basketball in a gym.", - "id": 16028 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cdb8e97cf57d164.jpg", - "response": " an older man(165,89),(936,998) walking across a field", - "id": 16029 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c3dda2d6bb98a94.jpg", - "response": "A group of men wearing Oakland A's jerseys are standing on a baseball field.", - "id": 16030 - }, - { - "image_path": "/content/drive/MyDrive/combined/29ac45d489429cf9.jpg", - "response": "an older man wearing a white shirt and blue hat holding a blue sign with writing on it", - "id": 16031 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c5b8dc0eaf9564a.jpg", - "response": "A woman with a black ponytail, wearing a white and red cheerleading uniform that says WMHS on it. She is wearing a diamond shaped charm on a silver necklace. She has a serious look on her face and her arms are crossed.", - "id": 16032 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a46d5c0332c96a2.jpg", - "response": "The image features a baseball player standing on a field wearing a blue uniform with white pants and blue socks. The player is holding a baseball glove and appears to be looking at something or someone off-camera. The field is lush and green, and there is a Coca-Cola banner visible in the background.", - "id": 16033 - }, - { - "image_path": "/content/drive/MyDrive/combined/29ccc9eadaac2dea.jpg", - "response": "A girl in a white jersey is standing in a field with a glove.", - "id": 16034 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b1c54f12dfccab0.jpg", - "response": "a pitcher on the mound getting ready to throw a ball", - "id": 16035 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a5c3cab4fcf0a0c.jpg", - "response": "A man sitting between two girls at a table.", - "id": 16036 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a28186bcc0dfb80.jpg", - "response": "In the image, a male athlete wearing a yellow and black tank top with the word trojans written on it is running. He has dark hair and is running on a path. There are trees in the background.", - "id": 16037 - }, - { - "image_path": "/content/drive/MyDrive/combined/29ab9f5efcc90f42.jpg", - "response": "a man wearing a black hat with the word Czech Republic on it", - "id": 16038 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b0c44184f7b4e80.jpg", - "response": "A baseball game is being played on a dirt field. A batter is in the middle of swinging his bat, trying to hit the ball. The catcher is kneeling behind the batter, holding a mitt in preparation for the ball. There is a bench in the background and a person with a red shirt is watching the game.", - "id": 16039 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a8e1b18b5838812.jpg", - "response": "a close up of a box for a figurine of a girl in a black outfit", - "id": 16040 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b7d2f34ea589ebc.jpg", - "response": "In the image, a baseball player is standing on the grass wearing a blue jersey and a catcher's mitt. The player is looking away from the camera, and there is a fence behind them. The fence has several signs on it, including one that says \"hit the cherries win a meal\" and another that says \"www.throwskies.com\". There is also a bench visible in the background.", - "id": 16041 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c9884f8cafa9e07.jpg", - "response": "A baseball team of Mets players are talking to each other on the field.", - "id": 16042 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0d57f9cb88e1d6.jpg", - "response": " Baseball players(286,233),(543,737)(813,219),(996,702)(495,221),(613,711) in white and blue uniforms(337,297),(538,727)(827,291),(996,679)(497,291),(609,705) playing a game of baseball", - "id": 16043 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bd970952e20de96.jpg", - "response": "a man wearing a black shirt with the letters g and c on it", - "id": 16044 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bb08eddd5926fe5.jpg", - "response": "A baseball game is in progress on a field. The batter is swinging at a ball and making contact, sending the ball flying. The pitcher is in the process of throwing the ball to the catcher, who is holding a baseball glove. There are several other players on the field, including teammates and opponents.", - "id": 16045 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f4815177dc543be.jpg", - "response": "A baseball player swinging a bat on a baseball field.", - "id": 16046 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e695c0d0eaf8e89.jpg", - "response": "A man wearing a red and black shirt is holding a basketball.", - "id": 16047 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d71dc57d9b8ad68.jpg", - "response": "A man in a red hockey jersey with the number 5 on it, talking to a little boy.", - "id": 16048 - }, - { - "image_path": "/content/drive/MyDrive/combined/30718e6fe38682c1.jpg", - "response": "In the image there is a man(455,3),(927,999) and a woman(29,5),(577,999) sitting next to each other, both wearing shirts(456,120),(926,999)(60,312),(534,999) with the name(143,413),(428,643)(590,347),(848,521) Lorenzo on them.", - "id": 16049 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f4c449f3d21e9df.jpg", - "response": "A man in a suit standing next to a man in a green Joma jacket.", - "id": 16050 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed00071fb00789a.jpg", - "response": "A man with a Wizard's jersey on and a Wizards jersey is visible.", - "id": 16051 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d407690e9cbd2df.jpg", - "response": "a group of people in colorful outfits holding small colorful umbrellas", - "id": 16052 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dd89e89e3a39efd.jpg", - "response": "The man is running in a race.", - "id": 16053 - }, - { - "image_path": "/content/drive/MyDrive/combined/3065bb012def000b.jpg", - "response": "A man with a yellow and black scarf standing next to a man with a red and white striped shirt.", - "id": 16054 - }, - { - "image_path": "/content/drive/MyDrive/combined/300b832bb3d0f3b4.jpg", - "response": "A New York Yankees player wearing a grey uniform, blue wristbands, and a black belt. He is holding a baseball in one hand and a catcher's mitt in the other. He is standing on a baseball field with a crowd of people in the background.", - "id": 16055 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f65c8a31c1c7288.jpg", - "response": "A baseball player swinging a bat at a ball.", - "id": 16056 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f44a5f392ae6d96.jpg", - "response": "In the image, a man is wearing a green and white baseball uniform and is in the process of throwing a baseball. He is standing on a pitcher's mound and is the only person visible in the scene. The baseball is in the process of being thrown and the man's arm is in the air as he prepares to release the ball.", - "id": 16057 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ec397def0d28e12.jpg", - "response": "A blue and white jacket with the word alpinestars on the back.", - "id": 16058 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ec6d5408cb99d64.jpg", - "response": "A group of men standing on top of a soccer field.", - "id": 16059 - }, - { - "image_path": "/content/drive/MyDrive/combined/30130f95a4768424.jpg", - "response": "In the image, there is a baseball field with a group of people standing on it. There are three boys in the foreground, possibly youth baseball players, and a man in a white shirt is talking to them. The man is standing next to two of the boys, one of whom is wearing a blue uniform. The third boy is standing further back. There is a car parked in the background on the right side of the field.", - "id": 16060 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d5451f5fa3ec4dc.jpg", - "response": "A pitcher in a white baseball uniform is winding up to throw a ball.", - "id": 16061 - }, - { - "image_path": "/content/drive/MyDrive/combined/300758c6cad614d2.jpg", - "response": "A baseball player is getting ready to hit a ball with a bat.", - "id": 16062 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e33c676809f555f.jpg", - "response": "A woman in a white soccer uniform is holding a soccer ball in front of her face.", - "id": 16063 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da35678d796d8d9.jpg", - "response": "A man wearing a black shirt and a hat is standing in front of a wall.", - "id": 16064 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d48a140b40ab164.jpg", - "response": "A baseball team from the early 1900s is posing for a picture.", - "id": 16065 - }, - { - "image_path": "/content/drive/MyDrive/combined/30cc1142d7d87fd0.jpg", - "response": "The image shows two young women sitting next to each other on a bench. Both of them are dressed in costumes, with one of them wearing a white hat with a red ribbon and the other dressed in a polka dot dress. They are both looking at a cell phone screen, possibly viewing or taking a photo of something. The girl on the right is holding the phone in her hand.", - "id": 16066 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e73ad5ac6ad6eb2.jpg", - "response": "A baseball player in a white uniform is standing on the pitcher's mound. He is holding a mitt and appears to be celebrating. There is a crowd of people in the stands behind him, watching the game.", - "id": 16067 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d386177442da081.jpg", - "response": "A group of men standing on a baseball field, some of them wearing baseball gloves.", - "id": 16068 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e780a73b50b501c.jpg", - "response": "A baseball player holding a bat on a field.", - "id": 16069 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fca28cdced9ebe4.jpg", - "response": "The image is a still from the 2002 horror movie \"The Ring\" featuring actress Ryoko Kunishige as the titular character, Ring. She is shown from the shoulders down, wearing a white dress and her black hair is long and unkempt. She is standing in front of a red tiled wall with a yellow and blue \"transitioning\" graphic superimposed over the top of the image.", - "id": 16070 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7c6aae590d63f8.jpg", - "response": "The image shows a baseball game in progress with a crowd of people in the stands watching the game. The players on the field are wearing blue and white uniforms.", - "id": 16071 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d604fecdf1d2137.jpg", - "response": "The image features a person wearing a neon green shirt with a white bib on the back of it. The text on the bib says \"The London Easter 10k\" and has the numbers \"576\" on it. The person is also wearing a watch on their left wrist.", - "id": 16072 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb02e4db2788546.jpg", - "response": "In the image, a Kansas City Royals baseball player is signing autographs for two young fans. One of the boys is wearing a blue Royals jersey and hat, and the girl is wearing a blue and white shirt. The player is signing the autograph on a white Royals jersey.", - "id": 16073 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e9abd6b833f8966.jpg", - "response": "a person standing in front of a tree", - "id": 16074 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d51ec1f9aaf81e6.jpg", - "response": "A navy blue baseball cap with the word \"Beltway\" embroidered on it in white.", - "id": 16075 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dc95f78aded8663.jpg", - "response": "a group of people standing around a table with a vase of flowers on it", - "id": 16076 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7f9a78a3bee2f8.jpg", - "response": "A little girl wearing a pink shirt and a brown hat is sitting on the grass and eating an ice cream cone.", - "id": 16077 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d79f46fe590fa4a.jpg", - "response": "A soccer ball is being kicked by a man in a yellow shirt.", - "id": 16078 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d48d904bfc7e0ff.jpg", - "response": "A baseball player standing in front of a banner advertisement for a pizza place.", - "id": 16079 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f76ebc30f9de19c.jpg", - "response": "A woman wearing a maroon shirt with white stripes laughing with her head up high.", - "id": 16080 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d9ddc114bcf4b3f.jpg", - "response": "A group of people standing in front of a wall with a banner on it.", - "id": 16081 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed647043c961a55.jpg", - "response": "A high school cross country runner wearing a white jersey that says Palo Alto on it in green. The runner has a number on his shorts that reads 1670. He is running on a grassy field with trees in the background and a red fence around the perimeter of the field. There is another person's hand visible on the right side of the image.", - "id": 16082 - }, - { - "image_path": "/content/drive/MyDrive/combined/30bbfcac9e045e19.jpg", - "response": "A person is wearing a blue jacket with the National Association of Letter Carriers logo on the back. The jacket has a red and white border around the round logo. The logo features a hand holding a letter with a keyhole in it and the letters USA below it.", - "id": 16083 - }, - { - "image_path": "/content/drive/MyDrive/combined/30ae2ad7621fe02c.jpg", - "response": "A baseball player swinging a bat at a ball.", - "id": 16084 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e4a6bd4c2f79911.jpg", - "response": "The Bahamas' team members celebrate winning the silver medal in the men's 4x100-meter relay final during the athletics in the Olympic Stadium at the 2012 Summer Olympics, London, Saturday, Aug. 11, 2012. From left are Ramon Miller, Markel Stoddart, Brion James and Lashawn Merritt. (AP Photo/Matt Slocum)", - "id": 16085 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ea931c8dc8e361b.jpg", - "response": "A large scoreboard with a picture of a baseball player on it. The player is wearing a baseball uniform and is holding a baseball glove. The scoreboard also displays a congratulatory message for the 20-game winner.", - "id": 16086 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ff282767c0a446e.jpg", - "response": "A baseball player in a blue and white uniform is at bat and has just hit the ball. The catcher is nearby, holding out his glove. The batter is starting to run.", - "id": 16087 - }, - { - "image_path": "/content/drive/MyDrive/combined/30dc7ab68c2654a6.jpg", - "response": "a pitcher on the mound getting ready to throw a ball, a batter holding a bat and ready to swing, and a runner on first base.", - "id": 16088 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dbb7910bd4860bd.jpg", - "response": "A baseball player wearing a white jersey with blue lettering that says Storm Chasers.", - "id": 16089 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e9a0f0a86bd2ea8.jpg", - "response": "A man wearing a blue hat poses for a picture with another man.", - "id": 16090 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d4f3317cfe522c8.jpg", - "response": "A man with a mohawk and large muscles wearing a black Cutler Nutrition tank top is talking to a woman with long black hair. They are standing in front of a wall with a red and black poster on it.", - "id": 16091 - }, - { - "image_path": "/content/drive/MyDrive/combined/30271e89d9916c2d.jpg", - "response": "A San Francisco Giants Championship ring on a black stand.", - "id": 16092 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8e6c82b6156c0c.jpg", - "response": "A baseball game is in action on the field. There are three players on the field, one of them is jumping in the air to catch a ball. The ball is in the air and the player is reaching up with his glove.", - "id": 16093 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ff8d2cf835a4c7a.jpg", - "response": "A baseball player is winding up to pitch the ball.", - "id": 16094 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d96705991971a84.jpg", - "response": "a group of people running down a street", - "id": 16095 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8ca4c1c90800d2.jpg", - "response": "The image shows a group of men playing street hockey in the rain. They are all wearing bright yellow and blue jerseys and are holding hockey sticks. One man is trying to kick the ball with his hockey stick while the others are trying to block him. Some of the players are wearing helmets for safety. The street is wet from the rain and there is a blue fence in the background.", - "id": 16096 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fa825765c35128d.jpg", - "response": "Two baseball players standing on the field. One is wearing a blue jersey with the letters T E X S on the front and a blue cap. The other is wearing a black jersey with the number 3 on the back and a navy blue cap.", - "id": 16097 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f9237c2cd935f0e.jpg", - "response": "A baseball player wearing a red jersey and white pants is holding a bat and standing on a field.", - "id": 16098 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fc0ada70099074e.jpg", - "response": "An older man wearing a USC shirt and hat.", - "id": 16099 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d4295a4f57d8d22.jpg", - "response": "A close up of a red Ole Miss basketball jersey on a couch.", - "id": 16100 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d88ab2af64c2f2e.jpg", - "response": "A women's basketball game is in action as a player from St. Joseph's attempts to shoot the ball.", - "id": 16101 - }, - { - "image_path": "/content/drive/MyDrive/combined/306d4567f40061b3.jpg", - "response": " Max Klesmit(242,193),(802,997) cuts down the net(326,3),(876,398) after the regional final win over the New Berlin West at the Fieldhouse.", - "id": 16102 - }, - { - "image_path": "/content/drive/MyDrive/combined/30036c5e284a7d06.jpg", - "response": "A man wearing a black hat and a red shirt that says United Heroes is holding a certificate. Another man wearing a red shirt is standing next to him.", - "id": 16103 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d648ed9328308fd.jpg", - "response": "A group of women playing basketball on a court.", - "id": 16104 - }, - { - "image_path": "/content/drive/MyDrive/combined/332d96e51441cd07.jpg", - "response": "A baseball game is being played on a grass field. There are four players standing in the outfield, wearing white uniforms. In the background, there are three flag poles with several flags flying on them. A few people are watching the game from the sidelines.", - "id": 16105 - }, - { - "image_path": "/content/drive/MyDrive/combined/343eacca8019f49e.jpg", - "response": "A group of people are standing in a room.", - "id": 16106 - }, - { - "image_path": "/content/drive/MyDrive/combined/32d9be05e9721508.jpg", - "response": "A baseball game is being played on a field. There are two boys playing baseball, one of them is wearing a white shirt and a white helmet. Another boy is standing on a base. There is a yellow fence surrounding the field.", - "id": 16107 - }, - { - "image_path": "/content/drive/MyDrive/combined/321901ffa37f3bac.jpg", - "response": "A yellow Moritz cycling jersey from 1973.", - "id": 16108 - }, - { - "image_path": "/content/drive/MyDrive/combined/33e43d4084ada040.jpg", - "response": "A woman with long hair wearing a red and grey shirt.", - "id": 16109 - }, - { - "image_path": "/content/drive/MyDrive/combined/31cbd6aa77f3c6a9.jpg", - "response": "A man wearing a watch is holding a baby wrapped in a blanket.", - "id": 16110 - }, - { - "image_path": "/content/drive/MyDrive/combined/324d4d863117ac8c.jpg", - "response": "A large group of people wearing orange vests are gathered in front of a building. They are holding signs and an umbrella.", - "id": 16111 - }, - { - "image_path": "/content/drive/MyDrive/combined/31de82365306af7e.jpg", - "response": "A basketball player in a black jersey with the number 9 on it is dribbling a basketball while two other players from the opposing team are chasing him. The player in the black jersey is also wearing red shorts. The opposing team's colors are white and red. The basketball player is running down the court. There is a crowd of people in the background watching the game.", - "id": 16112 - }, - { - "image_path": "/content/drive/MyDrive/combined/3353ad59be8ec7c3.jpg", - "response": "A man holding a basketball with a female basketball player standing next to him.", - "id": 16113 - }, - { - "image_path": "/content/drive/MyDrive/combined/326de125f9f50a71.jpg", - "response": "A woman wearing a black top and white pants standing in front of a red Happy Birthday banner.", - "id": 16114 - }, - { - "image_path": "/content/drive/MyDrive/combined/3136f3387214927d.jpg", - "response": "A man standing in front of a blue sign that says \"Maritima Seguros\" on it.", - "id": 16115 - }, - { - "image_path": "/content/drive/MyDrive/combined/342aeb7e29bbd683.jpg", - "response": "A woman with blonde hair wearing a blue and black shirt.", - "id": 16116 - }, - { - "image_path": "/content/drive/MyDrive/combined/3273eda6041b120b.jpg", - "response": "A man and woman standing with a girl in front of a backdrop.", - "id": 16117 - }, - { - "image_path": "/content/drive/MyDrive/combined/3437304c906a53bc.jpg", - "response": "A painting of a baseball game in progress. A batter is swinging a bat at a ball. A catcher is behind the batter, and a pitcher is in the background. The pitcher has just thrown the ball. A baseball glove is visible on the catcher's hand. The catcher's teammate is playing shortstop, and a third base coach is standing next to the third base. A baseball stadium is in the background, with a crowd of people watching the game. A scoreboard is visible at the top left of the image.", - "id": 16118 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ef1c4fd6663175.jpg", - "response": "In the image, there is a male model wearing a white long-sleeved shirt with the word \u201cHBA\u201d on it. The model also has his arms crossed and is holding a pair of sneakers. The sneakers are wrapped in plastic and are white in color. The model has long locs and is looking directly at the camera. The background of the image is white.", - "id": 16119 - }, - { - "image_path": "/content/drive/MyDrive/combined/34367e3398d1bdf7.jpg", - "response": "A composite photo of several people wearing Christmas sweaters.", - "id": 16120 - }, - { - "image_path": "/content/drive/MyDrive/combined/33591fdc5f7f2644.jpg", - "response": "The image shows a baseball field with three baseball players standing on it. One of the players is wearing a catcher's mitt and is standing on second base. Another player is standing on first base and the third player is standing on the outfield grass. The players are dressed in their uniforms.", - "id": 16121 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d58fd93df8aeaf.jpg", - "response": "Women in blue and white uniforms are celebrating a goal during a soccer game.", - "id": 16122 - }, - { - "image_path": "/content/drive/MyDrive/combined/31c0ed7b22248139.jpg", - "response": " A man(0,179),(924,996) in a white shirt(2,469),(922,998)", - "id": 16123 - }, - { - "image_path": "/content/drive/MyDrive/combined/315937cf5230295c.jpg", - "response": "The image shows three women playing softball on a dirt field. They are all wearing blue and white uniforms and have their hands in the air. One woman is holding a mitt and appears to be celebrating a recent play.", - "id": 16124 - }, - { - "image_path": "/content/drive/MyDrive/combined/33df74a6450c3509.jpg", - "response": "A baseball player swinging a bat at a ball on a field.", - "id": 16125 - }, - { - "image_path": "/content/drive/MyDrive/combined/320cbdb522666d2e.jpg", - "response": "a boxing ring with two boys fighting in it", - "id": 16126 - }, - { - "image_path": "/content/drive/MyDrive/combined/313423871bff2691.jpg", - "response": "A baseball pitcher on the mound throwing a ball.", - "id": 16127 - }, - { - "image_path": "/content/drive/MyDrive/combined/3393196f9520638e.jpg", - "response": "A pinball machine with the words Bally Wizard on the top.", - "id": 16128 - }, - { - "image_path": "/content/drive/MyDrive/combined/31ff024abe147336.jpg", - "response": "In the image, a group of people are in a dark room with a stage. The people are standing and sitting on the floor and the front row of the crowd is very close to the stage. The room is filled with people and the stage lights are bright. Some people are holding up their hands and one person in the front is crowd surfing. There is a person on the stage with a microphone and another person on the stage holding a camera.", - "id": 16129 - }, - { - "image_path": "/content/drive/MyDrive/combined/316763ed47e08560.jpg", - "response": "The image shows a group of baseball players in uniform, with some of them throwing a player in a white jersey into the air. The players are standing on the field and are throwing the player in the air with enthusiasm. The player is wearing a white jersey and has his arms raised in the air.", - "id": 16130 - }, - { - "image_path": "/content/drive/MyDrive/combined/315db2487f3f4601.jpg", - "response": "A baseball player wearing a red jersey and a black and white striped pants.", - "id": 16131 - }, - { - "image_path": "/content/drive/MyDrive/combined/33e9bd924f77142c.jpg", - "response": "In the image, there is a female baseball player wearing a white uniform and a glove. She is standing on the field, likely waiting for the ball. The player is also wearing sunglasses, which can be seen on her face. The field has a yellow foul line and the player is positioned near the third base.", - "id": 16132 - }, - { - "image_path": "/content/drive/MyDrive/combined/31937babff1cb861.jpg", - "response": "The image shows a group of female softball players dressed in blue and gold uniforms. They are standing on a field of dirt near the home plate. Some players are holding baseball gloves and one player is holding a baseball bat. There is a bench visible in the background and a few people are sitting on it. The players are looking in different directions and some of them are talking to each other.", - "id": 16133 - }, - { - "image_path": "/content/drive/MyDrive/combined/30e49e3fbe4d34fe.jpg", - "response": "A woman in a yellow Pilsener shirt standing on a field.", - "id": 16134 - }, - { - "image_path": "/content/drive/MyDrive/combined/336d04d5582b8182.jpg", - "response": "A group of people wearing white t-shirts with the number 3 on the back.", - "id": 16135 - }, - { - "image_path": "/content/drive/MyDrive/combined/3105e8419d262d19.jpg", - "response": "A group of six men standing in front of a white wall with a banner on it that says \"Software Freedom Day 2014\" and has a logo of a hand holding a key.", - "id": 16136 - }, - { - "image_path": "/content/drive/MyDrive/combined/32a1f1e36a1c2b95.jpg", - "response": "A boy wearing a Crosby jersey stands in a grassy field.", - "id": 16137 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e19b5cae84171d.jpg", - "response": "A young man holding a basketball with the word Hudson on his jersey.", - "id": 16138 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d3766ae6a2596e.jpg", - "response": "a red shirt that says team McGraw on it", - "id": 16139 - }, - { - "image_path": "/content/drive/MyDrive/combined/32bc19db697c5d98.jpg", - "response": "A baseball player in a white and black uniform is pitching a ball on a baseball field.", - "id": 16140 - }, - { - "image_path": "/content/drive/MyDrive/combined/337a6fa82f067a7f.jpg", - "response": "The San Diego Padres honor Chase Utley with a jersey retirement ceremony.", - "id": 16141 - }, - { - "image_path": "/content/drive/MyDrive/combined/3341bd091acaf670.jpg", - "response": "In the image, there is a man wearing a blue and white shirt and white shorts. He is standing on a soccer field with a soccer ball at his feet. The man appears to be focused on playing soccer.", - "id": 16142 - }, - { - "image_path": "/content/drive/MyDrive/combined/3122493354c13a74.jpg", - "response": "A woman sitting on a bench with a little girl.", - "id": 16143 - }, - { - "image_path": "/content/drive/MyDrive/combined/326bb5deb6e5193b.jpg", - "response": "A pitcher for the Texas team winds up to throw the ball.", - "id": 16144 - }, - { - "image_path": "/content/drive/MyDrive/combined/332eea0d5969114f.jpg", - "response": "a man in a black and yellow shirt is holding onto a white ring with his hands", - "id": 16145 - }, - { - "image_path": "/content/drive/MyDrive/combined/318a6423cb16afec.jpg", - "response": "In the image, two men are engaged in a wrestling match. One man is attempting to throw the other man on the ground. The man in the blue top is on the bottom, with one arm wrapped around the other mans waist and both of his legs around the other mans legs. The man in the red top has his entire body over the man in the blue top, with his legs in a scissors hold.", - "id": 16146 - }, - { - "image_path": "/content/drive/MyDrive/combined/31a1eba0644e8e32.jpg", - "response": "a group of men running on a track", - "id": 16147 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ed97a72619a68f.jpg", - "response": "a runner in a blue shirt is running in a race.", - "id": 16148 - }, - { - "image_path": "/content/drive/MyDrive/combined/3192804f3086c495.jpg", - "response": "A baseball game is being played on a field. There are three players on the field, one wearing a green shirt and white pants, one wearing a green shirt and white pants, and one wearing a maroon shirt and white pants. The player wearing maroon is running towards a base.", - "id": 16149 - }, - { - "image_path": "/content/drive/MyDrive/combined/31cdc3e5fa56c786.jpg", - "response": "In the image there is a man wearing a red and black shirt and black shorts. He is running down the street and has a tattoo on his right arm. There are several cars parked on the side of the street and trees in the background.", - "id": 16150 - }, - { - "image_path": "/content/drive/MyDrive/combined/32164c537fd0817a.jpg", - "response": "The image shows a baseball game in progress. A pitcher is winding up to throw the ball, holding a baseball glove in his other hand. The pitcher is wearing a blue uniform and a red and blue baseball cap. The baseball bat is visible in the background.", - "id": 16151 - }, - { - "image_path": "/content/drive/MyDrive/combined/33471ae417f19b4e.jpg", - "response": "a sign hanging from a tree that says west bank", - "id": 16152 - }, - { - "image_path": "/content/drive/MyDrive/combined/3106c436ffcd90a2.jpg", - "response": "A man standing in front of a building with a clock on the front of it.", - "id": 16153 - }, - { - "image_path": "/content/drive/MyDrive/combined/30e45da4d94b432d.jpg", - "response": " Chivas manager Mat\u00edas Almeyda(595,167),(823,960) and his team walk off the field after a 1-0 loss to Necaxa.", - "id": 16154 - }, - { - "image_path": "/content/drive/MyDrive/combined/328c0a162031b131.jpg", - "response": "A vintage baseball team picture with the players all wearing Dewey's Place uniforms.", - "id": 16155 - }, - { - "image_path": "/content/drive/MyDrive/combined/33f56b0b7a3a91a7.jpg", - "response": "An older man wearing a straw hat and glasses.", - "id": 16156 - }, - { - "image_path": "/content/drive/MyDrive/combined/32621c83122d25ca.jpg", - "response": "a man wearing a red and black shirt with the number 15 on it", - "id": 16157 - }, - { - "image_path": "/content/drive/MyDrive/combined/330a11607e5a8f36.jpg", - "response": "A blue t-shirt with a crab on it and the words \"I'm crabby\" written above it. There are three other t-shirts, one blue, one pink, and one light blue, with the crab design on them. A girl is also shown wearing the light blue crab t-shirt.", - "id": 16158 - }, - { - "image_path": "/content/drive/MyDrive/combined/31eb62ebc7833223.jpg", - "response": "A still from the show Glee of two cheerleaders standing next to each other. They are both wearing red and white cheerleading uniforms that say WMHS on the front. The girl on the left has her hands at her hips and is looking down. The girl on the right has her hands at her hips and is looking to the right. There are several ribbons on the wall behind them.", - "id": 16159 - }, - { - "image_path": "/content/drive/MyDrive/combined/316bbe4097751305.jpg", - "response": "a group of men standing next to each other", - "id": 16160 - }, - { - "image_path": "/content/drive/MyDrive/combined/329087659dd853b8.jpg", - "response": "The image shows a baseball field with several players dressed in blue and white uniforms. There are multiple baseball bats scattered around the field, some near the players and others laying on the ground. A crowd of people is watching the game from the stands, which are full of spectators. The players are standing on the field in various positions, including some who are walking across the grass.", - "id": 16161 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d06728e8b2002e.jpg", - "response": "A wooden framed plaque with two photos of baseball players.", - "id": 16162 - }, - { - "image_path": "/content/drive/MyDrive/combined/3472d519b91e5c62.jpg", - "response": "Two cans of beer, Lady Topple and The Alchemist, sit side by side on a table.", - "id": 16163 - }, - { - "image_path": "/content/drive/MyDrive/combined/359d2a112be63c6b.jpg", - "response": "A man wearing a red and white baseball uniform with the number 11 on the jersey. He is holding a catcher's mitt and standing on a baseball field.", - "id": 16164 - }, - { - "image_path": "/content/drive/MyDrive/combined/352a1982eecef21b.jpg", - "response": " Flying Squirrels pitcher Tim Adleman(188,207),(844,997) delivers a pitch during the first inning of the Flying Squirrels' 6-5 loss to the Reading Fightin Phils on Tuesday, July 12, 2016.", - "id": 16165 - }, - { - "image_path": "/content/drive/MyDrive/combined/347c74ea6b50a4b6.jpg", - "response": "Four people standing in front of a large poster.", - "id": 16166 - }, - { - "image_path": "/content/drive/MyDrive/combined/37b20486199a4dc4.jpg", - "response": "A group of women in blue and white softball uniforms are on a field.", - "id": 16167 - }, - { - "image_path": "/content/drive/MyDrive/combined/3752f7b228f804c2.jpg", - "response": "A person in a mask and uniform is standing on a field.", - "id": 16168 - }, - { - "image_path": "/content/drive/MyDrive/combined/37648319589db810.jpg", - "response": "a man wearing a racing suit with the number 2 on it", - "id": 16169 - }, - { - "image_path": "/content/drive/MyDrive/combined/34d307193ae64765.jpg", - "response": "A man and a boy standing in the desert.", - "id": 16170 - }, - { - "image_path": "/content/drive/MyDrive/combined/35fee510c4ba3bcd.jpg", - "response": "a man holding a trophy with a white and green shirt on", - "id": 16171 - }, - { - "image_path": "/content/drive/MyDrive/combined/35c62a77c1810f4e.jpg", - "response": "A kid in a black jersey is playing baseball and is wearing a black baseball glove.", - "id": 16172 - }, - { - "image_path": "/content/drive/MyDrive/combined/371c1baf4f928cfe.jpg", - "response": "A baseball player in a white uniform is on the pitcher's mound.", - "id": 16173 - }, - { - "image_path": "/content/drive/MyDrive/combined/3733c557cc89e36a.jpg", - "response": "A couple of men standing in front of a waterfall.", - "id": 16174 - }, - { - "image_path": "/content/drive/MyDrive/combined/353100791708715b.jpg", - "response": "a runner on a track in a race", - "id": 16175 - }, - { - "image_path": "/content/drive/MyDrive/combined/206bf51f93b8bb8f.jpg", - "response": "A book cover with a yellow background and a black eye with red pupil in the center. The background is made up of black dots that resemble leopard spots.", - "id": 16176 - }, - { - "image_path": "/content/drive/MyDrive/combined/2088c9b93935f19a.jpg", - "response": "A poster board with a lot of text on it.", - "id": 16177 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea5f8027d337378.jpg", - "response": "a sign that says danger stop the air/ground spray", - "id": 16178 - }, - { - "image_path": "/content/drive/MyDrive/combined/24dd6cbb0d3757ee.jpg", - "response": "A framed magazine cover of snowboarder with a picture of a man snowboarding on the cover.", - "id": 16179 - }, - { - "image_path": "/content/drive/MyDrive/combined/21107b319561744c.jpg", - "response": "A poster with an image of a giant Uncle Sam character wearing a stars and stripes hat. The character is holding a flag and standing in front of a group of soldiers. The text on the poster says \"End this war now!\"", - "id": 16180 - }, - { - "image_path": "/content/drive/MyDrive/combined/280d83e8d38ed7bd.jpg", - "response": "a black and white photo of a landscape with a mountain in the distance", - "id": 16181 - }, - { - "image_path": "/content/drive/MyDrive/combined/21baffa9c96d0197.jpg", - "response": "A man wearing a yellow shirt is holding a bottle of hot sauce and a sandwich. He is putting the hot sauce on the sandwich.", - "id": 16182 - }, - { - "image_path": "/content/drive/MyDrive/combined/24e1c02dc9e3929f.jpg", - "response": "A refrigerator covered in newspaper clippings and images.", - "id": 16183 - }, - { - "image_path": "/content/drive/MyDrive/combined/256934ae4e687c9e.jpg", - "response": "A pink sign advertising a travel fair focused on Korea.", - "id": 16184 - }, - { - "image_path": "/content/drive/MyDrive/combined/253ce025df6ab8c7.jpg", - "response": "A poster for the May Day parade in Hamburg, Germany.", - "id": 16185 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ff2e800ccbc84cb.jpg", - "response": "A computer screen with the word \"agnaros\" on it. On the screen is a man on a horse, and another man on a rock, both are surrounded by flames. There is also a screenshot of the game on the right side of the screen.", - "id": 16186 - }, - { - "image_path": "/content/drive/MyDrive/combined/272021aa9ec45853.jpg", - "response": "a cartoon of a man with a beard and a hat, holding a sign reading \"fallacia alia aliam trudit\" and a pointer reading \"dado 12\"", - "id": 16187 - }, - { - "image_path": "/content/drive/MyDrive/combined/21bf07d2bf8b3297.jpg", - "response": "A cartoon drawing of a faucet with the words GLIT, GLORT, BLEEBLE, GLORT, BURP, and BLEEBLE DURP around it.", - "id": 16188 - }, - { - "image_path": "/content/drive/MyDrive/combined/262c6482b29a6c40.jpg", - "response": "The image features a group of skeletal human remains standing on a beach covered in skulls. There are 14 human remains visible in the image, standing in a line on the beach. The sun is setting in the background, with a bright light shining in the middle of the scene. There are also many birds flying in the sky, with 14 birds visible in the image.", - "id": 16189 - }, - { - "image_path": "/content/drive/MyDrive/combined/251618d165ba497a.jpg", - "response": "A sign showing directions to different stands at Aston Villa football club.", - "id": 16190 - }, - { - "image_path": "/content/drive/MyDrive/combined/26cc618c73487594.jpg", - "response": "A book cover with a man in a red suit with a gun chasing after a similar man who is running away.", - "id": 16191 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f1a6fa354ac4d28.jpg", - "response": "A poster of a basket of vegetables with the words \"Food is Ammunition - Don't waste it\" at the bottom.", - "id": 16192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e96e9a78f6076bb.jpg", - "response": "A large sign that is white and green and has the Google logo on it.", - "id": 16193 - }, - { - "image_path": "/content/drive/MyDrive/combined/248ecd268ae047be.jpg", - "response": "i would lose weight but i hate losing...", - "id": 16194 - }, - { - "image_path": "/content/drive/MyDrive/combined/26e3b184aa7fcba3.jpg", - "response": "A poster for the movie Indiana Jones and the Temple of Doom.", - "id": 16195 - }, - { - "image_path": "/content/drive/MyDrive/combined/223514026649d937.jpg", - "response": "a poster with many different books on it", - "id": 16196 - }, - { - "image_path": "/content/drive/MyDrive/combined/28246b0c4bd8daca.jpg", - "response": "A banner honoring the late president of Ghana, John Atta Mills, is displayed on a street light.", - "id": 16197 - }, - { - "image_path": "/content/drive/MyDrive/combined/21799e7c2d284b8f.jpg", - "response": "A postcard with an illustration of Brownsville from National Pike (Route 40), going west and the Monongahela River, Brownsville, PA.", - "id": 16198 - }, - { - "image_path": "/content/drive/MyDrive/combined/272ae3850027e27e.jpg", - "response": "A poster for a guitar concert is attached to a wall. The wall has a mosaic face and black graffiti.", - "id": 16199 - }, - { - "image_path": "/content/drive/MyDrive/combined/2403642fbbb28c44.jpg", - "response": "A poster with a collage of newspaper headlines and photos of disabled people. The text on the poster says \"Sick and disabled people are dying due to benefit cuts. Care!\"", - "id": 16200 - }, - { - "image_path": "/content/drive/MyDrive/combined/1deed88760c955ac.jpg", - "response": "A metal wall with a sticker that says Double Dragon on it.", - "id": 16201 - }, - { - "image_path": "/content/drive/MyDrive/combined/2109dd250058bfa9.jpg", - "response": "A red and black image with a white oval logo that says \"CP\" in the center. There is a white star to the left of the oval and a website address, www.planeteclipse.com, written in white below the oval. There is a red grunge texture on the image.", - "id": 16202 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ad81da4cb9d105.jpg", - "response": "A poster for the Al Falihah Loyalty Program, which is a Mastercard program. The poster is gold and features a grid of 4 images, two on the top and two on the bottom. The top left image is of the Merlion in Singapore, the top right image is of a temple in Bali, the bottom left image is of the Petronas towers in Malaysia, and the bottom right image is of the Statue of Liberty in New York. The text on the image says \"HADIAH Plus, More rewards with every swipe\" in gold. The caption underneath says \"You can now convert your Hadiah Points to BIG Points to redeem for free flights\" in red and white.", - "id": 16203 - }, - { - "image_path": "/content/drive/MyDrive/combined/20f7c18035cab38c.jpg", - "response": "A poster for a show called \"Scenes of the Humorous Necromancy\" by a man named Henri Frizzo. The poster features a man standing on a skull with his arm outstretched, surrounded by bats and other spooky imagery.", - "id": 16204 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f487edf5c5a8937.jpg", - "response": "A wooden table with two board games on top of it.", - "id": 16205 - }, - { - "image_path": "/content/drive/MyDrive/combined/2112bb1e3d73eb01.jpg", - "response": "A group of people are sitting at a table in front of a display for Alter Electra. The display has a large sign with the company name on it. There is also a smaller sign with a phone number on it. In front of the display is a table with a red box on it. The table has a sign in front of it that says \"ALTER ELECTRA\". There are also two large signs on the right side of the display.", - "id": 16206 - }, - { - "image_path": "/content/drive/MyDrive/combined/23cc5977a4ac9ce0.jpg", - "response": " A sign(10,6),(985,988) that says Pull up your pants, no one wants to see your underwear.", - "id": 16207 - }, - { - "image_path": "/content/drive/MyDrive/combined/235f936a3a708eb3.jpg", - "response": "A black and white poster with a quote by Mahatma Gandhi. The quote is written in a white cursive font and it is split into 5 paragraphs. The first and third paragraph are written in white and the second, fourth and fifth paragraph are written in smaller white cursive font. The poster is on a black chalkboard.", - "id": 16208 - }, - { - "image_path": "/content/drive/MyDrive/combined/255f659666e2c65b.jpg", - "response": "A television screen with a picture of President Obama on it. He is smiling and speaking at a podium. There is a large American flag behind him.", - "id": 16209 - }, - { - "image_path": "/content/drive/MyDrive/combined/2516b2a84d2ecd86.jpg", - "response": "A brown and white sign with a close up of the word Krokant.", - "id": 16210 - }, - { - "image_path": "/content/drive/MyDrive/combined/25383d64fbc77400.jpg", - "response": "A record album cover for a Karl Bohm Ausgabe.", - "id": 16211 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c5a8b20a59c38b.jpg", - "response": "A large letter postcard from Midland, Texas, with images of the city's landmarks.", - "id": 16212 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c8d5dc66f9063c.jpg", - "response": "The image features a dark and eerie scene with the words \"Fridays will never be the same\" written in white. The background is a dark red and there is a shattered glass effect with the Cork City Football Club logo in the foreground. The logo features a dark green background with the club's name written in white. The club was founded in 1984 and the logo features a shield with the club's name written on it. The shield is red and white and is located in the bottom right corner of the image. The image also features a website address for Cork City FC, which is located in the bottom left corner.", - "id": 16213 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f5b971f5b7945ba.jpg", - "response": "A postcard with a picture of a yellow motel called the Nod-While Motor Lodge. The motel has a large sign on top of it and is surrounded by trees. There is a car parked in front of the motel and another car is driving by. The sky is blue with white clouds.", - "id": 16214 - }, - { - "image_path": "/content/drive/MyDrive/combined/2454148f94e521ce.jpg", - "response": "A magazine cover with a large wave in the center of the image. The wave is yellow and red and is depicted as crying. It has a large eye in the center of its face and tears are flowing down its face. It has a large eye on the left side of its face and a smaller one on the right. It has a large red mouth that is open in a scream. There are small black spots on the wave. The wave is depicted as being in the ocean.", - "id": 16215 - }, - { - "image_path": "/content/drive/MyDrive/combined/234d98b8e5cfb751.jpg", - "response": "The image is a tan colored sundial with the words \"carpe diem\" at the top. Below the sundial are the words \"ex vi legis\" in large white letters. The words \"por for\u00e7a da lei\" are written in smaller letters below the sundial. There is a arrow pointing to the word \"carpe\" on the sundial. There is also a smaller arrow pointing to the word \"diem\" on the sundial. The entire image is written in portuguese.", - "id": 16216 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef438219d803a7a.jpg", - "response": "A billboard with a red and white poster that says \"You can't be a \"HE\" if there is no \"SHE\"\" in white and red lettering. It also says \"STOP FEMALE FOETICIDE\" in white and red lettering. There is a red border around the words. The billboard is on a pole.", - "id": 16217 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ebf4b780fa2a764.jpg", - "response": "A framed poster on a wall advertising a Christian charity event called Cena Pan y Vino 2000.", - "id": 16218 - }, - { - "image_path": "/content/drive/MyDrive/combined/25fa27e0a42b86f2.jpg", - "response": "A poster for Mount Fuji for 2008.", - "id": 16219 - }, - { - "image_path": "/content/drive/MyDrive/combined/24a7aaa89640dfce.jpg", - "response": "A man in a grey shirt and black pants is crouched down in front of a brick wall. The man has short brown hair and is looking upwards. The wall has holes in it and the man's face is superimposed on it. The words \"break out, save your brother's life\" are written in black on the right side of the poster. The words \"break in, save your brother's life\" are written in black on the left side of the poster. The poster is for the movie \"Prison Break\".", - "id": 16220 - }, - { - "image_path": "/content/drive/MyDrive/combined/23df364fb276386d.jpg", - "response": "A red and white sign with Chinese writing on it.", - "id": 16221 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fab7ec1accd0844.jpg", - "response": "A red and white poster for an alley cat race on Friday the 13th.", - "id": 16222 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed0340dbfec6193.jpg", - "response": "A man looking at a display of train times and prices at a train station.", - "id": 16223 - }, - { - "image_path": "/content/drive/MyDrive/combined/3147d934c615ad86.jpg", - "response": "A newspaper article about a new game called Call of Duty: Eternal Warfare. The game's central mission is to spend years of your life engaging in pointless, horrific wars in the Middle East, running low on materiel and ammunition, at the cost of billions of pounds and hundreds of lives. You can play in real time, watching your friends suffer horrible injuries in front of you, and in the next round of gameplay understanding why you're doing it. Then at the end of the game, you get to turn to revert to normal life again, but you have to do it all over again!", - "id": 16224 - }, - { - "image_path": "/content/drive/MyDrive/combined/29334ac845da3808.jpg", - "response": "A book with the title \"Shed\" on the cover.", - "id": 16225 - }, - { - "image_path": "/content/drive/MyDrive/combined/301bdf5f208d798c.jpg", - "response": "A man in a yellow suit and black hat is sitting on a box of fireworks. He is pointing at the moon. The man is wearing a black hat and yellow clothes. He is sitting on a box of fireworks. The moon is in the background. The image has a blue border with white stars. The words \"PAINS FIREWORKS\" are in red and yellow. The words \"FIRST PLACE IN THE SPACE RACE\" are in white and yellow.", - "id": 16226 - }, - { - "image_path": "/content/drive/MyDrive/combined/315684f495a99359.jpg", - "response": " Sign(127,10),(815,983) on wall in Indonesia warning against feeding the monkeys", - "id": 16227 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fcdecfef525cb13.jpg", - "response": "A movie poster for the film \"L'ETRANGE CREATURE DU LAC NOIR\" with a man in a green monster costume reaching for a white woman standing in the water.", - "id": 16228 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f178419529afa71.jpg", - "response": "The cover of the album \"The Art of Harold Gomberg\" by Gomer Gomborg.", - "id": 16229 - }, - { - "image_path": "/content/drive/MyDrive/combined/31ea74d67a685249.jpg", - "response": "A sign in a foreign language for a product called Natural-Contours.", - "id": 16230 - }, - { - "image_path": "/content/drive/MyDrive/combined/2df8d6e495b7a0f4.jpg", - "response": "a powerpoint slide showing a chibi character with the kanji for akumako, or \"\u6076\u9b54\u306e\u714c\" which translates to \"Devil Girl\"", - "id": 16231 - }, - { - "image_path": "/content/drive/MyDrive/combined/32b0497aa73d65c2.jpg", - "response": "A space ship on the bottom of the cover with a red trail behind it.", - "id": 16232 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d203611799abe3e.jpg", - "response": "A magazine cover for Spicy-Adventure Stories, featuring a woman in a short skirt and white top, who appears to be a nurse, tied to a post, with a ship on fire in the background.", - "id": 16233 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d867feeb54a7eea.jpg", - "response": "The cover art for the album \"A Bigger Boat\" by American Speedway. The band's name is written in red and white letters at the top of the image. The album title is written in red and white letters on a surfboard that is being held by a cartoon shark. The shark is at the bottom of the image, with a sinking ship and people falling overboard in the background. The people on the ship are holding onto the side of the ship and a life preserver. The shark has a red eye and is opening its mouth wide. There are lightning bolts coming from the sky and the ship is sinking. The shark has a red eye and is opening its mouth wide.", - "id": 16234 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba9adf0982441b3.jpg", - "response": "A poster for the musical Wicked is on a window.", - "id": 16235 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f955b1d56efb269.jpg", - "response": "In the image there is a large neon sign that says \"TIGER & BUNNY\" and has two images of men in the foreground. The sign is advertising a movie called \"The Beginning\". There is also a poster for a road show event on the same sign. The event is on September 22nd and 23rd. The sign is located in a building with the number 9 on it.", - "id": 16236 - }, - { - "image_path": "/content/drive/MyDrive/combined/32233b1b5fb8c992.jpg", - "response": "A poster for the movie The Mechanic. The word \"mechanic\" is written in white and orange on a black background. The letter \"L\" is written in orange and is made up of various tools such as hammers, wrenches and screwdrivers.", - "id": 16237 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c2552ade5849d91.jpg", - "response": "A back of a box of fireworks that are called the Giant Cracking Fountain.", - "id": 16238 - }, - { - "image_path": "/content/drive/MyDrive/combined/3179fd569f69e2f8.jpg", - "response": "A poster with the title \"\u6c42\u5a5a\u987b\u77e5 PROPOSAL INSTRUCTIONS\" and various images depicting different ways to propose to a woman. The first image shows a man proposing on one knee to a woman, who is shown\u62d2\u7edd\u4e86\u4ed6 (\u62d2\u7edd with a cross through it). The second image shows a man proposing in a restaurant, the woman is shown looking at a watch, indicating that she is waiting for him to finish his speech. The third image shows a man proposing while the woman is sleeping, with the text \"\u5728\u68a6\u4e2d\u6c42\u5a5a\" (propose in a dream). The fourth image shows a man proposing with a giant diamond ring, the woman is shown\u60ca\u559c (surprised with a happy expression). The fifth image shows a man proposing with a picnic basket, the woman is shown\u5fae\u7b11 (smiling). The sixth image shows a man proposing with a bouquet of flowers, the woman is shown\u611f\u52a8 (moved with tears in her eyes). The seventh image shows a man proposing with a guitar, the woman is shown\u5bb3\u7f9e (shy). The eighth image shows a man proposing with a cake, the woman is shown\u60ca\u559c (surprised with a happy expression). The last image shows a man proposing with a drawing, the woman is shown\u611f\u52a8 (moved with tears in her eyes). The text below the poster reads \"I am not getting married until some man proposes to me using the last illustration.\"", - "id": 16239 - }, - { - "image_path": "/content/drive/MyDrive/combined/31bc72f7cd4ec79e.jpg", - "response": "A movie poster for the film Somewhere in the Night.", - "id": 16240 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ced02cf09270a86.jpg", - "response": "A sign on the back of a blue car that is advertising a 1969 dodge Coronet.", - "id": 16241 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fab21ed7c5b67d5.jpg", - "response": "A Frozen themed postcard with the main characters from the movie, Elsa, Anna and Olaf the snowman.", - "id": 16242 - }, - { - "image_path": "/content/drive/MyDrive/combined/29252f1eb7e58a1b.jpg", - "response": "A billboard for Asda, a grocery store, advertising items for only one pound.", - "id": 16243 - }, - { - "image_path": "/content/drive/MyDrive/combined/30a348b470348881.jpg", - "response": "A collage of magazine covers with the title A Conquista do Espa\u00e7o e a Estatura Humana.", - "id": 16244 - }, - { - "image_path": "/content/drive/MyDrive/combined/30381ee59ff50f1a.jpg", - "response": "A movie poster for the 1931 film Dracula, with the vampire character depicted in the center, surrounded by hands reaching out to him.", - "id": 16245 - }, - { - "image_path": "/content/drive/MyDrive/combined/29cf515617d0b112.jpg", - "response": "A poster for a play called Dradin in Love. The play is adapted and directed by Bob Kelly. The poster features a painting of a woman in a dress and a headdress. She is surrounded by gears and cogs. The text on the poster is white and black. The font is old style and looks like it was cut out with scissors. The poster also mentions that the play is a tale of romance, death, and freshwater squid. The poster is in black and white with the exception of the woman's dress which is a pale yellow.", - "id": 16246 - }, - { - "image_path": "/content/drive/MyDrive/combined/30ab4a546272ccb3.jpg", - "response": "A poster on a wall that says Voting is your right! in the top left hand corner. The poster is from Oracle/PAC. The poster says Registering to vote is easy - and your vote does count. Voting is the ultimate expression of your freedom. Register today.", - "id": 16247 - }, - { - "image_path": "/content/drive/MyDrive/combined/3056d15fc6dcf296.jpg", - "response": "A child's drawing of a globe with children holding hands around it. There are colored lines coming from the top of the globe and the letters MD above it. The words \"Modeling Digital\" are at the top of the page.", - "id": 16248 - }, - { - "image_path": "/content/drive/MyDrive/combined/2985f116d31b09b9.jpg", - "response": "A collage of a balding man with a bald head, wearing glasses. The man is depicted in black and white. The image is set against a backdrop of other street art pieces.", - "id": 16249 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cbc0df69cfc6125.jpg", - "response": "A poster of a man's face on a brick wall.", - "id": 16250 - }, - { - "image_path": "/content/drive/MyDrive/combined/31a59dfd420be6e0.jpg", - "response": "The image is an orange and black poster with a skeleton in the center. The skeleton is an outline of a man with an orange background. The skeleton is standing with arms outstretched and legs slightly bent. The skeleton is also outlined in white.", - "id": 16251 - }, - { - "image_path": "/content/drive/MyDrive/combined/32cba2913249f99a.jpg", - "response": "A poster for an event called \"KUNST i BERGEN\" with the date November 22nd. The event is held at Hovedbiblioteket and the cost is 19.00 with a discount of free entrance for the first 100 people.", - "id": 16252 - }, - { - "image_path": "/content/drive/MyDrive/combined/2db1b4e8115e36ee.jpg", - "response": "A green book with the title \"Product Design for the Web\" written on it. The author's name, Randy J. Hunt, is also written on the cover. The book is open to a page with writing on it. There is also a piece of paper with writing on it placed behind the book.", - "id": 16253 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d406449b97759a7.jpg", - "response": "A billboard for the Hearty Lunch event, which is held on June 15th.", - "id": 16254 - }, - { - "image_path": "/content/drive/MyDrive/combined/3058186257744fac.jpg", - "response": "The image is a black and white photograph of a group of people walking together. They are all wearing ties and the people at the front appear to be leading. Some of the people are wearing hats as well. The group is walking on a path and there is a building in the background. The photo is taken from a birds eye view.", - "id": 16255 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c062e2edb76c9ea.jpg", - "response": "A black and red poster with a map of Brazil on it.", - "id": 16256 - }, - { - "image_path": "/content/drive/MyDrive/combined/29e1840e679b0f5e.jpg", - "response": "A postcard with a picture of the Paddock Motor Court and Restaurant. The postcard is hand colored and has a blue sky and clouds in the background. The Paddock Motor Court sign is in the foreground and there is a restaurant sign above the entrance. There are cars parked in front of the motel and a tree in the foreground.", - "id": 16257 - }, - { - "image_path": "/content/drive/MyDrive/combined/31f49576c78dbf8f.jpg", - "response": "A book cover with a black and white skull on it.", - "id": 16258 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f62958e0a5c667a.jpg", - "response": "A close up of a tombstone with the word \"Viacrucis\" on it.", - "id": 16259 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f6d8c55f6ffad59.jpg", - "response": "A poster with the word Bastardo on it.", - "id": 16260 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a869d0b3f96b6aa.jpg", - "response": "A 5 gallon bucket with a picture of a cartoon bucket and a paint roller on it.", - "id": 16261 - }, - { - "image_path": "/content/drive/MyDrive/combined/31bfd1df0b8bd2fa.jpg", - "response": "A magazine ad for instant replay, featuring various play-by-play action stories on vinyl records.", - "id": 16262 - }, - { - "image_path": "/content/drive/MyDrive/combined/302b426ebdbebc7b.jpg", - "response": "A vintage advertisement for tortoise shell and amber glasses.", - "id": 16263 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cb28d8e3863571c.jpg", - "response": "A collage of pictures of lego creations by V&A Steamworks.", - "id": 16264 - }, - { - "image_path": "/content/drive/MyDrive/combined/28886bf070ac66d7.jpg", - "response": "A poster with a blue background and white stars.", - "id": 16265 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c58485b5d69b5c8.jpg", - "response": "A fire preventer sign with many instructions in a foreign language.", - "id": 16266 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c3428e92fd00785.jpg", - "response": "A large board with many different colored sticky notes attached to it.", - "id": 16267 - }, - { - "image_path": "/content/drive/MyDrive/combined/329cb2a9cd2cb26f.jpg", - "response": "A poster of a soldier with a question mark above his head.", - "id": 16268 - }, - { - "image_path": "/content/drive/MyDrive/combined/32201c37dba7ccd5.jpg", - "response": "A book cover with a fire burning in the background.", - "id": 16269 - }, - { - "image_path": "/content/drive/MyDrive/combined/305937198eba13f0.jpg", - "response": "A movie poster for the film Z3D.", - "id": 16270 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da04cef969ffde9.jpg", - "response": "A glass window with the Queen Victoria written on it.", - "id": 16271 - }, - { - "image_path": "/content/drive/MyDrive/combined/2af4647d6ddd2030.jpg", - "response": "The image is an open book with a page that has a drawing of an astronaut on the moon standing in front of a flag. The book is open to page 91.", - "id": 16272 - }, - { - "image_path": "/content/drive/MyDrive/combined/2933ad2f69d965ec.jpg", - "response": "a sign on a metal rack", - "id": 16273 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fb8fe3ffedbf815.jpg", - "response": "A sign in a dark room that says Abningsreception.", - "id": 16274 - }, - { - "image_path": "/content/drive/MyDrive/combined/32e250aa3b3ac720.jpg", - "response": "A computer screen with various websites and pages open.", - "id": 16275 - }, - { - "image_path": "/content/drive/MyDrive/combined/284d293aeb68cc09.jpg", - "response": "a wall with three comics tacked to it", - "id": 16276 - }, - { - "image_path": "/content/drive/MyDrive/combined/315d2d6c1d1c5c3d.jpg", - "response": "A poster of funny bunny in Chicago. The bunny is depicted in various actions such as running, jumping, and eating. The text at the top says \"Funny bunny in Chicago!\" and the bunny is described as \"half eaten red hot taxi\" in one panel. The poster is displayed on a wall.", - "id": 16277 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c72a8d4d2760931.jpg", - "response": "A movie theater called Small Cinema with two movies listed for September 29th. The first movie is Day and Knight and the second movie is Popcorns in the Air.", - "id": 16278 - }, - { - "image_path": "/content/drive/MyDrive/combined/2abd76254912ad79.jpg", - "response": "a drawing of a man in a box with a face on the side of the box. the man is pointing at the box and the box is saying \"handle me gently; i'm more fragile than i appear\"", - "id": 16279 - }, - { - "image_path": "/content/drive/MyDrive/combined/2be992c195a1fbcd.jpg", - "response": "The image is a colorful and vibrant poster for the London Boys. The poster features a man in a white shirt and black pants with his arms raised in the air. He is in the center of the poster and appears to be dancing. The text on the poster is white and is placed in a way that it almost looks like the man's arms are holding up the text. The font of the text is a mix of different styles and sizes.", - "id": 16280 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f08bee2c4d1e166.jpg", - "response": "a sign for BarCamp with a picture of a person holding a rainbow", - "id": 16281 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d96a70cb51b0649.jpg", - "response": "A book cover with a red background and a cityscape in the foreground. The title is written in white and the author's name is written in white on a banner at the bottom.", - "id": 16282 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c52615e43e42dce.jpg", - "response": "A street sign with a poster for the movie Guardians of the Galaxy on it.", - "id": 16283 - }, - { - "image_path": "/content/drive/MyDrive/combined/31bba235e0b7cc00.jpg", - "response": "In the image, the cover art for the video game Assassin's Creed IV: Black Flag is displayed. The main character, Edward Kenway, is depicted in the center wearing a black hooded cloak and holding two swords. He is standing on a ship with a pirate flag in the background. The sky is blue with clouds in the upper right and lower left corners. The sea is green-blue with white waves in the middle. In the upper left corner, there is a pirate ship with a man on the mast holding a flag with a skull and crossbones. The lower left corner shows a person in a blue shirt kneeling on the ship's deck.", - "id": 16284 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb52a1076217390.jpg", - "response": "A black and white page from a camera manual with an image of a city skyline at night.", - "id": 16285 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bd7d936793d10ed.jpg", - "response": "The cover of Edge magazine, December 2009 issue.", - "id": 16286 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a41a26a9855c504.jpg", - "response": "A large group of people in uniform are posing for a picture.", - "id": 16287 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b0f2beecc86ce4b.jpg", - "response": "A poster advertising a concert with a woman in fishnets holding a guitar.", - "id": 16288 - }, - { - "image_path": "/content/drive/MyDrive/combined/33cff9105b269725.jpg", - "response": "The image is a sundial with the words \"hic et nunc\" written above it. The sundial is on a brown background and the words \"carpe diem\" are written above the sundial. The image also has a border with the words \"flickr.com/aewolf\" in the top left corner and \"STJnoticias\" in the bottom right corner.", - "id": 16289 - }, - { - "image_path": "/content/drive/MyDrive/combined/33a10b077c70bae4.jpg", - "response": "A poster with the date 27 de Julio de 1819.", - "id": 16290 - }, - { - "image_path": "/content/drive/MyDrive/combined/330c81f5c5c4a070.jpg", - "response": "A Werewolf movie poster with the title La NUIT DU LOUP GAROU. The tagline is \"The Curse of the Werewolf\" and features a werewolf attacking a woman.", - "id": 16291 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ca402090ccc4e7.jpg", - "response": "A sign that says Don't envy beatniks, be one!", - "id": 16292 - }, - { - "image_path": "/content/drive/MyDrive/combined/3324a09ad2b6954f.jpg", - "response": "A man is standing in front of a red sun. The sky is green and the sun is red. The man is looking at the sun.", - "id": 16293 - }, - { - "image_path": "/content/drive/MyDrive/combined/33b91ed1fd642487.jpg", - "response": "a sign on a wall that says do not occupy this is substandard", - "id": 16294 - }, - { - "image_path": "/content/drive/MyDrive/combined/33c303a692384d37.jpg", - "response": "The image is a black cover with red swirling lines in the center. The cover has the title \"Northern Sirens\" in white letters at the bottom. Underneath the title is an individual's name, \"Christina Petrowska, piano\" written in white.", - "id": 16295 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d0712a920be467.jpg", - "response": "A book cover with the title written in black ink.", - "id": 16296 - }, - { - "image_path": "/content/drive/MyDrive/combined/33aa2f4e69ed10db.jpg", - "response": "A purple and orange book cover for the Game Developers Conference Proceedings 2008.", - "id": 16297 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d288c7f6d2d473.jpg", - "response": "The cover of the book depicting a man in a military uniform.", - "id": 16298 - }, - { - "image_path": "/content/drive/MyDrive/combined/382b2c742d52955b.jpg", - "response": "A poster for a Tour de Fat event in Washington D.C.", - "id": 16299 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ca296d4ff7403e4.jpg", - "response": "A display in a store window that has a picture of a Rubik's cube on it.", - "id": 16300 - }, - { - "image_path": "/content/drive/MyDrive/combined/3536af177d464d95.jpg", - "response": "The image is a poster with the letter A in the top left corner. The text on the poster says \"WANT TO BE AN ENTREPRENEUR BUT MISSING THE SKILLS REQUIRED?\" in white font on a blue background. There is a faint outline of four people in profile towards the bottom of the poster.", - "id": 16301 - }, - { - "image_path": "/content/drive/MyDrive/combined/372412388971f890.jpg", - "response": "A Barbican exhibition poster from 2012.", - "id": 16302 - }, - { - "image_path": "/content/drive/MyDrive/combined/3768482638cc6a15.jpg", - "response": "A red and white sheep dip poison label with skull and crossbones.", - "id": 16303 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c9bd69a19171f5c.jpg", - "response": "A picture of a heart with the word \"I\" in it and the word \"FEMINISM\" below it. The word \"FEMINISM\" is written in black.", - "id": 16304 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad13328fbbd63be.jpg", - "response": "On the wall, there are two posters. One is for Steve Ray Vaughan and Double Trouble and has a blue and yellow border. The other is for Stevie Ray Vaughan and has a red and yellow border. Both posters are framed.", - "id": 16305 - }, - { - "image_path": "/content/drive/MyDrive/combined/35d335c9c610f1ae.jpg", - "response": "A Komatsu sign on a yellow background.", - "id": 16306 - }, - { - "image_path": "/content/drive/MyDrive/combined/368f86d185f43042.jpg", - "response": "a poster on a wall with Italian writing on it", - "id": 16307 - }, - { - "image_path": "/content/drive/MyDrive/combined/39b5dc891bdf35c3.jpg", - "response": "The image shows a wall with several signs or posters painted on it. The signs are of varying sizes and are painted in different colors. Some of the signs feature text, while others have images or illustrations. The signs are arranged in a row along the wall, almost like a mural. The wall itself is white and appears to be made of concrete. The signs are also of varying heights on the wall.", - "id": 16308 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a6b9e1d7d162d3b.jpg", - "response": "a sign for a restaurant called Manhattan 3 Decker", - "id": 16309 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb3ce22e3a60ad9.jpg", - "response": "A book written in German.", - "id": 16310 - }, - { - "image_path": "/content/drive/MyDrive/combined/34d2b17e52144609.jpg", - "response": "A wall with several papers tacked to it.", - "id": 16311 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd6b4ca0d00021f.jpg", - "response": "A vintage image of a person on a sleigh being pulled by two reindeers.", - "id": 16312 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3b00b9c7381e3d.jpg", - "response": "a sign that says hot-n-ready in orange and black letters", - "id": 16313 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b472d242e268c9e.jpg", - "response": "A sign with information about the history of Ambresbury Banks.", - "id": 16314 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b8c1048eec1a5c1.jpg", - "response": "The image is of a red banner with the white Puma logo on the left and the gold Arsenal logo on the right. The words \"stronger together\" are written underneath both logos. The Puma logo is in the shape of a leaping cat. There is a teddy bear in the background.", - "id": 16315 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1380bcf7b40e57.jpg", - "response": "A black and white newspaper advertisement for Steinberg department store.", - "id": 16316 - }, - { - "image_path": "/content/drive/MyDrive/combined/381b8b17bfb195d2.jpg", - "response": "A picture of a soldier with the words COMCAMLWEEKLY underneath. There is a picture of a sunset with two soldiers silhouetted against it. There is a US flag and an ISAF flag in the bottom middle of the image. There is a picture of three people in the bottom right corner.", - "id": 16317 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b279896dfe276a7.jpg", - "response": "A research poster with the title \"Online Peer-to-Peer Mentoring Support for Youth with Chronic Conditions\" on a bulletin board.", - "id": 16318 - }, - { - "image_path": "/content/drive/MyDrive/combined/3852a8efb257e11a.jpg", - "response": "The image features a grey and orange poster with the words \"The Dartmouth Digital Synthesizer\" written at the top. The poster has an electronic music design with an orange and grey house on it.", - "id": 16319 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc91a06926788f5.jpg", - "response": "A postcard of Fort Weare Game Park in Pigeon Forge, Tennessee. The park is a large brick wall with the words \"Game Park\" painted on it. There is a small American flag on top of the wall. In front of the wall is a driveway and a small lawn. The sky is blue with white clouds.", - "id": 16320 - }, - { - "image_path": "/content/drive/MyDrive/combined/37d3683ffa99cbeb.jpg", - "response": "A series of 6 business cards for Blackbird. Each card is white with a large Bb on the top left and the word \"blackbird\" in smaller letters below. The cards are fanned out on a black background.", - "id": 16321 - }, - { - "image_path": "/content/drive/MyDrive/combined/38aeecdb55de56ac.jpg", - "response": "A sign for the Colonial Bank is on a pole in front of a brick building.", - "id": 16322 - }, - { - "image_path": "/content/drive/MyDrive/combined/3736f81be7095f5e.jpg", - "response": "A sign with four different colored squares on it.", - "id": 16323 - }, - { - "image_path": "/content/drive/MyDrive/combined/3766142abc766bf7.jpg", - "response": "a green zombie with a gray shirt and red eyes", - "id": 16324 - }, - { - "image_path": "/content/drive/MyDrive/combined/35a5692ddd14b2ca.jpg", - "response": "An old advertisement for Clarks Trade Mile-End Spool Cotton.", - "id": 16325 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c77169021ec8c12.jpg", - "response": "A grey t-shirt with a picture of Homer Simpson passed out on the floor with his head on a fire extinguisher. The words 911-Duff-Emergency are written on the bottom of the t-shirt.", - "id": 16326 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a33e3832cbd9459.jpg", - "response": "A red and white Astra Firework Displays 1983 book cover with a white background.", - "id": 16327 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c730789987416e5.jpg", - "response": "A person is typing on a laptop computer.", - "id": 16328 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b0d2862dcfef18e.jpg", - "response": "A poster for the SanaVita Landgoedfair, which will be held in June 2009 in Groenewold, the Netherlands.", - "id": 16329 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b17d8cd174ce244.jpg", - "response": "A customer information sign that has a note written on it.", - "id": 16330 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d70b855f5fb038e.jpg", - "response": "A black and white image of a tunnel with a brick wall.", - "id": 16331 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b262891f12463e7.jpg", - "response": "A magazine cover for New Scientist is displayed on a computer screen. The cover features a dragon on a red background and the title \"Special issue CHINA RISING\".", - "id": 16332 - }, - { - "image_path": "/content/drive/MyDrive/combined/35cf406f47c83f66.jpg", - "response": "A DVD cover for the movie Tigerland.", - "id": 16333 - }, - { - "image_path": "/content/drive/MyDrive/combined/3522a32b39790600.jpg", - "response": "A close up of a red and white sign that says \"live greater\" and \"that's the magis\" with the letters \"SJU\" below it.", - "id": 16334 - }, - { - "image_path": "/content/drive/MyDrive/combined/3899eb0e16bfd7bd.jpg", - "response": "The image is a book cover for the hard thing about hard things. The text is in orange and blue and is placed against a black background. The title is written in large font and is placed in 5 horizontal lines. The author's name is written in much smaller font below the title.", - "id": 16335 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a22833773160a8f.jpg", - "response": "A vintage map of the world with illustrations of various birds at the bottom.", - "id": 16336 - }, - { - "image_path": "/content/drive/MyDrive/combined/346e11bcf3c13f96.jpg", - "response": "A book cover with a red moon in the top left corner and a hand holding a knife in the top right corner. The title of the book is in red and white at the bottom of the cover.", - "id": 16337 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a89d20abfb0776f.jpg", - "response": "A purple and blue banner advertising a climbing event called Niki Nights.", - "id": 16338 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a24f425858d2c73.jpg", - "response": "A shopping cart sits on the ground in front of a bus stop.", - "id": 16339 - }, - { - "image_path": "/content/drive/MyDrive/combined/38d332cdfbec35d7.jpg", - "response": "A black and white sign for a place of worship.", - "id": 16340 - }, - { - "image_path": "/content/drive/MyDrive/combined/33e472cfe8651cd9.jpg", - "response": "A poster advertising a play called \"Koshered\" at the Federal Mayan Theatre.", - "id": 16341 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c727e4a5c2bc61d.jpg", - "response": "A black background with white and yellow text that says \"Colabos & Rarezas Volumen Uno\" and \"S02\". There is also an arrow pointing to the words \"descarga gratuita\" which means free download.", - "id": 16342 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c3955d814acfb36.jpg", - "response": "The image is a record album cover. The cover features a black and white photograph of a living room scene. The room has a couch with a floral print and a chair. There is a lamp in the corner of the room and a painting on the wall. The album title and track listing are listed on the cover.", - "id": 16343 - }, - { - "image_path": "/content/drive/MyDrive/combined/34ce19f0126dd754.jpg", - "response": "A framed poster of a woman holding a sign that says \"Free Hugs\" is hanging on a wall.", - "id": 16344 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6b2f10e4ce35ad.jpg", - "response": "A pizza box with a picture of a chef carrying a pizza on it.", - "id": 16345 - }, - { - "image_path": "/content/drive/MyDrive/combined/37c129966880e82d.jpg", - "response": "A black and white graphic with the phrase \"May the mass times acceleration be with you\" in white and yellow text.", - "id": 16346 - }, - { - "image_path": "/content/drive/MyDrive/combined/44582b003b93be6a.jpg", - "response": "A poster for the Huskie Cheerleading tryouts.", - "id": 16347 - }, - { - "image_path": "/content/drive/MyDrive/combined/429de36e990f3899.jpg", - "response": "A Garbage Pail Kids Radar Ray card with a child holding a bat and a green monster.", - "id": 16348 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d3e734206e8083.jpg", - "response": "A book cover for Skull-Face and Others by Robert E. Howard. The cover features a red-skinned monster with large crab-like claws holding a woman by her hair while a smaller monster looks on. They are all in front of a blue sky.", - "id": 16349 - }, - { - "image_path": "/content/drive/MyDrive/combined/44bb81deb5cd4a9d.jpg", - "response": "A vintage postcard with the word Greetings from El Paso Texas. The word El Paso is written in large letters and the postcard has a star on the top left corner. The word Texas is written in red. There is a cowboy riding a horse on the right side of the postcard. On the left side of the postcard there is a car and a mountain.", - "id": 16350 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eb7e95340075f7e.jpg", - "response": "A concert poster for a show called \"de sonic circuits\" at the Pyramid Atlantic Art Center. The show is on Saturday, November 26, 2011. The flyer is black and white with a large orange triangle on it. The text is in both English and French.", - "id": 16351 - }, - { - "image_path": "/content/drive/MyDrive/combined/44e7fef829eb2524.jpg", - "response": "The image is an old book cover for Hugh Thomson's fairy books. The cover features a color illustration of a man in a black and white striped shirt and a hat, holding a sword and running towards a giant. The giant is wearing a yellow and green robe and holding a staff. The man is also being chased by a giant frog. The background is a green hill with a blue sky and white clouds. There are also two bats flying in the sky.", - "id": 16352 - }, - { - "image_path": "/content/drive/MyDrive/combined/45bc9edc3ce7ccc5.jpg", - "response": "A wall with a timeline of events from the Star Wars universe, along with some movie posters.", - "id": 16353 - }, - { - "image_path": "/content/drive/MyDrive/combined/4148f86b687699a5.jpg", - "response": "A pink and blue record cover for Yehudi Menuhin and Stephane Grappelli's album Jealousy.", - "id": 16354 - }, - { - "image_path": "/content/drive/MyDrive/combined/40b5fced4992046e.jpg", - "response": "A sign that is on a wall that says \"Sutton is one of the safest boroughs in London. Help us keep it that way.\" below it. The sign also has a picture of a knife with a circle around it with a line through it.", - "id": 16355 - }, - { - "image_path": "/content/drive/MyDrive/combined/454d7d22103b0bc4.jpg", - "response": "A poster for a concert called Demoilta VII. The poster has a black background with the name of the concert in large letters at the top. Below the name of the concert are pictures of several bands that will be performing. The pictures are arranged in 3 rows and 2 columns. The first band listed is FlowBoysFahr, the second is B-Yake, the third is Obscurity, the fourth is Mmiro & RvR, and the fifth is Bad Samaritan. The last band listed is Harper Syndrome. The poster also has information about the concert's location and time. It will be held on July 7th at 16:30 at a place called Selon in Kirkjastossa.", - "id": 16356 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0f91554117e4ab.jpg", - "response": "A yellowish poster for a concert at the Bernard Pub.", - "id": 16357 - }, - { - "image_path": "/content/drive/MyDrive/combined/45f84e55508e0e4c.jpg", - "response": "A cork board with a concert poster for Rockin' the Plains featuring Great White with very special guests.", - "id": 16358 - }, - { - "image_path": "/content/drive/MyDrive/combined/460186472701999e.jpg", - "response": "A vintage postcard of a boardwalk at night in Wildwood, New Jersey. The boardwalk is filled with people walking and socializing. There are many different types of businesses along the boardwalk, including ice cream shops and other attractions. The sky is lit up by streetlights and the moon is visible in the sky.", - "id": 16359 - }, - { - "image_path": "/content/drive/MyDrive/combined/4679f229bf50b7cd.jpg", - "response": "A record album cover for Beethoven's Emperor piano concerto, with a green statue of a man holding a sword on the cover.", - "id": 16360 - }, - { - "image_path": "/content/drive/MyDrive/combined/40b39453248beb1f.jpg", - "response": "A yellow wall with a black figure of a man holding a spray can and the word \"stem\" above him.", - "id": 16361 - }, - { - "image_path": "/content/drive/MyDrive/combined/43954e59fbc7b85a.jpg", - "response": "A poster with a volcano and the different alert levels.", - "id": 16362 - }, - { - "image_path": "/content/drive/MyDrive/combined/40917a1218312a0c.jpg", - "response": "A man with a white beard, wearing a top hat with a star on it, a blue jacket, white shirt and red bow tie, pointing a finger forward.", - "id": 16363 - }, - { - "image_path": "/content/drive/MyDrive/combined/42a0935bbc9da622.jpg", - "response": "The poster for the film Rags and Tatters.", - "id": 16364 - }, - { - "image_path": "/content/drive/MyDrive/combined/434b22e7b8391add.jpg", - "response": "A yellow and black sign that says \"If you climb this it will break\" with a picture of a man climbing", - "id": 16365 - }, - { - "image_path": "/content/drive/MyDrive/combined/4081f72ab0b39d50.jpg", - "response": "A large wall with the words \"Belief + Doubt = Sanity\" painted on it. The letters are white and the wall is red. There is a black floor with the same words painted on it. There are 12 lights on the ceiling.", - "id": 16366 - }, - { - "image_path": "/content/drive/MyDrive/combined/4134a69791052569.jpg", - "response": "A black and white movie poster for the film The Art of War. The main title is in white and is set against a white background. The year 2009 is also shown in white. Below the title is a smaller white font reading July 25th 2009. The location is given in smaller white font, San Jose, CA. Below the title and location is the name of the movie in white, Crew vs Crew. The bottom of the poster has several logos in white. From left to right they are in order: Suhr\u00e9al, Armory, and Transcend.", - "id": 16367 - }, - { - "image_path": "/content/drive/MyDrive/combined/40f93c1d0ead9f0e.jpg", - "response": "A poster for Trojan Sound System at Scala in London. The poster is red, yellow and green with white writing. The Trojan logo is at the top of the poster, and the words Trojan Sound System are written in white in the centre. The words Channel One Sound System, Reggae Roast Sound System and DJ Wrongom are written in white in the centre and to the right of Trojan Sound System. The words Chris Read & Tom Central are written in white in the bottom right corner. The words At The Scala are written in white in the top left corner. The words Friday 23 March are written in white in the bottom left corner. The Scala logo is written in white in the bottom right corner. There is a trojan helmet drawn in white in the top right corner. There are also two lion heads drawn in white, one on the left and one on the right. The lion heads are standing on a shield that has the trojan helmet on it.", - "id": 16368 - }, - { - "image_path": "/content/drive/MyDrive/combined/434ba5621a4b9d61.jpg", - "response": "The image is a CD cover for the 1612 Italian Vespers by I Fagioli and Robert Hollingworth. The cover features a painting of an angel in flight with a scroll in its mouth. The angel is depicted in a blue light with a dark background. The title of the CD, \"1612 Italian Vespers\" is written in white at the bottom of the cover. The name of the artists, \"I Fagioli\" and \"Robert Hollingworth\" is written in white at the bottom of the cover as well. The logo of the record company, Decca, is located in the top right corner of the cover.", - "id": 16369 - }, - { - "image_path": "/content/drive/MyDrive/combined/3edad0da48a81b9c.jpg", - "response": "A bulletin board with a lot of postings on it.", - "id": 16370 - }, - { - "image_path": "/content/drive/MyDrive/combined/40e7017cea6f925b.jpg", - "response": "A black and white image of a body of water with a rocky island in the middle. The water is choppy and the sky is filled with stars. There is a quote from Betty White in the center of the image that is layered and diagonally placed. The quote is in white and pink text and reads \"If you can take a rain, check on a stormy night, then I would love you 'til your old like you're Betty White.\"", - "id": 16371 - }, - { - "image_path": "/content/drive/MyDrive/combined/46eb6860ed850610.jpg", - "response": "a sign that has a map of the area", - "id": 16372 - }, - { - "image_path": "/content/drive/MyDrive/combined/42132546ea298db4.jpg", - "response": "On the cover of Defiance is two people standing in front of a bridge with a city in the background. To the left is a person in all black with a scowl on their face and a hood on their head. They are holding two guns. To the right is a person with pink hair and a mohawk. They are also holding two guns. The sky above them is dark and there are clouds in the sky. In the foreground are many other people in various postures, some with weapons.", - "id": 16373 - }, - { - "image_path": "/content/drive/MyDrive/combined/4526b96d4e2cbfcc.jpg", - "response": "A movie poster with the title Segreti di Famiglia which is in Italian. The poster has a red color scheme with the main characters faces superimposed over a door. There is a curtain covering the door and the three characters can be seen looking out from behind the curtain. The two men on the left and right have goatees and the man on the left also has horns. The woman on the right has a mustache and a single horn on her forehead.", - "id": 16374 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d84c143eb0b2866.jpg", - "response": "A collage of military photos including soldiers, a helicopter, and a radio.", - "id": 16375 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e1bf62badd2da76.jpg", - "response": "A book with the title \"Quick Draw\" by Shu Ejima is open and sitting next to a closed copy of the same book. The open book has a red and black cover with white text. The title is written in a white font and the author's name is written in black. The cover also features a large red arrow pointing towards the right. The book is on a black shelf.", - "id": 16376 - }, - { - "image_path": "/content/drive/MyDrive/combined/4422301f47de0237.jpg", - "response": "A colour print advertisement for the Black Prince, a first-class clipper ship sailing for San Francisco. The print is for the Saturday, May 5th, 1854 issue of the clipper ship Black Prince. The advertisement is for the cargo being received at Pier 28, E.R.", - "id": 16377 - }, - { - "image_path": "/content/drive/MyDrive/combined/41597d0babbcce80.jpg", - "response": "A poster for the game Exit is displayed on a wall.", - "id": 16378 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d4594ebba4ca3f.jpg", - "response": "A man is making drinks at a coffee shop.", - "id": 16379 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f171ccb22d64b67.jpg", - "response": "A poster board with a lot of information about the history of the Social Center.", - "id": 16380 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0de383ed5575ef.jpg", - "response": "A large blue gate with a sign on it that says \"Office Property Consultants\". The gate is closed and has a colorful mural painted on it. The mural features a windmill, a house, and several large circles in different colors. There is also a sign on the gate that says \"DOMINION\" in blue.", - "id": 16381 - }, - { - "image_path": "/content/drive/MyDrive/combined/4269e5aabf755470.jpg", - "response": "A green poster with a skier on it.", - "id": 16382 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d1031388f837ee.jpg", - "response": "A vintage Chet comic postcard featuring a red haired woman in a pink dress with a speech bubble that says \"Now... Here's the tip-off!\"", - "id": 16383 - }, - { - "image_path": "/content/drive/MyDrive/combined/47c5e7802d01f79a.jpg", - "response": "In the image there is a casino sign and slot machines. The casino sign is illuminated and has the word casino written in yellow. The sign is located at the top of the image. Below the casino sign are slot machines. There are a total of 4 slot machines visible in the image. Some of the slot machines have a variety of buttons on them. The buttons are in different shapes and sizes. The background of the image is black.", - "id": 16384 - }, - { - "image_path": "/content/drive/MyDrive/combined/442c20d8c9fbfd2a.jpg", - "response": "An advertisement for a new development called CBD Time Gateway. The image features a tall building with a large spire. The building is depicted in blue and white. The advertisement is in a magazine, as indicated by the logo in the top left. The text is in Chinese, but the name of the development is in English.", - "id": 16385 - }, - { - "image_path": "/content/drive/MyDrive/combined/4521cc4b7d21059a.jpg", - "response": "A sign that says \"Welcome to the Bein! Bar\" with a variety of colors.", - "id": 16386 - }, - { - "image_path": "/content/drive/MyDrive/combined/4669ad9ecf3443ea.jpg", - "response": "A poster for the movie Superman.", - "id": 16387 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e9f4b20654a1b53.jpg", - "response": "A lottery ticket for the 5th prize of 3,643 euros is on display in a window.", - "id": 16388 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f9235a71c8ea0ee.jpg", - "response": "A large poster for the V&A museum in London.", - "id": 16389 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f4a8ac091ec3868.jpg", - "response": "A poster for the computer game The Keys to Maramon.", - "id": 16390 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f7b8d8a638cc137.jpg", - "response": "A monitor that is on and displaying a Lego Star Wars poster.", - "id": 16391 - }, - { - "image_path": "/content/drive/MyDrive/combined/43165a24fa55b711.jpg", - "response": "A large billboard for an anime called In Stores Winter on the outside of a building.", - "id": 16392 - }, - { - "image_path": "/content/drive/MyDrive/combined/45bed83a9fdbc6e0.jpg", - "response": "A poster that reads \"No Butts on the Beach\" is taped to a window.", - "id": 16393 - }, - { - "image_path": "/content/drive/MyDrive/combined/4485d3eb9349ac63.jpg", - "response": "A model figure of a woman holding a large gun stands next to a display for a product called LKOH.", - "id": 16394 - }, - { - "image_path": "/content/drive/MyDrive/combined/40bcb02e7c8b02a3.jpg", - "response": "A movie poster for the film The Bride of Frankenstein. The poster features the faces of the bride and Frankenstein, both of whom are looking at each other. The bride has blonde hair and is wearing a white face mask. Frankenstein has green skin and hair and is wearing a black shirt. The text on the poster reads \"more fearful than the monster himself\" and lists the stars of the film.", - "id": 16395 - }, - { - "image_path": "/content/drive/MyDrive/combined/42a827ff2e097e3a.jpg", - "response": "The image is a cover for an album titled \"The Heart of Saturday Night\". The cover features a neon-lit city street at night with various neon signs from businesses along the street. The main text of the cover is in black and white, with the title \"The Heart of Saturday Night\" taking up the top third of the cover. The cover also features a list of artists featured on the album, including Richard Thompson, Villagers, Karl Bartos, Matthew E White, Caitlin Rose, Arbouretum, Purling Hiss, Endless Boogie, and more. The bottom of the cover has a dark grey border with the words \"UNCUT\" in white on the left side and \"15 TRACKS OF 2019'S BEST NEW MUSIC\" in white on the right side.", - "id": 16396 - }, - { - "image_path": "/content/drive/MyDrive/combined/43797da9e4c15059.jpg", - "response": "A poster for the musical Chicago featuring a woman in a corset.", - "id": 16397 - }, - { - "image_path": "/content/drive/MyDrive/combined/433f03f819794dd0.jpg", - "response": "A screen capture of a computer screen with a black background. On the screen, there are three pictures of the Clash's albums. From left to right, the albums are \"London Calling,\" \"Sandinista!\" and \"The Clash.\" There is also a navigation bar at the bottom of the screen with three buttons, labeled A, C and Z.", - "id": 16398 - }, - { - "image_path": "/content/drive/MyDrive/combined/42d87533d6e69de7.jpg", - "response": "The image features the cover art for the video game Aliens: Colonial Marines. The cover art features an alien facehugger with a group of marines in the background. The text at the top of the cover reads \"ALIENS\", with the word \"COLONIAL\" written in smaller font underneath. The marines are walking through a dark and ominous environment, with one marine carrying a pulse rifle. The cover art is set against a white background.", - "id": 16399 - }, - { - "image_path": "/content/drive/MyDrive/combined/4282b101d2690f61.jpg", - "response": "In the image, there is a scene from the game Angry Birds. The background is a blue sky with green trees at the bottom. There are several characters from the game, including a red bird, a yellow bird, a blue bird, and a black bird. They are all standing on different platforms, looking up at a pig structure in the middle of the scene. The pig structure has two green pigs on the top level, one green pig on the middle level, and one pink pig on the bottom level. The pig structure is surrounded by green trees and blue sky.", - "id": 16400 - }, - { - "image_path": "/content/drive/MyDrive/combined/409536946d45bc36.jpg", - "response": "A colour illustration of Yogi Bear holding a portrait of himself up to the camera. The bear is standing behind a table with more portraits on it.", - "id": 16401 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dc407f9f959dc40.jpg", - "response": "A book on a bookshelf with the title Feed on it by Mira Grant.", - "id": 16402 - }, - { - "image_path": "/content/drive/MyDrive/combined/432b03478a52fc56.jpg", - "response": "A city square with people walking around.", - "id": 16403 - }, - { - "image_path": "/content/drive/MyDrive/combined/43bf3c9e9ea7aff0.jpg", - "response": "A black and white label for a rye whiskey called Coyote Ugly. The text is in white and there is a white outline around the edges of the label. The font is a mix of old time and modern styles. There is a picture of a wolf on the bottom left of the label. The label also says \"40 PROOF\" and \"55.3% ALCOHOL/VOL\" on the bottom.", - "id": 16404 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e9df7f0226eafce.jpg", - "response": "A poster for the 2012 Girl and Guy party.", - "id": 16405 - }, - { - "image_path": "/content/drive/MyDrive/combined/40305babc0cffc30.jpg", - "response": "A soldier wearing a helmet and holding a large American flag.", - "id": 16406 - }, - { - "image_path": "/content/drive/MyDrive/combined/4565addbebbb5558.jpg", - "response": "a sign that says edge to edge on it", - "id": 16407 - }, - { - "image_path": "/content/drive/MyDrive/combined/448163d65fa64210.jpg", - "response": "A postcard of a boardwalk scene at Tower Beach in Fort Walton Beach, Florida. People are standing and sitting on the wooden boardwalk, which is located near the beach. Some people are wearing bathing suits.", - "id": 16408 - }, - { - "image_path": "/content/drive/MyDrive/combined/47bdb4790d79a2a6.jpg", - "response": "A Magic store front with a logo of a person in a suit and a hat.", - "id": 16409 - }, - { - "image_path": "/content/drive/MyDrive/combined/46ceac27276487dd.jpg", - "response": "A poster for the Sao Paulo Lara Neira show.", - "id": 16410 - }, - { - "image_path": "/content/drive/MyDrive/combined/47472a01496db6a2.jpg", - "response": "A poster with the Swedish flag and the words GUD FINNS NOG INTE.", - "id": 16411 - }, - { - "image_path": "/content/drive/MyDrive/combined/4771b84eec43074f.jpg", - "response": "A picture of a woman holding an umbrella is on a wall.", - "id": 16412 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e2f351ff0316dc.jpg", - "response": "A red sign that says Sprinkler Stop Valve Inside installed by Protec Camerfield Ltd.", - "id": 16413 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d95828cc6dc1aa2.jpg", - "response": "A poster for a show called Games for May. The poster is yellow and orange and has a red and blue illustration of a map of the world. The text on the poster is black and white and reads \"CLOSING JUNE 12\" in the top left corner, \"TAPE RELEASE\" in the top right corner, \"SORRY ABOUT LAST TIME\" in the middle, \"WHAT CAN I RUN?\" in the top left, \"RUN FOR?\" in the top right, \"A SACRED BOOK\" in the bottom left, and \"TORTURE IN THE WILD FOREVER\" in the bottom right. The address for the event is 1321 Powell Street, Chinatown, San Francisco. The times for the event are 5 PM to 9 PM.", - "id": 16414 - }, - { - "image_path": "/content/drive/MyDrive/combined/403a47a4dfd4f7b8.jpg", - "response": "A postcard with a picture of a store front with the name Ted's Fountain Famous for Malts Trading Post.", - "id": 16415 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ded5791be005c46.jpg", - "response": "The image is the cover of the first Harry Potter book, \"Harry Potter and the Sorcerer's Stone\". The cover features a drawing of a boy on a broomstick in front of a castle. The boy is wearing green and red clothing and has a wild look on his face. He is flying through the air with his arms outstretched and looking over his shoulder. The background is a orange and purple sky with a dark cloud on the left. The boy is in front of an archway with a sign above him that reads \"Hogwarts School of Witchcraft and Wizardry\". The archway is made of beige bricks and has a red border. The bottom of the cover has a red, blue, and yellow pattern.", - "id": 16416 - }, - { - "image_path": "/content/drive/MyDrive/combined/4df2fb359ac975a2.jpg", - "response": "A postcard of Ye Olde Dog House Cafe & Motor Court in Horse Cave, Kentucky. The cafe is white with a brown roof and has a sign that says Ye Olde Dog House Cafe & Motor Court. There is a trailer park and a gas station visible in the background.", - "id": 16417 - }, - { - "image_path": "/content/drive/MyDrive/combined/48f45dcc0a027608.jpg", - "response": "A close up of a yellow Goldline marker pad on a white background. The pad is A4 size and has 70gsm paper. It is ideal for presentation visuals and has 50 pages.", - "id": 16418 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bc49ae0eb96c2c8.jpg", - "response": "Detail of a printed book showing a woodcut illustration of a woman holding a set of scales.", - "id": 16419 - }, - { - "image_path": "/content/drive/MyDrive/combined/48c65dc41a4b48be.jpg", - "response": "A red and blue map of Sydney is attached to a window.", - "id": 16420 - }, - { - "image_path": "/content/drive/MyDrive/combined/48e0031719e4c803.jpg", - "response": "The cover of the book \"The Bright Phoenix\" by Harold Mead. The title is written in yellow and white on a red background. There is a painting of a red and yellow bird with a black beak and yellow eyes. The bird is flying over a yellow and black background. There is a yellow and black vase to the left of the bird. The letters \"B3\" are written in yellow on the top left corner of the cover.", - "id": 16421 - }, - { - "image_path": "/content/drive/MyDrive/combined/489704a1ef665490.jpg", - "response": "A display case with a sheet of stamps behind glass.", - "id": 16422 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c336167f1c82db.jpg", - "response": "The image is a white background with black spots and rays radiating out from the center. In the center, it says \"RYCS\" in pink text.", - "id": 16423 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d03544a1d32e383.jpg", - "response": "A building with six windows. Each window has a colorful poster on it. The posters say the words Peace, Love, Hope, Luck, and two of them say the word Love. A man and a woman are on the middle window. A man on top of a piano is throwing money. A boy is on the bottom window and is throwing money too. There are some leaves on the ground.", - "id": 16424 - }, - { - "image_path": "/content/drive/MyDrive/combined/49f64975932d11fe.jpg", - "response": "A sign that says \"No. of Successful Cases Resulting in Pregnancy\" and has the number 50 under it.", - "id": 16425 - }, - { - "image_path": "/content/drive/MyDrive/combined/51c40ebfcea34a52.jpg", - "response": "A book cover with a black and white photograph of a wall with graffiti on it. The title is in red and white lettering.", - "id": 16426 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d08165266953ce8.jpg", - "response": "The image features a large colorful mural on the side of a building. The mural depicts a bird flying in front of a red sun, and it appears to be painted on a vertical tile. The tile is inscribed with the words \"We Declare Manhattan Valley a Drugfree Zone!\" in the center. The words are surrounded by various other phrases and images, including \"Rise Up!\" and \"created by Noah Xan X at FEAR\". The mural is displayed on a green wall, and it is framed by two white columns.", - "id": 16427 - }, - { - "image_path": "/content/drive/MyDrive/combined/524b7e668487f33a.jpg", - "response": "A poster for a performance of Topcaterrpillar presented by the Cornell Masque.", - "id": 16428 - }, - { - "image_path": "/content/drive/MyDrive/combined/50e96b8bba05d59d.jpg", - "response": "Spider-Man is holding a wanted poster of the Vulture.", - "id": 16429 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cdfec4841ac1501.jpg", - "response": "A black and white photograph of a crowd of people standing around a bonfire of books.", - "id": 16430 - }, - { - "image_path": "/content/drive/MyDrive/combined/50d7d2bc917f9b18.jpg", - "response": "a poster with a rainbow colored feather and a pair of blue and red scissors cutting it", - "id": 16431 - }, - { - "image_path": "/content/drive/MyDrive/combined/493590fb488b0a71.jpg", - "response": "A street pole with a bunch of political signs attached to it.", - "id": 16432 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e085a659db40994.jpg", - "response": "A white poster with the title Unveiled Harriet Logan. The text is black and is displayed in 5 paragraphs. The poster is on a white wall.", - "id": 16433 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dba754c97ebb8a4.jpg", - "response": "an old book with a picture of a train and an elephant on the cover", - "id": 16434 - }, - { - "image_path": "/content/drive/MyDrive/combined/481fbfa416fe4dce.jpg", - "response": "A movie theater program from 1951 showing Jack McCall Desperado and Invasion U.S.A.", - "id": 16435 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e50a5c4e9f9bcee.jpg", - "response": "A display case filled with many different items.", - "id": 16436 - }, - { - "image_path": "/content/drive/MyDrive/combined/523f4b68dcd52c3b.jpg", - "response": "A colorful sign is painted on the side of a brick building. The sign reads \"India supports the brutal Zionist aggression by buying Israeli arms. sever all defence ties with Israel.\" Below the text, there is a representation of an owl holding a plant with the words \"Palestine\" on it. There is also a representation of a person in green with a gun on a scorpion and the words \"anti Zionism\".", - "id": 16437 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f3dd2c7c2ca867d.jpg", - "response": "A billboard for Tropicana, an orange juice company.", - "id": 16438 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ae4c21bbc9844b4.jpg", - "response": "a postcard with the word Greetings on it", - "id": 16439 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e7d20df87029b5.jpg", - "response": "A large cardboard stand up for The Hunger Games Mocking Jay Part 1 is on display at a store. The stand up has a picture of a woman with long blonde hair on it. She is wearing a black dress and has wings on her back. The words The Hunger Games Mocking Jay Part 1 are written in white on the stand up. Below the stand up are four copies of the DVD for The Hunger Games Mocking Jay Part 1. They are all in blue packaging.", - "id": 16440 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a1f1cc85cbd3276.jpg", - "response": "A yellow and green poster with a woman on it.", - "id": 16441 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e9775cf4e727823.jpg", - "response": " A sign(3,31),(996,994) that says \"Be sure brain is in gear before engaging mouth\"", - "id": 16442 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c6def3d3486bb9a.jpg", - "response": "A map of Africa on a red poster.", - "id": 16443 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bc7a819d2ec8695.jpg", - "response": "A wooden wall with two signs on it. The signs are titled Blast From The Past and This Man Is An Island.", - "id": 16444 - }, - { - "image_path": "/content/drive/MyDrive/combined/5115346a5866df31.jpg", - "response": "The image is a movie poster for the film Chappie. The main character is a robot, who is in the foreground holding a gun. To his right is a man who appears to be his creator, also looking forward. In the background, another man looks on. The poster is in french, the date March 4 is written in the bottom left corner.", - "id": 16445 - }, - { - "image_path": "/content/drive/MyDrive/combined/47c662b3564ca64e.jpg", - "response": "A book with a red cover and a white star on the top right corner. The title of the book is \"Desertul tatarilor\" and it is written in romanian. The author of the book is Dino Buzzati. The book is on display on a white shelf.", - "id": 16446 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d3d6614fdd6a8a1.jpg", - "response": "A green banner with the text \"XIV Festival Internacional Tamaulipas\" written on it in white and orange. The banner also has a logo of a person dancing in front of a triangle.", - "id": 16447 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c0b434943eb84f6.jpg", - "response": "A wall with a sign that says \"Caution Vehicles Exiting\" above a door.", - "id": 16448 - }, - { - "image_path": "/content/drive/MyDrive/combined/4881b43f86b61e56.jpg", - "response": "A billboard advertising the Fashion Philosophy Fashion Week in Poland.", - "id": 16449 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a0fc9bf90573ba0.jpg", - "response": "A poster for a Glow Party that is being held on May 28th. The party is being held at a club and will feature music and entertainment by DJ Tim and DJ Razz. The party is a fun glowing night.", - "id": 16450 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e14acda68e947de.jpg", - "response": "A red and black image of a man fighting a demon type creature.", - "id": 16451 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d54612f709aa88b.jpg", - "response": "A vintage postcard with a color illustration of the exterior of a Rexall Drug Store. The store has a large sign above the entrance and two photos of the interior are shown below the exterior illustration. The first photo is of shelves full of various products and the second photo is of a person pushing a cart.", - "id": 16452 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a320040382fe710.jpg", - "response": "a sign that is yellow and black", - "id": 16453 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b2c5211fa7904e5.jpg", - "response": "A first day of issue envelope from Dominica with four stamps depicting scenes of international scouting.", - "id": 16454 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca889ae2b0bab6e.jpg", - "response": "A poster for the anime series \"Sailor Moon\" on a table.", - "id": 16455 - }, - { - "image_path": "/content/drive/MyDrive/combined/4facf6b7454604bb.jpg", - "response": "A white sign with the number 11 on it and the word Atlanta below it.", - "id": 16456 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c419052546b3735.jpg", - "response": "In the image there are two books, one on the left and the other on the right. They are both about Facebook and how to use it. The one on the left is titled Blueprint TS and has a blue and white cover. The one on the right is titled Apa Itu Blueprint TS and has a green and white cover. Both books are in a plastic case and are sitting on top of a car seat.", - "id": 16457 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bc6f4cb55bf00c9.jpg", - "response": "A postcard with the word Greetings on it.", - "id": 16458 - }, - { - "image_path": "/content/drive/MyDrive/combined/513d55740a2be619.jpg", - "response": "A display board with a sign that says The Moon Race Ends.", - "id": 16459 - }, - { - "image_path": "/content/drive/MyDrive/combined/49b859fc9d38b3d7.jpg", - "response": "A book cover for a golf course called The Bay Course.", - "id": 16460 - }, - { - "image_path": "/content/drive/MyDrive/combined/494d0363faf88044.jpg", - "response": "A poster for a performance called \"Love Comes Crawling\" which is based on a short story by Hope Faith. The poster features a grey background with a black and white image of a person crawling towards a circle in the middle. The circle is filled with a pink and green spiral pattern. The text on the poster is white and it says \"Love Comes Crawling\" on the top and \"August 21-26, 2015\" and \"Free admission - Hyde Park, London\" on the bottom.", - "id": 16461 - }, - { - "image_path": "/content/drive/MyDrive/combined/48af506b1c5979cd.jpg", - "response": "A series of three graphic designs side by side. Each design has the words \"LITTLE PEOPLE ARCHITECTS\" in white on a dark blue background. The first and third designs also have the words \"\u4f4f\u5b85\u5efa\u7bc9\u7684\u6a02\u97f3\" in white on a dark blue background, while the second design has the words \"\u4f4f\u5b85\u7684\u64f4\u97f3\" in white on a dark blue background. The designs also have a person's profile at the top and bottom of the image. The dates 2011, 03, 05 and 2011, 03, 25 are at the top of the first and third designs respectively, while the second design has no date.", - "id": 16462 - }, - { - "image_path": "/content/drive/MyDrive/combined/513e609b75c5dd65.jpg", - "response": "A vintage postcard showing a beach scene with many people.", - "id": 16463 - }, - { - "image_path": "/content/drive/MyDrive/combined/497fa7bfe502618d.jpg", - "response": "A display with a sign that says \"RES\" on it.", - "id": 16464 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ccbcbf33650b75a.jpg", - "response": "A blue and orange sign with a picture of a dog on it.", - "id": 16465 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ea6140dbce8b86e.jpg", - "response": "A poster of a woman eating a sandwich and an apple, with a lunch box and a thermos.", - "id": 16466 - }, - { - "image_path": "/content/drive/MyDrive/combined/51472586f672f317.jpg", - "response": "The Hereafter Gang book cover with a man standing on a road with a truck in the background.", - "id": 16467 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ee3b2025b8fbcd8.jpg", - "response": "The image is a digital drawing of a man with a colorful outline. The man has a flat top haircut and a small mustache. He has a colorful face with a frown and is wearing glasses. The background is a gradient of rainbow colors. The man's name, Bob Marley, is written at the bottom of the image in colorful letters.", - "id": 16468 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a6271ab98fad9ac.jpg", - "response": "The cover of the November 16, 1935, issue of Argosy Weekly.", - "id": 16469 - }, - { - "image_path": "/content/drive/MyDrive/combined/5166ac0d6060963e.jpg", - "response": "A screenshot of the title screen for Crystal Raider, a video game for the Mattel Intellivision console. The game's title is displayed in large, colorful letters at the top of the screen. Below the title, there are four options: Option, Select, Gold, and Begin. The Option and Select buttons are highlighted in yellow, the Select button is in the middle, and the Begin button is in red. The buttons are arranged in a 2x2 grid. The game's copyright and developer information is displayed at the top of the screen, and the game's logo is at the bottom of the screen.", - "id": 16470 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c202ec2ad3cc117.jpg", - "response": "a sign that says 2013 legislative conference", - "id": 16471 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c067a532e8ac1dc.jpg", - "response": "a red wall with the word MUJI in white and a white bar below it with the word \"\u7121\u5370\u826f\u54c1\" in white", - "id": 16472 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ea924e932e51354.jpg", - "response": "A large banner for the video game Batman Arkham City is attached to a building.", - "id": 16473 - }, - { - "image_path": "/content/drive/MyDrive/combined/526fa64727e7003e.jpg", - "response": "A cd case with a man on the cover holding a guitar.", - "id": 16474 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d52064b1558f167.jpg", - "response": "A yellow, red and black box of fireworks with a label that says \"Garden Firework Rockets\" on it.", - "id": 16475 - }, - { - "image_path": "/content/drive/MyDrive/combined/5165809d4e1fe005.jpg", - "response": "The cover of the album, with a painting of a large mountain with a river running through a valley in front of it.", - "id": 16476 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e320615ecaba264.jpg", - "response": "A movie poster with a man in a helmet and a helicopter in the background.", - "id": 16477 - }, - { - "image_path": "/content/drive/MyDrive/combined/492c80b448e09fe8.jpg", - "response": "A wall with many stickers on it, including a cartoon character with a hat and a beard.", - "id": 16478 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c905a90a984e94a.jpg", - "response": "A sign that says Welcome to the playground.", - "id": 16479 - }, - { - "image_path": "/content/drive/MyDrive/combined/4868bd709bb38580.jpg", - "response": "The image shows the cover art for the video game Halo 2 Anniversary. The main character, Master Chief, is holding two guns and is wearing a helmet and armor. The background is a city skyline with a golden sky. The game title, \"Halo 2 Anniversary\" is displayed in blue text below him.", - "id": 16480 - }, - { - "image_path": "/content/drive/MyDrive/combined/511be729a86ff45c.jpg", - "response": "A poster for the movie Daylight, with the text \"No debeiste usar aquel parche inestable\" at the top.", - "id": 16481 - }, - { - "image_path": "/content/drive/MyDrive/combined/483ab346d0df197a.jpg", - "response": "A wall covered in many different posters.", - "id": 16482 - }, - { - "image_path": "/content/drive/MyDrive/combined/50d4035c5bbfca9c.jpg", - "response": "The image is a text based image with the words \"A Counce of Loyalty is worth a pound of Cleverness\" in pink on a blue background. The text is set in a sans-serif font.", - "id": 16483 - }, - { - "image_path": "/content/drive/MyDrive/combined/51cd9d9c48b810f6.jpg", - "response": "The image is a book cover for a book called \"Citizen Marketers\" by Ben McConnell and Jackie Huba. The cover is red with white and black lettering. The title is written in large, bold, and uppercase letters across the top of the cover, with the author's names below in smaller font. The cover also features the phrase \"When People Are the Message\" in smaller font below the title.", - "id": 16484 - }, - { - "image_path": "/content/drive/MyDrive/combined/515dc8f914a33c4c.jpg", - "response": "A wall with three posters on it.", - "id": 16485 - }, - { - "image_path": "/content/drive/MyDrive/combined/5328eb74f18893d1.jpg", - "response": "A vintage postcard of a crowded beach in Ocean City, New Jersey. The beach is filled with many people and colorful umbrellas. Some people are playing in the water, while others are walking along the beach or sitting in chairs. There is a long boardwalk stretching along the beach, with several people walking on it. The postcard has a general view of the beach from the Mooring Terrace South.", - "id": 16486 - }, - { - "image_path": "/content/drive/MyDrive/combined/52f65098ace068b2.jpg", - "response": "A poster with a dark background with a city in silhouette. A large blimp is flying over the city with a beam of light shining down. The text on the poster is white and black.", - "id": 16487 - }, - { - "image_path": "/content/drive/MyDrive/combined/5509279526ee7de3.jpg", - "response": "The image features a red flag or cloth billowing in the wind. The flag is positioned to look like it is being blown by a gust of wind, and it is partially covering a blue sky with white clouds. The flag is also partially covering a building in the background.", - "id": 16488 - }, - { - "image_path": "/content/drive/MyDrive/combined/52e63ad32ec1a412.jpg", - "response": "A framed newspaper article that is called the Tairworth Herald.", - "id": 16489 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e98403b5b995fb.jpg", - "response": "A game cover for Star Wars: The Old Republic. The main characters are a male and female Jedi, standing in front of a city. Behind them are a group of Jedi and Sith, with a giant monster-like creature behind them. In the sky, spaceships are flying.", - "id": 16490 - }, - { - "image_path": "/content/drive/MyDrive/combined/543fe0036025ce30.jpg", - "response": "A vintage postcard of a boardwalk and beach scene in Seaside Heights, New Jersey. The boardwalk is crowded with people walking and enjoying the beach. There are many beach umbrellas set up along the boardwalk and on the beach. Some people are playing on the beach, while others are walking along the boardwalk. The sky is blue with some clouds and the sun is shining brightly.", - "id": 16491 - }, - { - "image_path": "/content/drive/MyDrive/combined/52ecf6e5942f4f21.jpg", - "response": "A card with a cartoon image of a pink creature with orange hair and fangs. It is standing in front of a dark background with a building.", - "id": 16492 - }, - { - "image_path": "/content/drive/MyDrive/combined/54ff90bc6d2976cb.jpg", - "response": "A blue and white certificate with the word Pinnacle in big letters in the middle. It is for an event called Intra-PINNACLE - 2011 which was organized by GBS - Hubli.", - "id": 16493 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b145b7feb74ae6.jpg", - "response": "A white background with a black and red flag in the top half of the image. The flag has a thick black diagonal stripe on the left and a thinner red diagonal stripe on the right. The flag is angled such that the thick black stripe is at the top left and the thin red stripe is at the bottom right. Below the flag is the text \"HUELGA GENERAL\" in large black letters. The word \"HUELGA\" is aligned to the left and \"GENERAL\" is aligned to the right. The word \"31-OCTUBRE\" is in red text below the main text and is aligned to the left.", - "id": 16494 - }, - { - "image_path": "/content/drive/MyDrive/combined/5310d17bd81d8433.jpg", - "response": "A poster for a hip hop house and dubstep event at a club called D-Side Electro Sur. The event is taking place from Wednesday to Saturday and features music by DJ Insania. The flyer is in Spanish.", - "id": 16495 - }, - { - "image_path": "/content/drive/MyDrive/combined/552dc4d2d9efa235.jpg", - "response": "A black and white illustration of two men fighting over a frisbee. One man is on the left side of the illustration and is dressed in black and white, wearing a suit and hat. He is holding a frisbee and a whip. The other man is on the right side of the illustration and is dressed in black and white, wearing a hat and jacket. He is holding a sword. They are both standing on a green field.", - "id": 16496 - }, - { - "image_path": "/content/drive/MyDrive/combined/52cedc53e61fa983.jpg", - "response": "A wall with graffiti and stickers on it.", - "id": 16497 - }, - { - "image_path": "/content/drive/MyDrive/combined/53f9f2a21cf1d33d.jpg", - "response": "A vintage poster of a woman holding a pile of canned goods.", - "id": 16498 - }, - { - "image_path": "/content/drive/MyDrive/combined/556211297f266a28.jpg", - "response": "A man with white hair and a beard, wearing a dark outfit and carrying two swords, stands in the middle of the image. The man is holding a sword in each hand, and there is a trail of blood behind him. He is framed by a dark forest in the background. To the left of the man, there is a logo for The Witcher 3: Wild Hunt. The text is white and outlined in red. The website \"thewitcher.com\" is written in white at the bottom of the image.", - "id": 16499 - }, - { - "image_path": "/content/drive/MyDrive/combined/53f91446fc0a462b.jpg", - "response": "A poster for the tv show fringe which features two men and a woman.", - "id": 16500 - }, - { - "image_path": "/content/drive/MyDrive/combined/52d9aef4a2215ad9.jpg", - "response": "A book cover for The Green Millennium by Fritz Leiber. The cover art is a painting of a woman riding a tiger while holding a sword and wearing a cloak. She is in the foreground and there are several other characters in the background. They are all riding various animals including a horse, a lion, and a elephant. The background is a mix of green, brown, and orange colors.", - "id": 16501 - }, - { - "image_path": "/content/drive/MyDrive/combined/5477f897677ff2b0.jpg", - "response": "A black and white image of a woman standing on a train platform. The woman is looking at the camera and appears to be looking into the distance. The image is described as a Midnight Melody.", - "id": 16502 - }, - { - "image_path": "/content/drive/MyDrive/combined/53e7be9a76368f72.jpg", - "response": "The image is a tan colored picture with the phrase \"carpe diem\" written on it in black. The words \"ex delicto\" and \"do delito\" are written in white in the center of the image. The phrase \"carpe diem\" is written in Roman numerals. There is a sundial on the picture with the words \"do\" and \"de\" on the left and right sides of the sundial respectively. The words \"aprenda outros termos latinos, expressoes juridicas e dicas de portugues com o Manual de Textos do STJ\" are written in white at the bottom of the image.", - "id": 16503 - }, - { - "image_path": "/content/drive/MyDrive/combined/52fdbee77a8bb966.jpg", - "response": "A poster for the II Semana de la Copla Salorino.", - "id": 16504 - }, - { - "image_path": "/content/drive/MyDrive/combined/541ddc3fae2e1357.jpg", - "response": "A sign for the National Bank is posted on a pole.", - "id": 16505 - }, - { - "image_path": "/content/drive/MyDrive/combined/550ebeb702240c72.jpg", - "response": "A paper with the words Domain Own on it.", - "id": 16506 - }, - { - "image_path": "/content/drive/MyDrive/combined/6816faf226e214c2.jpg", - "response": "A black record with the number 999 on it.", - "id": 16507 - }, - { - "image_path": "/content/drive/MyDrive/combined/7284188d465d4d5e.jpg", - "response": "The cover of Athens Voice magazine, with a blue and green image of a face on it.", - "id": 16508 - }, - { - "image_path": "/content/drive/MyDrive/combined/7c3a97e917c77aa0.jpg", - "response": "The image is a colorful poster with the words \"New Illuminati\" at the top. The main figure is a human body with a glowing green sphere at the head, surrounded by a blue aura. The body is standing on a red planet with a blue sky and green water. There are three women in the image, one on the left, one on the right, and one in the center. The center woman is holding a glowing orb above the head of the main figure. The background is filled with colorful dots and lines.", - "id": 16509 - }, - { - "image_path": "/content/drive/MyDrive/combined/7f21e7fc8daeefaf.jpg", - "response": "The image is a red and black graphic of a person holding a scales of justice with the word \"ARTICLE 11\" written in all caps and bold in the top right corner. The graphic is set against a white background.", - "id": 16510 - }, - { - "image_path": "/content/drive/MyDrive/combined/9779a97deca71bbb.jpg", - "response": "A poster with the word \"ANTI-SLAVERY CELEBRATION!\" at the top in large letters. Below that it says \"FIRST OF AUGUST!\" and \"ANNIVERSARY OF WEST INDIA EMANCIPATION!\" in smaller letters. There is a large header in the middle that says \"CITY HALL,\" with the time and location listed below it.", - "id": 16511 - }, - { - "image_path": "/content/drive/MyDrive/combined/ca279fcde178427f.jpg", - "response": "A book cover with a picture of a mountain in the background.", - "id": 16512 - }, - { - "image_path": "/content/drive/MyDrive/combined/d0abc5ab3f6fd877.jpg", - "response": "A poster for the ballet Fleur de Lotus, featuring a woman in a white dress with orange hair, dancing with three other people dressed in black.", - "id": 16513 - }, - { - "image_path": "/content/drive/MyDrive/combined/e9915e4011219b78.jpg", - "response": "A card with a picture of a baseball game on it.", - "id": 16514 - }, - { - "image_path": "/content/drive/MyDrive/combined/f5ac582a308421c1.jpg", - "response": "A lego structure of a Chinese style building on a airship with a dragon on the front of it.", - "id": 16515 - }, - { - "image_path": "/content/drive/MyDrive/combined/f236601e3b552f07.jpg", - "response": "A poster for an Armageddon gig featuring a skeleton holding a sign that says \"A Radical Records, Austin\"", - "id": 16516 - }, - { - "image_path": "/content/drive/MyDrive/combined/f2dfb4d1298c0d6c.jpg", - "response": "A page from a newspaper, the top of the page features a group of 14 men's faces. Underneath that is a large advertisement for Assim Cigaretten. The text is in German. There is an image of a woman in a dress holding flowers. Another smaller advertisement for N.J. Christensen, Erfurt is below that. There is also an advertisement for Stieff-Bl\u00f6cke.", - "id": 16517 - }, - { - "image_path": "/content/drive/MyDrive/combined/0791e242096f7c36.jpg", - "response": "A model of a Drive-In restaurant with a sign that says Drive-In on it.", - "id": 16518 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab7f6ddcf768360.jpg", - "response": "A table is set up with a black tablecloth and has a variety of food and drink items on it. There are multiple bottles, a bowl, a slow cooker, and a few bowls of food. There is also a plant and a picture on the wall.", - "id": 16519 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cbaa693ba2eab65.jpg", - "response": "A woman wearing a green shirt with yellow letters on it, standing in a kitchen.", - "id": 16520 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a09acd4b806d482.jpg", - "response": "A magic bullet blender on display in a store.", - "id": 16521 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb0bd82c43f4223.jpg", - "response": "a silver and black crockpot with the word hot surface written on it", - "id": 16522 - }, - { - "image_path": "/content/drive/MyDrive/combined/0beb6fd014c9ca95.jpg", - "response": "A model is standing next to two LG washing machines, one positioned on the left and the other on the right. She is holding a piece of blue clothing in her left hand.", - "id": 16523 - }, - { - "image_path": "/content/drive/MyDrive/combined/09413da01e856fda.jpg", - "response": "a watch with the word metal on it", - "id": 16524 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b7fb0afdbc30ad0.jpg", - "response": "A kitchen counter with a canister of flour on it.", - "id": 16525 - }, - { - "image_path": "/content/drive/MyDrive/combined/10f69dffc2d38afc.jpg", - "response": "A cartoon illustration of a red dictating machine.", - "id": 16526 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d392bbe24579ec.jpg", - "response": "A brown trash can next to a blue trash can.", - "id": 16527 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ca07c96f2d46a90.jpg", - "response": "A black and white rice cooker sitting on a counter.", - "id": 16528 - }, - { - "image_path": "/content/drive/MyDrive/combined/34d3914458b90b93.jpg", - "response": "The image shows a lunch counter with three women working behind the counter. There are two cash registers and a large metal pan sitting on the counter. There are also several cups and a vase on the counter.", - "id": 16529 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fece374b51e2d2f.jpg", - "response": "A toaster oven is shown in a box.", - "id": 16530 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b723daee5c03f9c.jpg", - "response": "A slow cooker with chocolate pudding cake in it.", - "id": 16531 - }, - { - "image_path": "/content/drive/MyDrive/combined/1643223e99fad9fa.jpg", - "response": "A wooden table with a metal water boiler on it. The water boiler has a note on it that says \"MayM P10\" and another note that says \"Lost\". Next to the water boiler is a white and blue electric blender.", - "id": 16532 - }, - { - "image_path": "/content/drive/MyDrive/combined/51249af15f3d1115.jpg", - "response": "A crockpot with a black handle and a clear lid is sitting on a stove. The crockpot has a black and silver base. Next to the crockpot is a food processor with a clear bowl and black base. There is a yellow and white floral print container behind the food processor. In front of the container is a black cord plugged into an outlet. A spoon is sticking out of the food processor.", - "id": 16533 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f21976214ebc938.jpg", - "response": "A parking meter that has expired with the time showing 25 minutes left.", - "id": 16534 - }, - { - "image_path": "/content/drive/MyDrive/combined/18cd81dc51d81d4d.jpg", - "response": "a large silver pot sitting on a stove", - "id": 16535 - }, - { - "image_path": "/content/drive/MyDrive/combined/0af6f6c6d7aacd60.jpg", - "response": "A person is pouring a can of beans into a sink. The sink is silver and located in a kitchen.", - "id": 16536 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f72adac2a904cb.jpg", - "response": "A black camera with the word Nikon on it.", - "id": 16537 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d91f76ec604400e.jpg", - "response": "a person that has a laptop and a controller", - "id": 16538 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7b146071e71f11.jpg", - "response": "An ebook reader with a book open on it.", - "id": 16539 - }, - { - "image_path": "/content/drive/MyDrive/combined/112e8fc8497d808e.jpg", - "response": "A remote control sitting on a wooden table.", - "id": 16540 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f2971624fd374b.jpg", - "response": "A person is holding a white electrical outlet in their hand. The outlet has three holes in it and the word \"fused\" is written on it. The person's thumb and pinky finger are visible through the hole in the outlet.", - "id": 16541 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cce561ebcd7d699.jpg", - "response": "A black mouse with a blue light on it.", - "id": 16542 - }, - { - "image_path": "/content/drive/MyDrive/combined/143d9adc0368b1dd.jpg", - "response": "three cellphones on a table. the middle phone has a blue background with yellow numbers and the time is 9:11. the left phone has a blue background with white numbers and the time is 9:13. the right phone has a black background with white numbers and the time is 9:10.", - "id": 16543 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f49275613bd6a76.jpg", - "response": "A black remote control with many buttons on it.", - "id": 16544 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b9b9475008881b5.jpg", - "response": "a person holding a white remote control in front of a television", - "id": 16545 - }, - { - "image_path": "/content/drive/MyDrive/combined/237ad7322d398ce3.jpg", - "response": "The image features a car radio receiver with a large 4.3 inch screen. The radio is black in color and has a remote control that is also black. The remote control has a blue backlit display and is designed to work with the car radio. The radio has a screen that displays the current time as 12:26 and the date as December 26th. The screen also displays the song playing, which is \"Quick Reply\" by an artist named \"AAC\". The radio also has a function to play videos and the current video playing is of a group of people walking. The radio also has a function to play iPod, and the current song playing on iPod is \"AAC\". The radio also has a function to play videos and the current video playing is of a group of people walking.", - "id": 16546 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccb326b95b9f723.jpg", - "response": "A remote control with many buttons on it.", - "id": 16547 - }, - { - "image_path": "/content/drive/MyDrive/combined/17515c1977a65d6b.jpg", - "response": "A remote control with a piece of tape over the top of it.", - "id": 16548 - }, - { - "image_path": "/content/drive/MyDrive/combined/0979c605f878a914.jpg", - "response": "The image shows a close up of a keyboard with several keys missing. The keys that are visible include an arrow key with an up arrow pointing to the left, a key with an arrow pointing to the right, an ins mode key, a key with the letters FM PA2, a key with an arrow pointing to the left, and a key with the letters del on it.", - "id": 16549 - }, - { - "image_path": "/content/drive/MyDrive/combined/45047ffd01cfb29d.jpg", - "response": "A remote control sitting on a tan cushion.", - "id": 16550 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3173257c9e7a24.jpg", - "response": "A remote control sitting on a desk next to a computer mouse.", - "id": 16551 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f3dd7ad37a4886.jpg", - "response": "A couple of electronic devices sitting on a table.", - "id": 16552 - }, - { - "image_path": "/content/drive/MyDrive/combined/07be4726e91f8bd0.jpg", - "response": "A mouse pad with a mouse on it.", - "id": 16553 - }, - { - "image_path": "/content/drive/MyDrive/combined/2651395ff518a966.jpg", - "response": "A black remote control with many buttons on it.", - "id": 16554 - }, - { - "image_path": "/content/drive/MyDrive/combined/53d31ba978813fa3.jpg", - "response": "A table with a glass and a bottle of beer on it.", - "id": 16555 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c8e4365b6399665.jpg", - "response": "a person holding a camera up to their eye", - "id": 16556 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe794789d502ff5.jpg", - "response": "A remote control for a Regza television wrapped in a clear plastic bag.", - "id": 16557 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a922c130ae274fc.jpg", - "response": "The image features a white rectangular device with a large number pad on the left side and a speaker on the right side. The device has a logo on the top left corner and the name \"john's snow\" on the bottom right corner. The device is also described as a smartphone.", - "id": 16558 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e2fb0542e9871f.jpg", - "response": "An orange rotary dial phone sitting on a table.", - "id": 16559 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d47ad515a219fd.jpg", - "response": "A Lenovo K900 phone, still in its box, on a wooden table. The phone is black and has a large screen. On the table, there are also a charger, a USB cable, and a power adapter. There are also some loose papers and a small bag on the table.", - "id": 16560 - }, - { - "image_path": "/content/drive/MyDrive/combined/352d2a2519f1d13b.jpg", - "response": "A black remote control with white numbers and grey letters.", - "id": 16561 - }, - { - "image_path": "/content/drive/MyDrive/combined/3533eda1686bad39.jpg", - "response": "A remote control with grey buttons and a grey body.", - "id": 16562 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aa11d45bbaa9a73.jpg", - "response": "A hand holding a remote control next to a sanitized remote bag.", - "id": 16563 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f6e49c8fc3f2fb9.jpg", - "response": "The back of a blue iPhone which is placed on a wooden table.", - "id": 16564 - }, - { - "image_path": "/content/drive/MyDrive/combined/38509536e9732b43.jpg", - "response": "A man sitting on a couch playing a guitar.", - "id": 16565 - }, - { - "image_path": "/content/drive/MyDrive/combined/13b511749bf4cb02.jpg", - "response": "An iPhone 3G box and a bottle of Smart Water are sitting on a table.", - "id": 16566 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f18c7fd38e493b4.jpg", - "response": "A black electronic device with a remote control sitting on top of it.", - "id": 16567 - }, - { - "image_path": "/content/drive/MyDrive/combined/186605cc626e671c.jpg", - "response": "A remote control sitting on a surface.", - "id": 16568 - }, - { - "image_path": "/content/drive/MyDrive/combined/39e8fcda5f8bf298.jpg", - "response": "A collection of ten different remote controls are spread out on a wooden table. The remotes vary in size and shape, but most have a similar layout of buttons in the center. Some of the remotes have colorful buttons, while others have only black and white buttons. Some of the remotes have small rectangular buttons, while others have round buttons. The remotes are all facing different directions, and some are stacked on top of one another.", - "id": 16569 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa912e4699e04b1.jpg", - "response": "A car radio with a remote control.", - "id": 16570 - }, - { - "image_path": "/content/drive/MyDrive/combined/2405190fb9ea8dd0.jpg", - "response": "A remote control with a led controller on top of it.", - "id": 16571 - }, - { - "image_path": "/content/drive/MyDrive/combined/0933f45a1da73085.jpg", - "response": "A black Canon camera sitting on the ground next to a memory card.", - "id": 16572 - }, - { - "image_path": "/content/drive/MyDrive/combined/08fc5881082a9f15.jpg", - "response": "The image shows two gaming mice side by side. They are both black and have a sleek design. The one on the left has a white bottom while the one on the right has a black bottom. Both mice have a micro switch inside, according to the label on the bottom of each. The one on the left has a green label while the one on the right has a red label. Each mouse has a USB connection on the right side. They are both sitting on a white surface.", - "id": 16573 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c50f6a02a6461d.jpg", - "response": "A black remote control with white buttons is shown on a striped surface.", - "id": 16574 - }, - { - "image_path": "/content/drive/MyDrive/combined/2914e711d165eb87.jpg", - "response": "A table with four different remote controls on it.", - "id": 16575 - }, - { - "image_path": "/content/drive/MyDrive/combined/50803c8f3fba178c.jpg", - "response": "A hand holding a white remote control with five buttons.", - "id": 16576 - }, - { - "image_path": "/content/drive/MyDrive/combined/402c9e7ae849aeb7.jpg", - "response": "A Wii remote control with a wrist strap attached to it.", - "id": 16577 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b2af4888f596492.jpg", - "response": "A black and red tv remote control with a thumb on it.", - "id": 16578 - }, - { - "image_path": "/content/drive/MyDrive/combined/11fc3846bbf0a8b1.jpg", - "response": "The image features a black and grey wireless mouse. The top of the mouse has a scroll wheel and two buttons, one larger and one smaller, labeled M and L respectively. The mouse also has a small hole next to the M button. The bottom of the mouse has a charging port and a small black switch. The switch has the letters H and O on it, with a line underneath. The mouse is sitting on a white surface.", - "id": 16579 - }, - { - "image_path": "/content/drive/MyDrive/combined/4166772334f67e2a.jpg", - "response": "A black calculator on display with a description of it on a piece of paper.", - "id": 16580 - }, - { - "image_path": "/content/drive/MyDrive/combined/1480a4b37d859e87.jpg", - "response": "A remote control with many buttons on it.", - "id": 16581 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ecd8c681d88ef4.jpg", - "response": "A close up of a person holding a smartphone. The phone is a gold and orange Vertu phone. The person is holding the phone in their right hand and their thumb is on the display button. The phone is on and the display shows a clock. The wallpaper is blue and has white dots in a circular pattern. There are several icons on the bottom of the screen including the phone, messaging, mail, settings, and a camera icon. The time on the phone is 11:18.", - "id": 16582 - }, - { - "image_path": "/content/drive/MyDrive/combined/4371fcaa74d62805.jpg", - "response": "The image features a black gaming mouse with a cable connected to it. The mouse has a blue light shining from it. The mouse has a total of 6 buttons, 3 on one side and 3 on the other. The bottom of the mouse has a pattern of KRYOZYN imprinted on it. The cable connecting the mouse is black and has a round end. The mouse is sitting on a white surface.", - "id": 16583 - }, - { - "image_path": "/content/drive/MyDrive/combined/31bb4de500bd00f0.jpg", - "response": "A laptop with a picture of children on the cover.", - "id": 16584 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eff42c3496420be.jpg", - "response": "A tablet is sitting on a table next to a remote control. There is also a pen, a pair of glasses, and a can of soda on the table.", - "id": 16585 - }, - { - "image_path": "/content/drive/MyDrive/combined/54b6452fa5eb538c.jpg", - "response": "A picture of a remote control sitting on a red surface. The remote control has many buttons on it including a button that says \"chaos\".", - "id": 16586 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d4ea9f07d6fb4ab.jpg", - "response": "A person holding a sony remote control in their hand.", - "id": 16587 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c6eee0d9680ffce.jpg", - "response": "A black remote control for a TV sitting on a black leather couch.", - "id": 16588 - }, - { - "image_path": "/content/drive/MyDrive/combined/083a1cdbea927942.jpg", - "response": "The image features a brand new Logitech G910 Orion Spark gaming keyboard still in its box. The box is open and the keyboard is shown sitting on a white surface. The keyboard is black with a few different colored keys such as pink, purple, and blue. The keyboard has a USB connection and is described as a \"mechanical gaming keyboard\". The box for the keyboard is also black and features the Logitech logo and the G910 Orion Spark branding.", - "id": 16589 - }, - { - "image_path": "/content/drive/MyDrive/combined/207c3b3fc70c1734.jpg", - "response": "A black remote control with a wooden wrist rest.", - "id": 16590 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d23ef29631d2072.jpg", - "response": "a remote control with a cracked case", - "id": 16591 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c4a76e86302fe89.jpg", - "response": "A black remote control for an LG television.", - "id": 16592 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b7ed953ae93d10.jpg", - "response": "A drill sits on a wooden table next to a measuring tape. The drill is on the right side of the tape and is silver and black. The tape is measuring the drill and the drill is measuring the tape.", - "id": 16593 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a642ea40a7f81b.jpg", - "response": "An old fashioned weighing scale is pictured in a close up. The scale has a white face with black numbers and markings. The scale is set to 0 kilos.", - "id": 16594 - }, - { - "image_path": "/content/drive/MyDrive/combined/149d68a5fe1bdbf8.jpg", - "response": "A wooden ruler with yellow markings is placed on a wooden surface. The ruler is measuring a white pipe. The pipe is placed on a wooden shelf.", - "id": 16595 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c25cdd3ed7c9d9a.jpg", - "response": "a bolt with wings on it", - "id": 16596 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0d9297944aea8b.jpg", - "response": "A metal ruler with the numbers on it.", - "id": 16597 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c97be6bbea7c9d9.jpg", - "response": "A small black rose is on a ruler.", - "id": 16598 - }, - { - "image_path": "/content/drive/MyDrive/combined/1409961a28ec7db5.jpg", - "response": "A metal ruler that is made by Cocraft.", - "id": 16599 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a52b29e48f5228.jpg", - "response": "A person is measuring a piece of cardboard with a ruler. The ruler is measuring 4 inches. There is a pencil next to the ruler. The person is holding the ruler with their left hand and the pencil with their right hand. The background is a white table.", - "id": 16600 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a9610643fdb51ba.jpg", - "response": "a black object is laying next to a ruler on an orange background", - "id": 16601 - }, - { - "image_path": "/content/drive/MyDrive/combined/093b38cd43294a55.jpg", - "response": "A white coral is shown next to a measuring tape. The coral is white and is shaped like a vase. It has a hollow center and appears to be made of many small pieces. It is about 10 centimeters long.", - "id": 16602 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c53666a50fad4c3.jpg", - "response": "a ruler(0,622),(997,935) with black markings", - "id": 16603 - }, - { - "image_path": "/content/drive/MyDrive/combined/0872c3df6b711f98.jpg", - "response": "a brown and gray moth on a wooden plank next to a ruler", - "id": 16604 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d172c1e8520f60f.jpg", - "response": "A large ruler is on the white board.", - "id": 16605 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c03c641795ebf12.jpg", - "response": "A desk with a notebook, ruler, pen, and a mouse on it. The mouse is black and sits next to the notebook. The pen is resting on top of the notebook, and the ruler is placed on the notebook as well. There is also a notepad with writing on it placed on the desk.", - "id": 16606 - }, - { - "image_path": "/content/drive/MyDrive/combined/0af0e740cdb36ec8.jpg", - "response": "A wanted poster for a man named Tommy Kentner.", - "id": 16607 - }, - { - "image_path": "/content/drive/MyDrive/combined/1312d5730caddc05.jpg", - "response": "A drafting table with a ruler, protractor, and a blueprint of a street layout. There is also a yellow legal pad with a note written on it.", - "id": 16608 - }, - { - "image_path": "/content/drive/MyDrive/combined/1863d4e334a4c0dd.jpg", - "response": "A ruler in the snow.", - "id": 16609 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d54ce48aaed7ec.jpg", - "response": "A bookshelf with many books and audio books on it.", - "id": 16610 - }, - { - "image_path": "/content/drive/MyDrive/combined/078f5b3c3da7c7fc.jpg", - "response": "A pair of gold earrings next to a measuring tape.", - "id": 16611 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc6b1a6c911f519.jpg", - "response": "a wooden table with a measuring tape, spool of thread, pin cushion and fabric on it.", - "id": 16612 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a9d5e54fcf25702.jpg", - "response": "The image shows two sides of a silver 5 francs coin from 1813. The coin features a profile of a man on one side and a wreath on the other side. The man's hair is curly and his hair is dressed in a bun. He is wearing a helmet with a leaf on top. The date 1813 is written below him. The word \"France\" is written on the top of the coin. The word \"Empire\" is written on the top left of the coin. The date 1813 is written on the bottom of the coin. The word \"5\" is written on the top right of the coin. The word \"Francs\" is written on the top of the coin. The word \"MILITARE\" is written on the top of the coin. The word \"F\" is written on the top left of the coin. The word \"G\" is written on the top right of the coin. The word \"1813\" is written on the bottom of the coin. The word \"A\" is written on the top left of the coin. The word \"C\" is written on the top right of the coin. The word \"G\" is written on the top left of the coin. The word \"M\" is written on the top right of the coin. The word \"P\" is written on the top left of the coin. The word \"R\" is written on the top right of the coin. The word \"F\" is written on the top left of the coin. The word \"D\" is written on the top right of the coin. The word \"M\" is written on the top left of the coin. The word \"P\" is written on the top right of the coin. The word \"R\" is written on the top left of the coin. The word \"C\" is written on the top right of the coin. The word \"M\" is written on the top left of the coin. The word \"P\" is written on the top right of the coin. The word \"R\" is written on the top left of the coin. The word \"C\" is written on the top right of the coin. The word \"M\" is written on the top left of the coin. The word \"P\" is written on the top right of the coin. The word \"R\" is written on the top left of the coin. The word \"C\" is written on", - "id": 16613 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dd140604185a054.jpg", - "response": "A small piece of popcorn that has been removed from the cob. It is light orange in color and is lying on a red background. There is a black ruler that is measuring the piece of popcorn and it is measuring to be about 1 cm in length.", - "id": 16614 - }, - { - "image_path": "/content/drive/MyDrive/combined/1421addf7d9de54f.jpg", - "response": "A wooden table with spaghetti noodles and toothpicks stuck in them.", - "id": 16615 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c5606677a46ffa5.jpg", - "response": "a pair of scissors and a ruler on a table", - "id": 16616 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d31bc5e0b845ba9.jpg", - "response": "In the image there is a white tape measure with red numbers. The numbers are in a way that the number 1 is on the left and the number 12 is on the right. The number 10 is located directly above the red number 1. The tape measure is standing on a black background.", - "id": 16617 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b7edc104561fd51.jpg", - "response": "A thermometer with a gold color and a black plastic handle.", - "id": 16618 - }, - { - "image_path": "/content/drive/MyDrive/combined/121628f423c17de2.jpg", - "response": "A red laser pointing at the center of a ruler.", - "id": 16619 - }, - { - "image_path": "/content/drive/MyDrive/combined/10831925755a724d.jpg", - "response": "A single bean is in the center of the image. It is a brown bean with a small crack in it. To the bottom of the image is a black ruler with white markings. The markings on the ruler are at 5, 6, 7, and 8. The background of the image is white.", - "id": 16620 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b544d976644223c.jpg", - "response": "A small metal object with a wire sticking out of it is being measured with a metal ruler. The metal ruler is measuring the object as 1 cm.", - "id": 16621 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b6a192ae0c7d65f.jpg", - "response": "A footprint in the snow is being measured by a yellow tape measure. The footprint is that of a large animal.", - "id": 16622 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ebff0c4a4859a68.jpg", - "response": "A sprig of mint with a ruler next to it.", - "id": 16623 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ebe4a29eb38d473.jpg", - "response": "A gold ring with a dot in the middle is shown next to a measuring tape.", - "id": 16624 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fdb9ba87ce6506d.jpg", - "response": "A small moth with a wingspan of 15 millimeters is shown next to a ruler.", - "id": 16625 - }, - { - "image_path": "/content/drive/MyDrive/combined/208e7a96c4ba0f68.jpg", - "response": "A measuring tape is placed next to a black object. The measuring tape is made by Westcott.", - "id": 16626 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e974a26a7699e2c.jpg", - "response": "a ruler is next to a bag of white plastic parts", - "id": 16627 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3c2eca54382679.jpg", - "response": "A cutting board with a pile of various printed materials on top of it. The materials include business cards, a ruler, and a pair of scissors.", - "id": 16628 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe2bcaa49b8d54e.jpg", - "response": "A book with instructions on how to make a star is open to the page with the star pattern.", - "id": 16629 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de965143f1f5734.jpg", - "response": "a ruler with holes in it", - "id": 16630 - }, - { - "image_path": "/content/drive/MyDrive/combined/447e5d2d629a0b8f.jpg", - "response": "A stone weight in the shape of a fish.", - "id": 16631 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0fcf3780f6964d.jpg", - "response": "A small black rectangle is on a white counter next to a metal ruler. The rectangle is slightly curved and it is positioned towards the right side of the ruler. The ruler is measuring the black rectangle and the measurement is 2 cm.", - "id": 16632 - }, - { - "image_path": "/content/drive/MyDrive/combined/3967214812604b5d.jpg", - "response": "A metal ruler that is labeled The City Cigar Store.", - "id": 16633 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b25470bf6f9300.jpg", - "response": "a person is holding a measuring tape over a wall", - "id": 16634 - }, - { - "image_path": "/content/drive/MyDrive/combined/23de66ad78278ab8.jpg", - "response": "a toy gun that is black and gray in color with a ruler that is silver in color", - "id": 16635 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b461aac16c17b46.jpg", - "response": "A black and red object is sitting next to a white ruler.", - "id": 16636 - }, - { - "image_path": "/content/drive/MyDrive/combined/38bef054bbe43596.jpg", - "response": "a ruler(1,37),(992,956) is in the background", - "id": 16637 - }, - { - "image_path": "/content/drive/MyDrive/combined/2429c36cd49ddd03.jpg", - "response": "A small flower bud is next to a measuring tape.", - "id": 16638 - }, - { - "image_path": "/content/drive/MyDrive/combined/41cb220ede313d68.jpg", - "response": "A small chip from a digital light processing camera is shown on a black background. The chip is gold and white and has a small white screen in the center. Above the chip, a measuring tape is laid out to measure the size of the chip. The tape is labeled Texas Instruments.", - "id": 16639 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f60ed496e41c410.jpg", - "response": "a ruler that is white and black in color", - "id": 16640 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f3bb6c0f70529ba.jpg", - "response": "A yellow measuring tape is placed on the ground to measure the height of the area.", - "id": 16641 - }, - { - "image_path": "/content/drive/MyDrive/combined/32393791f12ab19a.jpg", - "response": "In the image there is a small bone laying on a black surface. The bone is white in color and has a slight curve to it. There is a measuring tape behind the bone that is labeled \"HELIX\" with the numbers 10 and 1. The tape is also labeled J01.", - "id": 16642 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ab1264075bb427.jpg", - "response": "A measuring tape showing the length as 21 centimeters.", - "id": 16643 - }, - { - "image_path": "/content/drive/MyDrive/combined/351e78e77fc94e16.jpg", - "response": "A coin with the date 1988 on it", - "id": 16644 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c359c1372df2c00.jpg", - "response": "A small black audio jack lies on a wooden table. It is about 2 centimeters long.", - "id": 16645 - }, - { - "image_path": "/content/drive/MyDrive/combined/351a4da9d9488bc3.jpg", - "response": "A white plastic sword measuring 12.5 centimeters in length.", - "id": 16646 - }, - { - "image_path": "/content/drive/MyDrive/combined/527eed62e3e3f895.jpg", - "response": "a metal tape measure on a wooden table next to a metal sharpener", - "id": 16647 - }, - { - "image_path": "/content/drive/MyDrive/combined/27cbe36c9c756d6a.jpg", - "response": "A close up of a wooden ruler that is measuring a white and silver cylinder. The numbers on the ruler are 16, 17, 18, 19, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 16, 17, 18, 19.", - "id": 16648 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c37bd4acea3d8ea.jpg", - "response": "A close up of a device on a blue background. The device is made of metal and has a place to put a film strip. There is a hand holding the device on the left side of the image and a ruler in the background.", - "id": 16649 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8df721bd2973aa.jpg", - "response": "A knife and a measuring tape are on a table with a chocolate cake.", - "id": 16650 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a7d55dcfcd7d9a3.jpg", - "response": "a metal object that has the word brevet on it", - "id": 16651 - }, - { - "image_path": "/content/drive/MyDrive/combined/55720524117c0fc4.jpg", - "response": "A collection of metal rulers and a wooden mallet on a green cutting mat.", - "id": 16652 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e20763ac423f25.jpg", - "response": "A ruler is shown with a piece of wood in front of it. The wood is a striped brown color. The ruler is measuring the wood to be 2 inches wide.", - "id": 16653 - }, - { - "image_path": "/content/drive/MyDrive/combined/520694db63f5915b.jpg", - "response": "A single nut is being measured with a black ruler. The nut is brown and has a single brown stripe down the middle. The ruler is measuring the nut to be about 17 millimeters in length.", - "id": 16654 - }, - { - "image_path": "/content/drive/MyDrive/combined/48139b284a0a0e7e.jpg", - "response": "A gold ring with a diamond in the center. The diamond is set in a prong setting. The band of the ring is engraved with the words \"MRS. GEORGE W. CALDWELL\". The ring is sitting on a black background. There is a measuring tape in the foreground with the measurement 1.0 cm.", - "id": 16655 - }, - { - "image_path": "/content/drive/MyDrive/combined/24479ab9bc2dbeaf.jpg", - "response": "A webcam is sitting on a wooden table. The table is next to a ruler. The ruler is on the table.", - "id": 16656 - }, - { - "image_path": "/content/drive/MyDrive/combined/2977aaf374b49f04.jpg", - "response": "A ruler in the snow.", - "id": 16657 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d8d4ecd1b90f548.jpg", - "response": "a gold brooch in the shape of a hound", - "id": 16658 - }, - { - "image_path": "/content/drive/MyDrive/combined/231f0d814150fb4f.jpg", - "response": "A close up of a green ruler laying on a white surface.", - "id": 16659 - }, - { - "image_path": "/content/drive/MyDrive/combined/253c1627edc7f6bb.jpg", - "response": "A pair of scissors, a bottle of wood glue, a roll of tape, a ruler and a utility knife are laid out on a green cutting mat.", - "id": 16660 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f8a4d564b264981.jpg", - "response": "A large crowd of people are in the stands at a baseball stadium.", - "id": 16661 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6da2eb4a2189fe.jpg", - "response": "A large scoreboard at a stadium with many different advertisements on it.", - "id": 16662 - }, - { - "image_path": "/content/drive/MyDrive/combined/14744f551dcff2b9.jpg", - "response": "A baseball scoreboard with the teams listed as Asia and Komazawa. The numbers show the score at the end of the game, with Asia winning 5 to 4.", - "id": 16663 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dd856d8180c3baa.jpg", - "response": "A television set(113,11),(950,992) showing the time of 12:37:42.", - "id": 16664 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d841b2b803676fa.jpg", - "response": "A scoreboard at a football game with the time at 1:23 and the score at 3-4.", - "id": 16665 - }, - { - "image_path": "/content/drive/MyDrive/combined/29091ce72b67a6d4.jpg", - "response": "A baseball stadium with a large video screen above the field.", - "id": 16666 - }, - { - "image_path": "/content/drive/MyDrive/combined/24ce32b304ba871f.jpg", - "response": "a large score board that is outside", - "id": 16667 - }, - { - "image_path": "/content/drive/MyDrive/combined/41a09b4dea386735.jpg", - "response": "A crowd of people in a stadium with a banner in the middle that says \"Colony-O-Ballon-Rond-Meetus-100%-Speculation-Stop!\"", - "id": 16668 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f89dd017751d4d9.jpg", - "response": "A large scoreboard at a baseball stadium.", - "id": 16669 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f7632002a7491ee.jpg", - "response": "A scoreboard for a game of football.", - "id": 16670 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f1a3b4c08f56ba2.jpg", - "response": "A large scoreboard with the time 14:50 and the word Medical Center at the bottom.", - "id": 16671 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c51c70e64f3f0f5.jpg", - "response": "A close up of a computer on a desk with a book next to it.", - "id": 16672 - }, - { - "image_path": "/content/drive/MyDrive/combined/35bfd69b99bc15d0.jpg", - "response": "A large crowd of people are in the stands of a stadium watching a game. The scoreboard is showing a football game. The sky is overcast and there is a misty rain falling.", - "id": 16673 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9477019a4cad4a.jpg", - "response": "A basketball game is being played in a gym with fans watching. The gym has banners hanging from the ceiling and a large basketball hoop. The score board is located in the middle of the gym and has the score 52 to 57.", - "id": 16674 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2115ec3f17bb57.jpg", - "response": "A large stadium with many people in the stands watching a game.", - "id": 16675 - }, - { - "image_path": "/content/drive/MyDrive/combined/42292cf946584d67.jpg", - "response": "A player on the blu team has 214 points. There are 12 players on the red team and 11 players on the blu team. The game is a capture the flag match. The score board shows the player's names and points. The player with the most points is Crypto FM JJ with 120 points. There is a girl in a pink shirt sitting in a chair. The map is called \"De_dust2\". The round time is 16 seconds.", - "id": 16676 - }, - { - "image_path": "/content/drive/MyDrive/combined/39a9925a3a8f4c4b.jpg", - "response": "In the image there is a large crowd of people in the stands watching an event. In the background there is a large ferris wheel and a building. In the foreground there is a black pole with a digital display showing the lap time of a driver.", - "id": 16677 - }, - { - "image_path": "/content/drive/MyDrive/combined/2646e9e797714431.jpg", - "response": "A baseball stadium with a large scoreboard showing the game is between the Washington Nationals and the Chicago Cubs. The scoreboard also displays a picture of a player and his statistics. The stadium is full of fans watching the game.", - "id": 16678 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6916f204f404a8.jpg", - "response": "A baseball stadium with a crowd of people watching the game. The scoreboard is large and spans across the width of the field. It shows the score of the game, which is 2 to 0 in favor of the home team. There are several advertisements on the scoreboard, including one for Kroger.", - "id": 16679 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c704d0742d08a73.jpg", - "response": "A basketball game is being played in a crowded arena. The players are on the court, wearing their uniforms, and are in various positions. The court is made of wood and has red and white markings. There is a large scoreboard at the back of the court, showing the score and time remaining in the game. The crowd is watching the game intently, filling the arena with their presence.", - "id": 16680 - }, - { - "image_path": "/content/drive/MyDrive/combined/36a06577dcdca2b6.jpg", - "response": "A baseball scoreboard with the time set at 12:59.", - "id": 16681 - }, - { - "image_path": "/content/drive/MyDrive/combined/3153293f0bfa1dd9.jpg", - "response": "The image features a baseball field with a large scoreboard in the background. There is a group of people standing on the field holding flags. In total, there are 13 people visible in the scene. One of the people is holding a baseball glove. The baseball is located near the center of the field, and it appears to be a white baseball.", - "id": 16682 - }, - { - "image_path": "/content/drive/MyDrive/combined/30692edec4d4feb0.jpg", - "response": "A large scoreboard at a baseball stadium displays the game's statistics.", - "id": 16683 - }, - { - "image_path": "/content/drive/MyDrive/combined/265ef87e5c269ff5.jpg", - "response": "A Bud Light ad on the scoreboard at a hockey game.", - "id": 16684 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a522703fe1c2af5.jpg", - "response": "A basketball scoreboard with the time at 10:35.", - "id": 16685 - }, - { - "image_path": "/content/drive/MyDrive/combined/480359c55a3e9686.jpg", - "response": "A crowd of people are watching a baseball game.", - "id": 16686 - }, - { - "image_path": "/content/drive/MyDrive/combined/41cfeaa3e5349bb1.jpg", - "response": "A basketball scoreboard that says Oregon on it.", - "id": 16687 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b755ab5cd47c73.jpg", - "response": "A stage with a big screen on the back wall. On the screen is a Call of Duty logo.", - "id": 16688 - }, - { - "image_path": "/content/drive/MyDrive/combined/41881e76a1eba44a.jpg", - "response": "A car dashboard showing the temperature gauge at 36 degrees Celsius.", - "id": 16689 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc293efa0203314.jpg", - "response": "A group of young men playing a game of floor hockey on a court.", - "id": 16690 - }, - { - "image_path": "/content/drive/MyDrive/combined/18a85804a835db25.jpg", - "response": "A baseball stadium with a green field and blue sky.", - "id": 16691 - }, - { - "image_path": "/content/drive/MyDrive/combined/2db57ad3e2498801.jpg", - "response": "The scoreboard at the University of North Western Eagles basketball game.", - "id": 16692 - }, - { - "image_path": "/content/drive/MyDrive/combined/39a16e9bf5b65da3.jpg", - "response": "The image shows a hockey scoreboard with the digits 09:17 on it. There is a sign above the scoreboard that reads North Hills Hospital. The scoreboard also displays the words Home, Penalty, and Guest. There are two rows of numbers on the scoreboard, with the numbers 3 and 4 lit up. There is a row of four lights above the scoreboard, two on each side. The background is grey.", - "id": 16693 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c9506c41e442c5a.jpg", - "response": "a group of people standing in a stadium", - "id": 16694 - }, - { - "image_path": "/content/drive/MyDrive/combined/16dc9c57eeb1b8f8.jpg", - "response": "The image shows the iconic marquee of Wrigley Field, home of the Chicago Cubs. The marquee is red and features white lettering. The words \"Welcome to Wrigley Field\" are displayed on the marquee. The letters are set in a yellow background. The marquee is located in front of the stadium.", - "id": 16695 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a19d0affc691e43.jpg", - "response": "A baseball stadium with a large crowd of people watching the game.", - "id": 16696 - }, - { - "image_path": "/content/drive/MyDrive/combined/331d94f9bbec1e35.jpg", - "response": "A baseball stadium is full of fans watching the game. The sun is setting in the background and there is a player on the scoreboard.", - "id": 16697 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa68cf69c17da67.jpg", - "response": "A baseball field with a large green wall that has the word Covidien on it. There are many people in the stands watching the game.", - "id": 16698 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ee0cd074fbb7c48.jpg", - "response": "A man standing on a ladder and writing on a scoreboard.", - "id": 16699 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aee2930f0df8bee.jpg", - "response": "The image shows a baseball stadium with a large scoreboard in the center. The scoreboard is for the New York Yankees and the Detroit Tigers. The stadium is full of people and has a baseball field with players on it. There are also many advertisements on the scoreboard and around the stadium.", - "id": 16700 - }, - { - "image_path": "/content/drive/MyDrive/combined/30a69dec756e7cfc.jpg", - "response": "A baseball player standing in the outfield.", - "id": 16701 - }, - { - "image_path": "/content/drive/MyDrive/combined/2910c9f42a440563.jpg", - "response": "A basketball game is being played in a crowded arena. The scoreboard is large and can be seen from all seats in the arena. The crowd is engaged in the game and watching the players.", - "id": 16702 - }, - { - "image_path": "/content/drive/MyDrive/combined/07f3049deeb13d8a.jpg", - "response": "An airport departures board with orange and white writing.", - "id": 16703 - }, - { - "image_path": "/content/drive/MyDrive/combined/4654c1d0e8e21af9.jpg", - "response": "A large screen at a basketball game is showing a man and woman kissing.", - "id": 16704 - }, - { - "image_path": "/content/drive/MyDrive/combined/47429bfe6ba544db.jpg", - "response": "A baseball stadium with a large scoreboard and many advertisements.", - "id": 16705 - }, - { - "image_path": "/content/drive/MyDrive/combined/23dbccf70ed6ee45.jpg", - "response": "The image shows a large scoreboard at a sports event. The scoreboard displays the word \"CAPS\" on the bottom and \"WIN\" on the top. The word \"CAPS\" is displayed in red and white, and \"WIN\" is displayed in white. The scoreboard also displays the score of the game, with \"4\" on the left and \"3\" on the right. The time is displayed as \"1:09\" on the top right of the scoreboard. The crowd is in the background, watching the game.", - "id": 16706 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aebcf0dddbcbd37.jpg", - "response": "A baseball player is running on the field.", - "id": 16707 - }, - { - "image_path": "/content/drive/MyDrive/combined/279aaf5ed33c445c.jpg", - "response": "A large scoreboard with a picture of Sean Malto and a woman on it.", - "id": 16708 - }, - { - "image_path": "/content/drive/MyDrive/combined/4698be0808526dd1.jpg", - "response": "A large scoreboard at a basketball game.", - "id": 16709 - }, - { - "image_path": "/content/drive/MyDrive/combined/108601d4dc38951b.jpg", - "response": "A baseball stadium with a large scoreboard and many fans in the stands.", - "id": 16710 - }, - { - "image_path": "/content/drive/MyDrive/combined/24c438f1db2149b5.jpg", - "response": "A horse racing track with a sign that says \"Happy Birthday\" on it.", - "id": 16711 - }, - { - "image_path": "/content/drive/MyDrive/combined/34c1f1566d57710e.jpg", - "response": "A basketball scoreboard that is showing the final score of the game as 50 to 6.", - "id": 16712 - }, - { - "image_path": "/content/drive/MyDrive/combined/54ff8e2eeb548638.jpg", - "response": "A graphic showing the results of the Damansara Mini League with Perindu Legend in first place and no name team in last place.", - "id": 16713 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e9007e57e97f160.jpg", - "response": "A large digital display board at an airport with many flights on it.", - "id": 16714 - }, - { - "image_path": "/content/drive/MyDrive/combined/ea6660a5d1387853.jpg", - "response": "A blackboard with many figures and calculations written in German.", - "id": 16715 - }, - { - "image_path": "/content/drive/MyDrive/combined/11c75d15a121f2da.jpg", - "response": "Four green bins are labeled with the names April, Alex, Aric, and Aaron. They are on a wooden shelf with books and other items.", - "id": 16716 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abf13bb7c818c75.jpg", - "response": "A store shelf with a large Dove display.", - "id": 16717 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ebfe4317f56869.jpg", - "response": "a room with a lot of shelves and boxes on the shelves", - "id": 16718 - }, - { - "image_path": "/content/drive/MyDrive/combined/172813812931e912.jpg", - "response": "A store display filled with various action figure toys.", - "id": 16719 - }, - { - "image_path": "/content/drive/MyDrive/combined/101d5f2b0dd6d8c7.jpg", - "response": "A long row of green and black bookshelves filled with books.", - "id": 16720 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ce9cc328b874813.jpg", - "response": "A room with a large desk and chair, bookshelves, pictures on the wall, and a large table.", - "id": 16721 - }, - { - "image_path": "/content/drive/MyDrive/combined/117960e638288836.jpg", - "response": "A Vespa pencil sits on a desk in front of a collection of Vespa books. The pencil has a Vespa logo on it and the books are about Vespa scooters.", - "id": 16722 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aedf408c1823ee1.jpg", - "response": "A white bookshelf with various items on it.", - "id": 16723 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e43a6f6e014b9fa.jpg", - "response": "A bar with a blue counter top and a shelf of wine above the counter.", - "id": 16724 - }, - { - "image_path": "/content/drive/MyDrive/combined/10b03c7f215f04e8.jpg", - "response": "A laptop is sitting on a desk with a keyboard and mouse. There are also books and a cup on the desk. The laptop is open and has a website up.", - "id": 16725 - }, - { - "image_path": "/content/drive/MyDrive/combined/167e699198a271ce.jpg", - "response": "A wooden table with six different types of chocolate bars on it.", - "id": 16726 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a7b57ae48f372cf.jpg", - "response": "A black and white photo of a woman pushing a shopping cart down an aisle in a grocery store.", - "id": 16727 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f00777074e74a49.jpg", - "response": "A woman sitting on a chair in a classroom with several children sitting around her.", - "id": 16728 - }, - { - "image_path": "/content/drive/MyDrive/combined/159ac3ab2efa7893.jpg", - "response": "A man in a pink shirt is standing in front of a booth that sells shellfish. The booth has a thatched roof and a sign that says \"Wild Caught Shell Fish\". There is a woman standing behind the booth. To the left of the booth is a table with a green tablecloth and a shelf with various items. There are also some bowls on the table. To the right of the booth is a sign that says \"Pizza\".", - "id": 16729 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb57021bc72d16c.jpg", - "response": "A television that is on a wall.", - "id": 16730 - }, - { - "image_path": "/content/drive/MyDrive/combined/11278ef00a14bf9a.jpg", - "response": "A man and a boy are standing in a book store, looking at books on shelves. The book store has many books on shelves, some of which are green and white, and others are red and white. There are also some books with yellow covers. The store has a long aisle with people walking down it, and a few other people are visible in the background.", - "id": 16731 - }, - { - "image_path": "/content/drive/MyDrive/combined/0811ed78e277de6f.jpg", - "response": "In the image, there is a young man sitting on a bed. He is wearing a black hoodie with the letters TOSA on the front of it in green, yellow, red, and blue. The young man appears to be of Asian descent and he is looking down at the floor. There is a clock on the wall behind him and a basketball net on the wall to his right. There are several clothes hanging up in the background and a baseball cap placed on a shelf to the left of the bed.", - "id": 16732 - }, - { - "image_path": "/content/drive/MyDrive/combined/13dc69a03c1f83e2.jpg", - "response": "A sign in a metal frame that says \"SECURITY HIGH LEVEL\" and gives a phone number to report unattended baggage or suspicious behavior.", - "id": 16733 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fab6473778a2205.jpg", - "response": "A bookshelf with many books on it.", - "id": 16734 - }, - { - "image_path": "/content/drive/MyDrive/combined/1695b809b6e2c387.jpg", - "response": "A living room with a chair, ottoman, and a table. There is a colorful rug on the floor and a fish tank in the corner. There are also several books scattered around the room.", - "id": 16735 - }, - { - "image_path": "/content/drive/MyDrive/combined/182030f5d0579f72.jpg", - "response": "a man with a beard and glasses holding a book", - "id": 16736 - }, - { - "image_path": "/content/drive/MyDrive/combined/10c88f7e273fe2b6.jpg", - "response": "A store display full of a variety of chocolate bars and candy.", - "id": 16737 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc86f2bc0023406.jpg", - "response": "A store with a low price sign for $2.28.", - "id": 16738 - }, - { - "image_path": "/content/drive/MyDrive/combined/09743d762108be70.jpg", - "response": "A large gray box is open in a store.", - "id": 16739 - }, - { - "image_path": "/content/drive/MyDrive/combined/097752b48a4ee0f4.jpg", - "response": "A man and two children laying on the floor of a room.", - "id": 16740 - }, - { - "image_path": "/content/drive/MyDrive/combined/0927336eea258d3e.jpg", - "response": "A store display for a product called Lunchbox favorite.", - "id": 16741 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a6ffd1da3ec055.jpg", - "response": "A room with a shelf that has a variety of items on it. There are many books on the shelf, some of which are large and thick. There is also a guitar in the room, leaning against a wall. A chair is present in the room, and it is positioned in front of the shelf. A cup can be seen on the shelf, as well as a cell phone. The image has a blurry quality to it.", - "id": 16742 - }, - { - "image_path": "/content/drive/MyDrive/combined/138766a225d89f5f.jpg", - "response": "A bookshelf is filled with many books. There are several dictionaries, including a Random House Webster's College Dictionary, a large dictionary, and a small dictionary. Other books on the shelf include a book on essential kitchens, a book on construction, and a book on home improvement.", - "id": 16743 - }, - { - "image_path": "/content/drive/MyDrive/combined/08199ee44209b064.jpg", - "response": "A woman is kneeling down to look at a book on a shelf in a library. She is wearing a black and white polka dot shirt. Another woman is standing behind her, also looking at books. They are surrounded by many books on shelves, with some people in the background. The room is well-lit and has a cozy atmosphere.", - "id": 16744 - }, - { - "image_path": "/content/drive/MyDrive/combined/17aff2e17444be0d.jpg", - "response": "A cardboard frame holds a drawing of a town. The sign says welcome to Twin Peaks population 5207. There is a road that leads to the town. There are mountains in the background. There is a red train on the right side of the road. In the middle of the road is a yellow sign. On the left side of the road is a house. In front of the house is a car. There are pine trees in the distance.", - "id": 16745 - }, - { - "image_path": "/content/drive/MyDrive/combined/10631027e206170f.jpg", - "response": "A stack of boxes are stacked on top of each other in a lobby.", - "id": 16746 - }, - { - "image_path": "/content/drive/MyDrive/combined/10d0408e4262b2b9.jpg", - "response": "A store display of patriotic merchandise in a store.", - "id": 16747 - }, - { - "image_path": "/content/drive/MyDrive/combined/174f774e535f4c93.jpg", - "response": "A room with a window, a bookshelf, a globe, a wall calendar, a clock, a picture, and a vase.", - "id": 16748 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc04ceab034a0bc.jpg", - "response": "A baby nursery with blue walls and a dark brown dresser. There is a chair and a foot stool in the room. A changing table is placed on the dresser. A toy fox is sitting on the chair. A chalkboard sign is placed on the wall above the dresser. The wall is decorated with paper lanterns and there is a painting of an owl on the wall. The room has carpet on the floor.", - "id": 16749 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b450f2ad4497080.jpg", - "response": "A bookshelf with many books on it.", - "id": 16750 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f39995dc1bc805.jpg", - "response": "The image features a gray countertop with a row of books and a set of knives on it. The books are standing up and vary in size and color. The knives are standing up in a holder and are of various heights. The counter also has a metal object on it, and the background is a gray tiled wall.", - "id": 16751 - }, - { - "image_path": "/content/drive/MyDrive/combined/153662818f85de68.jpg", - "response": "A wooden table with a stool in front of it.", - "id": 16752 - }, - { - "image_path": "/content/drive/MyDrive/combined/0afcf1556b0e9e5a.jpg", - "response": "A man standing at a podium with a microphone in front of a sign that says \"IoT meets business\"", - "id": 16753 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ae0eeb46cac371c.jpg", - "response": "A woman standing in front of a wooden desk with a laptop computer on it.", - "id": 16754 - }, - { - "image_path": "/content/drive/MyDrive/combined/10211d01e0c7bf38.jpg", - "response": "A restaurant with a variety of items on the walls and a counter.", - "id": 16755 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e9bb5cdf80f2b69.jpg", - "response": "A red, white, and blue building with a sign that says \"The Queen Victoria Bed & Breakfast\" and a door with a red awning over it. There is a flag hanging from the building and two potted plants on the sidewalk.", - "id": 16756 - }, - { - "image_path": "/content/drive/MyDrive/combined/20d008f7c3a426af.jpg", - "response": "A library with bookshelves filled with books. There are chairs in front of the bookshelves and a sign on one of the chairs that says \"sundhed\".", - "id": 16757 - }, - { - "image_path": "/content/drive/MyDrive/combined/226635d6edd73778.jpg", - "response": "A counter with a pile of boxes on it.", - "id": 16758 - }, - { - "image_path": "/content/drive/MyDrive/combined/3283e50f09dd8f74.jpg", - "response": "A two story house with a large front porch.", - "id": 16759 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe35b98214a4f32.jpg", - "response": "A bookshelf filled with books on genetics, biology, and other scientific subjects.", - "id": 16760 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ef9832a8d8b7df3.jpg", - "response": "A woman with a purple jacket and a green basket reaches for a cereal box in a grocery store.", - "id": 16761 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ac7887445d5d71d.jpg", - "response": "A little girl with a bow in her hair holding a toy.", - "id": 16762 - }, - { - "image_path": "/content/drive/MyDrive/combined/33e7adbc227540e4.jpg", - "response": "A large building with a sign that says The Hollywood Tower Hotel.", - "id": 16763 - }, - { - "image_path": "/content/drive/MyDrive/combined/334f11dccf6ff05e.jpg", - "response": "A man in a yellow shirt standing in a room.", - "id": 16764 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c6a7bac733e2077.jpg", - "response": "A white shelf with a row of books on it.", - "id": 16765 - }, - { - "image_path": "/content/drive/MyDrive/combined/29f42c97d3704ecd.jpg", - "response": "a store front with a green sign that says \"Dome\" on it", - "id": 16766 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d096aff31086592.jpg", - "response": "A chalkboard with writing and drawings on it.", - "id": 16767 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c6e940004ee426f.jpg", - "response": "The image shows a classroom with a green and orange painted archway leading into the room. The room has a chalkboard mounted on the wall above a low shelf. There are two chairs in the room, one on the right side of the chalkboard and the other in the bottom left corner of the room. The classroom appears to be empty with no students or teachers present.", - "id": 16768 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c2d6e002bee492c.jpg", - "response": "A large brick building with a store front that says Rare & Racy on it.", - "id": 16769 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3374e1854b31ac.jpg", - "response": "A bookshelf with many books on it.", - "id": 16770 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0ad6cbcbd90c50.jpg", - "response": "A large plastic bottle of peanut butter BBQ sauce with a picture of Paula Deen on the label.", - "id": 16771 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8599611ba24db7.jpg", - "response": "A coffee cup sits on a saucer in front of a Workshop Cafe sign.", - "id": 16772 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f840dafbf50517.jpg", - "response": "The image shows the inside of a grocery store. There are several shelves filled with snacks and drinks, including items such as potato chips, water bottles, and candy bars. A large selection of chips are available, including Lay's products. There is also a variety of beverages, including bottles of soda and water. A handbag is visible on the floor, and a person is present in the background. The store appears to be well-stocked and ready for customers.", - "id": 16773 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cd6804d9036f026.jpg", - "response": "A woman wearing a black jacket standing behind a podium with a microphone in front of her.", - "id": 16774 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bb4c51441f06078.jpg", - "response": "a man sitting on a chair holding a book and a pen", - "id": 16775 - }, - { - "image_path": "/content/drive/MyDrive/combined/3503da92f060dce4.jpg", - "response": "A woman standing at a grocery store checkout lane.", - "id": 16776 - }, - { - "image_path": "/content/drive/MyDrive/combined/2700ebe8c8c9cd46.jpg", - "response": "A wall display of many different kinds of action figure boxes.", - "id": 16777 - }, - { - "image_path": "/content/drive/MyDrive/combined/209d4a1736bacec0.jpg", - "response": "A Nuvera 12000 printer is sitting on a table.", - "id": 16778 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e8f0f7f6ee73852.jpg", - "response": "A library shelf full of books and videos, including some that are marked \"unused\".", - "id": 16779 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a68c3c38defd6dc.jpg", - "response": "The image shows a large bookcase filled with various books. The bookcase is painted green and is filled with books on different topics. There are many books on the same shelf, and some are placed on the floor in front of the bookcase. A small red picture frame is placed on one of the shelves.", - "id": 16780 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aec37191d7ca857.jpg", - "response": "A bookshelf full of books and videos.", - "id": 16781 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c3b925e44f629a2.jpg", - "response": "In the image there is a man standing in front of a bookshelf filled with records. The man is wearing a white shirt and a hat. He is looking up and to the left of the camera. There is another person's hand holding a record in front of the man. The record has a white sleeve. There is a clock on the wall behind the bookshelf. The time on the clock is 10:20.", - "id": 16782 - }, - { - "image_path": "/content/drive/MyDrive/combined/28e1d5254433d398.jpg", - "response": "In the image, there is a little girl wearing a red shirt that says \"Santa's Little Helper\" in white letters. She is standing in front of a bookshelf filled with books. The bookshelf is black and has many books on it. The girl is smiling at the camera and has her hands on her hips. She has long brown hair and is wearing blue jeans. The background is a brown leather chair and a black bookshelf.", - "id": 16783 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b591450c699fb70.jpg", - "response": "A man standing in front of a table with a laptop on it.", - "id": 16784 - }, - { - "image_path": "/content/drive/MyDrive/combined/3160388d247b5199.jpg", - "response": "A table with a floral pattern on it.", - "id": 16785 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c1247f797fce2a.jpg", - "response": "A kitchen with a counter top and chairs.", - "id": 16786 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f3370cdcba75bbb.jpg", - "response": "A store shelf with multiple items on it.", - "id": 16787 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa0e83d744fea15.jpg", - "response": "A boy laying on a couch reading a book.", - "id": 16788 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b6fe58320a2d119.jpg", - "response": "The image shows the entrance to a building that says \"The Kitchen Store\" above the door. The door is currently closed, and there is a wreath with evergreen branches and red berries hanging above it. The building has a tan facade and the storefront is decorated with garland made of evergreen branches and yellow lights. There is a table set with dishes in the window display to the left of the door, and a sign that says \"Local Roof\" is visible above it.", - "id": 16789 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b9e29f852b3fec2.jpg", - "response": "a store shelf filled with markers, pens, and other writing utensils", - "id": 16790 - }, - { - "image_path": "/content/drive/MyDrive/combined/2baf57fcb397f590.jpg", - "response": "A man pushing a shopping cart down an aisle in a store.", - "id": 16791 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b12d658fd88c5b8.jpg", - "response": "A restaurant called Restaurante Viridiana is shown. The sign is above the door and the door is closed. There is a potted plant on the right side of the door. The door has windows and a brown gate. There is a light above the door.", - "id": 16792 - }, - { - "image_path": "/content/drive/MyDrive/combined/281446372e974a1a.jpg", - "response": "A bookshelf with many books on it.", - "id": 16793 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c8cdb7c163b2644.jpg", - "response": "A room with a large mirror on the wall. On the wall there is a sign that says Eschenlohr Brotst. In front of the mirror is a wooden cart with wheels. On the cart there are several bottles of different sizes and shapes. There are also several glasses on the cart.", - "id": 16794 - }, - { - "image_path": "/content/drive/MyDrive/combined/20f0857cbe122052.jpg", - "response": "A store with a large white counter and a large Hugovictor sign above it. The counter has a lot of different plates, bowls, and cups on it. There are also three towers of macarons on the counter. In front of the counter are three stacks of black boxes and three stacks of white boxes. There are also three stacks of black and white boxes.", - "id": 16795 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee2e72b0957f6c2.jpg", - "response": "A large wooden bookshelf with many books.", - "id": 16796 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e43b842a5b342f1.jpg", - "response": "A book rack with many books on it.", - "id": 16797 - }, - { - "image_path": "/content/drive/MyDrive/combined/24495eadde5b3810.jpg", - "response": "A bottle of Riesling wine from 2006 sits on a table. The label is white with a gold emblem of a rider on a horse. The text is black.", - "id": 16798 - }, - { - "image_path": "/content/drive/MyDrive/combined/25cbe7c347cb56a9.jpg", - "response": "A bookshelf full of movies and games.", - "id": 16799 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d415265d973f20e.jpg", - "response": "A library with books on the shelves and a sign that says Heritage Room.", - "id": 16800 - }, - { - "image_path": "/content/drive/MyDrive/combined/221dc4ac9ba1c1ce.jpg", - "response": "A Louis Vuitton store front with a large glass window. The window display features a large LV logo and a small one inside. The glass door is open and there is a handbag visible inside. The store is located in a mall.", - "id": 16801 - }, - { - "image_path": "/content/drive/MyDrive/combined/22907eebf26f3304.jpg", - "response": "a desk with a blue piece of paper on it that says \"there are three kinds of people in the world. those who can count and those who can't\"", - "id": 16802 - }, - { - "image_path": "/content/drive/MyDrive/combined/396d79db26834e34.jpg", - "response": "A vending machine with many windows and a door.", - "id": 16803 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c86daca24c1187.jpg", - "response": "A man is taking a picture of the outside of a restaurant through the window. The restaurant is called De Bistro Noom and is located in Belgium. There are chairs and tables outside and a large window.", - "id": 16804 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f69dac8cd1c4066.jpg", - "response": "A shelf full of books and DVDs, with a small rectangular red and white sticker that says \"1 YEAR AGO\" in the top left corner.", - "id": 16805 - }, - { - "image_path": "/content/drive/MyDrive/combined/37a6974713216516.jpg", - "response": "A wooden bookshelf filled with books.", - "id": 16806 - }, - { - "image_path": "/content/drive/MyDrive/combined/21f26dcd29726719.jpg", - "response": "A library with many books on the shelves.", - "id": 16807 - }, - { - "image_path": "/content/drive/MyDrive/combined/30f20c0399911a68.jpg", - "response": "A man with a beard wearing a white hoodie and a black shirt with the word code on it.", - "id": 16808 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eae1ad21055c615.jpg", - "response": "A black and white image of a shelf with various books on it.", - "id": 16809 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c12b2c8a6dbca1f.jpg", - "response": "a book that is on a table", - "id": 16810 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b41a05d0830f97.jpg", - "response": "The image shows the inside of a bookstore with shelves full of books. There are many books on the shelves, covering various topics and arranged by size and color. Some books are standing upright, while others are lying horizontally. The shelves are filled with books on different levels, creating a sense of depth and organization. The room is well-lit, with lights on the ceiling providing ample illumination. The overall atmosphere is that of a quiet and peaceful space, perfect for browsing and discovering new books.", - "id": 16811 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ab3c35b7fade88.jpg", - "response": "A coffee cup is sitting on a table in a room.", - "id": 16812 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e52118b0f92abe9.jpg", - "response": "A man in a red shirt is sitting at a white piano.", - "id": 16813 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fec632a0f189f0c.jpg", - "response": "A bookshelf with many books on it.", - "id": 16814 - }, - { - "image_path": "/content/drive/MyDrive/combined/36d8f0024be1a1a0.jpg", - "response": "A bookshelf with many books and papers on it.", - "id": 16815 - }, - { - "image_path": "/content/drive/MyDrive/combined/2165565c85442ac3.jpg", - "response": "A group of four spray paint cans are sitting on a table. The cans are black and red and have the word \"spray\" on them. The first can is black and red, the second can is black and pink, the third can is black and green, and the fourth can is black and blue.", - "id": 16816 - }, - { - "image_path": "/content/drive/MyDrive/combined/39b28843de512d9e.jpg", - "response": "A bookshelf filled with books, with each book having a different color and size.", - "id": 16817 - }, - { - "image_path": "/content/drive/MyDrive/combined/47c032cba9a24e0a.jpg", - "response": "A row of many different movies on a shelf.", - "id": 16818 - }, - { - "image_path": "/content/drive/MyDrive/combined/492ccccc71b898d9.jpg", - "response": "A bookshelf filled with books and other reading materials.", - "id": 16819 - }, - { - "image_path": "/content/drive/MyDrive/combined/472153489d304641.jpg", - "response": "A row of grey plastic crates with red W's on them.", - "id": 16820 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b2035cb06d1781b.jpg", - "response": "A red balloon with the number 80 on it.", - "id": 16821 - }, - { - "image_path": "/content/drive/MyDrive/combined/4da96e81d744f711.jpg", - "response": "A woman standing at a podium with the U.S. Fish and Wildlife Service logo on it.", - "id": 16822 - }, - { - "image_path": "/content/drive/MyDrive/combined/52b372dd269b26a9.jpg", - "response": "A young boy is shown on a tablet screen. The screen is showing the apps that are available on the tablet. There are several icons visible on the screen.", - "id": 16823 - }, - { - "image_path": "/content/drive/MyDrive/combined/47f168a33718aa25.jpg", - "response": "A display in a store filled with many different types of motor oil.", - "id": 16824 - }, - { - "image_path": "/content/drive/MyDrive/combined/42259ff6c3ad8936.jpg", - "response": "A red Coca Cola vending machine with a variety of drinks inside.", - "id": 16825 - }, - { - "image_path": "/content/drive/MyDrive/combined/43bd8456d216d81d.jpg", - "response": "A young boy wearing glasses standing in front of a book case.", - "id": 16826 - }, - { - "image_path": "/content/drive/MyDrive/combined/52575f4a80980e73.jpg", - "response": "A silver train car with the word metro on the side.", - "id": 16827 - }, - { - "image_path": "/content/drive/MyDrive/combined/4db9840c3bb32cea.jpg", - "response": "A man is standing in a library aisle, surrounded by bookshelves on either side. He is wearing a dark suit and a tie. He is looking down at a book that he is holding in his hand. The book he is holding is open to a page.", - "id": 16828 - }, - { - "image_path": "/content/drive/MyDrive/combined/431cb5a32dfc0a7c.jpg", - "response": "A row of books on a shelf. The books are of different sizes and are blue in color.", - "id": 16829 - }, - { - "image_path": "/content/drive/MyDrive/combined/549ffee6cf9cae4b.jpg", - "response": "A book depository with a glass front and a silver door. The door is open and filled with books.", - "id": 16830 - }, - { - "image_path": "/content/drive/MyDrive/combined/5200d9f278c918f7.jpg", - "response": "A library with tall bookshelves filled with books. There are also some trash cans and moving bins in the room.", - "id": 16831 - }, - { - "image_path": "/content/drive/MyDrive/combined/50860c9f09e72ddf.jpg", - "response": "A clothing store with a window display of various clothing items.", - "id": 16832 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a61c62dc0b25a12.jpg", - "response": "A stone wall with a bas-relief sculpture of a man holding a tablet. Above the sculpture is a coat of arms.", - "id": 16833 - }, - { - "image_path": "/content/drive/MyDrive/combined/49ff319bac6d6611.jpg", - "response": "A cluttered room with a desk and a bookshelf. There are many books scattered on the desk and shelves. A pile of boxes is also present in the room.", - "id": 16834 - }, - { - "image_path": "/content/drive/MyDrive/combined/50fb8f7b61722f38.jpg", - "response": "A man sitting in a chair in a library.", - "id": 16835 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e290d71c32873ae.jpg", - "response": "A wall with a sign that says \"Gr\u00e1fica publicitaria\" and a shelf of books and magazines underneath.", - "id": 16836 - }, - { - "image_path": "/content/drive/MyDrive/combined/4517234468edfab0.jpg", - "response": "In the image there is a wall with a clock mounted on it. Underneath the clock are several shelves with various pottery items. On the shelves there are many bowls and vases of different sizes and shapes. Some of the bowls are white and some are brown. Some of the vases are tall and thin while others are short and wide. There are also a few boxes on the shelves. In the background the wall is concrete and the shelves are made of wood.", - "id": 16837 - }, - { - "image_path": "/content/drive/MyDrive/combined/51ad3cbedfe3ee99.jpg", - "response": "Taiwan Corner is a designated area in a room. The room has large windows and is filled with books. There are two blue chairs and a white table in the room.", - "id": 16838 - }, - { - "image_path": "/content/drive/MyDrive/combined/4974a1000a27a984.jpg", - "response": "A plush Santa Claus decoration holding a sign that says \"Season Greetings\"", - "id": 16839 - }, - { - "image_path": "/content/drive/MyDrive/combined/40e754e10bc7234e.jpg", - "response": "The image shows a store with a Christmas theme. There is a large Christmas tree in the background, and a smaller one on the left side of the room. A woman is standing near the smaller tree, and there is a TV in front of her. There are many books on display, and a counter with a laptop on it. There are also many bags on display, with one on a stand in the foreground. A TV is mounted on the left side of the room, and there are several other TVs throughout the store.", - "id": 16840 - }, - { - "image_path": "/content/drive/MyDrive/combined/476a3c1c8d4a9a4b.jpg", - "response": "A table topped with a bunch of books and a jar of iced tea.", - "id": 16841 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea945a0afc4da52.jpg", - "response": "A group of young men playing a game of soccer on a lush green field.", - "id": 16842 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd50fe4a0c2b85b.jpg", - "response": "A baseball game is in progress with a batter up to plate. The batter is holding a baseball bat and is in the middle of swinging. The catcher is positioned behind the batter and is holding up a baseball glove. There are several other players on the field, including a few in the outfield. The field is green and well-maintained.", - "id": 16843 - }, - { - "image_path": "/content/drive/MyDrive/combined/09589b25ceada064.jpg", - "response": "A man wearing a white shirt is playing frisbee on a field.", - "id": 16844 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b6e21c7bda6fa6d.jpg", - "response": "A man in a blue boxing uniform raises his arm in victory.", - "id": 16845 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1653734a748a25.jpg", - "response": "a group of soccer players on a field", - "id": 16846 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac5b4900fb6d221.jpg", - "response": "A baseball field with many players practicing.", - "id": 16847 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e5bccf18d10a34d.jpg", - "response": "A group of women playing volleyball in a gym.", - "id": 16848 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a2045afdf194803.jpg", - "response": "A Tiburon Naples golf ball on a black surface.", - "id": 16849 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dedf9bb9e788655.jpg", - "response": "The image features a woman in a military uniform standing on a baseball field. She is holding a microphone and appears to be singing. The field is green and has white lines. There is a crowd of people in the background, watching the woman sing. The word \"God bless America\" is displayed on a banner behind her.", - "id": 16850 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a247f3022c40cf1.jpg", - "response": "a group of people playing soccer on a field", - "id": 16851 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f2e50dac6fcb058.jpg", - "response": "A group of children playing soccer in a grassy field.", - "id": 16852 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a997111100282d6.jpg", - "response": "A football stadium full of fans watching a football game.", - "id": 16853 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bbc46eade0adc8e.jpg", - "response": "A soccer player is falling to the ground while another player is standing over him.", - "id": 16854 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e6cca530e287bec.jpg", - "response": " Jack Wightwick(114,259),(532,907) is put under pressure from the home defence(534,49),(690,659)", - "id": 16855 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d442ed671a7174.jpg", - "response": "A group of children playing soccer on a field.", - "id": 16856 - }, - { - "image_path": "/content/drive/MyDrive/combined/07af71fc10cb9f0f.jpg", - "response": "The image shows two soccer players on a grass field. One player is wearing an orange uniform and is in the middle of the field, while the other player is wearing a blue and black uniform and is closer to the right side of the field. They are both running after a soccer ball, which is located towards the center of the field. The soccer ball appears to be white and small in size.", - "id": 16857 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1ea4554ea20482.jpg", - "response": "A group of young men playing soccer on a field.", - "id": 16858 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dcbcc3547b05310.jpg", - "response": "The image shows a baseball stadium with a large scoreboard on the left side of the field. The scoreboard is purple and yellow and has various advertisements on it. In the stadium, there are many people seated in the stands, watching the game. The stands are filled with fans, showing that the game is well-attended.", - "id": 16859 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba032e9a50572d3.jpg", - "response": "In the image, two men are playing soccer on a field. They are both wearing uniforms and are actively engaged in the game. One of the players has a soccer ball at his feet and is attempting to control it. The other player is approaching him, possibly trying to\u62a2\u593a the ball or defend his position. The field has white lines painted on it, indicating the boundaries of the playing area. There is also a net behind the players, which is common in soccer fields.", - "id": 16860 - }, - { - "image_path": "/content/drive/MyDrive/combined/07dbecf305f6f229.jpg", - "response": "A baseball player in a white uniform is running towards a base while holding a baseball glove. Another player is holding a bat on the field. There is a crowd of people in the background watching the game.", - "id": 16861 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e17d41949320564.jpg", - "response": "A bicycle measurements are displayed on a white background. The bicycle is blue and grey and is a mountain bike. The measurements include the seat tube length, the head tube length, the fork rake, the wheelbase, the stack height, the reach, the chainstay length, the seat tube angle, and the head tube angle. There is a table below the bicycle with measurements for different sizes including XS, S, M, L, XL, and XXL.", - "id": 16862 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bac3516247fa0fc.jpg", - "response": "The men are wearing red and black uniforms.", - "id": 16863 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9622309366191d.jpg", - "response": "A soccer game is being played in the rain. Players are wearing dark uniforms and white shorts. One player has a blue uniform. The ball is white and round. There is a banner in the background that says \"2 National Champions\". There is a crowd of people watching the game. Some players are wearing white shirts. One player has a red shirt. There is a player with a yellow shirt. The field is green and has white lines. The field has a large red logo in the middle. The game is being played at night.", - "id": 16864 - }, - { - "image_path": "/content/drive/MyDrive/combined/09ee0248306a8342.jpg", - "response": "A chess board with chess pieces on it.", - "id": 16865 - }, - { - "image_path": "/content/drive/MyDrive/combined/08fad3be6930d46c.jpg", - "response": "A group of soccer players are standing on the field.", - "id": 16866 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8c27336728cb1c.jpg", - "response": "A baseball player in a white uniform is pitching a ball.", - "id": 16867 - }, - { - "image_path": "/content/drive/MyDrive/combined/097796633e159ce2.jpg", - "response": "A soccer player wearing a burgundy and white uniform, white shorts, blue and red striped socks, and orange shoes stands on a soccer field.", - "id": 16868 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0cdf59c4561f03.jpg", - "response": "A soccer field with a banner being held by a group of people.", - "id": 16869 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3829452a892a3a.jpg", - "response": "A group of men playing a game on a field.", - "id": 16870 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abb79daba521ab4.jpg", - "response": "A soccer game is being played in a stadium with many fans in the stands. The field is green and the players are wearing different colored jerseys. There is a white line on the field and a blue and white sign along the field. The stadium is dark and the fans are watching the game intently.", - "id": 16871 - }, - { - "image_path": "/content/drive/MyDrive/combined/2534e0d76feda73e.jpg", - "response": "A soccer field with a fence around it.", - "id": 16872 - }, - { - "image_path": "/content/drive/MyDrive/combined/18fb08a741884627.jpg", - "response": "A baseball player throwing a ball on a field.", - "id": 16873 - }, - { - "image_path": "/content/drive/MyDrive/combined/17976895b6bbc2f7.jpg", - "response": "The image shows a group of men playing soccer on a field. There are several players in the scene, some of them wearing orange and white uniforms and others wearing yellow and black uniforms. They are all actively playing the game, with one player in the center of the field kicking a soccer ball towards the goal.", - "id": 16874 - }, - { - "image_path": "/content/drive/MyDrive/combined/11179f0a09d15c18.jpg", - "response": "A soccer game is being played on a grass field. The players are wearing red and white uniforms and a blue and white uniform. Some players are walking across the field while others are standing. A crowd of people is watching the game from the stands.", - "id": 16875 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b73c5c38511f9a.jpg", - "response": "A group of young men playing soccer on a lush green field.", - "id": 16876 - }, - { - "image_path": "/content/drive/MyDrive/combined/1131058b7fae34b0.jpg", - "response": "A scoreboard for Twinsburg High School's basketball team showing the final score of a game.", - "id": 16877 - }, - { - "image_path": "/content/drive/MyDrive/combined/169de62dcac804f7.jpg", - "response": "The image shows a crowded hockey arena with fans seated in their seats. There are two ice hockey teams playing against each other, with one team wearing blue and white and the other team wearing red and white. The players are in the middle of the rink, actively engaged in the game. The scoreboard at the top of the rink keeps track of the score and the time remaining in the game. The atmosphere is lively and energetic, with fans cheering and enjoying the game.", - "id": 16878 - }, - { - "image_path": "/content/drive/MyDrive/combined/195c0c8a689ff595.jpg", - "response": "A soccer game is being played in a stadium.", - "id": 16879 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4a089f7c3359ed.jpg", - "response": "The image shows a group of men playing soccer on a field. There are several players on the field, some of them wearing orange and white uniforms and others wearing blue and white uniforms. The players are running, jumping, and kicking the soccer ball. Some of them are celebrating a goal. In the background, there are spectators watching the game.", - "id": 16880 - }, - { - "image_path": "/content/drive/MyDrive/combined/0feec0ac441f639b.jpg", - "response": "The image shows a group of men playing soccer on a field. There are nine players in the scene, wearing different colored jerseys. The goal of the game is to score by getting the soccer ball into the net, which is located at the far end of the field. The players are actively engaged in the game, running and making plays for their teams.", - "id": 16881 - }, - { - "image_path": "/content/drive/MyDrive/combined/180c1d01005db488.jpg", - "response": "a group of women on roller skates are playing a game.", - "id": 16882 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ecb24fff08375b0.jpg", - "response": "The image shows a group of five men playing basketball in an indoor basketball court. They are all wearing white and black uniforms and are standing on the court. Some of them are holding basketballs, while others are holding basketball gloves. The court has a green and yellow floor and is surrounded by a brown wooden fence. There is a bench in the corner of the court and a basketball hoop and backboard on the left side of the court.", - "id": 16883 - }, - { - "image_path": "/content/drive/MyDrive/combined/259fed8ddeff01d0.jpg", - "response": "A soccer team is lined up on the field before a game.", - "id": 16884 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e7e3072ccb92457.jpg", - "response": "The image shows a soccer field with a white goal net in the middle. There are many people standing on the field, some wearing green vests, and others in various outfits. A banner is visible in the foreground and another in the background. A soccer ball is also present on the field.", - "id": 16885 - }, - { - "image_path": "/content/drive/MyDrive/combined/13224b7336b1a596.jpg", - "response": "In the image two soccer players are running across the field. They are wearing blue uniforms and one of them has a green and yellow flag over his shoulder. There is a crowd of people in the background watching the game.", - "id": 16886 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e24130158243bb.jpg", - "response": "A group of people are sitting around a table playing chess. There are several cups on the table and one boy has a cell phone.", - "id": 16887 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d167c329793ae74.jpg", - "response": "A group of young boys playing soccer on a field.", - "id": 16888 - }, - { - "image_path": "/content/drive/MyDrive/combined/26b25af446ae7a08.jpg", - "response": "A man wearing a blue jersey with the number 42 on the back and the name McCallin on the front, standing on a green field.", - "id": 16889 - }, - { - "image_path": "/content/drive/MyDrive/combined/16797cca37f387bb.jpg", - "response": "A soccer match is being played in a stadium full of people. The teams are lined up on the field and a large crowd is watching the game.", - "id": 16890 - }, - { - "image_path": "/content/drive/MyDrive/combined/16a2efa447e3c7ed.jpg", - "response": "A baseball player in a blue jersey is on the pitcher's mound.", - "id": 16891 - }, - { - "image_path": "/content/drive/MyDrive/combined/24a672e3bd3e19ac.jpg", - "response": "In the image, there are multiple boys dressed in uniforms playing soccer on a grass field. The uniforms are red and black striped. Some of the boys are wearing gloves, and one boy has on a red and white striped shirt. They are all running and actively engaged in the game.", - "id": 16892 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fd5de40ba9e619f.jpg", - "response": "Three women run through a muddy water hole while wearing numbers on their shorts.", - "id": 16893 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac2bafd9c526f82.jpg", - "response": "A young boy walking in front of a sign that says 'BISOG' on it.", - "id": 16894 - }, - { - "image_path": "/content/drive/MyDrive/combined/116c3847d6caa6d9.jpg", - "response": "A skier is in the air after jumping off a ramp.", - "id": 16895 - }, - { - "image_path": "/content/drive/MyDrive/combined/26f2163d886f14f1.jpg", - "response": "A baseball pitcher in the middle of a pitch, with his leg up in the air.", - "id": 16896 - }, - { - "image_path": "/content/drive/MyDrive/combined/20761845a2df7fe2.jpg", - "response": "A large crowd of people are in the stands at a baseball stadium.", - "id": 16897 - }, - { - "image_path": "/content/drive/MyDrive/combined/16800cb9cdbd89ed.jpg", - "response": "A man in a red uniform playing lacrosse on a field.", - "id": 16898 - }, - { - "image_path": "/content/drive/MyDrive/combined/218416a29eba6cb0.jpg", - "response": "A scoreboard in the stadium shows the result of the match between Brazil and Scotland.", - "id": 16899 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea65daf0d469bfa.jpg", - "response": "The image shows a baseball field with a crowd of people watching a game. There are several players on the field, some of them wearing blue shirts and white pants. A baseball glove is visible in the scene, as well as a baseball bat. There are also some benches in the background.", - "id": 16900 - }, - { - "image_path": "/content/drive/MyDrive/combined/173e2102b60a3a98.jpg", - "response": "A group of men playing ice hockey, dressed in pink and black uniforms.", - "id": 16901 - }, - { - "image_path": "/content/drive/MyDrive/combined/24300d72296f30c8.jpg", - "response": "The image shows a group of young women playing soccer on a field. There are two teams visible, one wearing white and the other wearing yellow. The players are actively engaged in the game, running and kicking the soccer ball. The field has a net at the end and a large Coca-Cola banner is visible in the background.", - "id": 16902 - }, - { - "image_path": "/content/drive/MyDrive/combined/28103bc8e215aaf0.jpg", - "response": "The image shows two people playing ice hockey on a rink. One player is wearing a red jersey and holding a hockey stick, while the other player is wearing a green jersey and black knee pads. There is a yellow and black hockey stick on the left side of the rink and a banner with the number 33212180 on it.", - "id": 16903 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a6a1e3efe7913e.jpg", - "response": "a group of people standing on a soccer field", - "id": 16904 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac9eaadbb15beb8.jpg", - "response": "A group of men playing soccer on a field.", - "id": 16905 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f51096ad8f72f03.jpg", - "response": "A wrestling match with five men in the ring.", - "id": 16906 - }, - { - "image_path": "/content/drive/MyDrive/combined/257813b51740b66b.jpg", - "response": "A large crowd of fans at a Chelsea Football Club game.", - "id": 16907 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e5f48bc08b70053.jpg", - "response": "A group of young men standing around a soccer goal.", - "id": 16908 - }, - { - "image_path": "/content/drive/MyDrive/combined/19af0befee36bb66.jpg", - "response": "The image shows a group of ice hockey players on the ice, playing a game. There are several players in the foreground, some holding hockey sticks, and others holding them in their hands. They are all wearing white and blue uniforms. In the background, there are other players on the ice, some of them closer to the top of the image.", - "id": 16909 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e43d624a914b99.jpg", - "response": "A group of women playing a game of rugby.", - "id": 16910 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a7d8713b01c1ed4.jpg", - "response": "In the image, there are two soccer players wearing yellow jackets standing on a soccer field. They are both near a soccer ball, with one player positioned to the left of the ball and the other player to the right. In the background, there are several other people on the field, some of whom are wearing orange vests. The soccer field is surrounded by a crowd of spectators, with many people seated in chairs and standing behind a fence.", - "id": 16911 - }, - { - "image_path": "/content/drive/MyDrive/combined/1de7cd100f4c8d4f.jpg", - "response": "A soccer player wearing green and white is on a field with a soccer ball.", - "id": 16912 - }, - { - "image_path": "/content/drive/MyDrive/combined/12687c94e55e1662.jpg", - "response": "A woman in a red and black uniform standing in a field.", - "id": 16913 - }, - { - "image_path": "/content/drive/MyDrive/combined/17157f1e78846816.jpg", - "response": "A soccer field with a sign that says welcome to staines town fc across the top.", - "id": 16914 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa7013f8678e60f.jpg", - "response": "In the image, two women are playing soccer against each other on a field. One woman is wearing an orange soccer jersey with the number 5 on the back and is kicking a soccer ball with her right foot. The other woman is wearing a white soccer jersey with the number 9 on the back and is running towards the soccer ball. There are several other people in the background, some of whom are holding soccer balls and wearing soccer uniforms.", - "id": 16915 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d46aaad25ddca64.jpg", - "response": "A soccer coach is giving instructions to his players on the field.", - "id": 16916 - }, - { - "image_path": "/content/drive/MyDrive/combined/2633f60ac1bc0ea9.jpg", - "response": "A soccer stadium full of fans watching the game.", - "id": 16917 - }, - { - "image_path": "/content/drive/MyDrive/combined/105ada13428f58ca.jpg", - "response": "A soccer stadium full of fans watching a soccer game.", - "id": 16918 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e4b0653c61eec1.jpg", - "response": "a basketball player in a yellow uniform is holding a basketball", - "id": 16919 - }, - { - "image_path": "/content/drive/MyDrive/combined/22db5c4b28a6d129.jpg", - "response": "In the image, a person wearing a white jacket is skiing down a snow-covered hill. They are jumping over a red banner and are in the air. There are many people in the background, watching the skier from various distances. Some of them are standing, while others are sitting on the snow. There are also a few trees visible in the scene.", - "id": 16920 - }, - { - "image_path": "/content/drive/MyDrive/combined/20889a41e976a978.jpg", - "response": "A soccer player dressed in yellow is standing in the grass.", - "id": 16921 - }, - { - "image_path": "/content/drive/MyDrive/combined/242d601b27066383.jpg", - "response": "A soccer player is about to kick a soccer ball on a field.", - "id": 16922 - }, - { - "image_path": "/content/drive/MyDrive/combined/26da9ab302b8de35.jpg", - "response": "A soccer game is being played on a field. There are two players on the field, both wearing red uniforms. One of the players is standing in the grass with his hands on his hips, while the other is standing in front of the soccer ball, ready to kick it.", - "id": 16923 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c36051029d2c2e.jpg", - "response": "a group of soccer players on a field", - "id": 16924 - }, - { - "image_path": "/content/drive/MyDrive/combined/268cd167db1634b4.jpg", - "response": "A marching band is performing on a football field.", - "id": 16925 - }, - { - "image_path": "/content/drive/MyDrive/combined/22559f46d4a47895.jpg", - "response": "A soccer game is being played in a stadium. The field is green and white and has lines painted on it. There are two teams playing soccer, one wearing red and white and the other wearing blue and white. The crowd is watching the game intently.", - "id": 16926 - }, - { - "image_path": "/content/drive/MyDrive/combined/2184df2f818d655f.jpg", - "response": "In the image, two men are engaged in a boxing match inside a building. They are wearing helmets and standing in a boxing ring. The men are wearing black and red outfits and have red trunks. They are wearing gloves and are fully equipped for the fight. The crowd is watching the match intently from the stands.", - "id": 16927 - }, - { - "image_path": "/content/drive/MyDrive/combined/27130bd5d26cb548.jpg", - "response": "A baseball game is in progress with several players on the field. The batter is stepping up to the plate and the catcher is waiting for the pitch. There are chairs and people in the background, and a baseball glove is visible on the field.", - "id": 16928 - }, - { - "image_path": "/content/drive/MyDrive/combined/250cacc6ba463e6c.jpg", - "response": "A group of young men playing soccer on a field.", - "id": 16929 - }, - { - "image_path": "/content/drive/MyDrive/combined/13325ba35f69381d.jpg", - "response": "A soldier stands at attention on a football field.", - "id": 16930 - }, - { - "image_path": "/content/drive/MyDrive/combined/211e79ec67ac7955.jpg", - "response": "A girl in a maroon and white soccer uniform is kicking a soccer ball on a field.", - "id": 16931 - }, - { - "image_path": "/content/drive/MyDrive/combined/117fd3c394810a6c.jpg", - "response": "A soccer player in a red uniform is preparing to kick the ball. The soccer ball is on the field and the player is standing right next to it. There are many people in the stands watching the game.", - "id": 16932 - }, - { - "image_path": "/content/drive/MyDrive/combined/084004f000f6e9e3.jpg", - "response": "A collage of various items including a cell phone, alien figurines, a white object, a picture of a person's mouth, a picture of a snail, and a business card.", - "id": 16933 - }, - { - "image_path": "/content/drive/MyDrive/combined/1004ee5872dfb2eb.jpg", - "response": "A person holding a white iPhone 6 in their hand.", - "id": 16934 - }, - { - "image_path": "/content/drive/MyDrive/combined/2285b11f60453216.jpg", - "response": "An iPhone 6 Plus in silver is lying on a wooden table. The home screen is displayed with several icons including messages, mail, safari, and settings. The battery is at 77%.", - "id": 16935 - }, - { - "image_path": "/content/drive/MyDrive/combined/2030642aea1734b1.jpg", - "response": "The back of an LG G Pad 10.1 in black.", - "id": 16936 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ef6a573ff0cba85.jpg", - "response": "The image features a white Nokia Lumia 630 smartphone. The back cover is removed, exposing the battery. The battery is black and has the Nokia logo on it. The phone is placed on a dark surface. The bottom right corner of the image features the photographer's watermark.", - "id": 16937 - }, - { - "image_path": "/content/drive/MyDrive/combined/1243b1085126d7b2.jpg", - "response": "A silver laptop with a black keyboard and touchpad.", - "id": 16938 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d09b6208473c6e6.jpg", - "response": "A person is holding a cell phone in their hand. The phone is displaying a screen with a button on it. The button is red and has the letter G on it. The phone is an LG model. There is a TV remote control on the table next to the phone. A book is also on the table. A pen is laying on the table in front of the book.", - "id": 16939 - }, - { - "image_path": "/content/drive/MyDrive/combined/1374c65edb733b51.jpg", - "response": "A Nokia Lumia 800 sign on a table.", - "id": 16940 - }, - { - "image_path": "/content/drive/MyDrive/combined/22644ced5ae38016.jpg", - "response": "A white Nokia Lumia 620 smartphone next to a black Nokia Lumia 620 smartphone.", - "id": 16941 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f2ed0ad1841126.jpg", - "response": "A black htc phone on a black and white cloth.", - "id": 16942 - }, - { - "image_path": "/content/drive/MyDrive/combined/17348d3c14a03050.jpg", - "response": "A red door with a sign that says \"Do not enter\" and a note that says \"This doorway unless you make certain it closes firmly behind you.\"", - "id": 16943 - }, - { - "image_path": "/content/drive/MyDrive/combined/17fa8b155807196b.jpg", - "response": "An open box with an iPhone inside.", - "id": 16944 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ab3c55cbac00995.jpg", - "response": "A black iPhone displaying a page from the Schmoezr app.", - "id": 16945 - }, - { - "image_path": "/content/drive/MyDrive/combined/125ddf42c7cbaa79.jpg", - "response": "A white HTC phone lying on a wooden table.", - "id": 16946 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a21b7b0ca7c24b.jpg", - "response": "A person is holding a cell phone in their hands.", - "id": 16947 - }, - { - "image_path": "/content/drive/MyDrive/combined/138b2bd1a1f8ec61.jpg", - "response": "A close up of the side of a laptop on a wooden table.", - "id": 16948 - }, - { - "image_path": "/content/drive/MyDrive/combined/103e8942edf9c8c8.jpg", - "response": "An iPhone box and two iPhones, one black and one silver, are laying on a table.", - "id": 16949 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ab4f1305d0ea276.jpg", - "response": "The image features two smart devices, both of which are yellow in color. The larger of the two devices has a screen that displays a man riding a bicycle, with the words \"Pedala, Corri, Cammina\" written below him. The smaller device displays a similar image, but with the words \"Share\" on the screen. Both devices are sitting on a table.", - "id": 16950 - }, - { - "image_path": "/content/drive/MyDrive/combined/10eb1a05f307c919.jpg", - "response": "A person is holding a white Samsung Galaxy Note 4 in their hand. The phone is being held in landscape mode, with the home screen showing. The time on the phone is 11:22 and the weather is cloudy. There are several apps on the home screen including email, Google, and WhatsApp. In the background, there is a black screen with stars.", - "id": 16951 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c93713a4bb592af.jpg", - "response": "a screen with a lot of text on it", - "id": 16952 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3b01783d396e4e.jpg", - "response": "The image features a black iType Bluetooth keyboard by Xion. The keyboard is sitting on top of a black stand. The keyboard has a silver phone sitting on top of it. The phone is a rectangle shape and is a bit bigger than the keyboard. The keyboard has a grey color and is made of plastic. The phone has a silver color and is also made of plastic. The stand is made of black plastic. The background of the image is white.", - "id": 16953 - }, - { - "image_path": "/content/drive/MyDrive/combined/20cbaa0bad63d12d.jpg", - "response": "A man standing in front of a large TV screen with stock information on it.", - "id": 16954 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e81abba605e6d91.jpg", - "response": "an asus fonepad 7 in its packaging", - "id": 16955 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0f69fc8bbadc38.jpg", - "response": "The image features a smartphone with a silver metallic body. The phone is standing upright on a white surface with its reflection beneath it. There are five icons displayed on the phone's screen, which appears to be the homescreen. The first icon from the left is a square with a musical note inside. The second icon is a square with the number 027 in the center. The third icon is a square with a camera symbol inside. The fourth icon is a square with the word Photo in the center. The fifth and final icon is a square with a phone symbol inside.", - "id": 16956 - }, - { - "image_path": "/content/drive/MyDrive/combined/16e3367eecb8d5df.jpg", - "response": "A person is holding a white Samsung Galaxy S3 in their hand. The phone is powered on and displays the time as 16:29. Underneath the time is a message that says \"Swipe screen to unlock\". The home screen features four icons: a phone, a mail icon, a camera, and an icon with the letter 'G'. The phone is being held over a bed.", - "id": 16957 - }, - { - "image_path": "/content/drive/MyDrive/combined/2258124ed4642eb2.jpg", - "response": "A Huawei ascend g610 and ascend g610 white side by side on a wooden table.", - "id": 16958 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bc76d600a6e463.jpg", - "response": "A man wearing a black suit jacket and a blue shirt is standing at a podium. He is wearing a microphone and has a remote control in his hand. The man is pointing his finger and appears to be speaking.", - "id": 16959 - }, - { - "image_path": "/content/drive/MyDrive/combined/217f3013d8094546.jpg", - "response": "An iPhone and an old cell phone are sitting on a desk. The iPhone is plugged in and has a green screen with a website address on it. The old cell phone is not plugged in and has a screen that is black.", - "id": 16960 - }, - { - "image_path": "/content/drive/MyDrive/combined/2133fc3de79e31ce.jpg", - "response": "A person holding an LG Android phone to the left of an iPhone.", - "id": 16961 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b41d2c3ee1a9a1.jpg", - "response": "A can of diet coke sits next to a black box with the word Hootoo on it.", - "id": 16962 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3393ecfa8c875d.jpg", - "response": "A black cell phone with a red and black wrist band.", - "id": 16963 - }, - { - "image_path": "/content/drive/MyDrive/combined/17fcdd6f288857ca.jpg", - "response": "A close up of a cell phone screen that is turned on. The phone is a Nokia phone and is pink in color. The screen shows the time as 3:31 PM and the date as November 8th. There is a menu on the screen that shows Assisted GPS, Integrated GPS, and Bluetooth GPS as positioning methods with a check mark next to Assisted GPS and Integrated GPS. The last method listed is Network based and has an arrow pointing to it.", - "id": 16964 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fc4cc67429b3678.jpg", - "response": "A keyboard with a black background and white lettering.", - "id": 16965 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f570141421f37a8.jpg", - "response": "A person is holding a white LG smartphone in their hand. The phone is facing away from the camera and is plugged in with a white cord. The LG logo is visible on the back of the phone. In the background, there is a paper with writing on it.", - "id": 16966 - }, - { - "image_path": "/content/drive/MyDrive/combined/22696d5f5c931509.jpg", - "response": "A blackberry phone with a chat conversation with a girl named Sally. The last seen message was yesterday at 18:10. The conversation starts with Alise A asking Sally if she has seen her lately. Sally responds that she is great and had a great weekend. Alise A then asks Sally what she is doing this weekend and Sally responds that she is having a party that night. Alise A then asks Sally if she is free on Saturday and Sally responds that she is free. Alise A then asks Sally if she should bring something and Sally responds that she should bring something.", - "id": 16967 - }, - { - "image_path": "/content/drive/MyDrive/combined/21851d9bf5dc05c9.jpg", - "response": "A silver cellphone with a keyboard and a black cellphone on top of it.", - "id": 16968 - }, - { - "image_path": "/content/drive/MyDrive/combined/122d892264e2094b.jpg", - "response": "A grey and black cyon branded cellphone.", - "id": 16969 - }, - { - "image_path": "/content/drive/MyDrive/combined/1757c8e2a2f1abdf.jpg", - "response": "A blackberry phone flipped open on a table.", - "id": 16970 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dfa60ae1ece1a32.jpg", - "response": "A pair of smartphones side by side on a table.", - "id": 16971 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb9b989c7aa763d.jpg", - "response": "A Nokia cell phone is open and sitting on a wooden table. The phone is flipped open and the screen is showing a text message. The text message is from someone named Kevin and it says \"Looking at houses.\" The phone has a silver panel with orange numbers on it for the keypad. The numbers are 1, 2, 3, 4, 5, 6, 7, 8, 9, 0.", - "id": 16972 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d9044f0fbd031d.jpg", - "response": "An open box with a picture of an iPhone on the front.", - "id": 16973 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c89b94ec0ca4885.jpg", - "response": "A gold Nokia cell phone with a silver trim.", - "id": 16974 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e6d29e0b1f3e8e.jpg", - "response": "A black LG cell phone on a red cloth.", - "id": 16975 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ffd264a2afb437b.jpg", - "response": "A man is on a stage giving a presentation. He is standing on a platform and there is a large screen behind him. He is holding a cell phone in front of the screen. The phone is showing a wi-fi signal.", - "id": 16976 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d79f2309275dfd9.jpg", - "response": "A black Samsung smartphone is sitting on a wooden table next to a silver electronic device. The home screen of the phone features a Star Wars image of Darth Vader holding a light saber. The phone has several icons on the bottom including a phone, email, and web browser.", - "id": 16977 - }, - { - "image_path": "/content/drive/MyDrive/combined/12dc1d884d4cce18.jpg", - "response": "A black Nokia phone is laying on a wooden table. The phone has a green and white screen with a bar graph on it. The graph is labeled \"distance chart\". There are also five buttons on the bottom of the screen, labeled with numbers 1 through 5.", - "id": 16978 - }, - { - "image_path": "/content/drive/MyDrive/combined/17a12bb5286b1f9f.jpg", - "response": "An iPhone and an HTC phone are laying next to each other on a wooden table.", - "id": 16979 - }, - { - "image_path": "/content/drive/MyDrive/combined/100d0d4eadf82032.jpg", - "response": "A Huawei device and a white mouse on a wooden table.", - "id": 16980 - }, - { - "image_path": "/content/drive/MyDrive/combined/203bca4546aca85d.jpg", - "response": "Two cellphones are sitting next to each other on a wooden table. One is a pink Nokia phone and the other is a white Samsung phone.", - "id": 16981 - }, - { - "image_path": "/content/drive/MyDrive/combined/17bc2f78adbaab7d.jpg", - "response": "A cell phone screen with a variety of applications and settings.", - "id": 16982 - }, - { - "image_path": "/content/drive/MyDrive/combined/18b5fb0c59b61339.jpg", - "response": "A person is holding a cell phone in their hand. The phone is a sliding type with a keyboard. The phone is turned on and the screen is showing the word \"offline\". There are several icons on the screen including a phone, a camera, and a computer. The phone is also displaying the time as 5:39 pm.", - "id": 16983 - }, - { - "image_path": "/content/drive/MyDrive/combined/1737d30c81bcb9c0.jpg", - "response": "An iPhone sits on a wooden desk next to a box. The iPhone is white and has a home screen with several apps. Next to the iPhone is a box with the same design as the iPhone. On the right side of the desk, there is a clear container filled with pens.", - "id": 16984 - }, - { - "image_path": "/content/drive/MyDrive/combined/0efa32e69da0622a.jpg", - "response": "A Samsung smart phone with a small screen.", - "id": 16985 - }, - { - "image_path": "/content/drive/MyDrive/combined/19cdd8773cd3c914.jpg", - "response": "A wooden table with a bunch of papers on it.", - "id": 16986 - }, - { - "image_path": "/content/drive/MyDrive/combined/120b3cbd2dcff6eb.jpg", - "response": "A Samsung phone with a white case on it.", - "id": 16987 - }, - { - "image_path": "/content/drive/MyDrive/combined/164a812013861d0e.jpg", - "response": "A person is holding a camera and taking a picture of someone on a stairway.", - "id": 16988 - }, - { - "image_path": "/content/drive/MyDrive/combined/227519a1f7fdb666.jpg", - "response": "a person holding a cell phone with a picture of a sharpie markers on the screen.", - "id": 16989 - }, - { - "image_path": "/content/drive/MyDrive/combined/17a24f053ab3009e.jpg", - "response": "An iPhone is shown in the image with a cloud background. The phone is in the middle of the image and is silver in color. On the screen of the phone is a notification for a conversation with Siri and Vin on Periscope. The time on the phone is 12:02 PM and the event is happening at 12 PM AEST. The notification also includes a special guest, Billy Brandon, and a handle for him, @ClearSight_TV. There is also a microphone icon on the bottom of the screen.", - "id": 16990 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ae96ebe17d3064.jpg", - "response": "The image shows two iPhones, one white and one silver, sitting next to each other on a wooden table. The white iPhone is positioned on the left side of the table, while the silver iPhone is on the right. Both iPhones have the Apple logo on the back.", - "id": 16991 - }, - { - "image_path": "/content/drive/MyDrive/combined/20a25c9b8eb3cc50.jpg", - "response": "A close up of a cellphone on a wooden table. The cellphone is an HTC phone and is lying face down. The camera lens is visible on the back of the phone.", - "id": 16992 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d06cdc3aef9386.jpg", - "response": "An iPhone is sitting on a wooden table.", - "id": 16993 - }, - { - "image_path": "/content/drive/MyDrive/combined/1092c1c869e413b4.jpg", - "response": "An orange Nokia phone and a black battery pack are sitting on a wooden table.", - "id": 16994 - }, - { - "image_path": "/content/drive/MyDrive/combined/14d8b72e83d7554b.jpg", - "response": "A smartphone is the main focus of the image with the words \"digital marketing\" written on the screen. The phone is black and has a flat screen. The letters are blue and slightly transparent. The phone is sitting on a reflective surface which is white.", - "id": 16995 - }, - { - "image_path": "/content/drive/MyDrive/combined/210665b4c5e00c64.jpg", - "response": "An iPhone screen with the Wi-Fi button highlighted. Below it are three different Wi-Fi networks available. From left to right they are: NESpot, olleh_subway_F5 and QOOKnSHOW. Below that is a button marked \"\uae30\ub984...\".", - "id": 16996 - }, - { - "image_path": "/content/drive/MyDrive/combined/205d2562b5e0390f.jpg", - "response": "A person holding a Samsung smart device.", - "id": 16997 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e891c3562ad39d2.jpg", - "response": "A slide with a blue border at the top that says \"Connect to the WWR Today!\" in bold white letters. Below that is a navy blue banner that says \"Our Marines and their Families are Still in the Fight!\" in white letters. Below that is a thank you note for continued support. Below that is a phone with a red background and white text that says \"Download the mobile app on iTunes (iPhone or iPad) or Google Play (Android) by searching \"Wounded Warrior\"\" with a QR code next to it. Below that is a black and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a black and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the right of it. Below that is a blue and white QR code with the number \"1-877-487-6299\" to the", - "id": 16998 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f71066f47c6dde.jpg", - "response": "The image shows a close up view of the back of a silver Samsung smart phone. The phone is propped up on a wooden stand. There is a Thai message written in white on the right hand side of the image which reads: \"I have a Samsung phone, it is very good. I have had it for three years and it is still working well. I have not had any problems with it.\"", - "id": 16999 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f127f5869f57eac.jpg", - "response": "A black box with a screen of icons on the front.", - "id": 17000 - }, - { - "image_path": "/content/drive/MyDrive/combined/144db784ebce9dd0.jpg", - "response": "A black Samsung phone is on a white table. The phone is propped up on the table and the screen is on. The time on the phone is 17:23 and the weather is cloudy. There are several icons on the bottom of the screen including Facebook, Google, and the camera app.", - "id": 17001 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a06029524d01d0.jpg", - "response": "A black Nokia Lumia 820 phone on a brown carpet. The phone is open to the settings menu. The ringtones and sounds option is selected.", - "id": 17002 - }, - { - "image_path": "/content/drive/MyDrive/combined/13d3d4e436da879b.jpg", - "response": "A person is holding a cell phone in front of a wall with many stickers on it.", - "id": 17003 - }, - { - "image_path": "/content/drive/MyDrive/combined/31fab88cb9501d52.jpg", - "response": "A desk with a computer on it, and two bottles of drink sitting next to it. One is a green bottle of Mountain Dew Throwback and the other is a Rockstar Energy Drink.", - "id": 17004 - }, - { - "image_path": "/content/drive/MyDrive/combined/284ce43a9549a7bb.jpg", - "response": "An iPhone sitting on a wooden table.", - "id": 17005 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f072cf8e8a1ad33.jpg", - "response": "A cell phone and a power bank on a table.", - "id": 17006 - }, - { - "image_path": "/content/drive/MyDrive/combined/316f59a30b1b75de.jpg", - "response": "The LG Optimus 2X is a smartphone with a 4.3-inch screen.", - "id": 17007 - }, - { - "image_path": "/content/drive/MyDrive/combined/269c1a5d6957d4ef.jpg", - "response": "A close up of the back of a white cell phone.", - "id": 17008 - }, - { - "image_path": "/content/drive/MyDrive/combined/30acfea0c24e0518.jpg", - "response": "A twenty dollar bill is laying on a table next to a coke can.", - "id": 17009 - }, - { - "image_path": "/content/drive/MyDrive/combined/24d1f72d991e3f29.jpg", - "response": "A desk with a cup of coffee on it.", - "id": 17010 - }, - { - "image_path": "/content/drive/MyDrive/combined/29b9bd78e155f3c4.jpg", - "response": "A female model is presenting five LG G3s in different colors in a row on the left side of the image. She is holding up one of the G3s in black in her right hand and smiling at the camera.", - "id": 17011 - }, - { - "image_path": "/content/drive/MyDrive/combined/256cffa1ba1a703a.jpg", - "response": "a person holding a phone and a tablet of the same brand", - "id": 17012 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e3c03ba7450e47b.jpg", - "response": "A person holding a Samsung smart device with the screen showing the home screen of the device.", - "id": 17013 - }, - { - "image_path": "/content/drive/MyDrive/combined/236223b8a9201897.jpg", - "response": "A blackberry phone with a keyboard sitting on a table.", - "id": 17014 - }, - { - "image_path": "/content/drive/MyDrive/combined/27a47d41f4faf3df.jpg", - "response": "The image features a black and blue digital scale with a smartphone placed on top of it. The scale has a white background and is surrounded by a black border. The screen of the smartphone is visible and displays a green image. The scale has a silver button in the middle and a black dial on the right side. The screen of the scale is located at the top of the scale and displays the number 164.5.", - "id": 17015 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fcbf5fbdf4b90de.jpg", - "response": "A white HTC phone on a wooden table.", - "id": 17016 - }, - { - "image_path": "/content/drive/MyDrive/combined/30276961c14d3818.jpg", - "response": "A person is holding three smart phones side by side. The phones are black and are made by Nokia. The phone on the left is the Nokia phone. The middle phone is the Windows phone and the phone on the right is also the Nokia phone. Each phone has the Food Gram app on the screen. The Windows phone has a red and white logo on the screen. The Nokia phone on the left has a picture of a bowl of food with the words Food Gram on it. The words Login and Create account are on the screen of the Nokia phone. The words Register with Facebook are on the screen of the phone on the left. The words Create account and Office are on the screen of the Windows phone. The Nokia phone on the right has the words Food Gram on it.", - "id": 17017 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e046d84e3538d56.jpg", - "response": "An image of Steve Jobs presenting the iPhone.", - "id": 17018 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d77b15972b83cd6.jpg", - "response": "An iPhone is seen in gold and is flipped over on a wooden table.", - "id": 17019 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d32e19b000d37a.jpg", - "response": "The image features a white Samsung Galaxy S6 smartphone that is placed on a wooden surface. The back of the phone is visible and has a camera lens and Samsung logo. The camera lens is located towards the top left corner of the phone. The Samsung logo is located towards the bottom center of the phone. The phone appears to be turned off.", - "id": 17020 - }, - { - "image_path": "/content/drive/MyDrive/combined/348834d8ba0f09a4.jpg", - "response": "The image shows four HTC phones, two of which are the same model, standing next to each other on a white surface. The two phones on the left are both white and have a single camera on the top. The phone on the left has a blue screen with the time showing as 8:40 and a spider icon in the bottom left hand corner. The phone on the right, which is the same model, has a black screen with the time showing as 8:40. The phone on the right has a dual camera on the top. The two phones on the right are the same model and have the same design.", - "id": 17021 - }, - { - "image_path": "/content/drive/MyDrive/combined/34589d55d1fd2840.jpg", - "response": "A black and silver Sony phone sitting on a reflective surface.", - "id": 17022 - }, - { - "image_path": "/content/drive/MyDrive/combined/2482740539d142a7.jpg", - "response": "A black HTC phone is on a tan table.", - "id": 17023 - }, - { - "image_path": "/content/drive/MyDrive/combined/28a57efc62c1c329.jpg", - "response": "A black Nokia smartphone is being held in someones hand. The phone has a camera on the top left corner and two small holes above the camera. The phone has a silver Nokia logo on the bottom of the phone. The phone has a microUSB port on the right side of the phone.", - "id": 17024 - }, - { - "image_path": "/content/drive/MyDrive/combined/28b2b34d570dabdb.jpg", - "response": "A black LG Nexus 4 cell phone sitting on a wooden table.", - "id": 17025 - }, - { - "image_path": "/content/drive/MyDrive/combined/33b009b5614ce4d3.jpg", - "response": "An open laptop computer sitting on top of a wooden desk.", - "id": 17026 - }, - { - "image_path": "/content/drive/MyDrive/combined/277fb16e977e55db.jpg", - "response": "A Nokia phone sitting on a wooden table.", - "id": 17027 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fb50b70518536db.jpg", - "response": "A close up of a phone screen with text on it. The text is in a computer language and starts with \"Clockworkmod Recovery v6.5.0\". The screen is on a wooden surface.", - "id": 17028 - }, - { - "image_path": "/content/drive/MyDrive/combined/297037d3f8ea16ef.jpg", - "response": "A cell phone sitting on a laptop.", - "id": 17029 - }, - { - "image_path": "/content/drive/MyDrive/combined/32f76362db2d743d.jpg", - "response": "A phone with a map on the screen.", - "id": 17030 - }, - { - "image_path": "/content/drive/MyDrive/combined/335d8288427993b3.jpg", - "response": "A box for an LG Pocket Photo device is open on a wooden table. The box is white and has a picture of the device on the front. The device is a small rectangular device with a screen on top and a camera on the front. The device is silver in color. There are also several pictures of the device inside the box.", - "id": 17031 - }, - { - "image_path": "/content/drive/MyDrive/combined/3126d02eb9bf099c.jpg", - "response": "A person is holding a cell phone in their hand. The phone is a blackberry phone and is black and silver in color. The person is showing the phone to the camera.", - "id": 17032 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ea352fd74f5a96c.jpg", - "response": "A cell phone sitting on top of a paper.", - "id": 17033 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cfc0954f6af7e5a.jpg", - "response": "A Clue board game is set up on a green surface. The game board shows a map of a mansion with a dining room, living room, and several other rooms. The dining room has a light green table cloth and a knife on the table. The living room has a couch and a lamp. There are several pieces on the board, including a man, a car, and a gun. There are also several cards spread out on the board, including one that says \"Wine Cellar.\"", - "id": 17034 - }, - { - "image_path": "/content/drive/MyDrive/combined/23733e0799cc2200.jpg", - "response": "A small green Android figurine standing on a white surface.", - "id": 17035 - }, - { - "image_path": "/content/drive/MyDrive/combined/30796ab4a3dbc83a.jpg", - "response": "An iPhone that is turned on and showing the home screen.", - "id": 17036 - }, - { - "image_path": "/content/drive/MyDrive/combined/27a334de63a58c5c.jpg", - "response": "A phone and a computer screen are shown. The phone is a mockup of a smartphone and has the Ellington website displayed on the screen. The computer screen has a map of Ellington and the Ellington Mobile website.", - "id": 17037 - }, - { - "image_path": "/content/drive/MyDrive/combined/290799534d645105.jpg", - "response": "A white cell phone sitting on a white surface.", - "id": 17038 - }, - { - "image_path": "/content/drive/MyDrive/combined/232cfc6e42314a50.jpg", - "response": "A box for a cell phone that is for Android.", - "id": 17039 - }, - { - "image_path": "/content/drive/MyDrive/combined/334bf855d256bd2e.jpg", - "response": "A person holding a cell phone in their hand.", - "id": 17040 - }, - { - "image_path": "/content/drive/MyDrive/combined/297f15687a27cc0b.jpg", - "response": "A white iPhone on a wooden table.", - "id": 17041 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f490dcba9f6e44e.jpg", - "response": "A black Samsung Galaxy S5 smartphone laying face down on a wooden table.", - "id": 17042 - }, - { - "image_path": "/content/drive/MyDrive/combined/27bd54a16593bd89.jpg", - "response": "A pink cell phone sitting on a wooden table.", - "id": 17043 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c6d37e5439dad2.jpg", - "response": "A blackberry phone is sitting on a white table. The phone is turned off. The phone has a black screen. The phone has a silver and black edge. The phone has a red call button on the top left of the screen. The phone has a green call button on the top right of the screen. The phone has a Windows logo on the bottom right of the screen.", - "id": 17044 - }, - { - "image_path": "/content/drive/MyDrive/combined/3466f5a285df8945.jpg", - "response": "a close up of a cell phone screen with a message that reads \"Forestk:\u5730\u9707\u3054\u3046\u306f\u611f\u5fc3\"", - "id": 17045 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aafcb12b2ce977e.jpg", - "response": "A Nokia smartphone with a sliding keyboard is open and sitting on a wooden table. The phone is powered on and displaying the home screen with several icons. The keyboard is visible and appears to be in English.", - "id": 17046 - }, - { - "image_path": "/content/drive/MyDrive/combined/24d284b9c7a013aa.jpg", - "response": "A person holding a blue Microsoft Lumia phone in their hand. The phone is at a slight angle, with the screen facing the camera. The time on the phone is 8:34. The background behind the phone is a wooden table.", - "id": 17047 - }, - { - "image_path": "/content/drive/MyDrive/combined/34242db773ca2dd5.jpg", - "response": "a person holding a Huawei smartphone in their hand.", - "id": 17048 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a2e7474410e357a.jpg", - "response": "A black LG mobile phone with a white background", - "id": 17049 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d145713c11740fc.jpg", - "response": "A miniature glass passivated single-phase bridge rectifiers with a small heatsink attached. The rectifiers are shown in a cutaway view with the internal components visible. The heatsink is attached to the right side of the rectifiers. The dimensions of the rectifiers are 5.1mm x 10.1mm. The text on the image reads \"1 A Miniature Glass Passivated Single-Phase Bridge Rectifiers\".", - "id": 17050 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fc4ba83dd956574.jpg", - "response": "An open book with a cell phone laying on top of it.", - "id": 17051 - }, - { - "image_path": "/content/drive/MyDrive/combined/3171267914676003.jpg", - "response": "A black iPhone sitting on a white counter.", - "id": 17052 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe38b4ded6b2639.jpg", - "response": "A passport is open and laying on a table.", - "id": 17053 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8d43e107fbb057.jpg", - "response": "A person holding a cell phone with a lot of writing on the screen.", - "id": 17054 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ca20e10deff46ee.jpg", - "response": "An iPhone that is turned on and is displaying a meeting.", - "id": 17055 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e60520595b67205.jpg", - "response": "An iPhone with a purple case is open and showing a purple and green app on the screen.", - "id": 17056 - }, - { - "image_path": "/content/drive/MyDrive/combined/307614f6f88a3fca.jpg", - "response": "An iPhone and a Blackberry phone are sitting next to each other. The iPhone is on the left and is a dark grey color. It is a rectangle with a speaker on the top and a camera on the front. The Blackberry phone is on the right and is a dark grey color. It has a QWERTY keyboard on the front and a screen on the top.", - "id": 17057 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed76cce2f093f5f.jpg", - "response": "A black and silver cellphone with a slide out keyboard.", - "id": 17058 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bed943d61e51c0e.jpg", - "response": "A black laptop computer sitting on a desk.", - "id": 17059 - }, - { - "image_path": "/content/drive/MyDrive/combined/312a42502d4875f3.jpg", - "response": "A Samsung Behold phone in its packaging.", - "id": 17060 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fdb0df1945d543b.jpg", - "response": "In the image a person is holding an iPhone in a case on top of an orange leather surface. The iPhone model is iPhone 12 Pro. The person is holding the phone in the middle so that the back is facing the camera. The back of the phone is silver and in the middle there are three small holes for the phone's camera. On the bottom right of the phone there is a small red light. The person is not fully visible in the image, only their fingers holding the phone are visible.", - "id": 17061 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f1fa586b708fcf5.jpg", - "response": "An overhead view of a pair of running shoes with a pair of earbuds plugged into an iPhone.", - "id": 17062 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d65a0b498a84dd9.jpg", - "response": "A red and black smart device sitting on a wooden table.", - "id": 17063 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b22674571579daa.jpg", - "response": "The image features a black and grey wireless mouse. The mouse is shown from the backside and is placed on a white surface. The mouse has a black button in the middle, with two smaller buttons on either side. There is a USB port on the top of the mouse, along with the black and grey color scheme.", - "id": 17064 - }, - { - "image_path": "/content/drive/MyDrive/combined/302e07eb7155dc39.jpg", - "response": "A close up of a phone screen with the Google Maps app open.", - "id": 17065 - }, - { - "image_path": "/content/drive/MyDrive/combined/253c5d6643555df5.jpg", - "response": "A close up of a Nokia Lumia phone that is propped up on a wooden table. The phone has a camera on the top of it. The screen of the phone is showing the home screen of Windows 8. There are 9 icons displayed: Vine, Viber, Office, OneDrive, Facebook, Settings, Mail, Calendar, and Contact. The time on the phone is 19:19. The word \"Nokia\" is displayed on the top right hand side of the phone.", - "id": 17066 - }, - { - "image_path": "/content/drive/MyDrive/combined/331dc791ea6f5582.jpg", - "response": "A man in a grey suit standing on a stage in front of a large screen.", - "id": 17067 - }, - { - "image_path": "/content/drive/MyDrive/combined/32fa8abd1f683638.jpg", - "response": "A black and silver electronic device with a blue screen.", - "id": 17068 - }, - { - "image_path": "/content/drive/MyDrive/combined/268d830e9675269e.jpg", - "response": "Three cellphones are next to each other. The one on the left is blue and has a Sanyo Ericsson logo on the back. The middle phone is white and has a Samsung logo on the back. The phone on the right is black and has a Samsung logo on the back.", - "id": 17069 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e1b3b7302bd13e7.jpg", - "response": "A mechanical gaming keyboard on a black box.", - "id": 17070 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da2bb524d2599d5.jpg", - "response": "A cell phone with the word eclipse on the screen.", - "id": 17071 - }, - { - "image_path": "/content/drive/MyDrive/combined/2791e7eb4e1f4596.jpg", - "response": "A silver and black Nokia C2-03 phone.", - "id": 17072 - }, - { - "image_path": "/content/drive/MyDrive/combined/4661de27dc2bec7b.jpg", - "response": "A cell phone with the time set at 12:02.", - "id": 17073 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f5dcce38a3bd65.jpg", - "response": "a tv screen with a picture of a phone and some writing underneath it", - "id": 17074 - }, - { - "image_path": "/content/drive/MyDrive/combined/39d877f081344069.jpg", - "response": "A white table topped with smart devices on display.", - "id": 17075 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b08822ad4360ce.jpg", - "response": "An iPhone is on display with a call from Sidney Bailey on the screen.", - "id": 17076 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a68e625a521cb12.jpg", - "response": "The image shows the packaging of an ASUS tablet, the ASUS Fonepad 7. The box is white and features the tablet's design on the cover. The tablet is displayed in a cut out on the cover, showing the black color. The box is open on a carpet, which is described as a weave pattern.", - "id": 17077 - }, - { - "image_path": "/content/drive/MyDrive/combined/482d85b3074436b5.jpg", - "response": "An iPhone is shown in the foreground with a message on the screen for a Periscope conversation with Siri and Vin. The iPhone is standing on a sound mixing board.", - "id": 17078 - }, - { - "image_path": "/content/drive/MyDrive/combined/46fbde6f07658047.jpg", - "response": "An iPhone 5s and an Android phone sit side by side on a wooden table.", - "id": 17079 - }, - { - "image_path": "/content/drive/MyDrive/combined/378958cd0dd5dd90.jpg", - "response": "A blue and silver rectangular device with the word \"cyon\" written on it.", - "id": 17080 - }, - { - "image_path": "/content/drive/MyDrive/combined/4af2e293b6837e78.jpg", - "response": "An acer phone that is black and white.", - "id": 17081 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a20642a0603a1da.jpg", - "response": "A cell phone sitting on a wooden table.", - "id": 17082 - }, - { - "image_path": "/content/drive/MyDrive/combined/42fd98019da0fead.jpg", - "response": "The image shows a close up of a smartphone sitting on a table. The phone is a silver color and has a sliding mechanism. It is placed on top of a book, which is open to a page titled \"The Fast Five\". There are also some papers and a keyboard on the table. The scene appears to be a workspace or a study area.", - "id": 17083 - }, - { - "image_path": "/content/drive/MyDrive/combined/4db74e15923dd476.jpg", - "response": "An iPhone 6 from the back. The back is gold and features the Apple logo in the middle. Under the logo are the iPhone and iOS versions. The iPhone is sitting on a wooden table.", - "id": 17084 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2c57f11faecacb.jpg", - "response": "A black Samsung smartphone lying face down on a red surface.", - "id": 17085 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e49c147d645316.jpg", - "response": "A white iPhone 5S is turned off and laying face up on a black counter. The home screen is visible and features a row of icons for several different apps including Facebook, Twitter, and Airbnb.", - "id": 17086 - }, - { - "image_path": "/content/drive/MyDrive/combined/367aa132b0b1d1a5.jpg", - "response": "In the image a person is holding a Lumia 640 smartphone with the green circle of the Cortana app on the screen. The word \"hello\" is written in green on the screen. The person is holding the phone in their right hand. The back of the phone is white and has the Nokia logo on it. The phone operates on Windows 10.", - "id": 17087 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b76dc6f35f343a6.jpg", - "response": "A white Samsung Galaxy S6 smartphone with a white background. The time on the phone is 11:42. The weather app is open and it's showing the current temperature as 5 degrees Fahrenheit. The date is April 13th. The top of the phone has the Samsung logo.", - "id": 17088 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9b02bcd3f99c1a.jpg", - "response": "On a wooden table, an iPhone 5S is lying next to a Samsung Galaxy Note 3. Both are black smartphones.", - "id": 17089 - }, - { - "image_path": "/content/drive/MyDrive/combined/35b62fa535d24833.jpg", - "response": "A white LG cell phone laying on a wooden table.", - "id": 17090 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c9feaa320eca12d.jpg", - "response": "The image shows two Samsung mobile phones, one on the left and the other on the right. Both are black and have a rectangular shape. The phones have a screen on the top half, which displays various icons such as a camera, browser, messaging, and email. The screen on the left phone has a white background and black icons. The screen on the right phone has a green background and white icons. The right phone also has a photo of a woman on the screen, with the time displayed above her head. The phones have a home button on the bottom half of the screen, and a back button on the top left corner.", - "id": 17091 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c581fd6ad545e7d.jpg", - "response": "A cell phone that is turned on with the Facebook app pulled up.", - "id": 17092 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb0f47ebfe03637.jpg", - "response": "a person holding a cell phone in their hand", - "id": 17093 - }, - { - "image_path": "/content/drive/MyDrive/combined/44cfe62c7f85a269.jpg", - "response": "An iPhone is sitting on the floor with a white charger plugged into it. The phone is displaying the iPod screen.", - "id": 17094 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a1f075fdf3e6f70.jpg", - "response": "A black smartphone is turned on and displaying the time as 8:51. The phone is on a white desk.", - "id": 17095 - }, - { - "image_path": "/content/drive/MyDrive/combined/448c2af266c9d475.jpg", - "response": "An advertisement for a new Android phone.", - "id": 17096 - }, - { - "image_path": "/content/drive/MyDrive/combined/442e6fb5e56935fe.jpg", - "response": "A handheld device with a map on the screen.", - "id": 17097 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a5b3bc5545f9c92.jpg", - "response": "A cup of Carlsberg beer sits on a table next to a smartphone.", - "id": 17098 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ff1e52db58cacf3.jpg", - "response": "A person is holding a cell phone in their hand. The phone is a black acer phone. The person is using the phone to make a call. The call screen on the phone is showing the name of the person they are calling as John. There is a green button on the call screen that says \"Accept\". There is also a red button on the call screen that says \" Decline\". The phone is running on Android software.", - "id": 17099 - }, - { - "image_path": "/content/drive/MyDrive/combined/40f36f012fcd6200.jpg", - "response": "A black BlackBerry Q10 smartphone in its packaging. The phone is sitting on top of the box which is also black. The phone has a physical keyboard and a touchscreen display. The packaging has the brand name and model number written on it. The phone is sitting on a wooden table.", - "id": 17100 - }, - { - "image_path": "/content/drive/MyDrive/combined/42e3067f0a2ad0e3.jpg", - "response": "The image features a black docking station with a cell phone in it. The cell phone is standing up and has a screen with icons on it. There are two other cell phones standing next to the docking station. One of the cell phones is black and the other is silver. There is also a black remote control next to the cell phones. The background of the image is a black and white gradient.", - "id": 17101 - }, - { - "image_path": "/content/drive/MyDrive/combined/4af9c0432dbc1e0f.jpg", - "response": "A black iPhone with a cracked screen on a red background.", - "id": 17102 - }, - { - "image_path": "/content/drive/MyDrive/combined/379167d9b37e96b7.jpg", - "response": "A pair of cell phones, both Nokias, are sitting side by side. They are both silver in color and have the same design. One is slightly larger.", - "id": 17103 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7520d287589423.jpg", - "response": "a person is holding a cell phone in their hands.", - "id": 17104 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b45b24390692106.jpg", - "response": "A black iPhone sitting on a grey surface.", - "id": 17105 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b00777f898051cc.jpg", - "response": "A phone with the screen showing the TX SMART app.", - "id": 17106 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca9e66c637ad6e8.jpg", - "response": "A cell phone is sitting on top of a black and white advertisement for a company called verizon. The phone is a flip phone and is open. The screen is lit up and shows the time as 12:19. The phone has a logo on the front that says Samsung.", - "id": 17107 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a337f5d55d88e85.jpg", - "response": "A laptop computer is sitting on a desk next to a cell phone. The laptop is open and powered on. The keyboard is gray and the screen is silver. There is a pen on the desk near the laptop.", - "id": 17108 - }, - { - "image_path": "/content/drive/MyDrive/combined/4138219defbf953d.jpg", - "response": "A person holding an iPod with a map on the screen.", - "id": 17109 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fbdd8ec7e440208.jpg", - "response": "The image is a flyer template for a lounge paradise event. The template is fully customizable and can be used for various purposes such as promoting a party, a club event or a concert. The design features a blue and white color scheme with an abstract pattern in the background. The text is placed in the center of the flyer and can be easily replaced with your own text. The flyer is printed on a black paper which provides a nice contrast to the colors used in the design.", - "id": 17110 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f49a46ec9a6db62.jpg", - "response": "A white LG mobile phone with copper details.", - "id": 17111 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dfb039392e34ca2.jpg", - "response": "The back of a black smartphone.", - "id": 17112 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ba4a5d4e2c7f304.jpg", - "response": "A sign on a window that says KFC and offers free wifi.", - "id": 17113 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b9f230dc3e7db95.jpg", - "response": "A front view of the LG KF350, a sleek, silver-colored phone with a large, 2.2-inch display.", - "id": 17114 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5a2bfc6cef0397.jpg", - "response": "A black iPod touch sitting next to a black and red felt case for the iPod touch.", - "id": 17115 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a30f6fd49af2c2c.jpg", - "response": "A white cell phone is on a wooden table.", - "id": 17116 - }, - { - "image_path": "/content/drive/MyDrive/combined/496440669ea481f3.jpg", - "response": "A chart comparing several cell phone models including the iPhone, Apple, Nokia, Samsung, Blackberry and Palm.", - "id": 17117 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad00a85f2c1b9a1.jpg", - "response": "A black Huawei phone is shown with the bottom of the screen facing the camera. The screen displays a white wave with a blue and white background. The phone's icons are white and feature circular shapes. The phone's camera is located in the top right corner of the screen. The volume buttons are located on the right side of the phone. The phone's logo is located on the bottom of the screen. The background behind the phone is a pinkish color.", - "id": 17118 - }, - { - "image_path": "/content/drive/MyDrive/combined/409f9ecdac857ee0.jpg", - "response": "a phone screen with a white background and a navigation bar at the bottom", - "id": 17119 - }, - { - "image_path": "/content/drive/MyDrive/combined/39f6bd15204f5a8f.jpg", - "response": "The image features two cell phones side by side. The one on the left is larger and has a silver color. The one on the right is smaller and is black. Both phones have the time set to 2:38. The background of the screens are a beach scene with palm trees.", - "id": 17120 - }, - { - "image_path": "/content/drive/MyDrive/combined/38f6ab5fcd89422a.jpg", - "response": "A phone with the Google app open and the search bar filled with \"diabetes apps\".", - "id": 17121 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cefe96086c3bc54.jpg", - "response": "An unopened box of a htc phone.", - "id": 17122 - }, - { - "image_path": "/content/drive/MyDrive/combined/46715680cd7dd1b9.jpg", - "response": "A display of three cell phones are open and showing the same home screen.", - "id": 17123 - }, - { - "image_path": "/content/drive/MyDrive/combined/386d033d0aad48d7.jpg", - "response": "Two women are holding the LG Optimus G in their hands. One of them is on the left side of the image and the other one is on the right side. They are both smiling and looking at the camera. In front of them is a cardboard sign that says \"Europe\" and has different European country flags on it.", - "id": 17124 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd2d38f5a9aa0e9.jpg", - "response": "An iPhone is plugged into a computer, the screen of the phone is showing a battery percentage of 94%.", - "id": 17125 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bae98684c94b94e.jpg", - "response": "A Sony Xperia Z1 phone has been taken apart and the back cover has been removed. The back cover is now sitting on a wooden table.", - "id": 17126 - }, - { - "image_path": "/content/drive/MyDrive/combined/4208006c568538f1.jpg", - "response": "An open black box with a black Samsung smartphone sitting inside.", - "id": 17127 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e3bdf5255ebbc6.jpg", - "response": "A cardboard box for Chamberlain garage door opener equipment.", - "id": 17128 - }, - { - "image_path": "/content/drive/MyDrive/combined/46093991ce4a09b0.jpg", - "response": "A black cellphone with a keyboard on the front.", - "id": 17129 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e000ae044c6cff.jpg", - "response": "A white Samsung phone is being held up by a stand. The phone has a camera on the back of it. The camera is small and grey. The phone also has the Samsung logo on the back of it. The stand is white and the phone is attached to it with a clip. The phone is being held up in the air.", - "id": 17130 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3c6e1936eb1006.jpg", - "response": "a phone in a black holder", - "id": 17131 - }, - { - "image_path": "/content/drive/MyDrive/combined/492e08ee55ce5fb3.jpg", - "response": "A page from a magazine with an iPod advertisement.", - "id": 17132 - }, - { - "image_path": "/content/drive/MyDrive/combined/491fa4554971313a.jpg", - "response": " Three iPhones(304,52),(664,952) showing the app on the screen.", - "id": 17133 - }, - { - "image_path": "/content/drive/MyDrive/combined/4637c1ab0fbe81b1.jpg", - "response": "An iPhone sitting on a white cloth next to a sim card eject tool.", - "id": 17134 - }, - { - "image_path": "/content/drive/MyDrive/combined/380be88d545d4c33.jpg", - "response": "A row of three smart phones sitting next to each other on a wooden table. The phones are an iPhone 6, a Sony Xperia Z1 compact, and an HTC One M8.", - "id": 17135 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d3478d15b4f675e.jpg", - "response": "The back of a blue Microsoft Lumia 532 phone.", - "id": 17136 - }, - { - "image_path": "/content/drive/MyDrive/combined/4429673ef9974c26.jpg", - "response": "A Vertu phone on display in a store, along with two other models.", - "id": 17137 - }, - { - "image_path": "/content/drive/MyDrive/combined/4969b0b15f03c729.jpg", - "response": "An Fairphone(477,168),(970,979) laying on a wooden table next to a rope.", - "id": 17138 - }, - { - "image_path": "/content/drive/MyDrive/combined/40b8439ee1cec6aa.jpg", - "response": "The image features two cell phones sitting on a wooden table. One of the phones has a black case with a white and green sticker on the back of it. The sticker says \"Supreme\" in white letters. The other cell phone does not have a case and has a blue and white sticker on the back of it. The table is made of a light brown wood and the scene appears to be indoors.", - "id": 17139 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f8713dd6522f71.jpg", - "response": "A box of Kellogg's Pop-Tarts Gone Nutty! Peanut Butter flavor sitting on a store shelf.", - "id": 17140 - }, - { - "image_path": "/content/drive/MyDrive/combined/388bc4e464d8155e.jpg", - "response": "A silver Samsung smart device is shown sitting on a white surface. The device has a camera on the top left hand corner and the Samsung logo on the right side.", - "id": 17141 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f567afa3ea9f026.jpg", - "response": "The image features a black acer smartphone on a white surface. The screen of the phone is showing the \"about\" phone information, including the name, model, carrier, firmware version, and radio software version. The acer logo is visible in the background.", - "id": 17142 - }, - { - "image_path": "/content/drive/MyDrive/combined/557ed836c4b00089.jpg", - "response": "A close up of a table with a notebook, pencil, cell phone, and a drink on it.", - "id": 17143 - }, - { - "image_path": "/content/drive/MyDrive/combined/50f6a24dbe65b106.jpg", - "response": "A person is holding a cell phone in their hand. The phone is an iPhone and is black in color. The home screen of the phone is displayed and has a blue and orange gradient. The phone is open and is being held in the person's left hand.", - "id": 17144 - }, - { - "image_path": "/content/drive/MyDrive/combined/52611f45471370a5.jpg", - "response": "A blackberry phone sitting on top of a book with a pair of glasses on top of the book as well.", - "id": 17145 - }, - { - "image_path": "/content/drive/MyDrive/combined/54c521d41f7818ef.jpg", - "response": "A cell phone sitting on top of a book.", - "id": 17146 - }, - { - "image_path": "/content/drive/MyDrive/combined/53e4554c3af92954.jpg", - "response": "A female model is holding a white LG G2 Mini in her hand and there are six more models of the phone placed on a table in front of her.", - "id": 17147 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ecfe45e072ad404.jpg", - "response": "A newspaper with the title \"The Daily Telegraph\" is sitting on a desk. The main headline is \"Flaming Hell\" and there is a picture of a massive fire. The newspaper also mentions that more than 100 homes were feared lost and that people were evacuated from the area.", - "id": 17148 - }, - { - "image_path": "/content/drive/MyDrive/combined/53230dc1ef1df3b0.jpg", - "response": "An iPhone sitting on a wooden table.", - "id": 17149 - }, - { - "image_path": "/content/drive/MyDrive/combined/522c7f0b3dcc0860.jpg", - "response": "A table with three smart devices on it. The devices are an iPhone, a blackberry, and a android phone. They are all powered on and showing their home screens.", - "id": 17150 - }, - { - "image_path": "/content/drive/MyDrive/combined/51ab655424fdef5c.jpg", - "response": "The image displays a black Karbonn K775 mobile phone. The front of the phone has a large screen with a silver surround. To the right of the screen are the navigation keys, consisting of a call button, a end button, a back button and a menu button. Underneath these navigation keys are the function keys, labeled 0-9. The phone has a numeric keypad with the numbers 0-9 and * and # keys. The phone is turned on and displays the time as 21:45 and the date as 11/27/13.", - "id": 17151 - }, - { - "image_path": "/content/drive/MyDrive/combined/5065c5ee828f4520.jpg", - "response": "A blackberry presenter sits on a table next to its box.", - "id": 17152 - }, - { - "image_path": "/content/drive/MyDrive/combined/53145d02d20ba377.jpg", - "response": "A broken cell phone sits on a blue surface.", - "id": 17153 - }, - { - "image_path": "/content/drive/MyDrive/combined/51a0d5043fbdfb45.jpg", - "response": "A phone that is turned on with the word android on the screen.", - "id": 17154 - }, - { - "image_path": "/content/drive/MyDrive/combined/50932db44e9ae86e.jpg", - "response": "An iPhone and a black smartphone sit side by side on a wooden table. Both devices are in cases.", - "id": 17155 - }, - { - "image_path": "/content/drive/MyDrive/combined/51662f802ef90ed2.jpg", - "response": "A person is holding a cell phone with the screen showing a world clock app. The phone is an iPhone and is being held in the person's left hand. The person is wearing a blue shirt.", - "id": 17156 - }, - { - "image_path": "/content/drive/MyDrive/combined/50be08c25e1cc4dc.jpg", - "response": "Two black cellphones are laying on a wooden table. The one on the left is slightly larger and has a silver Apple logo on the back. The one on the right is slightly smaller and has a silver Apple logo on the back as well.", - "id": 17157 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e3bf80906981ba8.jpg", - "response": "An iPhone on a wooden table with a website called Kleding Carrousel on the screen.", - "id": 17158 - }, - { - "image_path": "/content/drive/MyDrive/combined/5178d4cbed7c88db.jpg", - "response": "a large white screen displaying two cellphones", - "id": 17159 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b1a9eb1caf325d.jpg", - "response": "A black phone is sitting on a table.", - "id": 17160 - }, - { - "image_path": "/content/drive/MyDrive/combined/54530a4ad9a09fd6.jpg", - "response": "A phone with a website open to the definition of swooping. Above the phone is a card that says swooping.", - "id": 17161 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f9691c096eccd91.jpg", - "response": "A computer and phone with the same website on the screen.", - "id": 17162 - }, - { - "image_path": "/content/drive/MyDrive/combined/5190d35fd06f9201.jpg", - "response": "A blackberry phone is sitting on a table next to an iPhone. The blackberry phone is in a red case and the iPhone is in a white case. There is a pen on the table next to the phones.", - "id": 17163 - }, - { - "image_path": "/content/drive/MyDrive/combined/5038d5bc879ad515.jpg", - "response": "A sign that says \"Never lose or forget your cards\" on it.", - "id": 17164 - }, - { - "image_path": "/content/drive/MyDrive/combined/52811ff19624777c.jpg", - "response": "A close up of a cell phone playing a game.", - "id": 17165 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e66b55bfaa1d3bc.jpg", - "response": "A cell phone with a variety of apps on the screen including Google, Facebook, and Pinterest.", - "id": 17166 - }, - { - "image_path": "/content/drive/MyDrive/combined/52b7a180ce4713ce.jpg", - "response": "A collage of three pictures showing the back and front of a black and red Lenovo smartphone, a close up of the back of the phone, and a picture of a woman on the phone screen with arrows pointing to different features.", - "id": 17167 - }, - { - "image_path": "/content/drive/MyDrive/combined/54041197af0a1737.jpg", - "response": "In the image a person is holding a cell phone. The phone is a silver and black Motorola. They are checking their messages. One of the messages is from Lubomir.", - "id": 17168 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e5b16d357938b1.jpg", - "response": "A pink Samsung phone is laying on a brown carpet. The phone is open and showing a picture of a man and a woman. The woman is wearing a black dress and the man is wearing a black suit. The phone's home screen has several icons on it.", - "id": 17169 - }, - { - "image_path": "/content/drive/MyDrive/combined/52b557c0cff76f70.jpg", - "response": "A person's reflection is visible in the back of a black Palm phone.", - "id": 17170 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f125d98f717e527.jpg", - "response": "A table with a broken cell phone on it.", - "id": 17171 - }, - { - "image_path": "/content/drive/MyDrive/combined/50f4f2bd2215513d.jpg", - "response": "A cell phone screen with the word silent at the top.", - "id": 17172 - }, - { - "image_path": "/content/drive/MyDrive/combined/5562ccf77c958c44.jpg", - "response": "An iPhone is shown in black.", - "id": 17173 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fcd59e4b3ecd059.jpg", - "response": "A close up of a blackberry phone sitting on a wooden table.", - "id": 17174 - }, - { - "image_path": "/content/drive/MyDrive/combined/540b484a2d1a43cb.jpg", - "response": "In the image there are multiple boxes of a product called ZenFone 5. The boxes are red and have a white label on the front with a bar code and some writing. The writing includes the word \"ZenFone\" in white and \"5\" in yellow. The boxes are stacked on top of each other in a large pile. There is also a single box placed to the right of the pile. The image also shows a small portion of a white shelf in the top left corner.", - "id": 17175 - }, - { - "image_path": "/content/drive/MyDrive/combined/83dfbda0ea56bb70.jpg", - "response": "A broken cell phone and a whole cell phone are on the ground.", - "id": 17176 - }, - { - "image_path": "/content/drive/MyDrive/combined/07aa572a1aef403e.jpg", - "response": "A coffee mug with a picture of people sitting outside a cafe.", - "id": 17177 - }, - { - "image_path": "/content/drive/MyDrive/combined/09a4873f981043ac.jpg", - "response": "A coffee mug with a picture of Lionel Richie's face on it and the words \"Hello, is it tea you're looking for?\" written below.", - "id": 17178 - }, - { - "image_path": "/content/drive/MyDrive/combined/4082b5c46056f972.jpg", - "response": "A couple of coffee mugs sitting on a table. The larger mug has a picture of a blue man with a green face and a white top hat. The smaller mug has the words \"Sometimes I wake grumpy, sometimes I let him sleep\" written on it.", - "id": 17179 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe4e78c1fe02dcb.jpg", - "response": "A coffee mug with a picture of a rabbit on it.", - "id": 17180 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7eb1f0dc09065f.jpg", - "response": "In the image there are two soda cans, one is red and white and says Coca Cola on it, and the other is blue and white and says Pepsi on it. The cans are sitting on a white counter.", - "id": 17181 - }, - { - "image_path": "/content/drive/MyDrive/combined/149fd7f5b75fb9cd.jpg", - "response": "A white cup with the word DigitasLBi on it.", - "id": 17182 - }, - { - "image_path": "/content/drive/MyDrive/combined/14d6695693940654.jpg", - "response": "A wooden table with a red notebook, a cup of coffee, and a pen on top of it.", - "id": 17183 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c0ec3d809c4abc9.jpg", - "response": "a coffee mug with a helicopter on it that says S-76 on the bottom", - "id": 17184 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ec6fff90a425118.jpg", - "response": "A cup with the Disneyland Paris logo on it.", - "id": 17185 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c38aa9e985010c3.jpg", - "response": "A mug with the state of Texas on it is sitting on a table.", - "id": 17186 - }, - { - "image_path": "/content/drive/MyDrive/combined/18260253ec3a6f46.jpg", - "response": "A coffee mug with the state of Texas on it and the phrase \"Don't mess with Texas\" printed on it. The mug is sitting next to an open book on a white sheet.", - "id": 17187 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b704c05536e1fd2.jpg", - "response": "A table with two Starbucks coffee mugs on it.", - "id": 17188 - }, - { - "image_path": "/content/drive/MyDrive/combined/121c83c0a2be21d5.jpg", - "response": "A cup of tea sits on a red tablecloth with white dots. The tea cup has the letter A on it.", - "id": 17189 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac9a54fa1b7e9e4.jpg", - "response": "A Starbucks coffee mug with the name Hamburg on it.", - "id": 17190 - }, - { - "image_path": "/content/drive/MyDrive/combined/26b61c42bfb9d9bc.jpg", - "response": "A Daytona Beach Florida mug in grey color with a racing car on the side of it.", - "id": 17191 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bde74034435d004.jpg", - "response": "A coffee mug that says \"I'm going to change the world\" on it.", - "id": 17192 - }, - { - "image_path": "/content/drive/MyDrive/combined/2212108d1d140594.jpg", - "response": "A white coffee mug with the word Dennys on it is sitting on a table.", - "id": 17193 - }, - { - "image_path": "/content/drive/MyDrive/combined/3411705d79d1a16d.jpg", - "response": "A white Starbucks coffee mug is sitting on a wooden table. The mug has a shadow on the table.", - "id": 17194 - }, - { - "image_path": "/content/drive/MyDrive/combined/152ed37c40ccb75d.jpg", - "response": "A black and white photo of a collection of cups. Each cup has a letter of the alphabet on it. The letters are in a pile and are in different sizes.", - "id": 17195 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d702ed5d9e839ff.jpg", - "response": "A white Google mug with the Google logo on it.", - "id": 17196 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8d75c987fec39e.jpg", - "response": "A starbucks coffee mug on a brown table.", - "id": 17197 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce3ee36f70153ea.jpg", - "response": "A cup of coffee with foam on top is on a table. The foam has the shape of the Bosphorus Bridge from Istanbul. The cup is Istanbul Starbucks coffee. Next to the cup is a small package of sugar. There is a small package of creamer on the table as well. A spoon is in a small glass jar. The table is brown.", - "id": 17198 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f5905e069fc75e.jpg", - "response": "A table with a cup of coffee, a book, a pack of cigarettes and a lighter on it.", - "id": 17199 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d7d37ccd4ee328b.jpg", - "response": "A hand holding a white coffee mug with a red sticker on it.", - "id": 17200 - }, - { - "image_path": "/content/drive/MyDrive/combined/152f761ee7dbbd69.jpg", - "response": "A person is holding a coffee mug with the word black on it.", - "id": 17201 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a585ca3a0abee5d.jpg", - "response": "A bottle of beer and a glass of beer are on a table.", - "id": 17202 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d03abc75d7aa3ae.jpg", - "response": "a white mug with the words cafe st jorge on it", - "id": 17203 - }, - { - "image_path": "/content/drive/MyDrive/combined/26ba1fea5cc85891.jpg", - "response": "A stuffed animal sitting on a table in front of a coffee mug.", - "id": 17204 - }, - { - "image_path": "/content/drive/MyDrive/combined/3afb0ce4b23762b8.jpg", - "response": "A black coffee mug with the words Call of Duty in white on it.", - "id": 17205 - }, - { - "image_path": "/content/drive/MyDrive/combined/16c541870771068e.jpg", - "response": "A coffee mug that says \"BAIL HUMBUG\" on it.", - "id": 17206 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c37dca03d3afa3e.jpg", - "response": "A white mug with black lettering that says \"I'm trying to be awesome today, but I'm exhausted from being so freakin' awesome yesterday.\"", - "id": 17207 - }, - { - "image_path": "/content/drive/MyDrive/combined/298da00a4c8f3214.jpg", - "response": "A tall coffee mug with a brown and white polka dot design.", - "id": 17208 - }, - { - "image_path": "/content/drive/MyDrive/combined/162aad5b32ba9789.jpg", - "response": "a cup of tea with a lemon in it", - "id": 17209 - }, - { - "image_path": "/content/drive/MyDrive/combined/0966cd7468e3e2ee.jpg", - "response": "A woman wearing glasses is holding a coffee mug in front of her face. She is standing in a restaurant with other people. There are bottles on the table behind her and another table with a man sitting at it. There is also a cup on the table behind her.", - "id": 17210 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f6aac87415c6469.jpg", - "response": "The image features two plastic cups sitting next to each other on a table. The left cup is blue with a blue lid and is decorated with the name Joshua. The right cup is green with a green lid and is also decorated with the name Jesse. The cups are colorful and have a playful design with the names spelled out in colored letters.", - "id": 17211 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e87c84601e34ea3.jpg", - "response": "A white coffee mug with a logo for Deaf Chat Coffee on it.", - "id": 17212 - }, - { - "image_path": "/content/drive/MyDrive/combined/152d2cc64099b2c3.jpg", - "response": "A coffee mug with a coat of arms on it is filled with coffee.", - "id": 17213 - }, - { - "image_path": "/content/drive/MyDrive/combined/27119dce8d2dc974.jpg", - "response": "A white coffee mug with the words \"I love NY\" on it.", - "id": 17214 - }, - { - "image_path": "/content/drive/MyDrive/combined/146c68bec53d6555.jpg", - "response": "A close up of two ceramic mugs sitting on a desk. The mugs are decorated with a design of a city and the word \"Cancun Mexico\" is embossed on one of the mugs. The mugs are sitting in front of a laptop computer.", - "id": 17215 - }, - { - "image_path": "/content/drive/MyDrive/combined/231237762d8e743e.jpg", - "response": "A white coffee mug with the word Caribbean on it.", - "id": 17216 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a65256e735e468f.jpg", - "response": " A broken white coffee cup(216,69),(538,718) sits next to a matching brown one.", - "id": 17217 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1d5a22b70f95e1.jpg", - "response": "A white Starbucks coffee mug sitting on a table.", - "id": 17218 - }, - { - "image_path": "/content/drive/MyDrive/combined/1346948f4a39e7ea.jpg", - "response": "a white cup with a picture of a square face with a red, white and green gradient on it.", - "id": 17219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fea660600b21118.jpg", - "response": "In the image there are many white coffee mugs with a red, white and black logo on them. The logo is for a newspaper called The Phoblacht. The mugs are on display and are for sale. Some of the mugs have a green and black sticker on them with the name Phoblacht on it.", - "id": 17220 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bf3998edd34afa3.jpg", - "response": "A red mug with the words Treat's Sweet Shop on it.", - "id": 17221 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c419ba5057ba752.jpg", - "response": "The image shows two coffee mugs sitting on a counter. The one on the left has a picture of the Indiana Jones Adventure ride at Disneyland on it, and the one on the right has a picture of Indiana Jones on it. Both mugs are white.", - "id": 17222 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2801b574523ee1.jpg", - "response": "A coffee mug with a picture of Mr. T on it is half full of coffee.", - "id": 17223 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f6a9d380d47c387.jpg", - "response": "A white coffee mug with blue letters that say \"safety first\" on it.", - "id": 17224 - }, - { - "image_path": "/content/drive/MyDrive/combined/4152e7619e44b40a.jpg", - "response": "A coffee mug with a picture of a person wearing a hat and glasses on it.", - "id": 17225 - }, - { - "image_path": "/content/drive/MyDrive/combined/128526557f608932.jpg", - "response": "A bottle of Old Tom Original ale next to a wine glass.", - "id": 17226 - }, - { - "image_path": "/content/drive/MyDrive/combined/1db5c967768d4bb5.jpg", - "response": "A wooden table with a cup of coffee and a book on top of it. The book is a copy of Corridor, a graphic novel.", - "id": 17227 - }, - { - "image_path": "/content/drive/MyDrive/combined/193e69d1349ebfab.jpg", - "response": "A coffee themed sign with a cup of coffee on it.", - "id": 17228 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c5b63b1302a3b04.jpg", - "response": "a white coffee mug with a pink post it note on it that says \"ged's mug o.k.\"", - "id": 17229 - }, - { - "image_path": "/content/drive/MyDrive/combined/158ce286d916a1cf.jpg", - "response": "The image features two Highlands Coffee mugs sitting on a wooden table. The mugs are black with the Highlands Coffee logo printed on the side. The logo is a combination of white and orange text. The mugs are side by side on the table and appear to be ceramic.", - "id": 17230 - }, - { - "image_path": "/content/drive/MyDrive/combined/1381dcec638c4adf.jpg", - "response": "In the image there is a white ceramic coffee mug with various cartoon faces on it. The words \"You Digital Pho\" are written on the mug. The mug is placed on a white counter and a black table. There are two chairs visible in the background, one to the right and one further back. The background is a white wall.", - "id": 17231 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c84bcf923323962.jpg", - "response": "A red coffee mug is sitting on top of a napkin on a wooden table. The mug has the word \"Nescafe\" written on it. Next to the mug is a computer mouse and a keyboard. There are also several books scattered around the table.", - "id": 17232 - }, - { - "image_path": "/content/drive/MyDrive/combined/2051ea331417ebaa.jpg", - "response": "A coffee mug with the word Chicago written on it.", - "id": 17233 - }, - { - "image_path": "/content/drive/MyDrive/combined/18e7e1eb8eb38e87.jpg", - "response": "A coffee mug with a picture of a woman holding a gun on it.", - "id": 17234 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c232c4975d25de.jpg", - "response": "A cup of coffee sits on a table next to a container of Splenda.", - "id": 17235 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce055fd996edc37.jpg", - "response": "A white coffee mug with the word \"rain\" on it and a picture of a water droplet.", - "id": 17236 - }, - { - "image_path": "/content/drive/MyDrive/combined/25b84e912afd2ada.jpg", - "response": "The image features two coffee mugs, one on the left and one on the right. The mug on the left has an Apple logo on it, and the mug on the right has a colorful print of a woman ice skating. Both mugs are white.", - "id": 17237 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fc932964f8d6b20.jpg", - "response": "A coffee mug(57,26),(995,967) with the word Sanger on it.", - "id": 17238 - }, - { - "image_path": "/content/drive/MyDrive/combined/11c787abce5eeb6f.jpg", - "response": "A white mug with red text that says Pizza Hut.", - "id": 17239 - }, - { - "image_path": "/content/drive/MyDrive/combined/21dd3a1c2da2a765.jpg", - "response": "A white coffee mug with a blue sticker on it that says Jobba Hemma Dagen.", - "id": 17240 - }, - { - "image_path": "/content/drive/MyDrive/combined/165f45eab9b2c9d1.jpg", - "response": "A cup of coffee sits on a saucer on a table.", - "id": 17241 - }, - { - "image_path": "/content/drive/MyDrive/combined/15995dc8d65f07a5.jpg", - "response": "A coffee mug with the word Disney's on it.", - "id": 17242 - }, - { - "image_path": "/content/drive/MyDrive/combined/207bac1bc776c95e.jpg", - "response": "A red and white mug of coffee sits on a desk.", - "id": 17243 - }, - { - "image_path": "/content/drive/MyDrive/combined/5091e1f3b5a27a0f.jpg", - "response": "A laptop computer is turned on and sitting on a desk.", - "id": 17244 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e02735ca3dd823.jpg", - "response": "A black coffee mug with the word Cleaver on it.", - "id": 17245 - }, - { - "image_path": "/content/drive/MyDrive/combined/109fb85b103122cc.jpg", - "response": "A woman sitting at a desk with a computer and a phone.", - "id": 17246 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e49b6703e24bf8e.jpg", - "response": "A group of people sitting around a table with laptops and cellphones.", - "id": 17247 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aa65ec2690f99d0.jpg", - "response": "A man standing in front of a screen giving a presentation.", - "id": 17248 - }, - { - "image_path": "/content/drive/MyDrive/combined/2143b4f0db0a6ff2.jpg", - "response": "The image shows a group of people working on a pair of laptops on a wooden table. The people are sitting around the table and appear to be working on the laptops. There are also a few books scattered around the table.", - "id": 17249 - }, - { - "image_path": "/content/drive/MyDrive/combined/500a442d55f64a71.jpg", - "response": "A white and blue ceramic coffee mug that says White Castle on it.", - "id": 17250 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cefcb45a504cee4.jpg", - "response": "A group of five people are sitting around a table working on crafts. They are sitting on black chairs and are working on various projects. There are scissors and other crafting supplies on the table. One person is wearing a red shirt that says \"senior.\"", - "id": 17251 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c25fc8e491b7f07.jpg", - "response": "A computer monitor is sitting on a desk.", - "id": 17252 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c3c4ebbe80a684.jpg", - "response": "A coffee mug with the word CHURCH on it.", - "id": 17253 - }, - { - "image_path": "/content/drive/MyDrive/combined/4648eac472a1d7f5.jpg", - "response": "A white diner style coffee mug with a black logo that says \"we eat coffee for breakfast\" in front of a sign that says \"pretty good\". The mug is on a white napkin and a white drawstring bag.", - "id": 17254 - }, - { - "image_path": "/content/drive/MyDrive/combined/42e7b5335535644a.jpg", - "response": "Two white coffee mugs with black lettering that spell out the word \"CUNT\" are sitting on a table.", - "id": 17255 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e8249060927c3d.jpg", - "response": "A wall with a shelf on it that says \"FEBREIT\" on it.", - "id": 17256 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a4d33d35f222fb0.jpg", - "response": "A man sitting in a chair in a room.", - "id": 17257 - }, - { - "image_path": "/content/drive/MyDrive/combined/12d7e3a0205aeefb.jpg", - "response": "In the image, there are two men sitting at a desk with two desktop computers. The desk has two keyboards, two computer mice, and two monitors. There are also two cups on the desk, one near each man. One cup is yellow and filled with a beverage, while the other is clear and empty. There are several books scattered around the desk, and a TV is mounted on the wall behind the men. The room has a window with blinds drawn, and a chair is positioned in front of each computer.", - "id": 17258 - }, - { - "image_path": "/content/drive/MyDrive/combined/47db25b2e161f784.jpg", - "response": "A white coffee mug sitting on a wooden table. The mug has a Twitter logo on it and the letters \"T\" and \"F\" are printed on the side.", - "id": 17259 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a8830e36c78f5e7.jpg", - "response": "A large white coffee cup with the words Fresh Grounds on it.", - "id": 17260 - }, - { - "image_path": "/content/drive/MyDrive/combined/469a149ec94f9f9c.jpg", - "response": "A room with a table that has a laptop on it. There are two green chairs in front of the table. On the wall behind the table are several McAuliffe for Governor signs.", - "id": 17261 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fa6c2b883eee9da.jpg", - "response": "A man and a woman are working in an office. The man is sitting at a desk with a computer and a keyboard. There is a mouse on the desk in front of the computer. The woman is sitting at another desk in the office.", - "id": 17262 - }, - { - "image_path": "/content/drive/MyDrive/combined/1527c37b0c9eb097.jpg", - "response": "A pair of black computer monitors sitting on a desk.", - "id": 17263 - }, - { - "image_path": "/content/drive/MyDrive/combined/2601a507afe4be3c.jpg", - "response": "A woman wearing a black shirt is sitting in front of a desk with a computer on it. The computer has a monitor, keyboard, and mouse. The woman is also wearing a necklace.", - "id": 17264 - }, - { - "image_path": "/content/drive/MyDrive/combined/2568ac06fce45596.jpg", - "response": "A book with a blue and white cover with a picture of a typewriter.", - "id": 17265 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e4df2a47bb5b651.jpg", - "response": "A calculator in a case being held by a person's thumb.", - "id": 17266 - }, - { - "image_path": "/content/drive/MyDrive/combined/1958aec5911db4da.jpg", - "response": "An old advertisement for a Williams No. 3.", - "id": 17267 - }, - { - "image_path": "/content/drive/MyDrive/combined/11feeb4ad373a5db.jpg", - "response": "A pair of white earbuds are plugged into a black laptop.", - "id": 17268 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c060b90c1686d3e.jpg", - "response": "A black laptop computer keyboard.", - "id": 17269 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c8b4a51a94f8ae.jpg", - "response": "A man and a woman sitting at a table with many boxes stacked on top of it.", - "id": 17270 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ba77c6f8f67ae1.jpg", - "response": "An old blue and white typewriter with the top open and sitting on a table.", - "id": 17271 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bfd8d9d21774a40.jpg", - "response": "A desk with a typewriter on it.", - "id": 17272 - }, - { - "image_path": "/content/drive/MyDrive/combined/125cf067717da639.jpg", - "response": "A white board with writing on it.", - "id": 17273 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a82f1b0c25339f9.jpg", - "response": "A wooden crate with metal fasteners holds a collection of metal items.", - "id": 17274 - }, - { - "image_path": "/content/drive/MyDrive/combined/2227de9c8682818c.jpg", - "response": "An old computer sits on a green table.", - "id": 17275 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c304814f9fb605.jpg", - "response": "a typewriter with the word monarch on it", - "id": 17276 - }, - { - "image_path": "/content/drive/MyDrive/combined/0959604a69fbd9e6.jpg", - "response": "A litronix 2230 calculator with a brown case and a book of instructions.", - "id": 17277 - }, - { - "image_path": "/content/drive/MyDrive/combined/1159fe3a02b8ca91.jpg", - "response": "A blackboard with writing on it.", - "id": 17278 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b48a5c8d0bf10fa.jpg", - "response": "In the image there is a table with a row of crayola crayons on it. The crayons are in a neat row and are all different colors. Some of the crayons are unsharpened while others are sharpened. There is a yellow crayon laying on its side in the top left corner of the image and a pink crayon laying on its side in the top right corner of the image. There is also a green box of crayons in the top left corner of the image.", - "id": 17279 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fea8ceea912a34a.jpg", - "response": "A pair of Amstrad CPC 464 computers in a box.", - "id": 17280 - }, - { - "image_path": "/content/drive/MyDrive/combined/25776b27892b7b6a.jpg", - "response": "A desk with a typewriter on it and a lamp on the left side of the desk. There are papers on the desk and a book on the typewriter.", - "id": 17281 - }, - { - "image_path": "/content/drive/MyDrive/combined/07dccfd00145896c.jpg", - "response": "The image features an old computer with a keyboard in front of it. The keyboard has a control key on the left side and an escape key on the right side. There is a sticker on the computer with the word \"apple\" on it. The computer is sitting on a table.", - "id": 17282 - }, - { - "image_path": "/content/drive/MyDrive/combined/230c50f5e12533a8.jpg", - "response": "A wooden desk with a computer keyboard on it. A black and white marker is laying in front of the keyboard.", - "id": 17283 - }, - { - "image_path": "/content/drive/MyDrive/combined/14cfc36acffdfed4.jpg", - "response": "A blue and white typewriter sits on a brick surface.", - "id": 17284 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a5cf3875e1eccb7.jpg", - "response": "A group of students are sitting in a classroom. They are writing in notebooks and one student has a cell phone on their desk.", - "id": 17285 - }, - { - "image_path": "/content/drive/MyDrive/combined/2770bfdb92c7020b.jpg", - "response": "A image of a pile of money, including coins and notes, with a calculator sitting next to it.", - "id": 17286 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b840f518f7c3e8.jpg", - "response": "A white board with writing on it.", - "id": 17287 - }, - { - "image_path": "/content/drive/MyDrive/combined/18cbb2be2d609fb3.jpg", - "response": "An Epson laptop computer with a keyboard and screen.", - "id": 17288 - }, - { - "image_path": "/content/drive/MyDrive/combined/0957a5617f614d03.jpg", - "response": "A calculator with the front part removed, showing the circuit board and buttons.", - "id": 17289 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e969d8c0eea1605.jpg", - "response": "A close up of a typewriter that is made by Royal.", - "id": 17290 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a25561d9ab4acba.jpg", - "response": "An old gray typewriter with a white keyboard.", - "id": 17291 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdbd4addf4f7da4.jpg", - "response": "A museum display of an old computer on a white desk.", - "id": 17292 - }, - { - "image_path": "/content/drive/MyDrive/combined/2112d352b15a2074.jpg", - "response": "A table with many different types of phones on it.", - "id": 17293 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e82a2864d83ca44.jpg", - "response": "A Tulip Motion Line ml-sb 5/120 machine is on a table. The machine is grey and black. There is a pen on top of the machine. The pen is grey and black. The machine has many buttons on the top and bottom. The buttons are black and white. The buttons have numbers on them. The numbers are blue and white. The numbers are 5, 4, 6, 8, 9, 2, 1, 3, 7, 0, $, #, F, E, C, A, S, D, Q, W, R, T, Y, U, I, P, B, G, H, J, K, L, M, N, O, P, and Z.", - "id": 17294 - }, - { - "image_path": "/content/drive/MyDrive/combined/459b300fe8d78eae.jpg", - "response": "A book with the word Google on the cover sitting on a desk.", - "id": 17295 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e3d48572cd5d62f.jpg", - "response": "A desk with a calculator, a pen and a notebook. The notebook is orange and has a pink post it note on top of it. The pen is blue and the calculator is silver. The desk is covered with printed numbers and letters.", - "id": 17296 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f806acbacda791d.jpg", - "response": "The image shows the keyboard and screen of a Toshiba laptop. The laptop is open and sitting on a wooden desk. The keyboard is black and has several keys, including the letters A, S, D, F, and others. The screen is dark, but the laptop is turned on. The laptop is also labeled as an Ultrabook and has Intel inside stickers on the back.", - "id": 17297 - }, - { - "image_path": "/content/drive/MyDrive/combined/49beef7d9898bf46.jpg", - "response": "A vintage Olympia typewriter with the word Olympia on the top.", - "id": 17298 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c0c80376cf24d3.jpg", - "response": "A wooden wall with a blackboard on it. The blackboard has writing on it in French. There are several small cards tacked to the wall beneath the blackboard. There are also several bottles in front of the wall.", - "id": 17299 - }, - { - "image_path": "/content/drive/MyDrive/combined/403f5d18b9108bb6.jpg", - "response": "A person is holding a calculator in front of a white wall. The calculator is a Texas Instruments TI-83 Plus and is black in color. The person is holding the calculator with both hands, and their nails are painted blue. The person is also wearing a pink bracelet on their left wrist.", - "id": 17300 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ff63d8b905440c.jpg", - "response": "A close up of two old typewriters on display. One is a grey typewriter and the other is black.", - "id": 17301 - }, - { - "image_path": "/content/drive/MyDrive/combined/547c2585e082185d.jpg", - "response": "A dusty blue and white typewriter with the word \"antares\" on the top left corner.", - "id": 17302 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b133f90207f3fa6.jpg", - "response": "A keyboard with red and blue keys on a cream colored computer.", - "id": 17303 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ede0cdf42e37c0f.jpg", - "response": "A man sitting at a desk with many computers around him.", - "id": 17304 - }, - { - "image_path": "/content/drive/MyDrive/combined/434009d93e79d2ef.jpg", - "response": "An old black typewriter with the word Underwood written on it.", - "id": 17305 - }, - { - "image_path": "/content/drive/MyDrive/combined/5150b7facdfa3d1b.jpg", - "response": "A close up of a typewriter with a green color scheme.", - "id": 17306 - }, - { - "image_path": "/content/drive/MyDrive/combined/371373ecb1827a6f.jpg", - "response": "A old Underwood typewriter on a desk with some paper.", - "id": 17307 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c42141de0083a8f.jpg", - "response": "A sign in sheet for public comment for a meeting of the governor's task force on rural economic development is shown on a clipboard.", - "id": 17308 - }, - { - "image_path": "/content/drive/MyDrive/combined/4425834c774c3fbd.jpg", - "response": "The image shows a close up of an old typewriter. The keys are black and white and are arranged in rows. The keys on the top row are numbered 1, 2, 3, 4, 5, 6, 7, and 8. The keys on the second row from the top are labeled A, B, C, D, E, F, G, H, I, J, K, L, M, and N. The keys on the third row from the top are labeled Q, R, S, T, U, V, W, X, Y, Z, and [ respectively. The keys on the bottom row are labeled A, B, C, D, E, F, G, H, I, J, K, L, M, and N. The space bar is also visible and is labeled \"Space\".", - "id": 17309 - }, - { - "image_path": "/content/drive/MyDrive/combined/513dfe72af27ac03.jpg", - "response": "An old Epson word processor with a keyboard and screen.", - "id": 17310 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f76e5f55914823d.jpg", - "response": "A black computer keyboard sitting on top of a black box.", - "id": 17311 - }, - { - "image_path": "/content/drive/MyDrive/combined/4781ad04974a7c58.jpg", - "response": "An old typewriter with keys that say QWERTY on them.", - "id": 17312 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d64472ea6306593.jpg", - "response": "a chalkboard with writing on it that says \"you're a 10? on the ph scale, maybe 'cus you basic\"", - "id": 17313 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c4295dbc541376f.jpg", - "response": "In the image there is an old Smith Premier typewriter. It is a black typewriter with a round body and a flat base. The keys are white and there is a space bar in the middle. The typewriter has a black handle on the top and a round knob on the right side. The type writer is placed on a stool which is placed on a wooden table. The table is made of wood and has a glass top. The glass top has reflections of the objects around it.", - "id": 17314 - }, - { - "image_path": "/content/drive/MyDrive/combined/2db56fed2f7c5d37.jpg", - "response": "A silver laptop with a black keyboard and screen.", - "id": 17315 - }, - { - "image_path": "/content/drive/MyDrive/combined/5559e4adcdc976ad.jpg", - "response": "A typewriter with a page in it that says \"New Works\" on it.", - "id": 17316 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c68be0c23380f46.jpg", - "response": "A black and white image of a Yost typewriter.", - "id": 17317 - }, - { - "image_path": "/content/drive/MyDrive/combined/40bd0301e9cad2c9.jpg", - "response": "A calculator sits on top of a cereal box which is on a couch.", - "id": 17318 - }, - { - "image_path": "/content/drive/MyDrive/combined/4023abe0922725f9.jpg", - "response": "The image features a box of markers on a wooden table. The box is open and contains a variety of markers, as well as a pen. The markers are of different colors and are arranged in a grid pattern on the box. The box itself is black and red.", - "id": 17319 - }, - { - "image_path": "/content/drive/MyDrive/combined/38e15863af1f80ee.jpg", - "response": "A white board with writing on it.", - "id": 17320 - }, - { - "image_path": "/content/drive/MyDrive/combined/28429e3df3abbe28.jpg", - "response": "A museum display case holds an old calculator and a tablet-like device. The calculator is black and has a screen on top. The tablet-like device is black as well and has a screen on the top. Both items are on display for people to see.", - "id": 17321 - }, - { - "image_path": "/content/drive/MyDrive/combined/458fde71c4282476.jpg", - "response": "A black lenovo laptop with a red track pad.", - "id": 17322 - }, - { - "image_path": "/content/drive/MyDrive/combined/49d47b340c239a07.jpg", - "response": "A typewriter is being cleaned in a blue plastic tub filled with soapy water.", - "id": 17323 - }, - { - "image_path": "/content/drive/MyDrive/combined/51897f12b171db17.jpg", - "response": "In the image, a student is working on an activity book. They are holding a black pencil and have a popsicle stick in their hand. The student is filling in a coloring book page with a picture of a bee. The coloring book is open to a page with a bee on it. The student is filling in the bee's body with a yellow pencil. There are several other coloring book pages visible in the background.", - "id": 17324 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a84af35aee6069.jpg", - "response": "A white board with a seahawk logo at the top and the number 12 to the right. It has several items written on it in marker including soup, sandwich, and meat.", - "id": 17325 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aaf7fd06d1e7ae9.jpg", - "response": "A grey Commodore 64 computer from 1982.", - "id": 17326 - }, - { - "image_path": "/content/drive/MyDrive/combined/3925c7677c88464b.jpg", - "response": "A white laptop computer sitting on a desk.", - "id": 17327 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c988acc5330ee76.jpg", - "response": "a blue and white typewriter on a wooden table", - "id": 17328 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dadfc6e44a74844.jpg", - "response": "A person typing on a black AlphaSmart 3000. The screen displays the words \"his is the AlphaSmart3000. I bought it for writing. It may be nice to type something without distractions such as the internet.\"", - "id": 17329 - }, - { - "image_path": "/content/drive/MyDrive/combined/34025c931aaf1bb8.jpg", - "response": "A white board with a lot of writing on it.", - "id": 17330 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fb99af2e910da2f.jpg", - "response": "A white board with a chart on it that says Performance TRIAD at the top.", - "id": 17331 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f46dcd5c28603f2.jpg", - "response": "A white board with writing on it.", - "id": 17332 - }, - { - "image_path": "/content/drive/MyDrive/combined/30d2e377244d82ee.jpg", - "response": "A photo of British currency including coins and notes next to a calculator.", - "id": 17333 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6333abf391fd8f.jpg", - "response": "A keyboard and a paper on a desk.", - "id": 17334 - }, - { - "image_path": "/content/drive/MyDrive/combined/314a0b8b08eeced0.jpg", - "response": "A Sanyo electronic typewriter sits on a desk next to a circuit board.", - "id": 17335 - }, - { - "image_path": "/content/drive/MyDrive/combined/29dcfd285ae703c0.jpg", - "response": "A white piece of paper with a blue car on it that says \"Toyota is now on Office 365\" on the top.", - "id": 17336 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5c6c69749a8c88.jpg", - "response": "A laptop with a pink sale sign in front of it that says 19800.", - "id": 17337 - }, - { - "image_path": "/content/drive/MyDrive/combined/441ed96c86bad8da.jpg", - "response": "A man with a green shirt and black backpack is holding a black cell phone and is looking at a map. The map is titled The Great Bear.", - "id": 17338 - }, - { - "image_path": "/content/drive/MyDrive/combined/43d22deb2f22a3ac.jpg", - "response": "A telescope is on display on a table. It is sitting on a box and appears to be a part of a laptop computer. The telescope has a black tube and a red dot at the end. There is a hand holding a pink object near the table.", - "id": 17339 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5e1a3b61900c4e.jpg", - "response": "A pile of white booklets with the title \"MEE-DOEN IS DE KUNST\" in blue on a wooden table.", - "id": 17340 - }, - { - "image_path": "/content/drive/MyDrive/combined/45c3d550a0ff3695.jpg", - "response": "A person filling out a form with a yellow piece of paper.", - "id": 17341 - }, - { - "image_path": "/content/drive/MyDrive/combined/36dd9ee650e1c888.jpg", - "response": "A cardboard box with the number 215 written on it.", - "id": 17342 - }, - { - "image_path": "/content/drive/MyDrive/combined/52ea5fee2ab37a48.jpg", - "response": "A parking meter with the time set at 0:23.", - "id": 17343 - }, - { - "image_path": "/content/drive/MyDrive/combined/36f03199a3bb9314.jpg", - "response": "A black and white photo of a row of parking meters on a city street.", - "id": 17344 - }, - { - "image_path": "/content/drive/MyDrive/combined/42159e644aa7b632.jpg", - "response": "A double parking meter on a city street.", - "id": 17345 - }, - { - "image_path": "/content/drive/MyDrive/combined/358b7f544b48a66c.jpg", - "response": "A close up of two parking meters, one says expired.", - "id": 17346 - }, - { - "image_path": "/content/drive/MyDrive/combined/20a0f16c340cded1.jpg", - "response": "A pair of parking meters are covered in snow, with two cars in the background.", - "id": 17347 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad9fd3133e01c7f.jpg", - "response": "A double parking meter with two hours left on both sides.", - "id": 17348 - }, - { - "image_path": "/content/drive/MyDrive/combined/1456f6d3c9ea8d21.jpg", - "response": "A pair of parking meters are shown in front of a stone wall. One meter is on the left and the other is on the right. They are both grey in color and have a digital screen on top. The one on the left has a sticker that says \"Quarters Only\" and has a sticker that says \"Insert Valid Coin Only\". The one on the right has a sticker that says \"Quarters Only\" and has a sticker that says \"Display Indicate Time Purchased\". Both meters have a coin slot on the top and a lever to put the coins in.", - "id": 17349 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6d63cff9e78557.jpg", - "response": "A parking meter on a sidewalk with a sticker on it that says \"Cancel All Your Credit Cards!!\".", - "id": 17350 - }, - { - "image_path": "/content/drive/MyDrive/combined/48a2ea825e3a5247.jpg", - "response": "A double parking meter on the sidewalk next to a street.", - "id": 17351 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f456beeab60c285.jpg", - "response": "A window with a painting of a womans eyes on it.", - "id": 17352 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bde4f0059d669fb.jpg", - "response": "A red expired parking meter with a white expired sticker on it.", - "id": 17353 - }, - { - "image_path": "/content/drive/MyDrive/combined/526a55c026fafe06.jpg", - "response": "A parking meter with a blue shirt draped over it.", - "id": 17354 - }, - { - "image_path": "/content/drive/MyDrive/combined/554efdb8009d5d17.jpg", - "response": "A parking meter sitting on the sidewalk next to a street.", - "id": 17355 - }, - { - "image_path": "/content/drive/MyDrive/combined/2163e764c1e571ad.jpg", - "response": "A parking meter with the numbers 568 and 47610 on it.", - "id": 17356 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d12b7ac04c313fa.jpg", - "response": "A black parking meter with snow on it.", - "id": 17357 - }, - { - "image_path": "/content/drive/MyDrive/combined/369e3a107baef1fa.jpg", - "response": "A parking meter on the side of a street.", - "id": 17358 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4168c753f5d333.jpg", - "response": "A parking meter on the side of a road.", - "id": 17359 - }, - { - "image_path": "/content/drive/MyDrive/combined/30b825b8451cce16.jpg", - "response": "A stone wall with a machine on it.", - "id": 17360 - }, - { - "image_path": "/content/drive/MyDrive/combined/21697c18d06db5f6.jpg", - "response": "A black double parking meter is sitting on the side of the road.", - "id": 17361 - }, - { - "image_path": "/content/drive/MyDrive/combined/50730a3399424934.jpg", - "response": "A parking meter with the number 420 written on it.", - "id": 17362 - }, - { - "image_path": "/content/drive/MyDrive/combined/2617502419d8da0c.jpg", - "response": "A double parking meter with a plastic bag taped to it.", - "id": 17363 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b28bc2ac29eeeb0.jpg", - "response": "A blue parking meter with a green and white sticker on the front.", - "id": 17364 - }, - { - "image_path": "/content/drive/MyDrive/combined/08bf558ace20933b.jpg", - "response": "A parking meter with a pink and white sticker on it.", - "id": 17365 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1b176cb5074004.jpg", - "response": "A double headed parking meter with two meters on it.", - "id": 17366 - }, - { - "image_path": "/content/drive/MyDrive/combined/42071ce55daa0808.jpg", - "response": "A parking meter with the time at 59 minutes left.", - "id": 17367 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ece8dbc21263094.jpg", - "response": "The image shows three small bottles of perfume next to each other. Each bottle has a gold cap and a white label with the name \"Starlite Jasmine Oil\" written on it. The bottles are made of clear glass. In front of the bottles, there is a red rose with white petals that have fallen off. The rose is placed on a dark brown table. To the right of the bottles, there is a decorative element with blue, red, and gold colors.", - "id": 17368 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f622024ececc050.jpg", - "response": "In the image there is a lipstick with a pink shade of color, it is placed on a white surface. The lipstick is in its original packaging and the box is next to it. The brand of the lipstick is Burberry and it is called No. 31 Rosewood.", - "id": 17369 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a37f57c35c9b9c0.jpg", - "response": "In the image there are several different bottles of perfume. One of the bottles has a silver bow on it. The bottle is made of clear glass and is square shaped. The cap is also made of clear glass and has the number 5 on it. The label on the bottle is white and features the words \"Miss Dior Cherie Eau de Parfum\". There is a reflection of the bottle on the table.", - "id": 17370 - }, - { - "image_path": "/content/drive/MyDrive/combined/0de2fb22679c0763.jpg", - "response": "A vintage illustration of a yellow orchid with brown spots.", - "id": 17371 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b40f10aec0c6f72.jpg", - "response": "A bottle of iroshizuku fountain pen ink, with a black label and a silver string tied around the cap. The bottle is filled with a dark ink.", - "id": 17372 - }, - { - "image_path": "/content/drive/MyDrive/combined/082f444ee299aab5.jpg", - "response": "A bottle of Andreia nail polish in the color hipoalele is being held by a woman's hand. The polish is a light green color and the woman is also wearing a similar colored nail polish on her nails. The bottle has a white label with Andreia in large font and high gloss written in smaller font. The cap of the bottle is light pink.", - "id": 17373 - }, - { - "image_path": "/content/drive/MyDrive/combined/091818630db53396.jpg", - "response": "A bottle of perfume with a pink label on it.", - "id": 17374 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d8af06d9062d1b.jpg", - "response": "A book cover with a black and white drawing of a Concorde jet taking off.", - "id": 17375 - }, - { - "image_path": "/content/drive/MyDrive/combined/07feeacc58897995.jpg", - "response": "In the image, a close-up of a woman's nails is shown. The woman is holding a decorative, gold-trimmed vase with her hands. The woman's nails are painted a pink color, and she has a ring on her middle finger. The background of the image is a black shirt.", - "id": 17376 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee10ec0ad8d63c2.jpg", - "response": "A bottle of Chase Vodka sits on a wooden table. The bottle is made of clear glass and has a black label with the word Chase written on it. The Chase logo is a script font and is written in black. The Chase Vodka name is written in a more flowing script font and is also in black. The label also has the words English Potatoes and the voluume 70cl in red. The Chase Vodka bottle is tied with a bow made of a red, white and blue ribbon. There is a black tag with the Chase logo on it tied to the bottle with the ribbon.", - "id": 17377 - }, - { - "image_path": "/content/drive/MyDrive/combined/082e2e8813e673df.jpg", - "response": "A bottle of Katari 90 sits in the middle of the image. The bottle is black and clear. To the left of the bottle is a brown box with a gold foil strip running down the left side. The box has a black label with gold lettering. The label has a gold border and a gold logo in the top left corner. The label has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name of the company in gold. The label also has a gold rectangle with the name of the product in gold. The label also has a gold rectangle with the name", - "id": 17378 - }, - { - "image_path": "/content/drive/MyDrive/combined/0934863876eb87b4.jpg", - "response": "A table with three boxes of tea on it.", - "id": 17379 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7025cf95cb9156.jpg", - "response": "A wine bottle is shown on the cover of a wine box.", - "id": 17380 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c12e7344197c6b7.jpg", - "response": "A table with a gold metallic makeup bag and various makeup products sitting on top of it.", - "id": 17381 - }, - { - "image_path": "/content/drive/MyDrive/combined/098c16326d94d8b4.jpg", - "response": "In the image there is a row of green bottles of Agwa lined up on a wooden table. The bottles are made of glass and have red caps. They are filled with a green liquid and have labels on them with the Agwa logo and some information about the product. The labels are yellow and red with some orange writing. The bottles are placed close to each other and the table is brown in color. The background is blurry and the lighting is orange.", - "id": 17382 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec9bee9f2b8e70e.jpg", - "response": "A bottle of Bvlgari Pour Homme next to its box, both placed on a wooden table.", - "id": 17383 - }, - { - "image_path": "/content/drive/MyDrive/combined/096b82fcb9debec6.jpg", - "response": "A collage of three different photos, all featuring boxes of perfume. The top photo is a close-up of a green box of Douglas Nuit perfume, the middle photo is a close-up of a yellow box of Nuit Pour Femme perfume, and the bottom photo is a close-up of a black box of Boss Nuit Pour Femme perfume.", - "id": 17384 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a87f5e69821e58d.jpg", - "response": "A black and white bag with the word Katari on it.", - "id": 17385 - }, - { - "image_path": "/content/drive/MyDrive/combined/090850aad2422030.jpg", - "response": "A table with a box of Krampusbonbons on it.", - "id": 17386 - }, - { - "image_path": "/content/drive/MyDrive/combined/117364d0b7517d7d.jpg", - "response": "The image features a bottle of shampoo on a white background. The bottle is made of clear glass and has a black label with the letter \"S\" on it. The label is partially covering the front of the bottle. The cap of the bottle is also black. The bottle is filled with shampoo and the label states that it is apolosophy shampoo. The bottle is empty and ready to be filled with shampoo.", - "id": 17387 - }, - { - "image_path": "/content/drive/MyDrive/combined/08e2d7a05baaf42e.jpg", - "response": "A collection of four different types of alcohol sit on a counter. The types of alcohol are chase vodka, silver tree vodka, square one and an equiibte. Each bottle has a label on it with the name of the alcohol.", - "id": 17388 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc57f49a6cef35f.jpg", - "response": "A sign on a table that says \"is it an office? Is it a study? Is it a free meeting space? No, it's a cafe.\"", - "id": 17389 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0f40dde4a4e770.jpg", - "response": "A white Laneige Water Sleeping Pack box is placed on a red doily. The box is white with black and silver lettering. The silver lettering is larger and centred on the box. The black lettering is smaller and centred on the box. The box is square with rounded corners. The sides of the box are straight and flat. The top of the box has a flat surface with a pattern of small dots. The pattern is silver and the dots are irregularly spaced. The bottom of the box has a centered row of small black text. The text is in two columns and is slightly indented. The box is open slightly at the top.", - "id": 17390 - }, - { - "image_path": "/content/drive/MyDrive/combined/088e302f6ea8a612.jpg", - "response": "A collection of Caudalie products on a table, including a bottle of oil, a box of beauty samples, and a package of hand cream.", - "id": 17391 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f9a47595f7701c9.jpg", - "response": "A collection of three different deodorants.", - "id": 17392 - }, - { - "image_path": "/content/drive/MyDrive/combined/234053291156ac40.jpg", - "response": "A store display for Psy's Man's Balm.", - "id": 17393 - }, - { - "image_path": "/content/drive/MyDrive/combined/35ff73755a36fcfc.jpg", - "response": "A heart shaped bottle of perfume with the word \"Princess\" on it.", - "id": 17394 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b96513db165397f.jpg", - "response": "A bottle of pink perfume with the words \"wish of love\" written on it. The bottle is clear and has a silver spray nozzle. The words \"wish of love\" are written in pink on the bottle. The background is white and the bottle is set against a white backdrop.", - "id": 17395 - }, - { - "image_path": "/content/drive/MyDrive/combined/12116bd472a20e8d.jpg", - "response": "A black box with the word MINIX on it in white.", - "id": 17396 - }, - { - "image_path": "/content/drive/MyDrive/combined/3be4dac11cd47d76.jpg", - "response": "A man and two women are standing in front of a table with several bottles of perfume on it. The women are wearing black dresses and are looking at a perfume bottle that the man is holding. The table also has other bottles of perfume in different shapes and sizes, some with stoppers and others without.", - "id": 17397 - }, - { - "image_path": "/content/drive/MyDrive/combined/216515ec0d6d1f0a.jpg", - "response": "A white, yellow, and black box of Nescafe next to a black box of Nescafe. A black box of Nescafe is also visible in the background. In the foreground, a red box with the word \"nescafe\" printed on it is partially visible.", - "id": 17398 - }, - { - "image_path": "/content/drive/MyDrive/combined/4786e3488f64bcf3.jpg", - "response": "A large stage with a big screen that says Financial Times.", - "id": 17399 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d26c924456461de.jpg", - "response": "A table with nutcrackers and red jars on it.", - "id": 17400 - }, - { - "image_path": "/content/drive/MyDrive/combined/385719c2e8dba9a3.jpg", - "response": "A bottle of Watkins maple extract next to a glass container of maple syrup.", - "id": 17401 - }, - { - "image_path": "/content/drive/MyDrive/combined/23905664b6020f60.jpg", - "response": "A shelf with a gold foiled teddy bear and a four piece fudge sampler.", - "id": 17402 - }, - { - "image_path": "/content/drive/MyDrive/combined/3160eee4830c2079.jpg", - "response": "A white bag with a black handle and a black label that says Katari on it.", - "id": 17403 - }, - { - "image_path": "/content/drive/MyDrive/combined/2012571d64736862.jpg", - "response": "A man standing in front of a glass door.", - "id": 17404 - }, - { - "image_path": "/content/drive/MyDrive/combined/161f40d8ca7c77fa.jpg", - "response": "A bottle of Ralph Lauren Romance perfume next to its pink box. The bottle is a square shape with a silver cap and a label that says \"Ralph Lauren Romance\" in pink and black lettering. The box is rectangular with a pink cover that has the same Ralph Lauren Romance label as the bottle. The box also has the Ralph Lauren logo in the top left corner. The bottle and box are both sitting on a surface that has a heart pattern on it.", - "id": 17405 - }, - { - "image_path": "/content/drive/MyDrive/combined/11cc1fe104c88451.jpg", - "response": "The image features two bottles of room spray from a brand called \"Serene House\". The bottle on the left is red and white and labeled \"Rose & Geranium\". The bottle on the right is blue and white and labeled \"Lavender\". Both bottles are made by Serene House.", - "id": 17406 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f232256d9935c25.jpg", - "response": "A man standing at a podium with a laptop on the podium.", - "id": 17407 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a55109a8b838bbd.jpg", - "response": "A bottle of samurai vodka next to a black box and a red and black knife.", - "id": 17408 - }, - { - "image_path": "/content/drive/MyDrive/combined/32f40923efae3cd6.jpg", - "response": "A red Mercedes fire truck parked in front of a fire station.", - "id": 17409 - }, - { - "image_path": "/content/drive/MyDrive/combined/49c76a8aa695abaf.jpg", - "response": "An advertisement for Old Grand-Dad bourbon, with a bottle and a snow globe with a bust of Benjamin Franklin in it.", - "id": 17410 - }, - { - "image_path": "/content/drive/MyDrive/combined/3763814d69ce60c0.jpg", - "response": "A bottle of Santiago Huckleberry perfume sits on a counter.", - "id": 17411 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cc2b099f31208d6.jpg", - "response": "In the image, there is a table filled with a variety of different perfumes. The perfumes are displayed in different shapes and sizes, some with clear bottles while others have colored bottles. The bottles are open and closed, with some of them having caps and others not. The caps are in different shapes and designs as well. The perfumes are spread out on the table and are not in a specific order.", - "id": 17412 - }, - { - "image_path": "/content/drive/MyDrive/combined/3638989caee9a8c3.jpg", - "response": "A black and white Katari bag and two black Katari boxes are on a black table. The bag has a logo on it and the boxes have the Katari logo and the number 60 and 90.", - "id": 17413 - }, - { - "image_path": "/content/drive/MyDrive/combined/494943ab56f13281.jpg", - "response": "A bottle of alcohol with a gold design on the front.", - "id": 17414 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ce470247cec1bd.jpg", - "response": "A wooden box is mounted on a wall and it has various items placed in it. There are two watches, one in the middle and the other one on the right side of the box. A book is also present on the right side of the box. On the left side of the box, there is a vase with flowers in it. A knife is present in the middle of the box. A bottle is present on the bottom of the box. A pair of scissors is present on the left side of the box. A flask is present on the bottom of the box. A picture of a man and a woman is present on the right side of the box. A bottle is present on the bottom left side of the box. A cup is present on the bottom left side of the box.", - "id": 17415 - }, - { - "image_path": "/content/drive/MyDrive/combined/178baec6f467c5f9.jpg", - "response": "A bottle of Gucci by Gucci perfume on a white background.", - "id": 17416 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e57e2049288f65f.jpg", - "response": "A bottle with a cork stopper filled with small grey lavender flowers. The bottle has a black label with white writing that says \"Only made from tears of sorrow\" on it.", - "id": 17417 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d58f6342cf64c1.jpg", - "response": "A collage of various items including a book, nail polish, perfumes, watches, bracelets, a wallet, a handbag, a purse, a necklace, sunglasses, and a bracelet.", - "id": 17418 - }, - { - "image_path": "/content/drive/MyDrive/combined/25f429686744349e.jpg", - "response": "A wall with several ties hanging on hangers.", - "id": 17419 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ec593dd804e45cf.jpg", - "response": "The image shows a selection of pink and rose patterned gift boxes and containers for a range of products including soap, diffusers and candles. The products are presented in the boxes and also individually on a white surface. The packaging is designed to look like a gift set.", - "id": 17420 - }, - { - "image_path": "/content/drive/MyDrive/combined/1317085db38ff548.jpg", - "response": "A store display of Lancome perfume with a picture of a woman on it.", - "id": 17421 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a3ac6a5a17b00c.jpg", - "response": "A bathroom shelf with a green sign above it that says \"stop thinking\". The shelf has various beauty products on it such as a bottle of perfume, a tube of cream, and a gold box of tissues.", - "id": 17422 - }, - { - "image_path": "/content/drive/MyDrive/combined/36afe987e72fa8fb.jpg", - "response": "In the image there are two boxes of a sodastream source on a store shelf. The boxes are on a black display stand and are both on the left side of the display. Each box has an identical design with the word sodastream in bold white font on the top. The word source is also in bold white font on each box. The boxes also have a black image of a sodastream machine on them. The word starter kit is in bold white font on each box. The word features is also in bold white font on each box. The word home page is in bold white font on each box. The word design award is in bold white font on each box. The word 2016 is in bold white font on each box. The word target is in bold white font on each box. The word maker is in bold white font on each box. The word starter kit features is in bold white font on each box. The word sodastream is in bold white font on each box. The word source is in bold white font on each box. The word 3 level led is in bold white font on each box. The word led is in bold white font on each box. The word fizzi indicator is in bold white font on each box. The word 2017 is in bold white font on each box. The word target is in bold white font on each box.", - "id": 17423 - }, - { - "image_path": "/content/drive/MyDrive/combined/22b312cf70b42397.jpg", - "response": "The image shows a window display of a store that sells Crocs shoes. There are multiple pairs of shoes on display, with some of them being colorful and others being more traditional. The shoes are arranged on colorful stands and are displayed in a bright window.", - "id": 17424 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c4471ec9ea55958.jpg", - "response": "A bottle of Evan Williams Honey Reserve sits on a wooden shelf. The bottle is rectangular and made of clear glass. The label is golden with a bee on it. The bee is flying around a flower. The bottle has a black label with yellow lettering. The letters are slightly curved. The word Honey is in large font. The words Evan Williams and Reserve are in smaller font below the word Honey. The words Kentucky Liquor are in even smaller font at the bottom.", - "id": 17425 - }, - { - "image_path": "/content/drive/MyDrive/combined/542ec93fad502c75.jpg", - "response": "A small toy is placed on top of a Netgear router.", - "id": 17426 - }, - { - "image_path": "/content/drive/MyDrive/combined/186e87a83ad28e64.jpg", - "response": "A bottle of Square One Cucumber Vodka sits on a wooden table. The label is white with green text and a green cap. The bottle is clear and tall.", - "id": 17427 - }, - { - "image_path": "/content/drive/MyDrive/combined/35512f379173bcc9.jpg", - "response": "A collection of bath products, including bath oil, bath foam, and bath creme, are displayed in a white and blue color scheme. The products are in a white and blue container and are also displayed in a glass bottle. The container has a white label with blue writing and a blue and white striped design. The bottle has a cork stopper and a white label with blue writing.", - "id": 17428 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fee974211e47c24.jpg", - "response": "A green bottle of perfume with a red bow around the cap.", - "id": 17429 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b8a538503f01636.jpg", - "response": "A bottle of Exquisite Vodka sits on a wooden table. The bottle is tall and thin with a clear glass body and a blue label around the middle of the bottle. The top of the bottle is a clear cap. The bottle is empty.", - "id": 17430 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a73c861dd5e748f.jpg", - "response": "A bottle of bourbon sits on a wooden table. The bottle is black and has a label that says \"Knob Creek\" in black text. The letter \"C\" is circled in red. The bottle is filled with whiskey.", - "id": 17431 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f041bc460eb8d4d.jpg", - "response": "The image shows three bottles of Revlon nail oil in a row. The colors of the bottles are apricot nectar, sunlit grass, and fresh linen. The bottles are displayed in a clear plastic holder.", - "id": 17432 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cabd5faa931f343.jpg", - "response": "The image shows a display of various perfume bottles in a glass case. There are at least nine bottles visible, arranged on three shelves. The bottles come in different shapes and sizes, and some are clear, while others have colored liquid inside. The display case is made of glass, and the entire scene has an upscale, high-end feel.", - "id": 17433 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d1e74b7d398aaf0.jpg", - "response": "An open red box with a gold Louis XIII bottle inside. The bottle has a gold top and is reflected on the black surface below it. The box is opened and the top of the bottle is visible. The bottle is also visible from the side. The box is red with a gold foil Louis XIII logo. The bottle has a gold label with the same Louis XIII logo. The box and bottle are sitting on a black surface. The background is a white patterned wall.", - "id": 17434 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e613301d86781b6.jpg", - "response": "A sign advertising chocolate versions of famous New York landmarks such as the Statue of Liberty, Empire State Building, and gun.", - "id": 17435 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a81896b5ae3248.jpg", - "response": "The image features a bottle of Flora by Gucci Generous Violet perfume. The bottle is rectangular and made of clear glass. It has a black cap with a bow design and the brand name \"GUCCI\" written in black. The box is square and has a white color with a purple color at the bottom right corner. The box has a floral design and the brand name \"Flora\" written in white. The bottle and the box are next to each other with a white background.", - "id": 17436 - }, - { - "image_path": "/content/drive/MyDrive/combined/167a91c9d7e317b1.jpg", - "response": "A bottle of Barley perfume on a white background.", - "id": 17437 - }, - { - "image_path": "/content/drive/MyDrive/combined/21e341983d32d8a8.jpg", - "response": "A collage of 4 pictures showing a woman holding a pink bottle of perfume, the pink box of the perfume, a close up of the perfume bottle and a close up of the woman's face wearing the perfume.", - "id": 17438 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bc6eccbe4699677.jpg", - "response": "In the image there is a bottle of Mandragore Eau de Toilette by Annick Goutal sitting on a table. The bottle is gold and glass and has a gold lid. Next to the bottle is the box it came in, which is white with a gold border and a gold logo. Inside the box is a card with more information about the product. On a shelf behind the table are several other bottles of perfume.", - "id": 17439 - }, - { - "image_path": "/content/drive/MyDrive/combined/208b5aebde11a8ba.jpg", - "response": "A bottle of Gucci Pour Homme II after shave lotion on a reflective surface with a blue background. The bottle is made of glass and has a wooden top. The label on the bottle is blue and white and features the word \"Gucci\" in white. The word \"Pour Homme II\" is also in white on the label. The after shave lotion is contained in a square bottle.", - "id": 17440 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e2384b4dfe5ebf5.jpg", - "response": "A bottle of Chanel No. 5 perfume on a table. The bottle is made of clear glass and has a black label with the Chanel logo and the words \"N\u00b05 CHANEL PARIS\". The cap of the bottle is made of a black plastic material with a small hole in the center. The bottle is filled with the perfume and some of it can be seen at the bottom of the bottle. The label is slightly curled up at the edges. The bottle is placed on a table with a light-colored surface and there is a light source behind it, causing the bottle to be slightly lit up. The background is blurry and the image is in black and white.", - "id": 17441 - }, - { - "image_path": "/content/drive/MyDrive/combined/30ce15c0fcced65b.jpg", - "response": "A bottle of perfume in someones hand.", - "id": 17442 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c97212dcc87201c.jpg", - "response": "A table with multiple coffee mugs on top of it.", - "id": 17443 - }, - { - "image_path": "/content/drive/MyDrive/combined/420a7eea5d41e09c.jpg", - "response": "A bottle of Barley by Bond & Co sits next to its black box on a white table. The bottle is clear and has a black label with the word Barley on it. The cap of the bottle is black and sits to the left of the bottle. The box for the cologne is black and has a white label with the word Barley on it. The label also has the Bond & Co logo. The logo is a white rectangle with the word Bond & Co in black inside it. The Bond & Co is all capitalized and is inside a small circle. The circle is also white.", - "id": 17444 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f185e5ceae6eb22.jpg", - "response": "A row of five glass bottles of different sizes, filled with liquids of varying colors. The bottles have decorative labels on them.", - "id": 17445 - }, - { - "image_path": "/content/drive/MyDrive/combined/270127c32340ec85.jpg", - "response": "The image features a woman with curly hair posing next to a body of water. She is wearing no shirt and has her left hand on her right shoulder. She is looking directly at the viewer. The woman has a nose ring and appears to have a small tattoo on her left cheek. The background appears to be a beach with the water in the middle and the sky in the background.", - "id": 17446 - }, - { - "image_path": "/content/drive/MyDrive/combined/15226c32675d5d65.jpg", - "response": "A bottle of Chanel No5 perfume.", - "id": 17447 - }, - { - "image_path": "/content/drive/MyDrive/combined/370c1b4abac4b7ec.jpg", - "response": "The image features three bottles of American Crew products. The bottle in the center is Daily Shampoo and is dark brown in color. The bottle on the left is also Daily Shampoo but in a smaller size. The bottle on the right is Daily Hair and Body Wash and is also in a smaller size. All three bottles have black caps. The background of the image is white and the bottles are in front of it.", - "id": 17448 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f1b88bf5ef7bd4.jpg", - "response": "A man drinking a beer next to a bottle of water.", - "id": 17449 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e052063b6846604.jpg", - "response": "An old advertisement for GLOSTORA, a Brazilian after-shave. The ad features a picture of actor Oscarito and promises to make men more attractive.", - "id": 17450 - }, - { - "image_path": "/content/drive/MyDrive/combined/417814b32ecd63c7.jpg", - "response": "A man is cutting a customers hair in a purple room.", - "id": 17451 - }, - { - "image_path": "/content/drive/MyDrive/combined/4692b444eb0e29ef.jpg", - "response": "A bottle of calum eau de toilette on a reflective surface in front of a blue background. The bottle is made of dark glass and has a silver cap. There is a white squiggly line behind the bottle, created with a light painting technique. The background is blue, with a darker blue towards the top right corner of the image. The bottle is centered in the image, with the reflection of the bottle visible on the surface it is placed on.", - "id": 17452 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c937d410a6bdc89.jpg", - "response": "A bottle of perfume with the word unforgivable on it.", - "id": 17453 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b87da1458e9dbf8.jpg", - "response": "A bottle of Acqua Brasileis O Boticario is shown in a close-up shot. The bottle is green and has a gold cap. The label on the bottle is white and features the brand name in white. The bottle is shown on a white background.", - "id": 17454 - }, - { - "image_path": "/content/drive/MyDrive/combined/3599b2d0683c1411.jpg", - "response": "A bottle of Vibrant Peony body mist and a Vibrant Peony sunflower body butter are both placed on a fuchsia background. The body mist bottle is standing upright and has a label that features a cut-in-half pink grapefruit. The body butter is placed in front of the mist bottle and has a label that features a cut-in-half pink grapefruit as well. The background is a fuchsia fabric.", - "id": 17455 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b0db2d50d678d00.jpg", - "response": "A bottle of Chanel No. 5 perfume sits next to its box. The bottle is made of clear glass and has a gold cap. The box is white with black text and a gold border. The bottle has a label with the Chanel logo and the words \"N 5 CHANEL\" in black. The label also has Chanel written in French. The cap of the bottle is gold and clear.", - "id": 17456 - }, - { - "image_path": "/content/drive/MyDrive/combined/5029bc33d2886b40.jpg", - "response": "A variety of shaving products are displayed on a wooden table. There are four bottles of Pugilist shaving soap, one of which is larger and has a black cap. There are also three shaving brushes, one of which is white and has a black handle, the second is white with a black and silver handle, and the third is white with a black handle. There is also a black bottle with a white label and a brown bottle with a blue label.", - "id": 17457 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abaa31d735f0b92.jpg", - "response": "A row of Lampe Berger Paris Home Fragrance bottles on a table.", - "id": 17458 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bce4f90895332df.jpg", - "response": "In the image, there is a bottle of Filvit Antipiojos Dimeticona next to its box. The bottle is white and has a white cap. The box is blue and green and features a young boy giving a thumbs up. The boy is wearing a white and green striped shirt.", - "id": 17459 - }, - { - "image_path": "/content/drive/MyDrive/combined/202c67304c910bee.jpg", - "response": "The image shows a counter with a variety of sun lotions and sunscreen bottles arranged on it. There are at least 12 bottles in total, with different brands and types represented. Some bottles are larger, while others are smaller and come in tubes. The bottles come in different shapes and sizes, and some have yellow or orange caps. The sun lotions are all displayed in an orderly fashion, with each bottle clearly visible.", - "id": 17460 - }, - { - "image_path": "/content/drive/MyDrive/combined/41417d2fcee9de1a.jpg", - "response": "In the image, I can see a blue bottle of Nivea Fresh Freeze Shampoo for men. The label on the bottle is white and features the Nivea logo prominently at the top. The words \"Nivea for Men\" are written in blue, while \"Fresh Freeze Shampoo\" is written in white. There is also an image of ice on the label, which is likely meant to represent the refreshing feel of the product. The bottle is standing upright on a white surface, and there is no visible cap on the bottle.", - "id": 17461 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e9486333d62ce0d.jpg", - "response": "A store display for Listerine mouthwash with a large sign above it.", - "id": 17462 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd1777cb043f6a4.jpg", - "response": "A row of different shampoos and conditioners.", - "id": 17463 - }, - { - "image_path": "/content/drive/MyDrive/combined/319cc0abcb8b4b06.jpg", - "response": "A bathroom shelf with a variety of products on it.", - "id": 17464 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b399bd4564e5fa9.jpg", - "response": "A bathroom counter with a collection of grooming products on it.", - "id": 17465 - }, - { - "image_path": "/content/drive/MyDrive/combined/323f42c413726877.jpg", - "response": "In the image, there is a blue bottle with a white cap. The bottle is filled with a blue liquid and has a label on it. The label is colorful and says \"Gee, Your Hair Smells Terrific\" in yellow, pink, and green font. The words \"fragrance conditioner\" are also on the label in blue font. The bottle is 250ml in size.", - "id": 17466 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea527c107f90a94.jpg", - "response": "A color illustration of a small child sitting in a chair. The child is wearing a white dress and has dark hair. The chair is made of brown wicker and is placed on a grassy hill. The child is looking to the right and holding onto the top of the chair. The words \"Frank Miller's Perfection Shoe Dressing\" are printed in black at the top of the illustration.", - "id": 17467 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c3b3cb5825e9e72.jpg", - "response": "A gold framed poster for James Blackshaw's concert at the future exhibition.", - "id": 17468 - }, - { - "image_path": "/content/drive/MyDrive/combined/10f51c9501e1bfe9.jpg", - "response": "A picture of the virgin Mary holding baby Jesus.", - "id": 17469 - }, - { - "image_path": "/content/drive/MyDrive/combined/0892fcc78c73f19e.jpg", - "response": "A poster that says America must end overfishing.", - "id": 17470 - }, - { - "image_path": "/content/drive/MyDrive/combined/131170cf6b2d3d6e.jpg", - "response": "A album cover with a man sitting on the ground in front of a tree. He is wearing a red hat and holding a tea cup.", - "id": 17471 - }, - { - "image_path": "/content/drive/MyDrive/combined/33cf53578587f637.jpg", - "response": "On the wall, there are two movie posters framed in silver. One is for the movie \"Le Strange Creature du Lac Noir\" and the other is for \"Le Cauchemar de Dracula.\"", - "id": 17472 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8be2b2de5573dc.jpg", - "response": "A laptop screen displays the album cover for \"Gonzales Solo Piano\" by, you guessed it, Gonzales. The image is black and white and features a sketch of the artist sitting at a piano. The artist's name is written in cursive above the sketch. The artist's head is tilted down and his hands are placed on his face. The album cover is displayed on a screen with a black background.", - "id": 17473 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d1dfcc65d28a0b2.jpg", - "response": "The image is a wall with many different items on it.", - "id": 17474 - }, - { - "image_path": "/content/drive/MyDrive/combined/4933b1fe0006653c.jpg", - "response": "The image features a wall with many paintings and drawings on it. There are several drawings of skeletons, including one that is being burned and another that is wearing a hat. One of the skeletons is holding a hotdog. There is also a painting of a skeleton wearing a hat. Another painting features a skeleton wearing a top hat. There is also a painting of a skeleton wearing a suit.", - "id": 17475 - }, - { - "image_path": "/content/drive/MyDrive/combined/44fe413142747513.jpg", - "response": "A framed newspaper page from 1776 is mounted on a wall.", - "id": 17476 - }, - { - "image_path": "/content/drive/MyDrive/combined/423ae5d235f56b0b.jpg", - "response": "A framed picture of the kanji character for fire. The background is a dark red and the kanji character is black. The edges of the frame are black and the character is outlined in gold.", - "id": 17477 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f9308297b0e001b.jpg", - "response": "A circle with seven small squares arranged around it. Each square has a different drawing in it. The drawings are of people, a book, a dog, a vase, a question mark, a person with a light bulb over their head, and a hand holding a heart. Above the circle is written \"set the context\" and below it is written \"create hospitable space\". To the right of the circle is written \"explore questions that matter\" and to the left is written \"share collective discoveries\". Above the circle is written \"encourage everyone's contributions\" and below it is written \"listen together for insights\". In the center of the circle is written \"connect diverse perspectives\".", - "id": 17478 - }, - { - "image_path": "/content/drive/MyDrive/combined/135719073bb142dd.jpg", - "response": "A painting of a woman with a crown above her head.", - "id": 17479 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b800f1cafabd16c.jpg", - "response": "A pile of wood is stacked in a warehouse.", - "id": 17480 - }, - { - "image_path": "/content/drive/MyDrive/combined/3710a82b4f6b2df8.jpg", - "response": "three black and white pictures hanging on a wall.", - "id": 17481 - }, - { - "image_path": "/content/drive/MyDrive/combined/146846e973bf7b61.jpg", - "response": "A framed picture with a woman in a floral dress.", - "id": 17482 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6b78e7e7fbdce5.jpg", - "response": "A painting of a man standing in front of a boat in a harbor.", - "id": 17483 - }, - { - "image_path": "/content/drive/MyDrive/combined/453a83da36930d03.jpg", - "response": "A black and white photograph of a crowd of people gathered in a field.", - "id": 17484 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b8e031787f3295.jpg", - "response": "A graphic that shows a person on the left and a building on the right. The person is black and white and is shown as a circle with a sphere on top. The building is black and white and is shown as a rectangle with four doors. Below the graphic are two numbers. The first is 3000 and the second is 14,000.", - "id": 17485 - }, - { - "image_path": "/content/drive/MyDrive/combined/2521fd7f91bd8597.jpg", - "response": "A framed picture of sushi with chopsticks.", - "id": 17486 - }, - { - "image_path": "/content/drive/MyDrive/combined/4135bb1afeb2b157.jpg", - "response": "a brown frame with a movie poster for Dumb and Dumber inside and other photos around it", - "id": 17487 - }, - { - "image_path": "/content/drive/MyDrive/combined/261fe090b52b7034.jpg", - "response": "A framed magazine cover with a snowboarder on the front.", - "id": 17488 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6feac900dc893c.jpg", - "response": "A framed picture of a man named Leo Johnson.", - "id": 17489 - }, - { - "image_path": "/content/drive/MyDrive/combined/200abe02001a4c74.jpg", - "response": "A page from a book with a picture of a man holding a camera.", - "id": 17490 - }, - { - "image_path": "/content/drive/MyDrive/combined/441a018f395f1cf0.jpg", - "response": "A row of trophies sitting on a wooden table.", - "id": 17491 - }, - { - "image_path": "/content/drive/MyDrive/combined/32b10e7031d709d0.jpg", - "response": "A black and white photo of two people is on the wall. The photo is of a man and a woman and they are both holding surfboards. To the right of the photo is a wall with text on it. The text is in black and white and it says Henri Cartier Bresson. Underneath the text it says 8 Mars-26 Mai.", - "id": 17492 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0922724403de80.jpg", - "response": "A wall with a gold framed picture of a class of children.", - "id": 17493 - }, - { - "image_path": "/content/drive/MyDrive/combined/187b11dc07cdfc36.jpg", - "response": "A picture of the Declaration of Independence. It is in a gold frame and is hanging on a wall.", - "id": 17494 - }, - { - "image_path": "/content/drive/MyDrive/combined/288bdf6434a77a17.jpg", - "response": "A plaque commemorating the event of Mike Scarola, the ''The World's Greatest Forklift Operator,'' crashing his vehicle through a wall.", - "id": 17495 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2352f7ba658261.jpg", - "response": "A banner for HiperBarrio is hanging on a wall.", - "id": 17496 - }, - { - "image_path": "/content/drive/MyDrive/combined/18a255fb3ce3e523.jpg", - "response": "A framed picture with the rules of the bath written on it.", - "id": 17497 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dbd3219413d2183.jpg", - "response": "A framed picture with the words \"May the bridges I burn light the way\" on it.", - "id": 17498 - }, - { - "image_path": "/content/drive/MyDrive/combined/337402b98de9d38c.jpg", - "response": "A necklace with a circular pendant on a display.", - "id": 17499 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f16e0189ab1e7f7.jpg", - "response": "A framed document is mounted on a wall.", - "id": 17500 - }, - { - "image_path": "/content/drive/MyDrive/combined/17623a603266224a.jpg", - "response": "A plaque that says Here men from the planet earth first set foot upon the moon.", - "id": 17501 - }, - { - "image_path": "/content/drive/MyDrive/combined/395bab76799483d7.jpg", - "response": "A painting of a pipe with the title \"Ceci n'est pas une pipe\" hanging on a wall.", - "id": 17502 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bcac73266d023f5.jpg", - "response": "A bar has a banner with a picture of Johnny Cash on it.", - "id": 17503 - }, - { - "image_path": "/content/drive/MyDrive/combined/277c9771210899ac.jpg", - "response": "In the image, a man wearing a black suit is holding up a large white frame. The man is smiling and appears to be presenting the frame. The frame contains multiple photos of artists and is labeled Capitol Music Group Through the Years.", - "id": 17504 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9b2e6a59da62ff.jpg", - "response": "A wall with three religious pictures hanging on it.", - "id": 17505 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cd3f40be04296a6.jpg", - "response": "A white board with writing on it.", - "id": 17506 - }, - { - "image_path": "/content/drive/MyDrive/combined/26517c5bb9e56776.jpg", - "response": "A framed picture of the University of Michigan's Main Building in Ann Arbor, Michigan.", - "id": 17507 - }, - { - "image_path": "/content/drive/MyDrive/combined/257e5699d93d63bf.jpg", - "response": "A large wooden clock with floral designs on the face.", - "id": 17508 - }, - { - "image_path": "/content/drive/MyDrive/combined/422da1c8a7cd49d1.jpg", - "response": "a picture of a girl with two hearts above her head", - "id": 17509 - }, - { - "image_path": "/content/drive/MyDrive/combined/18f126c5865e32f4.jpg", - "response": "A picture of a painting hanging on a wall. The painting is of two towers and the sky. The frame is gold and has a plaque in the bottom with text on it.", - "id": 17510 - }, - { - "image_path": "/content/drive/MyDrive/combined/545c2035a101fc5b.jpg", - "response": "A man standing at a podium on a stage.", - "id": 17511 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fa961b3f83f3396.jpg", - "response": "A painting with a gold frame.", - "id": 17512 - }, - { - "image_path": "/content/drive/MyDrive/combined/5130916136d91717.jpg", - "response": "A framed picture of a guitar on the wall.", - "id": 17513 - }, - { - "image_path": "/content/drive/MyDrive/combined/094ff521584cd2c1.jpg", - "response": "A blue and yellow image of a cabinet with a bunch of grapes hanging from a horn in the foreground.", - "id": 17514 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d597d491c28f2e.jpg", - "response": "A rack of magazines including Move, Vox, and WoA.", - "id": 17515 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ceb0a74f26e6d6.jpg", - "response": "A sign for the Buckhorn Baths Motel in a dark sky.", - "id": 17516 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1b0e699f06697d.jpg", - "response": "A man with a white beard and a hat with a star on it is pointing at the viewer.", - "id": 17517 - }, - { - "image_path": "/content/drive/MyDrive/combined/0837dd5c9895cf65.jpg", - "response": "A black and white image with the name Arkada Social at the top. Below that is a smaller font that says \"Des-Kontrol\" and \"Endoskada\". Below that is a larger font that says \"Anti-Social\". There is a group of people in the bottom right corner with their arms raised.", - "id": 17518 - }, - { - "image_path": "/content/drive/MyDrive/combined/07fab1f524c749d0.jpg", - "response": "A vintage poster for a musical production called The Silver Slipper.", - "id": 17519 - }, - { - "image_path": "/content/drive/MyDrive/combined/0add0206d9314ffb.jpg", - "response": "a poster with the words \"we have a strategic plan. it's called doing things\" printed on it.", - "id": 17520 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb167717c0c22b3.jpg", - "response": "a poster for code across 2015", - "id": 17521 - }, - { - "image_path": "/content/drive/MyDrive/combined/08984dae58aceac0.jpg", - "response": "The image is an infographic that shows internet speeds and costs around the world. The infographic is mostly black and white, with some yellow and orange colors used for highlights. The world map at the top of the infographic shows the top 20 nations in ITIF broadband rankings. The infographic includes a chart titled \"Average Broadband Speed in MBPS\" and a pie chart titled \"Broadband Penetration Percentage\". The chart titled \"Average Broadband Speed in MBPS\" has a world map in the background and shows the speed of broadband in different countries. The pie chart titled \"Broadband Penetration Percentage\" also has a world map in the background and shows the percentage of broadband penetration in different countries.", - "id": 17522 - }, - { - "image_path": "/content/drive/MyDrive/combined/0af5d7dc935d0563.jpg", - "response": "A newspaper stand with a newspaper on it that says \"World's worst hacker arrested in wood green\" on the front.", - "id": 17523 - }, - { - "image_path": "/content/drive/MyDrive/combined/07901e4d2eda4f63.jpg", - "response": "A poster for the movie Star Wars: The Force Awakens. The main characters are shown in the center, including Han Solo, Princess Leia, and Chewbacca. Behind them are various spaceships from the movie, including the Millennium Falcon, a TIE fighter, and the Star Destroyer. The background is a colorful nebula.", - "id": 17524 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b73a1976593d99.jpg", - "response": "The poster for the movie The Dark Knight. The main focus is Batman standing in front of a large building with the bat symbol behind him in flames. The bat symbol is also depicted on the top of the poster. The movie's name and release date are also listed on the poster.", - "id": 17525 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac4f0264bd54f29.jpg", - "response": "A cartoon strip in four panels. In the first panel, a yellow figure with a round head and a blue body is standing on a blue box and speaking in a loud voice. The yellow figure is saying \"Thrust! Thrust! Thrust!\" In the second panel, the yellow figure is grabbing the arm of a pink figure and is saying \"Thrust! Thrust! Thrust!\" The pink figure looks scared. In the third panel, the yellow figure is grabbing the leg of a green figure and is saying \"Thrust! Thrust! Thrust!\" The green figure also looks scared. In the fourth and final panel, the yellow figure is grabbing the arm of a blue figure and saying \"Ya basta! No es gracias!\" The blue figure is saying \"S\u00ed, gracias\" as the yellow figure lets go of the blue figure's arm.", - "id": 17526 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c2a518deed69684.jpg", - "response": "A poster showing the steps of sake making in 19th century Japan.", - "id": 17527 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b86397d9fb2ec1d.jpg", - "response": "A magazine cover with a man in a trench coat and hat holding a pipe.", - "id": 17528 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d22c08d7274f60.jpg", - "response": "A science fiction book cover for a book called \"The I Inside\" by Alan Dean Foster. The cover features a man and a woman in space suits standing on a vehicle with a spaceship in the background.", - "id": 17529 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ced45a670c8400.jpg", - "response": "A quote by Walter Lin on content marketing.", - "id": 17530 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a5f2fa4c1a448e.jpg", - "response": "In the image, there is a group of three men standing in front of a wall with a chart on it. One man is wearing a striped shirt and is pointing to a spot on the chart, while the other two men are listening to him. One of the men has a backpack on and is wearing a blue shirt. The third man is wearing glasses and a white shirt. They all appear to be engaged in a discussion about the chart on the wall.", - "id": 17531 - }, - { - "image_path": "/content/drive/MyDrive/combined/0867a22cd7c5bad0.jpg", - "response": "a sign on a pole in front of a building", - "id": 17532 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a8284e790037fa3.jpg", - "response": "A poster of beer cans with the word beer on it in Arabic.", - "id": 17533 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba6f1b5eb6c6ee9.jpg", - "response": "An orange wall tapestry that says \"I AM BUSY\" in white text.", - "id": 17534 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5f596dc1f76e3c.jpg", - "response": "A blue and red graphic with the word Shostakovich in red letters.", - "id": 17535 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d80f5b4cca96aa.jpg", - "response": "The cover of Time magazine with a picture of Barack Obama in a car.", - "id": 17536 - }, - { - "image_path": "/content/drive/MyDrive/combined/078d1a65fb21c9cd.jpg", - "response": "A poster for the 1921 film \"The Sheik\" which starred Rudolph Valentino.", - "id": 17537 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a71f9f711ecdba0.jpg", - "response": "An advertisement for a Samson Windmill.", - "id": 17538 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a65ea998e489351.jpg", - "response": "A book cover with a hand with an eye in the center and the title of the book \"Tales of the San Francisco Cacophony Society\"", - "id": 17539 - }, - { - "image_path": "/content/drive/MyDrive/combined/0beda9c5fef5f334.jpg", - "response": "A sign on a door that says scanning for the digital books project is in progress.", - "id": 17540 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c5962d4903a2faf.jpg", - "response": "A sign that has been drawn on with marker, with the title Renegados vs Reatarrantados. There is a picture of two men, one waving a Mexican flag and the other holding a sign. Below the sign it says No quieren que t\u00fa leas, la constituci\u00f3n, para que seas panista que solo ve television.", - "id": 17541 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a34e41200ee3484.jpg", - "response": "A movie poster for an all girl skate jam in orange, ca.", - "id": 17542 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba0b4ff683cfaec.jpg", - "response": "A poster for a 2 meter long Star Wars X-Wing model for sale.", - "id": 17543 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d9d83674846566.jpg", - "response": "A city street with a poster advertisement for ENERGIS NUS.", - "id": 17544 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dcd0e5fc92f7dec.jpg", - "response": "A poster advertising the play \"Why Men Leave Home\" at the Mason Opera House in April of 1933.", - "id": 17545 - }, - { - "image_path": "/content/drive/MyDrive/combined/10da89995a7f07af.jpg", - "response": "A pig with the word \"yperatopra\" on it.", - "id": 17546 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7213bc3ba24e4e.jpg", - "response": "A door with a large graphic that says \"THIS IS NEW YORK'S MOST EXCITING STAIRWELL\" on it.", - "id": 17547 - }, - { - "image_path": "/content/drive/MyDrive/combined/10119f3137b9c70f.jpg", - "response": "a piece of paper tacked to a board with the words \"there are probably no gods so do your best with the time you have before you die\" written on it", - "id": 17548 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f22d63d9a1321a.jpg", - "response": "a book cover with a picture of a sunset over a city", - "id": 17549 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc7ea1b85521166.jpg", - "response": "A book cover with a tree-like rock formation with 4 figures sitting on it.", - "id": 17550 - }, - { - "image_path": "/content/drive/MyDrive/combined/139d22c779075fb8.jpg", - "response": "A poster on a wall that says Liberte Egalite Fraternite.", - "id": 17551 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e20adbb944c73eb.jpg", - "response": "The image is the cover of a book titled in Italian \u201cSocial TV\u201d. The lettering is white and is arranged in two lines. The first line is the author\u2019s name \u201cGiampaolo Colletti - Andrea Materia\u201d and the second line is \u201cGuida alla nuova TV relittera di Facebook e Twitter\u201d. The background of the cover is green. In the lower part of the cover, there is a square with a white border. Inside the square, there is a white bird with a curved beak and short legs inside a speech bubble. The bird has a curved line from the beak to the tail. The line is colored in 6 colors, red, blue, yellow, green, purple and white. The word \u201clike\u201d is written inside the speech bubble.", - "id": 17552 - }, - { - "image_path": "/content/drive/MyDrive/combined/129ae867a15bb330.jpg", - "response": "A color lithograph of Frank Jones' Brewery & Malt Houses. The image is framed and features a color print of the brewery. The brewery is a large brick building with a central square section and two smaller wings on either side. There are three sets of smokestacks, one in the center of each wing and one in the middle of the square section. There is a horse and carriage in the foreground, and a steam locomotive in the background. There are also several people scattered around the scene.", - "id": 17553 - }, - { - "image_path": "/content/drive/MyDrive/combined/13269799692a228f.jpg", - "response": "In the image, a group of people is gathered in a large, open room with high ceilings. They are standing around tables and are in the process of setting up for an event. There are multiple people carrying handbags and backpacks, and some are wearing ties. The room is decorated with several large, colorful banners and a big screen is projected on the wall at the front of the room. There are also multiple potted plants placed around the room, adding a touch of greenery.", - "id": 17554 - }, - { - "image_path": "/content/drive/MyDrive/combined/14441f7c25d1f12a.jpg", - "response": "A poster for a party called \"Young Wild and Free\" which is taking place on February 17th. The party is being held at a place called Garage Oto Ngoc Bao. There is a Happy New Year 2015 logo at the bottom of the poster. The poster is in blue and purple color. There are some text in the image like \"LINH DAN AND NGOC BAO PRESENTS\", \"HAPPY NEW YEAR 2015\", \"GARAGE OTO NGOC BAO\", \"TICKETS 50K | DOORS 5PM | HAPPY HOUR 8PM | CONTACT FOR GUESTLIST\"", - "id": 17555 - }, - { - "image_path": "/content/drive/MyDrive/combined/137f87671d6b059f.jpg", - "response": "A book cover with a man standing with a large raven on his shoulder.", - "id": 17556 - }, - { - "image_path": "/content/drive/MyDrive/combined/123ec8724b43e5ca.jpg", - "response": "a map of the London underground on a sign", - "id": 17557 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd5eb9fc9a0fdd7.jpg", - "response": "A poster for a parade machine called Moto Guzzi.", - "id": 17558 - }, - { - "image_path": "/content/drive/MyDrive/combined/138c727af307c753.jpg", - "response": "A sign for the Smithsonian National Museum of American History.", - "id": 17559 - }, - { - "image_path": "/content/drive/MyDrive/combined/14a86de492158295.jpg", - "response": "A trade card for Reeves Parvin & Go's roasted coffee, with an illustration of a city street with a fire hydrant and people walking down the street.", - "id": 17560 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9d443a363982e5.jpg", - "response": "A colorful crochet blanket is featured on the cover of a book called \"Around the Corner Crochet Borders\" by Edie Eckman. The book is yellow with a picture of the crocheted blanket in the center. The blanket has many different colors and is made up of many different patterns.", - "id": 17561 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cfcc3e95732bf8d.jpg", - "response": "A black background with a tree shaped word cloud in white and orange. The text starts at the top with \"enough\" and ends with \"permits\" making the main text \"Portland International Airport\". Other words in the cloud include \"city\", \"horn\", \"standard\", \"helps\", \"access\", \"well\", \"safe\", \"still\", \"drivers\", \"cabs\", \"service\", \"trip\", \"perhaps\", \"around\", \"manner\", \"wheel\", \"seem\", \"download\", \"seems\", \"name\", \"1.50\", \"take\", \"benefits\", \"lab\", \"seem\", \"cabbie\", \"delivered\", \"permitted\", \"seem\", \"pdx\", \"downloaded\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\", \"pm\",", - "id": 17562 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e077a792a619918.jpg", - "response": "A large sign that says 2008 Freedom Map of the World.", - "id": 17563 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c00a96d58c62bf.jpg", - "response": "A poster of a man dressed in a black suit and white shirt with a red background. He is looking down and wearing a black tie. He is wearing a black jacket and white shirt. There is a woman behind him with long blonde hair and she is holding a balance scale in her left hand. She is wearing a red dress. The man's hands are clasped in front of him and he has a slight smile on his face.", - "id": 17564 - }, - { - "image_path": "/content/drive/MyDrive/combined/12da5775557045c6.jpg", - "response": "A wall with a picture of a man playing a guitar and a quote from Joe Strummer.", - "id": 17565 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f408b5b64831ca7.jpg", - "response": "A movie poster for the film The Black Dahlia. The main image is a close up of a woman's face, she is smoking a cigarette and there is blood running down her neck. In the background, out of focus, there are images of two men, one on the left wearing a hat and suit and one on the right wearing a suit. The woman on the left is smoking a cigarette and the man on the right is smoking a pipe. The two men are looking at the woman. The title of the film, The Black Dahlia, is written in white text across the middle of the image. The names of the main actors, Johansson, Harnett, Swank and Eckhart, are written in white text at the top of the image.", - "id": 17566 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dade82f8d16aeeb.jpg", - "response": "A man is sitting on a stool in front of a wall covered in stickers and graffiti. The wall is a tan color and the stickers and graffiti are in various colors, including red, yellow, and black. The man is wearing a black shirt and has a beard. He is looking at the camera and has his hands in his pockets. The background is blurry and there is a reflection of the man and the wall of stickers on the ground.", - "id": 17567 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f225eb1c0b5b91a.jpg", - "response": "A poster for the movie \"Swamp Thing\" which features a man holding a woman in his arms as they both stand in a dark forest.", - "id": 17568 - }, - { - "image_path": "/content/drive/MyDrive/combined/1426c4c4efe7a776.jpg", - "response": "A screen with the words colourful deserts on it.", - "id": 17569 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc142a12128b220.jpg", - "response": "A book cover with a black decorative border around a white center. The title is in the center and is written in orange and white. The author's name is below the title in small letters. The publisher's name is below that in even smaller letters. The cover has a decorative border with red, white, and black colors. The border has a repeating pattern of flowers and leaves.", - "id": 17570 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f296a188304ac37.jpg", - "response": "A sign advertising film processing at a CVS store.", - "id": 17571 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe895c4bb108be1.jpg", - "response": "The image is a promotional image for a new album by a band called Narn. The text on the image reads \"Not Yours\" and it is instructions to stream the new album on Thursday. The background of the image is a deep brown color.", - "id": 17572 - }, - { - "image_path": "/content/drive/MyDrive/combined/10fdad9dbea7b871.jpg", - "response": "A poster with many different types of fireworks for sale.", - "id": 17573 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9ef654c6e37918.jpg", - "response": "A black and white photo of a woman looking at a man smoking a cigarette. The woman is wearing a red scarf and the man is wearing a white shirt. The word \"OUI\" is in white on the right hand side of the image. The word \"AU RESPECT DE TOUS\" is in white on the left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\" is in white on the bottom left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\" is in white on the bottom left hand side of the image. The word \"LES LIEUX PUBLICS\" is in white on the bottom left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\" is in white on the bottom left hand side of the image. The word \"LES LIEUX PUBLICS\" is in white on the bottom left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\" is in white on the bottom left hand side of the image. The word \"LES LIEUX PUBLICS\" is in white on the bottom left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\" is in white on the bottom left hand side of the image. The word \"LES LIEUX PUBLICS\" is in white on the bottom left hand side of the image. The word \"STOP\" is in white on the bottom left hand side of the image. The word \"A LA FUMEE\" is in white on the bottom left hand side of the image. The word \"DE TOUS\"", - "id": 17574 - }, - { - "image_path": "/content/drive/MyDrive/combined/1341f652377e3490.jpg", - "response": "A blurry image of a firework display with the words elles@centrepompidou in front of it.", - "id": 17575 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e775a583a2a2ad.jpg", - "response": "The image is an advertisement for the 9th Annual Arts for Our Park event. There is a colorful poster for the event featuring student artwork. The poster features a drawing of a river with the title \"Running River\" and the words \"Best of Show\" at the top. The event is scheduled for March 3rd to April 1st, 2012.", - "id": 17576 - }, - { - "image_path": "/content/drive/MyDrive/combined/0edc56e0272c8a51.jpg", - "response": "A sticker on a wall that says \"About being poor\" and has a drawing of a guillotine.", - "id": 17577 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf2f33b16c40ee8.jpg", - "response": "A quote by Donald R Gannon on a green and black background that says \"Where facts are few, experts are many\"", - "id": 17578 - }, - { - "image_path": "/content/drive/MyDrive/combined/112e2cd872d89bcc.jpg", - "response": "A large brick wall with several faded advertisement painted on it.", - "id": 17579 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e1c87c8158bd6e9.jpg", - "response": "A screen shot of the animated film \"The Spectacular Spider-Man\" with the names of the crew members listed on the left.", - "id": 17580 - }, - { - "image_path": "/content/drive/MyDrive/combined/119f63199eb436ab.jpg", - "response": "A book cover with a man in a uniform holding a stick.", - "id": 17581 - }, - { - "image_path": "/content/drive/MyDrive/combined/148c3dd3408bf508.jpg", - "response": "An old advertisement for a mobile workbench from Peugeot.", - "id": 17582 - }, - { - "image_path": "/content/drive/MyDrive/combined/1383927d5f34d286.jpg", - "response": "A red and black logo for Casa Escobar Family Restaurant.", - "id": 17583 - }, - { - "image_path": "/content/drive/MyDrive/combined/122f9b4a74a0c398.jpg", - "response": "A collage of photos of people holding flags and a monument.", - "id": 17584 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c994b31f2c415d4.jpg", - "response": "A wooden sign advertising cold steam beer for 15 cents.", - "id": 17585 - }, - { - "image_path": "/content/drive/MyDrive/combined/116b185435679ded.jpg", - "response": "A poster advertising the 5th annual Braveheart Trail Race which is taking place on June 13th 2014.", - "id": 17586 - }, - { - "image_path": "/content/drive/MyDrive/combined/14d68006b52caafb.jpg", - "response": "A poster for a movie called O Ladr\u00e3o Voltou de Madrugada.", - "id": 17587 - }, - { - "image_path": "/content/drive/MyDrive/combined/126e1b4adc5a8a33.jpg", - "response": "A colorful mural on the side of a building.", - "id": 17588 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2e4bcacb5286f3.jpg", - "response": "A poster for the B-Ham World Naked Bike Ride.", - "id": 17589 - }, - { - "image_path": "/content/drive/MyDrive/combined/14720eafa16b1bfe.jpg", - "response": "A newspaper article in swedish about the state of the media in the USA.", - "id": 17590 - }, - { - "image_path": "/content/drive/MyDrive/combined/1346c04e678bbc0e.jpg", - "response": "A pink and purple poster with a large pink B in the center. The word \"en concierto\" is written in white underneath the B. There is a pink and purple texture background with a pink B in the center.", - "id": 17591 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e268cd449f9295a.jpg", - "response": "A black and white photo of a crowd of people walking on a street.", - "id": 17592 - }, - { - "image_path": "/content/drive/MyDrive/combined/1323725f5dffc179.jpg", - "response": "A poster with a red hand holding a red square.", - "id": 17593 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccc4008a5d288b7.jpg", - "response": "A wall with many paper notices and advertisements on it.", - "id": 17594 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e33dbfe849db580.jpg", - "response": "A book cover with a woman's torso partially visible through a\u6805\u683c. The woman is black and white and appears to be naked, with her hands covering her breasts. The letters of the title, \"Andraizea,\" are written in various sizes and are different shades of pink. The author's name, Irat\u00ec Goikoetxea, is written in the same font as the title, but in black. The author's name is also written in white at the bottom of the cover.", - "id": 17595 - }, - { - "image_path": "/content/drive/MyDrive/combined/1422c43b09a3f047.jpg", - "response": "A red banner with the letter M on it.", - "id": 17596 - }, - { - "image_path": "/content/drive/MyDrive/combined/11c395dc6fb84c2e.jpg", - "response": "A large crowd of people in front of a stage with a banner that says Celebrate Brooklyn.", - "id": 17597 - }, - { - "image_path": "/content/drive/MyDrive/combined/114f014054324670.jpg", - "response": "The image features the cover art for the video game Fable Legends. At the center of the image is a male character wielding a sword, wearing armor and a cloak. He is depicted as the main hero of the game. To his left are four other characters, each with unique appearances and attire. They are all holding swords and appear to be in formation, likely preparing for battle. The background features a lush forest with a variety of trees and foliage. The title of the game, \"Fable Legends\" is displayed prominently in the upper left corner of the image.", - "id": 17598 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e548cb4a258104d.jpg", - "response": "A red brick wall with a large greeting postcard painted on it.", - "id": 17599 - }, - { - "image_path": "/content/drive/MyDrive/combined/10e32d2a0fa3eefc.jpg", - "response": "A magazine cover with the title From Mind to Mind.", - "id": 17600 - }, - { - "image_path": "/content/drive/MyDrive/combined/14aeefaa8d96dfef.jpg", - "response": "a paper with instructions on it attached to a wall", - "id": 17601 - }, - { - "image_path": "/content/drive/MyDrive/combined/132e9c8e879d5ad7.jpg", - "response": "A movie poster with the title in Spanish, \"Por Que Voce Partiu,\" and a row of people looking at a mountain.", - "id": 17602 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cdd6b645c6bf209.jpg", - "response": "A poster for a talk about HQ's with Marcelo Campos.", - "id": 17603 - }, - { - "image_path": "/content/drive/MyDrive/combined/13fc1f17e6659279.jpg", - "response": "a stone in a wall (134,423),(236,478)", - "id": 17604 - }, - { - "image_path": "/content/drive/MyDrive/combined/11ea3fbe141598de.jpg", - "response": "A brown haired woman wearing a black tank top and boxing gloves with her hair in a ponytail.", - "id": 17605 - }, - { - "image_path": "/content/drive/MyDrive/combined/13d6740b0c1f0c86.jpg", - "response": "A poster for a space program presented by Tom Sachs.", - "id": 17606 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e9a94d23d50a52c.jpg", - "response": "A collection of old advertisements for Mason's Health Defenders, including Cream of Olives Soap, Cream of Olives Ointment, and Benzo-tar Soap.", - "id": 17607 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e1df60d0f05c39.jpg", - "response": "A poster for the Works Progress Administration (WPA) Federal Art Project, this poster promotes the importance of physical fitness. The image features three athletes, one with the label \"head,\" another with the label \"heart,\" and the third with the label \"hands,\" running a race. The athlete with the \"head\" label is in the lead, the \"heart\" label athlete is in second place, and the \"hands\" label athlete is in third place. The athletes are depicted as leaping over a hurdle. The poster's text reads \"Keep Flexanimous Get Your Test Now.\"", - "id": 17608 - }, - { - "image_path": "/content/drive/MyDrive/combined/10650d8c8197b9b8.jpg", - "response": "A color poster of two soldiers charging through the snow. One soldier is in front of the other, both are wearing helmets and carrying a rifle and a bayonet. The soldier in the back is also carrying a backpack. They are both wearing brown uniforms. The soldier in the front is looking back at the other soldier, who is looking forward. The soldier in the back is also looking forward. They are both wearing helmets. The soldier in the front is also holding a hand out in front of him. The sky is full of dark clouds. The text on the poster is in red and black.", - "id": 17609 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f8c494d3ab11b03.jpg", - "response": "The image is a CD cover for the Montreal Baroque Band's performance of I Mercanti di Venezia. The cover features a painting depicting a bustling Venetian marketplace.", - "id": 17610 - }, - { - "image_path": "/content/drive/MyDrive/combined/16c667e5aa4b3695.jpg", - "response": "A record album cover with a picture of a man holding a guitar.", - "id": 17611 - }, - { - "image_path": "/content/drive/MyDrive/combined/1638a37914ecb6e0.jpg", - "response": "A CD cover for a magazine called PhotoPlus.", - "id": 17612 - }, - { - "image_path": "/content/drive/MyDrive/combined/164611e0166262e7.jpg", - "response": "A research poster is on display on a easel.", - "id": 17613 - }, - { - "image_path": "/content/drive/MyDrive/combined/1daa73adf269b9f1.jpg", - "response": "A Hollywood Video sign is displayed on a wall.", - "id": 17614 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d97889128a6551.jpg", - "response": "A portrait of the Roman emperor, Pompey II, from a book of portraits of Roman emperors.", - "id": 17615 - }, - { - "image_path": "/content/drive/MyDrive/combined/15c0f01a6effcebd.jpg", - "response": "A painting of a man in a suit pointing at a woman in a purple dress. A man in a red suit is on the ground.", - "id": 17616 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0366b5b8b1c8a9.jpg", - "response": "A wall with several posters on it.", - "id": 17617 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b3b9d33cb47fc9f.jpg", - "response": "On the floor, there are two pictures. One is a framed picture of a man with the word TESLA above him. The other is a black and white picture of a man with a hat and a coat.", - "id": 17618 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a053f0aa7eb9c09.jpg", - "response": "The cover of a book titled Dealing in Desire. The background is a city skyline at night, with a river in the foreground reflecting the city's lights. The title is in bold, orange, and white letters.", - "id": 17619 - }, - { - "image_path": "/content/drive/MyDrive/combined/190d115c6f68ca26.jpg", - "response": "A cover of Mad Magazine with a group of people around a table with a turkey in the middle.", - "id": 17620 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a0f92551accf685.jpg", - "response": "A poster of Obama's face is on the right. To the left is a sign that says Johnny Appleseed. Underneath the sign that says Johnny Appleseed is the word Hope. There is a reflection of a building in the glass.", - "id": 17621 - }, - { - "image_path": "/content/drive/MyDrive/combined/15db54ec083e4390.jpg", - "response": "A poster with a lot of information about the Apollo Lunar Rover.", - "id": 17622 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce2378e755f70b2.jpg", - "response": "A sign that is listing the sponsors of a conference.", - "id": 17623 - }, - { - "image_path": "/content/drive/MyDrive/combined/18871e27b87b1056.jpg", - "response": "a book cover for \"surviving raptures for dummies\" with a yellow background and a cartoon character with glasses pointing to the words \"be prepared\"", - "id": 17624 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba8c30ed5df7e80.jpg", - "response": "A poster with a green 4H logo at the top.", - "id": 17625 - }, - { - "image_path": "/content/drive/MyDrive/combined/1608cd6ea05caf84.jpg", - "response": "A framed poster for Borax soap, featuring two women washing laundry in the snow.", - "id": 17626 - }, - { - "image_path": "/content/drive/MyDrive/combined/193afa713a3261c8.jpg", - "response": "A desert area with a large rock in the middle of it.", - "id": 17627 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa93961e64cf814.jpg", - "response": "A poster for China Mobile's 3G network.", - "id": 17628 - }, - { - "image_path": "/content/drive/MyDrive/combined/1534f2b8d19e295f.jpg", - "response": "A sign on a wooden wall that says \"electro-magnetic sensitivity, another inconvenient truth\" and then goes on to say \"Please accommodate our electrically sensitive community and turn off your cell phone\" with a list of symptoms that can be caused by cell phones.", - "id": 17629 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0a7c59b5a9e184.jpg", - "response": "A truck with a blue advertisement for Van Gogh Vodka.", - "id": 17630 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c284541de9fa037.jpg", - "response": "A record album cover for SIDNEY BECHET on a wooden table.", - "id": 17631 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a99e56ab9a74709.jpg", - "response": "A vintage playing card with a cartoon of a man and a dog looking into a box with question marks on it.", - "id": 17632 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af07863f373a0bd.jpg", - "response": "A blue and white poster for an art exhibit in catalunya.", - "id": 17633 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ba56f4fd8ba4b5.jpg", - "response": "A man with a beard and mustache is running up a staircase. Another man with a sword is chasing him.", - "id": 17634 - }, - { - "image_path": "/content/drive/MyDrive/combined/19f2345f3789cec1.jpg", - "response": "The image is a colorful promotional image for the album \"Soundamerica11\" selected by Los Masones Del Ritmo. The image features a map of South America with the countries colored in different bright colors. The background of the image is a spacey looking illustration with a galaxy in the background. There are also rainbow colored bars running horizontally across the bottom of the image.", - "id": 17635 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b75b1fadca6825.jpg", - "response": "A sheet of stickers for a motorcycle.", - "id": 17636 - }, - { - "image_path": "/content/drive/MyDrive/combined/16318cd66bcaf260.jpg", - "response": "A large blue building with a sign that reads \"SUNSHINE CITY\" on the front.", - "id": 17637 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b64e44ee5432256.jpg", - "response": "A book named \"The 4-Hour Chef\" by Timothy Ferriss is on a wooden table.", - "id": 17638 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ff846a20e37b83.jpg", - "response": "A cd cover for a jazz album called Digital Big Band Bash!", - "id": 17639 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a25e0f10cef4979.jpg", - "response": "An orange cover of a book with a title that says \"Introduction\" in bold black letters. Below the title are five smaller headers, \"Environment pg3| Context pg4\", \"About competition pg5| Structure pg6\", \"Design Challenge pg7| Requirements pg8\", \"Entry Registration pg9| Submission pg10\", and \"People Jurors pg11| Supporters pg12\". There are also small pictures of a door, a hand, a suitcase, a person, and a person holding a sign under each header.", - "id": 17640 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c592ba4074c6de2.jpg", - "response": "A bulletin board with many different items posted on it.", - "id": 17641 - }, - { - "image_path": "/content/drive/MyDrive/combined/15bf06c389884ca1.jpg", - "response": "A magazine cover with a black background and yellow writing.", - "id": 17642 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b836a1723090d6.jpg", - "response": "A sign that says Data Journalisme Lab in black and green text.", - "id": 17643 - }, - { - "image_path": "/content/drive/MyDrive/combined/1de5e8c8c548a855.jpg", - "response": "A colorful wall with four lion heads painted on it.", - "id": 17644 - }, - { - "image_path": "/content/drive/MyDrive/combined/18c5ad67d1ee724a.jpg", - "response": "Flyer for Orgreave event with a picture of miners and the orgreave pit.", - "id": 17645 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ff51ca4072d0ac.jpg", - "response": "An old newspaper advertisement for toys, specifically a Monster Ghost and a Vampire Bat.", - "id": 17646 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa5615c53f1402e.jpg", - "response": "A poster on a wall advertising jazz workshops and concerts with sold out written in red.", - "id": 17647 - }, - { - "image_path": "/content/drive/MyDrive/combined/1acd6424ebcadb31.jpg", - "response": "a sign with information about the golden toad", - "id": 17648 - }, - { - "image_path": "/content/drive/MyDrive/combined/153d45d5c3bf11b3.jpg", - "response": "A poster for a concert featuring the band Protomen. The band members are all wearing silver face paint and have their faces photoshopped onto a picture of a robot. The concert is being held at the Hawthorne Theatre in Portland on August 22nd.", - "id": 17649 - }, - { - "image_path": "/content/drive/MyDrive/combined/156ad9121ed8be90.jpg", - "response": "A color print advertisement for the Merchants' Express Line of clipper ships. The advertisement features a color illustration of a man dressed in a red uniform and armor, holding a sword and shield, and leading a horse. The man is depicted as Don Quixote, and the horse is a ship. The ship is shown being attacked by a windmill, which is depicted as a box on wheels with blades that rotate. The ship is labeled \"Don Quixote\" on the side. The advertisement also includes text promoting the speed and reliability of the Merchants' Express Line.", - "id": 17650 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a625079edf146ff.jpg", - "response": "A page from a Japanese magazine featuring different mobile suits.", - "id": 17651 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aee501a75668a28.jpg", - "response": "A postcard with five different scenes of the Bertram factory and repair department.", - "id": 17652 - }, - { - "image_path": "/content/drive/MyDrive/combined/1985e68e0073c51b.jpg", - "response": "A man is standing behind a black letter board. The board has the words \"I resolve to call my mother once a week\" written on it. The man is holding a camera and taking a picture of the board. The numbers 1001 to 1011 are written to the left of the board and the numbers 1000 to 1012 are written to the right of the board.", - "id": 17653 - }, - { - "image_path": "/content/drive/MyDrive/combined/17b0a237933d90c8.jpg", - "response": "A postcard with a blue and yellow motel called the Sun Dial Motel. The motel has a blue roof and yellow walls. There is a large sign with the name of the motel. The motel has a parking lot with a few cars. There is a two story building with a steeple in the distance. The sky is blue with white clouds.", - "id": 17654 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d759aa66f3d5a09.jpg", - "response": "A book is open in the image with the title \"Book trailer Lehaketa\" above it. The book is opened to page 22 and there is a symbol of an arrow made out of pages coming out of the book. The word \"Abenduaren 22\" is written on the page. The book is on a brown background.", - "id": 17655 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c86b5117de511d8.jpg", - "response": "A poster for the movie Revenge of the Creature.", - "id": 17656 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bdfd39845085e3a.jpg", - "response": "A sign on a pole with writing in several different languages.", - "id": 17657 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c76d2dfd9cb514c.jpg", - "response": "a red wall with text on it that says \"Hej d\u00e5!\" in white.", - "id": 17658 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a565a40e6fa8300.jpg", - "response": "A magazine cover with a man in a suit standing on a globe.", - "id": 17659 - }, - { - "image_path": "/content/drive/MyDrive/combined/187e57a434711d41.jpg", - "response": "A book cover for Douglas Adams' Mostly Harmless. The title is in green and white lettering and is accompanied by the author's name in green and white lettering. There is a depiction of a green alien with long arms reaching for a planet in the upper right corner of the cover. The planet is blue with white clouds and is surrounded by stars. The book is published by Simon and Schuster.", - "id": 17660 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cc4ceba217ae2c7.jpg", - "response": "A vintage postcard showing a crowded beach scene at Atlantic Beach, South Carolina. The beach is filled with people, some under umbrellas and others standing around. The sky is blue with clouds and the ocean is a deep blue.", - "id": 17661 - }, - { - "image_path": "/content/drive/MyDrive/combined/196517393230c0c0.jpg", - "response": "A black and white image of a fire escape outside a building.", - "id": 17662 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b55a8cdf19acf1.jpg", - "response": "A poster with a soldier standing on a cannon, a soldier sitting next to a suitcase and a third soldier.", - "id": 17663 - }, - { - "image_path": "/content/drive/MyDrive/combined/1822299c1e8aa4e1.jpg", - "response": "The image displays the logo of Domino's Pizza on a blue background. The logo consists of a red square with white edges and three red dice in the center. The dice are arranged in a way that they form the shape of the square. The word \"Domino's Pizza\" is written in white on the blue background, with the apostrophe placed after the \"s\" in \"Domino's.\" The time on the screen is 1:22 and the battery percentage is 61%. The words \"SHOW\" and \"\u521b\u610f\u591a\u7c73\u8bfa\" are written below the logo. The \"SHOW\" is written in white and the \"\u521b\u610f\u591a\u7c73\u8bfa\" is written in light blue.", - "id": 17664 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cde27aa0c348ee6.jpg", - "response": "The image is a greeting from North Las Vegas, Nevada, taken on June 23, 2014. The photo features a lit up tower, possibly a lighthouse, in the background. The sky is dark and there are power lines in the foreground.", - "id": 17665 - }, - { - "image_path": "/content/drive/MyDrive/combined/1930541e12cb671b.jpg", - "response": "A sign in a window that is written in a foreign language.", - "id": 17666 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bc26e93a0c396b6.jpg", - "response": "In the image, there is a black and white picture of two hands shaking. The left hand is white and the right hand is black. The fingers of the left hand are interlocked with the fingers of the right hand. The background of the image is grey.", - "id": 17667 - }, - { - "image_path": "/content/drive/MyDrive/combined/1954a90fcab4728e.jpg", - "response": "A mural on a wall with a painting of soldiers and the words Martires del 23 de Julio 1959 Presentes.", - "id": 17668 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cc380a04be28246.jpg", - "response": "A poster for a project called Dysonon. The background is a black starry sky with a pink and blue glowing grid on the bottom. Three purple pyramids are in the background with a bright purple star in the center. The word \" Dysonon\" is in the foreground in silver with a pink and blue grid behind it.", - "id": 17669 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bb96ce1b52a0441.jpg", - "response": "A movie poster with a woman and a man on the bottom left and a monster on the top left.", - "id": 17670 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aaa9f5578ab6cd9.jpg", - "response": "The image is the cover of a magazine called iMagine. The cover features an intricate design of a rangoli on the front. The rangoli is orange and white and features a paisley design in the center. There are small figures of people at the bottom of the design, possibly representing spectators. The cover is an orange color with the magazine's name and issue number in the top left corner.", - "id": 17671 - }, - { - "image_path": "/content/drive/MyDrive/combined/18b0d8e63dd149a8.jpg", - "response": "A paper wrapper with a polar bear on a log of wood.", - "id": 17672 - }, - { - "image_path": "/content/drive/MyDrive/combined/1857071b10bb5617.jpg", - "response": "A old looking image with the word INVISIBLE on it. The I is dotted with a red line and the N is split in two with a red line.", - "id": 17673 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5958bbda51d4a3.jpg", - "response": "A colorful poster of a man with a hat and glasses. The man is looking to the left and has a rainbow gradient applied to the image. The word \"MATEO\" is displayed in the top right corner of the image.", - "id": 17674 - }, - { - "image_path": "/content/drive/MyDrive/combined/1538ba62fb571154.jpg", - "response": "A blue and white poster with the words vain worship in black. There is also a reference to Mark 7:1-13.", - "id": 17675 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d9197504e228f43.jpg", - "response": "The image is a black square with a pink box in the middle. The words \"RCS Woodwinds\" are written at the top in white. Below this, in white text, it says \"Rory Boyle\". Under this, in white and pink text, it says \"A Box of Chatter\". The words \"Royal Conservatoire of Scotland\" are written in white at the top right, with the logo for the conservatoire below this.", - "id": 17676 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af677d0dec350fe.jpg", - "response": "A bus with a poster on the back of it.", - "id": 17677 - }, - { - "image_path": "/content/drive/MyDrive/combined/191919a609677906.jpg", - "response": "A page from a 1950s fireworks catalog, with many different types of fireworks arranged in a grid.", - "id": 17678 - }, - { - "image_path": "/content/drive/MyDrive/combined/279b43525835aece.jpg", - "response": "A magazine spread with a photo of a crowd of people standing in front of a large statue of Chairman Mao. The text on the page is about cruelty and insanity in China.", - "id": 17679 - }, - { - "image_path": "/content/drive/MyDrive/combined/24607656baf2d184.jpg", - "response": "The cover of Time Magazine with a picture of Karl Marx.", - "id": 17680 - }, - { - "image_path": "/content/drive/MyDrive/combined/2242acae1e24ca18.jpg", - "response": "A poster for the television show Subway Stories is on the wall. The poster features a subway train on the tracks and several people waiting on the platform. Some of the people shown on the poster are looking at a handbag, reading a book, and using a cell phone. The poster is on a yellow wall and has a white border.", - "id": 17681 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e674c7a14d65bd2.jpg", - "response": "A sunset over a cluster of temples.", - "id": 17682 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb239b1aff079a0.jpg", - "response": "An advertisement for Barbour's Linen Thread, featuring a color print of a seated female figure holding a spool of thread.", - "id": 17683 - }, - { - "image_path": "/content/drive/MyDrive/combined/27895ac0ac03a6b1.jpg", - "response": "A sign with information about the Mq-1 Predator.", - "id": 17684 - }, - { - "image_path": "/content/drive/MyDrive/combined/2310e2156e9003a1.jpg", - "response": "A painting of a baseball player holding a bat on a 1962 World Series program cover.", - "id": 17685 - }, - { - "image_path": "/content/drive/MyDrive/combined/2617ff916b6ca645.jpg", - "response": "A film/ documentary festival on social and development issues on themes like peace, conflict, gender, poverty and the environment. Film selections, discussions at the fest will entirely be audience driven in an unconference format. Young people (and young at hearts) are invited to participate. Saturday, 3 may 2008. 09.30 am to 3.30 pm at the British council hall. Registration is free. Just email sibe beyond borders with your name, age and contact details to reserve your place.", - "id": 17686 - }, - { - "image_path": "/content/drive/MyDrive/combined/20864a669da54759.jpg", - "response": "A painting of a woman holding a harp.", - "id": 17687 - }, - { - "image_path": "/content/drive/MyDrive/combined/278b8addd2c0be79.jpg", - "response": "A fence with several colorful posters on it.", - "id": 17688 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb293300389e5a4.jpg", - "response": "A black and red movie poster for the film Boulevard de la Mort. The main image is of a car with a skull and crossbones symbol on the hood driving down a road with silhouettes of women on a road behind it. The top of the image has a red sun and the film's title is written in black on a red background. The bottom of the image has the film's French title and the director's name in black on a red background.", - "id": 17689 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3559f9f45a1f1d.jpg", - "response": "The image features a red cover for a CD titled \"Sibelius - Symphonies Nos 2 & 5\". The cover has a painting of a flock of birds flying in front of a yellow sun. The birds are in various shades of brown and black and are scattered across the cover. The background is a deep red with a yellow sun in the top left corner. The words \"SIBELIUS - SYMPHONIES Nos 2 & 5\" are written in white at the bottom of the cover, along with \"MINNESOTA ORCHESTRA - OSMO V\u00c4NSK\u00c4\" written in white below that.", - "id": 17690 - }, - { - "image_path": "/content/drive/MyDrive/combined/226825b7c2f7fefe.jpg", - "response": "A brick wall with a poster for wrestling on it.", - "id": 17691 - }, - { - "image_path": "/content/drive/MyDrive/combined/267f11017d07b908.jpg", - "response": "In the image there is a group of people standing around a booth for Bone Doctor's BBQ. The booth is located in a large building with a high ceiling. There are multiple people standing around the booth and looking at the products being offered. The booth has a red, white, and green theme. There are also multiple bottles of sauce on display.", - "id": 17692 - }, - { - "image_path": "/content/drive/MyDrive/combined/2744ccbd223d92fb.jpg", - "response": "A poster for Medellin's Day Without Cars on April 22nd. The poster features a city scene with a mix of transportation modes including a train, bus, bicycle, and people walking. The sun is shining and there are trees in the background. The text on the poster is in Spanish.", - "id": 17693 - }, - { - "image_path": "/content/drive/MyDrive/combined/24656ac74b2a16c4.jpg", - "response": "A book cover with a biohazard symbol in the center. The background is a red and orange fire. The book title is \"First S.T.R.I.K.E.\" in black letters. The author's name is in white letters below the biohazard symbol.", - "id": 17694 - }, - { - "image_path": "/content/drive/MyDrive/combined/22df3dafd95d4b6d.jpg", - "response": "A map of the state of California with illustrations of scenes and landmarks throughout the state.", - "id": 17695 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f6ea2391b2618c6.jpg", - "response": "A book cover with a man holding a gun and a creature in the background.", - "id": 17696 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fff7c714e0e2307.jpg", - "response": "A poster on a window that says Gentrify Me! with a picture of a woman with snakes for hair.", - "id": 17697 - }, - { - "image_path": "/content/drive/MyDrive/combined/23e8dd9c361c8fa3.jpg", - "response": "The image is a promotional poster for the animated movie Oobermind. The main characters are flying through the air, with a woman on the right and a man on the left. They both have their arms outstretched and are smiling. In the background, a city with a large tower can be seen. The sky is blue with white clouds. The title of the movie is written in blue and orange letters across the bottom of the image.", - "id": 17698 - }, - { - "image_path": "/content/drive/MyDrive/combined/272339f950faa729.jpg", - "response": "A record album cover with a woman sitting on a piano.", - "id": 17699 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f45c93c63547ea.jpg", - "response": "A large blue and yellow poster on a cream wall that says Social Media Week London. The font on the poster is yellow and blue. The background of the poster is blue. There is also a white line at the bottom of the poster with the words \"In line sponsor\" and a Microsoft logo. Below the white line, there are three hashtags: #SMWLDN, #ALWAYSON, #ALWAYSCONNECTED.", - "id": 17700 - }, - { - "image_path": "/content/drive/MyDrive/combined/28398658d4c67713.jpg", - "response": "A black and white image of a large group of men in military fatigues. They are standing in a field and are all looking in the same direction.", - "id": 17701 - }, - { - "image_path": "/content/drive/MyDrive/combined/08fdc72b7e7f71bd.jpg", - "response": "A desk with a laptop and two monitors.", - "id": 17702 - }, - { - "image_path": "/content/drive/MyDrive/combined/09880f65a80c8f60.jpg", - "response": "A home office with a desk, chair, computer, keyboard, mouse, and monitor.", - "id": 17703 - }, - { - "image_path": "/content/drive/MyDrive/combined/135d8bdeb41c19e5.jpg", - "response": "A man in a yellow jacket is pointing at the camera. He is standing in front of a desk with a laptop and a monitor. There are two keyboards on the desk, one in front of the monitor and one behind it. There are also two computer mice on the desk, one in front of the laptop and one in front of the monitor.", - "id": 17704 - }, - { - "image_path": "/content/drive/MyDrive/combined/15495c9c3fac7e59.jpg", - "response": "A computer screen with a list of files on it.", - "id": 17705 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ccb79fd4d110f6f.jpg", - "response": "A laptop with a design program open on the screen.", - "id": 17706 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0c0c500a0788ae.jpg", - "response": "A television screen with the word \"DaMoO\" on it.", - "id": 17707 - }, - { - "image_path": "/content/drive/MyDrive/combined/1207b95fcec2bef2.jpg", - "response": "A white laptop computer sitting on a bed.", - "id": 17708 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f509d64dd35f8b4.jpg", - "response": "A computer desk with a laptop and a monitor. The laptop is open and sitting on the desk, and the monitor is turned on. There is a mouse connected to the laptop on the desk as well.", - "id": 17709 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bb525427f9dedc3.jpg", - "response": "A desktop computer with a monitor, keyboard, and mouse.", - "id": 17710 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0029e9fd3a3f7e.jpg", - "response": "A laptop computer is sitting on a desk next to a monitor. The laptop is open and has a blue screen. There is a mouse connected to the laptop via a cord. A keyboard is also connected to the laptop. A second monitor is sitting on the desk next to the laptop.", - "id": 17711 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee221683976f50f.jpg", - "response": "An open laptop computer sitting on a table.", - "id": 17712 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eca2a77851ee154.jpg", - "response": "A skateboarder is on a computer screen in a home office.", - "id": 17713 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b388c7bf2bfc74.jpg", - "response": "A computer screen with a white background and a yellow bar at the bottom. On the screen, there are three circles being drawn with black dots for the center of each circle. There are also several toolbars at the bottom of the screen.", - "id": 17714 - }, - { - "image_path": "/content/drive/MyDrive/combined/13f6a7e70b53ecd1.jpg", - "response": "The image shows two men sitting at a table. They are both wearing black suits and headphones. The man on the left has a black microphone in front of him and a sign that reads 'Director General' is placed in front of the rightmost man. They both look like they are listening to something.", - "id": 17715 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6d39ab7eebbb63.jpg", - "response": "A laptop screen displays the word n veneo on the bottom.", - "id": 17716 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa2ef4ecee9a6b7.jpg", - "response": "The image shows three different electronic devices sitting next to each other. From left to right, the devices are a Nintendo DS, a laptop computer, and another laptop computer. The two laptops are identical and are white in color. They have stickers on them and their screens are turned on. The laptop on the left has a black screen and the one on the right has a blue screen. The Nintendo DS is a small rectangular device with a screen on the top left corner and buttons on the bottom.", - "id": 17717 - }, - { - "image_path": "/content/drive/MyDrive/combined/123f5301ff7d8720.jpg", - "response": "A laptop computer with a Jeopardy game on the screen.", - "id": 17718 - }, - { - "image_path": "/content/drive/MyDrive/combined/13ca0581b27abb9c.jpg", - "response": " A man(678,302),(908,757) standing in front of a laptop.", - "id": 17719 - }, - { - "image_path": "/content/drive/MyDrive/combined/113837d237e6f9d7.jpg", - "response": "A desk with two computers, one a desktop and the other a laptop, both with their monitors on.", - "id": 17720 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e029c216b7c91f.jpg", - "response": "A laptop with a screen that has lines of code on it.", - "id": 17721 - }, - { - "image_path": "/content/drive/MyDrive/combined/144c63b8a7947818.jpg", - "response": "A computer monitor that is on and has the word \"tis\" on the screen.", - "id": 17722 - }, - { - "image_path": "/content/drive/MyDrive/combined/13820377218916ec.jpg", - "response": "A person sitting in front of a laptop computer.", - "id": 17723 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec6b113d2663733.jpg", - "response": "A Sony television is sitting on a wooden entertainment center. The television is on and has a blue screen with some text. There are several books scattered around the entertainment center.", - "id": 17724 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a0773b46524920.jpg", - "response": "A wooden desk with a silver laptop on it.", - "id": 17725 - }, - { - "image_path": "/content/drive/MyDrive/combined/088a080ba5608913.jpg", - "response": "A laptop computer with a keyboard and screen.", - "id": 17726 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ff80335de0123f8.jpg", - "response": "A open laptop with a blue screen and a terminal window open.", - "id": 17727 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac4a5f7b05f5fa1.jpg", - "response": "A computer monitor is on a desk with a funny desktop background. The monitor is an IBM model. On the desk there is also a bottle of beer, a cup, a keyboard, a mouse, and a phone.", - "id": 17728 - }, - { - "image_path": "/content/drive/MyDrive/combined/15e8addeb07235ce.jpg", - "response": "The image shows a silver Samsung laptop that is open and facing away from the camera. The laptop is on a white background. The laptop has a silver color and the Samsung logo is visible on the side. The laptop has a black keyboard and a touchpad. The screen of the laptop is not visible in the image. The laptop has a hinge that allows it to be opened and closed.", - "id": 17729 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb4580f4b338fd3.jpg", - "response": "A computer screen with a white page on it.", - "id": 17730 - }, - { - "image_path": "/content/drive/MyDrive/combined/12dacc3748cc068d.jpg", - "response": "A woman sitting in front of a desk with two computer monitors. She is wearing a blue and white striped shirt and glasses. The monitors display various content such as a video and a webpage. There is a remote control and a keyboard on the desk.", - "id": 17731 - }, - { - "image_path": "/content/drive/MyDrive/combined/088b2a4828215ee4.jpg", - "response": "A desk with a laptop and a computer monitor.", - "id": 17732 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6b95ac47d5506c.jpg", - "response": "A screen shot of a Tech Meetup in Edinburgh from February 11, 2015.", - "id": 17733 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d435829ebef1ebe.jpg", - "response": "A computer monitor sitting on a desk.", - "id": 17734 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a056f7f162ebbf2.jpg", - "response": "A television screen displays a guide for the available channels.", - "id": 17735 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a41459ab85b2fb5.jpg", - "response": "A computer monitor is on a desk.", - "id": 17736 - }, - { - "image_path": "/content/drive/MyDrive/combined/105bb5dae2923dea.jpg", - "response": "A computer monitor with a blue screen and a login screen on it.", - "id": 17737 - }, - { - "image_path": "/content/drive/MyDrive/combined/09680448ebf53931.jpg", - "response": "A monitor and a box on a white surface.", - "id": 17738 - }, - { - "image_path": "/content/drive/MyDrive/combined/12febb2cd0f917db.jpg", - "response": "A computer monitor with a blue screen.", - "id": 17739 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b458f4f665efb5b.jpg", - "response": "A laptop screen that says \"Don't Eat That!\" on the screen.", - "id": 17740 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a6b6603ba041e6.jpg", - "response": "A laptop on a table with a bag of chips, two bowls of food, two cans of soda, and a mouse.", - "id": 17741 - }, - { - "image_path": "/content/drive/MyDrive/combined/17d2127854340e4f.jpg", - "response": "A Dell computer monitor is on a desk.", - "id": 17742 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee30e813b3b8808.jpg", - "response": "A computer monitor with a screen full of data.", - "id": 17743 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df9c2a6198243c0.jpg", - "response": "A wooden and glass display box with a metal object inside. The metal object is a machine with a drill in it. There is a monitor sitting on a table next to the display box. The monitor has a green line on it. A mouse is on the table in front of the monitor. A keyboard is on the table in front of the monitor as well. A pair of pliers is on the table in front of the display box. A sign is attached to the display box that says \"for $195\".", - "id": 17744 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e02dc789119c5d.jpg", - "response": "A computer monitor is sitting on a desk.", - "id": 17745 - }, - { - "image_path": "/content/drive/MyDrive/combined/14994837a2a688e0.jpg", - "response": "A man in a suit standing at a podium with a laptop in front of him.", - "id": 17746 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ad1f2ec0e84b83d.jpg", - "response": "a man standing in front of a laptop and a projector screen", - "id": 17747 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d340a30d1772b20.jpg", - "response": "A computer monitor is on a desk with a mouse and keyboard.", - "id": 17748 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a2d951876c53217.jpg", - "response": "A laptop is sitting on a wooden box on a desk. The laptop is open and has a website displayed. There is a mouse connected to the laptop and a pair of headphones next to it. A DJ controller is also present on the desk. A picture is hanging on the wall behind the laptop.", - "id": 17749 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bf349945dde8076.jpg", - "response": "A laptop screen displays the welcome page for the GAP conference.", - "id": 17750 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d483c5cffe29b2d.jpg", - "response": "An open laptop computer sitting on a white desk.", - "id": 17751 - }, - { - "image_path": "/content/drive/MyDrive/combined/39d31e9c85066d9b.jpg", - "response": "A yellow machine with a keyboard and screen on top of it.", - "id": 17752 - }, - { - "image_path": "/content/drive/MyDrive/combined/30d84d078addcdf1.jpg", - "response": "A desk with two computer monitors, a keyboard, a mouse, a bag of chips, a cup, and a pair of headphones.", - "id": 17753 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c0e63a377f190f8.jpg", - "response": "A computer screen with a picture of a blue eye on it.", - "id": 17754 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b0e28d7e07e7394.jpg", - "response": "The image shows a home office workspace with a desk that has two computer monitors sitting on it. The monitors are side by side and are both turned on. There is a keyboard in front of the monitors and a mouse to the right of the keyboard. Additionally, there are a few books on the desk, one on the left side and one on the right side. A cup can be seen on the left side of the desk, and a person is visible in the background.", - "id": 17755 - }, - { - "image_path": "/content/drive/MyDrive/combined/25177d06e1fbb86a.jpg", - "response": "A laptop screen that is open to a student login page for a website called Project Noah. The login page is asking for a username and password.", - "id": 17756 - }, - { - "image_path": "/content/drive/MyDrive/combined/37496b598b2261cc.jpg", - "response": "A person using a laptop computer.", - "id": 17757 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe15f8da6f095bf.jpg", - "response": "A computer desk with two monitors side by side. The screens are both showing the same red screen.", - "id": 17758 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cc351507060a546.jpg", - "response": "A large computer monitor sitting on a desk.", - "id": 17759 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b821afa260fcaae.jpg", - "response": "A group of people sitting at a long table with blue tablecloths. They are dressed in business attire and appear to be having a meeting. There are several cups on the table and a laptop is open and in use.", - "id": 17760 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a586d17ee39050c.jpg", - "response": "A man in a black shirt is sitting in front of a laptop. Another man is sitting across from him. There is a cork board on the wall behind them. A rolled up poster is on the cork board. A paper is on the desk in front of the man in the black shirt. There is a cup on the desk behind the laptop.", - "id": 17761 - }, - { - "image_path": "/content/drive/MyDrive/combined/379fc9f2c51161ac.jpg", - "response": "A desk with a computer on it.", - "id": 17762 - }, - { - "image_path": "/content/drive/MyDrive/combined/377bc7bb35706015.jpg", - "response": "A showroom with three large flat screen televisions on display.", - "id": 17763 - }, - { - "image_path": "/content/drive/MyDrive/combined/203d9cc8d63c0287.jpg", - "response": "A screen shot of an email from Malaria No More. The email is open in an email client.", - "id": 17764 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e405bd27f6d7e6e.jpg", - "response": "A man sitting at a desk with a computer and keyboard in front of him.", - "id": 17765 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ec93209ecb3d2b1.jpg", - "response": "A white laptop computer is sitting on a blue desk. The screen of the laptop is displaying a children's educational game. There is a mouse on the desk next to the laptop.", - "id": 17766 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b8800b25c6427f9.jpg", - "response": "A large computer monitor is sitting on a desk. On the screen, there is a website open that is in English. There is a row of three different webpages visible on the screen. The computer monitor is a Samsung brand.", - "id": 17767 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f82ba087e1e8321.jpg", - "response": "A laptop computer sitting on top of a wooden table.", - "id": 17768 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c03533568d1557.jpg", - "response": "The image shows a tablet with a keyboard attached. The tablet is an Android device and is open, displaying the home screen. The screen is bright and blue. The keyboard is in front of the screen and has white keys. The tablet also has a camera on the top left side.", - "id": 17769 - }, - { - "image_path": "/content/drive/MyDrive/combined/20d1270bead5a647.jpg", - "response": "A laptop screen is open to a video editing program. The screen is divided into two sections, one with a progress bar and the other with a timeline. There are several buttons along the bottom of the screen. The laptop is sitting on a wooden desk.", - "id": 17770 - }, - { - "image_path": "/content/drive/MyDrive/combined/266c5c06d58b8b43.jpg", - "response": "A monitor is sitting on a desk with a video game displayed on it. The game has a person in a white shirt on a wooden deck.", - "id": 17771 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2c5b9b9b0ab88a.jpg", - "response": "A computer screen with a twitter feed on it.", - "id": 17772 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e3e75a00fd157b5.jpg", - "response": "A table with two laptops on it, both are open and powered on. The left laptop is an older model silver MacBook with a black keyboard and the right laptop is a newer model space gray MacBook with a black keyboard. Both laptops are running the same software.", - "id": 17773 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef1d7c251429099.jpg", - "response": "A Dell computer monitor sitting on a desk with two different screens.", - "id": 17774 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c3081d19c9add1.jpg", - "response": "A laptop with a red timer on the screen that says 56:56. Another laptop is open next to it and there is a mouse on a piece of paper. In front of the laptops is a soundboard with a microphone in front of it.", - "id": 17775 - }, - { - "image_path": "/content/drive/MyDrive/combined/324c8d303b1b0025.jpg", - "response": "A black and red LG television sitting on a grey stand.", - "id": 17776 - }, - { - "image_path": "/content/drive/MyDrive/combined/382f16d0bd6f7de3.jpg", - "response": "A man sitting in front of a computer monitor.", - "id": 17777 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c13f85e453a54e4.jpg", - "response": "A large screen is showing a schedule for a conference. The screen is on a table and the table is in front of a wall. The title on the screen is \"MADEXPO SESSION FINDER\" and there are multiple colored squares on the screen. There are also several buttons on the screen.", - "id": 17778 - }, - { - "image_path": "/content/drive/MyDrive/combined/38541a3f4ad44f5d.jpg", - "response": "The image shows a black and silver laptop computer. The laptop has a black screen and silver keys on the keyboard. The laptop is made by Toshiba.", - "id": 17779 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b298b41ad5113a0.jpg", - "response": "A computer screen with a black background and a white and blue logo that says \"Windows\". The screen also has a blue and white bar that says \" senseye / photo\". There is a white box with the time 18:35 and a black box below that with the word \" \u6b63\u7248\u6388\u6743\". There is a black box with the word \" \u78a7\u7edd \" in white.", - "id": 17780 - }, - { - "image_path": "/content/drive/MyDrive/combined/3791f6e40216d25a.jpg", - "response": "A black cat is laying on a couch with its head on the keyboard of a white laptop.", - "id": 17781 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb1e49827c4a644.jpg", - "response": "A computer screen with a lot of information on it.", - "id": 17782 - }, - { - "image_path": "/content/drive/MyDrive/combined/26843e2a6d18a23d.jpg", - "response": "A silver laptop with a black keyboard.", - "id": 17783 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f1ddcc07f127ea8.jpg", - "response": "A computer screen that is on with a message that says \"Checking application trace files for abnormal termination. Please be patient.\" next to a cash out machine.", - "id": 17784 - }, - { - "image_path": "/content/drive/MyDrive/combined/273df1a961b0e2a8.jpg", - "response": "A screen shot of Yahoo's beta search engine.", - "id": 17785 - }, - { - "image_path": "/content/drive/MyDrive/combined/375004189f5fad8f.jpg", - "response": "A laptop computer is sitting on a desk next to a monitor. Both the laptop and monitor are open and turned on. The laptop is on the right side of the desk and the monitor is on the left. The laptop is a black Apple computer.", - "id": 17786 - }, - { - "image_path": "/content/drive/MyDrive/combined/20820b4e8131aa78.jpg", - "response": "A laptop computer is sitting on a cart with a monitor.", - "id": 17787 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cc544ae0e688a5a.jpg", - "response": "A laptop screen with the Microsoft Windows XP loading up.", - "id": 17788 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1b01333ac1742f.jpg", - "response": "A TV monitor with the roku netflix app on the screen.", - "id": 17789 - }, - { - "image_path": "/content/drive/MyDrive/combined/21375c6cdec4a7c6.jpg", - "response": "A TV mounted on the ceiling of a public transportation vehicle.", - "id": 17790 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e85203e9ba87a8c.jpg", - "response": "A computer screen with a powerpoint on it.", - "id": 17791 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dbd94d89d576e28.jpg", - "response": "A laptop computer sitting on a desk.", - "id": 17792 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b99fc4a24b1167b.jpg", - "response": "A man with glasses looking at a silver laptop.", - "id": 17793 - }, - { - "image_path": "/content/drive/MyDrive/combined/3173014f246238ac.jpg", - "response": "A black laptop computer with a screen that says \"Ubuntu\" on it.", - "id": 17794 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e86aaff632edb96.jpg", - "response": "A computer screen with a website on it.", - "id": 17795 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e9b1f9222a76ece.jpg", - "response": "A cardboard box for an LG monitor, still in its packaging, is sitting on a wooden floor.", - "id": 17796 - }, - { - "image_path": "/content/drive/MyDrive/combined/220e9cd7208c85a3.jpg", - "response": "A store display of electronics, including a television, radio, and speakers.", - "id": 17797 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fc936094730ba96.jpg", - "response": "A laptop computer is sitting on a table with a mouse. The laptop screen is open to a program. Next to the laptop is a mouse and a person's hands. There is a box of electronics and wires on the table. A person is sitting at the table working on the electronics.", - "id": 17798 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe8595fb5271229.jpg", - "response": "A wall with many different things on it.", - "id": 17799 - }, - { - "image_path": "/content/drive/MyDrive/combined/23d43d32e3783d4b.jpg", - "response": "A laptop screen with a graph on it.", - "id": 17800 - }, - { - "image_path": "/content/drive/MyDrive/combined/25d8358103eb68ad.jpg", - "response": "A laptop computer is sitting on a white table.", - "id": 17801 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e8c554de9040d0.jpg", - "response": "A computer monitor with a screen full of games.", - "id": 17802 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e0a45879e9c53b.jpg", - "response": "A laptop computer is open and sitting on a desk. The screen displays a language selection menu in Spanish. The laptop is an Apple brand and the keyboard is black and white.", - "id": 17803 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a6d2b256ab581fe.jpg", - "response": "A laptop on a desk with a mouse.", - "id": 17804 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ea75edf9cd57a9.jpg", - "response": "A laptop computer sitting on a table.", - "id": 17805 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ebffb38d17f10d5.jpg", - "response": "A computer monitor and keyboard are sitting on a table.", - "id": 17806 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b1dd0009abdbe9a.jpg", - "response": "A table with a laptop, a book, and a robot on top of it.", - "id": 17807 - }, - { - "image_path": "/content/drive/MyDrive/combined/21b6bde202d35e2d.jpg", - "response": "A large auditorium with a stage and a big screen showing the conference program.", - "id": 17808 - }, - { - "image_path": "/content/drive/MyDrive/combined/284cc91d96ef8927.jpg", - "response": "A computer monitor is sitting on a desk in front of a window. The monitor is on and has a document open. There is a keyboard and a mouse next to the monitor. A cup is also visible on the desk.", - "id": 17809 - }, - { - "image_path": "/content/drive/MyDrive/combined/26726e25ef9b30e7.jpg", - "response": "A woman standing on a stage in front of a large screen.", - "id": 17810 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ac4fc849f07bc50.jpg", - "response": "The image shows two laptops sitting on a glass table. The left laptop is open and has a blue screen, while the right laptop is closed. Both laptops are Dells.", - "id": 17811 - }, - { - "image_path": "/content/drive/MyDrive/combined/438d7046bdb353bd.jpg", - "response": "A couple of people sitting at a table with a laptop and a computer.", - "id": 17812 - }, - { - "image_path": "/content/drive/MyDrive/combined/4399a041ced4f7e8.jpg", - "response": "A computer screen with a playlist on it.", - "id": 17813 - }, - { - "image_path": "/content/drive/MyDrive/combined/5223caea427f4ede.jpg", - "response": "A man sitting at a table with two laptops in front of him.", - "id": 17814 - }, - { - "image_path": "/content/drive/MyDrive/combined/46759c073f68adb2.jpg", - "response": "A black laptop computer screen is on a desk.", - "id": 17815 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c8f56ad2ec6168.jpg", - "response": "A desk with two computer monitors, a keyboard, a mouse, and a cell phone.", - "id": 17816 - }, - { - "image_path": "/content/drive/MyDrive/combined/537758ac7eb12aee.jpg", - "response": "A computer screen with a webpage open that has a video titled \"Video posted by Santa\" and a picture of a baby in a Santa suit.", - "id": 17817 - }, - { - "image_path": "/content/drive/MyDrive/combined/5371cd2bc59dab7b.jpg", - "response": "In the image there is a man sitting in front of two computer screens. The screens display a video conference call with multiple people. There are two men on the screens talking to each other.", - "id": 17818 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f3fe0c298c11511.jpg", - "response": "a computer screen with a twitter feed on it", - "id": 17819 - }, - { - "image_path": "/content/drive/MyDrive/combined/4894c0b9a2f9eae3.jpg", - "response": "A computer screen with a webpage open that is titled \"Textorizer\". There is a blue square with a smiley face on it.", - "id": 17820 - }, - { - "image_path": "/content/drive/MyDrive/combined/4349b706639fab2e.jpg", - "response": "An engineer works at a desk with multiple computer screens.", - "id": 17821 - }, - { - "image_path": "/content/drive/MyDrive/combined/479ea1b2027a30d6.jpg", - "response": "A man in a suit sitting at a desk with a laptop and a large screen TV.", - "id": 17822 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a62f06858e41b91.jpg", - "response": "A laptop computer is sitting on a desk in front of a TV. The laptop screen displays a man with a beard. A video camera is also on the desk.", - "id": 17823 - }, - { - "image_path": "/content/drive/MyDrive/combined/449175d0ba9971c8.jpg", - "response": "The image shows a white netbook with a screen that displays the words \"Eee PC 901\". The netbook has a white keyboard and a touchpad with a white mouse pointer. The netbook is open and sitting on a white surface.", - "id": 17824 - }, - { - "image_path": "/content/drive/MyDrive/combined/51b8075f15bb5b79.jpg", - "response": "A laptop screen that is open to the Project Noah website.", - "id": 17825 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f0f359e64324096.jpg", - "response": "A laptop computer with a blue screen that is in the process of installing Windows XP Professional.", - "id": 17826 - }, - { - "image_path": "/content/drive/MyDrive/combined/53cdf98aa96f9073.jpg", - "response": "A man standing at a podium giving a lecture.", - "id": 17827 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f491de9b8cb2f78.jpg", - "response": "A group of people standing on a stage with a large screen behind them. The people are dressed in suits and appear to be speakers or presenters. The stage has chairs and a podium, and there are people seated in the front row. The screen is showing a presentation, and there are several slides visible. The room has a red theme and is well lit.", - "id": 17828 - }, - { - "image_path": "/content/drive/MyDrive/combined/5132f0a0c25030bf.jpg", - "response": "An older man with a white shirt and gray hair is sitting at a computer desk with a computer, keyboard, and other electronic equipment around him. He is wearing headphones and looking at the computer screen.", - "id": 17829 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a95b8268942c902.jpg", - "response": "A laptop computer with a white keyboard and screen.", - "id": 17830 - }, - { - "image_path": "/content/drive/MyDrive/combined/4af6a299c1ee0b1f.jpg", - "response": "A desk with three computer monitors on it.", - "id": 17831 - }, - { - "image_path": "/content/drive/MyDrive/combined/4de878474a8330aa.jpg", - "response": "A black laptop computer sitting on a table.", - "id": 17832 - }, - { - "image_path": "/content/drive/MyDrive/combined/4adf9934114f46d9.jpg", - "response": "A dark room with a large screen on the front of it.", - "id": 17833 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed7adff006358e7.jpg", - "response": "A Dell computer monitor and keyboard sit on a wooden desk. The monitor is on and displays a screen that says \"Free High Speed Internet\" on the left and \" Connectivity\" on the right. Below the screen is a blue bar with a white dot in the center and a black dot on the right. There are also two lines of text in the center of the screen. To the right of the screen is a Dell logo. The keyboard is black and has white keys. There is a black mouse to the right of the keyboard. To the left of the computer monitor is a black square on the desk.", - "id": 17834 - }, - { - "image_path": "/content/drive/MyDrive/combined/515181201d5e0c12.jpg", - "response": "A black laptop computer sitting on top of a cardboard box.", - "id": 17835 - }, - { - "image_path": "/content/drive/MyDrive/combined/528e47cf6a9dfc0a.jpg", - "response": "A monitor that is on and displaying a picture of the word ITALY.", - "id": 17836 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e10dbdc5e793cca.jpg", - "response": "A display of VIA's V1011, a motherboard with four USB 3.0 ports.", - "id": 17837 - }, - { - "image_path": "/content/drive/MyDrive/combined/4053c9437c9e564b.jpg", - "response": "A desk with two monitors, a laptop, a mouse, and two keyboards.", - "id": 17838 - }, - { - "image_path": "/content/drive/MyDrive/combined/43b30bddcdf220c3.jpg", - "response": "A black laptop computer on a white desk.", - "id": 17839 - }, - { - "image_path": "/content/drive/MyDrive/combined/499e54e19cbbaaef.jpg", - "response": "A vintage IBM computer monitor is sitting on top of a stack of older IBM computer equipment.", - "id": 17840 - }, - { - "image_path": "/content/drive/MyDrive/combined/44481f5fcfc31b11.jpg", - "response": "A computer screen with a black and white drawing of Gohan from Dragon Ball Z.", - "id": 17841 - }, - { - "image_path": "/content/drive/MyDrive/combined/516c8870e3cd7ff5.jpg", - "response": "A laptop computer sitting on a wooden desk.", - "id": 17842 - }, - { - "image_path": "/content/drive/MyDrive/combined/45a3e9dc6141ae1a.jpg", - "response": "A large screen TV mounted on a wall displaying information.", - "id": 17843 - }, - { - "image_path": "/content/drive/MyDrive/combined/5562d2daaf700026.jpg", - "response": "In the image, there is a man standing in front of a display with two TVs mounted on the wall. The TVs are displaying different images. There are also other people standing around the display, talking and looking at the screens. Some of them are holding cups. In the background, there are more people walking around the convention center.", - "id": 17844 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cf002adfc61f047.jpg", - "response": "A white laptop with a music recording program on the screen.", - "id": 17845 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bfefb4c80d5de78.jpg", - "response": "A black LG computer monitor sitting on a black stand.", - "id": 17846 - }, - { - "image_path": "/content/drive/MyDrive/combined/4291a2f120ca90e3.jpg", - "response": "A girl with a pink hair tie is playing Minecraft on a black computer.", - "id": 17847 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a970cd96f366a6c.jpg", - "response": "A group of children sitting around a table with a laptop.", - "id": 17848 - }, - { - "image_path": "/content/drive/MyDrive/combined/5339f85b825c99cf.jpg", - "response": "A computer screen with a white background and black text. The text on the screen reads \"OK THIS IS SERIOUS SERGEY YOUR HARD DRIVE IS FAILING!\"", - "id": 17849 - }, - { - "image_path": "/content/drive/MyDrive/combined/42dab293ff2cd065.jpg", - "response": "A table with a laptop and various items on it including flyers, brochures, and a mouse.", - "id": 17850 - }, - { - "image_path": "/content/drive/MyDrive/combined/4843b867471e0c9d.jpg", - "response": "A screen shot of a computer monitor with a logo for Visual Studio on the screen.", - "id": 17851 - }, - { - "image_path": "/content/drive/MyDrive/combined/54548d14ba0d8e2a.jpg", - "response": "A television with a guide showing what is playing and what is coming up.", - "id": 17852 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d15259e77c6949a.jpg", - "response": "A computer screen with a web page open to a task management application. The screen is large and takes up the majority of the image. The task management application has several boards, each with different tasks. Some of the boards include \"Racing\", \"Design Thinking\", \"Summer School\", \"Microsoft Trip\", \"Add a list\", \"Activity\", and \"Add Members\". There are also notes and comments on the boards.", - "id": 17853 - }, - { - "image_path": "/content/drive/MyDrive/combined/43fa6f6b9998cd27.jpg", - "response": "A black LG television is shown on a white background. The television is a flat screen and is sitting on a black stand. The television is turned off and there is no image displayed on the screen.", - "id": 17854 - }, - { - "image_path": "/content/drive/MyDrive/combined/4483e09b9605f27d.jpg", - "response": "A computer screen with a blue background and a black text box with a heading that says \"Choose your desired node:\". The heading is in bold and blue. Underneath the heading is a list of options. The first option is \"filesystem, every bit, local-ftp\" and is highlighted in yellow. Below the list of options is a button that says \"OK\" and is highlighted in yellow.", - "id": 17855 - }, - { - "image_path": "/content/drive/MyDrive/combined/414dd818436f45b6.jpg", - "response": "A laptop computer sitting on a desk with a keyboard.", - "id": 17856 - }, - { - "image_path": "/content/drive/MyDrive/combined/52dfc984e78c1833.jpg", - "response": "A screen with a powerpoint on it that is titled Appreciation and Acknowledgements.", - "id": 17857 - }, - { - "image_path": "/content/drive/MyDrive/combined/4963d6b6229ce767.jpg", - "response": "A black Samsung laptop with a red and black background on the screen.", - "id": 17858 - }, - { - "image_path": "/content/drive/MyDrive/combined/46166fa662b13680.jpg", - "response": "A display of a 3D printer and a computer monitor.", - "id": 17859 - }, - { - "image_path": "/content/drive/MyDrive/combined/527e1454defd9cfd.jpg", - "response": "A black LG monitor with a white LG logo on the bottom right hand side.", - "id": 17860 - }, - { - "image_path": "/content/drive/MyDrive/combined/46045007b002cb56.jpg", - "response": "A laptop screen displays a graph with the title \"Kings of Leon\" on the left and \"Morrissey\" on the right. The laptop is open and sitting on a desk.", - "id": 17861 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b126912c4bdf26b.jpg", - "response": "The image shows a small store with a lot of signs. There are three people in the store, with one person in the doorway and two others inside. They are all carrying bags. The store has a lot of advertisements and signs, and it is covered in graffiti.", - "id": 17862 - }, - { - "image_path": "/content/drive/MyDrive/combined/095e4d0374cc3566.jpg", - "response": "A grocery store aisle filled with lots of products on the shelves.", - "id": 17863 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b614fbcdb76aa98.jpg", - "response": "a store with a lot of boxes and items on the shelves", - "id": 17864 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cb98457ea647233.jpg", - "response": "An old store with a tin roof has a variety of items on the shelves. There are bottles of soda on the shelves and on a counter. There are also carrots on a shelf. A scale is on the right side of the room.", - "id": 17865 - }, - { - "image_path": "/content/drive/MyDrive/combined/0966b50bb07fa8e4.jpg", - "response": "A store aisle with a display of Gatorade bottles.", - "id": 17866 - }, - { - "image_path": "/content/drive/MyDrive/combined/093e6165a2ef9e44.jpg", - "response": "a store with a large sign that says fresh bakery and fresh deli", - "id": 17867 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dba09673f413734.jpg", - "response": "The image shows the inside of a store with a variety of items on display. There are multiple bottles of alcohol, including wine and liquor, arranged on shelves and in coolers. A laptop is visible in the foreground, and a TV is mounted on the wall. A chair is situated near the front of the store, and a clock can be seen on the wall. The store appears to be well-lit and organized.", - "id": 17868 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e3431ee46f0b6c4.jpg", - "response": "The image shows a grocery store aisle with a white floor. There are several refrigerators lining the aisle, containing a variety of products. Some of the products include a case of orange soda, a case of beer, and a case of water. There is also a sign that says \"dairy\" and another sign that says \"spirits\" above the alcohol cases. The aisle is empty of people and has a store shopping cart at the far end.", - "id": 17869 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c55c848c38f057.jpg", - "response": "A bookshelf with many books on it.", - "id": 17870 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ce58c19e4b102de.jpg", - "response": "A man standing in a grocery store aisle with a shopping cart.", - "id": 17871 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e17d71837d0f5b.jpg", - "response": "A man standing in front of a store counter with bottles of Fanta and pineapple juice on it.", - "id": 17872 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa95f0593192820.jpg", - "response": "Akihabara is a store with a large glass front. Inside the store, there are many products on display. There are people sitting on benches outside the store. One person is standing near the store entrance. There are two benches, one is on the left side of the store and the other is on the right side. There is a person sitting on the bench on the left side. There is a person sitting on the bench on the right side. There are two people sitting on the floor in front of the store.", - "id": 17873 - }, - { - "image_path": "/content/drive/MyDrive/combined/079fa558a505e01b.jpg", - "response": "An overhead view of a produce market with many different fruits and vegetables.", - "id": 17874 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b652647bc87cd62.jpg", - "response": " two men(85,98),(459,997)(395,29),(995,999) in a store", - "id": 17875 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5e46166ce7de22.jpg", - "response": "A man in a green shirt is talking to a cashier at a store. The store has a counter with a sign that says \"Keys Made Here\" and a display of fishing poles. There are also shelves of fishing tackle and a rack of boots.", - "id": 17876 - }, - { - "image_path": "/content/drive/MyDrive/combined/2040777e31ac567a.jpg", - "response": "A clothing store with a yellow and red theme.", - "id": 17877 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e961777ef628e47.jpg", - "response": "A woman in a store wearing a grey hat with a pink star on it.", - "id": 17878 - }, - { - "image_path": "/content/drive/MyDrive/combined/23dc721fbbcc4c5a.jpg", - "response": "A deli case filled with a variety of food items.", - "id": 17879 - }, - { - "image_path": "/content/drive/MyDrive/combined/18f47403726698a7.jpg", - "response": "A woman sitting behind a counter in a store filled with lots of candy.", - "id": 17880 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f06eb6ce0fb4573.jpg", - "response": "A bottle of Green Flash Citra Session next to a glass filled with the beer.", - "id": 17881 - }, - { - "image_path": "/content/drive/MyDrive/combined/13de5557647e8e13.jpg", - "response": "A man walking in front of a book store with a large window.", - "id": 17882 - }, - { - "image_path": "/content/drive/MyDrive/combined/2480f50e1e012d13.jpg", - "response": "A store with books and games on the shelves.", - "id": 17883 - }, - { - "image_path": "/content/drive/MyDrive/combined/308392840612956c.jpg", - "response": "The image shows the exterior of a store called \"COSMED\". The store is located in a mall. There are several products displayed in the store, including a display of various beauty products. A person is visible in the store, walking through the aisles.", - "id": 17884 - }, - { - "image_path": "/content/drive/MyDrive/combined/104d0de719c2d6ce.jpg", - "response": "The image shows a grocery store with a large produce section. There are many different fruits and vegetables on display, including apples, oranges, and broccoli. A man is standing near the produce section, and there is a shopping cart nearby. The store has a blue and white color scheme, and there are several bags hanging near the produce section.", - "id": 17885 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fbd2155fdf429a6.jpg", - "response": "A man sitting in a chair in a store.", - "id": 17886 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ad914764fb3da86.jpg", - "response": "A bottle of mayonnaise is laying on a blue counter. The bottle is blue and white and has a yellow and green label. The label features a picture of a sandwich and says \"Imperia\" on it.", - "id": 17887 - }, - { - "image_path": "/content/drive/MyDrive/combined/331f2da796462cf4.jpg", - "response": "A store with a large sign that says Mr. Cheese Monger.", - "id": 17888 - }, - { - "image_path": "/content/drive/MyDrive/combined/10de471418f63847.jpg", - "response": "A toy store with a counter and shelves full of stuffed animals and toys. There are several teddy bears on the shelves and a sign advertising a sale. The store has a bright and colorful atmosphere with decorations such as paper lanterns and balloons.", - "id": 17889 - }, - { - "image_path": "/content/drive/MyDrive/combined/132a53f9f69f0f1a.jpg", - "response": "A store with a large selection of books and magazines.", - "id": 17890 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f564f8385c54573.jpg", - "response": "A store with a yellow sign in front that says \"Kwik-E-Mart\". There is a counter with a man standing behind it. The store has a lot of items on the shelves and in the aisles.", - "id": 17891 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a33ae4da310ef89.jpg", - "response": "The image shows the entrance to a store called Fruits & Passion. The storefront is lit up and the sign above the entrance says \"Fruits & Passion\" in black letters. The store appears to be a shop that sells various types of products.", - "id": 17892 - }, - { - "image_path": "/content/drive/MyDrive/combined/12535e76e3514639.jpg", - "response": "The image shows a store aisle with white walls and tiled ceiling. There are several shelves filled with cleaning products, including many bottles of different sizes and shapes. Some of the products are displayed at an angle, and there is a sign above the shelves. In the background, a person can be seen shopping in the store.", - "id": 17893 - }, - { - "image_path": "/content/drive/MyDrive/combined/3187e1ccbfe3d81b.jpg", - "response": "The image shows a large market with a variety of items for sale. There are many signs and displays, and the market is filled with a wide assortment of goods. There are also many people shopping and browsing the items.", - "id": 17894 - }, - { - "image_path": "/content/drive/MyDrive/combined/3301ee4e1293560b.jpg", - "response": "A store with people shopping in it.", - "id": 17895 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da3fb4158ef5ed8.jpg", - "response": "A store front that says Classic Blades and Gifts on it.", - "id": 17896 - }, - { - "image_path": "/content/drive/MyDrive/combined/10830e94d5ec6338.jpg", - "response": "A Japanese vending machine with a lot of items for sale.", - "id": 17897 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b3ea1f2d84405aa.jpg", - "response": "A table is covered with empty cans of Dr. Pepper 4th flavor. A cardboard box is also on the table. A man is sitting in a chair behind the table. A building has a sign on it that says \"coloriamo tutti i muri\".", - "id": 17898 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eed33165e7c9338.jpg", - "response": "A store with two women shopping inside.", - "id": 17899 - }, - { - "image_path": "/content/drive/MyDrive/combined/10c404feb96ab678.jpg", - "response": "A store with a blue and white awning selling a variety of items including beer and soda.", - "id": 17900 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e4b7be24f836b66.jpg", - "response": "A man in a green shirt is pushing a red shopping cart down a store aisle.", - "id": 17901 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5a0ae5c15fddf6.jpg", - "response": "A man in a blue shirt standing in front of a building.", - "id": 17902 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fdbba3552d1be9b.jpg", - "response": "The image shows a mall hallway with a white tile floor. There are several storefronts on the right side of the hallway, including one for Zumiez. The storefronts are filled with various items for sale. In the hallway, there are several people walking around, some carrying handbags. A clock is visible on the wall near the top of the image.", - "id": 17903 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec768d69c146ffe.jpg", - "response": "The image shows the inside of a grocery store with a white ceiling. There are several aisles with various products on display. The store has a bright and colorful atmosphere with decorations hanging from the ceiling. There are several customers throughout the store, some of them are shopping, and others are browsing. The store has a wide variety of products, including items on the shelves and in the aisles.", - "id": 17904 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb7fb9fb90cff35.jpg", - "response": "A store display of Lego toys, including Star Wars, is on a yellow shelf.", - "id": 17905 - }, - { - "image_path": "/content/drive/MyDrive/combined/3421e20cb83f0103.jpg", - "response": "A grocery store display of gluten free products on the shelves.", - "id": 17906 - }, - { - "image_path": "/content/drive/MyDrive/combined/121350e0df26f3b6.jpg", - "response": "The image shows a store shelf filled with a variety of food products. There are multiple containers of beefaroni, some of which are stacked on top of one another. Several cans of beefaroni are also visible on the shelf. In addition to the beefaroni, there are also several packages of beef nuggets, some of which are in the foreground and others which are further back on the shelf. The products are displayed in a store, and the shelf is white.", - "id": 17907 - }, - { - "image_path": "/content/drive/MyDrive/combined/3105308aa01ed7a6.jpg", - "response": "A store shelf filled with a wide variety of beer.", - "id": 17908 - }, - { - "image_path": "/content/drive/MyDrive/combined/31368b20c6ab7831.jpg", - "response": "The image shows the entrance to a Subway restaurant. The restaurant is located in a shopping mall. The entrance has a sign that says \"SUBWAY\" in yellow letters. There is a bench located to the right of the entrance.", - "id": 17909 - }, - { - "image_path": "/content/drive/MyDrive/combined/23849bd07e2a09aa.jpg", - "response": "A row of bicycles are parked outside a green storefront.", - "id": 17910 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d25ba63d73ed807.jpg", - "response": "A red and orange bag of Pulparindo candy.", - "id": 17911 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b104e5c8c7ffc7e.jpg", - "response": "A man standing at a counter in a store.", - "id": 17912 - }, - { - "image_path": "/content/drive/MyDrive/combined/1106b62e2cd0c708.jpg", - "response": "A woman sitting on the ground in front of a store.", - "id": 17913 - }, - { - "image_path": "/content/drive/MyDrive/combined/1316eff499eb29d5.jpg", - "response": "The image shows the inside of a grocery store. A large freezer display case is filled with food, and a few potted plants are placed nearby. The store has a well lit atmosphere and the aisles are filled with various products.", - "id": 17914 - }, - { - "image_path": "/content/drive/MyDrive/combined/32269ae705f9405c.jpg", - "response": "The image shows the inside of a store. There are several items on the shelves, including a variety of shirts and other merchandise. A sign above the entrance says \"Thank you for shopping.\"", - "id": 17915 - }, - { - "image_path": "/content/drive/MyDrive/combined/3487cfa77fd0c206.jpg", - "response": "A store with signs all over the place.", - "id": 17916 - }, - { - "image_path": "/content/drive/MyDrive/combined/161daae76938e398.jpg", - "response": "A store called Paperbacks with a pile of books in the middle of the store.", - "id": 17917 - }, - { - "image_path": "/content/drive/MyDrive/combined/30e562453c6c1051.jpg", - "response": "The image shows the inside of a large warehouse store with customers shopping. There are several shoppers in the store, some pushing shopping carts, and others standing near the shelves. The store has a variety of items on the shelves, including a large selection of drinks. The shopping carts are filled with items and placed near the shoppers. The store has a spacious feel to it with white ceilings and large beams.", - "id": 17918 - }, - { - "image_path": "/content/drive/MyDrive/combined/290989ff27a7ee75.jpg", - "response": "A grocery store with tiled floors and white tiled isles.", - "id": 17919 - }, - { - "image_path": "/content/drive/MyDrive/combined/12bc08d2fce21a45.jpg", - "response": "a man standing in front of a magazine stand", - "id": 17920 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f7588f4893713c9.jpg", - "response": "A window display of a store filled with various types of candy.", - "id": 17921 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdd895bd95f38fe.jpg", - "response": "The image shows the inside of a Target store, with a large aisle filled with various toys. There are several people shopping in the store, with one person in the far right corner and another person closer to the center of the aisle. There are also two people shopping in another aisle that is not shown in the image. The store has bright orange shopping carts placed throughout the store, with one shopping cart in the aisle where the people are shopping and two others placed in the center of the store. The store has a white and orange color scheme, with orange signs above the shelves displaying different types of toys.", - "id": 17922 - }, - { - "image_path": "/content/drive/MyDrive/combined/2db125f90febe59a.jpg", - "response": "a store with a sign that says $1 stuff as close to free as it can be!", - "id": 17923 - }, - { - "image_path": "/content/drive/MyDrive/combined/158f4503b2bffe75.jpg", - "response": "A shopping cart is at the end of an aisle in a grocery store. The aisle is lined with shelves full of various products. There are several signs above the shelves, indicating the type of products available. The store has a brightly lit atmosphere.", - "id": 17924 - }, - { - "image_path": "/content/drive/MyDrive/combined/319a0d9f2c5d6065.jpg", - "response": "The image shows the inside of a grocery store filled with customers. There are several people shopping, some pushing shopping carts and others carrying baskets. The store has a wide selection of fruits and vegetables on display, including apples and oranges. There are also some people near the produce section. The store has a clean and well-organized appearance.", - "id": 17925 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f539606efffb5da.jpg", - "response": "The image shows the inside of a grocery store. There are several customers visible, including one near the right wall and another near the center of the store. The store has a variety of products on display, including a large display of water bottles near the center of the store. There are also shelves of snacks, including chips, located on the left side of the store. The store has a football theme, with a \"Football Frenzy\" sign visible above the entrance.", - "id": 17926 - }, - { - "image_path": "/content/drive/MyDrive/combined/353cfc5f107e8805.jpg", - "response": "A store front with a red awning and a large glass window. The word \"lomo\" is displayed in blue on the glass. The word \"lammaography\" is displayed in white on the red awning. There are multiple books on the ground in front of the store.", - "id": 17927 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e44ef4613826a20.jpg", - "response": "A convenience store with a large variety of chips on display.", - "id": 17928 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f352f513275b121.jpg", - "response": "A store front with a sign that says \"Ofertao\" on it.", - "id": 17929 - }, - { - "image_path": "/content/drive/MyDrive/combined/2452eeefff01e312.jpg", - "response": "A store display for Father's Day cards.", - "id": 17930 - }, - { - "image_path": "/content/drive/MyDrive/combined/18361a25529ab455.jpg", - "response": "A street view of a city with many signs in both English and Chinese.", - "id": 17931 - }, - { - "image_path": "/content/drive/MyDrive/combined/33557d4fcb266bb0.jpg", - "response": "The image shows the inside of a store with tile floors and white walls. There are multiple displays of cell phones, including a prominent display of Nokias. The store has a modern design and appears to be in a mall.", - "id": 17932 - }, - { - "image_path": "/content/drive/MyDrive/combined/3597fbf112474e93.jpg", - "response": "A small store with a blue awning and a sign that says \"\u653e\u83d3\u5b50\" above the door. The store is located on a small street and has a potted plant in front of it. There is also a post office located next to the store.", - "id": 17933 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c296753ea709fad.jpg", - "response": "A bar with a lot of liquor bottles on the shelves.", - "id": 17934 - }, - { - "image_path": "/content/drive/MyDrive/combined/22aa05ac015e7478.jpg", - "response": "The image shows the inside of a Hamleys toy store. There are many toys on display, including teddy bears and dolls. The store has a large sign that reads \"Fun 2 Learn\" and a sign that reads \"TAX FREE\". The store is clean and well-organized.", - "id": 17935 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c54eec31ca4ab6.jpg", - "response": "A store filled with lots of candy and treats.", - "id": 17936 - }, - { - "image_path": "/content/drive/MyDrive/combined/155d681ebc94f71b.jpg", - "response": "A convenience store with a large Hostess display in the middle of the store.", - "id": 17937 - }, - { - "image_path": "/content/drive/MyDrive/combined/270ee71a340f50e8.jpg", - "response": "A variety of alcoholic beverages are displayed on a counter. There are many bottles of alcohol, including Jim Beam and Jack Daniels, as well as a few wine glasses. In the background, there are other glasses and a bowl.", - "id": 17938 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a1dc4f649c70562.jpg", - "response": "A store front with a large cooler full of drinks.", - "id": 17939 - }, - { - "image_path": "/content/drive/MyDrive/combined/258dcb6be2766e6b.jpg", - "response": "The image shows a grocery store filled with various products. There is a man pushing a shopping cart, and another person is standing in the background. The store has multiple signs hanging from the ceiling, indicating the different sections or products available. The store seems to be well-stocked, with a variety of items on the shelves and displayed on the walls.", - "id": 17940 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f0087620a76fd48.jpg", - "response": "The image shows the inside of a Walmart store. There is a large blue sign that says \"Vision Center\" on a white background. The store has a lot of products on the shelves, including a variety of books, magazines, and other items. There is also a TV in the store. An American flag is hanging from a pole in the store.", - "id": 17941 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c43f6087c64dd3a.jpg", - "response": "The image shows the inside of a store with bright lights. There are several sections of the store, including a greeting cards and party supplies section, a health and beauty section, and a baby section. The store has a large selection of items, including books, toys, and other products. There are also several customers in the store, with some standing near the front and others scattered throughout the store.", - "id": 17942 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f82d4ae5bd6e6ba.jpg", - "response": "A large pile of boxes on a table in a store.", - "id": 17943 - }, - { - "image_path": "/content/drive/MyDrive/combined/550f5432dda88817.jpg", - "response": "A store with a purple and yellow Nexium display in the front.", - "id": 17944 - }, - { - "image_path": "/content/drive/MyDrive/combined/408f503828d50f36.jpg", - "response": "A man in a pink shirt standing behind a counter.", - "id": 17945 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b823e7f6f0aa955.jpg", - "response": "A man in a suit is standing in front of a small corner store. The store has a variety of items on display, including a number of boxes of candy. The man is looking at the items in the store, while another man is looking at a newspaper.", - "id": 17946 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c79aab76aba13b6.jpg", - "response": "The image shows a grocery store aisle with shelves full of food. The shelves are stocked with various types of food, including many cans of vegetables such as peas and carrots. The cans are arranged in neat rows and are of different sizes. Some of the cans have green, orange, and white labels. The scene gives off a sense of abundance and variety, with an endless selection of food for the shopper to choose from.", - "id": 17947 - }, - { - "image_path": "/content/drive/MyDrive/combined/470501af1825a250.jpg", - "response": "A display in a store filled with many different kinds of toothpaste.", - "id": 17948 - }, - { - "image_path": "/content/drive/MyDrive/combined/54a79d702b21b583.jpg", - "response": "a store with a dollar tree sign hanging from the ceiling", - "id": 17949 - }, - { - "image_path": "/content/drive/MyDrive/combined/39e2c4cdafcc9760.jpg", - "response": "A group of people standing in front of a display of produce at a grocery store.", - "id": 17950 - }, - { - "image_path": "/content/drive/MyDrive/combined/4240b8a4d344cde0.jpg", - "response": "A grocery store filled with lots of soda.", - "id": 17951 - }, - { - "image_path": "/content/drive/MyDrive/combined/425bfe56e38164fb.jpg", - "response": "The image shows a store aisle filled with various products on the shelves. The products are arranged in rows and include items such as medicine, vitamins, and supplements. The shelves are filled with different types of containers, including bottles and boxes. The scene has a pink and white striped border at the bottom.", - "id": 17952 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b11e3b763f3b65b.jpg", - "response": "A store with a large variety of products on the shelves.", - "id": 17953 - }, - { - "image_path": "/content/drive/MyDrive/combined/525cedfa7a5df6e2.jpg", - "response": "A 7-11 store front with a large glass window.", - "id": 17954 - }, - { - "image_path": "/content/drive/MyDrive/combined/474c0952be028c61.jpg", - "response": "A store front with a yellow and blue sign.", - "id": 17955 - }, - { - "image_path": "/content/drive/MyDrive/combined/416544f3137560c9.jpg", - "response": "The image shows a grocery store with a green and yellow checkered tile floor. The store has two aisles, and the one on the left has yellow and green boxes stacked on the shelves. The aisle on the right has shelves stocked with various items, including bottles of water and paper towels. There are also shelves with other products, such as snacks and drinks.", - "id": 17956 - }, - { - "image_path": "/content/drive/MyDrive/combined/4088d36dea48dbe2.jpg", - "response": "In the image, there are two people standing in a grocery store aisle. The woman is wearing a gray jacket and has her hair in a bun. She is holding a phone in her left hand and appears to be texting on it. The man is standing next to her and is holding a bottle of something in his right hand. The bottle is almost empty. They are both looking at the items on the shelves, which are filled with various products such as dish soap, laundry detergent, and other cleaning supplies.", - "id": 17957 - }, - { - "image_path": "/content/drive/MyDrive/combined/4caf0deedd40ab90.jpg", - "response": "A grocery store aisle with a selection of cereal.", - "id": 17958 - }, - { - "image_path": "/content/drive/MyDrive/combined/547c605fa8296d4a.jpg", - "response": "a store shelf filled with lots of different kinds of toys", - "id": 17959 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc8af0ae8eac6fd.jpg", - "response": "A store front with a large sign above the door.", - "id": 17960 - }, - { - "image_path": "/content/drive/MyDrive/combined/4201d4324a31719b.jpg", - "response": "The image shows a basketball court with a large scoreboard at the end of the court. The scoreboard is displaying the game clock and the score of the game. There are several advertisements on the scoreboard, including one for Meijer and another for AT&T. The court is surrounded by several chairs and there are several people in the area, watching the game. Some of the people are sitting in the chairs, while others are standing. The lighting in the arena is quite bright, illuminating the entire area.", - "id": 17961 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b6fb216d9d429c9.jpg", - "response": "A child standing in front of a wall of toy vending machines.", - "id": 17962 - }, - { - "image_path": "/content/drive/MyDrive/combined/36979ad1f5ce9b55.jpg", - "response": "A store with a refrigerator case full of drinks and juices.", - "id": 17963 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bc5e936ee4a9805.jpg", - "response": "The image shows the inside of a pharmacy located in a store. The pharmacy counter is visible at the end of the aisle, and a sign above it reads \"PHARMACY\". The store has a bright orange wall with a white sign that says \"Help Stay Healthy For Your Family\". There are several products displayed on the shelves, including medication and personal care items. The aisle is filled with various products, including bottles and boxes of different sizes and colors.", - "id": 17964 - }, - { - "image_path": "/content/drive/MyDrive/combined/488f7d33ed1dbbb9.jpg", - "response": "A man standing in front of a store window filled with lots of bottles of alcohol.", - "id": 17965 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c3facf86ba8ad00.jpg", - "response": "a woman standing in front of a display of cell phones", - "id": 17966 - }, - { - "image_path": "/content/drive/MyDrive/combined/4804c02dabf03030.jpg", - "response": "The image shows the inside of a store, most likely a pharmacy or a grocery store, with a variety of items on the shelves. There is a large display of greeting cards on a stand in the center of the aisle. The display features cards for various occasions such as birthdays and holidays. There are also many other items on the shelves, including bottles and boxes of various products. The store has a well-lit aisle with white lights on the ceiling.", - "id": 17967 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c6b4dd3caa006f.jpg", - "response": "The image shows a store shelf filled with various cake mixes. There are several packages of cake mix on the shelf, including Rave Dye, Pink Camouflage, and Blue Camouflage. The packages are displayed in an organized manner, with each one having a price tag.", - "id": 17968 - }, - { - "image_path": "/content/drive/MyDrive/combined/383c36ab0d36019c.jpg", - "response": "A general store with a sign that reads \"Goswami General Store\" is shown. The store has a variety of items, including a case of Pepsi bottles, and a pile of colorful chips. There is also a bike parked outside of the store.", - "id": 17969 - }, - { - "image_path": "/content/drive/MyDrive/combined/50dc817dbadb9085.jpg", - "response": "The image shows the inside of a grocery store. There are several products displayed on shelves and on tables. A variety of drinks, including bottled water, are visible. There are also some snacks, such as chips, on display. A person is visible in the background, shopping in the store.", - "id": 17970 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c3d4287b8a9deb2.jpg", - "response": "A small bag of green and white candy that has not been opened yet.", - "id": 17971 - }, - { - "image_path": "/content/drive/MyDrive/combined/5290d675872b4206.jpg", - "response": "A store with a large sign that says $1 stuff as close to free as it can be! There are two wheelbarrows full of toys and other items. One wheelbarrow is on the left and the other is on the right. In front of the wheelbarrows are bowls of candy. There are also several shelves of items in the store.", - "id": 17972 - }, - { - "image_path": "/content/drive/MyDrive/combined/3767968a3bb820df.jpg", - "response": "The image shows the inside of a store with a white ceiling. There are boxes on the right side of the store and a toy display on the left. The store has a price scanner sign above the checkout lane. There are two people in the store, one in the front and one in the back. The store sells a variety of items including books, toys, and games.", - "id": 17973 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d8182867c6589ba.jpg", - "response": "The image shows a display case filled with action figures. There are at least 12 action figures visible, including characters from the cartoon \"Futurama\". The case is located in a store and is protected by a glass front.", - "id": 17974 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e955778cd863cd4.jpg", - "response": "A store shelf filled with books in various colors and sizes.", - "id": 17975 - }, - { - "image_path": "/content/drive/MyDrive/combined/5570ef88d970e9b4.jpg", - "response": "A group of people shopping in a food market.", - "id": 17976 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d75d46ba25035c5.jpg", - "response": "a red white and blue train at a subway station", - "id": 17977 - }, - { - "image_path": "/content/drive/MyDrive/combined/40ff65e0b6ae067e.jpg", - "response": "The image shows a large store with an electronics section. There are many televisions on display, some on a shelf and some on a stand. The televisions are of various sizes and are located throughout the store. In addition to the televisions, there are many other electronic items on display, such as keyboards and remote controls. The store has a clean and well-organized appearance.", - "id": 17978 - }, - { - "image_path": "/content/drive/MyDrive/combined/5241773949b51a12.jpg", - "response": "A store display of Hot Wheels cars on a white rack.", - "id": 17979 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f5ef728d7b2ce18.jpg", - "response": "The image shows a store with a circular display featuring Sobieski Vodka. The display has two levels and contains many bottles of vodka, both on the top and bottom levels. The bottles are arranged in neat rows and are mostly green and white.", - "id": 17980 - }, - { - "image_path": "/content/drive/MyDrive/combined/52022bfc8b9991f5.jpg", - "response": "The image depicts a store with customers shopping inside. There are several people walking around, some carrying backpacks and handbags. The store has a large sign hanging from the ceiling and multiple products on display. A variety of electronics can be seen, including several TVs and cell phones. There are also some books visible in the store. The store appears to be a popular destination for shoppers, with a lively atmosphere.", - "id": 17981 - }, - { - "image_path": "/content/drive/MyDrive/combined/43effa06efa3ea66.jpg", - "response": "A woman in a store looking at items.", - "id": 17982 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ddd53485a1b0c32.jpg", - "response": "The image shows a store display of a variety of canned goods. There are many cans of different types of food stacked on top of each other, including beans, seafood, and tomatoes. Some of the cans are stacked in the center of the display, while others are placed on the sides. The display also includes several jars of pickled olives and other condiments. The store seems to be offering discounts on some of the items, indicated by signs above the cans.", - "id": 17983 - }, - { - "image_path": "/content/drive/MyDrive/combined/54dbc238a95f3508.jpg", - "response": "A man wearing a green jacket and holding a red shopping basket is standing in front of a grocery store shelf filled with candy.", - "id": 17984 - }, - { - "image_path": "/content/drive/MyDrive/combined/46694f326fb3c8e7.jpg", - "response": "A display case full of a variety of desserts including cakes, pies, and fruit.", - "id": 17985 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b428af0e7026726.jpg", - "response": "The image shows the inside of a grocery store. There are clothes on display in the foreground, with a rack of shirts on the right side of the aisle. A television is mounted on the wall to the right. In the background, there are several signs hanging from the ceiling, and a cooler is located near the front of the store. The store appears to be well-lit and organized.", - "id": 17986 - }, - { - "image_path": "/content/drive/MyDrive/combined/54b8a2742cb0c13e.jpg", - "response": "A woman in a grocery store reaching for a box of soda.", - "id": 17987 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c915049ad069e3a.jpg", - "response": "The image shows a produce market with several customers shopping. There are multiple fruit stands and a light hanging from the ceiling. People are walking around with shopping carts and bags. One woman has a cart with a baby seat on it.", - "id": 17988 - }, - { - "image_path": "/content/drive/MyDrive/combined/73eb67e866cb64a5.jpg", - "response": "A man sitting inside a phone store behind a display window.", - "id": 17989 - }, - { - "image_path": "/content/drive/MyDrive/combined/6646b6dc34dc4ad6.jpg", - "response": "A store with a cooler filled with many different kinds of beer.", - "id": 17990 - }, - { - "image_path": "/content/drive/MyDrive/combined/94fb8ce8fb7029b9.jpg", - "response": "A man in a suit and tie shaking hands with a woman in a convenience store.", - "id": 17991 - }, - { - "image_path": "/content/drive/MyDrive/combined/9ef4ec10ff5ad281.jpg", - "response": "The image shows a three story mall with a large atrium. There are many tables and chairs scattered around the area, and many people are sitting at the tables. A large staircase is visible in the middle of the mall, and a sign above the tables says \"Tour The Tower\". There are also many flags hanging from the ceiling.", - "id": 17992 - }, - { - "image_path": "/content/drive/MyDrive/combined/9e2017066c804253.jpg", - "response": "A magazine stand with two men looking through the magazines.", - "id": 17993 - }, - { - "image_path": "/content/drive/MyDrive/combined/ddf68d81cdad96cf.jpg", - "response": "A glass display case in a convenience store filled with a variety of donuts.", - "id": 17994 - }, - { - "image_path": "/content/drive/MyDrive/combined/227e1fa8db2c3fbf.jpg", - "response": "In the image there is a tin can with a woman's face on it and the brand name \"Nivea\". The can is open and inside there are two Nivea products, a green package with a brush and a white box with the product \"Q10 anti-wrinkle CC cream\". The brush is placed on top of the white box. The tin can is placed on a white table.", - "id": 17995 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bfa06bce060af65.jpg", - "response": "A man with a full beard holding a container of Gold Bond Ultimate Healing Skin Therapy Cream.", - "id": 17996 - }, - { - "image_path": "/content/drive/MyDrive/combined/12496b98644e047f.jpg", - "response": "The image features a close up of a bicycle wheel. The wheel is black and white in color. The rim of the wheel is black and white, with a white stripe along the edge. The spoke of the wheel is black and has a white stripe on the inside. The hub of the wheel is made of metal and is black. The spoke is made of metal and is black. The rim of the wheel is made of metal and is black. The front wheel of the bicycle is visible in the image.", - "id": 17997 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d1ef365eda4abbc.jpg", - "response": "A tin can with a black and white label on it.", - "id": 17998 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a5037334af79e4b.jpg", - "response": "A box of Nerada white tea sits on a wooden table. The box is green and has a white border. The brand name is written in white and green. The word \"Organics\" is written in green. The tea bag boxes are in the bottom of the box.", - "id": 17999 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c17108ba21804c9.jpg", - "response": "A collage of lip care products including lip balm, lip scrub, and lip defense.", - "id": 18000 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aef7460509959fa.jpg", - "response": "A white coffee mug with a black and blue text written on it.", - "id": 18001 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4128e43663aaa1.jpg", - "response": "A bottle of wine with a white and black label.", - "id": 18002 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1a94a0bb9c8937.jpg", - "response": "In the image there are five containers of Luxe Butter body cream. The containers are all white and gold in color and are on a table. Each container has a gold lid and the words Luxe Butter written on the container. There is also a container of clear glass beads next to the Luxe Butter containers.", - "id": 18003 - }, - { - "image_path": "/content/drive/MyDrive/combined/091c95ecb010ca65.jpg", - "response": "The image is an advertisement for Adobe Photoshop Day Cream. The main focus of the advertisement is a close-up of a woman's face. The woman has blue eyes and is wearing false eyelashes. She is staring blankly into the distance. The advertisement text is in English and it is placed in the lower left corner of the image.", - "id": 18004 - }, - { - "image_path": "/content/drive/MyDrive/combined/08acf3bdfc089673.jpg", - "response": "An iPod touch with a home screen that has the time 12:12 and the date December 12th. The home screen also has a note that says \"12.12.12. LOVE!\" in the middle of it.", - "id": 18005 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b4f8460effc2ca0.jpg", - "response": "The image features a table with several bottles on it. The main bottle in the center of the table is a teal spray bottle with a red \"no CO2\" symbol on it. The label on the bottle reads \"CO2 B-Gone Aerosol Spray.\" There are two other bottles on the table, one on the left side and one on the right side. The one on the left is a blue box with the words \"L-Fix\" in white font. The one on the right is a clear bottle with a blue label that says \"Essence\" in white font.", - "id": 18006 - }, - { - "image_path": "/content/drive/MyDrive/combined/31c5f29b57f8fdcc.jpg", - "response": "The image shows a container of Amore Pacific Moisture Bound Refreshing Hydra Gel on a pink surface. The container is open and a small amount of the white, gel-like substance is visible at the top of the container. The container is made of clear plastic and has a white label with blue writing. The label also features a circular logo with a flower in the bottom left corner. The pink surface is situated on a table with a pink tablecloth.", - "id": 18007 - }, - { - "image_path": "/content/drive/MyDrive/combined/0decfd1a486149fa.jpg", - "response": "On a wooden table sits a can of Red Bull, a bottle of Bacardi, a tube of Trojan lubricant and a tube of Vaseline.", - "id": 18008 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c45409a7cc37e6d.jpg", - "response": "A poster with a recipe for Mojito. The poster has a white background and text in red and black. The recipe is described with illustrations and the ingredients are placed around the illustration. The ingredients include club soda, lime juice, sugar, fresh mint, limes, and rum.", - "id": 18009 - }, - { - "image_path": "/content/drive/MyDrive/combined/124c43022faacd53.jpg", - "response": "A white container of liquid soap with blue and green lettering on it.", - "id": 18010 - }, - { - "image_path": "/content/drive/MyDrive/combined/1db3c9606b0c00ef.jpg", - "response": "A jar of mayonnaise on a wooden table.", - "id": 18011 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aa654daec08b068.jpg", - "response": "On a white table lies a card from The Body Shop. It is orange and says Celebrate 20 Years of Community Trade. Next to the card is a shaving foam from The Body Shop. It is light blue and white and has a silver cap. Next to the shaving foam is a shaving brush. It is made of wood and has a dark brown handle. The brush has white bristles.", - "id": 18012 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1b4f0d929b4ec3.jpg", - "response": "A white box with a black and red label on it.", - "id": 18013 - }, - { - "image_path": "/content/drive/MyDrive/combined/543ffb7568f1319b.jpg", - "response": "A digital clock that is on a shelf.", - "id": 18014 - }, - { - "image_path": "/content/drive/MyDrive/combined/145cf4f1c828068a.jpg", - "response": "In the image there is a green digital display with the date December 3rd and the time 20:56. The background of the image is black.", - "id": 18015 - }, - { - "image_path": "/content/drive/MyDrive/combined/20708991d81e80e8.jpg", - "response": "An alarm clock with a red LED display showing the time 3:11.", - "id": 18016 - }, - { - "image_path": "/content/drive/MyDrive/combined/139bf8dea434ff39.jpg", - "response": "a white wall mounted thermostat with a digital display showing 13 degrees celsius", - "id": 18017 - }, - { - "image_path": "/content/drive/MyDrive/combined/399d149498a0669c.jpg", - "response": "a yellow alarm clock with the time set to 7:18.", - "id": 18018 - }, - { - "image_path": "/content/drive/MyDrive/combined/114c7f99e546ee2f.jpg", - "response": "A Honeywell thermostat on a red wall.", - "id": 18019 - }, - { - "image_path": "/content/drive/MyDrive/combined/2124bb3f0620f8b0.jpg", - "response": "A digital clock that is on the wall.", - "id": 18020 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3eb38d0b288091.jpg", - "response": "A close up of a car's license plate that says \"Alaska\" on it.", - "id": 18021 - }, - { - "image_path": "/content/drive/MyDrive/combined/2119781e587fdaf1.jpg", - "response": "A silver and black digital alarm clock.", - "id": 18022 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fbdea761cb78d94.jpg", - "response": "a white and black alarm clock on a white counter", - "id": 18023 - }, - { - "image_path": "/content/drive/MyDrive/combined/25d6511c342327e0.jpg", - "response": "A digital clock with large red numbers sits on a surface. The numbers are 01237. The clock has a red light underneath it.", - "id": 18024 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d79859306e692c2.jpg", - "response": "A black and white clock face with the time set at 11:55.", - "id": 18025 - }, - { - "image_path": "/content/drive/MyDrive/combined/39a0f61c7505ea32.jpg", - "response": "A radio-controlled weather station with a thermometer, hygrometer, and a barometer.", - "id": 18026 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d4a0f82dae4d4da.jpg", - "response": "A radio with a grey strap sits on a brown rug.", - "id": 18027 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b844bd4dae5e9c8.jpg", - "response": "a car with a plate that says \"RUS\" on it", - "id": 18028 - }, - { - "image_path": "/content/drive/MyDrive/combined/135fb97b6e8984b6.jpg", - "response": "A device with a blue screen displays the following information: 72.1% 34 198.7 calories. The device is on a tan surface.", - "id": 18029 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cda533fa02b6f8f.jpg", - "response": "A black and white patterned home screen with the time set to 4:34. There are several icons on the bottom of the screen including a camera, a rainbow flower, a chat icon, a talk icon, a globe icon, a music note icon, and a camera icon.", - "id": 18030 - }, - { - "image_path": "/content/drive/MyDrive/combined/106766772bae4a89.jpg", - "response": "The image is a screen shot of a smart device, likely a phone or tablet, with a black background and white lettering that says \"Dave Erica\". The lettering is in blue and is also outlined in white. The time on the device reads 8:54 and the date is November 13th. The device has several icons at the bottom of the screen including phone, contacts, messaging, chrome, and two others that are not easily recognizable.", - "id": 18031 - }, - { - "image_path": "/content/drive/MyDrive/combined/52bacfab72c74c5c.jpg", - "response": "A pair of black and white digital watches with rectangular shaped displays and leather straps.", - "id": 18032 - }, - { - "image_path": "/content/drive/MyDrive/combined/173b212c4e7de189.jpg", - "response": "A basketball scoreboard that is displaying the score as 39 to 17 in favor of the home team.", - "id": 18033 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e198c4c7b5744ff.jpg", - "response": "An iPhone lock screen showing a missed call from a number starting with 666. The time is 10:53 and the date is January 3. The phone has a black background and white text.", - "id": 18034 - }, - { - "image_path": "/content/drive/MyDrive/combined/11b999ea4caea71c.jpg", - "response": "A black and grey Mirena device with a screen that displays 996. The temperature is 16 degrees Celsius and 14 degrees Fahrenheit. There are four coins next to the device.", - "id": 18035 - }, - { - "image_path": "/content/drive/MyDrive/combined/5537e6928c6eb205.jpg", - "response": "A black alarm clock with red numbers and lights showing the time as 11:11.", - "id": 18036 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aad647ea6f88a33.jpg", - "response": "a close up of a clock on a digital scale", - "id": 18037 - }, - { - "image_path": "/content/drive/MyDrive/combined/54ca4a99f3565ad0.jpg", - "response": "A device with a blue screen displays the following numbers: 74.9, 19.34, 1952. Below the numbers, it also displays the letters Kcal. The screen is on.", - "id": 18038 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd81bbe75341333.jpg", - "response": "A close up of a phone screen with the time set at 6:18. The day is March 22nd and it is Sunday. The phone has an alarm set for 7:00. The screen shows a snow covered ground with tire tracks.", - "id": 18039 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a9e38ebdc5bbbf4.jpg", - "response": "A keyboard with the keys lit up in blue.", - "id": 18040 - }, - { - "image_path": "/content/drive/MyDrive/combined/173bee4c6fb08025.jpg", - "response": "A digital clock that reads 12:34.", - "id": 18041 - }, - { - "image_path": "/content/drive/MyDrive/combined/3581f5418e0623ab.jpg", - "response": "A scoreboard showing Portugal's starting lineup.", - "id": 18042 - }, - { - "image_path": "/content/drive/MyDrive/combined/094f24ec4537ac9e.jpg", - "response": "A digital clock on a wall that reads 1:36.", - "id": 18043 - }, - { - "image_path": "/content/drive/MyDrive/combined/41a13772e090df9f.jpg", - "response": "A black piece of electronic equipment with a digital display showing the time as 00:30 and the distance as 12964 meters.", - "id": 18044 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9dc46ddcda9b3a.jpg", - "response": "A large red digital display showing the time in hours, minutes, and seconds.", - "id": 18045 - }, - { - "image_path": "/content/drive/MyDrive/combined/24679973c2d234c7.jpg", - "response": "A metal counter with a notepad on top of it. The notepad has a list of items on it. Next to the notepad is a piece of paper with a calculator on it. There is also a pencil on the counter. A can of beer is sitting next to the notepad. There is a crumpled up piece of paper on the counter as well.", - "id": 18046 - }, - { - "image_path": "/content/drive/MyDrive/combined/3236629e9d92b828.jpg", - "response": "The image features three bottles of soda. The one on the left is orange and labeled as genuine Jamaican ginger beer. The middle bottle is green and labeled as genuine Jamaican pineapple soda. The rightmost bottle is tan and also labeled as genuine Jamaican ginger beer.", - "id": 18047 - }, - { - "image_path": "/content/drive/MyDrive/combined/19256b51679a14dc.jpg", - "response": "A glass of beer with a white label on it.", - "id": 18048 - }, - { - "image_path": "/content/drive/MyDrive/combined/19087dcb0dba67ff.jpg", - "response": "A chalkboard sitting on a wooden table.", - "id": 18049 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fc6437badb01008.jpg", - "response": "A wooden table with a metal lunchbox sitting on it. The lunchbox has stickers on it. Next to the lunchbox are two drinking glasses, one on the left and one on the right. The left glass is half full and has a light reflection on it. The right glass is half full and has a dark liquid in it. The table also has a ball of yarn sitting on it and a book with a purple cover sitting next to the right drinking glass.", - "id": 18050 - }, - { - "image_path": "/content/drive/MyDrive/combined/332174505dc80069.jpg", - "response": "a hand holding a can of irn bru in front of a street", - "id": 18051 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f4c9d838caea666.jpg", - "response": "A bottle of Hesjeol Haand Bryggeriet Norwegian Harvest Ale next to a glass filled with the beer.", - "id": 18052 - }, - { - "image_path": "/content/drive/MyDrive/combined/08dff09797161018.jpg", - "response": "A group of three men sitting at a table with a banner in the background that says \"Search Engine Strategies 2006 Conference & Experience New York\".", - "id": 18053 - }, - { - "image_path": "/content/drive/MyDrive/combined/2247449bdefb23d0.jpg", - "response": "A bottle of beer is sitting next to a glass of beer on a wooden table. The bottle is tan and orange in color and has a horse on the label. The glass is half full.", - "id": 18054 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d4f6be234078add.jpg", - "response": "A bottle of Celebration beer next to a glass filled with beer.", - "id": 18055 - }, - { - "image_path": "/content/drive/MyDrive/combined/10937c5b75fb5883.jpg", - "response": "A micro controller board sitting on a white plate.", - "id": 18056 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa19285f41ea2fe.jpg", - "response": "A green and gold candy bar with the word \"classique\" on it.", - "id": 18057 - }, - { - "image_path": "/content/drive/MyDrive/combined/208f594f26d9d909.jpg", - "response": "A glass of beer from Brasserie des Murailles.", - "id": 18058 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a8f9c414edfae6e.jpg", - "response": "A man holding a board game called Brew-opoly.", - "id": 18059 - }, - { - "image_path": "/content/drive/MyDrive/combined/2efeea2e77a59e8f.jpg", - "response": "A vintage advertisement for Suntory, a Japanese whisky.", - "id": 18060 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c5226afc1f7205.jpg", - "response": "A glass of water with ice in it with the words \"Into emptiness he brings fullness and completion Colossians 2:9-10\" written above it.", - "id": 18061 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9ff2af539cfe10.jpg", - "response": "A bottle of beer and a glass are sitting on a table in front of a television. The bottle is almost empty and has a green label. The glass is empty. The television is on and has a soccer game playing.", - "id": 18062 - }, - { - "image_path": "/content/drive/MyDrive/combined/27050aa1662544c1.jpg", - "response": "The image shows a close up of several jars of peanut butter on a store shelf. The main jar in the center of the image has a yellow and green label and is labeled as Jif Cashew Butter. The jar is made of glass and has a plastic lid. The label features the Jif logo in red and white, and the words \"Cashew Butter\" are displayed in white on a green background. The jar is filled with a creamy, beige-colored cashew butter.", - "id": 18063 - }, - { - "image_path": "/content/drive/MyDrive/combined/20aad2aa8c563f09.jpg", - "response": "A glass of water is next to a newspaper on a wooden table.", - "id": 18064 - }, - { - "image_path": "/content/drive/MyDrive/combined/07bb439545f503f0.jpg", - "response": "The image shows a row of three bottles of Aperol, a type of Italian liqueur, on a bar. The bottles are dark red and have gold lettering. They are placed next to each other and are quite similar in appearance.", - "id": 18065 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c84cd6ebbc2465e.jpg", - "response": "A tunnel made of white paper bags with Chinese writing on them.", - "id": 18066 - }, - { - "image_path": "/content/drive/MyDrive/combined/27efafb71e5ddd2a.jpg", - "response": "A bottle of Smoked Salmon flavored vodka from the Alaska Distillery. The bottle is a tall, slender, clear glass bottle with a twist off cap. The label is salmon pink with the name of the distillery and the flavor written in black. There is a salmon image on the label. The bottle is sitting on a wooden table. Next to it is a small, empty, clear glass. There are two lights in the background. One is a yellow light and the other is a white light. The background is a blurred view of a wall and a window.", - "id": 18067 - }, - { - "image_path": "/content/drive/MyDrive/combined/21257dc50bfa8e2d.jpg", - "response": "A stairway with green and black guiness signs hanging from a wooden banister.", - "id": 18068 - }, - { - "image_path": "/content/drive/MyDrive/combined/31fff763ae82a1fc.jpg", - "response": "The image shows a store display of 5-hour energy shots in sour apple flavor. There are four 5-hour energy extra strength shots in each package, for a total of 8 packages on the display. The packages are stacked on top of each other, with two packages of extra strength shots on the bottom and two packages of extra strength shots on the top. The display is in a store, with shelves visible in the background.", - "id": 18069 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c39ec0591cd9f56.jpg", - "response": "A glass of wine sitting on a table next to a small pin that says \"We Make Poem\".", - "id": 18070 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d26e0830d6bd5d.jpg", - "response": "A beer tap that says Badger on it and has a picture of a cricket on it.", - "id": 18071 - }, - { - "image_path": "/content/drive/MyDrive/combined/08ec6ae5b83566ed.jpg", - "response": "A Steam Whistle Porter beer can and a glass filled with beer are sitting on a napkin.", - "id": 18072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1220f1d2a67ebe00.jpg", - "response": "The image shows a baseball stadium with a baseball field and several rows of seats for spectators. There are people in the stadium, including a man wearing a green shirt and red hat standing in the stadium.", - "id": 18073 - }, - { - "image_path": "/content/drive/MyDrive/combined/16bba506a9925020.jpg", - "response": "In the image there are multiple cans of food and bottles of catsup on a store shelf. The shelf is made of wood and the cans and bottles are displayed on it. Some of the cans are covered in plastic wrap.", - "id": 18074 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea26b47ed2dded0.jpg", - "response": "A poster with a pair of scissors on it advertising a barbershop.", - "id": 18075 - }, - { - "image_path": "/content/drive/MyDrive/combined/23183bf2db16d88c.jpg", - "response": "A bottle of Maazu sits on a table.", - "id": 18076 - }, - { - "image_path": "/content/drive/MyDrive/combined/16148c308de6d401.jpg", - "response": "A bar with a variety of different types of alcohol on the counter. There are several bottles of scotch, including The Macallan and Glenlivet, lined up next to each other. There is also a bottle of Laphr, and a bottle of Label M. A man is visible in the background, partially obscured by the alcohol.", - "id": 18077 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f517991c6732292.jpg", - "response": "A man in a white suit stands behind a stack of green Energol bottles.", - "id": 18078 - }, - { - "image_path": "/content/drive/MyDrive/combined/256be951c5460071.jpg", - "response": "A bottle of Bock next to a wine glass filled with a golden beer with a thick head floating on top.", - "id": 18079 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eedc17ad68c35a5.jpg", - "response": "A building with a sign that says Bireley's on it.", - "id": 18080 - }, - { - "image_path": "/content/drive/MyDrive/combined/30db9dd3dbfc346e.jpg", - "response": "An orange poster with a black silhouette of a person breakdancing. The person is standing on one hand with their legs in the air and their arms are out to the side. The person is also holding an ear bud cord that is wrapped around their left hand. Underneath the person is a website for the box.", - "id": 18081 - }, - { - "image_path": "/content/drive/MyDrive/combined/2086ad40a5e4223c.jpg", - "response": "A person in a black jacket pouring a glass of beer from a tap.", - "id": 18082 - }, - { - "image_path": "/content/drive/MyDrive/combined/17e17ad80005bed6.jpg", - "response": "A man sitting at a table with a laptop computer.", - "id": 18083 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b0e146b9caad053.jpg", - "response": "A can of Tropicana Twister soda sits on a white counter.", - "id": 18084 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f012ead792d9f8.jpg", - "response": "A collage of various items including a bottle of nail polish, a magazine, a plate, a cup of ice cream and two stamps.", - "id": 18085 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d230c04b2dbbe56.jpg", - "response": "A glass of dark beer is sitting on a table next to two bottles of beer. The glass is half full and the beer has a dark color. The bottle on the left is taller and has a white label with red and blue writing. The label has a picture of a man in a hat and a shield with a lion on it. The bottle on the right is shorter and has a yellow label with red and white writing. The label has a picture of a lion on it.", - "id": 18086 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a8b1fa22b6ca3f6.jpg", - "response": "A bottle of Chino is being held in a persons hand.", - "id": 18087 - }, - { - "image_path": "/content/drive/MyDrive/combined/29300b671ed492ed.jpg", - "response": "A close up of a glass of beer on a table.", - "id": 18088 - }, - { - "image_path": "/content/drive/MyDrive/combined/3226171730fa4531.jpg", - "response": "A bottle of somersby apple cider sits on a black surface. The bottle is green and has a green and white label. The label features a tree on it. The bottle is made of plastic.", - "id": 18089 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ce1fbcfdfb84d18.jpg", - "response": "A restaurant table with two glasses of beer sitting on it.", - "id": 18090 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f41608def1f22c1.jpg", - "response": "A person holding a mug of beer in front of a house.", - "id": 18091 - }, - { - "image_path": "/content/drive/MyDrive/combined/106da71d7548de70.jpg", - "response": "A large crowd of people are gathered around a large blow up beer bottle.", - "id": 18092 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e2e82f069f8cab1.jpg", - "response": "A toy figure in a box on a table.", - "id": 18093 - }, - { - "image_path": "/content/drive/MyDrive/combined/127bba5006088cb0.jpg", - "response": "A silver and white thermos sitting on a desk.", - "id": 18094 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f1e75f1def03f77.jpg", - "response": "A glass of liquid sits on a counter next to a bag of chips.", - "id": 18095 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7d82c93026e598.jpg", - "response": "A row of blue cups sitting on a counter.", - "id": 18096 - }, - { - "image_path": "/content/drive/MyDrive/combined/438726b63ba34557.jpg", - "response": "A close up of a glass of wine sitting next to a bottle of wine. The glass is half full and the wine is a dark red. The bottle is dark brown and has a barcode on the back. There are several wine glasses in the background.", - "id": 18097 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c4cf02486f1554.jpg", - "response": "A bar with a stone wall and a metal counter. There are ten beer taps lined up on the counter and several glasses are placed around the bar. A wooden barrel is also present on the left side of the bar.", - "id": 18098 - }, - { - "image_path": "/content/drive/MyDrive/combined/370a9368381a9449.jpg", - "response": "A stack of white boxes with a green and red label on them. There are also five bottles of beer sitting next to the boxes. The beer bottles have a gold foil top. The table is red and the boxes are stacked on a folding table.", - "id": 18099 - }, - { - "image_path": "/content/drive/MyDrive/combined/47f2ea3654ce6124.jpg", - "response": "A bottle of Tuborg beer sits on a table.", - "id": 18100 - }, - { - "image_path": "/content/drive/MyDrive/combined/415bbf9600c2d519.jpg", - "response": "A bottle of Zoickel lager on a table next to a glass.", - "id": 18101 - }, - { - "image_path": "/content/drive/MyDrive/combined/37e178b69fb4bb50.jpg", - "response": "The man is wearing a black jacket. He is standing in front of a screen. The words \"DESIGN THE COMPANY\" are displayed on the screen. The man is gesturing with his left hand. He is wearing a watch on his left wrist.", - "id": 18102 - }, - { - "image_path": "/content/drive/MyDrive/combined/374c57d7b6d53d41.jpg", - "response": "A glass of Moritz beer against a white background. The beer is a pale yellow color and there is a white head on top. The glass is tall and thin with a logo on the front that says \"Moritz Barcelona\". There is a white straw in the glass.", - "id": 18103 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eac90f28eea6bb1.jpg", - "response": "A glass of Guinness beer sits on a wooden bar. The beer has a thick head floating on top. The glass is full and has the word \"Guinness\" on it.", - "id": 18104 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e506c1f3a570a5f.jpg", - "response": "A bottle of Captain Lawrence Brewing Company Xtra Gold American Tripel Ale next to a wine glass filled with the beer.", - "id": 18105 - }, - { - "image_path": "/content/drive/MyDrive/combined/377d4d87d4f5f67a.jpg", - "response": "The image shows two bottles of beer sitting on a counter. The bottles are dark green and have red, white, and blue labels. One of the bottles has a white and red label on the neck. They are decorated with purple and green ribbons. The ribbons are looped around the bottles. The bottles are placed close to each other and appear to be made of glass.", - "id": 18106 - }, - { - "image_path": "/content/drive/MyDrive/combined/33c85afa26054f8a.jpg", - "response": "A glass of beer sitting next to a electronic device.", - "id": 18107 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e3409630bc7221a.jpg", - "response": "A collection of glass bottles filled with colored liquids. The liquids are labeled with various chemicals such as Ammonium hydroxide and Hydriodic acid. The bottles have stoppers and are lit up with a green and orange light.", - "id": 18108 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d786d2a0419ad48.jpg", - "response": "A red vending machine filled with various drinks including coke and mountain dew.", - "id": 18109 - }, - { - "image_path": "/content/drive/MyDrive/combined/40cf46a99536cea0.jpg", - "response": "A few bottles of Polar Seltzer in Vanilla flavor.", - "id": 18110 - }, - { - "image_path": "/content/drive/MyDrive/combined/472c1cfeec405beb.jpg", - "response": "an orange bottle of soda with a nutrition facts label on the back", - "id": 18111 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e26539fc96a80fd.jpg", - "response": "A bottle of beer is sitting next to a glass filled with beer. The bottle is dark brown and has a label on it. The label is yellow with black print. The print includes a drawing of a dragon. The glass is also clear and filled with beer. The beer has a light brown color.", - "id": 18112 - }, - { - "image_path": "/content/drive/MyDrive/combined/5541eee91c8fa2ef.jpg", - "response": "A poster that says \"alcohol is bad for you\" with a picture of a glass of alcohol.", - "id": 18113 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b686fabd9152b76.jpg", - "response": "A bottle of Cerveja Original Pilsen beer next to a glass of beer.", - "id": 18114 - }, - { - "image_path": "/content/drive/MyDrive/combined/359c918bb70c821e.jpg", - "response": "A person is holding a paper with the word WELCOME on it. There are four glasses of beer on the table. One of the glasses is filled with water.", - "id": 18115 - }, - { - "image_path": "/content/drive/MyDrive/combined/54adeaf9701f4864.jpg", - "response": "A bottle of Oude Geuze Vieille and a glass of beer are sitting on a blue placemat on a wooden table.", - "id": 18116 - }, - { - "image_path": "/content/drive/MyDrive/combined/35cc1f087490d60a.jpg", - "response": "The image shows a bar with a shiny metal bar top and a row of six unique beer taps. Each of the beer taps is shaped like a duck and has a label indicating the type of beer. The bar is lined with bottles and there are people standing around the bar, possibly patrons.", - "id": 18117 - }, - { - "image_path": "/content/drive/MyDrive/combined/35f7897aa18f3a33.jpg", - "response": "A bottle of Grand Cru next to a glass filled with the beverage.", - "id": 18118 - }, - { - "image_path": "/content/drive/MyDrive/combined/42eaff6905e7c397.jpg", - "response": "A kitchen counter with a bar towel on it that has phases of the moon on it. There are 12 bottles of soda lined up on the counter.", - "id": 18119 - }, - { - "image_path": "/content/drive/MyDrive/combined/3be11f622afbbb27.jpg", - "response": "A bottle of Bulleit Bourbon sits on a table.", - "id": 18120 - }, - { - "image_path": "/content/drive/MyDrive/combined/48e6898010bc858a.jpg", - "response": "A bottle of Borsci elisor sits next to a glass of wine on a table. The bottle is green and has a yellow label. The glass is half full.", - "id": 18121 - }, - { - "image_path": "/content/drive/MyDrive/combined/3428f201165136e3.jpg", - "response": "A man holding a can of lemonade.", - "id": 18122 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eb42c00d255ef97.jpg", - "response": "A row of pink grapefruit soda cans with a lemon on the label.", - "id": 18123 - }, - { - "image_path": "/content/drive/MyDrive/combined/452e51bf27116e0a.jpg", - "response": "A coffee cup sitting on a table with a brown sleeve on it.", - "id": 18124 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ffbb21f379cccbe.jpg", - "response": "A group of men in suits sitting around a table.", - "id": 18125 - }, - { - "image_path": "/content/drive/MyDrive/combined/528a3048fcada44a.jpg", - "response": "A poster for a cartoon called \"Do Pyramids Scheme?\" with the main character, a short orange character wearing a yellow shirt and pink pants, in the foreground. The background is a collage of different pyramid structures. To the left of the main character is a palm tree and a black pyramid. Directly above the main character is a white statue of a woman on a horse. Above the collage is the word \"Pyramids\" written in white with a brown border. The letters \"s\" and \"h\" in \"Pyramids\" are missing. Underneath the collage is the word \"Scheme?\" written in white with a yellow border. The \"e\" in \" Scheme?\" is a question mark. The bottom of the poster has three links, one for itunes, one for mytoons and one for blip.tv.", - "id": 18126 - }, - { - "image_path": "/content/drive/MyDrive/combined/52ad9c2c94904260.jpg", - "response": "A glass of water with a straw in it.", - "id": 18127 - }, - { - "image_path": "/content/drive/MyDrive/combined/421c347efbe47ead.jpg", - "response": "A person is holding a glass of white wine in front of a pile of magazines. The glass is filled most of the way up and the wine appears to be a clear, straw coloured liquid. The person is also holding a cell phone in their hand. The magazines are spread out on the seat next to the person and are in various positions. There are at least five different magazines visible in the pile. The top one says \"House & Home\" in large letters and has a picture of a house on it. The other magazines are spread out in different positions and are not clearly identifiable.", - "id": 18128 - }, - { - "image_path": "/content/drive/MyDrive/combined/370d4f3a360585ce.jpg", - "response": "A person sitting at a table with a laptop and a cup of coffee. The cup of coffee is from Starbucks and has a cell phone balanced on top of it.", - "id": 18129 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd3051b935bc275.jpg", - "response": "A wall with a picture of coffee beans and four gold scoops.", - "id": 18130 - }, - { - "image_path": "/content/drive/MyDrive/combined/a2439a8c902b31fd.jpg", - "response": "A table with a newspaper on it, next to three bottles of beer.", - "id": 18131 - }, - { - "image_path": "/content/drive/MyDrive/combined/1788d05eb87b449c.jpg", - "response": "a note with writing on it that says coconut almond raspberry bars", - "id": 18132 - }, - { - "image_path": "/content/drive/MyDrive/combined/431c9a0556e0133f.jpg", - "response": "A stamp on a piece of mail with a soldier on it.", - "id": 18133 - }, - { - "image_path": "/content/drive/MyDrive/combined/102000989ae1952f.jpg", - "response": "A bee made out of felt sits on top of a card.", - "id": 18134 - }, - { - "image_path": "/content/drive/MyDrive/combined/09e904fdba5747cb.jpg", - "response": "A letter with two green and white stamps on it.", - "id": 18135 - }, - { - "image_path": "/content/drive/MyDrive/combined/2663afe4fe59d645.jpg", - "response": "A red bag with a blue ribbon and a white card tied to it with a blue ribbon.", - "id": 18136 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a81651044795fc.jpg", - "response": "A wooden table with three packages sitting on it. The packages are wrapped in brown paper and have various destinations written on them.", - "id": 18137 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bbf0bd42f1e9538.jpg", - "response": "A yellow envelope with a stamp on it that says City of Mexico.", - "id": 18138 - }, - { - "image_path": "/content/drive/MyDrive/combined/2de73c68624b0b2b.jpg", - "response": "A letter and envelope with a stamp on it.", - "id": 18139 - }, - { - "image_path": "/content/drive/MyDrive/combined/19301a41ad92c4e2.jpg", - "response": "A stamp on a piece of paper.", - "id": 18140 - }, - { - "image_path": "/content/drive/MyDrive/combined/32aa72a2e1e74694.jpg", - "response": "A post card with a black post card written on it.", - "id": 18141 - }, - { - "image_path": "/content/drive/MyDrive/combined/344193868ca2f738.jpg", - "response": "An envelope with stamps and a handwritten note on the front.", - "id": 18142 - }, - { - "image_path": "/content/drive/MyDrive/combined/53a125c3b1d4f894.jpg", - "response": "A postcard with a stamp on it from 1916.", - "id": 18143 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a74730c006a807.jpg", - "response": "an open book with the title a wrinkle in time", - "id": 18144 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea34c96d1440d6e.jpg", - "response": "The image is an envelope with a stamp on it. The stamp is a picture of a Star of David. The stamp has the word \"Israel\" on it. There is a picture of a man on the stamp. The man is wearing a black hat and a black shirt. There is a picture of a factory on the envelope. The factory has three smokestacks. There is a picture of a man on the envelope. The man is wearing a black hat and a black shirt. There is a handwritten note on the envelope.", - "id": 18145 - }, - { - "image_path": "/content/drive/MyDrive/combined/38cfa87334551d19.jpg", - "response": "A note that says \"Did you have a good night?\" with a drawn heart.", - "id": 18146 - }, - { - "image_path": "/content/drive/MyDrive/combined/21b5c16af71d3bde.jpg", - "response": "An old envelope with a stamp on it.", - "id": 18147 - }, - { - "image_path": "/content/drive/MyDrive/combined/1051e20984ea1661.jpg", - "response": "A box filled with lots of different types of donuts.", - "id": 18148 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a4f113703d12b6.jpg", - "response": "A Coyne Electrical School envelope from 1954", - "id": 18149 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7bf8f2708b73ca.jpg", - "response": "A book with a plant on the cover is sitting on a table.", - "id": 18150 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ca5a3c2f2b6526d.jpg", - "response": "An envelope with a stamp on it that has a ship on it.", - "id": 18151 - }, - { - "image_path": "/content/drive/MyDrive/combined/462f1dde700e7fed.jpg", - "response": "An envelope with a stamp that says First Class Mail.", - "id": 18152 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e84b00cb6dad8a3.jpg", - "response": "An old envelope with a stamp on it", - "id": 18153 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fc3b079f44b1c61.jpg", - "response": "A paper with a picture of a person holding a lamp above a dog holding a snake.", - "id": 18154 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c30eea100508fa.jpg", - "response": "A yellow and red stamp on an envelope from Saigon, Vietnam.", - "id": 18155 - }, - { - "image_path": "/content/drive/MyDrive/combined/13951c501054192f.jpg", - "response": "A brown card with a green square on it. The green square has a yellow bird with a red beak and a snowflake. The words \"We wish you a Merry Christmas\" are in red. There is a button on the card.", - "id": 18156 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3fd96ac9fad1c4.jpg", - "response": "A white envelope with a stamp on it.", - "id": 18157 - }, - { - "image_path": "/content/drive/MyDrive/combined/28fe36e36ba2456d.jpg", - "response": "A hand holding three letters in front of a mailbox.", - "id": 18158 - }, - { - "image_path": "/content/drive/MyDrive/combined/1440d89cf4bf1ea8.jpg", - "response": "A box of The Greens campaign material including business cards and flyers.", - "id": 18159 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f35fcfe3da52678.jpg", - "response": "The image shows a white envelope on a table. The envelope is open and two ten dollar bills are sticking out. The top bill has a red serial number and the bottom bill has a red serial number as well. The shadow of someone taking the photo is visible on the table.", - "id": 18160 - }, - { - "image_path": "/content/drive/MyDrive/combined/07be3f0ec9377062.jpg", - "response": "A letter with a fountain pen resting on top of it.", - "id": 18161 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e834b5e42cf9efd.jpg", - "response": "A woman is holding a Neutrogena Shine Control powder in one hand and a brush in the other. She is applying the powder to her face.", - "id": 18162 - }, - { - "image_path": "/content/drive/MyDrive/combined/5493b81996305f50.jpg", - "response": "The image features a small silver tin with a dome lid. The tin is open and contains a light pink powder inside. The tin appears to be made of metal and is circular in shape. The lid to the tin is next to it and is placed on a white surface. The tin has the word \"stila\" written on it in black font. The packaging of the tin is square and made of brown cardboard. The tin is placed in front of the box and the box has the words \"illuminating finishing powder\" written on it in black font. The box also has the word \"poudre lumiere finition\" written in black font on the right side. The box is made of brown cardboard and has the weight of 2.4g written on it.", - "id": 18163 - }, - { - "image_path": "/content/drive/MyDrive/combined/23efbe1903549ada.jpg", - "response": "The image shows a white counter with a Dior makeup tray on it. There are several Dior makeup products displayed, including a black Dior makeup case, a Dior Addict Lipstick in \"651\", a Dior Addict Gloss in \"004\", a Dior Addict It-Lash in \"090\", a Dior Addict It-Pencil in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It-Top in \"090\", a Dior Addict It", - "id": 18164 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b69eb928a8592e3.jpg", - "response": "A package of bareMinerals products on a white background.", - "id": 18165 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ba5e9226808fdf0.jpg", - "response": "A container of powder sits on a counter next to a black tube of lipstick.", - "id": 18166 - }, - { - "image_path": "/content/drive/MyDrive/combined/188a15d11ec70412.jpg", - "response": "The image features a package of elf healthy glow bronzer in the shade sun kissed. The bronzer is in a translucent circle package with a silver elf logo on top. The package is on a cardboard backing which is a light brown color. The bronzer itself is a light golden brown color.", - "id": 18167 - }, - { - "image_path": "/content/drive/MyDrive/combined/4962490d4203ee83.jpg", - "response": "The image shows two jars of onion jam on a table. The jars are made of clear glass and are filled with a dark brown jam. The left jar is in the foreground and is half full, while the right jar is in the background and is almost full. Both jars have black lids. The table is a light beige color and the overall lighting is bright.", - "id": 18168 - }, - { - "image_path": "/content/drive/MyDrive/combined/109f22b1cd336532.jpg", - "response": "A girl is applying makeup on her face in the cover of a video game.", - "id": 18169 - }, - { - "image_path": "/content/drive/MyDrive/combined/4301b666814e2d49.jpg", - "response": "The image features a small black box with the lid open next to it. The box is square-shaped and has a black color with white and pink text on it. The pink text on the box appears to be the name of the product, which is \"MAC 2006 Limit Edition Sweetie Cake Petit-Gloss Glaze.\" The white text is smaller and is located on the top left corner of the box. The pink text is also smaller and is located on the bottom right corner of the box.", - "id": 18170 - }, - { - "image_path": "/content/drive/MyDrive/combined/0929f6464d011603.jpg", - "response": "A bottle of ACT mouthwash sitting on a counter.", - "id": 18171 - }, - { - "image_path": "/content/drive/MyDrive/combined/20c7547fcd7fe73d.jpg", - "response": "In the image there are two tubes of Pantene Pro-V curl shaping gel sitting next to each other on a white counter. The tube on the left is slightly larger than the one on the right. Both tubes have red labels with white text. The label on the left has a gold Pantene logo that says \"Pantene\" in white text and \"PRO-V\" in small white text. The label on the right has a gold logo that says \"Pantene\" in white text and \"Do the Style\" in white text. The label on the right also has a white text that says \"20 Hour Curls\" in white text and \"20 Curls Boucles\" in French. The tubes have silver caps with red writing.", - "id": 18172 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a94315458c895ef.jpg", - "response": "An advertisement for Head and Shoulders shampoo. A woman scratches at her head while a man in glasses looks on. The text on the advertisement says \"Every time you scratch your head, you could be telling someone you have dandruff.\" and \"Show off your hair - not the itch of dandruff.\"", - "id": 18173 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5ff2700c60bb01.jpg", - "response": "A group of four cans of tennis balls.", - "id": 18174 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a490840bdc9c4b1.jpg", - "response": "A picture of four cans of Coca Cola.", - "id": 18175 - }, - { - "image_path": "/content/drive/MyDrive/combined/3536cbd46e7e8117.jpg", - "response": "a bottle of wine that is red in color", - "id": 18176 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef8743670718aa2.jpg", - "response": "A book cover with a face on it.", - "id": 18177 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ce30172241d8c3e.jpg", - "response": "A collection of vintage men's grooming products from the 1970s and 1980s. There is a blue Vitalis hair spray, a white Vitalis non-aerosol hair spray, a white Brylcreem hair gel, and a small packet of Brylcreem.", - "id": 18178 - }, - { - "image_path": "/content/drive/MyDrive/combined/16cac389c9195554.jpg", - "response": "The image shows three different coloured bottles of Katari soap. The first one is green, the second one is purple and the third one is yellow.", - "id": 18179 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a96b27d41430de.jpg", - "response": "A store display for Listerine mouthwash with a large Listerine bottle and several smaller bottles of Listerine on a shelf.", - "id": 18180 - }, - { - "image_path": "/content/drive/MyDrive/combined/15f056218a576680.jpg", - "response": "An air conditioner and furnace from Goodman.", - "id": 18181 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c33fc63b1bee6db.jpg", - "response": "A popcorn machine with a clear window so you can see the popcorn inside.", - "id": 18182 - }, - { - "image_path": "/content/drive/MyDrive/combined/1926cfc9165c9a9e.jpg", - "response": "A woman standing in front of a table with a chili dish being served.", - "id": 18183 - }, - { - "image_path": "/content/drive/MyDrive/combined/091be7e1e0e6be66.jpg", - "response": "A Sony alarm clock showing the time of 14:48.", - "id": 18184 - }, - { - "image_path": "/content/drive/MyDrive/combined/08045ade27101b03.jpg", - "response": "A female model is seen holding a glass of water in front of an LG Smart Water Purifier in a still image from an advertisement.", - "id": 18185 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bcbb7362e9f74a4.jpg", - "response": "A toaster oven with a piece of bread in it.", - "id": 18186 - }, - { - "image_path": "/content/drive/MyDrive/combined/1795c72954307249.jpg", - "response": "A girl in a pink jacket stirring a pot on a stove.", - "id": 18187 - }, - { - "image_path": "/content/drive/MyDrive/combined/126421d7a4e816a1.jpg", - "response": "A man and a woman are standing in a room. The woman is wearing a grey sweatshirt with the letters \"VUF\" on the front. The man is pouring a white liquid into a blender. There are four wine glasses on the table in front of the blender.", - "id": 18188 - }, - { - "image_path": "/content/drive/MyDrive/combined/19c19861d0fa49b2.jpg", - "response": "A display of Tami Water machines on stands.", - "id": 18189 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a91304d0bad72c4.jpg", - "response": "A pair of red washer and dryer under a TV screen.", - "id": 18190 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c41f90b6ec6d4b3.jpg", - "response": "A collage of two pictures of a kitchen. In the left picture, there is a black coffee maker on a counter and a refrigerator with several magnets on it. There is also a collage of photos on the wall above the coffee maker. In the right picture, there is a black coffee maker on the counter and a small rack on the wall with several coasters.", - "id": 18191 - }, - { - "image_path": "/content/drive/MyDrive/combined/088b5f23c1500e8f.jpg", - "response": "A man in a black coat talking on a cell phone.", - "id": 18192 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e6e1ff9004cf745.jpg", - "response": "A woman in a blue dress is posing next to a silver and black washing machine. She is holding her arm out and there is a red chair behind her.", - "id": 18193 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd4ade9becfa7bd.jpg", - "response": "A page from the 1937 British Journal Almanac with three Contax cameras.", - "id": 18194 - }, - { - "image_path": "/content/drive/MyDrive/combined/16903c8a42597aa5.jpg", - "response": "A black refrigerator with a white label on the door.", - "id": 18195 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb63dc1ce9d5198.jpg", - "response": "A table with a variety of items on it. There is a bottle of Frosch cleaning solution, a spray bottle of Frosch cleaning solution, a measuring cup, a white kettle, a colorful towel, and a bag of Reeses peanut butter cups.", - "id": 18196 - }, - { - "image_path": "/content/drive/MyDrive/combined/1352d0179f7cd00e.jpg", - "response": "A woman sitting in a kitchen using a laptop computer.", - "id": 18197 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e408583b4b1edc0.jpg", - "response": "A group of men are standing around a grill, preparing food. They have gloves on and are making burgers.", - "id": 18198 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee4516dcc13bdec.jpg", - "response": "A silver and black television set on an orange table.", - "id": 18199 - }, - { - "image_path": "/content/drive/MyDrive/combined/178e3c5f3d9b34e2.jpg", - "response": "The image displays a black and grey Micromax X279 feature phone. The home screen of the phone is displayed and features various app icons. The phone has a numeric keypad with grey buttons and a black screen. The phone's make and model are displayed at the bottom of the screen.", - "id": 18200 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c513a85a5177c3.jpg", - "response": "a tree in front of a building", - "id": 18201 - }, - { - "image_path": "/content/drive/MyDrive/combined/12fb007ca12020fb.jpg", - "response": "A laundry room with multiple washers and dryers.", - "id": 18202 - }, - { - "image_path": "/content/drive/MyDrive/combined/13b31b78e801dcbf.jpg", - "response": "A man standing in a kitchen with a microwave above the stove.", - "id": 18203 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b02b9955d8d05db.jpg", - "response": "A woman in a blue jacket and white gloves is working on an LG refrigerator.", - "id": 18204 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc879e836efec8c.jpg", - "response": "A white microwave oven sitting in a cabinet.", - "id": 18205 - }, - { - "image_path": "/content/drive/MyDrive/combined/11819c815c1eb7ee.jpg", - "response": "A chef in a white jacket is stirring a pot of food on a counter.", - "id": 18206 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d7a93809484c6e2.jpg", - "response": "An open refrigerator with its light on.", - "id": 18207 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a077f34996574ed.jpg", - "response": "A television with a brown wooden frame and a bunch of knobs on the front.", - "id": 18208 - }, - { - "image_path": "/content/drive/MyDrive/combined/11afa3b96187cd36.jpg", - "response": "In the image, there is a woman dressed in a chef's uniform standing in a kitchen. She is wearing glasses and has blonde hair. She is preparing food on a counter, which includes several bowls and a spoon. There is also a refrigerator and a sink in the kitchen.", - "id": 18209 - }, - { - "image_path": "/content/drive/MyDrive/combined/19703a54731b9656.jpg", - "response": "A coffee maker with a sign on it that says \"Borken\".", - "id": 18210 - }, - { - "image_path": "/content/drive/MyDrive/combined/0be88a5b91ea64a2.jpg", - "response": "A kitchen counter with a variety of baked goods on it. There is a bread machine on the counter, as well as a pan of cinnamon rolls, a loaf of bread, and a pie. The counter also has a set of wooden pizza paddles and a set of cooking utensils.", - "id": 18211 - }, - { - "image_path": "/content/drive/MyDrive/combined/181fae5c62ebe8fb.jpg", - "response": "A group of five men in a kitchen.", - "id": 18212 - }, - { - "image_path": "/content/drive/MyDrive/combined/08463ba0392bfe64.jpg", - "response": "A desk with a keyboard, a pen, a piece of paper, and a bottle on it.", - "id": 18213 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdc35ffa9a068c0.jpg", - "response": "A counter with several packages of butter and a knife.", - "id": 18214 - }, - { - "image_path": "/content/drive/MyDrive/combined/18e5cee38771946f.jpg", - "response": "A store with a woman standing behind a counter.", - "id": 18215 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aed1c66cc269818.jpg", - "response": "An open refrigerator door reveals a sparse amount of food inside. There is a bottle of wine with a cork in it, a jar of sauce, and a bowl of food. There are also a few other containers and bottles scattered throughout the fridge. The refrigerator is white and stocked with very little food.", - "id": 18216 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d6adbce6a5226f4.jpg", - "response": "A white bread machine sitting on a wooden counter.", - "id": 18217 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d199e9a75bee0ba.jpg", - "response": "A man in a white shirt is cooking on a stove.", - "id": 18218 - }, - { - "image_path": "/content/drive/MyDrive/combined/16bdb3d158a09f1f.jpg", - "response": "A woman explaining the features of an LG Multi V outdoor unit to a group of three people at the company's booth during an exhibition.", - "id": 18219 - }, - { - "image_path": "/content/drive/MyDrive/combined/1162ce1c99bc8901.jpg", - "response": "A black and white vending machine that dispenses coffee.", - "id": 18220 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d659eff81545932.jpg", - "response": "A kitchen with white cabinets and a refrigerator. There is a man standing at the sink and a microwave on the counter. There are pictures on the refrigerator and a calendar on the counter. There are also oranges and a bowl in the kitchen.", - "id": 18221 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b71a18f06c6b68.jpg", - "response": "A Keurig coffee maker on a counter next to a stack of clear plastic storage containers.", - "id": 18222 - }, - { - "image_path": "/content/drive/MyDrive/combined/1181002ee2dd64e0.jpg", - "response": "A woman is standing in a kitchen preparing food. She is wearing a navy blue sweatshirt and glasses. She is holding a spatula and is standing in front of a refrigerator. There is a bowl of food on the counter next to her.", - "id": 18223 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d97042c0644f681.jpg", - "response": "A juicer on a counter next to a wooden cutting board.", - "id": 18224 - }, - { - "image_path": "/content/drive/MyDrive/combined/135778a40b8bbd56.jpg", - "response": "A container of Oprah Chai Tea sits next to a stainless steel kettle on a granite countertop.", - "id": 18225 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0f2f1cff2be4ab.jpg", - "response": "A kitchen with a green stove and a collection of pots and pans on the top.", - "id": 18226 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c4703159be66960.jpg", - "response": "A man standing in a room with a bookshelf, a table, a book, a bottle, a cup, a can, a knife, a book on a bookshelf, a bag on a table, a bottle on a table, a cup on a table, and a book on a counter.", - "id": 18227 - }, - { - "image_path": "/content/drive/MyDrive/combined/081f087712d61f96.jpg", - "response": "A white and clear food processor with a mixture of food in it.", - "id": 18228 - }, - { - "image_path": "/content/drive/MyDrive/combined/14448641b1f22bb2.jpg", - "response": "A magazine advertisement for GE Spacemaker appliances.", - "id": 18229 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce5b76c4e49cd01.jpg", - "response": "A man standing in a kitchen preparing food.", - "id": 18230 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0018d76c18f15e.jpg", - "response": "In the image, someone is making pasta using a silver and black pasta maker. A sheet of dough is coming out of the pasta maker and is placed on a dark grey cutting board. There are also some onions in the background.", - "id": 18231 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ab6252ba5f080ae.jpg", - "response": "An open refrigerator filled with a variety of food and drinks.", - "id": 18232 - }, - { - "image_path": "/content/drive/MyDrive/combined/09dcaaf01c06516b.jpg", - "response": "A refrigerator filled with soda, chips, and other snacks.", - "id": 18233 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f8b44caff2bbf2b.jpg", - "response": "A man in a white shirt with green sleeves and a green and white apron is cooking pizza in a brick oven.", - "id": 18234 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b07110992d15540.jpg", - "response": "A man wearing a rainbow shirt and blue apron holding a pan of chocolate cookies.", - "id": 18235 - }, - { - "image_path": "/content/drive/MyDrive/combined/342931538ad93cef.jpg", - "response": "A grill with the door open and a steak cooking inside.", - "id": 18236 - }, - { - "image_path": "/content/drive/MyDrive/combined/25e818806e9e42de.jpg", - "response": "A woman cooking food on a stove in a kitchen.", - "id": 18237 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d386537c97c108b.jpg", - "response": "A group of people sitting around a table at a bar.", - "id": 18238 - }, - { - "image_path": "/content/drive/MyDrive/combined/223c2f8ce268b778.jpg", - "response": "A man in a grey shirt and black shorts is standing in front of a commercial gas grill in a kitchen. He is cooking food on the griddle and holding a cup in his hand. There are multiple bottles on the counter behind the grill and a clock on the wall.", - "id": 18239 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fc0e9af713e753c.jpg", - "response": "A woman sitting on the floor in a corner of a room.", - "id": 18240 - }, - { - "image_path": "/content/drive/MyDrive/combined/245cf8673ce295f2.jpg", - "response": "A man in a green apron working behind the counter at a coffee shop.", - "id": 18241 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fbb79265b1e90c2.jpg", - "response": "A chef in a white jacket is using a large white mixer to make something.", - "id": 18242 - }, - { - "image_path": "/content/drive/MyDrive/combined/387ba1616155df34.jpg", - "response": "A man standing behind a display counter filled with a variety of food items.", - "id": 18243 - }, - { - "image_path": "/content/drive/MyDrive/combined/31859a08d0df0d59.jpg", - "response": "A grill with a chimney starter on it with a fire in the chimney starter.", - "id": 18244 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e65a3e7c92352a.jpg", - "response": "The image shows a kitchen counter with a new caffesso machine on it. The machine is in front of the box it came in and there are some capsules next to it. There are also some cups and a spoon on the counter.", - "id": 18245 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eeab97c20315077.jpg", - "response": "a large white building with black lettering", - "id": 18246 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bd2155e2df6cd67.jpg", - "response": "A stove with pots and pans on it and a pot with scissors in it.", - "id": 18247 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7aa610974fc9ff.jpg", - "response": "A popcorn machine with a lot of popcorn in it.", - "id": 18248 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b526a9d3a65c226.jpg", - "response": "A vitamix blender full of beans on a counter with four lemons.", - "id": 18249 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d000c2e0127523.jpg", - "response": "A garage with a white storage cabinet, a rolling laundry hamper, and a washer and dryer.", - "id": 18250 - }, - { - "image_path": "/content/drive/MyDrive/combined/3457dd7ba2343fb5.jpg", - "response": "A woman wearing a red apron that says \"Born to Shop, Forced to Cook\" is standing in a kitchen.", - "id": 18251 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb6f65718da2d86.jpg", - "response": "A black KitchenAid mixer sits on a green countertop next to an orange one.", - "id": 18252 - }, - { - "image_path": "/content/drive/MyDrive/combined/23bba43be6924f6e.jpg", - "response": "a book with two pictures of auditoriums on the inside pages.", - "id": 18253 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b301b7bbec2ac71.jpg", - "response": "A kitchen with a white refrigerator freezer sitting next to a stove top oven.", - "id": 18254 - }, - { - "image_path": "/content/drive/MyDrive/combined/2730e02fba384086.jpg", - "response": "A plate with a slice of cheesecake on it.", - "id": 18255 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c58ca2463a90a05.jpg", - "response": "A woman in a yellow shirt is standing in a kitchen.", - "id": 18256 - }, - { - "image_path": "/content/drive/MyDrive/combined/36be2de029c88fca.jpg", - "response": "A refrigerator full of Tru Blood drinks with the words \"All flavor. No bite\" on the top.", - "id": 18257 - }, - { - "image_path": "/content/drive/MyDrive/combined/382301327abb25da.jpg", - "response": "A coffee maker on a desk with a box and a mug.", - "id": 18258 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee7dc206046184d.jpg", - "response": "A stainless steel oven with the words Radarange Mark IV above it.", - "id": 18259 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cedac45d54ed95d.jpg", - "response": "A man standing in front of a grill with burgers on it.", - "id": 18260 - }, - { - "image_path": "/content/drive/MyDrive/combined/21258fc49f505f7c.jpg", - "response": "a man in a red and black hat holding a large appliance", - "id": 18261 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d212b8785d77544.jpg", - "response": "A colorful ice cream vending machine with a wide selection of ice cream.", - "id": 18262 - }, - { - "image_path": "/content/drive/MyDrive/combined/246e4978074f8489.jpg", - "response": "A juicer is on a table with two glasses of juice in front of it. The glasses have lime wedges and tiny umbrellas in them.", - "id": 18263 - }, - { - "image_path": "/content/drive/MyDrive/combined/36a2f53b3a10c0ac.jpg", - "response": "A recycling bin with two different sections for recyclable and non-recyclable items.", - "id": 18264 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ec5b14fc3adca07.jpg", - "response": "A toaster oven with a rack of food on it.", - "id": 18265 - }, - { - "image_path": "/content/drive/MyDrive/combined/20c44c9e6b263d5c.jpg", - "response": "In the image, a woman is working in a lab. She is wearing a white lab coat and purple gloves and is looking into a fume hood. She appears to be reaching into a drawer or container.", - "id": 18266 - }, - { - "image_path": "/content/drive/MyDrive/combined/2814e52cd125dbd9.jpg", - "response": "A pizza sitting on a rack in a silver oven.", - "id": 18267 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a5578187a344221.jpg", - "response": "A group of children looking at a hamster in a cage.", - "id": 18268 - }, - { - "image_path": "/content/drive/MyDrive/combined/3292a26132f0f30c.jpg", - "response": "A hamburger vending machine with a yellow sign above it. The machine has two slots for putting in money and two bins for picking up the food. There is a bag of food in one of the bins.", - "id": 18269 - }, - { - "image_path": "/content/drive/MyDrive/combined/24534957f36e5a1c.jpg", - "response": "A Vorwerk Thermomix machine on a white background with a grey triangle behind it.", - "id": 18270 - }, - { - "image_path": "/content/drive/MyDrive/combined/233dcbbc6bad4d8b.jpg", - "response": "A large atrium with a three story hotel in the center. There are multiple people walking around and sitting in chairs. There is a fountain in the center with yellow flowers around it. There is a coffee shop in the center of the atrium and a man standing in front of it. There are also multiple potted palm trees placed around the area.", - "id": 18271 - }, - { - "image_path": "/content/drive/MyDrive/combined/3295703228390faa.jpg", - "response": "A metal pan with a block of chocolate in it.", - "id": 18272 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab9c102ce4684b5.jpg", - "response": "a man cooking food on a grill", - "id": 18273 - }, - { - "image_path": "/content/drive/MyDrive/combined/2986fd7e368ba4b6.jpg", - "response": "A man wearing a blue sweatshirt with red letters is working behind a counter. He is making a drink and there are straws in a cup next to him. There is a pile of tickets on the counter.", - "id": 18274 - }, - { - "image_path": "/content/drive/MyDrive/combined/31fc2d1aec94d297.jpg", - "response": "A man grilling food on a table outside.", - "id": 18275 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba0dbc88f47be4f.jpg", - "response": "A refrigerator with a lot of food and drinks in it.", - "id": 18276 - }, - { - "image_path": "/content/drive/MyDrive/combined/269369ca837466ca.jpg", - "response": "A blue cooler with the word Pepsi on it.", - "id": 18277 - }, - { - "image_path": "/content/drive/MyDrive/combined/235bff24ea277924.jpg", - "response": "A metal pan with two chocolate cupcakes on it.", - "id": 18278 - }, - { - "image_path": "/content/drive/MyDrive/combined/21fa68b97c74011a.jpg", - "response": "A refrigerator with its door open, revealing its contents. There are multiple bottles of Gatorade, Miller High Life beer, and other food items such as oranges and bread. The refrigerator is also stocked with various condiments and other food items.", - "id": 18279 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab7a1a9993e8827.jpg", - "response": "In the kitchen, on the stove, there is a large metal pan with a red spatula in it. In the pan, there are some sliced mushrooms and onions being saut\u00e9ed.", - "id": 18280 - }, - { - "image_path": "/content/drive/MyDrive/combined/2789ce710c695c68.jpg", - "response": "A glass door that is closed.", - "id": 18281 - }, - { - "image_path": "/content/drive/MyDrive/combined/38c6e7f83fa5b7ed.jpg", - "response": "The image shows the inside of a refrigerator, stocked with a variety of food and drinks. There are several containers of food, including sandwiches, vegetables, and fruit. There are also several drinks, including cans of Fanta and 7up. The refrigerator is well-stocked and appears to be full.", - "id": 18282 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f947c9fd8664639.jpg", - "response": "A woman wearing a red shirt is holding a grey oven mit in front of her face. She is sitting in front of an LG microwave.", - "id": 18283 - }, - { - "image_path": "/content/drive/MyDrive/combined/233e41a2f2f4b6ae.jpg", - "response": "A kitchen with a refrigerator, microwave, and sink.", - "id": 18284 - }, - { - "image_path": "/content/drive/MyDrive/combined/3589c306443422bb.jpg", - "response": "A vintage KitchenAid mixer advertisement with a sketch of the mixer in front of a variety of food dishes.", - "id": 18285 - }, - { - "image_path": "/content/drive/MyDrive/combined/20a19fc5482d388d.jpg", - "response": "A woman standing in a kitchen with a pot on the stove.", - "id": 18286 - }, - { - "image_path": "/content/drive/MyDrive/combined/221a39fae7027bea.jpg", - "response": "A selection of stainless steel LG Studio appliances including a refrigerator, stove, microwave, and dishwasher.", - "id": 18287 - }, - { - "image_path": "/content/drive/MyDrive/combined/38bbe3345ae80a22.jpg", - "response": "a wall with a door and a window", - "id": 18288 - }, - { - "image_path": "/content/drive/MyDrive/combined/206739df42c9ac55.jpg", - "response": "A little girl sitting in a cardboard box on the kitchen floor.", - "id": 18289 - }, - { - "image_path": "/content/drive/MyDrive/combined/268358cfe77575e6.jpg", - "response": "A machine with a lot of buttons and screens.", - "id": 18290 - }, - { - "image_path": "/content/drive/MyDrive/combined/223abf879c6f1206.jpg", - "response": "A table with a metal cocktail shaker on it.", - "id": 18291 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c9d4e3d60d6549b.jpg", - "response": "A woman looking into a yellow bin filled with items.", - "id": 18292 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee9c57cae6b426a.jpg", - "response": "An open refrigerator filled with many different foods and drinks.", - "id": 18293 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f6124299541f1c9.jpg", - "response": "A close up of a glass of Granville Island Brewing beer.", - "id": 18294 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d40044c792c5d1e.jpg", - "response": "A refrigerator filled with various types of beer.", - "id": 18295 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bbb8c43a3380316.jpg", - "response": "A store with a sign that says Cirv on it.", - "id": 18296 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b5125dfe480ff8.jpg", - "response": "A small red building with a menu on the side.", - "id": 18297 - }, - { - "image_path": "/content/drive/MyDrive/combined/337943b28eb19de0.jpg", - "response": "A man wearing a black shirt and khaki pants standing in front of a freezer.", - "id": 18298 - }, - { - "image_path": "/content/drive/MyDrive/combined/480cc8a790bd1caa.jpg", - "response": "A kitchen appliance that looks like a toaster oven with a silver and black color scheme. The appliance has a digital display on the front. There are four pieces of food cooking inside the oven.", - "id": 18299 - }, - { - "image_path": "/content/drive/MyDrive/combined/50637f0168a9212f.jpg", - "response": "A man standing in a kitchen holding a knife.", - "id": 18300 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1e219b64f04223.jpg", - "response": "In the image, there are two women standing in front of a Coca-Cola vending machine. One of the women is wearing glasses and has her hair tied back. They are both wearing short sleeved shirts. One of the women is holding a soda bottle, and there is another bottle visible in the scene. The vending machine is located inside a building, and there is a bench nearby.", - "id": 18301 - }, - { - "image_path": "/content/drive/MyDrive/combined/459eb80a93786a39.jpg", - "response": "A refrigerator with the door open, revealing very little food inside. There is a single pizza sitting on one of the shelves, and a few other items such as a bottle and a cup. The refrigerator is situated in a dark room.", - "id": 18302 - }, - { - "image_path": "/content/drive/MyDrive/combined/41e3eb4688760271.jpg", - "response": "A black crockpot sits on a counter next to a toaster.", - "id": 18303 - }, - { - "image_path": "/content/drive/MyDrive/combined/4753fcb07cfd34a8.jpg", - "response": "A female model is holding a board with a message about the LG microwave oven in front of three different LG microwave oven models.", - "id": 18304 - }, - { - "image_path": "/content/drive/MyDrive/combined/429b20a7caadbd06.jpg", - "response": "A front view of an LG air purifier in white and grey color with the company logo on top. The air purifier has a digital display that reads \"48\" and shows the remaining time until the filter changes. The display also shows the current air quality and the mode of operation. The air purifier has a sleek and modern design with rounded edges.", - "id": 18305 - }, - { - "image_path": "/content/drive/MyDrive/combined/3993068ec38edcda.jpg", - "response": "A woman in a white dress is showing two other women the features of an open LG refrigerator. The refrigerator has a transparent door, which allows the contents to be seen through the glass. The refrigerator is stocked with drinks and snacks.", - "id": 18306 - }, - { - "image_path": "/content/drive/MyDrive/combined/4220a25b3dabfa18.jpg", - "response": "A pink door with a note that says \"Please knock when ready to order\" taped to it.", - "id": 18307 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fd30ecd22bcdecc.jpg", - "response": "A red Coca Cola machine with a digital screen on the front.", - "id": 18308 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad2b99ef5fb838c.jpg", - "response": "A woman is standing next to an open LG refrigerator. The refrigerator is silver and black in color. The woman is wearing a pink dress and high heels. She is reaching out to the refrigerator with her left hand, as if to show off the product.", - "id": 18309 - }, - { - "image_path": "/content/drive/MyDrive/combined/534b1900dba97f76.jpg", - "response": "In the image there is a man standing in a kitchen preparing food. He is wearing a blue shirt and black apron and is focused on preparing a dish. He is standing in front of a counter with various kitchen items such as a bowl, a knife, and a spoon. The kitchen also has a potted plant and a bottle on the counter. The walls of the kitchen are white and there is a clock on the wall.", - "id": 18310 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e91db27ed4bcb29.jpg", - "response": "A grill with three hot dogs on it.", - "id": 18311 - }, - { - "image_path": "/content/drive/MyDrive/combined/54b15e827a91e43a.jpg", - "response": "A person is checking the temperature of a steak with a red and white thermometer.", - "id": 18312 - }, - { - "image_path": "/content/drive/MyDrive/combined/396f94a7938627e3.jpg", - "response": "A person standing in a kitchen cutting a pizza.", - "id": 18313 - }, - { - "image_path": "/content/drive/MyDrive/combined/409429183d8095de.jpg", - "response": "A woman wearing a black shirt that says \"I love my bad ass attitude\" is standing at a counter.", - "id": 18314 - }, - { - "image_path": "/content/drive/MyDrive/combined/42db48ee2ed33e0d.jpg", - "response": "A blender with a white liquid in it sitting on a counter.", - "id": 18315 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e3627c6026adb6.jpg", - "response": "A kitchen counter with a coffee maker on it. There is a red bag with a question mark on it, a box of sandalwood, a roll of paper towels, and a bottle of vitamin E oil.", - "id": 18316 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2342cb4d0249c6.jpg", - "response": "A man in a blue shirt and khaki pants is holding a part in front of a large machine. The machine is black and orange and says \"z corporation\" on it.", - "id": 18317 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d2e5c3150631bc9.jpg", - "response": "A black and white photo of a pancake maker.", - "id": 18318 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f1d7615a7db0b17.jpg", - "response": "A popcorn machine with two warmers and two small bowls.", - "id": 18319 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a9ace8fe0b98d4b.jpg", - "response": "A woman in a red shirt standing in front of a white counter.", - "id": 18320 - }, - { - "image_path": "/content/drive/MyDrive/combined/41bc29d3a8fbc956.jpg", - "response": "A man wearing a blue shirt and white shorts is standing in a kitchen. He is holding a glass of beer and has a red patch on his face. He is smiling and appears to be happy.", - "id": 18321 - }, - { - "image_path": "/content/drive/MyDrive/combined/52e5c3188c1722c2.jpg", - "response": "A man in a white shirt is standing in front of a pizza oven.", - "id": 18322 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b132672d11bc3d2.jpg", - "response": "A stove with a tea kettle and a red coffee press on it.", - "id": 18323 - }, - { - "image_path": "/content/drive/MyDrive/combined/542540c951e39ea0.jpg", - "response": "A chef is standing in front of a display of LG appliances. He is using one of the appliances, which is an oven. The oven is silver and black in color. The chef is wearing a white uniform with a red stripe. He is also wearing a white hat with a red LG logo on it.", - "id": 18324 - }, - { - "image_path": "/content/drive/MyDrive/combined/39bf8c6d7c3275a1.jpg", - "response": "A granite countertop with a Keurig coffee maker on it. There is a small sign in front of the coffee maker that says \"Brew a complimentary cup of coffee\". Next to the coffee maker is a small dish of sugar packets. There are also two wine glasses on the counter and a bottle of wine sitting next to them. Underneath the counter is a small amount of clutter.", - "id": 18325 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f25e506c8a5f345.jpg", - "response": "A buffet with a silver pan of food on it and a monitor above it.", - "id": 18326 - }, - { - "image_path": "/content/drive/MyDrive/combined/39c36bec5c9f45a5.jpg", - "response": "A man standing behind a podium with stickers on it.", - "id": 18327 - }, - { - "image_path": "/content/drive/MyDrive/combined/3911852118d99a20.jpg", - "response": "A display case with two boxes inside. One is wooden and the other is white.", - "id": 18328 - }, - { - "image_path": "/content/drive/MyDrive/combined/489e6c2f95f1ccd0.jpg", - "response": "A soldier in a green uniform is sitting in a chair.", - "id": 18329 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e777bab829117de.jpg", - "response": "A red crockpot sitting on a kitchen counter.", - "id": 18330 - }, - { - "image_path": "/content/drive/MyDrive/combined/536016aff24a055e.jpg", - "response": "An open refrigerator with the light on. There are multiple bottles, including a few green ones, and a few wine glasses. There are also several bowls and a few oranges.", - "id": 18331 - }, - { - "image_path": "/content/drive/MyDrive/combined/5298ad00fa6c17a0.jpg", - "response": "a busy city street with people walking on the sidewalk", - "id": 18332 - }, - { - "image_path": "/content/drive/MyDrive/combined/52235ad30ea7e0b9.jpg", - "response": "A building with a large sign on the top of it.", - "id": 18333 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b44cf9483ed3208.jpg", - "response": "A kitchen counter with a variety of food items and kitchen utensils.", - "id": 18334 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1e24df80f31791.jpg", - "response": "A pair of models pose next to an LG DIOS refrigerator. The refrigerator is stainless steel with a transparent door. The left model is wearing a red dress and black high heels and is holding the left door open. The right model is wearing a white dress and black high heels and is holding the right door open. Both models are smiling at the camera.", - "id": 18335 - }, - { - "image_path": "/content/drive/MyDrive/combined/399d4298d6f56665.jpg", - "response": "A man is standing behind a silver microwave.", - "id": 18336 - }, - { - "image_path": "/content/drive/MyDrive/combined/54acf60be73ecba9.jpg", - "response": "The image is of a room with a tall blue and white sign that says \"Mobile Monday South Africa\" on it. The sign is in front of a wall with a chandelier hanging from the ceiling. There are chairs and tables in the room and a couch can be seen in the background. The room has a door that is open and a window letting in natural light.", - "id": 18337 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d547a70c18997fc.jpg", - "response": "A baby is sleeping on a bed, as shown on a small monitor. The monitor is sitting on a table, which also has a book, a bowl of cereal, and a keyboard. There is a remote control next to the monitor, and a Style magazine beneath it. A pack of plastic silverware is also on the table.", - "id": 18338 - }, - { - "image_path": "/content/drive/MyDrive/combined/498b1bf56bfa79d1.jpg", - "response": "A display of books and magazines with pictures of a man in military uniform on the cover.", - "id": 18339 - }, - { - "image_path": "/content/drive/MyDrive/combined/43d6d06a43bdd387.jpg", - "response": "A woman standing in a kitchen preparing food.", - "id": 18340 - }, - { - "image_path": "/content/drive/MyDrive/combined/544fc8c372a32b64.jpg", - "response": "A man wearing glasses and a blue shirt stands in front of a stove with a pot on it. He is giving a thumbs up and there is a oven mitt on the stove.", - "id": 18341 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f88641f8d63fdfe.jpg", - "response": "A white bosch tassimo machine sitting on a counter with two t discs next to it.", - "id": 18342 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cfbcaec6862281b.jpg", - "response": "A sign on a window that says \"Please notify your cashier if you have a coupon before ordering or your coupon will not be honored. Thank you for your management.\"", - "id": 18343 - }, - { - "image_path": "/content/drive/MyDrive/combined/54747437a1be9c7a.jpg", - "response": "A white Samsung microwave oven sitting on a wooden table.", - "id": 18344 - }, - { - "image_path": "/content/drive/MyDrive/combined/54197c5f1507184a.jpg", - "response": "The image shows a group of people sitting on a variety of couches in a lobby or waiting area. There are at least four people visible, with one man sitting on a green couch and another man sitting on a red couch. There are also two chairs in the scene, one near the left side of the room and another near the right side. A map is posted on the wall, and a sink can be seen in the background.", - "id": 18345 - }, - { - "image_path": "/content/drive/MyDrive/combined/438703ce629c207c.jpg", - "response": "a man wearing a white apron with a picture of a crab on it", - "id": 18346 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0e46cf9f9872a6.jpg", - "response": "A toaster with a picture of a persons face on the toast.", - "id": 18347 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ab2b212be1ea283.jpg", - "response": "the word vivitar on the front of the machine(279,443),(589,523)", - "id": 18348 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b5f16d654a8c31e.jpg", - "response": "In the image there is a person wearing a white lab coat and plastic gloves, using a juicer to make a fruit juice. The juicer is a silver machine with a black lid and a glass container. The person is adding ingredients to the juicer, which include a red fruit such as a strawberry and a banana. There is also a carton of soy milk on the table and a green plant in the background.", - "id": 18349 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a4b059ecab82b9d.jpg", - "response": "A woman standing next to a stove in a kitchen.", - "id": 18350 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c936749ba20b1d0.jpg", - "response": "A coffee maker and a white appliance sit on a counter. There are shelves above the counter with various items on them. There are cups, spoons, and a bowl on the shelves.", - "id": 18351 - }, - { - "image_path": "/content/drive/MyDrive/combined/54128b506fed5629.jpg", - "response": "A meal consisting of rice, meat, salad, and dessert.", - "id": 18352 - }, - { - "image_path": "/content/drive/MyDrive/combined/42f87d9e73f70198.jpg", - "response": "A kitchen with a table and a wall with a variety of items on it. On the table, there is a bowl and a mixer. On the wall, there are a waffle iron and a sign.", - "id": 18353 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ce1f2ee42b89068.jpg", - "response": "A saucepan filled with a yellow liquid and four sticks of butter.", - "id": 18354 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d31d66369774c15.jpg", - "response": "A stainless steel refrigerator with a hand opening the door.", - "id": 18355 - }, - { - "image_path": "/content/drive/MyDrive/combined/41160be1337c198b.jpg", - "response": "The image shows two large, black and clear glass refrigerators standing side by side. The refrigerators have silver doors and are filled with small boxes. The boxes are organized in neat rows on the shelves of the refrigerators.", - "id": 18356 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c325a759a05e2fa.jpg", - "response": "A kitchen counter with a sliced loaf of bread on a black cutting board. The bread is a light brown color and has a crispy crust. It is sitting in front of a large mixer.", - "id": 18357 - }, - { - "image_path": "/content/drive/MyDrive/combined/5177dc1653803388.jpg", - "response": "A white microwave with a piece of paper inside.", - "id": 18358 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d6b037b0145884.jpg", - "response": "A man in a white shirt and black hat is kneeling down in a kitchen. He is looking at the pipes under a sink. There is a cell phone in his hand that is lit up. The sink is white and has a silver faucet. There is a stove next to the sink. The stove has a black eye and a silver handle. There are also several bottles on the counter around the sink. One of the bottles is orange and has a white lid. Another bottle is red and white. There is also a cup on the counter. A bowl is on top of the counter and there are two spoons in it. A knife is in a block on the counter. There is also a spoon on the counter.", - "id": 18359 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f424521c2d7d81.jpg", - "response": "A kitchen with a refrigerator, microwave, and shelves.", - "id": 18360 - }, - { - "image_path": "/content/drive/MyDrive/combined/5092849a911b2581.jpg", - "response": "A woman and a child pose for a picture in a kitchen. The woman has her arm around the child.", - "id": 18361 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e6c49eb55dadc12.jpg", - "response": "A bag of coffee beans and a container of coffee beans are on a counter.", - "id": 18362 - }, - { - "image_path": "/content/drive/MyDrive/combined/399692aefca4ed55.jpg", - "response": "An old Walita blender advertisement with a man and a woman smiling and holding the blender.", - "id": 18363 - }, - { - "image_path": "/content/drive/MyDrive/combined/5517b5cb2a5be9bc.jpg", - "response": "An escalator with a hand rail next to a mirrored wall.", - "id": 18364 - }, - { - "image_path": "/content/drive/MyDrive/combined/5556c8e82e4c9fed.jpg", - "response": "The station has a lot of people walking around.", - "id": 18365 - }, - { - "image_path": "/content/drive/MyDrive/combined/aff604f54b377396.jpg", - "response": "An ice sculpture of a toilet sitting on the grass.", - "id": 18366 - }, - { - "image_path": "/content/drive/MyDrive/combined/11db7fbad1b3e571.jpg", - "response": "A black mouse pad with a mouse on top of it.", - "id": 18367 - }, - { - "image_path": "/content/drive/MyDrive/combined/180e7d0660d2a440.jpg", - "response": "A close up of a wall outlet with a cord plugged in.", - "id": 18368 - }, - { - "image_path": "/content/drive/MyDrive/combined/164d31e0fb46b111.jpg", - "response": "A close up of a metal switch on a wall. The switch is labeled with the following words: ON, GAS, WATER, and OFF. The letters are written with black marker.", - "id": 18369 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dc59c7e57fa8968.jpg", - "response": "A close up of three light switches in a row. They are all in the off position. The switches are dirty and have some rust on them. The background is a dark brown color.", - "id": 18370 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f3f88e22d7f3884.jpg", - "response": "A close up of a plug socket on a wall. The socket is in the centre of the image and is circular in shape. It is white and has four holes in it. The plug socket is set against a background of a concrete wall. The wall is in black and white and has some paint peeling off it. There are several cracks in the wall and some small holes.", - "id": 18371 - }, - { - "image_path": "/content/drive/MyDrive/combined/27c8a391f7be1541.jpg", - "response": "A close up of a light switch on a wall.", - "id": 18372 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b645531285ccc52.jpg", - "response": "A cell phone screen displays a list of restaurants with their names and ratings.", - "id": 18373 - }, - { - "image_path": "/content/drive/MyDrive/combined/07fafb921e2672a2.jpg", - "response": "a person holding a black cellphone in front of a laptop keyboard", - "id": 18374 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a31bcc19cc477ba.jpg", - "response": "A person holding a black cell phone in their hand.", - "id": 18375 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3be867f9ca3653.jpg", - "response": "A close up of a cell phone with the word yes on the screen.", - "id": 18376 - }, - { - "image_path": "/content/drive/MyDrive/combined/0da3109f36ec1e24.jpg", - "response": "an orange and black cell phone in someones hand.", - "id": 18377 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a4037da62f2812.jpg", - "response": "In the image there are two Samsung smartphones side by side. The one on the left is black and is labeled as Samsung. The one on the right is blue and is also labeled as Samsung. Both phones have apps displayed on their screens.", - "id": 18378 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c4c3faf024ccab9.jpg", - "response": "A person holding a black cellphone in their hand.", - "id": 18379 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bbf5bbf011d1aff.jpg", - "response": "A grey nendoroid doll of the character\u53cc\u8449\u674f from THE IDOLM@STER on display in front of a white and blue piece of paper.", - "id": 18380 - }, - { - "image_path": "/content/drive/MyDrive/combined/0894dfcf5b32a4be.jpg", - "response": "The image shows the back of a cell phone. The phone is a dark grey color. The camera lens is on the top of the phone. There is a silver bar across the middle of the phone with the word \"lg\" in silver on it. Below the silver bar is the word \"double play\" in silver. There are two silver buttons on the bottom of the phone.", - "id": 18381 - }, - { - "image_path": "/content/drive/MyDrive/combined/0819f79662e291d3.jpg", - "response": "A white LG G3 smartphone with a pink and blue splash of color on the screen.", - "id": 18382 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b99ab20f27604f.jpg", - "response": "A blackberry phone with a red and black case.", - "id": 18383 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b9d93bdc065bb7.jpg", - "response": "A Samsung phone sits on a wooden table next to a black cover.", - "id": 18384 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a204e50362fdf1d.jpg", - "response": "An iPhone is sitting on a wooden table. The screen of the phone is visible and it has a variety of icons on it. There is an app for the phone called \"Shazam\" which is used to identify music. There is also an app called \"iBooks\" which is an e-book reader. The phone has a camera app which is one of the most used features on the phone.", - "id": 18385 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a975d273e02c983.jpg", - "response": "a person holding a cell phone with a camera on the screen", - "id": 18386 - }, - { - "image_path": "/content/drive/MyDrive/combined/090ff6f59d135767.jpg", - "response": "A red and black Sony Xperia phone.", - "id": 18387 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3643013a53da39.jpg", - "response": "A browser window is open to the Gmail website, which is displaying a login screen. The screen has a header that reads \"Welcome to Lloyd Budd\" and a login form. The form has two fields: one for a username or email address and one for a password. There is a button below the form that reads \"Sign in\". The header of the page is blue and there is a search bar at the top of the page with the Google logo and search text \"Lloyd Budd\". Below the header is a navigation menu with several links. The menu is black and has a Google logo in the center. The menu has the following links: Home, About, Services, Contact, and Terms of Service. The background of the page is white.", - "id": 18388 - }, - { - "image_path": "/content/drive/MyDrive/combined/0887f6f8c0eb946b.jpg", - "response": "A person is holding a cell phone in their hand.", - "id": 18389 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d20f34aa247ee13.jpg", - "response": "A person holding a smartphone in their hand. The phone is an orange Microsoft Lumia. The screen of the phone is showing the start menu of Windows 10. There are 9 icons visible on the screen. From left to right they are: a square with the word \"Facebook\" in white, a square with the word \"Instagram\" in white, a square with the word \"Camera\" in white, a square with the word \"Selfie\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in white, a square with the word \"\u4eba\u8109\" in", - "id": 18390 - }, - { - "image_path": "/content/drive/MyDrive/combined/07de9c4d1012646f.jpg", - "response": "A person holding a bike with a phone in a case on the front. The phone screen is showing a graph.", - "id": 18391 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cda4b9049171bac.jpg", - "response": "A cell phone and a pink bottle are on a wooden table.", - "id": 18392 - }, - { - "image_path": "/content/drive/MyDrive/combined/07dcc033d9b5a027.jpg", - "response": "A htc phone on a wooden table.", - "id": 18393 - }, - { - "image_path": "/content/drive/MyDrive/combined/09fbf6370f909f2e.jpg", - "response": "A Huawei ascend d7 phone on display.", - "id": 18394 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a6e1f0175367e51.jpg", - "response": "A cell phone that is turned on and displaying the Microsoft logo. The phone is sitting on a wooden desk and the background is blurry.", - "id": 18395 - }, - { - "image_path": "/content/drive/MyDrive/combined/083eefef9d1acc0f.jpg", - "response": "A person is holding a black LG G3 phone in their hand. The phone is at a slight angle so that the bottom right corner is near the camera and the top left corner is near the person's thumb. The phone's screen is showing an image of red, purple, and blue ink mixing together. The time on the phone is 19:53 and there are three icons at the bottom of the screen. The person holding the phone is white.", - "id": 18396 - }, - { - "image_path": "/content/drive/MyDrive/combined/080bc21ab123fe0c.jpg", - "response": "A Huawei smartphone is being held in someones hand. The phone is white and open, showing a webpage with German writing. The webpage is titled \"Jetzt Online Genen!\" which translates to \"Get Online Now!\"", - "id": 18397 - }, - { - "image_path": "/content/drive/MyDrive/combined/09623a3feb96e231.jpg", - "response": "A person is holding a cell phone in their hand. The phone is a Sony Ericsson model. The phone is lit up and displaying a map. The map shows the phone's location. The phone is on the left hand of the person holding it.", - "id": 18398 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf6d2c75944bfe7.jpg", - "response": "A group of four iPhones sitting next to each other.", - "id": 18399 - }, - { - "image_path": "/content/drive/MyDrive/combined/09900d5eca4beede.jpg", - "response": "In the image, a person is holding a smartphone displaying a screen with a QR code at the top left corner. The phone is an iPhone and the person is holding it in their left hand. The phone is also displaying a keyboard on the screen. The background of the image is a computer screen.", - "id": 18400 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d510e343e205774.jpg", - "response": "A person is holding a pink and white iPhone in their hands. They are using the phone to navigate the internet.", - "id": 18401 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c99d2622e821827.jpg", - "response": "The image features two cell phones, one on the left and one on the right. Both cell phones are black and have a similar design. The cell phone on the left has a physical keyboard and the one on the right does not. The cell phone on the left has a weather app on the screen and the one on the right has a camera app. The screen of the cell phone on the left displays the time as 12:09 and the date as December 16, 2011. The screen of the cell phone on the right displays the time as 12:29.", - "id": 18402 - }, - { - "image_path": "/content/drive/MyDrive/combined/079a43fc3fb25fc6.jpg", - "response": "The image features a wooden table with a red cell phone sitting on top. The back of the phone is facing forward and there is a logo on the back. The phone is next to a black device with a red battery. The battery has a warning label on it that says \"non-removable battery\". There is also a bar code on the battery.", - "id": 18403 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c829eea2bc71860.jpg", - "response": "The image features a smartphone with a pink and grey frame. The screen of the phone is off. In the center of the screen there is a word \"InFocus\" written in grey. The phone is set on a white surface.", - "id": 18404 - }, - { - "image_path": "/content/drive/MyDrive/combined/0996fb0dcf9fefcd.jpg", - "response": "A diagram showing how to use a phone with a Google Wallet. There is a red wire coming out of the top of the phone and a blue one coming in from the left. The phone is showing a Mastercard logo and the words \"Look for these symbols at checkout\" are written above it. To the right of the phone is a black reader with a red and blue wire coming out of it. The words \"Tap your phone on the reader\" are written above it. To the right of the reader is a blue rectangle with the Mastercard logo and the words \"PayPass\" in white. To the left of the rectangle is a red box with the Mastercard logo and the words \"PayPass\" in white. The words \"Your phone sends payment, and, at some merchants, and, payment information\" are written above the red box. The words \"Google Wallet\" are written above the diagram in white.", - "id": 18405 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a55ca146e713289.jpg", - "response": "A black device with a screen and a physical keyboard.", - "id": 18406 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b4ce96ff951029a.jpg", - "response": "A large smartphone is on display in front of a red and white box. The phone is sitting on a wooden table.", - "id": 18407 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1584906bc2029d.jpg", - "response": "The image shows a close up of a display of electronics, with two small laptops on a clear stand. One of the laptops is black and red, and the other is black and silver. They both have full keyboards, and are on display at a store.", - "id": 18408 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b67197a37d85bcf.jpg", - "response": "A cell phone that is a Samsung Galaxy S6 Edge. The phone is laying on its side on a wooden table. The phone is a gold color. The screen is on and displays the time as 11:43 and temperature as 29. The lock screen has 3 icons. The bottom of the screen displays the message \"Swipe screen to unlock\".", - "id": 18409 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d1749a2bf3626c.jpg", - "response": "In the image a person is holding a cell phone that has a picture of a man in a red shirt sitting on the beach. The picture has been taken off the cell phone and is being held in the persons hand. The person is also standing in front of a beach.", - "id": 18410 - }, - { - "image_path": "/content/drive/MyDrive/combined/08aa088b08f73c6a.jpg", - "response": "A woman is holding two cellphones. One of them is a solar powered phone.", - "id": 18411 - }, - { - "image_path": "/content/drive/MyDrive/combined/0868e18f64b83259.jpg", - "response": "An open iPhone 5C box on a wooden table.", - "id": 18412 - }, - { - "image_path": "/content/drive/MyDrive/combined/093257282acf0d13.jpg", - "response": "A HTC phone is on a wooden table. The phone is grey in color and has the word \"htc\" written on the back. The camera is located on the top right hand side of the phone. There is a small silver button above the camera. The phone is sitting at an angle on the table.", - "id": 18413 - }, - { - "image_path": "/content/drive/MyDrive/combined/092ac44ecebdff9d.jpg", - "response": "A cell phone that is turned off, sitting on a table.", - "id": 18414 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b45d89a6c4cb5a5.jpg", - "response": "A person is holding a cell phone in their hand. The phone is a Motorola phone and is displaying a message about setting up a Google account. The message says \"Your phone needs to communicate with Google servers to set up your account. This may take up to five minutes.\" There is a finger visible under the phone, and a thumb on the left side of the phone.", - "id": 18415 - }, - { - "image_path": "/content/drive/MyDrive/combined/07bb0624a75a43d6.jpg", - "response": "A person is holding a white and pink phone in their hands. They are looking at the screen of the phone which displays a menu. The phone is an iPhone and the person is navigating the settings.", - "id": 18416 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a02c60dab9e895f.jpg", - "response": "A blackberry phone with a cartoon face on the screen.", - "id": 18417 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac9bc1df55d5053.jpg", - "response": "A close up of a phone screen with a black background and blue and white writing.", - "id": 18418 - }, - { - "image_path": "/content/drive/MyDrive/combined/08cf7dee955b29b1.jpg", - "response": "A white Polaroid smartphone next to a black smartphone. Both have cameras on the top of the phone.", - "id": 18419 - }, - { - "image_path": "/content/drive/MyDrive/combined/094522ebe91e6bfe.jpg", - "response": "A cell phone sitting on a desk in front of a computer.", - "id": 18420 - }, - { - "image_path": "/content/drive/MyDrive/combined/0878ad2f5ce3ece6.jpg", - "response": "A blackberry phone with a keyboard on the front.", - "id": 18421 - }, - { - "image_path": "/content/drive/MyDrive/combined/2459c39c2ddc65a1.jpg", - "response": "A case of pink wine with a pink leaf on the label.", - "id": 18422 - }, - { - "image_path": "/content/drive/MyDrive/combined/26655d1ea335ba73.jpg", - "response": "The image features a red mason jar sitting on a white surface. The jar is surrounded by various supplies, including a bottle of Mod Podge, a paintbrush, some spools of twine, and some jingle bells. There is also some masking tape laying on the table.", - "id": 18423 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d63b5a184be6b8a.jpg", - "response": "A bottle of green N\u00b010 ten gin, a metal shaker and a cocktail glass with a lemon peel garnish on a bar.", - "id": 18424 - }, - { - "image_path": "/content/drive/MyDrive/combined/23bfdbe38957354f.jpg", - "response": "A tall, thin bottle of Sero2 water with a light blue label featuring a white flower design.", - "id": 18425 - }, - { - "image_path": "/content/drive/MyDrive/combined/246ff47a30d47a39.jpg", - "response": "A bottle of Black Flag Imperial Stout next to a glass filled with the dark beer.", - "id": 18426 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bf3c8714eed0021.jpg", - "response": "A bottle of whiskey, a glass of whiskey, a piece of cheese, and a piece of chocolate are sitting on a cutting board.", - "id": 18427 - }, - { - "image_path": "/content/drive/MyDrive/combined/25e44b53e1ae242a.jpg", - "response": "A table with three bottles of beer on it.", - "id": 18428 - }, - { - "image_path": "/content/drive/MyDrive/combined/28965287b0087f08.jpg", - "response": "A row of 5 bottles of smart water on a shelf.", - "id": 18429 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a3f2ca1d0bef4ce.jpg", - "response": "A bottle of Suntory Whisky sits next to its yellow box. The bottle is yellow and has a yellow label with a gold emblem in the center. The emblem has a gold script that says \"Suntory Whisky\" in gold. The bottle has a gold cap that has a yellow band around it with black text on it. The box is also yellow and has a blue design on it. The design has a white border with a blue circle in the middle. The circle has a white design of a glass with a white arrow pointing to the right. The box is open and the yellow lid is resting on top of the bottle.", - "id": 18430 - }, - { - "image_path": "/content/drive/MyDrive/combined/23da9883d8305f12.jpg", - "response": "A bottle of Tiger lager beer sits next to a glass of beer on a table. The bottle is dark brown and has a blue label. The glass is half full and has a light brown liquid with a thin layer of foam on top. The foam is white and has some bubbles. The glass has the letters \"Jaz\" on it.", - "id": 18431 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d73a69fa8177dd6.jpg", - "response": "A bottle of Pepsi Twist sitting on a rock near the ocean.", - "id": 18432 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fccd172319fd360.jpg", - "response": "The image shows a store shelf with several bottles of Near your body Lovely Hug gel doccia. The bottles are white and green and have a floral design on the front. Some of the bottles are open and some are closed. The packaging around the bottles is white and green. The bottles are displayed in a row and are arranged in a way that the front of the bottles are facing the camera.", - "id": 18433 - }, - { - "image_path": "/content/drive/MyDrive/combined/31be88afe9504181.jpg", - "response": "A glass of beer on a table with a green and white tablecloth.", - "id": 18434 - }, - { - "image_path": "/content/drive/MyDrive/combined/3418f56e0d116a3b.jpg", - "response": "A bottle of Simon Binner Reserve Ales Steak Ale sitting on a rock.", - "id": 18435 - }, - { - "image_path": "/content/drive/MyDrive/combined/3093f796e103cd9c.jpg", - "response": "A blue bottle with a white label that says 500ml on it.", - "id": 18436 - }, - { - "image_path": "/content/drive/MyDrive/combined/30693f57825f914e.jpg", - "response": "In the image there is a group of empty water bottles laying on the ground. They are all clear and made of plastic. Some of the bottles have blue labels on them. The group of bottles is arranged in a circle.", - "id": 18437 - }, - { - "image_path": "/content/drive/MyDrive/combined/3113f422432d7fef.jpg", - "response": "A bottle of rennet 1% sits on a counter.", - "id": 18438 - }, - { - "image_path": "/content/drive/MyDrive/combined/328f0056d31a8a96.jpg", - "response": "A bottle of wine that is almost empty.", - "id": 18439 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e02f57f8fd72e53.jpg", - "response": "A bottle of Caribank beer sits on a wooden table.", - "id": 18440 - }, - { - "image_path": "/content/drive/MyDrive/combined/33855e2aee7587f6.jpg", - "response": "The image features a wooden shelf with several bottles of apple juice on it. The juice is in clear bottles and is labeled as Pink Lady Apple Juice. Some of the bottles are also labeled Summer Snow 100% Australian Fruit. The bottles are displayed in a row and are of different sizes.", - "id": 18441 - }, - { - "image_path": "/content/drive/MyDrive/combined/33ab3d476e20cc8b.jpg", - "response": "A bottle of French Connection Cuv\u00e9e Vin Rouge sits on a wooden table next to a wicker basket. The bottle is green and has a white label with gold writing. The label has a gold emblem that says \"Cuve\u00e9\" and a gold scroll design. The bottle has a cork in it and a twist-off cap.", - "id": 18442 - }, - { - "image_path": "/content/drive/MyDrive/combined/323b4165e8b6ceec.jpg", - "response": "A row of blue and clear glass bottles are displayed on a red shelf.", - "id": 18443 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e4547cf4bdbaae1.jpg", - "response": "A close up of a variety of liquor bottles on a shelf.", - "id": 18444 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ee12726605f5b7e.jpg", - "response": "A glass of Sodra Almighty next to a can of Sodra Almighty.", - "id": 18445 - }, - { - "image_path": "/content/drive/MyDrive/combined/3214875d1f7c57ca.jpg", - "response": "A glass of whiskey lemonade sits next to a bottle of Jim Beam bourbon and a bottle of lemonade.", - "id": 18446 - }, - { - "image_path": "/content/drive/MyDrive/combined/36785ab876b88e1b.jpg", - "response": "A bottle of 90 Shilling by Ommegang Brewing Company next to a filled glass of beer on a kitchen counter.", - "id": 18447 - }, - { - "image_path": "/content/drive/MyDrive/combined/3543d31786d59169.jpg", - "response": "The image shows a counter with a variety of bottles and a shot glass. There are several bottles with white caps, some of which contain liquids of different colors. One bottle is orange, another one is green, and there's also a clear bottle with a yellow liquid. A couple of the bottles are closed, while others have their lids open. A cup is placed next to the bottles, and a spoon can be seen in the cup.", - "id": 18448 - }, - { - "image_path": "/content/drive/MyDrive/combined/3198919171a55769.jpg", - "response": "The image shows three bottles of beer on a counter. The bottle on the left is labeled Heavy Seas Mutiny Fleet and has a skeleton wearing a hat and a green jacket holding a pirate flag. The bottle in the middle is labeled Davy Jones' Lace and has a skeleton wearing a white jacket and a black hat holding a scythe. The bottle on the right is labeledHammerhead and has a skeleton wearing a hat and a jacket holding a hammer.", - "id": 18449 - }, - { - "image_path": "/content/drive/MyDrive/combined/301ea0c8391e5bbe.jpg", - "response": "In the image, there is a refrigerator case filled with many different types of soda bottles. The bottles are of various shapes and sizes, and they are displayed behind a glass window. Some of the bottles are vintage, and they are arranged on a wire shelf.", - "id": 18450 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d95dfe5f715eaf6.jpg", - "response": "In the image, there is a refrigerator case filled with many different types of soda bottles. The bottles come in a variety of colors and flavors, including clear bottles and green bottles. Some of the bottles are filled with soda, while others are empty. The case is organized with the bottles in neat rows, making it easy for customers to see the different options available.", - "id": 18451 - }, - { - "image_path": "/content/drive/MyDrive/combined/3189b5671894b7f6.jpg", - "response": "A case of Coca Cola bottles on display in a store.", - "id": 18452 - }, - { - "image_path": "/content/drive/MyDrive/combined/32131e7f073db97d.jpg", - "response": "A bottle of Staropramen next to a glass filled with the beer.", - "id": 18453 - }, - { - "image_path": "/content/drive/MyDrive/combined/337e9a86e8028447.jpg", - "response": "A bottle and a glass filled with St Peter's golden ale.", - "id": 18454 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e0f367bd1094a8f.jpg", - "response": "A poster with the words Juice or Poison? on it. The poster also has a child climbing into a cabinet and various household products behind the yellow warning tape.", - "id": 18455 - }, - { - "image_path": "/content/drive/MyDrive/combined/3109e0ab52305483.jpg", - "response": "A bottle of cranberry juice sitting on a wooden table.", - "id": 18456 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e205d5d10cae76.jpg", - "response": "A bottle of Olde Trip Premium Ale next to a glass filled with the beer.", - "id": 18457 - }, - { - "image_path": "/content/drive/MyDrive/combined/31f39786288ae93b.jpg", - "response": "A bottle of Umbus Rye Double IPA from Riverwalk Brewing Co. sitting next to a filled glass on a table.", - "id": 18458 - }, - { - "image_path": "/content/drive/MyDrive/combined/3205c7af42ca8c96.jpg", - "response": "A six pack of Schlitz beer is sitting on a table next to a frosted glass mason jar.", - "id": 18459 - }, - { - "image_path": "/content/drive/MyDrive/combined/32010f6043c0a0e5.jpg", - "response": "A man wearing a red shirt is sitting at a table with a bottle of water, a can of soda, playing cards and chips.", - "id": 18460 - }, - { - "image_path": "/content/drive/MyDrive/combined/3435eccddc47e449.jpg", - "response": "A group of bottles of Cottrell Brewing Co. beer on a table.", - "id": 18461 - }, - { - "image_path": "/content/drive/MyDrive/combined/35bbe909046c67a7.jpg", - "response": "A bottle of Rhubarbe liqueur by Edmond Briottet sits on a wooden table.", - "id": 18462 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e33b160f0657c15.jpg", - "response": "A bottle of 1724 tonic water next to a tall glass filled with ice and a slice of lemon.", - "id": 18463 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb55bf7ac475a67.jpg", - "response": "A black and silver machine sitting on a concrete floor.", - "id": 18464 - }, - { - "image_path": "/content/drive/MyDrive/combined/364cc90a7efa161e.jpg", - "response": "A bottle of The Bruery's Freak Out! next to a glass filled with the beer.", - "id": 18465 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe7ea08d485dbf1.jpg", - "response": "A bottle of Monkey 47 Schwarzwald Dry Gin on a wooden shelf. The bottle is made of dark glass and has a cork stopper. The label is purple and white, with a drawing of a monkey in the center. The bottle is filled with gin.", - "id": 18466 - }, - { - "image_path": "/content/drive/MyDrive/combined/33d0c562e1dde567.jpg", - "response": "A bottle and a glass of Sunset Wheat beer from Leinenkugel's.", - "id": 18467 - }, - { - "image_path": "/content/drive/MyDrive/combined/312033d4fc4eda2a.jpg", - "response": "A close up of a table with a plastic cup filled with soda, a can of Bud Light next to it, and a blue and white cooler in the background.", - "id": 18468 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f9774f19a45f55.jpg", - "response": "A bottle of Muskol insect repellent on a black surface.", - "id": 18469 - }, - { - "image_path": "/content/drive/MyDrive/combined/3258d218e3647484.jpg", - "response": "A bottle of Peak Organic Amber Ale next to a glass filled with the amber beer.", - "id": 18470 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ff73abfc97e25df.jpg", - "response": "The image shows a table with four bottles of Epic Brewing Company beers and four filled glasses sitting in front of them. The table is made of wood and is located in front of a garage. The beers are labeled as follows: Epic lager, Epic pale ale, Epic imp and a fourth beer is not visible.", - "id": 18471 - }, - { - "image_path": "/content/drive/MyDrive/combined/302003d016584cde.jpg", - "response": "A bottle of Blueberry Ale from Blue Point Brewing Company sits next to a can of Coke on a wooden table. The bottle has a brown label with a blue circle and blue words. The Coke can has a red label with white letters and a white circle. There is a small amount of beer in a glass that is half full. It is sitting between the bottle and the can. There is a fence in the background.", - "id": 18472 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ef046c25b7621f9.jpg", - "response": "A bottle of a Japanese drink called Cider.", - "id": 18473 - }, - { - "image_path": "/content/drive/MyDrive/combined/348a16712cd2f283.jpg", - "response": "A bottle of Strong Pale Ale by Taylor's brewery is next to a glass filled with the beer. The bottle has a red and white label with a picture of a man in a red shirt and a hat. The glass is half full and has a light brown liquid inside. The beer has a small amount of foam on top.", - "id": 18474 - }, - { - "image_path": "/content/drive/MyDrive/combined/3224041bed1ff8ed.jpg", - "response": "A bottle of Turk's Head Island Draught and a bottle of Red Stripe Jamaican Lager sit next to each other on a wooden table.", - "id": 18475 - }, - { - "image_path": "/content/drive/MyDrive/combined/3169601cf3721f97.jpg", - "response": "a bottle of hot sauce on a table with a plate of food and a glass of milk", - "id": 18476 - }, - { - "image_path": "/content/drive/MyDrive/combined/3590750df5df1ef8.jpg", - "response": "A bowl of food with noodles and vegetables, a bottle of soda, a fork, and a book are all on a table.", - "id": 18477 - }, - { - "image_path": "/content/drive/MyDrive/combined/3256d9833056e859.jpg", - "response": "The image shows a collection of empty green and clear glass bottles with corks in them. They are arranged in a row on a white counter or shelf.", - "id": 18478 - }, - { - "image_path": "/content/drive/MyDrive/combined/30af54e2a26f7fd1.jpg", - "response": "A close up of a bottle cap with the letters WJ on it.", - "id": 18479 - }, - { - "image_path": "/content/drive/MyDrive/combined/3283c52932b16a89.jpg", - "response": "A bottle of white wine with a Corinthians soccer team logo on it.", - "id": 18480 - }, - { - "image_path": "/content/drive/MyDrive/combined/337b42ee8ab3cf28.jpg", - "response": "An empty glass milk bottle with a black and white label for Bolgos Farms in Ann Arbor, Michigan.", - "id": 18481 - }, - { - "image_path": "/content/drive/MyDrive/combined/331826fb344c6f17.jpg", - "response": "A black skillet filled with bugs on a table.", - "id": 18482 - }, - { - "image_path": "/content/drive/MyDrive/combined/32d75dba4f70e4c3.jpg", - "response": "A bottle of Tiger beer next to a glass filled with the beer.", - "id": 18483 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8f0a879d263b93.jpg", - "response": "A collection of wine bottles of various types and colors.", - "id": 18484 - }, - { - "image_path": "/content/drive/MyDrive/combined/32cbb2d9efa6d72e.jpg", - "response": "A bottle of hot sauce with a red label and a yellow box.", - "id": 18485 - }, - { - "image_path": "/content/drive/MyDrive/combined/34bc8b297ecdd2b7.jpg", - "response": "A white plate with slices of meat on it.", - "id": 18486 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e6f0700f391bb45.jpg", - "response": "A bottle of ABS sitting on a desk in front of a laptop.", - "id": 18487 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e743d3c40766acb.jpg", - "response": "The image shows a store shelf filled with bottles of Powerade sports drink. There are several bottles on the shelf, and they are arranged in a row. The bottles are of different sizes and have different flavors. The one in the front is fruit punch flavored. The bottles have black caps and are made of plastic.", - "id": 18488 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed5c7cf508e9ea7.jpg", - "response": "A collection of hot sauce bottles.", - "id": 18489 - }, - { - "image_path": "/content/drive/MyDrive/combined/34378b0f7d6ea5ca.jpg", - "response": "A group of four vintage soda bottles sitting next to each other on a wooden table.", - "id": 18490 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ea277a8c2304988.jpg", - "response": "A bottle of water with a black cup on top of it.", - "id": 18491 - }, - { - "image_path": "/content/drive/MyDrive/combined/33fcb46d3530245c.jpg", - "response": "In the image there is a bottle of Welch's Healthy Start sitting on a keyboard. The bottle is small and made of plastic. The label on the bottle is white with Welch's Healthy Start written in blue and purple. The bottle has a red cap. On the screen behind the keyboard, there is a picture of a woman and a computer logo.", - "id": 18492 - }, - { - "image_path": "/content/drive/MyDrive/combined/3479992c4af65055.jpg", - "response": "A bottle of Ruination IPA from Stone Brewing Co.", - "id": 18493 - }, - { - "image_path": "/content/drive/MyDrive/combined/300b2cbd67ccafc4.jpg", - "response": "A counter with a mug that says \"Bad Wolf\" on it, along with other items such as a bottle of medicine, a candy bar, and a cup of yellow liquid.", - "id": 18494 - }, - { - "image_path": "/content/drive/MyDrive/combined/345303c74bcf2e07.jpg", - "response": "In the image there is a red candle in a red holder on a white table. Next to the candle is a card with the letter JUSO on it. In the background there is a person using a laptop. On the table there are also two cups, one is clear and the other is gold. In the background there is a bottle of water and a cup.", - "id": 18495 - }, - { - "image_path": "/content/drive/MyDrive/combined/317f23ecfceabb61.jpg", - "response": "A bottle of wine with a dark label featuring an octopus and the words The Squid's Fist.", - "id": 18496 - }, - { - "image_path": "/content/drive/MyDrive/combined/31ae4cacbbd1621a.jpg", - "response": "A bottle of Flying Dog Gonzo Imperial Porter next to a filled glass of the dark beer.", - "id": 18497 - }, - { - "image_path": "/content/drive/MyDrive/combined/3acf1b744808c413.jpg", - "response": "A man in a suit is speaking on a stage in front of a screen. The screen has the word \"CinEMLORET\" on it. The man is sitting on a white letter \"E\". Next to him is a microphone. Behind the man is a second microphone. In front of the man is a podium. To the left of the stage is a podium with a microphone. To the left of the stage is a flag. To the right of the stage is a curtain.", - "id": 18498 - }, - { - "image_path": "/content/drive/MyDrive/combined/38ba21d321461594.jpg", - "response": "a banana that is in a plastic bag", - "id": 18499 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c1ae15923fcfdfb.jpg", - "response": "A refrigerator case full of bottles of Club-Mate Granat.", - "id": 18500 - }, - { - "image_path": "/content/drive/MyDrive/combined/395cd900710837d9.jpg", - "response": "A bottle of alcohol sitting on a windowsill.", - "id": 18501 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c96db0d9c0060e5.jpg", - "response": "A bottle of India Pale Ale next to a glass filled with the beer.", - "id": 18502 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e94b8d69a4f56c9.jpg", - "response": "A bottle of Evan Williams Bourbon sitting on a wooden shelf. The bottle is black and has a gold twist off cap. The label is black and has the name Evan Williams in white and yellow. The contents of the bottle are Kentucky Straight Bourbon Whiskey.", - "id": 18503 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed28d501c23df49.jpg", - "response": "A collection of three jars of Marmite.", - "id": 18504 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b09f63a9a04576f.jpg", - "response": "A wooden table with many different types of beer on it.", - "id": 18505 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f4f2a21c45717cd.jpg", - "response": "On a wooden table, there are multiple bottles of alcohol including gin and rum. There are also multiple glasses on the table.", - "id": 18506 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ea172570c130bd0.jpg", - "response": "A row of green glass bottles with a red, white and blue label that says S. Pellegrino on it and Ducati below it.", - "id": 18507 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fe1dbb97e5ec733.jpg", - "response": "A bottle of Erdinger wheat beer next to a glass filled with the beer.", - "id": 18508 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b804aadee1a9e11.jpg", - "response": "A crowd of people are gathered around a float in the street. The float is covered in graffiti and has a large inflatable wine bottle on it.", - "id": 18509 - }, - { - "image_path": "/content/drive/MyDrive/combined/36cf3cd4cc9def24.jpg", - "response": "The image shows a store shelf with several bottles of alcohol, including a bottle of sake. The bottles are displayed in a row and are of different sizes and shapes. Some of the bottles have black, white, and green labels with Asian writing on them. The writing is in an Asian language, but it can be translated to English as \"Daimonji\". The bottles are made of glass and have a distinctive shape.", - "id": 18510 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b6026faf6ea9d1.jpg", - "response": "A store shelf filled with bottles of Coca Cola.", - "id": 18511 - }, - { - "image_path": "/content/drive/MyDrive/combined/38451ec391f20ab5.jpg", - "response": "A bottle of India Pale Ale next to a glass filled with the beer.", - "id": 18512 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fcf9fa2680d7b08.jpg", - "response": "The image shows a collection of green glass bottles filled with a clear liquid. The bottles are all shaped similarly and feature a deer head logo on the label. The bottles are of varying sizes, ranging from small to large, and are displayed in a way that shows their progression in size from the smallest to largest. The bottles are arranged in a way that they form a triangle shape, with the largest bottle at the top and the smallest at the bottom. The bottles are placed on a black surface and are backlit, creating a dramatic effect.", - "id": 18513 - }, - { - "image_path": "/content/drive/MyDrive/combined/404b62d0d4705d25.jpg", - "response": "A bottle of beer next to a glass of beer on a table.", - "id": 18514 - }, - { - "image_path": "/content/drive/MyDrive/combined/368c7d8d7c3cc65c.jpg", - "response": "A collage of 12 different drinks in bottles and cans from Japan.", - "id": 18515 - }, - { - "image_path": "/content/drive/MyDrive/combined/378e3a29bfcd8795.jpg", - "response": "A book cover with a picture of a table full of food in front of a white wall.", - "id": 18516 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d94d91b1afea3b9.jpg", - "response": "A kitchen counter with a tray of glasses and two drink dispensers, one for sangria and one for water.", - "id": 18517 - }, - { - "image_path": "/content/drive/MyDrive/combined/398c9b168d50290f.jpg", - "response": "A wooden table with a glass of beer on it.", - "id": 18518 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c575313a05cede3.jpg", - "response": "A glass of dark ale sits next to a brown bottle of the same drink. The glass is half full and the bottle is half empty. The drink is dark and appears to be a scotch ale. The glass and bottle are sitting on a wooden bar.", - "id": 18519 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb8a9b6d73b077d.jpg", - "response": "A store shelf filled with bottles of Mountain Dew Dewshine.", - "id": 18520 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a7d196f293b0bf5.jpg", - "response": "A bottle and a glass of Hatlifter Stout on a table.", - "id": 18521 - }, - { - "image_path": "/content/drive/MyDrive/combined/3734d3d1a86cba38.jpg", - "response": "A plastic cup filled with ice and a beverage sits next to a plastic cup filled with ice and water. Two straws are in the cups. A bottle of Jack Daniels sits on a napkin next to the cups.", - "id": 18522 - }, - { - "image_path": "/content/drive/MyDrive/combined/376e3c65515a81d5.jpg", - "response": "A bottle of Corona beer with a slice of lemon in it.", - "id": 18523 - }, - { - "image_path": "/content/drive/MyDrive/combined/4037ed3eb8edb31a.jpg", - "response": "A bottle of Sake and a glass of water on a table.", - "id": 18524 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c73ee84e711ec67.jpg", - "response": "A bottle of Taff Man EX sits on a table next to a cup.", - "id": 18525 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f75d69c241df1f4.jpg", - "response": "On a table, there are two green glass beer bottles and two glasses filled with beer. One of the bottles is green and has a yellow label, the other is green and has a blue label. There is a yellow and green bottle of Luxor beer on the left and a green bottle of Sakara beer on the right. Both bottles have white caps. There is a white porcelain vase between the two bottles. In front of the vase, there are two small silver dishes with condiments on them. One of the dishes has a spoon in it. There is a backpack on the left side of the table.", - "id": 18526 - }, - { - "image_path": "/content/drive/MyDrive/combined/3adb3cfdfa713b04.jpg", - "response": "A bottle of Louis Jadot Beaune Bressandes 2010 sits on a wooden table. The label is white with a faint grey line around the edges. The label has a decorative border around the central text. The name of the winery is Louis Jadot. The name of the wine is Beaune Bressandes. The vintage is 2010. Below the text is a wine bottle image with a white top. The image is set inside a white rectangle. The text inside the rectangle is white. The year 2010 is printed in black inside a white oval. The bottle is closed.", - "id": 18527 - }, - { - "image_path": "/content/drive/MyDrive/combined/367b59faf23fa2cc.jpg", - "response": "A bottle of milk that is almost empty.", - "id": 18528 - }, - { - "image_path": "/content/drive/MyDrive/combined/3faf70f9e47e94a2.jpg", - "response": "A green bottle of Tsingtao beer sits on a table.", - "id": 18529 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cec802aead03404.jpg", - "response": "a window with signs on it", - "id": 18530 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cc5f213bfff8761.jpg", - "response": "A bottle of Chablis Premier Cru William Fevre 2010 sits on a reflective surface. The label is white with green text and a green wax seal. The bottle is green glass.", - "id": 18531 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c9b8f96d24dbdf5.jpg", - "response": "A person holding a bottle of Redhook ESB Original Ale.", - "id": 18532 - }, - { - "image_path": "/content/drive/MyDrive/combined/3733c584ce1f21c5.jpg", - "response": "A young boy sitting at a table with three glasses of beer in front of him.", - "id": 18533 - }, - { - "image_path": "/content/drive/MyDrive/combined/38c76fe0971b1047.jpg", - "response": "A close up of a box of food on a table. The food includes a variety of items such as a sandwich, french fries, and a bottle of water.", - "id": 18534 - }, - { - "image_path": "/content/drive/MyDrive/combined/3df26c0f2c4e40f8.jpg", - "response": "A table with a bowl of fried chicken, a package of light mayonnaise, a container of butter, a package of bread, a container of milk, and a package of crackers.", - "id": 18535 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b26fa0d5587b282.jpg", - "response": "A bottle of Katari 90 sits in a box on a grey background. The box is dark grey with a gold circle on the front with the letters J.C. inside it. The bottle is dark grey and has a gold label with Katari 90 written on it.", - "id": 18536 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fb02fd6de111cd3.jpg", - "response": "A close up of a refrigerator door with several items on it. There is a bag of jalapeno chips, a bottle of milk, and a bottle of pepto bismol.", - "id": 18537 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e085a9286fc58c3.jpg", - "response": "A bottle of white wine with a gold and black label that says Kracher on it.", - "id": 18538 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ac5cbbbeabc353.jpg", - "response": "A bin full of bottles of soda, mostly ice lemon tea.", - "id": 18539 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d647d914e314ba8.jpg", - "response": "A bottle of Riesling Trocken wine by Weingut Blaich.", - "id": 18540 - }, - { - "image_path": "/content/drive/MyDrive/combined/36806d2aaf2f89f1.jpg", - "response": "A three bottles of beer, two of them are brown and one is orange. The labels have polish writing. The background is a blue sky with white clouds.", - "id": 18541 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ec92f4a1cff2e66.jpg", - "response": "On a wooden shelf, two bottles of rum are displayed. One is a bottle of Pusser's 15 year aged rum, and the other is a bottle of Pusser's British Navy rum. Both bottles are closed and have red labels.", - "id": 18542 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dd7710f4c209942.jpg", - "response": "A tin foil tray filled with food sitting on top of hay.", - "id": 18543 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b2c66790d2429e8.jpg", - "response": "A bottle of Red Bull energy drink sitting on a concrete surface.", - "id": 18544 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cf49941dff4140c.jpg", - "response": "A table with a green place mat and a red place mat. On the red place mat is a bowl of oatmeal and a bowl of soup. There is a spoon on the red place mat. On the green place mat is a bottle of wine and a piece of bread.", - "id": 18545 - }, - { - "image_path": "/content/drive/MyDrive/combined/36c1f2f9d4546166.jpg", - "response": "A bottle of Jordan Winery Rhine Riesling from 2004. The label is white with a green top and features a drawing of a vineyard. The bottle is green and made of glass. It is sitting on a wooden table.", - "id": 18546 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b966fbc401e26b5.jpg", - "response": "A table with a book, a cup, and a bunch of random items on it.", - "id": 18547 - }, - { - "image_path": "/content/drive/MyDrive/combined/391a6d50a130f00b.jpg", - "response": "A table with a bottle of Corona on it and two glasses filled with drinks.", - "id": 18548 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d9fcfc5c871be7a.jpg", - "response": "A bottle of wine on a wooden table.", - "id": 18549 - }, - { - "image_path": "/content/drive/MyDrive/combined/3687b83fbd0e7cdf.jpg", - "response": "A glass of Dominion Oak Barrel Stout next to the bottle. The glass is filled with a dark beer with a thick head floating on top. The beer has a dark reddish-brown color. The bottle is dark brown with a golden label that reads \"DOMINION OAK BARREL STOUT\" in dark brown lettering. Below the name of the beer is a small logo of a gold beer mug with the word \"F\" in it.", - "id": 18550 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e434bb70d5eb4ed.jpg", - "response": "A bottle of hand sanitizer with a sticker on it that says \"Vermont MEGAMILLIONS Megaplier\"", - "id": 18551 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b1b46555a66ea0d.jpg", - "response": "In the image there are two clear jars with red and gold lids. The jar on the left has a red and gold label that says \"happiness in a bottle\" in cursive font. The jar on the right has a red and gold label that says \"happiness in a bottle\" in a different font. Both jars have a red and white pop up button in them.", - "id": 18552 - }, - { - "image_path": "/content/drive/MyDrive/combined/3798a8c008b55fa3.jpg", - "response": "A refrigerator is filled with four different types of beer.", - "id": 18553 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f80ac5426149b07.jpg", - "response": "a bottle of coke with the name simon on it", - "id": 18554 - }, - { - "image_path": "/content/drive/MyDrive/combined/39e50ec417577dab.jpg", - "response": "A fridge full of Skol beer bottles.", - "id": 18555 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f99ed4e4dd075d5.jpg", - "response": "A bottle of Pellegrino sits on a table next to a bell on a desk.", - "id": 18556 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d8d5d9dbaafbe21.jpg", - "response": "A discarded Pepsi bottle sitting in the dirt.", - "id": 18557 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a587b3622e242c3.jpg", - "response": "A product sheet for fruit liquor with whole fruit.", - "id": 18558 - }, - { - "image_path": "/content/drive/MyDrive/combined/368ce70fc7633666.jpg", - "response": "A bottle of beer is sitting on a table next to a glass filled with beer. The bottle is made by 3 Sheeps Brewing and is called Rebel Kent.", - "id": 18559 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c494f14945c2aa5.jpg", - "response": "The image shows a display case filled with different insects in various jars. There are at least 12 insects in the display case, some of which are in clear jars while others are in amber-colored jars. The insects are of different sizes and shapes, and some are visible even through the glass of the display case. The jars are placed on a white surface and some are sitting on a shelf behind the case.", - "id": 18560 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed555c1a7c18b41.jpg", - "response": "A bottle of Midnight Moon moonshine sits on a table.", - "id": 18561 - }, - { - "image_path": "/content/drive/MyDrive/combined/3df01c7acd35e3f7.jpg", - "response": "A bottle of Elysian Night Owl Pumpkin Ale held in a hand in front of a tree.", - "id": 18562 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c66f9ce3baccdbd.jpg", - "response": "A group of people standing behind a counter filled with various alcohol bottles, glasses, and cups.", - "id": 18563 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f15717cfaa941f5.jpg", - "response": "A row of beer bottles with the number 5 on them.", - "id": 18564 - }, - { - "image_path": "/content/drive/MyDrive/combined/373fd81734a2d5fd.jpg", - "response": "A page from a book with an illustration of a bottle of Mr. Boston Rocking Chair Blended Whiskey.", - "id": 18565 - }, - { - "image_path": "/content/drive/MyDrive/combined/405bf78877b4350a.jpg", - "response": "A bottle of Jack Daniels Gold Medal Old No. 7 on a shelf.", - "id": 18566 - }, - { - "image_path": "/content/drive/MyDrive/combined/40462add625450f7.jpg", - "response": "A bottle and a glass of beer on a counter.", - "id": 18567 - }, - { - "image_path": "/content/drive/MyDrive/combined/41454a9a715b1a3c.jpg", - "response": "A bottle of Englands Glory beer sitting on a counter.", - "id": 18568 - }, - { - "image_path": "/content/drive/MyDrive/combined/468ae5a01461d8a9.jpg", - "response": "A bottle of Rogue Dead Guy Ale next to a glass filled with the beer.", - "id": 18569 - }, - { - "image_path": "/content/drive/MyDrive/combined/40e8cc9ea46a7acd.jpg", - "response": "A row of six blue bottles of Bombay Sapphire gin, with one Schweppes tonic water bottle, all placed on a ledge.", - "id": 18570 - }, - { - "image_path": "/content/drive/MyDrive/combined/44985545a5116569.jpg", - "response": "A bottle of Black Isle Organic Goldeneye Pale Ale next to a glass filled with the beer.", - "id": 18571 - }, - { - "image_path": "/content/drive/MyDrive/combined/455e93f799044a86.jpg", - "response": "A wooden box full of various kinds of beer.", - "id": 18572 - }, - { - "image_path": "/content/drive/MyDrive/combined/48d26f8f6bd5dc07.jpg", - "response": "In the image there is a bottle of hand sanitizer with a purple liquid inside. The bottle is made of clear glass and has a pump mechanism. The label on the bottle is white and features a logo in the center which includes a six pointed star. The bottle is placed on a wooden table and is lit by a purple light. In the background, there is a wall with the word \"DELTA\" written on it.", - "id": 18573 - }, - { - "image_path": "/content/drive/MyDrive/combined/456a532df1fdc798.jpg", - "response": "A bottle and a glass of beer on a table.", - "id": 18574 - }, - { - "image_path": "/content/drive/MyDrive/combined/482352df0b02e980.jpg", - "response": "A hand holding a bottle of Mpari.", - "id": 18575 - }, - { - "image_path": "/content/drive/MyDrive/combined/44435bf08db4f4c9.jpg", - "response": "A table with many bottles on it.", - "id": 18576 - }, - { - "image_path": "/content/drive/MyDrive/combined/40fab2a371ffde4a.jpg", - "response": "A case full of bottles of Ruhlbauer Weisse beer.", - "id": 18577 - }, - { - "image_path": "/content/drive/MyDrive/combined/455a1a5d3b547e64.jpg", - "response": "The image shows a counter top with seven different bottles of beer lined up next to each other. The bottles come in various shapes and sizes, and are made by different breweries. Some of the labels are colorful, featuring artwork and information about the beer inside.", - "id": 18578 - }, - { - "image_path": "/content/drive/MyDrive/combined/45a3313e2083ada3.jpg", - "response": "A bottle of Victory Ten Year Rye next to a glass filled with the beer.", - "id": 18579 - }, - { - "image_path": "/content/drive/MyDrive/combined/492c8fe02656e7b3.jpg", - "response": "A bar with a lot of beer taps and a sign that says \"I love the good times at Saturn Bar\"", - "id": 18580 - }, - { - "image_path": "/content/drive/MyDrive/combined/43f54aa5df3f76ba.jpg", - "response": "A bottle of beer with a golden liquid inside.", - "id": 18581 - }, - { - "image_path": "/content/drive/MyDrive/combined/479fe8ae5cbe2fce.jpg", - "response": "a bowl of noodles with a blue box behind it and a pair of chopsticks on top of the bowl. next to the bowl is a bag of candy and a cup of water.", - "id": 18582 - }, - { - "image_path": "/content/drive/MyDrive/combined/40882a42d8d66b36.jpg", - "response": "A vintage Kay C root beer bottle sits on a concrete ledge.", - "id": 18583 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ab0ede684c15cc1.jpg", - "response": "In the image there is a collection of different bottles of alcohol, specifically a single malt scotch whisky. The bottles are of various sizes and are placed on a counter. Some of the bottles are almost empty, some are filled to the top, and others are filled somewhere in between. The labels on the bottles display information about the specific distillery and vintage of the whisky.", - "id": 18584 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a54998bd71d9bf8.jpg", - "response": "A red bull can is sitting on a desk next to a laptop.", - "id": 18585 - }, - { - "image_path": "/content/drive/MyDrive/combined/42c676fe9e3d3f67.jpg", - "response": "The image features a wall made of ice with five different types of alcohol on display. The wall has a blue hue and the alcohol bottles are arranged in a row. The bottles are of different sizes and shapes and are filled with different colored liquids. The wall also has a design of black spider webs.", - "id": 18586 - }, - { - "image_path": "/content/drive/MyDrive/combined/417c389ca9f31302.jpg", - "response": "A bottle of Wadworth 6X beer sitting on a counter.", - "id": 18587 - }, - { - "image_path": "/content/drive/MyDrive/combined/439ee06a28bb1aab.jpg", - "response": "A store display of cleaning products with a large Supra sign above them.", - "id": 18588 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c1dfbaf758b659.jpg", - "response": "A group of green Greatway Trail water bottles are lined up on a wooden table. The water bottles have a white logo on the front and the white top is turned to the side. The logo features a leaf and the words \"Greatway Trails\". The words \"clean trails\" are also visible.", - "id": 18589 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a5afd27badc51c8.jpg", - "response": "A person is holding a bottle of Brooklyn lager in their hand. The bottle is dark with a green label that says Brooklyn lager. The B on the label is white and has a brown outline. The lettering on the label is white. The background of the label is green. The bottle is sitting on a wooden table.", - "id": 18590 - }, - { - "image_path": "/content/drive/MyDrive/combined/43b1c61ec2be76b4.jpg", - "response": "A person is holding a package of Chic nail polish in their hand. The polish comes in a plastic package and is in a shade of silver. There is a sticker on the package that says \"Chic\" and has a picture of a woman's nails with the polish on it. The polish is being held over a table with a white tablecloth on it.", - "id": 18591 - }, - { - "image_path": "/content/drive/MyDrive/combined/494ab130f5d9e0f8.jpg", - "response": "A 6 pack of Monty Python's Holy Grail Ale sits on a table. The bottle in the foreground has a yellow label with a cartoon of a green man holding a golden hammer above a snail.", - "id": 18592 - }, - { - "image_path": "/content/drive/MyDrive/combined/4947fa3e74c855b7.jpg", - "response": "A case full of glass Coca-Cola bottles.", - "id": 18593 - }, - { - "image_path": "/content/drive/MyDrive/combined/424f69be196e37f5.jpg", - "response": "A glass of Innis & Gunn New Aged beer with a cigar balanced on top.", - "id": 18594 - }, - { - "image_path": "/content/drive/MyDrive/combined/475577a1ef0f8b16.jpg", - "response": "A bottle of beer next to a glass of beer.", - "id": 18595 - }, - { - "image_path": "/content/drive/MyDrive/combined/435886291669c5c9.jpg", - "response": "A can of Ringnes beer sits next to a glass filled with beer.", - "id": 18596 - }, - { - "image_path": "/content/drive/MyDrive/combined/468ecc4a02fab9d5.jpg", - "response": "A bottle of Shock Top Belgian White beer sitting on a counter.", - "id": 18597 - }, - { - "image_path": "/content/drive/MyDrive/combined/469d85f7b2c664d6.jpg", - "response": "A bottle of Newcastle Brown Ale with condensation on the outside.", - "id": 18598 - }, - { - "image_path": "/content/drive/MyDrive/combined/438617e13660aa6e.jpg", - "response": "A bottle of Elijah Craig 12 year old bourbon.", - "id": 18599 - }, - { - "image_path": "/content/drive/MyDrive/combined/41890552c0976e30.jpg", - "response": "A bottle of Blomberg beer with a red cap and a picture of a woman on the label.", - "id": 18600 - }, - { - "image_path": "/content/drive/MyDrive/combined/49f884c112c06500.jpg", - "response": "The image shows a large collection of liquor bottles displayed on a shelf. There are at least 15 bottles visible, including brands such as Smirnoff, Finlandia, Baileys, and Peppermint Schnapps. The bottles come in various shapes and sizes, and some are standing on their sides. The shelf is made of wood and has a brown color.", - "id": 18601 - }, - { - "image_path": "/content/drive/MyDrive/combined/4659ce705ae3ab15.jpg", - "response": "A bottle of white wine with a bear on the label.", - "id": 18602 - }, - { - "image_path": "/content/drive/MyDrive/combined/4067a102acf00436.jpg", - "response": "A bottle of ChocoVine sits on a wooden table. The label on the bottle says \"The taste of Dutch chocolate and fine red wine.\" The bottle is made of glass and has a brown liquid inside. The liquid is a dark red color. The bottle has a brown cap. The label on the bottle is white with brown and black writing. The writing is in English. The word \"choco\" is written in brown cursive. The word \"vine\" is written in black. The word \"fine\" is underlined. The word \"red\" is underlined and in bold. The word \"wine\" is written in black. The word \"taste\" is written in brown cursive. The word \"Dutch\" is written in brown cursive. The word \"chocolate\" is written in brown cursive. The word \"and\" is written in brown cursive. The word \"of\" is written in brown cursive. The word \"fine\" is written in brown cursive. The word \"red\" is written in brown cursive. The word \"wine\" is written in brown cursive. The word \"taste\" is written in brown cursive. The word \"Dutch\" is written in brown cursive. The word \"chocolate\" is written in brown cursive. The word \"and\" is written in brown cursive. The word \"of\" is written in brown cursive. The word \"fine\" is written in brown cursive. The word \"red\" is written in brown cursive. The word \"wine\" is written in brown cursive. The word \"taste\" is written in brown cursive. The word \"Dutch\" is written in brown cursive. The word \"chocolate\" is written in brown cursive.", - "id": 18603 - }, - { - "image_path": "/content/drive/MyDrive/combined/47a76649d5689022.jpg", - "response": "A bottle of Bitch beer sits on a counter in front of a pinball machine.", - "id": 18604 - }, - { - "image_path": "/content/drive/MyDrive/combined/44fa962a507cb31b.jpg", - "response": "In the image there are four different juices on display, all in bottles. The bottles are blue, white, and clear in color. The juices are labeled with their ingredients, such as lemon, apple, carrot, and ginger. The bottles are displayed on a shelf or a counter.", - "id": 18605 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aafb96c5b5718c0.jpg", - "response": "A bottle of Heineken lager beer sitting on a wooden table.", - "id": 18606 - }, - { - "image_path": "/content/drive/MyDrive/combined/469ea8a05feec692.jpg", - "response": "A four pack of Duvel beer in a red and white cardboard carrier.", - "id": 18607 - }, - { - "image_path": "/content/drive/MyDrive/combined/46be7e79c04ba1ab.jpg", - "response": "A bottle of Stephen's Cy Crimson Ting Ink sits on a counter. The bottle is made of glass and has a red and white label. The label has a white border with red writing. The writing is in English and includes the name of the company that produced the ink. The bottle is empty.", - "id": 18608 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a3c7bdc29de03cf.jpg", - "response": "A bottle of Club-Mate sits on a wooden table.", - "id": 18609 - }, - { - "image_path": "/content/drive/MyDrive/combined/40e92c0806656d51.jpg", - "response": "A bottle of dark beer next to a glass filled with the beer.", - "id": 18610 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e7609ce3ce3618.jpg", - "response": "A bottle of olive oil on a white surface.", - "id": 18611 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a011813fe7c82f4.jpg", - "response": "A white bottle with a cork stopper and a label around the neck.", - "id": 18612 - }, - { - "image_path": "/content/drive/MyDrive/combined/476c2a8bbeac696c.jpg", - "response": "A bottle of milk with a camel on the label.", - "id": 18613 - }, - { - "image_path": "/content/drive/MyDrive/combined/49dfca5eebf84f9d.jpg", - "response": "A bottle of Crown Royal Canadian Whisky sits next to a small plastic cup. The bottle is full and golden in color. The label on the bottle is yellow and red. The plastic cup is clear and contains a red liquid. The liquid has a red cube in it. The background of the image is white.", - "id": 18614 - }, - { - "image_path": "/content/drive/MyDrive/combined/428a5f59b5667722.jpg", - "response": "A bottle of Powell Street Brewing's Right Kind of Crazy Double IPA sitting next to a glass filled with the beer. The bottle has a gold label with the Powell Street logo in the top right corner and the name of the beer in the middle. The label also has a gold border.", - "id": 18615 - }, - { - "image_path": "/content/drive/MyDrive/combined/4879bd2d8c73ea46.jpg", - "response": "A table with a drink in a glass with a lime and a straw.", - "id": 18616 - }, - { - "image_path": "/content/drive/MyDrive/combined/4091e5a6cdacb729.jpg", - "response": "The image features a variety of items arranged on a white surface. There is a red wagon toy with a bottle of alcohol in it, along with a ruler and a box of colored pencils. The alcohol bottle is next to a can of soda, and a bottle of Fireball is visible in the background. There is also a bottle of Fireball in the foreground, a bottle of Baileys, and a can of Coca-Cola. The items are arranged in a way that creates a visually interesting composition.", - "id": 18617 - }, - { - "image_path": "/content/drive/MyDrive/combined/43e9fbaeb62055ee.jpg", - "response": "A bottle of Kopparberg pear cider next to a glass of the cider.", - "id": 18618 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a96075fc4d92d1b.jpg", - "response": "A hand holding a bottle of Imperial All Natural Salsas.", - "id": 18619 - }, - { - "image_path": "/content/drive/MyDrive/combined/4758c2f7b824af09.jpg", - "response": "A display of monkey water is for sale for $0.69. There are 24 bottles in the display.", - "id": 18620 - }, - { - "image_path": "/content/drive/MyDrive/combined/48898543284eadb6.jpg", - "response": "A collection of spirits on a kitchen counter.", - "id": 18621 - }, - { - "image_path": "/content/drive/MyDrive/combined/4448b3a8101a4d02.jpg", - "response": "A image of a table with a variety of painted and carved wooden items. On the table are three wooden painted bottles, one brown bottle with the word \"Honey\" on it, one red bottle with the word \"Sriracha\" on it, and one yellow bottle with a design on it.", - "id": 18622 - }, - { - "image_path": "/content/drive/MyDrive/combined/48cbce42ef421fb2.jpg", - "response": "A bottle of Monte Carlo beer next to a glass filled with the beer.", - "id": 18623 - }, - { - "image_path": "/content/drive/MyDrive/combined/49cd852bd348a0c6.jpg", - "response": "A bottle of orange cream soda sitting on a black metal table.", - "id": 18624 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b76259517065ed1.jpg", - "response": "A wooden table with a glass of beer and a bottle of beer next to it. A man is sitting at the table, he has a beard and is wearing a black shirt. There is a book on the table, it is open and has a pen on top of it.", - "id": 18625 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e25ff8fe930a75.jpg", - "response": "A bottle of Jinro Soju sits on a wooden table next to a small glass. The glass is half full. In the background, there are several plates of food. One plate is rectangular and has a large spoon resting on it. Another plate is rectangular and has a row of small bowls on it. The bowls are filled with sauce. There is also a small bowl on the table.", - "id": 18626 - }, - { - "image_path": "/content/drive/MyDrive/combined/405c4c02434cc7e5.jpg", - "response": "A basket of fried food with a wedge of lemon on top.", - "id": 18627 - }, - { - "image_path": "/content/drive/MyDrive/combined/496bd724ef80ec13.jpg", - "response": "A collection of test tubes with different colored liquids in them.", - "id": 18628 - }, - { - "image_path": "/content/drive/MyDrive/combined/40988b84376a18d6.jpg", - "response": "A bottle of Maker's Mark on a table next to a wooden box.", - "id": 18629 - }, - { - "image_path": "/content/drive/MyDrive/combined/49747a1807318c02.jpg", - "response": "A bottle of Copy Cat APA next to a glass filled with the beer.", - "id": 18630 - }, - { - "image_path": "/content/drive/MyDrive/combined/45732f666c267ea2.jpg", - "response": "A bottle of beer is sitting on a table next to a glass. The glass is half full and there is a bowl of red sauce next to the bottle. There are several other items on the table including a cup, a vase with a plant in it, and a book.", - "id": 18631 - }, - { - "image_path": "/content/drive/MyDrive/combined/498fcac77163786a.jpg", - "response": "A white bowl filled with packets of sweeteners.", - "id": 18632 - }, - { - "image_path": "/content/drive/MyDrive/combined/43b251d6b748d65e.jpg", - "response": "A group of wine bottles are stacked on top of each other. The wine bottles are all white and have silver tops. Some of the bottles are laying on their sides.", - "id": 18633 - }, - { - "image_path": "/content/drive/MyDrive/combined/468116e63bd87d34.jpg", - "response": "A bottle of Beringer Zinfandel Ros\u00e9 on a wooden shelf.", - "id": 18634 - }, - { - "image_path": "/content/drive/MyDrive/combined/4657c31bd7744cfc.jpg", - "response": "A bottle of The Lost Abbey 2009 Angel's Share Aged in Oak Barrels.", - "id": 18635 - }, - { - "image_path": "/content/drive/MyDrive/combined/486af1699b5f8eff.jpg", - "response": "The image shows a store shelf filled with a variety of bottles of soy sauce. There are at least 13 bottles of soy sauce on the shelf, arranged in two rows. Some of the soy sauce bottles are larger than others, and some are colored while others are clear. The bottles are filled with a dark liquid.", - "id": 18636 - }, - { - "image_path": "/content/drive/MyDrive/combined/421963012ccff0fb.jpg", - "response": "A bottle of Peches Mortel sits on a counter.", - "id": 18637 - }, - { - "image_path": "/content/drive/MyDrive/combined/43ba05fe0b18514b.jpg", - "response": "The image shows a close up of a shelf with several white medicine bottles on it. The bottles have a black label with the words \"how to feel oneself\" printed on them in black. The letters are designed to look like pills. The writing also includes the numbers \"200\" and the letter \"c\".", - "id": 18638 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b341cc067ef6805.jpg", - "response": "A steak on a green plate on a granite countertop.", - "id": 18639 - }, - { - "image_path": "/content/drive/MyDrive/combined/54695fcd81219b74.jpg", - "response": "A tray with a cup of iced tea and a bottle of Bacardi.", - "id": 18640 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f9bfb6cfd49d74d.jpg", - "response": "A glass of beer from Columbus Brewing Company sits on a red table.", - "id": 18641 - }, - { - "image_path": "/content/drive/MyDrive/combined/54e8b609f5b5096e.jpg", - "response": "A bottle of Bombay Sapphire Gin on a table with glasses.", - "id": 18642 - }, - { - "image_path": "/content/drive/MyDrive/combined/5056a8e94ef14729.jpg", - "response": "A collage of four pictures of a person holding a bottle of Shiner beer.", - "id": 18643 - }, - { - "image_path": "/content/drive/MyDrive/combined/503cccfb55326bf7.jpg", - "response": "The image shows two metal bins filled with ice and bottles of beer. The left bin contains bottles of beer from the brands Amstel, Heineken, and others, while the right bin has bottles of beer from the brand Amstel Light. The bottles are arranged in such a way that they are mostly submerged in the ice.", - "id": 18644 - }, - { - "image_path": "/content/drive/MyDrive/combined/4edfc7435347de50.jpg", - "response": "A bottle of Monini Bios olive oil on a shelf.", - "id": 18645 - }, - { - "image_path": "/content/drive/MyDrive/combined/556b389274e99354.jpg", - "response": "A person is holding a bottle of Napa Smith Lost Dog Red Ale.", - "id": 18646 - }, - { - "image_path": "/content/drive/MyDrive/combined/53c9d36a2a883936.jpg", - "response": "a hand holding a can of Arizona sweet tea", - "id": 18647 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d508d5cf603cab2.jpg", - "response": "A close up of two bottles of beer, one of which is Beck's Amber Lager and the other is Beck's Pale Ale.", - "id": 18648 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cc155c6a252efce.jpg", - "response": "A green bottle of Yanjing beer next to a glass filled with the beer.", - "id": 18649 - }, - { - "image_path": "/content/drive/MyDrive/combined/534f4ce2ac0805ae.jpg", - "response": "The image shows several bottles of Diesel HPR lined up on a table. The bottles are clear and filled with a clear liquid. The table is yellow and covered with a shadow. There are trees in the background.", - "id": 18650 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fd9119b9d257677.jpg", - "response": "A bottle of Abay Ethiopian beer sits on a table.", - "id": 18651 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dc52d8992764150.jpg", - "response": "A green bottle of beer sitting on a table.", - "id": 18652 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bf3b5a77c9a0d46.jpg", - "response": "A glass of water with ice sitting next to a blue bottle.", - "id": 18653 - }, - { - "image_path": "/content/drive/MyDrive/combined/5308067b512560b4.jpg", - "response": "A bottle of root beer sits in front of a cardboard sign advertising ice cold soda pop.", - "id": 18654 - }, - { - "image_path": "/content/drive/MyDrive/combined/5303d89838d1c835.jpg", - "response": "A bottle of Marsalkka Savu next to a glass filled with the beer.", - "id": 18655 - }, - { - "image_path": "/content/drive/MyDrive/combined/50784f7311e9055e.jpg", - "response": "A vintage illustration of a device to extract gases from water. The device consists of a beaker of water with a tube going into it and a flask with a tube going out of it. The flask is connected to a pestle and mortar.", - "id": 18656 - }, - { - "image_path": "/content/drive/MyDrive/combined/51ea5715453e14af.jpg", - "response": "A person is holding a bottle of Guinness beer. The beer is in a brown bottle and has a yellow and brown label. The label features a gold harp in the center and says \"Guinness\" in white lettering. It also says \"Foreign Extra\" and \"St. James's Gate Dublin\" in red lettering. There is a coaster on the table and a cup in the background.", - "id": 18657 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cd26272de63b143.jpg", - "response": "A table with a red place mat on it.", - "id": 18658 - }, - { - "image_path": "/content/drive/MyDrive/combined/50097e65657c7429.jpg", - "response": "A bottle of Dragon Stout is sitting on a wooden table. The bottle is brown and has a red dragon on the label. The dragon is breathing fire.", - "id": 18659 - }, - { - "image_path": "/content/drive/MyDrive/combined/53ad8f2ec2908017.jpg", - "response": "The image shows a table with two bottles of beer and five wine glasses on it. The table is set with various snacks and coffee cups. One of the bottles is labeled \"Spreewald,\" and there is a chair visible in the background.", - "id": 18660 - }, - { - "image_path": "/content/drive/MyDrive/combined/514ad23ade588d68.jpg", - "response": "A table with many empty bottles and cans on it.", - "id": 18661 - }, - { - "image_path": "/content/drive/MyDrive/combined/5448860ebad22135.jpg", - "response": "In the image there is a case of Gatorade that says \"The League of Captains\" on it. There is also a hand holding an orange bottle of Gatorade that has the name \"Sheriff\" on it and the number 18 on it. The hand is also holding a bottle of Gatorade that has the name \"Gravity\" on it and the number 99 on it.", - "id": 18662 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fd83d5f1ec14bf6.jpg", - "response": "A collection of beers in front of a present.", - "id": 18663 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fdda43c83aad57b.jpg", - "response": "A glass of beer and a bottle of Affligem Blond beer are sitting on a wooden table. The glass is half full and the bottle is half empty. There is a fork and a knife on the table next to the glass. In the background, there are people sitting at tables in a restaurant.", - "id": 18664 - }, - { - "image_path": "/content/drive/MyDrive/combined/545614b452cf1643.jpg", - "response": "A bottle of Lagunitas Undercover Investigation Shut Down Ale sitting on a counter.", - "id": 18665 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ffdf012642b5ee5.jpg", - "response": "A collection of beer bottles of various types are lined up on a wooden counter.", - "id": 18666 - }, - { - "image_path": "/content/drive/MyDrive/combined/51947c8df8ac59d9.jpg", - "response": "A meal consisting of fish and chips, a can of soda, and a bottle of ketchup, all sitting on a dining table.", - "id": 18667 - }, - { - "image_path": "/content/drive/MyDrive/combined/4df4f36e3992bb74.jpg", - "response": "On a wooden table, there is a bottle of Russian Standard Vodka and two shot glasses. The bottle is tall and made of silver. It has a label with the brand name and some other information. The label is white with red and black writing. The bottle is next to the two shot glasses, which are also empty. The glasses are clear and have a circular design on the bottom. They are placed in front of a green potted plant, which is also on the table. The table is made of wood and has a light brown color. The image is set in a room with a couch in the background.", - "id": 18668 - }, - { - "image_path": "/content/drive/MyDrive/combined/503fdc9c06bab699.jpg", - "response": "A bottle of Heineken beer is half full and has condensation on it. The bottle is lit from behind and the light is shining through the bottle creating a green and blue hue. The bottle is on a black background.", - "id": 18669 - }, - { - "image_path": "/content/drive/MyDrive/combined/530a52be1ee8f272.jpg", - "response": "A bottle of Few gin sits on a wooden bar.", - "id": 18670 - }, - { - "image_path": "/content/drive/MyDrive/combined/520b1ec59b5aebbe.jpg", - "response": "A bottle of Emilia raspberry balsamic vinegar is on a table next to a plate with a strawberry being dipped into the vinegar.", - "id": 18671 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c1f16129a3b2e7d.jpg", - "response": "A bottle of beer with a yellow and white label that says \"Brewdog This. Is. Lager\" on it.", - "id": 18672 - }, - { - "image_path": "/content/drive/MyDrive/combined/54402a6608b2171c.jpg", - "response": "A bottle of Blue Moon Belgian White next to a glass filled with the beer. The bottle has a blue label with a picture of the moon and the words \"Blue Moon Belgian White Ale\". The glass is filled about half way and has a light tan head floating on top. There is a fork and knife on the table to the right of the glass.", - "id": 18673 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7d81b7b629b0b5.jpg", - "response": "A bottle of Finian's Irish Stout sitting on a table.", - "id": 18674 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d73e276c5313207.jpg", - "response": "A counter with a box of Doppio Malto Birra Moretti and a box of Adel Scotty malt to a whisky.", - "id": 18675 - }, - { - "image_path": "/content/drive/MyDrive/combined/5553a98fefd3d31f.jpg", - "response": "A bottle of Julebryg next to a glass filled with the beer.", - "id": 18676 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f42ac9b35b884cf.jpg", - "response": "The image shows a close up of a table with a few different alcohol bottles and shot glasses. There are two bottles of alcohol, one large and one small, along with two shot glasses. The table is white and the scene appears to be set up for a party.", - "id": 18677 - }, - { - "image_path": "/content/drive/MyDrive/combined/54171626b381b2d6.jpg", - "response": "A newspaper display that says The Man of Steel is back.", - "id": 18678 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eb8430da76cd5ea.jpg", - "response": "A bottle of Guinness Foreign Extra Stout sitting on a counter.", - "id": 18679 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ee8b5b510144a85.jpg", - "response": "An open laptop computer sitting on a desk next to a water bottle.", - "id": 18680 - }, - { - "image_path": "/content/drive/MyDrive/combined/540dc44fffa3c95f.jpg", - "response": "A bottle of Thomas Bexquet Blonde de Lambourne next to a filled glass of beer.", - "id": 18681 - }, - { - "image_path": "/content/drive/MyDrive/combined/548c35dbf0940b38.jpg", - "response": "In the image there are multiple bottles of Listerine Ultraclean mouthwash on a white shelf. The mouthwash is blue and has a label that says \"Antiseptic\" and \"Cool Mint\" on it. The bottles are arranged in a row and some are closer to the front while others are further back.", - "id": 18682 - }, - { - "image_path": "/content/drive/MyDrive/combined/514dcc1cce5e5f93.jpg", - "response": "A table with multiple bottles of beer on it.", - "id": 18683 - }, - { - "image_path": "/content/drive/MyDrive/combined/52531fed7998bd58.jpg", - "response": "In the image there are three bottles of Club-Mate. One is a clear bottle with a blue cap, another is a brown bottle with a red cap, and the third is a clear bottle with a red cap. The bottles are arranged in a row on a red and white striped surface.", - "id": 18684 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c2fa9b9a46644f0.jpg", - "response": "A bottle of Red Racer IPA next to a glass filled with the beer.", - "id": 18685 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fadd00f6af5a260.jpg", - "response": "A person holding a bottle of Dad's root beer.", - "id": 18686 - }, - { - "image_path": "/content/drive/MyDrive/combined/51de450f7b8952ea.jpg", - "response": "The image shows a table topped with several bottles of Bionade, a non-alcoholic drink. The bottles are of different sizes and have a yellow, brown, and green label. There are also cups and a bowl on the table. In the background, there are people and a Christmas tree.", - "id": 18687 - }, - { - "image_path": "/content/drive/MyDrive/combined/515bd9fd12884775.jpg", - "response": "A bottle of hand sanitizer being filled with liquid from another bottle.", - "id": 18688 - }, - { - "image_path": "/content/drive/MyDrive/combined/501601f16b0aed2e.jpg", - "response": "The image shows a case of bottles of Sweet Leaf brand soda. There are bottles of Original Lemonade, Cherry Limeade, and Diet Peach Tea. The bottles are arranged in a case and are of various sizes.", - "id": 18689 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f030acdfabd8252.jpg", - "response": "A table with a bottle of Smirnoff vodka, a bottle of Canada Dry, a cup, and a candle.", - "id": 18690 - }, - { - "image_path": "/content/drive/MyDrive/combined/5505b16c4f2d58d7.jpg", - "response": "A row of different soda bottles are lined up on a counter.", - "id": 18691 - }, - { - "image_path": "/content/drive/MyDrive/combined/5111f961fd422eb8.jpg", - "response": "The image shows a bottle of tomato ketchup on a shelf. The bottle is red and has a label with an alligator on it. The label says \"The Original Australian Tomato Ketchup for Grownups\" and has a 355ml capacity. The bottle is almost full.", - "id": 18692 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eaa8d9b7e83664e.jpg", - "response": "An Optimus Prime toy in its packaging on a tan carpeted surface.", - "id": 18693 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2aeb63442d7880.jpg", - "response": "A fire hydrant with red, blue and yellow colors on it.", - "id": 18694 - }, - { - "image_path": "/content/drive/MyDrive/combined/5011298c4b97ca70.jpg", - "response": "A person is rolling a sausage on a counter.", - "id": 18695 - }, - { - "image_path": "/content/drive/MyDrive/combined/50894b2c0a58e2fe.jpg", - "response": "A bottle and a glass of beer are on a table. The bottle is tan with a yellow label that has the numbers 3, 1, 2 on it. The glass is full and has a yellowish liquid in it.", - "id": 18696 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f6419f6edd412e9.jpg", - "response": "A stuffed animal laying on a table next to a bottle of glue.", - "id": 18697 - }, - { - "image_path": "/content/drive/MyDrive/combined/53fcce9376217fc0.jpg", - "response": "A little girl sitting in front of a table full of food and cleaning supplies.", - "id": 18698 - }, - { - "image_path": "/content/drive/MyDrive/combined/511c2a32d2d40fed.jpg", - "response": "A table with a book, cell phone, water bottle, and other items on it.", - "id": 18699 - }, - { - "image_path": "/content/drive/MyDrive/combined/54213d7d0a24ad59.jpg", - "response": "In the image there is a table with a brown table cloth on it. On the table there are multiple water bottles with blue caps. One of the bottles has a handwritten label that says Koala Brand.", - "id": 18700 - }, - { - "image_path": "/content/drive/MyDrive/combined/542c5e985225a2be.jpg", - "response": "A bottle of Bonded Old Grand-Dad Bonded Kentucky Straight Bourbon Whiskey sits on a white background. The bottle is orange and has a man's picture on it.", - "id": 18701 - }, - { - "image_path": "/content/drive/MyDrive/combined/75cd66309f4183ae.jpg", - "response": "A woman with white hair and a black jacket sitting at a table.", - "id": 18702 - }, - { - "image_path": "/content/drive/MyDrive/combined/884887d6a88435e1.jpg", - "response": "A Singha beer bottle with a sticker next to it.", - "id": 18703 - }, - { - "image_path": "/content/drive/MyDrive/combined/8dc72a91b7468faf.jpg", - "response": "A black and white photo of a bottle of Phillips Magnesia Carbonated Tablets.", - "id": 18704 - }, - { - "image_path": "/content/drive/MyDrive/combined/f30e3c6ebf69bab3.jpg", - "response": "The image features a cold case filled with ice, showcasing several green glass bottles of beer. The bottles are filled with beer and have yellow labels with red writing. The largest bottle in the center of the case has the label \"Savushki\" on it. The ice in the case is of varying sizes, with some large chunks and some smaller pieces. The bottles are arranged in a way that suggests they are ready to be served and enjoyed.", - "id": 18705 - }, - { - "image_path": "/content/drive/MyDrive/combined/149c87cd06609770.jpg", - "response": "The image features a white box with the word Artigo on it in blue. The box is next to a white box with the word A1100 on it in blue. There is a rectangular device in front of the boxes, it is white and has a blue logo on the top. The device has a USB port on the side.", - "id": 18706 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c1f18b2fd737a9c.jpg", - "response": "A person holding a large box of Brita Maxtra water filters.", - "id": 18707 - }, - { - "image_path": "/content/drive/MyDrive/combined/13d294b93d12e9ff.jpg", - "response": "A blue and white box of cold medicine sits on top of a white box.", - "id": 18708 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a24b1a750d8d8e.jpg", - "response": "A black container with orange writing sits in front of a white box. The container has a red and white label on the front. The box behind the container is white with red and orange writing.", - "id": 18709 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ef7a9a7caef862.jpg", - "response": "A cardboard box with a cardboard cut out of a face and arms sticking out of it. The box is open and the cardboard cut out is sitting inside the box. There is a book inside the box and the cardboard cut out is looking at it. There is a red box in the top right corner with white text that says \"hi, can I come out?\".", - "id": 18710 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a011acfe30b66c0.jpg", - "response": "A camera lens in a box on a table.", - "id": 18711 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c5dce2cd3b6680a.jpg", - "response": "A box of Flagship Premium Bright Copy Paper sits on a red table. The box is white and features a picture of a man holding two American flags. The man's face is depicted in a cartoonish style. The box also features the words \"Flagship\" and \"Who but WB Mason\" in bold print.", - "id": 18712 - }, - { - "image_path": "/content/drive/MyDrive/combined/136e10aaaa4f8abd.jpg", - "response": "A open cardboard box with a instruction manual for a laptop battery sitting on top of it.", - "id": 18713 - }, - { - "image_path": "/content/drive/MyDrive/combined/12564a8c44409688.jpg", - "response": "The image shows the box for a Mac mini on a wooden table. The box is open and sitting next to the closed box. The two boxes are white and have black text.", - "id": 18714 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c93de3c999abe0.jpg", - "response": "A black and white cat sitting on a pile of cardboard boxes.", - "id": 18715 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b9199c77ca174b.jpg", - "response": "A large cardboard box on a wooden floor.", - "id": 18716 - }, - { - "image_path": "/content/drive/MyDrive/combined/11e23a7c3b23e7fd.jpg", - "response": "A black Gucci box with the logo on it.", - "id": 18717 - }, - { - "image_path": "/content/drive/MyDrive/combined/14da85c973d2dc4a.jpg", - "response": "A couple of fed ex boxes are stacked on top of each other.", - "id": 18718 - }, - { - "image_path": "/content/drive/MyDrive/combined/12027a6429ca5de0.jpg", - "response": "An iPhone 5S box is shown on a red background.", - "id": 18719 - }, - { - "image_path": "/content/drive/MyDrive/combined/18d8899d0b1f37a3.jpg", - "response": "A cardboard box with the word barbri on it is on a counter.", - "id": 18720 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a5a4daa75a8747c.jpg", - "response": "A large number of books and papers are piled on the floor in a storage room. There are several boxes and a bin, some of which are open, and some are closed. The papers are in various sizes and colors, and some are taped to the boxes. There are also some books with different colors and designs.", - "id": 18721 - }, - { - "image_path": "/content/drive/MyDrive/combined/12ca20f49ad64890.jpg", - "response": "A black box is on a desk next to a keyboard.", - "id": 18722 - }, - { - "image_path": "/content/drive/MyDrive/combined/090fec3522d60bad.jpg", - "response": "An orange and white kitten standing on its hind legs in a brown cardboard box.", - "id": 18723 - }, - { - "image_path": "/content/drive/MyDrive/combined/1529d4778b1b26f5.jpg", - "response": "A box that says \"Drop in used batteries\" on the front of it.", - "id": 18724 - }, - { - "image_path": "/content/drive/MyDrive/combined/10c5e614bca28604.jpg", - "response": "A black Tudor box on a white background.", - "id": 18725 - }, - { - "image_path": "/content/drive/MyDrive/combined/09ef8a26e42f5089.jpg", - "response": "A room with a lot of IBM boxes stacked on a table and the floor. There is a cabinet in the background and a chair sitting in the corner.", - "id": 18726 - }, - { - "image_path": "/content/drive/MyDrive/combined/167f14982f246c7c.jpg", - "response": "A desk with a cardboard cutout of a person and a cat on it.", - "id": 18727 - }, - { - "image_path": "/content/drive/MyDrive/combined/1046d88e09ab13e3.jpg", - "response": "A set of three cardboard boxes sitting on a wooden floor. The boxes are brown and have black markings on them. The markings show that the boxes are 7 AC and 9 x 8 12 4.", - "id": 18728 - }, - { - "image_path": "/content/drive/MyDrive/combined/1988b5e47736b31e.jpg", - "response": "An open box of tissues is sitting on a desk in front of a computer keyboard. The box is made of cardboard and is open to reveal the tissues inside. The tissues themselves are not visible, but the box is filled with the cardboard fluff.", - "id": 18729 - }, - { - "image_path": "/content/drive/MyDrive/combined/08abdea64391e559.jpg", - "response": "An orange box for a phone case is sitting on a wooden table. The box is open and shows the phone case inside.", - "id": 18730 - }, - { - "image_path": "/content/drive/MyDrive/combined/168238f2d8fba43d.jpg", - "response": "A set of three different colored boxes of Katari soap.", - "id": 18731 - }, - { - "image_path": "/content/drive/MyDrive/combined/085074f0857e6409.jpg", - "response": "A cardboard box with the word \"threadless\" on it. The box is taped up and sitting on a wooden floor.", - "id": 18732 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3b652597905356.jpg", - "response": "a brown box with a black design of bamboo leaves and stems", - "id": 18733 - }, - { - "image_path": "/content/drive/MyDrive/combined/15028997a80e03d3.jpg", - "response": "A box for a little printer is sitting on a table. The box is white and has a blue top. The front of the box has an illustration of a little printer with a face on it. The top of the box has the words \"LITTLE PRINTER\" written on it. The bottom of the box has a bar code and some writing. The writing is in black and white and includes the words \"Matter and Little Printer\".", - "id": 18734 - }, - { - "image_path": "/content/drive/MyDrive/combined/1664c33c13360dfa.jpg", - "response": "A pink cardboard box is on a white surface. The box has a pink sticker on it with black writing. The writing is in English. The box is taped shut. There is a pen on the white surface next to the box.", - "id": 18735 - }, - { - "image_path": "/content/drive/MyDrive/combined/1390461c91a7b45a.jpg", - "response": "an old rusty tin can with some writing on it", - "id": 18736 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e088e305f53117.jpg", - "response": "\u900f\u8fc7\u6805\u680f\u770b\u5230\u7684\u7eb8\u7bb1", - "id": 18737 - }, - { - "image_path": "/content/drive/MyDrive/combined/14bd361f7e2d09e1.jpg", - "response": "A table with a sign that says \"another ceramic\" on it.", - "id": 18738 - }, - { - "image_path": "/content/drive/MyDrive/combined/11187a50e7a54ce2.jpg", - "response": "A cardboard box with the word Connector on it.", - "id": 18739 - }, - { - "image_path": "/content/drive/MyDrive/combined/1012ea36093b3d84.jpg", - "response": "A black box with a gold label on it that says \" Hybrid Slings \"", - "id": 18740 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a07dd733daaca6.jpg", - "response": "An item with a face on it and the words cheero Power Plus DANBOARD version on it.", - "id": 18741 - }, - { - "image_path": "/content/drive/MyDrive/combined/0af0a1a8c8be3f1a.jpg", - "response": "An unopened box of an Apple TV sits on a carpeted floor. The box is open and shows the white Apple TV device inside. The box is also labeled as being for a Mac or PC.", - "id": 18742 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cfafc989f7b2f2e.jpg", - "response": "An iPad mini box is open on a black leather surface.", - "id": 18743 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ecb3363703fe67b.jpg", - "response": "An open box with a lego set inside.", - "id": 18744 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bd60dc408159a20.jpg", - "response": "A black cat laying in a brown box on the floor.", - "id": 18745 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fa12478d177caf5.jpg", - "response": "A cardboard box for a Firefox OS developer phone sits on a white desk.", - "id": 18746 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e45acd379e82164.jpg", - "response": "A bicycle is parked next to a brick wall. There are two boxes on the sidewalk, one on the left and one on the right. A person is standing on the right side of the image, and a handbag is on the ground in front of them.", - "id": 18747 - }, - { - "image_path": "/content/drive/MyDrive/combined/504ee48d16b666ce.jpg", - "response": "A large cardboard box is sitting on a tile floor. The box is closed and has a red stripe on the bottom. The top of the box has black and red writing. There is a green and white label on the top of the box with a arrow pointing to the middle of the box. The box is on a tile floor and there is a table behind it. There are also white blinds in the background.", - "id": 18748 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c3340c31a9c802b.jpg", - "response": "A cardboard box with a pile of items inside. The items include a small card, a bag of wires, a instruction manual, and a box with a circuit board in it.", - "id": 18749 - }, - { - "image_path": "/content/drive/MyDrive/combined/36bb54a5565e1176.jpg", - "response": "A cardboard box with the words \"Thanks for coming!\" written on it in black.", - "id": 18750 - }, - { - "image_path": "/content/drive/MyDrive/combined/4aa4e04d5a59ca99.jpg", - "response": "On a wooden table, there are two boxes of sticky notes. One box is rectangular and white with a red, yellow, green, and orange design on it, and the other box is also white but rectangular with a design of a block with arrows on it.", - "id": 18751 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d72a51f73e55b7b.jpg", - "response": "A wooden box of Cuban cigars next to a single white cigar.", - "id": 18752 - }, - { - "image_path": "/content/drive/MyDrive/combined/4637d9565b2d77ee.jpg", - "response": "A white cardboard box with the word BrickBox printed on it.", - "id": 18753 - }, - { - "image_path": "/content/drive/MyDrive/combined/47fee3be6558fc6a.jpg", - "response": "A white box for a Samsung Galaxy Note 4 phone sitting on a blue surface.", - "id": 18754 - }, - { - "image_path": "/content/drive/MyDrive/combined/32f4e922747e69fa.jpg", - "response": "A blue Intel Pentium processor box sitting on a white surface.", - "id": 18755 - }, - { - "image_path": "/content/drive/MyDrive/combined/54be6bbd37c45d3c.jpg", - "response": "A box of potassium iodide tablets sits on a dark wooden table. The box is white with a red stripe down the middle. The word \"potassium iodide\" is printed in white on the red stripe. The dosage is 65mg and the box is from Armed Forces Pharmacy.", - "id": 18756 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c2ef54c7711dc7b.jpg", - "response": "A table with a box on it and several items laid out in front of the box.", - "id": 18757 - }, - { - "image_path": "/content/drive/MyDrive/combined/19bbd033b03683be.jpg", - "response": "An open tin of watercolours in a metal box with the word 'mone' on it.", - "id": 18758 - }, - { - "image_path": "/content/drive/MyDrive/combined/49e456642f48fe0d.jpg", - "response": "a hand holding a match box with a rabbit on it", - "id": 18759 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a1e854e3b8010b5.jpg", - "response": "A black box for the Fujifilm X-T1 camera.", - "id": 18760 - }, - { - "image_path": "/content/drive/MyDrive/combined/4520fad443e30261.jpg", - "response": "A room with a ceiling and a floor.", - "id": 18761 - }, - { - "image_path": "/content/drive/MyDrive/combined/3183a344c115bdef.jpg", - "response": "A cardboard box from Amazon.com is sitting on a couch.", - "id": 18762 - }, - { - "image_path": "/content/drive/MyDrive/combined/312b861a10fb3fa3.jpg", - "response": "A white box filled with assorted papers and other items.", - "id": 18763 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a5645fbdf764cfd.jpg", - "response": "A stack of cardboard boxes sitting on top of each other.", - "id": 18764 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ad060d16d38cf87.jpg", - "response": "A box of lucky strike cigarettes sits on a wooden table.", - "id": 18765 - }, - { - "image_path": "/content/drive/MyDrive/combined/311dd681dd081378.jpg", - "response": "A box with a manual sitting on top of it.", - "id": 18766 - }, - { - "image_path": "/content/drive/MyDrive/combined/3800609d7d58b5ac.jpg", - "response": "A vintage Mullard electronic valve in its original box.", - "id": 18767 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f53dd20e8666024.jpg", - "response": "A product box for a rubber band gun.", - "id": 18768 - }, - { - "image_path": "/content/drive/MyDrive/combined/407429f1e4aa4537.jpg", - "response": "A red Nokia phone box sitting on a white surface.", - "id": 18769 - }, - { - "image_path": "/content/drive/MyDrive/combined/2811d1f0c45fe7c5.jpg", - "response": "A man in a suit and tie standing at a podium.", - "id": 18770 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ecba89c7c8e7b4.jpg", - "response": "A decorated box that says \"It's on Us\" and \"To keep campus clean\" on the side.", - "id": 18771 - }, - { - "image_path": "/content/drive/MyDrive/combined/3dfec33af4c9f242.jpg", - "response": "An unopened MacBook Pro box is on a wooden table.", - "id": 18772 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e26c671a373fa02.jpg", - "response": "An open cardboard box with a white label on it that says \"Hello\". Inside the box is a small plastic figure of a boy with a smiling face.", - "id": 18773 - }, - { - "image_path": "/content/drive/MyDrive/combined/419496df07aa4854.jpg", - "response": "A group of five small origami boxes.", - "id": 18774 - }, - { - "image_path": "/content/drive/MyDrive/combined/22b12179121271dd.jpg", - "response": "A wooden table with three presents wrapped in red paper.", - "id": 18775 - }, - { - "image_path": "/content/drive/MyDrive/combined/342c915c939b3255.jpg", - "response": "A map of Wellington's War is laid out on a table. The map is a hexagonal grid and shows a large portion of Spain. There are also some cards and a box on the table.", - "id": 18776 - }, - { - "image_path": "/content/drive/MyDrive/combined/376ad1bad98c7e80.jpg", - "response": "A store display of Sine Off Maximum Strength.", - "id": 18777 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cb540eb21d1389e.jpg", - "response": "A stack of wooden wine crates.", - "id": 18778 - }, - { - "image_path": "/content/drive/MyDrive/combined/555fb3082b8c4502.jpg", - "response": "A cardboard box on a table.", - "id": 18779 - }, - { - "image_path": "/content/drive/MyDrive/combined/37cacdc4fcb3dc65.jpg", - "response": "a purple and green box on a black background", - "id": 18780 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ce2d1d7d0692e45.jpg", - "response": "A cardboard box with the words \"Flashlight Action Cubelet\" written on it.", - "id": 18781 - }, - { - "image_path": "/content/drive/MyDrive/combined/300e5a3ceb12f73c.jpg", - "response": "A stack of books with the top one being \"SEO\" by \"Creative Bloq\" are on a wooden table. The table is brown and the books are on top of a white box. The box is also on a wooden table.", - "id": 18782 - }, - { - "image_path": "/content/drive/MyDrive/combined/336d804004cd19c9.jpg", - "response": "A box of Pecos brand cigarettes on a wooden table.", - "id": 18783 - }, - { - "image_path": "/content/drive/MyDrive/combined/49049959b66793e5.jpg", - "response": "A blue box with the word Pixco on it.", - "id": 18784 - }, - { - "image_path": "/content/drive/MyDrive/combined/34521ae35bdf8e64.jpg", - "response": "A white counter with four boxes of medication on it.", - "id": 18785 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f627247c3b8b068.jpg", - "response": "A pallet of books in boxes.", - "id": 18786 - }, - { - "image_path": "/content/drive/MyDrive/combined/441bd0e46df8eba7.jpg", - "response": "A stack of boxes sitting on a floor next to a wall.", - "id": 18787 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c64cb9a49c09a9.jpg", - "response": "A pink sign that says \"Coffin Full of Doughnuts\" is on a wooden box.", - "id": 18788 - }, - { - "image_path": "/content/drive/MyDrive/combined/2806ad86b76f2e14.jpg", - "response": "A book called \"Everything is Miscellaneous\" by David Weinberger is propped up on a stack of boxes. The boxes are labeled \"Harry Potter\" and are stacked on top of each other. There is a table lamp on the right side of the image and a window in the background.", - "id": 18789 - }, - { - "image_path": "/content/drive/MyDrive/combined/2996379570998c43.jpg", - "response": "A red Atlas lunchbox sitting on a wooden table.", - "id": 18790 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c3b2d462155c5c.jpg", - "response": "an open box(1,133),(903,995)", - "id": 18791 - }, - { - "image_path": "/content/drive/MyDrive/combined/22957f4d898674d5.jpg", - "response": "A black box with the word MINI X on the top of it.", - "id": 18792 - }, - { - "image_path": "/content/drive/MyDrive/combined/43eaea9770caa521.jpg", - "response": "A box for the game Spore Galactic Edition. The box is white with a large Spore logo on the top. The box is open to reveal the contents. On the left is a game disc, in the middle is a manual, and on the right is a book. The book is open to a page with a picture of a creature.", - "id": 18793 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c989ffc0a53fb47.jpg", - "response": "The image shows a white box for a Sigma 24mm camera lens. The box is open and sitting on a brown shaggy rug. The lens is described as a wide angle and has a filter size of 77mm. The box is labeled with the word \"SIGMA\" in black.", - "id": 18794 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d5b664bf70f76f7.jpg", - "response": "A cardboard box with the word fragile written on it in black ink.", - "id": 18795 - }, - { - "image_path": "/content/drive/MyDrive/combined/29c9e99abd2bd117.jpg", - "response": "A box of Nembutal is sitting on a desk in front of a laptop. The box is yellow and white.", - "id": 18796 - }, - { - "image_path": "/content/drive/MyDrive/combined/1baf4d8b3db02aec.jpg", - "response": "A white box with pink writing on it.", - "id": 18797 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea272e7c7a9bc96.jpg", - "response": "An open black box with the Google Nexus logo on the top sitting on a table.", - "id": 18798 - }, - { - "image_path": "/content/drive/MyDrive/combined/204549020376d509.jpg", - "response": "An image of a table with four boxes on it. The boxes are for Apple products and include an iPad, a Digital AV Adapter, a 10W USB Power Adapter, and a Lightning to USB Cable.", - "id": 18799 - }, - { - "image_path": "/content/drive/MyDrive/combined/281b70b8848a2661.jpg", - "response": "A box that says monster rockers on it.", - "id": 18800 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f34d7254db2fb38.jpg", - "response": "A wooden box with a sign that says Atlantic crossing.", - "id": 18801 - }, - { - "image_path": "/content/drive/MyDrive/combined/5187f1d8f671ef06.jpg", - "response": "The image features a box of Veranil cream on a white reflective surface. The box is white with purple and blue details. The word \"crema\" is written on the box in purple. The word \"PARA\" is written in purple on the box. The word \"EL\" is written in purple on the box. The word \"TRATAMIENTO\" is written in purple on the box. The word \"DE\" is written in purple on the box. The word \"LA\" is written in purple on the box. The word \"PSORIASIS\" is written in purple on the box. The word \"VERANIL\" is written in purple on the box. The word \"CREMA\" is written in purple on the box. The word \"PARA\" is written in purple on the box. The word \"EL\" is written in purple on the box. The word \"TRATAMIENTO\" is written in purple on the box. The word \"DE\" is written in purple on the box. The word \"LA\" is written in purple on the box. The word \"PSORIASIS\" is written in purple on the box.", - "id": 18802 - }, - { - "image_path": "/content/drive/MyDrive/combined/53135d87a1768a41.jpg", - "response": "A white Mr Porter shoe box is placed on a wooden floor.", - "id": 18803 - }, - { - "image_path": "/content/drive/MyDrive/combined/5354de91c9ebb66e.jpg", - "response": "an orange box (87,13),(813,783)", - "id": 18804 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ec31fcc5ea9a015.jpg", - "response": "A red matchbox with a red heart on it. The heart has white embroidery on it. The matchbox is on a white sheet.", - "id": 18805 - }, - { - "image_path": "/content/drive/MyDrive/combined/21d8e18e1fbb06cd.jpg", - "response": "A cardboard box with the word Nikon on it.", - "id": 18806 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b72c9704d7095ee.jpg", - "response": "A lenovo vibe x2 phone in a box on a white sheet.", - "id": 18807 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c06e118622e3222.jpg", - "response": "A cardboard box is on the floor with a shipping label on the top. The box is brown and has some creases. The label has the words \"Priority Mail\" and \"USPS\" on it. There is also a barcode on the label. The box is sitting on a carpeted floor.", - "id": 18808 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e43c217a0322ae4.jpg", - "response": "The image displays two cardboard boxes, one slightly larger than the other, both made of brown cardboard. The box on the left is slightly taller and has a black logo that says \"MUSIC\" with a musical note symbol to the left and \"LIGHT\" to the right, all in yellow font. The box on the right is slightly smaller and has a similar logo, but the \"MUSIC\" text is in white font with a black background and the \"LIGHT\" text is also in white font with a black background. Both boxes have a company name \"BLUEBERRY\" and a logo of a blueberry.", - "id": 18809 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a4cf474c5431e86.jpg", - "response": "A box of Fragmin next to a vial of the clear liquid.", - "id": 18810 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e0cbadfc65cfe69.jpg", - "response": "A white box with purple writing on it.", - "id": 18811 - }, - { - "image_path": "/content/drive/MyDrive/combined/47857e3346b56b62.jpg", - "response": "Four books on a white shelf under a white wall.", - "id": 18812 - }, - { - "image_path": "/content/drive/MyDrive/combined/3118e0abc6886bb7.jpg", - "response": "The image shows an open box with an electronic device inside. The device is a white Amazon Kindle, a popular e-reader device. The box is open and the device is sitting on top of the instruction manual. The device has a keyboard and a screen. There is also a USB cable included with the device. The box is made of cardboard and the device is powered by batteries.", - "id": 18813 - }, - { - "image_path": "/content/drive/MyDrive/combined/433b838302ab0fe4.jpg", - "response": "A large dumpster filled with assorted items and papers.", - "id": 18814 - }, - { - "image_path": "/content/drive/MyDrive/combined/26cc94e8d52eef78.jpg", - "response": "A box with a musical theme sits on a wooden table.", - "id": 18815 - }, - { - "image_path": "/content/drive/MyDrive/combined/556e52eb4cb1c02c.jpg", - "response": "A brand new Sony PlayStation 3 system in its box.", - "id": 18816 - }, - { - "image_path": "/content/drive/MyDrive/combined/755e7a054136c7c5.jpg", - "response": "A wooden table with a variety of tea boxes and containers on it.", - "id": 18817 - }, - { - "image_path": "/content/drive/MyDrive/combined/114c05a6f656a6be.jpg", - "response": "A busy city street at night with neon signs on the buildings.", - "id": 18818 - }, - { - "image_path": "/content/drive/MyDrive/combined/12ef0fc5a6b24f8f.jpg", - "response": "A street scene with two people standing in front of a store called Elements. The store sells hair and beauty products. There is a car parked on the street and a sign in the background.", - "id": 18819 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f4dea4a2735921e.jpg", - "response": "An old building with a dome and many windows.", - "id": 18820 - }, - { - "image_path": "/content/drive/MyDrive/combined/111cfc154a29698d.jpg", - "response": "People walking on the sidewalk(239,472),(439,735)", - "id": 18821 - }, - { - "image_path": "/content/drive/MyDrive/combined/12533c9193166ae1.jpg", - "response": "A city street at night with a purple sky.", - "id": 18822 - }, - { - "image_path": "/content/drive/MyDrive/combined/099b5860305d3c66.jpg", - "response": "A train station with a brick building and a pole with the word DAY on it.", - "id": 18823 - }, - { - "image_path": "/content/drive/MyDrive/combined/07fc683a5d6140fc.jpg", - "response": "A vintage postcard of a service station and restaurant.", - "id": 18824 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e3dbba8d9235257.jpg", - "response": "The image is a night time skyline of the city of Atlanta. The buildings are lit up and the sky is dark. The tallest building is in the middle of the skyline and there is a smaller lit up building to the right of it. There is a river in front of the buildings and a bridge going over it.", - "id": 18825 - }, - { - "image_path": "/content/drive/MyDrive/combined/0924b604db3363de.jpg", - "response": "A busy street with many people shopping and walking around.", - "id": 18826 - }, - { - "image_path": "/content/drive/MyDrive/combined/09274cfc710a8764.jpg", - "response": "An outdoor market with a variety of plants and produce on display. There are several people standing around the market, including a woman in a blue jacket and a man in a black hat. The market has a tent with a red and white striped roof, and there are several signs nearby to help customers find what they're looking for.", - "id": 18827 - }, - { - "image_path": "/content/drive/MyDrive/combined/0796fbae8d9bd322.jpg", - "response": "A large mural on the side of a building depicting a street scene from 1910.", - "id": 18828 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a4c15b05648b4b2.jpg", - "response": "A black and white photo of a building with a sign that says \"EATON\" on it.", - "id": 18829 - }, - { - "image_path": "/content/drive/MyDrive/combined/131553640bb6bcee.jpg", - "response": "A man standing next to a building with a wheel on a rope.", - "id": 18830 - }, - { - "image_path": "/content/drive/MyDrive/combined/128b8b377df350b3.jpg", - "response": "A black and white photo of a street corner in an industrial area. The street is empty and there are no cars on the road. The buildings on either side of the street are large and made of brick. The sky is overcast.", - "id": 18831 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c90a0b77f470484.jpg", - "response": "A green and yellow train is stopped at a train station.", - "id": 18832 - }, - { - "image_path": "/content/drive/MyDrive/combined/128518557d40d33d.jpg", - "response": "a float with a knight in armor", - "id": 18833 - }, - { - "image_path": "/content/drive/MyDrive/combined/5167ac9aa2f34f97.jpg", - "response": "A Monopoly logo on a green map of a city with tall buildings in the background.", - "id": 18834 - }, - { - "image_path": "/content/drive/MyDrive/combined/409214119193a523.jpg", - "response": "A large building with a sign that says \"Kenderson Liquidation Outfitters\" on the outside.", - "id": 18835 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b1c5f05fe779798.jpg", - "response": "a woman on a ladder in a hallway", - "id": 18836 - }, - { - "image_path": "/content/drive/MyDrive/combined/20b4fd2a4da264c9.jpg", - "response": "People form the number 350 in a square in Mexico City, Mexico.", - "id": 18837 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2d2c4faf985e60.jpg", - "response": "A old building with a door and a window.", - "id": 18838 - }, - { - "image_path": "/content/drive/MyDrive/combined/47c3515f0916cba5.jpg", - "response": "A Sears Auto Center building with a blue sky in the background.", - "id": 18839 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c47b34b4b5a91e8.jpg", - "response": "A crowd of people standing outside a large building with a mural of a castle on it.", - "id": 18840 - }, - { - "image_path": "/content/drive/MyDrive/combined/1da615a32a8b6863.jpg", - "response": "The image is an advertisement for a travel website. In the advertisement, there is a globe with an island in the middle of it. The island has a city on it with several tall buildings. In the sky above the island, there is a plane flying. The plane is pointing towards the right side of the image. There is a ship in the middle of the globe. Underneath the ship, there is a map of the world with a red dot on it, indicating Australia. There is a quote at the top of the image that says \"The world is a book and those who do not travel read only one page.\"", - "id": 18841 - }, - { - "image_path": "/content/drive/MyDrive/combined/3deaf6177401c953.jpg", - "response": "A large building with a square base and a square tower on top.", - "id": 18842 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b7abc4c3c71b36.jpg", - "response": "A Cyber Cafe with a sign above the door.", - "id": 18843 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dd68bbf3c70aae4.jpg", - "response": "A red and white Cub food store with a Benymart sign above it.", - "id": 18844 - }, - { - "image_path": "/content/drive/MyDrive/combined/1699f0f6f7178f8c.jpg", - "response": "A yellow building with a sign that reads \"Circuit de la Comunitat Valenciana Ricardo Tormo\" on the front.", - "id": 18845 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ac64377c437e07f.jpg", - "response": "The image shows a small outdoor cafe with a table and chairs positioned in front of it. The cafe has a neon sign above it, which is lit up. There is a variety of food and drink items displayed for sale, including several bottles and cans. Some of the bottles are placed on a shelf, while others are stacked on a table. A handbag is also visible in the scene, placed near the table. The overall atmosphere appears to be lively and inviting.", - "id": 18846 - }, - { - "image_path": "/content/drive/MyDrive/combined/465cf67c4cab7c81.jpg", - "response": "A black and red sign for Angus Steak Houses.", - "id": 18847 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d9c6a71df96780c.jpg", - "response": "In the image there is a gas station with a large neon sign above the entrance. The gas station is located in a parking lot and the lot is empty. To the right of the gas station there is a tall light post. In front of the gas station there is a sign that has prices for different grades of fuel. The background is a dark blue sky.", - "id": 18848 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dce233e93921577.jpg", - "response": "A train is pulling into a train station.", - "id": 18849 - }, - { - "image_path": "/content/drive/MyDrive/combined/5583e8c396f86856.jpg", - "response": "A train pulls into the station, preparing to let off passengers.", - "id": 18850 - }, - { - "image_path": "/content/drive/MyDrive/combined/272f55f8ee46546a.jpg", - "response": "a building with a sign that says Mercado Central", - "id": 18851 - }, - { - "image_path": "/content/drive/MyDrive/combined/24eef659eb02be5e.jpg", - "response": "A postcard of the Ho-Hum Motel in Burlington, Vermont. The motel has a parking lot in front and a grass lawn with two trees. There are four units to the motel, each with a car parked in front.", - "id": 18852 - }, - { - "image_path": "/content/drive/MyDrive/combined/3614166e5064ae81.jpg", - "response": "A building with a hanging basket on the front of it.", - "id": 18853 - }, - { - "image_path": "/content/drive/MyDrive/combined/5318ac1be0228a39.jpg", - "response": "A group of people are sitting at a table using laptops.", - "id": 18854 - }, - { - "image_path": "/content/drive/MyDrive/combined/47eb85ce716bf66f.jpg", - "response": "A city street with a tall utility pole with many wires attached to it.", - "id": 18855 - }, - { - "image_path": "/content/drive/MyDrive/combined/54fd14f5db876c9e.jpg", - "response": "A large building with a sign that says Bank of Montreal.", - "id": 18856 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b21fa99bab05e5.jpg", - "response": "A three story building with a brick facade is next to a tall brick building. In front of the buildings is a street with a yellow line and a few cars parked on the side.", - "id": 18857 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e103fa4d10edb13.jpg", - "response": "A wall on the side of a building", - "id": 18858 - }, - { - "image_path": "/content/drive/MyDrive/combined/523cd2dfbd92ea08.jpg", - "response": "A street sign in front of a house with a red roof.", - "id": 18859 - }, - { - "image_path": "/content/drive/MyDrive/combined/354909ac2c1850be.jpg", - "response": "A large crowd of people are standing outside a building. Some of them have backpacks and handbags. The building has banners hanging from the side of it.", - "id": 18860 - }, - { - "image_path": "/content/drive/MyDrive/combined/215011a0e3107193.jpg", - "response": "A parking lot filled with cars in front of a building.", - "id": 18861 - }, - { - "image_path": "/content/drive/MyDrive/combined/411f18f7d9b1b78f.jpg", - "response": "A table with a row of different colored alcohol bottles on it.", - "id": 18862 - }, - { - "image_path": "/content/drive/MyDrive/combined/308b923575e4f33c.jpg", - "response": "A photo of a park with trees and a stone wall.", - "id": 18863 - }, - { - "image_path": "/content/drive/MyDrive/combined/370dfc8fa37f7a34.jpg", - "response": "A lit open sign is in the window of a restaurant.", - "id": 18864 - }, - { - "image_path": "/content/drive/MyDrive/combined/160feb8583984c62.jpg", - "response": "A large building with a CVS Pharmacy sign on the front of it.", - "id": 18865 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e787ffea385f1b8.jpg", - "response": "A red sign with a metal cowboy on it.", - "id": 18866 - }, - { - "image_path": "/content/drive/MyDrive/combined/43af43cc7e2a858a.jpg", - "response": "A black and white photo of a hill with a sign on it saying \"MT. RODNEY\".", - "id": 18867 - }, - { - "image_path": "/content/drive/MyDrive/combined/2068c28c5819b743.jpg", - "response": "The image is a busy city street scene with a large building on the right side of the street. There are many people walking on the sidewalk in front of the building. A traffic light is visible on the left side of the street.", - "id": 18868 - }, - { - "image_path": "/content/drive/MyDrive/combined/51a5326b05891846.jpg", - "response": "A cream colored building with a red sign that says \"ANTQUITATEN\" on the second floor.", - "id": 18869 - }, - { - "image_path": "/content/drive/MyDrive/combined/3440696fbd9c030c.jpg", - "response": "The image depicts a busy covered market area with a high arched ceiling. There are many people walking around, socializing, and shopping. Some people are standing around while others are walking. There are also a few people sitting down at tables, possibly enjoying a meal. The market has a festive atmosphere with various stands and booths lining the walkway.", - "id": 18870 - }, - { - "image_path": "/content/drive/MyDrive/combined/3026e626a09d0929.jpg", - "response": "A train is parked at a train station.", - "id": 18871 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c5b5a4257d2caa3.jpg", - "response": "A city street with a sign that says \"Repsol\" on the left side of the street. There are many cars parked on the street and in the parking lot. There are also many trees along the street.", - "id": 18872 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bc70da9d7442fcd.jpg", - "response": "A street in the city with a church on the left and brick row houses on the right. There is a sidewalk and a few cars parked on the street.", - "id": 18873 - }, - { - "image_path": "/content/drive/MyDrive/combined/31d6e73ab814e7d6.jpg", - "response": "An old postcard of the state capital and annex in Trenton, New Jersey. The state capital building is white with a gold dome on the center of the top floor. The annex building is white as well. In the background, the Delaware River is blue with a bridge crossing it. There is a flag on top of the state capital building.", - "id": 18874 - }, - { - "image_path": "/content/drive/MyDrive/combined/5091a81c0cdf53e4.jpg", - "response": "A tall brown building with a red sign in front of it.", - "id": 18875 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ffe0463c36172a9.jpg", - "response": "An empty store with a red and white sign that says Corrajes Chile.", - "id": 18876 - }, - { - "image_path": "/content/drive/MyDrive/combined/440c4d4d441af2ec.jpg", - "response": "The image shows a street with old buildings on the side of the street. There are several people sitting outside at tables, enjoying the outdoor seating area of a pub. There are umbrellas over some of the tables, providing shade for the patrons. A few handbags are placed near the tables, and a fire hydrant is visible in the background.", - "id": 18877 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fbce644a23228fc.jpg", - "response": "A city street at night with many buildings lit up.", - "id": 18878 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a0ba021c0868225.jpg", - "response": "A city landscape with a large building in the background.", - "id": 18879 - }, - { - "image_path": "/content/drive/MyDrive/combined/3efe8ae0a8c64c63.jpg", - "response": "A building with a large glass window with the word BONADCASTER painted on it. A rainbow is painted on the window as well. Two people are riding bikes in front of the building.", - "id": 18880 - }, - { - "image_path": "/content/drive/MyDrive/combined/44d3f27e83f630e4.jpg", - "response": "The image shows three topiary sculptures of characters from the animated television series The Simpsons. The characters are standing in a planter filled with red flowers. They are made to look like they are holding up the planter with their hands. The sculptures are located outside a restaurant with a brick facade. There are several chairs and dining tables outside the restaurant, and a few people are visible in the background.", - "id": 18881 - }, - { - "image_path": "/content/drive/MyDrive/combined/3126f84eae6299d8.jpg", - "response": "A large building with many windows is in the background. In the foreground, a stone sign with the number 60 is on the left side of the image. The number is painted white and is next to a flag pole with many colorful flags. The flag pole is in the grass and the grass is green. There is a shadow of the flag pole on the grass.", - "id": 18882 - }, - { - "image_path": "/content/drive/MyDrive/combined/30d9f0e0fed32c26.jpg", - "response": "A train station with a brick wall and a blue and white sign that says \"Information\" on it.", - "id": 18883 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c468cb9d17d61aa.jpg", - "response": "a sign that says \"here you leave today and enter the world of yesterday tomorrow and fantasy\"", - "id": 18884 - }, - { - "image_path": "/content/drive/MyDrive/combined/3821aede6ad88ecc.jpg", - "response": "A crowded city street at night with many people walking around.", - "id": 18885 - }, - { - "image_path": "/content/drive/MyDrive/combined/26f3623b930a4fb3.jpg", - "response": "The image shows a McDonald's restaurant with a large glass window. There are several people standing outside the restaurant, and some of them are on scooters. The restaurant is located in a busy city area with other buildings and signs around.", - "id": 18886 - }, - { - "image_path": "/content/drive/MyDrive/combined/217185fc441744d5.jpg", - "response": "The image shows the exterior of a Target store on a cloudy day. There is snow on the ground and yellow lines painted on the parking lot. The store has a brown and green color scheme and there is a Target sign above the entrance. The entrance has a red metal railing and a set of doors. There are also two arched doorways on the right side of the building. In front of the store, there is a concrete planter with a tree in it.", - "id": 18887 - }, - { - "image_path": "/content/drive/MyDrive/combined/133fe2567cce7cc5.jpg", - "response": "A postcard image of the exterior and interior of the Fort Bedford Inn in Bedford, Pennsylvania. The exterior image shows a two story white building with a sign in front. The interior image shows a dining room with multiple tables and chairs, and potted plants on the tables.", - "id": 18888 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f48df9b7dcab496.jpg", - "response": "A man walking down the street in front of a store called \"Fancy Fingers\" with a phone number that starts with 617.", - "id": 18889 - }, - { - "image_path": "/content/drive/MyDrive/combined/226bd0e27df527b8.jpg", - "response": "The image is a black and white photo of a group of people sitting in a large room. There are many chairs and tables in the room, and the people are seated on both sides of the tables. Some people are sitting on chairs that have a cross on the back of them. There are two TVs mounted on the wall, and one is on the left side of the room and the other is on the right side. The people are watching the TVs and seem to be waiting for something.", - "id": 18890 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a43d38a6deeb4d8.jpg", - "response": "A street scene with a person walking down the sidewalk. There is a street sign for Ebisu station and a bus stop sign. A black car is driving down the street. There is a woman in a black coat walking down the sidewalk. There is a man in a black suit walking down the sidewalk. There is a woman in a black and white outfit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a black suit walking down the sidewalk. There is a person in a", - "id": 18891 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c98bf367273ce22.jpg", - "response": "A black and white photo of a large high school building with a large field in front of it.", - "id": 18892 - }, - { - "image_path": "/content/drive/MyDrive/combined/383c8211b1fe1a92.jpg", - "response": "a large building with a circular walkway around the bottom of it", - "id": 18893 - }, - { - "image_path": "/content/drive/MyDrive/combined/b88dbcd16e46d80a.jpg", - "response": "A black and white photo of a town street.", - "id": 18894 - }, - { - "image_path": "/content/drive/MyDrive/combined/f69d389a2b269d99.jpg", - "response": "Avalon and South Park intersection with a traffic light, street signs, and parked cars.", - "id": 18895 - }, - { - "image_path": "/content/drive/MyDrive/combined/477dca802605bf05.jpg", - "response": "A calculator on a white surface.", - "id": 18896 - }, - { - "image_path": "/content/drive/MyDrive/combined/4392e72478e73f74.jpg", - "response": "A white and blue bus on a city street.", - "id": 18897 - }, - { - "image_path": "/content/drive/MyDrive/combined/29110be3c2c739de.jpg", - "response": "A Compass Bus is parked outside of a building. The bus is red and white and is parked next to a building. There are people visible in the image, but they are not the main focus.", - "id": 18898 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bb85f4bddce0ecc.jpg", - "response": "A calculator sits on a wooden table.", - "id": 18899 - }, - { - "image_path": "/content/drive/MyDrive/combined/10363c77886466e4.jpg", - "response": "A calculator with a screen that says \"If two wrongs don't make a right, try three\".", - "id": 18900 - }, - { - "image_path": "/content/drive/MyDrive/combined/53c7fc9d8d9a2ab5.jpg", - "response": "A wooden calculator with a white face.", - "id": 18901 - }, - { - "image_path": "/content/drive/MyDrive/combined/448ea938a5f059ca.jpg", - "response": "A bus is driving down a city street.", - "id": 18902 - }, - { - "image_path": "/content/drive/MyDrive/combined/2963608dfa9511e3.jpg", - "response": "A red and yellow double decker bus is driving down the street.", - "id": 18903 - }, - { - "image_path": "/content/drive/MyDrive/combined/428bd93adc0a48e0.jpg", - "response": "A large white double decker bus is driving down the street.", - "id": 18904 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c3517ce812169f9.jpg", - "response": "A bus on a street, with a man driving and a woman sitting behind the driver. The bus is pink, white and blue, and has the words \"First\" and a pink logo on the front. The bus is also displaying the number 2 and the destination \"Oreston Mount Batten\".", - "id": 18905 - }, - { - "image_path": "/content/drive/MyDrive/combined/425240d2aa223cc7.jpg", - "response": "A calculator with a screen on the top and the numbers 322G on the front.", - "id": 18906 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e67f4e847b2df5c.jpg", - "response": "A double decker bus is parked on the side of the street.", - "id": 18907 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f0ce1ded7dd197c.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 18908 - }, - { - "image_path": "/content/drive/MyDrive/combined/43fc576ea93f73eb.jpg", - "response": "A calculator with the numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, and some other buttons.", - "id": 18909 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fc054810d8ab304.jpg", - "response": "The image features a black keyboard with a dark grey base. The keys on the keyboard are a mix of black and white, with some red lettering. The space bar is a dark grey and the keys have various symbols on them. The caps lock key is highlighted in light grey. The keyboard is set on a white background.", - "id": 18910 - }, - { - "image_path": "/content/drive/MyDrive/combined/404377603aafa9bf.jpg", - "response": "A white, pink and purple bus is parked at a bus stop.", - "id": 18911 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f0cf20f039f67a.jpg", - "response": "The image shows a silver calculator with the numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, and 0 on the keys. The numbers are white and the keys themselves are grey. The calculator is sitting on a white surface.", - "id": 18912 - }, - { - "image_path": "/content/drive/MyDrive/combined/20ecdd1be9c7202f.jpg", - "response": "In the image there is a calculator with a large screen and many buttons. The calculator is sitting on top of a pile of British pound sterling bills. There are several pounds spread out on the table. Some of them are facing up, some are facing down. The calculator is turned off.", - "id": 18913 - }, - { - "image_path": "/content/drive/MyDrive/combined/3edce628240b386f.jpg", - "response": "In the image there is a black calculator with a red and white ON/OFF button. The ON/OFF button is in the middle of the calculator and it is slightly to the right of the CE button. To the right of the ON/OFF button, there is a small rectangular screen that is currently blank. In front of the calculator, there is a white table.", - "id": 18914 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7814cdb42c9562.jpg", - "response": "A red double decker bus is driving down the street. There are two other buses behind it. There are several people walking on the sidewalk. One man is carrying a backpack. There are chairs and a table outside a building.", - "id": 18915 - }, - { - "image_path": "/content/drive/MyDrive/combined/5251debd9deb1e83.jpg", - "response": "A wooden table with a calculator, a pen and some money on it.", - "id": 18916 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c395c760476a1a5.jpg", - "response": "A white bus with pink and purple writing on it is parked on the street.", - "id": 18917 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ec48fddab2fba2.jpg", - "response": "A calculator with the number 33550336 on the display.", - "id": 18918 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5e9e90b498f7c4.jpg", - "response": "A calculator is shown with the screen lit up. The screen displays the numbers 12345518. The calculator has many buttons on it, including a yellow button labeled \"C\" and a yellow button labeled \"M\" which are near the top. There is also a yellow button labeled \"A\" near the top. Below this, there are several other buttons including one labeled \"F\" and one labeled \"S4\". There are also buttons labeled \"9\" and \"6\" as well as \"7\" and \"8\" on the bottom row. There is also a yellow button labeled \"C\" on the bottom row.", - "id": 18919 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f579336d38fc032.jpg", - "response": "A close up of a black keyboard with some water droplets on it.", - "id": 18920 - }, - { - "image_path": "/content/drive/MyDrive/combined/209f6a492d140c57.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 18921 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f76e1aa2e500034.jpg", - "response": "A calculator on display with a price sticker of $30.", - "id": 18922 - }, - { - "image_path": "/content/drive/MyDrive/combined/262d9f1512a7bae0.jpg", - "response": "A Texas Instruments calculator sits on a wooden table.", - "id": 18923 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d65fa2fd9ec877c.jpg", - "response": "A white, pink and blue bus is stopped at a bus stop.", - "id": 18924 - }, - { - "image_path": "/content/drive/MyDrive/combined/15478f1fa5b648f4.jpg", - "response": "A double decker bus is parked on the side of the road.", - "id": 18925 - }, - { - "image_path": "/content/drive/MyDrive/combined/48d4d658f8bcb358.jpg", - "response": "A calculator with a grey frame and a white background. The screen displays the numbers 3.141592653589793. The buttons are labelled MC, M+, M-, MR, and 0.", - "id": 18926 - }, - { - "image_path": "/content/drive/MyDrive/combined/41d47fe742a40446.jpg", - "response": "In the image there is a Simyo calculator on top of a form. The Simyo calculator is orange and grey. In the background there is a bigger calculator with black and white keys. The whole scene is set on a light orange background.", - "id": 18927 - }, - { - "image_path": "/content/drive/MyDrive/combined/3482cd2f1df57704.jpg", - "response": "A green and yellow bus with the word \"Go\" on the side is driving down the street.", - "id": 18928 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f428ad7357ac40.jpg", - "response": "A black Hewlett Packard calculator sits on a ledge.", - "id": 18929 - }, - { - "image_path": "/content/drive/MyDrive/combined/24da153d756e9635.jpg", - "response": "A white, red and purple bus is parked on the side of the street.", - "id": 18930 - }, - { - "image_path": "/content/drive/MyDrive/combined/440fca74dc365c03.jpg", - "response": "A wooden table with a calculator, a pen, and a stack of bills on it.", - "id": 18931 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fe6e5c615189a10.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 18932 - }, - { - "image_path": "/content/drive/MyDrive/combined/1aa5bd8b5b964219.jpg", - "response": "A red, white and blue double decker bus is driving down the street.", - "id": 18933 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ce1738bcff5e70.jpg", - "response": "A white and green bus is driving down the street.", - "id": 18934 - }, - { - "image_path": "/content/drive/MyDrive/combined/42b627d053171f67.jpg", - "response": "A black calculator on a white surface.", - "id": 18935 - }, - { - "image_path": "/content/drive/MyDrive/combined/189bbc521b52af13.jpg", - "response": "A person is holding a square device with the word Adyen on it.", - "id": 18936 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b116a749434b269.jpg", - "response": "A yellow school bus with the stop sign on the side.", - "id": 18937 - }, - { - "image_path": "/content/drive/MyDrive/combined/10949bc00db96f67.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 18938 - }, - { - "image_path": "/content/drive/MyDrive/combined/30f3bbe1ecb9e259.jpg", - "response": "A double decker bus parked on the side of the street.", - "id": 18939 - }, - { - "image_path": "/content/drive/MyDrive/combined/1edbd648b1acb1bc.jpg", - "response": "A lego storm trooper sitting on top of a soundboard.", - "id": 18940 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e3682936c1ec56.jpg", - "response": "A calculator sits on a desk with papers all around it.", - "id": 18941 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ecb4b8f11c0678.jpg", - "response": "A collection of different calculator devices.", - "id": 18942 - }, - { - "image_path": "/content/drive/MyDrive/combined/1217257695405075.jpg", - "response": "A green Go bus is driving down the street.", - "id": 18943 - }, - { - "image_path": "/content/drive/MyDrive/combined/1238d5f7b2820007.jpg", - "response": "A red Plymouth city bus is driving down the street.", - "id": 18944 - }, - { - "image_path": "/content/drive/MyDrive/combined/2edd89774519c784.jpg", - "response": "A red bus driving down a city street.", - "id": 18945 - }, - { - "image_path": "/content/drive/MyDrive/combined/118d49caf400e662.jpg", - "response": "A coin with the word United States of America on it.", - "id": 18946 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a59d9e9e758383b.jpg", - "response": "A pair of spotted lanternflies, about the size of a penny, are shown on a penny.", - "id": 18947 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e38676c39c9cbe.jpg", - "response": "A coin with the letters A and H on it.", - "id": 18948 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebc11430fea1b7c.jpg", - "response": "A close up of two coins on a sparkly background.", - "id": 18949 - }, - { - "image_path": "/content/drive/MyDrive/combined/082286cbacee3a60.jpg", - "response": "A small purple crystal sits in a silver box.", - "id": 18950 - }, - { - "image_path": "/content/drive/MyDrive/combined/097a642ee75bb059.jpg", - "response": "The image shows a close up of two sides of a coin. The coin on the left, which is the 1970 side, features an eagle with wings spread and a shield with a coat of arms on it. The shield has a cross with a circle on top and a flame inside. There is also a bird on the left side of the shield and a tree on the right. The word \"REPUBLIC DE HAVANA\" is written around the edge of the shield. The date \"1970\" is written on the bottom of the shield. The coin on the right, which is the Balboa side, features a profile of a man wearing a helmet and armor. He is also wearing a hat and a sash with the word \"MONEDA DE BALDOS\" written on it. The date \"1970\" is written on the bottom of the coin.", - "id": 18951 - }, - { - "image_path": "/content/drive/MyDrive/combined/10773cfe915137d1.jpg", - "response": "In the image there are three coins. Two of them are gold and one is silver. The largest coin is in the middle and it is the 2 euro coin. The other two coins are to the right and are the 1 euro coins. All of the coins have a hole in the top where the stem used to be. The largest 2 euro coin has the number 2 on it and the largest 1 euro coin has a capital letter R on it. The background of the image is a brown color.", - "id": 18952 - }, - { - "image_path": "/content/drive/MyDrive/combined/115cd193d32b331f.jpg", - "response": "A collection of 8 different Canadian coins.", - "id": 18953 - }, - { - "image_path": "/content/drive/MyDrive/combined/084f8eec39c59e79.jpg", - "response": "A black and white photo of a stack of 50 pence coins.", - "id": 18954 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ad7f23bbf97510.jpg", - "response": "A close up of a coin on a piece of wood.", - "id": 18955 - }, - { - "image_path": "/content/drive/MyDrive/combined/108c95cafc0f1d99.jpg", - "response": "A close up of a restaurant receipt and a 2008 Cuban 5 peso coin.", - "id": 18956 - }, - { - "image_path": "/content/drive/MyDrive/combined/13382b7bfc8f7d33.jpg", - "response": "The image shows two sides of a 10 centimes coin from Tunisia from 1918. The coin is made of silver and has a weight of 6.405 grams. The word \"Tunisia\" is written on both sides of the coin in French. On one side, there is a picture of a sheaf of wheat, and on the other side, there is a picture of a bee. The year \"1918\" is written on both sides of the coin.", - "id": 18957 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a5eb5cd5b417e3.jpg", - "response": "A pile of different foreign coins.", - "id": 18958 - }, - { - "image_path": "/content/drive/MyDrive/combined/127941465b9bd2d9.jpg", - "response": "A close up of a wooden table with a variety of coins on it. The coins include a 2011 Jefferson Nickel, a 2011 Dime, and a 2011 Quarter.", - "id": 18959 - }, - { - "image_path": "/content/drive/MyDrive/combined/09bb26dea8ab3025.jpg", - "response": "A copper colored coin with the number 1 on it.", - "id": 18960 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b589d4dcc70a138.jpg", - "response": "A collection of coins are shown on a white surface. There are 8 coins in total, they are spread out and do not appear to be in a container. The coins are a mix of copper and silver in color. The largest coin is a 20 cent piece from 2010. The other coins are not dated.", - "id": 18961 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b1b19c7ee063044.jpg", - "response": "A collection of Chinese coins, including 1, 5, 10, 50, and 100 yuan.", - "id": 18962 - }, - { - "image_path": "/content/drive/MyDrive/combined/094eb61f0244de06.jpg", - "response": "A coin with the year 2004 on it.", - "id": 18963 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a182c5416815797.jpg", - "response": "A 10 cent coin is next to some small seeds on a white counter.", - "id": 18964 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d5cea999b2fa16f.jpg", - "response": "A bronze medal with an image of a man in a hat and overalls standing on a rock.", - "id": 18965 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d751daf458c742e.jpg", - "response": "A close up of a bunch of coins. There are 10 coins in total, they are all made of silver and they are all different. There are 5 dimes, 3 quarters and 2 pennies. The dimes are all facing the same way and they are all on the top row. The quarters are all facing the same way and they are all on the middle row. The pennies are all facing the same way and they are all on the bottom row. The background is black.", - "id": 18966 - }, - { - "image_path": "/content/drive/MyDrive/combined/09b6b0f5e77c1bde.jpg", - "response": "A coin with the words \"Votes for Women\" on it.", - "id": 18967 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f998ceca1845da1.jpg", - "response": "In the image a person is holding a large gold coin from Starbucks. The person is wearing a black hat and has purple fingernails.", - "id": 18968 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb6e18693f9a7d3.jpg", - "response": "In the image there is a pile of gold and silver coins. The coins are spread out on a white surface. Some of the coins are behind a transparent\u5851\u6599\u786c\u5e01.", - "id": 18969 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a03c4ecf08e2f12.jpg", - "response": "a bunch of gold coins in plastic cases", - "id": 18970 - }, - { - "image_path": "/content/drive/MyDrive/combined/13d9ba5369d048e8.jpg", - "response": "In the image there are three stacks of silver coins from Austria. The coins are from 2011 and are worth 50 euros.", - "id": 18971 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3d0cf0c98228af.jpg", - "response": "A copper colored medal with the word Marquette and Jolliet Tercentennial 1673-1973 on it.", - "id": 18972 - }, - { - "image_path": "/content/drive/MyDrive/combined/107376ae9d7b1c45.jpg", - "response": "A close up of four coins on a wooden table. The coins are a mix of larger and smaller values.", - "id": 18973 - }, - { - "image_path": "/content/drive/MyDrive/combined/1571cbb74c8d28d1.jpg", - "response": "A silver coin with stars around the edge and a lady's profile on it.", - "id": 18974 - }, - { - "image_path": "/content/drive/MyDrive/combined/124004bbd1b656be.jpg", - "response": "A museum display showing two coins. One is a 1935 Spanish col\u00f3n and the other is a 1944 Spanish coin.", - "id": 18975 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d5180edcff6f390.jpg", - "response": "A pile of Euro coins, some of which are in focus and some are not. The coins are scattered in a pile and are of varying sizes and orientations. Some of the coins are copper colored and some are more of a brown color. The pile of coins is on a table and is in front of a white background.", - "id": 18976 - }, - { - "image_path": "/content/drive/MyDrive/combined/1001f5f1dd322731.jpg", - "response": "A silver coin with a walking liberty on it and the year 2005.", - "id": 18977 - }, - { - "image_path": "/content/drive/MyDrive/combined/1024966f2d09a22b.jpg", - "response": "A public payphone sitting on the sidewalk.", - "id": 18978 - }, - { - "image_path": "/content/drive/MyDrive/combined/12a383d4a76da171.jpg", - "response": "A black background with 5 coins in the foreground. The coins are facing different directions. The top coin has Queen Elizabeth II's face on it and the date 2016. The second coin has Queen Victoria's face on it and the date 1836. The third coin has Queen Elizabeth II's face on it and the date 2016. The fourth coin has Queen Victoria's face on it and the date 1836. The fifth coin has Queen Elizabeth II's face on it and the date 2016.", - "id": 18979 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b423b8f31559423.jpg", - "response": "A close up image of a 2 pound coin from 2003. The coin is silver and gold in color and features a large letter S in the middle of a shield.", - "id": 18980 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b41461e9717e674.jpg", - "response": "A 50p coin with a picture of a boxing glove on it.", - "id": 18981 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d95157bf4cd5dac.jpg", - "response": "The image shows a gold medal from the 1936 Berlin Olympics. The medal features an image of a woman in a flowing dress riding a horse, with one arm raised in the air. The word \"Olympiade\" is written above the woman, and \"Berlin\" is written below her. The year 1936 is written on the medal, as well. The medal is displayed on a black pedestal, and there is a brown wall visible in the background.", - "id": 18982 - }, - { - "image_path": "/content/drive/MyDrive/combined/147b722548e58937.jpg", - "response": "A pile of coins from Brazil, including a 2000 reais coin.", - "id": 18983 - }, - { - "image_path": "/content/drive/MyDrive/combined/1439eccfb0d907d8.jpg", - "response": "a hand holding a coin with a man's face on it", - "id": 18984 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f790eb3dbd26485.jpg", - "response": "A close up of a coin in a case on a table.", - "id": 18985 - }, - { - "image_path": "/content/drive/MyDrive/combined/108f6c9f4677b614.jpg", - "response": "A close up of a Canadian 5 cents coin on a granite surface. The coin is dated 2001 and has a picture of a beaver on it.", - "id": 18986 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b71ba450dc201c5.jpg", - "response": "A book open to two pages showing two seals. The left seal is circular and features a man on a horse at the top, holding a scepter. He is flanked by two women, one on the left and one on the right. Below them are two men, one on the left and one on the right. The seal is inscribed with the words \"Seal of the Lord's Proprietors of Carolina\" and has a date of 1663. The right seal is also circular and features a shield with a cross in the center. The shield is surrounded by a circle with the words \"Carolina\" in the center. The shield is also surrounded by a circle with the words \"1663\" in the center.", - "id": 18987 - }, - { - "image_path": "/content/drive/MyDrive/combined/11db222f25ad2ccf.jpg", - "response": "A close up of a silver coin with a bird on it.", - "id": 18988 - }, - { - "image_path": "/content/drive/MyDrive/combined/11399453cf504485.jpg", - "response": "A close up of a coin with the number 200 on it.", - "id": 18989 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5cc215b1cb7959.jpg", - "response": "A white bowl filled with a variety of tokens.", - "id": 18990 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd1f5f23c2dbe2f.jpg", - "response": "A close up of the back of a silver dollar.", - "id": 18991 - }, - { - "image_path": "/content/drive/MyDrive/combined/10795ebc948765e1.jpg", - "response": "The image is a collage of two photos, both featuring coins. The left photo shows a silver coin with the word \"CCCP\" on it and an image of a torch on it. The right photo shows a coin with the word \"1\" on it and an image of a hammer and sickle on it.", - "id": 18992 - }, - { - "image_path": "/content/drive/MyDrive/combined/145fdfb9ea03ca7a.jpg", - "response": "a gold medal with the word olympiad on it", - "id": 18993 - }, - { - "image_path": "/content/drive/MyDrive/combined/12904aa5d145b974.jpg", - "response": "A gold coin with a picture of a jaguar on it.", - "id": 18994 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dfed737702922b4.jpg", - "response": " A man(274,332),(565,672) standing at a podium(21,189),(316,999) in front of a giant gold coin(345,6),(995,903).", - "id": 18995 - }, - { - "image_path": "/content/drive/MyDrive/combined/0dc1c2b15d669682.jpg", - "response": "A bronze coin with the words \"God grant me the serenity to accept things I cannot change, courage to change things I can, and wisdom to know the difference\" on it.", - "id": 18996 - }, - { - "image_path": "/content/drive/MyDrive/combined/0acb0044f5922499.jpg", - "response": "A coin with the year 2005 on it.", - "id": 18997 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c2bdbf75a8cb584.jpg", - "response": "A silver and gold coin on display.", - "id": 18998 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb31f1f4a5746db.jpg", - "response": "A coin with a portrait of Chhatrapati Shivaji on it.", - "id": 18999 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cb1beb992eae427.jpg", - "response": "A collection of coins, including a silver Maple Leaf and a Sprott coin.", - "id": 19000 - }, - { - "image_path": "/content/drive/MyDrive/combined/09853cf916ef5bb5.jpg", - "response": "A coin with Queen Elizabeth's face on it.", - "id": 19001 - }, - { - "image_path": "/content/drive/MyDrive/combined/1003153971ee6833.jpg", - "response": "A single Swedish coin sitting on a white surface.", - "id": 19002 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c854a86d75f8fb2.jpg", - "response": "A pile of coins with the words \"Spare Change\" at the bottom.", - "id": 19003 - }, - { - "image_path": "/content/drive/MyDrive/combined/1083414775515f6a.jpg", - "response": "In the image there are 16 silver colored pound coins arranged in 4 stacks of 4, 4 stacks of 3 and 4 stacks of 2 on a dark green surface.", - "id": 19004 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f213e06f6328d65.jpg", - "response": "A single bitcoin sits on a grey background. The bitcoin has a picture of the world on it with the year 2014 on it. The bitcoin is facing the camera and is in focus.", - "id": 19005 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b8d57fb27008779.jpg", - "response": "A wall with several coins on it.", - "id": 19006 - }, - { - "image_path": "/content/drive/MyDrive/combined/12643df157e0d7f7.jpg", - "response": "A gold coin with the profile of a woman on it.", - "id": 19007 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cf085e95c4f9af0.jpg", - "response": "A close up of a silver coin with an eagle on it.", - "id": 19008 - }, - { - "image_path": "/content/drive/MyDrive/combined/1657245609948b00.jpg", - "response": "A photo of three silver coins that say Good Time Token on them.", - "id": 19009 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a9734ea281af5d2.jpg", - "response": "A coin with a picture of a mill on it.", - "id": 19010 - }, - { - "image_path": "/content/drive/MyDrive/combined/13fc885efcbb63c3.jpg", - "response": "A collection of coins from 2001 and 2006.", - "id": 19011 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a1587205dff467f.jpg", - "response": "A gold coin with a profile of a man's head on it.", - "id": 19012 - }, - { - "image_path": "/content/drive/MyDrive/combined/238b84d4f39b4627.jpg", - "response": "A cash register with three different compartments for coins.", - "id": 19013 - }, - { - "image_path": "/content/drive/MyDrive/combined/19e041bc0fe1bda2.jpg", - "response": "A set of four different coins on a white paper.", - "id": 19014 - }, - { - "image_path": "/content/drive/MyDrive/combined/26be1b1e80112ee5.jpg", - "response": "A gold geological survey marker on a rock.", - "id": 19015 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c25904cbde4bc71.jpg", - "response": "A pile of coins and a pen on a speckled counter.", - "id": 19016 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c99a8e7649ae35f.jpg", - "response": "A collection of four Kenyan shilling coins.", - "id": 19017 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f07dd5cff33ba59.jpg", - "response": "In the image there is a 10 cent coin of the European Union currency, next to it are two small animal bones, possibly from a rabbit. The background is a white table.", - "id": 19018 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e5fd3feafc93a15.jpg", - "response": "A pile of seven Canadian coins, including a dollar coin and a toonie, are displayed on a black background.", - "id": 19019 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ebcf4857f8f41fd.jpg", - "response": "A pile of coins from Germany.", - "id": 19020 - }, - { - "image_path": "/content/drive/MyDrive/combined/19874fd256ed2101.jpg", - "response": "In the image, there is a two Mexican coins, one silver and one gold, in front of a US 1 dollar bill. The coins are placed on a wooden surface.", - "id": 19021 - }, - { - "image_path": "/content/drive/MyDrive/combined/3caff3728b7aefa4.jpg", - "response": "a marble wall with a gold 12th night quote on it and a medallion in the middle of the wall.", - "id": 19022 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8e5e19034a9a5a.jpg", - "response": "In the image there is a pile of silver coins. Some of them are on a white background, some are on a grey background. The silver coins have a picture of a man on them. The coins are made by the company \"Sprott\". The coins are of various denominations, including 1, 4, 5, 10, 25, and 50 dollars.", - "id": 19023 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d86a65bb84cb1ab.jpg", - "response": "A coin from 1857 and a coin from 1987.", - "id": 19024 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c502295ecd9c750.jpg", - "response": "A coin with the word Hong Kong on it.", - "id": 19025 - }, - { - "image_path": "/content/drive/MyDrive/combined/4284ff6b896aeb7e.jpg", - "response": "In the image, there is a pile of silver UK pound coins. The coins are piled on top of each other, and some of them are facing upwards, revealing the Queen's head on the Obverse. The pile occupies the majority of the image, with a portion of a coin visible on the top left corner and another one on the bottom right corner.", - "id": 19026 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b4e3d7165469d13.jpg", - "response": "A table full of coins from many different countries.", - "id": 19027 - }, - { - "image_path": "/content/drive/MyDrive/combined/2adf1795a47e73cf.jpg", - "response": "In the image there is a pile of gold coins. The coins are spread out over a dark background. The coins are golden and have a texture that looks like they are made of metal. They have a shiny surface and some of them have lettering on them.", - "id": 19028 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b58264cc587979.jpg", - "response": "In the image there is a pile of coins, both dimes and quarters, on a black background. The coins are spread out and there are a total of 12 coins visible. Some of the coins are facing up and others are facing down.", - "id": 19029 - }, - { - "image_path": "/content/drive/MyDrive/combined/335d2a8ae70322e0.jpg", - "response": "A single penny sitting on a white counter.", - "id": 19030 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b51bc8326f381b9.jpg", - "response": "A Diamantine card from 1913 showing the M\u00fcnz-Wesen of Norway. The card is 57mm x 87mm.", - "id": 19031 - }, - { - "image_path": "/content/drive/MyDrive/combined/184fc8e3cd87766f.jpg", - "response": "A Canadian dollar coin with the year 2009 on it.", - "id": 19032 - }, - { - "image_path": "/content/drive/MyDrive/combined/1823d24b8e752422.jpg", - "response": "A close up of a coin with writing on it.", - "id": 19033 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a29ee71f8c328ca.jpg", - "response": "A gold coin with the word \"Pound\" on it.", - "id": 19034 - }, - { - "image_path": "/content/drive/MyDrive/combined/36b16969c723d273.jpg", - "response": "A large golden coin with the letters TF on it.", - "id": 19035 - }, - { - "image_path": "/content/drive/MyDrive/combined/25d624e9841da7d9.jpg", - "response": "The image shows two coins lying next to each other on a white surface. The coin on the left, which is copper colored, has the word \"Nigeria\" written on it and features a building and a snake. The coin on the right, which is bronze colored, has the words \"FEDERAL REPUBLIC OF NIGERIA\" written on it and features a lion and a horse. Both coins have the year 2006 on them.", - "id": 19036 - }, - { - "image_path": "/content/drive/MyDrive/combined/16e11d9070162146.jpg", - "response": "A close up of two coins on a table.", - "id": 19037 - }, - { - "image_path": "/content/drive/MyDrive/combined/200ba9ec8d4cf1ae.jpg", - "response": "A silicon wafer with many small circuit boards on it.", - "id": 19038 - }, - { - "image_path": "/content/drive/MyDrive/combined/281ce5b95b8e53bd.jpg", - "response": "A collection of coins are arranged in a row on a table. The coins are a mix of foreign currency and US currency. There are four coins in total, two of which are showing their back sides. The coins are standing up on the table, with the edge of a book visible in the background.", - "id": 19039 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb7235075c2c393.jpg", - "response": "a brown table with two gold coins on it", - "id": 19040 - }, - { - "image_path": "/content/drive/MyDrive/combined/393142e637b38cd6.jpg", - "response": "The image shows three coins, two of which are gold and one is silver. The gold coins are stacked on top of each other with the silver coin on top. The gold coins have the word \"golds\" and \"silver\" on them, and the silver coin has an eagle on it. The coins are on a black background.", - "id": 19041 - }, - { - "image_path": "/content/drive/MyDrive/combined/355845365c6eee85.jpg", - "response": "A coin with a bird on it.", - "id": 19042 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d567594177ffc1a.jpg", - "response": "In the image there is a black Kingston USB drive next to a quarter. The USB drive is next to its cap which is laying to the left of the drive. The drive is labeled with the Kingston logo on the right side. The quarter is placed in front of the drive and is oriented with the Queen's head facing to the right. The background of the image is orange.", - "id": 19043 - }, - { - "image_path": "/content/drive/MyDrive/combined/16bd9f4129028e93.jpg", - "response": "In the image there is a pile of various coins, including American dollars, on a white background. The main focus of the image is a silver coin with the word \"Sprott\" on it.", - "id": 19044 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e6ff19c61fca426.jpg", - "response": "A commemorative 2 euro coin from 2014 from Italy.", - "id": 19045 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cc318956b4e27ff.jpg", - "response": "A close up of an Indian 5 paisa coin sitting on a white surface. The coin has some wear and has the number 1983 on it.", - "id": 19046 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc49134cb81c906.jpg", - "response": "three coins on a wooden table", - "id": 19047 - }, - { - "image_path": "/content/drive/MyDrive/combined/249edec63aa020a7.jpg", - "response": "The image is a cover for the album \"Loophole\" by the British Music Collection. The cover features a white background with a pile of various coins scattered across it. The coins are of different sizes, shapes, and values, including both American and British coins. The title \"Loophole\" is written in black text at the top of the cover. The M&I Digital logo is also visible at the top right corner of the cover.", - "id": 19048 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ae535c330701a15.jpg", - "response": "The image shows a close up of a silver dime lying on a grey surface. The dime is facing the camera and is laying on its side. There is a small red pine needle next to the dime on the left side of the image. The word \"United States of America\" is written on the top of the dime, and \"One Dime\" is written on the bottom. The word \"DIME\" is written in larger font below the word \"United States of America\". There is a flower design on the dime, with a torch in the middle of the flower. The word \"E pluribus unum\" is written on the left side of the dime, and \"2003\" is written on the right side.", - "id": 19049 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cba11c86387da0a.jpg", - "response": "A coin from 1932 of King George V showing the front and back of the coin.", - "id": 19050 - }, - { - "image_path": "/content/drive/MyDrive/combined/417181ecfc17ac8c.jpg", - "response": "A close up of a 20 cent piece sitting on a table.", - "id": 19051 - }, - { - "image_path": "/content/drive/MyDrive/combined/1828d0f11cb82469.jpg", - "response": "A 1903 Indian Head penny is sitting on top of a pile of other coins. The coins are in various positions and orientations. Some of the coins are standing up straight, while others are laying down. The pile of coins is on a black background.", - "id": 19052 - }, - { - "image_path": "/content/drive/MyDrive/combined/30390cd7842bbd19.jpg", - "response": "A close up of a 10 peso coin from Uruguay. The word Pesos is written in gold and the number 10 is written in a contrasting silver. The year 2000 is written on the bottom of the coin. The edge of the coin has a decorative border with the words \"Las Memorias Tan Ilustradas Ours Cuentan\" written on it.", - "id": 19053 - }, - { - "image_path": "/content/drive/MyDrive/combined/241e3d884fb15817.jpg", - "response": "a sink with a silver coin, a gold coin, a crystal, a black stone, a coin in a plastic case, and a paperweight on it", - "id": 19054 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d7527c2f7b1a431.jpg", - "response": "A Canadian quarter with a deer on it.", - "id": 19055 - }, - { - "image_path": "/content/drive/MyDrive/combined/33b71d95c219e055.jpg", - "response": "A collection of coins including a\u954d\u5236\u768425\u7f8e\u5206\u3001\u4e00\u4e2a\u5e26\u6709Abraham Lincoln\u5934\u50cf\u7684\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709Thomas Jefferson\u5934\u50cf\u7684\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709Abraham Lincoln\u5934\u50cf\u7684\u954d\u52365\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709Abraham Lincoln\u5934\u50cf\u7684\u954d\u52361\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709Copy\u7684\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52365\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u52361\u7f8e\u5143\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u523625\u7f8e\u5206\u786c\u5e01\u3001\u4e00\u4e2a\u5e26\u6709COPY\u7684\u91d1\u8272\u954d\u5236", - "id": 19056 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba1676d58f3596d.jpg", - "response": "A coin that says good for one bottle on it.", - "id": 19057 - }, - { - "image_path": "/content/drive/MyDrive/combined/21e9228f5996a802.jpg", - "response": "Two sides of a gold coin with the word Showbiz Pizza Place on it.", - "id": 19058 - }, - { - "image_path": "/content/drive/MyDrive/combined/4244863129f565a3.jpg", - "response": "A close up of a coin that is made by the United States of America.", - "id": 19059 - }, - { - "image_path": "/content/drive/MyDrive/combined/4139e8bdb518ded0.jpg", - "response": "A 50 Pfennig coin from 1970. The obverse shows the coat of arms of the Federal Republic of Germany, a black eagle on a white background. The eagle is perched on a bundle of five arrows, which are themselves on a shield. Above the eagle is the word \"Deutschland\", and below it is the word \"REPUBLIK\". The date \"1970\" is written below the eagle. The reverse shows a woman kneeling on one knee, holding a sheaf of wheat in her hands. She is wearing a traditional dirndl. Above her is the word \"Deutschland\", and below it is \"50 Pfennig\". The date \"1970\" is written below the woman.", - "id": 19060 - }, - { - "image_path": "/content/drive/MyDrive/combined/18642c0b399409c8.jpg", - "response": "A 1960 Lincoln penny with a mustache made out of tape on it.", - "id": 19061 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e2690388bd44e6c.jpg", - "response": "a display case with gold and silver coins", - "id": 19062 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a814bbda03f496.jpg", - "response": "The image shows a close up of a silver 1969 Kennedy half dollar coin. The coin is displayed on a white background. The coin has a reeded edge. The word \"Liberty\" is visible on the edge of the coin. The date \"1969\" is visible on the coin. The word \"IN GOD WE TRUST\" is visible below Kennedy's head. The word \"1969\" is also visible on the coin.", - "id": 19063 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ef8241e04483b1.jpg", - "response": "A coin with a lion on it.", - "id": 19064 - }, - { - "image_path": "/content/drive/MyDrive/combined/4279fe0a8e259b12.jpg", - "response": "A collection of four coins with the date 2008 on them.", - "id": 19065 - }, - { - "image_path": "/content/drive/MyDrive/combined/2189b06494b511bb.jpg", - "response": "An old advertisement for The American Cotton Oil Co. with four circles showing women doing different activities. The text is in red and black and the company is located at 29 Broadway in New York.", - "id": 19066 - }, - { - "image_path": "/content/drive/MyDrive/combined/2548d473508a80a9.jpg", - "response": "A pile of Queen Elizabeth II silver coins. The image is in black and white.", - "id": 19067 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e56656524c837fe.jpg", - "response": "The image features a USB to Ethernet adapter next to a quarter for scale. The USB to Ethernet adapter is a small circuit board with an Ethernet port on one end and a USB connection on the other. The board is mounted on a small red board, which is also visible in the image. The quarter is placed next to the USB to Ethernet adapter to provide a sense of scale and to show that the adapter is relatively small.", - "id": 19068 - }, - { - "image_path": "/content/drive/MyDrive/combined/30dd60a7d5ff965e.jpg", - "response": "A coin with a boat and two birds on it.", - "id": 19069 - }, - { - "image_path": "/content/drive/MyDrive/combined/19454dfcfd418436.jpg", - "response": "A white table with three coins on top of it. The coins are dimes and are tarnished.", - "id": 19070 - }, - { - "image_path": "/content/drive/MyDrive/combined/25d22b0763daf323.jpg", - "response": "In the image there is a pile of various coins, both gold and silver in color. Some of the coins are facing upwards, while others are facing downward. The pile of coins is situated on a white surface and is quite large.", - "id": 19071 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ea585bdf36c8b63.jpg", - "response": "A close up of a Dutch coin from 1993 with the queen's crest on it.", - "id": 19072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f7f91dbb391e4e6.jpg", - "response": "A 1964 and a 1966 Irish 10 Pence side by side.", - "id": 19073 - }, - { - "image_path": "/content/drive/MyDrive/combined/173de55138d66a77.jpg", - "response": "In the image, there are many different coins scattered across a wooden table. The coins are a mix of both dimes and quarters, and some are facing up while others are facing down. The table is a light brown color and the coins themselves come in various shades of brown and silver.", - "id": 19074 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f0ab27b9b126b68.jpg", - "response": "A display case with ancient coins and a map.", - "id": 19075 - }, - { - "image_path": "/content/drive/MyDrive/combined/3293ca11053da213.jpg", - "response": "A bronze plaque with gold writing on it.", - "id": 19076 - }, - { - "image_path": "/content/drive/MyDrive/combined/197c5fe966c56c3e.jpg", - "response": "A coin showing a whale and the year 1985.", - "id": 19077 - }, - { - "image_path": "/content/drive/MyDrive/combined/34039c85f3bdbaa1.jpg", - "response": "A close up of five coins on a wooden table. The coins are spread out and include two silver coins and three copper coins.", - "id": 19078 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e2208a5295c38d.jpg", - "response": "A map of San Francisco with many coins and a dollar bill on top of it.", - "id": 19079 - }, - { - "image_path": "/content/drive/MyDrive/combined/356506ac81a8d53b.jpg", - "response": "A coin with the word zbornina on it", - "id": 19080 - }, - { - "image_path": "/content/drive/MyDrive/combined/2777ecc9aa3e838b.jpg", - "response": "In the image there is a pile of silver bitcoin coins on a white sheet. The coins are spread out and some of them are facing up while others are facing down.", - "id": 19081 - }, - { - "image_path": "/content/drive/MyDrive/combined/4eab4b8d867dd91f.jpg", - "response": "The image shows two Mexican coins, a 10 peso coin and a 20 peso coin, laid out on a table. The 10 peso coin has an eagle on it and the 20 peso coin has a palm tree on it. Both coins have writing in both Spanish and Arabic.", - "id": 19082 - }, - { - "image_path": "/content/drive/MyDrive/combined/52e397095216d3ff.jpg", - "response": "A coin that is in someones hand.", - "id": 19083 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a881ffca84213e7.jpg", - "response": "A commemorative coin for Mount Everest summit.", - "id": 19084 - }, - { - "image_path": "/content/drive/MyDrive/combined/64a423e12904cc78.jpg", - "response": "A close up of a 1 Euro coin from 2002. The coin has an eagle on it with wings spread. The word \"EAGLE\" is under the eagle. The year 2002 is under the eagle and below the word \"EAGLE\". The coin is surrounded by 12 stars, 6 on each side. The star on the left is larger than the others. The coin is on a white background.", - "id": 19085 - }, - { - "image_path": "/content/drive/MyDrive/combined/459255f810bffb49.jpg", - "response": "a metal plate that says 1859 on it", - "id": 19086 - }, - { - "image_path": "/content/drive/MyDrive/combined/4881f3c37274006e.jpg", - "response": "A silver coin with a QR code on it.", - "id": 19087 - }, - { - "image_path": "/content/drive/MyDrive/combined/549bbd5d7c036e1d.jpg", - "response": "A 20 cent coin from 1961 with Queen Elizabeth II on it.", - "id": 19088 - }, - { - "image_path": "/content/drive/MyDrive/combined/49c457e66152a436.jpg", - "response": "A coin with the word MIDDLESHIRE on it", - "id": 19089 - }, - { - "image_path": "/content/drive/MyDrive/combined/44ed7184a8bb30ba.jpg", - "response": "In the image there is a pile of coins and a 2 dollar bill on a wooden surface. The coins are spread out on the table.", - "id": 19090 - }, - { - "image_path": "/content/drive/MyDrive/combined/42abcf8bfb73a118.jpg", - "response": "In the image there is a display showing the number of coins and the amount of MP of a character in a game. The game appears to be a slot machine type game. The display shows that the character has 78 coins and 10,000 MP. The game also has buttons to play the game.", - "id": 19091 - }, - { - "image_path": "/content/drive/MyDrive/combined/465bbacb7fc9baf8.jpg", - "response": "A close up of a coin with a year of the dragon on it.", - "id": 19092 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cb9aa5f99c480dd.jpg", - "response": "A coin is in the center of a circle that is in the sand. The circle has the words \"Monument\" around it.", - "id": 19093 - }, - { - "image_path": "/content/drive/MyDrive/combined/556a9a34f33c75fc.jpg", - "response": "A coin with an elaborate script on it in Arabic.", - "id": 19094 - }, - { - "image_path": "/content/drive/MyDrive/combined/552149a06cf2fdcb.jpg", - "response": "A white background with many different types of luggage tags on it.", - "id": 19095 - }, - { - "image_path": "/content/drive/MyDrive/combined/54667cb8183bd7a6.jpg", - "response": "A 10 cent Euro coin on a blue background.", - "id": 19096 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca9d2d3d49c9e95.jpg", - "response": "A chocolate coin with a picture of a man on it.", - "id": 19097 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fec049ce9dde806.jpg", - "response": "A screen shot of the Department of Justice website with a notice that Attorney General Holder directs the department to include gender identity under sex discrimination.", - "id": 19098 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ebf1e5bca3d1c15.jpg", - "response": "A wallet filled with British pounds and coins.", - "id": 19099 - }, - { - "image_path": "/content/drive/MyDrive/combined/5208df726509946c.jpg", - "response": "A close up of a gold coin with the face of a man on it.", - "id": 19100 - }, - { - "image_path": "/content/drive/MyDrive/combined/8ff45a7751923320.jpg", - "response": "A silver coin with the ship on it.", - "id": 19101 - }, - { - "image_path": "/content/drive/MyDrive/combined/c38407369b19347a.jpg", - "response": "A metal medallion on the sidewalk that says Boston The Freedom Trail.", - "id": 19102 - }, - { - "image_path": "/content/drive/MyDrive/combined/e66bc25860828fc2.jpg", - "response": "In the image there is a pile of various Canadian coins. The largest coin is a silver coin with Queen Elizabeth II's portrait and the date 2012 written on it. Another large coin is a gold coin with a maple leaf on it. There are also many other coins of different sizes and colors.", - "id": 19103 - }, - { - "image_path": "/content/drive/MyDrive/combined/10e89f734c9d115b.jpg", - "response": "A keyboard with a grey and white color scheme.", - "id": 19104 - }, - { - "image_path": "/content/drive/MyDrive/combined/23aa67fffa5930eb.jpg", - "response": "A keyboard with the letters O P on it.", - "id": 19105 - }, - { - "image_path": "/content/drive/MyDrive/combined/249f026d27bf58a3.jpg", - "response": "In the image there is a black keyboard with white lit up letters. The keys are in a semi circle pattern. The keys that are visible are K, L, M, N, O, P, and Q.", - "id": 19106 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f0688f491a5dfee.jpg", - "response": "The image shows a close up of a keyboard on a laptop. The keys are all black and white and are arranged in rows. The rows are labeled with the letters of the alphabet and the numbers 0-9. The space bar is also visible, and it is slightly to the right of the center of the keyboard.", - "id": 19107 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a8a818d9135b1f8.jpg", - "response": "a laptop keyboard with a name tag patch on it that says clemson", - "id": 19108 - }, - { - "image_path": "/content/drive/MyDrive/combined/2262bca4b9aee416.jpg", - "response": "A black keyboard with white lettering and symbols.", - "id": 19109 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a432854d0e68366.jpg", - "response": "A keyboard and a piece of paper on a desk.", - "id": 19110 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e355f89ab8c3522.jpg", - "response": "The image features a table with a variety of keyboards on it. There are at least seven keyboards in total, with some placed closer to the foreground and others further back on the table. In addition to the keyboards, there is a laptop positioned to the left of the table. The table is likely a long, rectangular shape, and it is sitting on a wooden surface.", - "id": 19111 - }, - { - "image_path": "/content/drive/MyDrive/combined/20c1f0b34919a14d.jpg", - "response": "A keyboard with a key that says webVDEO on it.", - "id": 19112 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a299f3e5ee9be07.jpg", - "response": "The image shows a close up of a black keyboard. The keys are labeled with white lettering and the space bar is also black. The keyboard is sitting on a desk in front of a computer screen.", - "id": 19113 - }, - { - "image_path": "/content/drive/MyDrive/combined/219cdb2dee412c30.jpg", - "response": "The image shows a close up of a computer keyboard. The keys are black and white and some of them are glowing blue. The glow is coming from behind the keys, which suggests that they have a lighted feature. The letters on the keys are white and they spell out the letters A, W, S, and D.", - "id": 19114 - }, - { - "image_path": "/content/drive/MyDrive/combined/07e81c895db08e5f.jpg", - "response": "A white computer keyboard sitting on a red desk.", - "id": 19115 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b8ef0f31361caa8.jpg", - "response": "A keyboard with gray keys and a dark gray spacebar.", - "id": 19116 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a76f0162154cf87.jpg", - "response": "A keyboard with white keys and black keys sits on a white desk.", - "id": 19117 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2484e7ec53d999.jpg", - "response": "A pair of sunglasses is sitting on top of a laptop. The laptop is black and silver in color and has a keyboard.", - "id": 19118 - }, - { - "image_path": "/content/drive/MyDrive/combined/18cbaedf8ff8946a.jpg", - "response": "A computer keyboard with a pen on top of it.", - "id": 19119 - }, - { - "image_path": "/content/drive/MyDrive/combined/08cab11029292aa2.jpg", - "response": "A keyboard with a white color scheme and gray keys.", - "id": 19120 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d20e221468157c.jpg", - "response": "A person is holding the keyboard from a laptop.", - "id": 19121 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b2cf4cda57bb76.jpg", - "response": "A keyboard with a green enter key that says \"Access\" on it.", - "id": 19122 - }, - { - "image_path": "/content/drive/MyDrive/combined/09fc6d507f8c9511.jpg", - "response": "a keyboard that is black and white", - "id": 19123 - }, - { - "image_path": "/content/drive/MyDrive/combined/22af79ef0701b760.jpg", - "response": "The image shows a close up of a laptop keyboard. The keys are black and white and are spread across the keyboard. The space bar is also visible, it is located towards the bottom of the keyboard.", - "id": 19124 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b5eaba2d6ab9d5.jpg", - "response": "The image shows a close up view of a laptop keyboard. The keys are gray and white in color. The letters on the keys are black. The keys are arranged in rows, with the top row containing the function keys, the second row containing the A to Z keys, the third row containing the A to Z keys again in a different orientation, and the fourth row containing the 0 to 9 keys. The space bar is also visible, occupying a significant portion of the bottom row. The background behind the keyboard is blurred, with a blue screen in the top left corner.", - "id": 19125 - }, - { - "image_path": "/content/drive/MyDrive/combined/19021cf8007e6d8b.jpg", - "response": "A white keyboard sitting on a wooden table.", - "id": 19126 - }, - { - "image_path": "/content/drive/MyDrive/combined/20999c3a9c2e6b08.jpg", - "response": "A MacBook Air laptop computer.", - "id": 19127 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac2fe73a0fdb882.jpg", - "response": "A blue keyboard with wires attached to it.", - "id": 19128 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c1190e1a2f3d89.jpg", - "response": "A keyboard with white keys and black lettering.", - "id": 19129 - }, - { - "image_path": "/content/drive/MyDrive/combined/09997f81ae0a4328.jpg", - "response": "A keyboard with a small screen on top of it that says \"League of Legends\" on it.", - "id": 19130 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b3ea348d7c593aa.jpg", - "response": "The image shows a close up of a black laptop computer keyboard. The keys are small and white with black lettering and a red power button in the middle of the space bar. The laptop is sitting on a tan carpet.", - "id": 19131 - }, - { - "image_path": "/content/drive/MyDrive/combined/137ae08b9d1e6391.jpg", - "response": "A white Commodore 64 box is open on the floor.", - "id": 19132 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1123b788e4353a.jpg", - "response": "A black and silver keyboard sitting on a wooden desk.", - "id": 19133 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba94d4263ce842d.jpg", - "response": "An open laptop computer with a pair of red and black ear buds plugged into the side.", - "id": 19134 - }, - { - "image_path": "/content/drive/MyDrive/combined/20391a906b3856a9.jpg", - "response": "A desk with a computer, keyboard, mouse, and a monitor that says \"Webconverge\" on the screen.", - "id": 19135 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b08f75389cd681.jpg", - "response": "A black computer keyboard sitting on a wooden desk.", - "id": 19136 - }, - { - "image_path": "/content/drive/MyDrive/combined/1be77db0b0be9d65.jpg", - "response": "A keyboard, a camera flash, a camera battery and charger, and a remote control are sitting on a desk.", - "id": 19137 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cf430ef6492efa6.jpg", - "response": "A keyboard on a desk with two papers in front of it.", - "id": 19138 - }, - { - "image_path": "/content/drive/MyDrive/combined/254da747d8381b64.jpg", - "response": "A table with a laptop computer on it and a person's hand writing on a piece of paper.", - "id": 19139 - }, - { - "image_path": "/content/drive/MyDrive/combined/202412d54befbdd1.jpg", - "response": "A keyboard with white and black keys.", - "id": 19140 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e30c6fe7c48db41.jpg", - "response": "a laptop with a black keyboard sitting on a wooden table.", - "id": 19141 - }, - { - "image_path": "/content/drive/MyDrive/combined/0efb0ebc609044dc.jpg", - "response": "The image shows a close up view of a black and white keyboard. The keys are arranged in rows and have various symbols and letters on them. The space bar is white and longer than the other keys. There is a red key to the right of the space bar. The keyboard is sitting on a black surface.", - "id": 19142 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f7ad7273543715d.jpg", - "response": "In the image there is a person with their arm resting on a laptop. The laptop is a dark grey color and the person's arm matches the color of the laptop. The laptop has a keyboard on the right side of the image and a mouse on the left side of the image. The mouse is wireless and has a grey color with a red light in the bottom.", - "id": 19143 - }, - { - "image_path": "/content/drive/MyDrive/combined/117f068bd5b4cb2f.jpg", - "response": "The image shows two computer keyboards sitting on a desk. One is a Microsoft brand keyboard and the other is a Sven brand keyboard. They are both black and have gray keys. One of the keyboards is curved and has a wrist rest. The keyboards are sitting on a wooden desk.", - "id": 19144 - }, - { - "image_path": "/content/drive/MyDrive/combined/173ec59258b40567.jpg", - "response": "An apple keyboard with white keys and a white background.", - "id": 19145 - }, - { - "image_path": "/content/drive/MyDrive/combined/234197501c88149c.jpg", - "response": "A laptop computer with a track pad and keyboard.", - "id": 19146 - }, - { - "image_path": "/content/drive/MyDrive/combined/0919842b32156e39.jpg", - "response": "A black keyboard with a touchpad on it.", - "id": 19147 - }, - { - "image_path": "/content/drive/MyDrive/combined/16d43c53d4725200.jpg", - "response": "A computer mouse with the word \"emobile\" on it is sitting on a computer keyboard.", - "id": 19148 - }, - { - "image_path": "/content/drive/MyDrive/combined/09f79724f373c7dc.jpg", - "response": "A laptop computer sitting on a table next to another laptop computer.", - "id": 19149 - }, - { - "image_path": "/content/drive/MyDrive/combined/07df18f0708965dc.jpg", - "response": "A black laptop with the Google Chrome logo on the screen.", - "id": 19150 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f951c36663a7f3e.jpg", - "response": "A table with a white keyboard on it and a sign behind it.", - "id": 19151 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fdff6396855f6c1.jpg", - "response": "The image features a wooden desk with a laptop computer sitting on it. In front of the laptop is a large, black keyboard with a small, black number pad attached. The keys on the keyboard have green illumination. There is also a black cord attached to the laptop. On the desk, there is a bottle with a white label and a white cord. Additionally, there is a book on the left side of the desk and a black box on the right side.", - "id": 19152 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c775e702115cabf.jpg", - "response": "A lenovo laptop with a circuit board and a red light on it.", - "id": 19153 - }, - { - "image_path": "/content/drive/MyDrive/combined/259000db6d123e9f.jpg", - "response": "A close up of a black keyboard with white lettering. The keys are in rows and include numbers and letters.", - "id": 19154 - }, - { - "image_path": "/content/drive/MyDrive/combined/1366c4c6c07f48e0.jpg", - "response": "A close up of a MacBook Air keyboard.", - "id": 19155 - }, - { - "image_path": "/content/drive/MyDrive/combined/099044d0b15548af.jpg", - "response": "A laptop keyboard is shown in a dark room. The keys are lit up and the letters are white. The space bar is particularly large.", - "id": 19156 - }, - { - "image_path": "/content/drive/MyDrive/combined/166e810760d14b8e.jpg", - "response": "A black laptop computer sitting on a white desk.", - "id": 19157 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb77e6fff92ac08.jpg", - "response": "The image shows a close up of a keyboard with the keys in blue. The keys are labeled with white lettering and numbers. The letters on the keys include Z, X, S, D, and E. The numbers include 2, 3, 4, 5, and 6. The keyboard is sitting on a blue surface.", - "id": 19158 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f625e7b3f9e25b.jpg", - "response": "a person is playing a musical instrument", - "id": 19159 - }, - { - "image_path": "/content/drive/MyDrive/combined/207623bc7f20190d.jpg", - "response": "A keyboard with a key missing and a sticker over the hole.", - "id": 19160 - }, - { - "image_path": "/content/drive/MyDrive/combined/09082e7d1c76329f.jpg", - "response": "A white keyboard with a sticker on it.", - "id": 19161 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fe1ff89a5a01c07.jpg", - "response": "The image shows a close up of a laptop keyboard. The keys are all white and there is a silver spacebar. The 'E' key is lit up by a blue light.", - "id": 19162 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cee7fa065438db4.jpg", - "response": "a keyboard that is silver in color and has many keys on it", - "id": 19163 - }, - { - "image_path": "/content/drive/MyDrive/combined/2541036f3cfb1432.jpg", - "response": "In the image there is a black keyboard with white lettering. The keys are not in order and are scattered around the image. The background is black and the keyboard is slightly illuminated.", - "id": 19164 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ba21ce1157001d.jpg", - "response": "A hand hovering over a black and white keyboard.", - "id": 19165 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bf27cdc33ede773.jpg", - "response": "A man wearing a virtual reality headset is sitting at a desk with a laptop. He is playing a game on the laptop and appears to be fully immersed in the experience. The laptop is open and in front of him, and he is using a wireless controller to interact with the game.", - "id": 19166 - }, - { - "image_path": "/content/drive/MyDrive/combined/4030dbb933bd1934.jpg", - "response": "In the image there is a person that is typing on a keyboard. The keyboard is in English and it has white letters. The background is black. The person that is typing is only a finger with the nail visible.", - "id": 19167 - }, - { - "image_path": "/content/drive/MyDrive/combined/31f8ecacd03f55e0.jpg", - "response": "In the image, there are two people sitting at a desk wearing military uniforms. They are both looking at a laptop computer in front of them. The man is sitting closer to the front of the desk, while the woman is slightly further back. There are several other electronic devices on the desk, including two cell phones and a mouse. There are also many cords and wires connecting the devices.", - "id": 19168 - }, - { - "image_path": "/content/drive/MyDrive/combined/36ab0ae0998bfd7b.jpg", - "response": "A white laptop computer with a black screen.", - "id": 19169 - }, - { - "image_path": "/content/drive/MyDrive/combined/36f47ad8b2c46c6b.jpg", - "response": "A black keyboard with white lettering and symbols.", - "id": 19170 - }, - { - "image_path": "/content/drive/MyDrive/combined/30b5dcd24edcc6ca.jpg", - "response": "In the image there is a laptop computer sitting on top of a yellow box. The laptop is open and has a black and red keyboard. The laptop is also sitting on top of a white and blue box. The laptop has a monitor that is turned off. The laptop is also sitting on top of a white and redLenovo notebook.", - "id": 19171 - }, - { - "image_path": "/content/drive/MyDrive/combined/447eb8c049c70e8f.jpg", - "response": "A black and green laptop computer sitting on top of a table.", - "id": 19172 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad395cae3852d5d.jpg", - "response": "The image features a Ryos MK Pro Mechanical Gaming Keyboard with a large rectangular black box sitting on top of it. The box is open and has a diagram of the keyboard on it. The keyboard is black with blue lighting and has a variety of keys, including a function key cluster and a series of arrow keys. The space bar is also labeled as a \"M\" key. The diagram on the box shows the layout of the keyboard and the different functions of the keys. The diagram also shows the location of the USB ports and the braided cable. The keyboard is also labeled as being from the United States.", - "id": 19173 - }, - { - "image_path": "/content/drive/MyDrive/combined/39006d2d72f966cc.jpg", - "response": "A close up of a keyboard with a dark blue and green light shining on it. The numbers 1, 9 and 0 are illuminated.", - "id": 19174 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b897e38e5398cae.jpg", - "response": "A table with a keyboard, a small box, a clear box with a small computer inside, a pack of memory cards, and a small piece of hardware.", - "id": 19175 - }, - { - "image_path": "/content/drive/MyDrive/combined/365630e90e8aaf35.jpg", - "response": "A man is sitting at a desk playing a video game on a laptop. The laptop is on a desk and there is a cup on the desk as well. There are also two people in the background of the image.", - "id": 19176 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2c9141388fcf06.jpg", - "response": "A keyboard with white keys and grey lettering.", - "id": 19177 - }, - { - "image_path": "/content/drive/MyDrive/combined/37da5237c72f53c5.jpg", - "response": "A laptop computer sitting on top of a wooden table.", - "id": 19178 - }, - { - "image_path": "/content/drive/MyDrive/combined/389c1a6eec7d63de.jpg", - "response": "An open white laptop sitting on a wooden table.", - "id": 19179 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b4449c39aa9f52b.jpg", - "response": "The image shows a black Toshiba laptop that is open and facing to the right. The laptop has a black screen and keyboard and is sitting on a white surface. The laptop is not connected to the internet and the mouse pointer is disabled.", - "id": 19180 - }, - { - "image_path": "/content/drive/MyDrive/combined/3748a4377f526b11.jpg", - "response": "An open laptop computer sitting on a wooden table.", - "id": 19181 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d22463bbb238136.jpg", - "response": "A keyboard with white keys and grey frame.", - "id": 19182 - }, - { - "image_path": "/content/drive/MyDrive/combined/406565e29bd8e30c.jpg", - "response": "An open laptop computer sitting inside of a box.", - "id": 19183 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb98c5bb502a0e0.jpg", - "response": "A nokia laptop sits on a blue cushion on a couch.", - "id": 19184 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a5ad589cd970d91.jpg", - "response": "An open laptop computer sitting on a white desk.", - "id": 19185 - }, - { - "image_path": "/content/drive/MyDrive/combined/404b9af38e6cd8e2.jpg", - "response": "A keyboard with a mustache drawn on it in black ink.", - "id": 19186 - }, - { - "image_path": "/content/drive/MyDrive/combined/4903363592bebce8.jpg", - "response": "A keyboard with the word rackspace on it.", - "id": 19187 - }, - { - "image_path": "/content/drive/MyDrive/combined/29cad80c5bb8ef66.jpg", - "response": "A laptop computer is sitting on a desk next to a paper.", - "id": 19188 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b919b4060cfdc98.jpg", - "response": "The image features a close up of a laptop on a desk. The laptop is black and has a keyboard with white lettering. The word \"Crack\" is written on the laptop in white lettering with an arrow pointing to the right underneath it. There is also an arrow pointing to the left underneath the word \"Crack\".", - "id": 19189 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f39e477e40f6d6b.jpg", - "response": "The image is a close up of a keyboard. The keys are white and grey.", - "id": 19190 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d145d5194cbf4ee.jpg", - "response": "A Vaio laptop computer sitting on a desk with a power cord plugged into it.", - "id": 19191 - }, - { - "image_path": "/content/drive/MyDrive/combined/372d28ae187eb22c.jpg", - "response": "A white laptop computer sitting on a bed.", - "id": 19192 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fd574c0494aac00.jpg", - "response": "A keyboard with the word \"Realforce\" on it.", - "id": 19193 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ef3e8417c57c8a2.jpg", - "response": "A book is open to a page with red and black text on it. The book is open to a page titled \"Obsenity begins when there is no more spectacle, no stage, no theatre, no more illusions, when every thing becomes transparent, visible, exposed in the raw and inexorable light of information and communication.\"", - "id": 19194 - }, - { - "image_path": "/content/drive/MyDrive/combined/34b4a7c243d49d11.jpg", - "response": "A note card with a letter written in a foreign language.", - "id": 19195 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b442a38fc2ac697.jpg", - "response": "A laptop computer with a screen that says \"Office\" on it.", - "id": 19196 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a537464525c878c.jpg", - "response": "A computer screen displays a website about live updates on the Apple store. The screen is open to a webpage titled \"Live Updates\" and has a header that says \"Customer pool of 225 million accounts with credit cards and one click purchasing.\" Below that, there are several updates listed. The first one is \"Apps have been banned for the first time.\" The second one is \"Apps from Google and HBO Go.\" The third one is \"Apps cover every genre, showing a few different types of games.\" The fourth one is \"In less than 3 years, \"Amazing\" has been downloaded 425,000 times.\" The fifth one is \"Thinking developers for making the App Store.\" The sixth one is \"130 million songs downloaded.\" The seventh one is \"Relaunched a year ago, six major publishers signed up.\" The eighth one is \"15 million songs listed on the iTunes music store.\" The ninth one is \"Preliminary including 1 and 2 million Apple iPad 2 launch, 25 million iPads sold in the first 14 months.\" The tenth one is \"An amazing product 2, how great it is.\" The eleventh one is \"A new free update system with 64% of the market.\" The twelfth one is \"That makes Quick update free for iOS, to date, sold over 200 million devices.\" The thirteenth one is \"Available for everyone else in July.\" The fourteenth one is \"Install on all macs like all Mac app store apps.\" The last one is \"Server sent another 225.4k new app and 200.2k update.\"", - "id": 19197 - }, - { - "image_path": "/content/drive/MyDrive/combined/3100b88584dba89b.jpg", - "response": "A black keyboard with white and blue lettering.", - "id": 19198 - }, - { - "image_path": "/content/drive/MyDrive/combined/39d2a11c2ff085ed.jpg", - "response": "A keyboard sitting on display behind a glass case.", - "id": 19199 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ee771fe04b07f3.jpg", - "response": "The image shows a table with ten different computer keyboards laid out on it. The keyboards are of various colors and styles, including black and white models. Some of the keyboards are labeled with small white cards that say \"EMS\" and \"E-04\". A monitor is also present on the table. The table is placed on a wooden desk.", - "id": 19200 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd628328704a2f5.jpg", - "response": "A laptop with a black and white color scheme. The screen is propped up at an angle and the keyboard is visible.", - "id": 19201 - }, - { - "image_path": "/content/drive/MyDrive/combined/3837e1b811180678.jpg", - "response": "A silver external hard drive next to a silver and black laptop keyboard.", - "id": 19202 - }, - { - "image_path": "/content/drive/MyDrive/combined/35296495ab8ee36a.jpg", - "response": "A man's hairy arm is resting on a laptop keyboard.", - "id": 19203 - }, - { - "image_path": "/content/drive/MyDrive/combined/48acfe2c30a5f823.jpg", - "response": "A black laptop with a silver keyboard.", - "id": 19204 - }, - { - "image_path": "/content/drive/MyDrive/combined/3441bbf19a60fb55.jpg", - "response": "A hand holding a card with the word Kickstarter on it.", - "id": 19205 - }, - { - "image_path": "/content/drive/MyDrive/combined/3093b0e9a763ff5b.jpg", - "response": "A close up of a laptop computer on display.", - "id": 19206 - }, - { - "image_path": "/content/drive/MyDrive/combined/368cbe856a3c915d.jpg", - "response": "a keyboard with a red and white color scheme", - "id": 19207 - }, - { - "image_path": "/content/drive/MyDrive/combined/45e721c2344acfc6.jpg", - "response": "A keyboard with the keys backspace, oops, return, and 2 on it.", - "id": 19208 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fed9ed57cef7f70.jpg", - "response": "The image features a black keyboard sitting on a wooden table. The keyboard is a Logitech model and is designed to work with tablets. Next to the keyboard is a black tablet with a blue stand attached to it. The tablet is also sitting on the wooden table. The keyboard and tablet are positioned in such a way that they are both facing forward and appear to be ready for use.", - "id": 19209 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d3bcefcbf27e5b5.jpg", - "response": "The image features a laptop computer with a key board sitting on a table. There is a container of white pills next to the laptop. The container is shaped like a coffin and has a skull and crossbones sticker on it. The container is open and some of the pills are spilling out.", - "id": 19210 - }, - { - "image_path": "/content/drive/MyDrive/combined/38e2e54528813365.jpg", - "response": "A table with two keyboards on it, one in front of the other.", - "id": 19211 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d016381a844bde0.jpg", - "response": "The image features an open laptop computer with the word \"HP Pavilion 15\" displayed on the screen. The laptop is silver in color and has a black frame around the screen. The keyboard is white and the laptop is sitting on a white surface. The image is focused on the laptop and the screen is bright, making it easy to see the text and logo.", - "id": 19212 - }, - { - "image_path": "/content/drive/MyDrive/combined/426cf8f3799ab832.jpg", - "response": "The image shows a close up of a black computer keyboard. The keys are arranged in rows, with the top row consisting of the function keys, the second row having the letters A to Z, and the third row having the numbers 1 to 0. The enter key is in the middle of the bottom row. The shift key is in the leftmost column, and the alt key is in the rightmost column. The space bar is located below the bottom row of keys.", - "id": 19213 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b0b68ee636a33c0.jpg", - "response": "A laptop computer with a blue bottom and black keys.", - "id": 19214 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cd2e8a48409b787.jpg", - "response": "A picture of a book with the title Media Cafe on the cover.", - "id": 19215 - }, - { - "image_path": "/content/drive/MyDrive/combined/26d9378d1d055421.jpg", - "response": "A laptop computer with a black keyboard and a silver touch pad.", - "id": 19216 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bc692ac0f27b2ba.jpg", - "response": "A laptop keyboard is shown in the dark. The keys are white and black and are arranged in rows. The keys are small and there are numbers and letters on each key. The shift key is rectangular and has a black keycap. The enter key is large and has a black keycap. The space bar is wide and has a black keycap. The backspace key is small and has a white keycap. The alt key is large and has a black keycap. The command key is rectangular and has a black keycap. The option key is rectangular and has a black keycap. The escape key is small and has a white keycap. The tab key is small and has a white keycap. The caps lock key is small and has a white keycap. The shift key is rectangular and has a black keycap. The control key is rectangular and has a black keycap. The alt key is large and has a black keycap. The option key is rectangular and has a black keycap. The escape key is small and has a white keycap. The tab key is small and has a white keycap. The caps lock key is small and has a white keycap.", - "id": 19217 - }, - { - "image_path": "/content/drive/MyDrive/combined/5219e8fbb20ebd73.jpg", - "response": "The image shows a close up of a computer keyboard. The keys are white and grey and there are 12 visible in the image. The keyboard is on a white surface.", - "id": 19218 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fd030b13361a60e.jpg", - "response": "A person is typing on a small laptop computer.", - "id": 19219 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fcbe793ee2ba469.jpg", - "response": "A person holding a black and purple USB cord in front of a computer keyboard.", - "id": 19220 - }, - { - "image_path": "/content/drive/MyDrive/combined/505880494b01c7f2.jpg", - "response": "A person is holding a piece of paper with braille on it in front of a computer.", - "id": 19221 - }, - { - "image_path": "/content/drive/MyDrive/combined/54094556471a0823.jpg", - "response": "A rectangular package with rounded corners and a gold clip on top. The package is 5.0mm x 4.5mm x 1.3mm. It is shown in front of a monitor and a camera.", - "id": 19222 - }, - { - "image_path": "/content/drive/MyDrive/combined/549eff82df7ad33b.jpg", - "response": "In the image there is a silver Apple mouse and a black laptop. The laptop is in the background and the mouse is in the foreground. They are both on a black desk. The laptop is open and the keys are black with white writing. The mouse has a grey body and a white button in the middle. The background is black.", - "id": 19223 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fce89f611921b04.jpg", - "response": "A shelf with a variety of computer keyboards for sale.", - "id": 19224 - }, - { - "image_path": "/content/drive/MyDrive/combined/52612414625e7f90.jpg", - "response": "An open black lenovo laptop sitting on a table.", - "id": 19225 - }, - { - "image_path": "/content/drive/MyDrive/combined/53380b949c7e01a8.jpg", - "response": "An old computer with a keyboard and a monitor.", - "id": 19226 - }, - { - "image_path": "/content/drive/MyDrive/combined/54c079532c02899d.jpg", - "response": "The image shows a close up view of a computer keyboard. The keys are white and have black letters and symbols. The keyboard has a row of numbers and a row of letters, with each letter in a different shade of white. The space bar is also visible, and it is slightly darker than the rest of the keys. The image has a slight blur to it, giving it a slightly soft focus look.", - "id": 19227 - }, - { - "image_path": "/content/drive/MyDrive/combined/500dffdc1b70ff32.jpg", - "response": "A black laptop computer sitting on a desk.", - "id": 19228 - }, - { - "image_path": "/content/drive/MyDrive/combined/529026abdfb2c4cc.jpg", - "response": "A close up of a laptop with a silver touch pad.", - "id": 19229 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fdfca193f210a64.jpg", - "response": "A library display of books on CD, including two books by Jean M. Auel.", - "id": 19230 - }, - { - "image_path": "/content/drive/MyDrive/combined/1040e60e4e810108.jpg", - "response": "A doorway with a poster for Space Ace on the bottom and Dragon's Lair on the top.", - "id": 19231 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f6a79a7bae0a864.jpg", - "response": "A table with several books on it.", - "id": 19232 - }, - { - "image_path": "/content/drive/MyDrive/combined/153f0d610312a736.jpg", - "response": "In the image there is a table filled with various board games. The table has many boxes and the games are displayed in a way that it looks like a store. There are multiple people in the scene, with one man standing near the top right corner of the table and another man standing near the top left corner of the table. There are also two people sitting at a table in the background.", - "id": 19233 - }, - { - "image_path": "/content/drive/MyDrive/combined/1219d8787300cd81.jpg", - "response": "A display case filled with books on travel destinations such as Italy, Spain, France, and other countries.", - "id": 19234 - }, - { - "image_path": "/content/drive/MyDrive/combined/156f85e9bc8a277f.jpg", - "response": "A book shelf with books on it.", - "id": 19235 - }, - { - "image_path": "/content/drive/MyDrive/combined/127ade34dfeda6b8.jpg", - "response": "A collage of a green and blue image of a planet with a pig and a person in a helmet on the bottom right corner. There is a strip of bacon at the top left corner with the words War is peace, Freedom is slavery, Ignorance is strength.", - "id": 19236 - }, - { - "image_path": "/content/drive/MyDrive/combined/105d9cec140079fc.jpg", - "response": "A book open to a page with a recipe for banana meatloaf. The book is open to page 34 and the recipe is called 365 Ways to Cook Hamburger. The recipe is also called Banana Meat Loaf.", - "id": 19237 - }, - { - "image_path": "/content/drive/MyDrive/combined/144b549dab3888b8.jpg", - "response": "A close up of a row of books on a bookshelf.", - "id": 19238 - }, - { - "image_path": "/content/drive/MyDrive/combined/114eda0bca0a2b86.jpg", - "response": "A large stack of CD's on a table.", - "id": 19239 - }, - { - "image_path": "/content/drive/MyDrive/combined/14437a321e577d94.jpg", - "response": "A book by Annie Proulx, Postcards, is lying on the ground.", - "id": 19240 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f677f90d2263930.jpg", - "response": "A group of people standing around a table with many books on it.", - "id": 19241 - }, - { - "image_path": "/content/drive/MyDrive/combined/1051d5b787ae5ed4.jpg", - "response": "The back of a book with a man's photo and his name, Day Keene, on it.", - "id": 19242 - }, - { - "image_path": "/content/drive/MyDrive/combined/13f374c0dd630bdf.jpg", - "response": "An open book on a table.", - "id": 19243 - }, - { - "image_path": "/content/drive/MyDrive/combined/133a6318069aa5b9.jpg", - "response": "An open magazine with a page titled Tipping the Fez. The page has a picture of a castle and a tower. The castle has a large tower with a flag on top. The tower is made of red bricks and has a pointed top. The castle is surrounded by a moat. The castle is also in front of a large brick wall.", - "id": 19244 - }, - { - "image_path": "/content/drive/MyDrive/combined/117d0974b364be57.jpg", - "response": "The image shows a close-up of a collection of DVDs and Blu-rays, which are arranged in a row on a blue shelf. The titles of the movies are not visible, but the collection includes multiple movies, as evidenced by the many cases visible in the image. The movies are of different sizes and shapes, and some of them have red, white, and blue labels. The collection is likely a diverse mix of genres and styles, as there are movies from different eras and countries represented.", - "id": 19245 - }, - { - "image_path": "/content/drive/MyDrive/combined/14c713b4da997551.jpg", - "response": "A book with the title \"Killdozer\" on the cover.", - "id": 19246 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f2510d746e54ab0.jpg", - "response": "A woman standing in front of a sign advertising a seafood restaurant.", - "id": 19247 - }, - { - "image_path": "/content/drive/MyDrive/combined/136c14e123c01b46.jpg", - "response": "An open book with pages of text and a red dot on the right page.", - "id": 19248 - }, - { - "image_path": "/content/drive/MyDrive/combined/13065adb563cae8a.jpg", - "response": "A collection of magazines on a table, including Cinemagic and New Scientist.", - "id": 19249 - }, - { - "image_path": "/content/drive/MyDrive/combined/13f7405e6b29717d.jpg", - "response": "A wall of books on a shelf.", - "id": 19250 - }, - { - "image_path": "/content/drive/MyDrive/combined/130bef8311f5307f.jpg", - "response": "A book with a man's face on the cover.", - "id": 19251 - }, - { - "image_path": "/content/drive/MyDrive/combined/12367f3851a5b745.jpg", - "response": "The image is a book that is open to two pages. The book is about programming and has several different languages listed including Pascal/MT+ and Basic Compiler. There is a binder clip holding the pages together and a pen laying on top of the book.", - "id": 19252 - }, - { - "image_path": "/content/drive/MyDrive/combined/10165e8bac12b804.jpg", - "response": "A book with the title \"The Nanjing Massacre in History and Historiography\" on a table.", - "id": 19253 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eeada17d0d6513d.jpg", - "response": "A book with a red spine and black text on it.", - "id": 19254 - }, - { - "image_path": "/content/drive/MyDrive/combined/120d6ee3b5a4dbe7.jpg", - "response": "A black and white poster for a rodeo event that is called RODEO! and is held in February and July. The event is in Kissimmee, Florida. The poster features a cowboy on a bucking horse.", - "id": 19255 - }, - { - "image_path": "/content/drive/MyDrive/combined/13b51dc44bcc78a5.jpg", - "response": "A black table with two books on top of it. The books are by Kurt Vonnegut and are in a red and green cover.", - "id": 19256 - }, - { - "image_path": "/content/drive/MyDrive/combined/13eceb27b991f274.jpg", - "response": "A man standing at a podium in front of a presentation screen.", - "id": 19257 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f8e2dc8c5ef4a82.jpg", - "response": "A book shelf with many books on it.", - "id": 19258 - }, - { - "image_path": "/content/drive/MyDrive/combined/10ad614dcce70743.jpg", - "response": "A book cover with the title Christgau's Consumer Guide: Albums of the '90s.", - "id": 19259 - }, - { - "image_path": "/content/drive/MyDrive/combined/11241193594a91e9.jpg", - "response": "A painting of a tree with a person sitting under it.", - "id": 19260 - }, - { - "image_path": "/content/drive/MyDrive/combined/142d9314847fca4a.jpg", - "response": "The image is a room with a yellow wall and wooden floor. There are three large Dunk magazine posters on the wall. One features a man in a blue shirt and jeans standing next to a bicycle, another features a woman in a black and pink dress, and the third one has a man in a black shirt and blue jeans holding a skateboard. The posters are about two and a half times as tall as the man in the blue shirt.", - "id": 19261 - }, - { - "image_path": "/content/drive/MyDrive/combined/11a992c2e5ab1915.jpg", - "response": "A man wearing a black suit and tie standing at a podium.", - "id": 19262 - }, - { - "image_path": "/content/drive/MyDrive/combined/10c467d3504d0c90.jpg", - "response": "A bookshelf with a variety of books on it.", - "id": 19263 - }, - { - "image_path": "/content/drive/MyDrive/combined/1027fbabbbdf5ccb.jpg", - "response": "The Book of Lost Places is a book written by Jeff VanderMeer.", - "id": 19264 - }, - { - "image_path": "/content/drive/MyDrive/combined/14297a09cd0704df.jpg", - "response": "A close up of a row of books on a shelf.", - "id": 19265 - }, - { - "image_path": "/content/drive/MyDrive/combined/1590a90dfc8e070c.jpg", - "response": "An old book is open on a table. The book is in a brown wooden book holder. The pages are yellowed and the book is open to the middle.", - "id": 19266 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee6f9cf15c80685.jpg", - "response": "A handwritten book is open to a page with many words on it. The book is bound in brown leather and the pages are yellowed. The writing is in black ink.", - "id": 19267 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a8d2e2dec32d84.jpg", - "response": "A stack of cd's including one by Ella Fitzgerald and Louis Armstrong.", - "id": 19268 - }, - { - "image_path": "/content/drive/MyDrive/combined/127ef2d19dfca9f9.jpg", - "response": "An open book with a blue plan on the right page.", - "id": 19269 - }, - { - "image_path": "/content/drive/MyDrive/combined/149d5dd82929d499.jpg", - "response": "A booth with two men sitting at a table with many books and posters around them.", - "id": 19270 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e9a6ddf786089d.jpg", - "response": "A magazine with a cover of a group of people on it.", - "id": 19271 - }, - { - "image_path": "/content/drive/MyDrive/combined/19fd0a220cdee69e.jpg", - "response": "A pile of books on a wooden table.", - "id": 19272 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a85c4d3c76d63c.jpg", - "response": "The image is a book cover from 1782. The title is Patti di Dedizione and is in Italian. The title is in a decorative black font on a white background. The title is followed by a decorative floral design. The book is published by Bergamo and printed by Da Francesco Locatelli. The date of 1782 is also printed on the cover.", - "id": 19273 - }, - { - "image_path": "/content/drive/MyDrive/combined/16ac9c5ac165c48f.jpg", - "response": "A black shelf filled with Street Commodities trading cards.", - "id": 19274 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b980a98cc42a53.jpg", - "response": "A conference name tag on a keychain lanyard for Kevin Jarrett from NCS-Tech Press. The tag has a clip to attach it to a shirt or jacket. The lanyard is attached to a pile of books and brochures.", - "id": 19275 - }, - { - "image_path": "/content/drive/MyDrive/combined/18080be3d85664f8.jpg", - "response": "A stack of books, including works by William Hope Hodgson, Stacey Levine, and others.", - "id": 19276 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6b9399605f606f.jpg", - "response": "A can of Coca Cola Zero sits on a counter.", - "id": 19277 - }, - { - "image_path": "/content/drive/MyDrive/combined/19216f9956a62af4.jpg", - "response": "A book display in a bookstore, showcasing two books by Margaret MacMillan. The books are \"Paris 1919\" and \"Nixon in China\".", - "id": 19278 - }, - { - "image_path": "/content/drive/MyDrive/combined/17f184cad1ba4d19.jpg", - "response": "A table with a sign on it that says \"post card chocolate\" and has a price of 3.50.", - "id": 19279 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a7fc7a1307d1f29.jpg", - "response": "A book cover for the book \"Sexus\" by Henry Miller. The cover is red with black text. The title is in large black letters at the top of the cover and the author's name is below in smaller black letters. There is a white rectangle in the center of the cover with the title of the book in smaller black letters. The price of the book is listed at $1.25.", - "id": 19280 - }, - { - "image_path": "/content/drive/MyDrive/combined/188a12a06f4c60eb.jpg", - "response": "a paper with writing on it that is on a table", - "id": 19281 - }, - { - "image_path": "/content/drive/MyDrive/combined/15abd847ced5c640.jpg", - "response": "The image features the logo for the Beijing 2008 Olympics with a silver torch in the foreground. The torch is depicted with a target on it. The background is a black color with the Olympic rings in silver. The word \"Beijing\" is written in red below the torch and the word \"2008\" is written in red below that. The torch is also labeled \"Beijing 2008\" in red.", - "id": 19282 - }, - { - "image_path": "/content/drive/MyDrive/combined/187fa5c3fe9ac94c.jpg", - "response": "The image shows a table with a map on it and several books scattered on top of the map. The books are in French and English, and their subjects include travel and exploration. Some of the books have colorful covers, and one of them features a ship. There is also a folded map on the table. The table is covered with a tablecloth that has a pattern of green leaves.", - "id": 19283 - }, - { - "image_path": "/content/drive/MyDrive/combined/1975eff00531f58f.jpg", - "response": "A comic book cover for First Love #12 from May 1949.", - "id": 19284 - }, - { - "image_path": "/content/drive/MyDrive/combined/190e1f4d9e68bf11.jpg", - "response": "A black plastic basket filled with a variety of snacks and candy bars.", - "id": 19285 - }, - { - "image_path": "/content/drive/MyDrive/combined/1960fda8081dedef.jpg", - "response": "A row of books with different colored spines.", - "id": 19286 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a0daecc117f39f0.jpg", - "response": "A newspaper on a desk with the title Chicago Tribune Business.", - "id": 19287 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a973eb2480a1695.jpg", - "response": "A display case in a store filled with video games.", - "id": 19288 - }, - { - "image_path": "/content/drive/MyDrive/combined/15fdcf0c9610bbca.jpg", - "response": "A book cover with a woman in a blue dress sitting on a tree.", - "id": 19289 - }, - { - "image_path": "/content/drive/MyDrive/combined/17de3ff8feddf002.jpg", - "response": "The image shows a table topped with many different books and magazines. The books and magazines are stacked on top of each other and are of various sizes and colors. Some of the books and magazines are open, while others are closed. Some of the books and magazines are also displayed on a table, while others are on a shelf.", - "id": 19290 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b0894995e346756.jpg", - "response": "An open book with many words on it.", - "id": 19291 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5672fadf307e88.jpg", - "response": "an open book(0,69),(996,959) with a red and black string", - "id": 19292 - }, - { - "image_path": "/content/drive/MyDrive/combined/17db3145f0277243.jpg", - "response": "A book with the title \"Gardening\" by Tony Murphy & The Printer's Dye.", - "id": 19293 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2fa8c7d6e685dc.jpg", - "response": "The image shows a table covered with many books. The books are stacked on top of each other and are of various sizes and colors. Some of the books are green, white, and red. There are also several boxes on the floor around the table.", - "id": 19294 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a9f09ca0eea001.jpg", - "response": "A bookshelf with books on it.", - "id": 19295 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b34f15cf930540.jpg", - "response": "A wall with pictures and a sign that says Liar's Bench.", - "id": 19296 - }, - { - "image_path": "/content/drive/MyDrive/combined/16505f9e43a2d81b.jpg", - "response": "A row of books on a bookshelf.", - "id": 19297 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b3c95d8cb764265.jpg", - "response": "A stack of books on a table.", - "id": 19298 - }, - { - "image_path": "/content/drive/MyDrive/combined/16fd93fe6f5e34c6.jpg", - "response": "A package of chocolate bars and a business card for Euphoria Chocolates.", - "id": 19299 - }, - { - "image_path": "/content/drive/MyDrive/combined/160919be631fac72.jpg", - "response": "A store shelf with multiple bottles of ketchup and mustard.", - "id": 19300 - }, - { - "image_path": "/content/drive/MyDrive/combined/18425568d6047c4a.jpg", - "response": "A book cover with the title Best Sex Writing 2010. The word \"writing\" is crossed out with the word \"sex\" written in large orange font. The word \"2010\" is written in orange font. The cover is black and white with a partial picture of a woman's body. She is lying on her back with her right hand covering her face and her left hand placed on her hip. Under the cover, there is a white box that says Kindle edition. Next to the box is a white kindle.", - "id": 19301 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3b4e99d186d6d3.jpg", - "response": "a book with the title \"Gayatri Mantra\" is open to a page with the mantra written in two languages. The book is open to the second page of the mantra.", - "id": 19302 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b085b36a5c3036.jpg", - "response": "three books on a wooden table. One is Terry Pratchett and Stephen Brigg's The Scheibenwelt Kalender 2009, another is Das Zwergen Buch and the third one is a children's book in German called Die Helden von Mueoelerde", - "id": 19303 - }, - { - "image_path": "/content/drive/MyDrive/combined/162fac9597f040cf.jpg", - "response": "A person holding a book called Planet Golf USA.", - "id": 19304 - }, - { - "image_path": "/content/drive/MyDrive/combined/17d19d9276289386.jpg", - "response": "A collection of CDs on a shelf, including one by Snow Patrol.", - "id": 19305 - }, - { - "image_path": "/content/drive/MyDrive/combined/19693f112a4fe8d7.jpg", - "response": "A table with papers, magazines, and a book on it. There is also a pair of scissors and a pen on the table.", - "id": 19306 - }, - { - "image_path": "/content/drive/MyDrive/combined/17417c0aaf7fb008.jpg", - "response": "a man is writing on a black chalkboard sign", - "id": 19307 - }, - { - "image_path": "/content/drive/MyDrive/combined/15feb4a3cded9371.jpg", - "response": "The image displays a Bible open to several different verses. The text is in English and is printed in black and red. The pages are yellowed with age.", - "id": 19308 - }, - { - "image_path": "/content/drive/MyDrive/combined/1833a2a695f86f9c.jpg", - "response": "A toy train is on a table with books.", - "id": 19309 - }, - { - "image_path": "/content/drive/MyDrive/combined/16239d589f660627.jpg", - "response": "a phone with a text message on it that says \"Happy one week anniversary, I'm sorry for today. I love you.\"", - "id": 19310 - }, - { - "image_path": "/content/drive/MyDrive/combined/18592fd2037cb7cf.jpg", - "response": "The image is a book cover in french. The title is \"R\u00e9voltez-vous !\" (Revolt !) The author's name is Renaud Camus. The cover has a black and red design. The title is written in red and the author's name is written in white. The tagline at the bottom reads \"Chez l'auteur\" which means \"By the author\".", - "id": 19311 - }, - { - "image_path": "/content/drive/MyDrive/combined/15b0a0ab64aa00e6.jpg", - "response": "Two books with the title Buena Vista Park on a wooden table.", - "id": 19312 - }, - { - "image_path": "/content/drive/MyDrive/combined/17942d99a1df3cab.jpg", - "response": "A man standing in front of a table with a large stack of wooden blocks in front of him. The blocks have various website names on them. There is a woman standing behind the man and another woman standing to the right of the image. There is a TV in the background on the right side.", - "id": 19313 - }, - { - "image_path": "/content/drive/MyDrive/combined/1998cb73a30374f9.jpg", - "response": "A man and a woman are standing in a room. There is a table with papers and a water bottle on it. There is a whiteboard with green post-it notes on it. There is a pull down banner on the wall that says SMART SERVICES CRC. The woman is wearing glasses and a white shirt. The man is wearing a white shirt and black pants.", - "id": 19314 - }, - { - "image_path": "/content/drive/MyDrive/combined/1829f9a1d58777a6.jpg", - "response": "A man wearing a black jacket and a yellow shirt is sitting at a table with several copies of a book called Twitter Power 3.0. The man is smiling and appears to be happy. There are multiple bottles on the table, one near the man and one near the edge of the table. A cup is also visible on the table. In the background, there are several pieces of clothing hanging on a rack.", - "id": 19315 - }, - { - "image_path": "/content/drive/MyDrive/combined/15aa04c15185ca77.jpg", - "response": "A dictionary is open to the word Kohlrabi. The dictionary is open to the word Kohlrabi. The dictionary is on a wooden table. The dictionary is a hardcover book. The dictionary is large. The dictionary is open to the word Kohlrabi.", - "id": 19316 - }, - { - "image_path": "/content/drive/MyDrive/combined/19ac661b9a208ad6.jpg", - "response": "A bookshelf filled with a variety of books on different subjects.", - "id": 19317 - }, - { - "image_path": "/content/drive/MyDrive/combined/16726398396d7cba.jpg", - "response": "A man in a blue shirt is holding a copy of the book \"The Networked Nonprofit\" by Allison Fine and me, on a rooftop in New York City.", - "id": 19318 - }, - { - "image_path": "/content/drive/MyDrive/combined/1669dabc740e6f05.jpg", - "response": "The image is an open book on a wooden table. The book is open to two pages. The left page is titled \"The Jungle Book\" and has a paragraph of text and a paragraph of smaller text. The right page has a picture of people and an animal on it. There is also a small rectangle of text in the bottom right corner.", - "id": 19319 - }, - { - "image_path": "/content/drive/MyDrive/combined/1876cc1b7e9edced.jpg", - "response": "An old book with the title Familiar Letters between the Principal Characters in David Simple, And some others. To which is added, A Vision. By the Author of David Simple. In two volumes. Vol. I. printed for the author; and sold by A. Miller, opposite Katharine-Street. M. DCC. XLVII.", - "id": 19320 - }, - { - "image_path": "/content/drive/MyDrive/combined/16a5f809f939ce31.jpg", - "response": "A book cover with a red square containing an illustration of a man in a suit holding a knife and fork, standing in front of a clock tower.", - "id": 19321 - }, - { - "image_path": "/content/drive/MyDrive/combined/18984d13b12ecda8.jpg", - "response": "A book with a green cover and white and red lettering next to a red book with white lettering. Both books are next to a pen.", - "id": 19322 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b3078b0f89e7e9f.jpg", - "response": "Jack of Lantern in The Assassins, a comic strip from 1941", - "id": 19323 - }, - { - "image_path": "/content/drive/MyDrive/combined/197755d17c9fb80b.jpg", - "response": "The image is an open book with a black and white portrait of a man on the left page. The book is written in English.", - "id": 19324 - }, - { - "image_path": "/content/drive/MyDrive/combined/1868c360e35721a6.jpg", - "response": "A stack of old books.", - "id": 19325 - }, - { - "image_path": "/content/drive/MyDrive/combined/160b47c33877bb46.jpg", - "response": "A bookshelf filled with many books.", - "id": 19326 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ace6efb1e3dd50f.jpg", - "response": "A bike is parked outside a shop.", - "id": 19327 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a18bbc465d0cb09.jpg", - "response": "A wooden table with many books on top of it.", - "id": 19328 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ac2a9e5fd7fb83.jpg", - "response": "A book with the word \"encyclopedia\" on the cover is open to a page with a hand holding a rock. A green pen is on top of the book.", - "id": 19329 - }, - { - "image_path": "/content/drive/MyDrive/combined/19d7af71afd593a4.jpg", - "response": "A building with signs hanging from it in a different language.", - "id": 19330 - }, - { - "image_path": "/content/drive/MyDrive/combined/1951cb224c246b05.jpg", - "response": "A postcard with a picture of a garden with a thermometer in the foreground.", - "id": 19331 - }, - { - "image_path": "/content/drive/MyDrive/combined/180e5231ab3a6809.jpg", - "response": "A wooden table with four books on top of it. The books are \"Drive\" by Daniel H. Pink, \"Disciplined Dreaming\" by Josh Linkner, \"The Accidental Billionaires\" by Tad Friend, and \"What I didn't learn in business school\" by Tish Rabe. There is also a laptop and a pen on the table.", - "id": 19332 - }, - { - "image_path": "/content/drive/MyDrive/combined/1af3bbec7f47fbc1.jpg", - "response": "a table with a stack of papers on it", - "id": 19333 - }, - { - "image_path": "/content/drive/MyDrive/combined/18b2b10eb491ffc2.jpg", - "response": "The image features a table with a black surface, on top of which are several postcards arranged in a manner that resembles a map. The postcards vary in size and are displayed in a way that allows them to be easily viewed. Some of the postcards are larger while others are smaller. Some are upright, while others are placed sideways. The arrangement creates a visually interesting display that showcases the postcards' content.", - "id": 19334 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a0ce6d590f1db7.jpg", - "response": "A book with the title International Security on the cover.", - "id": 19335 - }, - { - "image_path": "/content/drive/MyDrive/combined/1efe17d02e5094d1.jpg", - "response": "a book with a deer on the cover", - "id": 19336 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dcb9e6588362f22.jpg", - "response": "A book is sitting on a table with two small lamps on either side of it. The lamps are turned on and have reflective material over the bulbs. There is also a lit candle on the table.", - "id": 19337 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fdb2c8088183a1a.jpg", - "response": "A poster for a Japanese TV show called \"Henshin!,\" featuring a family of five characters.", - "id": 19338 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e8c9e1fbfdd3218.jpg", - "response": " An old book(4,138),(995,996) with a letter E on the cover", - "id": 19339 - }, - { - "image_path": "/content/drive/MyDrive/combined/22ae1b7ce8d7d8cf.jpg", - "response": "A book with a pink cover is on display on a table. The book is called \"Why are faggots so afraid of faggots?\" and has a pink circle with a pink and red pattern around it. There are two men's urinals in the pink circle. There is a red and black bowl of fruit on the bottom of the urinals. There are two stacks of books to the left and right of the displayed book.", - "id": 19340 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e9cf65d6a93eed0.jpg", - "response": "A museum exhibit about a perilous journey by Roosevelt.", - "id": 19341 - }, - { - "image_path": "/content/drive/MyDrive/combined/1df7d9e45523ffbc.jpg", - "response": "a black cell phone on a white surface", - "id": 19342 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c1a3cd3f8a3c6b7.jpg", - "response": "A book cover with a painting of a train on it.", - "id": 19343 - }, - { - "image_path": "/content/drive/MyDrive/combined/22538dea424273c7.jpg", - "response": "A page from a Superman comic, showing a panel where Superman is lifting a car over his head.", - "id": 19344 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ca191ad5e4fb70e.jpg", - "response": "An open book with a red ribbon marker in the middle.", - "id": 19345 - }, - { - "image_path": "/content/drive/MyDrive/combined/206a0f4f02499cdc.jpg", - "response": "The image features a table with several books on it. The books are open to different pages and are on the table in a row. There is also a stack of papers next to the books. The table is located in a library.", - "id": 19346 - }, - { - "image_path": "/content/drive/MyDrive/combined/203683fa3297723e.jpg", - "response": "A sign with a arrow pointing to the left and the numbers 000-155 under the arrow.", - "id": 19347 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ff109a21ce053ed.jpg", - "response": "A poster on the wall that says student vote on it.", - "id": 19348 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bd6fc30c042c4c6.jpg", - "response": "A boy in a green shirt looking at a book.", - "id": 19349 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fa57dfbfb65a945.jpg", - "response": "A wall with a poster of a man in a suit and tie with the words \"Rise of Asia\" at the top.", - "id": 19350 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f8b514ae008ddcd.jpg", - "response": "A book cover with a woman in a red dress standing over a dead body.", - "id": 19351 - }, - { - "image_path": "/content/drive/MyDrive/combined/20817deed339148f.jpg", - "response": "An open book is shown with a white background. The book is written in black ink and contains many sentences. The font is a mix of different sizes and styles.", - "id": 19352 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f4d4578980ebcb9.jpg", - "response": "A sign that says 3 simple steps to a good night's sleep.", - "id": 19353 - }, - { - "image_path": "/content/drive/MyDrive/combined/20d4b6c52091b0d6.jpg", - "response": "A row of green books on a shelf.", - "id": 19354 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c12e807f50a5df9.jpg", - "response": "Back cover of a paperback book called Demonized by Christopher Fowler.", - "id": 19355 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e0d3cff88442e77.jpg", - "response": "A bookshelf with books on it.", - "id": 19356 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ad6a069155ca26.jpg", - "response": "a person holding a book of magazines", - "id": 19357 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f2935bd4a539b4d.jpg", - "response": "A red book cover with a man riding a dinosaur.", - "id": 19358 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce543f56cbc7785.jpg", - "response": "An open book with a thin stick laying across the pages.", - "id": 19359 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cf91fe17df97c17.jpg", - "response": "The pages of an open book are shown. The book is open to pages 280 and 281. The pages are filled with text.", - "id": 19360 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cd93e44dda00646.jpg", - "response": "A stack of magazines on a wooden table.", - "id": 19361 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d6838aaafab994e.jpg", - "response": "a book with the title \"the lost symbol\" in Arabic and English", - "id": 19362 - }, - { - "image_path": "/content/drive/MyDrive/combined/20686fb9437b4581.jpg", - "response": "A stack of five different colored books with a set of colored pencils on top of them.", - "id": 19363 - }, - { - "image_path": "/content/drive/MyDrive/combined/2272b2e2b5df909f.jpg", - "response": "The back of a book with a black and red cover.", - "id": 19364 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ea75b6f56c2a71c.jpg", - "response": "A collection of magazines on a shelf.", - "id": 19365 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f4f0b07d073a59d.jpg", - "response": "A movie poster for the movie Jersey Boys.", - "id": 19366 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d93d7efefb6cb72.jpg", - "response": "A large white score board that says zero on it.", - "id": 19367 - }, - { - "image_path": "/content/drive/MyDrive/combined/2181f49634781566.jpg", - "response": "a red door with a gold do not disturb sign", - "id": 19368 - }, - { - "image_path": "/content/drive/MyDrive/combined/21770592ff5e5a6b.jpg", - "response": "A book is laying on a blue blanket.", - "id": 19369 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f6cde3d9c8b42a0.jpg", - "response": "An open book with a page that says Make your own UHF YAGI ANTENNA. There is a picture of a man on a roof working on an antenna.", - "id": 19370 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ba011d32fa78131.jpg", - "response": "An open book is lying on an European flag. The book is a guestbook and has a flag of the United States on the left top. The last entry in the book was made on 3rd of November 2015. The flag has 13 yellow stars in a blue field.", - "id": 19371 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cf0775524f0994b.jpg", - "response": "A box of wine making supplies is open on a green shaggy rug. The box is for a wine starter system and has a picture of a building on it. There are 6 bottles and a kit for Cabernet Sauvignon. Next to the box is a Miles Davis album. On the right is a book called Brewing. There is also a pair of socks with a red and blue plaid pattern.", - "id": 19372 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d47457f99319325.jpg", - "response": "A coffee cup from Panera Bread is sitting next to a book titled Mexico South by Miguel Covarrubias.", - "id": 19373 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c4ef149449f9f48.jpg", - "response": "A handwritten page of poetry is open to the seventh page. The writing is in English. The page is on parchment and the writing is in brown ink. The writing is on both sides of the page. The writing is not neat and some of the letters are smudged.", - "id": 19374 - }, - { - "image_path": "/content/drive/MyDrive/combined/20166115e96f973d.jpg", - "response": "A book cover with a teal background and gold lettering. The title is The Odyssey A Modern Sequel by Nikos Kazantzakis. There is a boat illustration below the title.", - "id": 19375 - }, - { - "image_path": "/content/drive/MyDrive/combined/201eb648a997ad98.jpg", - "response": "an open book with a page that says commissary", - "id": 19376 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d7ed1d5409be61e.jpg", - "response": "A table with 9 books on marketing and business on it.", - "id": 19377 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cfedc3430ef25be.jpg", - "response": "An open book with the title Fluorescent Lamps.", - "id": 19378 - }, - { - "image_path": "/content/drive/MyDrive/combined/21dbe72e79306ae8.jpg", - "response": "A book is on a wooden table. The book is bound in brown leather and has a gold embossed cover. The title on the cover is \"Adventures of Huckleberry Finn\" by Mark Twain. The book is open to chapter 39.", - "id": 19379 - }, - { - "image_path": "/content/drive/MyDrive/combined/22d8b4bf5df35817.jpg", - "response": "A woman in a red skirt leaning against a wall.", - "id": 19380 - }, - { - "image_path": "/content/drive/MyDrive/combined/21e2624c0dbcb06c.jpg", - "response": "A collection of books including the titles \"The New Weird\" and \"Cabinet of Curiosities\" are on display.", - "id": 19381 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bfee33f73037670.jpg", - "response": "A woman in a red jacket and jeans is showing a cell phone to a young boy who is sitting in a blue chair. The woman is kneeling down next to the boy.", - "id": 19382 - }, - { - "image_path": "/content/drive/MyDrive/combined/216b2e1d9012430f.jpg", - "response": "A bookshelf with many books on it.", - "id": 19383 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cdd0e87432f62e4.jpg", - "response": "A row of books on a shelf.", - "id": 19384 - }, - { - "image_path": "/content/drive/MyDrive/combined/2147e4bbc5eeb3bd.jpg", - "response": "A close up of a book page with text on it. The text is in German and is too small to read. The page is open to the 4th of April 1984.", - "id": 19385 - }, - { - "image_path": "/content/drive/MyDrive/combined/21403aae865540bd.jpg", - "response": "An open book is on a table with a blue cloth. The book is open to a page with a picture of a person holding a kite. There is a basket next to the book with several pictures in it. One of the pictures in the basket is of a person with a kite. Another picture in the basket is of a bird. There is a book in the basket with a cover that has a butterfly on it.", - "id": 19386 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bd206310de421ad.jpg", - "response": "A book with text on it that is open to page 2.", - "id": 19387 - }, - { - "image_path": "/content/drive/MyDrive/combined/231f5ff43a61c155.jpg", - "response": "A row of books on a shelf.", - "id": 19388 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f103816ad7535ae.jpg", - "response": "a book with two pages of different roses on them", - "id": 19389 - }, - { - "image_path": "/content/drive/MyDrive/combined/225bdab0350a45bf.jpg", - "response": "a book with a ticket for vampire weekend concert on the page", - "id": 19390 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f63189d10dd75a5.jpg", - "response": "A black and orange movie poster for the crow movie wicked prayer.", - "id": 19391 - }, - { - "image_path": "/content/drive/MyDrive/combined/2206f78f6132f82c.jpg", - "response": "A cover of a magazine called The Preventative Maintenance Monthly.", - "id": 19392 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bf3d55edc3ca341.jpg", - "response": "A book cover with a woman in a pink dress sitting in a tree.", - "id": 19393 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8548a47060eaf7.jpg", - "response": "A pack of cigarettes with a blue and white color scheme.", - "id": 19394 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b932414a443b072.jpg", - "response": "A book is open to a page that has a website written on it. The website is http://twitter.com/marsphoenix. The letters are in red and white.", - "id": 19395 - }, - { - "image_path": "/content/drive/MyDrive/combined/207a34bb119a0d1e.jpg", - "response": "An iPad sitting on a wooden table next to a coffee mug.", - "id": 19396 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ccbc904c87d854c.jpg", - "response": "A stack of books about web design and ajax.", - "id": 19397 - }, - { - "image_path": "/content/drive/MyDrive/combined/1eb25ab06d09133c.jpg", - "response": "A book with a person standing in a field of flowers on the cover.", - "id": 19398 - }, - { - "image_path": "/content/drive/MyDrive/combined/20babd71404bfa95.jpg", - "response": "A photo feedback machine sits on a table.", - "id": 19399 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d9d037b1fcfb0eb.jpg", - "response": "A display case with a red poster in it that says Detauntmahnung.", - "id": 19400 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d0486566063eb58.jpg", - "response": "A man in a red shirt and brown pants holding a scythe in front of a blue dragon.", - "id": 19401 - }, - { - "image_path": "/content/drive/MyDrive/combined/2189b9d38ff97982.jpg", - "response": "A book with a green cover that says \"Unlocking Harry Potter\" on it.", - "id": 19402 - }, - { - "image_path": "/content/drive/MyDrive/combined/214557078b5b7ede.jpg", - "response": "a book with the title \"the first time\" on the cover", - "id": 19403 - }, - { - "image_path": "/content/drive/MyDrive/combined/282ba28d15ae9be5.jpg", - "response": "A red book cover with a black print on it. The title is written in yellow and black. The author's name is written in yellow. There is a picture of a man's profile with a tie and a pocket watch. There are four playing cards in the bottom part of the cover.", - "id": 19404 - }, - { - "image_path": "/content/drive/MyDrive/combined/278ae650430459e4.jpg", - "response": "An open book with two pages.", - "id": 19405 - }, - { - "image_path": "/content/drive/MyDrive/combined/2651e7d03036c28a.jpg", - "response": "A table with three copies of the book \"Lunch with the FT\" on it. The book is edited by Lionel Barber. There are two candles on the table, one on the left and one on the right. The books are propped up a bit, and there is a spoon and fork on the table as well. The background is a wall with a mirror on it.", - "id": 19406 - }, - { - "image_path": "/content/drive/MyDrive/combined/26817703f6dc6ee3.jpg", - "response": "A chair with several books on it.", - "id": 19407 - }, - { - "image_path": "/content/drive/MyDrive/combined/28984a7d7a256501.jpg", - "response": "A newspaper article about homemade cupcakes.", - "id": 19408 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c9c4c165bddcc2.jpg", - "response": "A book called \"Free Culture\" is stacked between other books on a shelf.", - "id": 19409 - }, - { - "image_path": "/content/drive/MyDrive/combined/255d92876eb0796d.jpg", - "response": "A row of books with different flags on the spines.", - "id": 19410 - }, - { - "image_path": "/content/drive/MyDrive/combined/295f33ad137dedc0.jpg", - "response": "A collection of business cards and brochures for various products and services are displayed on a shelf.", - "id": 19411 - }, - { - "image_path": "/content/drive/MyDrive/combined/23597e062fb051a0.jpg", - "response": "A close up of a book called \"Grimm's Fairy Tales\" on a white surface. The book is open to a page with a color illustration of two people in a garden. The book is old and has a green cover with gold writing. The spine of the book is also visible and is green with the title written in white. The book is sitting on a white surface with a green wooden wall behind it.", - "id": 19412 - }, - { - "image_path": "/content/drive/MyDrive/combined/2809ec8c255f8b34.jpg", - "response": "A table with many books on it.", - "id": 19413 - }, - { - "image_path": "/content/drive/MyDrive/combined/279d662c796eac37.jpg", - "response": "A comic strip is shown in a book. The strip is in black and white and is about a man who is selling snake oil. There are several panels of the man selling the snake oil and people reacting to it.", - "id": 19414 - }, - { - "image_path": "/content/drive/MyDrive/combined/282f4b213e72f284.jpg", - "response": "A collection of German language Agatha Christie books.", - "id": 19415 - }, - { - "image_path": "/content/drive/MyDrive/combined/28e844ae86bbd90b.jpg", - "response": "A photo of two books, one on the left is green and red and says aloha hawaii on the cover and the one on the right is green and red and says aloha hawaii on the cover.", - "id": 19416 - }, - { - "image_path": "/content/drive/MyDrive/combined/24e121f816a2b1c2.jpg", - "response": "A table with several books on it. Some of the books are open and have designs on the pages. There are many books on the table and some are stacked on a shelf behind the table. There is a cup on the table and a vase with flowers in it. There are also some pens on the table.", - "id": 19417 - }, - { - "image_path": "/content/drive/MyDrive/combined/272e045000adece9.jpg", - "response": "A table with a magazine on it that is titled Knockout Unders.", - "id": 19418 - }, - { - "image_path": "/content/drive/MyDrive/combined/288014663371f8f0.jpg", - "response": "The image features a blue cup sitting on a table. The cup has several white stickers on it, including stickers of the words \"imerick,\" \"cacophony,\" and \"rhyme.\" In the background, there is a book titled \"No More Tests!\" which is a kids' favorite funny school poem book. The book is propped up against another book, which is green in color. The scene appears to be set in a library or a classroom.", - "id": 19419 - }, - { - "image_path": "/content/drive/MyDrive/combined/2455c65d1618287e.jpg", - "response": "An open book with text about how to service fluorescent lamps.", - "id": 19420 - }, - { - "image_path": "/content/drive/MyDrive/combined/244c6e5f1e327cde.jpg", - "response": "A black leather table holding a white box with the words GlobalScale on it.", - "id": 19421 - }, - { - "image_path": "/content/drive/MyDrive/combined/271e79e3b6374e2d.jpg", - "response": "In the image there are three people sitting around a table. One person is wearing a white shirt and has a white watch on their left wrist. They are looking at a laptop that has a picture of a sandwich on the screen. Another person is wearing a white shirt and has a white beaded necklace. They are looking at a laptop that is out of the frame. The third person is wearing a grey shirt and has a white cord around their neck. They are looking at a laptop that has a sticker of a heart with a crown on it. The table has a white tablecloth on it.", - "id": 19422 - }, - { - "image_path": "/content/drive/MyDrive/combined/242b8effe5de12bc.jpg", - "response": "A passport with a headshot of a man in a suit.", - "id": 19423 - }, - { - "image_path": "/content/drive/MyDrive/combined/25eb3da129b3feeb.jpg", - "response": "The image is a book written in a language that is not english. The book is open to a page that has the title of the book in the top left corner. The book is written in a language that is not english.", - "id": 19424 - }, - { - "image_path": "/content/drive/MyDrive/combined/27c16e037819a596.jpg", - "response": "A collection of DVDs on a table.", - "id": 19425 - }, - { - "image_path": "/content/drive/MyDrive/combined/2723f1df7839f62f.jpg", - "response": "A bookshelf with a variety of books on it.", - "id": 19426 - }, - { - "image_path": "/content/drive/MyDrive/combined/28636b341608c359.jpg", - "response": "A bookshelf filled with a variety of books and magazines.", - "id": 19427 - }, - { - "image_path": "/content/drive/MyDrive/combined/26fe02533e39a34a.jpg", - "response": "A book cover with a black and white picture of two men on it.", - "id": 19428 - }, - { - "image_path": "/content/drive/MyDrive/combined/279a2ceb9f66b515.jpg", - "response": "A book by Gene Edwards is titled A Tale of Three Kings. It is a purple book with a crown on the cover. The cover is yellow and features a painting of a group of people wearing crowns. The book is sitting on a wooden bench.", - "id": 19429 - }, - { - "image_path": "/content/drive/MyDrive/combined/290bf790e5420c37.jpg", - "response": "A browser with an article from education week titled \"Increasing pessimism about ass\" with a yellow arrow pointing to the URL which is not a great auto-truncated/shortened URL.", - "id": 19430 - }, - { - "image_path": "/content/drive/MyDrive/combined/238ca91a1760e8d4.jpg", - "response": "A poster for the movie O mundo fantastico de H.P. Lovecraft.", - "id": 19431 - }, - { - "image_path": "/content/drive/MyDrive/combined/25dcd898863601b0.jpg", - "response": "a person holding a piece of paper with a comic on it", - "id": 19432 - }, - { - "image_path": "/content/drive/MyDrive/combined/27e37833504d1f6a.jpg", - "response": "A passport laying on top of a printed sheet of paper.", - "id": 19433 - }, - { - "image_path": "/content/drive/MyDrive/combined/261ab1de67e1fa56.jpg", - "response": "A group of people sitting around a table.", - "id": 19434 - }, - { - "image_path": "/content/drive/MyDrive/combined/272208b959f76676.jpg", - "response": "A poster with the text \"Dresden stellt sich que(er)\" is attached to a door. The door is made of metal and is painted with a yellowish color. It is dirty and has some stickers on it. The poster is slightly curled.", - "id": 19435 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c3b1e50be319d2.jpg", - "response": "A menu is open on a table.", - "id": 19436 - }, - { - "image_path": "/content/drive/MyDrive/combined/234ef840b348e3c6.jpg", - "response": "The image shows a table with a variety of cookbooks displayed on it. There are several books on Indian cooking, and some are standing up in plastic holders. A chair is visible in the background.", - "id": 19437 - }, - { - "image_path": "/content/drive/MyDrive/combined/2791f8a1dd9d3070.jpg", - "response": "A person holding a blue passport in their hand.", - "id": 19438 - }, - { - "image_path": "/content/drive/MyDrive/combined/23e51f9f4fb0f2d2.jpg", - "response": "A menu with prices for different beers in Russian.", - "id": 19439 - }, - { - "image_path": "/content/drive/MyDrive/combined/273a22536edd6601.jpg", - "response": "A collection of comic books spread out on the floor.", - "id": 19440 - }, - { - "image_path": "/content/drive/MyDrive/combined/24685228c8393e32.jpg", - "response": "A card with a poem on it and a holly leaf", - "id": 19441 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f01dc23f94c8ee.jpg", - "response": "The image is a book with text on it. The text is in black and white and is printed on a cream colored paper. The text is a poem and is broken up into several paragraphs. The font is a simple sans-serif typeface. The words are not fully legible, but some of the words that can be made out include \"I was reading a scientific article,\" \"They have photographed the brain,\" \"It is an earth,\" \"tree lumbering through my skull,\" \"the roots waving,\" \"red blue and pink prehensile chemistry,\" \"veined like a leaf,\" \"or is it a seascape,\" \"corals and shining tentacles,\" \"I touch you,\" \"somewhere as a complex filament of light,\" and \"I am created in you.\"", - "id": 19442 - }, - { - "image_path": "/content/drive/MyDrive/combined/2440402ab082d9ef.jpg", - "response": "a man in a white shirt holding an orange and white jacket", - "id": 19443 - }, - { - "image_path": "/content/drive/MyDrive/combined/2411c78e8b11cf2f.jpg", - "response": "A person holding an orange box with the word Defender on it.", - "id": 19444 - }, - { - "image_path": "/content/drive/MyDrive/combined/2715135bd9eef0c6.jpg", - "response": "A Louisa May Alcott book on a wooden table with a house made out of yellow blocks on top of it.", - "id": 19445 - }, - { - "image_path": "/content/drive/MyDrive/combined/27daab2f2e5e4080.jpg", - "response": "A blue book cover with a gold bird and plant design.", - "id": 19446 - }, - { - "image_path": "/content/drive/MyDrive/combined/23359777b944d831.jpg", - "response": "a door with posters on it", - "id": 19447 - }, - { - "image_path": "/content/drive/MyDrive/combined/2390f417e6a7756e.jpg", - "response": "An open book on a wooden table. The book is a hymnal and it is open to the 25th Psalm.", - "id": 19448 - }, - { - "image_path": "/content/drive/MyDrive/combined/25fe1b8f59ab28c7.jpg", - "response": "A person holding a Compact Disc in their hand that says Adam Warrock Gifted Student.", - "id": 19449 - }, - { - "image_path": "/content/drive/MyDrive/combined/24b7a31b0763f71e.jpg", - "response": "A bookshelf with a wooden cutout of the word love on it. The word love is cut out in the shape of a heart. There are also several books on the shelf.", - "id": 19450 - }, - { - "image_path": "/content/drive/MyDrive/combined/28a742440fbbc12c.jpg", - "response": "A desk with three books on it. The books are titled \"Lindset\" \"Same Kind of Different As Me\" and \"The Day the Busyness Stopped\".", - "id": 19451 - }, - { - "image_path": "/content/drive/MyDrive/combined/2483a21fc6ad17c6.jpg", - "response": "A close up of a bookshelf with many different books on it.", - "id": 19452 - }, - { - "image_path": "/content/drive/MyDrive/combined/26bcfd1e1a5a5d39.jpg", - "response": "A table with several books on it.", - "id": 19453 - }, - { - "image_path": "/content/drive/MyDrive/combined/288e00334240e2a1.jpg", - "response": "A stack of Stephen King books on a wooden table.", - "id": 19454 - }, - { - "image_path": "/content/drive/MyDrive/combined/294d71aafff175b5.jpg", - "response": "A package of Johnson & Johnson all-purpose first aid kit is on a table. The package is open and the red cross symbol is visible. There is a bicycle on the package and a woman riding a bike in one of the pictures. There is also a girl playing tennis in another picture. There are two girls on a bike in one of the pictures. There is a package of band-aids on the table. There is a piece of paper with the words \"I am not a plastic bag\" written on it. There is a small piece of paper with the words \"save the earth\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on it. There is a small piece of paper with the words \"reduce, reuse, recycle\" written on it. There is a small piece of paper with the words \"go green\" written on", - "id": 19455 - }, - { - "image_path": "/content/drive/MyDrive/combined/23f78e811ecbf185.jpg", - "response": "A red and black sign with a city skyline on it.", - "id": 19456 - }, - { - "image_path": "/content/drive/MyDrive/combined/2727f42deec9c31b.jpg", - "response": "a book with information on how to play the game", - "id": 19457 - }, - { - "image_path": "/content/drive/MyDrive/combined/25be68612a489971.jpg", - "response": "A handwritten page from a diary. The handwriting is neat and the paper is yellowed. The page is from 1827 and is written in black ink.", - "id": 19458 - }, - { - "image_path": "/content/drive/MyDrive/combined/28e1a31af8e9f535.jpg", - "response": "A book cover with a tree on it.", - "id": 19459 - }, - { - "image_path": "/content/drive/MyDrive/combined/25b9d1b3232a18f1.jpg", - "response": "An open book with the word steelcase on the page.", - "id": 19460 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c052ef90f8e061.jpg", - "response": "A woman sitting at a table with an Obama Action sign on the table.", - "id": 19461 - }, - { - "image_path": "/content/drive/MyDrive/combined/24c05f7a429727e5.jpg", - "response": "A poster with a blue border and yellow writing.", - "id": 19462 - }, - { - "image_path": "/content/drive/MyDrive/combined/28af383163ce73b2.jpg", - "response": "The image is a manuscript page from a handwritten notebook. The pages are yellowed with age and the handwriting is small and neat. The text is written in black ink.", - "id": 19463 - }, - { - "image_path": "/content/drive/MyDrive/combined/2603b3b4ca617334.jpg", - "response": "The image shows a table covered with many books. The books are arranged in piles and stacks on the table, with some books overlapping each other. The table is filled with various types of books, including children's books, novels, and textbooks. The covers of the books come in different colors and designs, making the table a vibrant and diverse collection of literature.", - "id": 19464 - }, - { - "image_path": "/content/drive/MyDrive/combined/23d2ec2ae5b21d23.jpg", - "response": "A collection of science fiction books are arranged on a bed.", - "id": 19465 - }, - { - "image_path": "/content/drive/MyDrive/combined/286bd178ab48000b.jpg", - "response": "A bottle of Benromach single speyside malt scotch whisky.", - "id": 19466 - }, - { - "image_path": "/content/drive/MyDrive/combined/2725914c3bdcf2ce.jpg", - "response": "An open book with a recipe for poppy seed wafers. The book is open to the recipe and there is a picture of a glass jar filled with cookies.", - "id": 19467 - }, - { - "image_path": "/content/drive/MyDrive/combined/2698cf2441670ca6.jpg", - "response": "The cover of a book with a drawing of a man in a helmet and a jacket with wings on the back.", - "id": 19468 - }, - { - "image_path": "/content/drive/MyDrive/combined/235af12db23712c5.jpg", - "response": "A table with a laptop, a stack of books, and a stack of magazines.", - "id": 19469 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c254ae6195952c4.jpg", - "response": "A comic page with a speech bubble that says \"You're both ready to rejoin the legion!\" with superman and a man in a red cape standing in front of a green hill.", - "id": 19470 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cd65d103a6deb21.jpg", - "response": "A newspaper headline that reads \"No Justice\" is stacked on a shelf with other newspapers.", - "id": 19471 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c19c9e344a50ab2.jpg", - "response": "A close up of a book and a tablet.", - "id": 19472 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d3e0e198816a348.jpg", - "response": "A man wearing a brown sweater is sitting at a table with several books. He is holding one book and looking at it. There are other books on the table, some stacked and some laying flat. The man is also wearing a white shirt.", - "id": 19473 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a5f3d37b9b309af.jpg", - "response": "An open book with text on the pages.", - "id": 19474 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d4695b191fd6914.jpg", - "response": "A book with the title Britain-USA Now: A survey in key words on the cover.", - "id": 19475 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c42eeaaeee6f34a.jpg", - "response": "An open Bible with red markings on it.", - "id": 19476 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b6a620d9fea6ee8.jpg", - "response": "The image shows a table with several books on it. Some of the books are standing, while others are propped up. The books are arranged in a way that creates a display. In the background, there is a chair.", - "id": 19477 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a67e6a03aa704f1.jpg", - "response": "The image shows a bookshelf filled with various books. The books are arranged in rows and cover different topics. Some books are more prominently displayed, while others are less visible. The bookshelf appears to be made of wood.", - "id": 19478 - }, - { - "image_path": "/content/drive/MyDrive/combined/2be5ea78bd8c99e1.jpg", - "response": "a book with a green cover and white pages", - "id": 19479 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f00b9cc898da2f2.jpg", - "response": "A collection of science fiction books are arranged on a wooden table.", - "id": 19480 - }, - { - "image_path": "/content/drive/MyDrive/combined/29a56287faf3e802.jpg", - "response": "a book with the title \"the death and life of great american cities\" by Jane Jacobs", - "id": 19481 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ade91d1d7084267.jpg", - "response": "A book on a wooden table.", - "id": 19482 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e101163800a1051.jpg", - "response": "A book with an illustration of people and a man holding a flag.", - "id": 19483 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb0e9ed675b2d3e.jpg", - "response": "A newspaper is open to an article about a father and son dental duo.", - "id": 19484 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c1909ac07c2f99c.jpg", - "response": "A desk with a computer, keyboard, floppy disk, and papers on it.", - "id": 19485 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c505ffd761a830d.jpg", - "response": "A row of books on a shelf.", - "id": 19486 - }, - { - "image_path": "/content/drive/MyDrive/combined/298430f530625f40.jpg", - "response": "A stack of books and magazines on a table.", - "id": 19487 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d24c82ff8c31c87.jpg", - "response": "A stack of books on a shelf.", - "id": 19488 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a7cafa7e6ec7b84.jpg", - "response": "a piece of paper with text on it that says \"my fingertips have been pricked at least three times a day since I was twelve years old\"", - "id": 19489 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ded5d9c4f156e2e.jpg", - "response": "The image is a book cover for the Songs of Innocence and of Experience, by William Blake. The cover is titled in large, fancy letters at the top, with smaller letters below that saying \"Of Experience.\" The cover is in brown, with the top third featuring swirling lines in green, yellow, and brown. At the bottom, there is a depiction of two human-like figures, one in white and one in black, running through a field of yellow and orange flames.", - "id": 19490 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ed67bad197d2ba4.jpg", - "response": "A table with several books on it, including a book called \"Slave Girls\" edited by Samuel L. Delany.", - "id": 19491 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bf0763e5e552939.jpg", - "response": "A woman wearing a green jacket sits at a table with a black tablecloth. The table has many books and papers on it. There is a chair next to the table. In the background, there is a person wearing a white shirt.", - "id": 19492 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dac21347f4667ab.jpg", - "response": "A book titled \"Being a Geek\" is open and sitting next to a book titled \"Beautiful Teams\" on a desk. The \"Being a Geek\" book is open to a page with a red and white cover. The \"Beautiful Teams\" book has a cover with a black and white photo of a group of zebras. There are also a pair of glasses and a computer mouse on the desk.", - "id": 19493 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d786c10f5ce62a.jpg", - "response": "A package with a sticker on it that says Canada loves APE Lad.", - "id": 19494 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9c0d220d88adfc.jpg", - "response": "A display case with a red book inside of it.", - "id": 19495 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f3a5d6a791456cc.jpg", - "response": "A book called \"How We Decide\" by Jonah Lehrer, sitting on top of a desk.", - "id": 19496 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d4dd629bebf30d.jpg", - "response": "A row of books on a shelf.", - "id": 19497 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e56a00f9052301a.jpg", - "response": "A desktop computer with a white monitor and keyboard on a box.", - "id": 19498 - }, - { - "image_path": "/content/drive/MyDrive/combined/29e9030dabdea9d6.jpg", - "response": "A book cover for Dimension Thirteen by Robert Silverberg.", - "id": 19499 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c031434486981a7.jpg", - "response": "The Worthing Saga book cover with a man hanging from a platform", - "id": 19500 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e10990da0913484.jpg", - "response": "A comic book called The Silver Surfer.", - "id": 19501 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e0b438b8b1c553e.jpg", - "response": "A table with a grey table cloth has several books and buttons on it. The books are stacked on the right side of the table and a few are also on the left side. There are 8 buttons in total, 4 are in the middle of the table and 4 are on the left side of the table.", - "id": 19502 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a65c1202714b0c6.jpg", - "response": "The book is open to page 196. The title of the book is The Car. There is a paragraph of text on the page. The font is very small and there is no paragraph break after the word Chap. The font is black.", - "id": 19503 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e1a5d4eb35e5f4f.jpg", - "response": "A row of books on a shelf.", - "id": 19504 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b28c5f6aa8c0fb0.jpg", - "response": "A large lit up billboard for the musical Mary Poppins.", - "id": 19505 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b989a6f75ec8a00.jpg", - "response": "A room with a fan and a wall with several books on it.", - "id": 19506 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eb769cc7afe9c1a.jpg", - "response": "A table with a striped orange and brown tablecloth. On the table are three books. The top book is \"Wizards\" edited by Elin Knausg\u00e5rd. The second book from the top is \"After Dark\" by Haruki Murakami. The third book is \"Rhwise y Nefoedd a Las Vegas\" by Ein Llywodraeth.", - "id": 19507 - }, - { - "image_path": "/content/drive/MyDrive/combined/29687857eaa9ab1a.jpg", - "response": "A store display of various types of cheese.", - "id": 19508 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d8c3fc095c9e756.jpg", - "response": "A table with five children's books on it.", - "id": 19509 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c3648be127d48b2.jpg", - "response": "An old book with the title Democrite, comedie, par Mr. Regnard, representee en 1700, Noembre.", - "id": 19510 - }, - { - "image_path": "/content/drive/MyDrive/combined/2eebef89eec75e36.jpg", - "response": "a black and white image of a poster for joy division with the band members names listed below the poster", - "id": 19511 - }, - { - "image_path": "/content/drive/MyDrive/combined/29926f51be9a466f.jpg", - "response": "A book is open to a page that says The Boy Who Harnessed the Wind.", - "id": 19512 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d79e36fbccdc97.jpg", - "response": "an open book with a page titled \"For Better or Worse\" and a page titled \"Bad Luck\"", - "id": 19513 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b728acef7d8cdab.jpg", - "response": "A crocheted afghan is displayed on a table. The afghan is a light blue color and has a scalloped edge. There are three books and two globes on the table as well. The books are on a shelf and are green, white, and purple. The globes are round and are on a stand. The wall behind the table is a peach color. The carpet on the floor is dark green.", - "id": 19514 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d98771a6868833f.jpg", - "response": "A woman with long black hair is holding two DVDs. She is smiling and has her arms crossed. She is sitting in a chair.", - "id": 19515 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b1fa3f2e7efe18b.jpg", - "response": "A collection of books are spread out on a white blanket. The books include \"The Ecstasy of Influence\" by Jonathan Lethem, \"Weird Life\" by Peter Hotez, \"Parallel Stories\" by Peter Nadas, \"Vampires in the Lemon Grove\" by Vladimir Nabokov, \"Swamplandia!\" by Karen Russell, \"Miss Dreamsville and Other Stories\" by Amy Hill Hearth, and \"Miss Dreamsville and Other Stories\" by Amy Hill Hearth.", - "id": 19516 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c79636fdf55d9aa.jpg", - "response": "A book with a picture of a man on the cover.", - "id": 19517 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a2d0debd352a9ad.jpg", - "response": "A guitar with a box for a game called Rocksmith on top of it.", - "id": 19518 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a56a1909df8060f.jpg", - "response": "A collection of lipsticks with one red, one pink and one blue.", - "id": 19519 - }, - { - "image_path": "/content/drive/MyDrive/combined/2de3e4c7fc70152c.jpg", - "response": "A bookshelf filled with many books on philosophy.", - "id": 19520 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a64851d74b172b7.jpg", - "response": "A close up of a bookshelf filled with books.", - "id": 19521 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b1d7cd04cddae04.jpg", - "response": "A man wearing glasses is sitting at a table with a pile of papers in front of him. He is looking at one of the papers and there is a stack of papers next to him.", - "id": 19522 - }, - { - "image_path": "/content/drive/MyDrive/combined/2af70dd1f9ea9043.jpg", - "response": "The image is an open book with two pages. The pages have text and illustrations. The illustrations include a man holding a knife and a woman being pushed against a wall.", - "id": 19523 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d67f657cd78c9a0.jpg", - "response": "A box with a cell phone on the front of it.", - "id": 19524 - }, - { - "image_path": "/content/drive/MyDrive/combined/2dcbde5acada5bf0.jpg", - "response": "a person holding a book about spain in front of a book shelf", - "id": 19525 - }, - { - "image_path": "/content/drive/MyDrive/combined/2963b28dadac043e.jpg", - "response": "A magazine cover with a desert highway in the middle.", - "id": 19526 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b076dc7d4d4772b.jpg", - "response": "A book cover with the name Aldous Huxley on it.", - "id": 19527 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d2b9410e34ef11.jpg", - "response": "A book with the title \"Hackers\" written on the cover.", - "id": 19528 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d7bcaf20d9b079c.jpg", - "response": "A sign that is standing in the dirt.", - "id": 19529 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ab864d371868705.jpg", - "response": "A magazine called Comixx is laying on a tan surface.", - "id": 19530 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a403a3a5891e604.jpg", - "response": "A window display of a store with three books on display.", - "id": 19531 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d66aa2832569b3a.jpg", - "response": "A hand holding a bag of green tea.", - "id": 19532 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c9b85d8357eae90.jpg", - "response": "A collection of cards with lego minifigures on them.", - "id": 19533 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a9f126b937a04f6.jpg", - "response": "The image is a book cover with the title in Italian.", - "id": 19534 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b90e4693e010009.jpg", - "response": "A wall of stacked music CDs, with labels facing outwards.", - "id": 19535 - }, - { - "image_path": "/content/drive/MyDrive/combined/29f8928e5014bacb.jpg", - "response": "A row of colorful painted wooden boards with various signs and posters on them.", - "id": 19536 - }, - { - "image_path": "/content/drive/MyDrive/combined/29e37e427382625e.jpg", - "response": "A book of Psalms is open to Psalm 24. The page is open to the middle of the Psalm. There is a purple and gold colored bookmark in the book. The bookmark has a cross on it.", - "id": 19537 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c39e952ee60c577.jpg", - "response": "The image shows a table with a book open to a page with a picture of a colorful quilt. The book is titled \"Little Quilts of Imagination\" and is open to a page titled \"The Art of Junk\". The table also has several folded and stacked fabrics in various colors and patterns. Some of the fabrics are brightly colored and patterned, while others are more subdued in color. The fabrics are piled up in stacks and piles next to the open book.", - "id": 19538 - }, - { - "image_path": "/content/drive/MyDrive/combined/324b83e8aa3da390.jpg", - "response": "A person is holding an old book of recipes.", - "id": 19539 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f3a01640f75937.jpg", - "response": "The image shows a table with two papers on it. The top paper is a color photo of a woman's face, and the bottom paper is a page from a magazine called \"La Revista Triodos.\" The magazine page features a colorful painting of flowers.", - "id": 19540 - }, - { - "image_path": "/content/drive/MyDrive/combined/3206c7e630f0fd01.jpg", - "response": "an open book with a page that says the separation of hem gambia", - "id": 19541 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f3baf1ed9d3b4e6.jpg", - "response": "A wall with a bunch of magazines framed and hanging.", - "id": 19542 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fbe8c00da21f225.jpg", - "response": "A blonde woman in a red dress is tied to a table with a dartboard on the wall above her. She is looking up at a man in a blue suit who is holding a green octopus.", - "id": 19543 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f8708105825e912.jpg", - "response": "The image is a photograph of a street sign for West 34th Street. The sign is green and white and is printed with the word \"love\" in white. The background of the image is a yellowish orange. There is a fire escape on the left side of the image and a large building with many windows in the background on the right side. The street sign for West 34th Street is printed in white on a bright orange background.", - "id": 19544 - }, - { - "image_path": "/content/drive/MyDrive/combined/3372ff7d8f01a58a.jpg", - "response": "A blue book with yellow text on the front of it.", - "id": 19545 - }, - { - "image_path": "/content/drive/MyDrive/combined/34b178228c41f5e4.jpg", - "response": "A bookshelf with many books on it.", - "id": 19546 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f7d35f9b3b59060.jpg", - "response": "A book with the title El Mercader de Cafe on the cover.", - "id": 19547 - }, - { - "image_path": "/content/drive/MyDrive/combined/355b3d6438fb5e81.jpg", - "response": "A book with the title \"The 8th Habit\" written on the cover.", - "id": 19548 - }, - { - "image_path": "/content/drive/MyDrive/combined/316c589fdccdf390.jpg", - "response": "A white ashtray with a collection of cigarettes and some herbs on it. Next to the ashtray is a book with gold writing on a black background.", - "id": 19549 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe9a5041369d495.jpg", - "response": "An open book with many names listed on the pages.", - "id": 19550 - }, - { - "image_path": "/content/drive/MyDrive/combined/332fd038817dea5e.jpg", - "response": "An open magazine with an article titled \"Card sharp\" on the left page. The article is written in English. On the right page, there is an illustration of a group of people sitting around a table. The people are wearing ties and the table has a blue tablecloth. There are chairs around the table and a cup on the table. The illustration is titled \"In the Company of Strangers\" and it is signed by \"J. Schatz\". There is also a note at the bottom of the page that says \"T: Technology: How SAP is helping shape the future of his business.", - "id": 19551 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fdc32661a2688b3.jpg", - "response": "A cover of a book called Strange Detective Mysteries.", - "id": 19552 - }, - { - "image_path": "/content/drive/MyDrive/combined/358b00aa692db568.jpg", - "response": "The book is open to page 110. There is a cartoon of a cat trying to read a book. The book is black and white. The page is titled Navigating the dictionary: Parts of speech. There is a chart titled Read, Invented, and Real. There is a box with 3 columns and 4 rows. The first column is labeled Entry, Part, and Word. The second column is labeled Read, Invented, and Real. The third column is labeled Example. There is a page break at the bottom of the column.", - "id": 19553 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f7749a578b3957b.jpg", - "response": "A book with a yellow cover with black lettering. The title is Hemingway Traditions. There is a picture of a man and three women sitting around a table.", - "id": 19554 - }, - { - "image_path": "/content/drive/MyDrive/combined/33050e3bc5958f5e.jpg", - "response": "A person sitting in a car, wearing a seat belt and reading a book with the title \"Dave Barry Slept Here\".", - "id": 19555 - }, - { - "image_path": "/content/drive/MyDrive/combined/3299a58a771a3990.jpg", - "response": "Title page of a book with the title in Italian.", - "id": 19556 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e6912d4cb4751a.jpg", - "response": "A book cover with the name Esther Tielemans and the title New Scenes.", - "id": 19557 - }, - { - "image_path": "/content/drive/MyDrive/combined/303981d33d1791b1.jpg", - "response": "A kitchen counter with a red, white, and blue sign on the wall behind it. The sign says \"COD AMERICA\". There is a telephone on the counter.", - "id": 19558 - }, - { - "image_path": "/content/drive/MyDrive/combined/3493f51bad479225.jpg", - "response": "an open book with the number 23 on it", - "id": 19559 - }, - { - "image_path": "/content/drive/MyDrive/combined/35938763235306c3.jpg", - "response": "A record album cover for Beethoven's 6th Symphony in F major, Op. 68.", - "id": 19560 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f53c76c826970ee.jpg", - "response": "A shelf full of candy bars including Snickers, Milky Way, and Hershey's.", - "id": 19561 - }, - { - "image_path": "/content/drive/MyDrive/combined/34014d94bb9a1859.jpg", - "response": "A close up of a book on a book shelf.", - "id": 19562 - }, - { - "image_path": "/content/drive/MyDrive/combined/30caa2f32bd5bf18.jpg", - "response": "An open book with the title The Card.", - "id": 19563 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ff5b9fc3d32b51.jpg", - "response": "A group of people sitting around a table with papers and books on it.", - "id": 19564 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f28753e25f6480.jpg", - "response": "A book with a word search puzzle featuring Paul McCartney.", - "id": 19565 - }, - { - "image_path": "/content/drive/MyDrive/combined/3469c22eca7b11c6.jpg", - "response": "An open book is shown with the page titled Zinc. The book is open to a page titled Can Masturbation Cause Zinc Deficiency. The book is open to the section about zinc. The book is on a bookshelf.", - "id": 19566 - }, - { - "image_path": "/content/drive/MyDrive/combined/307b88512fd0dfe9.jpg", - "response": "A stack of five books on a table. The books are \"The Mind Test\" by Sam Harris, \"Culture Shock! Saudi Arabia\" by Tanya R. Fawzi, \"Wait\" by Tom Power, \"Passion & Purpose\" by Frank Partnoy, and \"It's Not You: It's Your Game Plan for Work and Life\" by Paul Arden.", - "id": 19567 - }, - { - "image_path": "/content/drive/MyDrive/combined/3029615a65478f09.jpg", - "response": "A bottle of Bruichladdich sits in a wooden case. The bottle is made of glass and has gold lettering. The case is red and the bottle is inside a glass display case. There is a blue ribbon around the neck of the bottle.", - "id": 19568 - }, - { - "image_path": "/content/drive/MyDrive/combined/32279d323ae3c6a3.jpg", - "response": "An open book with the title Zephaniah on the top.", - "id": 19569 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fa55fefd94032cc.jpg", - "response": "A close up of several chocolate bars including Valrhona, Pacari and D'Idjema.", - "id": 19570 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f868bb2927d76f5.jpg", - "response": "a book with a white cover and red writing that says what if?", - "id": 19571 - }, - { - "image_path": "/content/drive/MyDrive/combined/3197f58d9ea3aae0.jpg", - "response": "A book with a blue cover that says \"ANGELS FLIGHT\" in red letters. There is a pair of yellow handcuffs above the word \"FLIGHT\" and a white border around the book.", - "id": 19572 - }, - { - "image_path": "/content/drive/MyDrive/combined/34f0b54f0b57b977.jpg", - "response": "A book called Filosofen van de 20e eeuw, written by Herman Philipse, on a table.", - "id": 19573 - }, - { - "image_path": "/content/drive/MyDrive/combined/35c30211b3643abe.jpg", - "response": "A book with the title \"Stratene Mesto\" is on top of a stack of other books. The book is open to a page with a picture of a city street with a horse and carriage. The title of the book is written in Czech.", - "id": 19574 - }, - { - "image_path": "/content/drive/MyDrive/combined/3103abf01301a1d4.jpg", - "response": "A magazine cover with the title \"Time Out London\" on the top.", - "id": 19575 - }, - { - "image_path": "/content/drive/MyDrive/combined/349820e8960312b7.jpg", - "response": "In the image there is a person sitting at a table reading a book. They are wearing a white shirt with a design on it. The person are holding the book open with both hands and their fingers are visible on the pages. There is a design of a bird on the cover of the book.", - "id": 19576 - }, - { - "image_path": "/content/drive/MyDrive/combined/30fd091d36d2cbb3.jpg", - "response": "A book is open to a page with writing on it. The writing is in black ink and is on the page of a book. The book is open to the page with the writing on it. The writing is on the page in cursive. There is a hand holding the book open.", - "id": 19577 - }, - { - "image_path": "/content/drive/MyDrive/combined/34d1c541c233c2ff.jpg", - "response": "A page from a comic book featuring a woman in a green hat and a red bow.", - "id": 19578 - }, - { - "image_path": "/content/drive/MyDrive/combined/3087161adf2a9b40.jpg", - "response": "A brown and yellow poster advertising a music festival in Indonesia.", - "id": 19579 - }, - { - "image_path": "/content/drive/MyDrive/combined/315a09678f82157b.jpg", - "response": "A table with several books and buckets of buttons on it.", - "id": 19580 - }, - { - "image_path": "/content/drive/MyDrive/combined/3386f88bb3c9c512.jpg", - "response": "A collection of newspapers sitting on a table.", - "id": 19581 - }, - { - "image_path": "/content/drive/MyDrive/combined/311fc727efa87aa1.jpg", - "response": "The image is a book cover with a blue background. The title of the book is \"The Adventures of Sherlock Holmes\" and is written in yellow. Below the title is the author's name, \"by A. Conan Doyle.\" There is a blue rectangle in the middle of the cover with an image of a book cover inside it. The book cover inside the blue rectangle has the title \"The Strand Library\" and a banner that says \"The World's Best Mystery Stories.\" Inside the banner, there is a silhouette of a house with a clock tower on the right side.", - "id": 19582 - }, - { - "image_path": "/content/drive/MyDrive/combined/32b7a91cdd145b17.jpg", - "response": "A table topped with three pizza boxes and a bucket of soda.", - "id": 19583 - }, - { - "image_path": "/content/drive/MyDrive/combined/31218f53fce73312.jpg", - "response": "A row of books on a shelf.", - "id": 19584 - }, - { - "image_path": "/content/drive/MyDrive/combined/31acdc5e0456c1c3.jpg", - "response": "The image is an open book. The pages are black with white text. The book is open to page 4 and 5.", - "id": 19585 - }, - { - "image_path": "/content/drive/MyDrive/combined/34af868031181ecd.jpg", - "response": "In the image, there are people walking up and down a flight of stairs. The stairs are covered in post-it notes with messages written on them in different colors. Some of the notes are yellow, red, green, and blue. The messages are in both English and Chinese. The top of the wall next to the stairs is also covered in post-it notes.", - "id": 19586 - }, - { - "image_path": "/content/drive/MyDrive/combined/3247fbdb2b5dc96d.jpg", - "response": "In the image there is a box of Cheez-Its on a table. The box is red with a picture of a knight on a horse on it. The knight is holding a sword and there is a picture of a mouse on the box as well. There is a bowl of Cheez-Its in front of the box and many more Cheez-Its scattered on the table.", - "id": 19587 - }, - { - "image_path": "/content/drive/MyDrive/combined/3129619329d3013c.jpg", - "response": "A wall with the words Earth Stories on it.", - "id": 19588 - }, - { - "image_path": "/content/drive/MyDrive/combined/34532f2e647f98f7.jpg", - "response": "On a window there is a sign that says \"To avoid confusion we wish to make clear that we are not in any way connected to Scientology\". Underneath the sign there is a book open to a page with writing on it.", - "id": 19589 - }, - { - "image_path": "/content/drive/MyDrive/combined/324fdc82f0cc61ee.jpg", - "response": "a table with many books on it", - "id": 19590 - }, - { - "image_path": "/content/drive/MyDrive/combined/301feaeec1df84af.jpg", - "response": "A woman standing behind a counter with baked goods on it.", - "id": 19591 - }, - { - "image_path": "/content/drive/MyDrive/combined/3127f0bc951553d4.jpg", - "response": "a book with a frog on the cover", - "id": 19592 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fba809316c59897.jpg", - "response": "A blue record album cover for a collection of classical music.", - "id": 19593 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f50120c09a6d73f.jpg", - "response": "a person holding a book titled scary nuns", - "id": 19594 - }, - { - "image_path": "/content/drive/MyDrive/combined/35539a5f30f9e095.jpg", - "response": "A book with the title Johann Sebastian Bach 6 Brandenburgische Konzerte on the cover.", - "id": 19595 - }, - { - "image_path": "/content/drive/MyDrive/combined/33decd0b95fc3646.jpg", - "response": "A book cover with a painting of a planet on the cover.", - "id": 19596 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fc52b7f2521bb6e.jpg", - "response": "A book cart with multiple books on it.", - "id": 19597 - }, - { - "image_path": "/content/drive/MyDrive/combined/347e360396b80741.jpg", - "response": "A bookshelf with many books on it.", - "id": 19598 - }, - { - "image_path": "/content/drive/MyDrive/combined/32e13e42fb9f5b5f.jpg", - "response": "The image shows a person's leg covered in a green and red blanket. On top of the person's leg are three books. The book on the left is \"The Lost World\" by Michael Crichton and is published by Doubleday. The book in the middle is \"Breaking into Freelance Illustration\" by Tony Martin and is published by Watson-Guptill. The book on the right is \"Pink Floyd: The Early Years\" by David Gilmour and is published by HarperCollins. There is also a cell phone lying on top of the books.", - "id": 19599 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f75b8b250bf4ede.jpg", - "response": "A store display featuring a variety of books and magazines.", - "id": 19600 - }, - { - "image_path": "/content/drive/MyDrive/combined/31f2db2fdf76fa82.jpg", - "response": "a box with writing on it sitting on a table", - "id": 19601 - }, - { - "image_path": "/content/drive/MyDrive/combined/32b03eea22d4875a.jpg", - "response": "The image features two Biohazard Code Veronica game cases. One of the cases is for the Japanese version of the game and is red with gold lettering. The other case is for the English version of the game and is black with white lettering. Both cases have the game title and a character on the cover.", - "id": 19602 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f6c25241432cc86.jpg", - "response": "In the image there is a table with a sketch book on it. The sketch book has a picture of a person's face on the cover. Next to the sketch book there are several markers. One set of markers is in the middle of the table and another set is on the right side of the table. There is also a bottle on the table.", - "id": 19603 - }, - { - "image_path": "/content/drive/MyDrive/combined/35d1b84feb3fd55e.jpg", - "response": "A man is on the beach holding a rifle as a giant octopus rises out of the water.", - "id": 19604 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b7047f7ed0c5efd.jpg", - "response": "A person is sitting at a table with a red book in front of them. The book is called \"Rorschach Report\" and has gold lettering on the cover. There is a pen on the table next to the book.", - "id": 19605 - }, - { - "image_path": "/content/drive/MyDrive/combined/3abff6e75810c41b.jpg", - "response": "The image shows a book cover for a novel called Killing Time by a author named Caleb Carr. The cover features a man in a wheelchair facing away from the viewer. The man is wearing a hat and has a beard. The background behind the man is a city skyline with smoke rising in the distance. The book title and author name are written in green and white letters respectively. The spine of the book is also visible and is labeled \"Killing Time\" in green letters.", - "id": 19606 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b645b9c5734e68e.jpg", - "response": "A sign that is yellow and black with a drawing of a man and a woman on it.", - "id": 19607 - }, - { - "image_path": "/content/drive/MyDrive/combined/38a9cd72804f4add.jpg", - "response": "A book titled Escape Hotel Stories, a pair of shoes and a decorative pillow on a couch.", - "id": 19608 - }, - { - "image_path": "/content/drive/MyDrive/combined/37c7140637197d4e.jpg", - "response": "A person holding a book that says \"MADE IN CHINA\" on the cover.", - "id": 19609 - }, - { - "image_path": "/content/drive/MyDrive/combined/3636142c3af74334.jpg", - "response": "A palette of six different colored lipsticks by MAC. The colors are arranged in a row, with a mirror above them. The first shade is \"Fashion Card\" and the second is \"Primped Up\". The third shade is \"Dressing Rose\", the fourth is \"Syrup\", the fifth is \"Sweetie\" and the sixth is \"Silhouette\". There is a black and silver MAC pencil below the palette and a MAC logo on the bottom.", - "id": 19610 - }, - { - "image_path": "/content/drive/MyDrive/combined/35dc824ae9842584.jpg", - "response": "A row of books on a shelf.", - "id": 19611 - }, - { - "image_path": "/content/drive/MyDrive/combined/372407de5173e862.jpg", - "response": "An open book with a title page for Piazza Carignano. The title is in a decorative font and there is a decorative border. The title page also has a paragraph of text. On the right page is the logo for Abbeville Press. The text is in a black decorative font on a white background.", - "id": 19612 - }, - { - "image_path": "/content/drive/MyDrive/combined/3af21d0d16caea71.jpg", - "response": "A man sitting at a table with a board game and a book.", - "id": 19613 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b62026ff8064d0f.jpg", - "response": "A vintage comic book cover for Witches Tales Magazine.", - "id": 19614 - }, - { - "image_path": "/content/drive/MyDrive/combined/36c7e01adffd7bc8.jpg", - "response": "A book is open to page 10 with the title \"Florida Water\" and a red decorative square with the title \"Florida Water\" and an image of a man in a boat on the water.", - "id": 19615 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a992d3891fd6d16.jpg", - "response": "A poster with the title 650 Years of the Drapers' Company.", - "id": 19616 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b83c9045221a18b.jpg", - "response": "A poster with a white dove holding an olive branch with the words US OUT OF VIETNAM.", - "id": 19617 - }, - { - "image_path": "/content/drive/MyDrive/combined/3678e10d1ee15709.jpg", - "response": "A book with a white bird on the cover is propped up on a bookshelf.", - "id": 19618 - }, - { - "image_path": "/content/drive/MyDrive/combined/36e49dd4e00a0a45.jpg", - "response": "A book with the title \"The Lovely Bones\" is stacked on top of other books.", - "id": 19619 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a585fb57f9eadf0.jpg", - "response": "A row of books on a shelf, including books on computers and the internet.", - "id": 19620 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b55c95d9d7a9a34.jpg", - "response": "A book with the title Poetica di iason denores. The title is in Italian and the author is Hieronimo Abbate Martinengo. The book is open to the title page.", - "id": 19621 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bbd74bd00803486.jpg", - "response": "A collection of comic books including The World's Finest Comics, The Unbeatable Squirrel Girl, and West Coast X-Men.", - "id": 19622 - }, - { - "image_path": "/content/drive/MyDrive/combined/384c4f116b4a7408.jpg", - "response": "A book about different cultures and traditions.", - "id": 19623 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ab782a212a0147a.jpg", - "response": "A book with the title Selenium on a wooden table.", - "id": 19624 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3ada7d1c90eb0c.jpg", - "response": "A collection of chocolate bars, including a dark chocolate bar from CROQUER, a milk chocolate bar from el KOSARI, a white chocolate bar from POUR CROQUER, and a milk chocolate bar from AG SILVER.", - "id": 19625 - }, - { - "image_path": "/content/drive/MyDrive/combined/3724bbc976e3be7b.jpg", - "response": "A book laying on a wooden table with a cardboard robot named Danbo standing behind it.", - "id": 19626 - }, - { - "image_path": "/content/drive/MyDrive/combined/368adc2e6ded01ba.jpg", - "response": "An open book is on a desk, it is open to pages 239 and 240. The book is about the history of maps. The book is on a computer desk.", - "id": 19627 - }, - { - "image_path": "/content/drive/MyDrive/combined/36d1b49944b831bc.jpg", - "response": "A record album cover for Te Deum by the Royal Philharmonic Orchestra.", - "id": 19628 - }, - { - "image_path": "/content/drive/MyDrive/combined/38247c0d4edb2918.jpg", - "response": "A table covered in a white cloth with a sign on it that says \"No PNR\".", - "id": 19629 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b7437af286f6482.jpg", - "response": "A book shelf with many books on it.", - "id": 19630 - }, - { - "image_path": "/content/drive/MyDrive/combined/3888b37bb4fbe382.jpg", - "response": "A book on a wooden table.", - "id": 19631 - }, - { - "image_path": "/content/drive/MyDrive/combined/393d5789af1ab8b6.jpg", - "response": "A soundtrack CD case for a film called Your Highness.", - "id": 19632 - }, - { - "image_path": "/content/drive/MyDrive/combined/39f56bffaf6e157f.jpg", - "response": "A black book cover with the title \"Madame Maigret's Own Case\" written in red and pink letters. There is a picture of a door with a fire inside.", - "id": 19633 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c2109f3f4433d66.jpg", - "response": "A person holding a DVD case for the movie \"Then\". The case features a woman on the cover and is for a rated 15 movie.", - "id": 19634 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ac3740e77ea5100.jpg", - "response": "A book with many old words on it.", - "id": 19635 - }, - { - "image_path": "/content/drive/MyDrive/combined/36cb33fe65258b84.jpg", - "response": "a book with a blue cover that says \"Principio 30/20\" on the front", - "id": 19636 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aadc1b8886f3699.jpg", - "response": "An old book with the title American Essays.", - "id": 19637 - }, - { - "image_path": "/content/drive/MyDrive/combined/380e2ae93c865d4a.jpg", - "response": "A book with the name Isaac Asimov on the cover.", - "id": 19638 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a0594bfb56622fe.jpg", - "response": " A poster(10,184),(995,830) on the wall that says \"What will be possible when the web is 100x faster?\"", - "id": 19639 - }, - { - "image_path": "/content/drive/MyDrive/combined/37738e6728316f8b.jpg", - "response": "A collage of many different book covers, all in different colors and sizes.", - "id": 19640 - }, - { - "image_path": "/content/drive/MyDrive/combined/3acb7c6fbca640f8.jpg", - "response": "A magazine with a purple cover that says \"Facebook\" on it in large white letters.", - "id": 19641 - }, - { - "image_path": "/content/drive/MyDrive/combined/38d17dbc46cd14c6.jpg", - "response": "A purple book cover for Agatha Raisin and the Murderous Marriage by M.C. Beaton.", - "id": 19642 - }, - { - "image_path": "/content/drive/MyDrive/combined/37b189726cfae089.jpg", - "response": "An open Bible with a note that says \"do not be afraid\" on the top. There is a pen laying on the page. The page is decorated with a globe and a thought bubble that says \"jesus where heaven + faith literally meet\"", - "id": 19643 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c0b123f7bb3ef84.jpg", - "response": "A table with a green cloth and a bunch of items on it. There are many books, a remote, a can of soda, a lamp, and a bag of something wrapped in plastic.", - "id": 19644 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b3fb77c202ef6eb.jpg", - "response": "A table with many books on it.", - "id": 19645 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad1882ad49ea332.jpg", - "response": "A table topped with a large pile of papers and leaflets.", - "id": 19646 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad5b4e6be0f2341.jpg", - "response": "A poster for the movie Exodus is next to a poster for a church.", - "id": 19647 - }, - { - "image_path": "/content/drive/MyDrive/combined/36f42819a138dfe7.jpg", - "response": "A book with the title \"Lines on the Underground\" is open to a page with a feather quill on it. Next to it is a book called \"The Last Time I Saw Jane\" by Kate Pullinger. Both books are on a bookshelf with many other books.", - "id": 19648 - }, - { - "image_path": "/content/drive/MyDrive/combined/39ab62bf93a384df.jpg", - "response": "A set of brochures for the Citizen Jane Film Festival on a table.", - "id": 19649 - }, - { - "image_path": "/content/drive/MyDrive/combined/39ba32f35308817e.jpg", - "response": "A coloring book with a boy on the cover is open to a page with a Bible on it. There is a pen laying on the book.", - "id": 19650 - }, - { - "image_path": "/content/drive/MyDrive/combined/36965005738f444e.jpg", - "response": "A comic book page with a story about a blonde woman and a man. The woman is described as the only girl the man ever really loved.", - "id": 19651 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b947e05882e25b.jpg", - "response": "A book cover with a picture of train tracks leading to a grain silo.", - "id": 19652 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b1ec6ef898a470b.jpg", - "response": "An open Bible with a page that says \"Believe what it says not what I want it to say\" in bright colors.", - "id": 19653 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ab334061b1faf7b.jpg", - "response": "A book is open to a page with black text. The book is written in English.", - "id": 19654 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b67c661b83099fb.jpg", - "response": "A wooden table with a red and black decorative object on top of it. The object has a face and is round. It is sitting in front of a row of books.", - "id": 19655 - }, - { - "image_path": "/content/drive/MyDrive/combined/397f69f58f0cd1bf.jpg", - "response": "A table is covered with stacks of books and a few sheets of paper. There are several books by Margaret Feinberg, and a few others, including one with a purple cover and one with a black cover. There are also several books with white covers. A few books are stacked on the left side of the table, while others are on the right. There are also several books in the middle of the table. A few books are propped up, while others are stacked on top of one another. There are also several books that are laying flat on the table. There are also several books on the floor. There are two cell phones on the table, one on the left and one on the right. There is also a clock on the table.", - "id": 19656 - }, - { - "image_path": "/content/drive/MyDrive/combined/36eb5f8af8ff6df2.jpg", - "response": "A white wall covered in pictures of various video games.", - "id": 19657 - }, - { - "image_path": "/content/drive/MyDrive/combined/38b3111854f1f915.jpg", - "response": "The image is half white and half red with a book title on the left side of the white page. The title is \"Lectures and Sonnets\". The name \"E.B. Browning\" is also written on the left side of the white page.", - "id": 19658 - }, - { - "image_path": "/content/drive/MyDrive/combined/377d3c0a86fc3099.jpg", - "response": "A newspaper is open to a page titled \"Vision\u00e4rer\" on a desk. The page is spread out and features a large picture of a beach with several hot air balloons floating above it. There are also several smaller pictures of people and buildings scattered throughout the page. A laptop, a cup, and a pair of glasses are also on the desk.", - "id": 19659 - }, - { - "image_path": "/content/drive/MyDrive/combined/383293ba75804425.jpg", - "response": "The image is a close up of a bookshelf with several books on it. The books appear to be non-fiction, and are on a variety of topics. The book \"Black Swan\" by Nassim Nicholas Taleb is prominently displayed on the shelf, and is the focus of the image. The book is a blue hardcover.", - "id": 19660 - }, - { - "image_path": "/content/drive/MyDrive/combined/38859a66658f8d9b.jpg", - "response": "A book shelf with many books on it.", - "id": 19661 - }, - { - "image_path": "/content/drive/MyDrive/combined/38ac4e2621ce57c1.jpg", - "response": "A collection of various car brochures and books on automotive literature collectors.", - "id": 19662 - }, - { - "image_path": "/content/drive/MyDrive/combined/39b4addc60d80619.jpg", - "response": "A book open to page 3 of the King's cabinet.", - "id": 19663 - }, - { - "image_path": "/content/drive/MyDrive/combined/3730b5c56e3f1f2a.jpg", - "response": "A book with text on it.", - "id": 19664 - }, - { - "image_path": "/content/drive/MyDrive/combined/382f07a11817913d.jpg", - "response": "An open book, specifically a Bible, with the page open to the Gospel of St. John. The book is printed in black and white.", - "id": 19665 - }, - { - "image_path": "/content/drive/MyDrive/combined/3626edacbfff20fc.jpg", - "response": "A large sign on the side of a building that says The Last Dambuster.", - "id": 19666 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a083bcb1026b6db.jpg", - "response": "A image of a stack of books. The books are green and white and have a string tied around them. The books are old and have a lot of wear on them. The binding is starting to fall apart. There is a bookplate in front of the stack of books that says \"This book is dedicated to my mother\"", - "id": 19667 - }, - { - "image_path": "/content/drive/MyDrive/combined/36e49f8f27f3fe78.jpg", - "response": "A table with a phone, books, a bottle of water, and a lamp on it.", - "id": 19668 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b0265b9750c4985.jpg", - "response": "A row of books on a bookshelf.", - "id": 19669 - }, - { - "image_path": "/content/drive/MyDrive/combined/38bf983bdce28e8f.jpg", - "response": "A book on a wooden table with the title Gods' Man.", - "id": 19670 - }, - { - "image_path": "/content/drive/MyDrive/combined/3735aa8e664ff31b.jpg", - "response": "A magazine open to an article about computers.", - "id": 19671 - }, - { - "image_path": "/content/drive/MyDrive/combined/3aedcf6c7be3e78d.jpg", - "response": "A book cover with a painting of a woman dancing in the moonlight surrounded by trees.", - "id": 19672 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e336daf4aff27a2.jpg", - "response": "a magazine cover for planet stories with a man and a woman in space suits", - "id": 19673 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d5735e66f89404a.jpg", - "response": "A book with the title think and grow rich by napoleon hill.", - "id": 19674 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e6e313509a60bd5.jpg", - "response": "A window display of books with a stuffed penguin toy.", - "id": 19675 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c8fe01e3ec3436b.jpg", - "response": "a book with many names on it", - "id": 19676 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c76d81fdaf6ef99.jpg", - "response": "A table topped with lots of different magazines.", - "id": 19677 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f305c10a16a9bb1.jpg", - "response": "A blue book cover with the name John Updike in large white letters. The word \"Rabbit\" is in large white letters four times, with the last \"Rabbit\" being in smaller white letters. There is a picture of a man running in a field in the middle of the cover.", - "id": 19678 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d6b3e54b6b3d81f.jpg", - "response": "A book with a brown cover that has pictures of children in school.", - "id": 19679 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d9fcd766704d958.jpg", - "response": "a group of people on a stage with sheet music and a microphone", - "id": 19680 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cf94823c77eafbe.jpg", - "response": "A book named \"The Defining Moment\" by Jonathan Alter is open on a bed. The book is open to chapter 18 and the title of the chapter is \"The Road to War\". There is a picture of FDR on the cover of the book. The book is sitting on top of white sheets and there is a blanket behind it.", - "id": 19681 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f19692a15a4a2e6.jpg", - "response": "A woman standing behind a table filled with lots of different kinds of cookies.", - "id": 19682 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f6be0aaa3c2528b.jpg", - "response": "A plastic pirate ship with a plastic man in a blue and white shirt standing on it.", - "id": 19683 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ddc01c494013665.jpg", - "response": "A book cover with the title \"Idiots First\" written in black and red text.", - "id": 19684 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d83fdd3c2f5fc6c.jpg", - "response": "A collection of books with the title \"War of the Worlds\" on the top book.", - "id": 19685 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de6b114816d9b08.jpg", - "response": "A table with several books on it. There is a purple composition notebook with a blue pen on top of it. Next to it is a red book with a white spine. Next to the red book is a purple book with a white spine. Next to the purple book is a white book with a black spine. Next to the white book is a orange book with a white spine. Next to the orange book is a white book with black letters on it. All of the books are sitting on a table.", - "id": 19686 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cb6c3c000d4e310.jpg", - "response": "A book cover for a book called Dragonsinger. The book is in a hardcover format and the cover features a woman in a red dress sitting in a wooden box with two green and white dragons around her. One of the dragons is holding a lute. The title of the book is in white letters on a brown background at the top of the cover. The author's name, Anne McCaffrey, is in white letters on a brown background at the top of the cover.", - "id": 19687 - }, - { - "image_path": "/content/drive/MyDrive/combined/3eb023680fe2ae6e.jpg", - "response": "A poster with the word profit on it", - "id": 19688 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c4ab32c5f65d690.jpg", - "response": "A science fiction book cover with a spaceship on a red planet with lightning bolts in the sky.", - "id": 19689 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e2fe6ed774a737e.jpg", - "response": "A book cover with a painting of a giant whale in the ocean, with people in small boats in the foreground.", - "id": 19690 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cc6e65b2e3086dc.jpg", - "response": "A record album cover for Frederic Chopin's Waltzer Waltzes.", - "id": 19691 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c3401cf8c9d7516.jpg", - "response": "A book with a woman reading a book on the cover.", - "id": 19692 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e082125a0a90038.jpg", - "response": "A laptop computer with a book and a cup of coffee sitting on top of it.", - "id": 19693 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e630528a38f33db.jpg", - "response": "A record album cover for Brahms Ungarische Tanze and Dvorak Slavische Tanze is displayed on a wooden table.", - "id": 19694 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ce4bfcca2df5c3d.jpg", - "response": "A book cover for the book \"Silas Marner\" by George Eliot. The cover features a painting of an older man with white hair and a beard, wearing a dark coat and holding a pipe. He is sitting at a table with a basket of yarn in front of him. In the background, there is a small village. The title of the book is written in white above the man, and the author's name is written in black below the man. The book is published by Magnum.", - "id": 19695 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d9f270c94e95e10.jpg", - "response": "The image shows a cluttered wooden table with various items on it. There are two cell phones on the table, one near the top and the other in the middle. A notebook is open and placed on the left side of the table, with a pen resting on top. A book is also open and laying on the table, with a pen resting on top of it. A cup is placed on the left side of the table. A magazine is laying on the table, and a CD is placed on the right side of the table.", - "id": 19696 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c40483915ebac16.jpg", - "response": "A book with the title \"Perfect\" on the cover.", - "id": 19697 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f5f85322db0fbdd.jpg", - "response": "A group of four men standing behind a table filled with books and cards.", - "id": 19698 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cc7e215c6153d98.jpg", - "response": "The image is a screenshot of a scene from a video game. In the scene, a man in a white lab coat is standing on a blue platform. The man is looking upwards and to the left. To the right of the man, there is text written in white. The text is too small to read, but it appears to be dialogue from the video game.", - "id": 19699 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f03167eab6f4391.jpg", - "response": "The image is an open book with a page about the architecture of Illusion Meaning.", - "id": 19700 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e569f2f4c818ed6.jpg", - "response": "A handwritten book is open to two pages. The pages are filled with words and there is a heading that says \"Upon that promeilleant for pes.\"", - "id": 19701 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de1abd665b79e7e.jpg", - "response": "A movie poster for the film Melancolia.", - "id": 19702 - }, - { - "image_path": "/content/drive/MyDrive/combined/3caaef5e6298b485.jpg", - "response": "A red and black book cover with the name Olivier Greif in gold.", - "id": 19703 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1d740711f5116f.jpg", - "response": "A book with a red cover that says \"Marvels of Pond Life\" in gold lettering. The book is open to a page with a title that says \"The Marvels of Pond Life\" in gold lettering. The title is surrounded by a decorative border featuring plants and fish. The cover also features a small image of a pond with reeds and a frog. The book is open to the first page of the book.", - "id": 19704 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e52cb7168026aa4.jpg", - "response": "A stack of video games on a carpeted floor.", - "id": 19705 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1b1999f74e539e.jpg", - "response": "An album cover with an organ on it.", - "id": 19706 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ebfc8fc39a41191.jpg", - "response": "a table with a white table cloth with a bunch of books, notebooks, and papers on it.", - "id": 19707 - }, - { - "image_path": "/content/drive/MyDrive/combined/416721499b234ad3.jpg", - "response": "The image shows two books on a white surface. The book on the left, by Dom Matthew Britt, is titled \"How to Serve: In Simple, Solemn, and Pontifical Functions.\" The book on the right, by Rev. William A. O'Brien, is titled \"How to Serve Low Mass & Benediction.\" Both books are about Catholic rituals and ceremonies.", - "id": 19708 - }, - { - "image_path": "/content/drive/MyDrive/combined/409a756f882e82a5.jpg", - "response": "a book with black ink on white pages", - "id": 19709 - }, - { - "image_path": "/content/drive/MyDrive/combined/41f79d597851f293.jpg", - "response": "An album cover with a man playing the cello on it.", - "id": 19710 - }, - { - "image_path": "/content/drive/MyDrive/combined/4132fb35a84fa7c0.jpg", - "response": "A table with many books on it.", - "id": 19711 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c5874fdaf7bc98.jpg", - "response": "A record album cover for Tchaikovsky's Symphony No. 1 with a picture of the conductor, Vladimir Fedoseyev, on the cover.", - "id": 19712 - }, - { - "image_path": "/content/drive/MyDrive/combined/447984497113e34f.jpg", - "response": "A book is open to a page that has the word Geigy on it.", - "id": 19713 - }, - { - "image_path": "/content/drive/MyDrive/combined/41342cc541f8caab.jpg", - "response": "A book with the title Agility and Discipline Made Easy.", - "id": 19714 - }, - { - "image_path": "/content/drive/MyDrive/combined/4137f040470ccd59.jpg", - "response": "A stack of VHS tapes including movies such as Hercules, Jack Frost, and The Magic of Basketball.", - "id": 19715 - }, - { - "image_path": "/content/drive/MyDrive/combined/41ceb5fa5647976a.jpg", - "response": "A black bag with a handle on top of a grey cushion.", - "id": 19716 - }, - { - "image_path": "/content/drive/MyDrive/combined/44394ab94ea8e4bb.jpg", - "response": "A black and white image of three poetry books on a white shelf.", - "id": 19717 - }, - { - "image_path": "/content/drive/MyDrive/combined/43465cb3ed00901a.jpg", - "response": "A harry potter trading card game two player starter set. The box is a dark blue with a picture of a wizard and a castle on the front. The castle has a green and red roof. The wizard is casting a spell in front of a shop. The shop has a green roof and is made of brick. The shop has a door that is slightly ajar. The door is made of wood and has a black frame. The door has a sign above it that says \"WIZARD'S SHOP\". To the left of the wizard is a dark green tree. To the right of the wizard is a light green one. The sky above the shop is dark blue. The clouds are white. The words \"HARRY POTTER\" and \"TRADING CARD GAME\" are in yellow and red respectively. The words \"TWO-PLAYER STARTER SET\" are in dark blue. The words \"MAGIC BEGINS WITH ONE STARTER SET!\" are in yellow.", - "id": 19718 - }, - { - "image_path": "/content/drive/MyDrive/combined/42c31554576d462f.jpg", - "response": "A row of books on a shelf.", - "id": 19719 - }, - { - "image_path": "/content/drive/MyDrive/combined/4159d5a645a2bbf6.jpg", - "response": "A woman reaching for a book in a book store.", - "id": 19720 - }, - { - "image_path": "/content/drive/MyDrive/combined/44f6655d532c9b70.jpg", - "response": "A framed art piece with four pictures on it.", - "id": 19721 - }, - { - "image_path": "/content/drive/MyDrive/combined/40dcc70f2cdfb2b1.jpg", - "response": "an open book with text on it", - "id": 19722 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fef1c2bd0a2d187.jpg", - "response": "A person is holding a large book open to a page about Montana. The book is filled with pictures and information about the state. The person is sitting in front of an American flag.", - "id": 19723 - }, - { - "image_path": "/content/drive/MyDrive/combined/42be10eab27c2502.jpg", - "response": "a stack of mail with a pink ribbon tied around it", - "id": 19724 - }, - { - "image_path": "/content/drive/MyDrive/combined/448e0716ec980766.jpg", - "response": "An open comic book with a page that says \"When meet the Immortals!\" and features a man in a red cape and a woman in a bikini top.", - "id": 19725 - }, - { - "image_path": "/content/drive/MyDrive/combined/416c0a33367d6ce4.jpg", - "response": "a book with a red and white cover that says \"satan in the suburbs and other stories\" on it", - "id": 19726 - }, - { - "image_path": "/content/drive/MyDrive/combined/451b77f42c1fa936.jpg", - "response": "An open book with many words on it.", - "id": 19727 - }, - { - "image_path": "/content/drive/MyDrive/combined/431eeee1a2a375f5.jpg", - "response": "A black sign with the words Jamba Juice in green and rainbow colored swirl above it.", - "id": 19728 - }, - { - "image_path": "/content/drive/MyDrive/combined/42ff6f8b2d1e4cdd.jpg", - "response": "The image shows the two sides of a compact disc. The CD is titled \"Soul Flower\" and the artist is listed as \"En Vogue\". The cover art is a close-up of a woman's face with her hair covering her eyes. She appears to be looking down. The back cover features four women standing next to each other in a line. They are all wearing similar outfits and are posing in different ways. The names of the individual members of the group are listed below the women. The CD case is open and the inside cover features a list of the tracks on the CD. The CD is listed as being by En Vogue.", - "id": 19729 - }, - { - "image_path": "/content/drive/MyDrive/combined/4525aebcb6f8fbef.jpg", - "response": "a wall full of books and magazines", - "id": 19730 - }, - { - "image_path": "/content/drive/MyDrive/combined/411db9cc51744957.jpg", - "response": "An open book on display in a museum.", - "id": 19731 - }, - { - "image_path": "/content/drive/MyDrive/combined/43877eac29b1581c.jpg", - "response": "A close up of a sign that says Yvonne and Edna House.", - "id": 19732 - }, - { - "image_path": "/content/drive/MyDrive/combined/40765c86cb9af671.jpg", - "response": "a table with many books on it", - "id": 19733 - }, - { - "image_path": "/content/drive/MyDrive/combined/40861fe14ae57b02.jpg", - "response": "A collection of movies and DVDs are stacked on a shelf.", - "id": 19734 - }, - { - "image_path": "/content/drive/MyDrive/combined/427908f7605df621.jpg", - "response": "A book cover with a red chalice on a green background.", - "id": 19735 - }, - { - "image_path": "/content/drive/MyDrive/combined/400c75f57c9bc6f7.jpg", - "response": "A poster for the used book sale at the University Library.", - "id": 19736 - }, - { - "image_path": "/content/drive/MyDrive/combined/4134e276835f0bb7.jpg", - "response": "A Star Wars book cover for the New Jedi Order titled \"Reunion\" with art depicting two Jedi fighting with lightsabers and a third person behind them.", - "id": 19737 - }, - { - "image_path": "/content/drive/MyDrive/combined/42e61844f6403218.jpg", - "response": "In the image a person is holding a box of tea. The box is green and has a white and gold label. The tea is called Earl Grey and has a picture of the Houses of Parliament on the box.", - "id": 19738 - }, - { - "image_path": "/content/drive/MyDrive/combined/41b80c4e34880a1c.jpg", - "response": "An open book is on a table with several rolls of washi tape around it. The book is filled with writing and drawings.", - "id": 19739 - }, - { - "image_path": "/content/drive/MyDrive/combined/4346d24015c097b4.jpg", - "response": "A table with a book on it.", - "id": 19740 - }, - { - "image_path": "/content/drive/MyDrive/combined/457505d8d1103421.jpg", - "response": "The image is a cover for a CD titled \"Eduard Franck: Piano Trios\". The cover art depicts two women playing a piano. One woman is standing at the keyboard and the other is standing beside her. They both have light red hair and are looking at sheet music. The woman on the left is wearing a white dress and has her left arm around the other woman. The woman on the right is wearing a pink top and has her right hand on the keyboard. The background is a painting of two women in front of a piano.", - "id": 19741 - }, - { - "image_path": "/content/drive/MyDrive/combined/40a0950d84c21a80.jpg", - "response": "A brown vase with a black tag on it sitting on a desk.", - "id": 19742 - }, - { - "image_path": "/content/drive/MyDrive/combined/41ce01e6869e0c43.jpg", - "response": "A red and a pink Moleskin notebook on a red background.", - "id": 19743 - }, - { - "image_path": "/content/drive/MyDrive/combined/433d6d4a90ddd727.jpg", - "response": "A yellow wall with graffiti on it.", - "id": 19744 - }, - { - "image_path": "/content/drive/MyDrive/combined/43adddc63f47bbf1.jpg", - "response": "a table with many books on it", - "id": 19745 - }, - { - "image_path": "/content/drive/MyDrive/combined/40c3e6ad84004f0e.jpg", - "response": "A book with red and white cover with Korean characters.", - "id": 19746 - }, - { - "image_path": "/content/drive/MyDrive/combined/44b4684a21faeef5.jpg", - "response": "A record album cover for Tallinna Kaoskroor is displayed on a wooden table. The cover features a tree with a large moon and stars in the background.", - "id": 19747 - }, - { - "image_path": "/content/drive/MyDrive/combined/403b1a6232a8eb66.jpg", - "response": "The image shows two movies on a white surface. The movie on the left is Francis Ford Coppola's Apocalypse Now and it is in a red and black box. The movie on the right is titled \"\u5730\u7344\u306e\u71b1\u793a\u9332\" which translates to \"Hell's Heat Map\" and it is in a tan and black box. Both movies have art on the cover.", - "id": 19748 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f88c052f8006597.jpg", - "response": "An old book with many pages is open on a table. The pages are yellowed and filled with black writing. The book is under glass and has a rope wrapped around it.", - "id": 19749 - }, - { - "image_path": "/content/drive/MyDrive/combined/44fabeb8c68ccdb0.jpg", - "response": "a large metal statue of a torch with the word curico on it", - "id": 19750 - }, - { - "image_path": "/content/drive/MyDrive/combined/4181443ef731a28c.jpg", - "response": "The image shows two issues of the Harvard Business Review magazine stacked on a table. The issue on the left has a black and white cover with the title \"Harvard Business Review\" in large font at the top, and \"The Problem With Authenticity\" in smaller font below that. The issue on the right has a cover with a roll of duct tape on it, with the title \"Innovate Faster Cheaper Smarter\" in large font at the top.", - "id": 19751 - }, - { - "image_path": "/content/drive/MyDrive/combined/41d49c7d94ecf22c.jpg", - "response": "A CD cover for a album by Mr. Libido.", - "id": 19752 - }, - { - "image_path": "/content/drive/MyDrive/combined/442c7313b618bd8e.jpg", - "response": "A blue book cover with a blue woman in a dress.", - "id": 19753 - }, - { - "image_path": "/content/drive/MyDrive/combined/4331ca7324c285d7.jpg", - "response": "A book is open to a page that has a cartoon drawing of a person with a book on their head.", - "id": 19754 - }, - { - "image_path": "/content/drive/MyDrive/combined/4006f6c3083766f2.jpg", - "response": "A glass display case filled with a variety of items.", - "id": 19755 - }, - { - "image_path": "/content/drive/MyDrive/combined/45181b04b180d82c.jpg", - "response": "A pink record album cover for Beethoven Symphony No. 2 sits on a wooden table.", - "id": 19756 - }, - { - "image_path": "/content/drive/MyDrive/combined/42b9e860f3eb87ea.jpg", - "response": "A brown book with white writing on it.", - "id": 19757 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f6f8ea02249360f.jpg", - "response": "A large mural painted on the side of a building.", - "id": 19758 - }, - { - "image_path": "/content/drive/MyDrive/combined/43c84401bc227c44.jpg", - "response": "A black and white photo of a wall with stacks of records on it. The records are labeled with song titles and artist names.", - "id": 19759 - }, - { - "image_path": "/content/drive/MyDrive/combined/4252319d3de69ff1.jpg", - "response": "A yellow book cover with the title \"Thrilling Mystery Collection\" written in black.", - "id": 19760 - }, - { - "image_path": "/content/drive/MyDrive/combined/448636bf11134e15.jpg", - "response": "A pitcher of brown liquid on a scale.", - "id": 19761 - }, - { - "image_path": "/content/drive/MyDrive/combined/3fd1607ad699571c.jpg", - "response": "A desk with a blue top holding many books and cards with writing on them.", - "id": 19762 - }, - { - "image_path": "/content/drive/MyDrive/combined/41af9ce239e498c5.jpg", - "response": "a notebook with writing in a language I can't read", - "id": 19763 - }, - { - "image_path": "/content/drive/MyDrive/combined/40535463759a67e8.jpg", - "response": "A man and woman standing behind a table with a blue tablecloth. The table has a laptop, a stack of books, and a few other items on it. The man is wearing a suit and tie and has a name tag around his neck.", - "id": 19764 - }, - { - "image_path": "/content/drive/MyDrive/combined/432e43587b1b2748.jpg", - "response": "an open book with some text on it", - "id": 19765 - }, - { - "image_path": "/content/drive/MyDrive/combined/416460c1037d84b7.jpg", - "response": "A collage of nine different images. The top left image is of a woman reading in a library. The top right image is of a man and woman in a room with many potted plants. The bottom left image is of a tree with roots growing out of it. The bottom middle left image is of a person holding a crystal. The bottom middle right image is of a hand holding a lit candle. The bottom right image is of a person in a white coat holding a heart.", - "id": 19766 - }, - { - "image_path": "/content/drive/MyDrive/combined/4582f4072486b07b.jpg", - "response": "A pole covered in flyers and posters for different events.", - "id": 19767 - }, - { - "image_path": "/content/drive/MyDrive/combined/40bf2284535b923e.jpg", - "response": "A stack of books on a table.", - "id": 19768 - }, - { - "image_path": "/content/drive/MyDrive/combined/435240ec761366ea.jpg", - "response": "An open book with a white cover and black text is on a blue towel on the sand. The book is open to page 17. Next to the book is an empty plastic cup. The book is on the sand and the towel is on the sand.", - "id": 19769 - }, - { - "image_path": "/content/drive/MyDrive/combined/4426e0a6e759adbf.jpg", - "response": "A woman riding a white horse and holding a lasso, on the cover of Women Outlaws.", - "id": 19770 - }, - { - "image_path": "/content/drive/MyDrive/combined/452ca97a412607b0.jpg", - "response": "A book written in black ink on white paper.", - "id": 19771 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f834e387e1e5ce4.jpg", - "response": "A record album cover for Madama Butterfly.", - "id": 19772 - }, - { - "image_path": "/content/drive/MyDrive/combined/40f2eca97516767c.jpg", - "response": "a book with the Chanel logo on the cover", - "id": 19773 - }, - { - "image_path": "/content/drive/MyDrive/combined/42fe40315c2578e3.jpg", - "response": "a table with a notebook on top of it", - "id": 19774 - }, - { - "image_path": "/content/drive/MyDrive/combined/4226ae28d59a3295.jpg", - "response": "The image is a book cover for The American Novel and its Tradition by Richard Chase. The cover features a tree with green leaves and brown branches. The trunk of the tree is brown and it appears to be made of wood. The branches of the tree are filled with green leaves. The title of the book is written in red lettering above the tree. The Doubleday Anchor Original logo is written in black lettering at the bottom of the cover.", - "id": 19775 - }, - { - "image_path": "/content/drive/MyDrive/combined/44e53e938661e102.jpg", - "response": "A person is standing in front of a bookshelf. They are wearing a black t-shirt with red and white text on it. The text includes quotes from various books and movies, such as \"The outsiders\" and \"Harry Potter\". The person is also wearing a watch on their left wrist.", - "id": 19776 - }, - { - "image_path": "/content/drive/MyDrive/combined/4295e05d8f557bef.jpg", - "response": "An open book is on a table in front of a computer screen. The book is written in black ink and the pages are white. The pages contain typed words and sentences. The book is open to a page that is titled \"The Underground Poster.\" The text on the page is black and it is written in a foreign language.", - "id": 19777 - }, - { - "image_path": "/content/drive/MyDrive/combined/413101419a20b6d4.jpg", - "response": "a passport from the government of qatar", - "id": 19778 - }, - { - "image_path": "/content/drive/MyDrive/combined/45d9b08098b714cc.jpg", - "response": "A book cover with a person standing on a bridge looking at a city in the distance.", - "id": 19779 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dbb80af8cf8cbdc.jpg", - "response": "A magazine rack with several copies of Elle magazine on display.", - "id": 19780 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c32ad66341cde78.jpg", - "response": "A bookshelf with many books on it.", - "id": 19781 - }, - { - "image_path": "/content/drive/MyDrive/combined/4742281b5d90fae7.jpg", - "response": "A book cover for a book called \"Hue\" by Michel Buc Chaigneau with a purple cover and yellow text.", - "id": 19782 - }, - { - "image_path": "/content/drive/MyDrive/combined/490414f8653f4937.jpg", - "response": "A newspaper with the title \"Times\" on the top. The main article is about a man who has been painting the streets with powerful messages. The newspaper also mentions that he is a musician, painter, prankster, and comedian. The newspaper is open to page 14 and page 15. There is also an image of a man throwing a bunch of items in the air while holding a paintbrush.", - "id": 19783 - }, - { - "image_path": "/content/drive/MyDrive/combined/479226a7ebcd7378.jpg", - "response": "A stack of books with a variety of titles including \"Writing\", \"1776\", and \"Eric Hoffer\". The books are stacked on top of each other with a brick wall in the background. The image has a pink and white filter applied to it.", - "id": 19784 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dfdd0b1830888b5.jpg", - "response": "A science fiction book cover with a planet and stars in the background.", - "id": 19785 - }, - { - "image_path": "/content/drive/MyDrive/combined/4806a584a6bcce1f.jpg", - "response": "A book is open to page 31 on a wooden table. The font in the book is Mohjix and there is an illustration of the alphabet in red. The person holding the book is on the left and their hand is in the bottom left of the image.", - "id": 19786 - }, - { - "image_path": "/content/drive/MyDrive/combined/485f46a7b7d46c93.jpg", - "response": "a book with a page about krakatau", - "id": 19787 - }, - { - "image_path": "/content/drive/MyDrive/combined/46911b2e3f83384b.jpg", - "response": "A book cover for Philip Jose Farmer's \"Riverworld\" and other stories.", - "id": 19788 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c5ba10c5e1ed1fb.jpg", - "response": "A book with the title \"Cacun\" is stacked on top of other books. Next to the book is a cup of coffee. The coffee cup has a white top and a brown bottom. The book on the bottom of the stack has a brown cover. The table the books are on is brown and wooden. The floor beneath the table is made of brown tiles. There is a chair in the background on the left side of the image.", - "id": 19789 - }, - { - "image_path": "/content/drive/MyDrive/combined/473535e08285a342.jpg", - "response": "The image features a pair of black and white high-heeled shoes sitting on top of a stack of magazines. The shoes are positioned in such a way that they appear to be propping up the magazines. The stack of magazines is quite large and takes up most of the image.", - "id": 19790 - }, - { - "image_path": "/content/drive/MyDrive/combined/476d699dd2849092.jpg", - "response": "A desk with a sign that says \"Ask a Librarian\" on it.", - "id": 19791 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a16c4efed8c9345.jpg", - "response": "A group of people standing around a table with many books on it.", - "id": 19792 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bf3a71a1155d5db.jpg", - "response": "A collection of magazines including \"\u5fae\u5149\" and \"Voyager\" on a table.", - "id": 19793 - }, - { - "image_path": "/content/drive/MyDrive/combined/462dac5e1d0736ff.jpg", - "response": "A poster for a Blackberry phone with the letter v on it", - "id": 19794 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a24dfe612a4323d.jpg", - "response": "A book cover with a large lettered title in gold on a black background. The title is \"The Pillars of Hercules\" and there is a note at the bottom that it is a New York Times notable book. The author's name is Paul Theroux and there is a small image of a coastline with a large body of water in front of it.", - "id": 19795 - }, - { - "image_path": "/content/drive/MyDrive/combined/4695f50a3744263e.jpg", - "response": "The image features a comic book with the title \"The Mighty Thor\" on the top. The book is open to page 224 and features Thor, who is depicted as being very strong. The character is holding a hammer and standing on top of a rock. The background features a yellow envelope.", - "id": 19796 - }, - { - "image_path": "/content/drive/MyDrive/combined/45b6ae72df85c51b.jpg", - "response": "A green and white sign with black letters.", - "id": 19797 - }, - { - "image_path": "/content/drive/MyDrive/combined/491991a1b990abdf.jpg", - "response": "A book, a cup of coffee, a bottle of oil and a saucer are on a white table.", - "id": 19798 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a12c03b261f453c.jpg", - "response": "A collection of five DVD cases with the word \"DVD\" on them in white lettering. The cases are stacked on top of each other and are in a white box. The cases are also colorful with different colors such as pink, orange, purple, and blue. The top case has a picture of a girl on it.", - "id": 19799 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bbfffbf032bab23.jpg", - "response": "A matchbook with a green background and the words The Walnut Room on it.", - "id": 19800 - }, - { - "image_path": "/content/drive/MyDrive/combined/498fd4252c3d2129.jpg", - "response": "An open book is laying on a table in front of a computer screen. The book is open to a page about functional programming. The text is in English.", - "id": 19801 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d06cf7234ffd142.jpg", - "response": "A book cover with a painting of a dark street under a bridge with a light.", - "id": 19802 - }, - { - "image_path": "/content/drive/MyDrive/combined/48c0660014cb1412.jpg", - "response": "A shelf with many books on it.", - "id": 19803 - }, - { - "image_path": "/content/drive/MyDrive/combined/45db246a7ef0f3c8.jpg", - "response": "A computer screen with a news article about Facebook buying Instagram for $1 billion.", - "id": 19804 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ab5691c9ac1dac4.jpg", - "response": "A chalkboard with a message written in white chalk.", - "id": 19805 - }, - { - "image_path": "/content/drive/MyDrive/combined/4921c05f981bc91e.jpg", - "response": "A book case with a colorful book on the front of it.", - "id": 19806 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d15bab4385b86d0.jpg", - "response": "A table with a yellow napkin on top of it and a plate on top of the table.", - "id": 19807 - }, - { - "image_path": "/content/drive/MyDrive/combined/458aa6cee4a5123c.jpg", - "response": "The poster for the movie Three Seasons.", - "id": 19808 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b05bc21b87d63b8.jpg", - "response": "A table topped with boxes of Toblerone chocolate in blue and yellow packaging.", - "id": 19809 - }, - { - "image_path": "/content/drive/MyDrive/combined/4bd90299af40d46d.jpg", - "response": "A group of people standing around a table with a box on it.", - "id": 19810 - }, - { - "image_path": "/content/drive/MyDrive/combined/47e088894916df4d.jpg", - "response": "The image shows a long row of books on a shelf. The books are bound in a yellowish paper and have red and gold labels on their spines. The labels show the title \"Queens of the Law\". The books are arranged in a straight line and extend from the foreground to the background. The shelf is likely made of wood and has a brown color. The books are also labeled with a blue label that says \"VOL\" followed by a number.", - "id": 19811 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b271fb1e8db72f0.jpg", - "response": "a book with text on it.", - "id": 19812 - }, - { - "image_path": "/content/drive/MyDrive/combined/481e3c4dda43cd7b.jpg", - "response": "A book with the title \"Life in the Outer Space\" by Melissa Keil, sitting on a table next to a cup of coffee.", - "id": 19813 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b8bef79898ce721.jpg", - "response": "A green book with gold lettering on the cover.", - "id": 19814 - }, - { - "image_path": "/content/drive/MyDrive/combined/48e0bdd6ada7f64e.jpg", - "response": "A record album cover with a man sitting on the ground in front of a tower.", - "id": 19815 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b2098457e0b29f8.jpg", - "response": "A stack of books on a white surface.", - "id": 19816 - }, - { - "image_path": "/content/drive/MyDrive/combined/4b4e9d13172f2a94.jpg", - "response": "A book with the title Konsalik is placed on a wooden table. The book is green and black and has a man's face on the cover. The letters are in German.", - "id": 19817 - }, - { - "image_path": "/content/drive/MyDrive/combined/49f33620c387e4fb.jpg", - "response": "A book with a black cover and gold lettering.", - "id": 19818 - }, - { - "image_path": "/content/drive/MyDrive/combined/461a3e94c743e85e.jpg", - "response": "An open book with a lot of text on the pages.", - "id": 19819 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a5d993e90292ed9.jpg", - "response": "A wooden table with several piles of magazines on top. The piles are quite large and contain a variety of different magazine titles. Some of the magazines are adult themed. There is also a potted plant near the back of the table.", - "id": 19820 - }, - { - "image_path": "/content/drive/MyDrive/combined/45fe866e11766325.jpg", - "response": "A book cover with a red and orange border with the title in the top left corner. The author's name is in the top right corner. The cover features an illustration of a man with long hair and beard holding a staff with a woman behind him. Another illustration of a man with a staff is above them. The bottom illustration is of two women.", - "id": 19821 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d3f1528480f0785.jpg", - "response": "An open book with a page about protecting yourself against windstorm damage.", - "id": 19822 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d2aa5c07005965b.jpg", - "response": "A record with a man in a suit sitting in front of a piano.", - "id": 19823 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d7b6796808516ea.jpg", - "response": "A page from a magazine with an image of a crowd of people standing outside a building.", - "id": 19824 - }, - { - "image_path": "/content/drive/MyDrive/combined/4625b91150946824.jpg", - "response": "A book with many words on it.", - "id": 19825 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c1585f044724f7e.jpg", - "response": "A computer screen displays a webpage with a book cover on it. The book cover is for The Discourses of Epictetus, published by the Classics Club. A few books are visible next to the computer screen. One of the books is a copy of The Manual for Living by Epictetus, a book about living a good life. Another book is The Wild Wild Western Civilization by a author unknown. A third book is a copy of the book A Manual for Living by Epictetus.", - "id": 19826 - }, - { - "image_path": "/content/drive/MyDrive/combined/49804f9316a3081b.jpg", - "response": "A white bookshelf filled with books.", - "id": 19827 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d40f793028bd63b.jpg", - "response": "A bookshelf with several books on it.", - "id": 19828 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d1e5374e240feac.jpg", - "response": "A store shelf with a variety of items on it.", - "id": 19829 - }, - { - "image_path": "/content/drive/MyDrive/combined/45aee3fe14334e8d.jpg", - "response": "The image shows a compact disc case with the title Franck & Ravel Piano Trios. The cover features a black and white photograph of two men playing the piano. One of the men is on the left and is playing the piano, while the other man is on the right and is playing the violin. The other man is also holding a cello.", - "id": 19830 - }, - { - "image_path": "/content/drive/MyDrive/combined/487eade1abb7758f.jpg", - "response": "A group of people standing around a table.", - "id": 19831 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad784e3970d6d43.jpg", - "response": "The image shows three books by Thomas Hardy, the author of the novels Far from the Madding Crowd and Tess of the d'Urbervilles. The books are green with gold lettering and have decorative green and gold bindings. The spine of the middle book has the title \"The Wood-Landers\" printed on it. The books are standing upright on a white surface and there is a shadow of the spines on the right hand side of the image.", - "id": 19832 - }, - { - "image_path": "/content/drive/MyDrive/combined/45db6adcab1a1ef7.jpg", - "response": "An open book with a black and white illustration of a man on the left page. The right page has printed text.", - "id": 19833 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ca603f0ccaf0dfc.jpg", - "response": "A book with a woodcut illustration of a man on a lion.", - "id": 19834 - }, - { - "image_path": "/content/drive/MyDrive/combined/47ef73d7cbbdd1f6.jpg", - "response": "a book with a list of places on it", - "id": 19835 - }, - { - "image_path": "/content/drive/MyDrive/combined/488435f598c4e473.jpg", - "response": "A book with the title The Genius of China in white lettering against a red background. The word CHINA is written in black with a red background. There is a black circle on the left with a partial image of a person in profile on the left and a partial image of a person on the right. There is a partial image of a person sitting on a table on the right side of the cover. The cover features red and black images of people and objects.", - "id": 19836 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ad8fd8e739c0db7.jpg", - "response": "A book cover with a man and woman on the front.", - "id": 19837 - }, - { - "image_path": "/content/drive/MyDrive/combined/481907ca151f4ce5.jpg", - "response": "A large red and white sign for the Toyota Automobile Museum stands in front of a cloudy sky. The sign is tall and narrow, with the words \"TOYOTA AUTOMOBILE MUSEUM\" written on it in white. The sign is located near a park with trees, and there is a car parked nearby.", - "id": 19838 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c6c18ce3f9ccd7c.jpg", - "response": "A hand holding a video game case for the computer game Delties and Demigods.", - "id": 19839 - }, - { - "image_path": "/content/drive/MyDrive/combined/46ea1e78fdca89d9.jpg", - "response": "A bookshelf with a variety of books on it.", - "id": 19840 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d1a85c49e83ea40.jpg", - "response": "a book with text in it", - "id": 19841 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a764457076ab8b8.jpg", - "response": "A math book with a cd on top of it.", - "id": 19842 - }, - { - "image_path": "/content/drive/MyDrive/combined/46b2ba78fc4e6454.jpg", - "response": "An old book with the title De Sacerdotio Episcoporum in Latin. The title is at the top and the author is listed as Victor Ellicson. The book is published by Apud Bartholomaeum Macau in Paris.", - "id": 19843 - }, - { - "image_path": "/content/drive/MyDrive/combined/47d2a4844c799567.jpg", - "response": "A bus stop sign with a map of public transportation in the area.", - "id": 19844 - }, - { - "image_path": "/content/drive/MyDrive/combined/54461afc8ceff791.jpg", - "response": "The image shows a room with a wall that is covered in boxes of electronic equipment. The boxes are stacked on top of one another and are primarily white and black in color. In the room, there is also a person standing near the right side of the image, near the middle of the wall of boxes. The person is looking at an object in their hands, which are also visible in the image.", - "id": 19845 - }, - { - "image_path": "/content/drive/MyDrive/combined/55244459603bc815.jpg", - "response": "An open book with a page showing a recipe for baked whole trout with lemon and dill. There is a bowl of fruit on the right side of the book, which has a spoon in it. The fruit appears to be peaches and bananas. The book is open to page 107.", - "id": 19846 - }, - { - "image_path": "/content/drive/MyDrive/combined/54aa728888939c36.jpg", - "response": "A pile of assorted paper with a circus theme.", - "id": 19847 - }, - { - "image_path": "/content/drive/MyDrive/combined/5403ff1d37620005.jpg", - "response": "A book with a picture of a crowd of people on the cover.", - "id": 19848 - }, - { - "image_path": "/content/drive/MyDrive/combined/534fb17ffe23d761.jpg", - "response": "A book cover with a guitar on it.", - "id": 19849 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f594e1de5ff1c6f.jpg", - "response": "A man wearing a black baseball cap and holding a copy of The Wall Street Journal newspaper with the headline \"Love Letter to Liberty Square\" on the front page.", - "id": 19850 - }, - { - "image_path": "/content/drive/MyDrive/combined/531ac67b2a6cae8e.jpg", - "response": "A woman is sitting on a train and reading a book called \"Gone Girl\" by Gillian Flynn. She is wearing a white jacket and has a brown purse on her lap. She is also wearing a watch and has a ring on her finger.", - "id": 19851 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f498eb782919a45.jpg", - "response": "A box with a book written in swedish and a box with a paper with a diagram on it.", - "id": 19852 - }, - { - "image_path": "/content/drive/MyDrive/combined/549b38c8eec35b65.jpg", - "response": "A large inflatable yellow blob with a smiley face on it.", - "id": 19853 - }, - { - "image_path": "/content/drive/MyDrive/combined/5500238f1b3330b6.jpg", - "response": "A desk with a notebook, a pen, and a book on top of it.", - "id": 19854 - }, - { - "image_path": "/content/drive/MyDrive/combined/5288b2990493af70.jpg", - "response": "A collection of romance novels are displayed on a shelf.", - "id": 19855 - }, - { - "image_path": "/content/drive/MyDrive/combined/50b094e8e7dca317.jpg", - "response": "A book with a title in red and black text. The title is in German and is Reformacion de haviicht. Below the title is a woodcut of two men in armor. One man is sitting at a table and the other is standing. They are both looking at a globe. The man standing is holding a sword.", - "id": 19856 - }, - { - "image_path": "/content/drive/MyDrive/combined/529658176281eec3.jpg", - "response": "A man in military uniform is holding a certificate and shaking hands with a woman in a uniform.", - "id": 19857 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f6ff3ffe54016d8.jpg", - "response": "A person holding a magazine covering the topic of social power and the coming corporate revolution.", - "id": 19858 - }, - { - "image_path": "/content/drive/MyDrive/combined/5230e7ad622afbf5.jpg", - "response": "An open book with pages that have been cut out and pasted into it.", - "id": 19859 - }, - { - "image_path": "/content/drive/MyDrive/combined/5072dc72b05cfae7.jpg", - "response": "A chocolate milkshake in a glass mug with a cherry on top.", - "id": 19860 - }, - { - "image_path": "/content/drive/MyDrive/combined/536b15d8cd689cca.jpg", - "response": "an open book(0,0),(996,999) with a quote from the new testament about being broken for the good of others", - "id": 19861 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f26eb193cff218d.jpg", - "response": "A book with a blue cover with a gold design on it.", - "id": 19862 - }, - { - "image_path": "/content/drive/MyDrive/combined/54ba359cd0a63fe8.jpg", - "response": "A set of dictionary books on a bookshelf.", - "id": 19863 - }, - { - "image_path": "/content/drive/MyDrive/combined/535928729e34fad3.jpg", - "response": "An open book with a page about architecture.", - "id": 19864 - }, - { - "image_path": "/content/drive/MyDrive/combined/5487793f49e446eb.jpg", - "response": "A bottle of wine with a red label that says \"Harry Potter\" and a picture of a wizard on it. A book titled \"Harry Potter and the Deathly Hallows\" is next to the bottle. There is also a card that says \"Pain\" on it.", - "id": 19865 - }, - { - "image_path": "/content/drive/MyDrive/combined/50a597b7116932af.jpg", - "response": "A shelf full of music CDs, including works by artists such as The Beatles, Paul Simon, and Stevie Wonder.", - "id": 19866 - }, - { - "image_path": "/content/drive/MyDrive/combined/526f3a23169263d6.jpg", - "response": "A newspaper called The Broadcaster from April 27, 1952.", - "id": 19867 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fc5596edd4cfc59.jpg", - "response": "An open book is being held open by a hand. The book is open to a page that is written in a foreign language. The book is on a desk next to a computer keyboard and a mouse.", - "id": 19868 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e3732d946f67cae.jpg", - "response": "A book cover with a man and a woman sitting at a table.", - "id": 19869 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e11017c6046763.jpg", - "response": "A box filled with issues of The American Journal of Pathology.", - "id": 19870 - }, - { - "image_path": "/content/drive/MyDrive/combined/536fa270d9f8dcc1.jpg", - "response": "An open book with the words pressure sensor on the right side.", - "id": 19871 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ead61fe64fb9828.jpg", - "response": "A book with the title Underground Traffic Society on the cover.", - "id": 19872 - }, - { - "image_path": "/content/drive/MyDrive/combined/507a3cbfc0e7c309.jpg", - "response": "A book with a keyhole on the cover and the title \"The Greatest Man Who Ever Lived\" on the cover. The book is red and has gold lettering. The cover is dirty and there are two small holes in the cover, one near the keyhole and one near the top right corner. The book is sitting on a concrete surface.", - "id": 19873 - }, - { - "image_path": "/content/drive/MyDrive/combined/5298d5edccdf4dcb.jpg", - "response": "A record album cover for Ludwig van Beethoven's music.", - "id": 19874 - }, - { - "image_path": "/content/drive/MyDrive/combined/519c8e47ad093d48.jpg", - "response": "A book cover for a book called A Game of Thrones by George R.R. Martin. The cover is orange and brown and features a gold lion which is the symbol for the house of Lannister from the book.", - "id": 19875 - }, - { - "image_path": "/content/drive/MyDrive/combined/50a1475db88b76fe.jpg", - "response": "A french press filled with a green liquid sits on a white counter.", - "id": 19876 - }, - { - "image_path": "/content/drive/MyDrive/combined/502bb3593481e3e1.jpg", - "response": "A book display for the Fallingwater Cookbook with a book open to the title page.", - "id": 19877 - }, - { - "image_path": "/content/drive/MyDrive/combined/51ef555f40481c15.jpg", - "response": "A framed poster for Topsy's Roost hangs on a wall.", - "id": 19878 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f47c1e09b69ede4.jpg", - "response": "A book display with a variety of books on a table.", - "id": 19879 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ec44c66f6a886d5.jpg", - "response": "A man with a ponytail is using a ShopMaster bandsaw to cut a piece of wood.", - "id": 19880 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ee2a6e0356193d9.jpg", - "response": "A record album cover for Claude Debussy.", - "id": 19881 - }, - { - "image_path": "/content/drive/MyDrive/combined/51afa6b61a2e4a73.jpg", - "response": "A red and black book cover for a book called Stalkers.", - "id": 19882 - }, - { - "image_path": "/content/drive/MyDrive/combined/50aee1b6c3483941.jpg", - "response": "a sign that is white and black in color", - "id": 19883 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e1a3e652862f962.jpg", - "response": "A stack of books with a white cover and a light green band at the top.", - "id": 19884 - }, - { - "image_path": "/content/drive/MyDrive/combined/534297c40478013e.jpg", - "response": "A Monocle magazine on a table with the issue number 24 from June 2009.", - "id": 19885 - }, - { - "image_path": "/content/drive/MyDrive/combined/52c6df9acd539ceb.jpg", - "response": "The image features a table with a laptop computer on it. There are two books on the table, one is a hardcover book with a picture of a building on the cover and the title \"Architecture of the Future\" written on it. The other book is a digital media theory book with a title that includes the word \"E-Lite\". A notepad is also open on the table in front of the books. A cup can be seen on the table as well.", - "id": 19886 - }, - { - "image_path": "/content/drive/MyDrive/combined/500d626f7dec9bb1.jpg", - "response": "A book cover with a man standing in a alley way with a lantern.", - "id": 19887 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f0b62bb5f649328.jpg", - "response": "a book with a picture of a person holding a black and white photo of a dog on a boat", - "id": 19888 - }, - { - "image_path": "/content/drive/MyDrive/combined/535441c1ddab3d78.jpg", - "response": "A box filled with lots of different records.", - "id": 19889 - }, - { - "image_path": "/content/drive/MyDrive/combined/513660d63ef440e2.jpg", - "response": "A book with a pencil on the cover and the title \"Cash Flow Diary\" is being held in someones hand.", - "id": 19890 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f1eae3411d1602d.jpg", - "response": "A bookshelf full of children's books.", - "id": 19891 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f6d689ec4b92d58.jpg", - "response": "A collection of books, some of which are \"The American Wife\" by Susan Isaac, \"The Erotic Silence of the American Wife\" by Daima Heyn, and \"All for Love\" by Vidal.", - "id": 19892 - }, - { - "image_path": "/content/drive/MyDrive/combined/54611531c56d36c7.jpg", - "response": "A model rocket is on a wooden table.", - "id": 19893 - }, - { - "image_path": "/content/drive/MyDrive/combined/5129f8041aa92388.jpg", - "response": "A book from 1651 written in Latin.", - "id": 19894 - }, - { - "image_path": "/content/drive/MyDrive/combined/519dc8e73c5e493a.jpg", - "response": "The cover of the magazine \"Weird Tales\" with a blindfolded woman holding a triangular object in front of her face.", - "id": 19895 - }, - { - "image_path": "/content/drive/MyDrive/combined/5428c567b8cfdcc5.jpg", - "response": "A stack of purple boxes with a picture of a purple character named Grimace on them.", - "id": 19896 - }, - { - "image_path": "/content/drive/MyDrive/combined/55018830c6a70275.jpg", - "response": "A newspaper with a baby on the front page.", - "id": 19897 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fca8fafe0df1809.jpg", - "response": "A red box with the name Beethoven on it.", - "id": 19898 - }, - { - "image_path": "/content/drive/MyDrive/combined/521474e946df99a6.jpg", - "response": "An open book on a table next to a closed book.", - "id": 19899 - }, - { - "image_path": "/content/drive/MyDrive/combined/50b05443029913a9.jpg", - "response": "A banner that says \"Whatever Happened to Polio?\" with a picture of a man and two women.", - "id": 19900 - }, - { - "image_path": "/content/drive/MyDrive/combined/51dc93e8995b5e46.jpg", - "response": "A poster with a woman in a black and white dress with purple swirls around her. She is falling backwards with a white shoe in her hand. The word \"\u6b7b\u5143\" is at the bottom of the poster.", - "id": 19901 - }, - { - "image_path": "/content/drive/MyDrive/combined/532cb0a2a48ca6f1.jpg", - "response": "A leather bound book with gold lettering on the spine.", - "id": 19902 - }, - { - "image_path": "/content/drive/MyDrive/combined/500a5144eb7cccd3.jpg", - "response": "A close up of a wall with a sign on it.", - "id": 19903 - }, - { - "image_path": "/content/drive/MyDrive/combined/54b309df74190a9b.jpg", - "response": "A book with a red and white cover that says \"\u9ed2\u8239\u7279\u8a31\u306e\u6b63\u4f53\" in blue letters.", - "id": 19904 - }, - { - "image_path": "/content/drive/MyDrive/combined/52349c90893294f6.jpg", - "response": "An open book with many words on the pages.", - "id": 19905 - }, - { - "image_path": "/content/drive/MyDrive/combined/53155ad87b7753e1.jpg", - "response": "An open book with a picture of a woman sitting at a typewriter.", - "id": 19906 - }, - { - "image_path": "/content/drive/MyDrive/combined/526159cd450f16b3.jpg", - "response": "A cardboard box filled with Trek protein flapjack boxes.", - "id": 19907 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f11335928c630c9.jpg", - "response": "The cover of the book \"A Gesture Life\" by Chang-rae Lee. The book is described as a national bestseller and the author is Chang-rae Lee. There is a red circle around the title of the book with the words \"National Bestseller\" in white inside it. The author's name is listed in yellow and there is a black border around the cover. The cover features a black and white photograph of a man holding his head in his hands.", - "id": 19908 - }, - { - "image_path": "/content/drive/MyDrive/combined/4effa64e2a8faed0.jpg", - "response": "A book is on a wooden table. The book is called World of Trouble and is the third book in a series called The Last Policeman.", - "id": 19909 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e91b1f5869a3a7e.jpg", - "response": "A dark blue book cover with a design of a crab, a shell, and some seaweed.", - "id": 19910 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fe98b98a1f372be.jpg", - "response": "A box of Clipper green tea sits on a table next to a bag of Clipper tea. The box and bag are on a floral tablecloth.", - "id": 19911 - }, - { - "image_path": "/content/drive/MyDrive/combined/54623649fa83fc87.jpg", - "response": "A book cover for a science fiction novel called \"Syzgy\" by Frederik Pohl. The cover features a red and orange image of a city silhouette with a large sun in the background. The title of the book is written in white above the image, and below it, in smaller font, it says \"The worst disasters are of the human kind.\"", - "id": 19912 - }, - { - "image_path": "/content/drive/MyDrive/combined/51034a7bccb64b34.jpg", - "response": "A record album cover for La Traviata by Giuseppe Verdi. The cover is white with black text. The record album is on a wooden table.", - "id": 19913 - }, - { - "image_path": "/content/drive/MyDrive/combined/554c1929b9ed3b0d.jpg", - "response": "A book with a red cover and gold designs on it.", - "id": 19914 - }, - { - "image_path": "/content/drive/MyDrive/combined/5570541e99d7c3ac.jpg", - "response": "a book with a white cover and some writing on it", - "id": 19915 - }, - { - "image_path": "/content/drive/MyDrive/combined/7a963898de8b8941.jpg", - "response": "A book cover with a woman in a white dress holding a knife to her throat. The title is \"Dead Man's Diary\" and there is a taste for cognac written in yellow. The author is Brett Halliday.", - "id": 19916 - }, - { - "image_path": "/content/drive/MyDrive/combined/9a4baa571d852aa7.jpg", - "response": "The image features a young woman with black hair and bangs, holding a guitar. She is wearing a pink and white shirt and a yellow long sleeved shirt over it. The wall behind her is graffitied.", - "id": 19917 - }, - { - "image_path": "/content/drive/MyDrive/combined/9a0e6465bf457390.jpg", - "response": "A book with a brown cover and a bicycle on it.", - "id": 19918 - }, - { - "image_path": "/content/drive/MyDrive/combined/b359664238df3475.jpg", - "response": "A stack of travel books including \"Living and Working in London\" and \"Hackney: A Secret Guide\" on a table.", - "id": 19919 - }, - { - "image_path": "/content/drive/MyDrive/combined/cf7307a03704610c.jpg", - "response": "A stack of books is on a table. The books are by various authors including Stephen King, Bill Hill, and Dave Barry.", - "id": 19920 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb5c280ac3f7138.jpg", - "response": "A glass mug filled with a golden beer.", - "id": 19921 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aea2fe5595d15e0.jpg", - "response": "On a shelf, there are two soda bottles. One is a green Fanta bottle and the other is a clear glass bottle of 7up.", - "id": 19922 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c3dd606f681bbc5.jpg", - "response": "A plastic bottle of Pepsi Max sits on a wooden table. The bottle is closed and has a blue cap. The label on the bottle is white with red, blue, and green writing. The soda has a rainbow of colors surrounding it.", - "id": 19923 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f01a8ac837bb8d2.jpg", - "response": "A collection of beer bottles and a can are lined up on a counter. The bottles come in a variety of shapes and sizes, and are of different colors. Some of the labels are blue, some are tan, and others are white. The collection includes brands such as Chimay, Kriek, Lagunitas, Guinness, and more. There is also a can of Guinness among the collection. The collection is sitting on a counter in a kitchen.", - "id": 19924 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebbd748ee3fe7e5.jpg", - "response": "A bottle of Paulaner beer with condensation on the outside.", - "id": 19925 - }, - { - "image_path": "/content/drive/MyDrive/combined/096c5a920933f198.jpg", - "response": "A bottle of The Master All Malt beer sits on a wooden table. The label on the bottle is black and golden and has English and Asian writing. The bottle is made of glass and has a gold colored liquid inside. The liquid is also visible in the background through the label.", - "id": 19926 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bf36835f38ef50b.jpg", - "response": "A bottle of Club-Mate sits on a table in a darkened room. The bottle is clear and tall, with a white label. There is a crowd of people in the background, with some people standing and some sitting. They are all facing a stage where a man is speaking. The stage is lit up and there is a large screen on the wall behind the man.", - "id": 19927 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df74e0d594a4199.jpg", - "response": "In the image, there is a man wearing a striped shirt and a white apron. He is standing in front of a table, which has a blue curtain and several bottles on it. The man is using a cheese grater to grate cheese, and some shredded cheese is falling out of the grater. He is also holding a shaker in his hand.", - "id": 19928 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d10d38b05f114e8.jpg", - "response": "A lobster roll and a bottle of beer are sitting on a table.", - "id": 19929 - }, - { - "image_path": "/content/drive/MyDrive/combined/0921effeecad72df.jpg", - "response": "A growler of beer and two glasses are on a counter.", - "id": 19930 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad193d5e8353bce.jpg", - "response": "On a store shelf, there are several bottles of Gatorade. The Gatorade has a red liquid inside and an orange cap. The bottles are set on a white shelf.", - "id": 19931 - }, - { - "image_path": "/content/drive/MyDrive/combined/088490903e2f86eb.jpg", - "response": "A tin can of Trekking Mahlzeiten Cheeseburger sits on a wooden table.", - "id": 19932 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e92e5752a619d45.jpg", - "response": "A bottle of Leon Beyer Riesling 2010 from Alsace.", - "id": 19933 - }, - { - "image_path": "/content/drive/MyDrive/combined/0be321c1d48a558a.jpg", - "response": "A bottle of Mirror Pond Pale Ale next to a tall glass filled with the beer.", - "id": 19934 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c6dd636f2c9336.jpg", - "response": "A bottle of Mirlos Ouzo is on a table.", - "id": 19935 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ca4c6ab2dca59bd.jpg", - "response": "The image shows three mini bottles of American Honey whisky by American Honey. The bottles are arranged in a row and are standing on a wooden table. The table is located near a wall and there is a blurry view of the ocean in the background. The sky is blue and there are no people in the image.", - "id": 19936 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d574ae2484df0e9.jpg", - "response": "A bottle of Le Petiole wine sits on a table.", - "id": 19937 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d168d9af3ef68a3.jpg", - "response": "A can of Devassa beer next to a glass of beer.", - "id": 19938 - }, - { - "image_path": "/content/drive/MyDrive/combined/09496c3d6a6f5c77.jpg", - "response": "A table with a cup of Cubby Bear root beer and a bottle of Cubby Bear root beer. There is also a spoon in the cup and a bottle cap next to the bottle.", - "id": 19939 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e90ef5eb4eaeb57.jpg", - "response": "The image shows two bottles of Pepsi on a store shelf. The bottles are silver and blue in color and are both 1.5 liters in size. The silver bottle is for Diet Pepsi and the blue bottle is for regular Pepsi. Both bottles have the Pepsi logo on them and are displayed next to each other.", - "id": 19940 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6f40c60c794ece.jpg", - "response": "A bottle of Lorina Violette is on display. The label is blue and white and has a logo of a woman in a hat. The bottle is made of glass and is clear.", - "id": 19941 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc777288b3ccf2b.jpg", - "response": "A bottle of Pendle Witches Brew Moorhouse's.", - "id": 19942 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b6ec0478f2a431e.jpg", - "response": "A table with three bottles of beer on it.", - "id": 19943 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a7ca5f72cd85fc7.jpg", - "response": "A bottle of Slaapmutske Hop Collection Belgian Ale.", - "id": 19944 - }, - { - "image_path": "/content/drive/MyDrive/combined/099edb8b52a7adbd.jpg", - "response": "A row of hot sauce bottles are displayed on a shelf. The bottles are Tapatio hot sauce and are all the same size. The bottles are red with a white label and a picture of a man wearing a sombrero. The bottle caps are red.", - "id": 19945 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a73100ce26e331b.jpg", - "response": "A recipe for Saison Caramel Corn is shown on a piece of lined paper. The popcorn kernels are in a bag and are yellow and white. A bottle of saison is shown next to the popcorn.", - "id": 19946 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ec1e0c6dc621b70.jpg", - "response": "A person holding a bottle of beer in a dark room.", - "id": 19947 - }, - { - "image_path": "/content/drive/MyDrive/combined/098fcb9c36974394.jpg", - "response": "A man in a blue shirt and beige pants is pouring Bacardi into a coconut. There are several other coconuts on the table, some with straws in them. There is also a blender with a green liquid in it. There are several bottles on the table, including one of Bacardi, one of rum, and one of tequila. There are also two cups on the table. There is a knife on the table and a handbag next to the man.", - "id": 19948 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d75626cd08d6930.jpg", - "response": "In the image there is a row of many different types of beer bottles. They are all lined up next to each other on a counter. The bottles come in various shapes and sizes and are made of glass. Some of the labels on the bottles are white, black, green, and red. The bottles have a total of 13 visible labels.", - "id": 19949 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c496fea800505a2.jpg", - "response": "The image shows a row of six bottles of Palliser Estate Sauvignon Blanc wine. The wine is a white wine and was produced in 2012. The label on the wine bottle has a large white rectangle with the name of the winery and the wine variety in a smaller font below it. The bottles are all closed with white corks and have a twist-off cap on the top. The wine bottles are arranged in a row on a wooden shelf.", - "id": 19950 - }, - { - "image_path": "/content/drive/MyDrive/combined/0886f7870d4b0142.jpg", - "response": "A large bottle of wine with a label that says \"Bad Boy\" on it.", - "id": 19951 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a6ff018edc2bf99.jpg", - "response": "The image shows a room filled with a large number of wine bottles displayed on a wall and on shelves. The bottles are of various shapes and sizes, and some are corked while others have their corks still in place. The bottles are arranged in a way that creates an aesthetically pleasing display.", - "id": 19952 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e0877cea293f60f.jpg", - "response": "A desk with a laptop, keyboard, monitor, phone, and bottle of water on it.", - "id": 19953 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f5add22dd6ecbe7.jpg", - "response": "The image features a row of five wine bottles sitting on a wooden table. The bottles are of various shapes and sizes, and they are all closed. The labels on the bottles display different information, such as the name of the winery and the vintage. Some of the bottles also have gold caps.", - "id": 19954 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e3cb83ebe023379.jpg", - "response": "A bottle of Riverwalk IPA next to a filled glass of beer.", - "id": 19955 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e44e1d4513782a6.jpg", - "response": "A bottle of Astra beer sitting on a counter.", - "id": 19956 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7d52785bfa80a2.jpg", - "response": "A bottle of Spotted Cow Ale next to a glass filled with the beer.", - "id": 19957 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b5acada7a520860.jpg", - "response": "A bottle of Vedett Extra Blond beer sits on a wooden table.", - "id": 19958 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a85f9b7644fd924.jpg", - "response": "In the image there are two dark brown glass bottles with black labels that read \"Shibuya Beer\". The beer is an \"Energy\" style beer. The bottle on the left has a white label with the words \"Energy\" in white and \"Shibuya Beer\" in white. The bottle on the right has a black label with the words \"Shibuya Beer\" in white and \"Energy\" in white. Next to the bottles is a glass filled with the beer. The beer has a yellowish tint and is a bit cloudy. The foam is white and there is a small piece of greenery behind the bottles and glass.", - "id": 19959 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2c30fdb640800e.jpg", - "response": "In the image there is a store with shelves full of bottles of alcohol, including Ron Barcel\u00f3. Some bottles are on a shelf, some are on a table, and there are also people in the store.", - "id": 19960 - }, - { - "image_path": "/content/drive/MyDrive/combined/09ea9a1da7ee28e3.jpg", - "response": "A bottle of Chateau Rocher Figeac Saint Emilion wine from 2009.", - "id": 19961 - }, - { - "image_path": "/content/drive/MyDrive/combined/07a5f5a693716f93.jpg", - "response": "A bottle of Pacifico beer sits on a table.", - "id": 19962 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a7515f822a6421e.jpg", - "response": "A bottle of 7up next to a bottle of Captain Morgan Original Spicedrum.", - "id": 19963 - }, - { - "image_path": "/content/drive/MyDrive/combined/0787191acc5cf80e.jpg", - "response": "A bottle of Jazz Street is sitting on a table next to a jar.", - "id": 19964 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bc80dad450521d4.jpg", - "response": "A person is holding a glass of beer in their hand. The beer is in a clear glass and is branded with the Murphys Irish Red logo. The glass is half full and there is a white head on top of the beer. The background of the image is black.", - "id": 19965 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c072bab03db743d.jpg", - "response": "A bottle of Celebration Ale from the Bragdy Conwy Brewery.", - "id": 19966 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7b77887da429a8.jpg", - "response": "A man and a woman sitting at a table with a microphone in front of them.", - "id": 19967 - }, - { - "image_path": "/content/drive/MyDrive/combined/08408a32b8dd95b1.jpg", - "response": "A plastic bottle of Ghadeer water sitting on a counter.", - "id": 19968 - }, - { - "image_path": "/content/drive/MyDrive/combined/08433bc2e52fad22.jpg", - "response": "A refrigerator shelf with a carton of Horizon Organic milk next to three bottles of Corona beer.", - "id": 19969 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ad5ec886f1275bf.jpg", - "response": "A bottle of Orme beer next to a glass filled with the beer.", - "id": 19970 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df847dc2b814751.jpg", - "response": "A bottle of Theakston Old Peculier next to a mug of beer.", - "id": 19971 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cb70bf38b4001a6.jpg", - "response": "The image features a wooden table covered with a variety of beer bottles and cans. There are at least 12 bottles and 4 cans visible on the table, with some of them standing upright and others laying horizontally. The bottles and cans come in different shapes, sizes, and colors, and they are arranged in a way that creates a visually interesting composition.", - "id": 19972 - }, - { - "image_path": "/content/drive/MyDrive/combined/180a11f1cbd90305.jpg", - "response": "Two bottles of Diet Mountain Dew are side by side. The one on the left is green and white and has a white label with green and white writing. The one on the right is also green and white and has a white label with red and blue writing.", - "id": 19973 - }, - { - "image_path": "/content/drive/MyDrive/combined/102be9f03369e1b4.jpg", - "response": "A bottle of Sweet Baby Jesus chocolate peanut butter porter sits on a bar in front of five other bottles of the same beer.", - "id": 19974 - }, - { - "image_path": "/content/drive/MyDrive/combined/181dc8fbcbf4aa0a.jpg", - "response": "A green bottle of Heineken beer sitting on a ledge.", - "id": 19975 - }, - { - "image_path": "/content/drive/MyDrive/combined/114902a59f068716.jpg", - "response": "A group of wine bottles are lined up on a counter. The bottles are from various countries and regions, and include both red and white wines. The labels are in different languages and feature a variety of designs.", - "id": 19976 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fc422d0918bd8b4.jpg", - "response": "A bottle of Urbock next to a bottle opener and a glass filled with dark beer.", - "id": 19977 - }, - { - "image_path": "/content/drive/MyDrive/combined/13b4c25dc8daa44a.jpg", - "response": "A man standing behind a table filled with various bottles of soda.", - "id": 19978 - }, - { - "image_path": "/content/drive/MyDrive/combined/1241915bc4b19cb3.jpg", - "response": "a plate of food with a spoon next to it, a bottle of somersby apple cider, a bottle of somersby apple cider, a plate of food with a spoon next to it", - "id": 19979 - }, - { - "image_path": "/content/drive/MyDrive/combined/171f43c875d913b6.jpg", - "response": "The image shows a bathroom counter with toiletries on it. There are two bottles of liquid soap, one on the left and one on the right. A toothbrush is placed near the left bottle. A cup is placed near the right bottle. A bottle of hand sanitizer is placed on the counter. A bottle of hand cream is placed on the counter. A bottle of Aquaphor is placed on the counter. A bottle of Clear Care is placed on the counter. A bottle of hand rub is placed on the counter. A bottle of shampoo is placed on the counter. A bottle of conditioner is placed on the counter. A bottle of lotion is placed on the counter. A bottle of nail polish remover is placed on the counter. A bottle of nail polish is placed on the counter. A bottle of nail polish remover is placed on the counter. A bottle of nail polish is placed on the counter. A bottle of nail polish remover is placed on the counter.", - "id": 19980 - }, - { - "image_path": "/content/drive/MyDrive/combined/16c12e0d27099899.jpg", - "response": "A glass milk bottle from the Hirth Bros Dairy in Ann Arbor, Michigan. The bottle is filled with white sugar.", - "id": 19981 - }, - { - "image_path": "/content/drive/MyDrive/combined/164728075a91affa.jpg", - "response": "A bottle of beer sitting on a table next to an empty glass.", - "id": 19982 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f960d238f151a0e.jpg", - "response": "A bottle of alcohol, specifically a type of whisky, is sitting in a wooden box. The box is made of light brown wood and the bottle is on a diagonal in the box. The bottle has a blue top and a gold label with a man on a horse on it. The label also says \"The Cooper's Choice\" on it. The bottle is filled with a dark liquid.", - "id": 19983 - }, - { - "image_path": "/content/drive/MyDrive/combined/1075486913349a52.jpg", - "response": "A row of wooden barrels are stacked against a wall.", - "id": 19984 - }, - { - "image_path": "/content/drive/MyDrive/combined/183980c372fde645.jpg", - "response": "A bottle of beer called voll-damm double malta on a white background.", - "id": 19985 - }, - { - "image_path": "/content/drive/MyDrive/combined/104bf2461f9962a8.jpg", - "response": "A wooden barrel with the year 2009 on it.", - "id": 19986 - }, - { - "image_path": "/content/drive/MyDrive/combined/13cfdc8237b8e101.jpg", - "response": "A close up of a counter with many different types of alcohol on it.", - "id": 19987 - }, - { - "image_path": "/content/drive/MyDrive/combined/1322fcd0284bc1af.jpg", - "response": "A bottle of Greene King IPA Export sits on a grey surface. The bottle is purple and brown. The label has a purple border with the words Greene King in gold. The words IPA are also in gold and Export is in green. Below the main text is a small section of green with the words Fine Ale, Crafted In. Below that is the words Ruby S. Edmunds, Suffolk.", - "id": 19988 - }, - { - "image_path": "/content/drive/MyDrive/combined/1807102148ab8667.jpg", - "response": "A bottle of soda next to a glass filled with ice and soda.", - "id": 19989 - }, - { - "image_path": "/content/drive/MyDrive/combined/156127d1386980ff.jpg", - "response": "A person holding a glass of beer in front of a bar.", - "id": 19990 - }, - { - "image_path": "/content/drive/MyDrive/combined/1284a28823348d6a.jpg", - "response": "The image shows a shelf full of jars of food, specifically peanut butter, with green lids. The jars are stacked two high and there is a plastic strip in the middle of the jars. The jars are labeled with various brands such as Vitrac, Jif, and Smucker's.", - "id": 19991 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a379ccccb8b45b.jpg", - "response": "A brown Harpoon growler sits on a wooden table.", - "id": 19992 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd31baacd87f404.jpg", - "response": "A person holding a blue can of Blue Ice beer next to a wine glass filled with the beer.", - "id": 19993 - }, - { - "image_path": "/content/drive/MyDrive/combined/185f211464fc9fc6.jpg", - "response": "A bottle of Pranqster Belgian Style Golden Ale held in someones hand.", - "id": 19994 - }, - { - "image_path": "/content/drive/MyDrive/combined/15d3cc7e81c1e6dd.jpg", - "response": "A bottle of bordeaux wine from 2009.", - "id": 19995 - }, - { - "image_path": "/content/drive/MyDrive/combined/187e68de40a43680.jpg", - "response": "A poster for an event called Skate ControL2.", - "id": 19996 - }, - { - "image_path": "/content/drive/MyDrive/combined/1133cc010dd70896.jpg", - "response": "The image shows a row of twelve different bottles of beer sitting on a wooden table. The bottles come in a variety of shapes and sizes, and are made by different breweries. Some of the labels are colorful, featuring artwork and text that provide information about the beer's flavor and origin. The bottles are closed, and appear to be ready for tasting or storage.", - "id": 19997 - }, - { - "image_path": "/content/drive/MyDrive/combined/1763135fd85e993d.jpg", - "response": "A stone building with a window and a door is in the background of two bottles of wine.", - "id": 19998 - }, - { - "image_path": "/content/drive/MyDrive/combined/1296e205c5b4aacb.jpg", - "response": "A teal blue USB drive in the shape of a wine bottle.", - "id": 19999 - }, - { - "image_path": "/content/drive/MyDrive/combined/117f768038c45dd1.jpg", - "response": "A bottle of beer and a jar of mustard sit on a counter.", - "id": 20000 - }, - { - "image_path": "/content/drive/MyDrive/combined/181757c81cf869c6.jpg", - "response": "In the image, there is a large selection of wine bottles displayed on a shelf. The bottles come in different shapes and sizes, and they are all white. Some of the bottles have black caps, while others have twist-off caps. The shelf is a bright red color and the bottles are arranged in a way that they almost fill the entire shelf.", - "id": 20001 - }, - { - "image_path": "/content/drive/MyDrive/combined/121980ef9352843e.jpg", - "response": "A bottle of Rivella sits next to a glass filled with the beverage.", - "id": 20002 - }, - { - "image_path": "/content/drive/MyDrive/combined/16f9a8cafc35fc52.jpg", - "response": "Three green bottles of soju are lined up on a black counter.", - "id": 20003 - }, - { - "image_path": "/content/drive/MyDrive/combined/16caf9d9448b8081.jpg", - "response": "A bottle(6,3),(994,994) of gold miner beer from the freeminer brewery.", - "id": 20004 - }, - { - "image_path": "/content/drive/MyDrive/combined/12664e21fa7fed44.jpg", - "response": "A fridge with several bottles of beer in it.", - "id": 20005 - }, - { - "image_path": "/content/drive/MyDrive/combined/14eeed2278c26b5f.jpg", - "response": "A collection of Rocket Fizz branded soda bottles in a row.", - "id": 20006 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b89df8dd0ac0ab.jpg", - "response": "A bottle of Tabasco hot sauce sits on a table along with a plate of mashed potatoes and a bowl of butter. There are also three other condiment packets on the table.", - "id": 20007 - }, - { - "image_path": "/content/drive/MyDrive/combined/1216ba0f3d297c43.jpg", - "response": "A bottle of beer and a glass of beer are sitting on a table. The bottle is next to the glass and has a ferris wheel on the label.", - "id": 20008 - }, - { - "image_path": "/content/drive/MyDrive/combined/1696be28d308ec18.jpg", - "response": "A bottle of beer sitting next to a glass of beer on a table.", - "id": 20009 - }, - { - "image_path": "/content/drive/MyDrive/combined/14f1b4a8e403ba15.jpg", - "response": "A couple of dusty bottles with labels that say Sovereign.", - "id": 20010 - }, - { - "image_path": "/content/drive/MyDrive/combined/17ce215d6f745b28.jpg", - "response": "A white keyboard on a desk with a plastic bottle of compressed air sitting next to it.", - "id": 20011 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fb0b2da0e47549a.jpg", - "response": "A small red robot toy sitting on a table.", - "id": 20012 - }, - { - "image_path": "/content/drive/MyDrive/combined/171837fcae4a96ec.jpg", - "response": "An orange amplifier with a glove on top of it.", - "id": 20013 - }, - { - "image_path": "/content/drive/MyDrive/combined/116a6eae4f120bac.jpg", - "response": "A close up of several bottles of beer on a table.", - "id": 20014 - }, - { - "image_path": "/content/drive/MyDrive/combined/13e4fa74548b94bd.jpg", - "response": "A bottle of beer and a glass of beer are sitting on a table. The bottle is brown and has a yellow label with red and black writing. The glass is also brown and full of beer. The beer has a white head on top.", - "id": 20015 - }, - { - "image_path": "/content/drive/MyDrive/combined/162cb60d945b5ed5.jpg", - "response": "A close up of a few different wine bottles on a table.", - "id": 20016 - }, - { - "image_path": "/content/drive/MyDrive/combined/128d32b9c333c7ef.jpg", - "response": "A bottle of Marstons Single Malt on a counter.", - "id": 20017 - }, - { - "image_path": "/content/drive/MyDrive/combined/187a0ffb7d461f8c.jpg", - "response": "A glass of beer sits on a counter. The beer is a dark color and is from the Guinness brand.", - "id": 20018 - }, - { - "image_path": "/content/drive/MyDrive/combined/11871f564fc9dfc3.jpg", - "response": "A bottle of Moscato wine on a wooden shelf.", - "id": 20019 - }, - { - "image_path": "/content/drive/MyDrive/combined/159d48868f6c5d60.jpg", - "response": "A bottle of Amstel beer sits on a table next to a glass filled with beer. There is a table with a wooden surface and a yellow wall behind it. On the table, there are also some snacks and a lighter.", - "id": 20020 - }, - { - "image_path": "/content/drive/MyDrive/combined/16797ddc86499d77.jpg", - "response": "A bottle of Hofbrau Dunkel next to a glass filled with the beer.", - "id": 20021 - }, - { - "image_path": "/content/drive/MyDrive/combined/10d6bbe254b8c6dd.jpg", - "response": "A refrigerator with a six pack of IBC root beer inside.", - "id": 20022 - }, - { - "image_path": "/content/drive/MyDrive/combined/185907f89243d1d1.jpg", - "response": "A bottle of Grampus Hoppy Golden Double Mash from the Pretty Things Beer & Ale Project sits on a table.", - "id": 20023 - }, - { - "image_path": "/content/drive/MyDrive/combined/11ae667131d10ba2.jpg", - "response": "A close up of three different beers on a table.", - "id": 20024 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ba75cb84551cad.jpg", - "response": "The image shows a store shelf filled with a variety of beer bottles. There are at least 14 bottles visible, arranged in two rows. The bottles come in different shapes and sizes, and some are made of green glass. The labels on the bottles display various brand names such as Heineken, Amstel, and Estrella. The bottles are filled with a variety of beer, including some that are almost empty.", - "id": 20025 - }, - { - "image_path": "/content/drive/MyDrive/combined/16b8f8aa4616a9b4.jpg", - "response": "A bottle of green liquid with a white label that says STURM.", - "id": 20026 - }, - { - "image_path": "/content/drive/MyDrive/combined/1539cfc475fb946e.jpg", - "response": "A bottle of Summer Shandy from Leinenkugel's sits next to a glass filled with the beer. The beer has a yellow color with a lemonade flavor.", - "id": 20027 - }, - { - "image_path": "/content/drive/MyDrive/combined/1526520f65bff202.jpg", - "response": "A bottle of Shipyard Smashed Pumpkin Ale with Natural Flavor. The label is orange and green. The name of the beer is written in green and orange. There is a picture of a pumpkin on the label. The alcohol content is 9.0%. The bottle is 6 fluid ounces.", - "id": 20028 - }, - { - "image_path": "/content/drive/MyDrive/combined/119373efce1b1a85.jpg", - "response": "A bottle of Duff beer sitting on a ledge.", - "id": 20029 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f984745b7906dae.jpg", - "response": "A wooden table with a can of Cigarrs Premium beer in front of a line of other beer bottles.", - "id": 20030 - }, - { - "image_path": "/content/drive/MyDrive/combined/112a49258b9b01ea.jpg", - "response": "A bottle of Carlsberg next to a glass of beer on a wooden table.", - "id": 20031 - }, - { - "image_path": "/content/drive/MyDrive/combined/16f467e6724072eb.jpg", - "response": "A refrigerator with a few items inside.", - "id": 20032 - }, - { - "image_path": "/content/drive/MyDrive/combined/124918575a43d2b8.jpg", - "response": "A blue toy in a clear plastic bag with a card that says KAIYU FOR GROWNUPS.", - "id": 20033 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d368b37509dca67.jpg", - "response": "In the image there are two pictures of a persons hand with a blue nail polish. The nail polish is painted on the nails and fingers. The nail polish is a light blue color. The nail polish is also labeled with the numbers 218. The pictures are labeled MABI 218 and MABI 218. There is also text on the pictures that says HIPPIE CHIC.", - "id": 20034 - }, - { - "image_path": "/content/drive/MyDrive/combined/1940f68d6d697475.jpg", - "response": "The image shows a store shelf filled with bottles of Pine-Sol cleaner. The bottles are arranged in a row and are mostly filled with the lemon-scented liquid. Some of the bottles are nearly empty, while others have more liquid in them.", - "id": 20035 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e891e5aa295a868.jpg", - "response": "A counter with three beer bottles on it. The first one is from Rogue Voodoo Doughnut Bacon Maple Ale, the second one is from Nectar of the Gods, and the third one is from McChouffe.", - "id": 20036 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e5b39a8d36c5c44.jpg", - "response": "A bottle of Somersby Apple Cider next to a glass filled with the dark beer. The bottle has a gold label with a picture of an apple and the word Somersby. The glass is filled with a dark beer and has the word Guinness written on it. The glass is sitting on a coaster.", - "id": 20037 - }, - { - "image_path": "/content/drive/MyDrive/combined/18c9519410af9b80.jpg", - "response": "A bottle of Mint water sitting on a railing with the ocean in the background.", - "id": 20038 - }, - { - "image_path": "/content/drive/MyDrive/combined/19dba46dde5640d9.jpg", - "response": "A man is holding a bottle of Dow Ale and a glass of beer in front of a bowling alley.", - "id": 20039 - }, - { - "image_path": "/content/drive/MyDrive/combined/233ba8e6cf77a7fb.jpg", - "response": "The image shows a store shelf filled with several bottles of wine. The bottles are lined up in a row and are of different sizes and shapes. The labels on the bottles display various names and designs. Some of the bottles are dark red, while others are lighter in color. The bottles are made of glass and are displayed in a coolers to keep them at the right temperature for serving.", - "id": 20040 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a4556fa7e6e3997.jpg", - "response": "A bottle of Jack Daniels Tennessee Honey sits next to two shot glasses. The glasses are half full with the yellow liquid.", - "id": 20041 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b5a99baf5141f9a.jpg", - "response": "A bottle of Jim Beam bourbon sits on a wooden table. There is a shot glass next to the bottle. Dice are scattered on the table. A cup is on the table. A person is visible in the background.", - "id": 20042 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e12a4d506856f42.jpg", - "response": "A close up of a bottle of Absolut Disco Vodka.", - "id": 20043 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8ed5089bf1edeb.jpg", - "response": "A bottle of wine with a purple label on a wooden table.", - "id": 20044 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dace3ba3af7533e.jpg", - "response": "A hand holding a small bottle of M\u00f6wen Schiet.", - "id": 20045 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a3809016360b32e.jpg", - "response": "The image features two bottles of Coco Brev\u00e9, a brand of sparkling water, sitting on a white surface. The left bottle is labeled Mango Citrus and is orange with a green and orange swirly design on the label. The right bottle is labeled Kiwi Lime and is green with a green and orange swirly design on the label. Both bottles have white caps. The background shows a body of water with a few boats and some buildings in the distance. The sky is blue with some clouds.", - "id": 20046 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bd0f1962d657c57.jpg", - "response": "A bottle of beer and a wine glass full of beer are sitting on a table. The bottle is labeled \"Nemesis\" and the glass has a label that says \"Founders\". There is also a person in the background wearing a striped shirt.", - "id": 20047 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a10fa3b69b5cf53.jpg", - "response": "A bowl with butter, sugar, and an egg in it.", - "id": 20048 - }, - { - "image_path": "/content/drive/MyDrive/combined/194e729d2cc85d16.jpg", - "response": "A grocery store with shelves full of food and drink.", - "id": 20049 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc6a31593534a5d.jpg", - "response": "A beach scene with two bottles of beer sitting on a table. The sun is setting in the background.", - "id": 20050 - }, - { - "image_path": "/content/drive/MyDrive/combined/21a278b692853e2a.jpg", - "response": "A table with several bottles and glasses of beer on it.", - "id": 20051 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d3b2856f6220ba1.jpg", - "response": "A bottle of Villa Diamante beer with a blue and white label.", - "id": 20052 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ad208cbbe37b18.jpg", - "response": "The image displays three bottles of alcoholic beverages. The first one is from Twisted Nose Distillery and is labeled as Aged Gin. The second one is also from Twisted Nose Distillery and is labeled as Vodka. The third one is from Vermouth and is also from Twisted Nose Distillery.", - "id": 20053 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dc55e6bbee50cbc.jpg", - "response": "A bottle of wine with a tan label that says F. Prado on it.", - "id": 20054 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b317f54e3510621.jpg", - "response": "A bottle of Victory Golden Monkey next to a glass filled with the beer.", - "id": 20055 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d6476f82fcbc496.jpg", - "response": "A set of four Cuca Fresca bottles, each in a different flavor.", - "id": 20056 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b28c6b52c4ce879.jpg", - "response": "A bottle of syrup of black draught laxative sitting on a wooden post.", - "id": 20057 - }, - { - "image_path": "/content/drive/MyDrive/combined/22131589eb98127e.jpg", - "response": "The image shows a row of beer bottles displayed on a shelf. There are at least twelve bottles visible, arranged in a straight line. The bottles come in various shapes and sizes, and some of them have labels with different colors and designs. The shelf is made of white marble and is likely located in a store or bar.", - "id": 20058 - }, - { - "image_path": "/content/drive/MyDrive/combined/1fb5f886e2ecc46c.jpg", - "response": "A bottle of syrup of black draught is shown. The bottle is small and made of glass. The label is yellow and has the words \"A pleasant tasting laxative\" written on it. The bottle is shown sitting on a pile of rocks.", - "id": 20059 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a94c35c0d898b1b.jpg", - "response": "A bottle of Fanta apple flavoured drink.", - "id": 20060 - }, - { - "image_path": "/content/drive/MyDrive/combined/19303fe3e533242b.jpg", - "response": "A table full of food and drinks, including a bowl of chips, a bowl of guacamole, a bowl of salsa, a salad, and a bottle of beer. There are also chairs and a backpack in the background.", - "id": 20061 - }, - { - "image_path": "/content/drive/MyDrive/combined/206a5ef0ec6950e6.jpg", - "response": "A bottle of cresta rosa cabernet sauvignon sits on a white counter. The label is white with the name of the winery in white cursive font. The wine in the bottle is pink. The bottle is half full. There is condensation on the outside of the bottle. The top of the bottle is sealed with a piece of foil. The background is blurred out and there is a shadow on the right side of the image.", - "id": 20062 - }, - { - "image_path": "/content/drive/MyDrive/combined/195308c7e0c40376.jpg", - "response": "A bottle of Gallo beer sitting on a table.", - "id": 20063 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b59a17315567e96.jpg", - "response": "A glass of beer is sitting next to a bottle of beer on a bar.", - "id": 20064 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c0bd893ada83a21.jpg", - "response": "A row of Jack Daniels bottles on a shelf.", - "id": 20065 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b2c0d712b78f0b4.jpg", - "response": "A bottle of Ninkasi Total Domination India Pale Ale next to a filled glass on a table.", - "id": 20066 - }, - { - "image_path": "/content/drive/MyDrive/combined/218d8420f8f1d31a.jpg", - "response": "A bottle(375,13),(948,800) of Na Ber\u0435\u0437ovix Brynka is on a bamboo mat.", - "id": 20067 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c47e28ee5a6ec1.jpg", - "response": "A bottle of beer with a picture of a man wearing a hat on it.", - "id": 20068 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f0c956bfe8c00b5.jpg", - "response": "A bowl of soup with a spoon in it.", - "id": 20069 - }, - { - "image_path": "/content/drive/MyDrive/combined/22f0018566a6624c.jpg", - "response": "A bottle of Chateau d'Aussieres sits on a wooden shelf. The label features a black and white image of a castle with a blue and yellow decorative line around it. The name of the winery is written in blue and white. The vintage is 2008. The wine is located in Corbi\u00e8res, France.", - "id": 20070 - }, - { - "image_path": "/content/drive/MyDrive/combined/1997ac6ca33a150b.jpg", - "response": "The image features a table with three bottles of beer on it. The first one is from Mill's Organic Brewing and is Organic Original Ale. The second one is from the Wirt Brewing Company and is Belgian Wit. The third one is from the Harpoon Brewery and is a Warehouse Ale. There are also cups and a lemon in the scene.", - "id": 20071 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e44326d4f64b00.jpg", - "response": "A man standing behind a counter with several bottles of beer on it.", - "id": 20072 - }, - { - "image_path": "/content/drive/MyDrive/combined/1df773d76957b3e2.jpg", - "response": "In the image there is a fridge with several bottles of Club-Mate inside. The bottles are arranged in three rows and they are all closed. The labels on the bottles show a man in a hat and the text \"CLUB-MATE\". The background is blurred out and there is a light shining on the right side of the fridge.", - "id": 20073 - }, - { - "image_path": "/content/drive/MyDrive/combined/20986a19f55ad900.jpg", - "response": "A kitchen counter with a white dish rack holding a number of items. There is a bottle of Soplica liquor, a bottle of alcohol, a can of coffee, a cup of coffee, a knife, and a spoon.", - "id": 20074 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c6b53e579061ec4.jpg", - "response": "A bottle of Smuttynose IPA next to a glass filled with the beer.", - "id": 20075 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ce511c74417159c.jpg", - "response": "A bottle of tea with the label \"Happiness\" on it.", - "id": 20076 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c90eac6d2442666.jpg", - "response": "a man holding a bottle of beer", - "id": 20077 - }, - { - "image_path": "/content/drive/MyDrive/combined/21b59001e463dd44.jpg", - "response": "A table with several bottles of beer on it.", - "id": 20078 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e16700393db8769.jpg", - "response": "The image shows a collection of various soda bottles displayed in a row. The bottles are made of glass and come in different colors and designs. They are stored in a refrigerator, which is visible in the background. The bottles are filled with different types of soda, and some of them have labels that identify the flavors.", - "id": 20079 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e80f0e93060a591.jpg", - "response": "A glass of Sapporo beer next to a bottle of Atami beer.", - "id": 20080 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c8d127a39890c28.jpg", - "response": "A can of Kirin lager beer sits on a wooden table. The can has a gold label with a picture of a lion on it. The lion is standing in front of a white and black shield. The label also has the words \"Lager-Beer\" written on it. A glass filled with beer is next to the can. The beer in the glass is clear and has a white head on top.", - "id": 20081 - }, - { - "image_path": "/content/drive/MyDrive/combined/203b8f61c389c597.jpg", - "response": "a close up of a table with water bottles with donut themed labels on them", - "id": 20082 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6ac5286874b160.jpg", - "response": "A metal shelf with a jar of pasta on it and two ceramic Eiffel tower shakers in front of the jar.", - "id": 20083 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b68fd0ad4949519.jpg", - "response": "A bottle of Weyerbacher Imperial Pumpkin Ale next to a filled glass of the beer.", - "id": 20084 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b55b309b0f50d02.jpg", - "response": "A glass of Caol Ila Distillery 1996 single malt scotch whisky.", - "id": 20085 - }, - { - "image_path": "/content/drive/MyDrive/combined/20e5bcf73f20bdb6.jpg", - "response": "In the image there is a wooden box filled with ice and bottles of beer. The box is placed on a table and the bottles are filled with beer. Some of the bottles are closed, while others are open. The ice in the box is clear and is keeping the beer cold.", - "id": 20086 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b7dfdac663874aa.jpg", - "response": "A store shelf with several bottles of Suntory Kakubin in it. The bottles are dark and have a label with a player on it. The player is wearing a white shirt and is running. There is a black and white label with a player on it as well. The player is wearing a white shirt and is also running. The bottle has a white and orange label with a player on it. The player is wearing a white shirt and is kicking a ball. There is a blue and white label with a player on it as well. The player is wearing a white shirt and is also kicking a ball.", - "id": 20087 - }, - { - "image_path": "/content/drive/MyDrive/combined/23b2395d8ed962fe.jpg", - "response": "A colorful bottle with a painting of a man and a woman on it.", - "id": 20088 - }, - { - "image_path": "/content/drive/MyDrive/combined/22727e10b288a8d1.jpg", - "response": "Two bottles of Fiji water sit next to each other on a table. The bottle on the left is slightly larger than the one on the right. Both bottles have a blue cap and a label that says Fiji in blue font. The label also has a flower on it.", - "id": 20089 - }, - { - "image_path": "/content/drive/MyDrive/combined/18cf20eb994f19e4.jpg", - "response": "On a table, there are three small liquor bottles. The first one is for Absolut Vodka, the second one is for Bombay Dry Gin, and the third one is for London Dry Gin. The Gin bottle has a skull and crossbones on the label.", - "id": 20090 - }, - { - "image_path": "/content/drive/MyDrive/combined/1deb44552e124370.jpg", - "response": "A bag of candy hearts sits next to a bottle of grape vitamin water.", - "id": 20091 - }, - { - "image_path": "/content/drive/MyDrive/combined/202de647bbe0e1f2.jpg", - "response": "The image shows a counter with many bottles of hot sauce lined up along it. There are several small white bowls in front of each bottle, likely for sampling the sauce. The counter is located in a store.", - "id": 20092 - }, - { - "image_path": "/content/drive/MyDrive/combined/189fa47689f9d7d8.jpg", - "response": "A bottle of beer on a shelf with blue and purple lights underneath it.", - "id": 20093 - }, - { - "image_path": "/content/drive/MyDrive/combined/21440dcdc558d7fb.jpg", - "response": "A bottle of beer with a silver foil top sitting on a tan tiled counter.", - "id": 20094 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f5c9d2871dd6c4c.jpg", - "response": "A store shelf with two bottles of Goya Cola Champagne.", - "id": 20095 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cf624d0e20a35f6.jpg", - "response": "A bottle of Ovaltine chocolate milk sits on a counter.", - "id": 20096 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ca95f090daf9b5d.jpg", - "response": "A bottle of Bass and Co. beer sitting on a ledge.", - "id": 20097 - }, - { - "image_path": "/content/drive/MyDrive/combined/29fb91d737d16236.jpg", - "response": "A bottle of Bourbon is being held in someones hand.", - "id": 20098 - }, - { - "image_path": "/content/drive/MyDrive/combined/27330fcacb356566.jpg", - "response": "In the image there is a white fridge with several bottles of various types of soda inside. The fridge has a white wire shelf inside.", - "id": 20099 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b83908faee966d7.jpg", - "response": "A person holding a can of beer in their hand.", - "id": 20100 - }, - { - "image_path": "/content/drive/MyDrive/combined/25539dea47c0d719.jpg", - "response": "A bottle of San Miguel Super Dry beer sits on a table.", - "id": 20101 - }, - { - "image_path": "/content/drive/MyDrive/combined/250e2a38cd6ae709.jpg", - "response": "A bottle of beer, Cervesa Mineral Natural, on a blue and white background.", - "id": 20102 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c6c84e4ada79943.jpg", - "response": "A table with papers, photos, and other items strewn across it.", - "id": 20103 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b87aa12edb2271a.jpg", - "response": "On a wooden table, there are four bottles of wine. The first one is from 2004, the second one is from 2005, the third one is from 2006, and the fourth one is from 2007. The labels on the bottles show the year the wine was bottled and the name of the winery.", - "id": 20104 - }, - { - "image_path": "/content/drive/MyDrive/combined/24c8a77338680e3f.jpg", - "response": "In the image there are two bottles of beer and a glass of beer on a table. The bottles are both brown and have labels with writing on them. One of the bottles is on the left and the other is on the right. The glass of beer is to the left of the bottles and is filled about half way. The table has a white and blue table cloth on it and is set on a dining table. There are books in the background on a bookshelf.", - "id": 20105 - }, - { - "image_path": "/content/drive/MyDrive/combined/275c3f5d5c0ba7df.jpg", - "response": "A bottle of beer next to a glass of beer on a table.", - "id": 20106 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b48149d61a9c5e7.jpg", - "response": "A bottle of San Miguel beer sits on a wooden table.", - "id": 20107 - }, - { - "image_path": "/content/drive/MyDrive/combined/2718c78ec7f37bca.jpg", - "response": "A bottle of Unicum and a bottle of Unicum next to each other.", - "id": 20108 - }, - { - "image_path": "/content/drive/MyDrive/combined/23de598e3fd2a34a.jpg", - "response": "A man sitting at a table with a laptop and two bottles of beer.", - "id": 20109 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f0946340289354.jpg", - "response": "A bottle of white wine called Cannonau di Sardegna Riserva 2006 from the Seta Mosca winery.", - "id": 20110 - }, - { - "image_path": "/content/drive/MyDrive/combined/258e7ed72c307a12.jpg", - "response": "A bottle of Raven Black IPA.", - "id": 20111 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b7a28342acb4c23.jpg", - "response": "A bottle of Chato Rogue Good Chit Pilsner next to a glass filled with the beer.", - "id": 20112 - }, - { - "image_path": "/content/drive/MyDrive/combined/244b6b18c49e426f.jpg", - "response": "A bottle and a glass on a table.", - "id": 20113 - }, - { - "image_path": "/content/drive/MyDrive/combined/28cb99c9c81a772c.jpg", - "response": "A blue can of Euphoria Pale Ale from Ska Brewing is in the foreground. The can has a black and white drawing of a skeleton in a kilt dancing. The skeleton is wearing a black and white checkered scarf and has his arms raised in the air. The background is a wooden table. In the background, out of focus, is a glass of beer. The beer is a dark golden color with a white head. The label on the glass is blurry but says Ska Brewing on it.", - "id": 20114 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d60560e7ba8a69f.jpg", - "response": "The image shows three clear water bottles with the word \"bling\" on them. The letters are orange and made of small, round orange gemstones. The middle bottle has two orange diamonds on it. The words \"h2o\" are written under each bottle. The background is white and there is a label on the bottle on the left with black text on a white background.", - "id": 20115 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f04a83912ca745.jpg", - "response": "The image shows a store shelf filled with bottles of Pepsi. There are multiple bottles of Pepsi on the shelf, and they are arranged in neat rows. The bottles are blue and white, and they have a red label with the Pepsi logo on it. The caps of the bottles are blue.", - "id": 20116 - }, - { - "image_path": "/content/drive/MyDrive/combined/29d89a055c148e50.jpg", - "response": "A bottle of Coca Cola with the name Rebecca on it.", - "id": 20117 - }, - { - "image_path": "/content/drive/MyDrive/combined/28d5e1e6ac905386.jpg", - "response": "A table with 6 bottles of beer on it.", - "id": 20118 - }, - { - "image_path": "/content/drive/MyDrive/combined/2922b95cae49067d.jpg", - "response": "A bottle of Viru, a brand of beer, sits on a wooden table.", - "id": 20119 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a039f044c205dbd.jpg", - "response": "A bottle of Absolut Vodka sits on a wooden table.", - "id": 20120 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cef8b43ab8d50d9.jpg", - "response": "The image shows a collection of various beer cans and a bottle arranged in the snow. There are at least 12 cans of beer, including Asahi, Sapporo, and Hitachino. There are also two bottles, one is empty and the other one is full. The arrangement of the cans and bottles creates a small bar in the snow.", - "id": 20121 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c45671ee64aae1.jpg", - "response": "A counter with a cup of food, a bag of chips, a can of spray, and a book.", - "id": 20122 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d18ad3ce7f1b697.jpg", - "response": "A giant inflatable bottle of Captain Morgan standing in a grassy field.", - "id": 20123 - }, - { - "image_path": "/content/drive/MyDrive/combined/23c1795d4f4cfeed.jpg", - "response": "A bottle of Louis Latour Beaune wine sitting on a wooden table.", - "id": 20124 - }, - { - "image_path": "/content/drive/MyDrive/combined/271fdeb6f6d09bb6.jpg", - "response": "A bottle of Coca Cola sitting on a wooden table with a ship in the background and fireworks going off.", - "id": 20125 - }, - { - "image_path": "/content/drive/MyDrive/combined/269064ee530b0084.jpg", - "response": "A box of Gatorade G2 low calorie sports drink in a purple color.", - "id": 20126 - }, - { - "image_path": "/content/drive/MyDrive/combined/28941885f44a550b.jpg", - "response": "The image is a news article from a website called \"Gundem\" with the headline \"U\u015ftus reklam tart\u0131\u015fmas\u0131 yaratt\u0131\" which translates to \"A fight over advertising space has arisen\". The article is about a company called \"AROMA\" that has been using a plastic bottle as an advertisement, but has been met with resistance from photographers. The bottle is shown in the image.", - "id": 20127 - }, - { - "image_path": "/content/drive/MyDrive/combined/2864f88932de1485.jpg", - "response": "A man sitting in front of a laptop with a bottle of water in front of him.", - "id": 20128 - }, - { - "image_path": "/content/drive/MyDrive/combined/294e7c28b30f26cb.jpg", - "response": "A bottle of Buffalo Sweat Tall Grass beer sits on a counter.", - "id": 20129 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a43741074d447a7.jpg", - "response": "A bottle of Les Tourelles de Opian 2001 sits next to a cork on a wooden table. A wine glass is placed next to the bottle. The bottle has a gold label with red and black writing. The glass is full of wine. The cork is also full of wine.", - "id": 20130 - }, - { - "image_path": "/content/drive/MyDrive/combined/24f75a985c608ba8.jpg", - "response": "A bottle of organic cider on a table.", - "id": 20131 - }, - { - "image_path": "/content/drive/MyDrive/combined/26086450497f037c.jpg", - "response": "A store shelf displaying 4 packs of Mountain Dew bottles. Each pack contains four bottles of Mountain Dew. The bottles are green and have a white label with green text.", - "id": 20132 - }, - { - "image_path": "/content/drive/MyDrive/combined/26c67207003f0c1f.jpg", - "response": "A bottle of Skol beer sitting on a wooden table.", - "id": 20133 - }, - { - "image_path": "/content/drive/MyDrive/combined/27057f85fe121f40.jpg", - "response": "A bottle of High Life beer sits on a counter next to a pile of empty glasses.", - "id": 20134 - }, - { - "image_path": "/content/drive/MyDrive/combined/2881d731e55ee507.jpg", - "response": "A shelf with a variety of alcohol bottles on it.", - "id": 20135 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a21a5bb2f99a0a7.jpg", - "response": "A man sitting at a table with a plate of food and several bottles of wine.", - "id": 20136 - }, - { - "image_path": "/content/drive/MyDrive/combined/288d826fe847ff67.jpg", - "response": "In the image there are three bottles of Suja juice on a store shelf. The middle bottle is green and labeled 100% juice. The other two bottles are to the left and right of the middle bottle and are both red. The one on the right has the words Pomegranate on it and the one on the left has the word Naked on it. There is also a bottle of POM on the shelf next to the Suja bottles.", - "id": 20137 - }, - { - "image_path": "/content/drive/MyDrive/combined/25997b57b9e00f07.jpg", - "response": "In the image, a person is holding a bottle of St. Augustine Brewing Company beer. The label on the bottle is yellow and orange and features the company logo. The beer is being held up in front of a body of water, which appears to be the ocean. In the distance, there is a dock and a small white building. The sky is blue with a few clouds and the sun is setting, creating a warm, golden glow.", - "id": 20138 - }, - { - "image_path": "/content/drive/MyDrive/combined/2770b80e6906c677.jpg", - "response": "A person holding a bottle of Peanut Butter & Jelly.", - "id": 20139 - }, - { - "image_path": "/content/drive/MyDrive/combined/27ffc284a7e75fdb.jpg", - "response": "A white drone sitting on the back of a car seat.", - "id": 20140 - }, - { - "image_path": "/content/drive/MyDrive/combined/25e6a37ab3b1beac.jpg", - "response": "A glass jar with a red and white label that says LACTUCA GERMAN.", - "id": 20141 - }, - { - "image_path": "/content/drive/MyDrive/combined/2455d8dfd884bdd7.jpg", - "response": "A variety of different colored drinks in large jars.", - "id": 20142 - }, - { - "image_path": "/content/drive/MyDrive/combined/295839257d861a25.jpg", - "response": "On a store shelf, there are several cans of Peace Tea. One can is Peace Tea Lemon Iced Tea, another can is Peace Tea Caddy Shack, and the third can is Peace Tea Sweet Lemon. Next to the Peace Tea cans, there are several bottles of tea. One bottle is Pure Leaf tea, which is dark brown in color. Another bottle is also Pure Leaf tea, but it is lighter in color.", - "id": 20143 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a2b49bdfd411611.jpg", - "response": "A man eating a bowl of soup with chopsticks.", - "id": 20144 - }, - { - "image_path": "/content/drive/MyDrive/combined/25064ddc5547afe5.jpg", - "response": "A man with grey hair and glasses sitting at a desk with papers and a laptop.", - "id": 20145 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ca7af8ac089422f.jpg", - "response": "A glass of Young's Double Chocolate Stout sits next to the bottle on a green and white coaster. The glass is half full and has a thick head floating on top of the beer. The coaster has a red, white, and black design.", - "id": 20146 - }, - { - "image_path": "/content/drive/MyDrive/combined/259d48ad3a4acfc7.jpg", - "response": "A bottle of Czech Absinth Strong sits on a black table. The bottle is made of glass and has a gold and silver cap. The label on the bottle is green and has the name of the drink in the center. The drink is described as 100% pure herbal absinth.", - "id": 20147 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bcf1d334bce7c52.jpg", - "response": "A bottle of Cruzan Estate Dark Rum sitting in the snow.", - "id": 20148 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c4a626ef2f14811.jpg", - "response": "The image shows a table with a variety of bottles of soda lined up on it. The bottles come in different shapes and sizes, and are filled with a variety of soda flavors. Some of the bottles are open, and some have their caps on. The table is white and the bottles are displayed in the sunlight.", - "id": 20149 - }, - { - "image_path": "/content/drive/MyDrive/combined/26713b8fff41be72.jpg", - "response": "The image features a table with three water bottles on it. The bottles are labeled with a sticker that has a picture of a couple on it. The stickers also have text on them, likely indicating the couple's names and the date of their special event.", - "id": 20150 - }, - { - "image_path": "/content/drive/MyDrive/combined/2afde52f98dd4b17.jpg", - "response": "A bottle of The Peat Monster Blended Malt Scotch Whisky sits on a wooden shelf. The bottle is closed and has a black label with gold writing. The label features an image of a monster with tentacles. The monster is depicted holding a bottle of whisky. The writing on the label is in a curly, old-fashioned style. The bottle is made of glass and has a black cap.", - "id": 20151 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b2f523a4e734bec.jpg", - "response": "An orange and black plane hanging from the ceiling of a building.", - "id": 20152 - }, - { - "image_path": "/content/drive/MyDrive/combined/14fa38ae8fea318d.jpg", - "response": "A large white blimp-like airship with the words U.S. NAVY written on it.", - "id": 20153 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d8e9951c1ea69e.jpg", - "response": "A white airplane with red accents and black stars painted on the side is suspended from the ceiling of a building. The plane is inside a large building with high ceilings and windows. There are several lights in the ceiling and some other decorations on the walls.", - "id": 20154 - }, - { - "image_path": "/content/drive/MyDrive/combined/1334b6b8fcfd8afb.jpg", - "response": "The image shows a large hangar with a high arched ceiling, hosting a variety of airplanes on display. There are many people walking around and observing the aircraft, with some of them standing near the planes, while others are further away. The airplanes are arranged in different levels, with some being suspended from the ceiling and others placed on the walls. The scene is quite lively and engaging, with visitors taking in the various planes and exhibits.", - "id": 20155 - }, - { - "image_path": "/content/drive/MyDrive/combined/09d87dca721d23be.jpg", - "response": "A model airplane of a Lufthansa Cargo airplane sitting on a brown table.", - "id": 20156 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b187390a96228ff.jpg", - "response": "A FedEx plane sits on the runway with its back wheels on the ground.", - "id": 20157 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fd38fd0f9bf1bee.jpg", - "response": "An old train engine sitting on the tracks.", - "id": 20158 - }, - { - "image_path": "/content/drive/MyDrive/combined/096bce1a91c1624c.jpg", - "response": "A helicopter flying over a lush green tree filled park.", - "id": 20159 - }, - { - "image_path": "/content/drive/MyDrive/combined/13dec395531b458f.jpg", - "response": "A grey fighter plane with a star on the side and the number 106 is parked in a snowy field.", - "id": 20160 - }, - { - "image_path": "/content/drive/MyDrive/combined/1139456aa3f70a34.jpg", - "response": "A silver fighter jet with the number 63 on the side.", - "id": 20161 - }, - { - "image_path": "/content/drive/MyDrive/combined/10513fda50da5e6d.jpg", - "response": "A small airplane with the number 513 on the tail.", - "id": 20162 - }, - { - "image_path": "/content/drive/MyDrive/combined/0fef083ac0b5dff6.jpg", - "response": "A red and white airplane is parked on a runway.", - "id": 20163 - }, - { - "image_path": "/content/drive/MyDrive/combined/1252873867aa8a86.jpg", - "response": "An airplane museum with a variety of airplanes on display.", - "id": 20164 - }, - { - "image_path": "/content/drive/MyDrive/combined/111d7be56517ed46.jpg", - "response": "A white airplane with a red and blue stripe on the tail.", - "id": 20165 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e40cb14d4c4bbbc.jpg", - "response": "A small airplane is on the runway.", - "id": 20166 - }, - { - "image_path": "/content/drive/MyDrive/combined/1086a31c9367a124.jpg", - "response": "A small red and white propeller plane is parked on a runway.", - "id": 20167 - }, - { - "image_path": "/content/drive/MyDrive/combined/080858916c6e0c6c.jpg", - "response": "An orange airplane with the number 41 on the side is sitting on a grassy field.", - "id": 20168 - }, - { - "image_path": "/content/drive/MyDrive/combined/14221cd00f847018.jpg", - "response": "A yellow and red airplane is on the ground in the rain.", - "id": 20169 - }, - { - "image_path": "/content/drive/MyDrive/combined/12e4f6ee148a112e.jpg", - "response": "A white and blue Onur Air plane with the letters ONURAIR on the side.", - "id": 20170 - }, - { - "image_path": "/content/drive/MyDrive/combined/142076607dbdfa59.jpg", - "response": "An airplane is on the runway.", - "id": 20171 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e45202f3462f604.jpg", - "response": "a large banner hanging from the ceiling that says \"java + you\" with a picture of a man holding a scissors and the word \"java\" below it", - "id": 20172 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a192511800af150.jpg", - "response": "a plane with a red triangle on the tail", - "id": 20173 - }, - { - "image_path": "/content/drive/MyDrive/combined/171d86fc6d86d5f0.jpg", - "response": "A fighter jet flying through the air with its landing gear down.", - "id": 20174 - }, - { - "image_path": "/content/drive/MyDrive/combined/218505bf452b22e5.jpg", - "response": "A large rocket on display with a sign that says \"Command Module\".", - "id": 20175 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2e9a1c8d9432b6.jpg", - "response": "A red, yellow and white Iberia jet sits on the tarmac.", - "id": 20176 - }, - { - "image_path": "/content/drive/MyDrive/combined/1665ff941d73a03f.jpg", - "response": "A small airplane is parked on a runway.", - "id": 20177 - }, - { - "image_path": "/content/drive/MyDrive/combined/32b79d90568ba8ec.jpg", - "response": "A group of people walking towards a large jet airplane.", - "id": 20178 - }, - { - "image_path": "/content/drive/MyDrive/combined/226d623d0c70664f.jpg", - "response": "A black hot air balloon with the word NOSM on it in gold.", - "id": 20179 - }, - { - "image_path": "/content/drive/MyDrive/combined/25573040ebe56f88.jpg", - "response": "An orange and white seaplane flying over a body of water.", - "id": 20180 - }, - { - "image_path": "/content/drive/MyDrive/combined/233a9ff6b3175939.jpg", - "response": "An old style plane flying through the sky with clouds.", - "id": 20181 - }, - { - "image_path": "/content/drive/MyDrive/combined/337989006ea78618.jpg", - "response": "A military helicopter with a propeller on the top.", - "id": 20182 - }, - { - "image_path": "/content/drive/MyDrive/combined/24456069fd6847a8.jpg", - "response": "a man(598,106),(999,986) holding a box of toys", - "id": 20183 - }, - { - "image_path": "/content/drive/MyDrive/combined/29375cc255367fb5.jpg", - "response": "An airplane on the runway with red and white coloring.", - "id": 20184 - }, - { - "image_path": "/content/drive/MyDrive/combined/2619378761af6529.jpg", - "response": "a man in a uniform is holding a missile", - "id": 20185 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cad8a5ecb9fe65f.jpg", - "response": "A row of old airplanes are lined up on a runway.", - "id": 20186 - }, - { - "image_path": "/content/drive/MyDrive/combined/2998dc3c72c9e9fe.jpg", - "response": "a blue and white plane flying in the sky", - "id": 20187 - }, - { - "image_path": "/content/drive/MyDrive/combined/36167c7f89548454.jpg", - "response": "A white and red Helvetic Airways plane on the runway.", - "id": 20188 - }, - { - "image_path": "/content/drive/MyDrive/combined/343b8d67ef54733e.jpg", - "response": "A blue and white Eastern airplane is on the runway.", - "id": 20189 - }, - { - "image_path": "/content/drive/MyDrive/combined/2700196c24804a50.jpg", - "response": "An Air Canada airplane is parked on the runway.", - "id": 20190 - }, - { - "image_path": "/content/drive/MyDrive/combined/258a78bedd48d930.jpg", - "response": "A silver and white Air Vietnam DC-4 is parked in a field with a man standing next to a jeep in front of it.", - "id": 20191 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2ff55b5acc0bc9.jpg", - "response": "A toy plane on a green surface.", - "id": 20192 - }, - { - "image_path": "/content/drive/MyDrive/combined/15da5c794efe07b6.jpg", - "response": "A couple of large planes on a runway.", - "id": 20193 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b1c4a2fa6175cf0.jpg", - "response": "In the image there are three hot air balloons in the sky. The one on the left is purple and the one on the right is yellow and orange. In the middle of the image there is a person dressed in yellow floating between the two balloons. The person is wearing a black helmet and has two black fins on their back. The balloon they are floating in is yellow and black.", - "id": 20194 - }, - { - "image_path": "/content/drive/MyDrive/combined/386333482ef2c94b.jpg", - "response": "A plane with the number 664 on the side of it.", - "id": 20195 - }, - { - "image_path": "/content/drive/MyDrive/combined/163c6f54edee23ae.jpg", - "response": "A U.S. Air Force plane is on a trailer in a warehouse.", - "id": 20196 - }, - { - "image_path": "/content/drive/MyDrive/combined/3599753c758f47f8.jpg", - "response": "A white and blue airplane with a red white and blue stripe on the tail.", - "id": 20197 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fa619085df703b2.jpg", - "response": "A man with a white shirt and headphones is standing behind a large video camera.", - "id": 20198 - }, - { - "image_path": "/content/drive/MyDrive/combined/3724cdefd5b9ee1b.jpg", - "response": "A grey fighter jet flying through the air.", - "id": 20199 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e7870b6ff79d151.jpg", - "response": "a packet of sugar with a twa logo on it", - "id": 20200 - }, - { - "image_path": "/content/drive/MyDrive/combined/210c80055b9f8e1a.jpg", - "response": "An airforce jet flying through the sky.", - "id": 20201 - }, - { - "image_path": "/content/drive/MyDrive/combined/3937cd6461e1129b.jpg", - "response": "A silver airplane is hanging from the ceiling of a building. The plane is a Northwest Airlines plane. The building has a wooden floor. There are chairs and tables scattered around the room.", - "id": 20202 - }, - { - "image_path": "/content/drive/MyDrive/combined/27932b49d5fc1b8a.jpg", - "response": "A desert plane yard with multiple planes.", - "id": 20203 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad6bc02d3a4d7b4.jpg", - "response": "A row of fighter jets are parked next to each other.", - "id": 20204 - }, - { - "image_path": "/content/drive/MyDrive/combined/36728ddc3406cddb.jpg", - "response": "A Japan Airlines plane sits on the runway at an airport.", - "id": 20205 - }, - { - "image_path": "/content/drive/MyDrive/combined/2da770706353b2ed.jpg", - "response": "An aircraft is taking off from a ship in the ocean.", - "id": 20206 - }, - { - "image_path": "/content/drive/MyDrive/combined/33532c25def79ec0.jpg", - "response": "An airplane on the runway with the word Lufthansa on the side of it.", - "id": 20207 - }, - { - "image_path": "/content/drive/MyDrive/combined/24ad0e52d2f80d92.jpg", - "response": "A plane is taking off from a runway in a green field.", - "id": 20208 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1b9a571d21441e.jpg", - "response": "A helicopter with the letters PPDJPR on the bottom of it.", - "id": 20209 - }, - { - "image_path": "/content/drive/MyDrive/combined/2847d782286ca0f8.jpg", - "response": "An older woman stands in front of a small Air Force plane.", - "id": 20210 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a7b7f5dd1c7e677.jpg", - "response": "A large white truck with a red logo on the side parked outside of a building.", - "id": 20211 - }, - { - "image_path": "/content/drive/MyDrive/combined/20db2e4f0602e5aa.jpg", - "response": "In the image, there is a silver fighter jet with a blue and red logo on the tail. The jet is flying through the air with its landing gear down. The pilot is visible in the cockpit.", - "id": 20212 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f56b3502837f67.jpg", - "response": "A man in a uniform is climbing a ladder to get into a yellow helicopter. The helicopter says \"Rescue\" on the side.", - "id": 20213 - }, - { - "image_path": "/content/drive/MyDrive/combined/379f7440ed68e416.jpg", - "response": "An airman stands in front of a fighter jet on a flight deck.", - "id": 20214 - }, - { - "image_path": "/content/drive/MyDrive/combined/378ca6a768c18c8c.jpg", - "response": "A red and white jet airliner flying through a blue sky.", - "id": 20215 - }, - { - "image_path": "/content/drive/MyDrive/combined/32ec42158c53eb66.jpg", - "response": "A person in a black and green jacket looking at a grey fighter jet on a runway.", - "id": 20216 - }, - { - "image_path": "/content/drive/MyDrive/combined/2cc6f43683ae5238.jpg", - "response": "An F-18 Hornet taking off from the flight deck of the USS Nimitz.", - "id": 20217 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f4db7d7756d36a1.jpg", - "response": "A black and white photo of a small plane with the letters U.S. Navy on the side.", - "id": 20218 - }, - { - "image_path": "/content/drive/MyDrive/combined/2880476a26cb4ebc.jpg", - "response": "A large military plane on display with a crowd of people standing around it.", - "id": 20219 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a481d3afcd0b0de.jpg", - "response": "An airplane from United is flying in the sky.", - "id": 20220 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f520778f1841a3d.jpg", - "response": "An airplane with the letters DLT on the side is parked on a runway.", - "id": 20221 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a48b2dd565998a.jpg", - "response": "an airplane (1,107),(997,835)", - "id": 20222 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba1cff878365c98.jpg", - "response": "An old red and white airplane on display, with a blue sky in the background.", - "id": 20223 - }, - { - "image_path": "/content/drive/MyDrive/combined/39203751c59e8737.jpg", - "response": "The image features a group of military personnel dressed in blue uniforms. They are standing in a large building with a silver airplane in the background. Some of the men are saluting, and there is a table with a red cloth in the foreground. There are also several other people in the building, some of whom are wearing ties.", - "id": 20224 - }, - { - "image_path": "/content/drive/MyDrive/combined/2aa17ac35673beeb.jpg", - "response": "A fighter plane on display with a sunset in the background.", - "id": 20225 - }, - { - "image_path": "/content/drive/MyDrive/combined/34084d4c3c347b83.jpg", - "response": "The image depicts the cover art for the video game Uncharted 3: Drake's Deception. The main character, Nathan Drake, is prominently featured in the center of the image, wearing a tan shirt and a brown scarf around his neck. He is holding a rope and appears to be in the midst of an adventure. The background features a crashed plane, which is partially obscured by the main subject. The title of the game is prominently displayed at the top of the image, with the subtitle \"Drake's Deception\" written in smaller font below it. The overall color scheme of the image is tan and brown, giving it a desert-like appearance.", - "id": 20226 - }, - { - "image_path": "/content/drive/MyDrive/combined/229c0c1a9abfcd9e.jpg", - "response": "An airplane with the words EVA AIR on the side of it.", - "id": 20227 - }, - { - "image_path": "/content/drive/MyDrive/combined/2489dc9e42de1b36.jpg", - "response": "A silver plane with the number 8 in blue writing.", - "id": 20228 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c28f57e08fc7858.jpg", - "response": "A red and white fighter plane is on a runway.", - "id": 20229 - }, - { - "image_path": "/content/drive/MyDrive/combined/188d67c561540d6b.jpg", - "response": "An Air Canada airplane is flying in the sky.", - "id": 20230 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a2517d9e904afa.jpg", - "response": "An Iberia airplane is flying in a clear blue sky.", - "id": 20231 - }, - { - "image_path": "/content/drive/MyDrive/combined/34b95709368a3daa.jpg", - "response": "A red and white jet airliner sits on the tarmac at an airport.", - "id": 20232 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0f67f08265333c.jpg", - "response": "A red, white and blue airplane is on a runway.", - "id": 20233 - }, - { - "image_path": "/content/drive/MyDrive/combined/34ef6ac2f5ada77f.jpg", - "response": "A tattoo of a plane on someone's back.", - "id": 20234 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e4fcfbd0bb6e1e1.jpg", - "response": "A white and pink airplane on the runway.", - "id": 20235 - }, - { - "image_path": "/content/drive/MyDrive/combined/271dd641be509f9c.jpg", - "response": "The image shows the tail of a large grey airplane with a black bird painted on it. The bird has a white head and red beak. The plane has the letters \"BF\" on the tail, and the letters \"XR771\" are painted on the tail as well. The plane is parked on a grassy field.", - "id": 20236 - }, - { - "image_path": "/content/drive/MyDrive/combined/27f176045bc0021a.jpg", - "response": "A small Air Force plane is parked in front of a fence.", - "id": 20237 - }, - { - "image_path": "/content/drive/MyDrive/combined/1582c8538686d50d.jpg", - "response": "A small airplane is suspended from the ceiling of a building.", - "id": 20238 - }, - { - "image_path": "/content/drive/MyDrive/combined/52cc582d05b68e27.jpg", - "response": "A memorial marker for the crew of the USCGC 5541.", - "id": 20239 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d12da31e88a41c.jpg", - "response": "An Asiana Airlines plane sits on a wet runway.", - "id": 20240 - }, - { - "image_path": "/content/drive/MyDrive/combined/544a76c303c9f932.jpg", - "response": "A cardboard box with a model airplane on the front.", - "id": 20241 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e007d35d0ad9fdb.jpg", - "response": "An advertisement for Hamilton watches featuring an Eastern Air Lines DC-3 airplane.", - "id": 20242 - }, - { - "image_path": "/content/drive/MyDrive/combined/49cde0848a3b3f0d.jpg", - "response": "A blue and white airplane is on a runway.", - "id": 20243 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ea9571a1d3dbce4.jpg", - "response": "An airplane sitting on display in a museum.", - "id": 20244 - }, - { - "image_path": "/content/drive/MyDrive/combined/4996e985ffe4dbdc.jpg", - "response": "A man in a race car with the number 73 on it.", - "id": 20245 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cdc3f7d92af2c35.jpg", - "response": "An old photo of a plane sitting on a field.", - "id": 20246 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c217f535ab7ae15.jpg", - "response": "A Qantas airplane is shown on the tarmac with other airplanes in the background.", - "id": 20247 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c53e3504d902de.jpg", - "response": "A small plane with the number 201 on the side of it.", - "id": 20248 - }, - { - "image_path": "/content/drive/MyDrive/combined/41cf37b4de83d421.jpg", - "response": "A plane taking off from a runway.", - "id": 20249 - }, - { - "image_path": "/content/drive/MyDrive/combined/54089f22ebd4eea6.jpg", - "response": "An Air Canada airplane is flying in the sky.", - "id": 20250 - }, - { - "image_path": "/content/drive/MyDrive/combined/4232df60f6cba5fc.jpg", - "response": "An Air France plane is parked at a terminal.", - "id": 20251 - }, - { - "image_path": "/content/drive/MyDrive/combined/40e494ebd4fc7000.jpg", - "response": "An airplane is parked in a hangar with a NASA sign on the side.", - "id": 20252 - }, - { - "image_path": "/content/drive/MyDrive/combined/45284b6a884bb7c6.jpg", - "response": "A harbor with multiple sailboats docked, and a lighthouse in the background.", - "id": 20253 - }, - { - "image_path": "/content/drive/MyDrive/combined/4964a516ae472a8c.jpg", - "response": "A space shuttle is on display in a large building.", - "id": 20254 - }, - { - "image_path": "/content/drive/MyDrive/combined/408c6836b3c6e9d9.jpg", - "response": "A small white plane is on the runway.", - "id": 20255 - }, - { - "image_path": "/content/drive/MyDrive/combined/417dd04d8d5f8fe4.jpg", - "response": "a red and silver biplane flying over a grass covered field", - "id": 20256 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bf53bd2d6dd1c93.jpg", - "response": "A airplane that is inside of a hanger.", - "id": 20257 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e1a0cecba437e12.jpg", - "response": "A yellow and blue striped airplane is parked in a hanger.", - "id": 20258 - }, - { - "image_path": "/content/drive/MyDrive/combined/51ed169b31ff42ca.jpg", - "response": "Two men standing in front of a camouflaged helicopter.", - "id": 20259 - }, - { - "image_path": "/content/drive/MyDrive/combined/536e0b7ee067169c.jpg", - "response": "A Japan Airlines plane is taking off from the runway.", - "id": 20260 - }, - { - "image_path": "/content/drive/MyDrive/combined/4789951ca63e685a.jpg", - "response": "A red air force jet flying through the sky.", - "id": 20261 - }, - { - "image_path": "/content/drive/MyDrive/combined/52541754f15d695f.jpg", - "response": "A colorful hot air balloon in the sky.", - "id": 20262 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d01ee8dd964bfa2.jpg", - "response": "a large rocket on display in a museum with a sign that says \"service module\" hanging nearby.", - "id": 20263 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b52bb753374d022.jpg", - "response": "The image shows a large airplane hanger with a mostly white airplane in the center. The airplane has a red nose and is surrounded by several yellow barriers. There are also two other airplanes in the background, one on the left and one on the right. The hanger appears to be in the process of being worked on, as there are several people scattered around the area and various tools and equipment are visible.", - "id": 20264 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cd01f4aba557dab.jpg", - "response": "An orange and white airplane is parked on the runway.", - "id": 20265 - }, - { - "image_path": "/content/drive/MyDrive/combined/43dbef81de646cf1.jpg", - "response": "The image shows a tarmac with several airplanes. There is a blue and red Southwest airplane on the left side of the image, with a blue and red United airplane on the right side. Another airplane is visible in the background, further to the right. There are several buildings in the background, including a large white building on the left side of the image and a building with a red roof on the right side of the image. There are also several trucks on the tarmac.", - "id": 20266 - }, - { - "image_path": "/content/drive/MyDrive/combined/4024aa4c83fa68c1.jpg", - "response": "In the image, there is a Turkish Airlines airplane flying in the sky. The airplane is white and red in color. It has its landing gear down. The plane is flying towards the left side of the image. The sky above the airplane is blue with white clouds.", - "id": 20267 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ae3a5d5231260ac.jpg", - "response": "A British Airways plane taxis on a runway at an airport.", - "id": 20268 - }, - { - "image_path": "/content/drive/MyDrive/combined/4254b138d56f688c.jpg", - "response": "A man standing in front of a junkyard filled with American material. The junkyard is being used by the North Vietnamese army.", - "id": 20269 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d22af846aa579f7.jpg", - "response": "An airplane is on display on a tarmac.", - "id": 20270 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e9a9684caa73e5e.jpg", - "response": "An orange and white airplane is on the runway.", - "id": 20271 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d0e38b0c55decd1.jpg", - "response": "A small yellow plane flying through the air.", - "id": 20272 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cd8d006d1aaabb8.jpg", - "response": "An airplane that is painted white, blue and gold.", - "id": 20273 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e9d39393eb3e360.jpg", - "response": "The image features a large white airplane parked inside a warehouse. The airplane has two large black nozzles on its rear end. The warehouse has a metal frame ceiling and the floor is made of concrete. There are several people in the warehouse, some are standing near the airplane and some are further away. The warehouse also contains other airplanes and vehicles, but these are not the main focus of the image.", - "id": 20274 - }, - { - "image_path": "/content/drive/MyDrive/combined/53ca13ffebfbe53a.jpg", - "response": "A group of four fighter jets from the U.S. Navy flying in formation in a blue sky.", - "id": 20275 - }, - { - "image_path": "/content/drive/MyDrive/combined/4de1e29cba313d08.jpg", - "response": "A rusted white and red car with the words \"coming or going\" written on it.", - "id": 20276 - }, - { - "image_path": "/content/drive/MyDrive/combined/48d1de9005c47cc7.jpg", - "response": "a helicopter with a propeller on the top", - "id": 20277 - }, - { - "image_path": "/content/drive/MyDrive/combined/5358fc8440bafe4c.jpg", - "response": "A large propeller airplane with the number 1465 on the side.", - "id": 20278 - }, - { - "image_path": "/content/drive/MyDrive/combined/440f0f276d30e07d.jpg", - "response": "In the image there is a yellow and red airplane in a large building. There is a yellow staircase leading up to the nose of the plane. The plane has the number 24 on the side. There are scaffolding and a platform around the plane.", - "id": 20279 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c55e0862b46d0d0.jpg", - "response": "In the image there is a washing line with four \u00a310 notes pegged on it. The notes are hanging from the line and are pegged to the left of the line with wooden clothes pegs. The sky above the line is blue with white clouds. The line is located in a field of green grass.", - "id": 20280 - }, - { - "image_path": "/content/drive/MyDrive/combined/41483621aabaeeb4.jpg", - "response": "A group of people standing in front of a green helicopter.", - "id": 20281 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd7710f2e6a4626.jpg", - "response": "A large white airplane with gold letters that says \"Emirates\" on the side.", - "id": 20282 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e836e22a5cd1a86.jpg", - "response": "A white and blue AT&T truck parked in a field with trees in the background.", - "id": 20283 - }, - { - "image_path": "/content/drive/MyDrive/combined/4a3978a8d9e51634.jpg", - "response": "An airplane flying over a lush green hillside.", - "id": 20284 - }, - { - "image_path": "/content/drive/MyDrive/combined/4067a70bcd7183a8.jpg", - "response": "A couple of planes are sitting on the runway. One is camouflaged and has a star painted on the side. The other plane is a propeller plane.", - "id": 20285 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ccd08fb3139e36a.jpg", - "response": "A news helicopter with the letters \"Fox HD\" on the side.", - "id": 20286 - }, - { - "image_path": "/content/drive/MyDrive/combined/402f2bf859da5013.jpg", - "response": "A small airplane is sitting on the runway.", - "id": 20287 - }, - { - "image_path": "/content/drive/MyDrive/combined/411af8dffec6bcb6.jpg", - "response": "The image features a wooden desk with an iMac computer sitting on top of it. The keyboard for the computer is white and is located on the left side of the desk. There is a mouse next to the keyboard, and a book is resting on the desk in front of the computer. The book is titled \"The Email Marketing Kit\" and has a picture of an airplane on the cover.", - "id": 20288 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c4a1e72e4a4d0a6.jpg", - "response": "The image features a large airplane on a tarmac, with two propellers on the wing. There are several people standing around the airplane, some of them in uniform. The ground is made of asphalt and there are some orange traffic cones placed around the area. In the background, there is a bench and a few people standing and sitting around. The sky is overcast, with dark clouds visible.", - "id": 20289 - }, - { - "image_path": "/content/drive/MyDrive/combined/526e3c0ff78404b5.jpg", - "response": "In the image there are two airplanes flying next to each other. The one on top is yellow and black and has the letters \"Wingwalkers\" on the side. The one on the bottom is also yellow and black. They are leaving smoke trails behind them as they fly. The sky is blue with no clouds.", - "id": 20290 - }, - { - "image_path": "/content/drive/MyDrive/combined/51e8659e59a587e4.jpg", - "response": "A man standing next to a wall with a picture of a race car on it.", - "id": 20291 - }, - { - "image_path": "/content/drive/MyDrive/combined/5503f53419bb4a42.jpg", - "response": "A white and blue Flybe plane on the runway.", - "id": 20292 - }, - { - "image_path": "/content/drive/MyDrive/combined/5440f540ed64c034.jpg", - "response": "An orange and white plane flies through the air.", - "id": 20293 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6d52b6577f159f.jpg", - "response": "A yellow helicopter is parked on the grass.", - "id": 20294 - }, - { - "image_path": "/content/drive/MyDrive/combined/4966c6ae95fc4ca7.jpg", - "response": "A silver and red airplane flying through the sky.", - "id": 20295 - }, - { - "image_path": "/content/drive/MyDrive/combined/5283d57616b3b0b2.jpg", - "response": "An orange and white jet airliner is parked on the tarmac with people walking around it.", - "id": 20296 - }, - { - "image_path": "/content/drive/MyDrive/combined/41c650ea4d1f9382.jpg", - "response": "In the image there are two airplanes, one is a white and blue Star Alliance plane and the other is a white and blue Cathay Pacific plane. They are both flying close together over a large body of water. The water is dark and appears to be a lake. The sky is hazy and blue. There are no people visible in the image.", - "id": 20297 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b2c78483931abb6.jpg", - "response": "The image shows a row of red and white airplanes on a tarmac, with the words \"ROYAL AIR FORCE\" visible on the side of one of the planes. There is a fence in the foreground, and a building is visible in the background. The scene appears to be at an airport or airbase.", - "id": 20298 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d32aa5d0749ba4e.jpg", - "response": "A woman sitting in the cockpit of a small airplane.", - "id": 20299 - }, - { - "image_path": "/content/drive/MyDrive/combined/42c1f56721f6f182.jpg", - "response": "A blue car with a yellow paper on the windshield.", - "id": 20300 - }, - { - "image_path": "/content/drive/MyDrive/combined/3cd10e2493341098.jpg", - "response": "An airplane on the runway with several service vehicles around it.", - "id": 20301 - }, - { - "image_path": "/content/drive/MyDrive/combined/5006f100cdb2c702.jpg", - "response": "A vintage airplane with a propeller is sitting on a runway.", - "id": 20302 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d978a7fd7477116.jpg", - "response": "A yellow and white jet airliner on a runway.", - "id": 20303 - }, - { - "image_path": "/content/drive/MyDrive/combined/48c504af4ce7f334.jpg", - "response": "A pair of red and white biplanes with smoke coming from the back.", - "id": 20304 - }, - { - "image_path": "/content/drive/MyDrive/combined/150790bbecd2f511.jpg", - "response": "The image shows a harbor with a large boat covered in a white tarp, and a smaller boat sitting next to it. The smaller boat is a police boat. There are several people visible in the scene, some of them standing on the dock and others on the covered boat. The dock appears to be made of wood.", - "id": 20305 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e1b75d41c485883.jpg", - "response": "A group of people standing in a field watching a man fly a kite.", - "id": 20306 - }, - { - "image_path": "/content/drive/MyDrive/combined/1dae1b6799c1be27.jpg", - "response": "A large passenger jet flying through a cloudy sky.", - "id": 20307 - }, - { - "image_path": "/content/drive/MyDrive/combined/11bfb854683ef695.jpg", - "response": "A large white and blue airplane is parked at the gate.", - "id": 20308 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e4fa55df89af0f8.jpg", - "response": "an airplane with a red and white wing", - "id": 20309 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ac8b66aee5d5241.jpg", - "response": "A runway with multiple airplanes on it.", - "id": 20310 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bb7c3c866f6a742.jpg", - "response": "A large white, green and orange cargo plane from EVA Air sits on the tarmac.", - "id": 20311 - }, - { - "image_path": "/content/drive/MyDrive/combined/1acc722b5cb9432e.jpg", - "response": "A Thomas Cook.com airplane flying in the sky.", - "id": 20312 - }, - { - "image_path": "/content/drive/MyDrive/combined/2767bfeda4c26a4e.jpg", - "response": "A person is working on a project with a box and a pair of scissors.", - "id": 20313 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ac07acec4dd0510.jpg", - "response": "An old black and white photo of a group of men in front of a military plane.", - "id": 20314 - }, - { - "image_path": "/content/drive/MyDrive/combined/14750cc81c71a100.jpg", - "response": "A train on a track with the sky in the background.", - "id": 20315 - }, - { - "image_path": "/content/drive/MyDrive/combined/146c6a76eaef0a16.jpg", - "response": "A white and blue airplane in the sky.", - "id": 20316 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fab1e1f60726a68.jpg", - "response": "A group of people standing around a small airplane.", - "id": 20317 - }, - { - "image_path": "/content/drive/MyDrive/combined/3105891e891667ca.jpg", - "response": "The image shows the front of a large white and blue airplane. The window above the Nasa logo is broken. The Nasa logo is below the window. The moon is visible in the sky.", - "id": 20318 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ebc6d1162f82386.jpg", - "response": "A red and white airplane wing is shown from an airplane window. The wing has the website southwest.com on it. The airplane is flying over a city with buildings and a river below.", - "id": 20319 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3df7ea748d836d.jpg", - "response": "A white airplane with blue and red stripes is sitting on the runway. There is a yellow truck next to the airplane. There are orange cones surrounding the airplane. In the distance, there is a building.", - "id": 20320 - }, - { - "image_path": "/content/drive/MyDrive/combined/1267dd664a4c92e9.jpg", - "response": "A small white airplane with a red stripe sits on the tarmac.", - "id": 20321 - }, - { - "image_path": "/content/drive/MyDrive/combined/0841c8a64aaf2477.jpg", - "response": "a helicopter with the words Medflight on the side", - "id": 20322 - }, - { - "image_path": "/content/drive/MyDrive/combined/37edaeea5e8ebad4.jpg", - "response": "An airplane with a red symbol on the wing and the words \"do not touch\" on the side of the plane.", - "id": 20323 - }, - { - "image_path": "/content/drive/MyDrive/combined/430ef59d29aba8ff.jpg", - "response": "a man wearing a red suit jacket", - "id": 20324 - }, - { - "image_path": "/content/drive/MyDrive/combined/18ce8f16aa65d897.jpg", - "response": "In the image, there is a Korean Air airplane flying in the sky. The airplane is a large jumbo jet with a blue and white color scheme. The left side of the plane has a blue color while the right side has white color. The bottom of the plane is light blue. The plane has four engines on the wings. The landing gear is down. The sky is filled with clouds and the plane is flying towards them.", - "id": 20325 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c1d34752fe9466.jpg", - "response": "An Alaska airlines jetliner sits on the runway with a large tree covered hill in the background. A fighter jet is taking off in the foreground.", - "id": 20326 - }, - { - "image_path": "/content/drive/MyDrive/combined/1508d12f03aaf1b0.jpg", - "response": "A large white and blue airplane flying over a body of water.", - "id": 20327 - }, - { - "image_path": "/content/drive/MyDrive/combined/54c0aa72f754cf10.jpg", - "response": "A rocket with a red bottom and white top is flying through the air.", - "id": 20328 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f842cd939fdf14e.jpg", - "response": "The back of a book with a blue background and white stars.", - "id": 20329 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f23f11de7c8e7f.jpg", - "response": "A window with a metal frame and a clothesline with several herbs hanging from it. The herbs include rosemary, parsley, and cilantro. The clothespins used to hold the herbs are labeled with the names of the herbs. The background is a grassy area and the herbs are drying in front of a window.", - "id": 20330 - }, - { - "image_path": "/content/drive/MyDrive/combined/2c6e8c27297652b3.jpg", - "response": "a black and white plane on display inside a building", - "id": 20331 - }, - { - "image_path": "/content/drive/MyDrive/combined/317aa04ed82006c2.jpg", - "response": "A scenic view of the San Francisco Bay area, with a winding road on the right side of the image. The sky is blue and the grass is dry and yellow. There are hills in the distance and a city is visible in the middle of the bay. The image also says \"My house\" with an arrow pointing to the left side of the image.", - "id": 20332 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d30c9cccb5d0ed4.jpg", - "response": "An aircraft carrier is docked in the water.", - "id": 20333 - }, - { - "image_path": "/content/drive/MyDrive/combined/4cfd9f8de3e213ad.jpg", - "response": "A large jet engine is on display in a museum.", - "id": 20334 - }, - { - "image_path": "/content/drive/MyDrive/combined/09cd1c938e3b7ad5.jpg", - "response": "A black and white photo of a plane flying in the sky.", - "id": 20335 - }, - { - "image_path": "/content/drive/MyDrive/combined/199f9e0db493513e.jpg", - "response": "A large Honda sign is displayed above a car show.", - "id": 20336 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c72b3bcff4366ed.jpg", - "response": "A Hawaiian Airlines jet taxis on a runway.", - "id": 20337 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b7592c9bf5690e2.jpg", - "response": "A wooden signpost in the grass.", - "id": 20338 - }, - { - "image_path": "/content/drive/MyDrive/combined/13fe91e3b075ce61.jpg", - "response": "a pole with many arrows pointing in different directions towards various cities and locations", - "id": 20339 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c146da3a22abeb9.jpg", - "response": "A large airplane engine painted blue and silver is seen from above.", - "id": 20340 - }, - { - "image_path": "/content/drive/MyDrive/combined/165bdc1b0193a27a.jpg", - "response": "A square puzzle of a car on a street is shown. The car is driving down the street and appears to be in motion. The word \"Harder... Faster\" is written on the bottom of the puzzle. The background of the puzzle is a dark brown.", - "id": 20341 - }, - { - "image_path": "/content/drive/MyDrive/combined/55363386155538b3.jpg", - "response": "An old grey plane with the number 12 on the side.", - "id": 20342 - }, - { - "image_path": "/content/drive/MyDrive/combined/09460ef47a513073.jpg", - "response": "The image shows the tail of a large passenger jet, with the word \"A350\" on the tail. The sky is blue and the sun is shining.", - "id": 20343 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a2de319b616a972.jpg", - "response": "A man sitting on a rail near a strange looking vehicle.", - "id": 20344 - }, - { - "image_path": "/content/drive/MyDrive/combined/309a5437520f080e.jpg", - "response": "An airplane is on a train on the tracks.", - "id": 20345 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cd091810d6dfa80.jpg", - "response": "An airplane is sitting on the runway at the airport.", - "id": 20346 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fafe5558877fa35.jpg", - "response": "A sign that says burning life on it.", - "id": 20347 - }, - { - "image_path": "/content/drive/MyDrive/combined/21b828ce3b2974bc.jpg", - "response": "A large ship with a colorful flower mural on the side.", - "id": 20348 - }, - { - "image_path": "/content/drive/MyDrive/combined/07d628854538d11c.jpg", - "response": "A person is holding a white HTC smartphone in their hand. The phone is displaying a menu with options such as \"People,\" \"Messages,\" and \"Phone.\" A finger is visible on the screen, likely interacting with the phone.", - "id": 20349 - }, - { - "image_path": "/content/drive/MyDrive/combined/19b96e71ce39d7e5.jpg", - "response": "A book cover with a picture of a crashed car.", - "id": 20350 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c088e971fecc138.jpg", - "response": "A large military plane sits on a runway.", - "id": 20351 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f724d0c829a2a9e.jpg", - "response": "An old photograph of a USAF plane.", - "id": 20352 - }, - { - "image_path": "/content/drive/MyDrive/combined/117595eb06df44eb.jpg", - "response": "A red and white Swiss airplane is on the runway.", - "id": 20353 - }, - { - "image_path": "/content/drive/MyDrive/combined/19f3889aa7056ccb.jpg", - "response": "A white SunExpress airplane on a runway.", - "id": 20354 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f96ebe125a69129.jpg", - "response": "A black cell phone is on a table.", - "id": 20355 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ef30d437f16241e.jpg", - "response": "A large inflatable blue dog is propped up in a window.", - "id": 20356 - }, - { - "image_path": "/content/drive/MyDrive/combined/29e7b9c4ae1df525.jpg", - "response": "A white and blue Alliance airplane on a runway.", - "id": 20357 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd36bb7e765b1b9.jpg", - "response": "A collection of yellow and white clocks are stacked on top of each other. They are sitting on a table and displayed in a room.", - "id": 20358 - }, - { - "image_path": "/content/drive/MyDrive/combined/10591753e876e37e.jpg", - "response": "A girl in a pink shirt stands in front of a fireplace.", - "id": 20359 - }, - { - "image_path": "/content/drive/MyDrive/combined/09da9293dfe128d3.jpg", - "response": "A wall clock is mounted on a yellow wall above a sign that says \"Unattended children will be given espresso and a free kitten.\" There are also a few bottles on the shelf below the clock.", - "id": 20360 - }, - { - "image_path": "/content/drive/MyDrive/combined/767caf63a0b37a08.jpg", - "response": "The image features a group of three different microchips. One of the microchips is a square black chip with a white circuit board design on it. Another chip is a rectangular chip with ten pins on it. The third chip is a square chip with a curved corner. The microchips are displayed on a green and blue background with a white outline of a jet fighter in front of them. The microchips are also displayed with the text \"MIL-PRF-38535\" in white on a blue background at the bottom of the image.", - "id": 20361 - }, - { - "image_path": "/content/drive/MyDrive/combined/13518248e1e47d2f.jpg", - "response": "A mantle with a photo of two women, a clock, and a mirror.", - "id": 20362 - }, - { - "image_path": "/content/drive/MyDrive/combined/09fca941ccf62a19.jpg", - "response": "A metro clock with a yellow face and black numbers.", - "id": 20363 - }, - { - "image_path": "/content/drive/MyDrive/combined/14e0ea396adc7cca.jpg", - "response": "A collection of clocks and watches sit on a table. There is a silver alarm clock with a white face and black numbers. Another clock is on the left side of the table, it is circular and black with a white face. There is a red alarm clock on the table as well. A group of watches are sitting on the table, some are in the foreground and some are in the background. They are of various sizes and shapes. A book is open on the table, it is a paperback book with a white cover. There is a small white clock on the table as well. There are also a pair of scissors and a lighter on the table.", - "id": 20364 - }, - { - "image_path": "/content/drive/MyDrive/combined/1584c0f013d1bd9d.jpg", - "response": "A close up of a license plate that says Virginia 3 Gun Gal on it.", - "id": 20365 - }, - { - "image_path": "/content/drive/MyDrive/combined/16fc9ae25d70c97c.jpg", - "response": "A clear glass bathroom scale with a white background.", - "id": 20366 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b10ee610d07849b.jpg", - "response": "A man and a woman standing in a room wearing backpacks.", - "id": 20367 - }, - { - "image_path": "/content/drive/MyDrive/combined/22e0638917b3e932.jpg", - "response": "A red alarm clock sitting on top of a white box.", - "id": 20368 - }, - { - "image_path": "/content/drive/MyDrive/combined/33400a37923526dd.jpg", - "response": "a backpack(449,57),(997,983)", - "id": 20369 - }, - { - "image_path": "/content/drive/MyDrive/combined/364a71033a730e6e.jpg", - "response": "A clock sitting on a table next to a lighter.", - "id": 20370 - }, - { - "image_path": "/content/drive/MyDrive/combined/23384b1e2a9e9e7e.jpg", - "response": "In the image there are three red alarm clocks stacked on top of each other with a white face. The bottom clock is in the foreground and has a shadow underneath it. The middle and top alarm clocks are slightly transparent and appear slightly behind the bottom clock. The hands on the bottom clock are pointing to the numbers 1, 2, and 3.", - "id": 20371 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b6201b4481931a4.jpg", - "response": "A wall with several bags hanging on it.", - "id": 20372 - }, - { - "image_path": "/content/drive/MyDrive/combined/49fbbc7bff8c3834.jpg", - "response": "A backpack sitting on the ground next to a thermos.", - "id": 20373 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d1503073391e033.jpg", - "response": "A couple of men standing on a street with large backpacks.", - "id": 20374 - }, - { - "image_path": "/content/drive/MyDrive/combined/52047fe9dc33151b.jpg", - "response": "A close up of a clock with a Santa Claus decoration next to it.", - "id": 20375 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df3c5894ea1acba.jpg", - "response": "A young child wearing a tan backpack with the name Mila on it.", - "id": 20376 - }, - { - "image_path": "/content/drive/MyDrive/combined/1bb61a35286f9cb8.jpg", - "response": "A floral backpack with a tan bottom and a patch that says \"only\" in black on the front.", - "id": 20377 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a4df54f9ecec3c6.jpg", - "response": "A red alarm clock with a picture of anime girls on it.", - "id": 20378 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c73744354f2e332.jpg", - "response": "A woman wearing a green jacket with a pink backpack.", - "id": 20379 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a38ec83e7abc14c.jpg", - "response": "A woman laying in bed looking at a clock.", - "id": 20380 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d1c6d1d05ca6cad.jpg", - "response": "A blue and white clock sitting on a wooden table.", - "id": 20381 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d843d885da424e6.jpg", - "response": "A young boy wearing a blue hat and a blue backpack.", - "id": 20382 - }, - { - "image_path": "/content/drive/MyDrive/combined/4683b3c11527db5c.jpg", - "response": "a silver and black analog clock", - "id": 20383 - }, - { - "image_path": "/content/drive/MyDrive/combined/50d75787f7e72029.jpg", - "response": "The image features a man wearing a large grey backpack with two straps. The backpack has a large pocket on the front and a smaller pocket on the back. The man is wearing the backpack on his back. He is also wearing a black and white jacket with the hood on. The man is wearing an orange and blue scarf around his neck. He is also wearing a watch on his left wrist. The man is walking down a street and there are other people in the background.", - "id": 20384 - }, - { - "image_path": "/content/drive/MyDrive/combined/114fff243a35a42f.jpg", - "response": "a grey backpack with a yellow logo on the lower back part of it", - "id": 20385 - }, - { - "image_path": "/content/drive/MyDrive/combined/3738f5d622b38d7a.jpg", - "response": "A white alarm clock sits on a wooden table next to a clear lighter. The clock has a white face and black numbers. The table is made of wood and is shiny. The background is blurry and there are many colors in the image.", - "id": 20386 - }, - { - "image_path": "/content/drive/MyDrive/combined/23afda261384af53.jpg", - "response": "A blue and red alarm clock with Scooby Doo on it.", - "id": 20387 - }, - { - "image_path": "/content/drive/MyDrive/combined/3324a06e25bc74a5.jpg", - "response": "A small clock and a pillow are sitting on a table.", - "id": 20388 - }, - { - "image_path": "/content/drive/MyDrive/combined/1be12e352a7ca6f6.jpg", - "response": "A wooden figure stands in front of a large clock.", - "id": 20389 - }, - { - "image_path": "/content/drive/MyDrive/combined/35e28a1ba2cea2a6.jpg", - "response": "A brick wall is behind the three bags of luggage. There is a large red and black backpack, a smaller red and black backpack, and a grey and orange backpack. All three have various gear and items in them. A pair of trekking poles is leaning against the large backpack.", - "id": 20390 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d1296fda6d9715c.jpg", - "response": "A group of three men walking down a gravel road.", - "id": 20391 - }, - { - "image_path": "/content/drive/MyDrive/combined/3de08e9a7f26862f.jpg", - "response": "An alarm clock with bells on top is lit up in a dark room. The clock is made of brass and has a white face. The hands of the clock are black.", - "id": 20392 - }, - { - "image_path": "/content/drive/MyDrive/combined/125298e97bbec7d2.jpg", - "response": "In the image there is a backpack on the left and a larger bag on the right. The larger bag has a cover over it. Both bags are on a wooden floor.", - "id": 20393 - }, - { - "image_path": "/content/drive/MyDrive/combined/159a925e962ed27f.jpg", - "response": "A close up of a red ZenFone case with a clock on the back.", - "id": 20394 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ba780a518c0f915.jpg", - "response": "A man and a woman are standing outside a building. Both of them are wearing backpacks and are looking at their cell phones. The man is wearing a black backpack and has a pen in his pocket. The woman has a black sweater and a black shirt.", - "id": 20395 - }, - { - "image_path": "/content/drive/MyDrive/combined/27da06478e666863.jpg", - "response": "a man pointing to a map(378,0),(564,999)", - "id": 20396 - }, - { - "image_path": "/content/drive/MyDrive/combined/31e456e04ae101ac.jpg", - "response": "In the image, a woman is smiling and wearing a blue top. She is holding a black backpack in her hands and has a sticker on it that says \"Nepal Health Volunteer\". There is also a picture of a person on the backpack.", - "id": 20397 - }, - { - "image_path": "/content/drive/MyDrive/combined/30efc2d36f2bcdb3.jpg", - "response": "A blue and black backpack with a tag that says \"I'm lost\" on it.", - "id": 20398 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d92dc7cdce8e9b3.jpg", - "response": "In the image, there is a person wearing a large backpack on their back. The backpack is green and has a red strap. The person is standing in a public area, surrounded by other people. Some of the people are sitting on chairs, and there is a bench in the scene as well. The backpack has a tag on it, and there is a book visible in the image. The overall atmosphere of the scene is busy and social.", - "id": 20399 - }, - { - "image_path": "/content/drive/MyDrive/combined/34376cf272a2cddd.jpg", - "response": "A black backpack sitting on a sandy beach near the water.", - "id": 20400 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dd9e1c177daa8c1.jpg", - "response": "A clock sitting on a table next to a clear lighter.", - "id": 20401 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f4b22bc496f9fcc.jpg", - "response": "A person sitting on the ground with a blue bag between their legs.", - "id": 20402 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a2104e4646d81b.jpg", - "response": "A red alarm clock with a cartoon bear holding the bells of the clock.", - "id": 20403 - }, - { - "image_path": "/content/drive/MyDrive/combined/21ceea22c23b15b1.jpg", - "response": "A backpack is sitting on the floor next to a table. On the table, there is a silver laptop, a camera, a cell phone, a book, a pencil, a cup, a pair of headphones, and a mouse.", - "id": 20404 - }, - { - "image_path": "/content/drive/MyDrive/combined/3c5f9ba84deaec3e.jpg", - "response": "The image shows a red Thule backpack. The backpack has a zippered compartment on the front and two straps on the sides. The straps are orange and have a silver Thule logo. The backpack also has a small zippered pocket on the front. The backpack is unzipped and is packed full.", - "id": 20405 - }, - { - "image_path": "/content/drive/MyDrive/combined/34fd99e5c0b70cf7.jpg", - "response": "A green and white alarm clock sitting on a wooden table.", - "id": 20406 - }, - { - "image_path": "/content/drive/MyDrive/combined/27d36b47bc07bf1e.jpg", - "response": "A mickey mouse alarm clock with a red base and white face.", - "id": 20407 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a6a82e6106c75a6.jpg", - "response": "A Mickey Mouse alarm clock with red and white colors.", - "id": 20408 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ecd782cd2b9d542.jpg", - "response": "a table with a bowl of lavender, a cup of sugar, a cup of water, and a cup of tea bags.", - "id": 20409 - }, - { - "image_path": "/content/drive/MyDrive/combined/23bf1f8d4187ec1c.jpg", - "response": "A glass beaker with a rubber band around it.", - "id": 20410 - }, - { - "image_path": "/content/drive/MyDrive/combined/2a76d935cfcd16cf.jpg", - "response": "On a table, there are two plastic cups. One of the cups is filled with a yellow liquid and labeled Jager Bomb. The other cup is filled with a clear liquid and labeled Jager Bomb.", - "id": 20411 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8fb41664833550.jpg", - "response": "In the image there are many lit candles on a table. The candles are in various sizes and shapes, some are tall and thin while others are short and fat. They are placed in different types of containers, including clear glass jars and plastic cups. The candles have different heights and positions, some are closer to the viewer while others are further away. The candles are lit and their flames are visible. The light from the candles is casting shadows on the table and the surrounding area.", - "id": 20412 - }, - { - "image_path": "/content/drive/MyDrive/combined/5e2e7734a372dd79.jpg", - "response": "A man wearing a red and grey jacket and a red and black backpack is taking a picture of a hilly area with his cell phone.", - "id": 20413 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a20baf628fa9be7.jpg", - "response": "A can of Wonda Wonderful Coffee sits on a white counter.", - "id": 20414 - }, - { - "image_path": "/content/drive/MyDrive/combined/1f3b950b103a337d.jpg", - "response": "A scientist in a white lab coat and blue rubber gloves is working with beakers and bottles in a lab.", - "id": 20415 - }, - { - "image_path": "/content/drive/MyDrive/combined/50ed6df9e87f526f.jpg", - "response": "The image features a blue and white Dakine backpack. The backpack has a white Dakine logo on the front. The word \"Camp of Champions\" is written on the front of the backpack. The backpack has a blue strap with white stitching. The strap has a metal buckle and a plastic clasp. The clasp has the word \"get stocked\" written on it. The words \"Just in time for Christmas\" are written in the top left corner of the image. The words \"25th Anniversary Dakine/COC Mission Pack\" are written in the top right corner of the image. The words \"only $20 more\" are written in the bottom left corner of the image. The words \"Save $45\" are written in the bottom right corner of the image.", - "id": 20416 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a361f71e4bb29c9.jpg", - "response": "A jar of pickled herring roe on a white napkin.", - "id": 20417 - }, - { - "image_path": "/content/drive/MyDrive/combined/172a5c51a9591088.jpg", - "response": "A measuring cup filled with a brown liquid sits on a counter.", - "id": 20418 - }, - { - "image_path": "/content/drive/MyDrive/combined/1428ab127db8c19a.jpg", - "response": "A kitchen counter with a metal bowl, a mixer, a measuring cup of sugar, and three eggs.", - "id": 20419 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b731a7fb8be5daa.jpg", - "response": "A white coffee cup with the word tea on it.", - "id": 20420 - }, - { - "image_path": "/content/drive/MyDrive/combined/28c7083ce0f7608f.jpg", - "response": "A measuring cup with a blue top and a spout.", - "id": 20421 - }, - { - "image_path": "/content/drive/MyDrive/combined/1371f515b5013cd9.jpg", - "response": "A plastic cup with a red label on it that says Wrigley Field.", - "id": 20422 - }, - { - "image_path": "/content/drive/MyDrive/combined/1e3557c340e8a291.jpg", - "response": "A beaker with a black top and a white bottom.", - "id": 20423 - }, - { - "image_path": "/content/drive/MyDrive/combined/3a21c57c73ca89e8.jpg", - "response": "A beaker with a handle and a spout filled with a clear liquid.", - "id": 20424 - }, - { - "image_path": "/content/drive/MyDrive/combined/14b686cb2d75993a.jpg", - "response": "A ticket sitting in a glass of water.", - "id": 20425 - }, - { - "image_path": "/content/drive/MyDrive/combined/08724611486a3b12.jpg", - "response": "A glass of red wine sitting on a table next to a beaker filled with a dark liquid.", - "id": 20426 - }, - { - "image_path": "/content/drive/MyDrive/combined/10a2606dbd285578.jpg", - "response": "A glass beaker with a capacity of 10 milliliters is placed on a wooden table. The beaker is clear and made of glass. The table is light brown in color. In the background, there are lights that are turned on. The lights are not directly behind the beaker, but rather to the right. The beaker is the main focus of the image, and the background is intentionally kept blurry to draw attention to it.", - "id": 20427 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ad5b0d36ef9bea4.jpg", - "response": "A beaker with a rainbow liquid in it.", - "id": 20428 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f9a0cf7e03f66db.jpg", - "response": "On a white shelf, there are many different colored bottles with labels on them. Some of the bottles are empty, while others contain various liquids. The bottles are tagged with labels and string.", - "id": 20429 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b571ad464ba6b26.jpg", - "response": "A small measuring cup filled with a red liquid sits on a white paper. The liquid in the cup is a mix of red and yellow. The measuring cup has ml markings on it.", - "id": 20430 - }, - { - "image_path": "/content/drive/MyDrive/combined/140e91b339985fe6.jpg", - "response": "A table with a blue table cloth on it with a mug of beer and a can of coke on it.", - "id": 20431 - }, - { - "image_path": "/content/drive/MyDrive/combined/39bdb52aa20a4a1f.jpg", - "response": "A glass beaker filled with a clear liquid.", - "id": 20432 - }, - { - "image_path": "/content/drive/MyDrive/combined/118ad70f8c965290.jpg", - "response": "In the image, there are several glass beakers with liquid in them. The beakers are placed on a counter and some of them are connected to hoses. The closest beaker has a white label with black writing on it. Another beaker is filled with a brown liquid. Another beaker is filled with a clear liquid. The liquid in the beakers ranges in color from clear to brown.", - "id": 20433 - }, - { - "image_path": "/content/drive/MyDrive/combined/48fa1147348fbc7c.jpg", - "response": "A measuring cup with a yellow liquid in it.", - "id": 20434 - }, - { - "image_path": "/content/drive/MyDrive/combined/42547a5252166d65.jpg", - "response": "A measuring cup filled with a brown liquid sits on a counter. The liquid has a brown color and is likely a liquid.", - "id": 20435 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ae0ed889de92bfb.jpg", - "response": "In the image, a chef is in a kitchen preparing food. They are cracking an egg into a measuring cup.", - "id": 20436 - }, - { - "image_path": "/content/drive/MyDrive/combined/401b3b02c3caf193.jpg", - "response": "A measuring cup filled with a white liquid.", - "id": 20437 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ed811f85786fcfa.jpg", - "response": "A conical beaker and a measuring cylinder filled with liquids.", - "id": 20438 - }, - { - "image_path": "/content/drive/MyDrive/combined/40aedfad5a112d37.jpg", - "response": "A collection of glass beakers and bottles are lined up on a table. The beakers have markings on them and one has a BioPAN logo on it. The bottles are clear and one has a sticker on it that says \"watch us grow\". The table is brown and the background is blue.", - "id": 20439 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d61873b3bb7ce16.jpg", - "response": "A city street with buildings and cars on a sunny day. There are three billboards along the street, one for Heineken beer, one for Smirnoff vodka, and one for Red One energy drink.", - "id": 20440 - }, - { - "image_path": "/content/drive/MyDrive/combined/11074b77aed1e943.jpg", - "response": "A large billboard on the side of a building advertising HipChat.", - "id": 20441 - }, - { - "image_path": "/content/drive/MyDrive/combined/089b6d02edd95de8.jpg", - "response": "A billboard for Maker Faire Milwaukee is shown. The event is free and will be held September 27 and 28 at Wisconsin State Fair Park. The event is presented by Make: and Brady YCO. The website for the event is makerfairemilwaukee.com.", - "id": 20442 - }, - { - "image_path": "/content/drive/MyDrive/combined/096048c81052b573.jpg", - "response": "A large building with a banner on the front of it.", - "id": 20443 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eaec11e9457642f.jpg", - "response": "a billboard for southway housing trust", - "id": 20444 - }, - { - "image_path": "/content/drive/MyDrive/combined/12f812ea2f65177a.jpg", - "response": "A red car is parked in a parking lot with a white van. There are two billboards in the background, one for L'Or\u00e9al and the other for Conspira.", - "id": 20445 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b7e65840a53571a.jpg", - "response": "A large billboard for the movie Superman Returns is attached to the side of a building. The billboard features Superman flying through the air with his arms outstretched.", - "id": 20446 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e2c4f604dcf1f34.jpg", - "response": "A large billboard is advertising a beach scene on a building.", - "id": 20447 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b271edf5bc7889b.jpg", - "response": "A city street at night with many illuminated signs in Japanese.", - "id": 20448 - }, - { - "image_path": "/content/drive/MyDrive/combined/138b36bd24fb09ed.jpg", - "response": "A busy street with many signs and billboards.", - "id": 20449 - }, - { - "image_path": "/content/drive/MyDrive/combined/07df8b25084e383e.jpg", - "response": "A billboard for Evolution Weight Loss with a picture of a woman and the phone number 727.861.2277.", - "id": 20450 - }, - { - "image_path": "/content/drive/MyDrive/combined/0840c7f8768accc6.jpg", - "response": "A large sign for the Central Market is displayed on a city street.", - "id": 20451 - }, - { - "image_path": "/content/drive/MyDrive/combined/104bed0599db2288.jpg", - "response": "A sign for AberZombie & Witch is shown in front of a blue and red building.", - "id": 20452 - }, - { - "image_path": "/content/drive/MyDrive/combined/084035b4a622b393.jpg", - "response": "A large red and white sign for Alcova, a fetish shop in Rome.", - "id": 20453 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d401ff381cbf336.jpg", - "response": "A large lit up billboard in a city with a picture of Santa Claus on it.", - "id": 20454 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ee1b22dc2ebbe17.jpg", - "response": "A street scene with many cars parked on the side of the street.", - "id": 20455 - }, - { - "image_path": "/content/drive/MyDrive/combined/07fb9a7d381e6eac.jpg", - "response": "a sign that is white in color", - "id": 20456 - }, - { - "image_path": "/content/drive/MyDrive/combined/1100f857b4098206.jpg", - "response": "A large billboard for the movie Kong is displayed outside.", - "id": 20457 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e66e1e0b80fecc0.jpg", - "response": "A large billboard for Yahoo is seen in this image. The billboard is yellow, purple, and white in color. It is an outdoor billboard and is seen against a white sky.", - "id": 20458 - }, - { - "image_path": "/content/drive/MyDrive/combined/07cfcd846acb132a.jpg", - "response": "A large sign showing the destinations that the train service will be calling at in the future.", - "id": 20459 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e520b39d86af81a.jpg", - "response": "A sidewalk with a large billboard on the side of a building.", - "id": 20460 - }, - { - "image_path": "/content/drive/MyDrive/combined/07ec166bed0945e0.jpg", - "response": "A billboard that says \"Proud to do business in Hampton Roads America's First Region\" on it.", - "id": 20461 - }, - { - "image_path": "/content/drive/MyDrive/combined/13dd24a49e4b93c3.jpg", - "response": "A large sign advertising the Milwaukee Intermodal Station.", - "id": 20462 - }, - { - "image_path": "/content/drive/MyDrive/combined/10da71c4c3e652e6.jpg", - "response": "A billboard advertising a 260 mile run from Columbus to Savannah.", - "id": 20463 - }, - { - "image_path": "/content/drive/MyDrive/combined/085db0ac101d8d9f.jpg", - "response": "A billboard for Royal Brunei Airlines, with a picture of a city and a statue of a lion on it.", - "id": 20464 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f78aa66d84c8c46.jpg", - "response": "A car is driving down the road near a billboard advertising A&W Root Beer. The billboard is yellow and red and is located next to a field. There are also a few buildings in the background.", - "id": 20465 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b232fec8bdf05c7.jpg", - "response": "A billboard for Ask.com is shown on a building. The billboard is white and has a large Ask.com logo in green. The phone number on the billboard is 800-GOOG-411. The letters G and O are in white, while O and G are in green. The number 4 is black. The billboard also has a tagline that says \"The Algorithm.\" The tagline is in white and is smaller than the main text.", - "id": 20466 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cc8554c886bd42b.jpg", - "response": "A billboard with the word McSame on it.", - "id": 20467 - }, - { - "image_path": "/content/drive/MyDrive/combined/12581d7325d1e913.jpg", - "response": "A billboard with a poem by Ogden Nash about trees.", - "id": 20468 - }, - { - "image_path": "/content/drive/MyDrive/combined/078cc35acabe5e77.jpg", - "response": "A large billboard for Emirates Durham International Cricket Ground.", - "id": 20469 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ed46467720c9b30.jpg", - "response": "A large green Uneeda biscuit sign painted on the side of a brick building.", - "id": 20470 - }, - { - "image_path": "/content/drive/MyDrive/combined/128a89f47d6cadb4.jpg", - "response": "A large billboard sign advertising pepsi and other products.", - "id": 20471 - }, - { - "image_path": "/content/drive/MyDrive/combined/08e9c2add8be5fd1.jpg", - "response": "A billboard on a building advertising bikinis.", - "id": 20472 - }, - { - "image_path": "/content/drive/MyDrive/combined/092d1f331ff9dc49.jpg", - "response": "A billboard on a metal pole with a sky background.", - "id": 20473 - }, - { - "image_path": "/content/drive/MyDrive/combined/0df0ba7b4cf1e9a0.jpg", - "response": "A large red and white Friendly's sign.", - "id": 20474 - }, - { - "image_path": "/content/drive/MyDrive/combined/09c5d379a36ac114.jpg", - "response": "A large blue billboard for Pepsi with two Pepsi bottles on it.", - "id": 20475 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea8d492d75144e7.jpg", - "response": "A large white billboard with a man on it advertising Standard Chartered.", - "id": 20476 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c6811449009da07.jpg", - "response": "A large white billboard is on top of a building. The building has a sign that says \"American Apparel\" on it. The sky is blue and clear. There are several street signs on a pole on the left side of the image. On the right side of the image, there is a tree branch.", - "id": 20477 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c65125a6f6ae691.jpg", - "response": "A large blue sign welcoming people to Nan is above a street.", - "id": 20478 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3ea89ae1d18045.jpg", - "response": "A billboard for Denver Health's \"Who Invited Synth\" campaign.", - "id": 20479 - }, - { - "image_path": "/content/drive/MyDrive/combined/13df3127e3fbab62.jpg", - "response": "A sign for the Unidade Penha sits above a fence.", - "id": 20480 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c0a22bfd0da315a.jpg", - "response": "A billboard for the Principal Charity Classic is displayed on a grassy hill.", - "id": 20481 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d0ca1db8eab38ff.jpg", - "response": "a poster of a man in a suit and tie with the words Odlu\u010dno u promjenje! or Decide for change! under him", - "id": 20482 - }, - { - "image_path": "/content/drive/MyDrive/combined/1cce765ca9bd7643.jpg", - "response": "A billboard on the side of a building advertising Sky TV.", - "id": 20483 - }, - { - "image_path": "/content/drive/MyDrive/combined/203ccd184cfe8eda.jpg", - "response": "A sign advertising an Auto Electrica business.", - "id": 20484 - }, - { - "image_path": "/content/drive/MyDrive/combined/163e87e51b45fa31.jpg", - "response": "The image features a large scoreboard with a cartoon figure of a devil on it. The figure is colored maroon and gold and is brandishing a trident. Underneath the scoreboard is a banner reading \"Sun Devil Stadium\". The background is a clear blue sky.", - "id": 20485 - }, - { - "image_path": "/content/drive/MyDrive/combined/260496f2f60b88b7.jpg", - "response": "A train overpass with graffiti on the side.", - "id": 20486 - }, - { - "image_path": "/content/drive/MyDrive/combined/174c9770bc42ddc6.jpg", - "response": "A large sign for Pete's Silly Sideshow greets visitors to the funfair. The sign is red, white and blue and has many different fonts and images on it.", - "id": 20487 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b4dd98ed719a054.jpg", - "response": "A billboard on a street corner that says \"Why is California losing Vernon's jobs to Texas?\" with a picture of a red Texas and a blue California fighting over a star.", - "id": 20488 - }, - { - "image_path": "/content/drive/MyDrive/combined/243ebb245142e014.jpg", - "response": "A billboard for the movie Prometheus is shown.", - "id": 20489 - }, - { - "image_path": "/content/drive/MyDrive/combined/1692b123e8839937.jpg", - "response": "A large billboard for a clothing store called Uniqlo.", - "id": 20490 - }, - { - "image_path": "/content/drive/MyDrive/combined/2acfca27a3110203.jpg", - "response": "A large sign for McDonald's with the golden arches above the sign.", - "id": 20491 - }, - { - "image_path": "/content/drive/MyDrive/combined/250bef644bdb019d.jpg", - "response": "A billboard with the words \"Use Electricity Wisely\" on it.", - "id": 20492 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d1999870f41b5ce.jpg", - "response": "A sign for a restaurant called 24h Like \u5b89\u85e4\u5ba2, which is a chain that features a mix of American and Chinese food. The sign is red and white and is written in both English and Chinese. The restaurant is located on Wulei Road in the Xuhui district of Shanghai.", - "id": 20493 - }, - { - "image_path": "/content/drive/MyDrive/combined/15720f48d81f0624.jpg", - "response": "A street pole with a lamp on top, topped with a street light. There are three street signs attached to the pole. One is for Mozart Place, one is for 2600 block, and the third one is a one way sign. The sky is blue with a few clouds.", - "id": 20494 - }, - { - "image_path": "/content/drive/MyDrive/combined/1523442d50b91b10.jpg", - "response": "A billboard for American Apparel with two women on it.", - "id": 20495 - }, - { - "image_path": "/content/drive/MyDrive/combined/251d1c9aafcdd187.jpg", - "response": "An image of a city with a bridge going over a highway. There is a tall arch in the background and a billboard for lime-rita.", - "id": 20496 - }, - { - "image_path": "/content/drive/MyDrive/combined/22c6cbe24f0dcf2a.jpg", - "response": "A large chalkboard sign advertising a Chardonnay wine for $5.99.", - "id": 20497 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c89e3b113fbb37e.jpg", - "response": "A large sign for a dry cleaning business that also does one hour martiniizing.", - "id": 20498 - }, - { - "image_path": "/content/drive/MyDrive/combined/1a2d47bd28873050.jpg", - "response": "A large blue billboard with the words \"Look before passing\" in white.", - "id": 20499 - }, - { - "image_path": "/content/drive/MyDrive/combined/2bd4d1af9caab8db.jpg", - "response": "A large billboard for the candy bar Snickers is displayed on a billboard in a city.", - "id": 20500 - }, - { - "image_path": "/content/drive/MyDrive/combined/28cddfb2e56450b2.jpg", - "response": "A billboard featuring a photo of a man and reading \"Ron Gold supports legal marijuana\" is displayed on a city street.", - "id": 20501 - }, - { - "image_path": "/content/drive/MyDrive/combined/195fdbdedf59aabb.jpg", - "response": "A billboard with a picture of a man standing in front of an open refrigerator.", - "id": 20502 - }, - { - "image_path": "/content/drive/MyDrive/combined/19a4efa6324dcabc.jpg", - "response": "A large brick building with a Coors Light billboard on top.", - "id": 20503 - }, - { - "image_path": "/content/drive/MyDrive/combined/20b1edadc1543b65.jpg", - "response": "A billboard with the URL for a website on it.", - "id": 20504 - }, - { - "image_path": "/content/drive/MyDrive/combined/2194ff8f0a898f3b.jpg", - "response": "The image shows a man standing at a podium in front of a large truck. The man is wearing a suit and tie and is smiling. The podium is black and white and has a sign on it that says \"Hunger Task Force.\"", - "id": 20505 - }, - { - "image_path": "/content/drive/MyDrive/combined/22a20cd4025fc8a1.jpg", - "response": "A billboard with a picture of a man and the words \"WANTED FOR THE MURDER OF VALENTYNA KRAM\" beneath it. The man's name is Jaime Albaran and the phone number to call with any information is 775-751-7000. The billboard is located in a parking lot with several RVs parked in front of it.", - "id": 20506 - }, - { - "image_path": "/content/drive/MyDrive/combined/297e957b5d644e9d.jpg", - "response": "A sign for English Ivy's Fine Food and Spirits hangs from a metal bar attached to a brick building.", - "id": 20507 - }, - { - "image_path": "/content/drive/MyDrive/combined/2927086cd6ba2f8c.jpg", - "response": "A yellow poster advertising a concert featuring a smiley face with a yellow body and white arms and legs. The poster is for a concert featuring\u79cb\u8449\u539f and has a URL for more information.", - "id": 20508 - }, - { - "image_path": "/content/drive/MyDrive/combined/2321c4665fcfd029.jpg", - "response": "A street scene with a brick building in the background. There is a traffic light on a pole, and a street sign for Irving Park Road. In the foreground, there is a KFC restaurant sign and a Taco Bell sign.", - "id": 20509 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ab8100642c0e3c4.jpg", - "response": "A large billboard on a city street features a painting of a woman's face.", - "id": 20510 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b64a1de55d4d753.jpg", - "response": "a sign that says subte movie time on it", - "id": 20511 - }, - { - "image_path": "/content/drive/MyDrive/combined/22b057c67ac3424a.jpg", - "response": "A brick wall with a sign that says \"Blue Wave Lounge\" on it.", - "id": 20512 - }, - { - "image_path": "/content/drive/MyDrive/combined/29c947adc5397f79.jpg", - "response": "A sign for Moe's Southwest Grill with a logo of a yellow face with red hair and a red chili pepper. To the right of the yellow face is the word \"Moe's\". Above the yellow face and text is a row of red that says \"Southwest Grill\". Below the yellow face and text is a red row that says \"Mortensen's Ice Cream\". The sign is yellow, red, and white.", - "id": 20513 - }, - { - "image_path": "/content/drive/MyDrive/combined/28b108d1035ec03f.jpg", - "response": "A billboard with a picture of a man on it.", - "id": 20514 - }, - { - "image_path": "/content/drive/MyDrive/combined/23011a3cd531a4fa.jpg", - "response": "A large sign that says World's Second Largest Boar.", - "id": 20515 - }, - { - "image_path": "/content/drive/MyDrive/combined/20475a6f4af70666.jpg", - "response": "A blue and white sign that says \"Trunk Sewers\" on it.", - "id": 20516 - }, - { - "image_path": "/content/drive/MyDrive/combined/26f02a255a0f3cf6.jpg", - "response": "A Panera Bread sign is on the side of a building. The sign is green and has the Panera Bread logo in the top left corner. The words \"Drive Thru\" are in the middle of the sign in white letters. There are two silver sconces on the side of the building, one on the left and one on the right. The background is a bright blue sky.", - "id": 20517 - }, - { - "image_path": "/content/drive/MyDrive/combined/25002d70a89815d6.jpg", - "response": "A billboard for America's First Region is shown in the image.", - "id": 20518 - }, - { - "image_path": "/content/drive/MyDrive/combined/25ee52624577b639.jpg", - "response": "A billboard for McDonald's is shown next to a billboard for Smokey Bear.", - "id": 20519 - }, - { - "image_path": "/content/drive/MyDrive/combined/251c183edad64807.jpg", - "response": "A Sprint Vision sign and a lap counter at a racetrack.", - "id": 20520 - }, - { - "image_path": "/content/drive/MyDrive/combined/25c1a61aee4f7440.jpg", - "response": "A large building with a sign in front of it that says \"Malteurop\". The building has a tall smokestack coming out of it. There is snow on the ground and the sky is clear.", - "id": 20521 - }, - { - "image_path": "/content/drive/MyDrive/combined/220b1fd1942bc0f3.jpg", - "response": "A large billboard for Solids is shown on a building.", - "id": 20522 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d18a0d7c7f06077.jpg", - "response": "A billboard on the side of a building with a man wearing glasses and a tie on it.", - "id": 20523 - }, - { - "image_path": "/content/drive/MyDrive/combined/15dc1529d96cd95e.jpg", - "response": "a burger king sign with a blue sky in the background", - "id": 20524 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ac230714da4c512.jpg", - "response": "A billboard with a man's face on it and the words \"Haal Het WK naar Belgi\u00eb en Nederland\" written on it.", - "id": 20525 - }, - { - "image_path": "/content/drive/MyDrive/combined/1ada6a97427ce54b.jpg", - "response": "A billboard that reads \"Sex Happens\" is displayed on a city street.", - "id": 20526 - }, - { - "image_path": "/content/drive/MyDrive/combined/14b934a7021b311a.jpg", - "response": "A billboard for the show \"Puppetry of the Penis\" is displayed on a city street.", - "id": 20527 - }, - { - "image_path": "/content/drive/MyDrive/combined/155de8909df0f3f3.jpg", - "response": "A billboard featuring a man and the words \"Learning to become an IT specialist from the inside\" is attached to a brick building.", - "id": 20528 - }, - { - "image_path": "/content/drive/MyDrive/combined/26dd73954c1d638b.jpg", - "response": "A billboard for a dodge van with the tagline \"The next big thing\"", - "id": 20529 - }, - { - "image_path": "/content/drive/MyDrive/combined/1b8bf6437a221a10.jpg", - "response": "A large sign that says \"nothing held back\" on it.", - "id": 20530 - }, - { - "image_path": "/content/drive/MyDrive/combined/15a3fd584c992981.jpg", - "response": "A billboard with a woman holding a Milka chocolate bar.", - "id": 20531 - }, - { - "image_path": "/content/drive/MyDrive/combined/1897e9c0da71a65b.jpg", - "response": "A billboard for Ask.com with a large green square underneath the number 411.", - "id": 20532 - }, - { - "image_path": "/content/drive/MyDrive/combined/1c49203f56e59476.jpg", - "response": "A building with many posters on it.", - "id": 20533 - }, - { - "image_path": "/content/drive/MyDrive/combined/19887420a4d9d1c1.jpg", - "response": "A billboard with a picture of a woman and the words \"sensation\" on it.", - "id": 20534 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c75e2f02f4cdb1.jpg", - "response": "A billboard for the Yucca Mountain Travel Center.", - "id": 20535 - }, - { - "image_path": "/content/drive/MyDrive/combined/219cd50efd600e86.jpg", - "response": "A billboard featuring a man holding a stop sign is displayed on a street.", - "id": 20536 - }, - { - "image_path": "/content/drive/MyDrive/combined/20a3a8cd5733db8c.jpg", - "response": "A bus stop sign for Station Road Horsforth.", - "id": 20537 - }, - { - "image_path": "/content/drive/MyDrive/combined/21c4b806d7e84b9c.jpg", - "response": "A billboard with a woman's face on it that says \"Don't Live with Leaking\" and has a phone number below it.", - "id": 20538 - }, - { - "image_path": "/content/drive/MyDrive/combined/203b84bbd303095c.jpg", - "response": "A billboard on a city street railing against a proposed cell phone law.", - "id": 20539 - }, - { - "image_path": "/content/drive/MyDrive/combined/171ee99a679d86b6.jpg", - "response": "A welcome to Nevada sign with a picture of a cowboy on it.", - "id": 20540 - }, - { - "image_path": "/content/drive/MyDrive/combined/1d02cf23241ec176.jpg", - "response": "A billboard with a man and a child on it.", - "id": 20541 - }, - { - "image_path": "/content/drive/MyDrive/combined/1402385f3e4c93a1.jpg", - "response": "A large purple and white sign that says \"Welcome to Kensington regeneration zone\" in white lettering.", - "id": 20542 - }, - { - "image_path": "/content/drive/MyDrive/combined/1719992025be47f8.jpg", - "response": "A large billboard for Walker Riverside is shown in a grassy area. The billboard features two men in yellow vests and reads \"building a brighter future together.\" There is also a bird flying in the sky.", - "id": 20543 - }, - { - "image_path": "/content/drive/MyDrive/combined/2d0831d11b93e886.jpg", - "response": "A sign for a pizza place that is advertising a promotion for free pizza boxes with every pizza and free bottles of wine on Wednesday.", - "id": 20544 - }, - { - "image_path": "/content/drive/MyDrive/combined/2ae2114a4a2f116b.jpg", - "response": "A large billboard for the clothing brand Guess is displayed on a building. The billboard features a woman holding a purse and the word \"GUESS\" is displayed across the billboard. There are trees in the background and multiple traffic lights in the scene.", - "id": 20545 - }, - { - "image_path": "/content/drive/MyDrive/combined/257cc87b684d309e.jpg", - "response": "A billboard welcoming people to Nainativu.", - "id": 20546 - }, - { - "image_path": "/content/drive/MyDrive/combined/26bf9145926a0c10.jpg", - "response": "A large red and white Paraxe Constructions sign.", - "id": 20547 - }, - { - "image_path": "/content/drive/MyDrive/combined/2b882191ba43dda9.jpg", - "response": "A large blue sign with white lettering advertising the European Commission's Open Access Week event in Greece.", - "id": 20548 - }, - { - "image_path": "/content/drive/MyDrive/combined/20fe4395c9a8345f.jpg", - "response": "A billboard for a weight loss program with a woman in a blue shirt standing in front of a large white letter O.", - "id": 20549 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ca9300660ac973.jpg", - "response": "A sign that says the word love on it.", - "id": 20550 - }, - { - "image_path": "/content/drive/MyDrive/combined/33f91560658d3543.jpg", - "response": "A large can of Spam is on display, with the words \"Free Samples!\" on the side. The can is on a pier, and there are two people standing nearby. The sky is blue with some clouds.", - "id": 20551 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d034e2320ff04a0.jpg", - "response": "A billboard featuring a man's face with the words \"everybody's great when they're half-dead\" written below it. The billboard is located on a busy street with multiple cars and street lights in the vicinity.", - "id": 20552 - }, - { - "image_path": "/content/drive/MyDrive/combined/2f2db91dfa42b52f.jpg", - "response": "A car is parked in front of a building with a blue roof.", - "id": 20553 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ea1a36bb10c3f3c.jpg", - "response": "A billboard for Nathan's hot dog eating contest in Coney Island.", - "id": 20554 - }, - { - "image_path": "/content/drive/MyDrive/combined/516a7a5d2ddd5bdd.jpg", - "response": "A sign that says \"good to be back home\" is displayed on a wall.", - "id": 20555 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d4dbd12c6ae8fc7.jpg", - "response": "A large white sign with blue trim that says \"John F. Kennedy Space Center Visitor Complex\" in black and red lettering.", - "id": 20556 - }, - { - "image_path": "/content/drive/MyDrive/combined/378f7dd30e2c0965.jpg", - "response": "A large Yahoo billboard is seen from a car driving by. The billboard is purple and yellow and is advertising Yahoo's green campaign.", - "id": 20557 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dc9aedc911a7dbf.jpg", - "response": "A large billboard for The Fran Haasch Law Group Injury Law is displayed above a street.", - "id": 20558 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d5948ff4bc0278b.jpg", - "response": "A large billboard for Google Chrome is lit up on the side of a building.", - "id": 20559 - }, - { - "image_path": "/content/drive/MyDrive/combined/4659244589e53727.jpg", - "response": "A large billboard featuring a picture of President John Evans Atta Mills and the words \"You served our nation well\" is displayed above a large crowd of people. The event is taking place in front of a building with a large archway.", - "id": 20560 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c2dc74084e22304.jpg", - "response": "a man walking on the street(705,649),(775,867)", - "id": 20561 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e7511e5a8a0450a.jpg", - "response": "A large sign in the snow for the Airport Business Centre in Plymouth.", - "id": 20562 - }, - { - "image_path": "/content/drive/MyDrive/combined/37f5d46497564d83.jpg", - "response": "A stadium with a large screen that says \"Thank you for joining us for tonight's game!\" and also says \"Please stay in your seats for Daddy Yankee in concert just moments away!\"", - "id": 20563 - }, - { - "image_path": "/content/drive/MyDrive/combined/3732de0dc6cfd51c.jpg", - "response": "A billboard for the Government of Dubai.", - "id": 20564 - }, - { - "image_path": "/content/drive/MyDrive/combined/3e71a2cefdee4b11.jpg", - "response": "A yellow and green restaurant called Bright Pearl.", - "id": 20565 - }, - { - "image_path": "/content/drive/MyDrive/combined/463340663b94290b.jpg", - "response": "The image shows a large scoreboard at a stadium. The score at the time the photo was taken was 37 to 10. The photo is taken during the day and there are several people visible in the background.", - "id": 20566 - }, - { - "image_path": "/content/drive/MyDrive/combined/32cf67eb2cbe8d66.jpg", - "response": "A Duchess sign is shown with a drive thru sign underneath it.", - "id": 20567 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c858f86738a72fd.jpg", - "response": "A large billboard for Eastlands is shown.", - "id": 20568 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c916adba93611ad.jpg", - "response": "A billboard for Chick-fil-A with a cow standing in front of it.", - "id": 20569 - }, - { - "image_path": "/content/drive/MyDrive/combined/47640ae412560b78.jpg", - "response": "A future home of Boys and Girls Club sign is in front of a grassy field. The sky is blue and there are no clouds. In the distance, there is a white building and a few cars. There are also some lights on a pole in the distance.", - "id": 20570 - }, - { - "image_path": "/content/drive/MyDrive/combined/333b1da99a322e5e.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 20571 - }, - { - "image_path": "/content/drive/MyDrive/combined/46d16bea83585fab.jpg", - "response": "a banner hanging from a light pole that says A New Vision for the Future.", - "id": 20572 - }, - { - "image_path": "/content/drive/MyDrive/combined/2e5869ea9e5d4667.jpg", - "response": "A billboard with a political message about stopping Obama.", - "id": 20573 - }, - { - "image_path": "/content/drive/MyDrive/combined/30afb7e77d68e4c7.jpg", - "response": "A sign for Radiopaging above a map of a train system.", - "id": 20574 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ffc99190e5dc1ca.jpg", - "response": "A large Yahoo billboard with a neon sign on it.", - "id": 20575 - }, - { - "image_path": "/content/drive/MyDrive/combined/4f2c777fcc7c09f8.jpg", - "response": "A large sign for Rural King Ohio stands in a parking lot.", - "id": 20576 - }, - { - "image_path": "/content/drive/MyDrive/combined/3b15a6e03ad6b488.jpg", - "response": "A large billboard for 102FM radio is on the side of a building.", - "id": 20577 - }, - { - "image_path": "/content/drive/MyDrive/combined/4dd20bd8672d18cb.jpg", - "response": "A billboard with a picture of a roll of toilet paper on it.", - "id": 20578 - }, - { - "image_path": "/content/drive/MyDrive/combined/46e13fde121122c5.jpg", - "response": "The image shows the exterior of a building with a large glass wall. The building has a sign on it that reads \"ARHAUS\" in red letters. The letters are slightly askew, and below them is the word \"THE LOFT\". The last part of the sign reads \"CLEARANCE CENTER\". The building has a glass front, and the letters are backed by a reflective surface. The sky is blue, and there are no other visible features in the image.", - "id": 20579 - }, - { - "image_path": "/content/drive/MyDrive/combined/44b1131861cb4b59.jpg", - "response": "A large sign for Zoomtown U.S.A. is shown in front of a clear blue sky.", - "id": 20580 - }, - { - "image_path": "/content/drive/MyDrive/combined/354c6a77fc8a5d3f.jpg", - "response": "A car is driving down the street near a casino sign.", - "id": 20581 - }, - { - "image_path": "/content/drive/MyDrive/combined/431967a54cb13eea.jpg", - "response": "A large lit up billboard in the middle of a city.", - "id": 20582 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe7559a6c70ed89.jpg", - "response": "A green highway sign pointing to Mexico and San Luis and San Fe.", - "id": 20583 - }, - { - "image_path": "/content/drive/MyDrive/combined/322f6f4d72f39ae9.jpg", - "response": "A sign for the Villa Capri Motel with a red dress and white shoes on it.", - "id": 20584 - }, - { - "image_path": "/content/drive/MyDrive/combined/3f7cf07bb82d69b8.jpg", - "response": "A large red awning that says Abracadabra on it.", - "id": 20585 - }, - { - "image_path": "/content/drive/MyDrive/combined/42603676796d1feb.jpg", - "response": "A billboard for a cell phone company called Metro PCS.", - "id": 20586 - }, - { - "image_path": "/content/drive/MyDrive/combined/453e99714f49e674.jpg", - "response": "A red sign that says burrbar Mexican kitchen.", - "id": 20587 - }, - { - "image_path": "/content/drive/MyDrive/combined/346a45b6ed219036.jpg", - "response": "a billboard with the word Joel-Fu on it", - "id": 20588 - }, - { - "image_path": "/content/drive/MyDrive/combined/4120e28aedbd9fba.jpg", - "response": "A large sign for a food stand called Wraps and Baps.", - "id": 20589 - }, - { - "image_path": "/content/drive/MyDrive/combined/3399f058807daee6.jpg", - "response": "The image features a busy street with many cars parked and driving down the road. There is a large billboard on top of a building, advertising burgers. Several other signs are visible in the scene, advertising various businesses and services. The street is filled with traffic, including cars and a truck.", - "id": 20590 - }, - { - "image_path": "/content/drive/MyDrive/combined/3995637717e73e37.jpg", - "response": "A billboard with a picture of a lake and the words \"This Summer Choose to Wear It\" on it.", - "id": 20591 - }, - { - "image_path": "/content/drive/MyDrive/combined/4690b992eb3ea2b7.jpg", - "response": "A large billboard on top of a building with various colorful graffiti on it.", - "id": 20592 - }, - { - "image_path": "/content/drive/MyDrive/combined/50ed8fb1a7a4b75b.jpg", - "response": "A sign outside of a McDonald's restaurant that says \"Now Hiring Service\" on it.", - "id": 20593 - }, - { - "image_path": "/content/drive/MyDrive/combined/4c7d5ad2ba64f51d.jpg", - "response": "a large red and white traffic sign with directions to different cities on it", - "id": 20594 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d12c26483ddad12.jpg", - "response": "A large billboard for Tanger Outlets sits on a pole.", - "id": 20595 - }, - { - "image_path": "/content/drive/MyDrive/combined/4fc752146d5f5b3a.jpg", - "response": "a banner with the word drupalcon on it", - "id": 20596 - }, - { - "image_path": "/content/drive/MyDrive/combined/4ed821a3a8b08b4d.jpg", - "response": "A large blue and red sign welcoming people to Utah.", - "id": 20597 - }, - { - "image_path": "/content/drive/MyDrive/combined/3ca2c69b9503b32d.jpg", - "response": "A Calvin Klein billboard featuring a man and a woman on it.", - "id": 20598 - }, - { - "image_path": "/content/drive/MyDrive/combined/45914a5e6f5a9e42.jpg", - "response": "A freeway over pass with a sign that says \"TACOMA PORTLAND\" and other signs for various exits.", - "id": 20599 - }, - { - "image_path": "/content/drive/MyDrive/combined/4d85e3cd420e2f57.jpg", - "response": "A billboard for Tom and Jerry's with a fish on it.", - "id": 20600 - }, - { - "image_path": "/content/drive/MyDrive/combined/4e919a4e54e7fe95.jpg", - "response": "A large sign painted on the side of a building for Shell Motor Spirit.", - "id": 20601 - }, - { - "image_path": "/content/drive/MyDrive/combined/3bd571796c589e2b.jpg", - "response": "A billboard for Dog Janitor is seen in front of a small motel. The billboard features a Dalmatian and says \"No scoop the poop\". There is a speed limit sign that reads 45 and a for sale sign in front of the motel. There is also a car parked in front of the motel and a flag flying in the distance.", - "id": 20602 - }, - { - "image_path": "/content/drive/MyDrive/combined/516defad3c380520.jpg", - "response": "A empty race track with a sign that says \"Fahren Sie zur H\u00f6lle\" in the background.", - "id": 20603 - }, - { - "image_path": "/content/drive/MyDrive/combined/415ca82f729b7116.jpg", - "response": "A billboard for King Stahlman Bail Bonds features a picture of a man in a suit and a crown.", - "id": 20604 - }, - { - "image_path": "/content/drive/MyDrive/combined/2fe6e3a4b7078357.jpg", - "response": "A blue and white sign for the town of Failsworth.", - "id": 20605 - }, - { - "image_path": "/content/drive/MyDrive/combined/479135e81980f0f8.jpg", - "response": "A movie theater with a marquee that says \"Get Animated\" is shown.", - "id": 20606 - }, - { - "image_path": "/content/drive/MyDrive/combined/4860400532c05b7f.jpg", - "response": "A large billboard for fireworks advertising that they are open year round.", - "id": 20607 - }, - { - "image_path": "/content/drive/MyDrive/combined/46c86f4c3eb0945b.jpg", - "response": "A bus stop sign with the bus stop names on it.", - "id": 20608 - }, - { - "image_path": "/content/drive/MyDrive/combined/49740b3a8dd731a6.jpg", - "response": "A billboard that says \"Invent\" on it.", - "id": 20609 - }, - { - "image_path": "/content/drive/MyDrive/combined/3d52d8eeb7d04bc0.jpg", - "response": "A large billboard for Mini cars on the side of a building.", - "id": 20610 - }, - { - "image_path": "/content/drive/MyDrive/combined/40d7a48aad57dd36.jpg", - "response": "A sign that is advertising the movies that are playing at the theater.", - "id": 20611 - }, - { - "image_path": "/content/drive/MyDrive/combined/4816ecfe738eb35e.jpg", - "response": "A large billboard for the NOMA district in Manchester.", - "id": 20612 - }, - { - "image_path": "/content/drive/MyDrive/combined/5482d668eb955708.jpg", - "response": "A large red and blue sign for Sahara Apartments.", - "id": 20613 - }, - { - "image_path": "/content/drive/MyDrive/combined/516faf5bb4aab258.jpg", - "response": "A large white and blue sign for Big Al's Pizza and Subs.", - "id": 20614 - }, - { - "image_path": "/content/drive/MyDrive/combined/53b23a5b81600a08.jpg", - "response": "A city street at night with many lit up signs and advertisements.", - "id": 20615 - }, - { - "image_path": "/content/drive/MyDrive/combined/51d4ad060d185f3c.jpg", - "response": "A billboard with a picture of a music note on it advertising an annual music festival.", - "id": 20616 - }, - { - "image_path": "/content/drive/MyDrive/combined/544856913f217938.jpg", - "response": "A man sitting at a table in front of a projector screen with a picture of a train on it.", - "id": 20617 - }, - { - "image_path": "/content/drive/MyDrive/combined/53ea41f3ea6a2c4c.jpg", - "response": "A large billboard for Guinness is on the side of a building.", - "id": 20618 - }, - { - "image_path": "/content/drive/MyDrive/combined/547706e344e5e2e9.jpg", - "response": "A man walking under a sign that says Fraser Colorado.", - "id": 20619 - }, - { - "image_path": "/content/drive/MyDrive/combined/db201f335e0f6ac2.jpg", - "response": "A Burger King sign is shown in a parking lot. The sign is red, white, and yellow and features the BK logo. The sign also has a drive-thru sign. There are trees in the background and a car is parked in the lot.", - "id": 20620 - }, - { - "image_path": "/content/drive/MyDrive/combined/f9d9f9cb1c610041.jpg", - "response": "A large sign for the Phoenix Brick Yard points to the entrance.", - "id": 20621 - }, - { - "image_path": "/content/drive/MyDrive/combined/08686f42efe83cd0.jpg", - "response": "A stack of books including \"Medical Physiology\" and \"Anatomy Coloring Book\" on a table.", - "id": 20622 - }, - { - "image_path": "/content/drive/MyDrive/combined/0885ac9668fa595f.jpg", - "response": "In the image there is a person holding a red notebook in front of a book shelf. The notebook is A6 size and made of leather. It has a yellow price tag on it. The person is holding the notebook in front of a book shelf with many different colored books on it.", - "id": 20623 - }, - { - "image_path": "/content/drive/MyDrive/combined/084f4961a6f026eb.jpg", - "response": "A book is open to the page 152. The book is open to the chapter called The Card. The text is in black ink and is printed in small font. The book is held open by a person's hand.", - "id": 20624 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b746d971c813e1.jpg", - "response": "A book with the word Toyota Engine on the top.", - "id": 20625 - }, - { - "image_path": "/content/drive/MyDrive/combined/078da4d6e097e876.jpg", - "response": "A collage of three pictures of a book in different positions. The book is open and showing pages with text and illustrations. The text is in an Asian language.", - "id": 20626 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b758f761e40933.jpg", - "response": "A book with a red cover, the title is \"Angeli E Demoni\" by Dan Brown. The author is also mentioned as Dan Brown. The book is set in white and black typeface. The cover features two hands reaching for each other against a red background.", - "id": 20627 - }, - { - "image_path": "/content/drive/MyDrive/combined/0787f5c493031226.jpg", - "response": "A box with a blue and white label that says Rubbermaid on it.", - "id": 20628 - }, - { - "image_path": "/content/drive/MyDrive/combined/0876802af9ca4f53.jpg", - "response": "A VHS tape with a cartoon character on the cover.", - "id": 20629 - }, - { - "image_path": "/content/drive/MyDrive/combined/07b9a171152674dc.jpg", - "response": "A bookshelf in a library with a sign pointing to the left for 1A East and to the right for 1A West.", - "id": 20630 - }, - { - "image_path": "/content/drive/MyDrive/combined/083f7a4e2ac95317.jpg", - "response": "A newspaper article about Jimmy Savile abusing 22 pupils at surrey girls school.", - "id": 20631 - }, - { - "image_path": "/content/drive/MyDrive/combined/0867d093240389ef.jpg", - "response": "A bookshelf with many books on it, with the book Calculus standing out.", - "id": 20632 - }, - { - "image_path": "/content/drive/MyDrive/combined/07c44727285d8060.jpg", - "response": "A book with the pages folded into the shape of a heart.", - "id": 20633 - }, - { - "image_path": "/content/drive/MyDrive/combined/078893b8d2425e76.jpg", - "response": "An open book on a table with the contents page showing.", - "id": 20634 - }, - { - "image_path": "/content/drive/MyDrive/combined/08a4d6a08a8fc843.jpg", - "response": "A book named Gilbert Robin Hood is on top of a pile of books. The book is green and white.", - "id": 20635 - }, - { - "image_path": "/content/drive/MyDrive/combined/07f39c661eacc4d9.jpg", - "response": "A set of chocolate bars from the brand \"Francois Pralus\"", - "id": 20636 - }, - { - "image_path": "/content/drive/MyDrive/combined/08b850040f18ae78.jpg", - "response": "A bottle of Remy Martin next to its box, both on a counter.", - "id": 20637 - }, - { - "image_path": "/content/drive/MyDrive/combined/0805f13c0f2e4b59.jpg", - "response": "A wooden shelf filled with many different versions of the game Catan.", - "id": 20638 - }, - { - "image_path": "/content/drive/MyDrive/combined/0869ad20d3230712.jpg", - "response": "A store display case filled with various types of milk.", - "id": 20639 - }, - { - "image_path": "/content/drive/MyDrive/combined/0842ae0836e19b20.jpg", - "response": "A close up of a row of books on a bookshelf. The books are on a white background and include authors such as Richard Dawkins, Ayn Rand, and Byron Donald.", - "id": 20640 - }, - { - "image_path": "/content/drive/MyDrive/combined/07cf9d2e29209331.jpg", - "response": "A stack of black Tele Vue boxes are on a table. The boxes are labeled with Tele Vue logo and Nagler Type 5 26mm.", - "id": 20641 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a87be85601d6fb5.jpg", - "response": "A stack of books with the title \"The Business Design Summit\" printed on the cover.", - "id": 20642 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b61823d844889d6.jpg", - "response": "A bottle of Haand Bryggeriet beer with a bear on the label.", - "id": 20643 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d62ff9db9a73ff9.jpg", - "response": "A book cover for the Sisterhood of Dune series.", - "id": 20644 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ed50b83d3bb28f3.jpg", - "response": "A red box with a glass front that holds a variety of books.", - "id": 20645 - }, - { - "image_path": "/content/drive/MyDrive/combined/0acfc1584ee92181.jpg", - "response": "a book with a miniature figure of a man standing on top of it", - "id": 20646 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c7f5cfb4bce9843.jpg", - "response": "A stack of 20 books on a table.", - "id": 20647 - }, - { - "image_path": "/content/drive/MyDrive/combined/097096a4f4d3b161.jpg", - "response": "an open book with the word charles on it", - "id": 20648 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c9544276c62e897.jpg", - "response": "A book cover with a black and white illustration of a hand holding a small human figure.", - "id": 20649 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e72faf4ac2e2c1e.jpg", - "response": "The Complete Tales of Henry James in twelve volumes edited with introduction by Leon Edel", - "id": 20650 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9a4f68a359ee57.jpg", - "response": "A collage of images featuring the book DIY Fashionista by Lauren Galloway. The book is white with pink and black text. There are multiple images of the book open to different pages. There is also a cup of coffee in one of the images.", - "id": 20651 - }, - { - "image_path": "/content/drive/MyDrive/combined/0da02dc2c7f07209.jpg", - "response": "A yellow crate is holding a large amount of records. Some of the records are in stacks and some are on top of each other. The crate is on a wooden floor.", - "id": 20652 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e5c3c79a10bfbf5.jpg", - "response": "An open book with a black and white illustration of people on a boat.", - "id": 20653 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bbd8467e4a69626.jpg", - "response": "A bookshelf with a note attached to it.", - "id": 20654 - }, - { - "image_path": "/content/drive/MyDrive/combined/0995a1cba85060cd.jpg", - "response": "A bookshelf filled with books on various countries.", - "id": 20655 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ca13421a8624fc7.jpg", - "response": "A book called Trout Fishing in Lewis is open on a map.", - "id": 20656 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c513444f43bcfc3.jpg", - "response": "A book on a wooden table with the title The Architecture of Happiness by Alain de Botton.", - "id": 20657 - }, - { - "image_path": "/content/drive/MyDrive/combined/096618636a677ed4.jpg", - "response": "A person holding a book in their lap with a clear holder attached to the top of the book.", - "id": 20658 - }, - { - "image_path": "/content/drive/MyDrive/combined/091027874201d679.jpg", - "response": "A display of \"Things Fall Apart\" books by Chinua Achebe, with a few broken spines and bent covers.", - "id": 20659 - }, - { - "image_path": "/content/drive/MyDrive/combined/08c13662aa634579.jpg", - "response": "A bookshelf full of books with different colored spines.", - "id": 20660 - }, - { - "image_path": "/content/drive/MyDrive/combined/09374ceb971c63c6.jpg", - "response": "A book cover with a red background and black text. The title is \"Souverains et Notabilites d'Indochine\" and there is a blue and white logo in the bottom right corner. The book is published by the Government General de l'Indochine.", - "id": 20661 - }, - { - "image_path": "/content/drive/MyDrive/combined/08e6091538ee52b7.jpg", - "response": "a person is holding a book in their hands. the book is open to a page about russia. the person is wearing a brown shirt. there is a black bag on the left side of the person. a blue bag is behind the book.", - "id": 20662 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d8fe3efcd14ab81.jpg", - "response": "A shelf filled with books and CDs, including a box set of Wanda Jackson and a collection of Jimmy Buffett CDs.", - "id": 20663 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a7f421279438cbe.jpg", - "response": "a man standing at a podium in front of a book shelf", - "id": 20664 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a3f9715e6677a08.jpg", - "response": "A book is open to a page with a picture of a castle and a tank.", - "id": 20665 - }, - { - "image_path": "/content/drive/MyDrive/combined/0db061358de649ff.jpg", - "response": "A book with the title \"Djing for Dummies\" is on display on a wooden shelf. The book is yellow and black and is sitting on a wooden stand.", - "id": 20666 - }, - { - "image_path": "/content/drive/MyDrive/combined/08cc0f03f966fcb4.jpg", - "response": "A bookshelf with many books on it.", - "id": 20667 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e89c223cd8a92ac.jpg", - "response": "A book cover for Children of Tomorrow by A.E. van Vogt.", - "id": 20668 - }, - { - "image_path": "/content/drive/MyDrive/combined/0b6268699f9954de.jpg", - "response": "An open book on a table with a picture of coffee brownies in it.", - "id": 20669 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a544e62c326ef96.jpg", - "response": "The image is an old book page with text and two diagrams. The first diagram is titled \"Section on the Burn of Calda\" and it is a line drawing of a hill with a dotted line showing the burn running through it. The second diagram is titled \"Section on the Burn of Calda\" and it is a scale drawing of a hill with a burn running through it. The text on the page is about Callaig Burn and the geology of the area.", - "id": 20670 - }, - { - "image_path": "/content/drive/MyDrive/combined/093d7165e52f4d83.jpg", - "response": "A woman with a black shirt and a black and silver purse is standing in front of a bookshelf. She is smiling and looking away from the camera. There are many books on the shelf, some are propped up while others are standing straight.", - "id": 20671 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c2b594e8d66de4c.jpg", - "response": "A green book with black writing on it is sitting on a wooden table.", - "id": 20672 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a12a55a7f69f00d.jpg", - "response": "A toy train is on a track on a table.", - "id": 20673 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ea09a9493868546.jpg", - "response": "A book and a laptop are sitting on a wooden table. The book is open and has a red cover. The laptop is open and has a black keyboard. There is also a chair in the background.", - "id": 20674 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3f732f8eb6504e.jpg", - "response": "A car advertisement for a Ford Futura. The car is parked in a grassy field with a sunset in the background. The car is gold and is parked on the grass.", - "id": 20675 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d6f54c1a331d990.jpg", - "response": "A blue box with the words \"Make: technology on your time\" on the top. The words \"The First Year\" are on the box.", - "id": 20676 - }, - { - "image_path": "/content/drive/MyDrive/combined/0eb526fbc8b3e8ca.jpg", - "response": "A bookshelf with several books on it, including a copy of A Separate Peace by John Knowles.", - "id": 20677 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a6c78d0ab7744f7.jpg", - "response": "A blue book cover with the title \"Orlando Furioso\" in white lettering.", - "id": 20678 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cac78935405657e.jpg", - "response": "a book with the word etiquette on it", - "id": 20679 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ab462028eb0810e.jpg", - "response": "A bookshelf filled with books and magazines.", - "id": 20680 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e8674442f1b0d7e.jpg", - "response": "A book is on a wooden table. The book is a History of Middle Earth Index by J.R.R. Tolkien and Christopher Tolkien. The book is on a black stand.", - "id": 20681 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bde84b08ea046e9.jpg", - "response": "An old book with the title \"The Arab or Weller Book\" written on the cover.", - "id": 20682 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ab36c4ff6f7fbf8.jpg", - "response": "An open book is sitting on a metal book stand. The book is open to a page with a lot of text on it. The book is on a white table with a white curtain behind it.", - "id": 20683 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c92e283db6ae0ca.jpg", - "response": "The image is a open book with two pages.", - "id": 20684 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d933c39a36f8b67.jpg", - "response": "A book written by Jane and Jeremy Strode.", - "id": 20685 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d3dde7efae13592.jpg", - "response": "A package of capperi al sale marino sits on a marble counter.", - "id": 20686 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a760d8855369167.jpg", - "response": "A record album named Bane is on a wooden table.", - "id": 20687 - }, - { - "image_path": "/content/drive/MyDrive/combined/0c361d81cb133966.jpg", - "response": "A collection of DVD cases for the TV show South Park are lined up on a shelf. The cases are for each individual season and are in different colors.", - "id": 20688 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cfe425b115d8c39.jpg", - "response": "A stack of Terry Pratchett books.", - "id": 20689 - }, - { - "image_path": "/content/drive/MyDrive/combined/0bf6704ae1b00a65.jpg", - "response": "a book cover with a woman in a red dress sitting on the ground while a man in blue holds her up", - "id": 20690 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e7c1d66c7c4433a.jpg", - "response": "The image shows a shelf full of books. The books are arranged in two rows, and some of them are leaning against each other. The shelf is white and has a metal strip along the top. The books on the shelf are different colors and have different titles. Some of the titles include \"The Big Switch,\" \"Groundswell,\" and \"Organizational Behavior.\"", - "id": 20691 - }, - { - "image_path": "/content/drive/MyDrive/combined/0a4c96f56882bffd.jpg", - "response": "The image is a magazine cover with a woman wearing a hijab. The word \"Hijab\" is displayed in large font across the top of the cover. The woman is holding her hands in a praying position with the sun setting in the background. The cover is for an article about the freedom of expression.", - "id": 20692 - }, - { - "image_path": "/content/drive/MyDrive/combined/0e5fee6f27d73694.jpg", - "response": "a page from a comic strip with a bunch of different panels on it", - "id": 20693 - }, - { - "image_path": "/content/drive/MyDrive/combined/0abddd969235d977.jpg", - "response": "A book with a brown cover and the title \"Clytus\" on the top.", - "id": 20694 - }, - { - "image_path": "/content/drive/MyDrive/combined/09562eaa8ca00eaf.jpg", - "response": "An open book with the words \"Give every book a chance\" spelled out with letter magnets.", - "id": 20695 - }, - { - "image_path": "/content/drive/MyDrive/combined/0cd7e3f2739a9329.jpg", - "response": "A collection of CDs, including music by artists such as Soundgarden, Alien, and Electric Chair.", - "id": 20696 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ddcf3da0051dc54.jpg", - "response": "A row of books on a shelf.", - "id": 20697 - }, - { - "image_path": "/content/drive/MyDrive/combined/0ca19d604ede0228.jpg", - "response": "A desk with multiple stacks of papers and binders on it.", - "id": 20698 - }, - { - "image_path": "/content/drive/MyDrive/combined/0aaf4bf5749009f2.jpg", - "response": "An old trunk is open and is filled with a collection of music sheets. The trunk is covered with a tapestry and has a handle on the right side. There are two books tied with a string and a small wooden tag. The book on the left has a picture of a man on the left and a note that says \"Grandpa's sheet music\". The book on the right has a note that says \"Piano Book\".", - "id": 20699 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d9ce4258af6514d.jpg", - "response": "A collection of Spanish language newspapers are displayed on a table.", - "id": 20700 - }, - { - "image_path": "/content/drive/MyDrive/combined/08d1740d3b76e126.jpg", - "response": "A man wearing a suit and tie is sitting at a table with several books in front of him. The books are on the table and also on a surface behind the man. The man is wearing glasses and looking at the books.", - "id": 20701 - }, - { - "image_path": "/content/drive/MyDrive/combined/0d20fea27c1c2666.jpg", - "response": "A candle is lit on a stack of books. The books are piled on a wooden table. The candle is in a clear glass jar filled with rocks. The candle is on a wooden shelf.", - "id": 20702 - }, - { - "image_path": "/content/drive/MyDrive/combined/140b8645b5e41a8a.jpg", - "response": "A book with a red cover and black lettering. The title is The Fifth Column and the First Forty-Nine Stories by Ernest Hemingway. The book is bound in red cloth with a gold spine. The title page is signed by the author.", - "id": 20703 - }, - { - "image_path": "/content/drive/MyDrive/combined/11fe7c3aed622b22.jpg", - "response": "A collection of books on chess, some of which are by Garry Kasparov, are stacked on a shelf.", - "id": 20704 - }, - { - "image_path": "/content/drive/MyDrive/combined/1401c66f6eeb8399.jpg", - "response": "An open book with the title \"POSTSCRIPT\" on the top of a page. The book is open to a page with text on it.", - "id": 20705 - }, - { - "image_path": "/content/drive/MyDrive/combined/0f51892759aacdbe.jpg", - "response": "The image shows a close up of an open book and a laptop computer. The book is open to a page with printed text on it, and the laptop is visible in the background on the right side of the image. The book and laptop are both on a surface, but the specific type of surface is not visible.", - "id": 20706 - }, - { - "image_path": "/content/drive/MyDrive/combined/10685f3225d194d7.jpg", - "response": "A book with the title When Things Fall Apart written on the cover.", - "id": 20707 - }, - { - "image_path": "/content/drive/MyDrive/combined/13c28db6f29d2fd8.jpg", - "response": "A blue book cover with the title Profit Increase in gold letters. Below the title is a chart made of green and orange bars and an arrow pointing upwards. The arrow is orange and is placed on top of a pile of dollar bills.", - "id": 20708 - }, - { - "image_path": "/content/drive/MyDrive/combined/14c6242a2cd93368.jpg", - "response": "An open book with a text on it.", - "id": 20709 - }, - { - "image_path": "/content/drive/MyDrive/combined/1421331dea758b67.jpg", - "response": "The image shows a close up of three bags of coffee beans. The bags are brown and white and feature text and images. The bag on the left is from Counter Culture Coffee and is labeled \"Elioto\" with a map of Ethiopia on the label. The bag in the middle is from Stumptown Coffee and is labeled \"Hopia\" with a map of Ethiopia on the label. The bag on the right is from Blue Bottle Coffee and is labeled \"Ethiopia\" with a map of Ethiopia on the label.", - "id": 20710 - }, - { - "image_path": "/content/drive/MyDrive/combined/109c49f7e640fcea.jpg", - "response": "A table with a red table cloth with many board games on it.", - "id": 20711 - }, - { - "image_path": "/content/drive/MyDrive/combined/13a593efe68836ec.jpg", - "response": "A book cover for The Virtue of Selfishness by Ayn Rand.", - "id": 20712 - }, - { - "image_path": "/content/drive/MyDrive/combined/1113c1f534b8dcca.jpg", - "response": "A poster for the 10th sagra del cungiolio fritto in Volterra, Italy.", - "id": 20713 - }, - { - "image_path": "/content/drive/MyDrive/combined/11f1b0a78b901b57.jpg", - "response": "An open book is laying on a table. The book is opened to the title page. The title is in French. The book is a hardcover book. The pages are white. The book is large. The table is black.", - "id": 20714 - }, - { - "image_path": "/content/drive/MyDrive/combined/111653ac7b3a1e0b.jpg", - "response": "A book cover with the title \"Being Digital\" written in white on a black background.", - "id": 20715 - }, - { - "image_path": "/content/drive/MyDrive/combined/11099682f6343ee4.jpg", - "response": "The image features a book lying open on a bed. The book is titled \"After Dark\" and has a colorful cover. The cover is described as having a rainbow sheen. The book appears to be a paperback and is open to the title page. The title page features the words \"After Dark\" written in black letters. The book is open to the title page, which means the reader has just started reading the book.", - "id": 20716 - }, - { - "image_path": "/content/drive/MyDrive/combined/116b08c22c546372.jpg", - "response": "A book shelf with books on it.", - "id": 20717 - }, - { - "image_path": "/content/drive/MyDrive/combined/112d06ee2f5e2e11.jpg", - "response": "A book opened to two pages. The first page is titled \"An authentic account and advertisement\" and the second page is a dedication to the king of great britain.", - "id": 20718 - }, - { - "image_path": "/content/drive/MyDrive/combined/114d4ffd4e74ad50.jpg", - "response": "A row of books on a bookshelf.", - "id": 20719 - }, - { - "image_path": "/content/drive/MyDrive/combined/12b08fa5fbfa3a1a.jpg", - "response": "A book from 1493, the first year printed books were produced in Germany.", - "id": 20720 - }, - { - "image_path": "/content/drive/MyDrive/combined/1100b066494f69cf.jpg", - "response": "A copy of the book \"Innocence\" by Jane Mendelsohn.", - "id": 20721 - }, - { - "image_path": "/content/drive/MyDrive/combined/11185f54f984fe20.jpg", - "response": "An open magazine with a pink page and a black page. On the black page there is a picture of a woman in a white dress.", - "id": 20722 - }, - { - "image_path": "/content/drive/MyDrive/combined/14834292ab3b6a2a.jpg", - "response": "The image is an open book with a cartoon character on the cover. The book is called \"The Cat in the Hat Comes Back\" and is written by Dr. Seuss. The cover features a cat wearing a red and white hat and holding a bag. The book is open to a page with a blackboard where the title of the book is written. The book is written for beginners.", - "id": 20723 - }, - { - "image_path": "/content/drive/MyDrive/combined/15187b59c9f66bc9.jpg", - "response": "A bulletin board with many different things posted on it.", - "id": 20724 - }, - { - "image_path": "/content/drive/MyDrive/combined/14ecc77183adb86b.jpg", - "response": "A book cover for a science fiction novel called \"Camouflage\" by Joe Haldeman. The cover features a blue background with a white cloud-like object in the center. The title is written in silver font and there is a small image of a mountain in the bottom left hand corner.", - "id": 20725 - }, - { - "image_path": "G:\\images\\combined\\-1-_png_jpg.rf.56fbd1be279af0461735d8dc2d7e357f.jpg", - "response": "A group of people standing around a control panel.", - "id": 20726 - }, - { - "image_path": "G:\\images\\combined\\-10-_png_jpg.rf.4cd77cc52ae26cabb8d19897ea53cb72.jpg", - "response": "A group of men in hard hats are standing on a boat.", - "id": 20727 - }, - { - "image_path": "G:\\images\\combined\\-100-_png_jpg.rf.398c76ab2984556f57194a1cf0a1f262.jpg", - "response": "A worker in a blue shirt and yellow hat is using a drill to fix a pipe.", - "id": 20728 - }, - { - "image_path": "G:\\images\\combined\\-1003-_png_jpg.rf.40a811e60f1b213fd091d11af90ad6e4.jpg", - "response": "A power plant with workers in hard hats and safety jackets working on equipment.", - "id": 20729 - }, - { - "image_path": "G:\\images\\combined\\-1005-_png_jpg.rf.b055801d9b1a2eb714ceb89e4b4ad588.jpg", - "response": "The image shows two workers in a red and white\u96a7\u9053. They are wearing white helmets and blue overalls. One worker is on the left, and the other is on the right. The left worker is wearing a white helmet and a blue overall with a white stripe. The right worker is wearing a white helmet and a red overall. They are looking at a white tablet with both of their hands on it. The tablet is placed on a white table in the middle of the tunnel. The tunnel has a red and white structure. The background is a white wall.", - "id": 20730 - }, - { - "image_path": "G:\\images\\combined\\-1006-_png_jpg.rf.5491519cec0079e60e2aed91c7f1cfae.jpg", - "response": "The image shows three men in hard hats and black uniforms, working together to remove a tree that has fallen on a road. They are using large sticks to lever the tree off the road. The ground is covered in a light layer of snow.", - "id": 20731 - }, - { - "image_path": "G:\\images\\combined\\-1007-_png_jpg.rf.793f1c626a6e1a537aed1d0508519209.jpg", - "response": "a group of people standing around each other", - "id": 20732 - }, - { - "image_path": "G:\\images\\combined\\-101-_png_jpg.rf.99b0e6096b81bcc2bbd7677ea705926a.jpg", - "response": "In the image there are two workers wearing hard hats and blue jumpsuits. They are standing in a factory near a large circular machine with a red hot fire coming out of it. The workers are holding hoses to try and extinguish the fire.", - "id": 20733 - }, - { - "image_path": "G:\\images\\combined\\-1012-_png_jpg.rf.7f210e57ef5776449bd8659c2314fada.jpg", - "response": " Rescuers(157,363),(584,998)(91,258),(314,739)(565,244),(967,674) work to free a trapped worker at a construction site in China", - "id": 20734 - }, - { - "image_path": "G:\\images\\combined\\-1014-_png_jpg.rf.27887b6a27910dbf6413742db8e686b0.jpg", - "response": "A group of men standing around a construction site.", - "id": 20735 - }, - { - "image_path": "G:\\images\\combined\\-1016-_png_jpg.rf.697c859fe7c052c29a2703bc99d8d4b0.jpg", - "response": "In the image there are two construction workers on a construction site. They are standing in front of a large window that shows their reflection. The workers are wearing yellow hard hats and neon green jackets. The jackets are from the same brand but have different colors. The left worker has a jacket in green-yellow and the right worker has a jacket in yellow-green. They both seem to be looking at something.", - "id": 20736 - }, - { - "image_path": "G:\\images\\combined\\-102-_png_jpg.rf.dd416f55417d015d906dcc562894aad4.jpg", - "response": "In the image, two men are standing in a field wearing green camouflage clothing and orange hard hats. They are holding a black drone between them, and the drone is equipped with a camera. In the background, there is a power line.", - "id": 20737 - }, - { - "image_path": "G:\\images\\combined\\-1022-_png_jpg.rf.f81307d5d7695fd0061ebb88c6a11ebd.jpg", - "response": "The image shows two workers suspended on a crane, with the topmost one on the left and the other one on the right. They are wearing safety harnesses. The crane has a blue cabin where the two workers are located, and a large hook in front. The background shows a blue sky and a wire mesh structure below the crane.", - "id": 20738 - }, - { - "image_path": "G:\\images\\combined\\-1023-_png_jpg.rf.af6dda7df5bc649f7d246ed19fc8a95d.jpg", - "response": "The image shows a person wearing a red helmet and coveralls, working on a red piece of equipment outdoors. The person is wearing a red helmet and coveralls, and is focused on a piece of equipment that includes many hoses and knobs. The background shows a large blue building and several other people working in the distance.", - "id": 20739 - }, - { - "image_path": "G:\\images\\combined\\-1025-_png_jpg.rf.76ca38c6a474a9229dd6a848469892a3.jpg", - "response": " A man(148,523),(516,997) in a red shirt and yellow hard hat(159,523),(318,631) is reaching for a hook with a crane.", - "id": 20740 - }, - { - "image_path": "G:\\images\\combined\\-1026-_png_jpg.rf.4636e6f26506fc807299d11d2f48a180.jpg", - "response": "A group of people standing around a construction site.", - "id": 20741 - }, - { - "image_path": "G:\\images\\combined\\-1027-_png_jpg.rf.2c9a6bf0bb6d559ef1efb7c4c641ab9b.jpg", - "response": "A group of workers are working on a construction site.", - "id": 20742 - }, - { - "image_path": "G:\\images\\combined\\-1030-_png_jpg.rf.2b5b1499985be0bdbf8307a46ea01acc.jpg", - "response": "The image shows three construction workers standing next to a yellow road roller on a construction site. The roller is located towards the left of the image and is in the process of compacting soil. The workers are all wearing safety hats and one of them is sitting on the roller. The background shows a large building with many windows in the middle and on the right. The workers are in the foreground on the left.", - "id": 20743 - }, - { - "image_path": "G:\\images\\combined\\-1036-_png_jpg.rf.4e3462332b09e139b2cbc49c957d0fb2.jpg", - "response": "A man is working on a stone step in front of a building. There is a pile of broken stone debris next to the step.", - "id": 20744 - }, - { - "image_path": "G:\\images\\combined\\-1037-_png_jpg.rf.b05711a1743220147897c8ab02e8c4f9.jpg", - "response": "A group of workers, one woman and two men, working on a bridge.", - "id": 20745 - }, - { - "image_path": "G:\\images\\combined\\-1038-_png_jpg.rf.903c21b630b5c311cdc9eddcaa5b8346.jpg", - "response": "An electrical substation with two workers in red uniforms working on it.", - "id": 20746 - }, - { - "image_path": "G:\\images\\combined\\-1039-_png_jpg.rf.6fb5c1dc3cc82737f19ab00323e6eed6.jpg", - "response": "A group of workers walking down a street.", - "id": 20747 - }, - { - "image_path": "G:\\images\\combined\\-104-_png_jpg.rf.7840a5ec45558ab1102896eebd2362c2.jpg", - "response": "A construction worker is working on a building.", - "id": 20748 - }, - { - "image_path": "G:\\images\\combined\\-1043-_png_jpg.rf.b35294a8b75b640f09ca9553c0495bdb.jpg", - "response": "a group of people standing in a field", - "id": 20749 - }, - { - "image_path": "G:\\images\\combined\\-1044-_png_jpg.rf.119add95019568601b56a946cfb55d64.jpg", - "response": "In the image, a worker is using a hammer and a drill to fix a problem in a wall. The wall has some rust on it and the worker is wearing a yellow shirt and a white helmet. He also has a pen in his pocket. Another worker is standing above him, wearing a white helmet and a yellow vest. There is a bag placed on the ground next to the workers. In the background, there is a pipe on the wall and a sign that says \"\u4e09\u5dde\u65e5\u62a5\" on the left and \"\u4e09\u660e\u65e5\u62a5\" on the right.", - "id": 20750 - }, - { - "image_path": "G:\\images\\combined\\-1045-_png_jpg.rf.f79570d964f46c63a75a78b8d17aa87d.jpg", - "response": "The image shows a group of workers in blue work clothes and rain boots standing in a waterlogged alleyway. The water is knee-deep and the walls of the alley are brown. The workers are wearing blue hats and some of them are carrying tools. The scene is set in an old Chinese residential area.", - "id": 20751 - }, - { - "image_path": "G:\\images\\combined\\-1047-_png_jpg.rf.714b5d6daa13f3ff0177aefebd8441f0.jpg", - "response": "A man and a woman wearing hard hats and safety vests are looking at a blueprint together while standing in a construction site.", - "id": 20752 - }, - { - "image_path": "G:\\images\\combined\\-1048-_png_jpg.rf.18eed5c904d1d54754245232e7515da2.jpg", - "response": "A man wearing a blue jacket and a hard hat is standing in front of a large pile of gravel. There is a conveyor belt in the background. In his hand, he is holding two red balls.", - "id": 20753 - }, - { - "image_path": "G:\\images\\combined\\-105-_png_jpg.rf.62593c891ac05865169bb4c4b25b8988.jpg", - "response": "In the image there is a man wearing a red helmet and a mask. He is working on a large piece of metal which is at least two times longer than him. He is wearing grey clothes and the background shows a construction site.", - "id": 20754 - }, - { - "image_path": "G:\\images\\combined\\-1051-_png_jpg.rf.82c78010fe8ff5ce056d22d2b76b48e6.jpg", - "response": "The image shows two men wearing hard hats and work clothes standing in front of a large circular machine. They are both holding something yellow and green in their hands. The background shows a large area of grey concrete and white sky. There is a pile of coal in the top right corner of the image and a logo for news..cn and nemc.cn are written at the bottom of the image.", - "id": 20755 - }, - { - "image_path": "G:\\images\\combined\\-1052-_png_jpg.rf.96abfcb428625687473bda04fe41a20b.jpg", - "response": "A man in a hard hat and work suit is working on a wall.", - "id": 20756 - }, - { - "image_path": "G:\\images\\combined\\-1054-_png_jpg.rf.24e5430afa761729248b87669dff0edd.jpg", - "response": "A group of workers stand on a construction site wearing hard hats and orange work suits.", - "id": 20757 - }, - { - "image_path": "G:\\images\\combined\\-1056-_png_jpg.rf.394ad2d3d2a044e08bb41cfd8610d825.jpg", - "response": "A group of people looking at blueprints on a laptop on a construction site", - "id": 20758 - }, - { - "image_path": "G:\\images\\combined\\-1058-_png_jpg.rf.baebfaee5de4f5d46ad1bb700a9cb51b.jpg", - "response": "The image shows a factory scene with several workers. One worker is in the foreground, squatting down and working on a large metal cylinder. Another worker is in the background, wearing a blue shirt and a white hat, and holding a blue stick. There are also two other workers in the background, wearing blue and green uniforms. In the foreground on the right side of the image, there is a machine with a sign that reads \"new news\".", - "id": 20759 - }, - { - "image_path": "G:\\images\\combined\\-1061-_png_jpg.rf.0dd8a8913d0c7223d2c18a7946c94a8d.jpg", - "response": "A group of men standing around in a construction area.", - "id": 20760 - }, - { - "image_path": "G:\\images\\combined\\-1063-_png_jpg.rf.1b8537575f4d6083595fd10a87d2eac6.jpg", - "response": "The image shows a group of people standing in front of a large ship. They are all wearing blue shirts and some of them are wearing yellow hard hats. One person is holding a round object in their hands. The ship is white and blue, and there is a round window on the side of it. The background is a white wall with a ship's ladder on it.", - "id": 20761 - }, - { - "image_path": "G:\\images\\combined\\-1064-_png_jpg.rf.9f5225bb2d1802e6efde89df6e477ca1.jpg", - "response": "A group of people working on a construction site.", - "id": 20762 - }, - { - "image_path": "G:\\images\\combined\\-1066-_png_jpg.rf.cf5a156514211160964a2672335f4578.jpg", - "response": "A man in a grey jumpsuit and orange hard hat is using a gun to shoot concrete into a corner of a room.", - "id": 20763 - }, - { - "image_path": "G:\\images\\combined\\-1067-_png_jpg.rf.2a90fdd7c888fb160d654063908b9f29.jpg", - "response": "The image is a three part compilation of workers on a construction site. In the first part, a worker is pouring concrete from a large cement truck into a large steel rebar frame. In the second part, the same worker is pouring concrete. In the third part, two workers are pulling a cable together.", - "id": 20764 - }, - { - "image_path": "G:\\images\\combined\\-1072-_png_jpg.rf.4c284065e3f3fd64653a47f06e99e49c.jpg", - "response": "A series of three pictures of a group of people in orange snowsuits walking in formation across a snow-covered ground", - "id": 20765 - }, - { - "image_path": "G:\\images\\combined\\-1075-_png_jpg.rf.69fba7000c894f9ac7c8dea9c7e915f4.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing hard hats and are gathered around a man who is holding a cell phone. The men are standing on top of a cement ground and there is a red ball floating in the air. The sky above the site is overcast.", - "id": 20766 - }, - { - "image_path": "G:\\images\\combined\\-1076-_png_jpg.rf.06d68acadd769c00f514892d9a2cb893.jpg", - "response": "A supervisor with an orange helmet stands in front of a group of workers wearing yellow jackets and orange helmets. They are all standing on and around train tracks.", - "id": 20767 - }, - { - "image_path": "G:\\images\\combined\\-1077-_png_jpg.rf.bd0cf4d4dfde6982856e30bf0fb8be8b.jpg", - "response": "A construction worker wearing a yellow hat and shirt, standing on a yellow ladder. The worker is holding a long yellow tool with a black head. The worker is reflected in a blue banner at the bottom of the image. The sky is a clear blue and the sun is shining. There are many steel beams in the scene, forming a grid. Some of the steel beams are long and thin, while others are shorter and thicker.", - "id": 20768 - }, - { - "image_path": "G:\\images\\combined\\-108-_png_jpg.rf.1d89d4b0961739fbfaa1e15027c88d56.jpg", - "response": "The image shows a group of people standing around a table. Most of the people are wearing blue or yellow hard hats and high visibility vests. A man in the center of the group is explaining something to a group of people wearing hard hats. Another man on the right is taking notes.", - "id": 20769 - }, - { - "image_path": "G:\\images\\combined\\-1080-_png_jpg.rf.cb5f2842f02d43b900e066defa9bbd7e.jpg", - "response": "In the image there is a man kneeling down on the floor, he is wearing a orange safety vest and a white helmet. He is holding an orange cup and sitting on a orange stool. The background shows the inside of a building under construction.", - "id": 20770 - }, - { - "image_path": "G:\\images\\combined\\-1081-_png_jpg.rf.c52beaec2fcac1c1b6c0a868fb28640c.jpg", - "response": "A worker in a red uniform and hard hat stands next to a large metal circular disc, which he is pushing with a trolley. He is on a street in an urban setting, with buildings and people in the background. There is a traffic light on the left side of the street. On the right side of the street there is a statue of a bear, which is holding a yellow bag in its mouth.", - "id": 20771 - }, - { - "image_path": "G:\\images\\combined\\-1084-_png_jpg.rf.4d624bd7eb8fe354d3f122578fa5792a.jpg", - "response": "The image shows firefighters rescuing a woman trapped under debris. The firefighters are using a metal bar to carefully lift and support the woman, who is lying on the ground. They are wearing red and yellow fire suits. In the background, there are several other people, including a man in a white shirt and a boy in a blue shirt. The scene is chaotic, with debris and rubble scattered everywhere. The sky is dark and stormy, with dark clouds and rain visible in the background.", - "id": 20772 - }, - { - "image_path": "G:\\images\\combined\\-1088-_png_jpg.rf.e8816758a206880d60c2df2ffcc11ecc.jpg", - "response": "A man in a blue hard hat and work clothes is standing on a snowy hillside, next to some power equipment. He is holding a tool in his hand and appears to be making adjustments to the equipment. The sky is overcast and it's snowing lightly. In the background, a small village is visible, covered in a light layer of snow.", - "id": 20773 - }, - { - "image_path": "G:\\images\\combined\\-1089-_png_jpg.rf.2ec11839c5d46dda5de3ba6aa5fc950d.jpg", - "response": "A group of people standing in front of a large tower with a banner that reads \" china first, the first 1000-ton self-propelled and self-erecting bridge\".", - "id": 20774 - }, - { - "image_path": "G:\\images\\combined\\-1090-_png_jpg.rf.caad7f9683a0116629c66c544334e24f.jpg", - "response": "A power line with two men working on it in the countryside.", - "id": 20775 - }, - { - "image_path": "G:\\images\\combined\\-1091-_png_jpg.rf.7f580902896bee4584feff867112bbcb.jpg", - "response": "The image depicts a male construction worker wearing a blue hat and uniform. He is in the midst of performing his duties, holding a blue helmet in his left hand and wiping sweat from his forehead with his right hand. The worker is also equipped with safety gear, including a harness and gloves, and is sitting on a yellow chair. The background features a yellow ladder and a steel beam. The worker's expression, combined with the exertion of his work, conveys a sense of both determination and\u8f9b\u82e6.", - "id": 20776 - }, - { - "image_path": "G:\\images\\combined\\-1092-_png_jpg.rf.478ebdd9a3c6a916f9d6913414adc9d5.jpg", - "response": "A group of people standing in a construction site.", - "id": 20777 - }, - { - "image_path": "G:\\images\\combined\\-1094-_png_jpg.rf.6e72ea5fd527845dbf7c7016bd45f031.jpg", - "response": "A collage of three pictures of workers inside a large tunnel.", - "id": 20778 - }, - { - "image_path": "G:\\images\\combined\\-1096-_png_jpg.rf.c9ac63fa8384fa6b963030b1aad41346.jpg", - "response": "A group of three men and a woman standing in front of a power station.", - "id": 20779 - }, - { - "image_path": "G:\\images\\combined\\-1098-_png_jpg.rf.565f2745fa103b4c1160ae4ec5d9f211.jpg", - "response": "A worker stands between steel coils at a steel market in Wuxi, Jiangsu province, China.", - "id": 20780 - }, - { - "image_path": "G:\\images\\combined\\-1099-_png_jpg.rf.510699173212acce3555714e93b231c9.jpg", - "response": "The image shows a construction site where a bridge is being built. The photo was taken in China, and the construction workers are working on the bridge.", - "id": 20781 - }, - { - "image_path": "G:\\images\\combined\\-11-_png_jpg.rf.abd90395e3263ab9772e9fd50f418894.jpg", - "response": "A Chinese mine worker is seen in a glass chamber, looking at a computer screen. The mine worker is wearing a red hat and a black jacket. The room has a lot of lights on and there are two clocks on the wall.", - "id": 20782 - }, - { - "image_path": "G:\\images\\combined\\-1100-_png_jpg.rf.853d3d9a2ab9f60b1ef13a13b3326066.jpg", - "response": "In the image, construction workers are performing first aid on an injured worker. There are several people around the injured worker, with some kneeling and others standing, all focused on assisting the worker. In the background, there is heavy construction equipment, including a large truck. The sky is blue and the sun is shining.", - "id": 20783 - }, - { - "image_path": "G:\\images\\combined\\-1102-_png_jpg.rf.90671c490824d7521f9836126b3aa82b.jpg", - "response": "A group of men standing under black umbrellas.", - "id": 20784 - }, - { - "image_path": "G:\\images\\combined\\-1104-_png_jpg.rf.41eef212ace25f36816c8d59ed6a0eef.jpg", - "response": "A group of workers are fixing a white sheet on the roof of a building. One man is lifting a broom with both his hands and standing on the roof. Another man is holding the sheet with his hand and fixing it. A third man is holding a broom. A fourth man is holding a knife. A fifth man is holding a rope. A sixth man is holding a spade.", - "id": 20785 - }, - { - "image_path": "G:\\images\\combined\\-1109-_png_jpg.rf.030d32d72c70c63ca5767ed9a727faa9.jpg", - "response": "A group of people standing in front of a large structure under construction.", - "id": 20786 - }, - { - "image_path": "G:\\images\\combined\\-111-_png_jpg.rf.60f37a0dfe8de76f258f7113b34073ce.jpg", - "response": "A man in a hard hat is working on a metal structure. The metal structure is made up of many long, thin, black metal struts that form a series of triangles. The man is standing on a platform between two walls that are made up of even more of the same metal struts.", - "id": 20787 - }, - { - "image_path": "G:\\images\\combined\\-1114-_png_jpg.rf.41e4eb4dac674819ee1b0040624d56ef.jpg", - "response": "The image shows a group of construction workers in blue overalls and hard hats, carrying a large blue object up a set of stairs. The workers are positioned in a line, with their right arms holding the object and their left arms providing support. There are five workers in the foreground, with two more visible in the background. The stairs are a bright red, and the walls of the building are a bright red and yellow.", - "id": 20788 - }, - { - "image_path": "G:\\images\\combined\\-1119-_png_jpg.rf.e48186a08e308b9d6dc22292aa41bf9d.jpg", - "response": "The image shows a construction site with several workers. There is a large crane in the background and a few men are working with it. Some of them are using tools, and one of them is holding a long stick. In the foreground, there are several pipes and what looks like a yellow framework. The ground is covered with concrete and there are also some steel bars. The workers are standing on the concrete and some of them are wearing yellow helmets.", - "id": 20789 - }, - { - "image_path": "G:\\images\\combined\\-112-_png_jpg.rf.00d7f40902fa95fe19b9401271c74c3c.jpg", - "response": "A man wearing a yellow hard hat and holding a clipboard standing next to a large pipe in a room full of pipes.", - "id": 20790 - }, - { - "image_path": "G:\\images\\combined\\-1120-_png_jpg.rf.82b22efc21591c32df4450a4f87e2979.jpg", - "response": "The image shows a construction site in a city. The main feature of the image is a pair of men standing on the ground, facing each other. They are wearing yellow helmets, and the man on the left is also wearing a green jacket.", - "id": 20791 - }, - { - "image_path": "G:\\images\\combined\\-1121-_png_jpg.rf.5224e982a17f52d9fd5d241ff26fcd38.jpg", - "response": "A power plant with two workers in blue standing in front of it. They are wearing yellow hats and have their hands on their hips. The power plant has multiple large electrical transformers and power lines.", - "id": 20792 - }, - { - "image_path": "G:\\images\\combined\\-1124-_png_jpg.rf.29ba1315bc4001a173c3632d805ef514.jpg", - "response": "A tunnel with fire trucks inside, and workers in fireproof clothes.", - "id": 20793 - }, - { - "image_path": "G:\\images\\combined\\-1125-_png_jpg.rf.af6262dd5a8399a7004d16e77da8c620.jpg", - "response": "A man in a blue jacket and red hat is using a pole to skim snow off a roof. Two uniformed men, one in green and one in camoflage, are helping him. They are on a roof, which is covered in snow. In the background are trees and mountains.", - "id": 20794 - }, - { - "image_path": "G:\\images\\combined\\-1126-_png_jpg.rf.d20a2bc2c554828e07e2294ea0015239.jpg", - "response": "a group of people standing in front of a tall building under construction", - "id": 20795 - }, - { - "image_path": "G:\\images\\combined\\-1127-_png_jpg.rf.e0c4c2f0a2ed9e93a07b17649f7262ee.jpg", - "response": "A group of men in hard hats stand around a small pit in the ground.", - "id": 20796 - }, - { - "image_path": "G:\\images\\combined\\-113-_png_jpg.rf.8b856a18b8f6e00226d4c9f7895dc06c.jpg", - "response": "A construction worker standing on top of a metal structure.", - "id": 20797 - }, - { - "image_path": "G:\\images\\combined\\-1130-_png_jpg.rf.0346838145d42eae68e5cafc264a2b0d.jpg", - "response": "A group of men in blue hard hats are working on an electrical component.", - "id": 20798 - }, - { - "image_path": "G:\\images\\combined\\-1131-_png_jpg.rf.b538620c522babbc155d6328c1743d3e.jpg", - "response": "Two workers discussing blueprints at a construction site.", - "id": 20799 - }, - { - "image_path": "G:\\images\\combined\\-1136-_png_jpg.rf.c109f59177257dbccd5d32564627cd7f.jpg", - "response": "In the image there is a man wearing a white helmet and a red jacket working on a brick chimney. Another man is wearing a white helmet and a yellow jacket. They are both on a metal platform and are working on the chimney. There are two ladders against the chimney, one on the left and one on the right. The background is a white wall and the light is coming from a window on the right.", - "id": 20800 - }, - { - "image_path": "G:\\images\\combined\\-1137-_png_jpg.rf.13ce12187e1ca16637c07e672f038bfd.jpg", - "response": "In the image, two workers are standing on a platform within a factory. They are both wearing yellow helmets and grey and yellow uniforms. The worker on the left is holding a yellow folder and appears to be reading from it. The platform they are standing on is white and metal and has a ladder on the right side. The background shows a large industrial machine with many black tubes.", - "id": 20801 - }, - { - "image_path": "G:\\images\\combined\\-1138-_png_jpg.rf.4b4b96166df4e7a9de780d322b8f761c.jpg", - "response": "The image shows two workers in heavy winter clothing and hard hats standing on a snowy platform next to a large metal structure. One worker is using a long stick with a claw attached to the end to remove ice and snow from the metal surface. The workers are wearing yellow hard hats and the platform they are standing on is covered in snow.", - "id": 20802 - }, - { - "image_path": "G:\\images\\combined\\-1139-_png_jpg.rf.5426f36f0b0d14c1fb6fe1290ae4a226.jpg", - "response": "A man in a yellow hard hat and orange gloves is working in a tunnel. He is standing in front of a large rock and there is a yellow helmet hanging above him. He is wearing a brown jacket and there is a large metal tube on the ground.", - "id": 20803 - }, - { - "image_path": "G:\\images\\combined\\-114-_png_jpg.rf.1d6a1b4fcaf35368a94c78aee72654b5.jpg", - "response": "In the image there are two men wearing blue helmets and work clothes. They are standing around a white and red pole. One man is on the left side and the other one is on the right. They seem to be working on the pole.", - "id": 20804 - }, - { - "image_path": "G:\\images\\combined\\-1141-_png_jpg.rf.d777feeb98643fa20f7777eac8dd8b03.jpg", - "response": "In the image, there is a man wearing a grey shirt and a yellow helmet. He is climbing a ladder that is propped against a grey brick wall. The man appears to be of Asian descent. He is wearing white gloves and has a tool belt around his waist. The ladder appears to be old and made of wood. The man is working on an outdoor air conditioning unit that is mounted on the side of a building.", - "id": 20805 - }, - { - "image_path": "G:\\images\\combined\\-1144-_png_jpg.rf.9417fdf731b7e80c9233302f1572f80d.jpg", - "response": "A boat with three men on it, one sitting on the front, two on the back.", - "id": 20806 - }, - { - "image_path": "G:\\images\\combined\\-1146-_png_jpg.rf.c0c7a08085e79d31fc90a855c2128b4c.jpg", - "response": "A man in a black jacket and yellow hard hat is kneeling down next to a silver van. He is looking into the back of the van, which has been opened up like a suitcase. There is a black case with yellow writing on it sitting on the ground next to the van. There is also a black hose with red writing on it sitting on the ground next to the van.", - "id": 20807 - }, - { - "image_path": "G:\\images\\combined\\-1147-_png_jpg.rf.1d0384e75f09fd2248e0f07725c7b79d.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 20808 - }, - { - "image_path": "G:\\images\\combined\\-1149-_png_jpg.rf.087544400154a32e93f95af3d4e530df.jpg", - "response": "A man in a hard hat and high visibility vest, standing on a platform holding a clipboard, pointing at a steel beam on a building under construction.", - "id": 20809 - }, - { - "image_path": "G:\\images\\combined\\-115-_png_jpg.rf.a173bca1f6163c11de785ca5c21cd3cc.jpg", - "response": "The image shows a group of people working on a construction site. They are wearing blue uniforms and are standing on a bridge that is under construction. Some of them are using tools such as hammers and wrenches. In the background, there is a lake and a forest.", - "id": 20810 - }, - { - "image_path": "G:\\images\\combined\\-1151-_png_jpg.rf.0e2a303b8db0c2d162a4c25b6c86946d.jpg", - "response": "A worker in a red hard hat and safety gloves is using a welding tool to repair a large metal blue beam. The worker is wearing a blue shirt and has a beard. In the background there is a crane and a body of water.", - "id": 20811 - }, - { - "image_path": "G:\\images\\combined\\-1153-_png_jpg.rf.3f14d092001476b8125fc6123db05832.jpg", - "response": "An electrical worker in a blue shirt and yellow hat is repairing an electrical wire on a telephone pole.", - "id": 20812 - }, - { - "image_path": "G:\\images\\combined\\-1156-_png_jpg.rf.4cf20d8a70da0efdbd7d9ba4268056e5.jpg", - "response": "A construction vehicle with two men sitting in it.", - "id": 20813 - }, - { - "image_path": "G:\\images\\combined\\-1157-_png_jpg.rf.180e5ce4fa81d686961c9290e59c3b65.jpg", - "response": "A group of workers in red uniforms are working on power lines.", - "id": 20814 - }, - { - "image_path": "G:\\images\\combined\\-1158-_png_jpg.rf.68c452f47e633d2933ab824a6fc6817f.jpg", - "response": "A couple of men standing next to each other wearing hard hats.", - "id": 20815 - }, - { - "image_path": "G:\\images\\combined\\-1161-_png_jpg.rf.1eccaed813342de00ab7cc4255972093.jpg", - "response": "In the image there are three people working in a factory. They are all wearing yellow hard hats and safety vests. The person on the left is in the foreground and is holding a box with a label on it. The person in the middle is reaching for a black hose that is on a cart. The person on the right is standing behind the other two people and is looking at the hose that is on the cart. There are many other people in the background.", - "id": 20816 - }, - { - "image_path": "G:\\images\\combined\\-1165-_png_jpg.rf.de529de18b8d85d6492295d98c1779c0.jpg", - "response": "The image shows a group of workers in a forest. They are all wearing camouflage or uniform, and some are wearing hard hats. They are standing around a large object, which is wrapped in plastic and hanging from a metal frame. The workers are holding onto the metal frame and pulling on a chain, which is lifting the large object. There are also several people in the background, some of whom are wearing backpacks. The entire scene has a somewhat difficult and challenging atmosphere.", - "id": 20817 - }, - { - "image_path": "G:\\images\\combined\\-1167-_png_jpg.rf.0ae52b8ee5dc633ee66a245a70c8f151.jpg", - "response": "Two men in yellow vests and hard hats shaking hands on a construction site.", - "id": 20818 - }, - { - "image_path": "G:\\images\\combined\\-1168-_png_jpg.rf.78188e5bc33befaa3c8666ddfb18d971.jpg", - "response": "The rescue work is being carried out by rescue workers and police officers.", - "id": 20819 - }, - { - "image_path": "G:\\images\\combined\\-1169-_png_jpg.rf.564561fe11a9345399f74785281d897e.jpg", - "response": "A construction worker is working on a scaffolding system. The scaffolding is made of wood and is attached to a building. The worker is wearing a white hat and a blue shirt. He is holding a yellow helmet in his left hand. There is another worker behind him, wearing a white helmet and a brown vest. He is holding a white helmet in his right hand. The building is green and is covered with many windows. The sky is grey and there are no clouds in the sky.", - "id": 20820 - }, - { - "image_path": "G:\\images\\combined\\-1170-_png_jpg.rf.d338beafcac421990bfda094aa2fb442.jpg", - "response": "A man in a hard hat and thick jacket working on a large blue metal structure.", - "id": 20821 - }, - { - "image_path": "G:\\images\\combined\\-1172-_png_jpg.rf.d28a447f04fb66f74826c34e69662f92.jpg", - "response": "A man in a yellow hard hat is sitting on scaffolding.", - "id": 20822 - }, - { - "image_path": "G:\\images\\combined\\-1174-_png_jpg.rf.8f122d636e78228afd2f8c5e1df5879e.jpg", - "response": " Several workers(364,403),(512,788)(200,372),(311,670)(510,398),(648,642)(487,393),(548,594)(463,394),(527,579) are working at night in a construction site.", - "id": 20823 - }, - { - "image_path": "G:\\images\\combined\\-1175-_png_jpg.rf.8f37f0941669a52ea06563058d8c3569.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is working on a circular saw. He is wearing a yellow hard hat and has a beard. He is standing on a concrete floor.", - "id": 20824 - }, - { - "image_path": "G:\\images\\combined\\-1176-_png_jpg.rf.37fde9a1c61f134dd208d266013f17a4.jpg", - "response": "Some construction workers are working on a building.", - "id": 20825 - }, - { - "image_path": "G:\\images\\combined\\-1177-_png_jpg.rf.8d053705e8d72d4b16f3575567f9a774.jpg", - "response": "An image of two men working on a large piece of machinery.", - "id": 20826 - }, - { - "image_path": "G:\\images\\combined\\-1179-_png_jpg.rf.38e2be38a53887071ea03a6520404b05.jpg", - "response": "The image shows a group of workers at a construction site. They are working on a large metal structure, which appears to be a part of a bridge. The workers are wearing safety gear, including hard hats and safety vests. Some of them are standing on a platform that has been built to support the construction work. The workers are focused on their tasks, and one of them is holding a tool. The background is blurred, with the main focus on the workers and the metal structure.", - "id": 20827 - }, - { - "image_path": "G:\\images\\combined\\-1181-_png_jpg.rf.2422682ad82b5db022715dc9ce44d0f9.jpg", - "response": "A man wearing a yellow vest and a hard hat is holding a clipboard in a warehouse.", - "id": 20828 - }, - { - "image_path": "G:\\images\\combined\\-1182-_png_jpg.rf.815fc49b8ef3d5e7f2ea6392fb6990e1.jpg", - "response": "A group of men standing on a construction site wearing hard hats.", - "id": 20829 - }, - { - "image_path": "G:\\images\\combined\\-1183-_png_jpg.rf.163c4058fd2763a146586164664628d1.jpg", - "response": "A group of people standing around a van.", - "id": 20830 - }, - { - "image_path": "G:\\images\\combined\\-1184-_png_jpg.rf.06fbba3636008a12e8e6ed24a79f39c5.jpg", - "response": "A worker in a white shirt and red helmet is working on a red metal bar. The metal bar is placed on the ground and the worker is leaning over it. They are wearing a red helmet and have a red tool belt around their waist. There is a large metal red and white bar in the background. To the left of the worker, there is a large blue and white sign on a construction fence. In the background, there is a large white building under construction.", - "id": 20831 - }, - { - "image_path": "G:\\images\\combined\\-1185-_png_jpg.rf.ed636eb7d3f8522bd97794eff17467bb.jpg", - "response": "In the image there are three men working on a piece of equipment. The equipment they are working on is white and grey in color and is placed on a white floor. The men are wearing blue and yellow work uniforms and are wearing white helmets. On the equipment they are working on, there are many knobs and\u7ba1\u9053. One of the men is holding a red and black screwdriver.", - "id": 20832 - }, - { - "image_path": "G:\\images\\combined\\-1186-_png_jpg.rf.3f5eec9341efe8160f7f9247ebd1b495.jpg", - "response": "A worker in a blue hat and safety gear is climbing into a large piece of industrial equipment. The equipment is a large piece of machinery with a metal door that the worker is climbing through. The metal door has a metal handle on the right side and a metal lock on the left side. The worker is wearing a grey jumpsuit and a blue hat. The background is a grey wall.", - "id": 20833 - }, - { - "image_path": "G:\\images\\combined\\-1187-_png_jpg.rf.e673c60dd694ea26754948db9f3c2b3b.jpg", - "response": "A group of men in blue work uniforms and safety gear are working on an electrical transformer.", - "id": 20834 - }, - { - "image_path": "G:\\images\\combined\\-1189-_png_jpg.rf.77153a1a8eb119774819ac7169e62648.jpg", - "response": "a group of people standing around in a large room that has no walls and no doors", - "id": 20835 - }, - { - "image_path": "G:\\images\\combined\\-1190-_png_jpg.rf.a9b1636f755bc2c10543eef07b379784.jpg", - "response": "An electrician repairs a power line in the sky.", - "id": 20836 - }, - { - "image_path": "G:\\images\\combined\\-1191-_png_jpg.rf.7f621bc8436dd0f772238868a4fc4e08.jpg", - "response": "A worker repairs a power line in the snow in E China's Heilongjiang province.", - "id": 20837 - }, - { - "image_path": "G:\\images\\combined\\-1192-_png_jpg.rf.b6cf0afad262df8bcc1f15645ce0daf2.jpg", - "response": "A worker in a red safety helmet and yellow vest is signaling to someone in a crane.", - "id": 20838 - }, - { - "image_path": "G:\\images\\combined\\-1194-_png_jpg.rf.1b4e9533fd5efd56d4592d43d907c340.jpg", - "response": "A group of workers are working on an electrical tower.", - "id": 20839 - }, - { - "image_path": "G:\\images\\combined\\-1195-_png_jpg.rf.0255c900f76ec388383c3371ebd54ef6.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a scaffold.", - "id": 20840 - }, - { - "image_path": "G:\\images\\combined\\-1198-_png_jpg.rf.2429e0523df6b6c0c90bdace96c447d5.jpg", - "response": "A man and a woman construction workers looking at a blueprint on a construction site.", - "id": 20841 - }, - { - "image_path": "G:\\images\\combined\\-1199-_png_jpg.rf.f2e4d00f56dadc47e3b6ae33510de7b0.jpg", - "response": "A man in grey shirt and grey pants, wearing a blue hat, is on a power line. He is wearing a tool belt and is repairing the power lines.", - "id": 20842 - }, - { - "image_path": "G:\\images\\combined\\-12-_png_jpg.rf.22a559a4c92c3825f02bf2ce3cf08eaf.jpg", - "response": "a group of men in red coveralls and hard hats", - "id": 20843 - }, - { - "image_path": "G:\\images\\combined\\-120-_png_jpg.rf.29bf6ed467f164b77e00e1823a16628a.jpg", - "response": "The image shows a group of construction workers working on a pile of rubble. There is a bus in the background.", - "id": 20844 - }, - { - "image_path": "G:\\images\\combined\\-1201-_png_jpg.rf.89366a62e855f2d55009a1c44040a40a.jpg", - "response": "The photo shows three men standing inside a large building under construction. The building has a steel frame and many of the walls have not yet been built. The men are standing near the center of the building, which is a large open space. One of the men is wearing a red tie and is pointing to something on a blueprint that is open on a table nearby. The other two men are looking in the same direction. One of them is wearing a black jacket and a hat, and the other is wearing a white shirt and gray pants. There is a dog standing near the men, and a few other people are visible in the background.", - "id": 20845 - }, - { - "image_path": "G:\\images\\combined\\-1204-_png_jpg.rf.9681b943a610a8cd07f6c33655456c82.jpg", - "response": "The image shows two workers in a large, dark tunnel. They are standing on a platform that is flooded with water, which is up to their knees. The workers are wearing hard hats and one of them is holding a flashlight. The tunnel is lined with brick and has a pipe running along one side. In the background, there is a large pipe running across the tunnel. The workers appear to be looking at something in the water.", - "id": 20846 - }, - { - "image_path": "G:\\images\\combined\\-1205-_png_jpg.rf.68a7fe6a659cd6406f89969b0bf76e99.jpg", - "response": "The image shows a worker with a helmet and a flashlight examining the ruins of an old building. The worker is squatting down and shining the light on the ruins. The ruins are made of brick and stone and appear to be in a state of disrepair. The worker is also holding a cell phone in his hand.", - "id": 20847 - }, - { - "image_path": "G:\\images\\combined\\-1207-_png_jpg.rf.a74c0b507454043a706d15a00b34e4f0.jpg", - "response": "A group of construction workers wearing hard hats and high visibility vests are working on a construction site. They are sitting on the ground and working with rebar.", - "id": 20848 - }, - { - "image_path": "G:\\images\\combined\\-1209-_png_jpg.rf.764b179d54ee8d48e2b38038cd6bfa51.jpg", - "response": "The image shows two men in blue overalls, climbing a telephone pole. They are both on the same side of the pole, with one climbing higher. They are both holding on to the wires, which are thick and appear to be made of several different wires tangled together. The sky is blue and clear in the background.", - "id": 20849 - }, - { - "image_path": "G:\\images\\combined\\-1210-_png_jpg.rf.0cf06e2c3ae0666f4405fdf0299ec97a.jpg", - "response": "A man in a hard hat is on a lift working on a ceiling.", - "id": 20850 - }, - { - "image_path": "G:\\images\\combined\\-1212-_png_jpg.rf.6898056c6daeab43b74e8f02f0461097.jpg", - "response": "A man in a brown suit and red tie shaking hands with a man in a grey jacket and red hard hat.", - "id": 20851 - }, - { - "image_path": "G:\\images\\combined\\-1214-_png_jpg.rf.37a71aab05cac372cb146c9740065e61.jpg", - "response": "The photo shows several workers in orange uniforms and yellow helmets gathered around a large piece of equipment. They are standing in front of a large tower, which appears to be part of an electrical transmission line. The workers are looking at a blueprint, and there are several other people visible in the background. The sky is overcast, and there is a large crane operating in the background.", - "id": 20852 - }, - { - "image_path": "G:\\images\\combined\\-1215-_png_jpg.rf.ca1eb81780a7812023b533463e22f025.jpg", - "response": "A group of four people standing around a table looking at a white board.", - "id": 20853 - }, - { - "image_path": "G:\\images\\combined\\-1216-_png_jpg.rf.2cd516835369dbada46db7d52a71829c.jpg", - "response": "In the image two workers are working on a large structure that resembles a wall with a door in it. They are wearing white and blue work clothes and are holding hoses and other equipment. The wall they are working on is painted orange and white. The workers are on a platform that is painted orange and is located below the large structure. The wall has several lines and circles painted on it. The background is a truss structure that looks like it is above a bridge.", - "id": 20854 - }, - { - "image_path": "G:\\images\\combined\\-1217-_png_jpg.rf.afe54c3e06ef3b374a2cba846951cfe1.jpg", - "response": "A man in a yellow vest standing on the tracks near a tunnel.", - "id": 20855 - }, - { - "image_path": "G:\\images\\combined\\-1219-_png_jpg.rf.9d7beaae92a553caf2988aa95b0423e5.jpg", - "response": "Some people are working on a construction site.", - "id": 20856 - }, - { - "image_path": "G:\\images\\combined\\-122-_png_jpg.rf.80ab52d69b876c37e559cd796cb54dbb.jpg", - "response": "A construction worker in a yellow vest stands in a large hole in the ground. The hole is filled with debris and there are two large concrete pipes on the ground. The worker is standing on a wooden plank in the debris. There are wires above the worker and a large circular object is hanging above the hole. The background is a concrete wall with a sign that says \"Jinan\" on it.", - "id": 20857 - }, - { - "image_path": "G:\\images\\combined\\-1220-_png_jpg.rf.5513b0208877ea7837d5ebdae606875d.jpg", - "response": "The image shows a construction site with several workers present. The workers are standing on a large area of bare ground, which has been laid out with numerous wooden poles arranged in a grid pattern. The workers are wearing red hats and some are wearing white shirts. One of the workers is in the center of the frame, with a ladder behind him and another worker to his left. Another worker is visible at the far left of the frame. The photo is taken from a low angle, looking up at the workers.", - "id": 20858 - }, - { - "image_path": "G:\\images\\combined\\-1222-_png_jpg.rf.7368c87855d24dd3d6fd3c6fa5e08c1b.jpg", - "response": "An electrician repairs a power line.", - "id": 20859 - }, - { - "image_path": "G:\\images\\combined\\-1223-_png_jpg.rf.b0ea516cd5199b1daad3d4a90f5e1d2d.jpg", - "response": "A group of three people standing in a factory.", - "id": 20860 - }, - { - "image_path": "G:\\images\\combined\\-1226-_png_jpg.rf.c73dbec2c3f135ad3baddc29ebba9f6f.jpg", - "response": "A group of men in blue uniforms are working on a power station.", - "id": 20861 - }, - { - "image_path": "G:\\images\\combined\\-1227-_png_jpg.rf.58fb6801e30d322b49384a7f21f440a8.jpg", - "response": "The image shows two workers sitting on a pile of steel pipes. They are wearing hard hats and appear to be focused on their task. There are several steel pipes stacked up around them, and many more steel drums, some of which are painted white and others are painted green, all scattered around them. The steel drums have a variety of writing on them, including the word \"Fushun\", and some appear to be labeled with Chinese characters.", - "id": 20862 - }, - { - "image_path": "G:\\images\\combined\\-1230-_png_jpg.rf.6d8051b18cf695dd8f6d03eb2da62e2e.jpg", - "response": "A man in a hard hat and a yellow jumpsuit sits on a bench in a tunnel. He is holding a newspaper and appears to be reading it. There is a cart with equipment on it behind him. The tunnel is dark and has a wet floor.", - "id": 20863 - }, - { - "image_path": "G:\\images\\combined\\-1232-_png_jpg.rf.f82978215ae646ebec4ae4df4af2d2fa.jpg", - "response": "a group of men wearing hard hats", - "id": 20864 - }, - { - "image_path": "G:\\images\\combined\\-1234-_png_jpg.rf.fa5bd6d23876d320db0d905a00912c0d.jpg", - "response": "The picture shows a group of people standing in front of a bus. The bus is white and black, and it is located on the left side of the image. The bus is parked in a parking lot, and the people are standing on the pavement in front of it. Some of the people are wearing ties, and one person is wearing a cap. The pavement is wet, and there is a puddle in front of the bus. The weather seems to be rainy.", - "id": 20865 - }, - { - "image_path": "G:\\images\\combined\\-1235-_png_jpg.rf.89f2084f095ebb307401840f0298f231.jpg", - "response": "A construction site with several workers.", - "id": 20866 - }, - { - "image_path": "G:\\images\\combined\\-1236-_png_jpg.rf.6964245fe1179983ed700ed64ce3f902.jpg", - "response": "A man in a white hard hat and blue shirt is working on a car.", - "id": 20867 - }, - { - "image_path": "G:\\images\\combined\\-1237-_png_jpg.rf.431093add86c7e3d168b4afbc8bfe2bd.jpg", - "response": "A man in a yellow and green jacket is working on a pipe.", - "id": 20868 - }, - { - "image_path": "G:\\images\\combined\\-1241-_png_jpg.rf.1017ce439fb36f5fa78e825f3be1ad6a.jpg", - "response": "A man in a yellow shirt and orange hat looking at a blueprint in front of a building under construction.", - "id": 20869 - }, - { - "image_path": "G:\\images\\combined\\-1243-_png_jpg.rf.862de978f1645c42ce245381b3ab70de.jpg", - "response": "The image shows a group of rescue workers in orange vests and hard hats standing in a circle around a man who appears to be injured. The rescue workers are holding the man, who is wearing a white shirt and has a bandage on his forehead. The scene is dark, and there are several people in the background, some of whom are also wearing hard hats. A hand is visible on the far right of the image, and a bicycle is visible on the left side of the image.", - "id": 20870 - }, - { - "image_path": "G:\\images\\combined\\-1244-_png_jpg.rf.7d3b413cf75172034b25dc5cc449d177.jpg", - "response": "A worker in a yellow hard hat looks over a ledge at a natural landscape.", - "id": 20871 - }, - { - "image_path": "G:\\images\\combined\\-1246-_png_jpg.rf.7b8d75299549a4c459f8cd244aa0eb1a.jpg", - "response": "a group of people standing in front of a pile of rubble", - "id": 20872 - }, - { - "image_path": "G:\\images\\combined\\-1247-_png_jpg.rf.37d35ed48726568ff51101b4bb86bf05.jpg", - "response": "A man in a yellow hard hat stands on a metal platform on a tower.", - "id": 20873 - }, - { - "image_path": "G:\\images\\combined\\-1249-_png_jpg.rf.b40f01cb01e95a7e7daed0a9b17d82c0.jpg", - "response": "A group of men in hard hats stand in a circle around a fire hydrant. One man is holding a water bottle and a red fire extinguisher. Another man is holding a yellow helmet.", - "id": 20874 - }, - { - "image_path": "G:\\images\\combined\\-125-_png_jpg.rf.987711f5c6f03c92208661648a6b85c4.jpg", - "response": "a group of men standing around each other", - "id": 20875 - }, - { - "image_path": "G:\\images\\combined\\-1252-_png_jpg.rf.336d7e2548d25683f015ac6ab9227bf3.jpg", - "response": "A couple of men in hard hats and yellow jackets are working on power lines in the dark. They are standing on a ladder and have tools with them.", - "id": 20876 - }, - { - "image_path": "G:\\images\\combined\\-1254-_png_jpg.rf.7146d4032b6ba58874a129480c0874bc.jpg", - "response": "The image shows a construction site with a yellow excavator digging up a brown dirt mound. There are two people visible in the scene, one standing near the excavator and another further back in the scene. The excavator has a claw attachment on it. There is a yellow hard hat on the ground in front of the excavator. In the background, there is a road and a forest. There are also two red flags on the right side of the image.", - "id": 20877 - }, - { - "image_path": "G:\\images\\combined\\-126-_png_jpg.rf.199291993b01de10927d837b2e7c9743.jpg", - "response": "An engineer or construction worker wearing a yellow vest and a blue helmet is looking at a blueprint in a building site.", - "id": 20878 - }, - { - "image_path": "G:\\images\\combined\\-1260-_png_jpg.rf.3db87ed28ea7b12bd1f7585a9189bf0a.jpg", - "response": "The image shows two workers at a construction site, standing on a grid of steel rebar. The man on the left is wearing a yellow hard hat and a red vest, and is holding a long bar of steel with both hands. The man in the center is wearing a green hard hat, a grey jacket, and dark blue pants. He is standing on the rebar and appears to be directing the man on the left. The man on the right is wearing a white hard hat and grey pants, and is not actively working. The background is out of focus, and the image is almost entirely in shades of grey and green.", - "id": 20879 - }, - { - "image_path": "G:\\images\\combined\\-1261-_png_jpg.rf.849caf94e2c57f48b50e814222080638.jpg", - "response": "In the image there are two workers wearing hard hats and camouflage clothing. They are standing on scaffolding which is built around a cliff. The cliff is rocky and has a tree growing out of it. In the background there is a white building. There is also a red hard hat hanging from somewhere and a yellow helmet hanging from a piece of wood.", - "id": 20880 - }, - { - "image_path": "G:\\images\\combined\\-1262-_png_jpg.rf.f49e9b6731159c5d87cd67ab33baa9bb.jpg", - "response": "A construction site with a worker wearing a red jacket and yellow hat, who is welding steel bars.", - "id": 20881 - }, - { - "image_path": "G:\\images\\combined\\-1263-_png_jpg.rf.f511f75608841ac6845b6e530de16ef4.jpg", - "response": "A group of workers in orange jumpsuits on a blue and white boat.", - "id": 20882 - }, - { - "image_path": "G:\\images\\combined\\-1264-_png_jpg.rf.9df34cdbdd4b6e5913e1a592c64b0c8d.jpg", - "response": "A group of workers in a tunnel.", - "id": 20883 - }, - { - "image_path": "G:\\images\\combined\\-1265-_png_jpg.rf.208856e5974ebe260ba3cd926b3a9fe0.jpg", - "response": "A large construction site with many unfinished buildings.", - "id": 20884 - }, - { - "image_path": "G:\\images\\combined\\-1267-_png_jpg.rf.18ad361cea1514848bb5e9376631c481.jpg", - "response": "Some people are working on a long narrow road. The ground is dirt and there are a few small hills in the area.", - "id": 20885 - }, - { - "image_path": "G:\\images\\combined\\-1268-_png_jpg.rf.aafb46578c6fe86700cdfe4a970677e1.jpg", - "response": "A group of men standing around in a construction area wearing hard hats.", - "id": 20886 - }, - { - "image_path": "G:\\images\\combined\\-1269-_png_jpg.rf.329ae74e4b84d2fc39a09a5d0b20e9db.jpg", - "response": "A person wearing a red hat and a black jacket.", - "id": 20887 - }, - { - "image_path": "G:\\images\\combined\\-127-_png_jpg.rf.ab1d4a89d9dc9dfff478b4407a7187a7.jpg", - "response": "a large tower with power lines coming off of it", - "id": 20888 - }, - { - "image_path": "G:\\images\\combined\\-1273-_png_jpg.rf.3ebc8eef902e903e22acc30989567bfc.jpg", - "response": "The image features a worker in a white coat and red helmet standing in front of a wall of metal pipes. The worker is looking at the wall of pipes with interest. The wall of pipes is brown and has numbers and letters written on them. The letters and numbers are in various sizes and are in black color. The worker is also wearing a white glove on their left hand. The worker is also wearing a red helmet for safety.", - "id": 20889 - }, - { - "image_path": "G:\\images\\combined\\-1274-_png_jpg.rf.5fadc843ea1c7d44bbb90f1de552afe9.jpg", - "response": " Firefighters(860,347),(988,727)(663,234),(809,657)(408,414),(594,726)(48,437),(200,636)(186,456),(401,659) working to remove debris and search for survivors after the earthquake.", - "id": 20890 - }, - { - "image_path": "G:\\images\\combined\\-1277-_png_jpg.rf.007e78bb7d86277ed48970fe6c16dae0.jpg", - "response": "The image shows two men in blue work clothes and white and orange hard hats standing on a construction site. They are both holding papers and looking at them. In the background, there is a red fence, a large crane on the right and a few cherry pickers on the left. The ground is covered with bricks and there are several people scattered around the site.", - "id": 20891 - }, - { - "image_path": "G:\\images\\combined\\-1278-_png_jpg.rf.ad39e4201926d60002b757e20ff3ab29.jpg", - "response": "A man is being rescued from a cage by firemen.", - "id": 20892 - }, - { - "image_path": "G:\\images\\combined\\-1280-_png_jpg.rf.46c4277978b63e9fe8634ee93c94400b.jpg", - "response": "A group of people working on a construction site.", - "id": 20893 - }, - { - "image_path": "G:\\images\\combined\\-1281-_png_jpg.rf.54a7a285b51470b54231b0a3a097291c.jpg", - "response": "A group of three men in yellow hard hats and safety vests are standing outside of a large shipping container. One man is kneeling down and looking into the shipping container while the other two stand and watch. There are multiple containers stacked up around the area.", - "id": 20894 - }, - { - "image_path": "G:\\images\\combined\\-1282-_png_jpg.rf.9fbc064c8ed383da729046a4368a1701.jpg", - "response": "A group of people standing around in a factory.", - "id": 20895 - }, - { - "image_path": "G:\\images\\combined\\-1284-_png_jpg.rf.44a04623b9b283d94b6f9c30c0369b41.jpg", - "response": "A group of three people standing around each other wearing hard hats.", - "id": 20896 - }, - { - "image_path": "G:\\images\\combined\\-1285-_png_jpg.rf.a65db289f6529500975edf85aa811647.jpg", - "response": "A group of firefighters in yellow helmets are working together to rescue a person trapped in a collapsed building. The person is located at the bottom of the image, and the firefighters are surrounding them. Some of the firefighters are spraying water with their fire hoses, while others are holding up wooden beams to support the structure. The scene is chaotic, with many different elements and people interacting.", - "id": 20897 - }, - { - "image_path": "G:\\images\\combined\\-1287-_png_jpg.rf.a5027eb6bcff9ee6dbd17865569a7660.jpg", - "response": "A man in white and orange clothing is on a metal structure at night.", - "id": 20898 - }, - { - "image_path": "G:\\images\\combined\\-1288-_png_jpg.rf.b3e4d29a315f7e0a8a0347dad557dea9.jpg", - "response": "A group of workers are carrying a man on a stretcher. The man is wrapped in a white sheet and has a bandage on his head. They are walking through a large room with a lot of windows and a metal frame in the background. Some of the workers are wearing hard hats and one of them is wearing a yellow shirt.", - "id": 20899 - }, - { - "image_path": "G:\\images\\combined\\-1292-_png_jpg.rf.7efff90ec661ff412a055f8f8a35a493.jpg", - "response": "A group of people standing around a construction site.", - "id": 20900 - }, - { - "image_path": "G:\\images\\combined\\-1294-_png_jpg.rf.7905b35285ea0183be0d5a0dc9f6f2c0.jpg", - "response": " A man(365,366),(523,774) walking through a large pipe", - "id": 20901 - }, - { - "image_path": "G:\\images\\combined\\-1296-_png_jpg.rf.02282b444a6f04469f940a441fa9c45a.jpg", - "response": "In the image two men are working at a mining site. They are both wearing orange vests and hard hats. One man is holding a clipboard and a radio while the other man is pointing towards something in the distance. They are standing on a rocky surface with a pile of dirt to the right. In the background there is a bridge and a sky.", - "id": 20902 - }, - { - "image_path": "G:\\images\\combined\\-1297-_png_jpg.rf.6a739fd5e0bd4f19bf9e6fd6bf3e0b6a.jpg", - "response": "The image shows a construction site with two workers visible. One worker is on the left and is wearing a yellow hard hat and a grey top with brown pants. This worker is pulling on a large grey boulder. To the right of the worker, another worker is crouching down, wearing a camo top and a yellow hard hat. They are holding a large grey boulder with both hands and appear to be lifting it. In the background, a yellow and black bulldozer is visible at the top of the image.", - "id": 20903 - }, - { - "image_path": "G:\\images\\combined\\-1299-_png_jpg.rf.bccd9d78708398d8426729683552c120.jpg", - "response": " Two soldiers(388,342),(810,995)(796,340),(997,995) in front of a large metal object(2,383),(426,661) with a hole(457,380),(508,440) in it and flames coming out", - "id": 20904 - }, - { - "image_path": "G:\\images\\combined\\-13-_png_jpg.rf.001312106ab9b6298fc3a245470d4ed5.jpg", - "response": "A group of people standing together at a construction site wearing hard hats and looking at blueprints.", - "id": 20905 - }, - { - "image_path": "G:\\images\\combined\\-130-_png_jpg.rf.21266e3a3fddf00c08f9d98f3d7e604a.jpg", - "response": "In the image two men wearing camouflage clothing and hard hats are holding a large white plastic bag between them. They are standing in front of a large tree that has been cut down and is laying on the ground. The tree is next to a power line and the men appear to be in the process of cutting it down.", - "id": 20906 - }, - { - "image_path": "G:\\images\\combined\\-1300-_png_jpg.rf.598709fa25b1cf1b4b5503ec19fe7725.jpg", - "response": "A man sitting on a tire.", - "id": 20907 - }, - { - "image_path": "G:\\images\\combined\\-1302-_png_jpg.rf.f5c41c6d36fba770dd52b3f02cfa0537.jpg", - "response": "A group of men working on a construction site.", - "id": 20908 - }, - { - "image_path": "G:\\images\\combined\\-1304-_png_jpg.rf.3dd754fbdfb5bea19419cab6e9df3537.jpg", - "response": "A man wearing a yellow hard hat and green shirt is using a construction tool in a construction site.", - "id": 20909 - }, - { - "image_path": "G:\\images\\combined\\-1306-_png_jpg.rf.0c60d3ed081614fcb4bbecfbbd910f37.jpg", - "response": "A group of people standing around a construction site.", - "id": 20910 - }, - { - "image_path": "G:\\images\\combined\\-1307-_png_jpg.rf.500f22bcad19a5b616f74c29815090d6.jpg", - "response": "The rescue team has arrived at the entrance of the cave.", - "id": 20911 - }, - { - "image_path": "G:\\images\\combined\\-1308-_png_jpg.rf.2e6b93ed786276ccad8fe31902c5c6fa.jpg", - "response": "A construction worker and a man in a purple shirt looking at blueprints in front of a yellow building with a crane in the background.", - "id": 20912 - }, - { - "image_path": "G:\\images\\combined\\-1309-_png_jpg.rf.24c64b748d8b6018b98b194162cdad81.jpg", - "response": "The image shows workers in a tunnel. There is a large metal wheel with spokes on the left side of the image, and a person in a red uniform is sitting next to it, operating it. Another person in a red uniform is standing to the right of the person sitting, and a person in a yellow uniform is standing to the right of the person in the red uniform. All three of them are in the tunnel.", - "id": 20913 - }, - { - "image_path": "G:\\images\\combined\\-131-_png_jpg.rf.1200079cba3035eb1990ead64d50c35a.jpg", - "response": "A group of people wearing hard hats and winter clothing are gathered around a power pole in the snow. They are all holding onto the pole, which is covered in snow. Some of them are also holding tools. In the background, there is a house and power lines.", - "id": 20914 - }, - { - "image_path": "G:\\images\\combined\\-1310-_png_jpg.rf.8cf44d873b26d6685f589de283494ed7.jpg", - "response": "Four men in blue overalls and orange hats are painting the inside of a house. They are on a set of stairs and are painting the walls white.", - "id": 20915 - }, - { - "image_path": "G:\\images\\combined\\-1311-_png_jpg.rf.af97da969a4f2a0193c894c10dd2beac.jpg", - "response": "A group of people in suits standing in front of a building under construction.", - "id": 20916 - }, - { - "image_path": "G:\\images\\combined\\-1312-_png_jpg.rf.c8543cc501af1055c4266a549851de39.jpg", - "response": "A man sitting on a yellow construction platform.", - "id": 20917 - }, - { - "image_path": "G:\\images\\combined\\-1315-_png_jpg.rf.7c25bf39fd6cebd290229d4950d03215.jpg", - "response": "The image shows a warehouse with several men working. There are three men in the central area of the warehouse, with one of them holding a forklift with a pallet on it. Another man is standing on the right side of the scene, and another man is standing at the top left corner of the image. The warehouse floor is yellow and has several boxes and pallets scattered around. There are also some stairs in the scene, with a person standing at the bottom of them.", - "id": 20918 - }, - { - "image_path": "G:\\images\\combined\\-1323-_png_jpg.rf.943b162053ed6e84cf0ddbcedb51a17a.jpg", - "response": "In the image two workers are working on an electrical box. They are both wearing orange work suits and blue hats. The man on the left is working on the bottom of the electrical box and the man on the right is working on the wires coming out of the top of the electrical box.", - "id": 20919 - }, - { - "image_path": "G:\\images\\combined\\-1324-_png_jpg.rf.03e66212e390020395352bf02eb8621c.jpg", - "response": "The image shows three workers walking out of a large tunnel under construction. The tunnel is red and black and has Chinese characters written on it. The workers are wearing orange vests and are walking in a line. The ground is white and there are several construction tools and a blue box on the ground. The sky is dark and it appears to be evening.", - "id": 20920 - }, - { - "image_path": "G:\\images\\combined\\-1326-_png_jpg.rf.0e0987a5c44676c169f765261edae70a.jpg", - "response": "The image shows a group of men, some wearing hard hats, walking together. They are all wearing white shirts and some are wearing black pants. The group is walking across a construction site with several tall buildings under construction. The men are walking on a walkway that is surrounded by construction materials and equipment. There are also several people in the background, some of them are wearing ties. The image is taken from the perspective of someone looking at the group of men.", - "id": 20921 - }, - { - "image_path": "G:\\images\\combined\\-1328-_png_jpg.rf.12f5206e651e32b2ecb8647c05039ee6.jpg", - "response": "A man wearing a yellow jacket and a hard hat stands in front of a building under construction. He is holding a clipboard.", - "id": 20922 - }, - { - "image_path": "G:\\images\\combined\\-1329-_png_jpg.rf.8edc46432d12c9c2f78734aa4652e636.jpg", - "response": "A man wearing a red hat, glasses and a yellow shirt is smiling while being helped by several men in grey and blue jackets and red hats. They are all wearing blue helmets. The man in the foreground is holding a rope with his right hand and a tool in his left hand. He is wearing a grey and blue jacket, a red hat and glasses. The man in the far right is wearing a red hat and a green helmet. He is holding a rope with his left hand. They are all wearing grey pants.", - "id": 20923 - }, - { - "image_path": "G:\\images\\combined\\-133-_png_jpg.rf.cb356bfe074366ddd718faf355de6f98.jpg", - "response": "The image shows a group of construction workers at a construction site. They are standing on a muddy field, which is reflected in a nearby water body. There are several workers, some of them wearing yellow vests. One of them is using a walkie-talkie. In the background, there is a partially constructed building. There are also several trucks parked in the area.", - "id": 20924 - }, - { - "image_path": "G:\\images\\combined\\-1330-_png_jpg.rf.80bce1d8e0ec748c0173b4647f32565e.jpg", - "response": "The image shows a construction worker on a building site. The worker is wearing a yellow helmet and is carrying two wooden planks on their shoulder. They are standing on a platform near the middle of the image, with the sky visible above them. The sky is blue with some white clouds. The building site is reflected in a pool of water to the bottom of the image.", - "id": 20925 - }, - { - "image_path": "G:\\images\\combined\\-1331-_png_jpg.rf.5bedf161f0f822a9f8730b07aa601f0e.jpg", - "response": "The image shows two workers in orange vests and white hats standing in a large tunnel. They are working on a wall that has many bricks laid in a pattern. In the foreground, there are two workers, one on the left and one on the right, working on the wall. They are surrounded by tools, including a large wrench and a pipe wrench. There are also two hoses visible in the scene. The tunnel has a cement ceiling and walls that are a mix of concrete and brick. The workers are in the process of laying bricks on top of the concrete wall.", - "id": 20926 - }, - { - "image_path": "G:\\images\\combined\\-1334-_png_jpg.rf.0da64584d6347a650893d99eba12f10f.jpg", - "response": "The image shows a group of workers repairing a road. The road is in the process of being dug up by several workers with shovels and a jackhammer. The\u4fee\u590d\u4e2d\u7684\u9053\u8def\u5448\u73b0\u51fa\u4e00\u4e2a\u5927\u5751.", - "id": 20927 - }, - { - "image_path": "G:\\images\\combined\\-1336-_png_jpg.rf.9ef6d5b2811ca9f7e00e47a3b18d4099.jpg", - "response": "The photo shows President Xi Jinping visiting a factory. He is wearing a black suit and a white shirt. Under the photo, it says \u201cNewspaper: Xinhua News, Website: Xinhuanet.com\u201d. There are also two ads on the side.", - "id": 20928 - }, - { - "image_path": "G:\\images\\combined\\-1337-_png_jpg.rf.3e2daf539bfb9d33e906e4822837c31c.jpg", - "response": "The image shows three men standing on a sidewalk, wearing orange vests and hard hats. They are looking at a piece of equipment, which appears to be a small yellow vehicle with a wire attached to it. One of the men is holding a clipboard. The scene is set in an urban environment, with buildings and a street sign visible in the background.", - "id": 20929 - }, - { - "image_path": "G:\\images\\combined\\-1338-_png_jpg.rf.003c482d8d5da1c2e9a7a9c096fdbdbe.jpg", - "response": "A man in a red uniform and hard hat sitting on a forklift.", - "id": 20930 - }, - { - "image_path": "G:\\images\\combined\\-1339-_png_jpg.rf.3e7f2f86bb5ad30be58ad2236e5b157e.jpg", - "response": "A construction site with two people inspecting a part of the site.", - "id": 20931 - }, - { - "image_path": "G:\\images\\combined\\-1340-_png_jpg.rf.f0a98f46cf5fcc86b0cbd5932a3bed65.jpg", - "response": "A group of men in uniforms are working on an electrical line.", - "id": 20932 - }, - { - "image_path": "G:\\images\\combined\\-1341-_png_jpg.rf.53d752f5c8f896dd5fe90f4bc875d737.jpg", - "response": "A group of people working on a construction site.", - "id": 20933 - }, - { - "image_path": "G:\\images\\combined\\-1342-_png_jpg.rf.df27441ce608d0e4a2959cfaf6596253.jpg", - "response": "A man in a hard hat standing in front of a bulldozer, holding a set of plans.", - "id": 20934 - }, - { - "image_path": "G:\\images\\combined\\-1344-_png_jpg.rf.f88f88d6e4686801517da24f17f3dac5.jpg", - "response": "A man sitting on a pile of blueprints while talking on a cell phone.", - "id": 20935 - }, - { - "image_path": "G:\\images\\combined\\-1345-_png_jpg.rf.0744fae003adbfee87633f068f7d174e.jpg", - "response": "A group of workers in a cave.", - "id": 20936 - }, - { - "image_path": "G:\\images\\combined\\-1346-_png_jpg.rf.ce15b6d917d0bacf6dc29eb6c7fae606.jpg", - "response": "A group of men working on power lines.", - "id": 20937 - }, - { - "image_path": "G:\\images\\combined\\-1349-_png_jpg.rf.650aa0defb99cb6385048fe9c6b11e20.jpg", - "response": "A worker is working on a large piece of equipment. The worker is standing on a step ladder and is working on a large metal box. The metal box is painted silver and is filled with wires. The worker is wearing a safety helmet and is holding a large screwdriver. The background is blurry and there are several other workers in the image. One worker is in the top left corner of the image and another is in the top right corner. There is also a sign on the wall next to the worker that says \"new pole new transformer installation\".", - "id": 20938 - }, - { - "image_path": "G:\\images\\combined\\-135-_png_jpg.rf.32a2871a853f4972bb9a1549e62460d9.jpg", - "response": "In the image there are two workers wearing blue uniforms and white striped safety jackets. They are working on a large piece of equipment in a factory setting. One worker is kneeling down and appears to be working on the equipment while the other worker is standing behind them. There is a ladder on the right side of the image and a large pipe running down the middle of the image. The workers are wearing hard hats and the floor appears to be wet.", - "id": 20939 - }, - { - "image_path": "G:\\images\\combined\\-1351-_png_jpg.rf.6233186a07d04b4b9e7559ce6b553e22.jpg", - "response": "A man in a blue uniform and yellow hat is on a walkway on top of a tower. He is wearing a harness and has a tool belt. The tower is made of metal and has a lattice structure. The man is looking up at the camera.", - "id": 20940 - }, - { - "image_path": "G:\\images\\combined\\-1352-_png_jpg.rf.3418dfe938bb2d0a4495f4cf58c75055.jpg", - "response": "A group of three men in blue hats and work shirts are working on a piece of equipment. They are all focused on the task at hand.", - "id": 20941 - }, - { - "image_path": "G:\\images\\combined\\-1353-_png_jpg.rf.e0089f1d96232532b71f0f044f411558.jpg", - "response": "A group of men in red are working on an electrical tower.", - "id": 20942 - }, - { - "image_path": "G:\\images\\combined\\-1354-_png_jpg.rf.93199950bb50ecfeea161664ce8435d6.jpg", - "response": "A man wearing a yellow helmet and orange gloves is holding a large drill. He is crouching down and looking at the camera. There are pipes and wires on the wall behind him. The wall is a light grey color and the pipes and wires are a dark grey.", - "id": 20943 - }, - { - "image_path": "G:\\images\\combined\\-1358-_png_jpg.rf.ed19b1f8dbe51562f7a91f3a51d80268.jpg", - "response": "A construction worker points at something while standing between two yellow excavators.", - "id": 20944 - }, - { - "image_path": "G:\\images\\combined\\-1362-_png_jpg.rf.616cf1704eff742be992bc6b3101e9cb.jpg", - "response": "A couple of men in the snow looking at something.", - "id": 20945 - }, - { - "image_path": "G:\\images\\combined\\-1364-_png_jpg.rf.594a0eb3ee4e426c21a4ffb10cd51b0d.jpg", - "response": "A construction worker is using a jackhammer to break up a street.", - "id": 20946 - }, - { - "image_path": "G:\\images\\combined\\-1368-_png_jpg.rf.a87b0b24a1752eb58953ac2a49a184c9.jpg", - "response": "An electrician is climbing a telephone pole.", - "id": 20947 - }, - { - "image_path": "G:\\images\\combined\\-137-_png_jpg.rf.150edd0189bcaadefa7bdb6592db3e7e.jpg", - "response": "A construction site with workers and scaffolding.", - "id": 20948 - }, - { - "image_path": "G:\\images\\combined\\-1370-_png_jpg.rf.51166611937550a26f2324a6a0280fd6.jpg", - "response": "A group of men wearing orange and blue hard hats carrying a large metal pipe over their shoulders.", - "id": 20949 - }, - { - "image_path": "G:\\images\\combined\\-1371-_png_jpg.rf.89ae448a12a587462e8f19ffbba17301.jpg", - "response": "An electrician in a blue uniform and hard hat pointing to an electrical panel with multiple wires plugged in.", - "id": 20950 - }, - { - "image_path": "G:\\images\\combined\\-1373-_png_jpg.rf.eaa3be23dcbbf0a43f090eff1a6c4951.jpg", - "response": "In the image there is a group of construction workers working on a city street. They are wearing blue jumpsuits and red hard hats. Some of them are using shovels and there is a yellow and red fence in the background.", - "id": 20951 - }, - { - "image_path": "G:\\images\\combined\\-1375-_png_jpg.rf.9341e07ec0841a8ac562b2f4ddfeb81d.jpg", - "response": "A group of men working on a plane engine.", - "id": 20952 - }, - { - "image_path": "G:\\images\\combined\\-1376-_png_jpg.rf.b7779176090c1b1ecb99b3fe391ddf37.jpg", - "response": "A construction site with several people working on it.", - "id": 20953 - }, - { - "image_path": "G:\\images\\combined\\-1377-_png_jpg.rf.8a8c4f33232a92dcb9a0852fddce8ddb.jpg", - "response": "A man and woman standing in a room that is under construction. The man is holding a clipboard and pen and both he and the woman are wearing hard hats. The woman has long blonde hair and is wearing a black shirt with red stripes on the bottom.", - "id": 20954 - }, - { - "image_path": "G:\\images\\combined\\-1378-_png_jpg.rf.38ade97c3314c39d9ebb9b3ce6c36e5e.jpg", - "response": "The image shows two linemen, dressed in blue uniforms and hard hats, standing on a pole in a flooded area. They are working on repairing a power line.", - "id": 20955 - }, - { - "image_path": "G:\\images\\combined\\-1379-_png_jpg.rf.b65e5f6e7dc6ed4c21b8e5a32e3aa583.jpg", - "response": "A group of workers in blue uniform and yellow safety helmet are seen working on an electric post. They are wearing blue and yellow color uniform. The wall of the electric post is painted in green color.", - "id": 20956 - }, - { - "image_path": "G:\\images\\combined\\-1380-_png_jpg.rf.56a5b370fc2de2578aa1a1057f7d59e7.jpg", - "response": "A group of men in suits standing around a man who is cutting a yellow balloon with a knife.", - "id": 20957 - }, - { - "image_path": "G:\\images\\combined\\-1381-_png_jpg.rf.e53337a36cf882906e6af2b7c8318e28.jpg", - "response": "A man in a black jacket pointing to a sign.", - "id": 20958 - }, - { - "image_path": "G:\\images\\combined\\-1384-_png_jpg.rf.d98bb1e6365d2a502650fc9e8bc422fd.jpg", - "response": "A construction worker wearing a yellow hat and camouflage clothes is working on a building site. He is crouched down and is holding a hammer in his right hand. He is working on a roof of a building.", - "id": 20959 - }, - { - "image_path": "G:\\images\\combined\\-1385-_png_jpg.rf.6ad727ad65c0e056cebf44ed033903e5.jpg", - "response": "A group of people working on power lines.", - "id": 20960 - }, - { - "image_path": "G:\\images\\combined\\-1386-_png_jpg.rf.f7ac121544a0856a73eca688eca15fd8.jpg", - "response": "Four workers in a construction site wearing yellow, orange, and green vests and helmets.", - "id": 20961 - }, - { - "image_path": "G:\\images\\combined\\-1388-_png_jpg.rf.b0cc13d7fb1c17666b60fe2ab8df1f10.jpg", - "response": "In the image there is a group of men standing around each other, some of them are wearing hard hats. They are all holding bags with items in them. In the background there is a building and a few balloons floating in the air.", - "id": 20962 - }, - { - "image_path": "G:\\images\\combined\\-1390-_png_jpg.rf.30a0996cda4e602e5e6b73b9651665c8.jpg", - "response": "A couple of men working in a muddy area.", - "id": 20963 - }, - { - "image_path": "G:\\images\\combined\\-1391-_png_jpg.rf.36c1492b48a27de5c2cc7378627d3976.jpg", - "response": "a group of men walking down a street", - "id": 20964 - }, - { - "image_path": "G:\\images\\combined\\-1392-_png_jpg.rf.801b3172a99746c829b8bdc2529e0f79.jpg", - "response": " Workers(537,442),(633,586)(328,327),(455,709)(96,286),(301,997) at the site of the train derailment in north China's Hebei Province, Dec. 10, 2018.", - "id": 20965 - }, - { - "image_path": "G:\\images\\combined\\-1394-_png_jpg.rf.425ce24570d60e8a395edebd57a034ba.jpg", - "response": "A group of people standing around a table.", - "id": 20966 - }, - { - "image_path": "G:\\images\\combined\\-1395-_png_jpg.rf.bf5bca7c5a4c243f49e0c762485e1929.jpg", - "response": "In the image there are several construction workers at a construction site. They are working on a large concrete structure that resembles a honeycomb. Some workers are welding metal rods together to reinforce the structure. One worker is wearing a yellow hard hat and sunglasses, while another worker is wearing a yellow hard hat and a white t-shirt with a blue logo on it. There is a yellow helmet hanging on the side of the structure and a blue pipe in the foreground. The sky is a mix of blue and white and there are a few clouds in the sky.", - "id": 20967 - }, - { - "image_path": "G:\\images\\combined\\-1396-_png_jpg.rf.5937027a8b654a9ec18c1bdeffe2d81e.jpg", - "response": "A group of men working on a building.", - "id": 20968 - }, - { - "image_path": "G:\\images\\combined\\-1398-_png_jpg.rf.279cb0b961fd0f95b8c352b24dd1a6a3.jpg", - "response": "A group of people walking across a dirt field.", - "id": 20969 - }, - { - "image_path": "G:\\images\\combined\\-1399-_png_jpg.rf.b35c14717c0b48627b00813b9f5123e1.jpg", - "response": "A construction site with multiple workers.", - "id": 20970 - }, - { - "image_path": "G:\\images\\combined\\-14-_png_jpg.rf.b3c3337888af98807df3ecace33c7b7c.jpg", - "response": "In the image, there are two workers, one is on the left and the other is on the right. They are both wearing brown work clothes and orange helmets. The worker on the right is holding a black pipe with both hands, and the other worker is controlling a crane with a remote control behind him. The crane is lifting a red helmet and a black pipe. The background is a clear blue sky.", - "id": 20971 - }, - { - "image_path": "G:\\images\\combined\\-140-_png_jpg.rf.3e978b5abec1fa70a5ae7b6e514bcacd.jpg", - "response": "A man in a uniform and hard hat is on a power line.", - "id": 20972 - }, - { - "image_path": "G:\\images\\combined\\-1401-_png_jpg.rf.b17222af7fe73120f8932ad28f5094b0.jpg", - "response": "A worker is using a tool to work with some metal that is on fire. The metal is glowing red and there is a lot of sparks coming from it. The worker is standing next to a large metal container and there is a chair next to them. The background is blurry and there is a symbol of a head with a hat on the wall behind the worker.", - "id": 20973 - }, - { - "image_path": "G:\\images\\combined\\-1403-_png_jpg.rf.f27d2a942bbb6f09fe6b507fe018d258.jpg", - "response": "The image is a collage of several images of shirtless men wearing hard hats and working in a cave. One man is pouring a yellow liquid into a plastic cup, another is pouring a yellow liquid into a clear plastic bag, and the third is standing in a pool of yellow liquid. The image is tagged with the words \"CHINA\" and \"WATER\".", - "id": 20974 - }, - { - "image_path": "G:\\images\\combined\\-1405-_png_jpg.rf.637bd097be91d6e195814d6675385260.jpg", - "response": "A man in a high visibility vest walking through a gravel pit.", - "id": 20975 - }, - { - "image_path": "G:\\images\\combined\\-1409-_png_jpg.rf.5428f17835bc55a4044f70e86d4bf8eb.jpg", - "response": "A man in a blue shirt and red helmet is shaking hands with another man in a camo shirt and orange helmet. Both men are in front of a group of other men, some of whom are also wearing hard hats. They are all standing in a large building that is still under construction.", - "id": 20976 - }, - { - "image_path": "G:\\images\\combined\\-1410-_png_jpg.rf.433911bc80cd3e7ab14bde50c872def4.jpg", - "response": "A group of six men working in a mine.", - "id": 20977 - }, - { - "image_path": "G:\\images\\combined\\-1411-_png_jpg.rf.5d068d67cae60c597109fc168a7c0f39.jpg", - "response": "Four workers in safety gear standing under a bridge they are building.", - "id": 20978 - }, - { - "image_path": "G:\\images\\combined\\-1412-_png_jpg.rf.c735c43a22ef13a0cbdf4272264605f5.jpg", - "response": "A group of people working on a building site.", - "id": 20979 - }, - { - "image_path": "G:\\images\\combined\\-1414-_png_jpg.rf.28c886f6d194494914a4fdb57486fb1c.jpg", - "response": "A group of men in blue overalls and yellow hats are working on a large tower.", - "id": 20980 - }, - { - "image_path": "G:\\images\\combined\\-1415-_png_jpg.rf.86caf13bc80a357219a5c82ca24a3fbf.jpg", - "response": "A group of men in orange work suits and yellow hard hats are working on a pole.", - "id": 20981 - }, - { - "image_path": "G:\\images\\combined\\-1416-_png_jpg.rf.27d083442e58ebde085702af8f6acfc9.jpg", - "response": "A pair of men standing in front of a stack of shipping containers. One man is wearing a black jacket and a hard hat, the other is wearing a brown jacket.", - "id": 20982 - }, - { - "image_path": "G:\\images\\combined\\-1418-_png_jpg.rf.e53fe5af6ee15ceaa2a66ab2def90edc.jpg", - "response": "The image shows two workers on a platform at an oil drilling site. They are wearing orange work clothes and yellow helmets. The drilling rig is in the background. In the foreground, there are many black tubes connected to the rig.", - "id": 20983 - }, - { - "image_path": "G:\\images\\combined\\-1419-_png_jpg.rf.38392c2814692c1f7b2654d9141355b1.jpg", - "response": "a group of men standing around a construction site", - "id": 20984 - }, - { - "image_path": "G:\\images\\combined\\-142-_png_jpg.rf.ff1cfcc2dd2cd08583d89ec40698cbee.jpg", - "response": "A group of men in suits and hard hats are walking down a street.", - "id": 20985 - }, - { - "image_path": "G:\\images\\combined\\-1420-_png_jpg.rf.f2df1d2978b36ead85b1d5be01dbc72f.jpg", - "response": "A group of men in blue uniforms and yellow hard hats are working on a large white circular object. They are standing on a sidewalk and there is a street light shining on them.", - "id": 20986 - }, - { - "image_path": "G:\\images\\combined\\-1421-_png_jpg.rf.6d8971b21df2b5a9921f813874838b49.jpg", - "response": "The image shows a man in a snowstorm. He is wearing a black and orange ski jacket, black pants, and a blue hat. He is holding a ski pole in his right hand and a rope in his left hand. He is crouching down and looking at something. He appears to be in the snow.", - "id": 20987 - }, - { - "image_path": "G:\\images\\combined\\-1422-_png_jpg.rf.8dd6110ba96f5d6bb842e2c5b663f199.jpg", - "response": "A man in a red hard hat is standing on a construction site. He is wearing a black shirt and has a beard. He is pointing at something on a wall of steel rebar\u7b3c. There are several other people standing around him, also in hard hats. In the background, there is a red tower crane and a few other people.", - "id": 20988 - }, - { - "image_path": "G:\\images\\combined\\-1424-_png_jpg.rf.fcaa98ee89a48fc273e5c2239f6cd218.jpg", - "response": "A man in a grey shirt is being rescued by firefighters and a man in a green uniform. They are all working together to get the man out of the construction site.", - "id": 20989 - }, - { - "image_path": "G:\\images\\combined\\-1427-_png_jpg.rf.ffe0280738c1996f38d1d0d687320ff5.jpg", - "response": "A poster of workers on a power tower.", - "id": 20990 - }, - { - "image_path": "G:\\images\\combined\\-1428-_png_jpg.rf.7fc469bf02b498eb5f2d897238a00e64.jpg", - "response": "The image shows a snowy mountain scene with two workers in the midst of it all. They are in the middle of the picture, with one on the left and the other on the right. They are both dressed in bright orange safety jackets. The leftmost worker is closer to the foreground and is climbing a snowy hill. The rightmost worker is further back and is looking at the wires. The wires are covered in snow and ice, with large ice chunks attached to some of them. The workers are handling this dangerous situation with care.", - "id": 20991 - }, - { - "image_path": "G:\\images\\combined\\-1430-_png_jpg.rf.082df15999e62160d5ba81dcac0f80b5.jpg", - "response": "The image shows a group of workers in orange jumpsuits and yellow hard hats working on a large piece of equipment. They are in a large warehouse-like space with a white machine on the left and a large white box on the right. The floor is a brownish color and the workers are standing on it. There are also two other people in the image, one in the background on the left and one on the right side of the image.", - "id": 20992 - }, - { - "image_path": "G:\\images\\combined\\-1431-_png_jpg.rf.fa49d0e99937f870a05eedb30e3ef47b.jpg", - "response": "a group of men standing around a machine and looking at it", - "id": 20993 - }, - { - "image_path": "G:\\images\\combined\\-1432-_png_jpg.rf.fa7b4197fdd94b24b45d0ec64527cf6b.jpg", - "response": "a group of men standing on a construction site", - "id": 20994 - }, - { - "image_path": "G:\\images\\combined\\-1434-_png_jpg.rf.04b6c729f9dfb285fb0ea76f7061c0a9.jpg", - "response": "A man in a suit and a hard hat is talking to a man in overalls and a hard hat. They are both smiling. There are three hard hats floating in the air. One is yellow, one is blue, and one is red.", - "id": 20995 - }, - { - "image_path": "G:\\images\\combined\\-1437-_png_jpg.rf.16d95274305d365b7487247f55e9ec17.jpg", - "response": "A man wearing a yellow hard hat and safety glasses looking up at a yellow hard hat that is floating in the air. The man is also wearing a yellow work suit.", - "id": 20996 - }, - { - "image_path": "G:\\images\\combined\\-1438-_png_jpg.rf.d8d17ea0ceeb9c1ac4bc0e33f7d20960.jpg", - "response": "A group of men in business suits and hard hats stand in a circle around a hole in the ground.", - "id": 20997 - }, - { - "image_path": "G:\\images\\combined\\-1439-_png_jpg.rf.ba222c044ee795abe3ceaa1ba0a7fad9.jpg", - "response": "A worker in white uniform and blue helmet is repairing an electricity post.", - "id": 20998 - }, - { - "image_path": "G:\\images\\combined\\-144-_png_jpg.rf.ae3e606a11758cbac1d9110e9925232b.jpg", - "response": "Some people are working on a construction site.", - "id": 20999 - }, - { - "image_path": "G:\\images\\combined\\-1440-_png_jpg.rf.fb2c6cc12607195a2e2b2a61e087f301.jpg", - "response": "The image shows a large tunnel under construction. The tunnel is blue and yellow and is currently unoccupied. There are three people in the image, two on the right side and one in the center. The person in the center is carrying a shovel. The image also shows a boat in the foreground and a bridge in the background.", - "id": 21000 - }, - { - "image_path": "G:\\images\\combined\\-1442-_png_jpg.rf.de28390adea4bca9fd47fddd86628df2.jpg", - "response": "Men in orange vests and hard hats stand in front of a large metal structure.", - "id": 21001 - }, - { - "image_path": "G:\\images\\combined\\-1444-_png_jpg.rf.e3e75d48ad2f51c2472aaaa42fcc480c.jpg", - "response": "In the image there is a factory worker dressed in an orange uniform and a yellow hard hat who is working on a piece of machinery. The factory is filled with various machines and the worker is sitting on a metal platform in the midst of it all. They are holding a wire and a sparkler is coming out of the end of it. There are also two other people in the factory, one is wearing a white jacket and blue jeans and the other is wearing a white jacket and black pants.", - "id": 21002 - }, - { - "image_path": "G:\\images\\combined\\-1447-_png_jpg.rf.d3c496c6da1f4584ed7cc12b160ca31e.jpg", - "response": "A group of people standing in front of a large metal structure and a construction site.", - "id": 21003 - }, - { - "image_path": "G:\\images\\combined\\-1448-_png_jpg.rf.0bb28410fe438d466c10fbd938b364dc.jpg", - "response": "This image features a group of four men standing in a factory. They are all wearing yellow hard hats, and the man on the right is wearing a white shirt, a blue tie, and black pants. The man second from the right is wearing a black jacket and white pants. The man on the left is wearing a navy blue jacket and white pants. They are all engaged in conversation.", - "id": 21004 - }, - { - "image_path": "G:\\images\\combined\\-1449-_png_jpg.rf.b75e302ab2c610c186ae9bd9e53a5500.jpg", - "response": "A close up of two people in a warehouse. One person is wearing a yellow jacket and a hard hat and is holding a tablet. The other person is wearing a blue jacket and has a yellow sleeve. They are both looking at the tablet.", - "id": 21005 - }, - { - "image_path": "G:\\images\\combined\\-145-_png_jpg.rf.d2a79e58d2204b97f96deaedb2e2ad4b.jpg", - "response": "A group of five men in red coveralls and yellow hard hats stand around a valve on a oil rig.", - "id": 21006 - }, - { - "image_path": "G:\\images\\combined\\-1450-_png_jpg.rf.3bf12d1d630677a52e02e894d5641044.jpg", - "response": "A group of construction workers are working on a large tunnel.", - "id": 21007 - }, - { - "image_path": "G:\\images\\combined\\-1454-_png_jpg.rf.8dc949a986813a7106f154176722aeb1.jpg", - "response": "A group of men standing around a bus.", - "id": 21008 - }, - { - "image_path": "G:\\images\\combined\\-1455-_png_jpg.rf.d31d9f48abd0fe50d0deba4b40a9d809.jpg", - "response": "Some construction workers are working on a building site. They are building a tall building with yellow beams. There are blue balls in the air. The sky is blue and there are a few clouds. In the distance you can see the skyline of a city.", - "id": 21009 - }, - { - "image_path": "G:\\images\\combined\\-1456-_png_jpg.rf.86b2aede8e96988a9ab2e2963ae65c79.jpg", - "response": "The image shows five people standing on different levels of a lattice tower. The tower is made of metal and stands on a mountain. The people are wearing black uniforms. The sky is overcast and there are mountains in the background. A caption in red at the top of the image reads \"\u767c\u96fb\u5de5\u4eba\u5728\u9ad8\u58d3\u7dda\u8def\u4e0a\u5de5\u4f5c\u6642\u9700\u8981\u6ce8\u610f\u7684\u4e8b\u9805\", which translates to \"\u6ce8\u610f\u4e8b\u9879-\u9ad8\u538b\u7ebf\u8def\u4e0a\u5de5\u4f5c\u65f6\u7684\u5b89\u5168\u4e8b\u9879\". Below the image, two news articles can be seen, one with the title \"\u8f38\u96fb\u5de5\u4eba\u5728\u9ad8\u5c71\u4e0a\u4f5c\u696d\u6642\u9700\u8981\u6ce8\u610f\u7684\u4e8b\u9805\" and the other with the title \"\u8f38\u96fb\u5de5\u4eba\u5728\u9ad8\u5c71\u4e0a\u4f5c\u696d\u6642\u9700\u8981\u6ce8\u610f\u7684\u4e8b\u9805-\u9ad8\u8655\u4f5c\u696d\".", - "id": 21010 - }, - { - "image_path": "G:\\images\\combined\\-1457-_png_jpg.rf.b21a9e1ebea46f206393d56c793885ec.jpg", - "response": "A worker in a blue hard hat and coveralls is working on a piece of equipment.", - "id": 21011 - }, - { - "image_path": "G:\\images\\combined\\-1458-_png_jpg.rf.fdb22d089c69cd0ef64dbd4cdf43222a.jpg", - "response": "A large tunneling machine is shown here, with a man standing on the ground working on it.", - "id": 21012 - }, - { - "image_path": "G:\\images\\combined\\-1459-_png_jpg.rf.7389295bbf74634b7df3ac0953cd72f9.jpg", - "response": "A worker in a blue jacket and a red helmet is using a tool to measure something.", - "id": 21013 - }, - { - "image_path": "G:\\images\\combined\\-146-_png_jpg.rf.914734a73dcca455c485ded5f9e3fab9.jpg", - "response": "A group of men standing in front of a mountain.", - "id": 21014 - }, - { - "image_path": "G:\\images\\combined\\-1461-_png_jpg.rf.d56da8f16c9157d0dde5d24df8be4e30.jpg", - "response": "A group of men standing in front of a building.", - "id": 21015 - }, - { - "image_path": "G:\\images\\combined\\-1463-_png_jpg.rf.a29cc2ae27d431344c416eb872ce7cd3.jpg", - "response": "The image shows a group of people working on a construction site. They are building a framework for a floor, with many steel beams and wires visible. The sky is blue and there are a few clouds in the distance. The photo is taken from the perspective of someone looking at the construction site.", - "id": 21016 - }, - { - "image_path": "G:\\images\\combined\\-1464-_png_jpg.rf.c42a4a851ce1a79c45b325ba64df5a1c.jpg", - "response": "A group of men working on an electrical tower.", - "id": 21017 - }, - { - "image_path": "G:\\images\\combined\\-1466-_png_jpg.rf.322813fed5b1e01d21f3742cbeaa52a8.jpg", - "response": "A group of men in green uniforms and yellow hats are working on a street light. They are fixing the street light that is in the middle of the street.", - "id": 21018 - }, - { - "image_path": "G:\\images\\combined\\-1467-_png_jpg.rf.67dc3867e1d4f4312eab9def9f11e01c.jpg", - "response": "A man in a yellow hard hat standing in front of a body of water with a large ship in the background.", - "id": 21019 - }, - { - "image_path": "G:\\images\\combined\\-1468-_png_jpg.rf.c072a497334b2c5c768ab5fb77749d49.jpg", - "response": "a man standing in a park with a small tree and a walking trail", - "id": 21020 - }, - { - "image_path": "G:\\images\\combined\\-147-_png_jpg.rf.5fc70b89b0962d4f395a7eb9b118fc26.jpg", - "response": "A group of people standing around a yellow and red piece of heavy machinery.", - "id": 21021 - }, - { - "image_path": "G:\\images\\combined\\-1471-_png_jpg.rf.25582fd5667b3aa44f861b1e1126fca1.jpg", - "response": "A man in a hard hat is on a cherry picker, working on power lines.", - "id": 21022 - }, - { - "image_path": "G:\\images\\combined\\-1474-_png_jpg.rf.c2cede6256935993c702e11af47c352d.jpg", - "response": "The image is a collage of several photos. The main photo is of workers in yellow hard hats and safety vests working on a road. There are also photos of tools including hammers, drills, and chainsaws. The collage is set against a white background.", - "id": 21023 - }, - { - "image_path": "G:\\images\\combined\\-1475-_png_jpg.rf.d4d20499394ec7e0520c4409cdfb2994.jpg", - "response": "A group of people working on a construction site.", - "id": 21024 - }, - { - "image_path": "G:\\images\\combined\\-1477-_png_jpg.rf.fb41490288ed1f51d2157aa37061edb2.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is using a power tool.", - "id": 21025 - }, - { - "image_path": "G:\\images\\combined\\-1479-_png_jpg.rf.12f32a84ac73106f1189a28aa3031e03.jpg", - "response": "A man and a woman wearing orange safety vests and red hard hats stand in a field with an oil rig in the background. The woman is holding a clipboard and the man is holding a red hard hat. There are three other red hard hats floating in the air.", - "id": 21026 - }, - { - "image_path": "G:\\images\\combined\\-148-_png_jpg.rf.c4a13312be321ebb501f625f72307cc7.jpg", - "response": "Some construction workers are working on a red roof.", - "id": 21027 - }, - { - "image_path": "G:\\images\\combined\\-1480-_png_jpg.rf.87eed9e1cbeead9bf44dc83dd04084e2.jpg", - "response": "a group of men standing around holding umbrellas", - "id": 21028 - }, - { - "image_path": "G:\\images\\combined\\-1482-_png_jpg.rf.6b806b76084cd662c404c216da84657a.jpg", - "response": "The picture shows three workers in red uniforms and yellow helmets who are repairing power transmission lines. Two of them are in red uniforms and yellow helmets who are repairing power transmission lines on the pole, and the third worker is in green clothes who is assisting them. The power pole is gray and the transmission lines are black. The sky is white and the workers are also wearing white shoes.", - "id": 21029 - }, - { - "image_path": "G:\\images\\combined\\-1483-_png_jpg.rf.14191db8060e474f5c75a366d9228a2a.jpg", - "response": "A worker in a red uniform and white hard hat is working on a large electrical transformer. The transformer is painted orange and white, and has many metal coils and spools. The worker is standing on a ladder and is focused on the task at hand.", - "id": 21030 - }, - { - "image_path": "G:\\images\\combined\\-1484-_png_jpg.rf.c905e4c16d57ad9b5be3a3061873529a.jpg", - "response": "A man in a yellow vest and white helmet is placing bricks on a wall. He is crouched down and working on the wall.", - "id": 21031 - }, - { - "image_path": "G:\\images\\combined\\-1485-_png_jpg.rf.fea4897f0746971da36e3158d1a693e0.jpg", - "response": "A group of men working on a construction site.", - "id": 21032 - }, - { - "image_path": "G:\\images\\combined\\-1486-_png_jpg.rf.bfbd3a5371dacafbdb9579065bb5b722.jpg", - "response": "A worker in a white hard hat is holding a phone.", - "id": 21033 - }, - { - "image_path": "G:\\images\\combined\\-1487-_png_jpg.rf.ccb58ba45abb28eff757c5609f83bbfc.jpg", - "response": "In the image there are four people working on fixing a power line. Two of them are up in a yellow crane working on the line while the other two are on the ground holding the crane. The people are wearing blue uniforms. The background is a mixture of trees and sky.", - "id": 21034 - }, - { - "image_path": "G:\\images\\combined\\-149-_png_jpg.rf.c17836f3dcba9700a0a3245a5b68d437.jpg", - "response": "A group of men standing in a cave.", - "id": 21035 - }, - { - "image_path": "G:\\images\\combined\\-1493-_png_jpg.rf.2a9c0423a94c73244430bd171dc88263.jpg", - "response": "A group of workers are working on a building.", - "id": 21036 - }, - { - "image_path": "G:\\images\\combined\\-1495-_png_jpg.rf.4f10e231bf74af268ed9430cc948ba0f.jpg", - "response": "A group of men in blue helmets are working on a piece of equipment. They are all wearing red and blue jackets and gloves. One man is kneeling down and holding a tool while another man is standing and looking at something. There is a box on the ground and a white box to the right of the men. There are also several wires and a pipe in the scene.", - "id": 21037 - }, - { - "image_path": "G:\\images\\combined\\-1496-_png_jpg.rf.71c2eb70923dd1e029eaa46df37ab349.jpg", - "response": "A man is working on some power lines on a hill.", - "id": 21038 - }, - { - "image_path": "G:\\images\\combined\\-1497-_png_jpg.rf.b1ab1cc767c58eeb9d39500ec33293e3.jpg", - "response": "A group of men working on a building.", - "id": 21039 - }, - { - "image_path": "G:\\images\\combined\\-1498-_png_jpg.rf.9bad709cedbeb96ce870c73f17e18024.jpg", - "response": " Workers(2,184),(214,996)(247,234),(469,688)(723,5),(996,995) at the site of the accident", - "id": 21040 - }, - { - "image_path": "G:\\images\\combined\\-1499-_png_jpg.rf.c7e784e5b3b6ddedf0d340df765beea7.jpg", - "response": "A group of three men in blue hats are working on a large white box. The men are wearing grey jumpers and blue hats. The box they are working on is filled with wires and electric parts. The sky is blue and clear. There are two buildings in the background, one is yellow and the other is pink. There is a blue ladder on the left side of the image and a yellow one on the right. There is a traffic light on a red post on the left side of the image and a power line running across the top of the image.", - "id": 21041 - }, - { - "image_path": "G:\\images\\combined\\-15-_png_jpg.rf.649ce1a405abb1db1447f5a668de8f88.jpg", - "response": "A transmission tower with three men working on it.", - "id": 21042 - }, - { - "image_path": "G:\\images\\combined\\-150-_png_jpg.rf.a44b762c496fe76651bd866a6c29fd1b.jpg", - "response": "A man in a blue helmet and work clothes is pulling on a black cable while another man in a red helmet and work clothes is pulling on it. They are standing in a field with water all around them.", - "id": 21043 - }, - { - "image_path": "G:\\images\\combined\\-1503-_png_jpg.rf.9c8e7716b801807775da570192417dd2.jpg", - "response": "Rescue workers in China are seen digging through the mud to save a woman who was buried alive in a landslide.", - "id": 21044 - }, - { - "image_path": "G:\\images\\combined\\-1504-_png_jpg.rf.788fc22d8c834344b6f2daad8b350141.jpg", - "response": "The image shows a group of men working in a hole in the ground. Some men are wearing blue uniforms and safety hats. One man is using a tool to dig into the ground. Another man is using a large black scoop to dig into the ground. A third man is holding a large black scoop. A fourth man is holding a large black stick. A fifth man is standing behind the group, wearing a blue uniform and a safety hat. A sixth man is standing behind the group, wearing a blue uniform and a safety hat. A seventh man is standing behind the group, wearing a blue uniform and a safety hat. A eighth man is standing behind the group, wearing a blue uniform and a safety hat. A ninth man is standing behind the group, wearing a blue uniform and a safety hat. A tenth man is standing behind the group, wearing a blue uniform and a safety hat.", - "id": 21045 - }, - { - "image_path": "G:\\images\\combined\\-1505-_png_jpg.rf.d5b7b9edd13b3144159f4e268ff31d2c.jpg", - "response": "In the image there is a person wearing a red hard hat and a helmet with a red and yellow design on it. The person is standing next to a large transformer with a yellow and black design on it. The person is also standing next to a yellow and black transformer. In the background there are three birds flying in the sky.", - "id": 21046 - }, - { - "image_path": "G:\\images\\combined\\-1509-_png_jpg.rf.0592707abfb9e4b95d64cbb98d1e62f5.jpg", - "response": "The image shows a group of men working in a mine. They are wearing hard hats and protective gear. Some of them are standing on a wooden platform, which is built into the side of the mine shaft. There are several pickaxes and other tools scattered around the platform. In the background, there are other miners working further down the mine shaft. The lighting in the mine is dim, and the air appears to be hazy.", - "id": 21047 - }, - { - "image_path": "G:\\images\\combined\\-1512-_png_jpg.rf.776b49f130974735157faceab61872de.jpg", - "response": "Two men in hard hats standing on a roof with blueprints", - "id": 21048 - }, - { - "image_path": "G:\\images\\combined\\-1513-_png_jpg.rf.a9f19c142e95620f50e8fc3795999c4e.jpg", - "response": "A man and a woman wearing safety gear stand in front of a large ship. The woman is holding a clipboard and pen.", - "id": 21049 - }, - { - "image_path": "G:\\images\\combined\\-1516-_png_jpg.rf.b7c77b873e065d491fc7918c49b987f2.jpg", - "response": "A few men in blue jumpsuits and yellow hard hats are working on telephone wires.", - "id": 21050 - }, - { - "image_path": "G:\\images\\combined\\-152-_png_jpg.rf.4f4a5a796469474ce60f89ea2435fe63.jpg", - "response": "Four construction workers in hard hats and high visibility vests are discussing a set of plans. They are standing in a construction site with scaffolding and building materials around them.", - "id": 21051 - }, - { - "image_path": "G:\\images\\combined\\-1521-_png_jpg.rf.d9593fbce78cc16cf0d809f9e54cadde.jpg", - "response": "A man is standing in front of a large fire with a shovel.", - "id": 21052 - }, - { - "image_path": "G:\\images\\combined\\-1524-_png_jpg.rf.deac7695edbf6fe8c31a22474bfe810d.jpg", - "response": "The picture shows a group of people wearing red hats walking under an under construction building. Some of the people are wearing suits and ties. One person on the left is carrying a bag.", - "id": 21053 - }, - { - "image_path": "G:\\images\\combined\\-1527-_png_jpg.rf.eb6fc434826ecacaa73dc86096a7bfdf.jpg", - "response": "A construction site with multiple construction workers visible.", - "id": 21054 - }, - { - "image_path": "G:\\images\\combined\\-1529-_png_jpg.rf.58f8cb8b767de842d49fe170afe51779.jpg", - "response": "A group of people standing around a construction site.", - "id": 21055 - }, - { - "image_path": "G:\\images\\combined\\-153-_png_jpg.rf.0e27c03ddb9d0b49e1837faa9e18f89d.jpg", - "response": "A group of men in blue uniforms working on a traffic light that is laying on its side in a hole in the ground. The men are working on the bottom of the traffic light that is mostly covered by weeds.", - "id": 21056 - }, - { - "image_path": "G:\\images\\combined\\-1530-_png_jpg.rf.8141f41ef602581a258850f35fd93819.jpg", - "response": "A group of men standing around a construction site.", - "id": 21057 - }, - { - "image_path": "G:\\images\\combined\\-1532-_png_jpg.rf.81c55e0c4600ea024a69c8dfc91b0691.jpg", - "response": "A construction site with several people working on a building.", - "id": 21058 - }, - { - "image_path": "G:\\images\\combined\\-1536-_png_jpg.rf.271488d564770fd59c2ab9d1b43ffc02.jpg", - "response": "In the image there are several workers in orange vests and yellow helmets who are working on a bridge. They are wearing red and yellow uniforms and are repairing a part of the bridge. There is a silver column in the middle of the bridge on which the workers are working. They are using yellow tools to repair the bridge. The bridge has a grey metal structure and is located above a road.", - "id": 21059 - }, - { - "image_path": "G:\\images\\combined\\-1538-_png_jpg.rf.78341ac94924a387cd283e908aaa7c73.jpg", - "response": "A group of people standing around a construction site.", - "id": 21060 - }, - { - "image_path": "G:\\images\\combined\\-1539-_png_jpg.rf.4fd1b1015812f686bf0c54e8a525c00b.jpg", - "response": "A man in a yellow jacket and red hard hat is handling bricks.", - "id": 21061 - }, - { - "image_path": "G:\\images\\combined\\-154-_png_jpg.rf.267a8c94a219f612068dc61160eb6043.jpg", - "response": "A construction worker standing on top of a metal structure.", - "id": 21062 - }, - { - "image_path": "G:\\images\\combined\\-1541-_png_jpg.rf.32cb4415017581ca777fa8e1c03af3cb.jpg", - "response": "A group of men working on a construction site.", - "id": 21063 - }, - { - "image_path": "G:\\images\\combined\\-1543-_png_jpg.rf.12dd5220af43711fed321a2f798c468f.jpg", - "response": "a group of people standing around looking at some steel", - "id": 21064 - }, - { - "image_path": "G:\\images\\combined\\-1544-_png_jpg.rf.e90d9e83f3368142c61f4c7524a0e823.jpg", - "response": "A picture of a group of people working on a snowy surface. They are all wearing blue helmets and some are holding snow shovels.", - "id": 21065 - }, - { - "image_path": "G:\\images\\combined\\-1545-_png_jpg.rf.65bbd53c729058b06bdccde51acf3c8f.jpg", - "response": "A group of people standing in front of a wall with a sign that says \"\u649e\u649e\u4e50\" and \"\u649e\u51fb\u4f53\u9a8c\u5c4b\".", - "id": 21066 - }, - { - "image_path": "G:\\images\\combined\\-1547-_png_jpg.rf.6ab595d45a6d01ee81528849d055ccec.jpg", - "response": "A group of men in hard hats and coveralls are working on an electrical tower. They are standing around the tower and working on various parts of it. Some men are focused on a particular area while others are looking up at the tower. There is a large insulator on the tower and a group of men are working on it. There are also some men working on the ground, one of them is holding a tool.", - "id": 21067 - }, - { - "image_path": "G:\\images\\combined\\-1548-_png_jpg.rf.09589a7cf7002a385640027826fe3d21.jpg", - "response": "A worker in a blue shirt and blue hat is standing in front of a yellow valve. The valve is large and has a lot of wires and hoses attached to it. The worker is adjusting a wheel on the valve.", - "id": 21068 - }, - { - "image_path": "G:\\images\\combined\\-155-_png_jpg.rf.5d06d40f65a81c1cad54f6f20b232935.jpg", - "response": "A group of men in hard hats are working on an electrical box.", - "id": 21069 - }, - { - "image_path": "G:\\images\\combined\\-1551-_png_jpg.rf.a70ec941b3408aced7102f1bf6542338.jpg", - "response": "A group of people standing in front of a building site.", - "id": 21070 - }, - { - "image_path": "G:\\images\\combined\\-1553-_png_jpg.rf.d9be0422be2fdf19766c0682d202606c.jpg", - "response": "Two men(117,155),(489,999)(602,187),(829,999) standing in the snow", - "id": 21071 - }, - { - "image_path": "G:\\images\\combined\\-1556-_png_jpg.rf.9c6e376d0367611e62ea17a7c62adefc.jpg", - "response": "A group of people standing around a blueprint.", - "id": 21072 - }, - { - "image_path": "G:\\images\\combined\\-1557-_png_jpg.rf.c6fc36b7cc6b5f394fc9d541e5982aaa.jpg", - "response": "The photo shows two workers in the foreground, both wearing hard hats and camouflage uniforms. One worker is in the center of the frame, holding a large white pipe while the other is towards the right side of the frame, wearing a blue helmet and holding a tool. They are both on a red platform that is elevated on the left side of the photo, overlooking a city in the background. The sky is blue and there are a few clouds. In the foreground, there is a large building under construction with a blue steel frame and many windows.", - "id": 21073 - }, - { - "image_path": "G:\\images\\combined\\-1558-_png_jpg.rf.be58418f159e6d4984a2f29c609e87d2.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 21074 - }, - { - "image_path": "G:\\images\\combined\\-1559-_png_jpg.rf.3d9c1982a34572a7a71094d699bc5486.jpg", - "response": "A man and woman are shaking hands in front of a building under construction. The man is wearing a yellow hard hat and a gray t-shirt. The woman is wearing a white shirt and a blue and white apron. The sky is blue with large white clouds.", - "id": 21075 - }, - { - "image_path": "G:\\images\\combined\\-156-_png_jpg.rf.dd63df3e923435060f0b5815f3813958.jpg", - "response": "A couple of men working on a power line in the snow.", - "id": 21076 - }, - { - "image_path": "G:\\images\\combined\\-1561-_png_jpg.rf.7a2005e82f4d227aedfece8765649112.jpg", - "response": "In the image there are three people on a construction site, a male and two females. The male is wearing a yellow hard hat and holding a white printer. The two females are both wearing light blue long-sleeved shirts and are both carrying white bags. They are all smiling and shaking hands. They are standing on a set of stairs with a blue sky with clouds in the background.", - "id": 21077 - }, - { - "image_path": "G:\\images\\combined\\-1562-_png_jpg.rf.93dcb92bc01aeac72204c5f88ce9b833.jpg", - "response": "A group of linemen working on power lines.", - "id": 21078 - }, - { - "image_path": "G:\\images\\combined\\-1563-_png_jpg.rf.f5cb711078887ff4d1d4876a9bc731b5.jpg", - "response": "A worker sits on a pile of material in a field.", - "id": 21079 - }, - { - "image_path": "G:\\images\\combined\\-1565-_png_jpg.rf.9e9f6f7ca154288a4483711aa62ccc63.jpg", - "response": "A man in a suit and tie is speaking to a group of men in front of a mountain. They are all wearing hard hats.", - "id": 21080 - }, - { - "image_path": "G:\\images\\combined\\-1566-_png_jpg.rf.7a82c6a98b7577f94d6eccda37baf1de.jpg", - "response": "The image shows a street scene in a city. A yellow police line stretches across the street, blocking off a section of the road. There are several people standing on the pavement on the opposite side of the road. A car is parked on the right side of the street, and another on the left. In the background, there is a tall building.", - "id": 21081 - }, - { - "image_path": "G:\\images\\combined\\-1567-_png_jpg.rf.121c9a61b1c980eef3cab5bdb50fa0e2.jpg", - "response": "A construction site with a man wearing a red helmet and a blue and white shirt using a red and grey excavator.", - "id": 21082 - }, - { - "image_path": "G:\\images\\combined\\-1569-_png_jpg.rf.c34c604808373d87aac9f131c346f7d4.jpg", - "response": "A man in a suit and hard hat is holding a white and blue pipe. Another man in an orange hard hat is standing next to him. They are both in a warehouse with many other metal bars of different sizes and colors.", - "id": 21083 - }, - { - "image_path": "G:\\images\\combined\\-157-_png_jpg.rf.2d9bf44484deb30d95c0786c2c934488.jpg", - "response": "A group of men standing on top of a construction site.", - "id": 21084 - }, - { - "image_path": "G:\\images\\combined\\-1571-_png_jpg.rf.f17d84ae449f71b082d0c8e00010c2a8.jpg", - "response": "A large truck is pouring concrete into a large hole in the ground.", - "id": 21085 - }, - { - "image_path": "G:\\images\\combined\\-1573-_png_jpg.rf.169ca092069cd8916ff0e97044afc467.jpg", - "response": "A picture of three men standing in front of a large ship's propeller. The propeller is gold colored and is located in the center of the image. The men are wearing hard hats and are smiling at the camera. The man on the left is wearing a white shirt with a red and blue checkered pattern on the chest. The man in the middle is wearing a brown shirt with a white square pattern on the chest. The man on the right is wearing a grey shirt.", - "id": 21086 - }, - { - "image_path": "G:\\images\\combined\\-1574-_png_jpg.rf.445c39d25f2b242ffbca9b278b477f0e.jpg", - "response": "A building with a sign that reads \"\u56db\u5ddd\u65b0\u95fb\u7f51\" is being torn down. There are three workers in the scene, one of which is carrying a large log. There is a pile of debris in the street and a ladder is leaning against the building. There are also two workers in the background.", - "id": 21087 - }, - { - "image_path": "G:\\images\\combined\\-1575-_png_jpg.rf.95226fe25e38a6c9ea5ede45f11e593a.jpg", - "response": "A group of people standing around a large piece of machinery.", - "id": 21088 - }, - { - "image_path": "G:\\images\\combined\\-1577-_png_jpg.rf.708ec81ca854152dcd1586db8cf67511.jpg", - "response": "The image shows a large tunnel that is grey in color. The tunnel is made up of many circular structures that are connected. At the center of the image, there are two workers wearing blue helmets and brown uniforms. They are standing side by side, facing each other. The worker on the left is holding a blue clipboard. The tunnel is filled with many black tubes of various sizes. Some of the tubes are connected to the walls of the tunnel. The workers seem to be inspecting the tubes.", - "id": 21089 - }, - { - "image_path": "G:\\images\\combined\\-1578-_png_jpg.rf.6b82a855be6771d51412de6c12af93ce.jpg", - "response": "The image shows several construction workers in the process of building a tall building. The workers are positioned at various levels of the building, with some on the ground and others on higher levels. They are wearing hard hats and uniforms, and are engaged in tasks such as carrying buckets and working with wires. The scene is quite busy and dynamic, with lots of activity taking place.", - "id": 21090 - }, - { - "image_path": "G:\\images\\combined\\-1579-_png_jpg.rf.557909a0350b4b08872212063b284783.jpg", - "response": "a group of people standing on a drilling platform", - "id": 21091 - }, - { - "image_path": "G:\\images\\combined\\-158-_png_jpg.rf.f533af8f11f42f17a95e2d6f6d42ddc5.jpg", - "response": "A construction site with workers.", - "id": 21092 - }, - { - "image_path": "G:\\images\\combined\\-1581-_png_jpg.rf.4c442333147ad6fc145cb5a76fd046d8.jpg", - "response": "A man in a blue jumpsuit and red helmet is working on a piece of equipment.", - "id": 21093 - }, - { - "image_path": "G:\\images\\combined\\-1583-_png_jpg.rf.8ba6a055a48512febe2dc80f82a3419a.jpg", - "response": "The image shows a group of five men dressed in orange jumpsuits, with their hair cut very short, performing drills in a parking lot. They are all holding what look like long black electrical wires in their hands. One man is in the foreground, kicking a orange ball with his head, while four others are in the background, standing in a line and watching the man in the foreground. In the background, there is a grey wall and several utility poles and wires.", - "id": 21094 - }, - { - "image_path": "G:\\images\\combined\\-159-_png_jpg.rf.8f32bf2d68df5263fee0d7e59e3c5ae3.jpg", - "response": "The photo shows a group of people standing in a construction site. They are all dressed in black, and some of them are wearing hard hats. In the background, there are a few buildings under construction, as well as a blue sky and a few clouds. There are also a few cars in the scene.", - "id": 21095 - }, - { - "image_path": "G:\\images\\combined\\-1592-_png_jpg.rf.6b05b30f561843728a128fa2c391727f.jpg", - "response": "In the image there is a large group of people standing in front of a building under construction. There is a blue and white banner with Chinese writing on it. There is a yellow crane operating in the background. There is a person wearing a white hard hat and a tie.", - "id": 21096 - }, - { - "image_path": "G:\\images\\combined\\-1594-_png_jpg.rf.a101ea331601440c6d85662c92bd1d40.jpg", - "response": "A group of men walking down a hallway.", - "id": 21097 - }, - { - "image_path": "G:\\images\\combined\\-1595-_png_jpg.rf.58d90074d43e4cd6c6da790e0467f5b0.jpg", - "response": "A group of men standing on a pile of dirt.", - "id": 21098 - }, - { - "image_path": "G:\\images\\combined\\-1596-_png_jpg.rf.2d53a215465bc4020ebb8c5e31f4d9ee.jpg", - "response": "A man in a yellow helmet and yellow work vest is working on a power line.", - "id": 21099 - }, - { - "image_path": "G:\\images\\combined\\-1597-_png_jpg.rf.d668f7e84bb9aedbd990ccbc00789f8c.jpg", - "response": "A man in a blue uniform and blue hard hat is working on power lines at night. He is on a ladder and is surrounded by many wires.", - "id": 21100 - }, - { - "image_path": "G:\\images\\combined\\-1598-_png_jpg.rf.b699171c384ff205ece272c0574210b0.jpg", - "response": "A group of people standing around each other.", - "id": 21101 - }, - { - "image_path": "G:\\images\\combined\\-1599-_png_jpg.rf.1e781d55ecd41800f8257055d8e3d459.jpg", - "response": "The image shows three men crouched down in a snowy, wooded area. They are wearing hard hats and appear to be looking at something in the snow. The snow is white and appears to be packed, covering the ground. The men are looking through a fence, and there is a mirror in the foreground that is reflecting the scene. The sky is gray and overcast.", - "id": 21102 - }, - { - "image_path": "G:\\images\\combined\\-16-_png_jpg.rf.0d1e2acc6a9dbe1ba3f6fca190586d76.jpg", - "response": "In the image there is a group of men dressed in yellow and grey protective gear. They are working together to move a large rock. Some of the men are holding large grey straps which they are using to move the rock. One man is holding a large grey strap while another man is holding a yellow fire hose. There is a yellow fire hydrant in the top right corner of the image.", - "id": 21103 - }, - { - "image_path": "G:\\images\\combined\\-160-_png_jpg.rf.cb64f629c2ec021088dc1b6902336c68.jpg", - "response": "A man wearing a hard hat and work gloves.", - "id": 21104 - }, - { - "image_path": "G:\\images\\combined\\-1601-_png_jpg.rf.09cf72aa9e94e08cbe6c63b0150fcd2b.jpg", - "response": "The image shows two workers at a construction site. They are wearing safety gear, including yellow hard hats, and are standing on the ground. One of them is holding a large rock, which they are moving towards the camera. The background is filled with rubble and debris from the construction work.", - "id": 21105 - }, - { - "image_path": "G:\\images\\combined\\-1603-_png_jpg.rf.be117686e94d0a49dbec218037efa370.jpg", - "response": "The image shows an underground scene with a large concrete pipe in the center. There are several workers in red uniform working on the pipe. One worker is on the left, two are on the right, and another two are near the center. A man is sitting on the floor, fixing something. A helmet is on the ground, and a bowl-like structure is on the pipe. The background is yellow steel structure. The photo is taken from an aerial view.", - "id": 21106 - }, - { - "image_path": "G:\\images\\combined\\-1604-_png_jpg.rf.384be0524c4de6ea271faaa33ac18d17.jpg", - "response": "A man in a hard hat standing on a wooden platform in a dark construction site. The man is wearing a yellow hard hat and a brown jacket. There are wooden planks scattered around the platform and the floor. The background is dark and there are wooden scaffolding on the right side of the platform.", - "id": 21107 - }, - { - "image_path": "G:\\images\\combined\\-1606-_png_jpg.rf.a7dd7e98804519cf58c08e5880c30459.jpg", - "response": "Four men in white shirts are posing for a picture in front of a construction site. The site has a large concrete pillar and a few other small ones. There is a crane in the background flying in the sky.", - "id": 21108 - }, - { - "image_path": "G:\\images\\combined\\-1607-_png_jpg.rf.02213fbf041a4c0b2ccab85a789346e6.jpg", - "response": "In the image there are two people working on a construction site. They are wearing orange vests and the person on the left is holding a knife and is in the process of cutting steel. There are several other people on the construction site some of them are holding tools. In the background there is a wall being built and a pile of wood. The image was taken on May 8th, 2014.", - "id": 21109 - }, - { - "image_path": "G:\\images\\combined\\-1608-_png_jpg.rf.d3ae14b3d9ec971018635c2bc81252f1.jpg", - "response": "A construction worker is working on a building site at night.", - "id": 21110 - }, - { - "image_path": "G:\\images\\combined\\-1609-_png_jpg.rf.aac881c91cf54b1c188e83bc08698c7b.jpg", - "response": "a man is painting a wall blue", - "id": 21111 - }, - { - "image_path": "G:\\images\\combined\\-161-_png_jpg.rf.5bd24f114d40616cf22b6c306a38b05b.jpg", - "response": "A man in white overalls and a red helmet is working on a power line.", - "id": 21112 - }, - { - "image_path": "G:\\images\\combined\\-1610-_png_jpg.rf.611687b13c938f8ee6ba687099b2f9ce.jpg", - "response": "A group of workers in orange vests and blue helmets are working on a railway.", - "id": 21113 - }, - { - "image_path": "G:\\images\\combined\\-1612-_png_jpg.rf.92ea8125c45046f4190ff191130d07f2.jpg", - "response": "A worker is seen here fixing a power line.", - "id": 21114 - }, - { - "image_path": "G:\\images\\combined\\-1613-_png_jpg.rf.12d9810fa047b23c06e60cb6cfcba07d.jpg", - "response": "A group of men in front of a building under construction", - "id": 21115 - }, - { - "image_path": "G:\\images\\combined\\-1615-_png_jpg.rf.c2dea6bf05f01cff5c728926e44d6eff.jpg", - "response": "A group of workers in red and blue uniforms with yellow helmets on climbing a red structure.", - "id": 21116 - }, - { - "image_path": "G:\\images\\combined\\-1618-_png_jpg.rf.94231c810dd4e7a6a198bfdbb944f730.jpg", - "response": "A group of people working on a construction site.", - "id": 21117 - }, - { - "image_path": "G:\\images\\combined\\-1619-_png_jpg.rf.93e674c719b24ad165591e9808c45e53.jpg", - "response": "The image shows a group of men standing on top of a building under construction. They are all wearing hard hats and some of them are holding umbrellas. In the background, there is a tall building under construction with several floors visible. The men are standing on top of a red brick wall, and some of them are holding tools such as a hammer and a screwdriver. The scene appears to be taking place in an urban setting.", - "id": 21118 - }, - { - "image_path": "G:\\images\\combined\\-1620-_png_jpg.rf.5867e86609d1ee2fc21614871755dae3.jpg", - "response": " a worker(358,606),(506,952) in a yellow vest(392,673),(476,783) standing in front of a silo(3,4),(996,839)", - "id": 21119 - }, - { - "image_path": "G:\\images\\combined\\-1623-_png_jpg.rf.d49e5b38b5279f7096d49638aafb8505.jpg", - "response": "A man sitting on the front of a yellow tractor.", - "id": 21120 - }, - { - "image_path": "G:\\images\\combined\\-1624-_png_jpg.rf.12eff5aeef3071f8d40a350e796fa8cb.jpg", - "response": "The rescue team used a hydraulic rescue tool to try and free the man.", - "id": 21121 - }, - { - "image_path": "G:\\images\\combined\\-1627-_png_jpg.rf.1137b7bb90502e21ad21cc6cb124b0ec.jpg", - "response": "a group of men standing around each other", - "id": 21122 - }, - { - "image_path": "G:\\images\\combined\\-1629-_png_jpg.rf.a38ac1a531f56d633da63035477940c5.jpg", - "response": "An image of a construction worker in a orange suit looking up at a crane. The worker is standing on a ladder and is wearing a tool belt.", - "id": 21123 - }, - { - "image_path": "G:\\images\\combined\\-163-_png_jpg.rf.40b98b95341881eb530d7c01a81777c6.jpg", - "response": "A group of men working on a large rock or boulder that is either inside a cave or in a room. They are using different tools to work on the rock and some of them are wearing hard hats.", - "id": 21124 - }, - { - "image_path": "G:\\images\\combined\\-1630-_png_jpg.rf.f51c09d5f6d0ffa9e5c710370ae750ae.jpg", - "response": "a group of people standing around a construction site", - "id": 21125 - }, - { - "image_path": "G:\\images\\combined\\-1632-_png_jpg.rf.8da6353899368304b8ad4e81892106a5.jpg", - "response": "a group of men working on a oil rig in the desert", - "id": 21126 - }, - { - "image_path": "G:\\images\\combined\\-1634-_png_jpg.rf.0529d4f5de9a73646835ac828fc3cf6a.jpg", - "response": "A man wearing a red shirt is stacking bricks.", - "id": 21127 - }, - { - "image_path": "G:\\images\\combined\\-1638-_png_jpg.rf.1728897405d154cb1357425afdd2c887.jpg", - "response": "Three men in hard hats, one holding a clipboard, looking at a wall being built.", - "id": 21128 - }, - { - "image_path": "G:\\images\\combined\\-1640-_png_jpg.rf.21656ed28b9b67449731477d77e8ef29.jpg", - "response": "A group of men in yellow hats", - "id": 21129 - }, - { - "image_path": "G:\\images\\combined\\-1641-_png_jpg.rf.d55849a0a504668e9d183ef2b1b1f689.jpg", - "response": "A group of linemen dressed in blue overalls and red helmets are working on fixing a power line. They are holding onto a wooden pole and pulling it towards them. There is a brick building to the left of the image and a dirt road with patches of grass in the foreground. There are also palm trees in the background and a few wooden poles sticking out of the ground.", - "id": 21130 - }, - { - "image_path": "G:\\images\\combined\\-1643-_png_jpg.rf.b21b489f1e1efc04862572d3ac2b78cf.jpg", - "response": "The image shows a construction site where workers are busy. There are five workers in the image, all wearing yellow helmets. They are working on a construction site that resembles a large circular shape. The workers are busy with their tasks, some of them are kneeling on the ground while others are standing. The construction site is located next to a river and a bridge is visible in the background. The workers are working on a concrete structure, some of them are holding tools. The photo was taken by a Chinese news website.", - "id": 21131 - }, - { - "image_path": "G:\\images\\combined\\-1644-_png_jpg.rf.53c31b307c93490991bb3c079343841a.jpg", - "response": "The image is a triptych of a man working at a mining site. The man is wearing an orange jacket and a white helmet. He is standing on a bridge and is looking at a conveyor belt. The sky is dark and there are mountains in the background. There are two other people in the scene, one on the left and one on the right. There are also two buckets in the scene, one on the left and one on the right.", - "id": 21132 - }, - { - "image_path": "G:\\images\\combined\\-1645-_png_jpg.rf.c3f07b72eb3f78fc84ce0f0be8c8cb38.jpg", - "response": "The image shows two workers suspended on a wire, working on power lines above a river. They are wearing safety harnesses and the worker on the left is holding onto a rope while the worker on the right is working on the power lines. The workers are high up in the air, with the river and mountains in the background.", - "id": 21133 - }, - { - "image_path": "G:\\images\\combined\\-1646-_png_jpg.rf.20fb6381b66ee1c5d4302146eff89294.jpg", - "response": "A group of people working in a mine shaft.", - "id": 21134 - }, - { - "image_path": "G:\\images\\combined\\-1648-_png_jpg.rf.8889e3d272c302865a8737e7ae9bc604.jpg", - "response": "A man wearing a blue hard hat and a white and blue striped shirt is shoveling sand into a grey cement mixer. He is standing in front of a partially constructed grey building.", - "id": 21135 - }, - { - "image_path": "G:\\images\\combined\\-165-_png_jpg.rf.d6b5490f958894ce319a0312c20f5f37.jpg", - "response": "The image is a staged photo of a man wearing a hard hat and orange vest standing in front of a cement wall. The man is standing on concrete and there are two other people visible in the photo, one on each side of him. The man is looking up at the camera and appears to be juggling oranges.", - "id": 21136 - }, - { - "image_path": "G:\\images\\combined\\-1650-_png_jpg.rf.a74b82e5db1c4903a21ed7964753c631.jpg", - "response": "A group of people wearing hard hats standing in front of a building site.", - "id": 21137 - }, - { - "image_path": "G:\\images\\combined\\-1651-_png_jpg.rf.efeefb45a88a2bb51eed780eddf12b74.jpg", - "response": "A group of men working in a mine.", - "id": 21138 - }, - { - "image_path": "G:\\images\\combined\\-1652-_png_jpg.rf.0733b7f4c7205dc5f37edda07f30217a.jpg", - "response": "In the image, a worker is standing on a platform and is working on a piece of industrial equipment. The equipment is made up of metal and has many dials and gauges. The worker is wearing a hard hat, blue overalls, and red shoes. The wall behind the equipment has many pipes and vents. The platform is made of metal and has a brownish color. The background is a large, industrial machine with many parts.", - "id": 21139 - }, - { - "image_path": "G:\\images\\combined\\-1653-_png_jpg.rf.c40d401873f1f777ef1ccf495a64dd88.jpg", - "response": " Two men(209,319),(994,996) in hard hats(728,364),(891,520)(528,319),(713,488) working on a fuse box", - "id": 21140 - }, - { - "image_path": "G:\\images\\combined\\-1654-_png_jpg.rf.c5824f3fd23e7bdc7c66efe68dc2dfad.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing black suits and red hard hats. Under the hard hats, their faces show a variety of expressions. To the left of the group, a man in a suit is pointing to something off camera. The man next to him is holding a cell phone in his hand. To the right of the group, a man is taking a picture with his cell phone. In the background, a blue building can be seen on the left side of the image.", - "id": 21141 - }, - { - "image_path": "G:\\images\\combined\\-1655-_png_jpg.rf.7fe8a5615efc77cad93f3e8970a6f921.jpg", - "response": "In the image there is a man dressed in red and white standing on a tall power pole. The pole has many electrical components on it and the man is working on them. The sky above him is a clear blue and there are power lines extending from the pole. In the background there is a river and a road. The road is lined with green grass and there are several birds flying in the sky.", - "id": 21142 - }, - { - "image_path": "G:\\images\\combined\\-1656-_png_jpg.rf.541291ae9f2b348c00ec5c74182f1ce8.jpg", - "response": "A man in a purple shirt and yellow hard hat sits in the cab of a large piece of machinery.", - "id": 21143 - }, - { - "image_path": "G:\\images\\combined\\-1657-_png_jpg.rf.b5472db225485dcb340fa4bca9d13a83.jpg", - "response": "A group of people working on a building.", - "id": 21144 - }, - { - "image_path": "G:\\images\\combined\\-1659-_png_jpg.rf.560594da2ecef5da87f28ab8185e6877.jpg", - "response": "A group of people standing around a fire pit.", - "id": 21145 - }, - { - "image_path": "G:\\images\\combined\\-1661-_png_jpg.rf.24c157ed03336ffade66c3242ba25e0f.jpg", - "response": "a group of men standing around in hard hats", - "id": 21146 - }, - { - "image_path": "G:\\images\\combined\\-1665-_png_jpg.rf.a5cb9860abd9b7a5126a66d336c0e718.jpg", - "response": "A man in a blue uniform and orange safety gear is on a yellow ladder, working on power lines in a tree. He is wearing a white shirt and blue pants. There are two other people in blue uniforms and orange safety gear standing below the man on the ladder. One of them is holding a gas can. The background is a black night sky.", - "id": 21147 - }, - { - "image_path": "G:\\images\\combined\\-1666-_png_jpg.rf.1af4a5a9a1e360820b6cc2eb4f012c7e.jpg", - "response": "Men working on a building in China.", - "id": 21148 - }, - { - "image_path": "G:\\images\\combined\\-1667-_png_jpg.rf.8b2a0978e49219eac2eadd0e63af708a.jpg", - "response": "A couple of construction workers looking at a blueprint on a construction site.", - "id": 21149 - }, - { - "image_path": "G:\\images\\combined\\-1669-_png_jpg.rf.1165f25b8c61695fe461e667f4112366.jpg", - "response": "A construction worker wearing a yellow hard hat and a uniform is welding a large metal pipe on top of a large rock. He is sitting on the ground and there is a pile of dirt and a mound of brown dirt behind him. There is a yellow and white building in the background.", - "id": 21150 - }, - { - "image_path": "G:\\images\\combined\\-1670-_png_jpg.rf.34b812a43d7eb6d988348bc592025dc0.jpg", - "response": "Some workers on a building site with a yellow tower of scaffolding behind them. They are wearing yellow hats and some have white reflective vests on. One worker is holding a large white board with writing on it.", - "id": 21151 - }, - { - "image_path": "G:\\images\\combined\\-1671-_png_jpg.rf.c0ee7292e5e45e6a48c38763ed1fe863.jpg", - "response": "A construction worker is working on a construction site. There is a crane in the background. The sky is blue with clouds. There is a white building on the left side of the image. There is a man in the middle of the image who is wearing a red hat and a grey shirt. He is wearing jeans. There is a blue car on the right side of the image. There is a yellow crane in the background. There are two men working on the right side of the image. One of them is wearing a yellow shirt. There is a triangle on the right side of the image.", - "id": 21152 - }, - { - "image_path": "G:\\images\\combined\\-1673-_png_jpg.rf.674762e3a01bc53fab4b28e94dcb7826.jpg", - "response": " Firefighters(423,429),(572,576)(540,355),(750,559)(3,309),(223,996) in helmets(449,428),(515,478)(594,354),(672,413)(86,253),(202,337) and orange jumpsuits(423,445),(571,574)(2,398),(221,996)(541,472),(751,726)(82,359),(253,699)(817,307),(997,826) are working on a project at night.", - "id": 21153 - }, - { - "image_path": "G:\\images\\combined\\-1674-_png_jpg.rf.31772faabba4d4ed1df76b4b444a5f46.jpg", - "response": "A collage of three pictures of a construction site.", - "id": 21154 - }, - { - "image_path": "G:\\images\\combined\\-1676-_png_jpg.rf.f7ffe4943c9af1aaa9e891be26b0e2c1.jpg", - "response": " Linemen(458,254),(704,636) working on a power line(2,4),(801,357)", - "id": 21155 - }, - { - "image_path": "G:\\images\\combined\\-1678-_png_jpg.rf.35f70a65bd775fd49ce6aa2e792864ee.jpg", - "response": "In the image there are two construction workers wearing blue and white striped aprons, one is wearing a purple helmet and the other is wearing a green helmet. They are working on a construction site with a wooden platform in the foreground and a pile of grey sand behind them. There is a metal pole in front of them and a light purple sky above.", - "id": 21156 - }, - { - "image_path": "G:\\images\\combined\\-1680-_png_jpg.rf.97fe6452e027e488b2a544f0a229627c.jpg", - "response": "A group of men in red safety helmets are gathered around a man in a suit who is pointing to a sign with a drawing of a person wearing a hardhat. The sign has Chinese characters on it.", - "id": 21157 - }, - { - "image_path": "G:\\images\\combined\\-1681-_png_jpg.rf.53c4e820a2a1d01174b41fbf189453fe.jpg", - "response": "A worker in a white jumpsuit, blue helmet and clear safety glasses, stands in a room with a white table in front of them. They are holding a blue object, which is suspended from the ceiling by a cord. The room is filled with rows of white tables and chairs, and the walls are a bright red. There are several signs on the wall above the tables, the longest one on the left says 'Science and technology innovation leads the future', and the one on the right is red with white characters. The room has a high ceiling and appears to be a cafeteria.", - "id": 21158 - }, - { - "image_path": "G:\\images\\combined\\-1683-_png_jpg.rf.003a0e52e98097ea03ae148da01318e7.jpg", - "response": "In the image there are two men wearing yellow hard hats standing next to a truck. The truck is yellow and grey and has a large white and grey water tank on the back. It also has a yellow and black gun attached to it. The gun is pointed towards the sky and is spraying out water. There are three buildings in the background, two of them are grey with many windows and the third one is orange.", - "id": 21159 - }, - { - "image_path": "G:\\images\\combined\\-1684-_png_jpg.rf.2da3328e9a74422ffee955d0b7c95b8a.jpg", - "response": "A group of men in green uniforms and yellow hard hats are holding onto a power line.", - "id": 21160 - }, - { - "image_path": "G:\\images\\combined\\-1686-_png_jpg.rf.6ad1dbde44dd2094ea0097c3d818bbe9.jpg", - "response": "In the image there is a worker in green uniform and white helmet working on a red and white striped electricity pylon. The sky is clear and blue.", - "id": 21161 - }, - { - "image_path": "G:\\images\\combined\\-1687-_png_jpg.rf.8a98fa4f736d1b3cbe26c895fe73dba8.jpg", - "response": "A man in a hard hat and glasses is holding a white piece of paper in front of a solar panel. The solar panel is on a fence and the man is standing in front of it. The sky is blue with clouds.", - "id": 21162 - }, - { - "image_path": "G:\\images\\combined\\-1688-_png_jpg.rf.687a60d2811e1cfa005a2cc843067ed4.jpg", - "response": "The image shows a construction site in a residential area. There are several workers present, some standing and some digging. They are wearing blue helmets and are working with shovels and an orange excavator. The workers are clearing dirt and laying pipes in the street. There are also two dogs present in the scene, one on each side of the street. One dog is smaller and has a yellow collar, the other one is larger and is brown. There is a traffic sign on the right side of the street and a few cars parked further down the street. The whole scene gives the impression of a busy construction project in progress.", - "id": 21163 - }, - { - "image_path": "G:\\images\\combined\\-1689-_png_jpg.rf.5d6fa3495188c680a7d016fdf0d002e7.jpg", - "response": "A group of men are working together to move a large tree.", - "id": 21164 - }, - { - "image_path": "G:\\images\\combined\\-1690-_png_jpg.rf.32b210f063db1e9c41c5b2905211e063.jpg", - "response": "A group of workers stand on a construction site with a red flag.", - "id": 21165 - }, - { - "image_path": "G:\\images\\combined\\-1691-_png_jpg.rf.3e59e7f290094e40356fb2e111d796e6.jpg", - "response": "A man is lifted away on a stretcher after being electrocuted while working on an electricity pole in Chongqing, China.", - "id": 21166 - }, - { - "image_path": "G:\\images\\combined\\-1692-_png_jpg.rf.ab4f66fe40bcf41e2a73d0dced31c745.jpg", - "response": "In the image, workers are seen standing on a stretch of train tracks that are being worked on. Some of the workers are wearing yellow vests and hard hats. In the background, there is a bridge that appears to be under construction. There is also a pile of rocks and debris on the ground. A person in the far left of the image is holding a shovel.", - "id": 21167 - }, - { - "image_path": "G:\\images\\combined\\-1693-_png_jpg.rf.6ecf7237458e780cacfb8bef381ec0b8.jpg", - "response": "A man in a blue hat and jumpsuit working on an electrical device.", - "id": 21168 - }, - { - "image_path": "G:\\images\\combined\\-1694-_png_jpg.rf.096b86a7a6503af64ec5610b694aaaa0.jpg", - "response": "In the image there is a construction site with a man standing in front of a yellow excavator. The excavator is positioned in the middle of the scene and seems to be the main focus. The man is standing in front of the excavator and seems to be observing something.", - "id": 21169 - }, - { - "image_path": "G:\\images\\combined\\-1695-_png_jpg.rf.ed81976ba70a034898b115735ca664b4.jpg", - "response": "The image shows a construction site with several people working on a building that is still in the framing stage. The workers are standing on the ground, and some of them are working on the wooden framework of the building. There is a large yellow crane operating in the background, and it appears to be lifting or moving something. The sky is blue, and the sun is shining, creating a bright and sunny atmosphere. There are also a few birds flying in the sky.", - "id": 21170 - }, - { - "image_path": "G:\\images\\combined\\-1696-_png_jpg.rf.22e1483631e6ea01e8f923f003507cce.jpg", - "response": "A group of workers in hard hats and uniforms are standing on a platform working on a large piece of equipment. They are all focused on their tasks.", - "id": 21171 - }, - { - "image_path": "G:\\images\\combined\\-1697-_png_jpg.rf.4dc46c71aab3f48da54ccd9a2566b9cf.jpg", - "response": "The image shows a group of people walking together in what appears to be a construction site. They are all wearing hard hats and some of them are carrying backpacks. In the background, there is a large building under construction. The image is accompanied by two pieces of text, one on the far right that says \"\u4e0a\u6d77\u7b51\u76df\" and another one at the bottom that says \"\u5e72\u9020\u6f14\u7ece\"", - "id": 21172 - }, - { - "image_path": "G:\\images\\combined\\-1698-_png_jpg.rf.0dbef252c33b0470e6d54a5af5beb261.jpg", - "response": "The image shows a group of people standing in a large, unfinished room. They are all wearing hard hats, and some are carrying handbags. In the background, there are a few more people who are partially visible. The floor is covered in white carpet, and there are several pairs of shoes scattered around. The walls are concrete, and there are several red construction lights hanging from the ceiling.", - "id": 21173 - }, - { - "image_path": "G:\\images\\combined\\-1699-_png_jpg.rf.26020351f2b7d0e1754878fa5d745690.jpg", - "response": "A group of men in front of a mountain.", - "id": 21174 - }, - { - "image_path": "G:\\images\\combined\\-17-_png_jpg.rf.682f5b45b910bf11fabf6114d3591849.jpg", - "response": "A man wearing a hard hat and safety glasses is working on a large pipe.", - "id": 21175 - }, - { - "image_path": "G:\\images\\combined\\-170-_png_jpg.rf.7bc4794df195a868082bda72bb6a4d75.jpg", - "response": "Some construction workers standing around a forklift.", - "id": 21176 - }, - { - "image_path": "G:\\images\\combined\\-1700-_png_jpg.rf.7a18e489789575dfa29cf767420d5f11.jpg", - "response": "In the image there is a train on the tracks and some workers are on a platform above the train. The train is yellow and the platform is also yellow. The workers are wearing orange vests.", - "id": 21177 - }, - { - "image_path": "G:\\images\\combined\\-1701-_png_jpg.rf.43ad7b93ae316e9b3e968b5192f78389.jpg", - "response": "Two workers(536,408),(772,743)(430,426),(558,768) are using a pickaxe to break up the concrete", - "id": 21178 - }, - { - "image_path": "G:\\images\\combined\\-1702-_png_jpg.rf.cbb2236764bd88afaf46d0fe21014cea.jpg", - "response": "A group of people are holding umbrellas and standing on a construction site. Some of them are wearing hard hats. One man is wearing a white shirt and blue shorts. Another man is wearing a white shirt and grey shorts. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a yellow hat. A man in a white shirt is wearing a blue hat. A man in a white shirt is wearing a black hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a blue hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a blue hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white hat. A man in a white shirt is wearing a red hat. A man in a white shirt is wearing a white", - "id": 21179 - }, - { - "image_path": "G:\\images\\combined\\-1703-_png_jpg.rf.ad44d2afaee0bff59be4c9b61bab5603.jpg", - "response": "The image shows three construction workers standing on a yellow ladder, working on a large concrete structure. The workers are wearing red shirts and yellow hats. The ladder they are standing on is also yellow. The concrete structure has red pillars and the workers are working on the second floor of the structure. The photo was taken by Xinhua News Agency.", - "id": 21180 - }, - { - "image_path": "G:\\images\\combined\\-1705-_png_jpg.rf.d9dd9886f632323f6c1458e48bb445b0.jpg", - "response": "A group of workers are holding onto a large metal hook.", - "id": 21181 - }, - { - "image_path": "G:\\images\\combined\\-1706-_png_jpg.rf.b46e6d86719642ab220f2bfaedc19537.jpg", - "response": "a group of men standing in front of a tall metal tower", - "id": 21182 - }, - { - "image_path": "G:\\images\\combined\\-1707-_png_jpg.rf.c651edce26aea9f6a13db42cd84bcb8a.jpg", - "response": "A group of people standing around a blue and white piece of paper.", - "id": 21183 - }, - { - "image_path": "G:\\images\\combined\\-1708-_png_jpg.rf.35b34e1096ff439a75212963a7e2882e.jpg", - "response": "Rescuers work to remove the debris of a collapsed building in Xi'an, capital of Shaanxi Province, China, Nov. 24, 2012. A total of 16 people were killed and 42 injured when the five-story building collapsed at around 11:30 a.m. Wednesday, local authorities said. The cause of the collapse is still under investigation.", - "id": 21184 - }, - { - "image_path": "G:\\images\\combined\\-171-_png_jpg.rf.0d06c49e17c9630bcbf571f7d5561413.jpg", - "response": "The image shows a construction site with several workers engaged in different tasks. There is a large building in the background, and a crane is visible to the right. In the foreground, a group of workers is standing on top of a large pile of rebar, with some of them wearing hard hats. Another worker is standing to the left of the pile, while another is visible through the pile. There are also two workers standing further back on the left side of the image.", - "id": 21185 - }, - { - "image_path": "G:\\images\\combined\\-1710-_png_jpg.rf.a90e37ceb7b0497980469fbe8c1971d5.jpg", - "response": "A group of people working in a\u96a7\u9053.", - "id": 21186 - }, - { - "image_path": "G:\\images\\combined\\-1711-_png_jpg.rf.242e6d6b07ba19ad33be9da1035f9c95.jpg", - "response": " rescue workers(218,574),(400,996)(392,618),(749,997)(64,693),(269,997)(640,400),(825,996)(269,374),(443,732) in a cave", - "id": 21187 - }, - { - "image_path": "G:\\images\\combined\\-1712-_png_jpg.rf.3647ff400966adfa2bd9be28a64df8bf.jpg", - "response": "A man wearing a yellow hard hat and a black jacket is holding a blueprint in front of a construction site. There are two yellow cranes in the background and a few other people scattered around the site.", - "id": 21188 - }, - { - "image_path": "G:\\images\\combined\\-1713-_png_jpg.rf.f458682043891a8b71ffd008da07b4d6.jpg", - "response": "In the image there is a person wearing a yellow hard hat and blue overalls, who is crouching inside a large metal cylinder. The person is holding a long ruler in their hand and is measuring something. The background is a bit blurry but it seems to be made of concrete or stone.", - "id": 21189 - }, - { - "image_path": "G:\\images\\combined\\-1714-_png_jpg.rf.9e95044f313c51b2851fe110c22bb22e.jpg", - "response": "A group of people standing in front of a truck and a large rock or wall. They are wearing hard hats and uniforms.", - "id": 21190 - }, - { - "image_path": "G:\\images\\combined\\-1716-_png_jpg.rf.8a3401b52e3c514ae47aa3028afd57d9.jpg", - "response": "An engineer in an orange vest standing on a dock.", - "id": 21191 - }, - { - "image_path": "G:\\images\\combined\\-1717-_png_jpg.rf.bb65bbbc71a95e17ef34521d4a020cd7.jpg", - "response": "A construction worker is working on a building.", - "id": 21192 - }, - { - "image_path": "G:\\images\\combined\\-1719-_png_jpg.rf.ba31e332f36cfec5f8c661b03f74e01e.jpg", - "response": "The image is a collage of four people in neon yellow safety vests and yellow hard hats, with the middle person holding a walkie talkie. They are pointing towards a large ship in the background. The people are arranged in a way that shows two people on the left, the middle person in the center, and two people on the right.", - "id": 21193 - }, - { - "image_path": "G:\\images\\combined\\-172-_png_jpg.rf.036ea5ef910a57a4a5de4e22a814d228.jpg", - "response": "A man in a yellow hard hat and blue work suit carrying a bamboo pole over his shoulder.", - "id": 21194 - }, - { - "image_path": "G:\\images\\combined\\-1720-_png_jpg.rf.331d54fbfd43801377c88cb5e713590b.jpg", - "response": "A group of three men in a warehouse setting. They are all wearing safety gear such as hard hats and reflective vests. One man is looking up at a yellow hard hat that is floating above his head. Another man is looking to the left of the camera while the third man is looking down at a cell phone that he is holding.", - "id": 21195 - }, - { - "image_path": "G:\\images\\combined\\-1721-_png_jpg.rf.f56a010e4607babbb7c911e545b4972e.jpg", - "response": "The image shows workers installing a power pole at the side of a mountain. Two workers are on the left of the image, both wearing blue hard hats and work clothes. They are each holding onto a metal bar that goes through a concrete column. In the background, two other workers are on the right side of the image, wearing blue and yellow hard hats and work clothes. They are installing a metal frame on the ground. The sky is blue with a few white clouds.", - "id": 21196 - }, - { - "image_path": "G:\\images\\combined\\-1725-_png_jpg.rf.1b9bce8895833edb54ee5c338e676720.jpg", - "response": "A man in a white hard hat and green coveralls stands in front of a large structure under construction. He is wearing a red belt and has a red sash around his coveralls. There are two other people dressed similarly to the man in the background. There are two yellow and black vehicles to the left of the man and a blue sky can be seen through the structure.", - "id": 21197 - }, - { - "image_path": "G:\\images\\combined\\-1726-_png_jpg.rf.7869d934166b4e9fa1de9347c11e7de2.jpg", - "response": "A group of workers in a warehouse.", - "id": 21198 - }, - { - "image_path": "G:\\images\\combined\\-1728-_png_jpg.rf.d7eef2c03f73162f1c0e8317e38b6309.jpg", - "response": "The photo shows workers inside a building under construction. There are three workers in the photo, all wearing hard hats. One worker is running towards the right side of the photo,\u88f8\u5954\u7684\u7248", - "id": 21199 - }, - { - "image_path": "G:\\images\\combined\\-1730-_png_jpg.rf.405a471d290dab17ffc2558760248bde.jpg", - "response": "In the image, there are several men wearing blue helmets and work clothes. They are working on a construction site that appears to be in the middle of a forest. The ground is filled with stones and the men are working on a foundation for a building. There are also a few pieces of wood and other construction materials scattered around the site.", - "id": 21200 - }, - { - "image_path": "G:\\images\\combined\\-1731-_png_jpg.rf.accd1a2545b53c93ad2e2ccc65038273.jpg", - "response": "A group of men standing around each other.", - "id": 21201 - }, - { - "image_path": "G:\\images\\combined\\-1732-_png_jpg.rf.7d28051eb4c47fbc6d080292e7791517.jpg", - "response": "A man in a red hard hat and coveralls stands on a platform with a sunset behind him.", - "id": 21202 - }, - { - "image_path": "G:\\images\\combined\\-1733-_png_jpg.rf.e0e5d7b3220113706ec59390fb624bf2.jpg", - "response": " The Indonesian delegation(642,405),(797,996)(479,382),(683,996)(732,353),(868,997)(235,381),(403,997)(68,334),(338,997) visited the tunnel construction site of the Jakarta MRT.", - "id": 21203 - }, - { - "image_path": "G:\\images\\combined\\-1734-_png_jpg.rf.da24523910443228f92373a7d8ee5f07.jpg", - "response": "Four construction workers in hard hats and safety vests standing in a construction site.", - "id": 21204 - }, - { - "image_path": "G:\\images\\combined\\-1735-_png_jpg.rf.36632f9d1ab9463d7b4c8cba1694f99f.jpg", - "response": "A group of people working on a construction site.", - "id": 21205 - }, - { - "image_path": "G:\\images\\combined\\-1737-_png_jpg.rf.526e23ad511b8165f8ac30b312d8cb2a.jpg", - "response": "An electrician repairs a transformer on a power pole.", - "id": 21206 - }, - { - "image_path": "G:\\images\\combined\\-1738-_png_jpg.rf.54cd91613cc730ea5887908de6639793.jpg", - "response": "A group of people working on a road near a lake", - "id": 21207 - }, - { - "image_path": "G:\\images\\combined\\-1739-_png_jpg.rf.37aecd42d6e655d464e0766941c0520b.jpg", - "response": "A group of people standing around a hole in the ground. Some of them are carrying shovels and other tools. The ground above the hole is covered in wooden planks.", - "id": 21208 - }, - { - "image_path": "G:\\images\\combined\\-174-_png_jpg.rf.afa6bd1ef3b1bc22a7364b094bdb2ce3.jpg", - "response": "A man in a grey shirt and blue jeans is standing on a construction site. He is wearing a hard hat and holding a wooden beam.", - "id": 21209 - }, - { - "image_path": "G:\\images\\combined\\-1741-_png_jpg.rf.ed09029de5587d3ea4d3cc92231782bf.jpg", - "response": "A worker is working with a tool in his hands. There are several blue drums in the scene. Some white, some black and some with grey tops. The worker is wearing a red helmet and clothes. The ground is wet and there are reflections on the ground. There are some buildings in the background.", - "id": 21210 - }, - { - "image_path": "G:\\images\\combined\\-1743-_png_jpg.rf.10673ead3f60774e2e73fcf5f0e57694.jpg", - "response": "A crane lifting a large concrete beam over a house.", - "id": 21211 - }, - { - "image_path": "G:\\images\\combined\\-1747-_png_jpg.rf.516c5e78566bb3816246f0fd477da12c.jpg", - "response": "A man in a hard hat and a jacket that says \"\u65b0\u534e\u8239\" stands on a boat looking at a yellow floating dry dock.", - "id": 21212 - }, - { - "image_path": "G:\\images\\combined\\-1748-_png_jpg.rf.2af8674334434a88408b23d6679b7a6d.jpg", - "response": "In the image there are three men standing together. They are all wearing hard hats and are looking at a blueprint. The blueprint is quite large and is held up by two of the men. One of the men is pointing at the blueprint.", - "id": 21213 - }, - { - "image_path": "G:\\images\\combined\\-175-_png_jpg.rf.1ccde8446939574feb47092bc673ad03.jpg", - "response": "The picture shows a group of people in blue protective gear standing around a control panel. The text at the bottom reads \"\u6cca\u6d32\u65b0\u95fb\u7f51\u6cca\u6d32\u624b\u673a\u7f51\".", - "id": 21214 - }, - { - "image_path": "G:\\images\\combined\\-1750-_png_jpg.rf.6910c07c27f8783e0da77bb4e6c23eac.jpg", - "response": "A city street with a large hole in the road.", - "id": 21215 - }, - { - "image_path": "G:\\images\\combined\\-1751-_png_jpg.rf.e6feae088aa9083e72cff7a6ddac710d.jpg", - "response": "A group of three people working on a building site, two of them are holding onto a rope while the third one is putting on a hard hat.", - "id": 21216 - }, - { - "image_path": "G:\\images\\combined\\-1752-_png_jpg.rf.d2d1c15ecde19a7699541b6c21d11282.jpg", - "response": "Some people are working on a construction site.", - "id": 21217 - }, - { - "image_path": "G:\\images\\combined\\-1755-_png_jpg.rf.287463d33a08076bad166349b2375a50.jpg", - "response": "Rescuers used a water jet to remove the glue from the bear's fur.", - "id": 21218 - }, - { - "image_path": "G:\\images\\combined\\-1756-_png_jpg.rf.168588e7829507d1019e715bfffd2dca.jpg", - "response": "A group of people standing under a building.", - "id": 21219 - }, - { - "image_path": "G:\\images\\combined\\-1758-_png_jpg.rf.ee70bb70ffa8986b01c2f1d6a55425ab.jpg", - "response": "An electrician wearing a blue shirt and a red helmet is working on a machine.", - "id": 21220 - }, - { - "image_path": "G:\\images\\combined\\-1761-_png_jpg.rf.cda3f3d03d4e3fedf64bb084e5cb26dc.jpg", - "response": "A man in a blue uniform and a yellow hat working on wires.", - "id": 21221 - }, - { - "image_path": "G:\\images\\combined\\-1763-_png_jpg.rf.a3a2c9d114ce0fb967d804f461bec1dd.jpg", - "response": "In the image there is a group of men standing in front of a mountain. They are all wearing hard hats. One man is wearing a red tie. In the background there is a yellow and orange crane. To the far right there is a red and white banner.", - "id": 21222 - }, - { - "image_path": "G:\\images\\combined\\-1766-_png_jpg.rf.3d61df509bae0729f54ee96c23c4c074.jpg", - "response": "In the image there are multiple people working on a construction site. They are building a large structure of steel rebar. There are at least 6 people working on the site, some are standing on the steel rebar structure and others are working on it. There is also a mountain in the background.", - "id": 21223 - }, - { - "image_path": "G:\\images\\combined\\-1769-_png_jpg.rf.a2e81b0233f80760568a0b575bccd923.jpg", - "response": "The image shows two men in red safety jumpsuits working on a power line tower. One man is standing on the tower, and the other is standing on a ladder next to him. They are both wearing helmets and the man on the ground is also wearing a safety belt. The sky is blue with a few thin clouds.", - "id": 21224 - }, - { - "image_path": "G:\\images\\combined\\-177-_png_jpg.rf.ee59fa6283eb90baf8a8f9ca164e56fc.jpg", - "response": "A worker in a yellow hard hat is holding a device and looking at it. He is standing in a room with a white ceiling and walls. There is a large, white, cylindrical object with a screen on the side. The worker is also wearing a brown uniform.", - "id": 21225 - }, - { - "image_path": "G:\\images\\combined\\-1774-_png_jpg.rf.7ace8e4f23efebfbdb2996152ebd3263.jpg", - "response": "A man in a hard hat and overalls is suspended in the air, working on power lines.", - "id": 21226 - }, - { - "image_path": "G:\\images\\combined\\-1776-_png_jpg.rf.82d8c18f749c88ca95c866461ce1c858.jpg", - "response": "In the image, a small group of men in orange vests are working on a train track. They are standing on the track, with one man in the center and the others spread out around him. One of the men is holding a large tool, which appears to be a piece of machinery. The men are wearing hats and the background is filled with trees.", - "id": 21227 - }, - { - "image_path": "G:\\images\\combined\\-1778-_png_jpg.rf.a6b195ac13b02158ed78e0a164f9dd8e.jpg", - "response": "A group of three men in construction gear standing in front of a wall.", - "id": 21228 - }, - { - "image_path": "G:\\images\\combined\\-1781-_png_jpg.rf.08fd2e2e176e64e8e54b01ffc2ed450f.jpg", - "response": "A group of people standing around a model of a city.", - "id": 21229 - }, - { - "image_path": "G:\\images\\combined\\-1782-_png_jpg.rf.12c4516d8eda909987b863ed329377ec.jpg", - "response": "A group of people working on a construction site.", - "id": 21230 - }, - { - "image_path": "G:\\images\\combined\\-1783-_png_jpg.rf.f725ce5fee2c1f54e9e175b6f1f19986.jpg", - "response": "A worker in a red hard hat and blue uniform is working on a control panel.", - "id": 21231 - }, - { - "image_path": "G:\\images\\combined\\-1784-_png_jpg.rf.9f0927b5c8d49562a8237204a7c2613a.jpg", - "response": "A man wearing a red shirt and a yellow hard hat stands in the middle of a large tunnel. He is wearing a tool belt and holding a drill. The tunnel is circular and made of concrete. There are lights mounted on the walls of the tunnel.", - "id": 21232 - }, - { - "image_path": "G:\\images\\combined\\-1785-_png_jpg.rf.3711c5fff1244fcc6fa4b345fe29e602.jpg", - "response": "A man and a woman wearing yellow and green safety vests looking up at a building under construction.", - "id": 21233 - }, - { - "image_path": "G:\\images\\combined\\-1787-_png_jpg.rf.76f96b32182d8d86d6f38544365ee681.jpg", - "response": "A photo of two workers, one wearing a white mask and a yellow hard hat and one wearing a white mask and a white hard hat, standing on a mountain side with a ladder.", - "id": 21234 - }, - { - "image_path": "G:\\images\\combined\\-179-_png_jpg.rf.758602bebe900a41ff6eed8e4d4f884f.jpg", - "response": "A group of three people standing in front of a crane.", - "id": 21235 - }, - { - "image_path": "G:\\images\\combined\\-1790-_png_jpg.rf.1a3a4c76ef3eeda91843bfc651d73370.jpg", - "response": "The image shows a large battleship in a dry dock. The battleship is painted gray and black, and it has a brown hull. There are several people in the scene, including one person wearing a hard hat and blue jacket walking in front of the battleship. Another person is walking on the right side of the battleship, and two other people are standing further back. There are also two other people standing on the right side of the image, near the battleship. The sky in the background is overcast.", - "id": 21236 - }, - { - "image_path": "G:\\images\\combined\\-1791-_png_jpg.rf.2baa3107adbeb3a8e36062f606048a70.jpg", - "response": "Four construction workers are working on a construction site. They are wearing grey and blue suits and yellow helmets. They are carrying wooden poles. There are many wooden poles in the picture. Some are stacked in the left corner, some are in the center and some are in the right corner. The ground is not yet paved, it's earth yellow ground. In the far distance, there are some buildings under construction.", - "id": 21237 - }, - { - "image_path": "G:\\images\\combined\\-1793-_png_jpg.rf.3161e367f68bd9d8f68754d1874fd076.jpg", - "response": "Firefighters are inspecting a door in a closet. The door is open and the firefighters are looking inside. There is a sign above the door that says \"Exit\". One of the firefighters is wearing a green uniform.", - "id": 21238 - }, - { - "image_path": "G:\\images\\combined\\-1794-_png_jpg.rf.f26cf1e0d8558ba6447fbe54985e96ea.jpg", - "response": "A man in a yellow hard hat crouches down next to a large pipe. He is wearing a blue shirt and has a white bag on his shoulder. There is a large amount of grey and white material inside the pipe, and the man is reaching into the pipe to inspect it.", - "id": 21239 - }, - { - "image_path": "G:\\images\\combined\\-1796-_png_jpg.rf.6d151afdad5abfe0e673a0e09b72f1af.jpg", - "response": "A man in a red hard hat and coveralls is working on a piece of machinery. It is snowing outside.", - "id": 21240 - }, - { - "image_path": "G:\\images\\combined\\-1797-_png_jpg.rf.d823006afd4e6d530bbd30d98f2aba2c.jpg", - "response": "A man wearing a red hard hat is sitting down and reading a paper.", - "id": 21241 - }, - { - "image_path": "G:\\images\\combined\\-1799-_png_jpg.rf.1bbc812a59607b5599c57cbca42a323a.jpg", - "response": "A group of workers are working on a yellow ladder.", - "id": 21242 - }, - { - "image_path": "G:\\images\\combined\\-180-_png_jpg.rf.0a33a76cea572d56a965c1b6a2ab42e6.jpg", - "response": "A man works on a construction site.", - "id": 21243 - }, - { - "image_path": "G:\\images\\combined\\-1802-_png_jpg.rf.8c0291afea221ab8980dd812fb0f190b.jpg", - "response": "A group of people(46,156),(553,999)(478,173),(613,546)(177,113),(331,343)(538,1),(996,999) in hard hats(306,154),(463,276)(378,273),(493,386)(1,145),(108,307)(2,273),(66,389)(1,2),(103,111) and coats(538,102),(996,999)(62,282),(489,737)", - "id": 21244 - }, - { - "image_path": "G:\\images\\combined\\-1803-_png_jpg.rf.c4e04d990c0532dbc72ab74b047a798b.jpg", - "response": "A collage of photos of two men standing on a construction site. The two men are wearing hard hats and one is pointing towards something. The background is a grey sky and the ground is wet. There are also two other photos of the two men, one where they are standing closer together and one where they are further apart.", - "id": 21245 - }, - { - "image_path": "G:\\images\\combined\\-1805-_png_jpg.rf.e0b74d6ae84bfbff1151e99f26d45c5e.jpg", - "response": "A group of men wearing blue and yellow hard hats are working on a power line. They are standing on a pile of rocks and seem to be in the process of climbing down. There are many people in the scene, some of them are holding tools. In the background, there is a mountain.", - "id": 21246 - }, - { - "image_path": "G:\\images\\combined\\-1807-_png_jpg.rf.6eee52c705ccbb05717b3ecb2f757e35.jpg", - "response": "A man in a yellow vest and white hard hat is pointing to a machine.", - "id": 21247 - }, - { - "image_path": "G:\\images\\combined\\-1808-_png_jpg.rf.37352d146109354c7b976ff0d0cb33d6.jpg", - "response": "A man in a hard hat and work clothes is standing on a wooden pillar.", - "id": 21248 - }, - { - "image_path": "G:\\images\\combined\\-1809-_png_jpg.rf.6a9c00cb122c80c53a3c2d59ae5f15aa.jpg", - "response": "A group of three men in red work clothes and white helmets are sitting on a balcony. They are all smiling at the camera. The man on the left is wearing a white helmet with a black strap and the man in the middle is holding a walkie talkie. The man on the right is partially visible.", - "id": 21249 - }, - { - "image_path": "G:\\images\\combined\\-1810-_png_jpg.rf.7d3a5f159b3854cb0f8ef8aa5ef93419.jpg", - "response": "The image shows two workers in red hard hats and green work clothes, one larger and one smaller, climbing a set of stairs in a large industrial building. They are wearing gloves and the larger worker is also wearing a white shirt. The background shows a large piece of machinery or equipment, possibly blue in color, with many wires and pipes attached to it. The wall to the right of the workers is white and there is a window on the wall above the workers. The floor of the room is covered with many metal tubes or pipes.", - "id": 21250 - }, - { - "image_path": "G:\\images\\combined\\-1811-_png_jpg.rf.401119a736f392fd778f0e5b911d5321.jpg", - "response": "A construction site with several workers in blue uniforms and yellow hard hats. They are working on a building that has a sign that says danger.", - "id": 21251 - }, - { - "image_path": "G:\\images\\combined\\-1813-_png_jpg.rf.579bc48b4146be1093910cee4863d547.jpg", - "response": "A construction worker wearing a yellow hard hat is kneeling down and working on a large metal piece of equipment. The worker is wearing a grey jacket and grey pants. They are on a construction site and there is a large metal structure being built in the background. There is a puddle of water to the left of the worker and a large piece of wood to the right of them.", - "id": 21252 - }, - { - "image_path": "G:\\images\\combined\\-1814-_png_jpg.rf.3e508902001d2761b63e8011b8738365.jpg", - "response": "Men working on a large anchor chain in front of a large ship.", - "id": 21253 - }, - { - "image_path": "G:\\images\\combined\\-1815-_png_jpg.rf.68efad34cd14bda4c5cd00788aa40bcc.jpg", - "response": "The image shows two workers in blue uniforms and blue helmets, one on each side of a tall ladder. They are holding the ladder up with their bodies, with one end of the ladder resting on a wall and the other end raised in the air. The workers are in a residential area, with a house and trees in the background. There are also two power lines in the air.", - "id": 21254 - }, - { - "image_path": "G:\\images\\combined\\-1816-_png_jpg.rf.5ce84070f6c4dc87911fe0963b82ed49.jpg", - "response": "In the image two men are standing in a construction site. They are both wearing safety gear which includes yellow vests and white helmets. The man on the left is holding a tablet and the man on the right is holding a clipboard. Both of them are wearing yellow vests.", - "id": 21255 - }, - { - "image_path": "G:\\images\\combined\\-1817-_png_jpg.rf.d06dfb19cfecd62dd6ec86cb9675732c.jpg", - "response": "A group of people working on a construction site.", - "id": 21256 - }, - { - "image_path": "G:\\images\\combined\\-182-_png_jpg.rf.744054870cf65073ae8423944e8a08fd.jpg", - "response": "The image shows a group of three workers in a field. They are standing on a patch of dirt and appear to be looking at a tablet. The ground is a mix of dirt and red clay and there are yellow and white striped bars stuck in the ground around them. In the distance, there are more workers and a few trees. The sky is blue with some white clouds.", - "id": 21257 - }, - { - "image_path": "G:\\images\\combined\\-1820-_png_jpg.rf.34221448481c62bc32cd64e933311994.jpg", - "response": "A man sitting on the floor in an unfinished room.", - "id": 21258 - }, - { - "image_path": "G:\\images\\combined\\-1822-_png_jpg.rf.029ec25ec13b5b3be3a572ec2f66059e.jpg", - "response": "In the image, there are two construction workers wearing blue helmets. They are working on a building site that has a lot of concrete pillars and two story buildings in the background. One of the workers is using a machine with a red handle and a large lens on it. Another worker is in the background, wearing an orange shirt. The sky is cloudy and there are a few birds flying around.", - "id": 21259 - }, - { - "image_path": "G:\\images\\combined\\-1829-_png_jpg.rf.251bcaf06462b3f3f7910bc54d3c0868.jpg", - "response": "In the image there are several men wearing hard hats and some are wearing blue shirts. One man is kneeling down and holding fire with a stick. There is a sign that says \"Jian gong\" in the top left corner of the image. There is a large piece of machinery behind the men and a bucket is lifting something out of the machine.", - "id": 21260 - }, - { - "image_path": "G:\\images\\combined\\-183-_png_jpg.rf.2cf69c9f6a1a6f53e6e6502064ff0ffb.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing grey jackets and one of them is wearing a yellow hard hat. They are working on a wire structure, with mountains visible in the background.", - "id": 21261 - }, - { - "image_path": "G:\\images\\combined\\-1832-_png_jpg.rf.21eb36d00917d6f9e674ec8ea8c2b3cc.jpg", - "response": "A group of people standing around a construction site.", - "id": 21262 - }, - { - "image_path": "G:\\images\\combined\\-1833-_png_jpg.rf.44e7b2474c500731a9e030c455b62e4b.jpg", - "response": "A group of people standing in a warehouse with a woman holding a tablet.", - "id": 21263 - }, - { - "image_path": "G:\\images\\combined\\-1835-_png_jpg.rf.6157d55bdbaa66d24790cec340d8a07f.jpg", - "response": "A construction site with workers on scaffolding.", - "id": 21264 - }, - { - "image_path": "G:\\images\\combined\\-1837-_png_jpg.rf.15694fd3051ceb8884082c9d2d7870a6.jpg", - "response": "A group of people wearing yellow hard hats are standing around a man who is pouring concrete into a square hole in the ground. The man is wearing a uniform and the group is made up of both men and women. Some people are wearing ties and others are wearing jackets. The group is standing on a construction site and there are several umbrellas in the background.", - "id": 21265 - }, - { - "image_path": "G:\\images\\combined\\-1838-_png_jpg.rf.ff7a6c5aedd7caa01d4a1edef3825fb5.jpg", - "response": "In the image two workers are building a scaffolding. They are wearing blue and white clothes and yellow helmets. The sky is blue with some clouds.", - "id": 21266 - }, - { - "image_path": "G:\\images\\combined\\-1839-_png_jpg.rf.a7b51faafd282919fe655a55d09f5771.jpg", - "response": "A man in a blue hard hat is working on a machine.", - "id": 21267 - }, - { - "image_path": "G:\\images\\combined\\-184-_png_jpg.rf.3e127c1dc5f0596e17a7d059eb7483bb.jpg", - "response": "Three men standing in front of a building under construction", - "id": 21268 - }, - { - "image_path": "G:\\images\\combined\\-1840-_png_jpg.rf.8ac4ea63ffd9f766a0806c65c1501dca.jpg", - "response": "The image shows three construction workers at a construction site. They are all wearing red shirts and grey pants. The worker on the left is holding a yellow hard hat and a blue and white tool. The worker in the middle is holding a blue and white tool and a grey propane tank. The worker on the right is sitting on a piece of machinery with a yellow hard hat and a grey propane tank. There is a grey rock pile behind them. In the background, there are three mountains.", - "id": 21269 - }, - { - "image_path": "G:\\images\\combined\\-1842-_png_jpg.rf.e7436f1fb308210be15e197fb2a553cd.jpg", - "response": "A man wearing a yellow vest and a white helmet is smiling at the camera while standing in a warehouse. He is holding a white folder. There are racks of boxes on both sides of him. The man on the right is only partially visible. They are both standing on a grey floor.", - "id": 21270 - }, - { - "image_path": "G:\\images\\combined\\-1843-_png_jpg.rf.2d7a88f21e76c32f0c21d686aa90c8f4.jpg", - "response": "a man(314,413),(919,986) in a orange vest", - "id": 21271 - }, - { - "image_path": "G:\\images\\combined\\-1844-_png_jpg.rf.a26cb227fa3f7ba58ea2ba6e62b91b29.jpg", - "response": "The image shows a group of workers in orange coveralls and hard hats working on a large red and black oil drill. The workers are\u94bb\u4e95\u5de5\u4eba and they are standing around the drill. One worker is on the left, another is on the right, and the third is in the middle. The workers are wearing hard hats and the one on the right is also wearing a red hard hat. The workers are in the process of connecting a black hose to the drill. The background is a white building with a large archway on the left.", - "id": 21272 - }, - { - "image_path": "G:\\images\\combined\\-1845-_png_jpg.rf.475992df7bf47c051d7f94c44aadb995.jpg", - "response": "A man in an orange uniform and blue hat is holding a large bundle of grey wires while standing in a field at night.", - "id": 21273 - }, - { - "image_path": "G:\\images\\combined\\-1846-_png_jpg.rf.91a994eb2d797387a8ffd5c8c7f6c611.jpg", - "response": "A group of people standing around a construction site.", - "id": 21274 - }, - { - "image_path": "G:\\images\\combined\\-1847-_png_jpg.rf.4de23422798c20d85259796382b811c3.jpg", - "response": "An electrician and a worker are working on a large circuit board. They are both wearing hard hats and the electrician is wearing a black shirt.", - "id": 21275 - }, - { - "image_path": "G:\\images\\combined\\-1848-_png_jpg.rf.1aef97caec17a4635359cd4b70175746.jpg", - "response": "The image shows two technicians working on a machine in a factory. The machine is large and made of silver metal. The technicians are both wearing blue uniforms and hard hats. One of the technicians is bending over to inspect a part of the machine that looks like a metal pipe with a red valve. The other technician is standing to the right and is wearing a red hard hat. They both have\u8eab\u4efd\u8bc1\u4ef6\u6302\u5728 their necks.", - "id": 21276 - }, - { - "image_path": "G:\\images\\combined\\-1849-_png_jpg.rf.107db18b4cb64cd6dd9642d8de7b4f16.jpg", - "response": "The image shows two men wearing blue helmets and working clothes, standing on a metal platform installed in a field. They are working on an irrigation system, which includes a metal pipe and a pump. The field has a muddy color and is covered with some vegetation, such as grass and bushes. In the background, there is a mountain and a small village with several buildings. The sky is covered with clouds.", - "id": 21277 - }, - { - "image_path": "G:\\images\\combined\\-185-_png_jpg.rf.5eee6413c5fa22d50925651286bdee01.jpg", - "response": "A group of men working on a roof in China.", - "id": 21278 - }, - { - "image_path": "G:\\images\\combined\\-1850-_png_jpg.rf.3aa4e23826f25b970f9be8993e42c875.jpg", - "response": "A picture of some people working on a power line in the snow.", - "id": 21279 - }, - { - "image_path": "G:\\images\\combined\\-1855-_png_jpg.rf.7d3546f78a949a7ab59953eeb94aa04e.jpg", - "response": "The image shows a group of construction workers at a construction site. They are wearing blue and yellow jackets and are working on a large structure made of steel rods. The sky is blue with white clouds.", - "id": 21280 - }, - { - "image_path": "G:\\images\\combined\\-1857-_png_jpg.rf.0736e82b6affd4698165cc23ecc06c3a.jpg", - "response": "A magazine cover with the title \"\u94a2\u4e0e\u4e00\u516c\u91cc\" (\u94a2\u94c1\u4e0e\u4e00\u516c\u91cc) and a picture of a group of people in orange work suits and yellow hard hats, standing in a line and holding tools under a bridge that is being built.", - "id": 21281 - }, - { - "image_path": "G:\\images\\combined\\-1858-_png_jpg.rf.d5c443dc050b4b61873cc4fb23ea7cb7.jpg", - "response": "Four men are sitting on the ground, wearing yellow hard hats and work boots. They are wearing rolled up jeans and are resting after working on a construction site.", - "id": 21282 - }, - { - "image_path": "G:\\images\\combined\\-1859-_png_jpg.rf.e87b4b31e7d00c5f2141e0f2f1b79274.jpg", - "response": "A young man wearing a fireman's helmet and coat holding a walkie talkie.", - "id": 21283 - }, - { - "image_path": "G:\\images\\combined\\-186-_png_jpg.rf.11a52f3067e9a9ff18f2d1b295b01ad8.jpg", - "response": " construction workers(647,600),(798,809)(329,674),(539,943)(747,535),(912,743)(649,857),(888,997)(623,476),(813,618)(11,666),(318,996) working on a building site", - "id": 21284 - }, - { - "image_path": "G:\\images\\combined\\-1860-_png_jpg.rf.db27f47b825eeee7590c00466478279d.jpg", - "response": "A man wearing a yellow hard hat sits on a metal platform in a large structure. The man is wearing a grey shirt and grey pants. There are many other metal platforms in the large structure and it appears to be a construction site.", - "id": 21285 - }, - { - "image_path": "G:\\images\\combined\\-1861-_png_jpg.rf.92d497b5b4e53f56da352bd18d25ada4.jpg", - "response": "Two workers in yellow shirts and hard hats are standing on a white truck.", - "id": 21286 - }, - { - "image_path": "G:\\images\\combined\\-1863-_png_jpg.rf.058926dc4fca17e48789f9ea3c0f6f27.jpg", - "response": "This is a tunnel. There are ten workers in the tunnel. They are working on the left side of the tunnel. The wall of the tunnel is silver, the ceiling is silver as well. There are two ladders on the left side of the tunnel. One worker is sitting on the top of the ladder, another one is sitting on the third rung of the ladder. Another worker is lying on the ground, one is bending over, and one is sitting on the ground. The farthest worker is sitting on the right side of the tunnel. They are wearing orange safety vests.", - "id": 21287 - }, - { - "image_path": "G:\\images\\combined\\-1864-_png_jpg.rf.6f54f00c152e92b2258b06a38a15fa54.jpg", - "response": "A construction worker in yellow helmet and blue jacket is working on a scaffold.", - "id": 21288 - }, - { - "image_path": "G:\\images\\combined\\-1865-_png_jpg.rf.f410a8521e58d7e00ae5e4ca2d66dfb0.jpg", - "response": "A man wearing a white hard hat and a green shirt is using a turnstile. He has a stack of three hard hats on his head. In the background there are three other people, one wearing a blue shirt and white hat, one wearing an orange shirt and white hat, and one wearing a white shirt and blue hat. There is a white building in the background and a blue banner with white writing on the left.", - "id": 21289 - }, - { - "image_path": "G:\\images\\combined\\-1867-_png_jpg.rf.af7e92921e61f350f00802f3099685fa.jpg", - "response": "many people walking in a construction site(139,386),(996,996)", - "id": 21290 - }, - { - "image_path": "G:\\images\\combined\\-1868-_png_jpg.rf.a49229351baf52d1a5222cf3ace744ae.jpg", - "response": "A man and a woman wearing hard hats and work clothes are working with metal. They are standing in front of a table with metal on it and there are several other people in the background. There are also several bottles on the ground near the table. In the background, there is a building under construction and a billboard.", - "id": 21291 - }, - { - "image_path": "G:\\images\\combined\\-187-_png_jpg.rf.52a891b388f7b7c8c0f254757d501e19.jpg", - "response": "A man wearing a white shirt with black stripes is lifting something. Another man is kneeling down and looking at something. They are both wearing tool belts.", - "id": 21292 - }, - { - "image_path": "G:\\images\\combined\\-1871-_png_jpg.rf.a60261c3992169af41ecbb6a3d4b4cd5.jpg", - "response": "A man and a woman are sitting on a curb, both wearing hard hats. The man has an additional three yellow helmets stacked on his hat. They are both wearing blue jackets and the woman has a black bag on her lap. There are two red fire hydrants in the background.", - "id": 21293 - }, - { - "image_path": "G:\\images\\combined\\-1872-_png_jpg.rf.5b73659b83547f027fed4c961dca1b7a.jpg", - "response": "A person wearing a yellow hard hat is standing on a construction site. They are standing on a metal grid and are looking down at the ground. The person's reflection is visible in the grid.", - "id": 21294 - }, - { - "image_path": "G:\\images\\combined\\-1873-_png_jpg.rf.7bf3b47b46fec3c731d8e905909e2aa7.jpg", - "response": " rescuers(2,28),(247,999)(482,342),(763,997)(308,533),(626,997)(358,267),(528,619) work to free a trapped worker at a construction site in China", - "id": 21295 - }, - { - "image_path": "G:\\images\\combined\\-1874-_png_jpg.rf.8219cca95553f803ba00bb91625a99b0.jpg", - "response": "A man in a blue uniform and yellow gloves is on top of a power pole. He is wearing a blue hat and is in the process of climbing the pole. There are other men in the image, but they are not on the power pole. There are many other power poles in the background. The sky is blue and clear.", - "id": 21296 - }, - { - "image_path": "G:\\images\\combined\\-1876-_png_jpg.rf.da72321920a103cc43c2954ee3a52a0f.jpg", - "response": "A group of people working on a construction site.", - "id": 21297 - }, - { - "image_path": "G:\\images\\combined\\-1878-_png_jpg.rf.80532dbe8f0d4cdde1a850d9e34930e7.jpg", - "response": "In the image there are two workers wearing yellow helmets, they are working on a construction site. The background is a yellow construction site with a lot of steel bars.", - "id": 21298 - }, - { - "image_path": "G:\\images\\combined\\-1879-_png_jpg.rf.4d370cd83f1a6363a8d6df77c5fa8c5e.jpg", - "response": "A group of men in hard hats stand on a construction site looking at a blueprint.", - "id": 21299 - }, - { - "image_path": "G:\\images\\combined\\-188-_png_jpg.rf.258a2f1f23769ad022b494c7529032f5.jpg", - "response": "The image shows a group of construction workers at a construction site. They are working on a project that involves building a bridge over a busy street. The bridge is made of concrete and steel, and it appears to be in the middle of construction. Some of the workers are standing on the bridge, while others are working on the street below. They are wearing hard hats and uniforms, and they have tools and equipment with them. The photo is taken from a low angle, looking up at the workers.", - "id": 21300 - }, - { - "image_path": "G:\\images\\combined\\-1880-_png_jpg.rf.48fa3c172326e5d37ad899500d23402c.jpg", - "response": "a group of men standing around a puddle of water", - "id": 21301 - }, - { - "image_path": "G:\\images\\combined\\-1881-_png_jpg.rf.1ad650ae444dab19633dedf873206d9d.jpg", - "response": "The image features two men working on a light pole. One man is standing in a white bucket lift and is in the process of installing a light. He is wearing a yellow shirt and a hard hat. The man is also wearing a tool belt. The other man is standing on a white vehicle behind him. They are both working on the pole which has a yellow and black striped pattern. The bucket lift and the vehicle they are working on are both white. The whole scene is taking place in front of a large apartment building.", - "id": 21302 - }, - { - "image_path": "G:\\images\\combined\\-1883-_png_jpg.rf.fef0fa05884b4231f73185ca20f4b5b5.jpg", - "response": "A man in a grey shirt is working on a large machine.", - "id": 21303 - }, - { - "image_path": "G:\\images\\combined\\-1884-_png_jpg.rf.2eaf8f3cefe23d88cb4916a079cb98a7.jpg", - "response": "Group of men in front of a building site", - "id": 21304 - }, - { - "image_path": "G:\\images\\combined\\-1885-_png_jpg.rf.154faf37b9c1dbaf411e4d6a5fe0e7c9.jpg", - "response": "A woman wearing a hard hat and high visibility vest holding a clipboard in front of a stack of shipping containers.", - "id": 21305 - }, - { - "image_path": "G:\\images\\combined\\-1886-_png_jpg.rf.021f17978cc54c429da01696a681813a.jpg", - "response": "The image shows a group of three workers sitting on a piece of metal with snow capped mountains in the background. They are wearing yellow hard hats and appear to be taking a break. One of the workers is holding a cell phone.", - "id": 21306 - }, - { - "image_path": "G:\\images\\combined\\-1887-_png_jpg.rf.0802d0d40c8d3258e5398cc84967be67.jpg", - "response": "A group of men are working on a roof, using a hose to wash it.", - "id": 21307 - }, - { - "image_path": "G:\\images\\combined\\-1888-_png_jpg.rf.15d75ad493c204e2001a740cc6f5e1fc.jpg", - "response": "A man and a woman wearing matching red helmets are looking at a red helmet.", - "id": 21308 - }, - { - "image_path": "G:\\images\\combined\\-1889-_png_jpg.rf.39e186a6afffbb15c71f0166a7a5f629.jpg", - "response": "The image shows a group of people standing around a large concrete beam. Some of the people are wearing hard hats and coveralls, and there are several suitcases nearby. In the background, there is a factory with blue and white walls and silver pipes. There is also a large clock on the wall.", - "id": 21309 - }, - { - "image_path": "G:\\images\\combined\\-1890-_png_jpg.rf.5c9a1d4e789a070ccf0666fdb2de5a89.jpg", - "response": "A group of workers in hard hats on a bridge.", - "id": 21310 - }, - { - "image_path": "G:\\images\\combined\\-1892-_png_jpg.rf.9566686814b8e3f44203fae456a4a975.jpg", - "response": "A construction site with multiple people working on it. There is a man in a green shirt and hat sitting on a red cart with a large drill. Another man is standing on the left side of the image. In front of the men is a large pile of steel rods. To the right of the men is a large white object. The background shows the beginning of a building with a blue and green construction tent.", - "id": 21311 - }, - { - "image_path": "G:\\images\\combined\\-1893-_png_jpg.rf.756e349aa318cbbb0dd9207986cea814.jpg", - "response": "A construction worker is using a machine to cut through a concrete wall. The worker is wearing a yellow safety helmet and a yellow vest. They are holding a large black machine with a drill on the end. There are several wires attached to the machine and running along the concrete wall. The wall is a light grey colour and is covered in wires. There is a hole in the wall where the drilling is taking place. There are several other workers in the background, some of them are wearing hard hats.", - "id": 21312 - }, - { - "image_path": "G:\\images\\combined\\-1894-_png_jpg.rf.7a6f98923eef700f7beac70f10593a47.jpg", - "response": "A group of people working on a construction site.", - "id": 21313 - }, - { - "image_path": "G:\\images\\combined\\-1895-_png_jpg.rf.aeee2d1680a77dbff68c2d31fbe9f34e.jpg", - "response": "A man in a green jacket and yellow hat fixing a power box.", - "id": 21314 - }, - { - "image_path": "G:\\images\\combined\\-19-_png_jpg.rf.8a95af32ef6a4a1a99576a0498997efa.jpg", - "response": "A group of people working on a construction site.", - "id": 21315 - }, - { - "image_path": "G:\\images\\combined\\-190-_png_jpg.rf.32e3bd0337da9356029da968dd67eac7.jpg", - "response": "A large building under construction with a sign that reads \"nan jing book city\" on the front of it.", - "id": 21316 - }, - { - "image_path": "G:\\images\\combined\\-1900-_png_jpg.rf.9864d439cbc91cacb7639f0d7c4adc49.jpg", - "response": "A construction site with a large concrete pillar in the middle and two men working on the left side of the pillar. A man is on the left side of the pillar holding a crane hook with a cage attached to it. Another man is on the right side of the pillar, holding a rope attached to the cage. The cage is hanging from the hook and the rope. There are also some other people in the image, but they are not working on the construction site.", - "id": 21317 - }, - { - "image_path": "G:\\images\\combined\\-1901-_png_jpg.rf.7fceb6bd129f14c5982559386ea56102.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is circular and has a coned shape ceiling. The tunnel is currently bare, but there are a few rail tracks laid out in the middle of the tunnel. There are also a few people in the tunnel, with some in the foreground and others further back. One person is wearing a white helmet and is standing near the left side of the tunnel. Another person is wearing a orange helmet and is standing near the right side of the tunnel.", - "id": 21318 - }, - { - "image_path": "G:\\images\\combined\\-1902-_png_jpg.rf.af8f7e33eaef7db83d81c9727acdb03b.jpg", - "response": "A man wearing a hard hat and work clothes stands on a construction site. He is holding a wooden post with graffiti on it.", - "id": 21319 - }, - { - "image_path": "G:\\images\\combined\\-1903-_png_jpg.rf.2d4455a6fe5ff9d62c59273ee6b02b2d.jpg", - "response": "A construction site with a green building under construction.", - "id": 21320 - }, - { - "image_path": "G:\\images\\combined\\-1905-_png_jpg.rf.4962f1577637a0f60554dce9d66b3688.jpg", - "response": "A man(478,549),(683,743) is trapped in a hole", - "id": 21321 - }, - { - "image_path": "G:\\images\\combined\\-1906-_png_jpg.rf.a00ee2f23e52d6077be95289f3fdf2de.jpg", - "response": "A group of people working on a wooden structure.", - "id": 21322 - }, - { - "image_path": "G:\\images\\combined\\-1907-_png_jpg.rf.cfda70cb68158507bf1bda667cf5f378.jpg", - "response": "Three men working on a construction site, two of them wearing yellow helmets and working on wooden structures, one of them holding a level.", - "id": 21323 - }, - { - "image_path": "G:\\images\\combined\\-1910-_png_jpg.rf.6a645e5cdf0e24c17d904a416d7ee8f8.jpg", - "response": "The picture shows some workers are building a bridge. A large crane is lifting some steel plates to the bridge. There are six workers in the picture, some are wearing orange uniforms and some are wearing red hats. The bridge is built on the water, and the workers are on the bridge.", - "id": 21324 - }, - { - "image_path": "G:\\images\\combined\\-1911-_png_jpg.rf.71c40c8886f7c9f1dba7d382e7b9e1c5.jpg", - "response": "a group of men standing around a construction site", - "id": 21325 - }, - { - "image_path": "G:\\images\\combined\\-1915-_png_jpg.rf.fedfcfb240ee86123ba57f9bcbf3b76a.jpg", - "response": "A group of people in hard hats standing in front of a construction site.", - "id": 21326 - }, - { - "image_path": "G:\\images\\combined\\-1917-_png_jpg.rf.d0d0ddb0b14006ded2343f5f869ba064.jpg", - "response": "A group of five men working on a building construction site. They are all wearing hard hats and are standing on a scaffold. The man in the middle is wearing a green shirt and grey shorts. The man on the far left is wearing a red and white checkered shirt. The man second to the left is wearing a yellow and orange checkered shirt. The man to the right of the man in the middle is wearing a yellow shirt and grey shorts. The man to the far right is wearing a white shirt and grey shorts.", - "id": 21327 - }, - { - "image_path": "G:\\images\\combined\\-1918-_png_jpg.rf.aa8768f3db066c6914d6c9f557b641c1.jpg", - "response": "A group of men in blue uniforms and hard hats are working on an electrical tower. They are standing around the base of the tower, which has cinder blocks and metal supports. In the background, there is a large truck with a crane. The sky is blue and there are no clouds. The ground is dirt and there are a few power lines in the air.", - "id": 21328 - }, - { - "image_path": "G:\\images\\combined\\-1919-_png_jpg.rf.9e3258b0637c0d3c469a1248762465e5.jpg", - "response": "In the image two construction workers are shoveling sand into a hopper on the back of a truck. The sand is being funneled down a red pipe into the hopper. The workers are wearing red and yellow and the sky is overcast.", - "id": 21329 - }, - { - "image_path": "G:\\images\\combined\\-192-_png_jpg.rf.c55130611dc90a48f32d5cc785072671.jpg", - "response": "A couple of men are on a power line.", - "id": 21330 - }, - { - "image_path": "G:\\images\\combined\\-1923-_png_jpg.rf.c549cce43f2ee7b27a6183765e5fdef7.jpg", - "response": "The image shows two workers on a ladder inspecting power lines. They are wearing white helmets and work clothes. The sky is blue with white clouds. The background also shows a crane and a portion of a high-rise building.", - "id": 21331 - }, - { - "image_path": "G:\\images\\combined\\-1925-_png_jpg.rf.52789da4a26b62e4e5715cf1e3a5a049.jpg", - "response": "A man in a red jacket and hat shines a light into a dark cave while another man looks on.", - "id": 21332 - }, - { - "image_path": "G:\\images\\combined\\-1926-_png_jpg.rf.9e8f7efb3fa4a1598bf82246e0540cc4.jpg", - "response": "A person in a white hard hat and safety glasses is operating a piece of machinery.", - "id": 21333 - }, - { - "image_path": "G:\\images\\combined\\-1927-_png_jpg.rf.940ca483018e06a80d170715f4401527.jpg", - "response": "An empty pool with a person standing in the middle of it.", - "id": 21334 - }, - { - "image_path": "G:\\images\\combined\\-1929-_png_jpg.rf.a8aad48183e026ec4dafca3022044f6d.jpg", - "response": "A group of construction workers in yellow and orange hard hats are standing on a blue metal platform.", - "id": 21335 - }, - { - "image_path": "G:\\images\\combined\\-1930-_png_jpg.rf.275b0114c5d4f126990000729dedc6a0.jpg", - "response": "A worker is suspended from a harness, cleaning the windows of a skyscraper. He is wearing a yellow shirt, a yellow hat, and yellow gloves. He is holding a water fed pole with a brush on the end. The skyscraper is a grey building with many windows. It is currently under construction, with a large amount of equipment and materials visible on the site. The sky is blue and cloudless.", - "id": 21336 - }, - { - "image_path": "G:\\images\\combined\\-1932-_png_jpg.rf.df18a18c55cc048cfc6e874cbb925f09.jpg", - "response": "The image shows a large ship being guided by a smaller boat. The ship is black and red and is labeled as the Xing Hong Kong. The smaller boat has several people on it, some of whom are wearing orange and blue uniforms. They are holding onto ropes and logs. The sky is blue with clouds. The ship is in the water and there is a dock in the foreground.", - "id": 21337 - }, - { - "image_path": "G:\\images\\combined\\-1933-_png_jpg.rf.9c724b1a03a5f3813a59dfdc84c9bd95.jpg", - "response": "A group of men working on a power line.", - "id": 21338 - }, - { - "image_path": "G:\\images\\combined\\-1934-_png_jpg.rf.07da97a210cbe56893291b4e60c0d4fc.jpg", - "response": "A couple of workers in a cherry picker fixing a traffic light.", - "id": 21339 - }, - { - "image_path": "G:\\images\\combined\\-1936-_png_jpg.rf.6b391ba5325452bcb0415c2fd3f0a582.jpg", - "response": "In the image there are three construction workers in the background. They are working on a large construction site that has a lot of materials and equipment. There is a large piece of machinery in the background that looks like it is lifting something. In the foreground, there is a large net that is covering a pit. The net has a hole in it and there is a rock inside the pit. The netting is also covering a wooden platform. The sky is blue and there are no clouds in the sky.", - "id": 21340 - }, - { - "image_path": "G:\\images\\combined\\-1937-_png_jpg.rf.8c17fd6932312a5dc1e83d1038bf03f3.jpg", - "response": "A worker welding steel in a factory.", - "id": 21341 - }, - { - "image_path": "G:\\images\\combined\\-194-_png_jpg.rf.cb8b749d6538278b790d8c845109069c.jpg", - "response": "In the image two men are working on electricity wires on a pole. They are wearing red and yellow clothes and yellow helmets. The pole is grey and wide. There are many wires around them and some yellow boxes. The sky is blue with white clouds.", - "id": 21342 - }, - { - "image_path": "G:\\images\\combined\\-1941-_png_jpg.rf.1907e1f0de63a85e7ff413d9d5b6dcc0.jpg", - "response": "A man in a hard hat and a safety vest is pointing to a banner hanging on a building. The banner reads, \"\u8ba4\u771f\u5b9e\u7269 '\u5b89\u5168\u7b2c\u4e00',\u9884\u9632\u4e3a\u4e3b\", \"\u627f\u8ba4\u5b9e\u7269 '\u5b89\u5168\u7b2c\u4e00',\u9884\u9632\u4e3a\u4e3b\". The man is standing in front of a building with a yellow and red banner hanging on it. The banner has Chinese writing on it. Another man is standing to the left of the man in the hard hat and safety vest. They are both standing on a concrete surface.", - "id": 21343 - }, - { - "image_path": "G:\\images\\combined\\-1943-_png_jpg.rf.89a5aa0fe02f77c2d71db8c0b4360b7a.jpg", - "response": "A worker is welding steel in a factory.", - "id": 21344 - }, - { - "image_path": "G:\\images\\combined\\-1945-_png_jpg.rf.362e481d4acfdf7f084ee4b943383f67.jpg", - "response": "Four men in hard hats stand in a construction site.", - "id": 21345 - }, - { - "image_path": "G:\\images\\combined\\-1946-_png_jpg.rf.c4c37841082bc3d21dde7939663cc58f.jpg", - "response": "In the image there is a group of workers working on a large metal pole. The metal pole is grey and is situated in the middle of the image. There are five workers in total, each wearing a different coloured helmet. Two workers are wearing grey helmets, one is wearing a yellow helmet, one is wearing a white helmet and one is wearing a orange helmet. They are all wearing grey shirts and some are wearing grey pants. In the background there are power lines behind the workers.", - "id": 21346 - }, - { - "image_path": "G:\\images\\combined\\-1948-_png_jpg.rf.6141b51b148b8bbeba5b5442336fe643.jpg", - "response": "A man and a woman in hard hats and reflective vests, standing in a construction area. The woman is holding a clipboard and the man is holding blueprints.", - "id": 21347 - }, - { - "image_path": "G:\\images\\combined\\-1949-_png_jpg.rf.b437a2dda11a03e5643e9cf47891d898.jpg", - "response": "A man sitting on a bulldozer going over blueprints.", - "id": 21348 - }, - { - "image_path": "G:\\images\\combined\\-1950-_png_jpg.rf.4574791b6636c3371a9d1932e0e189dc.jpg", - "response": "A construction site with a man in an orange uniform with a yellow helmet leaning over with a drill in his hand. Another man is standing in a hole in the ground. A yellow and white bulldozer is in the background.", - "id": 21349 - }, - { - "image_path": "G:\\images\\combined\\-1951-_png_jpg.rf.6c11fad26ebf790722a8ac18582f628a.jpg", - "response": "A group of workers in hard hats and orange vests are standing in a construction site. They are working on a bridge that is under construction. The bridge has steel beams and reinforcement bars. The sky is blue and there are no clouds in the sky.", - "id": 21350 - }, - { - "image_path": "G:\\images\\combined\\-1952-_png_jpg.rf.13f23548c55c31915cd79951498253a9.jpg", - "response": "The image shows a group of construction workers at a building site. They are all wearing yellow hard hats and work clothes. In the foreground, a man is using a yellow tool, possibly a drill, to work on a large grey surface. Another man is kneeling down to the left of him, and a third man is standing to the right of the first man. To the right of the second man, a fourth man is operating a large yellow machine. In the background, there are several other people at the site, some of them wearing red backpacks. The sky is grey and overcast, and there are red flags flying in the background.", - "id": 21351 - }, - { - "image_path": "G:\\images\\combined\\-1953-_png_jpg.rf.46c00eb8d462afde402be97f105ff5f7.jpg", - "response": "A group of three men standing in front of a piece of machinery.", - "id": 21352 - }, - { - "image_path": "G:\\images\\combined\\-1954-_png_jpg.rf.0418fc44a19dabe14c63d4c04521f26a.jpg", - "response": " coal miners(279,452),(418,997)(401,435),(523,996)(493,398),(637,996)(70,438),(260,996) in a mine", - "id": 21353 - }, - { - "image_path": "G:\\images\\combined\\-1958-_png_jpg.rf.eb1492b56693ebb7b632488b451834cc.jpg", - "response": "A group of people working on a building.", - "id": 21354 - }, - { - "image_path": "G:\\images\\combined\\-1960-_png_jpg.rf.0b98ec65b4f1aecaca2a2e38dd6b1a59.jpg", - "response": "The men are using flashlights to search for the cat.", - "id": 21355 - }, - { - "image_path": "G:\\images\\combined\\-1961-_png_jpg.rf.56d5acafacfb436b910351548a8f612c.jpg", - "response": "The photo shows workers in a tunnel. There are six workers in the photo, some are lifting a large piece of material, and some are fixing the rail. The rail is covered with black cloth. The workers are wearing green work clothes and yellow helmets. One of them has a helmet with a red star on it. The background is a dark tunnel and a brown wall. There is a iron stick on the right side of the photo.", - "id": 21356 - }, - { - "image_path": "G:\\images\\combined\\-1962-_png_jpg.rf.3c607052d64d751e8c31974a3224e0c3.jpg", - "response": "In the image there are multiple workers on a construction site. They are all working on a project together. Some of the workers are sitting on a ladder, while others are standing. They are all wearing different colored shirts, with some wearing blue, and others wearing red or black. They are all working together to complete the project.", - "id": 21357 - }, - { - "image_path": "G:\\images\\combined\\-1963-_png_jpg.rf.88de012cadd6c9d7412d23b89cc1ce7b.jpg", - "response": "A group of ten men wearing hard hats are sitting or standing next to each other in a grey industrial building. They are all dressed in black clothing and some of them have tools. The floor is grey and there are two metal rails in the bottom right corner of the image.", - "id": 21358 - }, - { - "image_path": "G:\\images\\combined\\-1964-_png_jpg.rf.59d9a82e14cc23eb2c1baefa9c07d434.jpg", - "response": "A worker wearing a safety vest and hard hat is standing on a scaffold.", - "id": 21359 - }, - { - "image_path": "G:\\images\\combined\\-1966-_png_jpg.rf.2ce64339ccb76da26aa31f2cd97b39a1.jpg", - "response": "A man is working at a construction site.", - "id": 21360 - }, - { - "image_path": "G:\\images\\combined\\-1967-_png_jpg.rf.c7086c0a1660c767f50edfeaa0afedf0.jpg", - "response": "Two men in blue hard hats and safety gear are looking at a clipboard in front of a green electrical box.", - "id": 21361 - }, - { - "image_path": "G:\\images\\combined\\-1968-_png_jpg.rf.3d74281e75bb728e7da95f2aeba05f87.jpg", - "response": "In the image, several construction workers are working on a building site. They are wearing hard hats and are focused on their tasks. One of the workers is kneeling down and appears to be cutting something with a pair of pliers. Another worker is leaning over and appears to be measuring something. There is a pile of rubble and debris on the ground near the workers. The sky above the building site is bright white.", - "id": 21362 - }, - { - "image_path": "G:\\images\\combined\\-1970-_png_jpg.rf.1be35566c464623aa0ad6d6905d3e85c.jpg", - "response": "A man working on a construction site wearing a yellow hard hat.", - "id": 21363 - }, - { - "image_path": "G:\\images\\combined\\-1971-_png_jpg.rf.a7f4ba366052db6c3d2d0ec86cbe651e.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a railway.", - "id": 21364 - }, - { - "image_path": "G:\\images\\combined\\-1972-_png_jpg.rf.fe6f4e8bd5450156602f62c2f6aa0fc4.jpg", - "response": "A construction site with a pile of rubble and debris. A crane is lifting debris and a man is standing next to it. A dog is also present in the scene.", - "id": 21365 - }, - { - "image_path": "G:\\images\\combined\\-1973-_png_jpg.rf.d5a573d759b5acb90a2cc002823ed8ab.jpg", - "response": " Rescue workers(470,488),(767,997)(356,546),(511,743)(283,733),(488,966)(423,375),(624,618) from the city's fire department work to rescue a trapped worker in a coal mine in Handan city, Hebei province, China.", - "id": 21366 - }, - { - "image_path": "G:\\images\\combined\\-1974-_png_jpg.rf.a2ece62bf182f870eb519b8dd9e40f77.jpg", - "response": "A man works on a ship that is being dismantled.", - "id": 21367 - }, - { - "image_path": "G:\\images\\combined\\-1975-_png_jpg.rf.93098796e145fbf99742dcad0a4d2c4b.jpg", - "response": "The image shows a group of people in a room. Some are kneeling on the floor, and some are standing. They are working on something, with tools such as a screwdriver and a hammer visible. There is a yellow ladder against a wall. A man is sitting on the floor, and another man is standing next to him. A third man is kneeling on the floor and looking at something. A fifth person is standing in the background, and a sixth person is standing further back. The room has a yellow floor and walls, and a door is open in the background. There is a red and white sign on the wall, and a white and red sign is also visible. The room is filled with equipment, including a suitcase and a handbag.", - "id": 21368 - }, - { - "image_path": "G:\\images\\combined\\-1978-_png_jpg.rf.d4603f5bd760d9b50ecda3c172208681.jpg", - "response": "A group of people in red helmets are crouched down looking at a box on the ground. They are all holding papers and looking at a clipboard. They are all wearing white shirts and red helmets. In the background there is a building with a sign that says \"CMB\".", - "id": 21369 - }, - { - "image_path": "G:\\images\\combined\\-198-_png_jpg.rf.c36b1935a1c8bf17bfc7e7d73d560772.jpg", - "response": "A man in a blue shirt and red helmet points to something on a power pole while another man in a grey shirt and blue helmet looks on.", - "id": 21370 - }, - { - "image_path": "G:\\images\\combined\\-1980-_png_jpg.rf.84318dce13b28ddc8c96d24c60ac40cd.jpg", - "response": "An electrician working on an electrical box in a field.", - "id": 21371 - }, - { - "image_path": "G:\\images\\combined\\-1981-_png_jpg.rf.b6f5317db2371b1259c536c2b9bc85c7.jpg", - "response": "Four men in blue overalls and pink hard hats looking at a blueprint in front of a building under construction", - "id": 21372 - }, - { - "image_path": "G:\\images\\combined\\-1983-_png_jpg.rf.df00447512f0cb9bbe762eb854ac5e31.jpg", - "response": "In the image two workers are on a ship deck working on a large metal cylinder. They are wearing hard hats and one worker is wearing a grey shirt and yellow hard hat while the other worker is wearing a navy blue shirt and yellow hard hat. They are both working on the ship together.", - "id": 21373 - }, - { - "image_path": "G:\\images\\combined\\-1984-_png_jpg.rf.9c6892e19dbcc4707c4574fd7158ee6f.jpg", - "response": "A worker in grey high visibility gear with a helmet on, climbing a ladder to the top of a white tower.", - "id": 21374 - }, - { - "image_path": "G:\\images\\combined\\-1988-_png_jpg.rf.2d299b721908a9dee936128e1dce5424.jpg", - "response": "A group of men in white shirts and some in suits, all wearing hard hats, are walking across a parking lot. Some men are also carrying a camera. In the background, there are a few buildings under construction and a blue wall. There are also two cranes in the distance.", - "id": 21375 - }, - { - "image_path": "G:\\images\\combined\\-199-_png_jpg.rf.b6dfc8a316889f5e3e8730869fded4e8.jpg", - "response": "A man standing on top of a yellow machine.", - "id": 21376 - }, - { - "image_path": "G:\\images\\combined\\-1991-_png_jpg.rf.bb02e7634b9d96dc2d98558cf4fd2d65.jpg", - "response": "The image shows a construction site with multiple workers present. There is a yellow and black bulldozer present, as well as a yellow and black backhoe. A man is operating the backhoe, while another man is directing it. There is a third man standing nearby, wearing a yellow vest and a hard hat. A fourth man is standing further back in the scene, also wearing a yellow vest and a hard hat. A fifth man is crouching down in the bottom right corner of the image. There are two cars visible in the scene, one on the left side and the other on the right side. The sky is filled with clouds, and the sun is not shining on the construction site.", - "id": 21377 - }, - { - "image_path": "G:\\images\\combined\\-1994-_png_jpg.rf.3b9fbe597fcce80209dd663664b0b33b.jpg", - "response": "A group of workers working on a bridge.", - "id": 21378 - }, - { - "image_path": "G:\\images\\combined\\-1995-_png_jpg.rf.b101f0082c3562cfa1a8320ed97cc367.jpg", - "response": "A couple of men in hard hats are working on a large piece of machinery. The machinery is made up of a number of metal parts, including a large circular piece with several smaller circular pieces attached to it. The men are kneeling down next to the machinery and appear to be fixing it.", - "id": 21379 - }, - { - "image_path": "G:\\images\\combined\\-1996-_png_jpg.rf.4d64939e70aee69f44fd31a0826a52d9.jpg", - "response": "The image shows a construction site for a building. The image is taken from a perspective looking down at the ground floor of the building, which has reinforcing steel mesh laid out on the floor. The reinforcing steel mesh is connected to vertical\u94a2\u7b4b, which are also laid out on the ground. There are several people on the construction site, some of them are wearing white or blue shirts and red or white helmets. One person is carrying a large blue bag. In the background, there are several tall buildings under construction. The sky is blue and there are no clouds in the sky.", - "id": 21380 - }, - { - "image_path": "G:\\images\\combined\\-1999-_png_jpg.rf.727fce6e7a0c1fb143e3a0c3811d8c50.jpg", - "response": "A man wearing a blue hard hat and work clothes is kneeling down in a field. He is wearing a tool belt and has a tool in his hand.", - "id": 21381 - }, - { - "image_path": "G:\\images\\combined\\-1x-1_jpg.rf.202f74cc4006dcded8c6e814f9fb807d.jpg", - "response": "a group of people walking down a set of stairs", - "id": 21382 - }, - { - "image_path": "G:\\images\\combined\\-1x-1_jpg.rf.282bd04459c7ab3088358b5ac6ebeea7.jpg", - "response": "a group of people walking down a set of stairs", - "id": 21383 - }, - { - "image_path": "G:\\images\\combined\\-1x-1_jpg.rf.9230b930bc97e3ef8ad907fe92150fe0.jpg", - "response": "The image shows a group of people walking up an escalator. They are all wearing face masks, and some are carrying handbags. The people are of different heights and are spread across the escalator. Some are closer to the top, while others are closer to the bottom. A couple of people are in the middle of the escalator. The scene appears to be set in an Asian country, as suggested by the presence of a person wearing a headscarf and the writing on the wall.", - "id": 21384 - }, - { - "image_path": "G:\\images\\combined\\-1x-1_jpg.rf.e4f9fe4027c87de55d39f8e72e5e7cda.jpg", - "response": "a group of people walking down a set of stairs", - "id": 21385 - }, - { - "image_path": "G:\\images\\combined\\-20-_png_jpg.rf.171a976932f52566d4e2784eba2cfe1b.jpg", - "response": "A group of construction workers working on a building site at night.", - "id": 21386 - }, - { - "image_path": "G:\\images\\combined\\-2000-_png_jpg.rf.f2cd36e456c7ec994861e5113a3aa987.jpg", - "response": "The image shows a construction worker in a yellow hard hat, standing in front of a construction site. The worker is wearing a red and yellow jacket, and has a yellow hard hat with a red and white striped band around it. The worker is also wearing a red vest. The worker is holding a yellow hard hat in their left hand, and there is another hard hat above them,\u60ac\u6302\u5728\u7a7a\u4e2d. The background shows a blue sky and a building under construction.", - "id": 21387 - }, - { - "image_path": "G:\\images\\combined\\-2001-_png_jpg.rf.01e5c57a281f5cc14d6d8bc015e2c0fe.jpg", - "response": "The image shows two men standing on a construction site. They are wearing hard hats and work clothes. One man is pointing towards something in the distance, while the other man is looking up at a white frisbee that is floating in the air. The sky above them is blue with a few clouds.", - "id": 21388 - }, - { - "image_path": "G:\\images\\combined\\-2003-_png_jpg.rf.f62ab809ff2c91d660ece13c0a90b451.jpg", - "response": "A worker is standing in a large warehouse-like room. The room is filled with tall, black shelves that are arranged in two rows. The shelves are filled with silver objects. The worker is standing in the middle of the room, looking up at the ceiling. He is wearing a black suit, a white shirt, and a yellow hard hat. He is also wearing black gloves.", - "id": 21389 - }, - { - "image_path": "G:\\images\\combined\\-2004-_png_jpg.rf.019b6edc8936632f890235f799a53c0c.jpg", - "response": "A group of men are working on a tower that is covered in ice. They are wearing safety gear and are working on the side of the tower.", - "id": 21390 - }, - { - "image_path": "G:\\images\\combined\\-2005-_png_jpg.rf.8c3dcdf8b4852f88d1a0157900271c4d.jpg", - "response": "The image shows a group of workers in a factory. There are three workers in the foreground, all wearing blue shirts and yellow hard hats. They are standing on a cobbled surface and appear to be working. One of the workers is pulling a cart with a shovel on it. Another worker is further back to the left, and a third worker is further back to the right. In the background to the right, there is a person riding a bicycle. The sky appears to be overcast.", - "id": 21391 - }, - { - "image_path": "G:\\images\\combined\\-2007-_png_jpg.rf.8297b44973842b73443cb477a895683a.jpg", - "response": "A man in a white shirt and grey shorts is looking down at a piece of debris on the street. He is standing on a street that has been paved with asphalt. There are two other people in the background, one closer to the left and one closer to the right. In the top part of the image there is a collage of other images, including houses, a stop sign, and a traffic light.", - "id": 21392 - }, - { - "image_path": "G:\\images\\combined\\-2008-_png_jpg.rf.2d6c43db65ec53f7ec6e764e0d07c101.jpg", - "response": "A man in grey jumpsuit and yellow helmet on red and white ropes, climbing a pole with many transformers.", - "id": 21393 - }, - { - "image_path": "G:\\images\\combined\\-2009-_png_jpg.rf.f05c750b9aa56e903ffeb657ceaacb68.jpg", - "response": "The image shows a group of people standing in front of a building. They are all wearing hard hats, and some are also wearing suits. The people are standing in a circle, with a man on the left using a cell phone. In the background, there is a stack of wood. On the right side of the image, there is a blue and white banner that says \"\u5b89\u5168\u751f\u4ea7\u76d1\u7763\u7ba1\u7406\u5c40\".", - "id": 21394 - }, - { - "image_path": "G:\\images\\combined\\-2013-_png_jpg.rf.b4cbbf3de4cd03ee02fe9d2578fab158.jpg", - "response": " People(117,349),(316,745)(311,384),(473,749)(596,370),(748,748)(688,571),(848,759) in a cave with a boat(1,378),(996,997)", - "id": 21395 - }, - { - "image_path": "G:\\images\\combined\\-2014-_png_jpg.rf.21d6a31f7a017cee6c8e56b355c7a7f6.jpg", - "response": "A family of four, a man, woman, and two children, are all wearing hard hats and standing in front of an unfinished house. The house is made of wood and has no exterior walls.", - "id": 21396 - }, - { - "image_path": "G:\\images\\combined\\-2015-_png_jpg.rf.73fd3c49bdd09fab1685f335a5d9ce31.jpg", - "response": "A construction site with two men working on a wooden beam.", - "id": 21397 - }, - { - "image_path": "G:\\images\\combined\\-2018-_png_jpg.rf.634031e9fc357508106341bc4d23aff1.jpg", - "response": "The image shows two workers suspended from safety equipment while working on a power transmission tower. They are wearing safety harnesses and the tower is made of metal. The sky is blue and the sun is shining.", - "id": 21398 - }, - { - "image_path": "G:\\images\\combined\\-2019-_png_jpg.rf.a351929dc9ff2ad4ac3c23a7001e9583.jpg", - "response": "A construction worker is using a shovel to dig into the ground.", - "id": 21399 - }, - { - "image_path": "G:\\images\\combined\\-202-_png_jpg.rf.a0bdb054e98588fcb14260c83ea2ca93.jpg", - "response": "A worker in a red hard hat shovels coal into a burning oven.", - "id": 21400 - }, - { - "image_path": "G:\\images\\combined\\-2020-_png_jpg.rf.e21be04650bd3734845d9d2e39b10ee0.jpg", - "response": "a group of men walking through a hallway", - "id": 21401 - }, - { - "image_path": "G:\\images\\combined\\-2021-_png_jpg.rf.168fbcc1e482f5db84e6f1e5b83b7b2b.jpg", - "response": "A woman wearing a black tank top and helmet is suspended above a rocky cliff on a steel cable. She is holding onto a safety rope with both hands and appears to be in the process of ziplining. The steel cable is attached to a large rock face with a series of ropes and pulleys. The rock face has intricate carvings on it, including a large owl.", - "id": 21402 - }, - { - "image_path": "G:\\images\\combined\\-2024-_png_jpg.rf.1ad787f3fd140e4a2ae67f9a8bca8d6c.jpg", - "response": "A man walking across a dirt field next to a large red truck.", - "id": 21403 - }, - { - "image_path": "G:\\images\\combined\\-2025-_png_jpg.rf.96c9a08b84991e27c176dd4f2fdbf6f6.jpg", - "response": "The image shows a group of men standing around a large white styrofoam box. They are all wearing safety helmets and some of them are carrying a tool belt. In front of the group, there is a red motorcycle parked on the left side. On the right side of the image, there is a building with a sign that says \"119\". The image is taken in China and the number \"119\" is the emergency number for firefighters in China.", - "id": 21404 - }, - { - "image_path": "G:\\images\\combined\\-2026-_png_jpg.rf.fff0ee18a47a0095c2c3aa3bdd33e1d0.jpg", - "response": "The image shows two workers at a construction site, standing on a large grid of rebar in a concrete pit. The worker on the left is holding a hose and the worker on the right is holding a tool. Both are wearing hard hats. The wall of the pit is made of concrete and there is a cement slab to the left.", - "id": 21405 - }, - { - "image_path": "G:\\images\\combined\\-2027-_png_jpg.rf.6f555eb8e594f70deea1dadc00bf7e18.jpg", - "response": "A couple of people sitting on a large metal bar.", - "id": 21406 - }, - { - "image_path": "G:\\images\\combined\\-2029-_png_jpg.rf.e6b69775e1724c00e7b4c96d8302bc31.jpg", - "response": "A group of people standing around a construction site.", - "id": 21407 - }, - { - "image_path": "G:\\images\\combined\\-203-_png_jpg.rf.1c78a9cbddf2d431e99efc36c095f09a.jpg", - "response": "A man is working on a tower, he is wearing a blue uniform and white gloves. He is hanging from ropes and appears to be high up in the air.", - "id": 21408 - }, - { - "image_path": "G:\\images\\combined\\-2030-_png_jpg.rf.baab6ef9b9888ce0d468b64f788970a6.jpg", - "response": "A group of people standing in a large factory.", - "id": 21409 - }, - { - "image_path": "G:\\images\\combined\\-2031-_png_jpg.rf.ebf22bfa280ea21e5f75ce4f9b9d0f68.jpg", - "response": "The picture shows some workers in the process of setting up a large yellow pipe. The workers are wearing black uniforms and yellow helmets. One of them is in the process of connecting the pipe with a yellow pipe connector. There are four workers in the picture, with two of them on the left side and the other two on the right side. The middle of the pipe is supported by a worker who is crouching.", - "id": 21410 - }, - { - "image_path": "G:\\images\\combined\\-2033-_png_jpg.rf.04dee6b72c93691e18c17dfed2826a6f.jpg", - "response": "A man wearing a yellow vest and a yellow hard hat stands on a construction site, talking on a cell phone. He is wearing a yellow vest and has a plan in his hand. The sky is blue with clouds. In the background, a building crane is visible.", - "id": 21411 - }, - { - "image_path": "G:\\images\\combined\\-2034-_png_jpg.rf.c2704f649e025cc3ad33339c79b8f532.jpg", - "response": "A group of people standing around a scaffolding.", - "id": 21412 - }, - { - "image_path": "G:\\images\\combined\\-2035-_png_jpg.rf.85ed69efc60b8ce202371be590221d85.jpg", - "response": "A group of people with hard hats and orange vests are standing in a room. They are looking at a wall that has a metal rod sticking out of it.", - "id": 21413 - }, - { - "image_path": "G:\\images\\combined\\-2036-_png_jpg.rf.4928ff3e9dba0912582040bdaef1b0e4.jpg", - "response": "a group of people standing under a blue umbrella", - "id": 21414 - }, - { - "image_path": "G:\\images\\combined\\-2037-_png_jpg.rf.ce8069f2dcac21a76abe0c0836c8d075.jpg", - "response": "A construction worker in a red safety helmet is adjusting a yellow metal bar.", - "id": 21415 - }, - { - "image_path": "G:\\images\\combined\\-2038-_png_jpg.rf.dc42ee8dd25493161dd605748a61e6bc.jpg", - "response": "A man wearing a blue shirt and a yellow hard hat is pulling on a rope. There are three red flags with yellow hammer and sickle symbols on them. There is a building on the right side of the image and a forest of trees to the left. There are two other people in the background, one closer to the right and one further in the background on the left side.", - "id": 21416 - }, - { - "image_path": "G:\\images\\combined\\-2039-_png_jpg.rf.2fb90bf911b3a78fbecf27d0d3fdbf6d.jpg", - "response": "A man(478,264),(585,376) is working on a balcony", - "id": 21417 - }, - { - "image_path": "G:\\images\\combined\\-2040-_png_jpg.rf.5699e54641b585efa95f7b3c97aef256.jpg", - "response": "A group of workers working on a large cable on the side of a road.", - "id": 21418 - }, - { - "image_path": "G:\\images\\combined\\-2041-_png_jpg.rf.9fa9aa26c59b8791875cb1a86b66cac0.jpg", - "response": "In the image, there is a woman wearing a black and blue outfit and a yellow hard hat. She is working in a construction area, and her hands are covered in pink gloves. She is cutting steel with a red and black saw, and there is a pile of steel bars to her left. She is squatting down next to a red and black machine and a pile of wooden planks. There is a yellow hard hat on the top left corner of the image, and a pile of steel bars on the top right corner.", - "id": 21419 - }, - { - "image_path": "G:\\images\\combined\\-2042-_png_jpg.rf.9964128a2159ec9bad12692b221391f3.jpg", - "response": "The image shows a construction site with several construction workers working on a building that is under construction. The building has a metal framework and appears to be in the middle of a concrete pour. There are several workers scattered across the site, with some working on the left side and others on the right. One worker is in the center of the image, wearing a yellow safety helmet and an orange safety vest. Another worker is on the far left, wearing a yellow safety helmet and a red safety vest. A third worker is on the far right, wearing a yellow safety helmet and a gray safety vest. There is a large yellow crane operating in the background, with its arm extended upwards. The sky is overcast and the temperature is expected to reach a high of 84 degrees today.", - "id": 21420 - }, - { - "image_path": "G:\\images\\combined\\-2043-_png_jpg.rf.57f8be5b7d966886bb432da337ee272a.jpg", - "response": "A group of people standing in front of a stack of red containers.", - "id": 21421 - }, - { - "image_path": "G:\\images\\combined\\-2044-_png_jpg.rf.2841f78086f39d6a58384df6d3b9115e.jpg", - "response": "A construction site with several men working on power lines and a substation.", - "id": 21422 - }, - { - "image_path": "G:\\images\\combined\\-2047-_png_jpg.rf.67ee1c9e50b43048ddd1a290ed60fc24.jpg", - "response": "The image shows three men working on a high rise building. They are standing on a platform that is suspended from the building, and they are cleaning the windows of the building. The platform is surrounded by a metal railing. The men are wearing hard hats and other protective gear.", - "id": 21423 - }, - { - "image_path": "G:\\images\\combined\\-2048-_png_jpg.rf.1a291d73d6260a795e0d94fdd77b4ac5.jpg", - "response": "A group of men working on a power line.", - "id": 21424 - }, - { - "image_path": "G:\\images\\combined\\-205-_png_jpg.rf.ac0d00ea12f588cb31e90924ea20726b.jpg", - "response": "A man and a woman wearing safety gear and hard hats are standing in a large warehouse. They are holding clipboards and talking. The woman is pointing to something on the clipboard. There are shelves of boxes in the background.", - "id": 21425 - }, - { - "image_path": "G:\\images\\combined\\-2051-_png_jpg.rf.d27df2fc57c58a255a80a621f168da34.jpg", - "response": "A construction worker working on a building site.", - "id": 21426 - }, - { - "image_path": "G:\\images\\combined\\-2052-_png_jpg.rf.397f029e96127b85d9e2835049e3dbbd.jpg", - "response": "A man in a uniform handing out pink paper to people standing around motorcycles.", - "id": 21427 - }, - { - "image_path": "G:\\images\\combined\\-2054-_png_jpg.rf.4426cc8e3edc266553580476e1d09a93.jpg", - "response": " Men(218,389),(399,798)(427,362),(605,903)(576,368),(696,793)(412,361),(522,783) standing in front of a pile of rubble", - "id": 21428 - }, - { - "image_path": "G:\\images\\combined\\-2056-_png_jpg.rf.d79d954c25ae96f1486fff30baceb635.jpg", - "response": " Power workers(273,546),(418,768)(397,573),(523,740)(283,875),(416,997) in China work in freezing temperatures to repair a power line.", - "id": 21429 - }, - { - "image_path": "G:\\images\\combined\\-2059-_png_jpg.rf.b507653f19b4707b2705b228a387cc91.jpg", - "response": "A couple of people that are on the street.", - "id": 21430 - }, - { - "image_path": "G:\\images\\combined\\-206-_png_jpg.rf.a76d874f7558bbd10430a04b06a46c2f.jpg", - "response": "a man in a blue shirt and black pants", - "id": 21431 - }, - { - "image_path": "G:\\images\\combined\\-2060-_png_jpg.rf.4fee907b881984bb8e27af763f7cfbff.jpg", - "response": "The image shows several construction workers in the process of demolishing a building. The workers are wearing hard hats and are in various positions around the site. One worker is using a shovel to break up concrete, while another worker is using a crowbar to pry open a cinder block. A third worker is taking a photograph. In the background, a man is taking a photograph with his cell phone. The workers are wearing red and blue jackets.", - "id": 21432 - }, - { - "image_path": "G:\\images\\combined\\-2062-_png_jpg.rf.b013b96c2bf6cebf28651b0fb94e9ce6.jpg", - "response": "In the picture there are two power company workers in yellow safety vests and orange safety helmets who are repairing a transformer on a power pole. The transformer is located in the middle of the picture and is white with dark green and dark blue writing. The workers are standing on a platform that is placed against the power pole. The background is a grey wall and between the two workers and the wall there are several power lines hanging from the power pole.", - "id": 21433 - }, - { - "image_path": "G:\\images\\combined\\-2063-_png_jpg.rf.8a85cf8933964cdae97c70608c9087e5.jpg", - "response": "A man in a blue shirt and blue hat is on a ladder, working on power lines. He is in front of a mountain and there are houses in the foreground.", - "id": 21434 - }, - { - "image_path": "G:\\images\\combined\\-2067-_png_jpg.rf.77c4e98f2abd2445551566f0a0e73c41.jpg", - "response": "A group of workers inside a hole in the ground wearing hard hats and using tools.", - "id": 21435 - }, - { - "image_path": "G:\\images\\combined\\-2068-_png_jpg.rf.4e59eb705b7e24904dae147e97281049.jpg", - "response": "The image shows two workers on a power line. One worker is lying on the line, holding onto a tool, while the other worker is standing on a ladder and holding onto the line as well. They are both wearing safety gear. The sky is blue and cloudless.", - "id": 21436 - }, - { - "image_path": "G:\\images\\combined\\-2069-_png_jpg.rf.62853ec7c8c894b07d66a07c689b4dbb.jpg", - "response": "A pair of men in red overalls and yellow hard hats stand in the tunnel of a large pipe.", - "id": 21437 - }, - { - "image_path": "G:\\images\\combined\\-2071-_png_jpg.rf.ad2a90135aa03981e308ac1d50fc33ee.jpg", - "response": "A construction worker in a green uniform and blue hard hat is sitting on a scaffold. He is reaching over the top of a yellow guardrail to touch a yellow ball. The guardrail is attached to the scaffolding and the building. The worker is wearing a white hard hat on his head. The building is a tan color and the sky is blue.", - "id": 21438 - }, - { - "image_path": "G:\\images\\combined\\-2072-_png_jpg.rf.5a231e204e92e7a868520c6f79a2d547.jpg", - "response": "An electrician in a white uniform and blue hard hat is working on a large piece of equipment. They are kneeling down and looking at something on the equipment. There are several wires attached to the device and the electrician is holding a black and red wire. There is a large metal box to the right of the electrician and a window behind them.", - "id": 21439 - }, - { - "image_path": "G:\\images\\combined\\-2073-_png_jpg.rf.2aa74f9d4045123871b443e2efc9a55b.jpg", - "response": "A man wearing a yellow hard hat and work clothes shovels sand into a wooden wagon. The man is standing on a construction site near a building under construction. There is a pile of bricks and other construction materials on the ground. In the background, there are other people and a yellow crane. There is a blue sky with clouds.", - "id": 21440 - }, - { - "image_path": "G:\\images\\combined\\-2074-_png_jpg.rf.e9516b083b1cd7b61950089e838ba94c.jpg", - "response": "The group(327,263),(496,823)(477,320),(717,997)(638,292),(902,996)(839,301),(997,779)(298,294),(387,703) is standing in the snow", - "id": 21441 - }, - { - "image_path": "G:\\images\\combined\\-2075-_png_jpg.rf.f0790d0a684a9c250a40021ef6ccd8b8.jpg", - "response": "A group of men wearing hard hats, one of the men is wearing a suit.", - "id": 21442 - }, - { - "image_path": "G:\\images\\combined\\-2076-_png_jpg.rf.60b83e58eb53a9deb707421692d34f03.jpg", - "response": "A construction worker in a blue shirt and red hat gives two thumbs up in front of a building under construction.", - "id": 21443 - }, - { - "image_path": "G:\\images\\combined\\-2077-_png_jpg.rf.7f848568ccd48374cd7d8b245fb8ad75.jpg", - "response": "A group of men standing around a construction site.", - "id": 21444 - }, - { - "image_path": "G:\\images\\combined\\-208-_png_jpg.rf.7d4a7ed54af3f513a703e1a7fa4fe875.jpg", - "response": "In the image there is a person wearing a hard hat and coveralls standing in a factory. The factory is filled with sparks and steel is being melted in a large container.", - "id": 21445 - }, - { - "image_path": "G:\\images\\combined\\-2082-_png_jpg.rf.56c673b69c163a12fa6d82fdbaf0e870.jpg", - "response": "An orange and black dump truck is parked inside a tunnel. There are two men standing on the left side of the tunnel and one man standing on the right side of the tunnel. The men are wearing orange and blue uniforms. There is a large orange and black dump truck in the middle of the tunnel. There are two men inside the truck. There is a large pipe on the right side of the tunnel. There are two smaller pipes on the left side of the tunnel. There is a large pipe on the left side of the tunnel. There is a man standing in front of the large pipe on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the left side of the tunnel. There is a man standing on the right side of the tunnel. There is a man standing on the", - "id": 21446 - }, - { - "image_path": "G:\\images\\combined\\-2084-_png_jpg.rf.eaa4b73264b498783df8a74b2e0b3eb5.jpg", - "response": "A man in a suit and hard hat points to something in the sky while standing next to another man in a hard hat. They are both in front of a building under construction.", - "id": 21447 - }, - { - "image_path": "G:\\images\\combined\\-2085-_png_jpg.rf.d1aeec3ef205d65ff1afcafb2c14dc4c.jpg", - "response": "The image shows a group of people standing in ankle deep water in a large room. The room has a white floor and a wall of windows on one side. There are several people in the room, some standing in the water and others standing on the floor. The people appear to be working on the pool, which has several pipes and poles sticking out of it. The image is taken from a perspective looking down at the pool.", - "id": 21448 - }, - { - "image_path": "G:\\images\\combined\\-2086-_png_jpg.rf.ef6e78eed9b27a0cf260f45db4751579.jpg", - "response": "A group of workers are working on a production line. There are three workers in the foreground, all wearing yellow hard hats and red jumpsuits. They are standing around a machine that looks like a metal box with a spout. The worker on the left is handing the middle worker a yellow helmet, while the worker on the right is holding a cardboard box. There are two more workers in the background, one on the far right and one near the top of the image. They are both wearing orange vests. In front of the workers is a large metal machine with a blue top and a white bottom. It has two arms and looks like a robot. There are several boxes stacked on a cart to the right of the machine.", - "id": 21449 - }, - { - "image_path": "G:\\images\\combined\\-2087-_png_jpg.rf.0ed66c62fc7c46933b9a98fa8ce4f193.jpg", - "response": "a group of men standing on a construction site", - "id": 21450 - }, - { - "image_path": "G:\\images\\combined\\-2089-_png_jpg.rf.19986283fe6d949196fdc69627d06b9d.jpg", - "response": "A group of people working on a construction site at night.", - "id": 21451 - }, - { - "image_path": "G:\\images\\combined\\-2090-_png_jpg.rf.be244085752107c74779da4cc0f01fc4.jpg", - "response": "The image shows a construction site with several workers. There is a large orange and blue tower crane operating in the background. In the foreground, there is a group of workers, some of them wearing yellow hats and green or orange work clothes. One of the workers is pouring concrete onto a large grid of rebar. Another worker is operating a red and black hose, which is connected to a large red and black pump. The workers are standing on a large concrete pad, and there are several steel bars scattered around the construction site.", - "id": 21452 - }, - { - "image_path": "G:\\images\\combined\\-2091-_png_jpg.rf.3e766249eca60a4948369ee4cba6beee.jpg", - "response": "A worker repairs power lines as a dog watches from a nearby car.", - "id": 21453 - }, - { - "image_path": "G:\\images\\combined\\-2092-_png_jpg.rf.12c6cdbf18ba57aeadccad1efe23f95d.jpg", - "response": "A group of linemen in orange jumpsuits and yellow hard hats pose in front of a yellow and white work van. They are all holding equipment.", - "id": 21454 - }, - { - "image_path": "G:\\images\\combined\\-2095-_png_jpg.rf.bf2591cb524286391f5b0037fedebeff.jpg", - "response": "A man in a blue jumpsuit and orange hard hat is working on a piece of machinery. He is wearing white gloves and has a orange hard hat on. The background is a red wall and a grey wall with a control panel. There is also a table with a red top in the foreground.", - "id": 21455 - }, - { - "image_path": "G:\\images\\combined\\-2096-_png_jpg.rf.ffe58a474224d05f15aa4bf3cfabd21e.jpg", - "response": "A group of men standing around each other.", - "id": 21456 - }, - { - "image_path": "G:\\images\\combined\\-2098-_png_jpg.rf.8047763fb522132ce892d8cfcb55c1f7.jpg", - "response": "A construction worker wearing a yellow hard hat and work gloves is pouring concrete into a large tube. The worker is standing on a construction site with rebar visible in the foreground. There is a large unfinished building in the background.", - "id": 21457 - }, - { - "image_path": "G:\\images\\combined\\-2099-_png_jpg.rf.de35ea39a0fd7df8be0401511f3be31b.jpg", - "response": "A construction site with multiple people working on it.", - "id": 21458 - }, - { - "image_path": "G:\\images\\combined\\-2100-_png_jpg.rf.02e122bf40b78d860de1b6966245d9cd.jpg", - "response": "The image shows two people working on a large solar array. The array is composed of black solar panels installed on a silver frame. The frame is pitched at an angle and the panels are facing the sun. The people are working on the panels, one near the top left of the frame and the other towards the middle right. There is a blue sky above them and a building is visible in the background on the left side. There are also two birds flying in the sky.", - "id": 21459 - }, - { - "image_path": "G:\\images\\combined\\-2101-_png_jpg.rf.b8fab8a47bba76f2200461ff8a84edfd.jpg", - "response": "In the image there are two people standing on a construction site. One person is wearing a yellow helmet and is holding a rolled up plan in their hands. The person is wearing a white shirt, black pants and a yellow helmet. The second person is only partially visible in the image, they are wearing a white shirt and black pants. The shirt of the person holding the plan is blue. The floor of the construction site is made of concrete and is brown in color.", - "id": 21460 - }, - { - "image_path": "G:\\images\\combined\\-2103-_png_jpg.rf.957e5f52046fc1d603f3a53567fac54d.jpg", - "response": "A man in a red hard hat stands in the dark shadow of a tree, looking up at a power line. Another man in a red hard hat is standing on a ladder on the right side of the image, working on the power line. Two other men are visible at the top of the image, working on the power line as well.", - "id": 21461 - }, - { - "image_path": "G:\\images\\combined\\-2104-_png_jpg.rf.00fd5b5de8c9e14b38fce014711bef0a.jpg", - "response": "A couple of men in blue uniforms working on a power line.", - "id": 21462 - }, - { - "image_path": "G:\\images\\combined\\-2106-_png_jpg.rf.95381dc937f83a7a3a64bbba76ced03e.jpg", - "response": "A female construction worker in a yellow hard hat, she is smiling at the camera while holding a large metal bar with a C-shaped metal pipe attached to it. She is wearing a black jacket and has a yellow hard hat. Next to her is another worker in the background, they are both standing on a construction site. In the background, there is a large building under construction. On the left side of the image, there is a pond.", - "id": 21463 - }, - { - "image_path": "G:\\images\\combined\\-2108-_png_jpg.rf.a25bdae0b71a4cf2001c79576d8c4b58.jpg", - "response": "The image shows two men standing in front of a construction site. Both of them are wearing hard hats. One man is on the left and is pointing to something on the right, where the other man is standing. They are both dressed in green and red.", - "id": 21464 - }, - { - "image_path": "G:\\images\\combined\\-2109-_png_jpg.rf.9627e1484cfd96b6d243568252dfca1b.jpg", - "response": "The image shows a group of workers at a construction site. They are wearing yellow and green uniforms and are working on a large foundation. There are pipes and cables visible in the scene. Some workers are standing on the ground, and some are standing on a platform. The workers are working on a large area of concrete, which is made up of many square metal grid.", - "id": 21465 - }, - { - "image_path": "G:\\images\\combined\\-2110-_png_jpg.rf.ecd3899defc8d00da089390f20fe5191.jpg", - "response": "A group of people standing around each other", - "id": 21466 - }, - { - "image_path": "G:\\images\\combined\\-2112-_png_jpg.rf.db7807394d8131aca510a9a1e415aba6.jpg", - "response": "\u51e0\u4e2a\u5de5\u4f5c\u7740\u84dd\u8272\u8863\u670d\u6234\u7740\u7ea2\u8272\u5b89\u5168\u5e3d\u7684\u5de5\u4f5c\u4eba\u5458(54,175),(645,741)(489,346),(893,910)", - "id": 21467 - }, - { - "image_path": "G:\\images\\combined\\-2114-_png_jpg.rf.79f69911450a9db04ba245300a7797c5.jpg", - "response": "A group of men in blue work uniforms with red flags in front of a transformer.", - "id": 21468 - }, - { - "image_path": "G:\\images\\combined\\-2115-_png_jpg.rf.10c5a79df265d677d4ad7e2bc4796a15.jpg", - "response": "The image shows a construction site in a city, with a large yellow machine digging in the ground. In the background, there are tall buildings under construction. There are also a few people on the site, with one wearing a white shirt and jeans, another in a yellow hard hat and grey pants, and the last in a white shirt and brown pants.", - "id": 21469 - }, - { - "image_path": "G:\\images\\combined\\-2117-_png_jpg.rf.2657a3a893c587fe01f0a8de1a39aeec.jpg", - "response": "The photo shows a team of rescue workers in a tunnel. They are wearing yellow helmets and suits. In their hands, they are holding yellow equipment. On the wall to the left, there is a metal plate with black characters.", - "id": 21470 - }, - { - "image_path": "G:\\images\\combined\\-2119-_png_jpg.rf.5037cee0e1636989498b62a183238c07.jpg", - "response": "The image shows a construction worker at the bottom of a shaft, installing a cage for a concrete pour. The worker is standing on a platform at the left side of the image, with the head of another worker visible at the top of the image. The worker at the bottom of the image is installing a cage made of steel reinforcement bars, with the bars placed in a grid pattern on the wall of the shaft. The wall of the shaft is concrete, and the worker is wearing a white helmet for safety.", - "id": 21471 - }, - { - "image_path": "G:\\images\\combined\\-212-_png_jpg.rf.d1379f44beeb3a8d7c077d24c04a3602.jpg", - "response": "Men in hard hats looking at a glass windown.", - "id": 21472 - }, - { - "image_path": "G:\\images\\combined\\-2120-_png_jpg.rf.27c9902242b9b26508f1a45e75a9f63f.jpg", - "response": "A group of people standing around each other.", - "id": 21473 - }, - { - "image_path": "G:\\images\\combined\\-2122-_png_jpg.rf.986a3c1f9bcc01841a4ab365fa73eb26.jpg", - "response": "A man in an orange jacket and hard hat stands on a boat looking out at another boat that has the word \\\"\u6b66\u8239\\\" written on it. The man is also wearing a yellow hard hat. In the background, there is a large yellow floating platform in the water. There are also two orange and white buoys in the water. The sky is light blue with a few thin clouds.", - "id": 21474 - }, - { - "image_path": "G:\\images\\combined\\-2123-_png_jpg.rf.794f6dc4c5603184cff270b51fac64fa.jpg", - "response": "The image is a collage of images of workers at a construction site. There are three men working on the site and they are all wearing hard hats. The image is taken at night and there are lights illuminating the area.", - "id": 21475 - }, - { - "image_path": "G:\\images\\combined\\-2124-_png_jpg.rf.bc8f5885d70a1641f7bb3537cab95afd.jpg", - "response": "A man in a white safety helmet and work clothes is running through a foggy street. He is carrying a shovel over his shoulder and appears to be running from a fire. The fire is burning in a wooden cart with two wheels. The street is made of brick and there is a moment in the image where the man's feet are not on the ground creating the illusion that he is flying.", - "id": 21476 - }, - { - "image_path": "G:\\images\\combined\\-2126-_png_jpg.rf.feb1f078dd8d83f1c595df3a7dc62cee.jpg", - "response": "A group of workers are working on a construction site.", - "id": 21477 - }, - { - "image_path": "G:\\images\\combined\\-2127-_png_jpg.rf.9b59166df4aa9ae3428c16e5c16123bd.jpg", - "response": "a man in a red shirt and a man in a white shirt and black pants standing in front of a green fence", - "id": 21478 - }, - { - "image_path": "G:\\images\\combined\\-2128-_png_jpg.rf.4f61402508b1697eb5dbd086b6c313d4.jpg", - "response": "A large crane lifting a metal tube over a pile of metal rods.", - "id": 21479 - }, - { - "image_path": "G:\\images\\combined\\-2129-_png_jpg.rf.1bf441ab7f6dc2b3e2aec20a5e4cc035.jpg", - "response": "A group of three men sitting on scaffolding.", - "id": 21480 - }, - { - "image_path": "G:\\images\\combined\\-213-_png_jpg.rf.f9220b4fa7d876c3b7dba2acc310550e.jpg", - "response": "A man wearing a red hard hat and work gloves is holding a tool.", - "id": 21481 - }, - { - "image_path": "G:\\images\\combined\\-2130-_png_jpg.rf.9c0924cb2ad94d7129d4878002aa4b99.jpg", - "response": "A collage of three pictures showing a group of people walking in an unfinished building. The top picture shows a group of people walking on a unfinished road with the words \"\u6d77\u5b8f\u6df7\u51dd\u571f\" in the top left corner. The middle picture shows a group of people walking on a unfinished road with the words \"\u6df1\u5733\u5e02\u6d77\u5b8f\u6df7\u51dd\u571f\u6709\u9650\u516c\u53f8\" in the top left corner. The bottom picture shows a group of people walking on a unfinished road with the words \"\u6df1\u8c6a\u00b7\u4e5d\u91cc\u516c\u9986\" in the top left corner.", - "id": 21482 - }, - { - "image_path": "G:\\images\\combined\\-2131-_png_jpg.rf.b849b0bb890318ef21299a98fa7cbbd8.jpg", - "response": "Some people are on a construction site.", - "id": 21483 - }, - { - "image_path": "G:\\images\\combined\\-2132-_png_jpg.rf.0086994fafada71cbee79c32b729d1cc.jpg", - "response": "A group of people standing around a construction site.", - "id": 21484 - }, - { - "image_path": "G:\\images\\combined\\-2133-_png_jpg.rf.eec355d4288c0726188c04867cf24df2.jpg", - "response": "A power line crew works on a transmission tower in a hazy field.", - "id": 21485 - }, - { - "image_path": "G:\\images\\combined\\-2135-_png_jpg.rf.9ddbcef83da602884f23440f09bd0bc8.jpg", - "response": "A man in a bikini bottom and swim trunks is using a tool to work on something.", - "id": 21486 - }, - { - "image_path": "G:\\images\\combined\\-2138-_png_jpg.rf.71065e4114752099878a90a7795f51c6.jpg", - "response": "A construction site with multiple people working on it.", - "id": 21487 - }, - { - "image_path": "G:\\images\\combined\\-214-_png_jpg.rf.11489535492fc837360549d3688cecb1.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 21488 - }, - { - "image_path": "G:\\images\\combined\\-2140-_png_jpg.rf.3fc2e04d80f6e845eac368f32508d426.jpg", - "response": "A group of three men in neon green vests and hard hats looking at a pillar.", - "id": 21489 - }, - { - "image_path": "G:\\images\\combined\\-2141-_png_jpg.rf.f4b582cf33d8aee535008b7f2760c7dd.jpg", - "response": "A group of workers in hard hats are working on a red bridge.", - "id": 21490 - }, - { - "image_path": "G:\\images\\combined\\-2142-_png_jpg.rf.af98c0d51d293d2726c02b8fd0d646b6.jpg", - "response": "A man in a hard hat and orange vest standing in a large warehouse with his arms crossed. He is wearing a tie and looking at the camera. There are large wooden shelves filled with boxes in the background.", - "id": 21491 - }, - { - "image_path": "G:\\images\\combined\\-2144-_png_jpg.rf.4f5e9673bc970333a4bf898035943f20.jpg", - "response": "A worker is suspended by ropes and looking up at a yellow helmet. He is wearing a blue shirt and a yellow helmet. There are two ropes holding him and a yellow helmet is hanging above him.", - "id": 21492 - }, - { - "image_path": "G:\\images\\combined\\-2145-_png_jpg.rf.6886b76d53523d39da448f4219d1bc23.jpg", - "response": "In the image, there is a person wearing a blue shirt and a yellow helmet who is sitting on a pile of scrap metal. The person appears to be operating a machine near the pile of scrap. The machine's brand is not clearly visible, but its model is listed as Iron \u6b63\u822a( Iron ZhenHai). The image also includes a bar code and an electronic product code, both of which are used for product identification and tracking.", - "id": 21493 - }, - { - "image_path": "G:\\images\\combined\\-2147-_png_jpg.rf.7befb524718e286ee3932dee43236915.jpg", - "response": "A man is standing in water that is spraying up around him. He is wearing an orange shirt and blue hat. The water is shooting up in all directions and there is a yellow glare from the sun in the background.", - "id": 21494 - }, - { - "image_path": "G:\\images\\combined\\-2148-_png_jpg.rf.1ac4fa314723cf19100a40a276e2de34.jpg", - "response": "A man and a woman on a construction site wearing hard hats and looking at the site.", - "id": 21495 - }, - { - "image_path": "G:\\images\\combined\\-2149-_png_jpg.rf.d5d12f56cda2c763c3f672be416fa33d.jpg", - "response": "A man is working on a tower that is covered in a white material.", - "id": 21496 - }, - { - "image_path": "G:\\images\\combined\\-2154-_png_jpg.rf.0c31c2a51b78db4793c1b929e7714cc8.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest stands in front of a construction site. A yellow machine is digging in the background and a pile of wood is on the right. There are two cars in the background, one on the left and one on the right.", - "id": 21497 - }, - { - "image_path": "G:\\images\\combined\\-2155-_png_jpg.rf.0a81c9bae9c4212ed6960a858bde6ecb.jpg", - "response": "A couple of men in orange jumpsuits and blue helmets are repairing a power line.", - "id": 21498 - }, - { - "image_path": "G:\\images\\combined\\-2157-_png_jpg.rf.49c45d913f8a3b414db4fa6d7a98f030.jpg", - "response": "A group of workers are working on a large metal structure. They are wearing safety harnesses and are standing on a platform. One of the workers is holding a large spool of wire.", - "id": 21499 - }, - { - "image_path": "G:\\images\\combined\\-2158-_png_jpg.rf.a3670700a8e89b43501af5059cf5e7c7.jpg", - "response": "A construction site with multiple cranes working on a large building under construction.", - "id": 21500 - }, - { - "image_path": "G:\\images\\combined\\-2160-_png_jpg.rf.79054f752790822ab3c5d3feb5130643.jpg", - "response": "A man is suspended from a wire, in the process of climbing a frozen waterfall. He is wearing a blue jacket and a white hat.", - "id": 21501 - }, - { - "image_path": "G:\\images\\combined\\-2161-_png_jpg.rf.8fb98a1707d47f16ec9f79a58552e8e3.jpg", - "response": "A picture of some power lines with some workers working on them.", - "id": 21502 - }, - { - "image_path": "G:\\images\\combined\\-2162-_png_jpg.rf.dc33eda1cd075b18df21988ffae85a7b.jpg", - "response": "A group of men wearing hard hats are working on a tower.", - "id": 21503 - }, - { - "image_path": "G:\\images\\combined\\-2165-_png_jpg.rf.b2a6589627985880dd06cee3125fa79a.jpg", - "response": "A man in a hard hat and a worker in a black jacket are both lying on the ground. A man in a black jacket is standing over the man in the hard hat. A man in a suit is holding a silver object. Another man in a black jacket is holding a cup. A man in a yellow hard hat is standing to the right of the man in the hard hat. A man in a blue and white shirt is standing to the right of the man in the black jacket. A man in a blue and white shirt is standing to the right of the man in the suit. A man in a black jacket is standing to the left of the man in the suit. A man in a black jacket is standing to the left of the man in the blue and white shirt. A man in a black jacket is standing to the left of the man in the yellow hard hat. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to the left of the man in a suit. A man in a black jacket is standing to", - "id": 21504 - }, - { - "image_path": "G:\\images\\combined\\-2166-_png_jpg.rf.7f80bf25843be1b46efe60423b9b3973.jpg", - "response": "A group of men standing around a construction site at night.", - "id": 21505 - }, - { - "image_path": "G:\\images\\combined\\-2168-_png_jpg.rf.8c2714666f1d54a7566cd494d692ab4f.jpg", - "response": "The image shows a construction site with two workers. One worker is standing on the left side of the image, wearing blue overalls and a yellow hard hat. The other worker is on the right side of the image, wearing a white shirt and a yellow hard hat. They are both working on a construction project.", - "id": 21506 - }, - { - "image_path": "G:\\images\\combined\\-2169-_png_jpg.rf.ca0fc789f3c655c135dadf351fb54897.jpg", - "response": "A group of men in red shirts are working on an electrical tower.", - "id": 21507 - }, - { - "image_path": "G:\\images\\combined\\-2172-_png_jpg.rf.cd4e50bd1463413f20a5e91644b88d44.jpg", - "response": "A cement truck is driving by a construction site.", - "id": 21508 - }, - { - "image_path": "G:\\images\\combined\\-2173-_png_jpg.rf.b93d73160d81666d7b1a20e0830d2a63.jpg", - "response": "A man in a red jumpsuit and hard hat is standing in a room filled with pipes and machinery. He is looking at the camera and has his hand on a large metal valve.", - "id": 21509 - }, - { - "image_path": "G:\\images\\combined\\-2174-_png_jpg.rf.51865423cd082c5eccc3fd7edd144660.jpg", - "response": "A picture of two workers fixing a power line. They are wearing yellow hard hats and are holding a black strap. The power lines are covered in snow and ice.", - "id": 21510 - }, - { - "image_path": "G:\\images\\combined\\-2175-_png_jpg.rf.871e8917e84eab2d6b88c0772bfd4f9f.jpg", - "response": "A man in a white hard hat and brown jacket is talking to a woman in a green shirt. They are standing in front of a construction site where a new home is being built. The man is holding blueprints in his hand.", - "id": 21511 - }, - { - "image_path": "G:\\images\\combined\\-218-_png_jpg.rf.3a450db01ba23792de6b9dcdffb358bd.jpg", - "response": "A worker in a white hard hat and lab coat is standing in a room filled with pipes and machinery. They are looking at the camera with a serious expression. Another worker is visible behind them, wearing a red hard hat.", - "id": 21512 - }, - { - "image_path": "G:\\images\\combined\\-2180-_png_jpg.rf.4a6c7b32345c7b2a92eba4d678dca98b.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 21513 - }, - { - "image_path": "G:\\images\\combined\\-2181-_png_jpg.rf.4deca85dadaf75fdc7c6a057d2203c6b.jpg", - "response": "In the image there are three men working on a construction site. One man is measuring a wall, the second man is holding a level against the wall, and the third man is looking at the first two men. They are all wearing yellow helmets.", - "id": 21514 - }, - { - "image_path": "G:\\images\\combined\\-2185-_png_jpg.rf.6b83cd5cc844e5bd43c5a10c563ef44d.jpg", - "response": "A group of men in blue work clothes are cutting branches off of a tree. They are using a large tool with a red circle on it. The tree is covered in snow.", - "id": 21515 - }, - { - "image_path": "G:\\images\\combined\\-2186-_png_jpg.rf.c85dfb5cb53eba17276a74c2d070d40e.jpg", - "response": "An electrician is working on power lines in the sky.", - "id": 21516 - }, - { - "image_path": "G:\\images\\combined\\-2189-_png_jpg.rf.dd45980b8a5fc4e232ffa4173db34ddd.jpg", - "response": "A man in a red shirt and blue pants is sitting on a cement mixer. He is wearing a red hat and a red shirt. He is in the process of mixing concrete.", - "id": 21517 - }, - { - "image_path": "G:\\images\\combined\\-2190-_png_jpg.rf.c140a263bedae4d07b193573a56ac0af.jpg", - "response": "A group of rescue workers in orange uniforms walk through a pile of rubble. The building behind them has a large piece of it missing.", - "id": 21518 - }, - { - "image_path": "G:\\images\\combined\\-2191-_png_jpg.rf.7d7854b03a7bb43aa0926e4769261ebb.jpg", - "response": "A worker in a grey jacket and a red helmet is using a large circular saw to cut through a large metal pipe. They are wearing a grey jacket and the worker is in the process of cutting the pipe. There is a large circular saw that the worker is using to cut the pipe. The pipe is black and it is very large.", - "id": 21519 - }, - { - "image_path": "G:\\images\\combined\\-2192-_png_jpg.rf.eb248fcb00cc98306047bfe1c2622420.jpg", - "response": "Two men in orange work suits standing next to a drilling machine.", - "id": 21520 - }, - { - "image_path": "G:\\images\\combined\\-2194-_png_jpg.rf.15d9fe33d6db96359bf75639dcd3378e.jpg", - "response": "A group of men standing around in a unfinished building.", - "id": 21521 - }, - { - "image_path": "G:\\images\\combined\\-2197-_png_jpg.rf.0ee66e8f9bec313b07ac53c78f05c4a3.jpg", - "response": "A man wearing a hard hat and work clothes is working on a large metal pipe. He is standing on a platform and using a tool to work on the pipe. The pipe is painted blue and is surrounded by a white dust.", - "id": 21522 - }, - { - "image_path": "G:\\images\\combined\\-2198-_png_jpg.rf.2763eb10ae00f878c9635af85664f9b6.jpg", - "response": "In the image there is a pile of metal shavings and other metal scrap. In the background there are three workers wearing white and red hard hats. They are standing near a large structure made of metal. In the distance there are three cranes operating near the metal structure.", - "id": 21523 - }, - { - "image_path": "G:\\images\\combined\\-2199-_png_jpg.rf.0cb86a5c6ba72039d1f775df859115a3.jpg", - "response": "A group of people standing in front of solar panels wearing hard hats and looking at a blueprint.", - "id": 21524 - }, - { - "image_path": "G:\\images\\combined\\-220-_png_jpg.rf.5bdc8b6bc8d530b20db8a8a581d1c1f1.jpg", - "response": "A construction site with three men working on a building. The building is made of wood and has many metal rebar rods sticking up from it. The sky is a clear blue.", - "id": 21525 - }, - { - "image_path": "G:\\images\\combined\\-2203-_png_jpg.rf.2e952c5d0172084bdeaf7309e376c037.jpg", - "response": "A team of workers(228,469),(338,628)(618,441),(757,693)(448,416),(588,656)(322,467),(439,647)(198,355),(329,469)(731,409),(927,655)(13,403),(105,559)(112,388),(217,588)(199,430),(286,610)(137,392),(207,569)(11,403),(105,559)(210,356),(312,469)(449,384),(560,498) carrying a large pipe(357,473),(797,556) through a snowy area", - "id": 21526 - }, - { - "image_path": "G:\\images\\combined\\-2208-_png_jpg.rf.da88750b1a3d936fe9f08ad6b85f5590.jpg", - "response": "A man wearing a blue shirt, a yellow hard hat, and glasses is kneeling down on a pile of broken concrete. He is using a small pick ax to break up the concrete. The sky is blue with a few clouds.", - "id": 21527 - }, - { - "image_path": "G:\\images\\combined\\-2210-_png_jpg.rf.f1454d1a711b2b7c3f1577e3dad65d02.jpg", - "response": "In the image there is a construction site with multiple cranes in the background. In the foreground, there is a worker wearing a yellow hard hat and a yellow vest, they are working on a building that is covered in a grid structure. The worker is in the middle of the building, on the roof, and they are pulling on a cable.", - "id": 21528 - }, - { - "image_path": "G:\\images\\combined\\-2211-_png_jpg.rf.5978bc7b69715669ab312d4a4b1188f3.jpg", - "response": "A pair of men in yellow helmets and white shirts are working on power lines. One man is sitting on a metal structure and fixing a power line, the other man is standing on the ground, holding a tool in his right hand. They are both wearing yellow helmets and have their legs secured with safety belts.", - "id": 21529 - }, - { - "image_path": "G:\\images\\combined\\-2213-_png_jpg.rf.37a5393c3317112b9e94e9391e60ba8a.jpg", - "response": "Workers are inside a tunnel, some are using tools and some are holding them.", - "id": 21530 - }, - { - "image_path": "G:\\images\\combined\\-2217-_png_jpg.rf.58b7b6ac2e30e863174a4760852531fa.jpg", - "response": "The image is a collage of three pictures. In the center picture, a man is walking towards a large orange and blue machine. The man is wearing a black jacket and blue jeans. To the left of the man is a yellow metal structure. Above the yellow metal structure is a building that has scaffolding on the outside of it. In the right most picture, a wooden sign is in the foreground and a man is standing behind it. The sign is orange and has white writing.", - "id": 21531 - }, - { - "image_path": "G:\\images\\combined\\-2218-_png_jpg.rf.fbb23d5a915d429c5df88ebf57eee270.jpg", - "response": "The image shows two construction workers on a building site. They are wearing hard hats and work clothes. One of them is on the left, and the other is on the right. They are standing on a metal staircase, which is located on the right side of the image. The staircase is made of metal, and it has several rungs. The workers are reaching for a tool that is hanging from a metal structure above them. The tool is yellow and has a black handle. The workers are also standing on a red platform. The background is blurred, and there is a blue structure in the foreground.", - "id": 21532 - }, - { - "image_path": "G:\\images\\combined\\-2219-_png_jpg.rf.58aded975f75f46cccbc6cf4a8e135bc.jpg", - "response": "A construction worker is working on a bridge wearing a yellow hard hat and holding a tool.", - "id": 21533 - }, - { - "image_path": "G:\\images\\combined\\-222-_png_jpg.rf.6d15cda163fdeb05ca2ef5a0c908efae.jpg", - "response": "A worker in a snowstorm repairs a power line.", - "id": 21534 - }, - { - "image_path": "G:\\images\\combined\\-2220-_png_jpg.rf.9ddef15f73a361e0e8569d621c04c9c3.jpg", - "response": " Two rescue workers(433,231),(616,753)(151,13),(469,995) in blue hard hats and blue uniforms(151,279),(468,996) stand in ankle deep water(3,540),(996,997) with a rope ladder(797,4),(972,568) in the background.", - "id": 21535 - }, - { - "image_path": "G:\\images\\combined\\-2224-_png_jpg.rf.b9db64af56d98423dfb35f9ce6d0186a.jpg", - "response": "An electrician is working on some power lines.", - "id": 21536 - }, - { - "image_path": "G:\\images\\combined\\-2227-_png_jpg.rf.0b95a5524520043c3f61dbf6c4e89457.jpg", - "response": "A man in a red hat and white shirt is standing on a utility pole. He is wearing blue jeans and work boots. He is holding a tool in his right hand. There are many power lines around the pole.", - "id": 21537 - }, - { - "image_path": "G:\\images\\combined\\-2233-_png_jpg.rf.22c7ee75cb773eb510220b46dda1d755.jpg", - "response": "A man wearing a yellow vest and a yellow hard hat is standing on a construction site. He is holding a cell phone to his ear.", - "id": 21538 - }, - { - "image_path": "G:\\images\\combined\\-2234-_png_jpg.rf.1c4a47d19525422d0175b16ed2727b77.jpg", - "response": "In the image there are two men working on a piece of machinery. They are both wearing orange jumpsuits and white helmets. The men are standing on a platform and appear to be working on a large pipe. There are several other pipes and machinery parts in the background. There are also several bottles and a cup in the scene. The image is set outdoors and there are trees in the background.", - "id": 21539 - }, - { - "image_path": "G:\\images\\combined\\-2235-_png_jpg.rf.bc1d503123b209c8be2a39ebfdba5f64.jpg", - "response": "a person wearing a red uniform and grey hat is holding a red valve and is standing next to a large red valve on a red metal structure. behind the person there is a red metal structure with a wheel on it and a couple of red pumps. behind the person there is a body of water with a grey sky above. on the grey sky there are some clouds.", - "id": 21540 - }, - { - "image_path": "G:\\images\\combined\\-2239-_png_jpg.rf.7ba3389ea7255b7a3ce5f71849f504dd.jpg", - "response": "A man wearing a blue jumpsuit and a red hard hat is working on an electrical box. He is holding a tool in his hand and there are other people working in the background. They are all wearing different colored hard hats. There are wires and other equipment around the man.", - "id": 21541 - }, - { - "image_path": "G:\\images\\combined\\-224-_png_jpg.rf.ac86d94745e178241965e45988c0fc14.jpg", - "response": "In the image two men wearing safety gear are standing in front of a grey and white building. They are both holding white phials in their hands. In front of the men and the building, there is a grey and white triangle platform. On this platform, there is a grey and white tower. Next to this tower, there is a grey and white square pillar. On the pillar, there are three black switches. In the background, there are grey electricity wires and grey electricity poles.", - "id": 21542 - }, - { - "image_path": "G:\\images\\combined\\-2240-_png_jpg.rf.b88704f14bfaf320745f5bf641d08737.jpg", - "response": "The image shows a group of men working on a power line in a small village. There are five men in the picture, wearing blue, yellow, and grey uniforms. One man is in the foreground, looking up at the power line, while the others are in the background, working on the line. There is a dog in the background, looking at the camera. The sky is grey and overcast.", - "id": 21543 - }, - { - "image_path": "G:\\images\\combined\\-2241-_png_jpg.rf.5456e4e24381132a37e5cbbfea4dec7c.jpg", - "response": "A pair of workers in yellow jackets and hard hats stand on a bridge, working on the train tracks.", - "id": 21544 - }, - { - "image_path": "G:\\images\\combined\\-2243-_png_jpg.rf.563591325ff3c59dde62812139824505.jpg", - "response": "a group of people walking in front of a tall building under construction", - "id": 21545 - }, - { - "image_path": "G:\\images\\combined\\-2245-_png_jpg.rf.34dfb7617f27c4adf79fd3b719e20120.jpg", - "response": "A group of men working on machinery in a mine.", - "id": 21546 - }, - { - "image_path": "G:\\images\\combined\\-2246-_png_jpg.rf.7bbf296c411c7cab0cbc88a868c6d323.jpg", - "response": "The image shows a group of people standing on a construction site. They are wearing hard hats and are gathered around a piece of structural steel. Some of the people are holding cell phones, and there is a clock visible in the background. The scene appears to be a construction project in progress.", - "id": 21547 - }, - { - "image_path": "G:\\images\\combined\\-2247-_png_jpg.rf.876aef8d1fe8faa6f131a48df7a5b2cf.jpg", - "response": "In the image there is a factory in the background. In the foreground, two people are wearing protective gear. One person is wearing a white helmet and holding a clipboard. Another person is wearing a white suit and a white helmet. There is a large vaulcuse in the factory with yellow and orange flames shooting out of it. The person on the left is crouching down and looking at something. There is a large metal cylinder in the factory and a person is standing next to it.", - "id": 21548 - }, - { - "image_path": "G:\\images\\combined\\-2250-_png_jpg.rf.4098dbe88fbcf31d59a3263b690812ce.jpg", - "response": "In the image there are two workers(1,457),(306,868) in orange vests and white helmets repairing a pipe in the ground. They are squatting down and using a tool to work on the pipe. To the left of the workers there is a sign(372,123),(995,679) that says \"China Southern Power Grid\" in black and red. The sign also has a red arrow pointing to the right. In the background there are several people standing around a white van.", - "id": 21549 - }, - { - "image_path": "G:\\images\\combined\\-2251-_png_jpg.rf.32685cd6f800c4510c8ba4f0a80d3806.jpg", - "response": "The image shows two workers in blue overalls and yellow hard hats standing in front of a large power plant. They are both holding a black stick with a red tip. They are standing on green grass in front of a large concrete structure with many metal poles and tubes. The sky is a light blue color and there are no clouds in the sky.", - "id": 21550 - }, - { - "image_path": "G:\\images\\combined\\-2252-_png_jpg.rf.6928b5db2a4222feaf1bd8eb80733700.jpg", - "response": "a worker on a ladder working on a power line", - "id": 21551 - }, - { - "image_path": "G:\\images\\combined\\-2254-_png_jpg.rf.bbd2e37052187b4efc49e9c4d4a73620.jpg", - "response": "There is a man standing in front of a group of miners who are all wearing hard hats. The man standing in front is smiling and holding a clipboard. He is wearing a orange vest and a blue shirt. There is a rope that is hanging up in the top left corner of the image. In the top right corner, there is a person's head with a yellow hard hat on. There are two people in the top left corner of the image, both wearing blue shirts and yellow hard hats. One of the men is holding a pick axe.", - "id": 21552 - }, - { - "image_path": "G:\\images\\combined\\-2255-_png_jpg.rf.1f5a3eb61a8f66772daa75fb6cd052ec.jpg", - "response": " People(3,213),(887,816) carrying a pole(60,395),(808,642) up a snowy hill", - "id": 21553 - }, - { - "image_path": "G:\\images\\combined\\-2256-_png_jpg.rf.3546729ffc4b1f4da70ce9164d0605de.jpg", - "response": "A couple of men working on a large metal structure.", - "id": 21554 - }, - { - "image_path": "G:\\images\\combined\\-2257-_png_jpg.rf.66b0b981c4d766387a70ddc3dd272d27.jpg", - "response": "A man in a blue shirt is fixing another man's hard hat.", - "id": 21555 - }, - { - "image_path": "G:\\images\\combined\\-2259-_png_jpg.rf.26e93a44cb49983310da9eda14d0b828.jpg", - "response": "A group of four people standing in front of a building site.", - "id": 21556 - }, - { - "image_path": "G:\\images\\combined\\-2260-_png_jpg.rf.92a969ff185db3ab4d08bffda242fd83.jpg", - "response": " A rescue team(586,497),(693,600)(739,477),(854,607)(497,481),(587,574) searches for a missing person in a flooded tunnel", - "id": 21557 - }, - { - "image_path": "G:\\images\\combined\\-2262-_png_jpg.rf.e88971d5adf460d5c77a330e3bbcc1c0.jpg", - "response": "in the image two men are working on a power line in a grassy field. they are wearing uniforms and hard hats. the grass is a bright green color. there is a mountain in the background.", - "id": 21558 - }, - { - "image_path": "G:\\images\\combined\\-2263-_png_jpg.rf.3fa2aa5e2164c15e6f0aa5d007005b5e.jpg", - "response": "a group of men standing in front of a cliff", - "id": 21559 - }, - { - "image_path": "G:\\images\\combined\\-2264-_png_jpg.rf.77d9857ea9c4f1276c5458af9cdd495c.jpg", - "response": "A man wearing a blue helmet is sitting at a desk with a keyboard and mouse. There are multiple computer screens around him.", - "id": 21560 - }, - { - "image_path": "G:\\images\\combined\\-2265-_png_jpg.rf.ab50eeb2ce9f7047060d0d84f7625dfc.jpg", - "response": "A group of men in suits and hard hats stand around a large pipe. Some of them are wearing suits and ties, while others are wearing hard hats. The men are standing on a construction site, and there is a pile of dirt and a large pipe in the foreground. In the background, there is a building with a sign that reads \"\u5317\u4eac\u7ecf\u6d4e\u6280\u672f\u5f00\u53d1\u533a\".", - "id": 21561 - }, - { - "image_path": "G:\\images\\combined\\-2266-_png_jpg.rf.8cd976758bcde56476c708a3955966cc.jpg", - "response": "A man and woman are talking to a male worker in high visibility vest and helmet. The man and woman are looking at a blueprint the worker is holding. They are in a room with a sloping ceiling.", - "id": 21562 - }, - { - "image_path": "G:\\images\\combined\\-2269-_png_jpg.rf.1669d4ce1db0eb920e36534a76f4bb88.jpg", - "response": "a group of people standing around a construction site", - "id": 21563 - }, - { - "image_path": "G:\\images\\combined\\-2270-_png_jpg.rf.84c7c1011c5b5eada15382ba7224b2a5.jpg", - "response": "A man in a blue hat and suit standing next to a man in a red hard hat.", - "id": 21564 - }, - { - "image_path": "G:\\images\\combined\\-2272-_png_jpg.rf.863153f0b98e9299ab1a3211f5feae33.jpg", - "response": "a group of people working on a construction site", - "id": 21565 - }, - { - "image_path": "G:\\images\\combined\\-2275-_png_jpg.rf.362f7d3e8562ee37a63010c82679983e.jpg", - "response": "The image shows a group of firefighters standing on a ladder in a building that has a partially collapsed roof. The roof appears to be made of wood and is in the process of falling in on itself. The firefighters are dressed in black and yellow and are wearing helmets. Some of them are also wearing masks. In the background, there are several people standing and watching the scene. One of the people is wearing a hard hat. The image also shows the words \"\u4e2d\u56fd\u7f51 \u4e2d\u56fd\u7f51\" in the bottom right corner.", - "id": 21566 - }, - { - "image_path": "G:\\images\\combined\\-2277-_png_jpg.rf.6aaa84815abd2c7d781ea41e743ee2b7.jpg", - "response": "A group of workers in orange are working on the road.", - "id": 21567 - }, - { - "image_path": "G:\\images\\combined\\-2280-_png_jpg.rf.a6e286ed3a6dc14b2710ce0fe2d76b3e.jpg", - "response": "A group of men in red, yellow and green uniforms are working in a field. They are wearing hard hats and appear to be cutting plants. There are several large plants that have been cut and are being held by the workers. There are also several trees in the background.", - "id": 21568 - }, - { - "image_path": "G:\\images\\combined\\-2284-_png_jpg.rf.0c7bb491008e2b76cbdcd71511e93f3c.jpg", - "response": "The image shows a construction site from above, looking down on a large area of concrete with many steel beams and red lines marking out the site. There are people working in the area, with some in the center and others scattered around the edges. Some of the people are wearing yellow or orange vests. There are also several objects scattered around the site, including a wooden plank, a metal box, a wheelbarrow, and a couple of bags. The overall impression is of a busy and active construction site.", - "id": 21569 - }, - { - "image_path": "G:\\images\\combined\\-2285-_png_jpg.rf.e73028e9fb0ffd803b1163fca8e251c2.jpg", - "response": "The photo shows workers digging a large hole in the ground. In the hole, there are two black pipes. The pipes are wrapped in what looks like yellow caution tape. There are also several workers working on the pipes. One is sitting on the left side of the photo, and three others are on the right side. There is also a yellow and black bulldozer on the left side of the photo.", - "id": 21570 - }, - { - "image_path": "G:\\images\\combined\\-2286-_png_jpg.rf.1c6f98b6da533b545b3e3d2b71fe036e.jpg", - "response": "A worker is using a machine to work on a tunnel.", - "id": 21571 - }, - { - "image_path": "G:\\images\\combined\\-2287-_png_jpg.rf.58a1a6a3e7432c16fc0d05608b1d2162.jpg", - "response": "A group of men in suits and hard hats stand in a construction site.", - "id": 21572 - }, - { - "image_path": "G:\\images\\combined\\-2288-_png_jpg.rf.030ba39223df4b9a13ff1733936533b2.jpg", - "response": "A group of workers in black uniforms and blue hats are working on a structure made of wood and metal. They are in a field with a forest in the background. One of the workers is holding a large silver tool.", - "id": 21573 - }, - { - "image_path": "G:\\images\\combined\\-229-_png_jpg.rf.873b50d7dfe829f0153ac1cbda1ad582.jpg", - "response": "A man wearing a silver helmet and a blue jacket.", - "id": 21574 - }, - { - "image_path": "G:\\images\\combined\\-2290-_png_jpg.rf.b166270a7eaa8623b0bd2f38845d98e9.jpg", - "response": "A group of men in blue uniforms and red hats are standing under a power line. They are looking up at a man who is working on the power line. The power line is made of wood and has many wires attached to it. There is a ladder next to the power line and a traffic light in the background.", - "id": 21575 - }, - { - "image_path": "G:\\images\\combined\\-2292-_png_jpg.rf.b7e1d23abe08caf9ebe334ad8e42ee65.jpg", - "response": "A couple of people working on a large metal structure.", - "id": 21576 - }, - { - "image_path": "G:\\images\\combined\\-2293-_png_jpg.rf.4e6733eeae7c3708913a667b7bc667e5.jpg", - "response": "A large tunnel with a train on tracks.", - "id": 21577 - }, - { - "image_path": "G:\\images\\combined\\-2295-_png_jpg.rf.741ab5961d4d50dce32c9d5f0c7e6ef5.jpg", - "response": "A group of men are working on a power line. They are standing on a ladder and some are also on the pole itself. They are all wearing helmets and some are wearing white and blue uniforms. The men are working on the power line which is made of metal and is located in front of a white building.", - "id": 21578 - }, - { - "image_path": "G:\\images\\combined\\-2296-_png_jpg.rf.c120911a92e1ab8abc6edad6ce4dca97.jpg", - "response": "In the image there are two workers wearing blue and grey jumpsuits and orange hardhats. They are working on a wooden structure, the logs are brown and the material looks like wood. They are working on the ceiling of a building.", - "id": 21579 - }, - { - "image_path": "G:\\images\\combined\\-2297-_png_jpg.rf.79b22c6f3bddf8158b492a91ea064617.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing matching orange work suits and yellow hard hats. Some of them are standing on a yellow ladder, which is placed on the ground. The workers are engaged in various tasks, such as using a mobile phone and working with wires. In the background, there are steel bars and other construction materials. The whole scene is framed by the legs and arms of two people standing in the foreground.", - "id": 21580 - }, - { - "image_path": "G:\\images\\combined\\-2298-_png_jpg.rf.65b785f73b3c44766e9aea1ea217e334.jpg", - "response": "A man in a white shirt and red hat is looking at a piece of paper. On the paper are two total station scans. One scan is yellow and orange and the other is blue. There is also a red and white total station scanner in the corner of the image.", - "id": 21581 - }, - { - "image_path": "G:\\images\\combined\\-2299-_png_jpg.rf.c6d4522b333a0400eab3ca56aeb423ef.jpg", - "response": "Two male construction workers standing in front of heavy machinery.", - "id": 21582 - }, - { - "image_path": "G:\\images\\combined\\-230-_png_jpg.rf.1a4e63592768e4ddab3d0738c140c0a6.jpg", - "response": "A worker in a blue uniform and yellow hat standing in a room filled with pipes and machinery. The worker is looking at a box on a metal structure and appears to be adjusting a valve.", - "id": 21583 - }, - { - "image_path": "G:\\images\\combined\\-2300-_png_jpg.rf.7df105131bf39b441758f5ab1ad6e80e.jpg", - "response": "A man in a red hard hat is holding a level against a concrete wall. Another man in a black shirt and red hard hat is standing to the right of the first man. A third man in a black shirt and red hard hat is standing behind the first two men. The wall the men are working on is not yet finished and has a rough texture. There is a ladder leaning against the wall.", - "id": 21584 - }, - { - "image_path": "G:\\images\\combined\\-2301-_png_jpg.rf.a67bd51fc1536a86561c85addbf5442d.jpg", - "response": "A man in a red uniform and red helmet is welding two pieces of metal together. He is wearing red coveralls and has a beard. He is wearing red welding goggles and a red helmet. He is also wearing a red uniform and red work boots. The helmet he is wearing is red and has a clear visor. He is using a welding torch to connect the two pieces of metal. The metal pieces are lying on the ground and the man is standing over them. The helmet he is wearing has a clear visor.", - "id": 21585 - }, - { - "image_path": "G:\\images\\combined\\-2303-_png_jpg.rf.ca601b0587f07bb6a06f735cae0308d4.jpg", - "response": "In the image there is a worker wearing a blue hat and brown trousers, standing on the pavement and holding a large cable in his hands. The cable is coiled up and the worker is wearing pink gloves. The street is empty apart from the worker, a few cars and a truck parked further away and some people in the background. The sky is blue and there are power lines above the worker.", - "id": 21586 - }, - { - "image_path": "G:\\images\\combined\\-2304-_png_jpg.rf.39e0322d72ff0836afc6b9dde169d9d7.jpg", - "response": "A group of workers standing in front of a cargo container. They are all wearing hard hats and safety vests. One of the workers is pointing towards the cargo container.", - "id": 21587 - }, - { - "image_path": "G:\\images\\combined\\-2305-_png_jpg.rf.0e68d5078e58049a942967226f2da171.jpg", - "response": "A man is working on a power line. He is climbing a pole and connecting wires. He is wearing a red hat and a black jacket.", - "id": 21588 - }, - { - "image_path": "G:\\images\\combined\\-2307-_png_jpg.rf.00891b91d1e69e649ad28165b74b2e4a.jpg", - "response": "A group of four people standing on a construction site wearing hard hats and high visibility vests. They are looking at a pink construction plan on a board.", - "id": 21589 - }, - { - "image_path": "G:\\images\\combined\\-2309-_png_jpg.rf.8adb4cd62ef0bf6a8338dec467059be7.jpg", - "response": "A dark room with a ladder and two people wearing hard hats. There are wooden beams and other structures in the room.", - "id": 21590 - }, - { - "image_path": "G:\\images\\combined\\-2313-_png_jpg.rf.bdb8ed329b0f90826dbcb2754d804414.jpg", - "response": "The image shows several men dressed in green camouflage clothing and blue helmets. They are working together to connect two pipes with red and black cables. The scene is outdoors and there are some buildings in the background.", - "id": 21591 - }, - { - "image_path": "G:\\images\\combined\\-2314-_png_jpg.rf.c81bfbc18d747417dd93bd529ff502fe.jpg", - "response": "A group of workers are seen installing power lines in the image.", - "id": 21592 - }, - { - "image_path": "G:\\images\\combined\\-2315-_png_jpg.rf.1dac97b23dfba6fe4db307404a20bec1.jpg", - "response": "A group of rescue workers are carrying a wooden beam across a muddy field. The workers are wearing hard hats and uniforms. In the background, there are mountains.", - "id": 21593 - }, - { - "image_path": "G:\\images\\combined\\-2318-_png_jpg.rf.12ccda99145f36381a8138f3339bf976.jpg", - "response": "The image shows three construction workers in blue uniforms and yellow helmets, working on a construction site. They are pulling on a large black hose together. The background shows a pile of the hose, as well as a large yellow construction vehicle. There is also a pile of grey rocks in the foreground. In the top left corner, there is a green and white sign with Chinese writing.", - "id": 21594 - }, - { - "image_path": "G:\\images\\combined\\-2319-_png_jpg.rf.de0a40048e58c85bd6ceb828f8f3eabf.jpg", - "response": "A man in a yellow jacket and a hard hat looking at blueprints in front of a building under construction.", - "id": 21595 - }, - { - "image_path": "G:\\images\\combined\\-232-_png_jpg.rf.c17965ad43abe5a830d05846134653b5.jpg", - "response": "A construction site with large pipes and heavy machinery.", - "id": 21596 - }, - { - "image_path": "G:\\images\\combined\\-2320-_png_jpg.rf.a2feebbdab5061a1cc069c36c69e514a.jpg", - "response": "A group of five men in hard hats and yellow vests are looking up at a camera with smiles on their faces. They are standing in front of a building under construction with scaffolding. The men are wearing different colored hard hats, with two men wearing red ones, one wearing a blue one, one wearing a white one and the farthest man wearing a black one.", - "id": 21597 - }, - { - "image_path": "G:\\images\\combined\\-2321-_png_jpg.rf.52d0e018aff600f0038871352400a714.jpg", - "response": "In the image there are multiple people working on a construction site. They are building a large tunnel or tube structure. The workers are wearing hard hats and some are wearing yellow and orange shirts. There are several metal bars and frameworks being built into the structure. Some of the workers are on ladders installing metal frameworks.", - "id": 21598 - }, - { - "image_path": "G:\\images\\combined\\-2323-_png_jpg.rf.00cd8e15b01e7ef38bbde875f121990f.jpg", - "response": "A group of men in hard hats stand in a line and look at a concrete wall. Some of them are holding cell phones. One man is wearing a red hard hat and a light blue shirt. Another man is wearing a red hard hat and a dark blue shirt. A third man is wearing a red hard hat and a dark blue shirt with a white logo on it. A fourth man is wearing a blue shirt and a red hard hat. A fifth man is wearing a white shirt and a red hard hat. A sixth man is wearing a white shirt and a red hard hat. A seventh man is wearing a white shirt and a red hard hat. A eighth man is wearing a white shirt and a red hard hat. A ninth man is wearing a red shirt and a red hard hat. A tenth man is wearing a red shirt and a red hard hat. A eleventh man is wearing a red shirt and a red hard hat. A twelfth man is wearing a red shirt and a red hard hat. A thirteenth man is wearing a red shirt and a red hard hat. A fourteenth man is wearing a red shirt and a red hard hat. A fifteenth man is wearing a red shirt and a red hard hat. A sixteenth man is wearing a red shirt and a red hard hat. A seventeenth man is wearing a red shirt and a red hard hat. A eighteenth man is wearing a red shirt and a red hard hat. A nineteenth man is wearing a red shirt and a red hard hat.", - "id": 21599 - }, - { - "image_path": "G:\\images\\combined\\-2324-_png_jpg.rf.52b43b9cf13a099ced06e79ba12d8682.jpg", - "response": "A group of men in hard hats are working on a transformer.", - "id": 21600 - }, - { - "image_path": "G:\\images\\combined\\-2325-_png_jpg.rf.e39ae57906588a5221b26023a7752e80.jpg", - "response": "A worker looks into the mouth of a giant tunnel.", - "id": 21601 - }, - { - "image_path": "G:\\images\\combined\\-2327-_png_jpg.rf.913ebea4d5b0daf4525f0c70943e3ae1.jpg", - "response": "In the image, there is a person wearing a green jumpsuit, a yellow shirt, and a red helmet. They are also wearing a tool belt. The person has their arms outstretched and is standing in front of a brick wall. There are two red and white triangle flags on the wall to the left of the person. The person is also wearing brown work boots.", - "id": 21602 - }, - { - "image_path": "G:\\images\\combined\\-2328-_png_jpg.rf.a55ac15f5172831fbe0b5afa11aa19d6.jpg", - "response": "A group of workers in a large warehouse.", - "id": 21603 - }, - { - "image_path": "G:\\images\\combined\\-2333-_png_jpg.rf.9a84e3fa103e6e9df05355d208bbf7de.jpg", - "response": "An electrician working on some wires up high.", - "id": 21604 - }, - { - "image_path": "G:\\images\\combined\\-2334-_png_jpg.rf.9da84f8b5e36b920a9db34c94897a0fb.jpg", - "response": "A group of workers working on a construction site.", - "id": 21605 - }, - { - "image_path": "G:\\images\\combined\\-2335-_png_jpg.rf.53b155153b44961a00f54d6da1ee3fa4.jpg", - "response": "The image shows a snowy hillside with a group of men working on a power line. They are standing on various ladders and poles, and are wearing hard hats and other safety gear. The snow appears to be quite deep in places, and the men are struggling to complete their work in the harsh conditions.", - "id": 21606 - }, - { - "image_path": "G:\\images\\combined\\-2336-_png_jpg.rf.61d26bb93ad19d568a35b0ca629adecf.jpg", - "response": "A construction site with multiple workers working on different tasks.", - "id": 21607 - }, - { - "image_path": "G:\\images\\combined\\-2337-_png_jpg.rf.939d8860ea0b81acb5a4e9fabcb758ba.jpg", - "response": "A group of workers are working on a building.", - "id": 21608 - }, - { - "image_path": "G:\\images\\combined\\-2338-_png_jpg.rf.8c08882be43006f450ba8c41a0246780.jpg", - "response": "The image depicts President Obama wearing a white shirt and a blue tie, standing in a factory surrounded by workers. He is wearing a white hard hat and talking to a group of men in similar gear. The factory floor is filled with various machinery and equipment, including a large yellow machine with the number 5 on it. The workers are engaged in conversation with the president, and the atmosphere appears to be casual and relaxed.", - "id": 21609 - }, - { - "image_path": "G:\\images\\combined\\-2339-_png_jpg.rf.dc3e48800c85eb4333c9834804f37d1f.jpg", - "response": "A worker in a yellow hard hat is standing on a platform at the top of a building. The platform is surrounded by blue posts and there are several other platforms in the area. The worker is looking down at the ground.", - "id": 21610 - }, - { - "image_path": "G:\\images\\combined\\-2340-_png_jpg.rf.c2451254d5ec0a7ac37b06a86e742fa2.jpg", - "response": "A group of people standing around each other", - "id": 21611 - }, - { - "image_path": "G:\\images\\combined\\-2341-_png_jpg.rf.d4f5f97ade5c64fcb273d45f1ea313a1.jpg", - "response": "A group of men in hard hats are working on a wall.", - "id": 21612 - }, - { - "image_path": "G:\\images\\combined\\-2342-_png_jpg.rf.737dab046e41d1437385a71345b370fc.jpg", - "response": "A man in a blue jacket and a red hard hat stands in front of a pile of rubble. He has a clock on his head.", - "id": 21613 - }, - { - "image_path": "G:\\images\\combined\\-2345-_png_jpg.rf.700b1c64105ec2008e078a1710b4186a.jpg", - "response": "A man in a yellow helmet stands on a platform working on wires.", - "id": 21614 - }, - { - "image_path": "G:\\images\\combined\\-2348-_png_jpg.rf.654c14e70f9687e4260ffb5df4a99b91.jpg", - "response": "A man in a red hat and safety gear is on a ladder working on a power line.", - "id": 21615 - }, - { - "image_path": "G:\\images\\combined\\-2349-_png_jpg.rf.c5bc5c1d8ac10478f71275ac52cba1a7.jpg", - "response": "A man in a red uniform is standing in a tunnel.", - "id": 21616 - }, - { - "image_path": "G:\\images\\combined\\-235-_png_jpg.rf.0764ab2512d1b71f601f81e94f250e37.jpg", - "response": "Two engineers in front of a building under construction with scaffolding.", - "id": 21617 - }, - { - "image_path": "G:\\images\\combined\\-2353-_png_jpg.rf.bd15c378786ca1c529bd5d9e4b60fe49.jpg", - "response": "a car(0,422),(388,689) parked on the side of a dirt road", - "id": 21618 - }, - { - "image_path": "G:\\images\\combined\\-2355-_png_jpg.rf.d3bdd196bd6445d633b31a9e82df66b0.jpg", - "response": "In the image there are two workers in orange helmets, one on the left and one on the right. They are both looking upwards at a tall construction site. The construction site has multiple levels and is made of cement. There is a ladder going up the side of the building. In the top left corner there is a white sign with black writing that says HADCM OOOH. In the top right corner there is a white sign with black writing that says Wwmm.HaDow.Com.", - "id": 21619 - }, - { - "image_path": "G:\\images\\combined\\-2357-_png_jpg.rf.90a91265c7ac0f3f3bc84666022716a1.jpg", - "response": "A group of workers wearing hard hats and grey jumpsuits are standing in a parking lot. They are all facing away from the camera.", - "id": 21620 - }, - { - "image_path": "G:\\images\\combined\\-2358-_png_jpg.rf.a0f26450c3837fec045e1b88c529bd27.jpg", - "response": "a man in a blue shirt and blue hat is holding a large stick with a ball on the end of it.", - "id": 21621 - }, - { - "image_path": "G:\\images\\combined\\-236-_png_jpg.rf.9a5a81198ba5dbd561ad1506dcc9a639.jpg", - "response": "A group of men standing around a table.", - "id": 21622 - }, - { - "image_path": "G:\\images\\combined\\-2360-_png_jpg.rf.1e04cc1d9c480072d6a38e5310ca39c5.jpg", - "response": "The image shows a group of rescue workers in orange uniforms and red helmets standing on black tar. They are working together to remove debris from the scene. A large piece of white equipment is visible in the foreground. The workers are surrounded by tangled grey wires. The photo is taken from above, looking down at the scene.", - "id": 21623 - }, - { - "image_path": "G:\\images\\combined\\-2361-_png_jpg.rf.0a2751824caa98816a25b481c8a6ae5e.jpg", - "response": "A man in a suit is leaning over a person in a hard hat who is working on a person trapped in rubble. The man in the suit is wearing a tie.", - "id": 21624 - }, - { - "image_path": "G:\\images\\combined\\-2362-_png_jpg.rf.d3144654fe7a134f57c16e125baf0521.jpg", - "response": "The image shows three men in red and yellow work clothes standing in a tunnel. They are all wearing hard hats. One man is handing another man a box. The box is white and has a red heart on it. The box says \"\u7231\u5fc3\u533b\u7597\u7bb1\" which means \"\u7231\u5fc3 first aid kit\". The tunnel is white and has a metal\u6805\u680f in the foreground.", - "id": 21625 - }, - { - "image_path": "G:\\images\\combined\\-2363-_png_jpg.rf.8c70bc16890597c7641edfcaa4038e29.jpg", - "response": "A construction worker in a red vest standing next to a yellow crane that is lifting a traffic light.", - "id": 21626 - }, - { - "image_path": "G:\\images\\combined\\-2365-_png_jpg.rf.1748772312a202d558c84f8c816ecd30.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a black coat. The person is holding a piece of paper with a building on it. The building is yellow and white. There are many construction cranes in the background. The sky is a clear blue.", - "id": 21627 - }, - { - "image_path": "G:\\images\\combined\\-2367-_png_jpg.rf.23b15afb7865fd0c37e63750ea3d5663.jpg", - "response": "A group of three workers wearing blue jumpsuits are working on a yellow scaffolding system. The workers are in the process of building a scaffolding system from bamboo. The sky is overcast.", - "id": 21628 - }, - { - "image_path": "G:\\images\\combined\\-2369-_png_jpg.rf.fd038e807b534d06b2dcaa6ff3034902.jpg", - "response": "An engineer in a yellow hard hat and blue work shirt is looking into a control room. The control room has many wires and buttons and the engineer is looking at a screen.", - "id": 21629 - }, - { - "image_path": "G:\\images\\combined\\-2372-_png_jpg.rf.1218e61bed9b5c3cec033815f91fb6c9.jpg", - "response": "In the image there is a group of people working on a construction site in the mountains. They are wearing hard hats and are working on a steel frame structure. The ground is rocky and covered with snow in some places. There are also some tools, such as a shovel and a rope, lying around the construction site.", - "id": 21630 - }, - { - "image_path": "G:\\images\\combined\\-2374-_png_jpg.rf.6111b751b74e454e97fe3053bca2c60f.jpg", - "response": "A woman wearing a hard hat and safety glasses is sitting on a forklift. She is wearing gloves and a yellow hard hat. There is a pile of wood pallets behind her.", - "id": 21631 - }, - { - "image_path": "G:\\images\\combined\\-2375-_png_jpg.rf.beaeb1d02cf5a62c7f97ce37cc005d9b.jpg", - "response": "A group of workers in red doing maintenance on a oil drilling rig.", - "id": 21632 - }, - { - "image_path": "G:\\images\\combined\\-2376-_png_jpg.rf.c00484312180dee826cfa244f5fd2c25.jpg", - "response": "A man in a red shirt and yellow hat working on a power line.", - "id": 21633 - }, - { - "image_path": "G:\\images\\combined\\-2377-_png_jpg.rf.47a2273d08170dc51fc181c896cf28c6.jpg", - "response": "A group of men in blue uniforms and white hard hats are working on a pipe in the ground. They are standing around the pipe and have tools with them. There is a large rock next to the pipe and a bucket on the ground. The men are wearing blue uniforms and white hard hats.", - "id": 21634 - }, - { - "image_path": "G:\\images\\combined\\-2378-_png_jpg.rf.c9e7b61bc69b203c4128bf80f016c902.jpg", - "response": "A construction worker in a yellow hard hat is spraying down rebar with a hose. The worker is wearing a grey shirt and grey pants. They are standing on a construction site with a concrete floor. There are many steel bars scattered around the floor. Some steel bars are arranged in a pattern on the floor. The worker is holding a hose in one hand and a trigger in the other.", - "id": 21635 - }, - { - "image_path": "G:\\images\\combined\\-2380-_png_jpg.rf.7dfa1846ad012ead3c0765db6f4e4ee6.jpg", - "response": "A person in a hard hat and coveralls standing in front of a large piece of machinery.", - "id": 21636 - }, - { - "image_path": "G:\\images\\combined\\-2381-_png_jpg.rf.23c08c1b0ab2fa3a2007f98c6c520267.jpg", - "response": "A group of people, some wearing hard hats, pose for a photo. They are all wearing blue jeans and many are wearing work boots. In front of them on the ground are several pairs of different sized boots, some with yellow soles. There is a large tarp covering something behind them and a building in the background.", - "id": 21637 - }, - { - "image_path": "G:\\images\\combined\\-2382-_png_jpg.rf.ef33fe76c1d861b488b75c3cda75c470.jpg", - "response": " Men(262,363),(363,640)(633,357),(740,632)(483,369),(609,657)(851,327),(972,737)(119,376),(242,712)(43,353),(148,657)(739,371),(822,720) standing in a muddy field", - "id": 21638 - }, - { - "image_path": "G:\\images\\combined\\-2383-_png_jpg.rf.1cf373bf1afe2d4f38002d91f93bdd5c.jpg", - "response": "a group of people standing in front of a building", - "id": 21639 - }, - { - "image_path": "G:\\images\\combined\\-2384-_png_jpg.rf.ea3b705e1bf95153767d9d24624f98c0.jpg", - "response": "A group of people sitting on the ground.", - "id": 21640 - }, - { - "image_path": "G:\\images\\combined\\-2385-_png_jpg.rf.cfaeb49f1e23542f53f7516da94e8fc3.jpg", - "response": "a group of people standing around a laptop", - "id": 21641 - }, - { - "image_path": "G:\\images\\combined\\-2388-_png_jpg.rf.27557b7c9a2f7e5574d8ba7629492059.jpg", - "response": "A group of people standing on top of a construction site.", - "id": 21642 - }, - { - "image_path": "G:\\images\\combined\\-2390-_png_jpg.rf.9935ba1ab80e94eb713e5f0f9d85dca5.jpg", - "response": "a couple of people that are working on a machine", - "id": 21643 - }, - { - "image_path": "G:\\images\\combined\\-2391-_png_jpg.rf.160d313d98fe8a21ef010c2109221de3.jpg", - "response": "A worker in a green uniform and red hat sits on scaffolding in front of a building with a traditional Chinese roof. The worker is sitting on a red ladder.", - "id": 21644 - }, - { - "image_path": "G:\\images\\combined\\-2392-_png_jpg.rf.f4b7ab63876f0744aac874b2c4c9fb24.jpg", - "response": "A worker in a large factory, with sun rays coming through a window.", - "id": 21645 - }, - { - "image_path": "G:\\images\\combined\\-2393-_png_jpg.rf.15cd13aab96dd7188cc6b96c086155f0.jpg", - "response": "A group of people working on a hillside next to a body of water.", - "id": 21646 - }, - { - "image_path": "G:\\images\\combined\\-2395-_png_jpg.rf.a7471ff7c42a417831fbc9ab2db8df52.jpg", - "response": "A worker in a red hard hat kneeling down to read a meter.", - "id": 21647 - }, - { - "image_path": "G:\\images\\combined\\-2396-_png_jpg.rf.1d224cd9a3ea0385cfcec52408b78894.jpg", - "response": "A man wearing a yellow vest and blue hard hat is carrying a large metal pipe in a tunnel. Another man wearing a yellow vest and hard hat is standing in the background. They are both carrying tools.", - "id": 21648 - }, - { - "image_path": "G:\\images\\combined\\-2398-_png_jpg.rf.8b635d587402a3941116f7a0a1b36a45.jpg", - "response": "In the image, there is a worker wearing a yellow helmet and yellow protective suit, standing in a factory. There's a large metal container on the right side of the worker, and a fire is burning in it. The metal container is connected to a large pipe on the left side of the worker.", - "id": 21649 - }, - { - "image_path": "G:\\images\\combined\\-24-_png_jpg.rf.1609bc870b6cd5284a879b8c8b1d2703.jpg", - "response": "A group of four linemen are working on repairing a power line. They are all wearing white hard hats and grey jumpsuits. They are all holding onto the line with their gloves and are focused on the repair.", - "id": 21650 - }, - { - "image_path": "G:\\images\\combined\\-2400-_png_jpg.rf.11057254597e49ab2f8288b5885b235b.jpg", - "response": "A man in a grey suit and red tie, wearing a yellow hard hat, is talking on a cell phone.", - "id": 21651 - }, - { - "image_path": "G:\\images\\combined\\-2401-_png_jpg.rf.c3340b70e7de64eea8c28f665984034a.jpg", - "response": "www.kelamayi.com.cn is the website address shown in the image.", - "id": 21652 - }, - { - "image_path": "G:\\images\\combined\\-2403-_png_jpg.rf.ac9bf6cdcb1ab4d1a82dcf5e8f7c2049.jpg", - "response": "The image features two workers, one sitting and one standing, both wearing orange hard hats. They are both dressed in blue jackets and are working on a construction site. The workers are standing next to a concrete wall with graffiti on it. The graffiti features a cartoon-like drawing of a family, including a mother, a father, and two children. The graffiti is also accompanied by Chinese writing.", - "id": 21653 - }, - { - "image_path": "G:\\images\\combined\\-2404-_png_jpg.rf.24553fdb0ef12775417a150a799e76da.jpg", - "response": "Men(540,395),(621,681)(657,387),(756,657)(338,521),(467,743)(55,533),(142,663) standing on a construction site", - "id": 21654 - }, - { - "image_path": "G:\\images\\combined\\-2406-_png_jpg.rf.cd3828a388343710bc9bc75b2ce1f790.jpg", - "response": "The image shows a group of workers in white uniforms and blue helmets who are working on a large pipe. They are all crouched down and appear to be focused on their task. The background is a grey-white color. To the right of the image, there is a red link to a website called China News Service. Below the link, there is a red logo with white writing that says \"If you have a dream, come to Hubei\".", - "id": 21655 - }, - { - "image_path": "G:\\images\\combined\\-241-_png_jpg.rf.4cd64652b1f1c4fff77f766cda11ff86.jpg", - "response": "A man on a ladder working on a pole during a flood.", - "id": 21656 - }, - { - "image_path": "G:\\images\\combined\\-2412-_png_jpg.rf.f5ad61b7b2cd6552da48579c116b482a.jpg", - "response": "A group of people walking in a street.", - "id": 21657 - }, - { - "image_path": "G:\\images\\combined\\-2413-_png_jpg.rf.bca677d7d32033d3377e3a9c851dcff7.jpg", - "response": "In the image there is a worker wearing a black hat and a red shirt who is working with some metal. The metal is being melted and some of it is glowing orange. There is also some sparks flying around. The worker is standing on a dark grey floor and there are some tiles around him. In the top left corner of the image there are two other people wearing what looks like safety gear.", - "id": 21658 - }, - { - "image_path": "G:\\images\\combined\\-2416-_png_jpg.rf.e1d62d047dab7ae9fbf2ecd7c91516d6.jpg", - "response": "A worker in a red helmet is using a red and grey machine to drill into a concrete wall.", - "id": 21659 - }, - { - "image_path": "G:\\images\\combined\\-2418-_png_jpg.rf.04c4b1bedc5d3ffa457d755e19900b3b.jpg", - "response": "The image shows a tunnel with a yellow ceiling. In the tunnel, there are workers in blue overalls and yellow helmets. Some of the workers are standing on a walkway in the tunnel, while others are working on a conveyor belt. There are also two workers on the left side of the image. The shadows of the workers are visible on the walls of the tunnel.", - "id": 21660 - }, - { - "image_path": "G:\\images\\combined\\-2419-_png_jpg.rf.3a87f91048447fc6bc146e730074e982.jpg", - "response": "a snowy hill with trees and rocks", - "id": 21661 - }, - { - "image_path": "G:\\images\\combined\\-2421-_png_jpg.rf.a22b0cc2383ba54136060237f502f81b.jpg", - "response": "The image shows a man in a snowy environment, working on power lines. He is standing on a blue platform, which appears to be a lift, and is wearing heavy winter gear. The man has black hair and is wearing a black jacket with yellow accents. He is also wearing yellow gloves and has a beard. The power lines are thick and run in various directions. There is snow on the ground and it is falling from the sky. The lift has snow on it as well.", - "id": 21662 - }, - { - "image_path": "G:\\images\\combined\\-2423-_png_jpg.rf.4224e2b9f79bd78b0aa04ead243b1e87.jpg", - "response": "A group of engineers standing in a construction site wearing their hard hats on their heads.", - "id": 21663 - }, - { - "image_path": "G:\\images\\combined\\-2424-_png_jpg.rf.634fd64e1a59c0d922f5cf884705cd91.jpg", - "response": "The image shows several construction workers wearing yellow and orange vests. They are working in a large underground tunnel. Some of them are carrying large pieces of concrete. One worker is on the left, carrying a large white piece of concrete on her shoulder. Another worker is on the right, carrying a large white piece of concrete on her shoulder. A third worker is in the background, carrying a large white piece of concrete on her shoulder. A fourth worker is in the background, carrying a large white piece of concrete on her shoulder. The workers are all wearing hard hats.", - "id": 21664 - }, - { - "image_path": "G:\\images\\combined\\-2426-_png_jpg.rf.7b7e236493e4336eb225eb57c5204f8c.jpg", - "response": "A group of men walking across a construction site.", - "id": 21665 - }, - { - "image_path": "G:\\images\\combined\\-2428-_png_jpg.rf.ba3488b968fb9c6eacf42cc4347d260f.jpg", - "response": "A man in a blue shirt and white pants is working on a power line. He is standing on a ladder and is wearing a tool belt. He is also wearing a blue shirt and blue pants. He has a white hat on. He is holding a tool in his right hand. He is on a ladder that is leaning against a tall pole. The sky is blue with white clouds. There is a tree in the foreground.", - "id": 21666 - }, - { - "image_path": "G:\\images\\combined\\-243-_png_jpg.rf.421cd9ea359a85eaadcd468499c3df78.jpg", - "response": "A group of men in blue work uniforms are standing on a tall structure, working on wires. They are surrounded by equipment such as a yellow crane and a white truck. The scene is set at night, with power lines stretching out in all directions.", - "id": 21667 - }, - { - "image_path": "G:\\images\\combined\\-2430-_png_jpg.rf.a511c2a774ed7321cb7bc9f71da8319b.jpg", - "response": "A construction site with a man wearing a red hard hat and a white shirt shoveling something into a wheel barrel.", - "id": 21668 - }, - { - "image_path": "G:\\images\\combined\\-2431-_png_jpg.rf.d2f63925c4cde17866e75d7fa8dea468.jpg", - "response": "A firefighter with his helmet on, looking up. He has a look of exhaustion on his face.", - "id": 21669 - }, - { - "image_path": "G:\\images\\combined\\-2435-_png_jpg.rf.af067493df2b73de78108bf4f4444b2f.jpg", - "response": "A group of men working on a construction site.", - "id": 21670 - }, - { - "image_path": "G:\\images\\combined\\-2436-_png_jpg.rf.bcc23a1d78ff7db837fcae7ae00cabf1.jpg", - "response": "A group of people wearing orange vests and yellow hard hats are sitting on the back of a green truck.", - "id": 21671 - }, - { - "image_path": "G:\\images\\combined\\-2437-_png_jpg.rf.caa886997abc75b5cb9092688201c2cd.jpg", - "response": "A group of men working on an electricity pylon.", - "id": 21672 - }, - { - "image_path": "G:\\images\\combined\\-2441-_png_jpg.rf.8c5328c3ef7c1fe2d1f88059021b0736.jpg", - "response": "A group of men are working together to move a large white pole.", - "id": 21673 - }, - { - "image_path": "G:\\images\\combined\\-2442-_png_jpg.rf.3b642a795b75837975ba157e3ad9e766.jpg", - "response": "Two workers(125,308),(460,750)(490,332),(845,667) are working on a construction site.", - "id": 21674 - }, - { - "image_path": "G:\\images\\combined\\-2444-_png_jpg.rf.4b854eb7b174f187136ca2e29decfcbb.jpg", - "response": "The image shows a group of six men standing on a construction site, looking at some papers. They are all wearing hard hats, and the sky is blue with a few white clouds. There is a red crane operating in the background.", - "id": 21675 - }, - { - "image_path": "G:\\images\\combined\\-2445-_png_jpg.rf.1c6e641f45727258105fbed874280272.jpg", - "response": "A group of people walking down a street.", - "id": 21676 - }, - { - "image_path": "G:\\images\\combined\\-2446-_png_jpg.rf.ad74bbbe7e26596d0dba126e66ede290.jpg", - "response": "In the image two men in red uniform working on an oil well. The oil well has a large metal structure with a black pipe going down into the ground. The men are standing on a platform and one of them is holding a drill. They are wearing red uniform and yellow helmet.", - "id": 21677 - }, - { - "image_path": "G:\\images\\combined\\-2449-_png_jpg.rf.c489d658a38bb0484bee7bbe7745835a.jpg", - "response": "The image shows a group of people, most of them wearing hard hats(434,305),(533,378)(649,380),(792,465)(158,336),(236,387)(287,294),(407,365), gathered around a construction site. They are looking up at a crane, which is positioned at the top left of the image. The crane is lifting a large object, which is out of the frame. The people are standing on a wet surface, possibly a concrete pad. In the background, there are buildings and a white sky.", - "id": 21678 - }, - { - "image_path": "G:\\images\\combined\\-245-_png_jpg.rf.092a503f8419d341ab93cc7b34254643.jpg", - "response": "The image shows two workers in camouflage uniforms and hard hats, one red and one yellow, working together to secure a rope. They are standing in front of a large, geometrically patterned metal wall.", - "id": 21679 - }, - { - "image_path": "G:\\images\\combined\\-2451-_png_jpg.rf.c1a7f2a6774b835e1276eb2837ec270f.jpg", - "response": "A man in a grey shirt and black pants is pointing to something in the distance. He is wearing a red helmet and has a flag in his hand. To the right of him are five other men. One man is wearing a white shirt and grey pants and is wearing a blue hat. Another man is wearing a black shirt and grey pants. The third man is wearing a black shirt and grey pants and is wearing a blue hat. The fourth man is wearing a white shirt and grey pants. The fifth man is wearing a white shirt and grey pants and is wearing a white hat. They are all standing on a construction site.", - "id": 21680 - }, - { - "image_path": "G:\\images\\combined\\-2452-_png_jpg.rf.94f3ae58a76570bf9366deef5be8f5e1.jpg", - "response": "The image shows two construction workers in a muddy construction site. They are wearing hard hats and one of them is holding a\u6c14\u6ce1\u68d2 (a tool used for construction) and the other one is holding a level. There is a hole in the ground and a metal cage is being lowered into it. The workers are surrounded by a muddy water.", - "id": 21681 - }, - { - "image_path": "G:\\images\\combined\\-2453-_png_jpg.rf.0d516ac15a62cb2713593708e52bc3cf.jpg", - "response": "A worker is spraying water in a dark tunnel.", - "id": 21682 - }, - { - "image_path": "G:\\images\\combined\\-2454-_png_jpg.rf.99974c7c38d65246dfd3655bcae53426.jpg", - "response": "a group of men standing in a large room that has unfinished concrete floors and walls. some men are wearing suits and one is wearing a hat.", - "id": 21683 - }, - { - "image_path": "G:\\images\\combined\\-2456-_png_jpg.rf.91f1d1f1d1a0182a25b90f9b0e0a833b.jpg", - "response": "A man in a blue uniform and a yellow hard hat is pointing at a large power line. Another man in a blue uniform and a yellow hard hat is holding a clipboard and looking at the power line.", - "id": 21684 - }, - { - "image_path": "G:\\images\\combined\\-2457-_png_jpg.rf.a834230eb1bcafd6ade2097893c31e6f.jpg", - "response": "A construction worker in a yellow vest and red helmet is working on a construction site.", - "id": 21685 - }, - { - "image_path": "G:\\images\\combined\\-2458-_png_jpg.rf.04dcaa48694063e89641e37cb22ca2b1.jpg", - "response": "A group of people working on a construction project in a rural area.", - "id": 21686 - }, - { - "image_path": "G:\\images\\combined\\-2459-_png_jpg.rf.cec68f426bced1c47895624384911d9b.jpg", - "response": "A group of men standing in front of a large cement building under construction.", - "id": 21687 - }, - { - "image_path": "G:\\images\\combined\\-246-_png_jpg.rf.a18c6303337241b4e14e94c555c7d140.jpg", - "response": "A group of people standing in front of a building that is under construction.", - "id": 21688 - }, - { - "image_path": "G:\\images\\combined\\-2461-_png_jpg.rf.070542630217a8bea7ec1f2ee291809c.jpg", - "response": "A worker in a white protective suit is working in a cave.", - "id": 21689 - }, - { - "image_path": "G:\\images\\combined\\-2464-_png_jpg.rf.1cb3f18ad24179f9b40f9f7e1d7a8655.jpg", - "response": "A group of men working on a construction site.", - "id": 21690 - }, - { - "image_path": "G:\\images\\combined\\-2465-_png_jpg.rf.b724f386db3610a36a7395164a9a01dc.jpg", - "response": "A man in a grey shirt and grey pants standing next to a pile of grey rocks.", - "id": 21691 - }, - { - "image_path": "G:\\images\\combined\\-2466-_png_jpg.rf.d8c46e8add2b57b9df559c2afd400550.jpg", - "response": "A group of five men in yellow hard hats and blue shirts are walking across a construction site. They are all smiling and carrying tools.", - "id": 21692 - }, - { - "image_path": "G:\\images\\combined\\-2467-_png_jpg.rf.41df97cf7f7d6dbc610af16387f7a315.jpg", - "response": "a man in a red hard hat", - "id": 21693 - }, - { - "image_path": "G:\\images\\combined\\-2468-_png_jpg.rf.d2bde812f94af26d2e0c45a061b5a34b.jpg", - "response": "A group of men in hard hats are gathered in a factory. One man is showing another man a clear object.", - "id": 21694 - }, - { - "image_path": "G:\\images\\combined\\-2469-_png_jpg.rf.ef899ca7cd8586824dd5f82852236f5d.jpg", - "response": "A group of men standing in a factory wearing hard hats and yellow vests.", - "id": 21695 - }, - { - "image_path": "G:\\images\\combined\\-247-_png_jpg.rf.160692355b9ccc5b8bcd29c11e0901ea.jpg", - "response": "A man and a woman are kneeling on the ground and looking at a blueprint. They are both wearing hard hats. In the background, there is a construction site with two cranes.", - "id": 21696 - }, - { - "image_path": "G:\\images\\combined\\-2471-_png_jpg.rf.8cc56ca7b8599cd189b0eb83239d3cc1.jpg", - "response": "A group of workers are working on a construction site.", - "id": 21697 - }, - { - "image_path": "G:\\images\\combined\\-2476-_png_jpg.rf.4d7bb73938c5a5ef7e7dfca2f4f11828.jpg", - "response": "A group of people standing on a yellow truck.", - "id": 21698 - }, - { - "image_path": "G:\\images\\combined\\-2477-_png_jpg.rf.9630aea81ac7e6878150e4750c239950.jpg", - "response": "A group of workers pulling a steel beam with all their might.", - "id": 21699 - }, - { - "image_path": "G:\\images\\combined\\-2478-_png_jpg.rf.80949a907244bd338b9ef542bad9d1c8.jpg", - "response": "A worker is taking down signs from a bus shelter.", - "id": 21700 - }, - { - "image_path": "G:\\images\\combined\\-248-_png_jpg.rf.c4f215fb19484f3eae11de209852a18c.jpg", - "response": "A man wearing a white hard hat is working on a construction site. He is crouching down and working on a grid of rebar. There are several other people working on the site as well. One man is standing on the left side of the image, another is on the right side, and the last one is on the top. There are also a few people working in the background. The sky above the construction site is bright white.", - "id": 21701 - }, - { - "image_path": "G:\\images\\combined\\-2481-_png_jpg.rf.385d62c96fc4619f4b21e7409fc311fe.jpg", - "response": "The image shows a group of people standing under a red banner. The banner reads 'This is an important production safety area. Strive for excellence, ensure safety, and maintain order', and has a photo of a man in a blue uniform and a red tie. The people standing in front of the banner are wearing safety helmets and uniforms. In the foreground, there are some tools and equipment. To the far left, there is a camera man taking photos.", - "id": 21702 - }, - { - "image_path": "G:\\images\\combined\\-2483-_png_jpg.rf.dcee550c3b82115227dc83d2e208dc7b.jpg", - "response": "The image shows a group of seven people standing in a circle on a construction site. They are all wearing hard hats, with one person on the left wearing a red one, and the person on the right wearing a white one. The people are holding a variety of items, including two people in the middle holding what look like clipboards or folders. The person on the far left is holding a pen. In the background, there is a building with a sign that says \"Villa\".", - "id": 21703 - }, - { - "image_path": "G:\\images\\combined\\-2486-_png_jpg.rf.d46698c0e0250ecd9eafb336900ce1e1.jpg", - "response": "A group of five men in hard hats stand around a blueprint. They are all dressed in work clothes. In the background, a building under construction is visible.", - "id": 21704 - }, - { - "image_path": "G:\\images\\combined\\-2487-_png_jpg.rf.73586b5990259d22d89bc923662d30b4.jpg", - "response": "A row of men wearing blue hard hats and carrying blue water containers on their heads.", - "id": 21705 - }, - { - "image_path": "G:\\images\\combined\\-2488-_png_jpg.rf.dcf5b9ea71db115df96bc15b4f16a5de.jpg", - "response": "A group of three people in hard hats and safety vests are working on a construction project. They are all wearing helmets and the room they are in is filled with debris and construction materials.", - "id": 21706 - }, - { - "image_path": "G:\\images\\combined\\-2489-_png_jpg.rf.497a141b9d871d647e7ad23f53aaef2f.jpg", - "response": "A group of linemen working on power lines", - "id": 21707 - }, - { - "image_path": "G:\\images\\combined\\-249-_png_jpg.rf.5105274817598d40e5fb98d5a9cb0838.jpg", - "response": "A group of three men working on a construction site.", - "id": 21708 - }, - { - "image_path": "G:\\images\\combined\\-2490-_png_jpg.rf.d07de43bfad8d736515a4db104759138.jpg", - "response": "a group of people working on a construction project", - "id": 21709 - }, - { - "image_path": "G:\\images\\combined\\-2492-_png_jpg.rf.91eb47b85ac7518ef427960eba4847ff.jpg", - "response": "A man in a yellow hat and protective gear is on a metal platform working on wires.", - "id": 21710 - }, - { - "image_path": "G:\\images\\combined\\-2493-_png_jpg.rf.12d64e7ab2958dae61dc135100ced38a.jpg", - "response": "A worker carries a bag of rice at the construction site of the National Grand Theater in Beijing, China. The theater, which is expected to be completed in 2011, will be the main venue for the Beijing International Music Festival.", - "id": 21711 - }, - { - "image_path": "G:\\images\\combined\\-2496-_png_jpg.rf.3c86d793c016dc3cb471eb7e5ab563cf.jpg", - "response": "A man is using a machine to cut through a concrete wall.", - "id": 21712 - }, - { - "image_path": "G:\\images\\combined\\-2499-_png_jpg.rf.efed64f563b5480cf0a07f26fdb7531d.jpg", - "response": "A man in a red hard hat looking at a large industrial machine.", - "id": 21713 - }, - { - "image_path": "G:\\images\\combined\\-25-_png_jpg.rf.2757c82c72ef5c721dc8cfe8ae25fb59.jpg", - "response": "A man in a brown shirt is standing next to a man in a black jacket and red hard hat. They are both looking up at a crane operating in the sky. There is a building under construction in the background.", - "id": 21714 - }, - { - "image_path": "G:\\images\\combined\\-2503-_png_jpg.rf.1c3a95e09ab4922edfb15fb521ef1129.jpg", - "response": "a group of men standing around each other", - "id": 21715 - }, - { - "image_path": "G:\\images\\combined\\-2504-_png_jpg.rf.a33fea6119241984144f0753b1057608.jpg", - "response": "A construction worker wearing a yellow hard hat and high visibility vest, places a block on a roof.", - "id": 21716 - }, - { - "image_path": "G:\\images\\combined\\-2506-_png_jpg.rf.f2ae4915910253eeab561edd8e28c7af.jpg", - "response": "The image shows a group of workers inside a building under construction. They are wearing hard hats and uniforms. There are several workers, each engaged in different tasks. One worker is welding a metal beam, while another worker is standing on a platform and holding a large metal pipe. A third worker is working on a metal structure above them. There are sparks flying from the welding and other workers are visible in the background. The building has a framework of metal beams and columns.", - "id": 21717 - }, - { - "image_path": "G:\\images\\combined\\-2507-_png_jpg.rf.04098b0318649e5273d29aac49a9b114.jpg", - "response": "A worker in a hard hat and blue coveralls is using a tool to inspect the inside of a large industrial oven. The oven has a door open and a bright yellow flame burning inside.", - "id": 21718 - }, - { - "image_path": "G:\\images\\combined\\-2509-_png_jpg.rf.ea11ed67b78cd0ed1c71eb2c52cdb05e.jpg", - "response": "A group of men standing around a construction site wearing hard hats.", - "id": 21719 - }, - { - "image_path": "G:\\images\\combined\\-2510-_png_jpg.rf.416d339eadde3b9857888a928b0feb53.jpg", - "response": "A group of men in hard hats standing around a construction site.", - "id": 21720 - }, - { - "image_path": "G:\\images\\combined\\-2511-_png_jpg.rf.9913754ea70642ff2dc4a533ea29fedc.jpg", - "response": "The image shows a group of emergency personnel, including firemen and doctors, carrying a person on a stretcher. The scene appears to be a construction site.", - "id": 21721 - }, - { - "image_path": "G:\\images\\combined\\-2512-_png_jpg.rf.673da0be0571cb06569871d2b76eb80f.jpg", - "response": "a group of men working on a construction site", - "id": 21722 - }, - { - "image_path": "G:\\images\\combined\\-2513-_png_jpg.rf.6d2f7d69ca8a4144db095d573db6156f.jpg", - "response": "The photo shows a large tunnel with a grey concret ceiling and walls. There are three workers in the tunnel. The worker on the left is holding a blue helmet and a yellow rope. The worker in the middle is holding a pink helmet and a white piece of paper. The worker on the right is holding a blue helmet. There are two red metal rails on both sides of the tunnel.", - "id": 21723 - }, - { - "image_path": "G:\\images\\combined\\-2516-_png_jpg.rf.bb939a9e7a5074dce2722bdd537d8d73.jpg", - "response": "The image shows a massive concrete structure in the process of being built. The structure is circular in shape and has a flat, wide base and a raised, circular wall that tapers to a smaller diameter near the top. The wall is smooth and grey in color. The structure is built over a large pit that is also grey in color. The pit is filled with a light brown material. In the background, there is a red crane operating near the top of the structure. The sky is light blue with clouds.", - "id": 21724 - }, - { - "image_path": "G:\\images\\combined\\-2517-_png_jpg.rf.c058f8eeeeb5e9ae85557a3888a97455.jpg", - "response": "A construction worker in a yellow hard hat is handing another construction worker a tool.", - "id": 21725 - }, - { - "image_path": "G:\\images\\combined\\-2518-_png_jpg.rf.68f78459146bd9cf5ec19cf34639c1d0.jpg", - "response": " Two men(247,163),(791,996) in suits(256,414),(792,997) and hard hats(406,163),(631,342) stand in front of a power plant.", - "id": 21726 - }, - { - "image_path": "G:\\images\\combined\\-252-_png_jpg.rf.9a31643fc9be5977191de33a78e24f1b.jpg", - "response": "A couple of men in uniforms climbing a telephone pole.", - "id": 21727 - }, - { - "image_path": "G:\\images\\combined\\-2520-_png_jpg.rf.8abfae9273c47b18209b49c3e4d1753f.jpg", - "response": "The photo shows a group of men, some wearing blue jeans, others in rubber boots and hats, carrying a injured man between them. They are walking across a field, with a building in the background. Some of the men are also carrying a bottle. The photo is accompanied by a caption in Chinese.", - "id": 21728 - }, - { - "image_path": "G:\\images\\combined\\-2521-_png_jpg.rf.2ec1a78467cdeeffdfda8ba53a349d80.jpg", - "response": "A group of people working in a cave.", - "id": 21729 - }, - { - "image_path": "G:\\images\\combined\\-2525-_png_jpg.rf.16b28ed8ba8a6c8f1472353fa7f908aa.jpg", - "response": "The image shows two men standing in a shipping yard. Both men are wearing hard hats. One man is wearing a black suit and a yellow hard hat, while the other man is wearing a black suit and a red hard hat. They are both dressed in business attire. In the background, there is a red truck carrying a shipping container. The sky is overcast.", - "id": 21730 - }, - { - "image_path": "G:\\images\\combined\\-2526-_png_jpg.rf.46931109680fc5c2d20f96975a66047d.jpg", - "response": "In the image there are three men working on a power line tower. They are all wearing blue and yellow safety gear including hard hats and safety vests. The two men at the bottom of the tower are wearing blue safety vests and the man at the top is wearing a yellow safety vest. The two men at the bottom of the tower are also wearing red hard hats. The tower is made of metal and has a ladder attached to it. The sky is blue with some clouds. In the image there is also a white bird flying to the right and some green smoke coming from the tower.", - "id": 21731 - }, - { - "image_path": "G:\\images\\combined\\-2527-_png_jpg.rf.6f245e9bcbff04b681a9774e5cb60035.jpg", - "response": " 6 miners(559,439),(698,796)(679,424),(875,801)(477,405),(592,693)(349,484),(487,755) trapped in China gold mine for a week", - "id": 21732 - }, - { - "image_path": "G:\\images\\combined\\-2528-_png_jpg.rf.28b06ed1cb5f06bb4cf138f8f6695eed.jpg", - "response": "A construction site with two workers visible. They are wearing hard hats and working on a construction project.", - "id": 21733 - }, - { - "image_path": "G:\\images\\combined\\-2529-_png_jpg.rf.b8a20b0a3a39d893ec053cc1dc778999.jpg", - "response": "A man in a red hard hat and yellow safety vest is working on pipes in a large room.", - "id": 21734 - }, - { - "image_path": "G:\\images\\combined\\-253-_png_jpg.rf.6dc84428dd5d45477d73c095f03f971c.jpg", - "response": "A worker in a hard hat and orange vest uses a drill to secure a metal beam to a concrete pillar.", - "id": 21735 - }, - { - "image_path": "G:\\images\\combined\\-2533-_png_jpg.rf.eb33f35ae2601d60a3f2378075f674e3.jpg", - "response": "A worker in a yellow hard hat and orange safety vest is using a machine to cut into a concrete wall. The worker is in a tunnel.", - "id": 21736 - }, - { - "image_path": "G:\\images\\combined\\-2534-_png_jpg.rf.6e947456f44ef8fe0eee01d98e692308.jpg", - "response": "Some people are working on a building that is still in construction. They are wearing hard hats and the building has not been completed.", - "id": 21737 - }, - { - "image_path": "G:\\images\\combined\\-2536-_png_jpg.rf.1bc0b757f5767170409e340ee0fa18e7.jpg", - "response": "In the image two men are working in a factory. They are both wearing black with blue helmets and are holding a large black barrel. The factory has a lot of pipes and large machines.", - "id": 21738 - }, - { - "image_path": "G:\\images\\combined\\-2537-_png_jpg.rf.b23366137d8865d0198e4b35ffa7d2bf.jpg", - "response": "A group of men working on a construction site.", - "id": 21739 - }, - { - "image_path": "G:\\images\\combined\\-2538-_png_jpg.rf.ff32ab07443418ddf5271d95a34b0086.jpg", - "response": "A construction site with two workers. One worker is wearing a yellow hard hat and a grey shirt, and is looking at the camera. The other worker is wearing a white shirt and is not visible in the image. There is a blue structure in the foreground, and a tower with a red and white top in the background. There are metal bars in the foreground, and a man is sitting on a metal bar.", - "id": 21740 - }, - { - "image_path": "G:\\images\\combined\\-2540-_png_jpg.rf.80b294ec29887ca63b7011534190f1d6.jpg", - "response": "In the image two workers are seen repairing an electricity cable. One of them is wearing yellow helmet and is seen hanging from the cable with his hands. Another worker is seen climbing up the electricity tower with the help of some metal grating. Both of them are wearing black uniforms.", - "id": 21741 - }, - { - "image_path": "G:\\images\\combined\\-2543-_png_jpg.rf.7cdd6dc9f08559d27befcb1042b7cf05.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and orange vests. The workers are positioned in such a way that they appear to be reflected in a puddle of water on the ground, creating an optical illusion. The workers are engaged in various tasks, such as working on pipes and walking across the site. Some of them are holding tools, such as a hammer and a screwdriver. The scene also includes a ladder and a traffic cone. The image is a creative depiction of the hard work and dedication of the construction workers.", - "id": 21742 - }, - { - "image_path": "G:\\images\\combined\\-2545-_png_jpg.rf.f3e1e66d7f45f1e37489b53942529d17.jpg", - "response": "A person wearing a hard hat and blue coveralls is using a piece of equipment to measure something. There is a large object on a trailer behind the person. To the left of the person is a white and red truck. There is a blue and green image of a machine on the left.", - "id": 21743 - }, - { - "image_path": "G:\\images\\combined\\-2548-_png_jpg.rf.afd0ff19f642cc511d3eb3e59a2157ae.jpg", - "response": "Some people are working on a building site. They are wearing hard hats and some are wearing masks. They are pouring concrete into place.", - "id": 21744 - }, - { - "image_path": "G:\\images\\combined\\-2549-_png_jpg.rf.83b02e832d30e6f52d363d7b273c5085.jpg", - "response": "A man in a wheelchair is being pushed by another man at a construction site.", - "id": 21745 - }, - { - "image_path": "G:\\images\\combined\\-2550-_png_jpg.rf.38d066747dd6d0a349a8f312ecabfc91.jpg", - "response": "A construction worker in a yellow hat and brown shirt is holding a white rag and looking down at it while two other workers are visible in the background. They are all working on a construction site with lots of steel bars and rebar visible. There is a building under construction in the background.", - "id": 21746 - }, - { - "image_path": "G:\\images\\combined\\-2552-_png_jpg.rf.2f47de9edec1faec12e146929dd133d9.jpg", - "response": "A group of men working on a power line in the snow.", - "id": 21747 - }, - { - "image_path": "G:\\images\\combined\\-2553-_png_jpg.rf.7854a808a13678b3a9ceb346f4213df8.jpg", - "response": "A group of men in blue overalls and hard hats are standing in a darkened room. They are looking at a meter on the wall. One of the men is on a phone.", - "id": 21748 - }, - { - "image_path": "G:\\images\\combined\\-2554-_png_jpg.rf.87bb110c675bce70e185c8e9f391edc4.jpg", - "response": "A worker is cutting a tree with a chainsaw near power lines. The tree is about half the size of the power lines. The sky is overcast and there are power lines running through the air.", - "id": 21749 - }, - { - "image_path": "G:\\images\\combined\\-2555-_png_jpg.rf.3fbe26f49521333351e0c1551e06ebb7.jpg", - "response": "A split image of a man in a hard hat working with a pick near a small stove with a red flame and a bin of coal. The man is smoking and there is text in red at the bottom that says \"\u5de5\u4f1a\u63f4\u9102\".", - "id": 21750 - }, - { - "image_path": "G:\\images\\combined\\-2556-_png_jpg.rf.130e89422684c0500d4cc8aa25c50724.jpg", - "response": "A group of three men looking at blueprints while wearing white and yellow hard hats.", - "id": 21751 - }, - { - "image_path": "G:\\images\\combined\\-2558-_png_jpg.rf.cf147bab29973d7cc9c16d5a6cb14dbe.jpg", - "response": "A group of men working on power lines.", - "id": 21752 - }, - { - "image_path": "G:\\images\\combined\\-2559-_png_jpg.rf.fd4c24452d1b9a0d52736768c627959b.jpg", - "response": "A large group of coal miners are gathered in a mine shaft. They are all wearing hard hats and some are holding lunch pails.", - "id": 21753 - }, - { - "image_path": "G:\\images\\combined\\-2560-_png_jpg.rf.6c73c74d2df860fc4bb701c22a4fcc74.jpg", - "response": "In the image there is a construction site with multiple buildings in the background. In the foreground, a construction worker is working on the site. He is wearing a yellow hard hat and has a yellow vest. He is standing amidst a network of steel rods and wires, which are being used to reinforce the structure of a building. The worker is holding a tool in his hand, although it is not clearly visible what the tool is. The scene is set during the day.", - "id": 21754 - }, - { - "image_path": "G:\\images\\combined\\-2561-_png_jpg.rf.cf0d6735ba5f2297b04ed838d9cc4d5a.jpg", - "response": "A group of people working on a bridge that is under construction.", - "id": 21755 - }, - { - "image_path": "G:\\images\\combined\\-2563-_png_jpg.rf.ea283c712e84a3d7dad1bb0b050cfa5a.jpg", - "response": "The image shows a large construction site with many workers working on a building project. The building is made of red concrete and is in various stages of construction. In the foreground, there are several workers wearing white and blue shirts and gray pants, working on the building. One worker is sitting on the building, which has red concrete floors, and is connecting wires. Another worker is standing on the right side of the building, wearing a white shirt and gray pants. In the background, there are many other workers scattered around the construction site. Some are standing on the building, and some are standing on the ground. Some are wearing yellow hats, and some are wearing white and blue shirts. The workers are working on different parts of the building. The building is surrounded by green mountains and white clouds in the distance.", - "id": 21756 - }, - { - "image_path": "G:\\images\\combined\\-2565-_png_jpg.rf.9d184c6c186606d21bfdaf5f14a05d46.jpg", - "response": "A construction worker is trapped in a hole at a construction site in Xiamen, Fujian Province, China. The worker was working on the construction of a bridge when the incident occurred. The worker was trapped in the hole for more than 12 hours before he was rescued by firefighters. The worker was taken to a hospital and is now in stable condition. The incident is currently under investigation.", - "id": 21757 - }, - { - "image_path": "G:\\images\\combined\\-2567-_png_jpg.rf.69d170dc857f1796b7bde7e26a5e601c.jpg", - "response": " Two men(268,311),(608,997)(131,350),(375,997) in safety gear(359,438),(606,999) looking at a clipboard(3,568),(363,748)", - "id": 21758 - }, - { - "image_path": "G:\\images\\combined\\-2569-_png_jpg.rf.fb11e97a87eb56fdcdd2f93a859f0cc2.jpg", - "response": "A man in a white hat and black jacket is pointing at a wall.", - "id": 21759 - }, - { - "image_path": "G:\\images\\combined\\-2573-_png_jpg.rf.b1cecd9351d6f33b4c50c37a219020c4.jpg", - "response": " Construction workers(239,115),(445,663) in China have made an incredible discovery after uncovering a 3,000-year-old fossilised dinosaur egg.", - "id": 21760 - }, - { - "image_path": "G:\\images\\combined\\-2575-_png_jpg.rf.55dd77f21cd975b21681ffd7e0b156a8.jpg", - "response": "A construction site with two men in hard hats looking over the site.", - "id": 21761 - }, - { - "image_path": "G:\\images\\combined\\-2577-_png_jpg.rf.789778712ea0c5f46f35ed2b564cbe15.jpg", - "response": " Two workers(183,183),(993,997) in grey jumpsuits(377,396),(929,999) and yellow hard hats(626,184),(885,396)(798,190),(997,458), one pointing at a red and white electrical box", - "id": 21762 - }, - { - "image_path": "G:\\images\\combined\\-2578-_png_jpg.rf.87b04158d77efc70a5f89ef97d28737e.jpg", - "response": "A group of people sitting around a table.", - "id": 21763 - }, - { - "image_path": "G:\\images\\combined\\-2580-_png_jpg.rf.f0ce6d3bf7c401282e75dae72fa9b793.jpg", - "response": "A man and a woman wearing hard hats and working on a construction site.", - "id": 21764 - }, - { - "image_path": "G:\\images\\combined\\-2581-_png_jpg.rf.327eedc3c36bc1ccfdfa94ae0ca07bc2.jpg", - "response": "A group of men standing around a construction site", - "id": 21765 - }, - { - "image_path": "G:\\images\\combined\\-2584-_png_jpg.rf.d1da8bcb4fe797a2d6c5d3824e3f31a7.jpg", - "response": "A man in a black shirt and pants is pointing to something in the distance. He is standing in front of a crowd of people who are also looking in the same direction. They are all standing on a dirt field with a sky background.", - "id": 21766 - }, - { - "image_path": "G:\\images\\combined\\-2585-_png_jpg.rf.50443a9a5407dbb0f01e324243bbebf5.jpg", - "response": "A picture of workers fixing a power line with one worker on a ladder and another worker on the ground. They are wearing blue uniforms and blue hats. The background is a building with a banner that says '\u4e1c\u65b9\u4eca\u62a5' in the middle. There is also a banner with a foreign language on it.", - "id": 21767 - }, - { - "image_path": "G:\\images\\combined\\-2586-_png_jpg.rf.84102368191aba198486a3a16de18004.jpg", - "response": "A construction site with two men working on a brick wall.", - "id": 21768 - }, - { - "image_path": "G:\\images\\combined\\-2587-_png_jpg.rf.b26f0ad3d4d2bdafec56704b0aaef632.jpg", - "response": "A group of rescue workers in red uniforms walking on a bridge.", - "id": 21769 - }, - { - "image_path": "G:\\images\\combined\\-2589-_png_jpg.rf.7dae790ff2cf7ac8ebb6e36ff745dcc5.jpg", - "response": "A group of workers in a factory.", - "id": 21770 - }, - { - "image_path": "G:\\images\\combined\\-259-_png_jpg.rf.5123051d7c5da1fcb573bd4d7281c905.jpg", - "response": "In the image, there is a man in a black jacket and gray pants, wearing a yellow helmet and white boots, sitting on a power pole, fixing wires. The sky is gray and overcast.", - "id": 21771 - }, - { - "image_path": "G:\\images\\combined\\-2590-_png_jpg.rf.fcb629aad704adf8e221b95530dc9001.jpg", - "response": "A group of men working on a road.", - "id": 21772 - }, - { - "image_path": "G:\\images\\combined\\-2592-_png_jpg.rf.8a9babf320b96f5c3471b84d422c7aeb.jpg", - "response": "A line of several individuals, some wearing hard hats, stand on a balcony overlooking a construction site. In the background, there are several tall buildings under construction.", - "id": 21773 - }, - { - "image_path": "G:\\images\\combined\\-2593-_png_jpg.rf.fbd37ddaa603c9dc276e658e200db87f.jpg", - "response": "A large water hose is being used to clean a city street.", - "id": 21774 - }, - { - "image_path": "G:\\images\\combined\\-2596-_png_jpg.rf.60e4dee4bc37b4efde7d9c8d4688e2c4.jpg", - "response": "A construction site with iron rods and concrete with a group of men working on it.", - "id": 21775 - }, - { - "image_path": "G:\\images\\combined\\-2597-_png_jpg.rf.f0ad2ddd5b556c54ee319a45e174802f.jpg", - "response": "A man is suspended above a forest in a safety harness, high above the ground. He is attached to a wire.", - "id": 21776 - }, - { - "image_path": "G:\\images\\combined\\-2599-_png_jpg.rf.deb44385ef9404b8ec86a7631b0bcc7c.jpg", - "response": "A construction worker in a yellow hard hat and work clothes crouches on a roof. He is working on a large black piece of material. In the background, there are several buildings under construction. There are also several yellow construction cranes in the sky.", - "id": 21777 - }, - { - "image_path": "G:\\images\\combined\\-2602-_png_jpg.rf.983ecdef9cb83ce87cc0bf8ac12f2cc4.jpg", - "response": "The image shows a transmission tower standing on a lush green hillside. The tower is made of silver metal and has a triangular shape. There are two workers on the tower, one on the left and one on the right. They are both wearing yellow hard hats and blue work clothes with white accents. The sky above them is a mix of light blue and white clouds. In the foreground, there is a reflection of the tower and the surrounding landscape.", - "id": 21778 - }, - { - "image_path": "G:\\images\\combined\\-2603-_png_jpg.rf.33bb79794fbcc61b84e5fa561299da99.jpg", - "response": "A couple of men are working on an electrical tower.", - "id": 21779 - }, - { - "image_path": "G:\\images\\combined\\-2607-_png_jpg.rf.aacea02bdaacd5e10cfa23bef97c8f72.jpg", - "response": "In the image there is a group of men standing next to a large metal structure that resembles a web of interconnected pipes. The men are dressed in black and are wearing hard hats and have their hair covered. They are standing on a snowy surface.", - "id": 21780 - }, - { - "image_path": "G:\\images\\combined\\-2611-_png_jpg.rf.fcb01ad8ba6846eb988ee6234d2a11e5.jpg", - "response": " Men(197,273),(735,997)(656,516),(947,997) in blue uniforms are holding up a rope", - "id": 21781 - }, - { - "image_path": "G:\\images\\combined\\-2613-_png_jpg.rf.65e9bda7a5621cfcbe78be8d404cad6c.jpg", - "response": "A man standing on the side of the road with a red and black boxy machine.", - "id": 21782 - }, - { - "image_path": "G:\\images\\combined\\-2617-_png_jpg.rf.e59460eb06065c9cd60a7d08f48e4ca2.jpg", - "response": "A group of men working on power lines against a blue sky with clouds.", - "id": 21783 - }, - { - "image_path": "G:\\images\\combined\\-2618-_png_jpg.rf.97d85c811e483685b59eac346664ff96.jpg", - "response": "In the image there are two construction workers. One of them is wearing an orange helmet and is in the process of using a tool on a large pipe. Another worker is in the background, wearing a yellow helmet and holding a tool. They are both wearing orange work suits. In the background there is a large blue and white sign.", - "id": 21784 - }, - { - "image_path": "G:\\images\\combined\\-2619-_png_jpg.rf.8e4c8d5b03512aca8de3552acf121ddb.jpg", - "response": "Three men in hard hats and yellow vests standing on a construction site.", - "id": 21785 - }, - { - "image_path": "G:\\images\\combined\\-2621-_png_jpg.rf.a9ad447dd82a5b4eaee3da5c23e21d39.jpg", - "response": "Two railway workers in high visibility vests are talking next to the train tracks. They are standing on a gravel road next to the railroad tracks. The man on the left is pointing to the right and they both have tools in their hands. There is a building in the background.", - "id": 21786 - }, - { - "image_path": "G:\\images\\combined\\-2622-_png_jpg.rf.647116e4bd8d8b5ffaf90b6eda60562d.jpg", - "response": "A man in a camo jacket and a hard hat is smiling while standing in front of a large piece of machinery. He is wearing a navy blue t-shirt and has a beard. He is also wearing a glove on his right hand and is holding his hand up to his forehead. There are several cranes in the background, with the middle one being the largest. The sky is a clear blue color.", - "id": 21787 - }, - { - "image_path": "G:\\images\\combined\\-2623-_png_jpg.rf.3bc4ed878df87f718dd4bd64ba5e4768.jpg", - "response": "In the image there are two people standing in front of a large white dome. They are both wearing yellow high vis vests and orange helmets. The person on the left is holding a grey tablet and the person on the right is looking at the tablet. They both seem to be discussing something. In the background, there is a grey sky and a large structure with grey pipes and white domes.", - "id": 21788 - }, - { - "image_path": "G:\\images\\combined\\-2625-_png_jpg.rf.540a769311bfb1df1ca254158caff698.jpg", - "response": "In the image there is a person wearing a blue uniform and a yellow hard hat standing on a metal platform in a large factory. The factory is filled with metal machinery and large steel beams. There is a long red hot steel bar being poured from a machine with two workers standing nearby. There is also a large metal cylinder with a red light on top. The wall has a sign that says 'caution'.", - "id": 21789 - }, - { - "image_path": "G:\\images\\combined\\-2627-_png_jpg.rf.eac498f2477afc77864eb1ad9a842461.jpg", - "response": "A man in a orange hard hat is standing in front of a pile of rocks. He is next to a river and a guard rail. He is holding a red flag. There is a orange truck behind him.", - "id": 21790 - }, - { - "image_path": "G:\\images\\combined\\-2629-_png_jpg.rf.847dd08a6fca02bb0992c8386e653758.jpg", - "response": "A group of people standing in front of a car.", - "id": 21791 - }, - { - "image_path": "G:\\images\\combined\\-263-_png_jpg.rf.f43d9faab01596c05da78e3b6abb7d5c.jpg", - "response": "A group of three construction workers are working on a building site. They are all wearing hard hats and two of them are wearing grey tops and one is wearing a red one. They are all working on a large concrete pillar holding large wooden poles and\u94a2\u7b4b.", - "id": 21792 - }, - { - "image_path": "G:\\images\\combined\\-2630-_png_jpg.rf.c1cc6fa0f2f3466aff16e3285a7cfb35.jpg", - "response": "A collage of two photos, one of a man wearing a hard hat and the other of a man looking up.", - "id": 21793 - }, - { - "image_path": "G:\\images\\combined\\-2631-_png_jpg.rf.9066746274bb97cb853f77b14c09ea19.jpg", - "response": "A man in a blue shirt and helmet is on a wire.", - "id": 21794 - }, - { - "image_path": "G:\\images\\combined\\-2632-_png_jpg.rf.520e782b462fef6fba2932bc2cdf04b0.jpg", - "response": "A group of men standing on and around a large yellow crane.", - "id": 21795 - }, - { - "image_path": "G:\\images\\combined\\-2633-_png_jpg.rf.fa584039df07a52cbf10e23a476dbee2.jpg", - "response": "An electrician in a blue jumpsuit repairs a power line.", - "id": 21796 - }, - { - "image_path": "G:\\images\\combined\\-2634-_png_jpg.rf.5c78454269ee53844a7b4fde8a629b32.jpg", - "response": "The image shows a construction site with many workers in white uniforms and blue hats. They are working on a street corner, digging up the road and installing power lines. The street is busy with cars and a bus driving on it. There are also many pedestrians on the sidewalk. In the background, there is a billboard with a woman on it.", - "id": 21797 - }, - { - "image_path": "G:\\images\\combined\\-2635-_png_jpg.rf.d2815b78ed8773e191597e56790b5b61.jpg", - "response": "A man working at a construction site.", - "id": 21798 - }, - { - "image_path": "G:\\images\\combined\\-2636-_png_jpg.rf.da31288f1d54d9a712246210bf0e8cad.jpg", - "response": "A group of workers in green uniforms and yellow hard hats are huddled together, holding a thick rope. They are all wearing blue gloves and some are wearing red scarfs. The ground they are standing on is grey and rocky, and there are some yellow ropes scattered around. In the top left corner, there is a red and white striped flag.", - "id": 21799 - }, - { - "image_path": "G:\\images\\combined\\-2638-_png_jpg.rf.47a82961e80280f5ec53a5b6094f267d.jpg", - "response": "A group of men in white and green uniforms, some wearing hard hats, are in a wooded area. They are holding a tree branch and a rope. There is a red circle around the center of the photo with the words \"\u53a6\u95e8\u7f51\" in it. There is a red box around the bottom of the photo with the words \"\u53a6\u95e8\u7f51\" in white inside it. There is a red box around the top of the photo with the words \"\u53a6\u95e8\u7f51\" in white inside it.", - "id": 21800 - }, - { - "image_path": "G:\\images\\combined\\-2639-_png_jpg.rf.84c805008430bc686c6799ab56f11967.jpg", - "response": "A collage of workers welding and installing rebar for a bridge construction project.", - "id": 21801 - }, - { - "image_path": "G:\\images\\combined\\-264-_png_jpg.rf.060df75dae3c1b5532e9fee1866ae2c6.jpg", - "response": "A couple of men in blue hard hats looking at a switch board.", - "id": 21802 - }, - { - "image_path": "G:\\images\\combined\\-2640-_png_jpg.rf.09f1a887b91b77b246691968f949ac7e.jpg", - "response": "A couple of men in hard hats and orange vests standing in front of a large stack of cargo containers.", - "id": 21803 - }, - { - "image_path": "G:\\images\\combined\\-2644-_png_jpg.rf.b18b82bd0e84f716d55f10021c52db90.jpg", - "response": "A construction worker is on a lift and is using a tool to measure something.", - "id": 21804 - }, - { - "image_path": "G:\\images\\combined\\-2646-_png_jpg.rf.c8e9237e4a2ce6b10a7d688984535b41.jpg", - "response": "A construction worker in a blue uniform and orange hat is working on a step.", - "id": 21805 - }, - { - "image_path": "G:\\images\\combined\\-2647-_png_jpg.rf.696afb07f6306ae50f936e2fa51b7c71.jpg", - "response": "The image shows two workers in yellow hardhats and orange safety vests, one on the left and one on the right, working on a piece of construction equipment that looks like a giant, dirty caterpillar tractor with two huge, round, dirty gears in the foreground and a red crane in the background.", - "id": 21806 - }, - { - "image_path": "G:\\images\\combined\\-265-_png_jpg.rf.3ba76f0f53cd49efe24c662101eb4621.jpg", - "response": "A group of people standing on a dirt road", - "id": 21807 - }, - { - "image_path": "G:\\images\\combined\\-2650-_png_jpg.rf.a112213f00b7d1a23d8834e4036a47ec.jpg", - "response": "a group of people standing in front of a bus", - "id": 21808 - }, - { - "image_path": "G:\\images\\combined\\-2651-_png_jpg.rf.351b8999cb1c7f07c94865ec8c905e48.jpg", - "response": "The image shows a group of workers wearing orange construction vests and hard hats, working on a construction site. They are building a structure with blue sky and sunlight in the background. There is a steel bar structure in the foreground with a logo of \"CREC\" on the right side.", - "id": 21809 - }, - { - "image_path": "G:\\images\\combined\\-2655-_png_jpg.rf.2de48e6e7b85bdd1dfde8f2427f58466.jpg", - "response": "The picture shows some miners working in a mine. There are four miners in the picture, all of them dressed in orange safety suits and yellow helmets. They are working in a mine, one of them is holding a large tool, and there are some other tools around. The background is dark, with some details of the mine's structure exposed. There is a red Chinese flag in the upper left corner of the picture.", - "id": 21810 - }, - { - "image_path": "G:\\images\\combined\\-2656-_png_jpg.rf.b73227d3f93640309655efb8eb79cbd9.jpg", - "response": "A group of people working on a large cement area.", - "id": 21811 - }, - { - "image_path": "G:\\images\\combined\\-266-_png_jpg.rf.1fa39255e6de8e540684ef195be540b1.jpg", - "response": "A man wearing a white hard hat standing in the middle of a large tunnel.", - "id": 21812 - }, - { - "image_path": "G:\\images\\combined\\-2662-_png_jpg.rf.a1f1a84827f75ac0a3389fcb2ecc66d9.jpg", - "response": "A man(436,308),(878,997) is being rescued from a building", - "id": 21813 - }, - { - "image_path": "G:\\images\\combined\\-2663-_png_jpg.rf.e2b09bf730bb38c94502de61d4d8bb76.jpg", - "response": "In the image there are three workers in red coveralls and red helmets. They are working on a yellow machine with a lot of pipes and hoses. They are in a muddy field with a truck in the background. There is a white truck with a red bed and a red oil drum on it. There is also a red oil drum on the ground.", - "id": 21814 - }, - { - "image_path": "G:\\images\\combined\\-2665-_png_jpg.rf.edac66fa3d2a98f456a1f6828bda5be4.jpg", - "response": "A group of men are working on a road.", - "id": 21815 - }, - { - "image_path": "G:\\images\\combined\\-2666-_png_jpg.rf.8d89ffdf5b5faab8b5ee8358f9db0282.jpg", - "response": "A worker is seen on a power box. He is wearing a blue shirt and grey pants. He is also wearing a white helmet. He is standing on a ladder. He is working on a power box. The power box is white and grey. It is located in the forest.", - "id": 21816 - }, - { - "image_path": "G:\\images\\combined\\-2667-_png_jpg.rf.567a252c0a9b68f3130dc2db7d9c1e82.jpg", - "response": "a group of men standing on a street corner", - "id": 21817 - }, - { - "image_path": "G:\\images\\combined\\-2668-_png_jpg.rf.f1ce585e8ffc7c8a13d493cde1813f10.jpg", - "response": "The image shows two workers in a factory. One is on the left, dressed in light blue coveralls, and the other is on the right, dressed in black coveralls. They are standing in front of a large metal door, which has a sign above it that reads \"Safety Door\". The workers are engaged in some activity, but the specific nature of their work is not clear from the image.", - "id": 21818 - }, - { - "image_path": "G:\\images\\combined\\-2669-_png_jpg.rf.5e53961af0114c0b55d1d1cd8950dabd.jpg", - "response": "A man wearing a yellow and green jacket and a orange hard hat.", - "id": 21819 - }, - { - "image_path": "G:\\images\\combined\\-267-_png_jpg.rf.4868b2532b7bce4d735f74756f6a8837.jpg", - "response": "A man wearing a yellow hard hat is welding on the side of a blue boat. The boat is moored in a marina with other boats visible in the background. There is a white boat with red trim further to the left and a large blue building with a red roof is in the background on the right. There is a net with blue and red stripes on the left side of the boat the man is working on.", - "id": 21820 - }, - { - "image_path": "G:\\images\\combined\\-2670-_png_jpg.rf.29101b805a90a47a0c1694817f930954.jpg", - "response": "A construction worker in a yellow hard hat is using a tool to secure a metal beam to a concrete wall. The worker is wearing a grey shirt and blue jeans. There is a yellow pipe to the left of the worker. The concrete wall that the worker is working on has multiple metal brackets attached to it. There is a ladder against the wall and a bucket on the ground. The image is taken at a construction site.", - "id": 21821 - }, - { - "image_path": "G:\\images\\combined\\-2671-_png_jpg.rf.8c1d4873dfaf6cf6aeb8d7afc558ae42.jpg", - "response": "A group of men working on a large piece of machinery.", - "id": 21822 - }, - { - "image_path": "G:\\images\\combined\\-2672-_png_jpg.rf.8f87cdbbf49af4835930ccc8e262fa47.jpg", - "response": "A fireman is seen in the debris of a house that was destroyed by a fire in China.", - "id": 21823 - }, - { - "image_path": "G:\\images\\combined\\-2673-_png_jpg.rf.6afe6c93f474880c191f2abf0fbbdc4a.jpg", - "response": "In the image two men wearing orange protective clothing and white hard hats are working on machinery. They are squatting down and looking at machinery which is covered in black dirt. In the background there is a large yellow piece of machinery and a black container. The sky is grey and the sun is not out.", - "id": 21824 - }, - { - "image_path": "G:\\images\\combined\\-2676-_png_jpg.rf.93cb35ca296a11b81de2ee5488d707ff.jpg", - "response": "A group of construction workers stand in front of a large cave entrance that has scaffolding around it.", - "id": 21825 - }, - { - "image_path": "G:\\images\\combined\\-2678-_png_jpg.rf.2c604a5c62465b4910fd8eecc4a46c12.jpg", - "response": "a group of men standing around each other", - "id": 21826 - }, - { - "image_path": "G:\\images\\combined\\-2679-_png_jpg.rf.bc75c8901458fae66207fcd078324680.jpg", - "response": "A group of four men are standing in front of a building under construction. They are all wearing hard hats. One man is wearing a blue jacket and a yellow hard hat, the second man is wearing a brown jacket and a black hard hat, the third man is wearing a tan jacket and a black helmet with a visor, and the fourth man is wearing a brown jacket and a white helmet. They all have their arms crossed.", - "id": 21827 - }, - { - "image_path": "G:\\images\\combined\\-2681-_png_jpg.rf.9a13c8f64d37b6532d8d1f61e063c452.jpg", - "response": "A group of men working on a power line.", - "id": 21828 - }, - { - "image_path": "G:\\images\\combined\\-2684-_png_jpg.rf.0d27e60db2a4c45c8cbe3c8686b5cc73.jpg", - "response": "In the image there is a group of people working on a construction site wearing hard hats. They are standing on a metal grid which is part of the foundation for a building. The metal grid is connected to a yellow platform and some of the people are wearing yellow hard hats. The people are working on the construction site which is located in a desert area.", - "id": 21829 - }, - { - "image_path": "G:\\images\\combined\\-2687-_png_jpg.rf.745e0a22089ba454079b3e8de0734299.jpg", - "response": "A man in a white hard hat and orange safety vest is measuring something with a yellow measuring tape while another man in a similar outfit looks on. They are both standing on a wooden structure while the man on the right also holds a plan in his hand. They appear to be construction workers.", - "id": 21830 - }, - { - "image_path": "G:\\images\\combined\\-2689-_png_jpg.rf.191421deed47f0c164546667d4dc12bb.jpg", - "response": "The image features two men in blue work clothes and hard hats, climbing a brown telephone pole. They are wearing harnesses and are in the process of climbing the tall pole. The background shows a small town or city with tall buildings and a bridge. There are also green hills visible in the distance.", - "id": 21831 - }, - { - "image_path": "G:\\images\\combined\\-269-_png_jpg.rf.5b6326373583d902feee019e8ec9f366.jpg", - "response": "A large body of water with a lot of construction happening on the other side.", - "id": 21832 - }, - { - "image_path": "G:\\images\\combined\\-2690-_png_jpg.rf.4cdffd3a8135b6a2e762239cf14bc76b.jpg", - "response": "A Kobelco excavator is shown here, with a banner above it that reads 'Hurry up construction, Rush to complete the great wall of China'. The excavator is situated in front of a large tunnel entrance. There are several workers in orange vests standing in front of the tunnel. The background shows a forest.", - "id": 21833 - }, - { - "image_path": "G:\\images\\combined\\-2691-_png_jpg.rf.deb52ff54763071852ffb9a37ad8b71c.jpg", - "response": "A man in a construction area using a fire extinguisher.", - "id": 21834 - }, - { - "image_path": "G:\\images\\combined\\-2692-_png_jpg.rf.a3f137c2163a6dc933a83293c01faaec.jpg", - "response": "The image shows a group of four men dressed in white shirts and blue caps with yellow symbols on them, sitting on a large green bush. They are all smiling at the camera. In the background, there are a few trees with no leaves and a blue sky.", - "id": 21835 - }, - { - "image_path": "G:\\images\\combined\\-2694-_png_jpg.rf.c97b6f5a167a02eea7d225ef6af077fd.jpg", - "response": "Some workers are on a building site wearing safety gear.", - "id": 21836 - }, - { - "image_path": "G:\\images\\combined\\-2696-_png_jpg.rf.45cae028f2cc0164cd9c93bdd5cf2f73.jpg", - "response": "a group of men standing around a piece of metal", - "id": 21837 - }, - { - "image_path": "G:\\images\\combined\\-2697-_png_jpg.rf.bdd78ff6dcb6c07e09ce33a8f0e12aa7.jpg", - "response": "The image shows a group of rescue workers in orange uniforms working together to lift and move a man who is covered in debris and is lying on the ground. The man is surrounded by rescue workers who are holding him in place. Some of the workers are wearing helmets and there are a few pairs of shoes in the scene. The setting appears to be a construction site or a location where a cave-in has occurred.", - "id": 21838 - }, - { - "image_path": "G:\\images\\combined\\-2698-_png_jpg.rf.8686b39009aeefc3d1575fae96fbf8f1.jpg", - "response": "A group of workers are working on a building project.", - "id": 21839 - }, - { - "image_path": "G:\\images\\combined\\-2699-_png_jpg.rf.c6a557fe0fe45e209e3305d450af7cac.jpg", - "response": "Three people(221,335),(677,986)(656,372),(997,999)(474,255),(860,665) wearing hard hats(656,371),(870,536)(446,364),(608,538)(638,255),(829,367) and looking at a blueprint.", - "id": 21840 - }, - { - "image_path": "G:\\images\\combined\\-27-_png_jpg.rf.b70dd8e50561b8028911c0bbc4f28119.jpg", - "response": "A construction site with multiple cranes and workers.", - "id": 21841 - }, - { - "image_path": "G:\\images\\combined\\-270-_png_jpg.rf.2b54404a716decdf790cfcaeb320e03f.jpg", - "response": "Men walking on a shipyard with a large ship part in the background.", - "id": 21842 - }, - { - "image_path": "G:\\images\\combined\\-2700-_png_jpg.rf.e07c4a8ab371f43f4bee800510cf837a.jpg", - "response": "A group of people working on a bridge that is under construction. They are wearing hard hats and are standing on the bridge, which has a steel framework. There is smoke coming from the bridge and some of the workers are welding steel.", - "id": 21843 - }, - { - "image_path": "G:\\images\\combined\\-2701-_png_jpg.rf.bf2f9ff418b7cd76194ed26495832e98.jpg", - "response": "The image shows a group of construction workers in blue uniforms working on a construction site. They are standing on a metal grid and are focused on a task. Some of them are holding tools. In the background, there is a red tower crane operating in the area. The sky is blue and clear.", - "id": 21844 - }, - { - "image_path": "G:\\images\\combined\\-2702-_png_jpg.rf.89ef6a97fa1ae380598fd623e45336a7.jpg", - "response": "A group of men standing around each other.", - "id": 21845 - }, - { - "image_path": "G:\\images\\combined\\-2704-_png_jpg.rf.35cdedfcc88a3cc267b8c87afdbf861b.jpg", - "response": "A building under construction with a few workers on a platform.", - "id": 21846 - }, - { - "image_path": "G:\\images\\combined\\-2705-_png_jpg.rf.5a2e040d51c257eafe479382ecf58e23.jpg", - "response": "The photo shows two workers in blue uniforms and blue hats squatting down and working on an electrical component. They are accompanied by a third person, also in a blue hat, who is not in the frame but is visible in the background. The two workers are in the foreground and are focused on the task at hand. The third person is in the background and is not looking at the camera. The sky is blue and clear in the background.", - "id": 21847 - }, - { - "image_path": "G:\\images\\combined\\-2706-_png_jpg.rf.b58c78cab9e0340c2ea21b789baba54e.jpg", - "response": "In the image there are three people wearing hard hats. They are standing behind a wall that has a metal grating on it. The wall is made of concrete and has three white circles on it. The people are wearing different colored hard hats. One is blue, one is white and one is yellow. There is also a person wearing a blue hard hat that is not visible in the picture.", - "id": 21848 - }, - { - "image_path": "G:\\images\\combined\\-2708-_png_jpg.rf.727429af384465b84305853425340a2a.jpg", - "response": "A group of people standing around a construction site.", - "id": 21849 - }, - { - "image_path": "G:\\images\\combined\\-2709-_png_jpg.rf.40bbad2e7363d36e84445d62176df00d.jpg", - "response": "The image shows three construction workers setting up a piece of wood on a building site. They are all wearing safety gear including hard hats and high visibility vests. The ground is concrete and there are orange ropes and a red light on the ground. In the background, there is a mountain and a red flag.", - "id": 21850 - }, - { - "image_path": "G:\\images\\combined\\-2710-_png_jpg.rf.45073ebd15751c1cc877e943eaa05f18.jpg", - "response": "A construction worker using a jackhammer on a cement slab.", - "id": 21851 - }, - { - "image_path": "G:\\images\\combined\\-2711-_png_jpg.rf.b97ded26c79a860acb6a579e7ecd4668.jpg", - "response": " Construction workers(181,354),(430,998)(422,358),(546,659)(522,337),(600,576)(350,329),(449,678) inside a large pipe", - "id": 21852 - }, - { - "image_path": "G:\\images\\combined\\-2713-_png_jpg.rf.0d072e9deffd437c598cd6fa5f4a7727.jpg", - "response": "The image(5,6),(994,993) shows a flooded area.", - "id": 21853 - }, - { - "image_path": "G:\\images\\combined\\-2714-_png_jpg.rf.69e186a0a9202a7aa7e1299903e51ec9.jpg", - "response": "A group of people walking across a bridge.", - "id": 21854 - }, - { - "image_path": "G:\\images\\combined\\-2716-_png_jpg.rf.8b83af91c9b63981b37fe4ecd7f4ff97.jpg", - "response": "A group of people working on a construction site.", - "id": 21855 - }, - { - "image_path": "G:\\images\\combined\\-2717-_png_jpg.rf.d8f84fa811819ab8789b63af4c7637bf.jpg", - "response": "A construction site with a building under construction and a male construction worker wearing a red helmet and a black jacket with a yellow logo on the back. There are also two other workers in the picture.", - "id": 21856 - }, - { - "image_path": "G:\\images\\combined\\-2719-_png_jpg.rf.3682cd72e9cc8f92871ec61e76b8486f.jpg", - "response": "A man in a black shirt and white gloves is breaking up bricks with a tool. Another man in a grey shirt and red hat is shoveling bricks. They are both wearing yellow hard hats. In the background, there are two other people, one on the left and one on the right, and a child in the very back. The sky is white and there are no clouds.", - "id": 21857 - }, - { - "image_path": "G:\\images\\combined\\-272-_png_jpg.rf.f1fbcb861217d4f4d37ed2b9063da830.jpg", - "response": "A woman in a hard hat stands on a construction site, with a roof of wood beams in the background.", - "id": 21858 - }, - { - "image_path": "G:\\images\\combined\\-2720-_png_jpg.rf.fafc09f574d72611ac3cb186e55f4949.jpg", - "response": "A man and a woman wearing hard hats and safety gear.", - "id": 21859 - }, - { - "image_path": "G:\\images\\combined\\-2722-_png_jpg.rf.0ea3c444d52aa1f0a76d56043e4ff5f8.jpg", - "response": "A group of construction workers are working on a hole in the road. They are wearing orange vests and yellow hard hats. In the background, there are a few cars and a motorcycle.", - "id": 21860 - }, - { - "image_path": "G:\\images\\combined\\-2724-_png_jpg.rf.3b08a0b7473924f13e310ca2f39f759c.jpg", - "response": "a group of men walking in front of a building under construction", - "id": 21861 - }, - { - "image_path": "G:\\images\\combined\\-2725-_png_jpg.rf.2cd97e1c28adb1a4bfb87de10c5e8ea1.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing hard hats and several of them are wearing red hard hats. They are working on a large pipe that is either being lowered into place or already in place. They are working on a large foundation or concrete pour with rebar visible in the foreground. The sky is grey and overcast.", - "id": 21862 - }, - { - "image_path": "G:\\images\\combined\\-2726-_png_jpg.rf.541ef6c71f00a07149f43cc86f3a3fcc.jpg", - "response": "A group of men in hard hats and black uniforms are working in a snowy forest. They are cutting down trees and working on a project.", - "id": 21863 - }, - { - "image_path": "G:\\images\\combined\\-2727-_png_jpg.rf.ca0939b9a214b501ef0397ff4f8ba9be.jpg", - "response": "A couple of men working on a construction site with a shovel and an excavator in the background.", - "id": 21864 - }, - { - "image_path": "G:\\images\\combined\\-2728-_png_jpg.rf.fd3207cfc923acad4274605340429c10.jpg", - "response": "The image shows a group of people standing on a construction site. There are several men wearing white t-shirts and grey pants, one of them is wearing a red hard hat. Another man is wearing a white shirt and grey pants, he is holding a small plane in his hand. The plane is white with a black cross on it. There is also a red and white tower in the image. The people are standing on a patch of dirt with some rocks scattered around. The sky is overcast.", - "id": 21865 - }, - { - "image_path": "G:\\images\\combined\\-2729-_png_jpg.rf.4183097f64d371571bb409afc34aeda7.jpg", - "response": "A man in a red jacket is on a lift working on power lines.", - "id": 21866 - }, - { - "image_path": "G:\\images\\combined\\-273-_png_jpg.rf.9cc5954fce6590482dc00f63784a69f6.jpg", - "response": "A group of people working on a construction site.", - "id": 21867 - }, - { - "image_path": "G:\\images\\combined\\-2731-_png_jpg.rf.81cf230252e4e4494a4d999a824214f2.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 21868 - }, - { - "image_path": "G:\\images\\combined\\-2732-_png_jpg.rf.bc04f866129181c382994b5591bfe1bc.jpg", - "response": "A worker is seen in the foreground, standing on a pile of metal girders. In the background, there is a large bridge under construction. The sky is cloudy.", - "id": 21869 - }, - { - "image_path": "G:\\images\\combined\\-2733-_png_jpg.rf.c33ccf406aebe98d9532eae948e0b36d.jpg", - "response": "A group of people working on a building site, some of them are wearing hard hats and others are wearing suits. They are standing on a platform and looking at the structure of the building.", - "id": 21870 - }, - { - "image_path": "G:\\images\\combined\\-2736-_png_jpg.rf.8049436f00bf49e5119115b7fc9d94a1.jpg", - "response": "A train is traveling down the tracks in the distance. There are two workers in orange vests and hard hats standing on the tracks, one closer to the foreground and one further away. Another person is standing further down the tracks in the distance. There is a yellow machine sitting on the tracks to the right of the workers. The sky is blue with clouds.", - "id": 21871 - }, - { - "image_path": "G:\\images\\combined\\-2737-_png_jpg.rf.f3f559778fa9712d7340f040a0dc52e3.jpg", - "response": "A group of Chinese coal miners stand together in front of a large screen. They are all wearing hard hats and many are wearing work clothes. Some are smoking cigarettes.", - "id": 21872 - }, - { - "image_path": "G:\\images\\combined\\-2738-_png_jpg.rf.e6ee9ea572b2977a073327e5aa42e5e4.jpg", - "response": "A group of workers in blue uniforms and hard hats are sitting on a yellow truck. They are all holding water bottles and are smiling for the camera. In the background, there is a wall with a banner on it.", - "id": 21873 - }, - { - "image_path": "G:\\images\\combined\\-2739-_png_jpg.rf.6d150037bbcfdcb46c5ecf0603c4b7a2.jpg", - "response": "A man in a hard hat and orange jumpsuit works on a power line.", - "id": 21874 - }, - { - "image_path": "G:\\images\\combined\\-2742-_png_jpg.rf.106e561626179c38e29fa4bccb52a5ec.jpg", - "response": "In the image there is a construction worker wearing a grey outfit and a white helmet. The worker is in the process of pulling on a long rope which is tied to a metal bar on a yellow scaffolding. The background shows a cityscape with tall buildings. Another worker is visible in the image, he is wearing a blue shirt and a white helmet and is looking up at the construction worker.", - "id": 21875 - }, - { - "image_path": "G:\\images\\combined\\-2743-_png_jpg.rf.55a3e08e9e44238440ce2ce9c1fd0dde.jpg", - "response": "In the image there are three people working on fixing an electrical box on the roof of a building. The man in the front is holding a blue folder and a box cutter. The man in the middle is wearing a blue shirt and black pants. The man in the back is wearing a blue and white shirt and has a bag beside him. They are all wearing blue work uniforms.", - "id": 21876 - }, - { - "image_path": "G:\\images\\combined\\-2744-_png_jpg.rf.5f465061c4a16765268739fb19dffd16.jpg", - "response": "Some workers in red uniform standing in front of scaffolding and a large building under construction.", - "id": 21877 - }, - { - "image_path": "G:\\images\\combined\\-2746-_png_jpg.rf.451fbf9976abe3bea505551a7c8c8003.jpg", - "response": "Four construction workers standing in front of a stack of red storage containers.", - "id": 21878 - }, - { - "image_path": "G:\\images\\combined\\-2747-_png_jpg.rf.432662e093e8a0e2327580da0a2b8129.jpg", - "response": "a group of men standing in front of a mountain", - "id": 21879 - }, - { - "image_path": "G:\\images\\combined\\-2749-_png_jpg.rf.841df3290dc3b761a14e5b71067047db.jpg", - "response": "A construction worker is on a rooftop, wearing a yellow hard hat and using a red tool to cut through a red object. The worker is crouching down and the view looks as if the reader is looking up the worker's yellow hard hat. There is a yellow ladder in the background.", - "id": 21880 - }, - { - "image_path": "G:\\images\\combined\\-2751-_png_jpg.rf.4465beeb45d7f93bb4125ae312403dfc.jpg", - "response": "A collage of two images, one of a person wearing a gas mask and the other of a man sitting in a chair.", - "id": 21881 - }, - { - "image_path": "G:\\images\\combined\\-2752-_png_jpg.rf.72343c9c61ded4235287fa967b3a0f46.jpg", - "response": "In the image there are two workers wearing red helmets and black uniforms. They are using surveying equipment, which includes a total station and a theodolite, to survey a building site. The building site is under a large metal structure, which appears to be a roof. The workers are standing on the ground, looking through the theodolite.", - "id": 21882 - }, - { - "image_path": "G:\\images\\combined\\-2754-_png_jpg.rf.330932583ca43f95ed7aa68ffde1b613.jpg", - "response": "a group of people standing in front of a building", - "id": 21883 - }, - { - "image_path": "G:\\images\\combined\\-2757-_png_jpg.rf.2870b94e631de96162d0fc2f1fbf1814.jpg", - "response": "A man in a hard hat and work clothes is holding a large metal beam.", - "id": 21884 - }, - { - "image_path": "G:\\images\\combined\\-2758-_png_jpg.rf.012409100ec985ff354478ea770ab418.jpg", - "response": "The image shows two men standing in a large\u6d1e\u53e3. They are both wearing red hard hats and work clothes. The man on the left is holding a tool in his hand. They are both smiling at the camera. Below them, two pairs of feet can be seen wearing black shoes. On the right side of the image, there's a metal rail. And the background shows the wooden structure of the\u6d1e\u53e3.", - "id": 21885 - }, - { - "image_path": "G:\\images\\combined\\-276-_png_jpg.rf.1be445e6038795f19314f6f8e6354db3.jpg", - "response": "A worker is ascending a large metal pole using a ladder.", - "id": 21886 - }, - { - "image_path": "G:\\images\\combined\\-2760-_png_jpg.rf.dcf3204c6fe71d96acdff0ef37a4a8d6.jpg", - "response": "The photo shows a group of men walking together in a row. They are all wearing white shirts and some of them are wearing ties. Many of them are wearing red hats. In the background, there are some cranes and a blue sky.", - "id": 21887 - }, - { - "image_path": "G:\\images\\combined\\-2761-_png_jpg.rf.75f4303116815c8c588b3d99765a2b3a.jpg", - "response": "A group of people standing around a construction site.", - "id": 21888 - }, - { - "image_path": "G:\\images\\combined\\-2765-_png_jpg.rf.2c244d0416c6f12d952a06073626cbbf.jpg", - "response": "In the image there are two workers in red safety vests standing in an electrical enclosure. They are standing under an electrical tower with many wires and equipment. The electrical equipment includes a box with many wires and a box with the word China on it. The workers are also standing next to a concrete slab with the word China on it. The workers are wearing hard hats.", - "id": 21889 - }, - { - "image_path": "G:\\images\\combined\\-2766-_png_jpg.rf.1022a57df92673ead31ad58cdefe4f80.jpg", - "response": "In the image there is a group of men working at a construction site. They are wearing hard hats and work clothes. One man is wearing a yellow hard hat and is holding a large piece of equipment. Another man is wearing a blue hard hat and is standing behind him. They are all working together to move large pieces of equipment. In the background there is a pile of machinery parts and a truck.", - "id": 21890 - }, - { - "image_path": "G:\\images\\combined\\-2769-_png_jpg.rf.6a242acce0c59ca9773633e97e602abd.jpg", - "response": "A man(338,4),(883,650) is hanging from a pole in the water.", - "id": 21891 - }, - { - "image_path": "G:\\images\\combined\\-2770-_png_jpg.rf.9e907ae28f0344a46303e32b4569412d.jpg", - "response": "The image shows a group of workers in a forest. They are working on a construction site that has a large blue metal platform with yellow metal stairs. There are also large metal cables on the site. In the middle of the image, there is a large drill pipe that has a red valve on top. A large green drill pipe is also visible in the foreground. The workers are wearing safety gear, including hard hats and safety vests. Some of them are standing on the platform, while others are working on the drill pipe. The forest is visible in the background.", - "id": 21892 - }, - { - "image_path": "G:\\images\\combined\\-2771-_png_jpg.rf.778288ff4b5bf70e0a69fc446e1ba81b.jpg", - "response": "The image shows a group of men in front of a building site. They are all wearing hard hats and are walking single file towards the camera. The men are of varying heights and are spread out along the line. Some of them are wearing ties. In the background, a blue hoarding can be seen on the left side of the image. The letters on the hoarding are in English and Chinese. The word 'GROUP' is written in English. The word '\u4fdd\u9669' is written in Chinese. The word '\u5b89\u5168' is written in both English and Chinese. The word '\u5f90\u5efa' is written in Chinese. The word '\u6c5f\u4e2d' is written in Chinese. The word '\u5efa\u8bbe' is written in Chinese. The word '\u80a1\u4efd' is written in Chinese. The word '\u6709\u9650\u516c\u53f8' is written in Chinese. The word '\u96c6\u56e2' is written in Chinese. The word '\u5de5\u7a0b' is written in Chinese. The word '\u80a1\u4efd' is written in Chinese. The word '\u516c\u53f8' is written in Chinese. The word '\u5efa\u8bbe' is written in Chinese. The word '\u96c6\u56e2' is written in Chinese. The word '\u80a1\u4efd' is written in Chinese. The word '\u6709\u9650\u516c\u53f8' is written in Chinese. The word '\u96c6\u56e2' is written in Chinese. The word '\u5de5\u7a0b' is written in Chinese. The word '\u6709\u9650\u516c\u53f8' is written in Chinese.", - "id": 21893 - }, - { - "image_path": "G:\\images\\combined\\-2772-_png_jpg.rf.697dbbf24540490e41ee70575728c60b.jpg", - "response": "A building site with a large wooden structure in the process of being built. In front of the structure there is a notice board with a notice in Chinese.", - "id": 21894 - }, - { - "image_path": "G:\\images\\combined\\-2773-_png_jpg.rf.d97bd969dd599021e5ad272d83651d01.jpg", - "response": "A group of four people standing on a construction site.", - "id": 21895 - }, - { - "image_path": "G:\\images\\combined\\-2777-_png_jpg.rf.d2ef03b6af5890396f4c73cee8aafa52.jpg", - "response": "A man wearing a hard hat is on a platform working on a large metal structure. He is using a tool to cut through a metal pipe. There are sparks flying from the cut. He is wearing brown work clothes and a yellow hard hat. There is a large metal wheel next to him. He is working on a structure that looks like a giant machine.", - "id": 21896 - }, - { - "image_path": "G:\\images\\combined\\-2778-_png_jpg.rf.c8dd13a6573e2f01277d2cef14dac6cb.jpg", - "response": "A man wearing a yellow hard hat and a blue and white shirt is working with a wheel barrel of bricks.", - "id": 21897 - }, - { - "image_path": "G:\\images\\combined\\-2779-_png_jpg.rf.c169efcc544cf1cb93ab2ce9543c2e47.jpg", - "response": "A construction worker digging a hole with a shovel.", - "id": 21898 - }, - { - "image_path": "G:\\images\\combined\\-2780-_png_jpg.rf.0785927df415ffeb5cd2253319ea1315.jpg", - "response": "A group of people standing around talking to each other.", - "id": 21899 - }, - { - "image_path": "G:\\images\\combined\\-2782-_png_jpg.rf.5c4930e9699723fee5c1241c32938514.jpg", - "response": "A scene of a building under construction with two workers on scaffolding. The sky is blue with clouds.", - "id": 21900 - }, - { - "image_path": "G:\\images\\combined\\-2785-_png_jpg.rf.a58db1347dc31c8b5271b8cf35ff6231.jpg", - "response": "The picture shows a group of people standing together and talking. There are a total of five people, all wearing safety helmets. Among them, the man on the far left is wearing a red helmet and a black suit, and is talking to the man on the far right, who is also wearing a black suit but a blue helmet. The man in the middle is wearing a blue helmet and a light blue suit. They are all standing on a construction site with a mountain in the background.", - "id": 21901 - }, - { - "image_path": "G:\\images\\combined\\-2793-_png_jpg.rf.bb21f73fb34295d5f84502c8295933bd.jpg", - "response": "In the image there is a construction worker standing in front of a large crane and some wooden planks. The worker is wearing a yellow helmet and a blue jacket. He is also wearing a pair of green gloves. The large crane is in the background, it is red and white and is lifting some wooden planks. The worker is looking at the planks that are stacked on the ground.", - "id": 21902 - }, - { - "image_path": "G:\\images\\combined\\-2794-_png_jpg.rf.14aeb605fa54fc1b95ebb620b76d3bb3.jpg", - "response": "A worker in a blue jacket and hat is on a power tower.", - "id": 21903 - }, - { - "image_path": "G:\\images\\combined\\-2795-_png_jpg.rf.616691e1523bfa42b24350a653a25367.jpg", - "response": "A group of workers in hard hats and work clothes are on a ship.", - "id": 21904 - }, - { - "image_path": "G:\\images\\combined\\-2797-_png_jpg.rf.e487b5285651517c2ffed78d1d194fc3.jpg", - "response": "A worker is seen in a dark room standing on a ladder and reaching for a red tool. The room has a black roof and walls and the worker is wearing a black top, a yellow helmet, and yellow gloves. The worker is also standing on a steel staircase.", - "id": 21905 - }, - { - "image_path": "G:\\images\\combined\\-2798-_png_jpg.rf.0a89e68072050e0c3033d1e6294ebba6.jpg", - "response": "A group of men standing in a room that is still under construction.", - "id": 21906 - }, - { - "image_path": "G:\\images\\combined\\-2799-_png_jpg.rf.bfd8ba1474f3ada3ca5441d0d1f5cc9b.jpg", - "response": "A group of workers wearing hard hats and working on a construction site.", - "id": 21907 - }, - { - "image_path": "G:\\images\\combined\\-28-_png_jpg.rf.d3b91da786d12a591046b2caf68929b4.jpg", - "response": "A group of men in blue hats are outside.", - "id": 21908 - }, - { - "image_path": "G:\\images\\combined\\-280-_png_jpg.rf.c06248645c671914edd2e5f74b483db6.jpg", - "response": "A couple of men in orange suits standing in a mine.", - "id": 21909 - }, - { - "image_path": "G:\\images\\combined\\-2800-_png_jpg.rf.dfb7c470f7b56614157543eacd52d09f.jpg", - "response": "A worker in a red hard hat and black jacket uses a level to check the height of a brick wall. He is standing on a rooftop and there is a red hard hat hanging above him. The wall he is working on is made of bricks and there is a red brick in the foreground. The worker is wearing a watch on his left wrist.", - "id": 21910 - }, - { - "image_path": "G:\\images\\combined\\-2801-_png_jpg.rf.c41755a3616dcc84be5a34758f59f42d.jpg", - "response": "A group of men standing around each other.", - "id": 21911 - }, - { - "image_path": "G:\\images\\combined\\-2802-_png_jpg.rf.c413b474787507de1528e54b72fc162c.jpg", - "response": "The image shows two men in a construction site. Both are wearing safety helmets and business suits. One man is pointing to something to the left, and the other is holding a large white drawing or blueprint in his hand. They are both standing under a metal structure, which appears to be an unfinished roof. The background shows a partially constructed building with a bare concrete structure and scaffolding.", - "id": 21912 - }, - { - "image_path": "G:\\images\\combined\\-2803-_png_jpg.rf.d045212ec0c330dda79b573292f9907a.jpg", - "response": "A group of men standing around a construction site.", - "id": 21913 - }, - { - "image_path": "G:\\images\\combined\\-2804-_png_jpg.rf.7cc746e975db4638d6bb68f1fda8173c.jpg", - "response": "In the image there is a factory scene with several steel wires on the ground and being loaded onto a large metal roller. Some of the steel wires are in the foreground while others are in the background. There is a person wearing yellow pants and a yellow shirt standing among the steel wires in the background. In the foreground, on the right side of the image, there is a metal bar with Chinese characters written on it. The characters read \"\u78b3\u94a2\u533a\u65b0\u95fb\u4e2d\u5fc3\u656c\u4e1a\u7089\u533a\u8f67\u94a2\" which translates to \"Carbon Steel Zone News Center, Zeal Furnace Area, Rolling Section\".", - "id": 21914 - }, - { - "image_path": "G:\\images\\combined\\-2805-_png_jpg.rf.40f08a2d4fc05dee65cbd56059f39479.jpg", - "response": "In the image, there are three men dressed in different outfits. One man is dressed in a chef's outfit, another man is dressed in a construction worker's outfit, and the third man is dressed in a chef's outfit. They are all standing on a black surface.", - "id": 21915 - }, - { - "image_path": "G:\\images\\combined\\-2806-_png_jpg.rf.5bafb2e3530fec31e4b6abb92e63014c.jpg", - "response": "A group of people standing behind a green fence.", - "id": 21916 - }, - { - "image_path": "G:\\images\\combined\\-2808-_png_jpg.rf.2a067f3d107d517b358a347bebac6839.jpg", - "response": "A construction worker in a red hard hat and a worker in a blue hard hat work on a construction site.", - "id": 21917 - }, - { - "image_path": "G:\\images\\combined\\-2809-_png_jpg.rf.62265b288c3701cc8192542f249289af.jpg", - "response": "A construction site with workers.", - "id": 21918 - }, - { - "image_path": "G:\\images\\combined\\-2811-_png_jpg.rf.c0113f96800269c0115b0f17ba71e947.jpg", - "response": "Four men in white shirts and construction hard hats stand on a set of concrete stairs. They are talking.", - "id": 21919 - }, - { - "image_path": "G:\\images\\combined\\-2814-_png_jpg.rf.37490e073fc32b39593e23d0e6878d05.jpg", - "response": "A group of men standing around boxes in a warehouse.", - "id": 21920 - }, - { - "image_path": "G:\\images\\combined\\-2818-_png_jpg.rf.e876ba516ecaefc04f69f40cea90c322.jpg", - "response": "The image shows a large building that has partially collapsed, with a large hole in the middle of the building. The building has a steel frame and appears to be under construction. There are many steel beams and scaffolding in the building, and some are falling to the ground. In the foreground, a worker is wearing a white T-shirt and a red helmet, looking up at the collapsed building. The worker is wearing white pants and is on the left side of the image. The photo is taken from below, looking up at the building.", - "id": 21921 - }, - { - "image_path": "G:\\images\\combined\\-2819-_png_jpg.rf.d515d3c93f82f745bc7894f75cddb997.jpg", - "response": "The photo is of a group of people standing in a cave. They are all wearing hard hats and some are wearing white shirts. In the background, there are shelves with various items on it. The cave has a stone ceiling and walls. There is a sign on the right that says \"125\u7c73\u4e95\u4e0b\u70b8\u836f\u5e93\" which means it is a storage for cave explosives.", - "id": 21922 - }, - { - "image_path": "G:\\images\\combined\\-282-_png_jpg.rf.380c7cbf7ebe53f67d5d3d47c53e8609.jpg", - "response": "Firemen(142,123),(524,759) rescue a man who fell into a manhole", - "id": 21923 - }, - { - "image_path": "G:\\images\\combined\\-2820-_png_jpg.rf.158789488f4476677a86b98a94f51f43.jpg", - "response": "A construction worker walking on the site.", - "id": 21924 - }, - { - "image_path": "G:\\images\\combined\\-2822-_png_jpg.rf.b27785f61a8882e65f269f52378aa778.jpg", - "response": "A group of four men dressed in yellow and grey work vests and hard hats are looking at a blueprint.", - "id": 21925 - }, - { - "image_path": "G:\\images\\combined\\-2823-_png_jpg.rf.21a08ffa2b2bd55f1e02b401c9b6e34a.jpg", - "response": "In the image, there are three men wearing yellow helmets and work clothes. They are standing in front of a building under construction. Each man is holding a tool, with the man on the left holding a shovel, the one in the center holding a hoe, and the man on the right holding a crowbar. They are all smiling at the camera.", - "id": 21926 - }, - { - "image_path": "G:\\images\\combined\\-2824-_png_jpg.rf.897841af0696349a16ee8e52c8f644d2.jpg", - "response": "The image shows two men working on the power lines in a snow-covered landscape. They are wearing dark blue jackets and hats, and are using a tool to work on the lines. The sky is grey and overcast, and the trees around them are covered in snow. The ground is also covered in snow, and the men are wearing yellow boots.", - "id": 21927 - }, - { - "image_path": "G:\\images\\combined\\-2825-_png_jpg.rf.70c83a244e2bc5ee0760e7921fb45add.jpg", - "response": "A group of workers in yellow safety gear are standing on a bridge.", - "id": 21928 - }, - { - "image_path": "G:\\images\\combined\\-2826-_png_jpg.rf.97815c880a4d930d80196131aa368061.jpg", - "response": "A man in a blue uniform is putting a blue hat on another man's head. They are both standing in front of a display.", - "id": 21929 - }, - { - "image_path": "G:\\images\\combined\\-2827-_png_jpg.rf.444e9393cebc5f09784897652aee550f.jpg", - "response": " Men(268,683),(457,998)(567,529),(769,998)(6,503),(203,829) working on a construction site", - "id": 21930 - }, - { - "image_path": "G:\\images\\combined\\-2829-_png_jpg.rf.01a5adfd6ed1a1276d31c478f158bf23.jpg", - "response": "a man in a blue shirt and a yellow hard hat standing in front of a factory", - "id": 21931 - }, - { - "image_path": "G:\\images\\combined\\-2832-_png_jpg.rf.d66bcbb9511a39fb0750988cce35921c.jpg", - "response": "A man in a suit and a yellow hard hat is looking up at a yellow hard hat that is floating in the air. He is holding a set of architectural plans in his other hand. He is standing on a construction site with scaffolding in the background.", - "id": 21932 - }, - { - "image_path": "G:\\images\\combined\\-2834-_png_jpg.rf.81033fd518cc048129f7cfc599d168b8.jpg", - "response": "The image shows a group of construction workers at a construction site. They are working on a building that is under construction. Some of the workers are standing on the ground, while others are standing on a platform that has been built. They are wearing hard hats and uniforms. Some of them are holding tools, including a hammer and a pair of pliers. There is a traffic light in the background.", - "id": 21933 - }, - { - "image_path": "G:\\images\\combined\\-2835-_png_jpg.rf.bc7dac1d31473beaa4938a5e529ce2d6.jpg", - "response": "A group of men standing on top of a construction site.", - "id": 21934 - }, - { - "image_path": "G:\\images\\combined\\-2837-_png_jpg.rf.f6262991755b67a4968815a321c6704b.jpg", - "response": "A group of firefighters standing in front of a building.", - "id": 21935 - }, - { - "image_path": "G:\\images\\combined\\-2838-_png_jpg.rf.a963105c86033ab2d0f090856c660739.jpg", - "response": "Men in suits and hard hats are walking across a construction site.", - "id": 21936 - }, - { - "image_path": "G:\\images\\combined\\-2839-_png_jpg.rf.ab02a9a9d839526db42363ed7ccd21e3.jpg", - "response": "A worker in an orange jacket and red hat is using a tool to climb a ladder.", - "id": 21937 - }, - { - "image_path": "G:\\images\\combined\\-284-_png_jpg.rf.aeb3757ef6d33e6cbe7862f6202071a1.jpg", - "response": "In the image, several people are working on a construction site to the left of the frame, wearing yellow hats and white T-shirts. There are six people in the picture, some with their heads above and others below the frame. They are all engaged in construction work, with one person pouring concrete from a concrete mixer onto the construction site below. The concrete is poured from the mixer through a long hose, with the end of the hose held by a man in a white T-shirt. Another person in a white T-shirt is holding the hose as well, with a third person standing further to the right. The mixer is located at the top left of the image, with the concrete flowing down the hose and landing on the construction site.", - "id": 21938 - }, - { - "image_path": "G:\\images\\combined\\-2841-_png_jpg.rf.30c549929a5259ff716d31c94b2563b4.jpg", - "response": "A group of rescue workers in protective gear stand on debris and look at the remains of a building.", - "id": 21939 - }, - { - "image_path": "G:\\images\\combined\\-2843-_png_jpg.rf.4d19c91d3c23035b88c5c22cfa9003af.jpg", - "response": "A group of men working on a construction site.", - "id": 21940 - }, - { - "image_path": "G:\\images\\combined\\-2848-_png_jpg.rf.4410f05bde36109a270e3931ee7f9aaf.jpg", - "response": "a person in a red jacket and blue helmet", - "id": 21941 - }, - { - "image_path": "G:\\images\\combined\\-2849-_png_jpg.rf.cee8a841e8c7fed09a8d7eb03054411b.jpg", - "response": "A group of men standing around talking in a construction site.", - "id": 21942 - }, - { - "image_path": "G:\\images\\combined\\-285-_png_jpg.rf.93ca81310b388e75008582d57fd734ed.jpg", - "response": "In the image there is a group of construction workers working on a building site. They are all wearing blue hard hats and some are wearing yellow hard hats. The group is made up of around 12 people who are working together to create a foundation for the building. Some of the workers are using large hoses to pump concrete into the foundation while others are directing the hose and making sure the concrete is going to the right place. In the background there is a large crane that is lifting concrete beams into place.", - "id": 21943 - }, - { - "image_path": "G:\\images\\combined\\-2851-_png_jpg.rf.788bbe845924d7a2bad069f1f10a81c7.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 21944 - }, - { - "image_path": "G:\\images\\combined\\-2853-_png_jpg.rf.745d92af23ad0f39507fd85c9d1053ad.jpg", - "response": "The image shows a group of three people, wearing green work clothes and blue helmets, performing a high wire stunt. They are in a forest setting, with a wet road and a small bridge in the background. The person in the center of the group is in the process of letting go of a rope while the person on the left is helping to steady him. The person on the right is holding onto the rope, ready to catch the person letting go of the rope. The background is filled with lush green trees.", - "id": 21945 - }, - { - "image_path": "G:\\images\\combined\\-2857-_png_jpg.rf.217f32c941c3d02b38770a286fc9bb76.jpg", - "response": "An image of a man in an orange jacket and orange hard hat standing in front of a construction site. He is smiling and scratching his head.", - "id": 21946 - }, - { - "image_path": "G:\\images\\combined\\-286-_png_jpg.rf.216d43e43f52b90d668efacf9805054c.jpg", - "response": "Men working inside a large tunnel.", - "id": 21947 - }, - { - "image_path": "G:\\images\\combined\\-2860-_png_jpg.rf.0561d91f4627007f061bc3b4ab5c3a0f.jpg", - "response": "In the image there are three men working on a project inside a cave. They are all wearing hard hats and are focused on their task. The men are standing around a table with a laptop on it, and there are several other objects on the table including a cup, a book, a bottle and a cell phone. The cave has a brick wall and there is a light coming from the top right side of the image.", - "id": 21948 - }, - { - "image_path": "G:\\images\\combined\\-2861-_png_jpg.rf.f79694c67e43129f071c3ff99b3731fe.jpg", - "response": "Two men in hard hats looking at blueprints with a crane in the background.", - "id": 21949 - }, - { - "image_path": "G:\\images\\combined\\-2864-_png_jpg.rf.f2c0b41f3a1cd2ec1037e84c8c94bf32.jpg", - "response": "In the image there are three people dressed in orange and blue working on electric lines. They are on a cherry picker and are working on the power lines. The sky is blue with white clouds.", - "id": 21950 - }, - { - "image_path": "G:\\images\\combined\\-2865-_png_jpg.rf.59e339f2a7a0587ac9b1aaa1437e545e.jpg", - "response": "a group of people standing in a tunnel.", - "id": 21951 - }, - { - "image_path": "G:\\images\\combined\\-2867-_png_jpg.rf.893749cf7bc540fdad016ce4bab2208a.jpg", - "response": "A man in a hard hat stands in front of a large piece of mining equipment. The man is wearing blue coveralls and is standing on a muddy surface. The mining equipment is huge and is a dark grey color. It has many large wheels and the man is standing in front of one of them. The ground around the man is covered in small rocks and there is a puddle of water to his right.", - "id": 21952 - }, - { - "image_path": "G:\\images\\combined\\-2868-_png_jpg.rf.9d6831656a1224153f325a0e81d30010.jpg", - "response": "A factory with a red crane in the middle of the room.", - "id": 21953 - }, - { - "image_path": "G:\\images\\combined\\-2869-_png_jpg.rf.06b1727e83a866946747b3a816d2023f.jpg", - "response": "The image shows a group of people walking across a construction site. They are wearing red hats and carrying a backpack. The background shows a building under construction with scaffolding.", - "id": 21954 - }, - { - "image_path": "G:\\images\\combined\\-2870-_png_jpg.rf.7a85099e200c2bf4bdcb6098ba1be9e0.jpg", - "response": "In the image there are two workers operating a machine on a construction site. The workers are wearing hard hats and the machine they are operating is green and orange. In the background there are buildings under construction and a cityscape.", - "id": 21955 - }, - { - "image_path": "G:\\images\\combined\\-2872-_png_jpg.rf.b217a78f6e4204f22ca18a446d09d042.jpg", - "response": "A group of people are working to clear a creek of trash and debris. Some of the people are wearing hard hats and others are wearing white t-shirts. They are using long bamboo poles to reach into the creek and remove items such as plastic bottles and other debris. The creek itself is shallow and filled with rocks and plants.", - "id": 21956 - }, - { - "image_path": "G:\\images\\combined\\-2873-_png_jpg.rf.9a5baaeea7f2b27f040debcaf995ae8f.jpg", - "response": "A few men in red uniforms are working on a power line in a residential area. There are several signs around the area, including a few that say \"\u505c\u4e1a\u6574\u987f\" or \"\u4e1a\u52a1\u505c\u987f\". There are also a few cars parked in the area.", - "id": 21957 - }, - { - "image_path": "G:\\images\\combined\\-2874-_png_jpg.rf.294f3c49378304f6664b6918b8c9955d.jpg", - "response": "A group of construction workers walking on a construction site.", - "id": 21958 - }, - { - "image_path": "G:\\images\\combined\\-2876-_png_jpg.rf.711c112e3efa6868c9015130425b11cc.jpg", - "response": "An electrician is working on a power box on top of a metal structure. He is wearing a white uniform and has a tool belt around his waist. He is focused on the task at hand.", - "id": 21959 - }, - { - "image_path": "G:\\images\\combined\\-2877-_png_jpg.rf.d952c1e33be58e845402f9dda284a741.jpg", - "response": " Two men(331,258),(691,925)(71,271),(347,997) in hard hats(379,256),(527,369)(199,271),(337,368) looking at a blueprint(57,572),(591,798)", - "id": 21960 - }, - { - "image_path": "G:\\images\\combined\\-2878-_png_jpg.rf.a06e3ab501556e89a3a892efeb46aae7.jpg", - "response": "A group of three men working on a power line.", - "id": 21961 - }, - { - "image_path": "G:\\images\\combined\\-2879-_png_jpg.rf.11d22428d3c6ca8482e312689572df5f.jpg", - "response": "A group of workers(163,313),(381,996)(349,299),(591,996)(718,254),(930,996)(547,304),(727,997) in China's Sichuan province work on a bridge.", - "id": 21962 - }, - { - "image_path": "G:\\images\\combined\\-288-_png_jpg.rf.a5106ca03c31ce36f3598f8f648a5127.jpg", - "response": "The image shows a group of people in a dark mine shaft. They are all dressed in red vests and blue hard hats. Some of them are standing at the left side of the image, while others are on the right. They are all holding tools, with some of them holding flashlights. The people in the foreground are wearing backpacks. The background is blurred, but it appears to be a rock wall on the left and a person on the right. The image is from the website of China Web.", - "id": 21963 - }, - { - "image_path": "G:\\images\\combined\\-2880-_png_jpg.rf.3e35f974ebf4b3157f259eed9811d9c5.jpg", - "response": "a group of people standing under a structure", - "id": 21964 - }, - { - "image_path": "G:\\images\\combined\\-2881-_png_jpg.rf.33b3bf4873a7ab8090fb753e06ec1ab8.jpg", - "response": "A group of three men in blue and yellow jumpers, hard hats and safety gear work on fixing some power lines.", - "id": 21965 - }, - { - "image_path": "G:\\images\\combined\\-2883-_png_jpg.rf.8978a7386ce1911360a76ca0c8da2c66.jpg", - "response": "A group of three men in orange jumpsuits and red helmets are walking down a metal staircase. They are next to a yellow and white building.", - "id": 21966 - }, - { - "image_path": "G:\\images\\combined\\-2884-_png_jpg.rf.3ead275f15af8b93814d7767199a0c9f.jpg", - "response": "In the image there is a factory worker wearing an orange jumpsuit and a yellow hard hat. They are sitting on a step in a factory, near some metal machinery. The worker is holding a metal rod in their hand and there is a flame coming from the end of the rod, which is welding two pieces of metal together. There are sparks flying from the metal being welded.", - "id": 21967 - }, - { - "image_path": "G:\\images\\combined\\-2885-_png_jpg.rf.56e2b4601827b8645a33badcf7de9915.jpg", - "response": "A person in a white helmet is crouched down next to a blue box. They are in front of a building that has several signs on it, including one that says \u4e2d\u56fd\u5efa\u7b51 and another that says \u677e\u7acb\u4e16\u754c500\u5f3a. There is a stoplight above the blue box, and a person is sitting on the ground next to the box.", - "id": 21968 - }, - { - "image_path": "G:\\images\\combined\\-2888-_png_jpg.rf.0071f229887da88b29343fc2e86d30eb.jpg", - "response": "Some people working on a construction site.", - "id": 21969 - }, - { - "image_path": "G:\\images\\combined\\-2889-_png_jpg.rf.d0de58eba3b1523ec57d0ae4f321d3af.jpg", - "response": "A man in a hard hat and overalls is standing on a ladder and touching a power line. He is holding a cardboard box in his left hand. The sky is grey and overcast. There are many power lines and towers in the background.", - "id": 21970 - }, - { - "image_path": "G:\\images\\combined\\-2890-_png_jpg.rf.4e24cdb2a305030551699dfe820dc540.jpg", - "response": "Four construction workers in a discussion on a construction site.", - "id": 21971 - }, - { - "image_path": "G:\\images\\combined\\-2891-_png_jpg.rf.3b695092d3572d811b6fc70674351dcc.jpg", - "response": "A worker wearing a hard hat and using a flashlight to look at something.", - "id": 21972 - }, - { - "image_path": "G:\\images\\combined\\-2894-_png_jpg.rf.9afc798e04e737952a8d51e7d5d241fe.jpg", - "response": "An image of a man wearing a yellow hard hat with a yellow ball above him, seemingly about to drop on him.", - "id": 21973 - }, - { - "image_path": "G:\\images\\combined\\-2895-_png_jpg.rf.3b01f44571a1ebe865314d89a252ad8e.jpg", - "response": "A man standing on a metal platform wearing a white hard hat and holding a black bag.", - "id": 21974 - }, - { - "image_path": "G:\\images\\combined\\-2898-_png_jpg.rf.03841ad9d3d5f787c5e25b90400add13.jpg", - "response": "The image shows a group of construction workers at a construction site. They are working on a large building that is under construction. The workers are wearing yellow hats and some of them are wearing yellow shirts. They are working on a large building that is under construction.", - "id": 21975 - }, - { - "image_path": "G:\\images\\combined\\-29-_png_jpg.rf.77aff645a8c98463327ed14178ce32f3.jpg", - "response": "A construction site with two men working on a roof.", - "id": 21976 - }, - { - "image_path": "G:\\images\\combined\\-290-_png_jpg.rf.a4bd7809a1606bb20d1567b7a9a54f9a.jpg", - "response": "The image shows a group of people standing in front of a building with a blue and white sign that says 'Safety House'. Some of the people are wearing hard hats and one of them is wearing a white hard hat. The group is standing on a sidewalk and there are a few traffic cones in the foreground. In the background, there is a blue sky and a building under construction.", - "id": 21977 - }, - { - "image_path": "G:\\images\\combined\\-2900-_png_jpg.rf.d20e228911767a9952e0b5e02120f87f.jpg", - "response": "A group of workers are working on electrical equipment in a control room.", - "id": 21978 - }, - { - "image_path": "G:\\images\\combined\\-2901-_png_jpg.rf.4a8e00d12cfef39017133417d2e8c3e0.jpg", - "response": "A man wearing a white hard hat is working on a construction site. He is standing on a ladder and appears to be installing metal bars on a wall. He is also wearing a tool belt with various tools in it.", - "id": 21979 - }, - { - "image_path": "G:\\images\\combined\\-2902-_png_jpg.rf.7a97e63240a50ebc111e0c337f214a98.jpg", - "response": "In the image there is a person wearing a blue hard hat and safety mask welding two metal pipes together. There are also other people in the background wearing similar gear.", - "id": 21980 - }, - { - "image_path": "G:\\images\\combined\\-2903-_png_jpg.rf.226c0d531a592229599aa673647b971d.jpg", - "response": "A man wearing a yellow hard hat is holding a rolled up blueprint. He is standing in front of a wall of dirt and rock.", - "id": 21981 - }, - { - "image_path": "G:\\images\\combined\\-2905-_png_jpg.rf.ef4213e78126a4febac5b7583ba9ed79.jpg", - "response": "A group of men standing around each other", - "id": 21982 - }, - { - "image_path": "G:\\images\\combined\\-2907-_png_jpg.rf.74a8265e873251ec0203ad32361c0e8a.jpg", - "response": "A group of four men in a factory setting. They are all wearing hard hats and coveralls. One man is holding a large piece of machinery.", - "id": 21983 - }, - { - "image_path": "G:\\images\\combined\\-2908-_png_jpg.rf.080997ad0a49afa6f90459cf08411862.jpg", - "response": "A group of people standing around a construction site.", - "id": 21984 - }, - { - "image_path": "G:\\images\\combined\\-2909-_png_jpg.rf.e99ec5b697819b950c22aa651ef251a7.jpg", - "response": "In the image, there are several workers wearing red shirts and white hats working on a project. They are on a yellow rope that winds up and down the mountain. The mountain is green and brown, and the sky is blue with no clouds.", - "id": 21985 - }, - { - "image_path": "G:\\images\\combined\\-2910-_png_jpg.rf.3302808255e90893bf0c4a73f236bd75.jpg", - "response": "The image shows three people in red and grey uniforms and orange hard hats, who are all holding clipboards, standing in a room with a concrete floor and walls covered in a red and gold material. They are examining an electrical panel, with one person holding a voltage meter and pointing it at a switch on the wall, while the other two look on. The room also contains a concrete staircase on the left, and a sign on the wall that says, \" Safety first\".", - "id": 21986 - }, - { - "image_path": "G:\\images\\combined\\-2911-_png_jpg.rf.3b8524087cdddf947583722315eb84c7.jpg", - "response": "A factory with workers working on a production line.", - "id": 21987 - }, - { - "image_path": "G:\\images\\combined\\-2912-_png_jpg.rf.bec47a4f82dac22d3a2e4655403d2e18.jpg", - "response": "The image shows two workers in blue overalls and yellow helmets repairing a damaged electrical panel. They are using various tools, including a drill and a screwdriver. The workers are in front of a building, and the electrical panel is mounted on the wall. The background is blurred, and there is a handbag placed on the ground near the workers. The workers are wearing blue overalls and yellow helmets for safety.", - "id": 21988 - }, - { - "image_path": "G:\\images\\combined\\-2915-_png_jpg.rf.c4c9bf6258fc89343877c8847c34badb.jpg", - "response": "A man in a uniform is climbing a tree.", - "id": 21989 - }, - { - "image_path": "G:\\images\\combined\\-2916-_png_jpg.rf.2478375a58b120450c2ffa3344f4322b.jpg", - "response": "A construction worker in a black uniform and blue hard hat is kneeling down in a dark tunnel. They are working with a tool in their hand. There is a white bag next to them and another one further away. A white light is shining on the worker from above. There is a tire in the background.", - "id": 21990 - }, - { - "image_path": "G:\\images\\combined\\-2917-_png_jpg.rf.91bffa27d7bd3735e89de215b3b30933.jpg", - "response": "A group of construction workers in neon jackets and hard hats are running across a concrete area. Some of them are carrying a fakejured person on a stretcher.", - "id": 21991 - }, - { - "image_path": "G:\\images\\combined\\-2918-_png_jpg.rf.b6f46366aca0224d44330f513f7a4602.jpg", - "response": "The image shows two workers in hard hats standing in front of a wall of control panels. They are both dressed in blue coveralls and are wearing red gloves. One worker is on the left of the image and is reaching out to press a button on a control panel while the other worker is on the right and is looking at the control panel. The wall of control panels has several switches and buttons on it. The background of the image is a grey wall and the workers are in the foreground.", - "id": 21992 - }, - { - "image_path": "G:\\images\\combined\\-2919-_png_jpg.rf.c04efd700eb549c4a417e91dd7e9636f.jpg", - "response": "A worker in a yellow vest and orange helmet is using a tool to chip away at a yellow and black traffic cone. The cone is sitting on the ground in the street.", - "id": 21993 - }, - { - "image_path": "G:\\images\\combined\\-2920-_png_jpg.rf.92b66d8ef92b151c56e26b8e310c95b2.jpg", - "response": "A group of people standing around a large roll of wire.", - "id": 21994 - }, - { - "image_path": "G:\\images\\combined\\-2921-_png_jpg.rf.77bc5f9ca3238caaf34c11e2c0dd1273.jpg", - "response": "A man and a woman wearing red helmets are looking at a black and red object. The man is on the left side of the image and is wearing a white shirt. The woman is on the right side of the image and is wearing a white shirt with a blue collar. They are both holding cellphones. The man's helmet is on the left side of his head and has \"\u4e2d\u56fd\" in yellow, \"\u4e2d\" in blue, \"\u56fd\" in red, and \"\u9645\" in yellow. The woman's helmet is on the right side of her head and has \"CHINA\" in yellow, \"BYTE\" in blue, \".tagName\" in red, and \"16\" in yellow. The woman is also holding a yellow and black object.", - "id": 21995 - }, - { - "image_path": "G:\\images\\combined\\-2922-_png_jpg.rf.1f0342191053e005996b4b3f2f229f77.jpg", - "response": "A group of men working on a red and white tower.", - "id": 21996 - }, - { - "image_path": "G:\\images\\combined\\-2923-_png_jpg.rf.9f382eafa50a09bdc8187c60ba57b205.jpg", - "response": "A couple of men working on a large pipe.", - "id": 21997 - }, - { - "image_path": "G:\\images\\combined\\-2924-_png_jpg.rf.31ff9bd787f0fb9c9da5d65cd28b05c9.jpg", - "response": "A couple of men working on some power lines in the snow.", - "id": 21998 - }, - { - "image_path": "G:\\images\\combined\\-2925-_png_jpg.rf.ab3bde43aa1ab4d0d493de932d1bed37.jpg", - "response": "A worker is seen in a tunnel of the Fuxing high-speed railway in Shanghai, China, 28 December 2019. The Fuxing, or 'Spring Festival', high-speed train is the latest generation of high-speed trains in China. It features improved aerodynamics, a sleeker design, and a range of smart technologies. The train can reach speeds of up to 350 km/h (220 mph). The Fuxing is also more energy-efficient and environmentally friendly, with lower noise and emissions. The first Fuxing high-speed train began service on 26 June 2017, connecting Beijing and Shanghai. The train is named after the Chinese word for the Spring Festival, or Chinese New Year, which is the most important holiday in China.", - "id": 21999 - }, - { - "image_path": "G:\\images\\combined\\-2926-_png_jpg.rf.c79827dced419a5a4ede19ce71c2dc01.jpg", - "response": "A construction worker in a red hat is working on a building.", - "id": 22000 - }, - { - "image_path": "G:\\images\\combined\\-2927-_png_jpg.rf.4789295e75aea4cfbd596ff5b4cf4cc4.jpg", - "response": "A construction site with workers pouring concrete on a building.", - "id": 22001 - }, - { - "image_path": "G:\\images\\combined\\-2928-_png_jpg.rf.36d9ab4fff8f6b35e3acd017d3b2db1e.jpg", - "response": "A\u96a7\u9053 that is under construction with workers inside.", - "id": 22002 - }, - { - "image_path": "G:\\images\\combined\\-2930-_png_jpg.rf.1cc67a7c81f274a32930ed8078594dd7.jpg", - "response": "A group of people standing around a power pole.", - "id": 22003 - }, - { - "image_path": "G:\\images\\combined\\-2931-_png_jpg.rf.3b1a82bf572a9e59a0a76be5e56b9550.jpg", - "response": "The photo shows some workers in a factory. There are four workers in the factory, two of whom are focused on their work near a red platform, and the other two are watching something in the upper right corner of the picture. The background is a little blurred, but it seems to be a white wall. There is a red factory building in the background, and a red object, which may be a finished product, is placed in front of the workers.", - "id": 22004 - }, - { - "image_path": "G:\\images\\combined\\-2932-_png_jpg.rf.b0c108d8b0292679217909f69dd5fb9d.jpg", - "response": "A man in a blue shirt and yellow hard hat is working on a piece of machinery. He is kneeling down and holding a wrench. There are other men in the background working on machinery as well.", - "id": 22005 - }, - { - "image_path": "G:\\images\\combined\\-2933-_png_jpg.rf.381d974dddfcb27c2fc056ff8fc8fef7.jpg", - "response": "A group of men in white and blue clothing are walking across a construction site. Some of the men are wearing ties and the man at the front is wearing a red hard hat. In the background there is a building with the words \"\u4e2d\u56fd\u534e\u6cf0\u8054\u5408\u5730\u4ea7\" written on it. There is also a pool of water in front of the group.", - "id": 22006 - }, - { - "image_path": "G:\\images\\combined\\-2935-_png_jpg.rf.41ca57f44dbeaf6818d080a3a22c9b05.jpg", - "response": "In the image there is a group of people standing on a construction site. There is a man standing on the left side of the image and another one on the right side. In the middle of the group, there is a person sitting on the metal stairs. They are all wearing hard hats. The people are dressed in blue jeans and work clothes. The background is a steel structure and a pile of soil.", - "id": 22007 - }, - { - "image_path": "G:\\images\\combined\\-2936-_png_jpg.rf.c70b9a9d1828964a3b90560ee405c573.jpg", - "response": "A man in a hard hat and blue overalls is kneeling down next to a large metal cylinder. He is holding a long thin tool in his hand. The room is filled with large pipes and a large metal cylinder.", - "id": 22008 - }, - { - "image_path": "G:\\images\\combined\\-2937-_png_jpg.rf.9fdec502f5f8aaa172c468bcbf0ad6d2.jpg", - "response": "A construction worker in a yellow vest and yellow hard hat is adjusting a red and brown metal wall form. The worker is wearing a green and brown camouflage jacket. In the background there is a large unfinished building with rebar sticking out of it. There is also a group of people standing around the unfinished building. In the far distance there is a tall white building and a tall building that is a dark orange color.", - "id": 22009 - }, - { - "image_path": "G:\\images\\combined\\-2938-_png_jpg.rf.05b94b7302695a1abb7214aeeac4e83c.jpg", - "response": "A close up of two men wearing yellow hard hats, one is wearing a brown jacket and the other is not visible.", - "id": 22010 - }, - { - "image_path": "G:\\images\\combined\\-294-_png_jpg.rf.b57d401768ebe793c5413de6ebbb8156.jpg", - "response": "A man in a yellow shirt is standing under a large bridge.", - "id": 22011 - }, - { - "image_path": "G:\\images\\combined\\-2941-_png_jpg.rf.76b99a3c5a9573b3691a392b16762828.jpg", - "response": "A group of workers in yellow uniforms and hard hats are carrying planks of wood at a construction site. The workers are walking through a pile of rubble and dirt. In the background, there are wooden beams and other construction materials. There are also a few other people at the site, although they are less visible.", - "id": 22012 - }, - { - "image_path": "G:\\images\\combined\\-2945-_png_jpg.rf.41a113eb6138763ad6a4cae9b211499e.jpg", - "response": "A construction site with a bunch of people working on it.", - "id": 22013 - }, - { - "image_path": "G:\\images\\combined\\-2946-_png_jpg.rf.49d41e1361a66eab03bbfa2b359721ab.jpg", - "response": "A group of construction workers working on a large building.", - "id": 22014 - }, - { - "image_path": "G:\\images\\combined\\-2947-_png_jpg.rf.fd9e47c4e1b67ccca31d36e5b573a48e.jpg", - "response": " Two workers(2,442),(244,997)(217,533),(378,997) in blue hard hats(2,441),(159,546)(281,532),(346,588) are fixing a leaning power pole(332,2),(767,595).", - "id": 22015 - }, - { - "image_path": "G:\\images\\combined\\-2949-_png_jpg.rf.933c490bfe3135a51cb47046907d28e5.jpg", - "response": "A worker in a black shirt is standing on a yellow machine. The background shows a cityscape with tall buildings.", - "id": 22016 - }, - { - "image_path": "G:\\images\\combined\\-295-_png_jpg.rf.dd53d9996ebbbe1b6805b4457037ef88.jpg", - "response": "A close up of a person in a blue sweatshirt and hard hat working on a project.", - "id": 22017 - }, - { - "image_path": "G:\\images\\combined\\-2953-_png_jpg.rf.2a6a6b428168be7690103510de47a1bf.jpg", - "response": "An image of a dock with two workers in orange vests and yellow hats. There are two large cranes in the background and a ship docked to the right. The sky is grey and overcast.", - "id": 22018 - }, - { - "image_path": "G:\\images\\combined\\-2954-_png_jpg.rf.9c7ea8a137b5dcfb62b69465b3715ff8.jpg", - "response": "The image shows two linemen working on a power line. They are standing on a platform that is elevated, allowing them to work on the power line. One of the linemen is holding a tool, and both are wearing hard hats and winter clothing. The sky above them is overcast, and there is snow on the ground. The linemen are surrounded by power lines and equipment.", - "id": 22019 - }, - { - "image_path": "G:\\images\\combined\\-2957-_png_jpg.rf.7b7b31793eda5ecd33de31988c3a38e3.jpg", - "response": "a group of men in suits and hard hats", - "id": 22020 - }, - { - "image_path": "G:\\images\\combined\\-2958-_png_jpg.rf.268ab71a66ee74dfb9732226abee4a42.jpg", - "response": "A group of people working on a building construction site.", - "id": 22021 - }, - { - "image_path": "G:\\images\\combined\\-2963-_png_jpg.rf.50e50254ec88609b19161eae929fbf77.jpg", - "response": "A group of people working on a construction site wearing yellow helmets and brown uniforms.", - "id": 22022 - }, - { - "image_path": "G:\\images\\combined\\-2966-_png_jpg.rf.299e5db6814283f452570d000930f296.jpg", - "response": "A construction site with several workers and heavy machinery.", - "id": 22023 - }, - { - "image_path": "G:\\images\\combined\\-2967-_png_jpg.rf.db20a25645da3c64662164fe64762fd8.jpg", - "response": "The image features two men wearing yellow hard hats and safety glasses. The man in the foreground is wearing a checkered shirt and has a yellow hard hat on his head. The man behind him is wearing a hat and glasses. They are standing in front of a metal door with a silver metal gate.", - "id": 22024 - }, - { - "image_path": "G:\\images\\combined\\-2968-_png_jpg.rf.d77e3418120e94440fe1bf8e0abf9444.jpg", - "response": "In the image, there are two workers on a power tower. The power tower is tall and has many wires and equipment on it. The sky is blue and there are a few clouds. There is a building in the background.", - "id": 22025 - }, - { - "image_path": "G:\\images\\combined\\-2969-_png_jpg.rf.a85182ced37eca95226235fcc1a7f1e8.jpg", - "response": "A group of people standing around a small car.", - "id": 22026 - }, - { - "image_path": "G:\\images\\combined\\-2970-_png_jpg.rf.bc2af2629436a6d64f46e899bb306651.jpg", - "response": "A group of five men wearing hard hats are working on power lines. They are standing on ladders and are focused on their task.", - "id": 22027 - }, - { - "image_path": "G:\\images\\combined\\-2973-_png_jpg.rf.71d505726e400fcaed0dfc59b2344c5a.jpg", - "response": "A power line technician working on some power lines.", - "id": 22028 - }, - { - "image_path": "G:\\images\\combined\\-2974-_png_jpg.rf.1008600127c3ac61d6a1bae5f09dcac5.jpg", - "response": "The image shows a group of men working in a construction site. They are wearing hard hats and are in the process of building a tunnel. Some of them are carrying heavy equipment and there are several ropes and pulleys in the scene. The men are shirtless and appear to be very sweaty. The lighting in the tunnel is dim and there are several spots that are illuminated by flashlights.", - "id": 22029 - }, - { - "image_path": "G:\\images\\combined\\-2975-_png_jpg.rf.03d74c0906a3261bb92a94c5d6786e11.jpg", - "response": "Some people are gathered around a sign. The sky is a clear, bright blue. There is a white sign with Chinese characters on it. A group of people are standing in front of the sign, wearing hard hats. They are looking at a model of a building.", - "id": 22030 - }, - { - "image_path": "G:\\images\\combined\\-2976-_png_jpg.rf.4b85ccd0c00aa577bb47543d939e4264.jpg", - "response": "In the image there are two men working on a power line. One man is sitting on top of the power line and fixing it while the other man is holding a tool. They are both wearing blue hats and the man working on the power line is also wearing a white hat.", - "id": 22031 - }, - { - "image_path": "G:\\images\\combined\\-2977-_png_jpg.rf.11cd5f172b5d05bd3e794c865fe35e48.jpg", - "response": "The image is a group of workers working on a path in the mountains. They are all wearing blue helmets and uniforms. There is a person in the bottom right corner of the image who is filming or recording the event. There is also a blue helmet and a blue tool on the ground. The workers are using a machine with a long handle and a red engine. The mountains have a light dusting of snow on them.", - "id": 22032 - }, - { - "image_path": "G:\\images\\combined\\-2978-_png_jpg.rf.6a5185105b4eb8db62a6a96c9e7beeda.jpg", - "response": "A man in a yellow hard hat standing on a construction site.", - "id": 22033 - }, - { - "image_path": "G:\\images\\combined\\-2979-_png_jpg.rf.eca84619087ea1117ace3f03f39959c6.jpg", - "response": "The image shows a group of people standing in a large, unfinished room. They are all wearing hard hats, and some of them are also wearing suits. The room has a concrete floor and walls, and there are large columns in the center. The ceiling is unfinished and there are large holes in it. The people are standing in various groups, and some of them are holding umbrellas.", - "id": 22034 - }, - { - "image_path": "G:\\images\\combined\\-2982-_png_jpg.rf.5d3a3195e36e9284dfe0f299e307d8e1.jpg", - "response": "In the image, multiple rescue workers in orange jumpsuits are working together to rescue a person trapped in a large hole in the ground. The hole is filled with grey mud and the workers are using shovels and other tools to dig and reach the person. The scene is set in an outdoor area with a large tree on the right side of the image and several other trees and plants nearby. The sky appears to be overcast and there are a few clouds visible.", - "id": 22035 - }, - { - "image_path": "G:\\images\\combined\\-2983-_png_jpg.rf.1f94dafcd8d2fff00b736b68a342a0e7.jpg", - "response": "A group of workers stand next to a long wall with pictures on it.", - "id": 22036 - }, - { - "image_path": "G:\\images\\combined\\-2984-_png_jpg.rf.fb4de665378da28599f7adb5f28d39a4.jpg", - "response": "a group of people standing around each other", - "id": 22037 - }, - { - "image_path": "G:\\images\\combined\\-2985-_png_jpg.rf.9d031e4363ca8722b80858c3e1ee9218.jpg", - "response": "A construction site with several men working on it. They are working on a metal structure that is standing on cinder blocks. There is a ladder that is leaning against a metal beam. There is a man standing on the ladder and another man standing on the metal structure.", - "id": 22038 - }, - { - "image_path": "G:\\images\\combined\\-2987-_png_jpg.rf.911ade47a464d6be42c9d335487a1b2c.jpg", - "response": "A construction site with several people working on it.", - "id": 22039 - }, - { - "image_path": "G:\\images\\combined\\-2990-_png_jpg.rf.83ccdd6f1791ce1883aa47948f81a2e8.jpg", - "response": "A group of people working on a solar panel farm.", - "id": 22040 - }, - { - "image_path": "G:\\images\\combined\\-2991-_png_jpg.rf.88a2d7b8d4762f6ddfd9d8818cdbbb7d.jpg", - "response": "A construction site with a concrete mixer and two workers.", - "id": 22041 - }, - { - "image_path": "G:\\images\\combined\\-2992-_png_jpg.rf.c85577f62a2ad4f01d5b42bb1ce5b9ae.jpg", - "response": "Some workers are on scaffolding and one is on a ladder.", - "id": 22042 - }, - { - "image_path": "G:\\images\\combined\\-2993-_png_jpg.rf.3d148e46c551e1c9b19814effb85b934.jpg", - "response": "A couple of men are working on power lines. One man is wearing a white shirt and tan pants, a yellow hat, and white shoes. He is holding a tool in his right hand. The other man is wearing a white shirt and tan pants, a yellow hat, and white shoes. He is also holding a tool in his right hand. They are both hanging from the power lines.", - "id": 22043 - }, - { - "image_path": "G:\\images\\combined\\-2994-_png_jpg.rf.977a0bb6c2d970557222e5bf0c7f18f3.jpg", - "response": "A construction crew is working on a building.", - "id": 22044 - }, - { - "image_path": "G:\\images\\combined\\-2995-_png_jpg.rf.05f85dbb31dabb4535d4f3bc15aa3d5d.jpg", - "response": "In the image there are two men both wearing yellow and orange work clothes and hard hats. They are in a construction site with wood planks around them. One man is holding a wooden plank on his shoulder and smiling at the camera while the other man is looking down.", - "id": 22045 - }, - { - "image_path": "G:\\images\\combined\\-2998-_png_jpg.rf.866555b0adb29476eafb80be69742b94.jpg", - "response": "A man wearing a white hard hat and blue coveralls is holding a walkie talkie. He is standing behind a large pile of metal machinery, including a series of metal links and a large metal hook.", - "id": 22046 - }, - { - "image_path": "G:\\images\\combined\\-3-_png_jpg.rf.cfacfaac9e933adaa6290e9a0eac2fa7.jpg", - "response": "A man in a red shirt and yellow hat is working on a power line.", - "id": 22047 - }, - { - "image_path": "G:\\images\\combined\\-3000-_png_jpg.rf.5bc02aa4623345b530e45cc0c0b600cd.jpg", - "response": "The image shows two linemen working on repairing a power line in a snowy field. They are wearing hard hats and winter clothing. One of the linemen is kneeling down and holding a tool. The snow is knee-deep and there are several ice and snow patches on the ground. In the foreground, there is a wheel from a vehicle.", - "id": 22048 - }, - { - "image_path": "G:\\images\\combined\\-3003-_png_jpg.rf.9c5ef72501b9b8c562c660f23f19a72f.jpg", - "response": "two people(338,419),(447,840)(422,420),(646,919) walking on a steep hill", - "id": 22049 - }, - { - "image_path": "G:\\images\\combined\\-3005-_png_jpg.rf.69ebf092fb134c961b0190fc93b7c82b.jpg", - "response": "A group of men in white shirts and construction hats are walking through a building. Some of the men are also wearing name tags. One man is carrying a black bag. In the background, there is a whiteboard with writing on it. There are also several lights hanging from the ceiling.", - "id": 22050 - }, - { - "image_path": "G:\\images\\combined\\-3006-_png_jpg.rf.8c5791c242c959db676e867c2668c68e.jpg", - "response": "A construction site with a large building under construction. There is a man working on the site and some scaffolding.", - "id": 22051 - }, - { - "image_path": "G:\\images\\combined\\-3008-_png_jpg.rf.5a5783ef1ae541b011a16f4f1a382236.jpg", - "response": "An electrician is working on some wires.", - "id": 22052 - }, - { - "image_path": "G:\\images\\combined\\-301-_png_jpg.rf.033775d1ddb90db13124ffb054d9f342.jpg", - "response": "In the image there are three people, a man and two women, all wearing yellow vests. They are sitting on a concrete structure, possibly a bridge or a large beam, and are looking out towards a construction site. The man is pointing towards something on the right, which is out of the frame. The sky is blue and clear.", - "id": 22053 - }, - { - "image_path": "G:\\images\\combined\\-3010-_png_jpg.rf.bf22b4b349eb70c9ffb01edf662e8559.jpg", - "response": "The image shows a group of construction workers at a construction site. They are wearing yellow helmets and are working on a project that involves pouring concrete. The workers are standing on a large area of concrete that has been poured, and they are using long-handled shovels to spread the concrete. Some of the workers are also using long brooms to smooth out the concrete. The pipes of a large machine are also visible in the image, indicating that this is a construction site.", - "id": 22054 - }, - { - "image_path": "G:\\images\\combined\\-3011-_png_jpg.rf.696ccc0b2529dc8083c493206e8ec2a2.jpg", - "response": "The photo shows two workers on a construction site. They are wearing yellow hard hats and work clothes. They are standing on a platform and are working on a grid of steel reinforcement bar. The sky is blue and they are the only people in focus in the image.", - "id": 22055 - }, - { - "image_path": "G:\\images\\combined\\-3012-_png_jpg.rf.37f30cec4e02783e2130fc2ba33062e1.jpg", - "response": "The image shows three workers wearing hard hats and blue shirts, one of whom is using a welding torch to work on a large metal structure. The workers are standing on a platform that is raised above the ground on pillars. The metal structure that they are working on has a circular shape and is covered in sparks. There is a large metal ball located near the platform where the workers are standing.", - "id": 22056 - }, - { - "image_path": "G:\\images\\combined\\-3013-_png_jpg.rf.c2981ef5decf436d85498f1cc447d832.jpg", - "response": "A miner checks his equipment before beginning his shift at a coal mine in China's Shanxi province.", - "id": 22057 - }, - { - "image_path": "G:\\images\\combined\\-3015-_png_jpg.rf.e6c6c613c1c4b954e68ff74812b67de9.jpg", - "response": "A group of people in hard hats stand in a construction site. They are all wearing white and blue clothing. In the background, there are large windows and a concrete pillar. There are also several clocks on the wall.", - "id": 22058 - }, - { - "image_path": "G:\\images\\combined\\-3018-_png_jpg.rf.7886292271e2109317296ff03812c198.jpg", - "response": "A group of workers wearing red helmets are seen in this undated photo. The workers are wearing camouflage uniforms. One of them is seen adjusting a yellow metal bar. Another worker is seen holding a yellow metal bar with both hands. There are three other people in the background, with one of them wearing a yellow helmet. The workers are standing on a yellow metal bar. The photo is taken from the perspective of one of the workers.", - "id": 22059 - }, - { - "image_path": "G:\\images\\combined\\-3019-_png_jpg.rf.f93b75b9a9039820cab09733c0520735.jpg", - "response": " Two men(445,39),(683,483)(403,473),(717,793) working on a construction project at night", - "id": 22060 - }, - { - "image_path": "G:\\images\\combined\\-302-_png_jpg.rf.f7dd935856570657b2ea87ee2b6d6dbf.jpg", - "response": "A group of men working on a large power line.", - "id": 22061 - }, - { - "image_path": "G:\\images\\combined\\-3021-_png_jpg.rf.9a14ee3009fc6086bd06a64f78626acb.jpg", - "response": "The image shows two workers in yellow hard hats and blue coveralls standing next to a yellow truck. The workers are holding yellow jackets over their shoulders. The truck is yellow and black and has a screen on the side. There is a lot of smoke coming from the truck.", - "id": 22062 - }, - { - "image_path": "G:\\images\\combined\\-3022-_png_jpg.rf.16873a231df6cb503bf7cf5fbf0dd91a.jpg", - "response": "In the image there are two workers in yellow helmets and work clothes. They are both working on a tower and one of them is holding a object with both hands while the other is reaching for a yellow power line insulator. There are more power line insulators on the ground and a lake nearby.", - "id": 22063 - }, - { - "image_path": "G:\\images\\combined\\-3023-_png_jpg.rf.4f8243838e5221f55cc03c3d4a32ba6e.jpg", - "response": "A man is working on power lines in the snow", - "id": 22064 - }, - { - "image_path": "G:\\images\\combined\\-3024-_png_jpg.rf.6da5fb9f1bc5b5c7b3abc579b36857db.jpg", - "response": "A man in a hard hat and red jumpsuit is driving a forklift.", - "id": 22065 - }, - { - "image_path": "G:\\images\\combined\\-3026-_png_jpg.rf.2fc3400a33200ebba771f03978e05827.jpg", - "response": "In the image there are two workers wearing yellow shirts. They are working on a construction site that has a yellow and gray concrete floor. The workers are building a structure with many metal bars and blue steel wires. The sky is clear with a few clouds.", - "id": 22066 - }, - { - "image_path": "G:\\images\\combined\\-3028-_png_jpg.rf.b73e171eb079802205f2d8c78a73f175.jpg", - "response": "The image shows a group of workers in blue hard hats and black clothing standing in a large pit filled with water. They are working on an underground pipe, with one person holding a large pipe while the others work nearby. The pit is surrounded by wooden beams and the workers are wearing yellow gloves.", - "id": 22067 - }, - { - "image_path": "G:\\images\\combined\\-3029-_png_jpg.rf.1217dee6c593299b876963473cf57b0e.jpg", - "response": "A man in an orange vest and helmet is using a chainsaw to cut through a tree. The man is standing in a clearing in the woods and there is a pile of branches and tree cuttings on the ground. The image is blurry and there are many trees surrounding the man and the area he is working in.", - "id": 22068 - }, - { - "image_path": "G:\\images\\combined\\-3031-_png_jpg.rf.66cd31faddb84f926259d120192e492f.jpg", - "response": "A man in a yellow hard hat sitting in a large vehicle.", - "id": 22069 - }, - { - "image_path": "G:\\images\\combined\\-3032-_png_jpg.rf.cbeda97711dc40ae65996bb1d70fc70b.jpg", - "response": "A couple of workers standing in front of a building under construction.", - "id": 22070 - }, - { - "image_path": "G:\\images\\combined\\-3033-_png_jpg.rf.403e0576092ccd1986cce7940c51b932.jpg", - "response": "A group of people standing around each other.", - "id": 22071 - }, - { - "image_path": "G:\\images\\combined\\-3035-_png_jpg.rf.87076d932b81b9f03c84cc3bcd981432.jpg", - "response": "a group of men standing inside a building", - "id": 22072 - }, - { - "image_path": "G:\\images\\combined\\-3037-_png_jpg.rf.18c02f5086cdb00b4c5d5c044facef17.jpg", - "response": "Two men in red work uniforms and red helmets are working on a piece of oilfield equipment.", - "id": 22073 - }, - { - "image_path": "G:\\images\\combined\\-304-_png_jpg.rf.74447a19742ddd13e77e74836b46a40d.jpg", - "response": "A man wearing a pink shirt and a yellow hard hat is using a blue and silver hose to spray water at a yellow building that is being torn down. The man is standing in front of the building and is holding the hose. There is a white spray coming out of the hose. The sky is overcast.", - "id": 22074 - }, - { - "image_path": "G:\\images\\combined\\-3040-_png_jpg.rf.51c9c598c2b70e2fd7638119b05aedea.jpg", - "response": "In the image there is a group of men standing on and around a hillside. They are all wearing hard hats and some are wearing orange vests. They are working on an electrical structure, with one man climbing a pole while others assist him. There are power lines running through the structure and the hillside is covered in brown grass and green trees.", - "id": 22075 - }, - { - "image_path": "G:\\images\\combined\\-3041-_png_jpg.rf.3706b7900bd82402c3d956d1cd63c04f.jpg", - "response": "A couple of workers fixing a wire on the side of a road.", - "id": 22076 - }, - { - "image_path": "G:\\images\\combined\\-3042-_png_jpg.rf.216fe02a8af3a451eb46084fb99dc6f7.jpg", - "response": "A man installing solar panels on a roof.", - "id": 22077 - }, - { - "image_path": "G:\\images\\combined\\-3043-_png_jpg.rf.6619acbbc8af87ae3bceccc7ca42a7fd.jpg", - "response": "A man in a yellow hard hat and orange vest is on a blue boat. He is holding a long tool and looking at it. There are two yellow life preservers on the boat and a yellow and black helmet hanging on the side. The man is wearing camouflage pants and has a pen in his hand.", - "id": 22078 - }, - { - "image_path": "G:\\images\\combined\\-3044-_png_jpg.rf.0f553d02c033ef3295f6b1b88865538d.jpg", - "response": "Some people are working on a construction site. They are standing on a frame that has red bars. There is a yellow crane in the background.", - "id": 22079 - }, - { - "image_path": "G:\\images\\combined\\-3045-_png_jpg.rf.655d0b4c7f8c093b25de29b0514b19ae.jpg", - "response": "A group of men standing around each other.", - "id": 22080 - }, - { - "image_path": "G:\\images\\combined\\-3047-_png_jpg.rf.1ca5db2604360f20f6ce28f5edd38006.jpg", - "response": "A woman wearing a pink helmet is painting the outside of a building.", - "id": 22081 - }, - { - "image_path": "G:\\images\\combined\\-3048-_png_jpg.rf.06043644b0844d702d9ed7209a45371a.jpg", - "response": "A construction worker sitting on a large pile of steel rods at a construction site.", - "id": 22082 - }, - { - "image_path": "G:\\images\\combined\\-305-_png_jpg.rf.9fbc85aca33089cac77a9c56fd1bc726.jpg", - "response": "A group of construction workers are working on a large spool of wire on the side of a road.", - "id": 22083 - }, - { - "image_path": "G:\\images\\combined\\-3051-_png_jpg.rf.49349cd0722fac077f9aadf3d690dd7e.jpg", - "response": "A group of people working on a building.", - "id": 22084 - }, - { - "image_path": "G:\\images\\combined\\-3053-_png_jpg.rf.96718596afaec84130ffa195bf0a44ee.jpg", - "response": "A construction site with a worker in a red hard hat in the foreground. The background shows rebar being built into a structure.", - "id": 22085 - }, - { - "image_path": "G:\\images\\combined\\-3054-_png_jpg.rf.8dad12251dff0068a0f205e5e02200cc.jpg", - "response": "A group of men are waist deep in water working on a power line.", - "id": 22086 - }, - { - "image_path": "G:\\images\\combined\\-3055-_png_jpg.rf.2b5d3941c0b17d914ea15b24f91a441f.jpg", - "response": "A couple of men are on power lines in the snow.", - "id": 22087 - }, - { - "image_path": "G:\\images\\combined\\-3056-_png_jpg.rf.f2c3bdfbea75bd754ab389697fa0037a.jpg", - "response": "In the image, a few construction workers are working on a street. They are repairing a power pole. One man is using a blue helmet and working on the upper part of the pole, another man is using a yellow helmet and working on the lower part of the pole, and the last man is using a red helmet and working on the ground. They are all wearing white shirts.", - "id": 22088 - }, - { - "image_path": "G:\\images\\combined\\-3057-_png_jpg.rf.f89a8589e3e41bb52922b677e0fe801b.jpg", - "response": "Two engineers in white and orange helmets are discussing blueprints at a construction site.", - "id": 22089 - }, - { - "image_path": "G:\\images\\combined\\-306-_png_jpg.rf.8005b8ef51ba6c3d9c4156643d27c3a8.jpg", - "response": " A worker(315,388),(446,570) walks past a pile of peat(2,515),(996,997) at the Tarmac peat harvesting site at Rushock, Worcestershire, England.", - "id": 22090 - }, - { - "image_path": "G:\\images\\combined\\-3061-_png_jpg.rf.805129e43f1560fa122e8153afd7ba02.jpg", - "response": "The image shows a group of workers in orange jackets and grey pants working on a construction site by a river. There are several large, rectangular blocks of concrete nearby. A yellow construction vehicle, a loader, is parked on the left side of the image. The workers are standing on a patch of ground covered in small stones and next to a pile of concrete blocks. The sky is overcast and the river appears to be frozen, although there are a few patches of unfrozen water nearby.", - "id": 22091 - }, - { - "image_path": "G:\\images\\combined\\-3062-_png_jpg.rf.8af558acfd254a28b6a41425707afa90.jpg", - "response": "A pair of technicians from China Unicom are seen working on a street in this undated photo. China Unicom, the country's No.2 mobile operator, said on Tuesday it will spend 10.7 billion yuan ($1.7 billion) this year on building a nationwide 4G network. The move is part of the country's push to improve its mobile internet infrastructure. Photo: China Unicom", - "id": 22092 - }, - { - "image_path": "G:\\images\\combined\\-3064-_png_jpg.rf.afd4fef4202eb11288fb981af8c275e4.jpg", - "response": "A man in a yellow hard hat standing on a construction site. He is holding a cell phone in his hand and appears to be taking a picture. He is wearing a grey shirt and brown pants.", - "id": 22093 - }, - { - "image_path": "G:\\images\\combined\\-3065-_png_jpg.rf.5f895df335379f9698feccdd4017accf.jpg", - "response": "A large tunnel with a light on at the end of it.", - "id": 22094 - }, - { - "image_path": "G:\\images\\combined\\-3066-_png_jpg.rf.f880d9ddd1900c38d0bcb4289a89cc78.jpg", - "response": "The image shows a group of workers suspended on a bridge, working on the bridge's concrete pylon. The bridge itself is not yet complete, with a large piece of it missing. The bridge is yellow and is located in a mountainous area. The sky is blue and there are trees in the background.", - "id": 22095 - }, - { - "image_path": "G:\\images\\combined\\-3067-_png_jpg.rf.dd3d86481d34777b7dfb2e8aa3225e6f.jpg", - "response": "A man in a red uniform and a hard hat is climbing into a red cargo container. He is leaning over the side of the container and holding onto a metal bar. There is a red flag hanging from the container. The container has several written instructions on it in black ink.", - "id": 22096 - }, - { - "image_path": "G:\\images\\combined\\-3068-_png_jpg.rf.fa133599afd0f1f037727ff04604d37c.jpg", - "response": "a group of people walking across a street", - "id": 22097 - }, - { - "image_path": "G:\\images\\combined\\-3069-_png_jpg.rf.972aebf0c82904edfd9608d1020a1125.jpg", - "response": "A group of men standing on a construction site Description automatically generated", - "id": 22098 - }, - { - "image_path": "G:\\images\\combined\\-307-_png_jpg.rf.4cf2f39d025eff0cf6fd0860ccb0ad96.jpg", - "response": "A construction site with multiple cranes and workers.", - "id": 22099 - }, - { - "image_path": "G:\\images\\combined\\-3072-_png_jpg.rf.742e8241b9923507f19034d238bab38e.jpg", - "response": "A group of men wearing hard hats are sitting on a rock.", - "id": 22100 - }, - { - "image_path": "G:\\images\\combined\\-3074-_png_jpg.rf.3b53c671e66224d4aec30234fa0f5446.jpg", - "response": "A group of people working on a construction site.", - "id": 22101 - }, - { - "image_path": "G:\\images\\combined\\-3076-_png_jpg.rf.10cf9f7f871792bc9e970049b2446269.jpg", - "response": "The image shows two workers in red and yellow high-viz clothing standing on a bridge, one holding a green stick with a camera on the end. The background is a grey sky and a concrete wall. To the right of the bridge is a tall concrete pillar. In the foreground, the bridge appears to be made of a mesh-like material.", - "id": 22102 - }, - { - "image_path": "G:\\images\\combined\\-3077-_png_jpg.rf.b3baa3f0fe9230aa6b7e6f27763f6df5.jpg", - "response": "A man wearing a blue hard hat and tan coveralls is sitting on a metal hand rail. He is holding a wooden pole and looking at the camera.", - "id": 22103 - }, - { - "image_path": "G:\\images\\combined\\-3078-_png_jpg.rf.e11d34433eecbbff2e4c6938b0fa43b3.jpg", - "response": "A group of people standing in a room wearing red hard hats and yellow vests.", - "id": 22104 - }, - { - "image_path": "G:\\images\\combined\\-3079-_png_jpg.rf.1e07c73ae15d5ae4b81ac61001c6f34d.jpg", - "response": "A group of men working on a scaffold.", - "id": 22105 - }, - { - "image_path": "G:\\images\\combined\\-3080-_png_jpg.rf.66bdcbc75f7aa11476e339e1ac5c4e52.jpg", - "response": "A group of men working on a construction site.", - "id": 22106 - }, - { - "image_path": "G:\\images\\combined\\-3081-_png_jpg.rf.610683416a8bde660f57bf2ac1108c93.jpg", - "response": "In the image there are workers in front of a cave. There are four men dressed in green and yellow working on a piece of equipment. They are all wearing hard hats. The two men on the left and right are wearing yellow hard hats while the man in the middle is wearing a green one. The two men on the right are wearing blue hard hats. The men are dressed in uniforms. The cave is located behind a fence.", - "id": 22107 - }, - { - "image_path": "G:\\images\\combined\\-3083-_png_jpg.rf.1e25cfe8feeb152783ef8a87ba7a4c13.jpg", - "response": "A woman in a brown jacket and white helmet is talking on her cell phone. She is smiling and standing in front of a construction site.", - "id": 22108 - }, - { - "image_path": "G:\\images\\combined\\-3086-_png_jpg.rf.6efccc5a6229d949bfb69bd39607afd4.jpg", - "response": "a group of people standing around each other", - "id": 22109 - }, - { - "image_path": "G:\\images\\combined\\-3087-_png_jpg.rf.2b322904b3a5806262633a740fa09521.jpg", - "response": "A group of people working on a bridge or building site, with large red metal machinery working in the background.", - "id": 22110 - }, - { - "image_path": "G:\\images\\combined\\-3088-_png_jpg.rf.f4dc72232ab12ececc7fe9c23d0b61fe.jpg", - "response": "The image shows two workers suspended from a wire while they work on a tower. They are wearing safety harnesses. The tower is made of metal and is located in a rural area. The sky is blue and there are a few clouds. The workers are wearing grey uniforms. One of them is holding a tool. The tower is surrounded by greenery.", - "id": 22111 - }, - { - "image_path": "G:\\images\\combined\\-309-_png_jpg.rf.a7d2c3745cc67a3655941ade67a399f7.jpg", - "response": " Rescue workers(275,284),(475,559)(443,318),(650,647)(615,560),(822,791)(252,607),(539,743) in China are seen working to rescue a person trapped in a hole", - "id": 22112 - }, - { - "image_path": "G:\\images\\combined\\-3092-_png_jpg.rf.22e9939e60d94bb4e4a7dbcf696933f4.jpg", - "response": "In the image there is a man wearing a suit shaking the hand of a worker. The worker is wearing a red helmet and a green shirt. There are several other people in the background, some wearing similar helmets and others wearing different helmets. Some of the people are wearing uniforms, some are wearing hard hats, and some are wearing ties. In the foreground, there is a table with several rows of water bottles and a few red backpacks. On the table there is a black cloth with a red logo. In the background, there is a large building with a sign that says \"COA\". There are also several bottles of water on the ground.", - "id": 22113 - }, - { - "image_path": "G:\\images\\combined\\-3095-_png_jpg.rf.d6010a115c0b0c69ffeb95efa1be3e8d.jpg", - "response": "The image shows a group of rescue workers in safety gear working to extract a man who is trapped beneath a large rock. The workers are wearing yellow and orange safety jackets and white helmets. They are using a large piece of wood to try and shift the rock so they can reach the man. The photo appears to have been taken at a construction site.", - "id": 22114 - }, - { - "image_path": "G:\\images\\combined\\-3097-_png_jpg.rf.8e538d1d9ca3568cd54764ea4f47ec06.jpg", - "response": "A group of men working on a large piece of machinery.", - "id": 22115 - }, - { - "image_path": "G:\\images\\combined\\-3098-_png_jpg.rf.97664466b20fd95b9c38f3ef867ac975.jpg", - "response": "A construction site with several people wearing yellow vests and helmets. They are discussing the blueprints that are placed on a brick wall.", - "id": 22116 - }, - { - "image_path": "G:\\images\\combined\\-3099-_png_jpg.rf.709f7d194675c4df77cf5887ea612741.jpg", - "response": "A man wearing a yellow hat and a brown shirt is juggling three plastic water bottles in the air. The man is also wearing a yellow hard hat. He is standing in front of a green construction fence.", - "id": 22117 - }, - { - "image_path": "G:\\images\\combined\\-3100-_png_jpg.rf.d54d8b4e49d405623e8b8f0c7f0bfe02.jpg", - "response": "A construction worker in an orange vest and yellow hard hat throws a yellow hard hat into the air.", - "id": 22118 - }, - { - "image_path": "G:\\images\\combined\\-3101-_png_jpg.rf.08260422b26fd5183f24ffd7659fefea.jpg", - "response": "The image shows a group of workers in a room. They are all wearing yellow hard hats, and are working on a project involving brickwork. The room has a concrete floor and walls, and there is a large V-shaped piece of concrete on the left side of the room. Some of the workers are standing at the front of the room, while others are further back. A few of them are bent over, working on the project.", - "id": 22119 - }, - { - "image_path": "G:\\images\\combined\\-3102-_png_jpg.rf.5fb492f462dac41a77283998e573d362.jpg", - "response": "The image shows a group of rescue workers in orange uniforms working to free a man trapped under a large piece of construction equipment. The man is lying on the ground with his head exposed and is being supported by several of the rescue workers. One worker is seen pulling on a black strap while another worker is using a tool to pry something off the man's body. There are also several other people in the scene, some of whom appear to be onlookers. The rescue workers are wearing helmets and the background shows a concrete wall and a large pipe.", - "id": 22120 - }, - { - "image_path": "G:\\images\\combined\\-3103-_png_jpg.rf.61c48e6bb6472b3a50d5057ba09fee30.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing white shirts and red helmets. In the background, there is a yellow container and a large crane. The men are standing on a grey surface, which appears to be a railway track. Some of them are also wearing name tags.", - "id": 22121 - }, - { - "image_path": "G:\\images\\combined\\-3104-_png_jpg.rf.a23ab05d4bfef20b09806684463f9079.jpg", - "response": "A worker in a red jumpsuit and a hard hat shines a light into a dark tunnel. They are standing on a platform in the tunnel, which has a geometric pattern on it. The worker is holding a light in their hand.", - "id": 22122 - }, - { - "image_path": "G:\\images\\combined\\-3105-_png_jpg.rf.1e20abe08535ea90de11ceff24880ec5.jpg", - "response": "A worker stands on a girder of a bridge under construction in China's Inner Mongolia Autonomous Region.", - "id": 22123 - }, - { - "image_path": "G:\\images\\combined\\-3106-_png_jpg.rf.4df6c119f23a1b0ef6cb2b543f9dedde.jpg", - "response": "A worker in a yellow hard hat and orange vest sprays water down a dark tunnel.", - "id": 22124 - }, - { - "image_path": "G:\\images\\combined\\-3108-_png_jpg.rf.79b372968beb21177cd893313c8d0866.jpg", - "response": "A large building under construction with a group of people inside of it.", - "id": 22125 - }, - { - "image_path": "G:\\images\\combined\\-3109-_png_jpg.rf.05aba589fc02e39c3eca2024bb551da5.jpg", - "response": "A group of workers are working on a construction site.", - "id": 22126 - }, - { - "image_path": "G:\\images\\combined\\-311-_png_jpg.rf.e25e6d0b36e361d80a5cb275649fd368.jpg", - "response": "A construction site with several people walking through a large puddle of water. In the background there are several tall buildings and a few cranes.", - "id": 22127 - }, - { - "image_path": "G:\\images\\combined\\-3111-_png_jpg.rf.5cd11db52ac3300b5d14567469a26ab3.jpg", - "response": "A group of construction workers standing in a tunnel.", - "id": 22128 - }, - { - "image_path": "G:\\images\\combined\\-3112-_png_jpg.rf.836875d329d76266595f12dd95c26417.jpg", - "response": "A group of people working on a construction site.", - "id": 22129 - }, - { - "image_path": "G:\\images\\combined\\-3116-_png_jpg.rf.7f2a5923bf2b46b05bf6b829b7b8f14a.jpg", - "response": "A group of people working on a large piece of equipment.", - "id": 22130 - }, - { - "image_path": "G:\\images\\combined\\-3117-_png_jpg.rf.02b7efe3197fb303493d5713b8f7d841.jpg", - "response": "A man wearing a yellow hard hat and a brown shirt is using a measuring tape to measure a wall.", - "id": 22131 - }, - { - "image_path": "G:\\images\\combined\\-3119-_png_jpg.rf.d5cf837635eb212aaf85ef91d426f4ff.jpg", - "response": "The image shows a group of three people standing in a large underground cave. The cave is grey in color and there are large rocks and debris scattered around the floor. The walls of the cave are covered in a thick layer of grey stone. The group of people are wearing hard hats and coats and are standing close together, looking into the distance.", - "id": 22132 - }, - { - "image_path": "G:\\images\\combined\\-312-_png_jpg.rf.586aa51cbf0774a827b50f28ee990769.jpg", - "response": "A giant earth mover with three men in high visibility gear standing on it.", - "id": 22133 - }, - { - "image_path": "G:\\images\\combined\\-3121-_png_jpg.rf.df0042962a54e49f64d00db524d06f0c.jpg", - "response": "The image shows a construction site for a new apartment complex. The site is located on a street corner and is in the middle of several other buildings. In the foreground, a man is digging a hole with a shovel. He is wearing a white shirt and blue pants. Another man is standing further back on the left side of the image. There is a car parked on the street in front of the buildings. A yellow and blue crane is located on the left side of the image, behind the man digging the hole. The ground is covered in dirt and there are several bags of concrete scattered around the site. The sky is overcast and there are no clouds visible.", - "id": 22134 - }, - { - "image_path": "G:\\images\\combined\\-3123-_png_jpg.rf.103932c1102eb1b708959cfb0f4e815c.jpg", - "response": "A man in a blue shirt and yellow hard hat is pushing a cart of bricks.", - "id": 22135 - }, - { - "image_path": "G:\\images\\combined\\-3124-_png_jpg.rf.1dcf5230769c08a0424b88dd218452c4.jpg", - "response": "A man in a white uniform is working with metal in a factory. He is standing on a metal platform and is surrounded by large metal objects. There is a large amount of metal being melted in a furnace in the background. The room is filled with a bright yellow light from the furnace. There is also a yellow light shining on the man from the right side of the image.", - "id": 22136 - }, - { - "image_path": "G:\\images\\combined\\-3126-_png_jpg.rf.dea658c6337255f312c36dd171390ffa.jpg", - "response": "a group of people working on a brick wall", - "id": 22137 - }, - { - "image_path": "G:\\images\\combined\\-3128-_png_jpg.rf.a935493f7d789546c31616cb0124d866.jpg", - "response": "A construction site with a large blue crane working on a building in the background.", - "id": 22138 - }, - { - "image_path": "G:\\images\\combined\\-3129-_png_jpg.rf.536cff132194a5e4e8000bc4e2b1ca37.jpg", - "response": "A bus is on its side in a ditch next to power lines.", - "id": 22139 - }, - { - "image_path": "G:\\images\\combined\\-313-_png_jpg.rf.2b3284a2f69c60f700a27662348bc46d.jpg", - "response": "a man in a yellow hard hat is working on a large pipe.", - "id": 22140 - }, - { - "image_path": "G:\\images\\combined\\-3131-_png_jpg.rf.97939076611e7d0b6d85bd352db089d8.jpg", - "response": "A man wearing a white hard hat and a tool belt is stacking wood.", - "id": 22141 - }, - { - "image_path": "G:\\images\\combined\\-3132-_png_jpg.rf.07053ce55fa6d885bc2b1ac02113fdb2.jpg", - "response": "A man wearing a hard hat stands on a construction site. He is holding a set of plans in his hand. The man is wearing a grey boiler suit and a white hard hat. The site is in a concrete structure with large concrete pillars. There is scaffolding on the left hand side of the image.", - "id": 22142 - }, - { - "image_path": "G:\\images\\combined\\-3133-_png_jpg.rf.615d321b06778a599f48b8699b2e8e0d.jpg", - "response": "A group of people standing in front of a building.", - "id": 22143 - }, - { - "image_path": "G:\\images\\combined\\-3134-_png_jpg.rf.21638d1381c2c4615e2b32649a04659e.jpg", - "response": "A group of people walking through a tunnel.", - "id": 22144 - }, - { - "image_path": "G:\\images\\combined\\-3138-_png_jpg.rf.8f4bd8ad1e68c9fc5e7b5b5a992abf82.jpg", - "response": "A group of men working on a oil rig.", - "id": 22145 - }, - { - "image_path": "G:\\images\\combined\\-314-_png_jpg.rf.29c41f3e45e2f4af749c2725df275c70.jpg", - "response": "a man wearing a yellow hat and orange vest", - "id": 22146 - }, - { - "image_path": "G:\\images\\combined\\-3140-_png_jpg.rf.780fee93a16ee9e638493b31fbb93e85.jpg", - "response": "The image shows a group of workers taking a break. They are all wearing yellow hard hats and drinking water from plastic bottles. Some of them are sitting on a pile of grey stones, which also serve as a makeshift seat. A person on the far right is holding a bottle of water and has a pink scarf around their neck. A yellow hard hat is suspended above them, and there is a yellow hard hat on the left side of the image. A sign with Chinese characters is visible above the workers.", - "id": 22147 - }, - { - "image_path": "G:\\images\\combined\\-3141-_png_jpg.rf.aaff1035c4b5e18a8df9824879e3702b.jpg", - "response": "A miner in a hard hat and high visibility vest, holding a walkie talkie.", - "id": 22148 - }, - { - "image_path": "G:\\images\\combined\\-3142-_png_jpg.rf.9590657b052353883be4e2351656adc0.jpg", - "response": "A construction worker is working on a building that is under construction. The worker is standing on a ladder and is framed by a metal structure. The sky is blue and clear.", - "id": 22149 - }, - { - "image_path": "G:\\images\\combined\\-3145-_png_jpg.rf.c2800d6f1d238b5c31fa8fc071ef0e5b.jpg", - "response": "A group of men working on some power lines.", - "id": 22150 - }, - { - "image_path": "G:\\images\\combined\\-3147-_png_jpg.rf.5ba4c26f7b219476e999e740d17674d7.jpg", - "response": "A man with a hard hat and a man without a hard hat standing in a tunnel.", - "id": 22151 - }, - { - "image_path": "G:\\images\\combined\\-3148-_png_jpg.rf.da0dedddc0da7a8d031f82e32cd0dd15.jpg", - "response": "A group of people working on metal rods in a factory.", - "id": 22152 - }, - { - "image_path": "G:\\images\\combined\\-3149-_png_jpg.rf.cbd9fe044787ac43c13321ada00d3a03.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest is looking into a device.", - "id": 22153 - }, - { - "image_path": "G:\\images\\combined\\-3150-_png_jpg.rf.0ba6e187d0e4ceff7adbc26cdc136d8f.jpg", - "response": "A group of rescue workers in orange jumpsuits and yellow hard hats are working to remove debris and search for survivors in a collapsed building. Some of the workers are using tools to cut through the rubble, while others are carefully removing pieces of debris with their hands. There are several people visible in the image, including some who appear to be injured. The workers are spread out throughout the scene, with some standing on the rubble and others working on the ground. The building behind them appears to be partially collapsed, with large pieces of concrete and rebar scattered around.", - "id": 22154 - }, - { - "image_path": "G:\\images\\combined\\-3153-_png_jpg.rf.0ffe645c2d2b00df5f4f30946a4592b6.jpg", - "response": "A group of men standing around each other.", - "id": 22155 - }, - { - "image_path": "G:\\images\\combined\\-3157-_png_jpg.rf.b89606753eb092c44222f085f71e358d.jpg", - "response": "A couple of men are on a power line Description automatically generated", - "id": 22156 - }, - { - "image_path": "G:\\images\\combined\\-3158-_png_jpg.rf.010674f8fa3e3b8cacc918c9dcc26a0e.jpg", - "response": "Some construction workers are building a structure in a field.", - "id": 22157 - }, - { - "image_path": "G:\\images\\combined\\-3159-_png_jpg.rf.d51bd733bf4a131dc2322a3446289b4b.jpg", - "response": "The image shows two men in green uniform standing on a construction site. Both of them are wearing red helmets. One man is on the left side of the image, and he is wearing a red star-shaped decoration on his helmet. The other man is on the right side of the image, and he is wearing a red decoration that looks like a dragon.", - "id": 22158 - }, - { - "image_path": "G:\\images\\combined\\-316-_png_jpg.rf.b08d9e7e66569ef96ee430ce2b3ed60e.jpg", - "response": "A construction worker wearing a yellow vest and a white helmet is working on a building site. The worker is standing on a platform and appears to be focused on his task. There are several items of equipment around the site including a red piece of machinery with two red dials and some scaffolding. The sky above the building site is blue with large white clouds.", - "id": 22159 - }, - { - "image_path": "G:\\images\\combined\\-3160-_png_jpg.rf.be981adcc2f916686e83e789dae1c941.jpg", - "response": "A group of five construction workers are working on a building site. They are all wearing high visibility clothing and are standing on a concrete pile. Some of them are holding large steel rods.", - "id": 22160 - }, - { - "image_path": "G:\\images\\combined\\-3161-_png_jpg.rf.c62bf3479e7848b7c4e7a8d163b8b90e.jpg", - "response": "In the image there is a train with a yellow and black engine and grey wheels. The train is on a track that is made of grey material. There is a pile of grey material to the left of the train. In the foreground there is a worker in black pants and a yellow helmet. He is holding a large grey object with a black spot on top. Another worker in black pants and a yellow helmet is standing above him, holding a large grey object with a black spot on top.", - "id": 22161 - }, - { - "image_path": "G:\\images\\combined\\-3162-_png_jpg.rf.75ff44d6bb4dafda95ace47eea52c7fe.jpg", - "response": "The image shows a group of workers in yellow vests and safety gear standing on train tracks inside a dark tunnel. There is a large metal train car on a track to the right of the group, and a second track to the left. The workers are standing on the tracks, with some of them holding tools. One of the workers is pointing towards the right, and another has a flashlight on their head. The background is a concrete wall and the ceiling is a dark grey.", - "id": 22162 - }, - { - "image_path": "G:\\images\\combined\\-3165-_png_jpg.rf.22d0f79a3f2b66a09d92ec9e5699797a.jpg", - "response": "A construction worker leans over a white fence to look at a crowd of people.", - "id": 22163 - }, - { - "image_path": "G:\\images\\combined\\-3166-_png_jpg.rf.2af19ed2bb7f449b4bcc9cd3c3e72638.jpg", - "response": " Rescuers(586,173),(850,996)(395,490),(588,997)(323,234),(460,562)(2,321),(167,997) work to free trapped workers at a construction site in China's Hebei province", - "id": 22164 - }, - { - "image_path": "G:\\images\\combined\\-3167-_png_jpg.rf.0af8e14a4856604a1ba685dea78e3137.jpg", - "response": "A construction worker working on a large pipe that is sticking out of the ground.", - "id": 22165 - }, - { - "image_path": "G:\\images\\combined\\-3168-_png_jpg.rf.dc808cd720499cab1befc00fd8f14c8e.jpg", - "response": "A worker in a yellow hard hat and grey work suit is working on wires in a large\u6d1e\u7a74-like area. The worker is in the center of the image, with a yellow helmeted head and a tool belt around their waist. They are working on wires that are strung up in front of them, possibly fixing a problem. The wires are white and run throughout the image. The worker is the main focus of the image, with the wires and the cave-like area serving as the background.", - "id": 22166 - }, - { - "image_path": "G:\\images\\combined\\-3169-_png_jpg.rf.a78f7aa4e805c99a9035d705bb887822.jpg", - "response": "A city street with power lines and a small crane working on one of them.", - "id": 22167 - }, - { - "image_path": "G:\\images\\combined\\-3170-_png_jpg.rf.a0c55f75ebd5149f7bac74f76fa8c58f.jpg", - "response": " Four people(523,436),(651,783)(374,412),(508,803)(633,383),(779,997) in hard hats(559,435),(611,476)(638,382),(701,433)(410,411),(484,462) standing on a bridge", - "id": 22168 - }, - { - "image_path": "G:\\images\\combined\\-3171-_png_jpg.rf.84feddfb46d5505d1117db931f8798f6.jpg", - "response": "Four men in a parking lot wearing hard hats.", - "id": 22169 - }, - { - "image_path": "G:\\images\\combined\\-3172-_png_jpg.rf.79002673a23cc1cca675536c4a667699.jpg", - "response": "In the image there are several workers at a construction site wearing yellow hard hats. They are working on a large concrete structure that has rebar sticking out of it. The workers are holding onto a large metal beam while pulling on a rope attached to a large hook. There is also a large metal tube on the ground in the foreground.", - "id": 22170 - }, - { - "image_path": "G:\\images\\combined\\-3174-_png_jpg.rf.eb29cfd51f67d174ff5d951e1bd49920.jpg", - "response": "A group of workers in red vests and hard hats, one of them is throwing a helmet into the air.", - "id": 22171 - }, - { - "image_path": "G:\\images\\combined\\-3177-_png_jpg.rf.64ba9a3c15a5eb437f4f727f7a1903d8.jpg", - "response": "A man in a blue hard hat and orange safety vest is pointing at a piece of equipment. Another man in a blue hard hat and orange safety vest is standing behind him. They are both on a boat.", - "id": 22172 - }, - { - "image_path": "G:\\images\\combined\\-3178-_png_jpg.rf.12e73c6ef7ca5e7214bc320453ed0261.jpg", - "response": "A construction site with multiple people working on it.", - "id": 22173 - }, - { - "image_path": "G:\\images\\combined\\-3179-_png_jpg.rf.0768f0a466b325f3a835fc1a2e7000dc.jpg", - "response": "A group of rescue workers are climbing up a steep, snowy hill. They are wearing bright orange safety jackets and blue jackets with yellow helmets. The hillside is rocky and covered in snow, and the workers are using rope to pull themselves up the side of the mountain. The sky is bright and sunny, but the snow on the ground creates a misty atmosphere.", - "id": 22174 - }, - { - "image_path": "G:\\images\\combined\\-3180-_png_jpg.rf.6062875ecb44f1b9a0db81506f5d4a2f.jpg", - "response": "A man is welding steel at a construction site. He is wearing a grey shirt, yellow hat and orange gloves. He is on a platform and there are stacks of wood in the background.", - "id": 22175 - }, - { - "image_path": "G:\\images\\combined\\-3183-_png_jpg.rf.0d043b12f8539c19f8151d0cda8829d3.jpg", - "response": "A group of three workers, one holding a clipboard, are standing on a construction site.", - "id": 22176 - }, - { - "image_path": "G:\\images\\combined\\-3184-_png_jpg.rf.873b14e0dd78b4f7af20138d37bd6c2d.jpg", - "response": "A group of workers are working on a large red structure. Some of them are sitting on the structure while others are standing around it. They are all wearing hard hats and some of them are wearing brown jackets. The workers are in what appears to be a construction site.", - "id": 22177 - }, - { - "image_path": "G:\\images\\combined\\-3189-_png_jpg.rf.ed0ab9b11656f2aaaa52e54720367117.jpg", - "response": "In the image two construction workers are on a concrete construction site. They are wearing hard hats and one of them is using a power tool. The sky is blue and cloudless.", - "id": 22178 - }, - { - "image_path": "G:\\images\\combined\\-3190-_png_jpg.rf.a7e543f10e4eff0f92172b0b3e056f51.jpg", - "response": "a group of men standing around a construction site", - "id": 22179 - }, - { - "image_path": "G:\\images\\combined\\-3191-_png_jpg.rf.34aab29655d71b9c8374b2b7ad2b5029.jpg", - "response": "A man in a blue uniform and yellow helmet is on a ladder, working on a power line.", - "id": 22180 - }, - { - "image_path": "G:\\images\\combined\\-3193-_png_jpg.rf.b460cf628a9625afbd86adaa907f34bf.jpg", - "response": "The picture shows two workers in Xigang Village of Beichuan County, Sichuan Province, who are building a 10-meter-high iron tower. The sky is blue, and the clouds are white. The two workers are wearing yellow work clothes and white helmets. The one in the front is holding an electric drill and drilling a hole in a red steel bar. The one behind is connecting the red steel bar with a rope. There are several other workers in the background. On the ground, there are several long and short red ropes, a few white helmets, and some unknown objects.", - "id": 22181 - }, - { - "image_path": "G:\\images\\combined\\-3195-_png_jpg.rf.5b749fbce1fbe8c76b2e8a3d743210fa.jpg", - "response": "A man standing on a cliff with a blue hat on.", - "id": 22182 - }, - { - "image_path": "G:\\images\\combined\\-3197-_png_jpg.rf.e1e7560b66b58bd9eec2774a61e6e7f6.jpg", - "response": "A construction site with a few people working on it.", - "id": 22183 - }, - { - "image_path": "G:\\images\\combined\\-3198-_png_jpg.rf.4a21bc2b6161ddcfb08f3dcaedbe28f0.jpg", - "response": "An engineer in a red hard hat leaning over a large ship engine.", - "id": 22184 - }, - { - "image_path": "G:\\images\\combined\\-320-_png_jpg.rf.ee09231c583cba382f4a2269ee67b8f9.jpg", - "response": "a group of men walking down a street", - "id": 22185 - }, - { - "image_path": "G:\\images\\combined\\-3203-_png_jpg.rf.5552d6da8564f3e50349a9944197eaa3.jpg", - "response": "In the image there is a person wearing a white shirt, grey pants, and a red hard hat. They are standing in a factory setting. There is a long conveyor belt with many black objects on it. A person is operating a machine that is putting the black objects on the conveyor belt. There is also a second person partially visible at the bottom left of the image. In the background there is a person wearing a yellow hard hat and a red helmet. There is also a white helmet and a yellow helmet. There is a white object with two black arrows on it and a grey box with a white arrow on it.", - "id": 22186 - }, - { - "image_path": "G:\\images\\combined\\-3204-_png_jpg.rf.342c91c6e65aeeef2c9aef4586f7d643.jpg", - "response": "A rescue team of three people in red jackets are climbing down a steep, rocky trail. They are holding onto ropes and using their hands and feet to navigate the terrain. The trail is narrow and the rocks are large and jagged. The sky is bright and the sun is shining through the trees above. There is a dog at the bottom of the trail, looking up at the rescue team. The dog has a long tail and is wearing a blue collar.", - "id": 22187 - }, - { - "image_path": "G:\\images\\combined\\-3205-_png_jpg.rf.b667d6165062bcbe0f5e6451f775579e.jpg", - "response": "A group of men wearing hard hats and work clothes are standing together.", - "id": 22188 - }, - { - "image_path": "G:\\images\\combined\\-3206-_png_jpg.rf.1e44a2516629e63e138916ad0168932d.jpg", - "response": "A construction worker in a yellow safety jacket and a worker in a brown jacket and blue hard hat looking at blueprints on a jobsite.", - "id": 22189 - }, - { - "image_path": "G:\\images\\combined\\-3207-_png_jpg.rf.593b0b8eb5949ed186fa00af2ba769ab.jpg", - "response": "A group of men in blue uniforms working on a power box.", - "id": 22190 - }, - { - "image_path": "G:\\images\\combined\\-3208-_png_jpg.rf.226c184d803b26b53caa0638b1ff816a.jpg", - "response": "A group of people working on a building.", - "id": 22191 - }, - { - "image_path": "G:\\images\\combined\\-3209-_png_jpg.rf.ee780d3fc84acc9269e7c96c2626c3f0.jpg", - "response": "A tunneling machine in a shaft with workers around it.", - "id": 22192 - }, - { - "image_path": "G:\\images\\combined\\-3210-_png_jpg.rf.b8cc9265916ef94a83fc83167e6e73e5.jpg", - "response": "Some construction workers are working on a foundation for a building.", - "id": 22193 - }, - { - "image_path": "G:\\images\\combined\\-3211-_png_jpg.rf.3435d5095c46ad220bfe07d75fe53218.jpg", - "response": "In the image there is a person wearing a white suit and a green helmet, who is standing in front of a large metal door that is open and there is a bright yellow light coming from inside the room. The room itself is very large and has a lot of metal equipment and tools scattered around. There is also a lot of metal bars and pieces of metal in the room.", - "id": 22194 - }, - { - "image_path": "G:\\images\\combined\\-3215-_png_jpg.rf.0188fff9c10557861e4a6b97679ee965.jpg", - "response": "The image shows a railway construction site in a mountain valley. There is a steep hillside with a yellow and green protective fence at the top, and a blue and white protective fence at the bottom. There is a green tunnel in the foreground, and a red and white tunnel in the background. Several workers are working on the construction site, with some wearing yellow helmets and some wearing white shirts. There is also a truck parked on the right side of the image.", - "id": 22195 - }, - { - "image_path": "G:\\images\\combined\\-3216-_png_jpg.rf.7f369a8c6a82b3921038551fb242a425.jpg", - "response": "A factory with several workers and machines.", - "id": 22196 - }, - { - "image_path": "G:\\images\\combined\\-3218-_png_jpg.rf.1b3c91a027d2fe93bdbac2b0aec05ebe.jpg", - "response": "a group of men working on a construction site", - "id": 22197 - }, - { - "image_path": "G:\\images\\combined\\-3219-_png_jpg.rf.88c939b8139590230c84eb58dce74035.jpg", - "response": "a man wearing a blue hard hat standing in front of a yellow and black truck", - "id": 22198 - }, - { - "image_path": "G:\\images\\combined\\-322-_png_jpg.rf.e37bd76b03e7d9d04737fbdd6d2990a7.jpg", - "response": "A group of men standing around a construction site wearing hard hats and yellow vests.", - "id": 22199 - }, - { - "image_path": "G:\\images\\combined\\-3221-_png_jpg.rf.af61e8f282c477abde36fde3c89a27df.jpg", - "response": "A group of people standing in front of a large piece of equipment.", - "id": 22200 - }, - { - "image_path": "G:\\images\\combined\\-3222-_png_jpg.rf.35e369c78f863c5d80583b85d92e76b6.jpg", - "response": "A group of men wearing hard hats are gathered around a wall.", - "id": 22201 - }, - { - "image_path": "G:\\images\\combined\\-3224-_png_jpg.rf.917344e576a973325fb556f711b76cea.jpg", - "response": "A group of workers in uniforms and helmets are working on a construction site. They are holding onto ropes and straps to secure themselves as they work. The ground is covered in snow and there are power lines above.", - "id": 22202 - }, - { - "image_path": "G:\\images\\combined\\-3226-_png_jpg.rf.aea9c79026db2d8ff9b1704fc07fbf5e.jpg", - "response": "A worker in a blue hard hat is looking at a laptop. There is also a stack of papers and a keyboard next to the laptop. The worker is wearing a brown uniform. There is also a tablet on the ground. In the background, there is a person in a white shirt and black pants. They are wearing a yellow hard hat. There is also a black and yellow sign on the wall.", - "id": 22203 - }, - { - "image_path": "G:\\images\\combined\\-3227-_png_jpg.rf.bae609d9a41b09fc7c02cc6921fe5d87.jpg", - "response": "A couple of workers are building a cell phone tower.", - "id": 22204 - }, - { - "image_path": "G:\\images\\combined\\-3229-_png_jpg.rf.a8c97d21e8dce44139f9ddf11d785ecd.jpg", - "response": "A group of men wearing hard hats are looking at a blueprint.", - "id": 22205 - }, - { - "image_path": "G:\\images\\combined\\-3231-_png_jpg.rf.18f8f6895074cd0ef76999920793c6f7.jpg", - "response": "A group of men working on electrical towers.", - "id": 22206 - }, - { - "image_path": "G:\\images\\combined\\-3232-_png_jpg.rf.07de1ae2d3996bf18230672c2eb87cbe.jpg", - "response": "A construction worker wearing a white helmet and orange vest is building a scaffold on a construction site. The worker is on a metal structure with red pipes. He is holding a cell phone in his left hand and a cigarette in his right hand. He is wearing grey pants and a red and white hat. There is a white building in the background. To the right of the image is a website address and a copyright notice.", - "id": 22207 - }, - { - "image_path": "G:\\images\\combined\\-3236-_png_jpg.rf.3bebd2f1309f5a6e97199455f23a2b4b.jpg", - "response": "A group of men in suits and hard hats are shaking hands in front of a building under construction.", - "id": 22208 - }, - { - "image_path": "G:\\images\\combined\\-3237-_png_jpg.rf.35eecc64e0571f13d56c93da8c2b0f11.jpg", - "response": "A man in a red uniform is grabbing a box from a forklift. He is holding his back in pain.", - "id": 22209 - }, - { - "image_path": "G:\\images\\combined\\-3238-_png_jpg.rf.89ab5aaa2f22cff0cd752349b2dfe12e.jpg", - "response": "The image is a poster for the company called 'safety'. The poster features a man in a suit wearing a hard hat. He is standing in front of a group of men dressed in work clothes and hard hats. They are all standing in front of a large industrial machine.", - "id": 22210 - }, - { - "image_path": "G:\\images\\combined\\-324-_png_jpg.rf.bedcd673230cefbeace6d0104b51a283.jpg", - "response": "A worker is seen at a heavy machinery workshop in this undated photo. The photo was taken on June 10, 2013 and provided by Xinhua News Agency.", - "id": 22211 - }, - { - "image_path": "G:\\images\\combined\\-3243-_png_jpg.rf.34f5c534976a911a6fc866a6eda0b504.jpg", - "response": "A close up of two people wearing blue hard hats, one person is smiling at the camera.", - "id": 22212 - }, - { - "image_path": "G:\\images\\combined\\-3246-_png_jpg.rf.723da318edb799947f117ba51c6f5a30.jpg", - "response": "A worker in a blue uniform and hat is standing in a flooded tunnel. They are holding a light and looking at the water. The tunnel walls are concrete and there are pipes on the wall. The worker is wearing a blue hat and has a light on.", - "id": 22213 - }, - { - "image_path": "G:\\images\\combined\\-3247-_png_jpg.rf.fe936dc73efe80c84db182eaaea52c3a.jpg", - "response": " Three men(3,272),(567,996)(610,277),(995,998) wearing hard hats(269,272),(460,439)(723,275),(906,389) are looking at a clipboard(438,595),(636,755).", - "id": 22214 - }, - { - "image_path": "G:\\images\\combined\\-3249-_png_jpg.rf.ad243006e2c550e295551d6254155c15.jpg", - "response": "A group of people standing around each other.", - "id": 22215 - }, - { - "image_path": "G:\\images\\combined\\-3250-_png_jpg.rf.f8e52e38050b9ae54a3d9e3f549047ff.jpg", - "response": "A group of men wearing hard hats, some in suits and some in business casual, stand in a construction area.", - "id": 22216 - }, - { - "image_path": "G:\\images\\combined\\-3251-_png_jpg.rf.cb7882e50f36d56271076cae1fed2dab.jpg", - "response": "A man in a blue hat and tan shirt is working on a power line.", - "id": 22217 - }, - { - "image_path": "G:\\images\\combined\\-3252-_png_jpg.rf.4df8300bbbd3b066472880ded8e522ed.jpg", - "response": "The image shows a large construction site with a large tunnel under construction. The tunnel is blue and yellow and is currently covered in a white dust. There are three workers in the image, one in the foreground on the left, one in the middle of the scene, and one on the far right. The two workers in the middle are standing on a yellow ladder. The worker on the far right is holding a large white object. The sky above the site is blue.", - "id": 22218 - }, - { - "image_path": "G:\\images\\combined\\-3254-_png_jpg.rf.e340011fda5d09fdac15b63356dd5e55.jpg", - "response": "A large truck with a trailer is being loaded with equipment by workers.", - "id": 22219 - }, - { - "image_path": "G:\\images\\combined\\-3256-_png_jpg.rf.e7f000160ba67f373b084fc4272ecfad.jpg", - "response": "A group of men working on a construction site.", - "id": 22220 - }, - { - "image_path": "G:\\images\\combined\\-3257-_png_jpg.rf.dfa6b00371e928db40b172953c29d960.jpg", - "response": "A worker in a yellow hat and blue coveralls is climbing a grey pole to put up a red and white sign. The pole is grey and has a sign on it saying '1\u53f7' in red. There is a grey cage around the pole. In the background there is a grey sky and a street light. To the right of the pole are green leaves.", - "id": 22221 - }, - { - "image_path": "G:\\images\\combined\\-3260-_png_jpg.rf.58ecb4cb871d12646262ea5b061e3f92.jpg", - "response": "A construction site with three people in the foreground wearing hard hats and work clothes. They are looking at a fourth person who is in the background. This person is holding a large piece of cardboard with a blueprint on it. The blueprint is of a house being built. In the background, there is a crane lifting a large beam. The sky is blue with clouds.", - "id": 22222 - }, - { - "image_path": "G:\\images\\combined\\-3261-_png_jpg.rf.dd3ebfbe6d9f0c8250cbe6861490bff3.jpg", - "response": "A construction worker wearing a yellow hat with the number 10 on it.", - "id": 22223 - }, - { - "image_path": "G:\\images\\combined\\-3263-_png_jpg.rf.c00b35f4c51b8131f49086fa4319c9cf.jpg", - "response": "A man wearing a yellow hard hat, blue gloves and a yellow vest is carrying a long metal pipe on his shoulder. He is standing in front of a construction site.", - "id": 22224 - }, - { - "image_path": "G:\\images\\combined\\-3264-_png_jpg.rf.6854892cd3ba9a358e54e3ce54bc270f.jpg", - "response": "Men in orange vests and safety gear are working on a construction site.", - "id": 22225 - }, - { - "image_path": "G:\\images\\combined\\-3266-_png_jpg.rf.e254ab8dd267152ab85d384c206a64c7.jpg", - "response": "A photo of two men working on a solar panel installation in a desert. They are both wearing yellow hard hats and grey jumpsuits. In the foreground, a man is pulling a solar panel while the other man looks on. In the background, another man is visible, also working on the installation.", - "id": 22226 - }, - { - "image_path": "G:\\images\\combined\\-3267-_png_jpg.rf.2bd0f0466e4f6ac10c9aff16f0b35364.jpg", - "response": "A man and a woman wearing yellow hard hats are looking at a blueprint. They are standing in a construction site.", - "id": 22227 - }, - { - "image_path": "G:\\images\\combined\\-3269-_png_jpg.rf.5cfa7b49371001df4e43a8a13e593a2d.jpg", - "response": "The image shows a snowy scene with three men dressed in red and grey. They are working on an electricity pylon, with two of them holding a large metal rod while the third one is fixing it. They are surrounded by snow-covered trees.", - "id": 22228 - }, - { - "image_path": "G:\\images\\combined\\-3271-_png_jpg.rf.ed1509bac29eda6b32c26682ed5ef896.jpg", - "response": "A group of people standing around a construction site.", - "id": 22229 - }, - { - "image_path": "G:\\images\\combined\\-3272-_png_jpg.rf.58ea94e25f0ac748dd71a53d68f18cdb.jpg", - "response": "The image shows a group of five people working on a construction site. They are all wearing safety gear including hard hats and are engaged in various tasks. There is a large pile of grey concrete next to them and a trowel in the foreground. In the background, there are several steel beams and a tower crane. The sky is grey and overcast.", - "id": 22230 - }, - { - "image_path": "G:\\images\\combined\\-3274-_png_jpg.rf.d66c99b03e4cdf5f0ed724bb0d441acb.jpg", - "response": "A worker with a face mask that has the image of Chinese leader Xi Jinping on it.", - "id": 22231 - }, - { - "image_path": "G:\\images\\combined\\-3277-_png_jpg.rf.3aad9fd7c10891f2a69aa5770677ccf1.jpg", - "response": "A group of men standing in front of a building under construction.", - "id": 22232 - }, - { - "image_path": "G:\\images\\combined\\-328-_png_jpg.rf.5e9867db3651436bbeafbd1135916065.jpg", - "response": "a person wearing a white hard hat and blue coveralls standing in front of a large building under construction with lots of steel beams and pipes", - "id": 22233 - }, - { - "image_path": "G:\\images\\combined\\-3280-_png_jpg.rf.41950c9ef96329ded61c4d0a238e37e1.jpg", - "response": "The image shows the interior of a large tunnel that is under construction. The tunnel is white and appears to be quite large. There are three people in the image, two of them are wearing hard hats and one is wearing a red shirt. There is a machine in the tunnel that looks like a large drill or boring machine. There are also several cables and pipes visible in the tunnel. The floor of the tunnel is covered in debris and there are several bags of debris piled up against the wall.", - "id": 22234 - }, - { - "image_path": "G:\\images\\combined\\-3282-_png_jpg.rf.0a4caae00b9b0212fdd1bd6a1064ad84.jpg", - "response": "In the image, there is a worker wearing a mask and standing in a factory. They are working on a large metal object, possibly a piece of machinery, using a grinding wheel. The worker is positioned in front of the object and is holding the grinding wheel in their hand. The factory has a green color scheme and there are sparks flying from the grinding wheel.", - "id": 22235 - }, - { - "image_path": "G:\\images\\combined\\-3283-_png_jpg.rf.312cbfe798a25586a8cc7aef906db2e8.jpg", - "response": "The image shows two workers hiking up a snowy mountain. They are wearing orange work suits and blue helmets. The mountain is covered in snow and has some vegetation. There are some terraces visible in the background. The sky is dark and it looks like a storm is coming.", - "id": 22236 - }, - { - "image_path": "G:\\images\\combined\\-3285-_png_jpg.rf.1555f844b607950556cf9f08e8b13f55.jpg", - "response": "A worker is fixing a power line. He is wearing a white shirt and a blue helmet. He is on a red ladder. There are many wires around him.", - "id": 22237 - }, - { - "image_path": "G:\\images\\combined\\-3286-_png_jpg.rf.bc12fbc3c5e16c80d04934313d9ea0e6.jpg", - "response": "A construction worker welding steel at a construction site.", - "id": 22238 - }, - { - "image_path": "G:\\images\\combined\\-3287-_png_jpg.rf.7f0c5ebfbde00f62c7166d7307724dc9.jpg", - "response": "A man wearing a red uniform and a hard hat sitting on a cement block.", - "id": 22239 - }, - { - "image_path": "G:\\images\\combined\\-3288-_png_jpg.rf.9c82f24d0b23d267213d8c440617b481.jpg", - "response": "A group of workers in yellow and orange vests and red helmets are working on a bridge. They are building a bridge with orange metal structures.", - "id": 22240 - }, - { - "image_path": "G:\\images\\combined\\-3289-_png_jpg.rf.b03aeb34bd2401f8db6b32f258028ed9.jpg", - "response": "In the image, two workers are installing an outdoor AC unit. They are both wearing blue helmets and grey uniforms. One worker is on the left side of the image, and the other is on the right. They are both holding the copper pipe in their hands and installing it to the AC unit. The workers are also wearing gloves for safety. The AC unit is black and silver, and it is installed on the second floor of a building. The workers are facing the unit and working on it.", - "id": 22241 - }, - { - "image_path": "G:\\images\\combined\\-3290-_png_jpg.rf.e57b390c240609eae566af5110a80e17.jpg", - "response": "A group of men, one wearing a red hard hat and another wearing a black hard hat, are looking at a piece of metal. One of the men is holding a tablet and a pair of pliers.", - "id": 22242 - }, - { - "image_path": "G:\\images\\combined\\-3291-_png_jpg.rf.3c5cd606ba558afe8ce0eff2a704cec8.jpg", - "response": "In the image there are two construction workers wearing orange vests and grey helmets. The woman is standing and holding a tablet while the man is kneeling down and using a measuring tape. They are both in a construction site with concrete pillars around them. Some pipes are passing in front of them and there are two other people in the image, one on the left and one on the right.", - "id": 22243 - }, - { - "image_path": "G:\\images\\combined\\-3292-_png_jpg.rf.7a1760e2a70401bd10c5300b5ebe1100.jpg", - "response": "The image shows a group of men in hard hats and work clothes standing in a factory. They are all wearing yellow hard hats and some are also wearing orange vests. The factory appears to be a large industrial facility with metal girders and pipes visible in the background. The floor is shiny and reflecting the factory lights. There is a large sign in the foreground advertising China Daily.", - "id": 22244 - }, - { - "image_path": "G:\\images\\combined\\-3294-_png_jpg.rf.b62073d866ff4bf0ebfc3f46dc99f63d.jpg", - "response": "A group of men in matching green uniforms and yellow helmets are holding up yellow kites in a grass field.", - "id": 22245 - }, - { - "image_path": "G:\\images\\combined\\-3295-_png_jpg.rf.0287e3d390d54654a493592171187a87.jpg", - "response": "In the image there are two workers wearing white protective clothing and yellow helmets. They are working in a cave with rocks and bones on the ground. One of the workers is using a pick ax to break up a large rock.", - "id": 22246 - }, - { - "image_path": "G:\\images\\combined\\-3296-_png_jpg.rf.ed7589f1473ffc4550a56751411bcb0e.jpg", - "response": "In the image two construction workers are building a structure out of metal rods. They are standing on a construction site with a lake in the background.", - "id": 22247 - }, - { - "image_path": "G:\\images\\combined\\-3298-_png_jpg.rf.b373548b9d6fd73c50853fd387934629.jpg", - "response": "An electrician is working on a power line.", - "id": 22248 - }, - { - "image_path": "G:\\images\\combined\\-3299-_png_jpg.rf.ea4872ea730ffdb0ccba9fc36fee2565.jpg", - "response": "In the image there is a man that is working on some power lines. He is on a metal platform that is placed on top of the power lines. He is wearing a green jacket and a red hat. He is also wearing yellow gloves. The sky above him is grey and overcast.", - "id": 22249 - }, - { - "image_path": "G:\\images\\combined\\-330-_png_jpg.rf.eed380d445e3330217c7abb938c7622d.jpg", - "response": "A group of three men in blue work clothes and white hard hats are standing on a ladder at an oil and gas facility. One man is sitting on the ladder, another is standing to the right of him and the third is standing to the left. The facility has a lot of pipes and machinery. It is a snowy day and the men are wearing black boots.", - "id": 22250 - }, - { - "image_path": "G:\\images\\combined\\-3301-_png_jpg.rf.6b32ba9dfaf448521105e1ea093171c8.jpg", - "response": "The workers(413,533),(504,779)(498,506),(586,779) are measuring the tunnel", - "id": 22251 - }, - { - "image_path": "G:\\images\\combined\\-3302-_png_jpg.rf.af6a5ad1dff8b899377b3897d1c9312c.jpg", - "response": " Construction worker(372,414),(606,693) in a hole", - "id": 22252 - }, - { - "image_path": "G:\\images\\combined\\-3305-_png_jpg.rf.4007a74416e1e20ba3c990e35112d311.jpg", - "response": "A group of men working on a power line in the mountains.", - "id": 22253 - }, - { - "image_path": "G:\\images\\combined\\-3307-_png_jpg.rf.a96b04c3074f4961fd41a69bf6df85f0.jpg", - "response": "A construction worker is using a hose to pour concrete into place.", - "id": 22254 - }, - { - "image_path": "G:\\images\\combined\\-3309-_png_jpg.rf.bf14c8412001ce2355dd7f485c8ad2af.jpg", - "response": "A man in a blue jumpsuit and yellow hard hat is climbing up the side of a building. He is on a ladder that is propped up against the building. The building has a lot of windows and is a grey color. There is a large object next to the building that looks like a box.", - "id": 22255 - }, - { - "image_path": "G:\\images\\combined\\-3310-_png_jpg.rf.d5f6437650ab24d410587154c35be398.jpg", - "response": "Some people are working on a construction site.", - "id": 22256 - }, - { - "image_path": "G:\\images\\combined\\-3311-_png_jpg.rf.964584d87fe4fc13d89eda4311960426.jpg", - "response": "A group of men are working on a project together. They are all wearing blue hard hats and are holding tools. Some of them are holding pipes and there is a bucket in the scene. They are all dressed in dark clothing. The ground is a mix of dirt, rocks, and red clay. In the background, there is a white sky and foggy trees.", - "id": 22257 - }, - { - "image_path": "G:\\images\\combined\\-3312-_png_jpg.rf.8ec88bab043fe37a9f479f7957092a73.jpg", - "response": "A group of people standing on top of a building site.", - "id": 22258 - }, - { - "image_path": "G:\\images\\combined\\-3314-_png_jpg.rf.c2475f4ba46ac344d1fcc4642f26bc49.jpg", - "response": "A construction site with a worker carrying a bunch of wooden poles and a building with a crane working on it.", - "id": 22259 - }, - { - "image_path": "G:\\images\\combined\\-3317-_png_jpg.rf.e626d86bc21b3e28873e31379a68b69e.jpg", - "response": "A man in a red hard hat is standing on a ladder.", - "id": 22260 - }, - { - "image_path": "G:\\images\\combined\\-3318-_png_jpg.rf.caa5152e8d6dcae994689e4941afb73b.jpg", - "response": "A man in a blue shirt and yellow hat climbing a ladder on top of a power line.", - "id": 22261 - }, - { - "image_path": "G:\\images\\combined\\-3320-_png_jpg.rf.9ea4cd081531e96f2db349532e2a7514.jpg", - "response": "A couple of men in orange work suits sitting on a rock in a tunnel.", - "id": 22262 - }, - { - "image_path": "G:\\images\\combined\\-3322-_png_jpg.rf.3d089b3871917cce4199e8453f3ab057.jpg", - "response": "In the image there are two men standing in a large warehouse. One man is a worker and he is standing on a ladder, holding a clipboard. The other man is a manager, he is pointing towards the ceiling. They are both wearing hard hats.", - "id": 22263 - }, - { - "image_path": "G:\\images\\combined\\-3324-_png_jpg.rf.786c51b1663d3ed39b80f9bdf266562f.jpg", - "response": "A couple of men working on a building.", - "id": 22264 - }, - { - "image_path": "G:\\images\\combined\\-3327-_png_jpg.rf.01a7a06a479fff8e492fe8bcab606136.jpg", - "response": " Men(413,144),(586,629)(122,136),(373,587)(349,146),(459,588) working on a construction site", - "id": 22265 - }, - { - "image_path": "G:\\images\\combined\\-3328-_png_jpg.rf.9e1646e997b1a23801d182c179d2deda.jpg", - "response": "A construction site with multiple workers and heavy machinery.", - "id": 22266 - }, - { - "image_path": "G:\\images\\combined\\-333-_png_jpg.rf.9ba94c1a34c169752accbe496d2ef232.jpg", - "response": "A group of men working on power lines.", - "id": 22267 - }, - { - "image_path": "G:\\images\\combined\\-3330-_png_jpg.rf.7df2d599a61f2839f353ad734bf4bed8.jpg", - "response": "A group of rescue workers in yellow helmets and dark blue uniforms are standing in a pit. They are holding shovels and digging into the dirt. Some of the workers are closer to the top of the pit, while others are at the bottom. There is a green plant growing on the left side of the pit and a black cord on the right side. The workers are dressed in dark clothing.", - "id": 22268 - }, - { - "image_path": "G:\\images\\combined\\-3332-_png_jpg.rf.11a4a85eeaa696df13ac1ea4301213df.jpg", - "response": "A group of people are seen walking through a river with bamboo poles and rocks in their hands. They are walking on a dirt path next to the river. Some of the people are wearing blue shirts and hats. In the foreground, a person is wearing a white helmet and a black shirt. To the right, a person is wearing a blue shirt and a black hat. In the background, a person is wearing a blue shirt and a yellow hat.", - "id": 22269 - }, - { - "image_path": "G:\\images\\combined\\-3333-_png_jpg.rf.b4600ebe0dfa90c1f0707fc104d398c6.jpg", - "response": " Two men(384,295),(733,997)(41,306),(374,997) in high visibility vests(42,479),(351,997)(418,500),(731,998) and hard hats(176,307),(368,452)(482,294),(661,411) standing in a tunnel", - "id": 22270 - }, - { - "image_path": "G:\\images\\combined\\-3335-_png_jpg.rf.a94f4a6ea27c2b874c99a45b58724625.jpg", - "response": "A worker is seen here at the site of the new waste incineration power plant in the city of Lianyungang, east China's Jiangsu province. The plant is expected to be operational by 2020.", - "id": 22271 - }, - { - "image_path": "G:\\images\\combined\\-3336-_png_jpg.rf.3ce6c04c4ca1f5e0ce752f1092d9428b.jpg", - "response": "A group of workers are working on a large concrete piece of equipment. They are all wearing orange work suits and hard hats. One worker is using a large shovel to pour cement onto the piece of equipment while another worker holds a long stick. A third worker is standing in the background observing the process. There are several bags of cement scattered around the area.", - "id": 22272 - }, - { - "image_path": "G:\\images\\combined\\-3339-_png_jpg.rf.ee84fa902fb692051b62d73cad3c5e36.jpg", - "response": "The image shows a large piece of mining equipment, with two workers in red uniforms standing on the side of the equipment. They are wearing hard hats and one worker has a tool belt. The equipment is large and metal, with a wheel in the foreground and a ladder leading up to it. The workers are standing on a platform and there is a rail in the foreground. The lighting in the mine is provided by electric lights.", - "id": 22273 - }, - { - "image_path": "G:\\images\\combined\\-334-_png_jpg.rf.c457ef2ecdba18f021d6e316be00b8c6.jpg", - "response": "A woman wearing a hard hat and orange vest looking at a tablet.", - "id": 22274 - }, - { - "image_path": "G:\\images\\combined\\-3340-_png_jpg.rf.c134b515b14b0c946d7ceed5314ada9f.jpg", - "response": "A man in a hard hat sitting on a chair.", - "id": 22275 - }, - { - "image_path": "G:\\images\\combined\\-3343-_png_jpg.rf.2c99c36b248dbaa05269cc1e10ad8481.jpg", - "response": " Construction workers(110,497),(449,997)(382,461),(727,997)(282,279),(596,538)(111,381),(239,753) working on a construction site", - "id": 22276 - }, - { - "image_path": "G:\\images\\combined\\-3344-_png_jpg.rf.ea960647aacc57f8a9aecd869fb87405.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a blue shirt, they are crouching down between two metal grid structures. The person is holding a yellow hard hat and there is another yellow hard hat above the person. The person is working on the metal grid structures, which are made of iron and have a cement base. The metal grid structures are placed on the ground and some of them are connected together.", - "id": 22277 - }, - { - "image_path": "G:\\images\\combined\\-3345-_png_jpg.rf.81d86c1de1ce4c6ad2ff96f83ba39387.jpg", - "response": "In the image there are two men sitting on a bench. They are both wearing hard hats and work clothes. One man is wearing a blue shirt and the other is wearing a red shirt. They both have something in their hands, possibly a drink or a tool. The background is a factory setting with other objects and structures.", - "id": 22278 - }, - { - "image_path": "G:\\images\\combined\\-3347-_png_jpg.rf.b36ed4e7ed3b83f94c286bf98a682bd6.jpg", - "response": "A group of men in yellow jackets are working on a train track. They are standing on the tracks and working on a beam.", - "id": 22279 - }, - { - "image_path": "G:\\images\\combined\\-3349-_png_jpg.rf.2127d0442ed75dde50b5e72155d3300c.jpg", - "response": "A construction site with two men working on it.", - "id": 22280 - }, - { - "image_path": "G:\\images\\combined\\-335-_png_jpg.rf.97a0e4e3d541ef9c519555999071f986.jpg", - "response": "A worker in a yellow hard hat and green jacket repairs power lines.", - "id": 22281 - }, - { - "image_path": "G:\\images\\combined\\-3351-_png_jpg.rf.1b91b60a45d6b7b4b5b11575617fd200.jpg", - "response": "In the image, three construction workers are flying a drone. The first one is on the left side of the image and is wearing a blue helmet and a yellow vest. The second one is in the middle and is also wearing a yellow vest and a yellow helmet. The third worker is on the right side of the image and is wearing a yellow vest and a blue helmet. They are all standing on a construction site with a large pile of dirt in the background. The sky above them is blue with some clouds.", - "id": 22282 - }, - { - "image_path": "G:\\images\\combined\\-3352-_png_jpg.rf.29336534d65b4c1fa7f7f0ce12046435.jpg", - "response": "A construction worker in a yellow hard hat working on a construction site.", - "id": 22283 - }, - { - "image_path": "G:\\images\\combined\\-3354-_png_jpg.rf.75a3be0556c2451f6198dac116a01cd7.jpg", - "response": "The image shows a group of men standing in a large, unfinished concrete room. They are all wearing white shirts and some of them are also wearing ties. Many of them are wearing hard hats. In front of the group, a man is talking and appears to be gesturing with his hands. There is a bottle of water on the ground in front of the group. To the right of the group, another man is standing alone. The photo is taken from the perspective of one of the men in the group.", - "id": 22284 - }, - { - "image_path": "G:\\images\\combined\\-3355-_png_jpg.rf.23897b623553aecc9ed2203f41fb5270.jpg", - "response": "A woman in a black coat is pointing to a building under construction. A man in a black coat is standing next to her. Another man in a white hard hat is standing to the right of the first man. A fourth man is standing to the right of the second man.", - "id": 22285 - }, - { - "image_path": "G:\\images\\combined\\-3356-_png_jpg.rf.f384418089b01d7f2f70d64e1dd98db1.jpg", - "response": "A group of men in blue work wear uniforms.", - "id": 22286 - }, - { - "image_path": "G:\\images\\combined\\-3357-_png_jpg.rf.76ef15b896879ebcdc6d2a1fd32df485.jpg", - "response": "The image shows two construction workers in yellow vests standing on a construction site. They are cleaning the ground with brooms. There are two cars and a motorcycle parked on the right side of the image. A large warehouse-like building is under construction in the background. Some concrete piles are placed in the foreground.", - "id": 22287 - }, - { - "image_path": "G:\\images\\combined\\-3358-_png_jpg.rf.c4a7b3c462a2451a357f1caddeeed087.jpg", - "response": "a group of three men standing in front of a cement factory", - "id": 22288 - }, - { - "image_path": "G:\\images\\combined\\-3359-_png_jpg.rf.2347adc42e80cfad9c870c5a4fc48c3c.jpg", - "response": "A construction worker standing in front of a truck on a highway.", - "id": 22289 - }, - { - "image_path": "G:\\images\\combined\\-336-_png_jpg.rf.a3b4a182526558066422f9da980e5528.jpg", - "response": "A group of men working on a construction site.", - "id": 22290 - }, - { - "image_path": "G:\\images\\combined\\-3360-_png_jpg.rf.cad5dccc614c328f9ea044810a98a069.jpg", - "response": "A man wearing a black jacket and orange hat is using a harness to work on a building. He is standing on a concrete step wearing grey pants. There is a red ball hanging from a string that the man is holding. There is a red swing set on the ground with two chairs attached to it.", - "id": 22291 - }, - { - "image_path": "G:\\images\\combined\\-3361-_png_jpg.rf.b57de06ed3656cb7b1e14a8a7411c0af.jpg", - "response": "A group of workers are working on a bridge.", - "id": 22292 - }, - { - "image_path": "G:\\images\\combined\\-3362-_png_jpg.rf.2329c284fd05869add93dd86325366e8.jpg", - "response": "A worker in a yellow and orange uniform is sitting on a machine that looks like it could be used for welding. They are in a large\u96a7\u9053 with a large rock wall to the left and a ladder on the right. They are looking at a device in their hand that is connected to the machine.", - "id": 22293 - }, - { - "image_path": "G:\\images\\combined\\-3364-_png_jpg.rf.2094521e5d54d9d4d9d7f332318c7c3b.jpg", - "response": "Three men in hard hats and safety vests looking at a blueprint at a construction site.", - "id": 22294 - }, - { - "image_path": "G:\\images\\combined\\-3365-_png_jpg.rf.fe0624c69182b4075facf55c89391070.jpg", - "response": "The image shows three construction workers wearing safety harnesses and hard hats, working on a large construction site. They are on a scaffolding system that is built around a large, open structure. The two workers at the bottom of the image are passing a piece of blue material to the worker at the top of the scaffolding. The worker at the top is holding a large drill, which they are using to secure the scaffolding to the structure. The sky is a clear, light blue color in the background.", - "id": 22295 - }, - { - "image_path": "G:\\images\\combined\\-3366-_png_jpg.rf.05cc95174adbc5ba1ae5a3bc3969963d.jpg", - "response": "The image shows three men standing on ladders, working on an electrical box on the side of a building. The building is a bright pink color and the electrical box is silver. The men are wearing helmets and the one on the left is wearing a yellow shirt. The man in the middle is wearing a gray shirt and the man on the right is wearing a blue shirt. There is a cup on the ground between the two men on the right. The image also shows a street light on the right side of the building and a red lantern hanging from the building. The building has shutters on the windows.", - "id": 22296 - }, - { - "image_path": "G:\\images\\combined\\-3368-_png_jpg.rf.80ff8303d1843422db4dd0b82c42066d.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left and the other is on the right. They are standing in front of a large metal rebar structure. The concrete mixer is in the middle of the scene, with a bucket of concrete being poured into it. The bucket is attached to a crane, which is lifting it towards the mixer. The mixer is a large, cylindrical machine with a spout at the bottom. The crane is lifting the concrete into the mixer, which will then be poured into the rebar structure to form the foundation of a building.", - "id": 22297 - }, - { - "image_path": "G:\\images\\combined\\-337-_png_jpg.rf.480fd26936e88b2ebf897e545bdeec7f.jpg", - "response": "A worker in a blue jumpsuit and yellow hard hat is pointing to an oven with glowing orange flames coming from it. The oven is made of metal and has a window in the front. The worker also has a yellow hard hat on his head.", - "id": 22298 - }, - { - "image_path": "G:\\images\\combined\\-3372-_png_jpg.rf.9883b1cbc5adf3aeb13b696b3f073ee5.jpg", - "response": "A group of men in hard hats stand around a brick pile.", - "id": 22299 - }, - { - "image_path": "G:\\images\\combined\\-3373-_png_jpg.rf.d5ef699d1216767c33f61c8f14af9fbc.jpg", - "response": "A worker is standing in a foundry, in front of a large structure that looks like a crane or a large lifting machine. The worker is wearing a white shirt and grey pants and is holding a long stick. The stick is near a fire, which is located on the left side of the image. The worker is also near a large piece of equipment, which is partially in the image. The background is blurry, and there is text on the right side of the image, which says \"\u70ac\u708e\u7f51\".", - "id": 22300 - }, - { - "image_path": "G:\\images\\combined\\-3376-_png_jpg.rf.fedd2b2ee1b94a9cf1631a99f207a4b9.jpg", - "response": "A man wearing a white hard hat and an orange vest is working on a metal fence.", - "id": 22301 - }, - { - "image_path": "G:\\images\\combined\\-3377-_png_jpg.rf.51bc8758c5a21c6ccf922c811054dded.jpg", - "response": "A group of people standing in front of a car.", - "id": 22302 - }, - { - "image_path": "G:\\images\\combined\\-3378-_png_jpg.rf.0c8ca6e1c7cfbc1759d2ce6d70cf67b3.jpg", - "response": "A man in a red hard hat is working on a large pipe.", - "id": 22303 - }, - { - "image_path": "G:\\images\\combined\\-3379-_png_jpg.rf.d03a5d9da63305e0dccef8924652dae1.jpg", - "response": "The image shows three workers in blue uniforms standing on the side of a road. They are working on a power line that is suspended above the road. The power line is made of wood and is supported by a concrete pylon. The workers are holding yellow plastic bags and are focused on their task. In the background, there is a crane and a truck. The sky is overcast and there are trees in the distance.", - "id": 22304 - }, - { - "image_path": "G:\\images\\combined\\-3382-_png_jpg.rf.9257ac433781f9d2abb86740426d33ac.jpg", - "response": "A construction site with multiple workers.", - "id": 22305 - }, - { - "image_path": "G:\\images\\combined\\-3383-_png_jpg.rf.0d25a3984dcbe7a398bd07b1e06575ff.jpg", - "response": "A man in a yellow hard hat and a man in a brown uniform are in a field. They are working on a fence.", - "id": 22306 - }, - { - "image_path": "G:\\images\\combined\\-3384-_png_jpg.rf.24a8099ac5ccbcf8f13b2d5da48cd428.jpg", - "response": "A worker in a red hard hat stands in front of a large rock formation. The rock is a light tan color with a large crevasse running through it. The worker is wearing a red hard hat, a white shirt, and a red apron. There are other workers scattered throughout the scene, some of which are further away and appear as small dots. They are working on a construction site that is made up of dirt and rock. There is a large pile of concrete wire mesh to the left of the worker, and a smaller pile further back. In the distance, there is a large pile of dirt.", - "id": 22307 - }, - { - "image_path": "G:\\images\\combined\\-3385-_png_jpg.rf.740011a2880aeb4fba9801446943ecd1.jpg", - "response": "A group of people standing in front of a large piece of mining equipment.", - "id": 22308 - }, - { - "image_path": "G:\\images\\combined\\-3386-_png_jpg.rf.91b702d92c1daa7c582c48b4659c18bd.jpg", - "response": "In the image there is a large ship with the words Xing Hong Kong on the side. The ship is black and red. In the foreground there are three people wearing orange and blue uniforms and yellow hats. They are pulling ropes and one of them has a cell phone in his pocket. The sky is blue and there are a few clouds. The water is dark and the ship is in the middle of it.", - "id": 22309 - }, - { - "image_path": "G:\\images\\combined\\-3387-_png_jpg.rf.70e8d33a132963cd1c97389d58ad620e.jpg", - "response": "Two men in work clothes and protective gear are working on a plumbing project. One man is kneeling down and smiling while the other man is standing and holding a red tool. They are both wearing hard hats.", - "id": 22310 - }, - { - "image_path": "G:\\images\\combined\\-3388-_png_jpg.rf.68b92e67038621bde812dea6b4566060.jpg", - "response": "In the image, there are multiple workers seen working on a construction site. They are building a bridge and some of them are using helmets. The bridge is made up of multiple iron rods and some of them are connected with cables. The bridge is in the middle of the picture and the workers are seen from the top view. Some of them are welding iron rods and some of them are standing on the bridge they have built. The background is blurred out and the main focus of the image is on the bridge and the workers.", - "id": 22311 - }, - { - "image_path": "G:\\images\\combined\\-3389-_png_jpg.rf.1773ca1a242ee51773b1a264221329a5.jpg", - "response": "A group of men in red work uniforms and orange helmets are on a metal tower. They are working on the tower, which is made of metal and has a beach in the background.", - "id": 22312 - }, - { - "image_path": "G:\\images\\combined\\-3392-_png_jpg.rf.8d6cd719b668d28eb939c8814f3d97be.jpg", - "response": "A man and a woman in hard hats looking at a brick wall.", - "id": 22313 - }, - { - "image_path": "G:\\images\\combined\\-3394-_png_jpg.rf.9c017664f7f9650c5043663636fc6820.jpg", - "response": "A group of workers in blue uniforms and white helmets are fixing a transformer. They are holding onto a yellow ladder that is placed on the ground. There is a black cable connected to the transformer and another black cable is held by a worker on the left. There are two more workers on the right, one is holding a black cable and the other is fixing a part of the transformer. There are three more workers at the top of the image, one is on the left and two are on the right. The background is white.", - "id": 22314 - }, - { - "image_path": "G:\\images\\combined\\-3395-_png_jpg.rf.62e527c5d6fdd208b22b910f2a93a5a5.jpg", - "response": "A picture of three men working on power lines.", - "id": 22315 - }, - { - "image_path": "G:\\images\\combined\\-3397-_png_jpg.rf.e9ecd63f46765fe08f0512e9784abb03.jpg", - "response": "Four men working on a roof with a blue sky in the background.", - "id": 22316 - }, - { - "image_path": "G:\\images\\combined\\-3398-_png_jpg.rf.f594066411866d0cc74ca3b22796a213.jpg", - "response": "Four men in white jump suits and yellow hats working on a wooden structure in the woods.", - "id": 22317 - }, - { - "image_path": "G:\\images\\combined\\-3399-_png_jpg.rf.e5024cc38cc9f557e6f9bff712e43658.jpg", - "response": "A worker in a green shirt and red helmet is working on some power lines.", - "id": 22318 - }, - { - "image_path": "G:\\images\\combined\\-34-_png_jpg.rf.01765aab7cf13030155565932f30df66.jpg", - "response": "The image shows a group of workers standing on a large piece of construction equipment. They are all wearing orange vests for safety. In the background, there is a blue sky and some clouds. In the foreground, there is a banner with Chinese writing on it.", - "id": 22319 - }, - { - "image_path": "G:\\images\\combined\\-340-_png_jpg.rf.e826f11f9b601f37b0e6a1d15c9a4551.jpg", - "response": "A group of people standing around each other", - "id": 22320 - }, - { - "image_path": "G:\\images\\combined\\-3400-_png_jpg.rf.4c17d8f1773b0f8b738bd4c6ac94d585.jpg", - "response": "The image shows a tunnel with two workers inside. They are wearing hard hats and one of them is holding a hose. The tunnel is grey and the floor is wet. There is a large pipe in the foreground and a truck can be seen at the far end of the tunnel.", - "id": 22321 - }, - { - "image_path": "G:\\images\\combined\\-3401-_png_jpg.rf.14472099b52be1fd0ac13607b119fedf.jpg", - "response": "A group of men in hard hats are working on something in the snow.", - "id": 22322 - }, - { - "image_path": "G:\\images\\combined\\-3404-_png_jpg.rf.5baebb85fa6ee2d8c17cca1c2e54b104.jpg", - "response": "In the image two workers are fixing a transformer on a power pole. One worker is standing on a metal platform and the other one is on the pole itself. They are wearing yellow helmets and work clothes. The power pole is grey and has many wires attached to it. In the background there is a pink building.", - "id": 22323 - }, - { - "image_path": "G:\\images\\combined\\-3405-_png_jpg.rf.077d50f3e1b95448d763ea640e402597.jpg", - "response": "A construction site with several people working on it. There are multiple steel rods and beams scattered around the site and a truck is parked in the middle of the scene. The workers are wearing hard hats and the background shows a partially constructed building with scaffolding.", - "id": 22324 - }, - { - "image_path": "G:\\images\\combined\\-3406-_png_jpg.rf.55805c22575247cb3865c0e7f0c3a6e1.jpg", - "response": "The image shows a group of men working on a large metal tower. They are all wearing blue uniforms and hard hats. The tower is a power transmission tower, and there is a high-voltage sign on it. The sky in the background is a clear, bright blue.", - "id": 22325 - }, - { - "image_path": "G:\\images\\combined\\-341-_png_jpg.rf.959de583e327bd161cf5eeedf1ce6e97.jpg", - "response": "A man in a blue shirt and white gloves working on wires in a panel.", - "id": 22326 - }, - { - "image_path": "G:\\images\\combined\\-3410-_png_jpg.rf.c90aca5544134c252dc2700bb747a3f4.jpg", - "response": "A group of men in blue jump suits and hats are on a tower working on power lines.", - "id": 22327 - }, - { - "image_path": "G:\\images\\combined\\-3412-_png_jpg.rf.718c5843e5ad3d9770e3cd963e7af95a.jpg", - "response": "A group of men in hard hats and safety gear are working on an electricity pylon in the fog.", - "id": 22328 - }, - { - "image_path": "G:\\images\\combined\\-3416-_png_jpg.rf.f48aad66d32d08ed852d1c54c31265da.jpg", - "response": "A man(408,363),(526,606) standing on a pole in a city that has been destroyed", - "id": 22329 - }, - { - "image_path": "G:\\images\\combined\\-3417-_png_jpg.rf.9430380d18652171129b08adc42590e9.jpg", - "response": "The image shows a group of people dressed in yellow and red hard hats in front of a red and white building with a large banner in the middle that says \u4e2d\u56fd\u4e2d\u94c1 in green and red. There are two other banners in the foreground, one on the left that says \u8df5\u5b66\u7ea2\u5854\u610f\u8bc6 \u4fdd\u5b89\u5168\u751f\u4ea7 in blue and white and the other on the right that says \u5b89\u5168\u6eaa\u5854\u7b7e\u540d\u6d3b\u52a8 in blue and white. There is a person in a yellow hard hat on the far left and another in a red hard hat on the far right. In the background, there is a person in a yellow shirt kneeling on the ground and another person in a blue shirt standing on the banner.", - "id": 22330 - }, - { - "image_path": "G:\\images\\combined\\-3418-_png_jpg.rf.22997ee8087ccf79519f5ac47885d49c.jpg", - "response": "An electrician is in the middle of some power lines.", - "id": 22331 - }, - { - "image_path": "G:\\images\\combined\\-3419-_png_jpg.rf.8df1a99e34f7dee34872a8a2d802866f.jpg", - "response": "A group of men working on power lines.", - "id": 22332 - }, - { - "image_path": "G:\\images\\combined\\-3420-_png_jpg.rf.e6b7f9e1790e8a5a36fbcc36450e9d88.jpg", - "response": "The image shows two workers from the Egyptian electricity company, Egyptian Electric Power Company (EETC), working on an electrical line in a Cairo alleyway. They are both wearing red work vests and yellow and blue helmets. The man in the foreground is reaching up to fix an electrical line while the man behind him is watching. There are a few cars parked in the alleyway and a building on the right side of the image.", - "id": 22333 - }, - { - "image_path": "G:\\images\\combined\\-3421-_png_jpg.rf.5b8a5884f731bce75da1da4dfa2ef233.jpg", - "response": "A fireman standing in front of a raging fire.", - "id": 22334 - }, - { - "image_path": "G:\\images\\combined\\-3422-_png_jpg.rf.ba2cab7315f551b86618e75f4105973e.jpg", - "response": "A worker in a large factory, wearing a yellow hard hat and safety goggles, is kneeling down and working on a piece of machinery. They are holding a large metal object in their hands and there are other workers in the background.", - "id": 22335 - }, - { - "image_path": "G:\\images\\combined\\-3423-_png_jpg.rf.7e93fc75ecaa8bc92b243f52357fc4c7.jpg", - "response": "A group of men working on a building under construction.", - "id": 22336 - }, - { - "image_path": "G:\\images\\combined\\-3425-_png_jpg.rf.c196c119cab174c25828efb4a4c31768.jpg", - "response": "Four men in orange jumpsuits and yellow helmets are carrying a large rock or log on their shoulders. They are walking on a dirt and rock surface and appear to be working in a construction or mining area. There is a wheelbarrow in the background to the left.", - "id": 22337 - }, - { - "image_path": "G:\\images\\combined\\-3426-_png_jpg.rf.c494833fef449afc2f5a98f5660154cd.jpg", - "response": "A construction site with multiple people working on different tasks.", - "id": 22338 - }, - { - "image_path": "G:\\images\\combined\\-3427-_png_jpg.rf.838b1ece9ca18c56e2eabf6bcfec4592.jpg", - "response": "In the image there are two workers wearing red helmets and grey clothes. They are working on a construction site with a grey sky above them. There is a dirty electric tower in front of them and they are both working on it. There are also two other people in the picture, one on the left and one on the right, but they are not working.", - "id": 22339 - }, - { - "image_path": "G:\\images\\combined\\-3428-_png_jpg.rf.209cf7c194c0358d3a16a7501c9c5e53.jpg", - "response": "A man in a red jumpsuit and hard hat is working on a piece of equipment. He is holding a red chain and is standing next to a yellow and blue wall.", - "id": 22340 - }, - { - "image_path": "G:\\images\\combined\\-3431-_png_jpg.rf.91fb8b20a380eec64402600501af28b9.jpg", - "response": "A pair of technicians from the China Telecommunications Corporation are seen working on a fiber optic cable.", - "id": 22341 - }, - { - "image_path": "G:\\images\\combined\\-3435-_png_jpg.rf.13d5ee811a5f0cf8b805a642cf63e4f2.jpg", - "response": " Two workers(659,281),(976,997)(2,401),(306,997) standing in the back of a work truck", - "id": 22342 - }, - { - "image_path": "G:\\images\\combined\\-3438-_png_jpg.rf.cc5500cbb935ff99ddf3ca641dd96521.jpg", - "response": " a man(523,232),(778,996) walking on rocks", - "id": 22343 - }, - { - "image_path": "G:\\images\\combined\\-3439-_png_jpg.rf.0286f1911705e00396502d519706d2c6.jpg", - "response": "Rescue workers(183,350),(363,997)(419,343),(579,997)(528,305),(649,885)(347,255),(480,996) carry a rescued miner to safety", - "id": 22344 - }, - { - "image_path": "G:\\images\\combined\\-344-_png_jpg.rf.082ba8b79e3e446c696fe87436f16007.jpg", - "response": "In the image there are several people standing next to large rolls of steel wire, which are piled up in front of them. The steel wire is black in color. Behind the people, there are several buildings with red roofs. Some of the buildings have two stories, while others have only one story. In the background, there is a mountain.", - "id": 22345 - }, - { - "image_path": "G:\\images\\combined\\-3440-_png_jpg.rf.fc75d5271d06085d2721b5833147ec4f.jpg", - "response": "A man in a green uniform and yellow helmet is climbing a grey tower. He is wearing a tool belt and has a tool bag hanging from his back. He is holding onto the tower with one hand and has a tool in his other hand. The tower has black power lines going through it.", - "id": 22346 - }, - { - "image_path": "G:\\images\\combined\\-3441-_png_jpg.rf.d5a1897031d1b5ddb678c5f52eae6dee.jpg", - "response": "A group of men working on a construction site.", - "id": 22347 - }, - { - "image_path": "G:\\images\\combined\\-3444-_png_jpg.rf.5b38b0a6079610f1d9a01cbfad22320c.jpg", - "response": "A group of five men wearing yellow safety jackets and hard hats standing around a table at a construction site.", - "id": 22348 - }, - { - "image_path": "G:\\images\\combined\\-3445-_png_jpg.rf.47853d9354e0ca2ab769f19ef38f3465.jpg", - "response": "A group of workers in hard hats and safety vests are standing on a platform near a large metal structure. They are working on a construction site and there are several tools and equipment around.", - "id": 22349 - }, - { - "image_path": "G:\\images\\combined\\-3447-_png_jpg.rf.958cb5fbd464221ede0479c39c679a8e.jpg", - "response": "a group of workers working on a snowy mountain side", - "id": 22350 - }, - { - "image_path": "G:\\images\\combined\\-3449-_png_jpg.rf.ddfc31be26eff85a99eb0b2a0c316ed3.jpg", - "response": "A man in a hard hat standing in front of a building site.", - "id": 22351 - }, - { - "image_path": "G:\\images\\combined\\-3451-_png_jpg.rf.1e3ad9a02c0ad6f5e51aa4f3f50bb886.jpg", - "response": "A worker in a grey shirt and white hat points to a yellow wall with many round white things on it. Another worker in a blue shirt and white hat stands next to him. They are both standing on a construction site with a few buildings in the background.", - "id": 22352 - }, - { - "image_path": "G:\\images\\combined\\-3453-_png_jpg.rf.cc733a8ca10236540ea8140d0ffea045.jpg", - "response": "A construction site with several workers in orange jumpsuits and yellow hard hats. They are working on a large structure made of metal scaffolding. There are several pieces of wood and metal lying around the site. In the background, there is a cityscape with tall buildings.", - "id": 22353 - }, - { - "image_path": "G:\\images\\combined\\-3454-_png_jpg.rf.a5532f526ef185e009b51c2ff2d8d3f5.jpg", - "response": "A group of men working on electrical components high up in the air.", - "id": 22354 - }, - { - "image_path": "G:\\images\\combined\\-3455-_png_jpg.rf.e7b7404d73c210661ec2157a92c0f51e.jpg", - "response": "A group of people working on a construction site.", - "id": 22355 - }, - { - "image_path": "G:\\images\\combined\\-346-_png_jpg.rf.90fd3eb17ef2c52eb90d008d19fe5a3c.jpg", - "response": "In the image there is a group of people wearing orange jumpsuits and blue helmets who are working on an electricity pylon. Some of them are holding onto the wires and there are tools scattered around the area. They are all in a field with green grass and some of them are holding onto a white rope that is connected to the pylon. The sky is blue with some clouds and in the background there is a road.", - "id": 22356 - }, - { - "image_path": "G:\\images\\combined\\-3463-_png_jpg.rf.654129c8202ccd0cd6dcfeb1c1bc20f7.jpg", - "response": "A man sitting on a bulldozer with another man behind him.", - "id": 22357 - }, - { - "image_path": "G:\\images\\combined\\-3467-_png_jpg.rf.3655b1520642fa06783b8c462d2e8462.jpg", - "response": "The image shows two workers in orange and blue uniforms and yellow and blue helmets, one worker has a tool bag on his side. They are working on a large piece of equipment outdoors, there are several pipes and a blue box with many buttons and levers. The sky is overcast and there are houses in the background.", - "id": 22358 - }, - { - "image_path": "G:\\images\\combined\\-3469-_png_jpg.rf.a6a636c714086f00839dcdb9222a492f.jpg", - "response": "A group of people standing around a large pile of steel.", - "id": 22359 - }, - { - "image_path": "G:\\images\\combined\\-3470-_png_jpg.rf.914d58182f0d554759cfa2dc7bfb6677.jpg", - "response": "A man is welding in a warehouse.", - "id": 22360 - }, - { - "image_path": "G:\\images\\combined\\-3473-_png_jpg.rf.f70952b4d65e1e5806691f6e5993cfd5.jpg", - "response": "In the image two men are working on fixing some power lines. They are wearing grey and blue uniforms and are up in a ladder. They are in a snowy landscape with houses and mountains in the background.", - "id": 22361 - }, - { - "image_path": "G:\\images\\combined\\-3474-_png_jpg.rf.04523f379fc5d0b7ce93f04543a272dc.jpg", - "response": "A man(248,189),(772,995) standing on a roof with a tool belt(347,695),(638,953)", - "id": 22362 - }, - { - "image_path": "G:\\images\\combined\\-3475-_png_jpg.rf.4297119c2cd967cddb7031c47a14b06f.jpg", - "response": "The image shows two men wearing blue hard hats and working on a construction site. They are both holding a metal beam and appear to be focused on their work. The men are wearing blue uniforms and are positioned on a bridge, which is made of wood. There are trees in the background and a white structure in the foreground. The sky is blue and there are no other people visible in the image.", - "id": 22363 - }, - { - "image_path": "G:\\images\\combined\\-3477-_png_jpg.rf.e7f995a3d02f7184db9f1bebfb95be67.jpg", - "response": "A man wearing a yellow hard hat and work clothes is standing on a pile of sand. He is leaning over a large stack of brown clay roof tiles. In the background, there are more roof tiles piled up next to a stack of wooden pallets. The sky is blue with a few thin clouds.", - "id": 22364 - }, - { - "image_path": "G:\\images\\combined\\-3478-_png_jpg.rf.25267f256af95efaaa9185624669ec15.jpg", - "response": "A construction site with multiple construction vehicles.", - "id": 22365 - }, - { - "image_path": "G:\\images\\combined\\-348-_png_jpg.rf.96dcba7f58c5e286a087104871c05d31.jpg", - "response": "A worker stands in front of a wall with Chinese writing on it. The worker is wearing a yellow hat and a grey jacket.", - "id": 22366 - }, - { - "image_path": "G:\\images\\combined\\-3480-_png_jpg.rf.1cfe0ca80c7cd06fe27a43525ad442ad.jpg", - "response": "a group of men standing around talking to each other", - "id": 22367 - }, - { - "image_path": "G:\\images\\combined\\-3481-_png_jpg.rf.ea2ecb0feda8b2306e612cc3f8755c3a.jpg", - "response": "A worker in a red helmet is reading a blue clipboard.", - "id": 22368 - }, - { - "image_path": "G:\\images\\combined\\-3482-_png_jpg.rf.0b11ce7617285f543d2b849412d393b2.jpg", - "response": "In the image there is a large construction site with two cranes in the background. In the foreground, two construction workers are working on a large pile of lumber. One of the workers is wearing a yellow hard hat and is standing on a wooden platform. Another worker is further to the right, and there is a yellow forklift parked further to the right. In the background, a tall building with several levels is under construction. The sky is blue and there are no clouds.", - "id": 22369 - }, - { - "image_path": "G:\\images\\combined\\-3483-_png_jpg.rf.01b82ccbe6bf10849f4338b4bb47d79c.jpg", - "response": "The image shows a large outdoor event with a crowd of people wearing yellow vests and orange hats gathered in front of a large banner that reads \"Sina Auto\". The banner is hanging on a large white pole. There are several camera cranes set up in the area, with one in the foreground and another one to the right. A few people are walking around, and some are standing around talking. In the background, there is a large white building.", - "id": 22370 - }, - { - "image_path": "G:\\images\\combined\\-3484-_png_jpg.rf.ca9abc8f00330d53ecfd95958d1639c7.jpg", - "response": "A group of men in hard hats are working on fixing an electrical box in the grass.", - "id": 22371 - }, - { - "image_path": "G:\\images\\combined\\-3485-_png_jpg.rf.9cb428b1c6e2b9c232e3372ac86df1fa.jpg", - "response": "A man in a white shirt is standing on a platform in front of a brick building. He is wearing a red helmet and a harness. There is a large red ball hanging from the ceiling in front of him. The man is looking up at it.", - "id": 22372 - }, - { - "image_path": "G:\\images\\combined\\-3486-_png_jpg.rf.70dc420462dc81442a93c5fc20519a1e.jpg", - "response": "A construction site with several cranes working on a building.", - "id": 22373 - }, - { - "image_path": "G:\\images\\combined\\-3488-_png_jpg.rf.9d6de283ee143fd1111328914cba40c1.jpg", - "response": "A group of people working on a train track.", - "id": 22374 - }, - { - "image_path": "G:\\images\\combined\\-3489-_png_jpg.rf.92bb3895766b428c6e4ee69e05fe8d60.jpg", - "response": "A man is working on fixing some power lines.", - "id": 22375 - }, - { - "image_path": "G:\\images\\combined\\-3490-_png_jpg.rf.6d347b7b6a1f9b217f1a3e5261b59ee6.jpg", - "response": "A team of two technicians are looking at a boiler. One of them is holding a clipboard and a red pen. They are both wearing blue overalls and helmets. The boiler is white and has pipes running from it.", - "id": 22376 - }, - { - "image_path": "G:\\images\\combined\\-3492-_png_jpg.rf.0486a7b73d2cbd7e85f89b0096ad992f.jpg", - "response": "A group of people standing around a construction site.", - "id": 22377 - }, - { - "image_path": "G:\\images\\combined\\-3495-_png_jpg.rf.5951897d428dde3b3e17978acf765288.jpg", - "response": "In the image there is a large blue and white sign that says \u4e2d\u56fd\u5efa\u7b51\u7b2c\u4e8c\u5de5\u7a0b\u5c40\u6709\u9650\u516c\u53f8 on it in English. Underneath the large blue and white sign there is a smaller white and blue sign that says \u8fdb\u5165\u8003\u8003\u8003 on it. Next to the smaller white and blue sign there is a white and red sign that says \u8003\u8651\u79e6\u706b\u706b on it. In front of the large blue and white sign there is a turnstile. In the image there are also two people walking in front of the turnstiles.", - "id": 22378 - }, - { - "image_path": "G:\\images\\combined\\-3496-_png_jpg.rf.4454453dcdea5558151c8ac7343d721e.jpg", - "response": "A man in a yellow hard hat and yellow vest is pointing at a box.", - "id": 22379 - }, - { - "image_path": "G:\\images\\combined\\-3497-_png_jpg.rf.aac4c7960bcc896b4ef0a05a7fb32719.jpg", - "response": "A group of people standing around a large construction site.", - "id": 22380 - }, - { - "image_path": "G:\\images\\combined\\-3499-_png_jpg.rf.8342a03221c4b6727da338b82a82bb45.jpg", - "response": "A worker in a small lift working on a large piece of equipment.", - "id": 22381 - }, - { - "image_path": "G:\\images\\combined\\-35-_png_jpg.rf.7a60fdf2c294fb5d41b0d26a71781d72.jpg", - "response": "A man in a yellow hard hat and yellow shirt is using a black drill to attach something to a white wall. He is wearing yellow safety glasses and has a yellow tool belt around his waist. There is a cup on the wall above him.", - "id": 22382 - }, - { - "image_path": "G:\\images\\combined\\-3501-_png_jpg.rf.7a501c137798476d389102c1cf846297.jpg", - "response": "The picture shows two workers in yellow helmets and white T-shirts, who are busy repairing the walls of a house. The walls are in a bright white color, and there are red characters on the white walls. The workers are busy carrying out their tasks. In front of the house, there are two large bowls, which are placed on a dark blue table. Next to the table, there are two large yellow buckets. In front of the house, there is a pile of debris, including broken tiles, bricks, and wooden planks. There are also some black plastic stools and a white dining table. On the right side of the picture, there is a green hillside.", - "id": 22383 - }, - { - "image_path": "G:\\images\\combined\\-3502-_png_jpg.rf.ec4738617e8f6f6434e600b46323c724.jpg", - "response": "In the image there are two workers wearing red helmets and safety gear. They are working on a train track, one of them is sitting on a concrete support and the other one is kneeling next to him. They seem to be in the process of fixing something. There are also a few tools laying around the area. In the background there are some power lines and a building.", - "id": 22384 - }, - { - "image_path": "G:\\images\\combined\\-3506-_png_jpg.rf.1b5d462b07c4c8e366dacb5369a0dc78.jpg", - "response": "a group of men standing on a wooden structure", - "id": 22385 - }, - { - "image_path": "G:\\images\\combined\\-3509-_png_jpg.rf.53b8075997db91c35dc67462440ab142.jpg", - "response": "A construction worker wearing a white hard hat and high visibility vest, standing on a ladder and working on building a house.", - "id": 22386 - }, - { - "image_path": "G:\\images\\combined\\-351-_png_jpg.rf.0a7a638028cf415ca062f0ad12457296.jpg", - "response": "A group of workers are seen working on a train track.", - "id": 22387 - }, - { - "image_path": "G:\\images\\combined\\-3510-_png_jpg.rf.075726ed69655d3906e422171643ebab.jpg", - "response": "A bucket truck with two workers in it.", - "id": 22388 - }, - { - "image_path": "G:\\images\\combined\\-3513-_png_jpg.rf.43529bb0b37c53f147e19974300f70ac.jpg", - "response": "A group of men standing around a construction site.", - "id": 22389 - }, - { - "image_path": "G:\\images\\combined\\-3514-_png_jpg.rf.0b53193055f40d7b8c81f4eb8e1f0eb8.jpg", - "response": "A man in a uniform is working on power lines in front of a large building.", - "id": 22390 - }, - { - "image_path": "G:\\images\\combined\\-3515-_png_jpg.rf.d995577032e0c2dce0e55defea2cd8db.jpg", - "response": "A crane lifting a large transformer into place at a construction site.", - "id": 22391 - }, - { - "image_path": "G:\\images\\combined\\-3516-_png_jpg.rf.ec62270f1abb80d2a0d1d7494186d224.jpg", - "response": "A construction site with a lot of steel rods and a man wearing a yellow hard hat and a blue shirt with the name Mr. Lee on it.", - "id": 22392 - }, - { - "image_path": "G:\\images\\combined\\-3517-_png_jpg.rf.4432262fb365bb195e354c8614a96aed.jpg", - "response": "A group of men in orange jumpsuits and yellow hard hats are working on a train track. They are crouched down and working on the tracks.", - "id": 22393 - }, - { - "image_path": "G:\\images\\combined\\-352-_png_jpg.rf.6aa54e4cffb5032299a611f7484f89d2.jpg", - "response": "In the image there is a construction site with multiple workers. They are all wearing yellow hard hats and some are wearing orange vests. They are working on a large project that involves digging up the ground and laying down pipes. There are many power lines running through the area and a large white building can be seen in the background. The ground is covered in dirt and there are many tools and equipment scattered around the site.", - "id": 22394 - }, - { - "image_path": "G:\\images\\combined\\-3520-_png_jpg.rf.d6b71bf24a19e44a3298afe1957fa9e6.jpg", - "response": "The men are working on the ship.", - "id": 22395 - }, - { - "image_path": "G:\\images\\combined\\-3521-_png_jpg.rf.574043fff9727771bbadbf3689fa27d2.jpg", - "response": "A group of four men standing in a unfinished room.", - "id": 22396 - }, - { - "image_path": "G:\\images\\combined\\-3522-_png_jpg.rf.f98db852dee5e3d8deff41e51df3a637.jpg", - "response": "A man wearing a yellow hard hat and a tool belt walks in front of a blue dumpster. The man is wearing a white shirt and has a yellow hard hat on. He is also wearing a tool belt. In the background, there are buildings and trees.", - "id": 22397 - }, - { - "image_path": "G:\\images\\combined\\-3523-_png_jpg.rf.7e1d48e746ea18980e2cb36e57f4388d.jpg", - "response": "A group of firemen in a construction site putting out a fire with a yellow and white hose.", - "id": 22398 - }, - { - "image_path": "G:\\images\\combined\\-3524-_png_jpg.rf.edd78a3173dd24e2dfb4a0eb73ed7cf6.jpg", - "response": "A group of people working on a roof of a building.", - "id": 22399 - }, - { - "image_path": "G:\\images\\combined\\-3525-_png_jpg.rf.d3bdf64bc679b11ed2306d30e14190b3.jpg", - "response": "a group of men walking across a dirt field", - "id": 22400 - }, - { - "image_path": "G:\\images\\combined\\-3528-_png_jpg.rf.5e98600bcd9da8d35f3c939fc3e7c42c.jpg", - "response": "A group of men in white shirts and red hats are walking across a construction site. They are all wearing ties. In the background there is a city skyline with a crane working on a building. On the right side of the image there is a yellow and red banner. In the banner there is a picture of a ship and the words \"COSCO, CSCL, AJAX\".", - "id": 22401 - }, - { - "image_path": "G:\\images\\combined\\-3529-_png_jpg.rf.ab17831425cadb999a9bbcf180625ee7.jpg", - "response": "a man in a blue hard hat is using a chainsaw to cut through a tree branch", - "id": 22402 - }, - { - "image_path": "G:\\images\\combined\\-353-_png_jpg.rf.0d08dd03bcfe359501c5a3bc918203bc.jpg", - "response": "The image shows a smiling worker in a yellow helmet and camouflage jacket climbing a metal pole. The worker is of African descent. The worker is also wearing a watch on their left wrist and a ring on their left middle finger. The background is a white wall. The image is accompanied by the words \"\u54b8\u6d77\u65b0\u95fb\u7db2 xianhai news\" on the right side.", - "id": 22403 - }, - { - "image_path": "G:\\images\\combined\\-3530-_png_jpg.rf.d132d08e308eca4477130605a44775df.jpg", - "response": "A group of people standing around a fire.", - "id": 22404 - }, - { - "image_path": "G:\\images\\combined\\-3531-_png_jpg.rf.e9951967130e5a76fbe22667d45f0671.jpg", - "response": "The image shows three men in a mountainous region working on an electricity transmission line. They are wearing yellow hats and uniforms. In the foreground, there are several steel cables on the ground. In the background, one man is standing on a pile of soil, another man is bending over, and the third man is standing on the right side. The sky is overcast.", - "id": 22405 - }, - { - "image_path": "G:\\images\\combined\\-3532-_png_jpg.rf.40b2222ff6886b23ef41edd2d4bc5c04.jpg", - "response": "A group of five people standing in a construction site wearing hard hats and looking at blueprints.", - "id": 22406 - }, - { - "image_path": "G:\\images\\combined\\-3533-_png_jpg.rf.be7fbf7db6a1750283398ee6960baa26.jpg", - "response": "A group of people wearing blue hard hats.", - "id": 22407 - }, - { - "image_path": "G:\\images\\combined\\-3534-_png_jpg.rf.b91f3194d4a9e284303cc78de4099221.jpg", - "response": "A man in a green uniform and red hat is working on a wall.", - "id": 22408 - }, - { - "image_path": "G:\\images\\combined\\-3537-_png_jpg.rf.5b14f362339e59041f1a7f11b13fc7a5.jpg", - "response": "The image shows a large tunnel with a yellow machine in the middle. The machine appears to be a piece of mining equipment, with a long arm and a bucket at the end. There are also two people in the tunnel, one on the left and one on the right. The person in the middle is wearing an orange safety suit. The tunnel walls are made of rock and there is a ladder on the side of the yellow machine. The machine is producing some sort of dust or debris, which is floating in the air.", - "id": 22409 - }, - { - "image_path": "G:\\images\\combined\\-3538-_png_jpg.rf.b4dcd71a3b41cac9ebe5321c2101382d.jpg", - "response": "A group of men in blue work uniforms and hard hats are working on a large pipe.", - "id": 22410 - }, - { - "image_path": "G:\\images\\combined\\-354-_png_jpg.rf.0c85ac419f8b5781ab93acfe3ad76af6.jpg", - "response": "A large group of people stand on the street corner.", - "id": 22411 - }, - { - "image_path": "G:\\images\\combined\\-3541-_png_jpg.rf.271bc0109c16cc74aaad7c7cfd2f2a72.jpg", - "response": "A man in a yellow helmet and black jacket is on a pole in the dark. He is working on a power line.", - "id": 22412 - }, - { - "image_path": "G:\\images\\combined\\-3543-_png_jpg.rf.42dd0f9685a9e9a44fb70ca80a4c04a3.jpg", - "response": "In the image there is a train on the tracks and workers are on a platform above the train. The train is yellow and the workers are wearing orange vests. There are two people on the platform and one person is standing on the train. There are also two people standing on a structure above the train. The sky is white and it appears to be foggy. There are two sets of tracks in the foreground and they are empty.", - "id": 22413 - }, - { - "image_path": "G:\\images\\combined\\-355-_png_jpg.rf.19c71af1a98147fb5b8550955a95e7c6.jpg", - "response": "A group of people standing around a white truck in a coal mine.", - "id": 22414 - }, - { - "image_path": "G:\\images\\combined\\-3550-_png_jpg.rf.b8e6985a5581cceaec41b303c328cea1.jpg", - "response": "A group of men standing around each other.", - "id": 22415 - }, - { - "image_path": "G:\\images\\combined\\-3551-_png_jpg.rf.742f9ccfd4032074d622a72c03d73f93.jpg", - "response": "An electrician working on an electrical tower.", - "id": 22416 - }, - { - "image_path": "G:\\images\\combined\\-3552-_png_jpg.rf.2e0618dd4c5e60af6044c43f86240e17.jpg", - "response": "A man in a grey shirt and backpack is measuring something in the ground. He is wearing a blue hat and glasses. There is another man wearing a blue hat and glasses above him, almost covering him. They are both standing on a construction site.", - "id": 22417 - }, - { - "image_path": "G:\\images\\combined\\-3554-_png_jpg.rf.3ffdff30c4042b70f1425ccb04be1683.jpg", - "response": "The image shows two workers on a construction site, with one worker in the foreground and another worker behind him. They are both working on a building structure that appears to be an old brick building with a brown roof. The workers are wearing hard hats and are focused on their task. The first worker is in the center of the image and is wearing a grey shirt and grey pants. He is crouching down and is holding a tool in his right hand. There is a ladder resting against the building to the left of the first worker. The second worker is behind the first worker and is wearing a orange shirt and grey pants. He has a tool in his left hand and is leaning over the first worker. The building has several rows of pipes running along the roof and these workers are working on one of them.", - "id": 22418 - }, - { - "image_path": "G:\\images\\combined\\-3555-_png_jpg.rf.aa63fd8af353b8adec45151719695bfe.jpg", - "response": "A construction site with multiple cranes and workers.", - "id": 22419 - }, - { - "image_path": "G:\\images\\combined\\-3556-_png_jpg.rf.158607ee8d47e6fefd15f4a65ed42a69.jpg", - "response": "The image shows a group of people standing on a rock inside a cave. The rock has a red painting on it. The cave walls are white. The people are wearing jeans, shirts, and hats. One person is holding a flashlight. The rock has some brown patches. The cave has a low ceiling in some areas.", - "id": 22420 - }, - { - "image_path": "G:\\images\\combined\\-3557-_png_jpg.rf.db7d1da0a340e8f18804e851b25d8780.jpg", - "response": "A construction worker in a yellow safety vest and yellow hard hat is using a drill to attach something to a white wall. The worker is in the foreground of the image. In the background, three other people are standing in a hallway that is under construction. The people are wearing yellow safety vests and one of them has their hands on their hips. The wall to the right of the people is being drilled into.", - "id": 22421 - }, - { - "image_path": "G:\\images\\combined\\-3558-_png_jpg.rf.6cbb785ec3d04e9fbcd35e1ff98d1761.jpg", - "response": "A group of people standing in a room with hard hats on.", - "id": 22422 - }, - { - "image_path": "G:\\images\\combined\\-3559-_png_jpg.rf.86fba371e11a6ee03d6d182398fd102d.jpg", - "response": "A group of men in green uniforms and blue hard hats are working on a pipe in a snowy forest.", - "id": 22423 - }, - { - "image_path": "G:\\images\\combined\\-356-_png_jpg.rf.0ded7a56e056bfd030b6c9482c4a6948.jpg", - "response": "A construction site with multiple construction workers visible.", - "id": 22424 - }, - { - "image_path": "G:\\images\\combined\\-3561-_png_jpg.rf.4a6b17b9efac2e749f57d74959843db1.jpg", - "response": "A couple of men wearing hard hats and no shirts standing in a room filled with construction materials and tools.", - "id": 22425 - }, - { - "image_path": "G:\\images\\combined\\-3565-_png_jpg.rf.0cc5e7a04721fbb7dc4ef8091cfc0d8b.jpg", - "response": "a group of men in white hats walking across a field", - "id": 22426 - }, - { - "image_path": "G:\\images\\combined\\-3566-_png_jpg.rf.56357ec574a0e07cff6f416c360b4d9a.jpg", - "response": "A group of people walking across a parking lot.", - "id": 22427 - }, - { - "image_path": "G:\\images\\combined\\-3568-_png_jpg.rf.d41796e1cf0c896185d10ea5615433f8.jpg", - "response": "A worker is using a hand tool on a construction site.", - "id": 22428 - }, - { - "image_path": "G:\\images\\combined\\-3573-_png_jpg.rf.af1148040dbb68802f5e220f5fbf044e.jpg", - "response": "A group of workers are seen in the image, they are working on a road sign. The workers are wearing blue uniforms. In the background, there are several trucks parked.", - "id": 22429 - }, - { - "image_path": "G:\\images\\combined\\-3575-_png_jpg.rf.c39010c8a1e56223e33df4c0ddcdc97f.jpg", - "response": "A worker is working on a power line in China. He is wearing a blue helmet and grey clothes. He is on a silver platform that is placed on top of a power pole. He is working on the power lines above.", - "id": 22430 - }, - { - "image_path": "G:\\images\\combined\\-3578-_png_jpg.rf.70b42944caa5b322cc07b84c59f3fd9e.jpg", - "response": "a group of people standing around a device", - "id": 22431 - }, - { - "image_path": "G:\\images\\combined\\-3579-_png_jpg.rf.3102feba39a703adc5026234df5cdd7f.jpg", - "response": "A worker in a blue uniform and hat repairs a power line.", - "id": 22432 - }, - { - "image_path": "G:\\images\\combined\\-3582-_png_jpg.rf.e9a67c0880360e62d73d302620675ba0.jpg", - "response": "In the image, a worker is seen wearing a blue jumpsuit and a white helmet while working on a power line. The worker is in the middle of the photo, with one foot on a step ladder and the other hanging off a wire. They are seen in mid-stride, walking across the wire with a power tower in the background.", - "id": 22433 - }, - { - "image_path": "G:\\images\\combined\\-3584-_png_jpg.rf.40dd8a0b28d57775728fbfc9c32a7d78.jpg", - "response": "A worker is suspended from a building in China, using a ladder that is too small for him.", - "id": 22434 - }, - { - "image_path": "G:\\images\\combined\\-3585-_png_jpg.rf.6610e0d02e46334744f421db2934165d.jpg", - "response": "A worker is standing on scaffolding at a construction site. The scaffolding is made of metal and is located inside a building. The worker is wearing a white helmet and blue overalls. The worker is also holding a cell phone in their hand.", - "id": 22435 - }, - { - "image_path": "G:\\images\\combined\\-3586-_png_jpg.rf.00f78fa29ae91cf546056a289e38cdf3.jpg", - "response": "The image shows a snowy scene with trees covered in snow. In the foreground, there are two workers on a snowy day, one of them is repairsman, who is wearing a black suit and climbing a snow-covered electric pole with the help of a ladder. The ladder is fixed to the pole with a hook. The worker at the top of the pole is fixing the electric wires. The sky is overcast and the snow is falling heavily.", - "id": 22436 - }, - { - "image_path": "G:\\images\\combined\\-3589-_png_jpg.rf.50b1c52adef522791dd55a16b469215b.jpg", - "response": "A man wearing a blue hard hat and sunglasses stands on a construction site. He is holding a set of blueprints.", - "id": 22437 - }, - { - "image_path": "G:\\images\\combined\\-359-_png_jpg.rf.d22fde7fd86152d41c6e36de28a22ebf.jpg", - "response": "The image shows a construction site with several workers. There are three workers in the foreground, all wearing yellow hard hats and work clothes. They are standing on the ground, holding tools. In the background, there are two other people, one on the left and one on the right. There are also two yellow objects in the air, which are hard to identify. The ground is covered with stones and there are some trees in the middle of the scene. The sky is blue and there are no clouds.", - "id": 22438 - }, - { - "image_path": "G:\\images\\combined\\-3590-_png_jpg.rf.74ee293adf0872e55e05a0b649e450bd.jpg", - "response": "Two men in hard hats looking at a blueprint of a building under construction.", - "id": 22439 - }, - { - "image_path": "G:\\images\\combined\\-3592-_png_jpg.rf.b2bf077003b558597faceb60d4b7d910.jpg", - "response": "A group of people in hard hats and grey uniforms are standing in a large room. They are all wearing red hard hats. In the middle of the room, there is a person who is laying on the ground. They are wearing a grey uniform and a red hard hat. There are two people in the middle of the room shaking hands. One of the men is wearing a grey uniform and a red hard hat. The other man is wearing a grey uniform and a black hard hat. There are several other people standing around them. Some of them are wearing red hard hats. In the background, there is a wall that looks like a rock wall.", - "id": 22440 - }, - { - "image_path": "G:\\images\\combined\\-3593-_png_jpg.rf.11c89a50e52e58ddd8847607d063dc31.jpg", - "response": "In the image, two men are working on a white ceiling. They are wearing grey uniforms and yellow helmets. The man on the left is holding a blue tool in his right hand and the man on the right is wearing a pink helmet and has a blue tool in his right hand. There is a white sheet of paper on the left side of the image and a cup on the right side.", - "id": 22441 - }, - { - "image_path": "G:\\images\\combined\\-3594-_png_jpg.rf.7c3528f84177aa66e14618203c7da6d8.jpg", - "response": "A group of men standing around and talking.", - "id": 22442 - }, - { - "image_path": "G:\\images\\combined\\-3595-_png_jpg.rf.06180ce59fe27e6a8288b7e21a7b2ed9.jpg", - "response": "A group of people standing on top of a construction site.", - "id": 22443 - }, - { - "image_path": "G:\\images\\combined\\-3596-_png_jpg.rf.b191f3ac0adcbbeef1e246180f5b91f5.jpg", - "response": "A group of people standing around a construction site.", - "id": 22444 - }, - { - "image_path": "G:\\images\\combined\\-3598-_png_jpg.rf.74c33dab0480b92283a629b299107a29.jpg", - "response": "In the image there is a man wearing a red hard hat and a black jacket. The man is working on a ship, specifically on the propeller of the ship. He is holding a large wrench and is adjusting a black wheel. The ship is red and is in the background.", - "id": 22445 - }, - { - "image_path": "G:\\images\\combined\\-36-_png_jpg.rf.4efcecb9edc7f05f995ee93d352713ca.jpg", - "response": "A woman in a hard hat is holding a yellow piece of paper and talking to a man in a red hard hat. They are standing in front of a construction site with tall buildings in the background. There are also several other people standing around the construction site.", - "id": 22446 - }, - { - "image_path": "G:\\images\\combined\\-3605-_png_jpg.rf.13618d7d1551c74af7572b01b790fe0c.jpg", - "response": "The image shows two men inside a construction elevator. Both men are wearing hard hats and one of them is pointing to something on the wall. The wall has a blackboard with a green border and a white arrow written on it. The elevator has a see-through view of the outside, showing a wall covered in orange netting. The elevator has a control panel with buttons on the right side of the image.", - "id": 22447 - }, - { - "image_path": "G:\\images\\combined\\-3606-_png_jpg.rf.858ae84ee25433a957931e2f84bba17d.jpg", - "response": "A construction site with multiple cranes in the air.", - "id": 22448 - }, - { - "image_path": "G:\\images\\combined\\-3607-_png_jpg.rf.22c15c845b34aec3c87e84ce04e1d7a7.jpg", - "response": "In the image, two workers are seen working on a construction site. They are standing on the floor among many iron rods arranged in different directions. One worker is seen wearing a black jacket and a cap, and is working with a welding machine to join two iron rods together. Another worker is wearing a red scarf and a black jacket, and is working by stacking the iron rods. The wall of the construction site is concrete and has some metal rods embedded in it. The workers are taking care to ensure the safety of the site by wearing helmets. The floor is covered with tiles and there are some tiles missing. The workers are working under a tunnel that is under construction.", - "id": 22449 - }, - { - "image_path": "G:\\images\\combined\\-3611-_png_jpg.rf.cbbff68dbef5170e77579284a525c2de.jpg", - "response": "Some people are working on a building that is under construction. They are standing on a wooden structure that has many wooden poles. In the background, there are many other wooden poles arranged in a grid pattern. The whole scene looks quite large and impressive.", - "id": 22450 - }, - { - "image_path": "G:\\images\\combined\\-3613-_png_jpg.rf.8bec08d5ae33dce2d1b6f11b63cfae21.jpg", - "response": "A construction site with several people working on it. There are many steel rods laid out on the ground and some being carried by the workers. In the background there is a large pile of dirt and some hills with trees in the distance. There is also a sky with clouds in the background.", - "id": 22451 - }, - { - "image_path": "G:\\images\\combined\\-3614-_png_jpg.rf.d10ef683c26a48262e778e952261d38a.jpg", - "response": "A group of people walking in front of a building under construction.", - "id": 22452 - }, - { - "image_path": "G:\\images\\combined\\-3615-_png_jpg.rf.4e68ce6b2793bdd79e7f81c5ba262bc0.jpg", - "response": "A group of men in red uniforms are working on power lines. They are standing on top of a utility pole and are surrounded by power lines and equipment. Some of the men are holding onto the power lines while others are working on the pole. The sky is overcast and appears to be cloudy.", - "id": 22453 - }, - { - "image_path": "G:\\images\\combined\\-3616-_png_jpg.rf.3819ef537e89532fc76ba07acf4b2458.jpg", - "response": "A large metal structure is being built in a field. The metal beams are supported by several large metal poles that are driven into the ground. The metal structure is a square and is supported by a large metal framework that is being lowered into place by a crane. The workers are wearing hard hats and coats and are standing around the metal structure.", - "id": 22454 - }, - { - "image_path": "G:\\images\\combined\\-3617-_png_jpg.rf.ead24791453d9783d4d278aa1933dcd0.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 22455 - }, - { - "image_path": "G:\\images\\combined\\-3619-_png_jpg.rf.48fd41cecca4779f938cc30ea9a4a6c9.jpg", - "response": "The image shows a group of people walking together. They are all wearing hard hats, and some of them are also wearing yellow and red shirts. The people are standing in front of a building that is under construction. The building has a blue roof and walls that are a mix of blue and white. In the foreground, there is a person wearing a black shirt and black shoes. Another person is wearing a yellow hat and a white shirt. A third person is wearing a red hat and a white shirt. There is also a person wearing a grey shirt and a red hat. The group of people is walking towards the camera, and some of them are holding cell phones.", - "id": 22456 - }, - { - "image_path": "G:\\images\\combined\\-362-_png_jpg.rf.2c721d4da79bd33768f8431127eb011b.jpg", - "response": "A worker is seen here making adjustments to the steel rebar for the foundation of a building under construction in the village of Laohutiao in the mountainous region of Zhaotong city, Yunnan province, Oct. 29, 2013. The Laohutiao community, located at an altitude of 2,300 meters, is one of the poverty-stricken areas in China. The Chinese government has been carrying out a poverty alleviation program for the last 50 years, which has lifted hundreds of millions of people out of poverty. However, there are still some areas in the country struggling with poverty. (Photo by People's Daily Online/ChinaFotoPress via Getty Images)", - "id": 22457 - }, - { - "image_path": "G:\\images\\combined\\-3621-_png_jpg.rf.80bd075f4cdf624c50473fc604babbd4.jpg", - "response": "The image shows two workers in a construction site. One worker is on the left and the other one is on the right. They are wearing white and blue clothes and yellow hats. The left worker is carrying a trolley and the right worker is holding a rope tied to a metal cage. The rope is in turn tied to the metal cage. In the background, there is a large building. In the foreground, there is a large area of soil that has been dug up and covered with a green net. The net has several pieces of it scattered around the soil.", - "id": 22458 - }, - { - "image_path": "G:\\images\\combined\\-3622-_png_jpg.rf.8bad30b1fdbb046117b72ade9e0098aa.jpg", - "response": "In the image there is a large white crane lifting a large metal object. Underneath the metal object, there are two people wearing orange and yellow vests and white helmets. They are working on the metal object. In the upper right corner of the image, there is a large white building. There is a small orange safety line connected to the metal object and the people.", - "id": 22459 - }, - { - "image_path": "G:\\images\\combined\\-3623-_png_jpg.rf.488231a71f6c30e306759efeeb5ce038.jpg", - "response": "A man wearing a blue hard hat and work clothes.", - "id": 22460 - }, - { - "image_path": "G:\\images\\combined\\-3624-_png_jpg.rf.6df37c2c6757920e3f52db80f2c653c1.jpg", - "response": "A worker is suspended from a wire, climbing a telephone pole. He is wearing a white helmet and grey clothes. The sky is overcast.", - "id": 22461 - }, - { - "image_path": "G:\\images\\combined\\-3625-_png_jpg.rf.d6d7c0726a503bfdb2c64cfaffb8fc35.jpg", - "response": "A man in a hard hat sitting on the ground with a bottle of beer in his hand.", - "id": 22462 - }, - { - "image_path": "G:\\images\\combined\\-3627-_png_jpg.rf.b9d8c17b36812db090f958bd8bc17357.jpg", - "response": "An industrial harbor with two engineers standing in front of a large red ship. Both of the engineers are wearing yellow vests and hard hats. They are looking at a clipboard that one of them is holding. The ship is docked next to a oil rig in the background.", - "id": 22463 - }, - { - "image_path": "G:\\images\\combined\\-363-_png_jpg.rf.02ed446d25cdad9ea6456fe4430bff1b.jpg", - "response": "In the image there are three people standing together in a construction site. Two of them are wearing yellow and orange hard hats, the one on the right is also wearing a yellow and orange safety vest. The person on the far left is wearing a black suit and a blue hard hat. The person in the middle, who seems to be the boss, is wearing a black suit and a blue hard hat. They are all looking at a blueprint which is open on the ground. The background shows a large metal structure and a pile of bricks.", - "id": 22464 - }, - { - "image_path": "G:\\images\\combined\\-3630-_png_jpg.rf.156fe2c3b6977b7a24858b5ba4476744.jpg", - "response": "A group of men in orange work clothes and hard hats stand in a construction site. They are working on a concrete structure. There are several drill bits and metal structures around them.", - "id": 22465 - }, - { - "image_path": "G:\\images\\combined\\-3633-_png_jpg.rf.7bbdff4f7edd6ffeb139514495643312.jpg", - "response": "A team of three workers in blue jackets and green raincoats are pulling on a large black and grey cable. They are wearing blue hats and the man on the right is wearing a blue hat and a blue jacket. The man in the middle is wearing a yellow hard hat and a blue jacket. The man on the left is wearing a green raincoat and a blue hat. The workers are all barefoot.", - "id": 22466 - }, - { - "image_path": "G:\\images\\combined\\-3635-_png_jpg.rf.3868e34d8d0a33d4af913cc43b623855.jpg", - "response": "In the image there is a construction site with several people working. Some of the people are wearing blue and yellow clothes and yellow hats. They are working with iron rods and welding tools to build a structure. The structure looks like a tunnel or a bridge pylon. There are also several other people in the image, some of them are walking around and some are standing. The background shows a building under construction and a red sign with white characters.", - "id": 22467 - }, - { - "image_path": "G:\\images\\combined\\-3636-_png_jpg.rf.16538eee6210a4edb6410ff75a29f7b7.jpg", - "response": "A construction site with two men looking at blueprints.", - "id": 22468 - }, - { - "image_path": "G:\\images\\combined\\-3639-_png_jpg.rf.40663b0b34292acacac39159170f6fd8.jpg", - "response": "In the image, a worker is seen standing next to a large metal object, wearing a black shirt and yellow gloves. The worker is also seen reflected in a mirror on the wall, which shows the worker's face and the metal object. The worker is located on the right side of the image. The background shows a wall with a mirror on it, and a large metal object on the left side of the image. The metal object is black and appears to be square-shaped. The scene takes place in a factory.", - "id": 22469 - }, - { - "image_path": "G:\\images\\combined\\-364-_png_jpg.rf.2e09581badf985808c53f2253b72b1ee.jpg", - "response": "A group of men wearing hard hats are gathered around a computer.", - "id": 22470 - }, - { - "image_path": "G:\\images\\combined\\-3641-_png_jpg.rf.7437c645859450ce93da39e8062849c4.jpg", - "response": "two construction workers(639,327),(757,655)(529,367),(675,648) on a scaffold", - "id": 22471 - }, - { - "image_path": "G:\\images\\combined\\-3642-_png_jpg.rf.7a37afa58b8727040c8e07375e92f76a.jpg", - "response": "A group of people standing around a truck with a large pipe on the back.", - "id": 22472 - }, - { - "image_path": "G:\\images\\combined\\-3643-_png_jpg.rf.2fb46e6a3f09a01d162723062f392029.jpg", - "response": "An electrician in orange jumpsuits and blue helmet repairs power lines.", - "id": 22473 - }, - { - "image_path": "G:\\images\\combined\\-3645-_png_jpg.rf.b88d206ee5712b4632bf8658f3d306a9.jpg", - "response": "A man wearing a hard hat is holding a rolled up paper in front of a building under construction.", - "id": 22474 - }, - { - "image_path": "G:\\images\\combined\\-3646-_png_jpg.rf.7f1c21857c4fb8fe766f2480657c286c.jpg", - "response": "A man holding a drill in a building site.", - "id": 22475 - }, - { - "image_path": "G:\\images\\combined\\-3647-_png_jpg.rf.3086866b9c2dd1d616832d7483219bd3.jpg", - "response": "A worker is using an excavator to clear a flooded area.", - "id": 22476 - }, - { - "image_path": "G:\\images\\combined\\-365-_png_jpg.rf.dd7401adc169fb2f17bb8b09b7077b23.jpg", - "response": "A construction worker in a yellow hard hat is sitting on a yellow crane with his right leg hanging over the side of the crane. He is holding a large yellow tool in his left hand. He is wearing a green uniform.", - "id": 22477 - }, - { - "image_path": "G:\\images\\combined\\-3650-_png_jpg.rf.0e843431f9b7f274326c134feb04838a.jpg", - "response": "A group of men working on a brick wall.", - "id": 22478 - }, - { - "image_path": "G:\\images\\combined\\-3651-_png_jpg.rf.7159e11f4c0333dffdb47ec51a07abb3.jpg", - "response": "A construction site with two men in hard hats looking off into the distance.", - "id": 22479 - }, - { - "image_path": "G:\\images\\combined\\-3652-_png_jpg.rf.0c2b232ef85abf8f6f8693f5cc539148.jpg", - "response": "A construction worker in a red uniform and helmet is standing next to a pile of debris. He is holding a pink balloon and a cigarette. In the background, there is a city street with tall buildings, including one with a spire. There is also a bicycle and a person walking in the distance.", - "id": 22480 - }, - { - "image_path": "G:\\images\\combined\\-3653-_png_jpg.rf.11a5f14c97ec5fc36d06b8aaf06b0a2a.jpg", - "response": "The image shows a group of workers in a\u96a7\u9053. There are five workers in the image, with four of them wearing red and white and one wearing black. They are working on the left side of the tunnel, which is yellow in color. The workers are holding hoses and some of them are holding brushes. They are cleaning the inside of the tunnel, which has a brown color. The workers are also wearing helmets for safety.", - "id": 22481 - }, - { - "image_path": "G:\\images\\combined\\-3656-_png_jpg.rf.60973fcaea6db572a875a09d26fbf34c.jpg", - "response": "In the image there are two people wearing orange and white work clothes and orange helmets. They are standing in front of a pile of coal and checking some documents. The documents are located on the left side of the image. The person on the right is holding a large rock and looking at it. The background is a mining site with some steel structures and coal.", - "id": 22482 - }, - { - "image_path": "G:\\images\\combined\\-3658-_png_jpg.rf.2a45f9744d4b5fe5298f3690acc54117.jpg", - "response": "A worker is seen in a factory, standing in front of a large oven with a long rod in his hand. The image is dark and shows only the worker and the oven.", - "id": 22483 - }, - { - "image_path": "G:\\images\\combined\\-3659-_png_jpg.rf.ff22422a7f3493b530aab4bc38deb0f3.jpg", - "response": "The image shows two workers in blue hardhats and work clothes, one of them is on the left and the other one is on the right, they are working on a bridge.", - "id": 22484 - }, - { - "image_path": "G:\\images\\combined\\-3660-_png_jpg.rf.eb5efd39baf2bef2d4e3dc57b3cee1b1.jpg", - "response": "A construction site with several people working on it. There are steel rods in the forefront and a building under construction in the background. On the building, there is a banner that says \"\u4e8b\u6545\u5168\u5e74\u5e73\u5b89\u79b1\u544a\u9580\" and \"\u5b89\u5168\u77e5\u8b58\u4f60\u6211\u4ed6\".", - "id": 22485 - }, - { - "image_path": "G:\\images\\combined\\-3662-_png_jpg.rf.ea89173f49ddf285861b788a118c7fc6.jpg", - "response": "A couple of men in orange work suits and yellow helmets are working on power lines.", - "id": 22486 - }, - { - "image_path": "G:\\images\\combined\\-3663-_png_jpg.rf.33b238047f98d3f4fdd52095db905355.jpg", - "response": "In the image, there are several workers dressed in blue and grey. They are working on a building site, with one worker on the left and another worker on the right. In the middle, there is a worker wearing a blue helmet who is crouching down. Another worker is in the background, wearing a camo helmet and jacket. There is also a white helmet in the middle of the scene. In the foreground, there is a man lying on the ground, wearing a white helmet and grey jacket. He appears to be injured. There are also two rescue hooks nearby.", - "id": 22487 - }, - { - "image_path": "G:\\images\\combined\\-3664-_png_jpg.rf.2771380e74b501b3435d1ea1c19e6c0d.jpg", - "response": "A construction worker in a yellow hard hat and orange vest stands on the side of a road with a yellow truck behind him. There are two orange posts on the side of the road and a puddle of water in front of the worker.", - "id": 22488 - }, - { - "image_path": "G:\\images\\combined\\-3666-_png_jpg.rf.5dbfd082b4210aa5aaec9c4ad680b621.jpg", - "response": "A group of people standing around a construction site.", - "id": 22489 - }, - { - "image_path": "G:\\images\\combined\\-3667-_png_jpg.rf.0d1ba0e91b68030c4a0170c429663d21.jpg", - "response": "a group of men standing in front of a tall building", - "id": 22490 - }, - { - "image_path": "G:\\images\\combined\\-3668-_png_jpg.rf.b90b80bb5cd8f3e225b9097800035eac.jpg", - "response": "A construction worker in a red uniform and helmet, standing in front of a concrete structure with a gas bottle in his hand.", - "id": 22491 - }, - { - "image_path": "G:\\images\\combined\\-3669-_png_jpg.rf.d40a8606a57ba806f7b3af13f175b47a.jpg", - "response": "A man in a red shirt and black pants standing on a ladder.", - "id": 22492 - }, - { - "image_path": "G:\\images\\combined\\-367-_png_jpg.rf.52181ce4b1a399c694270d73300e30aa.jpg", - "response": "A construction site with a building under construction in the background.", - "id": 22493 - }, - { - "image_path": "G:\\images\\combined\\-3670-_png_jpg.rf.d2473527a80a3579ae76b21e9669e10b.jpg", - "response": "A group of three men working on a bridge.", - "id": 22494 - }, - { - "image_path": "G:\\images\\combined\\-3671-_png_jpg.rf.5dba18ae5cd9b42435e702705b42d325.jpg", - "response": "A man wearing a red hard hat standing in front of a construction site.", - "id": 22495 - }, - { - "image_path": "G:\\images\\combined\\-3676-_png_jpg.rf.6b206a707518625fe5eece1fb3692e31.jpg", - "response": "Two men wearing hard hats, one holding a ladder over his head, the other holding a stack of red bricks.", - "id": 22496 - }, - { - "image_path": "G:\\images\\combined\\-3679-_png_jpg.rf.294c903c2772dc97546c0ef272010e4d.jpg", - "response": "In the image there are multiple people working on a construction site. They are all wearing yellow hats and some are wearing blue shirts. Some people are standing on a concrete pile, and some are standing on a steel grid. There are several cranes working in the background. One of the cranes has a yellow arm and a hook at the end. There is a person at the left side of the image wearing white shoes and green pants. Another person is holding a yellow pipe at the left side of the image. At the right side of the image, there are two people wearing white shoes and red hats. One of them is holding a grey pipe. There is a yellow pipe at the top left corner of the image and a yellow helmet is placed at the bottom left corner of the image.", - "id": 22497 - }, - { - "image_path": "G:\\images\\combined\\-368-_png_jpg.rf.73b19144a4a26f7b179b7cd89662c685.jpg", - "response": "A worker in a white and yellow uniform, with a silver helmet and a clear visor, is standing in a dimly lit room. They are holding a tool and appear to be in the process of starting a fire. There are several white bags on the floor around them and a table in the background. The room is filled with a grey smoke.", - "id": 22498 - }, - { - "image_path": "G:\\images\\combined\\-3680-_png_jpg.rf.3e6ea9b5435c9fd6d92ae7f81211dab3.jpg", - "response": "In the image two people are wearing backpacks with a white and blue tank on the back. They are standing in front of a large metal structure that looks like a oil rig. The sky is blue and they are wearing white helmets.", - "id": 22499 - }, - { - "image_path": "G:\\images\\combined\\-3682-_png_jpg.rf.151fd639567fa0e165c2ba0d77d6a1df.jpg", - "response": "A man in a green shirt and red hard hat is laughing while talking on his cell phone. He is standing in front of a pile of dirt and construction equipment. There is a red hard hat hanging above him and another one behind him. In the background there is a truck and a forklift.", - "id": 22500 - }, - { - "image_path": "G:\\images\\combined\\-3683-_png_jpg.rf.82abdd0b431fc96b93a45a8c3ce71499.jpg", - "response": "In the image there is a large yellow and grey construction vehicle with two large spools of orange wire on the back. There is a group of people standing on top of the construction vehicle wearing orange and yellow hard hats. They are working on overhead power lines.", - "id": 22501 - }, - { - "image_path": "G:\\images\\combined\\-3684-_png_jpg.rf.1e2435ea16b696370d9435c712609c7e.jpg", - "response": "A man in a red jumpsuit and yellow hard hat is using a tool to trim a tree branch.", - "id": 22502 - }, - { - "image_path": "G:\\images\\combined\\-3685-_png_jpg.rf.d32f763f21c693beaac95c1f91775a15.jpg", - "response": "The image shows several people working on a piece of construction equipment, with two people holding a yellow bag over the top of it. The people are wearing dark blue and yellow clothing. The background is dark, with the people standing on a metal platform and a cinder block. The text at the bottom reads \"\u5824\u5cb8\u4eba\u5b9a\u62a5 \u5bd2\u51b7\u6321\u4e0d\u4f4f\" (The\u5824\u5cb8 people are determined, the cold cannot\u963b\u6321 them).", - "id": 22503 - }, - { - "image_path": "G:\\images\\combined\\-3686-_png_jpg.rf.5221f56675cce8fd36b91b7bc487d444.jpg", - "response": "Some construction workers are pouring liquid on to the ground.", - "id": 22504 - }, - { - "image_path": "G:\\images\\combined\\-3689-_png_jpg.rf.fceba1f5c4a23a5158025557a62a0d9a.jpg", - "response": "A group of men are walking up a snowy hill.", - "id": 22505 - }, - { - "image_path": "G:\\images\\combined\\-369-_png_jpg.rf.9f48a5ef8b0bcc6799d17b40004fa318.jpg", - "response": "\u519c\u6c11\u5de5\u5144\u5f1f(595,468),(809,997)(636,436),(874,877)(89,258),(314,997)\u5728\u70c8\u65e5\u4e0b\u65bd\u5de5\uff0c\u4ed6\u4eec\u4e0d\u754f\u8270\u8f9b\uff0c\u7528\u81ea\u5df1\u7684\u6c57\u6c34\u6d47\u704c\u7740\u57ce\u5e02\u7684\u7f8e\u4e3d\u3002", - "id": 22506 - }, - { - "image_path": "G:\\images\\combined\\-3691-_png_jpg.rf.aabe0885b4d892d565457affbf9294a7.jpg", - "response": "A woman wearing a white hard hat and a blue shirt is using a power drill to work on a green and red object.", - "id": 22507 - }, - { - "image_path": "G:\\images\\combined\\-3692-_png_jpg.rf.c1c95a446d5a9dddd3d0d9ae5b72f1db.jpg", - "response": "The image shows two construction workers wearing hard hats and safety goggles, one on the left and one on the right, both crouching and working on a construction site. They are building a large blue building in the background. In the foreground, there is a large piece of rebar placed on the ground, and several other pieces of rebar are stacked nearby. A few other people are visible in the image, but they are not construction workers.", - "id": 22508 - }, - { - "image_path": "G:\\images\\combined\\-3694-_png_jpg.rf.2ba43d96b4a73d0bef0790d8423deed3.jpg", - "response": "A construction site with multiple people working on it. There is a large building under construction with many metal frameworks in place. Two people are working on the site, one near the middle of the image and one on the right. They are both wearing yellow hard hats. In the background, there is a red and white building and a yellow crane.", - "id": 22509 - }, - { - "image_path": "G:\\images\\combined\\-3696-_png_jpg.rf.a76af6ea8d8df1a6d82bf5a371e8a0dc.jpg", - "response": "An electrician working on some electrical panels.", - "id": 22510 - }, - { - "image_path": "G:\\images\\combined\\-3697-_png_jpg.rf.7785b9aab790b46771f6b736e43fc7b2.jpg", - "response": "The image shows several workers dressed in blue and wearing hard hats, walking across a parking lot. They are carrying blueprints and there are several cranes in the background. The sign on the left says \"POWERCHINA BOEICHIJIN\" and the one on the right says \"\u4e2d\u56fd\u80fd\u5efa\u845b\u6d32\u575d\u96c6\u56e2\". The sky is overcast and there are a few construction vehicles in the background.", - "id": 22511 - }, - { - "image_path": "G:\\images\\combined\\-3698-_png_jpg.rf.8dbb5d424fba4b52b7c9e6176366b40e.jpg", - "response": "a group of people standing around and talking to each other", - "id": 22512 - }, - { - "image_path": "G:\\images\\combined\\-3699-_png_jpg.rf.cc147145dfe2e6e2ca65d5c52a9b3d19.jpg", - "response": "a group of men standing around each other", - "id": 22513 - }, - { - "image_path": "G:\\images\\combined\\-37-_png_jpg.rf.e649b3cc02a5abdece723867319539b7.jpg", - "response": "A group of people standing around a construction site", - "id": 22514 - }, - { - "image_path": "G:\\images\\combined\\-3700-_png_jpg.rf.7f8c912a3e79569d3b884b3bd93e3256.jpg", - "response": "The image shows a large tunnel with pipes and machinery inside. There are two construction workers standing on the right side of the tunnel, wearing yellow reflective vests and hard hats. They are surrounded by various tools and machinery, including a large yellow and black vehicle on the right side of the tunnel and a pile of pipes on the left side. The workers appear to be engaged in construction work.", - "id": 22515 - }, - { - "image_path": "G:\\images\\combined\\-3706-_png_jpg.rf.405b5b1feb0502d8f5a4c4cb6218da75.jpg", - "response": "A group of workers standing in front of a building under construction.", - "id": 22516 - }, - { - "image_path": "G:\\images\\combined\\-3708-_png_jpg.rf.7f2c3acd4f60a0e55a4654018d6037a9.jpg", - "response": " Three workers(167,286),(478,997)(420,328),(637,997)(681,274),(915,997) in hard hats(285,286),(401,373)(444,327),(569,411)(729,273),(831,366) walking in front of a fence.", - "id": 22517 - }, - { - "image_path": "G:\\images\\combined\\-3709-_png_jpg.rf.39a4d82093f9b757417d98ffb3fbf9e4.jpg", - "response": "A group of men standing in front of a large piece of machinery.", - "id": 22518 - }, - { - "image_path": "G:\\images\\combined\\-3710-_png_jpg.rf.ea6898e80d8967ea54d32ca18c386dcc.jpg", - "response": "A man in a hard hat and work clothes is using a jackhammer to break up a concrete surface. He is standing on a ladder and is focused on the task at hand. The concrete is covered in black graffiti and there are several pieces of rebar scattered around the area.", - "id": 22519 - }, - { - "image_path": "G:\\images\\combined\\-3712-_png_jpg.rf.49f4e6b52f03e53c4056f7289c98c6b7.jpg", - "response": "A person wearing a red jacket and a white helmet is holding a flashlight while standing in a dark cave. They are standing on rocks and there are wires above them.", - "id": 22520 - }, - { - "image_path": "G:\\images\\combined\\-3717-_png_jpg.rf.8d0e1566677c6dd51187fb2841118d60.jpg", - "response": "A rescue worker descends into the darkened, flooded interior of a bridge support tower.", - "id": 22521 - }, - { - "image_path": "G:\\images\\combined\\-3718-_png_jpg.rf.bc222f611d5d265c5764cf6c71a4efc3.jpg", - "response": "A large ship is being built in a ship yard.", - "id": 22522 - }, - { - "image_path": "G:\\images\\combined\\-372-_png_jpg.rf.5833386fd217fbd4bb7484a0c49a8f40.jpg", - "response": "A couple of men in orange jumpsuits and hard hats are on a power line.", - "id": 22523 - }, - { - "image_path": "G:\\images\\combined\\-3720-_png_jpg.rf.d525d3804a2fa3117c5096676d38b748.jpg", - "response": "The image shows a group of workers inside a large\u96a7\u9053. They are working on a section of track that appears to be rusty. Some of the workers are standing on a beam, while others are working on the track. They are all wearing hard hats and some are wearing white or yellow shirts. The tunnel is white and brown in color and has a circular shape. The workers are at the center of the tunnel and there is a person at the far right who is not working on the track.", - "id": 22524 - }, - { - "image_path": "G:\\images\\combined\\-3721-_png_jpg.rf.4784fd3326f0ac1c27ff1eb2ae742f52.jpg", - "response": "A group of people walking through a construction site.", - "id": 22525 - }, - { - "image_path": "G:\\images\\combined\\-3722-_png_jpg.rf.0d1832afa9fdba4eaa6132625e914511.jpg", - "response": "A man in a blue jacket is showing another man a binder on a shelf.", - "id": 22526 - }, - { - "image_path": "G:\\images\\combined\\-3723-_png_jpg.rf.4ba299d6f735376f78cd817d1918f37d.jpg", - "response": "A group of people standing next to scaffolding and a building under construction.", - "id": 22527 - }, - { - "image_path": "G:\\images\\combined\\-3726-_png_jpg.rf.1eeddf02fa0fde2db836ea166da0143a.jpg", - "response": "In the image there is a construction site with a person in the center of the frame wearing a red helmet and red shirt, standing on a concrete slab and washing it with a hose. The person is wearing gray pants. To the right of the person, there are several iron columns, some are connected to a wooden platform. The whole scene is surrounded by a black frame.", - "id": 22528 - }, - { - "image_path": "G:\\images\\combined\\-3727-_png_jpg.rf.6c9eeff4b874eeba09e2568ba2bece6f.jpg", - "response": "The image shows workers in the process of building a bridge. There are several workers in the picture, some are wearing yellow helmets, and some are wearing green uniforms. One worker is using a yellow crane to lift a large pipe, while another worker is standing next to a pile of black pipes. The background shows a bridge under construction.", - "id": 22529 - }, - { - "image_path": "G:\\images\\combined\\-3729-_png_jpg.rf.a33326573d8ae1090b15ebe5401e0d44.jpg", - "response": "The image shows two workers suspended on a wire, working on some overhead electrical wires. They are wearing blue helmets and orange vests. The left worker is holding a tool in his right hand while the other worker is holding a tool in his left hand. There is a truck parked near the workers. The background shows a stretch of railway tracks and a landscape of flat land and telephone poles in the distance.", - "id": 22530 - }, - { - "image_path": "G:\\images\\combined\\-3730-_png_jpg.rf.60ee92cc1f16f5453cd33300d3ab7b9f.jpg", - "response": "In the image, rescue workers in orange jumpsuits are working to stabilize a cliff side. They are using equipment such as metal rods and what looks like a large net. The cliff side has a large area of damaged orange stone and there are hands of rescue workers all over the image.", - "id": 22531 - }, - { - "image_path": "G:\\images\\combined\\-3731-_png_jpg.rf.cafc6fa355327106973ebe8dfe171e91.jpg", - "response": "The image shows a group of rescue workers in a darkened room filled with debris. They are standing on a wooden platform and are wearing hard hats. Some workers are carrying a stretcher with a person on it. In the background, there are several firemen wearing helmets and uniforms. One of the firemen is holding a hose. The scene also shows a person wearing a white shirt and a black jacket.", - "id": 22532 - }, - { - "image_path": "G:\\images\\combined\\-3732-_png_jpg.rf.ac97fc68a62e2dab0da52728c9223bff.jpg", - "response": "Four construction workers in orange vests and blue helmets are pouring concrete into a large tube form. The workers are wearing grey pants and yellow, orange and grey vests. There are three people on the left side of the image and one person on the right side. In the background, there are three buildings in the distance and a partially constructed building on the right side of the image. There are also two cranes in the background.", - "id": 22533 - }, - { - "image_path": "G:\\images\\combined\\-3735-_png_jpg.rf.f6fe59b99d72199d9c79145153babd71.jpg", - "response": "A man wearing a hard hat and holding a blueprint, standing in front of a building.", - "id": 22534 - }, - { - "image_path": "G:\\images\\combined\\-3737-_png_jpg.rf.33e551c8f45a014d5ac119164bb595ce.jpg", - "response": "A construction worker in a yellow helmet stands on the ground looking up at the sky. He is wearing a green jacket and has a yellow helmet on. There are other workers in the background, one on the left and one on the right. There are several construction cranes in the sky and a large building under construction. The ground is covered in construction materials and there is a yellow ball floating in the air.", - "id": 22535 - }, - { - "image_path": "G:\\images\\combined\\-3739-_png_jpg.rf.8a51ba76466b3cb16da42922b73de186.jpg", - "response": "A construction site with two workers. One is wearing a yellow helmet and is pouring concrete into a yellow bin. The other worker is on a ladder next to the yellow bin. The sky is blue and there are rebar in the water.", - "id": 22536 - }, - { - "image_path": "G:\\images\\combined\\-374-_png_jpg.rf.275101362b432c2eb0d73ab51e6ea2c1.jpg", - "response": "A man in a hard hat and safety vest is standing in a dark tunnel. He is looking at a pipe with a flashlight. There are several other pipes nearby, some on the left and some on the right. The man is wearing a mask and there is a backpack on the ground next to him. The tunnel has a muddy floor.", - "id": 22537 - }, - { - "image_path": "G:\\images\\combined\\-3741-_png_jpg.rf.18a8ba46318ea8bc4fc8a07a5325b091.jpg", - "response": "a group of men wearing hard hats", - "id": 22538 - }, - { - "image_path": "G:\\images\\combined\\-3743-_png_jpg.rf.3e63d7e2f4f721dc45c5864ae776f0be.jpg", - "response": "A man sitting on a pile of rubble in front of a building.", - "id": 22539 - }, - { - "image_path": "G:\\images\\combined\\-3744-_png_jpg.rf.c07258d5c18e95b312fa6ed15c928707.jpg", - "response": "The image shows a rescue scene where a person has been rescued from a collapsed building. Several firemen are present in the scene, some of them are holding a stretcher with the rescued person on it. The person appears to be a man wearing a white shirt and black pants. The firemen are wearing yellow hard hats and red safety jackets. One of the firemen is using a walkie-talkie to communicate with his team. The scene also shows a yellow excavator digging into the collapsed building. There are several other people present in the scene, some of them are standing, and some are sitting on a chair. The ground is covered with bricks and debris. The sky appears to be cloudy.", - "id": 22540 - }, - { - "image_path": "G:\\images\\combined\\-3746-_png_jpg.rf.dc3d3ada568332bd8dc1524b2d474405.jpg", - "response": "The photo shows three workers on a transmission tower. They are all wearing yellow jackets. One worker is at the top of the frame, standing on the platform of the transmission tower, next to him is a ladder, and another worker is at the bottom of the frame, wearing a safety belt and looking up at the first worker. The transmission tower is located in the middle of a green lake.", - "id": 22541 - }, - { - "image_path": "G:\\images\\combined\\-3747-_png_jpg.rf.5e143a72c9d13f4a93f4a364f7672e16.jpg", - "response": "A group of workers in hard hats stand around a large pipe.", - "id": 22542 - }, - { - "image_path": "G:\\images\\combined\\-3748-_png_jpg.rf.4478c2c656b1005ab2401d94b1a9900d.jpg", - "response": "A group of workers in blue uniforms stand around an electrician working on some power lines.", - "id": 22543 - }, - { - "image_path": "G:\\images\\combined\\-3749-_png_jpg.rf.1d8717cbd3e9a62287e12834cba5eac8.jpg", - "response": "The image shows three men standing next to a wall made of wooden boards. They are all wearing yellow hats and green and yellow reflective vests. The men are smiling and appear to be having fun. One man is holding a hammer and standing in front of a blue and white patterned wall. Another man is holding a yellow frisbee and leaning against a wooden structure. The third man is standing behind the two others and is not holding any objects.", - "id": 22544 - }, - { - "image_path": "G:\\images\\combined\\-375-_png_jpg.rf.c5c7909c29ba1ed5e375eb075b5168c5.jpg", - "response": "In the image there are six people dressed in blue with orange hats. They are standing in a field with yellow flowers and oil pumps behind them.", - "id": 22545 - }, - { - "image_path": "G:\\images\\combined\\-3750-_png_jpg.rf.e8496a3cabe842b8520c4d6f0bfd709f.jpg", - "response": "a group of men walking across a parking lot", - "id": 22546 - }, - { - "image_path": "G:\\images\\combined\\-3751-_png_jpg.rf.4fdeba74f73a0307e7984acafab90f7b.jpg", - "response": "In the image there are two workers, both of them are wearing yellow hats and white safety vests. One of the workers is on the left side of the image and is wearing a hat with a black stripe on the top. The other worker is on the right side of the image and is wearing a hat with a yellow stripe on the top. The background of the image is a black and white photo of two men in hard hats in front of a building.", - "id": 22547 - }, - { - "image_path": "G:\\images\\combined\\-3753-_png_jpg.rf.3cbde291964f04efd28054ea42ad82ae.jpg", - "response": "A group of people standing around a construction site.", - "id": 22548 - }, - { - "image_path": "G:\\images\\combined\\-3756-_png_jpg.rf.0b5737c83927e43de6aff1bd69cdc59c.jpg", - "response": "A line of people walking down a sidewalk next to a construction site.", - "id": 22549 - }, - { - "image_path": "G:\\images\\combined\\-3757-_png_jpg.rf.fe327fcdd528f9c0e4b2c7643c383f84.jpg", - "response": "In the image there are two construction workers on a building site. They are both wearing high visibility jackets and protective hard hats. One of the workers is holding a large tool, possibly a shovel or spade, and is pointing towards the sky. The sky above them is blue with a few white clouds. In the background of the image there is a city skyline with a mix of buildings of different heights and styles.", - "id": 22550 - }, - { - "image_path": "G:\\images\\combined\\-3758-_png_jpg.rf.9adcdc3dbff55fcd0d92b7eb9b0d0225.jpg", - "response": "A snowy forest with trees covered in snow.", - "id": 22551 - }, - { - "image_path": "G:\\images\\combined\\-3759-_png_jpg.rf.0a03d78fa80f4773bbfa9836d1991899.jpg", - "response": "A man is working on a foundation for a building.", - "id": 22552 - }, - { - "image_path": "G:\\images\\combined\\-3760-_png_jpg.rf.59f8dc57a76074959d69656fb0be4ade.jpg", - "response": "An electrician is working on power lines in the snow.", - "id": 22553 - }, - { - "image_path": "G:\\images\\combined\\-3761-_png_jpg.rf.ac9480bf30815c152d0223abfc6144e6.jpg", - "response": "A group of workers are\u62c6\u9664\u4e00\u4e2a\u5927\u578b\u94a2\u7ed3\u6784. They are standing on a large pile of metal rods and beams, which are themselves standing on a platform. The workers are wearing hard hats and some are wearing backpacks. In the background, there are a few buildings and a cloudy sky.", - "id": 22554 - }, - { - "image_path": "G:\\images\\combined\\-3763-_png_jpg.rf.8691a90c33f71b0307db5d3f19d37629.jpg", - "response": "A construction worker and a man in a suit and tie standing in a construction site.", - "id": 22555 - }, - { - "image_path": "G:\\images\\combined\\-3764-_png_jpg.rf.8df60d699f3528b766568bc13cc5022b.jpg", - "response": "A group of men in red work uniforms and yellow helmets are working on a machine. They are all holding different tools and wearing different gear.", - "id": 22556 - }, - { - "image_path": "G:\\images\\combined\\-3765-_png_jpg.rf.90dd7edf462b5d9fe0198aafa030aaa4.jpg", - "response": "A man in a hard hat kneeling down next to a pole.", - "id": 22557 - }, - { - "image_path": "G:\\images\\combined\\-3770-_png_jpg.rf.2c18630625b17628806ba94a316ad445.jpg", - "response": "A construction site with multiple pictures of a man working on it.", - "id": 22558 - }, - { - "image_path": "G:\\images\\combined\\-3771-_png_jpg.rf.ceec8314f826f9e940d83087dac5c87b.jpg", - "response": "The image shows two workers inside a tunnel. They are both dressed in yellow and blue work clothes and are wearing yellow hats. The left worker is holding a broom and is standing on the left side of the image, while the right worker is holding an electric drill and is standing on the right side of the image. In front of them is a large tunnel with a white base and gray walls. The floor of the tunnel is wet in the middle and dry on the sides. There are several white boxes placed on the right side of the tunnel. The background is very dark.", - "id": 22559 - }, - { - "image_path": "G:\\images\\combined\\-3773-_png_jpg.rf.1a1c81dca16a162ba63cb8e6893b4a05.jpg", - "response": "a large tunnel with a ladder in it", - "id": 22560 - }, - { - "image_path": "G:\\images\\combined\\-3775-_png_jpg.rf.71d13344448191c0de2050fb5dd2dbeb.jpg", - "response": "A group of workers are working on a construction site.", - "id": 22561 - }, - { - "image_path": "G:\\images\\combined\\-3776-_png_jpg.rf.57ea3e35f7d6dc7e87531804403816fe.jpg", - "response": "A man in a high visibility jacket and blue hard hat stands in front of a large pile of concrete blocks. The blocks are stacked three high and extend the full width of the image. The man is standing on the bottom row of blocks and is looking up at the top row. He is holding a walkie talkie and appears to be talking to someone. The blocks are grey in colour and have a grid pattern on them. The man is wearing orange high visibility clothing and has a blue hard hat on.", - "id": 22562 - }, - { - "image_path": "G:\\images\\combined\\-3778-_png_jpg.rf.5d45e39d310949fd1636760285e61f16.jpg", - "response": "A man in an orange uniform and orange hard hat is working on a red piece of equipment. The equipment is on a boat in the water. There is a large ship in the background.", - "id": 22563 - }, - { - "image_path": "G:\\images\\combined\\-3779-_png_jpg.rf.633f2f76c56791934dd9c89b877e2656.jpg", - "response": "A construction worker in a yellow hard hat working on a beam at a construction site. The worker is wearing a blue shirt and has a yellow hard hat on. The construction site is in the background and the worker is in the foreground.", - "id": 22564 - }, - { - "image_path": "G:\\images\\combined\\-378-_png_jpg.rf.2a8b005b2825e6086ba3fadd6f207e55.jpg", - "response": "A construction site with multiple people working on it. There are three yellow cranes working in the background. One of the workers is wearing a white helmet. There are three people in the picture, one is wearing a white helmet and white clothes, the one next to him is wearing a blue helmet and a grey long-sleeved shirt, the one farthest to the right is wearing a black helmet and a grey long-sleeved shirt.", - "id": 22565 - }, - { - "image_path": "G:\\images\\combined\\-3780-_png_jpg.rf.654cd4ab42f5d1c2fabdbc43ddafd7fa.jpg", - "response": "a man in a hard hat is using a tool to apply a substance to a wall.", - "id": 22566 - }, - { - "image_path": "G:\\images\\combined\\-3782-_png_jpg.rf.cf5a345756cd58b787c1b0090d122404.jpg", - "response": "In the image there are two men wearing yellow hard hats and yellow protective clothing. They are standing in front of a large metal structure with pipes and machinery. One of the men is holding a clipboard and a pen.", - "id": 22567 - }, - { - "image_path": "G:\\images\\combined\\-3784-_png_jpg.rf.dbadd14314f54fd46a835348ebeeb5e4.jpg", - "response": "Men in suits and hard hats stand in a construction site.", - "id": 22568 - }, - { - "image_path": "G:\\images\\combined\\-3785-_png_jpg.rf.26a2e47d51381f203c3da7198d304c7b.jpg", - "response": "A group of people standing around a table with a blueprint on it.", - "id": 22569 - }, - { - "image_path": "G:\\images\\combined\\-3786-_png_jpg.rf.9d15ae833a65ba7ff5817ed01ea81eeb.jpg", - "response": "A man in a red hard hat is using a trowel to apply a substance to a wall. The wall is unfinished concrete and the man is applying a cement-based substance to it. There is another man in the background, also wearing a hard hat. They are both working on the construction site.", - "id": 22570 - }, - { - "image_path": "G:\\images\\combined\\-3787-_png_jpg.rf.7e19a2cecaa84e7f37dfc4dfe2cd6eff.jpg", - "response": "In the picture two workers are seen wearing a black and white color coated t-shirt and trousers. They are wearing a orange color helmet. One of the worker is holding a remote in his right hand and the other one is holding a pipe in his left hand. They are wearing gloves. There is a big tower in the back side of them. It is snowing heavily in the picture.", - "id": 22571 - }, - { - "image_path": "G:\\images\\combined\\-3788-_png_jpg.rf.444532e8284c0a3d73072449c29e044d.jpg", - "response": "A woman wearing a yellow hard hat and holding a blue cordless drill.", - "id": 22572 - }, - { - "image_path": "G:\\images\\combined\\-3789-_png_jpg.rf.2159f182873f430eca61719b08d4e63d.jpg", - "response": "A man wearing a bright orange hard hat and safety vest, standing in front of a power station.", - "id": 22573 - }, - { - "image_path": "G:\\images\\combined\\-3791-_png_jpg.rf.67f501109b820a490bab8afc110b354d.jpg", - "response": "The image shows two workers in full body harnesses and hard hats repairing a power line. They are standing on ladders and using tools to work on the line. The workers are wearing safety jackets and one has a tool belt. The sky is blue and the sun is shining.", - "id": 22574 - }, - { - "image_path": "G:\\images\\combined\\-3792-_png_jpg.rf.5448fbe0272dd35afdbb210caaceee49.jpg", - "response": "A group of people standing around a cement truck.", - "id": 22575 - }, - { - "image_path": "G:\\images\\combined\\-3793-_png_jpg.rf.954af946ea942e2329c60ac35c20f149.jpg", - "response": "A construction site with a large crane and many workers.", - "id": 22576 - }, - { - "image_path": "G:\\images\\combined\\-3794-_png_jpg.rf.2a5892eda798715fbac113c577397894.jpg", - "response": "A man wearing a yellow hard hat and a brown shirt is working on a wooden structure.", - "id": 22577 - }, - { - "image_path": "G:\\images\\combined\\-3795-_png_jpg.rf.6a4ce35ef82fb60daddda704bb604157.jpg", - "response": "A construction site with many workers and several large cranes working on a building complex.", - "id": 22578 - }, - { - "image_path": "G:\\images\\combined\\-3796-_png_jpg.rf.22b0962d02c4bdf3f74d3cfb957a5f44.jpg", - "response": "A construction site with two men in hard hats looking at blueprints.", - "id": 22579 - }, - { - "image_path": "G:\\images\\combined\\-3797-_png_jpg.rf.4e2e20fd36cadfbd3a9a1aa89ece38b6.jpg", - "response": "The photo shows two workers on a construction site. One man is in the foreground, wearing a blue jacket and grey pants, and is working on a wooden beam with a saw. Another man is further back in the middle of the frame, wearing a red hat and grey pants. He is looking at something off-camera to the right. They are both barefoot. In the background, the right edge of the photo shows a pile of dirt and concrete, with a few blue and yellow objects in the foreground.", - "id": 22580 - }, - { - "image_path": "G:\\images\\combined\\-38-_png_jpg.rf.7fe39d709fc3ba4a75776842439b5c17.jpg", - "response": "A construction site with a large concrete pillar being built.", - "id": 22581 - }, - { - "image_path": "G:\\images\\combined\\-380-_png_jpg.rf.a8a4286509ce31c25144cac55e3ed161.jpg", - "response": "A construction worker in a yellow shirt and orange hat is working on a roof.", - "id": 22582 - }, - { - "image_path": "G:\\images\\combined\\-3800-_png_jpg.rf.43a12eb0ddbff4824e35c281b4752687.jpg", - "response": "A man wearing a yellow hard hat standing in front of a unfinished house.", - "id": 22583 - }, - { - "image_path": "G:\\images\\combined\\-3801-_png_jpg.rf.0e129fa8c6a256136e7eb14b73693a7d.jpg", - "response": " People(143,427),(448,997)(646,401),(767,693)(712,365),(869,697)(359,381),(530,844)(807,6),(997,994)(761,748),(851,997) helping each other to remove snow from the bicycle", - "id": 22584 - }, - { - "image_path": "G:\\images\\combined\\-3803-_png_jpg.rf.f03d709a68614a6861d97e89d032ae74.jpg", - "response": "Firefighters(185,3),(481,743) in China are seen attempting to rescue a cat from a tree.", - "id": 22585 - }, - { - "image_path": "G:\\images\\combined\\-3804-_png_jpg.rf.b2b156de8c13ebf98b58e39da66789ea.jpg", - "response": "Four men in a construction site, three of them are wearing hard hats. One man is wearing a blue shirt and brown pants, one man is wearing a red and white shirt and blue pants with a tool belt, and the last man is wearing a white shirt and grey pants. There is a white car parked in front of a large construction site with a scaffolding built around it.", - "id": 22586 - }, - { - "image_path": "G:\\images\\combined\\-3806-_png_jpg.rf.4033fc768d3e2143c06fe0b7953b2bc9.jpg", - "response": "A man working on a scaffold at a construction site.", - "id": 22587 - }, - { - "image_path": "G:\\images\\combined\\-3807-_png_jpg.rf.dfb5034178a082c78b725534ee612e03.jpg", - "response": "A group of workers are working on a building construction site. They are building a structure that resembles a cage. Some of the workers are standing on the cage structure while others are working on it. They are wearing uniforms and some of them are wearing hard hats. The sky is blue with clouds.", - "id": 22588 - }, - { - "image_path": "G:\\images\\combined\\-3808-_png_jpg.rf.678797fba67526ff8d707e0c9cda3d46.jpg", - "response": "A group of people(299,482),(458,795)(588,483),(678,689)(688,490),(781,636)(838,440),(918,622) walking up a snowy hill", - "id": 22589 - }, - { - "image_path": "G:\\images\\combined\\-3810-_png_jpg.rf.4ae50d7d1d588122b89117c802e7c26b.jpg", - "response": "A couple of workers are posing for a picture in front of a building.", - "id": 22590 - }, - { - "image_path": "G:\\images\\combined\\-3811-_png_jpg.rf.7d70c05fe682b2aec3f850718f2a8aa8.jpg", - "response": "The image shows a group of people standing on and around a wooden structure that resembles a house under construction. The people are standing on various parts of the structure, including the roof and walls. Some of the people are near the center of the structure, while others are towards the edges. Some people are closer to the ground, while others are standing on the roof. The group consists of people of varying heights and positions, and they all appear to be looking in the same direction.", - "id": 22591 - }, - { - "image_path": "G:\\images\\combined\\-3813-_png_jpg.rf.98530eb11112b4b1c04e2776b0400ae0.jpg", - "response": "A group of people working on a construction site.", - "id": 22592 - }, - { - "image_path": "G:\\images\\combined\\-3814-_png_jpg.rf.b742854aae51f33852936acae19f6807.jpg", - "response": "A poster of workers in a cave.", - "id": 22593 - }, - { - "image_path": "G:\\images\\combined\\-3818-_png_jpg.rf.82cc44d48882f843584d2254b0c38042.jpg", - "response": "The image shows a worker in a red uniform standing on a platform next to a pipe. The worker is smiling at the camera. In the background, there is a large green machine with a yellow tank. The ground is covered with bricks and the sky is overcast. There is a red pipe running across the image and a red box on the platform. The worker is also holding a red pipe in his hand. The photo is taken by China.org.cn.", - "id": 22594 - }, - { - "image_path": "G:\\images\\combined\\-3819-_png_jpg.rf.5a61249149b3a71ef07bf54874e67e8b.jpg", - "response": "A control room with a man sitting at a desk.", - "id": 22595 - }, - { - "image_path": "G:\\images\\combined\\-382-_png_jpg.rf.7478ed9e396700f28ffe117475359a79.jpg", - "response": "A city street is under construction with trees on both sides of the street.", - "id": 22596 - }, - { - "image_path": "G:\\images\\combined\\-3820-_png_jpg.rf.70dda6d90ee8ebfed4c58600ed0cac9d.jpg", - "response": "A group of people are working on a task. They are all wearing hard hats and masks. Some of them are wearing gloves as well. They are working on a task inside of a large building. There is a clock on the wall. There is a person working on a ladder. There is a person holding a large bag. There is a person holding a large container. There is a person holding a large object.", - "id": 22597 - }, - { - "image_path": "G:\\images\\combined\\-3823-_png_jpg.rf.4dafda897e2bec9b13c13cacd9195d78.jpg", - "response": "In the image there are multiple power lines in the background. In the front, three men are wearing blue hats and work clothes. The man in the middle is writing something on a yellow piece of paper. The man on the far right is opening a box that is filled with wires.", - "id": 22598 - }, - { - "image_path": "G:\\images\\combined\\-3824-_png_jpg.rf.68a2c6853ece0ac2abbf37dcf565c5e5.jpg", - "response": "A group of people working on a construction site.", - "id": 22599 - }, - { - "image_path": "G:\\images\\combined\\-3825-_png_jpg.rf.1069e0fd1b21de52ed23baf4025ded77.jpg", - "response": "A man in a yellow hard hat is on a yellow crane working on an electrical tower. He is wearing a blue uniform and has a tool belt around his waist. He is repairing a wire on the top of the tower.", - "id": 22600 - }, - { - "image_path": "G:\\images\\combined\\-3826-_png_jpg.rf.68fd2e7c2bb4fead9429934410dd0e98.jpg", - "response": "In the image there are multiple workers working on a building under construction. The building is made up of multiple stories and the workers can be seen working on different levels. Some of the workers are standing on ladders while others are standing on the building itself. Some of the workers are wearing yellow hard hats and many of them are wearing blue shirts. In the background there are multiple other buildings visible.", - "id": 22601 - }, - { - "image_path": "G:\\images\\combined\\-3829-_png_jpg.rf.3e693a5ad76294e84d68a1bddd4d9d7a.jpg", - "response": "A picture of two statues of miners sitting against a wall. They are both wearing hard hats and one is holding a pick axe.", - "id": 22602 - }, - { - "image_path": "G:\\images\\combined\\-383-_png_jpg.rf.1a8ab95113e53449802101e974269373.jpg", - "response": "The image shows the scene of a train derailment in China. The train is in a twisted and mangled state, with debris scattered around. The train tracks are also damaged. In the scene, there are several people, some wearing safety helmets, working near the derailment site. One person is holding a safety belt. The scene is dark, and it is assumed to be night.", - "id": 22603 - }, - { - "image_path": "G:\\images\\combined\\-3830-_png_jpg.rf.2d1c0be4329cede9c000e52608201eb2.jpg", - "response": "A construction worker is working on a large building.", - "id": 22604 - }, - { - "image_path": "G:\\images\\combined\\-3832-_png_jpg.rf.1b692c5e5a5a5a319f63568f4bcf41d8.jpg", - "response": "A man in a yellow hard hat is working on a power line tower.", - "id": 22605 - }, - { - "image_path": "G:\\images\\combined\\-3833-_png_jpg.rf.e6e97fbb05adc3ef285187391af6d6ee.jpg", - "response": "Some workers are on a construction site.", - "id": 22606 - }, - { - "image_path": "G:\\images\\combined\\-3835-_png_jpg.rf.a5b7d0e5ade8246d7658c6d0e41ec970.jpg", - "response": "A man is working on a large rock.", - "id": 22607 - }, - { - "image_path": "G:\\images\\combined\\-3837-_png_jpg.rf.035e81e8d474555c7bd68cdce424c5c5.jpg", - "response": "The image shows two men standing next to a large piece of construction equipment. Both men are wearing yellow hard hats and one of them is also wearing a black shirt. They appear to be construction workers.", - "id": 22608 - }, - { - "image_path": "G:\\images\\combined\\-3838-_png_jpg.rf.96cc002e41061b2e556a53d494122a3b.jpg", - "response": "The photo shows two workers in yellow helmets and grey T-shirts, who are building a road. They are standing on a road under construction, with a yellow truck parked on the side. The sky is grey and overcast, and there is a patch of green grass in the background. The workers are in the foreground, and there is a pile of grey stones in front of them. They are using a long tool with a red handle to move a large metal structure.", - "id": 22609 - }, - { - "image_path": "G:\\images\\combined\\-3840-_png_jpg.rf.3de5e7c4994966f94b22694e5b81abf2.jpg", - "response": "A group of three men working in a mine. They are standing on a platform and appear to be using some kind of machinery. They are all wearing hard hats and some are wearing orange safety gear. The men are standing on a yellow ladder.", - "id": 22610 - }, - { - "image_path": "G:\\images\\combined\\-3845-_png_jpg.rf.3093ba605c1bc712d26dfffe8ab984e6.jpg", - "response": "In the image there are two linemen working on a telephone pole. One of the linemen is climbing the pole and the other is working on the top of the pole. They are both wearing safety gear.", - "id": 22611 - }, - { - "image_path": "G:\\images\\combined\\-3846-_png_jpg.rf.71c9376e35464f6ef324c036befea894.jpg", - "response": "A couple of men in yellow hard hats working on power lines.", - "id": 22612 - }, - { - "image_path": "G:\\images\\combined\\-3847-_png_jpg.rf.86e2c0f50db1664e068f318840ad6210.jpg", - "response": "A group of people standing around a construction site.", - "id": 22613 - }, - { - "image_path": "G:\\images\\combined\\-3848-_png_jpg.rf.d4f8a593b7f5dca72b4b091e4e467105.jpg", - "response": "A group of people standing on top of a dirt field.", - "id": 22614 - }, - { - "image_path": "G:\\images\\combined\\-385-_png_jpg.rf.4929dbbf87b25f13523446e4c5d2aa30.jpg", - "response": "A collage of three pictures of Chinese workers. The top picture is of a worker in a\u6a59\u8272\u5b89\u5168\u5e3d,\u767d\u8272\u886c\u886b and \u84dd\u8272\u725b\u4ed4\u88e4. The middle picture is of a worker in a\u6a59\u8272\u5b89\u5168\u5e3d,\u767d\u8272\u886c\u886b, \u84dd\u8272\u725b\u4ed4\u88e4 and red\u5b89\u5168\u978b. The bottom picture is of a worker in a\u6a59\u8272\u5b89\u5168\u5e3d,\u767d\u8272\u886c\u886b, \u84dd\u8272\u725b\u4ed4\u88e4 and red\u5b89\u5168\u978b, kneeling down. There is a\u6a59\u8272\u5b89\u5168\u5e3d in the top left corner, two in the top right corner and one in the bottom right corner. There is a\u6a59\u8272\u5b89\u5168\u5e3d in the bottom left corner.", - "id": 22615 - }, - { - "image_path": "G:\\images\\combined\\-3850-_png_jpg.rf.dbd496cb9bd4cf4dbdeadae663f30915.jpg", - "response": "a group of men standing around in a construction site", - "id": 22616 - }, - { - "image_path": "G:\\images\\combined\\-3851-_png_jpg.rf.2d6ebc75498a61462ab70dc0ea91f6e7.jpg", - "response": "A group of people working on a large black pipe.", - "id": 22617 - }, - { - "image_path": "G:\\images\\combined\\-3852-_png_jpg.rf.1c35c552f9047c1ade165be4704cad00.jpg", - "response": "A team of linemen work together to install a power line.", - "id": 22618 - }, - { - "image_path": "G:\\images\\combined\\-3853-_png_jpg.rf.4bbfe0e3507bef11da671d866cae37f5.jpg", - "response": "A large metal structure with several people around it. Some people are standing on a platform at the bottom, while others are standing on a platform above them. A few people are wearing hard hats. There are two levels of shuttered windows in the middle of the metal structure. To the left of the metal structure, there is a blue container. In the background, there is a person wearing a red shirt and white pants. The background is blue.", - "id": 22619 - }, - { - "image_path": "G:\\images\\combined\\-3856-_png_jpg.rf.f84a88d1d9d21655ef20decb21a428e3.jpg", - "response": "The image shows a group of workers in a construction site. They are working on a large structure that resembles a bridge. The workers are wearing safety harnesses and helmets. One of the workers is holding a tool in his hand. The background is blurred, and the main focus is on the workers and the tool in the foreground.", - "id": 22620 - }, - { - "image_path": "G:\\images\\combined\\-3857-_png_jpg.rf.5f8b29411cf6cebedc1d37144cf8614b.jpg", - "response": "A group of men standing in front of a building.", - "id": 22621 - }, - { - "image_path": "G:\\images\\combined\\-386-_png_jpg.rf.62376dbaa4c24cb2728e3e9864f4200f.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a white jacket. They are holding a large circular metal object and appear to be working on it. There are several other people partially visible in the image, one near the top, one on the right, and one on the left. There is also a small red stool visible in the middle of the scene. In the background, there is a blue and black box, and a green wall to the far left. There are many wires on the floor, coming from various objects in the scene.", - "id": 22622 - }, - { - "image_path": "G:\\images\\combined\\-3862-_png_jpg.rf.7b9d240142120176e086b857de486cef.jpg", - "response": "A group of four men working on a construction site.", - "id": 22623 - }, - { - "image_path": "G:\\images\\combined\\-3863-_png_jpg.rf.0800eb14209c073e93e63927ca1aa95a.jpg", - "response": "A group of men standing on a building site.", - "id": 22624 - }, - { - "image_path": "G:\\images\\combined\\-3864-_png_jpg.rf.0a1417873acad6e63c275f815525e171.jpg", - "response": "A group of people are climbing a cell tower.", - "id": 22625 - }, - { - "image_path": "G:\\images\\combined\\-3867-_png_jpg.rf.6303caa3a48e42b0defff096e205060b.jpg", - "response": "The image shows a group of 12 workers wearing orange work clothes and yellow hard hats walking up a grassy hill. The hill is covered in green grass and there are some brown trees visible at the top of the hill. The workers are walking in a line and carrying tools, some of which are visible at the bottom of the image. The scene appears to be taking place outdoors.", - "id": 22626 - }, - { - "image_path": "G:\\images\\combined\\-3868-_png_jpg.rf.9ed4d606879d4784b12286440f8c2af6.jpg", - "response": "An electrician and a construction worker work on a large circuit board.", - "id": 22627 - }, - { - "image_path": "G:\\images\\combined\\-387-_png_jpg.rf.1f19c4906bf05dcf60797285fff033f5.jpg", - "response": "A tunnel with a orange vehicle in it.", - "id": 22628 - }, - { - "image_path": "G:\\images\\combined\\-3870-_png_jpg.rf.2a5907257faba14eb0d1978b838d3dcb.jpg", - "response": "A worker in a yellow shirt and a white hard hat is working on a pipeline in a\u96a7\u9053. They are wearing a yellow shirt, grey pants, and white gloves. They are also wearing a white mask and yellow boots. They are kneeling on the ground and are focused on their work.", - "id": 22629 - }, - { - "image_path": "G:\\images\\combined\\-3871-_png_jpg.rf.cd00d40a76610bd731ae422721d39270.jpg", - "response": "a man that is on a pole", - "id": 22630 - }, - { - "image_path": "G:\\images\\combined\\-3872-_png_jpg.rf.b7d7bfac31871ed7be6131180691270c.jpg", - "response": "In the image there is a person wearing a yellow helmet and protective glasses. They are standing in front of a large piece of equipment with a wheel on it. The person is also standing in front of a large fire.", - "id": 22631 - }, - { - "image_path": "G:\\images\\combined\\-3874-_png_jpg.rf.bc27da3329142f1ecb9370bb9060bf72.jpg", - "response": "A group of men standing in a green field.", - "id": 22632 - }, - { - "image_path": "G:\\images\\combined\\-3875-_png_jpg.rf.404b5910b32f9a97613cc4fd7fd6e6e9.jpg", - "response": "The image is a group of rescue workers in a tunnel. They are wearing hard hats and orange and yellow work vests. They are working together to lift a large rock.", - "id": 22633 - }, - { - "image_path": "G:\\images\\combined\\-3876-_png_jpg.rf.a77dd9cb5e93ba94b4d7829c32c9fbb4.jpg", - "response": " Workers(176,414),(443,720)(479,443),(582,665)(598,423),(700,590) carry their tools(458,440),(604,492)(247,450),(433,612) through the snow(2,313),(997,998)", - "id": 22634 - }, - { - "image_path": "G:\\images\\combined\\-3878-_png_jpg.rf.5d78736ae101e9b574e9055bb2f6d65e.jpg", - "response": "In the image, there are two workers wearing yellow helmets who are working on a building site. The building site is under construction and appears to be a very tall structure made of bamboo. The workers are standing on a scaffold and one of them is working on a piece of wood. The sky in the background is blue.", - "id": 22635 - }, - { - "image_path": "G:\\images\\combined\\-3879-_png_jpg.rf.b7fc336254f1032a69e01e7b00d729cc.jpg", - "response": "A group of three construction workers are looking at a blueprint together. They are all wearing yellow and orange hard hats, and orange safety vests. The man at the bottom of the image is looking at a clipboard, and the man above him is pointing towards the blueprint. The man at the top of the image is looking down at the first man's clipboard.", - "id": 22636 - }, - { - "image_path": "G:\\images\\combined\\-388-_png_jpg.rf.4bf85a28bf2aac1b5db7f0327f8b94ee.jpg", - "response": "a group of people standing in front of a building", - "id": 22637 - }, - { - "image_path": "G:\\images\\combined\\-3883-_png_jpg.rf.93b4a4bdeba2d067fcc630c2f57d754c.jpg", - "response": "Four men in front of a sign that says \u201c\u8c28\u614e\u7684\u7b2c\u4e00\u52c7\u58eb\u5316\u5de5\u6709\u9650\u516c\u53f8\u201d", - "id": 22638 - }, - { - "image_path": "G:\\images\\combined\\-3885-_png_jpg.rf.c58650a2feea27907020893d757900ae.jpg", - "response": "A man in a blue jacket and white hard hat is sitting on a ladder on top of a power pole. He is holding a tool in his hand. The power pole is made of metal and is located in the middle of a marsh.", - "id": 22639 - }, - { - "image_path": "G:\\images\\combined\\-3886-_png_jpg.rf.907f94cbd0b94cee3437b7110490afff.jpg", - "response": "A construction worker wearing a yellow hard hat and blue coveralls is working on a large piece of machinery. The man is standing in front of a tall fence and a building under construction. The fence is red and metal and the building has many metal bars on it. The man is also wearing a glove on his left hand.", - "id": 22640 - }, - { - "image_path": "G:\\images\\combined\\-3887-_png_jpg.rf.5c866f12201d6444bc8ddaf89bb0661f.jpg", - "response": " Workers(273,123),(577,667)(587,279),(789,655) from the electricity department busy in fixing the electric cables after a tree fell on them in Guwahati on Monday.", - "id": 22641 - }, - { - "image_path": "G:\\images\\combined\\-3888-_png_jpg.rf.c2eeb99fe58c9e7b8aaa66e43df22539.jpg", - "response": "a group of people standing in front of a building", - "id": 22642 - }, - { - "image_path": "G:\\images\\combined\\-3889-_png_jpg.rf.e0d611a337509ebd48c95dec07f8e39e.jpg", - "response": "\u707e\u6c11\u4eec(526,420),(800,689)(745,342),(933,997)\u5728\u6e05\u7406\u5012\u4e0b\u7684\u6811\u679d", - "id": 22643 - }, - { - "image_path": "G:\\images\\combined\\-389-_png_jpg.rf.282b3d7c241dc0357b694a0c7541efb6.jpg", - "response": "A woman sitting on a motorcycle with a bowl in her lap.", - "id": 22644 - }, - { - "image_path": "G:\\images\\combined\\-3891-_png_jpg.rf.1bb62b9c08ec349b036677d800d9d686.jpg", - "response": "The image shows a group of people dressed in blue work clothes and white helmets standing in front of a blue wall. On the wall there are several signs in both Chinese and English. The people are standing in front of a blue display with a green floor. On the display, a man in a white helmet and blue work clothes is kneeling down. Next to him is a white bag and a white bowl. In front of the group of people, there is a green couch.", - "id": 22645 - }, - { - "image_path": "G:\\images\\combined\\-3892-_png_jpg.rf.6970b6d2c66dda5bd393dd341a6ac348.jpg", - "response": "A woman wearing a hard hat and climbing a ladder.", - "id": 22646 - }, - { - "image_path": "G:\\images\\combined\\-3893-_png_jpg.rf.e80c2156aacdd1107087b657a0296452.jpg", - "response": "A group of people standing on top of a building site.", - "id": 22647 - }, - { - "image_path": "G:\\images\\combined\\-3894-_png_jpg.rf.3430f9bf404b9a5fa7db8f1352b9d53c.jpg", - "response": "A worker is standing on a building site wearing a red helmet and is looking down at a steel girder. To the left of the worker is a blue cloudy sky and a white building. In the background on the right is another white building. In the foreground on the right is a sign that says \"\u5357\u65b9\u65e5\u62a5\" and below that \"\u7b2c9\u7248\". There is also a reflection of a person in the bottom left corner of the picture.", - "id": 22648 - }, - { - "image_path": "G:\\images\\combined\\-3897-_png_jpg.rf.eefa8fb07a0db48396f604a83c9714a1.jpg", - "response": "a group of men climbing a tower", - "id": 22649 - }, - { - "image_path": "G:\\images\\combined\\-3898-_png_jpg.rf.53cc8dda7f071abb9def7ead720270b5.jpg", - "response": "A worker in a safety vest points towards a power line.", - "id": 22650 - }, - { - "image_path": "G:\\images\\combined\\-3899-_png_jpg.rf.09bb89e677b7d2f42d46480b53acc01e.jpg", - "response": "A man and a boy are in a forest. They are wearing hard hats and the man has a rope.", - "id": 22651 - }, - { - "image_path": "G:\\images\\combined\\-390-_png_jpg.rf.81d6f5d63438f0ac072ff26f6281ab56.jpg", - "response": "A man in a camouflage uniform and a hard hat is climbing a ladder on the side of a tower. He is wearing climbing gear and has a tool belt around his waist. The ladder is secured to the tower with a hook.", - "id": 22652 - }, - { - "image_path": "G:\\images\\combined\\-3900-_png_jpg.rf.75d6e8ac1c8900b68e3f68dd224a8698.jpg", - "response": "Four men standing in front of a wooden structure under construction. They are wearing hard hats and one man is wearing a tie.", - "id": 22653 - }, - { - "image_path": "G:\\images\\combined\\-3902-_png_jpg.rf.4a01fd92a0ee2acb7d6ccdc6627ed2b7.jpg", - "response": "a man wearing a blue shirt and a hard hat is working on a valve.", - "id": 22654 - }, - { - "image_path": "G:\\images\\combined\\-3903-_png_jpg.rf.d16b0b1752188cc6e37428a302db4390.jpg", - "response": " rescue workers(384,538),(720,997)(258,462),(493,773)(823,223),(997,997)(4,152),(273,728) in a tunnel working on a rail car", - "id": 22655 - }, - { - "image_path": "G:\\images\\combined\\-3905-_png_jpg.rf.edf6e0144bcb357025ec1bc492c78d98.jpg", - "response": "The image shows a group of workers at a construction site. They are all dressed in blue and are working on a large structure that resembles a wall or a large piece of machinery. There are two cranes in the background, one on the left and one on the right. They are both yellow and have many legs. One of the legs of the crane on the left is extended upwards, and the other legs are folded in. The crane on the right has all of its legs extended. The sky above the construction site is blue with white clouds. There are also a few other people in the image, but they are not working on the construction site.", - "id": 22656 - }, - { - "image_path": "G:\\images\\combined\\-3909-_png_jpg.rf.785da9b1d4c8c22689cc6ce5179efeca.jpg", - "response": "The sand castle is being built(11,13),(995,995).", - "id": 22657 - }, - { - "image_path": "G:\\images\\combined\\-391-_png_jpg.rf.786bd956bcfdf8d1330f360ce404b48e.jpg", - "response": "The image shows a worker in a white hard hat and blue coveralls working on scaffolding. The worker is holding a large yellow and black power tool. The words \"Powerchina \u0411\u044e\u043c\u0431chin\u0438\u044f\" are written in white on the right side of the image. The background is a construction site with a building under construction. There are several metal scaffolding poles and what appears to be concrete pillars. There is also a yellow and black power cord connected to the tool the worker is holding.", - "id": 22658 - }, - { - "image_path": "G:\\images\\combined\\-3911-_png_jpg.rf.8ec3ecafc25b0ff7f1390cda194aa01e.jpg", - "response": "a large tunnel with a light at the end and a metal structure in the middle", - "id": 22659 - }, - { - "image_path": "G:\\images\\combined\\-3912-_png_jpg.rf.d42e0598d206b023b2b5418b5595a558.jpg", - "response": "A group of workers in yellow and orange vests and hard hats are working on a bridge.", - "id": 22660 - }, - { - "image_path": "G:\\images\\combined\\-3913-_png_jpg.rf.bbf58e61d9d05babcbb95f6a3e7fe23c.jpg", - "response": "A man is standing in a dark tunnel. He is wearing a hard hat and work clothes. There is a ladder in the background. The man is standing next to a pile of debris.", - "id": 22661 - }, - { - "image_path": "G:\\images\\combined\\-3914-_png_jpg.rf.1987c3febc2035db37a4bbe9d01ef27c.jpg", - "response": "The image shows a group of people working in a dark and dirty room. They are standing on a platform and appear to be working on the structure below. There are tools scattered around the room and a fire is burning in a large metal container. The room has a tall ceiling and the walls are made of brick.", - "id": 22662 - }, - { - "image_path": "G:\\images\\combined\\-3918-_png_jpg.rf.9c60b5a3306a08682ae9800e59db5ab7.jpg", - "response": "A group of three men working on a construction site.", - "id": 22663 - }, - { - "image_path": "G:\\images\\combined\\-392-_png_jpg.rf.c9dfad65ad71cc5f53e2cb5f193e20b2.jpg", - "response": "In the image there is a construction site with several people. One person is standing in the middle of the scene and is holding a clipboard. Another person is standing in the background on the left side. In the background on the right side there is a large crane lifting a object. Underneath the crane there is a puddle of water. The sky is blue and clear.", - "id": 22664 - }, - { - "image_path": "G:\\images\\combined\\-3921-_png_jpg.rf.b4924e39f52cb938fce5fcae9b98f91a.jpg", - "response": "A group of people working on a train track.", - "id": 22665 - }, - { - "image_path": "G:\\images\\combined\\-3922-_png_jpg.rf.0ef850619c3d3837f806b229baba9e22.jpg", - "response": "A man wearing a white hat and white gloves is working on a brick wall. He is leaning over the wall and working on it. There are other people in the background.", - "id": 22666 - }, - { - "image_path": "G:\\images\\combined\\-3923-_png_jpg.rf.32175c71d4bbd18fa5a5d3ce0c705a60.jpg", - "response": "The image shows a group of men working together to install a metal structure in the snow. They are all wearing red jackets with the words \"\u4e2d\u56fd\u7535\u79d1\" on them. Some of them are also wearing blue jackets. The metal structure is located in the left part of the image, and the men are working on it near the bottom. They are pulling on a rope to install the structure. The snow around them is white and fluffy, and the sky is overcast. In the background, there are mountains covered in green trees.", - "id": 22667 - }, - { - "image_path": "G:\\images\\combined\\-3925-_png_jpg.rf.f2de1fb582542d076b1c13f6fd6134cf.jpg", - "response": "A group of workers wearing red and yellow clothes and yellow hats.", - "id": 22668 - }, - { - "image_path": "G:\\images\\combined\\-3927-_png_jpg.rf.a0fe7217646fc7a111aefa7c9fe16ab9.jpg", - "response": "A group of people working at night.", - "id": 22669 - }, - { - "image_path": "G:\\images\\combined\\-3928-_png_jpg.rf.09899aac73809c1177356c60469b6ca7.jpg", - "response": "In the image there is a construction worker wearing a green jacket and an orange helmet. The worker is holding a large grey stone in his hands. There is another worker in the background wearing a yellow helmet. In the foreground there are bricks of different shades of grey and white. There is a white building with a black roof in the background.", - "id": 22670 - }, - { - "image_path": "G:\\images\\combined\\-3929-_png_jpg.rf.662104b90b6dafa0828ed4e0a804f6fa.jpg", - "response": "In the image, there are four people wearing white protective suits and blue helmets. They are working in a field with yellow grass and a pile of dry leaves. In front of the four people, there is a black cloth on the ground, and a few red and white bags are placed nearby. In the upper right corner of the image, there is a white object.", - "id": 22671 - }, - { - "image_path": "G:\\images\\combined\\-3930-_png_jpg.rf.57cc1a33ff9428a2944e7f87366f9f24.jpg", - "response": "The image shows a bridge that is under construction. The bridge is grey and made of concrete. It has a curved design and is located in the background. The bridge is supported by a concrete pylon that is white in color.", - "id": 22672 - }, - { - "image_path": "G:\\images\\combined\\-3931-_png_jpg.rf.abaceba0088060fbfc749355529725b5.jpg", - "response": "A group of four men dressed in work clothes and hard hats stand around a blueprint. They are all holding the paper and looking at it. In the background, there is a tall metal tower under construction.", - "id": 22673 - }, - { - "image_path": "G:\\images\\combined\\-3932-_png_jpg.rf.e3add61f3c0914e701252a72d1f884da.jpg", - "response": "A group of men standing around a construction site.", - "id": 22674 - }, - { - "image_path": "G:\\images\\combined\\-3934-_png_jpg.rf.f51a65ae93222f8d2397ee703e48bbec.jpg", - "response": "Two workers(285,418),(539,807)(394,190),(692,698) are working in a hole", - "id": 22675 - }, - { - "image_path": "G:\\images\\combined\\-3935-_png_jpg.rf.b10d46c8ec4aa43e6e4871a2833f6fc3.jpg", - "response": "In the image there is a woman wearing a black coat and a blue hard hat. She is holding a pick ax and is standing in front of a pile of grey rocks. She is positioned in the center of the image and there is another person on the left and right side of the image. There is a bridge in the background.", - "id": 22676 - }, - { - "image_path": "G:\\images\\combined\\-394-_png_jpg.rf.3e1dd79c25456ff9bc39c0687868002c.jpg", - "response": "A couple of men in blue uniforms and hard hats are standing under a blue sky with a few clouds. They are both holding walkie talkies. In the background, there are two large yellow cranes. One crane is on the right side of the image and is lifting a large object. The other crane is in the middle of the image and is pointing towards the sky.", - "id": 22677 - }, - { - "image_path": "G:\\images\\combined\\-3941-_png_jpg.rf.e15cc24bf6246254330db5fa3be65c0c.jpg", - "response": "The image shows a group of men in front of a building. They are all wearing white hard hats, and some are holding a long, thin, white and green object. The men are of varying heights and are positioned slightly to the right of the frame. Some of them are also wearing black or grey coats. In front of the group of men is a white structure with a grey top and a white bottom. The top part of this structure is visible on the left side of the image, while the bottom part is visible on the right side of the image. The background is grey.", - "id": 22678 - }, - { - "image_path": "G:\\images\\combined\\-3943-_png_jpg.rf.26677891ea262225d0f6fb92139dd956.jpg", - "response": "The image shows three different construction sites, each with workers and concrete foundations. The first site is labeled \"\u6881\u573a\u62cc\u5408\", the second site is labeled \"\u6881\u573a\u62cc\u5408\", and the third site is labeled \"\u6881\u573a\u62cc\u5408\". The workers at the first site are pouring concrete, the second site shows workers pouring concrete between steel rebar, and the third site shows workers pouring concrete between steel rebar.", - "id": 22679 - }, - { - "image_path": "G:\\images\\combined\\-3944-_png_jpg.rf.5a0519cea863128d1d5fc9c1399fc865.jpg", - "response": "A man in a blue jumpsuit and a red hard hat is cleaning the steps of a stone staircase. He is holding a long-handled brush and a pole with a white glove on one hand and a white rag in the other. The steps are very dirty and the man looks tired. The man is standing in front of a stone building with a red sign that says \"CAI DENG YUAN\" in large red letters. The building is surrounded by trees and there is a large tree in the foreground.", - "id": 22680 - }, - { - "image_path": "G:\\images\\combined\\-3945-_png_jpg.rf.6e58b0115189c3056bb27c4be426c10d.jpg", - "response": "A long tunnel with a worker in the bottom right corner and another one in the top right corner. There are also two others in the middle of the image. The walls are blue and white. The floor is brown. There are lights on the ceiling.", - "id": 22681 - }, - { - "image_path": "G:\\images\\combined\\-3946-_png_jpg.rf.706423aebf099fd064b2f186c054990c.jpg", - "response": "A construction worker in a grey shirt and black pants is on the ground, fixing a metal cage. Another worker in a yellow hard hat and yellow reflective jacket is on a platform, fixing a metal cage as well. They are both working on a construction site.", - "id": 22682 - }, - { - "image_path": "G:\\images\\combined\\-3947-_png_jpg.rf.bb98fe65e84b74d87e3ff47417e2323d.jpg", - "response": "A group of men standing around a construction site", - "id": 22683 - }, - { - "image_path": "G:\\images\\combined\\-3948-_png_jpg.rf.9840eb67b497f7f7b559072692c04afe.jpg", - "response": "A ship with two people on a platform working on the propeller.", - "id": 22684 - }, - { - "image_path": "G:\\images\\combined\\-3949-_png_jpg.rf.47e950e2efdaf35b1acc6ba00c013f9f.jpg", - "response": "Two construction workers on a wooden beam, working on a concrete wall.", - "id": 22685 - }, - { - "image_path": "G:\\images\\combined\\-395-_png_jpg.rf.9e3c3d586a47f18b49dead3e0f6493f0.jpg", - "response": "A construction site with two people looking at steel.", - "id": 22686 - }, - { - "image_path": "G:\\images\\combined\\-3950-_png_jpg.rf.b0b3d3a1ddae1eccdc46a06a8f54a9d6.jpg", - "response": "A construction site with multiple workers visible. There are multiple buildings in the background, one of which has a sign saying \"Xiangtan Government Office\". There is a large crane operating over the construction site.", - "id": 22687 - }, - { - "image_path": "G:\\images\\combined\\-3952-_png_jpg.rf.8a67ca16fe37e8f481b534c76106a471.jpg", - "response": "The image shows a group of railway workers working on a railway construction site. They are standing on a steel girder, installing railway sleepers and ties. In the background, there is a river and some green mountains.", - "id": 22688 - }, - { - "image_path": "G:\\images\\combined\\-3954-_png_jpg.rf.2aa34b75b69e31bb91a86b9551f4b105.jpg", - "response": "Two men(293,401),(444,997)(558,371),(691,860) looking into a hole in the ground", - "id": 22689 - }, - { - "image_path": "G:\\images\\combined\\-3955-_png_jpg.rf.6bb2b9f114a8b969157cdca5d8a7ff35.jpg", - "response": "A man in a red shirt and yellow hard hat is showing another man something.", - "id": 22690 - }, - { - "image_path": "G:\\images\\combined\\-3958-_png_jpg.rf.58946c17b4e0d2b7f3f5e7ce7eee4d55.jpg", - "response": "A worker is seen attempting to fix a power outage in China. He is climbing a ladder and is wearing a blue shirt. There are many wires and a power box in the scene.", - "id": 22691 - }, - { - "image_path": "G:\\images\\combined\\-396-_png_jpg.rf.40287f40d2fe63f772d780b4988f6dc4.jpg", - "response": "A group of men in hard hats and coats are standing in a snowy forest. They are working together to remove snow from a fallen tree.", - "id": 22692 - }, - { - "image_path": "G:\\images\\combined\\-3961-_png_jpg.rf.b871516637ee81b4f7c6e58d8a2cd00f.jpg", - "response": "A man in a yellow hard hat is standing on a bridge that is under construction. He is holding a tool and has his arms up.", - "id": 22693 - }, - { - "image_path": "G:\\images\\combined\\-3964-_png_jpg.rf.c4423e2db61db02332c0c1820c14ad1e.jpg", - "response": "A couple of men working on a building.", - "id": 22694 - }, - { - "image_path": "G:\\images\\combined\\-3965-_png_jpg.rf.c1e3aa69a54cb1de47f8ae1d100be8ca.jpg", - "response": "In the image there is a construction worker sitting on a large pile of steel rebar. The worker is wearing a red hard hat, a green jacket, and black pants. The worker is also wearing work boots. The steel rebar is in a large\u7b3c\u5b50 of steel rods.", - "id": 22695 - }, - { - "image_path": "G:\\images\\combined\\-3967-_png_jpg.rf.f0dd07e9b4900f5bffa64b51f931257a.jpg", - "response": "A man in an orange jumpsuit and blue hard hat is cutting ice off of a tree branch with a chainsaw.", - "id": 22696 - }, - { - "image_path": "G:\\images\\combined\\-397-_png_jpg.rf.023f09aac2dbcf395ab50776d0f28c37.jpg", - "response": "A group of three men working on some wires on the side of a building.", - "id": 22697 - }, - { - "image_path": "G:\\images\\combined\\-3970-_png_jpg.rf.95efd4d03a4c68617433b4c49845f9b4.jpg", - "response": " Rescue workers(649,584),(950,997)(272,620),(504,997)(452,600),(611,997)(107,622),(308,997) are seen at the entrance of the mine", - "id": 22698 - }, - { - "image_path": "G:\\images\\combined\\-3971-_png_jpg.rf.fc2ac5ab3a6606b7239192b641804a1e.jpg", - "response": "A group of men in green camouflage uniform(147,456),(613,997)(599,453),(870,998) with blue hard hats(228,314),(407,433)(647,323),(770,405) on", - "id": 22699 - }, - { - "image_path": "G:\\images\\combined\\-3972-_png_jpg.rf.6b7db2cf50e520009a0bff20b06cea38.jpg", - "response": "A picture of a group of young men in orange jumpsuits sitting on the floor of a factory. They are wearing hard hats and some are holding what looks like hard hats.", - "id": 22700 - }, - { - "image_path": "G:\\images\\combined\\-3973-_png_jpg.rf.12f06e018424526f36f22aab4e3b4528.jpg", - "response": "A man is pushing a cart in front of a tall building that is under construction. The man is wearing a blue jacket and blue jeans. He has a hat on that is too big for his head. The cart he is pushing has two wheels and is blue in color. The sky is overcast and it appears to be raining. There is a puddle in front of the building and the man's reflection is in it.", - "id": 22701 - }, - { - "image_path": "G:\\images\\combined\\-3974-_png_jpg.rf.58a44d9e1564e3cdd721088e5b43ba5a.jpg", - "response": "A group of construction workers are walking in front of a building site. There are three large concrete pillars being constructed and a crane is being used to move materials. In the background there are some hills.", - "id": 22702 - }, - { - "image_path": "G:\\images\\combined\\-3976-_png_jpg.rf.9a782f242ace404cf77e0c91577b114f.jpg", - "response": "A man wearing a hard hat and work gloves is holding a large metal bar in front of a piece of machinery.", - "id": 22703 - }, - { - "image_path": "G:\\images\\combined\\-3978-_png_jpg.rf.7a447c7db1e812804cb18acf67454c42.jpg", - "response": "The image shows a group of six men standing on a construction site. They are all wearing business attire, with some wearing suits and others wearing polos. The men are all looking in the same direction, towards a building that is under construction. The building has a blue and white exterior and is surrounded by palm trees. There is a car parked in front of the building and another car further to the right. The ground is covered in dirt and there are several construction tools, including a hard hat and a shovel, scattered around the men.", - "id": 22704 - }, - { - "image_path": "G:\\images\\combined\\-398-_png_jpg.rf.f34e68d00c5a30b2dd9a88a89ca098c8.jpg", - "response": "A worker in a yellow hard hat and brown jumpsuit is holding a large piece of wood with a large C shaped piece of metal on the end of it. He is standing in front of a unfinished wall with many wooden beams in front of it. There are many other wooden beams around the worker and in the background of the image.", - "id": 22705 - }, - { - "image_path": "G:\\images\\combined\\-3980-_png_jpg.rf.c269b33e7ea3706a06ee3dc875066837.jpg", - "response": "A group of men working on a construction site.", - "id": 22706 - }, - { - "image_path": "G:\\images\\combined\\-3982-_png_jpg.rf.186b675cf32870573a8b14f41d9cc374.jpg", - "response": "A pair of construction workers are working on a set of train tracks. They are both wearing orange vests and the man in the foreground is wearing a red hard hat. The man in the background is wearing a white hard hat. They are working on a set of train tracks that are made of steel and are situated on gravel.", - "id": 22707 - }, - { - "image_path": "G:\\images\\combined\\-3983-_png_jpg.rf.65055064d421760fb1f7dfe21e43875a.jpg", - "response": "A man standing on a piece of mining equipment in a coal mine.", - "id": 22708 - }, - { - "image_path": "G:\\images\\combined\\-3984-_png_jpg.rf.f85068026449ed9cb55c8088d202e951.jpg", - "response": "Some people are working on a construction site. They are wearing hard hats and are standing on a large area of concrete. Some rebar is visible in the concrete.", - "id": 22709 - }, - { - "image_path": "G:\\images\\combined\\-3985-_png_jpg.rf.6ff8fa298b89ebc65bd1144992d09c16.jpg", - "response": "A group of three Chinese workers sitting in a factory.", - "id": 22710 - }, - { - "image_path": "G:\\images\\combined\\-3987-_png_jpg.rf.5f518fc9ab01a85b3895b5c4f9676232.jpg", - "response": "A couple of men standing on top of a building.", - "id": 22711 - }, - { - "image_path": "G:\\images\\combined\\-3988-_png_jpg.rf.6cfa7b769bbb4a14a0efb12a14779fa4.jpg", - "response": "A group of people stand in a field wearing hard hats.", - "id": 22712 - }, - { - "image_path": "G:\\images\\combined\\-3989-_png_jpg.rf.5b2c979f12ef854a39aa1c3c38b320b6.jpg", - "response": "a group of people standing around looking at something.", - "id": 22713 - }, - { - "image_path": "G:\\images\\combined\\-3991-_png_jpg.rf.88daafd6077c7b069ef79f2cf8c56b54.jpg", - "response": "A fireman is standing in a dark room filled with machinery. The room has a black floor and walls. There is a large circular object on the left side of the room. The fireman is wearing a white helmet and yellow vest. He is holding a tool in his right hand. There is a yellow and black fire hose on the right side of the room. There is a ladder against the wall. The fireman is looking at the camera.", - "id": 22714 - }, - { - "image_path": "G:\\images\\combined\\-3992-_png_jpg.rf.54428023776c35892c172cc7f625471b.jpg", - "response": "A mining site with two men in orange safety uniforms and red helmets. They are holding clipboards and looking at something.", - "id": 22715 - }, - { - "image_path": "G:\\images\\combined\\-3994-_png_jpg.rf.87c4c4501e8feee753bce617ee37a91b.jpg", - "response": "A group of people walking through the snow.", - "id": 22716 - }, - { - "image_path": "G:\\images\\combined\\-3996-_png_jpg.rf.fbc7fff0095b2be8aaae0fc3a1b89c9e.jpg", - "response": "In the image, two people are working on a large piece of electrical equipment. They are both wearing blue helmets and white outfits. One person is on the left, kneeling down and looking at something. The other person is on the right, holding a tool and looking at the camera. The background is a building with a blue roof and a few other people visible.", - "id": 22717 - }, - { - "image_path": "G:\\images\\combined\\-3997-_png_jpg.rf.0c6abf1c9894d15ae3d92b5f566f9310.jpg", - "response": "A man in a white shirt is speaking to a group of men in hard hats. They are standing in front of a building under construction.", - "id": 22718 - }, - { - "image_path": "G:\\images\\combined\\-3998-_png_jpg.rf.15a5162fce1370e19eccb1d2bc1adbe6.jpg", - "response": "A group of people standing on a construction site.", - "id": 22719 - }, - { - "image_path": "G:\\images\\combined\\-4-_png_jpg.rf.3ab1c17e03f82608a2af7b6ff6d57596.jpg", - "response": "A group of men working on some power lines.", - "id": 22720 - }, - { - "image_path": "G:\\images\\combined\\-40-_png_jpg.rf.2564e36a1a16da9d9e23adf314a8f178.jpg", - "response": "A worker wearing a yellow hard hat is seen working on yellow scaffolding.", - "id": 22721 - }, - { - "image_path": "G:\\images\\combined\\-400-_png_jpg.rf.dafe4555d9bb18e5924bfa9148059e35.jpg", - "response": "In the image there are two workers at a construction site wearing yellow helmets and camouflage clothing. They are working on a construction project that involves laying steel rebar. One worker is sitting on a cinder block on top of the steel rebar while the other worker is standing and holding a yellow tool. The workers are covered in dust from the construction process.", - "id": 22722 - }, - { - "image_path": "G:\\images\\combined\\-4000-_png_jpg.rf.ef20d5871a1ca44481cc4ff75c27b086.jpg", - "response": "A construction worker is working on a building site. He is wearing a green shirt and a hat. He is standing inside a large metal grid, which is part of the building frame. He is holding a large drill in his hands.", - "id": 22723 - }, - { - "image_path": "G:\\images\\combined\\-4005-_png_jpg.rf.905d4ca846569754b72e8b16c6554dee.jpg", - "response": "a group of people standing in a construction site", - "id": 22724 - }, - { - "image_path": "G:\\images\\combined\\-4006-_png_jpg.rf.09496f02f52e23de4ad0f59276e5ae8b.jpg", - "response": "A group of men working on a building under construction.", - "id": 22725 - }, - { - "image_path": "G:\\images\\combined\\-401-_png_jpg.rf.3f96b82a7c33210c39cfa8bd02253b7a.jpg", - "response": "A group of people standing in front of a factory wearing yellow vests and hard hats. They are all holding clipboards and looking at a laptop which is open in the center of the group. The sky is blue and clear.", - "id": 22726 - }, - { - "image_path": "G:\\images\\combined\\-4010-_png_jpg.rf.2b03040028914413ec350406e1bc3b59.jpg", - "response": "A couple of men in uniforms are working on a tower.", - "id": 22727 - }, - { - "image_path": "G:\\images\\combined\\-4012-_png_jpg.rf.c788e7de70354864bbdecdaa3241c20b.jpg", - "response": "A man and a woman construction workers looking at blueprints at a construction site.", - "id": 22728 - }, - { - "image_path": "G:\\images\\combined\\-4013-_png_jpg.rf.33f417a33735a3d76b7a1753ba2d3e1d.jpg", - "response": "In the image two workers are seen in a shaft of a tunnel wearing orange jumpsuits and hard hats. They are working on a wall that is white with a brown border. The wall has several round holes in it. The background is blurred out with a yellow light shining from the top left. The workers are the main focus of the image and their faces are illuminated.", - "id": 22729 - }, - { - "image_path": "G:\\images\\combined\\-4014-_png_jpg.rf.3ed7dd1c0101b37ee9529363208df15e.jpg", - "response": "A group of workers are working on a building site, with some of them standing on a scaffold. They are all wearing high visibility clothing and some of them are wearing yellow hard hats. One of the workers is wearing a red hard hat. Some of the workers are holding onto a blue metal bar. One of the workers is wearing a harness. The background of the image is a bare concrete wall.", - "id": 22730 - }, - { - "image_path": "G:\\images\\combined\\-4015-_png_jpg.rf.25111cd322e7df32f30f71311fd28cbd.jpg", - "response": "A group of rescue workers in orange and yellow uniforms and white helmets are working together to rescue a person trapped in the rubble. They are using a red fire hose and a red and black power drill. The scene takes place on a construction site with wooden scaffolding and brown bricks. There are also two people in white and blue uniforms behind the workers.", - "id": 22731 - }, - { - "image_path": "G:\\images\\combined\\-4016-_png_jpg.rf.e03795b8c87c4da80299d139410cd464.jpg", - "response": "A group of people working on a large metal tower.", - "id": 22732 - }, - { - "image_path": "G:\\images\\combined\\-4019-_png_jpg.rf.a584a00bf4a4cbe67bdcc3acaa61d611.jpg", - "response": "In the image there is a person wearing a yellow hard hat and red safety glasses. They are wearing a yellow hard hat, grey and yellow gloves, and a blue and grey plaid shirt. They are using a large drill to attach a metal piece to a large metal beam. The person also has a yellow tool belt around their waist.", - "id": 22733 - }, - { - "image_path": "G:\\images\\combined\\-402-_png_jpg.rf.3de74f64cbd480849115a95bad15b2ca.jpg", - "response": "The image shows a group of six men standing on a bridge. They are all wearing hard hats and coats, and are working on a project involving a machine with a yellow handle. The bridge has train tracks and small grey boxes attached to them. The men are focused on their work, which appears to involve the train tracks.", - "id": 22734 - }, - { - "image_path": "G:\\images\\combined\\-4023-_png_jpg.rf.6414acd599610be96a85afb37cdb70bb.jpg", - "response": "A few men working on some electricity wires.", - "id": 22735 - }, - { - "image_path": "G:\\images\\combined\\-4025-_png_jpg.rf.fb175d952f7b1d48a2c38601019891f0.jpg", - "response": "A construction site with two workers in red doing some work on a grey cement structure.", - "id": 22736 - }, - { - "image_path": "G:\\images\\combined\\-4026-_png_jpg.rf.9ae22722b76956cdbe84455a88cb0313.jpg", - "response": "The image shows two workers in a large underground tunnel. They are wearing yellow and orange vests and white helmets. The left worker is in the foreground and is looking at the camera. The right worker is in the background and is holding a tool. The tunnel is filled with debris on the floor. There is a large metal structure above the workers, supported by pipes and cables. The workers are working on this structure.", - "id": 22737 - }, - { - "image_path": "G:\\images\\combined\\-4027-_png_jpg.rf.c875bc10d6d3bd28d8938275b90cb20f.jpg", - "response": "\u7535\u529b\u5de5\u4eba(438,558),(593,997)(275,537),(422,997)\u5728\u6e05\u7406\u5012\u4f0f\u7684\u6811\u6728\u3002", - "id": 22738 - }, - { - "image_path": "G:\\images\\combined\\-4028-_png_jpg.rf.888e5dcca320c6366ce0092422bac32e.jpg", - "response": "A group of men working on a power pole in the wilderness.", - "id": 22739 - }, - { - "image_path": "G:\\images\\combined\\-403-_png_jpg.rf.c6e72455f42b5402e02b1e10450017e6.jpg", - "response": "A construction worker in an orange vest and grey hat chews on a black object while talking to another worker. They are both standing in front of a construction site.", - "id": 22740 - }, - { - "image_path": "G:\\images\\combined\\-4031-_png_jpg.rf.e49a8f9305e5df0a767849a95500d45e.jpg", - "response": "A worker is seen on a cell phone tower in a photo from the Xinhua News Agency.", - "id": 22741 - }, - { - "image_path": "G:\\images\\combined\\-4032-_png_jpg.rf.b97e179509284433e2d12628de937523.jpg", - "response": "In the image there are multiple workers wearing orange vests who are working on a construction site. They are building a railway and some of them are working on the tracks while others are working on the overhead lines. The railway is under construction and it is not yet in use. The workers are using tools and materials to build the railway and some of them are using long poles. The sky is grey and it seems to be a cloudy day.", - "id": 22742 - }, - { - "image_path": "G:\\images\\combined\\-4034-_png_jpg.rf.863cfe25643388f1ae2dd727e539980e.jpg", - "response": "A man wearing a green shirt is talking to a group of men in blue uniforms. They are all wearing red helmets.", - "id": 22743 - }, - { - "image_path": "G:\\images\\combined\\-4037-_png_jpg.rf.24a39caf151d6aa5a6f2171513767095.jpg", - "response": "The image shows two workers in hard hats and white jumpers, standing on a ladder and inspecting electrical panels. They are wearing blue gloves and have a tool belt around one of their waists. The workers are wearing yellow hard hats and the one on the left has a blue hard hat. The background shows a wall with many white boxes and a black and white butterfly pattern on the left.", - "id": 22744 - }, - { - "image_path": "G:\\images\\combined\\-4039-_png_jpg.rf.da37e1da1f79dbf761f217f2b12c1c40.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest is standing in front of a construction site. He is smiling at the camera.", - "id": 22745 - }, - { - "image_path": "G:\\images\\combined\\-404-_png_jpg.rf.50edb540996ee9ef87f6aed1b2c311e6.jpg", - "response": "A man in a yellow safety vest and a hard hat is standing next to another man who is wearing a white shirt and a hard hat. They are both standing in front of a tall yellow wall with Chinese writing on it. In front of the wall is a large machine with a screen on it.", - "id": 22746 - }, - { - "image_path": "G:\\images\\combined\\-4040-_png_jpg.rf.01936ac2ad6b5d6c77296ec2299fff97.jpg", - "response": " two workers(370,366),(576,567)(599,336),(764,587) in the water(3,328),(996,998) fixing a power pole(3,4),(587,583)", - "id": 22747 - }, - { - "image_path": "G:\\images\\combined\\-4041-_png_jpg.rf.3e3cb34155bf5468d2fb5f8c38be7720.jpg", - "response": "A group of rescue workers in yellow helmets standing around a construction site.", - "id": 22748 - }, - { - "image_path": "G:\\images\\combined\\-4042-_png_jpg.rf.11295e0283fab4b781d99a97d02d1783.jpg", - "response": "The image shows a group of men working on an electricity pylon. They are all wearing hard hats and white overalls. The men are all focused on their work, which involves climbing the pylon and working on the wires.", - "id": 22749 - }, - { - "image_path": "G:\\images\\combined\\-4043-_png_jpg.rf.dc7d17c6c03590e5a5c24800a9c9b3d1.jpg", - "response": "The image shows two workers standing in a large\u96a7\u9053. They are both dressed in yellow and blue work clothes. The left worker is holding a large wrench with both hands and is in the process of turning it, while the right worker is watching. The left worker is also reaching out his right hand to shake hands with the right worker. The tunnel walls are concrete grey and the workers are standing on a platform that is a lighter grey. The background is very dark grey. There are several symbols in the bottom left corner, including the letters \"S\" and \"C\".", - "id": 22750 - }, - { - "image_path": "G:\\images\\combined\\-4045-_png_jpg.rf.1193af44fbb5f01e632acaf91ac13145.jpg", - "response": "A group of rescue workers in orange jumpsuits and white hard hats carry a person on a stretcher.", - "id": 22751 - }, - { - "image_path": "G:\\images\\combined\\-4046-_png_jpg.rf.5c7dfacd2c31655d30636ec19b252cd1.jpg", - "response": "A crane is lifting a large metal sculpture of a bird into the air. The bird has long, flowing feathers and is positioned with its wings spread wide. The sculpture is being held up by a series of wires that are attached to the crane. The crane operator is visible at the top of the image, and there are several people in the foreground watching the sculpture being lifted.", - "id": 22752 - }, - { - "image_path": "G:\\images\\combined\\-4047-_png_jpg.rf.b48d2caabba0107cc2fbf15e6e551e63.jpg", - "response": "In the image there is a man wearing a blue helmet and black clothing who is climbing a wooden telephone pole. The telephone pole is located in a mountainous area with a forest in the background. The sky is overcast and there are no other people visible in the scene.", - "id": 22753 - }, - { - "image_path": "G:\\images\\combined\\-4048-_png_jpg.rf.8cbef6c5dda21106e2dd26469b0d280f.jpg", - "response": "A man wearing a red vest and a blue hat.", - "id": 22754 - }, - { - "image_path": "G:\\images\\combined\\-4049-_png_jpg.rf.c2abbf59de08f800171b43cf86fb8656.jpg", - "response": "A man kneeling down on the ground.", - "id": 22755 - }, - { - "image_path": "G:\\images\\combined\\-4050-_png_jpg.rf.e6605a1e9306716a622c882c0fdd7f02.jpg", - "response": "A group of workers in orange and blue uniforms and hard hats are working on an oil pipeline in the ground.", - "id": 22756 - }, - { - "image_path": "G:\\images\\combined\\-4051-_png_jpg.rf.dcf54b542e459bf651d4218b4df797bd.jpg", - "response": "A group of men standing around a construction site.", - "id": 22757 - }, - { - "image_path": "G:\\images\\combined\\-4052-_png_jpg.rf.e25d64b2a84de8e7bf742951c2608761.jpg", - "response": "The image shows two men wearing blue tops and blue hats, glasses and white gloves, standing next to a machine with a red and white pole. The background is a forest of trees.", - "id": 22758 - }, - { - "image_path": "G:\\images\\combined\\-4053-_png_jpg.rf.48644cdd9e00056467ea154c81c4ed67.jpg", - "response": "A worker(207,316),(402,628) is seen painting the inside of a tunnel.", - "id": 22759 - }, - { - "image_path": "G:\\images\\combined\\-4054-_png_jpg.rf.07df46424e816ead72209b3f49e3335a.jpg", - "response": "A pair of construction workers wearing orange safety gear stand on a construction site. They are both holding rolled up blueprints.", - "id": 22760 - }, - { - "image_path": "G:\\images\\combined\\-4056-_png_jpg.rf.4e91d01e02ec42cf7f7c095772ffbf20.jpg", - "response": "Some workers in blue uniforms and safety harnesses are on a yellow scaffolding.", - "id": 22761 - }, - { - "image_path": "G:\\images\\combined\\-406-_png_jpg.rf.962d87b4b2e110641b8c72af492cd84f.jpg", - "response": "A group of workers in front of a building under construction.", - "id": 22762 - }, - { - "image_path": "G:\\images\\combined\\-4060-_png_jpg.rf.120f22e7d3c55d7c333109e3a041d0c9.jpg", - "response": "A man working on a building site wearing a white hard hat.", - "id": 22763 - }, - { - "image_path": "G:\\images\\combined\\-4061-_png_jpg.rf.c97f8b5bc493805b02fa79caf07b5b10.jpg", - "response": "A construction site with men working on it.", - "id": 22764 - }, - { - "image_path": "G:\\images\\combined\\-4063-_png_jpg.rf.39501bffe764366e9719837c1b88b3bf.jpg", - "response": "The photo is of a group of workers walking on a bridge that is under construction. The bridge is made of concrete and has not been finished yet. There are mountains in the background.", - "id": 22765 - }, - { - "image_path": "G:\\images\\combined\\-4066-_png_jpg.rf.6326fec912e5a12ec1809eb011a26fbc.jpg", - "response": "A worker in a hard hat and protective gear is reaching into an industrial oven. The oven has a yellow glow and the worker is holding something in their hand. The room has a concrete floor and the walls are made of concrete blocks. There is a ladder against the wall and a vent on the ceiling.", - "id": 22766 - }, - { - "image_path": "G:\\images\\combined\\-4067-_png_jpg.rf.4fbcab502348048c7b788eead12f8ce2.jpg", - "response": "A group of people pulling on a rope on a ship.", - "id": 22767 - }, - { - "image_path": "G:\\images\\combined\\-4069-_png_jpg.rf.de83d469b106680ac52f6888111779f8.jpg", - "response": "A group of men working in a mine, wearing hard hats and using pickaxes to break apart a large rock.", - "id": 22768 - }, - { - "image_path": "G:\\images\\combined\\-407-_png_jpg.rf.a6dc299ecb74c16f460f9a9c604623b5.jpg", - "response": "A group of people standing in front of a banner.", - "id": 22769 - }, - { - "image_path": "G:\\images\\combined\\-4071-_png_jpg.rf.19bd927305ef2b044c8dec7f164b288e.jpg", - "response": "A man in a hard hat standing in front of a large cargo ship.", - "id": 22770 - }, - { - "image_path": "G:\\images\\combined\\-4075-_png_jpg.rf.4498013be5286719eb69826506918c98.jpg", - "response": "A pile of steel beams and rebar in a construction site.", - "id": 22771 - }, - { - "image_path": "G:\\images\\combined\\-4076-_png_jpg.rf.92ae2d8a1bfc106212e728ca21fec1c1.jpg", - "response": "A man in a black shirt and grey pants is climbing a ladder on the side of a metal tower. He is on the third rung of the ladder. The ladder is attached to the tower. The tower is made of metal and has a lattice structure. There is a white sky in the background.", - "id": 22772 - }, - { - "image_path": "G:\\images\\combined\\-4078-_png_jpg.rf.9651c818df7e43866f76d08b6591acb2.jpg", - "response": "A group of men working on an electrical tower.", - "id": 22773 - }, - { - "image_path": "G:\\images\\combined\\-4081-_png_jpg.rf.bdf8dbd30d6f0babc40fd23e808a25d2.jpg", - "response": "A construction site with several people working on it. There are many steel rods and wooden planks scattered around the area. A large concrete structure is being built and a man is walking towards it.", - "id": 22774 - }, - { - "image_path": "G:\\images\\combined\\-4082-_png_jpg.rf.9153c36bdc70d5db30552bd8a94f39b4.jpg", - "response": "A group of people working on a brick wall.", - "id": 22775 - }, - { - "image_path": "G:\\images\\combined\\-4086-_png_jpg.rf.ea4fd799c872ced27b05f476c7e353ea.jpg", - "response": "A construction worker crouching down working on a building site.", - "id": 22776 - }, - { - "image_path": "G:\\images\\combined\\-409-_png_jpg.rf.56f8f433dc1d22ac94eabe0e784f6f6d.jpg", - "response": "A man in a white shirt and grey pants is working on a power line.", - "id": 22777 - }, - { - "image_path": "G:\\images\\combined\\-4092-_png_jpg.rf.57e173295ac7d23abc48a7cad16251d8.jpg", - "response": "A snowy evergreen forest with snow covered trees and branches.", - "id": 22778 - }, - { - "image_path": "G:\\images\\combined\\-4094-_png_jpg.rf.04b9bfd7e9b22c9b4d411a51735e7e46.jpg", - "response": "A group of people standing on top of a building site.", - "id": 22779 - }, - { - "image_path": "G:\\images\\combined\\-4095-_png_jpg.rf.bff9f8f94d7e7fa42838a7ef1e7ebc07.jpg", - "response": "The image shows three men standing on a ship's deck. They are all wearing yellow hard hats. In the background, there is a large ship and a smaller vessel. The sky is grey and overcast.", - "id": 22780 - }, - { - "image_path": "G:\\images\\combined\\-4097-_png_jpg.rf.c53121128bd1414260a56b99ac023002.jpg", - "response": "A group of workers are working on electrical equipment in an outdoor\u53d8\u7535\u7ad9.", - "id": 22781 - }, - { - "image_path": "G:\\images\\combined\\-4098-_png_jpg.rf.e8f7ce806b1c472c91bcc66456eef5cf.jpg", - "response": "A group of men working in a mine.", - "id": 22782 - }, - { - "image_path": "G:\\images\\combined\\-4099-_png_jpg.rf.818eeb7bdbcc8c3065ac632ca0481336.jpg", - "response": "In the image there is a group of people standing in the bottom center of the image. They are wearing yellow hard hats and are looking up at a construction site. The construction site is to the right of the group and is covered in trees. In the trees there are a few leaves on them. To the left of the group there is a large mound of dirt. In front of the dirt mound there is a blue tarp. To the right of the tarp there is a large black and yellow digger. It is digging into the dirt mound.", - "id": 22783 - }, - { - "image_path": "G:\\images\\combined\\-41-_png_jpg.rf.dd2ff15c29d758be3473eedf2bbf3b7d.jpg", - "response": "In the image there is a person wearing a yellow and green vest and a white helmet. They are holding a large tool in their right hand, measuring a pole. The person is on a construction site, which also contains a large truck and several other large construction machines. In the background, there are also some buildings under construction.", - "id": 22784 - }, - { - "image_path": "G:\\images\\combined\\-410-_png_jpg.rf.ce3be9ed083ed8534a045be93e65ff1c.jpg", - "response": "A group of men standing under a bridge.", - "id": 22785 - }, - { - "image_path": "G:\\images\\combined\\-4100-_png_jpg.rf.60803301b4c91a640039398a5ec5fe0b.jpg", - "response": "A group of men in hard hats stand on a construction site.", - "id": 22786 - }, - { - "image_path": "G:\\images\\combined\\-4102-_png_jpg.rf.f7f1713536be4c4355598b7c6b5f3f16.jpg", - "response": "A man in a suit and hard hat talking to four workers in hard hats and coveralls in front of a large ship.", - "id": 22787 - }, - { - "image_path": "G:\\images\\combined\\-4103-_png_jpg.rf.2767109b9f0fd2fa812de43d492b237d.jpg", - "response": "In the image two workers are repairing an transformer in a construction site. The two workers are wearing green. One of them is standing on the transformer and the other one is helping him. They have tools in their hands. In the background a building is being constructed. It has many floors and the walls are not yet fully built. There is also a blue sky with some clouds.", - "id": 22788 - }, - { - "image_path": "G:\\images\\combined\\-4105-_png_jpg.rf.92550bde61b2e88bf5f557eca2fad92b.jpg", - "response": "A construction worker in a yellow hard hat is using a hand saw to cut through a wooden beam. Another worker is crouching down in the background. The sky is blue and there are a few clouds.", - "id": 22789 - }, - { - "image_path": "G:\\images\\combined\\-411-_png_jpg.rf.7e9301595ac6f696ab297cc6b3dff4aa.jpg", - "response": "In the image there are two construction workers on a building site, one man is holding a plan while the other man is showing him something on a red tablet. They are both wearing yellow and red hard hats. In the background there is a orange tractor.", - "id": 22790 - }, - { - "image_path": "G:\\images\\combined\\-4110-_png_jpg.rf.ba9f2cd988ee2010109db256d7ab15d5.jpg", - "response": "A man in a red hard hat is working on a brick wall. He is on a ladder and is surrounded by scaffolding.", - "id": 22791 - }, - { - "image_path": "G:\\images\\combined\\-4112-_png_jpg.rf.5ec3df439738dbefc9ae3be9f7a25e12.jpg", - "response": "A group of workers in blue work clothes and white hard hats are on a power line.", - "id": 22792 - }, - { - "image_path": "G:\\images\\combined\\-4113-_png_jpg.rf.e8774041a7aeeec6829d0d684d23e7f4.jpg", - "response": "A man and a woman in hard hats are working on a large piece of equipment. The equipment is blue and silver and has many pipes and tubes. The man is holding a large metal cylinder and the woman is looking into the machine. They are both wearing blue jeans.", - "id": 22793 - }, - { - "image_path": "G:\\images\\combined\\-4115-_png_jpg.rf.ecc5683472685c29068096f4d447f4e1.jpg", - "response": "The image shows two workers in blue uniforms and safety gear, working on the upper part of a power pole. They are high up in the air, one on the left and one on the right, both holding onto the pole. The worker on the right is reaching for a piece of equipment attached to the pole. The sky is blue and the sun is shining.", - "id": 22794 - }, - { - "image_path": "G:\\images\\combined\\-4118-_png_jpg.rf.bb2649690087abb033933fcc7f7db9f9.jpg", - "response": "The image shows a group of men standing in a construction site wearing hard hats. Some of the men are holding papers. The men are of different heights and one of them is wearing a tie. They are all wearing hard hats of different colors, some red, some white, some blue. One of the men is wearing a white hard hat, one is wearing a red one, one is wearing a blue one, one is wearing a tie, and one is wearing a grey one.", - "id": 22795 - }, - { - "image_path": "G:\\images\\combined\\-4119-_png_jpg.rf.7c81d5806c9140134b85bd9b758b642a.jpg", - "response": "a worker in a red uniform and yellow hard hat standing next to an oil rig", - "id": 22796 - }, - { - "image_path": "G:\\images\\combined\\-412-_png_jpg.rf.b68f134f8d839652c40106fe4035ef07.jpg", - "response": "The image shows a construction site with many people working. There is a yellow vehicle in the foreground, which is a small steamroller. It is in the center of the image and has the word ROMMAG on it. There are also two people working next to it. In the background, there are two people wearing yellow vests and two people wearing red vests. There is also a person in a white vest. In the middle of the image, there is a person kneeling down wearing a yellow vest. There are also two people in the background wearing yellow vests.", - "id": 22797 - }, - { - "image_path": "G:\\images\\combined\\-4121-_png_jpg.rf.2b95c1d7e530ada347d0fa4b24129806.jpg", - "response": "A group of men standing around each other.", - "id": 22798 - }, - { - "image_path": "G:\\images\\combined\\-4122-_png_jpg.rf.e141ff32b0455bb1bac67a11c90772b9.jpg", - "response": "In the picture there are two construction workers fixing a grey pole. The pole is in the center of the picture and the workers are holding it in place. The workers are wearing red and yellow jackets. To the right of the workers and the pole there is a pile of dirt. To the right of the dirt pile there is a wooden post. To the right of the post there is a large white concrete building. To the far right of the picture there is a wooden post.", - "id": 22799 - }, - { - "image_path": "G:\\images\\combined\\-4123-_png_jpg.rf.4540ec08541e95db5807b1535bc2b950.jpg", - "response": "A man in a blue shirt and jeans sits on a beam with a harness on.", - "id": 22800 - }, - { - "image_path": "G:\\images\\combined\\-4125-_png_jpg.rf.6e32ff513562e5a91759de65cb6b363e.jpg", - "response": "A construction site with a few people working. There are yellow metal bars stacked up and a few people walking around. One person is carrying a yellow bar.", - "id": 22801 - }, - { - "image_path": "G:\\images\\combined\\-4126-_png_jpg.rf.8701b431170975da50b987a6e2dd6614.jpg", - "response": "A group of four men in blue construction hats and brown uniforms are standing around a table with a green metal structure on it. They are looking at papers on the table.", - "id": 22802 - }, - { - "image_path": "G:\\images\\combined\\-4127-_png_jpg.rf.b916a8a9fd34c0d84fffb2a9e8a4497f.jpg", - "response": "A man in blue coveralls and a blue hard hat stands in front of a large ship that is being repaired. The ship is red and black and is sitting on a platform. The man is standing on a red rug and there are two black cranes on the right and left sides of the ship. There are also some wheels on the right side of the ship.", - "id": 22803 - }, - { - "image_path": "G:\\images\\combined\\-4128-_png_jpg.rf.d701ad32fb0004d0b841a97df64378d5.jpg", - "response": "In the image there is a group of men working on a mountain side. They are wearing hard hats and some are wearing red ones. They are working together to clear the mountain of rocks and debris.", - "id": 22804 - }, - { - "image_path": "G:\\images\\combined\\-4129-_png_jpg.rf.68afef72010be89deea831c9fd71e6b5.jpg", - "response": "A man in a white hard hat is looking at blueprints in front of a building under construction. He is wearing a black jacket and carrying a black bag. The building has many windows and is surrounded by scaffolding. There is a yellow and black hazard sign in the foreground.", - "id": 22805 - }, - { - "image_path": "G:\\images\\combined\\-413-_png_jpg.rf.0c12cef5c6e599906f472f5f25875e5d.jpg", - "response": "A man in a yellow hard hat and grey work clothes leans over a device while working on it. He is wearing a yellow hard hat and has a white helmet on his head. He is also wearing a grey work suit and has a tool belt around his waist. He is on a grassy area with a building in the background.", - "id": 22806 - }, - { - "image_path": "G:\\images\\combined\\-4132-_png_jpg.rf.37e55587d91b1fb1fa8e0fc3ca94510f.jpg", - "response": "a group of men standing on a road", - "id": 22807 - }, - { - "image_path": "G:\\images\\combined\\-4133-_png_jpg.rf.3917afec8852cd42dac7f8fb21eef721.jpg", - "response": "In the image there is a large pile of dirt with two people standing in front of it. There is a power pole with four people working on it. The power pole is very tall and has many wires attached to it. In the background there are many buildings and a blue sky.", - "id": 22808 - }, - { - "image_path": "G:\\images\\combined\\-4134-_png_jpg.rf.1b1ee2f374342c70c7e420f5b5d38834.jpg", - "response": "The image is a collage of three pictures, all of which depict a worker in a red hard hat and white shirt crouching down and welding metal. The welding is being done on the ground and the worker is positioned in the center of each picture. In the first picture, the worker is welding in an empty space with no other objects in the frame. In the second picture, there is a large piece of wood sitting to the right of the worker. In the third picture, there is a smaller piece of wood sitting to the left of the worker.", - "id": 22809 - }, - { - "image_path": "G:\\images\\combined\\-4136-_png_jpg.rf.9314d138a04568346b7d182b4b645c6b.jpg", - "response": "A man and woman on a construction site looking at a blueprint.", - "id": 22810 - }, - { - "image_path": "G:\\images\\combined\\-414-_png_jpg.rf.97c86abfdfafd90603729239e9965363.jpg", - "response": "a group of people working on a water pipe", - "id": 22811 - }, - { - "image_path": "G:\\images\\combined\\-4140-_png_jpg.rf.9729041c79e4cf43bddd676f11671800.jpg", - "response": "The image shows a snowy scene of a group of people working together to pull a wooden cart with a yong pony. The people are wearing hard hats and the snow is knee deep.", - "id": 22812 - }, - { - "image_path": "G:\\images\\combined\\-4141-_png_jpg.rf.7a60d176b253faff25c616112d9ec11a.jpg", - "response": "The image shows two workers in a tunnel, one of them is on the right and is wearing a grey top and a yellow hard hat. They are working on a pipeline, the pipeline is grey and is located at the top of the image. The tunnel is dark and has some debris on the ground. The workers are using some tools, one of them is holding a tool in his left hand and there is a bag on the ground on the left side of the image. The pipeline is located at the top of the image and the tunnel is made of concrete.", - "id": 22813 - }, - { - "image_path": "G:\\images\\combined\\-4142-_png_jpg.rf.bdcd8132eb1e04dda69e7ae5a6e2942a.jpg", - "response": "A group of workers inside a large pipe\u96a7\u9053.", - "id": 22814 - }, - { - "image_path": "G:\\images\\combined\\-4145-_png_jpg.rf.c525a81ef258a396e2b4dc15d6b73177.jpg", - "response": "A group of men working on a construction site.", - "id": 22815 - }, - { - "image_path": "G:\\images\\combined\\-4146-_png_jpg.rf.1f87f864db52e207eae990cb0e17ee31.jpg", - "response": "A construction site with workers and equipment.", - "id": 22816 - }, - { - "image_path": "G:\\images\\combined\\-4147-_png_jpg.rf.583a35c7d77d884197e89241645bb12c.jpg", - "response": "A group of people working on a foundation for a building.", - "id": 22817 - }, - { - "image_path": "G:\\images\\combined\\-4150-_png_jpg.rf.642f27ef581842b06a38cf670aeadd1e.jpg", - "response": "The image shows a group of three firefighters in a tunnel. They are wearing yellow helmets and black protective clothing. One firefighter is holding a water cannon, and another has a large flashlight on. The tunnel is filled with smoke.", - "id": 22818 - }, - { - "image_path": "G:\\images\\combined\\-4151-_png_jpg.rf.9d8ed56df585b266da64507a06b6b5cf.jpg", - "response": "A man and woman standing in front of a construction site with a house being built.", - "id": 22819 - }, - { - "image_path": "G:\\images\\combined\\-4152-_png_jpg.rf.ccbb0fecbb9c6c2482b0db5bfa76889a.jpg", - "response": "A man in a red hard hat is working on a hole in the ground. He is wearing a black jacket and has a red tool belt around his waist. He is holding a large gray rock in his hands and there is a blue cloth on the ground next to him. There are several stickers on the rock and a piece of tape on the cloth. The man is in a pit and there is a ladder next to him.", - "id": 22820 - }, - { - "image_path": "G:\\images\\combined\\-4154-_png_jpg.rf.4092621c25396490598e893200a72873.jpg", - "response": "A group of rescue workers in orange jumpsuits and red helmets are working together to lift a green and white object. Some of the workers are standing on the ground while others are standing on a platform. A few of the workers are holding the object up with a rope.", - "id": 22821 - }, - { - "image_path": "G:\\images\\combined\\-4155-_png_jpg.rf.5e3cb13c8fb743d55c0d20bdeb876b01.jpg", - "response": "A group of men in red and blue uniforms working on a construction site.", - "id": 22822 - }, - { - "image_path": "G:\\images\\combined\\-4156-_png_jpg.rf.f949e3f0be77c72ff0dcf89e07e2efce.jpg", - "response": "a construction site with construction workers and heavy machinery", - "id": 22823 - }, - { - "image_path": "G:\\images\\combined\\-4158-_png_jpg.rf.df99ef83037a92634d4cb54527c73bb9.jpg", - "response": "A man in a factory is working with metal, using a long stick to stir a large pot of liquid metal that is on fire. The pot is on a factory floor and the man is wearing heat-resistant gear. There is a large steel pipe in the background and the factory floor is made of metal. There is also a window in the background and a red fire extinguisher on the wall.", - "id": 22824 - }, - { - "image_path": "G:\\images\\combined\\-4160-_png_jpg.rf.b57bb03a546157ea0b4ee3f25a1d35a8.jpg", - "response": "A group of workers are working on an electricity pylon.", - "id": 22825 - }, - { - "image_path": "G:\\images\\combined\\-4161-_png_jpg.rf.f2c28abc94950fbc52e1c2c62c2bf83c.jpg", - "response": " Two men(119,239),(633,997)(560,207),(980,997) in hard hats(614,207),(827,336)(322,239),(477,368) at a construction site", - "id": 22826 - }, - { - "image_path": "G:\\images\\combined\\-4162-_png_jpg.rf.9f89f6c06ddf4a67c0571a4fdf356aa4.jpg", - "response": "A construction site with two men in business suits and white helmets standing on it. They are both holding a tablet and looking at it.", - "id": 22827 - }, - { - "image_path": "G:\\images\\combined\\-4164-_png_jpg.rf.48c89de4fbca965b34db75b389e23db9.jpg", - "response": "A group of three workers in blue uniforms and hard hats are posing for a photo. They are all smiling and have their arms crossed. The man on the left is wearing a blue shirt and has a beard. The man in the middle is wearing a white shirt and has his arms crossed. The man on the right is wearing a blue shirt and has a mustache. They are all wearing blue overalls and hard hats. In the background, there is a wall that looks unfinished.", - "id": 22828 - }, - { - "image_path": "G:\\images\\combined\\-4165-_png_jpg.rf.a45e98145faaeaf1712cc3aaf0eb7bb5.jpg", - "response": "A group of people working on a construction site.", - "id": 22829 - }, - { - "image_path": "G:\\images\\combined\\-4166-_png_jpg.rf.ee22c3b108f12654f40927336dc3837f.jpg", - "response": "A group of men in hard hats stand around a large square hole in the ground. The walls of the building they are in are made of concrete and have steel rebar sticking out of them. The men are wearing a variety of different colored hard hats. One man has on a red hat, one has on a yellow hat, one has on a black hat, and one has on a gray hat. The man in the middle is wearing a black jacket and a red hat. The man to the far right is wearing a black jacket and a yellow hat. The floor they are standing on is unfinished and made of concrete.", - "id": 22830 - }, - { - "image_path": "G:\\images\\combined\\-4167-_png_jpg.rf.33236bdd1fe801f704df48e14b3a14fc.jpg", - "response": "In the image, there is a group of people working on a roof. They are wearing hard hats and are working on a structure that resembles a wooden roof. Some of the people are standing on the roof, while others are standing on ladders or the ground. Some of them are holding tools such as hammers and axes. The people are spread out across the roof, with some of them working on different parts of the structure.", - "id": 22831 - }, - { - "image_path": "G:\\images\\combined\\-4168-_png_jpg.rf.da5ec3c73ff5b5b9bca6eb068746a89a.jpg", - "response": "The image shows a construction site with a number of workers present. There are two yellow construction vehicles visible at the edge of the site. In the background, there are a number of buildings, some of which are completed and others of which are still under construction. The sky is blue and there are no clouds in the sky.", - "id": 22832 - }, - { - "image_path": "G:\\images\\combined\\-4169-_png_jpg.rf.235609e999f1003928c367b0a4679d36.jpg", - "response": "A construction worker in a yellow hat and orange shirt crouches down to work on a large construction site.", - "id": 22833 - }, - { - "image_path": "G:\\images\\combined\\-4170-_png_jpg.rf.3c71bb4ed998071a095b0791a0515311.jpg", - "response": "A man wearing a white hard hat and work gloves holds a trowel and a small shovel. He is shirtless and has a scar on his abdomen. Another man in a yellow hard hat stands behind him. In the background, two other men are wearing blue shirts and yellow hard hats. They are standing behind a barbed wire fence. The sky is blue and there are a few clouds.", - "id": 22834 - }, - { - "image_path": "G:\\images\\combined\\-4171-_png_jpg.rf.e9ccc372623c536feb4427537dc813ac.jpg", - "response": "a group of men standing on a sidewalk", - "id": 22835 - }, - { - "image_path": "G:\\images\\combined\\-4173-_png_jpg.rf.970e579ae7ea60aa1f10d8261bc6eb64.jpg", - "response": "In the image there is a group of people working on a construction site. They are all wearing safety gear including hard hats, reflective vests, and safety boots. The people are working on a large piece of machinery that appears to be a piece of heavy civil construction equipment. The equipment is made of metal and appears to be rusted. The workers are focused on their tasks and there is a bright light shining on them from the upper right hand corner of the image.", - "id": 22836 - }, - { - "image_path": "G:\\images\\combined\\-4175-_png_jpg.rf.09a1d56e2246071aaa5ceaa3c3018e7e.jpg", - "response": "In the image there are two construction workers wearing hard hats and working on a building site. They are standing on the ground and appear to be in the process of cutting rebar. There is a pile of rebar to the right of the workers, and a yellow and blue hard hat is visible above them. The background shows the framework of a building under construction, with a tower of red and white building in the middle and another building to the far right.", - "id": 22837 - }, - { - "image_path": "G:\\images\\combined\\-4176-_png_jpg.rf.dd2dca17985a6786973ed6ae91cb94dc.jpg", - "response": "A large tunneling machine is in the process of being worked on by a team of construction workers. The machine is on rails and is in the process of having some parts removed. There are five workers in the image, each wearing orange vests. One worker is on the left side of the machine, two others are on the right side, and two others are on the left side, closer to the front of the machine.", - "id": 22838 - }, - { - "image_path": "G:\\images\\combined\\-4177-_png_jpg.rf.8233e5424674eabcaf9ce2a6e31457cc.jpg", - "response": "Some people are working on a bridge.", - "id": 22839 - }, - { - "image_path": "G:\\images\\combined\\-4178-_png_jpg.rf.fa69303503037cc2f237b556904ab379.jpg", - "response": "A group of people working on a building construction site.", - "id": 22840 - }, - { - "image_path": "G:\\images\\combined\\-4179-_png_jpg.rf.be7ebc81809658af2271b19abb7bdac0.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow helmets and blue jackets. Some of them are holding tools, including shovels and brooms. The workers are standing on a large area of metal rebar, which is being used to reinforce concrete. The area is covered in concrete, which is being poured by a machine. There is a large pile of concrete next to the workers. In the background, there are other workers and equipment, including a large blue and white truck.", - "id": 22841 - }, - { - "image_path": "G:\\images\\combined\\-418-_png_jpg.rf.9e7ad99a5be5560d2a6843f8e8d95a67.jpg", - "response": "A construction worker wearing a yellow hard hat stands on a metal platform high up on a building. The platform is bolted to the side of the building and the worker is standing on it. The worker is also wearing a grey jacket and green pants. In the background, a city can be seen.", - "id": 22842 - }, - { - "image_path": "G:\\images\\combined\\-4180-_png_jpg.rf.abad322bd123ec5ec0539734f528251c.jpg", - "response": " Three men(297,307),(541,828)(580,267),(749,820)(561,244),(649,683) in hard hats(329,307),(418,379)(563,243),(649,308)(580,2),(684,86) looking out of a window at a construction site", - "id": 22843 - }, - { - "image_path": "G:\\images\\combined\\-4181-_png_jpg.rf.02a6460bc8de748269f33a39f457dbc7.jpg", - "response": "An engineer showing a mobile phone screen to a boy in a red helmet.", - "id": 22844 - }, - { - "image_path": "G:\\images\\combined\\-4182-_png_jpg.rf.a4998ca9ae6efc23ff3f295bb831df1d.jpg", - "response": "a man and a woman wearing yellow hard hats", - "id": 22845 - }, - { - "image_path": "G:\\images\\combined\\-4185-_png_jpg.rf.0d655a40ccae6b35eb5a7216441f0211.jpg", - "response": "Desert sand blowing across a dune next to a group of construction workers wearing yellow hats and safety gear.", - "id": 22846 - }, - { - "image_path": "G:\\images\\combined\\-4186-_png_jpg.rf.ffd465b815f656a513cd60a052da83f2.jpg", - "response": "A couple of men in blue uniforms and hard hats are working on a power line. They are standing on a red ladder and are surrounded by other equipment.", - "id": 22847 - }, - { - "image_path": "G:\\images\\combined\\-4187-_png_jpg.rf.5008320f2457bbf0d66def786a3f8af1.jpg", - "response": "A construction worker wearing a yellow hard hat and a harness is working on a metal beam. The worker is smiling and appears to be enjoying his work.", - "id": 22848 - }, - { - "image_path": "G:\\images\\combined\\-4190-_png_jpg.rf.7b7e37a0b56215500de639aa80ccc4a1.jpg", - "response": "A group of people working on a large metal structure.", - "id": 22849 - }, - { - "image_path": "G:\\images\\combined\\-4192-_png_jpg.rf.0e74a80dfa05c8e880e066a9eabd691e.jpg", - "response": "In the image there are multiple people working on a construction site. There are three people in the main picture, one on the left, one in the center, and one on the right. There are also two people in the top left corner and one in the top right corner. They are all wearing red helmets. In the middle of the picture, there is a large black net being held up by two men on the left and right sides. The net is covering something on the ground. Under the net, there is a large square piece of white material. The background shows a cityscape with tall buildings.", - "id": 22850 - }, - { - "image_path": "G:\\images\\combined\\-4193-_png_jpg.rf.2f17a4231d40b7851b5c55530244d85c.jpg", - "response": "A group of people kneeling down around several rows of metal canisters.", - "id": 22851 - }, - { - "image_path": "G:\\images\\combined\\-4195-_png_jpg.rf.98c26d8ed5761a1c7318a86f5985f03b.jpg", - "response": "A group of people standing around a construction site.", - "id": 22852 - }, - { - "image_path": "G:\\images\\combined\\-4197-_png_jpg.rf.799dbe0dabd27cef34aa54524b1aa6d6.jpg", - "response": "A man in a blue shirt and helmet is climbing on a wire.", - "id": 22853 - }, - { - "image_path": "G:\\images\\combined\\-4199-_png_jpg.rf.1b3c2a52f654202662e43d07a8ccd584.jpg", - "response": "A group of people working on a construction site.", - "id": 22854 - }, - { - "image_path": "G:\\images\\combined\\-42-_png_jpg.rf.20883f9341799177db90d1a3370cad5f.jpg", - "response": "A group of people working on a construction site.", - "id": 22855 - }, - { - "image_path": "G:\\images\\combined\\-4202-_png_jpg.rf.5d219ebdf2ca09190f69b12c9b95669e.jpg", - "response": "A group of workers wearing hard hats are using ropes to pull or lift something.", - "id": 22856 - }, - { - "image_path": "G:\\images\\combined\\-4203-_png_jpg.rf.f6c49f884e31c23496e13d57a82dc40a.jpg", - "response": "A group of three men sitting in front of a red wall. They are wearing hard hats and orange vests. One man is sitting in a chair, another man is sitting in a chair with his legs crossed, and the third man is sitting in a chair with his legs crossed and eating something. There are several chairs around them and a cup on the ground.", - "id": 22857 - }, - { - "image_path": "G:\\images\\combined\\-4206-_png_jpg.rf.f9769b89217efd9c7a52bc1fcfe3113e.jpg", - "response": "A man and a worker looking at a blueprint in a construction site.", - "id": 22858 - }, - { - "image_path": "G:\\images\\combined\\-4208-_png_jpg.rf.5d8c0170bd79d32711e519a811ae55e3.jpg", - "response": " Construction worker(469,266),(586,619) sitting on a cement truck(1,6),(995,858)", - "id": 22859 - }, - { - "image_path": "G:\\images\\combined\\-4209-_png_jpg.rf.cec1f7ddb121ad5cb09a4f16c1d70fa1.jpg", - "response": "The image shows two workers in white uniforms crouching near a red truck. The truck is orange and has the number 7123 on the side. The workers are in the foreground and are mostly visible but there is also a part of a black and white sign in the foreground. The workers appear to be attaching a red net to the truck.", - "id": 22860 - }, - { - "image_path": "G:\\images\\combined\\-4210-_png_jpg.rf.4a6ebdd3af8bc1a6724f3803e5d8c0b6.jpg", - "response": "A group of people standing around a large concrete block that is being lowered by a crane. Some people are wearing hard hats and some are not.", - "id": 22861 - }, - { - "image_path": "G:\\images\\combined\\-4213-_png_jpg.rf.1429b9b29ac098307be7d1ac0d5e8d79.jpg", - "response": "An image of two workers wearing yellow hard hats and work clothes. They are working on a construction site, one of them is welding something while the other is watching.", - "id": 22862 - }, - { - "image_path": "G:\\images\\combined\\-4214-_png_jpg.rf.277814ee531ee6b62b7584727f5b02ca.jpg", - "response": "A man in a blue jacket is on a power line.", - "id": 22863 - }, - { - "image_path": "G:\\images\\combined\\-4216-_png_jpg.rf.fc259c7e45988c398e6f5d387db99acb.jpg", - "response": "A group of men working on a machine.", - "id": 22864 - }, - { - "image_path": "G:\\images\\combined\\-4218-_png_jpg.rf.a00f3af14c3174f1867c2a68a0fb0ef7.jpg", - "response": "A man in a suit and tie standing in front of another man in a blue shirt and hard hat.", - "id": 22865 - }, - { - "image_path": "G:\\images\\combined\\-422-_png_jpg.rf.cdc8a27b76c01be287323b0f38707e41.jpg", - "response": "The image shows two construction workers wearing hard hats and masks, with yellow hard hats and white masks. They are working with concrete and red pipes in a construction site with mountains in the background. There are also two white tanks and a yellow tank in the foreground.", - "id": 22866 - }, - { - "image_path": "G:\\images\\combined\\-4220-_png_jpg.rf.a8b834476117ae1515c335428a12e552.jpg", - "response": "a group of men standing around a construction site", - "id": 22867 - }, - { - "image_path": "G:\\images\\combined\\-4222-_png_jpg.rf.9fdde3962c59431f0c52162c8d1f7b94.jpg", - "response": "A man in a yellow hard hat is standing in a large circular\u5751. The\u5751 is made of concrete and the man is standing at the bottom. There are ladders on the side of the\u5751 and a large cement wall to the left of the man.", - "id": 22868 - }, - { - "image_path": "G:\\images\\combined\\-4224-_png_jpg.rf.47b7f13febe04462eec88546128b1710.jpg", - "response": "A man wearing a red hat or bucket on his head.", - "id": 22869 - }, - { - "image_path": "G:\\images\\combined\\-4226-_png_jpg.rf.e82db6a07a0e95d8273922f5897a935d.jpg", - "response": "A man using a power drill to break up rock in a quarry.", - "id": 22870 - }, - { - "image_path": "G:\\images\\combined\\-4227-_png_jpg.rf.7d751e9b0a296e8d3ef07e99f5fc6bb6.jpg", - "response": "Some people are working on a building.", - "id": 22871 - }, - { - "image_path": "G:\\images\\combined\\-4228-_png_jpg.rf.8b14ef201eae491ca0a144c56e48568c.jpg", - "response": " Two construction workers(408,384),(517,758)(497,391),(601,739) looking at a blueprint(453,436),(590,528) in a tunnel", - "id": 22872 - }, - { - "image_path": "G:\\images\\combined\\-4230-_png_jpg.rf.2c57cd205b31730c20b8b3c2b22c588f.jpg", - "response": "A group of men wearing hard hats and work clothes are crossing a river. They are dressed in white and have their hands together.", - "id": 22873 - }, - { - "image_path": "G:\\images\\combined\\-4231-_png_jpg.rf.64d188870ea09d0928432a0b3df7f48f.jpg", - "response": "In the image there are three men working on a large piece of equipment. One man is on the left side of the image and is wearing an orange outfit and a blue hat. Another man is on the right side of the image and is wearing a blue hat and a navy blue outfit. The third man is wearing a blue hat and a blue shirt. They are all working on the equipment together.", - "id": 22874 - }, - { - "image_path": "G:\\images\\combined\\-4232-_png_jpg.rf.dcbda065df92addced9a55d6604cfc7f.jpg", - "response": "An image of a worker high up on a power pole or tower. The worker is wearing a grey shirt, blue hat with black trim and a black harness. The worker is on the right side of the image and is focused on the task at hand.", - "id": 22875 - }, - { - "image_path": "G:\\images\\combined\\-4236-_png_jpg.rf.fd817d7d41ffa4e3a8b80ecf90b2353b.jpg", - "response": "A construction site with a city in the background. There is a man walking on a platform and a large wooden beam is being lowered by a crane. There are many other people on the site working.", - "id": 22876 - }, - { - "image_path": "G:\\images\\combined\\-4237-_png_jpg.rf.d40df2ec454e1654773355822dff12cb.jpg", - "response": "A man in a hard hat looks up at a crane.", - "id": 22877 - }, - { - "image_path": "G:\\images\\combined\\-4238-_png_jpg.rf.e0211bc42c9710d7fe27be6fcc13ef44.jpg", - "response": "In the image, several construction workers are wearing yellow hats and yellow vests. They are standing on a street, with some of them holding tools. In the background, there is a desert.", - "id": 22878 - }, - { - "image_path": "G:\\images\\combined\\-4239-_png_jpg.rf.7204f2e25417c49634350286699b5302.jpg", - "response": "A train traveling down train tracks in a desert.", - "id": 22879 - }, - { - "image_path": "G:\\images\\combined\\-424-_png_jpg.rf.9f5c737706f9c6166fefe5d5aa5d292c.jpg", - "response": "A group of men standing in front of a large unfinished tunnel.", - "id": 22880 - }, - { - "image_path": "G:\\images\\combined\\-4240-_png_jpg.rf.1f2b613f9f8cb36396c8c8cfa46dd90e.jpg", - "response": "A worker in a hard hat and coveralls is climbing a ladder.", - "id": 22881 - }, - { - "image_path": "G:\\images\\combined\\-4242-_png_jpg.rf.f4731d0d79aa088d28ebd49a0841447e.jpg", - "response": "The image is a split photo with a group of people standing on a balcony looking at a concrete structure. The people are wearing business attire. In the top photo, a man in a white shirt and wearing a red hard hat is pointing to the structure. In the bottom photo, a man in a blue long sleeve shirt is pointing to the structure while a woman in a light blue suit and a man in a white shirt look on. The balcony has two metal rails.", - "id": 22882 - }, - { - "image_path": "G:\\images\\combined\\-4243-_png_jpg.rf.a09489ed5200fc0c0cc6e0c99a645604.jpg", - "response": "Some workers are building a large structure.", - "id": 22883 - }, - { - "image_path": "G:\\images\\combined\\-4244-_png_jpg.rf.d41799b297bb04e991137c32e9bc49e5.jpg", - "response": "A group of workers in white clothing and blue helmets are standing in front of a building.", - "id": 22884 - }, - { - "image_path": "G:\\images\\combined\\-4245-_png_jpg.rf.f8e1ee09504cd8978654f96c6e7bf84b.jpg", - "response": "A group of people standing in front of a tall structure with a banner that says \"\"\u7c73\u81025 \u6c34\u6ce52\"\". The people are wearing hard hats.", - "id": 22885 - }, - { - "image_path": "G:\\images\\combined\\-4246-_png_jpg.rf.0b29b42928d5cb6e98e2cca5c02fbd07.jpg", - "response": "A group of workers in a\u96a7\u9053 working on the ceiling.", - "id": 22886 - }, - { - "image_path": "G:\\images\\combined\\-4247-_png_jpg.rf.066aa84856a90450d5f29ce1d1cd99a7.jpg", - "response": "A group of people standing in a construction site wearing high visibility clothing and hard hats, looking at a set of plans.", - "id": 22887 - }, - { - "image_path": "G:\\images\\combined\\-4248-_png_jpg.rf.45c77d8bd5edaa331e8f492276dc6e92.jpg", - "response": "A solar panel field with two men in front wearing white helmets and yellow vests. One man is on the left and the other is on the right. They are both holding a laptop and checking the solar panels.", - "id": 22888 - }, - { - "image_path": "G:\\images\\combined\\-4253-_png_jpg.rf.1b2c7a284aad56c31a42a3ace6517139.jpg", - "response": "A man and a woman standing in a dark tunnel. They are both wearing safety gear and looking at a clipboard.", - "id": 22889 - }, - { - "image_path": "G:\\images\\combined\\-4254-_png_jpg.rf.fa2587875f951017c91ecdde83aaf812.jpg", - "response": "A man in a red hard hat and grey shirt is showing two other men how to use a tool. The man in the middle is wearing a blue shirt and a name tag. The man on the left is wearing a yellow hard hat and green and blue coveralls. The man on the right is wearing a yellow hard hat, a red and blue tank top, and grey and blue coveralls. They are all standing in front of a table with a bunch of metal rods on it.", - "id": 22890 - }, - { - "image_path": "G:\\images\\combined\\-4259-_png_jpg.rf.cbcaabc2a967f8e8f7f61737edcaa295.jpg", - "response": "A construction worker in a white shirt and blue pants is kneeling on the ground, working on a large grid of steel. Another worker in a yellow and blue uniform is standing to the left, looking at the camera. They are both wearing hard hats. In the background, a crane is visible. To the far right, there is a white cloud with red text in it. The text reads \"xwwuj.com\" and \"\u53a6\u95e8\u7f51 \u664b\u6c5f\u7ad9\".", - "id": 22891 - }, - { - "image_path": "G:\\images\\combined\\-426-_png_jpg.rf.d05f8f6f0d91815d1655a6bac17ccaa8.jpg", - "response": "A group of men working on a construction site.", - "id": 22892 - }, - { - "image_path": "G:\\images\\combined\\-4262-_png_jpg.rf.951a6c41eea94b31db9c55b8ac419c15.jpg", - "response": "A forklift is parked next to a shipping container with another person standing nearby.", - "id": 22893 - }, - { - "image_path": "G:\\images\\combined\\-4267-_png_jpg.rf.600fd6da6763b0767d1954e2f3406a77.jpg", - "response": "A group of men wearing hard hats are walking in a field. They are carrying equipment and walking single file. In the background there is a snow covered hill.", - "id": 22894 - }, - { - "image_path": "G:\\images\\combined\\-4268-_png_jpg.rf.6c0b08c355eb700b3d93798e5b9b663e.jpg", - "response": "A person in a red jacket and a white helmet is kneeling down in front of a large pipe. They are smiling at the camera and appear to have black and grey paint on their face. They are also wearing a glove on their left hand. There are several other pipes and a large silver tank in the background.", - "id": 22895 - }, - { - "image_path": "G:\\images\\combined\\-4269-_png_jpg.rf.ecf80b1bc749883335a823acd8e16975.jpg", - "response": "A worker is on a snowy wire with a chainsaw cutting through the ice.", - "id": 22896 - }, - { - "image_path": "G:\\images\\combined\\-4271-_png_jpg.rf.ece3bc8ff7b7c85694662c8d1d5e1889.jpg", - "response": "A group of men in white and blue uniforms are working on a telephone pole. They are standing on the pole, which is leaning to the left, and they are holding onto ropes. One man is at the top of the pole, and others are at various heights up the pole. One man is wearing a yellow helmet. They are all working on the wires above.", - "id": 22897 - }, - { - "image_path": "G:\\images\\combined\\-4272-_png_jpg.rf.f672ec68727bc473703ca459736b6e9d.jpg", - "response": "Four construction workers wearing yellow helmets are seen building a structure. They are wearing blue jackets and grey trousers. One of them is holding a yellow helmet and another one is holding a blue stick. There are many other workers in different positions in the picture.", - "id": 22898 - }, - { - "image_path": "G:\\images\\combined\\-4273-_png_jpg.rf.8f7a111c8eab59d5e813c927b4f9293d.jpg", - "response": "In the image, workers are seen working on a train track. There is a train track that runs from the top left to the bottom right, with several workers in orange vests and white helmets working on it. Some of them are standing on wooden platforms, while others are standing on the track itself. In the background, there is a body of water and a forest.", - "id": 22899 - }, - { - "image_path": "G:\\images\\combined\\-4274-_png_jpg.rf.1f18a68948eaaa3f0cd6b41e624e0df0.jpg", - "response": "A group of men working on a construction site", - "id": 22900 - }, - { - "image_path": "G:\\images\\combined\\-4275-_png_jpg.rf.d8f8268c730b9145cef775c25f437f05.jpg", - "response": "A group of electricians working on a panel.", - "id": 22901 - }, - { - "image_path": "G:\\images\\combined\\-4276-_png_jpg.rf.c0de6515bf4cfa78b149bed2f4dbd8ad.jpg", - "response": "In the image there are two men working on some kind of machine. They are both wearing blue helmets and work clothes. The man on the left is holding a large grey box and the man on the right is fixing some wires on the metal structure. They seem to be in a factory or a workshop.", - "id": 22902 - }, - { - "image_path": "G:\\images\\combined\\-4277-_png_jpg.rf.18e64c56f26b80d29c7bd7d6efa4f841.jpg", - "response": "A group of people are walking on a green surface.", - "id": 22903 - }, - { - "image_path": "G:\\images\\combined\\-4279-_png_jpg.rf.cada147429e49fc30c106d77b100b800.jpg", - "response": "The image shows a group of workers in red uniforms standing on top of a large circular concrete form. There are several workers, some standing on the edge of the form and others working inside it. They are all wearing orange hard hats and some are holding shovels. In the background, there is a large structure under construction. The workers appear to be pouring concrete into the form.", - "id": 22904 - }, - { - "image_path": "G:\\images\\combined\\-428-_png_jpg.rf.ba9d6bf86a63c8210e5815c3e4dea645.jpg", - "response": "A group of men working in a mine.", - "id": 22905 - }, - { - "image_path": "G:\\images\\combined\\-4280-_png_jpg.rf.43fe6fdd464715a3d3f1f8d2a217ae33.jpg", - "response": "A group of people standing around a construction site.", - "id": 22906 - }, - { - "image_path": "G:\\images\\combined\\-4281-_png_jpg.rf.fe6e1ada2b891590e98448cadb5311ff.jpg", - "response": "In this image, construction workers are seen working on a bridge. There are two workers in the image, one is on the left and the other is in the center. The worker on the left is holding a large yellow helmet and is looking down. The worker in the center is wearing a yellow helmet and is kicking a large piece of debris. There is a large truck in the image on the left side, with a concrete mixer visible. The sky is blue with clouds.", - "id": 22907 - }, - { - "image_path": "G:\\images\\combined\\-4282-_png_jpg.rf.f81db55b522ae4b9b4a4dcd0a914fc0c.jpg", - "response": "In the image there is a factory worker directing a crane operator. The factory worker is wearing a red hard hat and blue coveralls. The crane is lifting a long metal piece of equipment and it appears to be a very large and bright factory.", - "id": 22908 - }, - { - "image_path": "G:\\images\\combined\\-4283-_png_jpg.rf.205b7a3e20e171126fa21185c1bcfed6.jpg", - "response": "The image shows a group of seven men standing under a banner celebrating the start of a project. They are all wearing hard hats and the banner above them reads \u201c\u70ed\u70c8\u5e86\u795d\u5382\u623f\u4e3b\u4f53\u5de5\u7a0b\u7b2c\u4e00\u5757\u7816\u5f00\u6d47\u704c\u201d. The men are standing in front of a large wall, which appears to be made of stone or concrete. The wall has a banner hanging on it and there are a few lines of red writing on it. The ground beneath their feet is covered in small white stones.", - "id": 22909 - }, - { - "image_path": "G:\\images\\combined\\-4284-_png_jpg.rf.c91dac927e8c0df63c96e304038afa86.jpg", - "response": "A construction site with a blue building under construction. There are yellow scaffolding and a yellow ladder. There are also some people working on the site.", - "id": 22910 - }, - { - "image_path": "G:\\images\\combined\\-4285-_png_jpg.rf.4051490a7cee333fad0e1382473bf007.jpg", - "response": "A group of men are working on a power line. They are all wearing blue jumpsuits and yellow hard hats. One man is at the top of the power line, one man is in the middle, and one man is at the bottom. They are all holding onto the power line with their hands.", - "id": 22911 - }, - { - "image_path": "G:\\images\\combined\\-4287-_png_jpg.rf.40ba20e1fdebec83287219307c5c8481.jpg", - "response": "In the image there is a man wearing a white helmet and a black vest. He is standing in a pit in the ground, which is filled with dirt. There is a large rock or concrete structure to the right of the man. In the foreground to the right, there is a red and white ball. The man is holding a tool in his left hand, which looks like a jackhammer or a large drill.", - "id": 22912 - }, - { - "image_path": "G:\\images\\combined\\-4288-_png_jpg.rf.c6045b357120f4f7fe1d5709f50fd90c.jpg", - "response": "A construction site with two people working on it.", - "id": 22913 - }, - { - "image_path": "G:\\images\\combined\\-4290-_png_jpg.rf.a00505753a4485f34836afb321dc175b.jpg", - "response": "A group of people standing underneath a building that is being constructed.", - "id": 22914 - }, - { - "image_path": "G:\\images\\combined\\-4291-_png_jpg.rf.7b575b1c16621fd629da857b76d2ab0c.jpg", - "response": "Four men(389,140),(637,636)(5,163),(303,986)(568,53),(1000,646) in hard hats(567,52),(723,202)(483,138),(601,226)(96,162),(267,283) are working together to load a dead pig(234,436),(936,836) into the back of a truck.", - "id": 22915 - }, - { - "image_path": "G:\\images\\combined\\-4292-_png_jpg.rf.c049a392efc7214f4e6dc9be3e4d2b74.jpg", - "response": "A man in a red hard hat looking at a concrete foundation.", - "id": 22916 - }, - { - "image_path": "G:\\images\\combined\\-4293-_png_jpg.rf.458f2cebeb6d33ec8bf3800dc94104fd.jpg", - "response": " Men(332,535),(556,997)(246,499),(433,693) in hard hats(449,534),(546,631)(333,499),(388,546) and orange jumpsuits(332,646),(531,997)(248,554),(433,693) carrying long wooden poles(138,409),(533,997)", - "id": 22917 - }, - { - "image_path": "G:\\images\\combined\\-4295-_png_jpg.rf.f533d5ef5671fc367c43f11fea5bb9e5.jpg", - "response": "A construction site with several people and materials.", - "id": 22918 - }, - { - "image_path": "G:\\images\\combined\\-4296-_png_jpg.rf.8ce3ef50d3ed53729571055fbb950e32.jpg", - "response": "A man in a yellow hard hat and safety glasses is putting on a yellow ear plug.", - "id": 22919 - }, - { - "image_path": "G:\\images\\combined\\-4297-_png_jpg.rf.4627f97fc7d6a82fe3b2880174f69d1a.jpg", - "response": "A man in a yellow hard hat sitting on the ground in a large tunnel. He is holding a black and white cat in his lap. The cat is looking up at the camera. The man is wearing a yellow, blue, and red jacket. There are two lights on in the tunnel. The ground is made of concrete and there are tracks on the ground. The walls of the tunnel are white and grey. There is a yellow pipe on the right side of the tunnel.", - "id": 22920 - }, - { - "image_path": "G:\\images\\combined\\-4298-_png_jpg.rf.9faa5755d8166039cdd625398b2baceb.jpg", - "response": "A man in a red hard hat is using a device to take measurements in a field.", - "id": 22921 - }, - { - "image_path": "G:\\images\\combined\\-4299-_png_jpg.rf.250b341221b096c990ca53de06c8285d.jpg", - "response": "A group of workers are working on a metal tower.", - "id": 22922 - }, - { - "image_path": "G:\\images\\combined\\-4300-_png_jpg.rf.b2d7341cbad8abebc742bdd71cd13c36.jpg", - "response": "A group of men in hard hats and uniforms are standing in a wooded area. They are huddled together and appear to be looking at something.", - "id": 22923 - }, - { - "image_path": "G:\\images\\combined\\-4301-_png_jpg.rf.18b64384c0b14acdd6c9cc7bf7bcf4c7.jpg", - "response": "A man in a yellow hard hat is on a ladder. He is wearing a white and black striped shirt and a yellow harness. He is holding a paint roller and is in the process of painting a white wall. There is a second man partially visible at the top of the ladder.", - "id": 22924 - }, - { - "image_path": "G:\\images\\combined\\-4302-_png_jpg.rf.1fa94b69135f89891abdea968e208db0.jpg", - "response": " Dilma Rousseff(124,390),(358,997), Brazil's president, center, dances as she tours the construction site of the Olympic Aquatics Stadium in Rio de Janeiro, Brazil, on Tuesday, Aug. 12, 2014. The Rio de Janeiro 2016 Olympic Games are scheduled to start on Aug. 5, 2016.", - "id": 22925 - }, - { - "image_path": "G:\\images\\combined\\-4303-_png_jpg.rf.331ed345eb5d0f41012cbcf4d7905005.jpg", - "response": "A group of construction workers working on a building.", - "id": 22926 - }, - { - "image_path": "G:\\images\\combined\\-4304-_png_jpg.rf.86785d171962e9c212344863b41b9a83.jpg", - "response": "A worker in a yellow hard hat stands on a platform and looks down at a black net. The net is attached to a tall white building with many windows. The worker is also wearing a black jacket and black pants.", - "id": 22927 - }, - { - "image_path": "G:\\images\\combined\\-4307-_png_jpg.rf.f44e3326211a03018f7f981eea9c7dbf.jpg", - "response": "The image shows two people in a snowy outdoor setting. They are standing in a field covered with snow, and they are wearing black and blue clothing. The person on the left is holding a shovel, and both people are wearing gloves. The background shows a mountain covered with snow. The image also has a watermark that says \"weather.com.cn\".", - "id": 22928 - }, - { - "image_path": "G:\\images\\combined\\-4308-_png_jpg.rf.25d93954e2f40e0ba3a1965c1cbb11b3.jpg", - "response": "A man in a blue hat and work clothes is working on a large wooden wheel.", - "id": 22929 - }, - { - "image_path": "G:\\images\\combined\\-4309-_png_jpg.rf.7a70734da49240d9ead475a4043647ae.jpg", - "response": "A man in a black coat and red hard hat is holding a clipboard and talking to a woman in a blue coat and red hard hat. They are standing in a field next to a man in a blue coat and red hard hat who is sitting in a chair and operating a piece of equipment. Another man in a red coat and hard hat is standing further to the left.", - "id": 22930 - }, - { - "image_path": "G:\\images\\combined\\-431-_png_jpg.rf.87059757ccd5a3ae2ec77c9d0e50c9c8.jpg", - "response": "The image shows three workers in orange vests and yellow helmets who are busy repairing a road. They are all crouched down and appear to be using their hands to level the surface of the road. The first worker is in the center of the image, crouched down with his left hand on the road and his right hand holding a tool. The second worker is located slightly to the right of the first one, and the third worker is located even further to the right, almost at the edge of the image. The two workers on the right appear to be using tools as well, but their tools are not clearly visible in the image. The workers are surrounded by a smooth gray surface of the road, which is in the foreground of the image.", - "id": 22931 - }, - { - "image_path": "G:\\images\\combined\\-4310-_png_jpg.rf.523fa507f412572e52ce5a772fee1e87.jpg", - "response": "A worker in a white hard hat and a white mask is kneeling down and working with a trowel. They are in a dark room filled with debris and construction materials.", - "id": 22932 - }, - { - "image_path": "G:\\images\\combined\\-4311-_png_jpg.rf.945feaef3ee170feea69dbc5c9e95cce.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 22933 - }, - { - "image_path": "G:\\images\\combined\\-4312-_png_jpg.rf.a2baae92ea76099a6ebe566ff8883b5d.jpg", - "response": "A man in a green uniform and yellow hard hat is using a large drill to work on a cement wall.", - "id": 22934 - }, - { - "image_path": "G:\\images\\combined\\-4313-_png_jpg.rf.dcf7eb64491f13874961e19ae39edbb3.jpg", - "response": "A worker in a hard hat and blue coveralls is using a tool to work on a wall. The wall has a metal shelf on it and there are three metal plates stacked on top of each other on the shelf. The worker is wearing a white safety helmet and has a tool in their hand.", - "id": 22935 - }, - { - "image_path": "G:\\images\\combined\\-4316-_png_jpg.rf.df215c1d1800e90095833f13ffa950e6.jpg", - "response": "A group of workers stand underneath a large metal structure.", - "id": 22936 - }, - { - "image_path": "G:\\images\\combined\\-4318-_png_jpg.rf.6fb250112620da115b8703b10b10b88d.jpg", - "response": "The image shows a construction site for a large project. The main feature of the image is a wall that is being constructed. The wall is made of concrete blocks and is blue in color. The blocks are arranged in a grid pattern. In the foreground, there are several people working on the site. One person is wearing a white shirt and is standing in the middle of the scene. Another person is wearing a red helmet and is on the far right of the image. There is also a person in the background who is wearing a white shirt and has their arms crossed. In the top right corner of the image, there is a pillar that has a red banner draped over it. The banner has yellow writing on it and is advertising a construction project.", - "id": 22937 - }, - { - "image_path": "G:\\images\\combined\\-4319-_png_jpg.rf.b333bc9c9c870b9b0689f47b876a19b5.jpg", - "response": "A pair of construction workers wearing pink and yellow hard hats are working on a construction site. They are both wearing green jackets and are focused on their work. There are several other people in the background, some are further away and some are closer to the foreground. There is a large metal beam in the foreground with the word \"\u4e2d\u56fd\" on it, and a pink hard hat is visible in the top left corner of the image.", - "id": 22938 - }, - { - "image_path": "G:\\images\\combined\\-432-_png_jpg.rf.46097827e97ee2207d32c9007258c532.jpg", - "response": "The image shows two men in blue uniforms and blue helmets working on a power line. They are standing on a small platform, which is attached to the side of a tall brick building. The building has many windows and is grey in color. The men are wearing yellow reflective vests. One of them is holding a tool in his hand. The platform is equipped with a safety belt and a safety line connected to the building.", - "id": 22939 - }, - { - "image_path": "G:\\images\\combined\\-4320-_png_jpg.rf.45966cd04a2b6eebd5b425bd021fb282.jpg", - "response": "A group of three people wearing hard hats, one man and two women, are sitting on a row of cinder blocks. The man in the middle is wearing a red tie. They are all looking off to the left.", - "id": 22940 - }, - { - "image_path": "G:\\images\\combined\\-4321-_png_jpg.rf.652d47102000f35d09c0e0f1ec515ea7.jpg", - "response": "In the image there are two workers in orange jumpsuits and hard hats on a bridge. They are standing on the bridge, which has a metal grating and some machinery. In the background, there is a city skyline.", - "id": 22941 - }, - { - "image_path": "G:\\images\\combined\\-4322-_png_jpg.rf.0103aef294e9a832780a443097817649.jpg", - "response": "A man in a white shirt and grey pants is working on a power line.", - "id": 22942 - }, - { - "image_path": "G:\\images\\combined\\-4323-_png_jpg.rf.5cab317771821ae9c907961c4f25834f.jpg", - "response": "The image shows a group of six men standing in an unfinished factory building. They are all wearing hard hats and some are wearing suits. The floor is covered in red dirt and there are a few steel beams visible. The men are standing near a large piece of metal that has been painted with red paint. The background shows the interior of the factory building, with a few steel beams visible.", - "id": 22943 - }, - { - "image_path": "G:\\images\\combined\\-4324-_png_jpg.rf.402e10a24ccefb0133435f2888b231bf.jpg", - "response": "A man in a blue shirt and grey pants is climbing a ladder on the side of a tower.", - "id": 22944 - }, - { - "image_path": "G:\\images\\combined\\-4327-_png_jpg.rf.9e2b77a3049339c9d153e90812d085b5.jpg", - "response": "A large circular pipe in the sand.", - "id": 22945 - }, - { - "image_path": "G:\\images\\combined\\-4328-_png_jpg.rf.6f818502ddd921538a35a16d94993fb8.jpg", - "response": "A group of three men working on a construction site.", - "id": 22946 - }, - { - "image_path": "G:\\images\\combined\\-4329-_png_jpg.rf.8f65baa6d549ce487b09fe27bb9bfa2d.jpg", - "response": "A man in a red uniform is kneeling down and working with some pipes that are emitting steam. He is near a large tank and a blue vehicle. There is a puddle of water near him and a lot of dirt and debris on the ground. There is also a building in the background.", - "id": 22947 - }, - { - "image_path": "G:\\images\\combined\\-433-_png_jpg.rf.269e83bd860eec29152876810e12dd82.jpg", - "response": "The image shows a couple of workers repairing a power line. They are wearing white helmets and work clothes. The workers are focused on their task, one of them is using a tool to fix something on the power line. The sky is blue and clear without any clouds.", - "id": 22948 - }, - { - "image_path": "G:\\images\\combined\\-4331-_png_jpg.rf.334e71f0632b882228654de9ffbb6ab5.jpg", - "response": "The image is a collage of three photos of construction workers. The central photo is of a construction worker sitting on a metal structure. The worker is wearing a yellow hard hat and a blue and yellow shirt with brown buttons. The worker is also wearing a brown vest. In the background, there are other workers and metal structures.", - "id": 22949 - }, - { - "image_path": "G:\\images\\combined\\-4332-_png_jpg.rf.8177fb9d3ab01db474bd1cb7532e9bdb.jpg", - "response": "An electrician repairs a power line.", - "id": 22950 - }, - { - "image_path": "G:\\images\\combined\\-4333-_png_jpg.rf.6ad5dfd8b1394a6c182ab85fb0d29e8a.jpg", - "response": "A group of men wearing hard hats and work clothes stand in a construction area.", - "id": 22951 - }, - { - "image_path": "G:\\images\\combined\\-4334-_png_jpg.rf.fa66db443bf53861afb14c0dde9a2448.jpg", - "response": " A worker(299,472),(467,831) in a red uniform with a helmet(326,471),(386,520) on.", - "id": 22952 - }, - { - "image_path": "G:\\images\\combined\\-4335-_png_jpg.rf.ab6495ca6c6c226f8ecb7cb6781eb2c2.jpg", - "response": "A group of people working on a building.", - "id": 22953 - }, - { - "image_path": "G:\\images\\combined\\-4336-_png_jpg.rf.0b76ab66c4e15a704d5d613565369b6d.jpg", - "response": "The image shows three workers in the process of removing a metal structure from a building. The central figure is a worker in a brown jacket and blue hat, who is reaching up to the metal structure and pulling on it. Another worker is located to the left of the central figure, and a third worker is located to the right. The workers are all wearing safety harnesses. In the background, a portion of a street sign can be seen.", - "id": 22954 - }, - { - "image_path": "G:\\images\\combined\\-4337-_png_jpg.rf.c738d2cc2b1eebdb2fc6b9109fd64505.jpg", - "response": "The image shows two workers at a construction site. They are wearing yellow helmets and are crouched down, working on a grid of rebar. The rebar forms a part of a large grid that covers the entire image. There are several other people at the construction site, although they are smaller in the image and mostly appear as dots. Some of them are further away, while others are closer to the camera.", - "id": 22955 - }, - { - "image_path": "G:\\images\\combined\\-4338-_png_jpg.rf.b55fb4e6b1fca5fb937988bf36c1806c.jpg", - "response": "A group of men standing around a construction site.", - "id": 22956 - }, - { - "image_path": "G:\\images\\combined\\-4339-_png_jpg.rf.9573d2dc726d8aa6016b4d53fc425757.jpg", - "response": "A group of people working on a building site.", - "id": 22957 - }, - { - "image_path": "G:\\images\\combined\\-4340-_png_jpg.rf.738dca80cb18b0d09c6c16499493c00e.jpg", - "response": "A worker in a red jacket and red hard hat is on a scaffolding working on a red wall.", - "id": 22958 - }, - { - "image_path": "G:\\images\\combined\\-4341-_png_jpg.rf.471be028f3b639f00e978d7130621a66.jpg", - "response": "A group of workers are using different tools to clear the river bed of rocks and debris. They are wearing hard hats and some are using shovels while others are using pick-axes.", - "id": 22959 - }, - { - "image_path": "G:\\images\\combined\\-4342-_png_jpg.rf.9d911b24bdec6371bcdcb816b35cd8a2.jpg", - "response": "A man sitting on a scaffold in a factory.", - "id": 22960 - }, - { - "image_path": "G:\\images\\combined\\-4343-_png_jpg.rf.193a46df0c4b5d87e4b83be7d9765f3e.jpg", - "response": "A group of men working on a building construction site.", - "id": 22961 - }, - { - "image_path": "G:\\images\\combined\\-4346-_png_jpg.rf.b70623fec2f0aadd8ec26374fcccee34.jpg", - "response": " Two workers(666,173),(995,996)(328,377),(548,628) are seen in a dark room, with one of them holding a light(387,547),(456,625) and the other reaching through a small opening in the wall.", - "id": 22962 - }, - { - "image_path": "G:\\images\\combined\\-4347-_png_jpg.rf.509fc8e2b1301cb2239d14d757de1bfb.jpg", - "response": "A group of people walking across a street.", - "id": 22963 - }, - { - "image_path": "G:\\images\\combined\\-4349-_png_jpg.rf.97bcf3a027e4a30065813e57fb49daac.jpg", - "response": "The image shows a large tunnel with a group of men in blue uniforms and hard hats standing inside it. They are standing around a large circular object, which appears to be a large pipe or a segment of a large circular piece of machinery. The men are working together to move the object. There is a large sign above them that says \"success\" in both English and Chinese. In the background, there are other signs in both English and Chinese. The floor of the tunnel is covered with large, round manhole covers.", - "id": 22964 - }, - { - "image_path": "G:\\images\\combined\\-435-_png_jpg.rf.33810b679f925223c96003666c683c41.jpg", - "response": "The image shows a construction site with several workers. There is a large concrete pipe in the foreground, with another one behind it. Some workers are standing in the background, with one of them wearing a yellow hard hat and a blue shirt. There are several other people in the background, some of them wearing hard hats and yellow vests. There are also several orange and white traffic cones scattered around the site. In the top left corner, there is a large white sign with a red arrow pointing to the right.", - "id": 22965 - }, - { - "image_path": "G:\\images\\combined\\-4356-_png_jpg.rf.dd6cef64482416773cdee8051f1b3ec7.jpg", - "response": "A man in a hard hat is standing in a dark tunnel. He is holding a light and a long rod. The tunnel is filled with rocks and there are wires strung up in front of the man.", - "id": 22966 - }, - { - "image_path": "G:\\images\\combined\\-4358-_png_jpg.rf.2d775e363fb26bcca472e3c9a5542500.jpg", - "response": "A collage of 4 pictures of workers in yellow and grey uniforms and yellow helmets, working on brick and iron structures.", - "id": 22967 - }, - { - "image_path": "G:\\images\\combined\\-4359-_png_jpg.rf.15f91c8105ee9ec46ceaa58f48b4bfb0.jpg", - "response": "In the image there is a group of workers inside a large pipe. They are wearing hard hats and coveralls. They are holding onto a cable that is running through the pipe. They are standing in a tunnel that is made of concrete.", - "id": 22968 - }, - { - "image_path": "G:\\images\\combined\\-436-_png_jpg.rf.fe2d2378b70ef35dffd8f59b22cde72b.jpg", - "response": "A man in a lab coat and a hard hat sits at a desk using a machine.", - "id": 22969 - }, - { - "image_path": "G:\\images\\combined\\-4360-_png_jpg.rf.da50fdf0c61acbc5af329f299d119c57.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a train track. They are standing on the track, which is a dark brown color. Some of them are using tools, such as hammers and wrenches, to work on the track. There are also some people in the background, who appear to be observing the workers. The sky is blue with clouds. In the foreground, there is a sign that reads \"\u4e2d\u56fd\u65b0\u95fb\" which is Chinese for \"Chinese News\". Underneath this is a water mark that reads \"\u6c34\u5229\u6c34\u7535\u62a5\" which is Chinese for \"Hydroelectric newspaper\".", - "id": 22970 - }, - { - "image_path": "G:\\images\\combined\\-4362-_png_jpg.rf.2b10dbe42a5846ceefa7221f7e9dfa0b.jpg", - "response": " Workers(231,380),(311,507)(212,528),(300,673)(229,464),(311,568)(633,442),(691,561)(317,536),(371,620) are working on a construction site", - "id": 22971 - }, - { - "image_path": "G:\\images\\combined\\-4363-_png_jpg.rf.2b3731557524253d3816fa375136ebb4.jpg", - "response": "A man wearing a green shirt and a blue hat is working on an electrical box. He is holding a yellow, red, and blue wire in his hands. There is a ladder next to him and another man in the background. There is a flag with Chinese writing on it hanging above him.", - "id": 22972 - }, - { - "image_path": "G:\\images\\combined\\-4364-_png_jpg.rf.a7f59dc14d26a8716109e9849595438a.jpg", - "response": "In the image there are two workers in a shaft, one is on the left and the other one is on the right. They are wearing yellow helmet and red shirt. The helmet the worker on the right is wearing is yellow. The wall of the shaft is made of dark brown stone and the roof is made of dark brown stone also. There is a light on the left side of the shaft and a rope on the right side of the shaft. The light is turned on and the rope is being held by the worker on the right.", - "id": 22973 - }, - { - "image_path": "G:\\images\\combined\\-4366-_png_jpg.rf.78d68552f0adc41334e53c36b5d0217d.jpg", - "response": "A group of three men in yellow hard hats and yellow helmets are working in a cave. They are all shirtless and wearing yellow helmets. One man is standing on a ladder and two men are working on the left.", - "id": 22974 - }, - { - "image_path": "G:\\images\\combined\\-4367-_png_jpg.rf.b5300f631c6d05f333e7924cf6425c41.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 22975 - }, - { - "image_path": "G:\\images\\combined\\-4368-_png_jpg.rf.fc825e0b75c2b08f4277fd60442505af.jpg", - "response": "A group of people standing in front of a tall building.", - "id": 22976 - }, - { - "image_path": "G:\\images\\combined\\-4369-_png_jpg.rf.37fd80440e30340ba62b0e9f79064b91.jpg", - "response": "A group of men working on electrical wiring on a pole.", - "id": 22977 - }, - { - "image_path": "G:\\images\\combined\\-4371-_png_jpg.rf.ae3f6e6acfcfbd5152c4cb6ba64e076c.jpg", - "response": "a group of men working on power lines in the snow", - "id": 22978 - }, - { - "image_path": "G:\\images\\combined\\-4373-_png_jpg.rf.e37b4ed53449482b6c336fdb2a416744.jpg", - "response": "A maintenance worker pushing a cart of debris in a tunnel.", - "id": 22979 - }, - { - "image_path": "G:\\images\\combined\\-4374-_png_jpg.rf.f6632626e69252ec47831f14b247758d.jpg", - "response": "A group of people working on a construction site.", - "id": 22980 - }, - { - "image_path": "G:\\images\\combined\\-4375-_png_jpg.rf.4c4ea63edaed14a7f48f6257235173ce.jpg", - "response": "The picture shows some workers in red and yellow working on a bridge. There are three workers in total, one is in the middle of the picture holding a pipe while the other two are at the top of the picture. The worker in the middle is also holding a red pipe. The sky is blue with some clouds.", - "id": 22981 - }, - { - "image_path": "G:\\images\\combined\\-4376-_png_jpg.rf.305cbca38116721ee831edf2dfbf7d14.jpg", - "response": "In the image there are two men wearing safety gear. They are both looking in different directions. One man is wearing a yellow and grey high vis vest with a blue hard hat with a white light on it. The other man is wearing a yellow and orange hard hat. They are both standing in a tunnel.", - "id": 22982 - }, - { - "image_path": "G:\\images\\combined\\-4378-_png_jpg.rf.53e14357fd7627809cde78573b965037.jpg", - "response": "In the image there is a man wearing a grey shirt and a white helmet. He is working on a construction site, specifically on a yellow tower. He is holding a power drill which he is using to drill into a pipeline. In the background, there is a blue sky.", - "id": 22983 - }, - { - "image_path": "G:\\images\\combined\\-4379-_png_jpg.rf.8417693b09d7d506ac6798b91389fa09.jpg", - "response": "a group of people standing on train tracks", - "id": 22984 - }, - { - "image_path": "G:\\images\\combined\\-438-_png_jpg.rf.cef17e42ca2930664de0704b44196ca1.jpg", - "response": "A construction worker in a yellow vest is standing on a scaffold. The word\u81ea\u7531\u8d38\u6613\u8bd5\u9a8c\u533a\u66fe\u4e3b\u4efb\u53c8\u56de\u6765\u4e86\u51fa\u73b0\u5728\u5c4f\u5e55\u4e0b\u65b9. The background is a blue bar with a yellow news ticker at the bottom.", - "id": 22985 - }, - { - "image_path": "G:\\images\\combined\\-4382-_png_jpg.rf.97feb571d902b3c28ba2baeeeca58447.jpg", - "response": "A man in a hard hat sits at a desk in a control room. The room has many lights and there are many clocks on the wall.", - "id": 22986 - }, - { - "image_path": "G:\\images\\combined\\-4383-_png_jpg.rf.87e2b33b7ef7d224238c9d25b96e8d29.jpg", - "response": "A pair of workers are standing in a large pipe. The pipe is grey and white. The worker on the left is wearing a yellow hard hat and a blue long sleeve shirt. They are holding a tool in their right hand. The worker on the right is wearing a yellow hard hat and a white long sleeve shirt. They are looking at the camera.", - "id": 22987 - }, - { - "image_path": "G:\\images\\combined\\-4384-_png_jpg.rf.dfebb1ef503162a54c282b601e39beb7.jpg", - "response": "A man and a woman standing in front of a building under construction. Both are wearing hard hats. The woman is wearing a blue hard hat and a green vest. The man is wearing a red hard hat and a yellow vest.", - "id": 22988 - }, - { - "image_path": "G:\\images\\combined\\-4385-_png_jpg.rf.63c7cc0f940a1263c5e079e2c02f3a83.jpg", - "response": "The image shows a construction site in a mountainous area. The ground is covered with a brown net, and several people are working on it. Some of them are standing on the net, and some are working on the ground. There is a red flag placed on the net. In the background, there are mountains and a sky with clouds.", - "id": 22989 - }, - { - "image_path": "G:\\images\\combined\\-4387-_png_jpg.rf.4f58fbc2fd9bd9da1c4e5a189dc65b4d.jpg", - "response": "A man in a black jacket and white helmet is on a power line, working on a power pole.", - "id": 22990 - }, - { - "image_path": "G:\\images\\combined\\-4388-_png_jpg.rf.5783bdb18128deff4755f06e8129e69f.jpg", - "response": "A construction worker using a jack hammer to break up a concrete floor.", - "id": 22991 - }, - { - "image_path": "G:\\images\\combined\\-4389-_png_jpg.rf.b845577166bad48b2cdcbf85328a3dd1.jpg", - "response": "A group of people working on a construction site.", - "id": 22992 - }, - { - "image_path": "G:\\images\\combined\\-439-_png_jpg.rf.7aea5165f02a03e4961f8720f1d4ef55.jpg", - "response": "A couple of men working on a power line", - "id": 22993 - }, - { - "image_path": "G:\\images\\combined\\-4391-_png_jpg.rf.a46b8b2f1a14df36fe7034ee32111174.jpg", - "response": "A worker in a yellow hard hat is working on a large pipe.", - "id": 22994 - }, - { - "image_path": "G:\\images\\combined\\-4392-_png_jpg.rf.24d52e51fe903fa478cac877d560112a.jpg", - "response": "The photo shows several soldiers carrying a man on a stretcher. The man is on a stretcher, and there are five soldiers around him. They are all wearing red helmets and camouflage clothing. The background shows a fence and a sign with Chinese characters.", - "id": 22995 - }, - { - "image_path": "G:\\images\\combined\\-4393-_png_jpg.rf.2851d203037262b4db40571d6dee2309.jpg", - "response": "In the image two construction workers are holding a sign that says \"Happy International Worker's Day\" in black marker. The woman on the left is wearing a yellow safety helmet and a yellow vest. The man on the right is also wearing a yellow safety helmet and a yellow vest. They are both smiling and appear to be having fun. The woman is also holding a sign that says \"\u65e98\u70b9\u5de5\u4f5c\u5230\u665a5\u70b9\" which translates to \"Start at 8am and end at 5pm\" in English. The two workers are standing in front of a large construction site with multiple tall buildings under construction. There are several large cranes working on the buildings and many construction workers can be seen throughout the site.", - "id": 22996 - }, - { - "image_path": "G:\\images\\combined\\-440-_png_jpg.rf.df83d54b30b8dc1e1445b963d67613e1.jpg", - "response": "The image shows a group of men in grey camouflage uniforms and blue hard hats standing in a forest. They are working together to install an electrical grid. One man is holding a power line while another man is adjusting a wire. There are two men standing behind them, one on the left and one on the right. The background is filled with trees.", - "id": 22997 - }, - { - "image_path": "G:\\images\\combined\\-4400-_png_jpg.rf.92ff45ce99ab86b5f32ca6cc50828b94.jpg", - "response": "In the image two workers are seen fixing an electricity board. One of the workers is wearing a blue helmet and is near an electricity board. Another worker is seen behind him wearing a white helmet. Both the workers are wearing blue shirt. In the electricity board, several wires and cables are seen. A grey box is seen at the top left of the image and another one at the bottom left. A tree is seen in the background. The image also has the words '\u7981\u6b62\u6500\u722c' which translates to 'no climbing' in English at the top left of the image.", - "id": 22998 - }, - { - "image_path": "G:\\images\\combined\\-4401-_png_jpg.rf.3430ca3af9c5c5da2180998f1d2dd8ab.jpg", - "response": "A man in a blue hard hat is crouching down next to a large piece of equipment. He is wearing a blue uniform and has a tool belt around his waist. There are several other people in the background, some of them are also wearing hard hats and uniforms. They are all standing around large yellow pipes and wires.", - "id": 22999 - }, - { - "image_path": "G:\\images\\combined\\-4402-_png_jpg.rf.da82f4d24cd4540ebeaa331a303012db.jpg", - "response": "A large pipe is being laid in the ground by some construction workers.", - "id": 23000 - }, - { - "image_path": "G:\\images\\combined\\-4405-_png_jpg.rf.e3e8d83b69c74e555379150a1f82ae51.jpg", - "response": "A man in an orange safety suit is working on a large piece of machinery. The machinery is a piece of heavy equipment that looks like it could be a part of a spaceship. The man is standing in a hole in the center of the machinery, and there are tools around him. The machinery is made of metal and has a large circular piece at the top. There are also some smaller circular pieces around the large circular piece. The machinery is sitting on top of a metal platform.", - "id": 23001 - }, - { - "image_path": "G:\\images\\combined\\-4407-_png_jpg.rf.8850da7ee174743c85780d6c79b404ab.jpg", - "response": " Workers(432,288),(630,537)(314,457),(469,745) are seen working on the 220-tonne reactor core of the nuclear power plant in Bushehr, Iran.", - "id": 23002 - }, - { - "image_path": "G:\\images\\combined\\-4408-_png_jpg.rf.c419067d706f5d4e7b039532ec22938b.jpg", - "response": "A group of men standing around a hole in the ground.", - "id": 23003 - }, - { - "image_path": "G:\\images\\combined\\-4410-_png_jpg.rf.5a5b922a809446fed81ec5cd4a0bae45.jpg", - "response": "A couple of men in blue uniforms and yellow helmets are working on some power lines. They are standing on top of a tower and working on the power lines. The sky is overcast and there is snow on the ground.", - "id": 23004 - }, - { - "image_path": "G:\\images\\combined\\-4413-_png_jpg.rf.2ed596e8100f7afc34dfa0046adb0b53.jpg", - "response": "A man wearing a red hard hat and a white shirt is using a device to measure something at a construction site. There is a large building under construction in the background.", - "id": 23005 - }, - { - "image_path": "G:\\images\\combined\\-4415-_png_jpg.rf.e25e698ee52c8e939d8c9069925ff632.jpg", - "response": "In the image there are three workers in a yellow electric company lift working on power lines.", - "id": 23006 - }, - { - "image_path": "G:\\images\\combined\\-4417-_png_jpg.rf.5caf30997b633d890f8e50377bc1c0c7.jpg", - "response": "The photo is of two workers on a large construction site. They are working on a large piece of equipment, with the ocean visible in the background. There is a large crane operating in the background, and a third person is visible at the top of the image. There is a yellow hard hat on the left side of the image, and a blue one on the right. The sky is blue with a few white clouds.", - "id": 23007 - }, - { - "image_path": "G:\\images\\combined\\-4418-_png_jpg.rf.85577cc099d3a79c94e1f5e7403539f0.jpg", - "response": "A group of men in suits and hard hats walk through a construction site.", - "id": 23008 - }, - { - "image_path": "G:\\images\\combined\\-4419-_png_jpg.rf.69cdcce006b2c38ce1b1f0cde9ce55fa.jpg", - "response": "A construction worker in a yellow hard hat and orange vest leaning over the edge of a tall building.", - "id": 23009 - }, - { - "image_path": "G:\\images\\combined\\-442-_png_jpg.rf.e8ddf169977315c99e5cadc07e28c256.jpg", - "response": "A group of men in blue work uniforms and white safety gear are working on power lines. They are standing on top of a large metal structure with many metal boxes and wires. Some men are working on the wires while others are working on the metal structure. Some men are hanging from ropes while others are standing on the metal structure.", - "id": 23010 - }, - { - "image_path": "G:\\images\\combined\\-4422-_png_jpg.rf.c653c4c2deffb89e19ceae411b30aa3e.jpg", - "response": "A man is suspended in the air while working on a power line. He is wearing a blue shirt and blue jeans. There is a white box hanging from the power line that the man is working on. There is a yellow ladder against the building. There are two motorcycles parked next to the building and a car parked further away. The building is made of concrete and has several windows.", - "id": 23011 - }, - { - "image_path": "G:\\images\\combined\\-4425-_png_jpg.rf.3472a4e599e56b9f9a29c58bf69a39f3.jpg", - "response": "a group of people standing inside a tunnel wearing hard hats", - "id": 23012 - }, - { - "image_path": "G:\\images\\combined\\-4426-_png_jpg.rf.ae263309b90e9b51d983bbe62fff8666.jpg", - "response": "A group of workers are building a scaffold.", - "id": 23013 - }, - { - "image_path": "G:\\images\\combined\\-4427-_png_jpg.rf.33b9752dc1efa2478478e7d1451078cb.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are wearing red and white and are focused on their tasks. In the background, there is a large building under construction.", - "id": 23014 - }, - { - "image_path": "G:\\images\\combined\\-4428-_png_jpg.rf.59a44f8f52f3306aa906d769ab6458d7.jpg", - "response": "In the image there is a construction site with a building under construction. In the image there is a person on the scaffolding, and several other people are working on the building as well. The building has a concrete structure and the person on the scaffolding is working on the top of the building. The scaffolding is made of bamboo and is surrounding the entire building.", - "id": 23015 - }, - { - "image_path": "G:\\images\\combined\\-443-_png_jpg.rf.ad48f87735d6d7f182d39837dc034370.jpg", - "response": "A lineworker is in the process of climbing a telephone pole. He is wearing a safety harness and has a tool belt around his waist. He is pulling himself up the side of the pole using a rope. He is looking up at the top of the pole and is focused on the task at hand. The background is a lush green forest.", - "id": 23016 - }, - { - "image_path": "G:\\images\\combined\\-4432-_png_jpg.rf.ba2b57a131a985d1f01201511ee0c2a9.jpg", - "response": "A group of people working on a construction site.", - "id": 23017 - }, - { - "image_path": "G:\\images\\combined\\-4433-_png_jpg.rf.f421c5f13fb718006dc91f4125b7da3b.jpg", - "response": "A group of men in red work uniforms are on top of a utility pole. They are working on wires and equipment.", - "id": 23018 - }, - { - "image_path": "G:\\images\\combined\\-4438-_png_jpg.rf.faf53d3b8767391ad3160530276f40ba.jpg", - "response": "An electrician working on power lines in the rain.", - "id": 23019 - }, - { - "image_path": "G:\\images\\combined\\-4439-_png_jpg.rf.087f26bda43978ba74c17c350b823a7a.jpg", - "response": "A group of men in blue jumpsuits carrying a large spool of wire.", - "id": 23020 - }, - { - "image_path": "G:\\images\\combined\\-4440-_png_jpg.rf.c474dc2dca5d9566b38beaf338b4393e.jpg", - "response": "The image shows a group of workers at a construction site, working on a bridge. The workers are wearing grey and yellow. In the foreground, two workers are installing steel reinforcement bars on a column. Another worker is operating a red and yellow crane in the background. The sky is blue and there are no clouds. The bridge has a white pillar and the ground is made of cement.", - "id": 23021 - }, - { - "image_path": "G:\\images\\combined\\-4444-_png_jpg.rf.233533d233ab7747efb6a7b8552584a1.jpg", - "response": "A construction worker is working on a building site at night.", - "id": 23022 - }, - { - "image_path": "G:\\images\\combined\\-4445-_png_jpg.rf.c251530a227df441024027ba23c69286.jpg", - "response": "A man is working on a scaffold.", - "id": 23023 - }, - { - "image_path": "G:\\images\\combined\\-4447-_png_jpg.rf.dfbf0c815358839be53ccdce3336c4a7.jpg", - "response": "Three men looking at a tablet in a building site.", - "id": 23024 - }, - { - "image_path": "G:\\images\\combined\\-445-_png_jpg.rf.8c4e26d08b22e7cca2cecab368bde583.jpg", - "response": "A group of people standing around in a circle. Some of them are wearing yellow vests and some are wearing hard hats. They are standing in a construction area.", - "id": 23025 - }, - { - "image_path": "G:\\images\\combined\\-4450-_png_jpg.rf.bf1792befd011e04b10788a07edeb576.jpg", - "response": "a man wearing a yellow helmet is using a machine with the words Deere on it", - "id": 23026 - }, - { - "image_path": "G:\\images\\combined\\-4454-_png_jpg.rf.445bd1841623797538826db8aea552e8.jpg", - "response": "A group of people in white and red hard hats are standing in front of a large piece of machinery. They are holding flashlights and looking at a piece of paper that is glowing.", - "id": 23027 - }, - { - "image_path": "G:\\images\\combined\\-4455-_png_jpg.rf.c9edea840b64848aabb2338da006865f.jpg", - "response": "A construction worker standing in front of a large pile of steel rods.", - "id": 23028 - }, - { - "image_path": "G:\\images\\combined\\-4456-_png_jpg.rf.43e93f23e552504c098de12eabb803bf.jpg", - "response": "A group of four men in hard hats standing in front of a tall brick wall.", - "id": 23029 - }, - { - "image_path": "G:\\images\\combined\\-4457-_png_jpg.rf.378d4cd9b4b91286c8cc7231b6b88654.jpg", - "response": "A man in a hard hat and coveralls is working on a brick wall. He is climbing a ladder and appears to be installing or fixing something.", - "id": 23030 - }, - { - "image_path": "G:\\images\\combined\\-4458-_png_jpg.rf.aa1ea6e09d909d6773f54bfb1e05ff36.jpg", - "response": "The image shows a group of people wearing yellow hard hats and grey clothes, gathered around a construction site. They are all facing the same direction, towards a building under construction. The people are standing on a sidewalk, and some of them are carrying a black bag. The building in the background has a fence around it, and there is a person inside the fence. The image is accompanied by a watermark saying it is a photo of a construction site in Huitong.", - "id": 23031 - }, - { - "image_path": "G:\\images\\combined\\-4459-_png_jpg.rf.e7e732b7ee33d428c40fef7851119c07.jpg", - "response": "A construction site with multiple workers.", - "id": 23032 - }, - { - "image_path": "G:\\images\\combined\\-446-_png_jpg.rf.9028e7041e8964c244bfbd7f3f63b50e.jpg", - "response": "The image shows a man wearing a blue hard hat and a grey jacket, holding a large red stick. The man is standing in front of a large\u5706\u9525\u5f62\u91d1\u5c5e\u7ed3\u6784, which appears to be a metal framework for an electricity pylon. The structure is made up of interlocking triangles and is located in a snowy field. The man is also holding a small red tool in his other hand. There is another person visible in the background, wearing a blue jacket and a white hat. The photo appears to have been taken over winter.", - "id": 23033 - }, - { - "image_path": "G:\\images\\combined\\-4460-_png_jpg.rf.45796e3e1827982beeb330744386ee67.jpg", - "response": "A man in a white shirt and blue pants is suspended from a wire while working on a large concrete structure. He is wearing a hard hat and a harness.", - "id": 23034 - }, - { - "image_path": "G:\\images\\combined\\-4461-_png_jpg.rf.a9a4b1d1816d66389b19b5a3acb40b17.jpg", - "response": "A group of workers are working on a building. The building is under construction and has scaffolding around it. There are several workers in the image, some are standing on the ground and some are up high on the scaffolding. They are all wearing hard hats and some are wearing blue and other are wearing red. There is also a person in the image wearing a blue shirt and a pink hat. The workers are working on the building, it has a glass exterior and some of the workers are working on the metal framework of the building.", - "id": 23035 - }, - { - "image_path": "G:\\images\\combined\\-4463-_png_jpg.rf.3c035196e130f8a3960be5aa32e5f318.jpg", - "response": "The image shows a group of workers inside a large tunnel. They are wearing white shirts and red helmets. In the background, there is a large crane working inside the tunnel. The tunnel is made of stone and has a circular opening at the far end. The workers are standing on rocks and debris scattered around the tunnel floor.", - "id": 23036 - }, - { - "image_path": "G:\\images\\combined\\-4465-_png_jpg.rf.d8f4a7a6e781a72a9213327f685dc8b5.jpg", - "response": "In the image there are two men wearing hard hats and yellow and blue work clothes. They are standing in a large tunnel that is filled with equipment. One man is holding a clipboard and taking notes while the other man is looking up at a large piece of equipment that is hanging from the ceiling. The tunnel is filled with large equipment including a large metal cylinder and a large metal pipe. The men are also surrounded by pipes and cables.", - "id": 23037 - }, - { - "image_path": "G:\\images\\combined\\-4466-_png_jpg.rf.fc83aceaa59b7cccbdddda9a7ecfcc66.jpg", - "response": "The image shows a group of men working on a construction site. They are wearing hard hats and are engaged in various tasks. Some of them are standing on scaffolding, while others are holding tools or operating machinery. There are several people in the scene, with some standing closer to the camera and others further in the background. The construction site is surrounded by trees, with some of them visible near the workers and others in the background. The image is taken from the point of view of someone looking at the construction site.", - "id": 23038 - }, - { - "image_path": "G:\\images\\combined\\-4467-_png_jpg.rf.f2e4dffa3cf270b4ba7af9f1f070dafc.jpg", - "response": " construction workers(312,251),(996,997)(707,2),(996,322) working on a site", - "id": 23039 - }, - { - "image_path": "G:\\images\\combined\\-447-_png_jpg.rf.a95c4278fc2a526b57f617c01eaea95f.jpg", - "response": "A group of six men wearing orange jumpsuits and hard hats are working on a bridge. They are standing on a cement platform and appear to be in the process of building or constructing something. The sky is blue and there are mountains in the background.", - "id": 23040 - }, - { - "image_path": "G:\\images\\combined\\-4470-_png_jpg.rf.8685d2de85030835346c3f8df96b0f21.jpg", - "response": "A worker in camouflage jacket and yellow helmet stands in front of a large piece of machinery. The sky is blue and clear.", - "id": 23041 - }, - { - "image_path": "G:\\images\\combined\\-4471-_png_jpg.rf.d39244f17d1890ff338f0c055f1f44a0.jpg", - "response": "A worker in a red shirt and yellow hard hat kneeling down next to a piece of equipment.", - "id": 23042 - }, - { - "image_path": "G:\\images\\combined\\-4473-_png_jpg.rf.7fdbc79e79803f8be3e83fda5c72e277.jpg", - "response": "The image shows three men wearing yellow hard hats and orange work vests, with the man in the center being lifted up by the other two using a wooden ladder. The man at the top of the ladder is looking down at the camera, while the other two are supporting the ladder. The background shows the interior of a white room under construction.", - "id": 23043 - }, - { - "image_path": "G:\\images\\combined\\-4474-_png_jpg.rf.a54d9c04c3d16cda7cd4a2d087e32b54.jpg", - "response": "The image shows a group of workers dressed in orange jumpsuits. They are climbing a yellow ladder that is placed against a tall power pole. The workers are all focused on the task at hand. There are two workers at the top of the ladder, one on the left and one on the right, both are holding the ladder with their hands. There are two other workers at the bottom of the ladder, one on the left and one on the right, both are holding the ladder with their hands. The ladder is placed on a metal platform that is attached to the power pole. In the background, there is a building with a tiled roof.", - "id": 23044 - }, - { - "image_path": "G:\\images\\combined\\-4477-_png_jpg.rf.6b574c2b5b8f3d9d61ebe83db0ccc3e6.jpg", - "response": "A group of workers are working on a building site. They are all wearing yellow hard hats and some are wearing camouflage clothing. They are all climbing on and working on red scaffolding.", - "id": 23045 - }, - { - "image_path": "G:\\images\\combined\\-4478-_png_jpg.rf.69ded5bd6101eb2e216041d7d3cfcd34.jpg", - "response": "A couple of men standing in front of a bulldozer at a construction site.", - "id": 23046 - }, - { - "image_path": "G:\\images\\combined\\-4479-_png_jpg.rf.a290d13931f8f32f7b0bc47a1851e6f5.jpg", - "response": "A power line technician is working on a power line.", - "id": 23047 - }, - { - "image_path": "G:\\images\\combined\\-448-_png_jpg.rf.d08846bc3ceeacb17a5ec55cc07be031.jpg", - "response": "A group of four men are wearing hard hats and looking at a laptop. They are all smiling and seem to be enjoying themselves. The men are of varying ethnicities, including an African American man, a Middle Eastern man, an Asian man, and a white man. They are all wearing different colored shirts, with the African American and Asian man wearing green, the Middle Eastern man wearing brown, and the white man wearing a yellow and black checkered shirt. The men are all wearing different styles of glasses, with the Asian man wearing thin framed glasses, the Middle Eastern man wearing thick framed glasses, and the white man wearing dark framed glasses. The laptop they are all looking at is open and has a blueprint visible on the screen.", - "id": 23048 - }, - { - "image_path": "G:\\images\\combined\\-4485-_png_jpg.rf.a051c372841abb46529e7dd6a1e6032b.jpg", - "response": "The image shows two workers standing in a large underground tunnel. They are both wearing yellow hard hats and work clothes. The left worker is a woman holding a long blue rope while the right worker is a man. He is holding a smaller yellow rope. They are both looking at the camera. To the right of the image are several white and blue portable air conditioners. In front of the tunnel, a river of water flows towards the right. The background shows the inside of the tunnel with rough stone walls.", - "id": 23049 - }, - { - "image_path": "G:\\images\\combined\\-4486-_png_jpg.rf.089a7658850f39bee44dbdf9c2ffbcfc.jpg", - "response": "A man and a woman wearing hard hats and orange work suits are sitting on a steel girder. They are both smiling and laughing.", - "id": 23050 - }, - { - "image_path": "G:\\images\\combined\\-4487-_png_jpg.rf.265638e0d421b0c138b0dd03e645d363.jpg", - "response": "A group of people working on a construction site.", - "id": 23051 - }, - { - "image_path": "G:\\images\\combined\\-4490-_png_jpg.rf.80311200a1e56c080b6dd4959f354b45.jpg", - "response": "In the image, there are two people standing in a large building. They are both wearing blue and white helmets, and the person on the left is pointing towards the ceiling. The person on the right is holding a blue helmet with their left hand.", - "id": 23052 - }, - { - "image_path": "G:\\images\\combined\\-4492-_png_jpg.rf.a482d8820512dc6456d880d90ba3b6e7.jpg", - "response": "A construction worker uses a circular saw to cut through a large piece of wood.", - "id": 23053 - }, - { - "image_path": "G:\\images\\combined\\-4496-_png_jpg.rf.4410f2713de6f8eb195ff4c58db85e05.jpg", - "response": "The image shows two men sleeping in a small space. They are wearing yellow hard hats and appear to be exhausted. One man has his head resting on a black bag. They are both wearing dark gray shirts and yellow reflective vests. There are several wires and a circuit board visible in the small space where they are sleeping.", - "id": 23054 - }, - { - "image_path": "G:\\images\\combined\\-4498-_png_jpg.rf.67a0333f66aae3ddf821ebe41e27a9ad.jpg", - "response": "A man in a red shirt and yellow hat is working on a construction site. He is crouching down and reaching for a steel bar that is partially submerged in water. The water is murky and dirty and the man is surrounded by large rocks.", - "id": 23055 - }, - { - "image_path": "G:\\images\\combined\\-45-_png_jpg.rf.af36c4b891bc95dc8e6f8031143c721b.jpg", - "response": "A group(266,522),(933,996) of people", - "id": 23056 - }, - { - "image_path": "G:\\images\\combined\\-450-_png_jpg.rf.7f3b9ab2c228e71a34d65d693a07836a.jpg", - "response": "A group of people working on a construction site.", - "id": 23057 - }, - { - "image_path": "G:\\images\\combined\\-4502-_png_jpg.rf.58613a28c171e86b6f32015d63ee2589.jpg", - "response": "A construction worker wearing a yellow helmet is working on a building under construction. The building is tall and made of concrete. The worker is standing on a scaffolding and is wearing a yellow shirt and grey pants. There is a blue sky in the background.", - "id": 23058 - }, - { - "image_path": "G:\\images\\combined\\-4503-_png_jpg.rf.5f55edfebc88ee587f28fa53a6acd223.jpg", - "response": "A man and woman construction workers looking at a laptop computer at a building site.", - "id": 23059 - }, - { - "image_path": "G:\\images\\combined\\-4505-_png_jpg.rf.6f186931cfd99420af1845ceee5da6ed.jpg", - "response": "The image shows a group of people standing inside a tunnel. They are all wearing yellow hard hats, with the exception of one person who is wearing a red hard hat. The people are standing on a white surface, and there is a book held by one of them. The tunnel is lined with stone, and a person on the right is pointing towards the left. The image is taken from the perspective of one of the people in the group.", - "id": 23060 - }, - { - "image_path": "G:\\images\\combined\\-4507-_png_jpg.rf.7c315d9456eca2de9283b29e4e722e70.jpg", - "response": "In the image there are three construction workers. One is in the center working on a bridge, he is wearing a red shirt and a yellow hard hat. The second worker is in the top right corner, he is wearing a yellow vest and has a tool belt around his waist. The third worker is in the bottom left corner, they are wearing a red shirt and a yellow hard hat. They are crouching down and looking at something.", - "id": 23061 - }, - { - "image_path": "G:\\images\\combined\\-4508-_png_jpg.rf.50b401e64bf208292d9f59dba595a6c5.jpg", - "response": "Three men in front of a building site wearing yellow hard hats and work clothes.", - "id": 23062 - }, - { - "image_path": "G:\\images\\combined\\-451-_png_jpg.rf.f4c47caca9820f0ffa7c5ddef56b57f8.jpg", - "response": "The image shows a group of people wearing hard hats standing in front of a construction site. There is a man pointing to something on a wall mural next to a building. The building has a blue wall with a mural painted on it. The man is wearing a pink shirt and a pink wristwatch. To the right of the man, there is a woman wearing a pink shirt and a black skirt. She is wearing a pink cap and a pair of sunglasses on her head. Behind her, there is a man wearing a red hard hat and a woman wearing a red hard hat and a white shirt. To the far right of the image, there is a man wearing a white shirt and a red hard hat. He is also wearing sunglasses. In the background, there is a tree.", - "id": 23063 - }, - { - "image_path": "G:\\images\\combined\\-4510-_png_jpg.rf.ab2cd9568d57b67a30e92b3794ccebe5.jpg", - "response": "In the image two workers are seen wearing blue uniforms and white helmets. They are standing on a high place with the cityscape in the background. The sky is blue with no clouds. There are several buildings in the city. One of the workers is seen holding a tool in his hand. Another worker is seen wearing a tool belt. They are both looking in the same direction, towards the city.", - "id": 23064 - }, - { - "image_path": "G:\\images\\combined\\-4511-_png_jpg.rf.4dbb004420a8cff765280fd96bc9be1d.jpg", - "response": "A cement truck is unloading its load in a construction site.", - "id": 23065 - }, - { - "image_path": "G:\\images\\combined\\-4512-_png_jpg.rf.92672f515a7961030b8e2bcd09e92c91.jpg", - "response": "A tunnel with a person walking down a narrow walkway.", - "id": 23066 - }, - { - "image_path": "G:\\images\\combined\\-4513-_png_jpg.rf.1b65e364fec80e1fd78f7133826a7c5b.jpg", - "response": "A construction worker in yellow helmet and blue overalls is sitting on a concrete pile. In the background, a yellow crane is lifting a steel beam. The building under construction has a steel frame and concrete walls. The sky is blue with thin clouds.", - "id": 23067 - }, - { - "image_path": "G:\\images\\combined\\-4514-_png_jpg.rf.3c931b5b391432d9149b2ed49b9887a8.jpg", - "response": "A man in a black jacket and blue jeans is hanging from a telephone pole by ropes. He is wearing safety gear, including a black jacket with yellow writing on the back, a white shirt, and black pants. He is also wearing a white hard hat, black gloves, and black shoes with a yellow stripe. The telephone pole is brown and made of wood, and there are many wires attached to it. The sky is blue with white clouds.", - "id": 23068 - }, - { - "image_path": "G:\\images\\combined\\-4515-_png_jpg.rf.bdf5e21c65d594daa8836cdef7dcb4d3.jpg", - "response": "A group of men in blue uniforms and yellow hats are working on an electricity pylon in a green field.", - "id": 23069 - }, - { - "image_path": "G:\\images\\combined\\-4516-_png_jpg.rf.6bb35185488d8f708bdfee0fc6066a0b.jpg", - "response": "In the image there are two construction workers, both are wearing grey shirts and have orange hard hats. They are both smiling at the camera. The worker on the left is slightly left of the middle and the worker in the middle is slightly right of the camera. The worker to the far right is not fully in the frame. They are building a house with red roof and white walls.", - "id": 23070 - }, - { - "image_path": "G:\\images\\combined\\-4517-_png_jpg.rf.214edca6eabb538e35ca73cb693bbf12.jpg", - "response": "A man in a black suit holding a red and white box", - "id": 23071 - }, - { - "image_path": "G:\\images\\combined\\-452-_png_jpg.rf.17e4a830e6b40de792136b73434174e6.jpg", - "response": "A black and white photo of a group of people standing in front of a large metal structure. They are all wearing hard hats and coats.", - "id": 23072 - }, - { - "image_path": "G:\\images\\combined\\-4522-_png_jpg.rf.48e24ff9ec26f919041a8a296f8b6444.jpg", - "response": "a group of men standing around each other", - "id": 23073 - }, - { - "image_path": "G:\\images\\combined\\-4524-_png_jpg.rf.26f8ec02b154000ce7a5b9a8fdbabfc9.jpg", - "response": "a group of men wearing hard hats and holding shovels", - "id": 23074 - }, - { - "image_path": "G:\\images\\combined\\-4525-_png_jpg.rf.b6905dddba0655548179bd133887699b.jpg", - "response": "In the image two men are wearing orange safety uniforms and red helmets. They are standing in front of a factory with a conveyor belt behind them. One of the men is holding a clipboard and a pen.", - "id": 23075 - }, - { - "image_path": "G:\\images\\combined\\-4526-_png_jpg.rf.8d0a60506c1af25f1efa03d595deb8e2.jpg", - "response": "A train traveling past a large cement wall.", - "id": 23076 - }, - { - "image_path": "G:\\images\\combined\\-4529-_png_jpg.rf.9d112803745ddcfb47e931708c1ed859.jpg", - "response": "A man in a red hat and white shirt is working on an antenna. He is climbing a metal pole and has a tool belt around his waist. The pole has many wires attached to it and the man is climbing up to the top of the pole. The sky is blue with a few clouds in it.", - "id": 23077 - }, - { - "image_path": "G:\\images\\combined\\-453-_png_jpg.rf.9d0265319e3279a4bbf20c5bb79d3842.jpg", - "response": " People(568,190),(642,367)(459,212),(526,377)(278,236),(344,432)(370,228),(441,377)(502,701),(573,866)(699,628),(798,807)(419,212),(474,368) working on a construction site", - "id": 23078 - }, - { - "image_path": "G:\\images\\combined\\-4530-_png_jpg.rf.61c3d80745200651dc44966074cb9911.jpg", - "response": "A group of men in blue uniforms are working on power lines.", - "id": 23079 - }, - { - "image_path": "G:\\images\\combined\\-4533-_png_jpg.rf.ee88c95229c0c4b1f17f85a68b1409d7.jpg", - "response": "The image shows a group of three workers wearing protective gear and hard hats. They are standing on a construction site that has a grid-like pattern on the floor. The workers are spread out across the site, with one on the left, one in the middle, and one on the right. They are all holding red pipes and appear to be working on a project involving pipes. The image is taken from an aerial view, looking down at the workers and the site.", - "id": 23080 - }, - { - "image_path": "G:\\images\\combined\\-4534-_png_jpg.rf.96cedb0842a919d923de1157f049c850.jpg", - "response": "A man in a yellow vest and red hard hat stands in front of a brick wall. He is holding a shovel and has a wheelbarrow in front of him. Another man is visible behind him, wearing a yellow vest and a red hard hat. They are standing on a back patio of a brick home.", - "id": 23081 - }, - { - "image_path": "G:\\images\\combined\\-4535-_png_jpg.rf.9ffa4065de880833eb113e64ef7544f2.jpg", - "response": "In the image there is a man wearing a blue shirt and a blue hat who is working on some power lines. He is wearing white gloves and is looking at the power lines. There are many power lines in the air and the man is standing next to a pole.", - "id": 23082 - }, - { - "image_path": "G:\\images\\combined\\-4536-_png_jpg.rf.fa3ce6f2ced5b4870862fb6462448c33.jpg", - "response": "A man and a woman wearing hard hats and yellow vests standing in front of a blue shipping container. The woman is looking up and the man is holding a walkie talkie.", - "id": 23083 - }, - { - "image_path": "G:\\images\\combined\\-4538-_png_jpg.rf.076c87040bd6533161ac23890de2d6f2.jpg", - "response": "An image of a ship being dismantled with several people working on it. The ship has been cut in half and is being worked on by several people. Some of the ship's parts are on the ground and being sorted. There are also several cranes working on the ship.", - "id": 23084 - }, - { - "image_path": "G:\\images\\combined\\-4541-_png_jpg.rf.20ff18c80963d97e2f8e5efb6b65029f.jpg", - "response": "In the image there are two miners standing inside a mine. They are both wearing gray and yellow uniforms and yellow helmets. One of them is holding a yellow clipboard and a pen. They are standing in front of a gray tunnel with a ladder on the left side of the image. In the foreground, there are metal bars and a metal rail.", - "id": 23085 - }, - { - "image_path": "G:\\images\\combined\\-4542-_png_jpg.rf.d7e5f78203c475da98b139b2e4df9ff5.jpg", - "response": "A group of men working on a large construction site.", - "id": 23086 - }, - { - "image_path": "G:\\images\\combined\\-4543-_png_jpg.rf.afb7a6e66a895ed3d5f2d8a7bea9f54b.jpg", - "response": "In the image there are two people working on a power line. They are both wearing blue and red jackets and blue pants. They are standing on a metal platform that is installed on the power line. The sky is white and the trees are green.", - "id": 23087 - }, - { - "image_path": "G:\\images\\combined\\-4544-_png_jpg.rf.4500ed1b8b4be717b3f884622d5937e0.jpg", - "response": "The photo shows a group of men working on a construction site. They are building a framework of iron rods and beams. Some of the men are standing on the framework, while others are holding the framework in place. They are all wearing yellow or orange shirts and blue pants. Some of them are wearing hard hats. The framework is built up in a grid pattern, with each cell filled with iron rods and beams. The background shows a pale sky and a few buildings in the distance.", - "id": 23088 - }, - { - "image_path": "G:\\images\\combined\\-4546-_png_jpg.rf.ff2747489b49a7722459caaa5fe00958.jpg", - "response": "a man in a black shirt and shorts is working on a wall with a hammer and chisel", - "id": 23089 - }, - { - "image_path": "G:\\images\\combined\\-4548-_png_jpg.rf.15fd4d3d2fb972357b18e64fe0a8874f.jpg", - "response": "A worker in a blue shirt is checking the temperature of a machine. The machine has a white top and a grey bottom. The worker is also wearing a red hat.", - "id": 23090 - }, - { - "image_path": "G:\\images\\combined\\-4549-_png_jpg.rf.493f82a79430ed383a64d20798ef2529.jpg", - "response": "A collage of two pictures, the top picture is of several construction workers on top of a building working on the side of the building that has no roof, the bottom picture is of two construction workers on a ladder working on a building under construction.", - "id": 23091 - }, - { - "image_path": "G:\\images\\combined\\-455-_png_jpg.rf.ad998732387c51e32920d47a93ab4368.jpg", - "response": "A group of workers are working on a metal structure.", - "id": 23092 - }, - { - "image_path": "G:\\images\\combined\\-4550-_png_jpg.rf.22b36363e8ccad15f10adbb73e30c105.jpg", - "response": "A worker in a factory environment.", - "id": 23093 - }, - { - "image_path": "G:\\images\\combined\\-4551-_png_jpg.rf.3ace801549532300e879eba3ac8fba70.jpg", - "response": "A man in a yellow hard hat standing in front of a building.", - "id": 23094 - }, - { - "image_path": "G:\\images\\combined\\-4552-_png_jpg.rf.2e5a0544838e71e7c394e82d21dab7cf.jpg", - "response": "An electrician repairs a power line in China.", - "id": 23095 - }, - { - "image_path": "G:\\images\\combined\\-4553-_png_jpg.rf.84137be668987e7e86b104c082852932.jpg", - "response": "A man in a grey suit and red hard hat points to something on a metal structure while two other men in red hard hats look on.", - "id": 23096 - }, - { - "image_path": "G:\\images\\combined\\-4554-_png_jpg.rf.2567a334757cdce655b04b32f0932321.jpg", - "response": "a group of men walking across a dirt field", - "id": 23097 - }, - { - "image_path": "G:\\images\\combined\\-4555-_png_jpg.rf.f173ec8e646a0853d36f301138cc01ce.jpg", - "response": "A construction worker in a yellow jacket and blue hard hat is standing on a ladder in a large trench. The worker is using a tool to dig into the ground.", - "id": 23098 - }, - { - "image_path": "G:\\images\\combined\\-4556-_png_jpg.rf.028f3ed337f5a618d0e406efbbc414a7.jpg", - "response": "A poster of workers in hard hats and orange vests working on a road at night.", - "id": 23099 - }, - { - "image_path": "G:\\images\\combined\\-4557-_png_jpg.rf.b7b4cf28815affb672a74be3d2d246e5.jpg", - "response": "a man in a black jacket and a yellow hard hat is working on a red and blue building. he is using a large pair of pliers to remove a metal bar from a structure.", - "id": 23100 - }, - { - "image_path": "G:\\images\\combined\\-4559-_png_jpg.rf.6ac2d2b28520e1be4e1605301ab4ed41.jpg", - "response": "A construction site with multiple workers wearing yellow hard hats.", - "id": 23101 - }, - { - "image_path": "G:\\images\\combined\\-456-_png_jpg.rf.587b6b6df7f0005a943febd38103b9ea.jpg", - "response": "A woman wearing a yellow hard hat and holding rolled up blueprints in a room with unfinished walls and a man in the background wearing a red hard hat.", - "id": 23102 - }, - { - "image_path": "G:\\images\\combined\\-4560-_png_jpg.rf.1c0022d2c273808aa0091bae5dae0b65.jpg", - "response": "a group of men working on a construction site", - "id": 23103 - }, - { - "image_path": "G:\\images\\combined\\-4562-_png_jpg.rf.07f2362cf73d8bf68701b2324d4f4f04.jpg", - "response": "A man in a grey jumpsuit and yellow hat is working on an electrical tower. He is holding a tool in his right hand and has his left hand on a pole. He is wearing safety gear including a yellow hat and safety shoes.", - "id": 23104 - }, - { - "image_path": "G:\\images\\combined\\-4565-_png_jpg.rf.e229af9bba369a555603cc572841d456.jpg", - "response": "A group of men standing around in a room with hard hats and safety vests on.", - "id": 23105 - }, - { - "image_path": "G:\\images\\combined\\-4567-_png_jpg.rf.3eca73bd37323cdb2d30c812271476ed.jpg", - "response": "In the image, there is a construction site with multiple workers. They are wearing hard hats and are working on a large metal structure. The workers are spread out across the site, with some of them working on the foreground and others in the background. There are also a few people standing further away from the main activity. In the background, there are a few cars parked, and a building under construction with large glass windows. The building has a metal framework, and the workers are wearing yellow and orange hard hats.", - "id": 23106 - }, - { - "image_path": "G:\\images\\combined\\-4568-_png_jpg.rf.bc39b386ac1e042a8137a007f3197555.jpg", - "response": "The three workers(427,251),(845,997)(333,237),(568,834) are working on a large rock", - "id": 23107 - }, - { - "image_path": "G:\\images\\combined\\-4569-_png_jpg.rf.28d43ebf6ae1c3292695db4d22b0450a.jpg", - "response": "A man and a woman in yellow hard hats and orange safety vests are looking at a set of plans at a construction site. The plans are held by the man and he is showing them to the woman. The plans are white and held up by the man. The woman is looking at the plans with the man.", - "id": 23108 - }, - { - "image_path": "G:\\images\\combined\\-4571-_png_jpg.rf.835dce9303939c66cdef3f36e07b5529.jpg", - "response": "A man in a grey uniform and blue helmet is cutting a tree with a chainsaw. The tree is in front of a building and the man is on a ladder.", - "id": 23109 - }, - { - "image_path": "G:\\images\\combined\\-4573-_png_jpg.rf.9cd3634626f2225747fc4603d8f2e208.jpg", - "response": "a group of people walking down a street holding open umbrellas", - "id": 23110 - }, - { - "image_path": "G:\\images\\combined\\-4574-_png_jpg.rf.e500a3a843e3a77e3511b7e6fe86ec2c.jpg", - "response": "A group of people standing around each other", - "id": 23111 - }, - { - "image_path": "G:\\images\\combined\\-4577-_png_jpg.rf.fa4ae518cb992e8829feb0b9a0f7a7f1.jpg", - "response": "A worker in a yellow helmet is suspended in the air, climbing a large pole. He is wearing a yellow vest and a safety harness. There are many power lines and a large transformer below him. He is working on an electrical tower.", - "id": 23112 - }, - { - "image_path": "G:\\images\\combined\\-4578-_png_jpg.rf.53ff14035aed3b36fca49e98e67c9155.jpg", - "response": "A large crane is lifting a large concrete tube into the air.", - "id": 23113 - }, - { - "image_path": "G:\\images\\combined\\-4580-_png_jpg.rf.5cabf823cb5ec88c98c00919b7af367a.jpg", - "response": "A group of three men in blue jumpsuits and hard hats are working on a large grey pipe. They are all crouched down and appear to be focused on the task at hand. The men are standing on a concrete surface and there is a car visible in the background. There is also a pile of sandbags to the left of the pipe.", - "id": 23114 - }, - { - "image_path": "G:\\images\\combined\\-4582-_png_jpg.rf.bc7a17509b4b414b98fbc606fff91f8a.jpg", - "response": "A construction site with multiple people working on it.", - "id": 23115 - }, - { - "image_path": "G:\\images\\combined\\-4586-_png_jpg.rf.603a907dacd06ced825762f25790b117.jpg", - "response": "A group of men working on an electricity pylon.", - "id": 23116 - }, - { - "image_path": "G:\\images\\combined\\-4588-_png_jpg.rf.b171ab3c388beccc2bfd104952d6de31.jpg", - "response": "A roofer working on a roof, installing shingles.", - "id": 23117 - }, - { - "image_path": "G:\\images\\combined\\-4590-_png_jpg.rf.40552e629eeab7a2345182e88c45507d.jpg", - "response": "A large crowd of people stand in front of a building under construction. Some of the people are on motorcycles, some are on bicycles, and others are walking. In the background, there are tall buildings and a large green construction crane.", - "id": 23118 - }, - { - "image_path": "G:\\images\\combined\\-4591-_png_jpg.rf.5cc9b82c06263e090c106d8c3efb4888.jpg", - "response": "A construction worker in a red shirt and yellow hard hat is working on a project.", - "id": 23119 - }, - { - "image_path": "G:\\images\\combined\\-4593-_png_jpg.rf.8622421a605cddb93ea2945ade66b5eb.jpg", - "response": "a group of people standing on a balcony", - "id": 23120 - }, - { - "image_path": "G:\\images\\combined\\-4594-_png_jpg.rf.391f2b9966f672f1affae9433c630393.jpg", - "response": "The image shows a group of workers in blue helmets who are repairing a piece of equipment. They are squatting down and using various tools to work on the equipment. The equipment itself is not clearly visible, but there is a large circular piece of machinery in the background. The workers are dressed in work clothes and appear to be focused on their task.", - "id": 23121 - }, - { - "image_path": "G:\\images\\combined\\-4595-_png_jpg.rf.d718c38633975b7c101658f6a35621f4.jpg", - "response": "A worker repairs a power pole in a snowstorm.", - "id": 23122 - }, - { - "image_path": "G:\\images\\combined\\-4598-_png_jpg.rf.528bee8adda0ae3f7adf64ae8e8a8ff1.jpg", - "response": "A high rise building(489,572),(996,996)", - "id": 23123 - }, - { - "image_path": "G:\\images\\combined\\-4599-_png_jpg.rf.8f0c0a16ad0105422652c066cdc69e0a.jpg", - "response": "The image features a large tower that is standing on the side of a mountain. The tower is red and yellow in color and is surrounded by a lot of trees. There are several people in the image, with some positioned at the top of the tower and others positioned at various heights along the right side of the tower. The people are wearing red and white clothing. The sky in the background is blue with white clouds.", - "id": 23124 - }, - { - "image_path": "G:\\images\\combined\\-46-_png_jpg.rf.85d0f5fed4d6e27a8e5f9d9c2fb9fd42.jpg", - "response": "In the image, a group of people are working on a train track. They are all dressed in red and yellow, and are wearing hard hats and safety gear. The people are lined up along the side of the train track, working on it. Some of them are holding tools, and it appears that they are engaged in some kind of construction or maintenance work.", - "id": 23125 - }, - { - "image_path": "G:\\images\\combined\\-460-_png_jpg.rf.ac08deab955bf631790a824f69ae92ff.jpg", - "response": " Several construction workers(243,351),(388,671)(322,390),(546,695)(437,407),(782,712)(719,380),(997,689)(2,447),(229,705) working on a construction site", - "id": 23126 - }, - { - "image_path": "G:\\images\\combined\\-4601-_png_jpg.rf.8c577517327ec0471919b3feec1bd4a7.jpg", - "response": "A group of men standing in a room that is under construction. Some of the men are wearing hard hats. One man is pointing towards the ceiling.", - "id": 23127 - }, - { - "image_path": "G:\\images\\combined\\-4602-_png_jpg.rf.32252f53d7cf8f1e1e9066664a025d45.jpg", - "response": "A group of people working on a building.", - "id": 23128 - }, - { - "image_path": "G:\\images\\combined\\-4603-_png_jpg.rf.d667363b1d7344e97226c03a8edfaf7e.jpg", - "response": "A worker is using a large tool to chip away at a large pipe.", - "id": 23129 - }, - { - "image_path": "G:\\images\\combined\\-4605-_png_jpg.rf.c86131d8de317466b7a63296c0ab6d9e.jpg", - "response": "The picture shows some workers in orange and yellow vests. They are working on a large tunnel. Some workers are on the left, and some are on the right. They are all working very hard.", - "id": 23130 - }, - { - "image_path": "G:\\images\\combined\\-4606-_png_jpg.rf.402ac311e41cb1769635c34669b93d80.jpg", - "response": "A worker(278,399),(503,997) is fixing the helmet of another worker", - "id": 23131 - }, - { - "image_path": "G:\\images\\combined\\-4609-_png_jpg.rf.ad55029ea375b4f44669692ec6acfbc4.jpg", - "response": "A construction site with a yellow helmet wearing worker standing on a staircase.", - "id": 23132 - }, - { - "image_path": "G:\\images\\combined\\-4610-_png_jpg.rf.a64e841597ce34fec26055b7cc92a2a3.jpg", - "response": "A group of people standing around a man in the mud.", - "id": 23133 - }, - { - "image_path": "G:\\images\\combined\\-4613-_png_jpg.rf.f682137eb8935d644b56e8914a5f6c11.jpg", - "response": "The picture shows some workers are busy construction. In the picture, there are four workers, all wearing white hats. The worker in the middle of the picture is wearing a green camouflage suit, with a white hat and a yellow and white checkered scarf around his neck. The worker on the left is wearing a white hat and a white shirt with blue pants. The worker in the middle is wearing a white hat and a green camouflage suit. The worker on the right is wearing a white hat and a brown camouflage suit, with a piece of white in his hand. On the right side of the picture is a blue and white \"\u5317\u4ed1\u65b0\u95fb\u7f51\" and a white \"\u5317\u4ed1\u533a\u6559\u80b2\u7f51\" logo.", - "id": 23134 - }, - { - "image_path": "G:\\images\\combined\\-4616-_png_jpg.rf.902ac07a96440de84b18b3c0fbd691a4.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing hard hats and suits. In the background, there is a large crane and a pile of steel girders.", - "id": 23135 - }, - { - "image_path": "G:\\images\\combined\\-4618-_png_jpg.rf.cf10d973a3f03b3428895f818b917f1c.jpg", - "response": "The image shows a group of workers in blue uniforms and hard hats standing outside a small building. Some of the workers are wearing orange vests. There is a small green sign hanging above the workers. A yellow and black bulldozer is parked outside the building. There are also two potted plants in the scene, one on the right side and the other one on the far right.", - "id": 23136 - }, - { - "image_path": "G:\\images\\combined\\-462-_png_jpg.rf.527957413abebc81552793c29dc0607f.jpg", - "response": "The image shows a group of people wearing hard hats standing inside a large warehouse that is under construction. The walls are made of steel bars and the ceiling is unfinished. There are several people working on the construction site, some of them are standing near the steel bars and others are working on other tasks. The warehouse is filled with steel bars and other construction materials.", - "id": 23137 - }, - { - "image_path": "G:\\images\\combined\\-4620-_png_jpg.rf.b2cc306e454620c4d3574fadd664df9d.jpg", - "response": "A group of men standing around each other.", - "id": 23138 - }, - { - "image_path": "G:\\images\\combined\\-4621-_png_jpg.rf.5ab8512b17825b08e6802f8499813538.jpg", - "response": "A warehouse with multiple people in it. There is a man sitting on the ground in front of a forklift and another man is on a forklift. There are also two other men in the warehouse, one is sitting on a pallet and the other is standing. The warehouse is filled with boxes and pallets and there is a ladder in the warehouse as well.", - "id": 23139 - }, - { - "image_path": "G:\\images\\combined\\-4622-_png_jpg.rf.1b5616c6e2e40ee17201c67372c3f795.jpg", - "response": "A man in a blue jacket and white hard hat is hanging from ropes while standing on a metal platform. He is wearing climbing gear and is in the process of climbing up a tower. The tower is made of metal and has a red and white pattern. The sky is grey and overcast.", - "id": 23140 - }, - { - "image_path": "G:\\images\\combined\\-4624-_png_jpg.rf.793c291c81878d95dfb9a4184665b85f.jpg", - "response": " Two men(334,258),(691,934)(68,270),(345,996) standing in a tunnel", - "id": 23141 - }, - { - "image_path": "G:\\images\\combined\\-4625-_png_jpg.rf.c3815aea392d86e14d67cedd90d81951.jpg", - "response": "An electrical room with three men working on a project.", - "id": 23142 - }, - { - "image_path": "G:\\images\\combined\\-4626-_png_jpg.rf.bc811fdc1992989fd2a80d5ce016801d.jpg", - "response": "A group of men standing under a walkway.", - "id": 23143 - }, - { - "image_path": "G:\\images\\combined\\-4627-_png_jpg.rf.a138a8707479ccd60408efe73f248509.jpg", - "response": "A construction worker working on a building site at night.", - "id": 23144 - }, - { - "image_path": "G:\\images\\combined\\-4628-_png_jpg.rf.3e9da5d830ed6f8e5f729c9ccab470e7.jpg", - "response": "A group of construction workers working on a construction site.", - "id": 23145 - }, - { - "image_path": "G:\\images\\combined\\-4629-_png_jpg.rf.4d54c35d5bcfaa7ad6cf8107be007601.jpg", - "response": "A construction site with a man working on it.", - "id": 23146 - }, - { - "image_path": "G:\\images\\combined\\-4630-_png_jpg.rf.8a0d1d89163c481570b9664e13cb6c3c.jpg", - "response": "A man wearing a blue hat and a green shirt is using a machine to cut a piece of concrete. Another man wearing a suit is watching the man cutting the concrete. There are two other people in the background, one behind the man cutting the concrete and one to the far right. There is a bucket on the ground to the right of the man cutting the concrete.", - "id": 23147 - }, - { - "image_path": "G:\\images\\combined\\-4632-_png_jpg.rf.b74b46f67472c2b7cb515cd98efcf0ba.jpg", - "response": "In the image two workers are building a structure. They are wearing orange helmets and working on a construction site. The sky is grey and overcast. The workers are wearing blue jackets and are focused on their task. They are building a structure made of bamboo.", - "id": 23148 - }, - { - "image_path": "G:\\images\\combined\\-4633-_png_jpg.rf.b40ec278739c7b7e9a4ad0924fde27ed.jpg", - "response": "A group of men working on a building.", - "id": 23149 - }, - { - "image_path": "G:\\images\\combined\\-4634-_png_jpg.rf.0be6a16467c2c018349ec4b209c39880.jpg", - "response": "In this image, a worker is welding a large chain on the ground. The chain is a dark shade of grey and is in various sizes, some larger, some smaller. The chain is scattered across the ground and is so large that it takes up most of the image. The worker is crouched down and is wearing a red hard hat, a dark blue jacket, and grey pants. There is also a small box on the ground near the worker.", - "id": 23150 - }, - { - "image_path": "G:\\images\\combined\\-4635-_png_jpg.rf.8ccf2ace2f6dc93d04c713e15ee891de.jpg", - "response": " Men(399,363),(655,866)(793,327),(996,996)(698,383),(833,996)(613,367),(725,842)(404,391),(530,810)(2,292),(268,986) standing in front of a pile of rubble", - "id": 23151 - }, - { - "image_path": "G:\\images\\combined\\-4639-_png_jpg.rf.b4e1780b8538d8921c610daaaa3e4787.jpg", - "response": "In the image there are three people working on fixing an electrical box. They are all dressed in blue uniforms and are wearing blue helmets. They have all sorts of tools with them and are working together to resolve the issue.", - "id": 23152 - }, - { - "image_path": "G:\\images\\combined\\-464-_png_jpg.rf.387e20e157cbfab344defe222ff0b589.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 23153 - }, - { - "image_path": "G:\\images\\combined\\-4641-_png_jpg.rf.008f2639b33e583821e306f14db13294.jpg", - "response": "A couple of workers are sitting on cinder blocks, one is wearing a red hard hat and is holding a yellow hard hat and a cup, the other worker is wearing a yellow hard hat and is holding a white hard hat and a cup. They are both wearing blue jackets and jeans.", - "id": 23154 - }, - { - "image_path": "G:\\images\\combined\\-4644-_png_jpg.rf.6636437533f7ac78fc903e340b790cf3.jpg", - "response": "A group of men in blue uniforms are working on a large metal tower. They are all climbing up the side of the tower, with the tallest man at the top. The tower is made of metal and is located next to a bridge. The sky above them is grey and overcast.", - "id": 23155 - }, - { - "image_path": "G:\\images\\combined\\-4646-_png_jpg.rf.68386e7dece40a0cb885d4d69eeb6b72.jpg", - "response": "A woman wearing a red shirt is speaking to a group of men in hard hats. They are standing in front of a large piece of machinery.", - "id": 23156 - }, - { - "image_path": "G:\\images\\combined\\-4647-_png_jpg.rf.14f86f7ef7d8860f16c4f45c2fd90b6b.jpg", - "response": "A man wearing a red hard hat and a pink shirt is working on a construction site. He is holding a large metal bar and is leaning against a wall. There is a large hole in the wall behind him. There is a stop sign in the background.", - "id": 23157 - }, - { - "image_path": "G:\\images\\combined\\-4648-_png_jpg.rf.a56323e8980f99334e741d15c16e2444.jpg", - "response": "A group of people are seen in the image who are wearing full gear and are cutting branches of trees with the help of a chainsaw. The trees are covered with snow and are situated on a hill.", - "id": 23158 - }, - { - "image_path": "G:\\images\\combined\\-4649-_png_jpg.rf.de8ce3f33e40184e503757d9235fba12.jpg", - "response": "The picture is in black and white. There are five persons in the picture. Among them, four are wearing uniforms. They are all wearing helmets. The person on the far left is wearing a helmet and a white hat, with a beard. The person in the middle on the left is wearing a hat with a badge on it. The person in the middle is wearing a hat with a badge on it and is holding a document in his hand. The person on the far right is wearing a hat with a badge on it. The person on the far right is also wearing a tie. In the background, there is a wall that has been destroyed, with only a few steel beams and a lot of wires exposed.", - "id": 23159 - }, - { - "image_path": "G:\\images\\combined\\-465-_png_jpg.rf.57f1e06f9d24489011c97f8ab0cd6047.jpg", - "response": "A large crane is lifting a wooden beam into place on a construction site.", - "id": 23160 - }, - { - "image_path": "G:\\images\\combined\\-4651-_png_jpg.rf.64d47e1cc61413f199630883de5705c1.jpg", - "response": "A group of men are huddled together, holding a large tree branch. They are all wearing hard hats.", - "id": 23161 - }, - { - "image_path": "G:\\images\\combined\\-4652-_png_jpg.rf.1ccb9a7f31f5ed0a549501462e12259f.jpg", - "response": "a construction site with three men, two of them in yellow vests, one wearing a blue helmet and holding a red safety fence, one wearing a white helmet and holding a blue safety fence, and one wearing a red helmet", - "id": 23162 - }, - { - "image_path": "G:\\images\\combined\\-4653-_png_jpg.rf.91a88f36ead969db4ed9fb3c9db19b41.jpg", - "response": "A blue and white train is coming out of a tunnel.", - "id": 23163 - }, - { - "image_path": "G:\\images\\combined\\-4654-_png_jpg.rf.969009d9c963934c8805c5b1710d5ae0.jpg", - "response": "A worker wearing a yellow hard hat is on a roof.", - "id": 23164 - }, - { - "image_path": "G:\\images\\combined\\-4655-_png_jpg.rf.dd25f6eacc789ed360a80c3884e44cbf.jpg", - "response": "A group of people standing around a construction site", - "id": 23165 - }, - { - "image_path": "G:\\images\\combined\\-4656-_png_jpg.rf.399bbd697d96fc9169d35993b1ac79ef.jpg", - "response": "A group of people standing around a pile of dirt.", - "id": 23166 - }, - { - "image_path": "G:\\images\\combined\\-4658-_png_jpg.rf.7d8f32f87d830e897b49e97f2cfd16bf.jpg", - "response": "A group of workers are pouring concrete for the bridge.", - "id": 23167 - }, - { - "image_path": "G:\\images\\combined\\-4660-_png_jpg.rf.dd0c49d96aeb64bb3ae5bf558b1ae750.jpg", - "response": "A construction site with multiple workers visible. There are three workers in the foreground, all wearing yellow hard hats. They are standing next to wheelbarrows full of gravel. In the background, there are piles of gravel and a large building under construction.", - "id": 23168 - }, - { - "image_path": "G:\\images\\combined\\-4663-_png_jpg.rf.72f5e4a241f7ead70e80be5938da019d.jpg", - "response": "The image shows three men in red hard hats standing in a wooded area. They are all dressed in blue coveralls and are looking at a barbed wire fence.", - "id": 23169 - }, - { - "image_path": "G:\\images\\combined\\-4664-_png_jpg.rf.6aa7697c098c6fdc572e5be64e47181d.jpg", - "response": "In the image, three workers are seen holding a long stick with a hook at the end of it. They are all dressed in black waterproof suits and are standing in a field. The sky is filled with dark clouds and it appears to be raining. The workers are standing on a pile of dirt.", - "id": 23170 - }, - { - "image_path": "G:\\images\\combined\\-4665-_png_jpg.rf.8d35babe13e89c030c9b80c84263c68e.jpg", - "response": "A tunnel with a bright light at the end of it.", - "id": 23171 - }, - { - "image_path": "G:\\images\\combined\\-4666-_png_jpg.rf.d6f6bea99997bfcb0d5ae9ad890c19b9.jpg", - "response": "In the image, there are three workers wearing blue uniforms and white helmets. They are on a scaffolding that is set up against a white wall. The scaffolding has several rungs and poles that the workers are standing on. The workers are in the process of building something, and there is a blue sky in the background.", - "id": 23172 - }, - { - "image_path": "G:\\images\\combined\\-4669-_png_jpg.rf.7fb7bf859c0a91b8796cd3837ab593c6.jpg", - "response": "A man wearing a black shirt and a yellow hat is sitting on the ground and working on a piece of farm equipment. He is holding a red tool in his hands and smiling. He is sitting in front of a large piece of farm equipment and a pile of dirt. The sky is blue and clear in the background.", - "id": 23173 - }, - { - "image_path": "G:\\images\\combined\\-4670-_png_jpg.rf.40a2af46cbeca45276c0ba7555a61c35.jpg", - "response": "Two men in orange work suits(586,544),(827,819) standing in a construction site.", - "id": 23174 - }, - { - "image_path": "G:\\images\\combined\\-4671-_png_jpg.rf.ceb80743692af9ea9144c9cdd82f3d35.jpg", - "response": "A group of people walking in front of a tall building under construction. The people are wearing hard hats and some have backpacks. There is a large banner advertising a construction safety event.", - "id": 23175 - }, - { - "image_path": "G:\\images\\combined\\-4673-_png_jpg.rf.d2af3f244fbbd2ca1d7a25c373bdf34f.jpg", - "response": "The image shows a group of five men standing on a dirt road. The man on the far left is wearing a grey shirt and glasses. The man in the middle, who is wearing a red helmet, is wearing a white shirt and black pants. The man second from the right, who is wearing a blue shirt, is pointing towards something off camera. The man in the far right, who is wearing a white shirt, is also pointing towards something. There are two cars visible in the image, one on the left and one on the right. In the background, there are two buildings, one made of brick and one made of stone. There is also a car parked in front of the brick building.", - "id": 23176 - }, - { - "image_path": "G:\\images\\combined\\-4675-_png_jpg.rf.7497298100a9e1852c8c1923faa26d0b.jpg", - "response": "Some workers in a factory working on metal beams and structures.", - "id": 23177 - }, - { - "image_path": "G:\\images\\combined\\-4678-_png_jpg.rf.9aa1c21bc8a151fe55d703961ad8db29.jpg", - "response": "A construction worker in a yellow hard hat and grey work suit, is building a large structure.", - "id": 23178 - }, - { - "image_path": "G:\\images\\combined\\-468-_png_jpg.rf.3934cbbf84e5bcd72c244ec418be3192.jpg", - "response": "A man in a blue uniform and yellow hat is working on an electrical device. He is standing on a ladder and has a tool in his hand. He is wearing white gloves. There are several wires and a tower in the background.", - "id": 23179 - }, - { - "image_path": "G:\\images\\combined\\-4681-_png_jpg.rf.6e7c09f984a09a21365f346e6e3f8b51.jpg", - "response": "A construction site with two men standing in front of it.", - "id": 23180 - }, - { - "image_path": "G:\\images\\combined\\-4683-_png_jpg.rf.01c6c039e5d49987937f3c2ad15f0d90.jpg", - "response": "In the image there is a group of people standing around a man who is laying on the ground. The man is wearing a black jacket and grey shirt and has a white hat. There is a yellow hard hat on the ground next to the man. In front of the group of people there is a white arrow pointing down.", - "id": 23181 - }, - { - "image_path": "G:\\images\\combined\\-4686-_png_jpg.rf.638ec76177ccf92eed2417f30b0d7c57.jpg", - "response": "A man in a white shirt and black pants is standing in the street. He is wearing a yellow hat and has a white shirt. He is looking down at something on the ground. To the right of the man, there are three men wearing red hats. They are standing in the street and looking at the man in the white shirt. In front of them, there are two men sitting on the ground. They are wearing blue hard hats and are working on something. To the left of the men, there are two bags on the ground.", - "id": 23182 - }, - { - "image_path": "G:\\images\\combined\\-4687-_png_jpg.rf.f55dda57623160925a18999150242e5f.jpg", - "response": "A man is climbing a ladder to the top of a power pole. The pole is surrounded by a few trees and there is a fire burning at the bottom of the pole. The sky is overcast and there is a church in the background.", - "id": 23183 - }, - { - "image_path": "G:\\images\\combined\\-4689-_png_jpg.rf.763a4f73cf203e787e992b664f2fef6d.jpg", - "response": "Men(339,455),(407,592)(698,571),(844,656) working on a building site", - "id": 23184 - }, - { - "image_path": "G:\\images\\combined\\-469-_png_jpg.rf.5070cd927365bc1efbed5125653c5912.jpg", - "response": "A bridge is being built with workers in blue uniforms and white helmets working on it.", - "id": 23185 - }, - { - "image_path": "G:\\images\\combined\\-4690-_png_jpg.rf.3ae9ad16e0baa41dcfea7918a29f8e71.jpg", - "response": "A group of people standing around a construction site.", - "id": 23186 - }, - { - "image_path": "G:\\images\\combined\\-4691-_png_jpg.rf.4fba9896ecddd5dcad05137a16025776.jpg", - "response": "In the image, two workers are wearing orange and yellow vests and yellow helmets. They are working on a hillside with a large rock in the foreground. The rock is gray and has a chain attached to it. The workers are pulling on the chain. In the background, there is a road and a river. The river is green and the sky is blue. There is also a bridge in the distance. In the foreground, there are houses and a car.", - "id": 23187 - }, - { - "image_path": "G:\\images\\combined\\-4692-_png_jpg.rf.859e36b0bed819528be8cb3693e9d609.jpg", - "response": "The image shows a group of workers in red uniforms and yellow helmets sitting on a high-voltage wire. They seem to be repairing the wire, which is hanging over a large area of white ground. The sky above them is a mix of blue and white, with some clouds. The workers are all focused on their task, and one of them is holding a tool.", - "id": 23188 - }, - { - "image_path": "G:\\images\\combined\\-4693-_png_jpg.rf.810044564432d6e81757c4eea04fc690.jpg", - "response": "A group of men wearing hard hats are walking up a snowy hill carrying large metal cables. They are wearing orange hard hats and some of them are carrying the metal cables on their shoulders. The snow is white and there is a forest in the background.", - "id": 23189 - }, - { - "image_path": "G:\\images\\combined\\-4696-_png_jpg.rf.ce11017d83fc82b29646518775a00108.jpg", - "response": "A man wearing a white hat and safety goggles is using a grinding wheel to cut through a metal rod. The man is wearing a white shirt and grey pants. The metal rod is being cut in half and sparks are flying off of it. There is another man in the background who is not focused on in the picture.", - "id": 23190 - }, - { - "image_path": "G:\\images\\combined\\-4699-_png_jpg.rf.5a173048abcc0ef39f0dacdb0fbd8881.jpg", - "response": "The image shows a group of firefighters in a tunnel. They are wearing yellow helmets and grey uniforms. Some of them are holding hoses while one of them is using a tool to break the wall. The tunnel is filled with smoke and there are charred debris on the floor. The firefighters are standing in a line, with the ones at the front using the tools to break the wall. The wall they are breaking through is made of concrete.", - "id": 23191 - }, - { - "image_path": "G:\\images\\combined\\-4701-_png_jpg.rf.8f3f3ae4f3b5aefae57ee56055981bb3.jpg", - "response": "A rescue team of six people and three dogs search through rubble.", - "id": 23192 - }, - { - "image_path": "G:\\images\\combined\\-4702-_png_jpg.rf.ea2c2749cd75d2c641d53b3dea376219.jpg", - "response": "The image shows two workers in bright orange vests, one climbing up a large concrete pole to work on the power lines. The sky is blue with white clouds. There is a red and white banner on the pole with black and red writing. In the background, there are two more workers, one on the left and one on the right. They are both wearing blue hard hats. In the distance, there is a building with a red and white wall and the words \"\"\u4e2d\u56fd\u5927\u5510\"\" written on it.", - "id": 23193 - }, - { - "image_path": "G:\\images\\combined\\-4704-_png_jpg.rf.b26c45e4fca72debe3f119c39c664bf3.jpg", - "response": "A man in a blue uniform is on a yellow ladder, working on an electrical box. Another man in a blue uniform is helping him. They are both wearing yellow hard hats. In the background, there is a building.", - "id": 23194 - }, - { - "image_path": "G:\\images\\combined\\-4707-_png_jpg.rf.9ebf4eb391322d415a0157a9cd27bbb9.jpg", - "response": "A group of men in yellow work clothes are working on power lines. They are in white buckets that are lifted up to the power lines by a large white crane. They are working on a power pole with many wires attached to it.", - "id": 23195 - }, - { - "image_path": "G:\\images\\combined\\-4708-_png_jpg.rf.682df6d73937bb7b1ea96ba335c0623e.jpg", - "response": "a group of men walking across a walk way", - "id": 23196 - }, - { - "image_path": "G:\\images\\combined\\-4709-_png_jpg.rf.e0e6551ab5a3a79547532a600f421bfe.jpg", - "response": "A man in a white hard hat looking at blueprints on a roof.", - "id": 23197 - }, - { - "image_path": "G:\\images\\combined\\-471-_png_jpg.rf.ce755f118887e516733e6593bcf72b9e.jpg", - "response": "A group of five men wearing green coveralls and yellow hard hats are walking away from the camera. They are all holding a lunch pail. In the background there is a large construction site with a yellow crane and a blue and yellow building. To the right of the men there is a large concrete pillar with the number 24 on it.", - "id": 23198 - }, - { - "image_path": "G:\\images\\combined\\-4710-_png_jpg.rf.02fea06225f5b2461a48fbe882a9924b.jpg", - "response": "A worker in a blue shirt and hard hat is working on an electrical grid.", - "id": 23199 - }, - { - "image_path": "G:\\images\\combined\\-4711-_png_jpg.rf.333f31ca5262af31680aec2d12cc38f8.jpg", - "response": "a group of people walking across a unfinished road", - "id": 23200 - }, - { - "image_path": "G:\\images\\combined\\-4714-_png_jpg.rf.15cacabf031cb07f6b1b1037f5d98379.jpg", - "response": "A construction worker working on a building site.", - "id": 23201 - }, - { - "image_path": "G:\\images\\combined\\-4715-_png_jpg.rf.ca605f7b997a5a2a4f1985e3e3c507fa.jpg", - "response": "The image shows a large construction site with many workers present. They are working on a large grid of metal rebar, which is laid out in a large square pattern. The workers are positioned at various points on the grid, with some working near the top and others near the bottom. Some of the workers are standing, while others are crouching or kneeling. They are all wearing hard hats and some are also wearing yellow or blue jackets.", - "id": 23202 - }, - { - "image_path": "G:\\images\\combined\\-4716-_png_jpg.rf.efbcbb0d45f88949df28870a51d3b39f.jpg", - "response": "In the image there are two construction workers wearing yellow and white hard hats and yellow reflective vests. They are working on a building site that is dirty and dusty. One worker is in the foreground and is holding a square piece of concrete. They are looking at it and appear to be inspecting it. In the background there is another worker wearing a white helmet and a yellow vest. They are further away and are not in focus. There is a yellow hard hat floating in the top right corner of the image.", - "id": 23203 - }, - { - "image_path": "G:\\images\\combined\\-4717-_png_jpg.rf.76c7c6ab5bf00d2e5c80552c549169b3.jpg", - "response": "Man and woman in hard hats standing in a building site", - "id": 23204 - }, - { - "image_path": "G:\\images\\combined\\-4718-_png_jpg.rf.96c7c7895cf634fb1d02a79c0765426f.jpg", - "response": "An electrical worker is hanging from wires and climbing a utility pole.", - "id": 23205 - }, - { - "image_path": "G:\\images\\combined\\-4719-_png_jpg.rf.811f67e92e79a819db575ecdfa32dc9d.jpg", - "response": "A construction site with several people working on it.", - "id": 23206 - }, - { - "image_path": "G:\\images\\combined\\-472-_png_jpg.rf.edb20197ab0fdbca4d6c6886d55d99cd.jpg", - "response": "A group of four men in construction gear are looking at a blueprint. They are all wearing different colored hard hats. One man is pointing to a blueprint that is posted on a pillar.", - "id": 23207 - }, - { - "image_path": "G:\\images\\combined\\-4720-_png_jpg.rf.42caef5fd7710623b622f21d1f234631.jpg", - "response": "In the image there are two men standing next to each other wearing hard hats. They are both holding a blueprint and looking at it. They are standing in front of a large building that has scaffolding in the background.", - "id": 23208 - }, - { - "image_path": "G:\\images\\combined\\-4721-_png_jpg.rf.37996428e2ab3368563bb04533074320.jpg", - "response": "In the image there are two workers operating a large spool of black cable. The cable is on a wooden spool that is larger than the workers. They are operating the spool in a grass field with a tree in the background. There is a second worker further back in the field. The sky is overcast and there is a grey cloud in the sky. There is a black and white sign in the bottom right corner that says \u4e2d\u534e\u94c1\u9053\u7f51 and \u94c1\u8840\u6f2b\u753b", - "id": 23209 - }, - { - "image_path": "G:\\images\\combined\\-4722-_png_jpg.rf.88b44832875a6bed6ddce9a9d636d7ec.jpg", - "response": "A man in a blue jacket and white hard hat is adjusting the ear protection on another man who is wearing a yellow hard hat and a camo jacket. They are standing in front of a construction site with wooden beams and green fabric.", - "id": 23210 - }, - { - "image_path": "G:\\images\\combined\\-4724-_png_jpg.rf.c427b85bde4fdf6876b24417af113c6a.jpg", - "response": "A man in a hard hat and overalls is on a ladder, working on a sign.", - "id": 23211 - }, - { - "image_path": "G:\\images\\combined\\-4725-_png_jpg.rf.40d5a8711ce862d71523b77e69cddefe.jpg", - "response": "A man in a green shirt and black pants is sticking a paper on a brick wall. Another man in a white shirt and red hat is standing next to him. They are both wearing uniforms.", - "id": 23212 - }, - { - "image_path": "G:\\images\\combined\\-4726-_png_jpg.rf.7e9a27980aaffe13df1ea58b071c4d7a.jpg", - "response": "A group of men in white shirts and orange hard hats stand in a circle. Some of them are holding microphones. In the background is a mountain.", - "id": 23213 - }, - { - "image_path": "G:\\images\\combined\\-4727-_png_jpg.rf.556e37fceb16c678965103acc72592d5.jpg", - "response": "A group of construction workers working on a building site.", - "id": 23214 - }, - { - "image_path": "G:\\images\\combined\\-4728-_png_jpg.rf.b6c49c8e31783f2c131545f1a6676af2.jpg", - "response": "A group of people wearing yellow vests and hard hats are standing on a construction site. Some of them are holding cellphones and a walkie talkie. In the background, there are buildings under construction and a blue balloon floating in the air.", - "id": 23215 - }, - { - "image_path": "G:\\images\\combined\\-4730-_png_jpg.rf.ad7cecfc0ef1e3d7402dd900acbf6903.jpg", - "response": "A group of construction workers(594,254),(996,997)(547,453),(910,998)(4,234),(88,400)(342,433),(440,598)(457,429),(539,570)(77,208),(214,418) working on a scaffolding.", - "id": 23216 - }, - { - "image_path": "G:\\images\\combined\\-4733-_png_jpg.rf.b355bb4f85883ad8fdef82a980d27df7.jpg", - "response": "a group of men working on an oil rig", - "id": 23217 - }, - { - "image_path": "G:\\images\\combined\\-4735-_png_jpg.rf.cfe0b46ec4e3aabdc739aa395375b913.jpg", - "response": "A man in a hard hat and orange vest is welding a large metal structure.", - "id": 23218 - }, - { - "image_path": "G:\\images\\combined\\-4736-_png_jpg.rf.b7382427c48db83f3bbea18e47ed9804.jpg", - "response": "A man in a yellow hard hat is working on solar panels.", - "id": 23219 - }, - { - "image_path": "G:\\images\\combined\\-4738-_png_jpg.rf.0b2b49b5d9ee76ab595873aef5a862be.jpg", - "response": "A group of three men working on a construction site.", - "id": 23220 - }, - { - "image_path": "G:\\images\\combined\\-4739-_png_jpg.rf.0242f375c3d52d4b473d0de8d7f10d3f.jpg", - "response": "A man wearing a yellow hard hat and safety glasses is measuring a wooden structure. He is kneeling on the ground and holding a measuring tape. There is a wooden roof structure behind him. Another person's leg is visible on the right side of the image.", - "id": 23221 - }, - { - "image_path": "G:\\images\\combined\\-474-_png_jpg.rf.1b1aa2f9c27d7a9408d2ae79321fd079.jpg", - "response": "In the image there is a person wearing an orange jumpsuit and a yellow hard hat standing in front of a wall of steel beams. The person has one hand on their hip and the other hand is raised in the air, as if they are giving a speech. They are looking up at the wall of steel. The wall of steel is black and has multiple rows of steel beams, some of which are painted different colors like red, blue, and green.", - "id": 23222 - }, - { - "image_path": "G:\\images\\combined\\-4740-_png_jpg.rf.e8f9cb3fddbcf27045e786d231101145.jpg", - "response": "A group of people standing around a train track.", - "id": 23223 - }, - { - "image_path": "G:\\images\\combined\\-4741-_png_jpg.rf.22d0ae84c984cfc1e580737aabba37cc.jpg", - "response": "A construction site with heavy machinery and workers.", - "id": 23224 - }, - { - "image_path": "G:\\images\\combined\\-4742-_png_jpg.rf.4c41e9069f4f863b2abb0a7f408eeccd.jpg", - "response": "A train track going across a bridge with two workers in orange vests standing on it.", - "id": 23225 - }, - { - "image_path": "G:\\images\\combined\\-4743-_png_jpg.rf.58d259724543509d2225d1794297c98a.jpg", - "response": "A group of workers working on a construction site.", - "id": 23226 - }, - { - "image_path": "G:\\images\\combined\\-4744-_png_jpg.rf.f1b1173d891c8fac55971e2765b34e1d.jpg", - "response": "A group of workers in orange vests and helmets are standing in a pit filled with water. They are holding shovels and working together to remove the water.", - "id": 23227 - }, - { - "image_path": "G:\\images\\combined\\-4745-_png_jpg.rf.ce1c246bfcd53ec40521059fb21b0b6b.jpg", - "response": "a group of people(510,435),(628,716)(413,458),(501,724)(635,407),(744,715)(749,409),(857,708)(265,456),(358,744)(861,415),(942,709)(140,450),(245,761)(3,487),(83,719) standing on a construction site", - "id": 23228 - }, - { - "image_path": "G:\\images\\combined\\-4748-_png_jpg.rf.ef584bcc43980c83cf399a9c018dff78.jpg", - "response": "A man wearing a yellow vest and orange hard hat is standing in front of a building under construction. The man has his arms crossed in front of him.", - "id": 23229 - }, - { - "image_path": "G:\\images\\combined\\-475-_png_jpg.rf.dc300a16201bca0b7710f605e1a311d0.jpg", - "response": "a group of people standing around a construction site", - "id": 23230 - }, - { - "image_path": "G:\\images\\combined\\-4750-_png_jpg.rf.ab18ae265bb58b1fbc858d46457e3598.jpg", - "response": "A group of men in suits walking in front of a building under construction", - "id": 23231 - }, - { - "image_path": "G:\\images\\combined\\-4751-_png_jpg.rf.405b01668dae3ba7be597bd846e5d769.jpg", - "response": "A man in a red helmet standing in front of a large cement mixer.", - "id": 23232 - }, - { - "image_path": "G:\\images\\combined\\-4754-_png_jpg.rf.b5c1484c2a3e3baefa3955ea3bc80824.jpg", - "response": "Men(112,356),(370,997)(423,383),(590,997)(257,358),(405,938) standing under a metal structure(11,3),(996,378)", - "id": 23233 - }, - { - "image_path": "G:\\images\\combined\\-4755-_png_jpg.rf.f3b004f7b5330df9028aeaad52f68077.jpg", - "response": "A picture of two men in orange and yellow work gear, kneeling down in a field of yellow flowers. They are working on a power line.", - "id": 23234 - }, - { - "image_path": "G:\\images\\combined\\-4757-_png_jpg.rf.7970001da96c356984090736f0f6ee37.jpg", - "response": "A man in a yellow hard hat is holding a blueprint.", - "id": 23235 - }, - { - "image_path": "G:\\images\\combined\\-4758-_png_jpg.rf.edb8e9822f403a800fb39245a4f8adc1.jpg", - "response": "A man in a white shirt and blue hard hat is holding a yellow level against a wooden beam. He is standing on a ladder.", - "id": 23236 - }, - { - "image_path": "G:\\images\\combined\\-4759-_png_jpg.rf.78d1b8a4e1678ada314b74a2cd6264fa.jpg", - "response": "In the image two workers wearing red helmets are using a level. One of the workers is holding a white tool with a black handle and a pink balloon above them. They are both looking into the distance. One of them is also wearing a grey top. They are standing on bare ground with a white building in the background.", - "id": 23237 - }, - { - "image_path": "G:\\images\\combined\\-476-_png_jpg.rf.7956c0143cf15f57eafd0b32ab4f4776.jpg", - "response": "A man in a white hard hat and orange high visibility jacket standing in front of a building site.", - "id": 23238 - }, - { - "image_path": "G:\\images\\combined\\-4760-_png_jpg.rf.fd68f817acf28e865040e0ddd969cc62.jpg", - "response": "a group of people walking on a sidewalk", - "id": 23239 - }, - { - "image_path": "G:\\images\\combined\\-4762-_png_jpg.rf.5d5ae5b5e6d7e036e7b302b51bc6b7de.jpg", - "response": " Men(118,275),(320,712)(297,311),(488,675)(578,385),(683,549)(239,335),(333,607)(728,373),(793,488) in blue hard hats(373,311),(447,359)(164,274),(249,336)(302,333),(361,375) standing in a river(3,352),(996,998) with fishing nets(367,513),(953,996)", - "id": 23240 - }, - { - "image_path": "G:\\images\\combined\\-4763-_png_jpg.rf.7760b6366e3314c658179b0500b865ec.jpg", - "response": "A group of five workers standing in front of a turnstile wearing orange vests and yellow hard hats. The turnstiles are located in the middle of a construction site.", - "id": 23241 - }, - { - "image_path": "G:\\images\\combined\\-4766-_png_jpg.rf.e0bcbf251e8a6972691034cb20680089.jpg", - "response": "A worker in a factory is using a blowtorch to cut through a metal rod, causing sparks to fly everywhere. The sparks are visible in the foreground and the background, and the worker is wearing safety gear including a helmet and safety glasses.", - "id": 23242 - }, - { - "image_path": "G:\\images\\combined\\-4767-_png_jpg.rf.1ed23895443fddce2f62ff498cdac735.jpg", - "response": "A group of men working on an electrical pole in a field.", - "id": 23243 - }, - { - "image_path": "G:\\images\\combined\\-4768-_png_jpg.rf.449186d072f3c3f7dcab1d21d2868078.jpg", - "response": "The image shows a large tunnel that is under construction. The tunnel is circular and has a concrete construction. In the tunnel, there is a yellow vehicle with a large arm that is spraying concrete. The tunnel is dark and has a ladder in the center. On the right side of the image, there is a worker wearing a red helmet and a yellow vest with black text. The text on the vest is not fully legible, but it says \"\u5317\u8f66\u533b\u9662\" and \"\u5361\u8f66\u53f8\u673a\".", - "id": 23244 - }, - { - "image_path": "G:\\images\\combined\\-4769-_png_jpg.rf.b6037e09470a9693b277f9e46dd2d434.jpg", - "response": "A construction crew working on a building site on a mountain side.", - "id": 23245 - }, - { - "image_path": "G:\\images\\combined\\-477-_png_jpg.rf.860333276245a18722a54e2a5ecaef1a.jpg", - "response": "In the image, there is a worker wearing a yellow and orange vest and a blue helmet. They are holding a large metal object in their hands. The worker are inside a factory and the factory has a high ceiling. The worker is in the foreground and behind them, there's another person in the background. There are also some machines in the factory.", - "id": 23246 - }, - { - "image_path": "G:\\images\\combined\\-4774-_png_jpg.rf.bd0146ed4c3e24366b721b4ff85f37de.jpg", - "response": "The image shows a city street scene with a man working on power lines. The man is standing on a yellow scaffolding, repairing one of the power lines. He is wearing a green jacket and hat. There are many power lines in the air, coming from a pole to his left. In the distance, there is a building with a red roof. To the right of the man, there is a traffic light. The sky is overcast.", - "id": 23247 - }, - { - "image_path": "G:\\images\\combined\\-4775-_png_jpg.rf.242f6d407fe483852708addf0536f3e5.jpg", - "response": "This image shows a group of people huddled around a concrete block. They are all wearing hard hats and are looking at their cell phones. The block appears to be some sort of utility box.", - "id": 23248 - }, - { - "image_path": "G:\\images\\combined\\-4776-_png_jpg.rf.8b95c9993bf2e337f4492393e6ba88a9.jpg", - "response": "In the image there are multiple workers at a construction site. They are working on a building that is in the middle of construction. The building has scaffolding around it and the workers are working on different parts of the scaffolding. Some of the workers are standing on the scaffolding while others are working on it. There is also a large smokestack in the background billowing smoke.", - "id": 23249 - }, - { - "image_path": "G:\\images\\combined\\-4778-_png_jpg.rf.98deebd3c053d14ea4ce3d651777226a.jpg", - "response": "a street with a car on it", - "id": 23250 - }, - { - "image_path": "G:\\images\\combined\\-4779-_png_jpg.rf.dee31befb32b68366dae2b97e93ebe1d.jpg", - "response": "A man in orange is working on a pole in the snow.", - "id": 23251 - }, - { - "image_path": "G:\\images\\combined\\-4780-_png_jpg.rf.2c7e5065966a564f6fb5aaf5adc5f80b.jpg", - "response": "The image shows a group of people working on a construction site. They are all wearing yellow hard hats and some are wearing black uniforms. The ground is wet and there are several hoses visible. Some of the workers are standing on a large concrete slab that has been poured. There is a blue hose on the ground and a yellow hose near some of the workers. A person is using a long tool to level the wet concrete.", - "id": 23252 - }, - { - "image_path": "G:\\images\\combined\\-4782-_png_jpg.rf.993869d0a6fd6ee012cee1f2e4a47ae7.jpg", - "response": "The image shows two workers in hard hats and brown uniforms, one white and one yellow, working together to fix a pipe. They are crouched down and one is holding a tool while the other has his arms raised and appears to be directing the other worker. The wall they are working on is grey and white and there is a window to the right. The workers are in front of a concrete support beam and there is a sign in the bottom right corner that says \"caution, live power\".", - "id": 23253 - }, - { - "image_path": "G:\\images\\combined\\-4784-_png_jpg.rf.c23d996cabdc5d87acc2fe599c810d21.jpg", - "response": "A group of workers standing around a large pile of steel beams at a construction site.", - "id": 23254 - }, - { - "image_path": "G:\\images\\combined\\-4785-_png_jpg.rf.75bdce43e7b05dae711e8bc6c3fd9280.jpg", - "response": "A man wearing a hard hat standing next to a wire fence.", - "id": 23255 - }, - { - "image_path": "G:\\images\\combined\\-4787-_png_jpg.rf.d4c2177e5d41f53e90e0359fb39c64ee.jpg", - "response": "a group of people standing in front of a bus", - "id": 23256 - }, - { - "image_path": "G:\\images\\combined\\-4788-_png_jpg.rf.be0250d47c7fa8c84904d11f3e2b8cf5.jpg", - "response": "A man wearing a yellow hard hat is welding two metal bars together. He is wearing a blue shirt and jeans and has a yellow hard hat on. There is a white hard hat hanging behind him and another yellow one hanging above him. He is sitting on a pile of bricks and there is a lot of smoke coming from the welding.", - "id": 23257 - }, - { - "image_path": "G:\\images\\combined\\-479-_png_jpg.rf.c54dd9445866db61d931639f12a97aae.jpg", - "response": "A collage of three photos of a man wearing a hard hat and a blue shirt. He is standing in front of a large piece of machinery. In one photo he is looking at the camera, in another he is looking to the side, and in the third photo he is looking at a red light.", - "id": 23258 - }, - { - "image_path": "G:\\images\\combined\\-4790-_png_jpg.rf.a32a82888abb85e50e931362cb555d20.jpg", - "response": "Men working on a ship in the water.", - "id": 23259 - }, - { - "image_path": "G:\\images\\combined\\-4794-_png_jpg.rf.ab99302ab5321d00321696f34c2fe9dc.jpg", - "response": "A diagram of the accident shows that the tunnel entrance is about 800 meters away from the site of the cave-in, and that the cave-in occurred about 40 to 50 meters into the tunnel.", - "id": 23260 - }, - { - "image_path": "G:\\images\\combined\\-4796-_png_jpg.rf.f31f5bb173d39a8f51429226358639eb.jpg", - "response": "In the image there is a group of people working inside a\u96a7\u9053. The tunnel is white and has a stone ceiling. The floor is also covered with stone. In the foreground on the left side there is a big pile of grey rock and in the foreground on the right side there is a concrete slab with the letters CR on it. There are also two workers wearing yellow helmets and one of them is carrying a yellow backpack.", - "id": 23261 - }, - { - "image_path": "G:\\images\\combined\\-4798-_png_jpg.rf.145473a83b865f1a3ee61e10e9d050a9.jpg", - "response": "A group of workers are standing in front of a large object. They are all wearing hard hats and some are wearing yellow and some are wearing gray. The one on the far left is wearing a blue shirt and has his hands in his pockets. The one to his right is wearing a yellow hard hat and is smiling. The one in the middle is wearing a gray hard hat and is smiling. The one to the right of the middle person is wearing a yellow hard hat and has his hand on the shoulder of the person in front of him. The person in front is wearing a gray hard hat and is smiling. The two people on the far right are wearing gray hard hats and are also smiling.", - "id": 23262 - }, - { - "image_path": "G:\\images\\combined\\-4799-_png_jpg.rf.01b08dc9ecb9defe294612b2e6f3b2b7.jpg", - "response": "In the image there are two men working on a construction site. One man is wearing a blue shirt and is digging in the ground with a shovel. Another man is wearing a yellow helmet and is holding a shovel. They are both wearing white helmets. There is a bicycle parked on the right side of the image. In front of the men, there is a pile of dirt. Behind the men, there is a white and blue building.", - "id": 23263 - }, - { - "image_path": "G:\\images\\combined\\-480-_png_jpg.rf.41e021829f0fd379f3398da3d6c959e0.jpg", - "response": "The photo is of workers inside a cave. There are four workers in the photo, all working on different tasks. They are all wearing hard hats and orange vests. The cave is filled with dirt and there are two ladders in the photo. One is on the left side of the photo and the other is on the right side. There is also a cart in the photo, it is on the right side of the photo and it has the words \"Caution, wet floor\" written on it.", - "id": 23264 - }, - { - "image_path": "G:\\images\\combined\\-4800-_png_jpg.rf.b207c2d1bbbd7738207ec7f6c7fd6577.jpg", - "response": " rescue workers(407,1),(577,187)(372,129),(578,416)(603,243),(742,455)(191,346),(414,658) in a cave", - "id": 23265 - }, - { - "image_path": "G:\\images\\combined\\-4802-_png_jpg.rf.3188fe2223541b1d260101e981ce0a78.jpg", - "response": "A group of rescue workers in orange jumpsuits and white hard hats are working together to lift a large rock off of a man who is trapped beneath it. The man is on a stretcher and is visibly struggling to move. The rescue workers are using a large red tool to lift the rock and free the man.", - "id": 23266 - }, - { - "image_path": "G:\\images\\combined\\-4803-_png_jpg.rf.5522950103c1925fbcfd8ba2549c9e03.jpg", - "response": "A group of men working on a construction site, pouring concrete for the foundation of a building.", - "id": 23267 - }, - { - "image_path": "G:\\images\\combined\\-4804-_png_jpg.rf.2e482a7d3db9b83677bff93c8af38c77.jpg", - "response": "A worker in a white uniform and blue hat is seen in the foreground, kneeling down and holding a large piece of brown material with both hands. The material appears to be a tarp or some other kind of protective covering. The worker is located in a barren, hilly area with a sky background. There are several large metal towers in the background, and a white truck is parked to the left of the scene. Another person can be seen in the far distance, wearing a white hat and carrying a backpack.", - "id": 23268 - }, - { - "image_path": "G:\\images\\combined\\-4805-_png_jpg.rf.072cc8c0fc815f50b515546ebbdeefa0.jpg", - "response": "The image shows a group of men standing in front of a building under construction. They are all wearing hard hats, and some of them are wearing suits. In the background, there is a large banner with Chinese characters written on it. There is also a clock in the image, but it is in a different location and is not focused on.", - "id": 23269 - }, - { - "image_path": "G:\\images\\combined\\-4807-_png_jpg.rf.37657b54651410078c052f1c431df85e.jpg", - "response": "The photo shows a group of people standing in a large hole in the ground. They are dressed in white and blue clothing and are wearing hard hats. In front of them is a yellow and black bulldozer. To the right of the people, a white wall is being probed by a long object. The people are standing under a bridge. The photo is taken from the perspective of someone looking into the hole.", - "id": 23270 - }, - { - "image_path": "G:\\images\\combined\\-481-_png_jpg.rf.e262d2557da54da6a3431d02ad850ed1.jpg", - "response": "Four construction workers in high visibility clothing and hard hats are walking across a construction site. In the background there are two piles of dirt, a bulldozer and two tractors.", - "id": 23271 - }, - { - "image_path": "G:\\images\\combined\\-4810-_png_jpg.rf.6bec67925a00114d20be5095cbe5ea65.jpg", - "response": "a couple of men working on a construction site", - "id": 23272 - }, - { - "image_path": "G:\\images\\combined\\-4811-_png_jpg.rf.527eefb08e30a25b3be58dd7d038d861.jpg", - "response": "A group of workers working on a construction site.", - "id": 23273 - }, - { - "image_path": "G:\\images\\combined\\-4813-_png_jpg.rf.6c56809e635768c42c7ff393f78450c0.jpg", - "response": "A man and a woman in hard hats and blue coveralls standing next to a large piece of construction equipment. The woman is writing on a clipboard.", - "id": 23274 - }, - { - "image_path": "G:\\images\\combined\\-4815-_png_jpg.rf.3fbf8d4dee7ad6662934648d7f7fb7de.jpg", - "response": "A man in a green uniform is holding a red fire extinguisher. The extinguisher is pointed at a pile of rubble. The man is standing in front of a doorway. There are two other men standing to the left of the doorway. They are wearing hard hats. A third man is standing to the right of the doorway. He is also wearing a hard hat. A fourth man is standing to the left of the doorway. He is wearing a suit and a hard hat. A fifth man is standing to the right of the doorway. He is wearing a hard hat.", - "id": 23275 - }, - { - "image_path": "G:\\images\\combined\\-4816-_png_jpg.rf.cc7802368d60d3bf3bf48457319ae447.jpg", - "response": "A building(558,516),(997,997) is falling down", - "id": 23276 - }, - { - "image_path": "G:\\images\\combined\\-4817-_png_jpg.rf.3d17f002d0866cbc18756f03b4fe6417.jpg", - "response": "A group of people working in a dark tunnel.", - "id": 23277 - }, - { - "image_path": "G:\\images\\combined\\-4818-_png_jpg.rf.f761db01e43e0e350f607a1da90f3eb4.jpg", - "response": "A power line tower with three men working on it.", - "id": 23278 - }, - { - "image_path": "G:\\images\\combined\\-4819-_png_jpg.rf.9023023077bb4aaf6edcc2d3e1b47dbe.jpg", - "response": "The image shows a worker in a hard hat and grey winter jacket and blue gloves, working on a piece of equipment in a room. The equipment is a grey box with a bunch of wires and buttons on it. The worker is holding a grey box with wires and buttons on it. The room has a lot of wires and buttons on the walls and grey tables. The image is taken inside a building and you can see outside the building through a window. There are power lines outside.", - "id": 23279 - }, - { - "image_path": "G:\\images\\combined\\-4820-_png_jpg.rf.407848a8be09fc65f2f86b4f98c03cd9.jpg", - "response": "a group of men standing around a construction site", - "id": 23280 - }, - { - "image_path": "G:\\images\\combined\\-4821-_png_jpg.rf.967951a2090ca8ed33c836b2aa7a640c.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing green uniforms and blue hats. In front of them, there is a large white truck and a white trailer. To the left of the people, there is a white wall with a red border and black patterns. Next to the people, there is a tall palm tree being planted in the ground. The ground around the tree is filled with rich brown soil.", - "id": 23281 - }, - { - "image_path": "G:\\images\\combined\\-4822-_png_jpg.rf.6474122b9eaa3aa2da61a447fce8013d.jpg", - "response": "A construction site with several workers visible. There is a large white building under construction and a man in a yellow vest and white helmet is standing on the side of it. Another man in a yellow vest is on a ladder. There is a third man in a yellow vest standing on a pile of dirt. There is a fourth man in a yellow vest and blue hat standing on a pile of lumber. There is a fifth man in a yellow vest and blue hat standing on a pile of lumber. There is a sixth man in a yellow vest and blue hat standing on a pile of lumber. There is a seventh man in a yellow vest and blue hat standing on a pile of lumber. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber on the ground with a white sign on it. There is a pile of lumber", - "id": 23282 - }, - { - "image_path": "G:\\images\\combined\\-4824-_png_jpg.rf.c0627591ebf3092f40386e088ad5ca4c.jpg", - "response": "A man wearing a hard hat and orange vest is using a blue bucket to add liquid to the concrete.", - "id": 23283 - }, - { - "image_path": "G:\\images\\combined\\-4825-_png_jpg.rf.1d173cb13809e54b96b62840268cd5e8.jpg", - "response": "In the image, a group of people are working on a large stone structure that looks like a dinosaur footprint. The footprint is located in the middle of a large pit in the ground. The pit is filled with a light brown soil. The people are working on clearing away the soil around the structure with rakes. One person is on the left side of the structure, another one is in the middle, and the last two are on the right side. A third person is working on the top of the structure. There is a soldier on the right side of the pit, holding a shovel.", - "id": 23284 - }, - { - "image_path": "G:\\images\\combined\\-4827-_png_jpg.rf.3c899170bb768a7cc965d18b6ea36032.jpg", - "response": "The photo shows three workers on a mountain path. They are standing on a steep staircase made of stone, which is built on the side of a mountain. The mountain is high and rocky, with some green plants growing on it. The sky is grey and overcast. The workers are wearing safety harnesses and helmets. One of the workers is holding a shovel.", - "id": 23285 - }, - { - "image_path": "G:\\images\\combined\\-4828-_png_jpg.rf.575af714241f7b72def301eba7f2c248.jpg", - "response": "The image shows two construction workers, a man and a woman, standing on a dock near some shipping containers. They are both wearing hard hats and safety vests. The woman is holding a clipboard and a pen, and appears to be discussing something with the man. The man is looking at the clipboard that the woman is holding.", - "id": 23286 - }, - { - "image_path": "G:\\images\\combined\\-4829-_png_jpg.rf.a6ae4eb6678c2a8ae92889b70cd256b7.jpg", - "response": "A construction site with two workers.", - "id": 23287 - }, - { - "image_path": "G:\\images\\combined\\-483-_png_jpg.rf.e470f34a3b4f077a16f6ba27e0ed76c6.jpg", - "response": "The image shows a group of men standing in a circle in front of a construction site. Some of the men are wearing hard hats, and a few of them have ties. The construction site is taking place in an urban setting, and there is a large building under construction in the background. There is also a backpack lying on the ground in front of the group.", - "id": 23288 - }, - { - "image_path": "G:\\images\\combined\\-4830-_png_jpg.rf.a8c51cbb69482be5f1664cbe9359a382.jpg", - "response": "A group of men in blue uniforms and red hats are working on an electrical tower.", - "id": 23289 - }, - { - "image_path": "G:\\images\\combined\\-4832-_png_jpg.rf.5c8efcddfbf32b3c680972eba7e53cdb.jpg", - "response": "a group of men wearing hard hats", - "id": 23290 - }, - { - "image_path": "G:\\images\\combined\\-4834-_png_jpg.rf.b52dde8b142e930a00352e62d58619c2.jpg", - "response": "A couple of people in yellow jackets and orange hard hats standing in front of a white gas storage tank and a tall metal structure.", - "id": 23291 - }, - { - "image_path": "G:\\images\\combined\\-4835-_png_jpg.rf.0d3890e612343affe201952b76f97ad4.jpg", - "response": "a group of men working on a roof", - "id": 23292 - }, - { - "image_path": "G:\\images\\combined\\-4838-_png_jpg.rf.4f18ef20a9147ca184e221ff0fc6f523.jpg", - "response": "A couple of workers are handling a large spool of wire in the rain.", - "id": 23293 - }, - { - "image_path": "G:\\images\\combined\\-4840-_png_jpg.rf.22bbcb8de3bb986d895962b8e08e5b4a.jpg", - "response": "A group of four men are smiling and waving at the camera while wearing hard hats and coveralls. They are standing underneath a large white cylinder that is sitting on a turntable. The men are all holding walkie talkies.", - "id": 23294 - }, - { - "image_path": "G:\\images\\combined\\-4841-_png_jpg.rf.a14696145fbc73fd865634c16724f3fb.jpg", - "response": "A man in a yellow vest and orange hard hat is holding a tablet in one hand and a cell phone in the other. He is standing in front of a construction site with a crane in the background. The man is looking down at the tablet and appears to be talking on the phone.", - "id": 23295 - }, - { - "image_path": "G:\\images\\combined\\-4842-_png_jpg.rf.6c02a2c849302a84d5921fceb4422161.jpg", - "response": "A group of men working on a large pipe.", - "id": 23296 - }, - { - "image_path": "G:\\images\\combined\\-4845-_png_jpg.rf.7906549e2ee37936a577e1ffa87f3a0f.jpg", - "response": "A construction site with a man carrying a large wooden beam on his shoulders.", - "id": 23297 - }, - { - "image_path": "G:\\images\\combined\\-4846-_png_jpg.rf.46920e69a1003f705f00d3bd681a9622.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is shoveling gravel into a wheelbarrow. He is standing in front of a building that is under construction.", - "id": 23298 - }, - { - "image_path": "G:\\images\\combined\\-4848-_png_jpg.rf.f744b462fa7f63b69883d3059a64ac80.jpg", - "response": "A group of people in white and grey, some in red and some in blue.", - "id": 23299 - }, - { - "image_path": "G:\\images\\combined\\-4849-_png_jpg.rf.4323352779c34409ff09a19adc807496.jpg", - "response": "A group of people in white and yellow hard hats standing in a room with a circuit board in front of them.", - "id": 23300 - }, - { - "image_path": "G:\\images\\combined\\-4850-_png_jpg.rf.1eb7c4dfc19197b374b56cd75f1125da.jpg", - "response": "In the image, a group of workers are seen wearing hard hats and uniforms while working on a snowy street. They are working on a large piece of equipment that has snow and ice on it. The word \"Xinhuanet\" and the word \"XinhuiNet\" are also visible in the image.", - "id": 23301 - }, - { - "image_path": "G:\\images\\combined\\-4851-_png_jpg.rf.19bec5c5b96bd384a36133488e150a72.jpg", - "response": "Men(265,309),(513,996)(518,313),(693,997) walking on a construction site", - "id": 23302 - }, - { - "image_path": "G:\\images\\combined\\-4854-_png_jpg.rf.21b4855d046c59133a94850a9cb0e4b1.jpg", - "response": "A couple of men working on a wooden structure.", - "id": 23303 - }, - { - "image_path": "G:\\images\\combined\\-4855-_png_jpg.rf.de3d88d8fdf6e763804afcdcb7ead113.jpg", - "response": "A man(323,217),(568,564) in a red hard hat standing in a hole in the ground.", - "id": 23304 - }, - { - "image_path": "G:\\images\\combined\\-4857-_png_jpg.rf.77bb99e72a97e013673b4719ef1c8b2e.jpg", - "response": "A worker in a yellow helmet and a bag with the image of a green dragon is standing next to a large power line tower. The tower is made of metal and is grey in color. There are some power lines running to the tower. The sky is a clear blue color.", - "id": 23305 - }, - { - "image_path": "G:\\images\\combined\\-486-_png_jpg.rf.269b7cbbadc0693fc92a45bd021d6bee.jpg", - "response": "In the image there is a construction site with multiple people working on it. One person is sitting on the bottom level of a concrete structure that is being built. They are working on the\u94a2\u7b4b for the structure. There is a ladder leaning against the wall on the left side of the image. The wall is white and has several drill holes in it. There is a blue helmet on the ground in the bottom left corner of the image. There are also several other people scattered around the site working on different parts of the structure.", - "id": 23306 - }, - { - "image_path": "G:\\images\\combined\\-4860-_png_jpg.rf.5d44102f9896314e94a0e796283ae8a0.jpg", - "response": "The image shows a group of men standing in front of a building. They are all wearing white shirts and are arranged in two lines. In front of the men, there is a large puddle of water. The men are wearing ties and the one on the far left is wearing a shirt that says TIME in big letters. In the background, there is a building with a blue frame and a row of portraits on the second floor. The portraits are of different sizes and are arranged in rows.", - "id": 23307 - }, - { - "image_path": "G:\\images\\combined\\-4862-_png_jpg.rf.e5f13134019a6d8076e2ddc10ab7434b.jpg", - "response": "A man in a hard hat and white jumpsuit is standing in front of a table with a blue helmet on.", - "id": 23308 - }, - { - "image_path": "G:\\images\\combined\\-4863-_png_jpg.rf.96389edd4b86db642002aa8605270cbd.jpg", - "response": "In the image two men are working on a power line in the mountains. They are wearing orange helmets and are sitting on the side of a tower. The power line is clear and the men have a tool in their hand that is used to work on the line. The sky is blue and there are clouds in the distance. The mountains are green and there is a lake below.", - "id": 23309 - }, - { - "image_path": "G:\\images\\combined\\-4864-_png_jpg.rf.5297c55d8f0f6c02fa848da16fd51a9f.jpg", - "response": "In the image there is a construction site with several people working. They are all wearing yellow hard hats. There are several large metal pipes on the ground and on the ceiling. Some of the pipes are red, some are purple. There is a large piece of machinery in the background. In the foreground, there is a white wall with a red logo on it. The workers are standing on a concrete floor and there are several wooden beams in the scene.", - "id": 23310 - }, - { - "image_path": "G:\\images\\combined\\-4865-_png_jpg.rf.b5c768438ed4a3d9216fe9375e923720.jpg", - "response": "A group of men in white and yellow uniforms and yellow helmets are working on power lines.", - "id": 23311 - }, - { - "image_path": "G:\\images\\combined\\-4866-_png_jpg.rf.a8aacdd5c36d95de7948ea0db8fbc408.jpg", - "response": "In the image there are two men working on a set of electrical panels. They are both wearing black clothing and yellow hard hats. One man is kneeling on the ground and working on the left side of the panels while the other man is standing behind him and working on the right side of the panels. There are also a few bottles, one on the left side of the image and two on the right side of the image. The wall to the right of the men is made of concrete blocks.", - "id": 23312 - }, - { - "image_path": "G:\\images\\combined\\-4869-_png_jpg.rf.17ef1d12c834ee2921e8df6233da42e2.jpg", - "response": "A man in a white uniform and yellow hard hat is on a ladder, working on a power pole at night. He is wearing a tool belt and has a tool in his hand. There are several other people in the scene, but they are not the main focus.", - "id": 23313 - }, - { - "image_path": "G:\\images\\combined\\-4870-_png_jpg.rf.50b42226ef029a9d8b57e79e27e4c1d8.jpg", - "response": "A man in a suit and hard hat is standing next to a man in a blue shirt and orange vest who is sitting on the floor looking at a laptop. They are both in a large building with a lot of glass windows.", - "id": 23314 - }, - { - "image_path": "G:\\images\\combined\\-4872-_png_jpg.rf.2b998f8dcafbc66f1dd7e7c481c19ce7.jpg", - "response": "A group of people standing around a table in a factory.", - "id": 23315 - }, - { - "image_path": "G:\\images\\combined\\-4873-_png_jpg.rf.5d7024290f67c4aad61c1a8359e47441.jpg", - "response": "A collage of three pictures of a construction site. In the top picture, a worker is seen working on a construction site. The middle picture is a close-up of the same worker, and the bottom picture is of a pile of metal rods.", - "id": 23316 - }, - { - "image_path": "G:\\images\\combined\\-4875-_png_jpg.rf.31cd05a6c28e60a3ee75b2b9665c4134.jpg", - "response": "The image shows a construction site with several construction workers present. They are working on a building, pouring concrete on the roof. Some of the workers are holding tools, such as shovels and brooms. The workers are wearing hard hats and uniforms.", - "id": 23317 - }, - { - "image_path": "G:\\images\\combined\\-4876-_png_jpg.rf.4c480b4f5250aa585ed9a1744cde964c.jpg", - "response": "A group of men working on a power line in the street.", - "id": 23318 - }, - { - "image_path": "G:\\images\\combined\\-4877-_png_jpg.rf.4bb745f78e2c3a8d51e67bd4f6a89c25.jpg", - "response": " Men(242,277),(458,997)(675,263),(958,997)(605,189),(777,785) at a construction site in China", - "id": 23319 - }, - { - "image_path": "G:\\images\\combined\\-4878-_png_jpg.rf.c09d111402b7cf345fd99aacd004b2da.jpg", - "response": " two construction workers(289,402),(545,607)(427,566),(663,997) in a pit", - "id": 23320 - }, - { - "image_path": "G:\\images\\combined\\-4879-_png_jpg.rf.fd4ee60c49b1177043e8ac154604ad48.jpg", - "response": "A worker in a red hard hat and camouflage jacket is seen in the image, working on a large piece of equipment. The equipment is yellow and black and appears to be some sort of crane or lift. The worker is holding a rope attached to a hook, which is hanging from a metal structure. The structure has three hanging bells on it. The worker is also connected to a safety line. The background shows a field of green grass and a hazy mountain.", - "id": 23321 - }, - { - "image_path": "G:\\images\\combined\\-488-_png_jpg.rf.6ef8b5fcab1df9449931ef3c82c5baa4.jpg", - "response": "An electrician working on some metal beams in the air.", - "id": 23322 - }, - { - "image_path": "G:\\images\\combined\\-4880-_png_jpg.rf.c95e46f4fea79601563bfa1748a0197e.jpg", - "response": "A construction site with two workers wearing blue and yellow work clothes and yellow hats. They are working on a steel structure, possibly a bridge, with several steel beams and wires visible.", - "id": 23323 - }, - { - "image_path": "G:\\images\\combined\\-4882-_png_jpg.rf.eff21f7b005e2dda73ef9196828c03ec.jpg", - "response": "A man and a woman in blue hard hats and blue and grey vests are standing in front of a brick wall. The man is holding several rolled up pieces of white paper. There are multiple stacks of red bricks around them. The woman is carrying a black bag. They are standing on a construction site.", - "id": 23324 - }, - { - "image_path": "G:\\images\\combined\\-4883-_png_jpg.rf.1bddfb6d94a5e602587a992b38930d4a.jpg", - "response": "A man wearing a yellow hard hat and blue overalls is working on a brick wall. He is smiling and appears to be very happy. There is a tower of red bricks next to him and he is kneeling on the ground. In the background there are other people working on the building. There are also some power lines in the sky.", - "id": 23325 - }, - { - "image_path": "G:\\images\\combined\\-4885-_png_jpg.rf.c329a8ff9f44a3e73d70ae973b2ba6a2.jpg", - "response": "a man in a green uniform and red hat working on an oil rig", - "id": 23326 - }, - { - "image_path": "G:\\images\\combined\\-4886-_png_jpg.rf.6f646e4d322d22f5f40cfe6a822dd867.jpg", - "response": "A group of workers working on a construction site.", - "id": 23327 - }, - { - "image_path": "G:\\images\\combined\\-4888-_png_jpg.rf.06ee48470725f888b2eca4a1afb28353.jpg", - "response": "A power line technician is working on a power line that is hanging low over a road. The technician is standing on the back of a yellow truck.", - "id": 23328 - }, - { - "image_path": "G:\\images\\combined\\-489-_png_jpg.rf.dc3fde9c71500a8eebef843ecacf6d8c.jpg", - "response": "A group of workers are working on a construction site. They are wearing hard hats and some are wearing yellow and orange hard hats, some are wearing white and yellow hard hats, and one is wearing a red hard hat. They are working on a foundation that has rebar sticking out of it. Some of the workers are kneeling down and working on the rebar.", - "id": 23329 - }, - { - "image_path": "G:\\images\\combined\\-4890-_png_jpg.rf.c093453e36d71cc35aefa37e966cede7.jpg", - "response": "A construction worker in front of a building site holding a blank sign.", - "id": 23330 - }, - { - "image_path": "G:\\images\\combined\\-4891-_png_jpg.rf.144cf6370afc2b7961b8ce4126f6702b.jpg", - "response": "An electrician fixing an electrical panel in a residential electrical system.", - "id": 23331 - }, - { - "image_path": "G:\\images\\combined\\-4894-_png_jpg.rf.1edeea09d81b336f45223464598f791f.jpg", - "response": "A construction crew working on a city street.", - "id": 23332 - }, - { - "image_path": "G:\\images\\combined\\-4895-_png_jpg.rf.e806bd7cdca1b1172e91df3f347ad45e.jpg", - "response": "A group of people working on an electrical panel.", - "id": 23333 - }, - { - "image_path": "G:\\images\\combined\\-4897-_png_jpg.rf.0f651ea29fe1b06c668a86aeafb34772.jpg", - "response": "Two men in yellow safety helmets and grey work clothes looking at a piece of paper.", - "id": 23334 - }, - { - "image_path": "G:\\images\\combined\\-4901-_png_jpg.rf.cd2c70d69adeaf9f77b1e068c234c0b8.jpg", - "response": "A group of men working on a power line.", - "id": 23335 - }, - { - "image_path": "G:\\images\\combined\\-4902-_png_jpg.rf.9888a2515d899c96c96434de0ba20c03.jpg", - "response": "A flooded street in China with workers standing in the water.", - "id": 23336 - }, - { - "image_path": "G:\\images\\combined\\-4904-_png_jpg.rf.6d0cbefd2f3f2aaa9139e69c7d07e2ac.jpg", - "response": "A man in a purple shirt and red hat is speaking at a podium.", - "id": 23337 - }, - { - "image_path": "G:\\images\\combined\\-4905-_png_jpg.rf.b311401b6706469f43e790baba5c14a3.jpg", - "response": "In the image there are three construction workers. One is in the center of the image, he is wearing a yellow vest and a white helmet. Another worker is located on the left side of the image, he is also wearing a yellow vest but no helmet. The third worker is located on the far right side of the image, they are wearing a yellow vest and a white helmet. They are all looking at a blueprint that is held up by the worker in the center. The workers are all standing on scaffolding.", - "id": 23338 - }, - { - "image_path": "G:\\images\\combined\\-4907-_png_jpg.rf.f379c961415badc66e1440c2abf80cfc.jpg", - "response": "The image shows a group of workers in heavy blue coats and hard hats pulling a large pipe through a snow covered field. The ground is covered in a thick layer of snow and the workers are struggling to pull the pipe. There are also several blue balloons floating in the top of the image.", - "id": 23339 - }, - { - "image_path": "G:\\images\\combined\\-4908-_png_jpg.rf.2c1be45773d7c7c1c68f5df4a4debae2.jpg", - "response": "A group of people wearing hard hats standing in front of a building.", - "id": 23340 - }, - { - "image_path": "G:\\images\\combined\\-4909-_png_jpg.rf.01c9b9837962c90ed96e1fd5fa7f3720.jpg", - "response": "A group of people in military uniforms are standing around a hole in the ground. They are looking down into the hole and some are holding shovels. There is a large piece of machinery, possibly a backhoe, in the hole. The people are standing on a pile of dirt and rocks. Some of the people are wearing hard hats.", - "id": 23341 - }, - { - "image_path": "G:\\images\\combined\\-4910-_png_jpg.rf.be30ce955d9bc6a006012c87cdf02b28.jpg", - "response": "A man in a white shirt and red hat is pointing towards the sky. He is standing in front of a group of men in hard hats. They are all standing on a construction site.", - "id": 23342 - }, - { - "image_path": "G:\\images\\combined\\-4911-_png_jpg.rf.41a92e2f834bd764b4fdf49c9bbb3bb8.jpg", - "response": "In the image there are two workers wearing hard hats and work clothes, one is on the left and the other is on the right. They are in a factory setting with a machine in the middle of the room producing steam. The workers are standing around the machine with its door open and steam is coming out of it. There is also a pipe on the left side of the machine and a valve on the right side of the machine.", - "id": 23343 - }, - { - "image_path": "G:\\images\\combined\\-4912-_png_jpg.rf.36f55382e76ef262bb912b28f9a984e7.jpg", - "response": "a group of men standing around in a construction site", - "id": 23344 - }, - { - "image_path": "G:\\images\\combined\\-4913-_png_jpg.rf.0323d6c3a553c10b7e3f425978069dd4.jpg", - "response": "In the image two workers are seen at a construction site wearing yellow jackets and blue jeans. One of the workers is on the left side of the image and the other one is on the right side. Both of them are wearing red hats. One of the workers is holding a long metal rod and the other one is holding a step ladder. Both of them are working on a construction site that has scaffolding all around. There is a large unfinished wall in front of them and a blue helmet is seen on the scaffolding above them.", - "id": 23345 - }, - { - "image_path": "G:\\images\\combined\\-4914-_png_jpg.rf.0f272c93be7dbce2b2d89a8b69428916.jpg", - "response": "A man in a white shirt and blue cap is working on a large piece of equipment. He is wearing a white outfit and has a tool in his hand. The equipment has many wires and knobs on it.", - "id": 23346 - }, - { - "image_path": "G:\\images\\combined\\-4915-_png_jpg.rf.47aa7f9e7b6690c30216b0a2bce813ed.jpg", - "response": "A group of men standing around each other.", - "id": 23347 - }, - { - "image_path": "G:\\images\\combined\\-4916-_png_jpg.rf.09eb297c3bec0c1553a5cb97f293d968.jpg", - "response": "The image shows a group of men standing in a circle on a construction site. They are all wearing red hats and some are holding clipboards. In the background, there is a banner that says \"Beijing University of Chemical Technology\". There is a large white building under construction in the background. In the foreground, there are many different types of pipes laid out on the ground.", - "id": 23348 - }, - { - "image_path": "G:\\images\\combined\\-4917-_png_jpg.rf.0fbd514666ff3f417b230611ca2b13cc.jpg", - "response": "a group of people walking across a dirt field", - "id": 23349 - }, - { - "image_path": "G:\\images\\combined\\-4918-_png_jpg.rf.5709bfe68b3a42a208c5ec1ac3d54811.jpg", - "response": "A woman in a green jacket sprays a fire extinguisher on a piece of wood in a parking lot. Several men in blue uniforms watch her. Some are wearing hard hats. In the background, a grey building can be seen.", - "id": 23350 - }, - { - "image_path": "G:\\images\\combined\\-4919-_png_jpg.rf.c354e5834d5011ff8bef2c020e3192ea.jpg", - "response": "A man wearing a hard hat and sitting at a table with a laptop and other items.", - "id": 23351 - }, - { - "image_path": "G:\\images\\combined\\-492-_png_jpg.rf.f612a3e36480425605e83302336094ca.jpg", - "response": " Two construction workers(23,427),(238,997)(228,439),(487,997) at a construction site", - "id": 23352 - }, - { - "image_path": "G:\\images\\combined\\-4920-_png_jpg.rf.9b1594726f165e9a31e29699f6acd709.jpg", - "response": " A demolition crew(542,530),(641,784)(457,528),(533,734)(268,516),(347,685)(768,328),(894,413) in action", - "id": 23353 - }, - { - "image_path": "G:\\images\\combined\\-4923-_png_jpg.rf.7bac0f882240f6e0d0ab0eb3140c2a26.jpg", - "response": "The image shows two men in orange work suits and red helmets standing in front of a large piece of mining equipment. The machine has a giant wheel and a large scoop at the front. The men are shaking hands and one of them is holding a clipboard.", - "id": 23354 - }, - { - "image_path": "G:\\images\\combined\\-4924-_png_jpg.rf.96e255ed411f4c4c0050a4d753c7a7b7.jpg", - "response": "Two men(515,414),(600,630)(199,445),(344,667) cleaning a large tank(2,3),(996,615)", - "id": 23355 - }, - { - "image_path": "G:\\images\\combined\\-4925-_png_jpg.rf.a9ced4b5ac7cbca1b04a93d0c379c609.jpg", - "response": "A group of three men standing next to each other wearing hard hats.", - "id": 23356 - }, - { - "image_path": "G:\\images\\combined\\-4926-_png_jpg.rf.5c1a1b5de8195ba399f4c2616b6d32fe.jpg", - "response": " Rescuers(470,326),(753,996)(24,324),(333,996)(247,305),(527,996)(897,318),(997,995) carry a miner to an ambulance after a gas explosion at a coal mine in Shandong province, China, in this photo taken by China News Service on October 14, 2014.", - "id": 23357 - }, - { - "image_path": "G:\\images\\combined\\-4929-_png_jpg.rf.51648e8eaf19b621972a470053ed21b9.jpg", - "response": "The image shows a group of four men standing in a construction site. They are all wearing suits and one of them is wearing a red hardhat. The men are gathered around a table with several cinder blocks on it. The blocks are white and have different shapes and sizes. There is also a pile of blocks located to the right of the table. In the background, there are a few buildings under construction and a yellow building. The roof of the building in the foreground is unfinished and the walls are bare.", - "id": 23358 - }, - { - "image_path": "G:\\images\\combined\\-4930-_png_jpg.rf.1cad8ccac633bdccc420670e8b2e166d.jpg", - "response": "A man in a green jacket and yellow hard hat is on a ladder, working on a power line. He is climbing a ladder that is attached to a metal pole. Around him, there are many wires and insulators. The sky is grey and overcast.", - "id": 23359 - }, - { - "image_path": "G:\\images\\combined\\-4932-_png_jpg.rf.d85d36a5a51bf4f04ca8633117521ff3.jpg", - "response": "A group of men in hard hats looking at a wall.", - "id": 23360 - }, - { - "image_path": "G:\\images\\combined\\-4934-_png_jpg.rf.c3d3f6de386f1f23c3539ee4a7be5879.jpg", - "response": "The image depicts two workers in a construction site. One worker is walking in front of the camera while the other is sitting on a truck loaded with long wooden poles. The text in the image is in Chinese and it says \u201c Workers in Tianjin Striking\u201d and \u201c Workers in Tianjin Suburban Area\u201d", - "id": 23361 - }, - { - "image_path": "G:\\images\\combined\\-4935-_png_jpg.rf.c13bd064580f6ff580879208a1a76bc8.jpg", - "response": "A worker in a blue jacket and yellow hard hat is standing under a red metal structure. The worker is holding a silver tool in one hand and a yellow helmet in the other. In the background, a building under construction can be seen. It appears to be a series of interlocking wires or tubes. The sky is a clear, bright blue.", - "id": 23362 - }, - { - "image_path": "G:\\images\\combined\\-4938-_png_jpg.rf.4f12b73b0549049cf601d7753b9df972.jpg", - "response": "An employee in a hard hat walks through a warehouse filled with steel. The warehouse has steel beams and other steel products stacked throughout the space. The employee is wearing a blue jumpsuit and is walking past a wall of steel.", - "id": 23363 - }, - { - "image_path": "G:\\images\\combined\\-4939-_png_jpg.rf.486dbaeccf4b61e5f7f5d8fde4a57ba2.jpg", - "response": "A large blue sign with many different speed limit signs on it.", - "id": 23364 - }, - { - "image_path": "G:\\images\\combined\\-494-_png_jpg.rf.257b61d54f4807e9f1924c708fad12bb.jpg", - "response": "A man in a red jacket and hard hat is on a ladder, working on a power line. He is wearing brown boots and has a tool belt around his waist. The ladder is leaning against a power line pole and the man is holding onto the pole to keep his balance. The sky is overcast and it appears to be snowing or has recently snowed. There is snow on the ground and on the power line next to the man.", - "id": 23365 - }, - { - "image_path": "G:\\images\\combined\\-4941-_png_jpg.rf.8623b8dc0bea92c03681801c8114aef3.jpg", - "response": "A collage of four pictures showing workers working on a bridge.", - "id": 23366 - }, - { - "image_path": "G:\\images\\combined\\-4943-_png_jpg.rf.dc72bc1f7950611d6b918f1f37bf741a.jpg", - "response": "In the image there is a group of people standing inside a cave. They are wearing hard hats and masks. Some people are holding tools and there are some wires visible in the scene. The walls of the cave have some drawings and carvings on them. There is a person on the right side of the image who is wearing a white shirt and is holding a tool.", - "id": 23367 - }, - { - "image_path": "G:\\images\\combined\\-4946-_png_jpg.rf.d5e6922339ff917219e0694e90a63728.jpg", - "response": " A worker(421,224),(789,997) wearing a red jacket(422,337),(773,799) and white helmet(547,357),(663,452) is working on a cable", - "id": 23368 - }, - { - "image_path": "G:\\images\\combined\\-4947-_png_jpg.rf.e9d4b5dbaf40ed35ec3b825ff7524154.jpg", - "response": "The image shows a group of three men standing on a platform in a large building. They are wearing hard hats and the platform is surrounded by scaffolding. The men appear to be looking down at something, possibly a work area below. The background is blurry and the image is captured from the perspective of looking down from the platform.", - "id": 23369 - }, - { - "image_path": "G:\\images\\combined\\-495-_png_jpg.rf.7002442a7059c85932a766f7d5b8969c.jpg", - "response": "A couple of workers in red doing maintenance on a power line.", - "id": 23370 - }, - { - "image_path": "G:\\images\\combined\\-4950-_png_jpg.rf.5ed7cbaaffd95e2540cc3661e0ea87fd.jpg", - "response": "A collage of three pictures of two men walking down the street.", - "id": 23371 - }, - { - "image_path": "G:\\images\\combined\\-4952-_png_jpg.rf.24331b2a93546d4992127946ab23adbf.jpg", - "response": "A construction worker wearing a yellow hard hat and a black jacket is holding a blueprint at a construction site. The worker is standing in front of a large crane and a white truck. The sky is blue and there are a few other people scattered around the site.", - "id": 23372 - }, - { - "image_path": "G:\\images\\combined\\-4953-_png_jpg.rf.28125c6aaf823236aeb47fed007c6988.jpg", - "response": "The image shows a group of people working on a construction project. They are standing around a wooden structure that appears to be a well or a water pump. Some of the people are wearing hard hats, and there are several handbags and a backpack visible among the group. In the background, there are several other people working on the structure. The scene is set at night, and there are several lanterns hanging above the group.", - "id": 23373 - }, - { - "image_path": "G:\\images\\combined\\-4958-_png_jpg.rf.ccd8267c5fb5158759123a0e4d656d3f.jpg", - "response": "A group of men working on an electrical wire in the sky.", - "id": 23374 - }, - { - "image_path": "G:\\images\\combined\\-4959-_png_jpg.rf.1b604e320bf50525baf846c3b2b32bb8.jpg", - "response": "The image shows a group of men in hard hats gathered around a blueprint. Some of the men are wearing ties and one is wearing a suit. They are standing in front of a construction site.", - "id": 23375 - }, - { - "image_path": "G:\\images\\combined\\-496-_png_jpg.rf.0516a3905c5e59581f2c535f5b574563.jpg", - "response": "A group of men in hard hats are standing in a large room under construction. The walls are bare concrete and the floor is unfinished. One of the men is pointing to something on the ceiling.", - "id": 23376 - }, - { - "image_path": "G:\\images\\combined\\-4960-_png_jpg.rf.3b44dad86c52793e33e1597f6e1e8369.jpg", - "response": "A Chinese worker in a blue helmet and blue and white jacket repairs power lines in the pouring rain.", - "id": 23377 - }, - { - "image_path": "G:\\images\\combined\\-4962-_png_jpg.rf.03ded2a4749f317307c2ac88b43b0a38.jpg", - "response": "A group of people working on a bridge.", - "id": 23378 - }, - { - "image_path": "G:\\images\\combined\\-4964-_png_jpg.rf.5041c33b35e6e1851932978a6e4b97e6.jpg", - "response": "A group of people standing around a construction site.", - "id": 23379 - }, - { - "image_path": "G:\\images\\combined\\-4966-_png_jpg.rf.fd25107fd761140600863d886c37f8af.jpg", - "response": "The image shows a group of workers on a ladder, working on a large metal bar that is raised above them. The workers are standing on a yellow ladder and are working on a metal bar that is raised above them. The sky is blue with some clouds.", - "id": 23380 - }, - { - "image_path": "G:\\images\\combined\\-4968-_png_jpg.rf.06c752b4473e8480d41ddb790cf95d0d.jpg", - "response": "A group of four workers are working on power lines at a power station. They are all wearing blue uniforms and white helmets. The power station has many black and white power lines and grey columns.", - "id": 23381 - }, - { - "image_path": "G:\\images\\combined\\-4969-_png_jpg.rf.c897ccd35eed5bb0b0f42bc6535b9397.jpg", - "response": "A construction site with a worker walking on the steel grid.", - "id": 23382 - }, - { - "image_path": "G:\\images\\combined\\-4974-_png_jpg.rf.7647e3364113e23cf982a188b44879e0.jpg", - "response": "A group of people working on a building construction site.", - "id": 23383 - }, - { - "image_path": "G:\\images\\combined\\-4979-_png_jpg.rf.dbcb28e24de7635eab795b3cb35d33ca.jpg", - "response": "A group of men in blue hard hats are working on an electrical tower. They are all wearing blue hard hats and some are wearing light blue shirts. They are all focused on their work.", - "id": 23384 - }, - { - "image_path": "G:\\images\\combined\\-498-_png_jpg.rf.a281647070b109d0c23a8f2650488c03.jpg", - "response": "A group of four men standing under a bunch of umbrellas.", - "id": 23385 - }, - { - "image_path": "G:\\images\\combined\\-4980-_png_jpg.rf.22ac280e2f64407ffb87677b1b0ac309.jpg", - "response": "A construction worker in a red helmet stands in front of a large pile of dirt. There are two yellow dump trucks to the left of the pile and two yellow and black excavators to the right of the pile. The sky is blue and clear.", - "id": 23386 - }, - { - "image_path": "G:\\images\\combined\\-4983-_png_jpg.rf.1fce949f081bd9cbbab2394985869c2a.jpg", - "response": "A man in a yellow vest and hard hat is standing in a large tunnel. The tunnel is white and has a curved ceiling. There are two other people visible in the tunnel, one near the top and one near the bottom. The man in the yellow vest is standing in the center of the tunnel. There are two pipes on the right side of the tunnel and two pipes on the left side of the tunnel. The tunnel is lined with round metal grates.", - "id": 23387 - }, - { - "image_path": "G:\\images\\combined\\-4985-_png_jpg.rf.9339c98feca15d591554979265e68fdd.jpg", - "response": "A man wearing a red helmet stands in front of a pile of rubble.", - "id": 23388 - }, - { - "image_path": "G:\\images\\combined\\-4986-_png_jpg.rf.5b69b2b0a232bd45d0df873516fd3f4a.jpg", - "response": "A man wearing a hard hat is smiling while holding a brick.", - "id": 23389 - }, - { - "image_path": "G:\\images\\combined\\-4988-_png_jpg.rf.dcdeb2abc71ad20b064be3872cd05553.jpg", - "response": "A man and a woman construction workers sitting on a curb.", - "id": 23390 - }, - { - "image_path": "G:\\images\\combined\\-4989-_png_jpg.rf.a677e8b3b1a14c75c5d49f6f6d533b24.jpg", - "response": "A construction site with several workers visible. One man is wearing a green uniform and a yellow hard hat, working on a large structure made of metal rods. Another worker is visible further to the right.", - "id": 23391 - }, - { - "image_path": "G:\\images\\combined\\-499-_png_jpg.rf.acd629328a517a6d6d2cd7120e2b5a4b.jpg", - "response": "A group of people working on a construction site.", - "id": 23392 - }, - { - "image_path": "G:\\images\\combined\\-4991-_png_jpg.rf.86a379556b71ef852a9668480d0808cd.jpg", - "response": "Men(537,359),(700,867)(723,265),(995,996)(256,327),(387,710)(55,343),(586,997) standing inside a large pipe", - "id": 23393 - }, - { - "image_path": "G:\\images\\combined\\-4994-_png_jpg.rf.ef65c29911fcef7dce51415973ccd909.jpg", - "response": "The image shows a group of men standing in a circle in a construction area. They are all wearing hard hats and some are also wearing suits. The men are standing in front of a large construction site and a blue and white building. There is also a large piece of machinery in the foreground.", - "id": 23394 - }, - { - "image_path": "G:\\images\\combined\\-4996-_png_jpg.rf.8b63b3911f7c5437ca9f86047b0a098e.jpg", - "response": " Two men(672,538),(809,997)(775,524),(918,997) in high vis clothing standing in a quarry", - "id": 23395 - }, - { - "image_path": "G:\\images\\combined\\-4997-_png_jpg.rf.9e2350320ed86f8506704a1b9f93b2bb.jpg", - "response": "A worker is welding steel at a construction site.", - "id": 23396 - }, - { - "image_path": "G:\\images\\combined\\-4999-_png_jpg.rf.b018a685fbdeeb49e5f709c1b24cc244.jpg", - "response": "An electrician is working on an electrical transformer.", - "id": 23397 - }, - { - "image_path": "G:\\images\\combined\\-5-_png_jpg.rf.0b9d8bb639e0daedefcefb805b5750f4.jpg", - "response": "A worker in a hard hat and coveralls is spraying a pipe with a blue beam from a device in their hand. They are standing in a tunnel with a wall that has a painting of a pipeline on it. Another worker is visible in the background, wearing a yellow helmet and crouching down.", - "id": 23398 - }, - { - "image_path": "G:\\images\\combined\\-50-_png_jpg.rf.5f4067d9c793b6f12cc16a5daf9c1166.jpg", - "response": "A man in a hard hat and blue uniform climbing a metal structure.", - "id": 23399 - }, - { - "image_path": "G:\\images\\combined\\-501-_png_jpg.rf.bed4eed12ee11132f244e025edfab2b1.jpg", - "response": "An orange and blue tractor with a man in a red and blue striped shirt standing in it.", - "id": 23400 - }, - { - "image_path": "G:\\images\\combined\\-502-_png_jpg.rf.4626df98f631e77837d8c8779bf079f2.jpg", - "response": "A group of men are working on an electrical tower.", - "id": 23401 - }, - { - "image_path": "G:\\images\\combined\\-503-_png_jpg.rf.07fe409c4c553e0de81bfb3afc2aa6ce.jpg", - "response": "A group of men in hard hats stand in a factory.", - "id": 23402 - }, - { - "image_path": "G:\\images\\combined\\-505-_png_jpg.rf.aec42428df661d4a467e2eeb41d3fad3.jpg", - "response": "In the image there are two workers wearing yellow helmets. They are working on a construction site. One of them is holding a large wooden pole and the other one is operating a crane with a remote control. They are wearing yellow helmets and blue work clothes.", - "id": 23403 - }, - { - "image_path": "G:\\images\\combined\\-508-_png_jpg.rf.673a16593d615b01905aa94ae0e5d57e.jpg", - "response": " Several construction workers(66,174),(386,997)(689,1),(996,997) in orange work vests(69,318),(355,753)(757,279),(997,997) and blue helmets(609,179),(686,237)(699,2),(847,79)(69,3),(361,183)(438,189),(503,237)(607,179),(685,237) are working on a construction site.", - "id": 23404 - }, - { - "image_path": "G:\\images\\combined\\-51-_png_jpg.rf.2ebaddea1ff58bb52694a6eaa0ef3c8a.jpg", - "response": "A group of workers wearing hard hats and giving thumbs up in a warehouse.", - "id": 23405 - }, - { - "image_path": "G:\\images\\combined\\-510-_png_jpg.rf.06777409eadeaaa706b03d3ac0c692cc.jpg", - "response": "A large bridge under construction with many metal beams and girders.", - "id": 23406 - }, - { - "image_path": "G:\\images\\combined\\-511-_png_jpg.rf.01ebab6ccb941ca30c90dee8c3907b0b.jpg", - "response": "A couple of men standing in a unfinished building.", - "id": 23407 - }, - { - "image_path": "G:\\images\\combined\\-512-_png_jpg.rf.998612d65fbe82d879996a075ac789d3.jpg", - "response": "A construction site with two people working on it.", - "id": 23408 - }, - { - "image_path": "G:\\images\\combined\\-513-_png_jpg.rf.e906306743c0b64a356aff911265f509.jpg", - "response": "A group of men standing in a tunnel.", - "id": 23409 - }, - { - "image_path": "G:\\images\\combined\\-514-_png_jpg.rf.5e79b75b929d87cb7b212e19f0e2e35b.jpg", - "response": "A construction site with three men standing in front of a blue wall. One of the men is pointing at a gas cylinder that is placed on the ground.", - "id": 23410 - }, - { - "image_path": "G:\\images\\combined\\-517-_png_jpg.rf.5ed5ba67717a6dc69ab9fb63e1b33ec2.jpg", - "response": "A group of men in blue overalls are standing on a steel girder. One man is on the left, another is in the center, and the third is on the right. They are all wearing yellow hard hats.", - "id": 23411 - }, - { - "image_path": "G:\\images\\combined\\-518-_png_jpg.rf.04b7f589e6e33b1791b0e3c53e760a60.jpg", - "response": "An electrician working on some wires up in the air.", - "id": 23412 - }, - { - "image_path": "G:\\images\\combined\\-52-_png_jpg.rf.105f75c395c7246e70b951745fc8ebad.jpg", - "response": "The image shows two workers on scaffolding, working on the exterior of a building under construction. The building is a glass and steel structure and is very tall. The workers are wearing hard hats and are focused on their task. One worker is in the foreground, standing on a platform and working on a metal beam. The other worker is further back, also working on the scaffolding. There are several other people in the image, some of them are further away and are only visible as blurs. There is also a bottle on the scaffolding.", - "id": 23413 - }, - { - "image_path": "G:\\images\\combined\\-520-_png_jpg.rf.4a86eeabf4a5e92b408166a06a7a8c7b.jpg", - "response": "A group of men looking at blueprints while wearing hard hats.", - "id": 23414 - }, - { - "image_path": "G:\\images\\combined\\-521-_png_jpg.rf.6aeb7df4191d847d9630f02d4229827e.jpg", - "response": "The image shows a scene of workers from the Power Grid Corporation of China, installing power cables on the exterior wall of a residential building. The building is a single-story structure with a red brick exterior and a grey roof. The workers are wearing yellow hard hats and blue work clothes. One worker is standing on a red ladder, which is propped against the building. Another worker is standing on the ground, holding a long red cable. There are several workers in the scene, but only one is actively working on the ladder. In the background, there is a pile of wooden boards and a pile of pink electrical cables.", - "id": 23415 - }, - { - "image_path": "G:\\images\\combined\\-522-_png_jpg.rf.213c844de74ff80d8a58a9e1cd60bfde.jpg", - "response": "a man climbing a ladder out of a flood", - "id": 23416 - }, - { - "image_path": "G:\\images\\combined\\-523-_png_jpg.rf.99cb14d1832e88f7bd1580d12068d72b.jpg", - "response": "A construction site with a large yellow crane in the background. In the foreground, three men are wearing yellow reflective vests and hard hats. One man is holding a blueprint and pointing to the left, while the other two men are having a conversation. One of the men is holding a walkie-talkie.", - "id": 23417 - }, - { - "image_path": "G:\\images\\combined\\-524-_png_jpg.rf.592b0eb7a7e5d7e7263cbf5226ce8456.jpg", - "response": "A group of men working on a power box.", - "id": 23418 - }, - { - "image_path": "G:\\images\\combined\\-528-_png_jpg.rf.89dbeb3db6919f20d7e21106e81d2f2d.jpg", - "response": "In the image there are two men working on a telephone pole in a wooded area. The telephone pole is tall and made of wood. The men are wearing blue and orange hard hats. The sky is overcast and there are trees surrounding the telephone pole.", - "id": 23419 - }, - { - "image_path": "G:\\images\\combined\\-53-_png_jpg.rf.1231cc4c90a4157a5fcc629847d5999e.jpg", - "response": "An employee of China National Offshore Oil Corporation (CNOOC) works at a platform in the South China Sea, August 20, 2013. China National Offshore Oil Corporation (CNOOC) on Tuesday announced its 2013 annual results, with net profit surging 32.5 percent year on year to 62.85 billion yuan. The company's total revenue last year hit a new high of 103.9 billion yuan, up 11.1 percent year on year. (Xinhua/Li Ziheng)", - "id": 23420 - }, - { - "image_path": "G:\\images\\combined\\-532-_png_jpg.rf.2bab5fb5008425ecd2aa196bb4a14709.jpg", - "response": "The image shows a construction site where workers are busy. There are multiple workers wearing yellow and white hard hats scattered across the site. They are working on a large concrete structure that has not yet been poured. The workers are standing on a large area of unfinished rebar cages that form the structure of the building. The sky is grey and overcast.", - "id": 23421 - }, - { - "image_path": "G:\\images\\combined\\-535-_png_jpg.rf.77da099dd47cdb3b64f297dfcc36b382.jpg", - "response": "A group of men in hard hats and overalls stand on a construction site at night. They are all wearing harnesses and are preparing to climb a large yellow ladder.", - "id": 23422 - }, - { - "image_path": "G:\\images\\combined\\-537-_png_jpg.rf.12b80313db4b5116835c8744d0bd35ac.jpg", - "response": "A worker is seen at a natural gas receiving station in the town of Yuzhno-Sakhalinsk", - "id": 23423 - }, - { - "image_path": "G:\\images\\combined\\-539-_png_jpg.rf.e866e12217d7e9be45ea45a4df35a01f.jpg", - "response": "A group of men wearing hard hats are walking through a construction site. Some of the men are carrying handbags. In the background there is a building with a lot of windows and a tower with a crane in front of it.", - "id": 23424 - }, - { - "image_path": "G:\\images\\combined\\-54-_png_jpg.rf.c0d470ce61081ce28f0cd54031eb39c3.jpg", - "response": "Men(742,446),(857,997)(821,433),(962,997)(566,512),(647,638) standing next to a pile(275,626),(795,997) of sandbags", - "id": 23425 - }, - { - "image_path": "G:\\images\\combined\\-544-_png_jpg.rf.194c4b2623e2d830c63c6e0cc5a18fe1.jpg", - "response": "A man in a white hard hat is building a brick wall.", - "id": 23426 - }, - { - "image_path": "G:\\images\\combined\\-545-_png_jpg.rf.3ca35336d53a93e169c60c311a4ff8b6.jpg", - "response": "A worker is repairing the power lines.", - "id": 23427 - }, - { - "image_path": "G:\\images\\combined\\-548-_png_jpg.rf.85821ae8c4630e6714664bb0ffd4bf45.jpg", - "response": "A man wearing a yellow safety helmet and protective glasses.", - "id": 23428 - }, - { - "image_path": "G:\\images\\combined\\-55-_png_jpg.rf.0d9b17ee4d2fa2fc43fc7ac536b93299.jpg", - "response": "A group of workers in yellow jackets and red pants are working on a train track.", - "id": 23429 - }, - { - "image_path": "G:\\images\\combined\\-550-_png_jpg.rf.19ed43918f898c44a3c712f34090226d.jpg", - "response": "A construction worker in a white shirt and grey pants is using a large wrench to tighten a bolt on a metal pole. Another worker in a black shirt and grey pants is using a large wrench to tighten a bolt on a metal pole to the left of the first worker. They are both wearing hard hats.", - "id": 23430 - }, - { - "image_path": "G:\\images\\combined\\-551-_png_jpg.rf.c4f508009a641875e14b900714b14940.jpg", - "response": "a group of men standing in a construction site", - "id": 23431 - }, - { - "image_path": "G:\\images\\combined\\-552-_png_jpg.rf.25b763a21fab0c23acb1959039370719.jpg", - "response": "A group of people in hard hats and safety vests standing in front of a building.", - "id": 23432 - }, - { - "image_path": "G:\\images\\combined\\-553-_png_jpg.rf.45073aebb513f30191202b2534e6f5ee.jpg", - "response": "A group of construction workers are working on a building site.", - "id": 23433 - }, - { - "image_path": "G:\\images\\combined\\-556-_png_jpg.rf.09b0e5e5ac4c4d0d060dac0011e05db8.jpg", - "response": "In the image, two men are working on a power line. One man is standing on a ladder and is reaching for the yellow helmet that is hanging above him. The other man is standing on the power line itself, wearing a yellow shirt and hat. They are both wearing safety gear.", - "id": 23434 - }, - { - "image_path": "G:\\images\\combined\\-559-_png_jpg.rf.27d7285003862d7ef855ccccc576282f.jpg", - "response": "The image is a book cover with a group of workers in hard hats and orange safety jackets working in a pit. They are standing around a large rock or boulder that has been removed from the pit. The workers are using a machine to remove the boulder. The background is a wooden structure.", - "id": 23435 - }, - { - "image_path": "G:\\images\\combined\\-560-_png_jpg.rf.d2946fa9fd1002b80b4a718e96aa229e.jpg", - "response": "The image shows two men working on a power line. They are standing on top of a wooden pole, and are dressed in blue uniforms. One of the men is on the left side of the pole, and the other is on the right. They are both holding onto the power line with their hands. The pole is made of wood, and it is brown in color. The power line is black, and it goes across the top of the pole. The sky above them is grey and overcast.", - "id": 23436 - }, - { - "image_path": "G:\\images\\combined\\-561-_png_jpg.rf.0ef2bba17f8bda15adeb4eff84d14239.jpg", - "response": "truck(241,4),(999,490)", - "id": 23437 - }, - { - "image_path": "G:\\images\\combined\\-562-_png_jpg.rf.8df319a7c20b31b1656fd478be261372.jpg", - "response": "The image shows a large construction site with a few people working. There are two people in the foreground, both crouching down and working with a pile of broken concrete and debris. They are wearing white shirts and appear to be Chinese. In the background, there are two other people working further away. There is also a yellow and blue tower in the background. The scene is set at a construction site with several materials such as wood planks, steel bars, and bricks scattered around.", - "id": 23438 - }, - { - "image_path": "G:\\images\\combined\\-563-_png_jpg.rf.0b1608d2adf9c320eae24a65f287a245.jpg", - "response": "In the image there are two people standing in front of a large industrial harbor. They are both wearing safety clothing which includes yellow hard hats, high visibility jackets and most likely other protective gear. They have their arms crossed and are looking straight ahead.", - "id": 23439 - }, - { - "image_path": "G:\\images\\combined\\-564-_png_jpg.rf.60b6202c7042b210b6867da70f5bf45a.jpg", - "response": "The rescue work is in progress. A woman(457,272),(682,536) is being pulled out of the hole.", - "id": 23440 - }, - { - "image_path": "G:\\images\\combined\\-565-_png_jpg.rf.82f90ecb140547e88145cb7ee5ca0b85.jpg", - "response": "A group of six men in hard hats and work clothes are gathered around a bench. They are all wearing different colored hard hats. One man is standing and the others are sitting. One man is holding a clipboard. They are all looking in the same direction.", - "id": 23441 - }, - { - "image_path": "G:\\images\\combined\\-566-_png_jpg.rf.e0f40ae88c878bdd5712d806ef93aa67.jpg", - "response": "A man wearing a hard hat and coveralls standing in a room filled with pipes. He is holding a clipboard and a pen.", - "id": 23442 - }, - { - "image_path": "G:\\images\\combined\\-569-_png_jpg.rf.0b0e9494cd2b5fc556b64f9d9326ed3a.jpg", - "response": "Four people in construction gear standing in front of a building that is under construction.", - "id": 23443 - }, - { - "image_path": "G:\\images\\combined\\-57-_png_jpg.rf.69ae063f4cbc251258bb0421743a192f.jpg", - "response": "A man in a green shirt and red hard hat is at a construction site, picking up red bricks from a pile and putting them into a wheelbarrow. There is a wheelbarrow next to the man, and a pile of red bricks to the left of the man. There is a building under construction in the background. There are also two other people at the construction site, one in the background and one on the far right.", - "id": 23444 - }, - { - "image_path": "G:\\images\\combined\\-571-_png_jpg.rf.e89059d2d2e53f905b221d2a4ef89aa5.jpg", - "response": "A couple of men are working on a power line in the snow.", - "id": 23445 - }, - { - "image_path": "G:\\images\\combined\\-575-_png_jpg.rf.1765b50eeeb9597389c38cbdfa25bf5e.jpg", - "response": "A worker in a hard hat and yellow jacket stands in a factory with equipment around him. He is in front of a large piece of machinery that has a red hot metal coil coming out of it. The background shows another worker in the factory.", - "id": 23446 - }, - { - "image_path": "G:\\images\\combined\\-576-_png_jpg.rf.ac8a0d4f161df6b920d01ed1c5a05b39.jpg", - "response": "A man in a yellow hard hat and orange safety vest is holding a rope.", - "id": 23447 - }, - { - "image_path": "G:\\images\\combined\\-577-_png_jpg.rf.c1fd427ad02cea579bc68a200548edbd.jpg", - "response": "A group of people walking down a street.", - "id": 23448 - }, - { - "image_path": "G:\\images\\combined\\-578-_png_jpg.rf.5b8abdb5ba3d4f4b5e084b82e5f58ae7.jpg", - "response": "Men working on a wooden structure.", - "id": 23449 - }, - { - "image_path": "G:\\images\\combined\\-581-_png_jpg.rf.596147e2e2842c3d18239f8047f3e902.jpg", - "response": "A group of men wearing hard hats are carrying a large green pipe. They are all wearing blue jackets and some have yellow helmets. They are all walking up a hill together, with the men on the left and right of the image carrying the pipe on either side. There are also some bushes in the background.", - "id": 23450 - }, - { - "image_path": "G:\\images\\combined\\-582-_png_jpg.rf.b7325a7daf74aa22edc80ef010ae48fb.jpg", - "response": "A man wearing a green shirt and a yellow hard hat is sitting in a room in front of two black monitors. He is wearing a watch on his left wrist and has a pen in his left hand. There is a chair in front of the monitors and another chair to the right of the man. There is a window behind the man and a bookcase to the left of the window. There is a table with a computer mouse and keyboard on it in front of the monitors. There is a book on the table and another book on the floor next to the table. There is a TV on the wall to the right of the man.", - "id": 23451 - }, - { - "image_path": "G:\\images\\combined\\-584-_png_jpg.rf.ac24940a6e638f80ff24f667322355c2.jpg", - "response": "In the image there is a robot that looks like a hexapod robot. It has a solar panel on its back and a white light on top. The robot is placed on a rocky terrain with mountains in the background. There are people in orange jackets and white helmets standing around the robot, watching it.", - "id": 23452 - }, - { - "image_path": "G:\\images\\combined\\-585-_png_jpg.rf.aa657e5d4e59e1de4b72a39142cc2278.jpg", - "response": "a group of people standing around each other", - "id": 23453 - }, - { - "image_path": "G:\\images\\combined\\-586-_png_jpg.rf.e91eabe5a74d7ba51ef8f135c4cad9e5.jpg", - "response": "A construction worker wearing a yellow hard hat is using a tool on a building.", - "id": 23454 - }, - { - "image_path": "G:\\images\\combined\\-587-_png_jpg.rf.bb032182dcf4d39da0652fa262e51001.jpg", - "response": "Men in suits and hard hats stand in a construction site.", - "id": 23455 - }, - { - "image_path": "G:\\images\\combined\\-588-_png_jpg.rf.3b7687e737248d0ae5cd8435a55c2ebd.jpg", - "response": "A group of men in white and safety gear are standing in a forest. They are standing underneath power lines and there is a tree in the foreground.", - "id": 23456 - }, - { - "image_path": "G:\\images\\combined\\-589-_png_jpg.rf.2076c38010761a33d9f093963718dfc6.jpg", - "response": "A group of construction workers standing around each other.", - "id": 23457 - }, - { - "image_path": "G:\\images\\combined\\-591-_png_jpg.rf.08875c5706b9ae18266d7b39b8487dfe.jpg", - "response": "The image shows a group of workers standing in a tunnel. The tunnel is a dark grey and is currently under construction. There is a machine with a drill on the left side of the image and a person on the right side wearing a yellow hard hat.", - "id": 23458 - }, - { - "image_path": "G:\\images\\combined\\-593-_png_jpg.rf.1f58231ec76ea122708a9fb68472a12a.jpg", - "response": "In the image there are two workers in white safety gear working on a power line. They are standing in a white bucket crane that is lifting them to the top of a power line pole. The workers are wearing white helmets and green work shirts.", - "id": 23459 - }, - { - "image_path": "G:\\images\\combined\\-597-_png_jpg.rf.36952ae625ddf354f08dd641e286b45a.jpg", - "response": "A construction worker in a red safety helmet is talking to another worker. They are both wearing orange and yellow reflective vests. The worker on the left is operating a large piece of machinery that appears to be drilling into the street. The street has several power lines running along it and there is a large concrete pillar being built in the background.", - "id": 23460 - }, - { - "image_path": "G:\\images\\combined\\-598-_png_jpg.rf.76700b0fba51afcbaf05998880438e3d.jpg", - "response": "The image shows a close-up of a construction worker on a building site. The worker is in the foreground, wearing a yellow hard hat and blue jacket, and is working on a wooden roof truss. They are standing on a roof, which has a pattern of dark brown and light brown triangles carved into it. The roof is made of wood and has a bright blue sky as a backdrop. In the background, there is a scaffolding structure that is painted in green and grey.", - "id": 23461 - }, - { - "image_path": "G:\\images\\combined\\-599-_png_jpg.rf.70830552a53cdd0785a6db4cf5ee218d.jpg", - "response": "A group of men are working on power lines.", - "id": 23462 - }, - { - "image_path": "G:\\images\\combined\\-6-_png_jpg.rf.a65c10cbf09f02d9724a74482f2d1a1c.jpg", - "response": "A construction crew working on a scaffolding outside a tall building.", - "id": 23463 - }, - { - "image_path": "G:\\images\\combined\\-60-_png_jpg.rf.94d4bd6a2467d64d9292a9c4de8b64f0.jpg", - "response": "A group of construction workers wearing blue jumpsuits and yellow safety helmets are working on a building site. They are standing on a scaffold and are working on a large structure. There are 8 workers in total, some are working on the structure, others are sitting on the scaffold. In the background, there are other buildings under construction.", - "id": 23464 - }, - { - "image_path": "G:\\images\\combined\\-601-_png_jpg.rf.000ff54f687d5b3718c4f8de35ea2dad.jpg", - "response": "A large crane is lifting a piece of concrete into place.", - "id": 23465 - }, - { - "image_path": "G:\\images\\combined\\-602-_png_jpg.rf.64593076b0c14f7b9b9076d9f83b0fbf.jpg", - "response": "A group of men standing next to each other wearing hard hats and coveralls.", - "id": 23466 - }, - { - "image_path": "G:\\images\\combined\\-603-_png_jpg.rf.26b5722a57cc620337abfde438acce72.jpg", - "response": "a group of people walking across a colorful path", - "id": 23467 - }, - { - "image_path": "G:\\images\\combined\\-606-_png_jpg.rf.a63ceb3d5e874472e2362cd1d1019b28.jpg", - "response": "In the image there are two workers wearing yellow hard hats standing on a construction site. They are both wearing yellow hard hats and the one on the left is also wearing a yellow vest. In the background there is a building under construction with a concrete wall that has the words \u201c\u6392\u70df\u5b54 \u6392\u70df\u652f\u6301\u201d written on it. There are several other people in the image some of which are wearing yellow hard hats and some are carrying brooms.", - "id": 23468 - }, - { - "image_path": "G:\\images\\combined\\-608-_png_jpg.rf.a10260ef516974a806e684893a900a5f.jpg", - "response": "A man wearing a white hard hat, orange safety vest, and a brown shirt is measuring a wooden beam with a measuring tape.", - "id": 23469 - }, - { - "image_path": "G:\\images\\combined\\-61-_png_jpg.rf.1ccd07684dd251423cb1b2c3a47dd762.jpg", - "response": "In the image, there is a factory scene where a worker is welding a steel pipe. The factory floor is filled with many other steel pipes of various sizes and shapes. The pipes are arranged in a large, open space, and some of them are placed on top of each other. The worker is wearing a yellow hard hat and protective gear. The factory is filled with industrial equipment and machinery, creating a busy and bustling atmosphere.", - "id": 23470 - }, - { - "image_path": "G:\\images\\combined\\-610-_png_jpg.rf.72d8465b94e1360cfc78ba71e858ee93.jpg", - "response": "The image shows a large bridge with a white and red framework in the background. There are two workers in red helmets and yellow reflective vests standing on the bridge, one on the left and the other on the right. They are holding tools in their hands. The left worker is holding a long black tool and the right worker is holding a tool with both hands. The bridge appears to be wet, with some workers' shadows visible on it.", - "id": 23471 - }, - { - "image_path": "G:\\images\\combined\\-612-_png_jpg.rf.d13b328a789b2198042cea4db841614d.jpg", - "response": "The image shows three men in military uniforms and yellow hard hats, climbing a ladder on the side of a large metal tower. The tower is white and has several crossbars supporting it. The men are wearing white gloves and have yellow hard hats. The sky is grey and overcast.", - "id": 23472 - }, - { - "image_path": "G:\\images\\combined\\-613-_png_jpg.rf.c7e79128d95e7054c0a56913528e6de8.jpg", - "response": "The photo shows two workers high up on a concrete wall, one on the left and one on the right, both working on it. They are wearing black uniforms and yellow helmets. The worker on the right is holding a light to illuminate the work area. The wall is white and the workers are wearing harnesses.", - "id": 23473 - }, - { - "image_path": "G:\\images\\combined\\-614-_png_jpg.rf.e71741c4ae10bc5c3fd69941fc90b102.jpg", - "response": "A group of men standing on top of train tracks.", - "id": 23474 - }, - { - "image_path": "G:\\images\\combined\\-615-_png_jpg.rf.0ae5795e3af1da168f6332e8652f400f.jpg", - "response": "A group of three men are standing around a table looking at blueprints. The man in the middle is wearing a yellow hard hat and a white shirt. The man on the left is wearing a black blazer and a white shirt. The man on the right is wearing a white shirt and glasses. They all appear to be wearing ties. There is a cell phone on the table and another one in the background. The table has several books on it as well.", - "id": 23475 - }, - { - "image_path": "G:\\images\\combined\\-616-_png_jpg.rf.cb42ecc7d1f62a3ff8ad029ac2b9c9c2.jpg", - "response": "A man in a blue shirt and blue hat is climbing into a well. He is wearing a blue shirt, blue hat, and black boots. He is holding a rope and there is a harness on his waist. In the well there is a pipe and a rope.", - "id": 23476 - }, - { - "image_path": "G:\\images\\combined\\-617-_png_jpg.rf.550676a9962cb4ee17486bdebc29e8d3.jpg", - "response": "A construction worker wearing a hard hat and carrying a tool bag kneels down next to a cement wall.", - "id": 23477 - }, - { - "image_path": "G:\\images\\combined\\-619-_png_jpg.rf.d2e356023c46d6e2029476e1d217aacf.jpg", - "response": "In the image there are two people wearing hard hats standing in a tunnel. The person on the left is shorter and is holding a clipboard with a piece of paper on it. The person on the right is taller and is looking at the paper on the clipboard. They both appear to be engineers or construction workers.", - "id": 23478 - }, - { - "image_path": "G:\\images\\combined\\-62-_png_jpg.rf.3d13c25a1b4ce227366c79be13f633fd.jpg", - "response": "A worker in a hard hat is using a red horn to communicate with another worker.", - "id": 23479 - }, - { - "image_path": "G:\\images\\combined\\-620-_png_jpg.rf.70fb8322dafd3d95409ee8267ea2cb28.jpg", - "response": "The image shows two workers in blue uniforms and white helmets, who are repairing a transformer on a power pole. The transformer is large and grey, and is located at the top of the pole. The workers are standing on a platform that has been placed around the pole, and are using tools to work on the transformer. One of the workers is holding a tool in his hand, while the other worker is reaching for something on the ground. The workers seem to be focused on their task, and are surrounded by wires and cables.", - "id": 23480 - }, - { - "image_path": "G:\\images\\combined\\-621-_png_jpg.rf.8de4c68c028c095b701376a475e320d0.jpg", - "response": "A group of men in hard hats and work clothes are on a snowy surface, pulling on a rope together. They are all holding onto a large metal beam and are standing on top of it.", - "id": 23481 - }, - { - "image_path": "G:\\images\\combined\\-622-_png_jpg.rf.bd0e0edc0c301489690137f727292ce4.jpg", - "response": "A group of three people standing in a field of dirt.", - "id": 23482 - }, - { - "image_path": "G:\\images\\combined\\-623-_png_jpg.rf.45acabe764d6ff756538922a9928e3a0.jpg", - "response": "A group of men standing on top of a wooden structure.", - "id": 23483 - }, - { - "image_path": "G:\\images\\combined\\-624-_png_jpg.rf.fc322f7b195af584c9bc256b8fe41276.jpg", - "response": "In the image there is a man wearing a white shirt and grey pants, he is wearing a red and yellow helmet and red and white gloves. He is working on a square stone garden feature with a small tree and flower bed in front of a blue wall. There are three bags on the ground near the man, two of them are open.", - "id": 23484 - }, - { - "image_path": "G:\\images\\combined\\-625-_png_jpg.rf.c56d84817c4b8824cc722895f6a1f4cf.jpg", - "response": "A group of men in blue overalls and yellow hard hats are working on an oil or gas pipeline that is exposed on the ground. They are hunched over the pipe, which is lying on the ground, and appear to be fixing or working on it. The ground is dirt and there are trees in the background.", - "id": 23485 - }, - { - "image_path": "G:\\images\\combined\\-626-_png_jpg.rf.1277ddeb5b5b1a6efabccdd3f4278537.jpg", - "response": "A group of people working on a\u96a7\u9053.", - "id": 23486 - }, - { - "image_path": "G:\\images\\combined\\-627-_png_jpg.rf.b8eaa673a90dad351f0d93d03a0e71f0.jpg", - "response": "a group of men standing on a balcony", - "id": 23487 - }, - { - "image_path": "G:\\images\\combined\\-630-_png_jpg.rf.2892f68edbac1503fb4c95f873a57e2f.jpg", - "response": "In the image, a worker is installing an electrical meter on the side of a brick building. The worker is wearing a black jacket and a yellow hard hat. There are several wires and cables attached to the meter, which is mounted on the building. The worker is using a tool to adjust the meter.", - "id": 23488 - }, - { - "image_path": "G:\\images\\combined\\-631-_png_jpg.rf.9be86a4683c82ea1f8286bf50dcd8ac4.jpg", - "response": "The image shows a group of workers inside a construction site. They are wearing hard hats and work clothes. Some of them are standing on a ladder, while others are working on a large piece of metal. The workers are holding onto yellow pipes and working with rebar. The scene is quite dark, with only a few spots of light coming from somewhere above the camera.", - "id": 23489 - }, - { - "image_path": "G:\\images\\combined\\-633-_png_jpg.rf.d9fd3d6133b2c73b5010d6a54ebabb0e.jpg", - "response": "A man wearing a yellow vest and a hard hat with lights on it.", - "id": 23490 - }, - { - "image_path": "G:\\images\\combined\\-637-_png_jpg.rf.0e83a8f508790377d1fab8b228353ba8.jpg", - "response": "In the image there is a factory scene with a person working on a steel bar. The factory has several other people working as well. There is a large amount of steel beams in the factory and a forklift is present as well. The factory is quite large and has a lot of equipment and machines present.", - "id": 23491 - }, - { - "image_path": "G:\\images\\combined\\-639-_png_jpg.rf.57abba64d44be56b152e089f681d5982.jpg", - "response": "A construction site with a worker in an orange uniform and blue pants using a tool to make adjustments to rebar.", - "id": 23492 - }, - { - "image_path": "G:\\images\\combined\\-640-_png_jpg.rf.3ac88f4e5245526987df8eb34b350c00.jpg", - "response": " Two construction workers(512,232),(893,996)(47,265),(547,997) looking at blueprints(2,737),(213,918) on a construction site", - "id": 23493 - }, - { - "image_path": "G:\\images\\combined\\-646-_png_jpg.rf.352e431afbf7bf79d453d02fb127dcdd.jpg", - "response": "An electrician working on some equipment.", - "id": 23494 - }, - { - "image_path": "G:\\images\\combined\\-650-_png_jpg.rf.8ead01ac1693af36b44ecf126a945be4.jpg", - "response": "The image shows a group of workers inside a large\u96a7\u9053. The tunnel is green and white in color and has a cement feel to it. The workers are wearing hard hats and some are wearing orange vests. They are working on the inside of the tunnel and have tools with them. There are also what appear to be electric cables in the image.", - "id": 23495 - }, - { - "image_path": "G:\\images\\combined\\-651-_png_jpg.rf.cef79658b1386e76bdd85d83bfe4edf1.jpg", - "response": "A man in a white hard hat and orange vest standing in front of a rock wall.", - "id": 23496 - }, - { - "image_path": "G:\\images\\combined\\-653-_png_jpg.rf.d57cf713e23821ebbc2fd2f546657e79.jpg", - "response": "The image shows the interior of a large tunnel. There are three men working in the tunnel, one of them is pulling a cable. The tunnel is white and grey in color. There are some rusty rails on the floor. On the right side of the image, there is a large pipe. The image also has some wires and a chair.", - "id": 23497 - }, - { - "image_path": "G:\\images\\combined\\-654-_png_jpg.rf.13c7834afbaca00c7cca70c554091cdf.jpg", - "response": "A construction worker wearing a hard hat and safety goggles is using a tool to cut through a metal object. The metal object is on a metal platform and the sparks from the tool are flying. In the background, there is a large construction site with metal frameworks and wooden beams. There is also a yellow crane operating in the distance.", - "id": 23498 - }, - { - "image_path": "G:\\images\\combined\\-657-_png_jpg.rf.b1f9ce4ffb7c5ae2cbed481162c73322.jpg", - "response": "In the image there are three people working in a cave. Two of them are wearing hard hats and one is wearing a black t-shirt. They are standing on a yellow metal platform and one person is welding a metal bar. The walls of the cave are brown and there is Chinese writing on the bottom right corner of the image.", - "id": 23499 - }, - { - "image_path": "G:\\images\\combined\\-658-_png_jpg.rf.1b19f2c392c060aae5140c9ea14d09da.jpg", - "response": "a man(353,373),(557,583) working on a building", - "id": 23500 - }, - { - "image_path": "G:\\images\\combined\\-661-_png_jpg.rf.a7e6b25242d8de53aca5617f4ab596e5.jpg", - "response": "A construction site with multiple people working on it.", - "id": 23501 - }, - { - "image_path": "G:\\images\\combined\\-666-_png_jpg.rf.0f076a80338fbb3e7b67198dfd1e38af.jpg", - "response": "In the image there is a group of people working on a large pipe that is running through the center of a city street. The pipe is being dug up by a yellow and grey backhoe. The workers are wearing blue and yellow jackets.", - "id": 23502 - }, - { - "image_path": "G:\\images\\combined\\-669-_png_jpg.rf.c4f9a51a3b96652ed00bba1c43790319.jpg", - "response": "The image shows a group of workers in blue uniforms and white helmets who are working with a yellow truck in the background. They are all holding hoses and nozzles and appear to be cleaning a large pipe. The workers are spread out around the pipe, some standing closer to the front of the pipe, and others near the middle and the back. The truck is parked in the middle of the scene, and there is a bench visible in the background on the right side. The workers are wearing white helmets, and some of them are also wearing orange reflective vests.", - "id": 23503 - }, - { - "image_path": "G:\\images\\combined\\-67-_png_jpg.rf.e783666c69f4d145678d75d87f323d44.jpg", - "response": "A group of people standing around a construction site.", - "id": 23504 - }, - { - "image_path": "G:\\images\\combined\\-670-_png_jpg.rf.400130966bf168f0f48d1b7dc2700b9e.jpg", - "response": "A group of men standing around a blue structure.", - "id": 23505 - }, - { - "image_path": "G:\\images\\combined\\-672-_png_jpg.rf.a6304130213ec0cf38e378e4701430ae.jpg", - "response": "The image shows two workers at a shipyard in China. They are standing on a platform and are working on a ship's propeller. The ship's hull is red and it is in the background. The workers are wearing hard hats and one of them is holding a large wrench. The other worker is holding a piece of metal with a crane. The crane has a hook on it and is lifting the metal towards the workers. The sky is blue and there are no clouds in the sky.", - "id": 23506 - }, - { - "image_path": "G:\\images\\combined\\-676-_png_jpg.rf.607f5760ee04b5e86e07e860449ee787.jpg", - "response": "In the image two workers are seen in a red uniform. They are working on a power tower. The power tower is grey in color and it is located in a lake. The sky is grey and it seems to be a cloudy day. The workers are wearing helmet for safety.", - "id": 23507 - }, - { - "image_path": "G:\\images\\combined\\-678-_png_jpg.rf.276e82781c7bd8bae0985d4ff1e245e3.jpg", - "response": "A group of men working on a construction site.", - "id": 23508 - }, - { - "image_path": "G:\\images\\combined\\-68-_png_jpg.rf.d1f0da0de1274f50e8648956d6ab8093.jpg", - "response": "a group of men wearing hard hats", - "id": 23509 - }, - { - "image_path": "G:\\images\\combined\\-680-_png_jpg.rf.65376e1ab9ad312ab5eaa47c64c7706e.jpg", - "response": "A group of four men dressed in construction gear. They are standing on a construction site and wearing yellow vests and hard hats. They are looking at a blueprint that one of them is holding.", - "id": 23510 - }, - { - "image_path": "G:\\images\\combined\\-682-_png_jpg.rf.2c0e6fbc6ff8ee570230724ea27ab78a.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is smiling at the camera. He is also wearing a yellow hard hat on his head and has a large drill in his hand. He is standing in front of a building that has scaffolding in the background.", - "id": 23511 - }, - { - "image_path": "G:\\images\\combined\\-683-_png_jpg.rf.909751543eaca4b850c4166349eaef75.jpg", - "response": "The image shows a group of workers in yellow vests and black safety helmets working on an electricity transformation substation. They are standing on the equipment, which includes pipes and other components. The sky is grey and overcast.", - "id": 23512 - }, - { - "image_path": "G:\\images\\combined\\-685-_png_jpg.rf.cabe9c13c6dee920425e2d01731b5afc.jpg", - "response": "A group of people working on a bridge that is under construction.", - "id": 23513 - }, - { - "image_path": "G:\\images\\combined\\-686-_png_jpg.rf.ce6d3b53b21346c963f5722e8c72330c.jpg", - "response": "A group of men are working on an electrical tower.", - "id": 23514 - }, - { - "image_path": "G:\\images\\combined\\-688-_png_jpg.rf.b4a1ef7e4c5bb8accf6816a5ba72b9fd.jpg", - "response": "A group of workers are working on a ladder.", - "id": 23515 - }, - { - "image_path": "G:\\images\\combined\\-69-_png_jpg.rf.7ac94ef170026ec7d5b4da24f0052fae.jpg", - "response": "a group of people standing under a bunch of umbrellas", - "id": 23516 - }, - { - "image_path": "G:\\images\\combined\\-690-_png_jpg.rf.cb54b20c292a20540cfff2f24693f794.jpg", - "response": "The image shows a large ship under construction at a shipyard. The ship is a red and white color and is in the middle of the shipyard. There are several cranes visible in the background, with one on the left side and another on the right side of the ship. A large yellow walkway has been built on the side of the ship, and several people are walking across it. Some of the people are wearing hard hats and uniforms. A car is visible on the right side of the image, and there is a ladder leading down to a lower level in the shipyard.", - "id": 23517 - }, - { - "image_path": "G:\\images\\combined\\-691-_png_jpg.rf.724ff747dbd18af29c4df2f7b8840ea5.jpg", - "response": "a group of men wearing red hats", - "id": 23518 - }, - { - "image_path": "G:\\images\\combined\\-692-_png_jpg.rf.ab07c4e848c577d12380e90ca51347b6.jpg", - "response": "A worker is seen through a hole in a wall. He is wearing a blue shirt, a red helmet and glasses. He is holding a long rod with both hands.", - "id": 23519 - }, - { - "image_path": "G:\\images\\combined\\-694-_png_jpg.rf.33790808d760e9fdd5ad020666a472c4.jpg", - "response": "A pair of workers wearing red helmets are looking over blueprints on the ground. They are standing in front of a large yellow construction vehicle.", - "id": 23520 - }, - { - "image_path": "G:\\images\\combined\\-696-_png_jpg.rf.fc69850842aab4d0e26fbcb5122de22b.jpg", - "response": "A\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u7a7f\u7740\u6a58\u8272\u7684\u9632\u8b77\u8863\u548c\u5b89\u5168\u5e3d\uff0c\u5728\u96a7\u9053\u7684\u5899\u4e0a\u9032\u884c\u6aa2\u67e5\u3002\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u8170\u9593\u7d81\u7740\u5b89\u5168\u5e36\uff0c\u6a58\u8272\u7684\u9632\u8b77\u8863\u4e0a\u6709\u53cd\u5149\u689d\u7eb9\uff0c\u5b89\u5168\u5e3d\u4e0a\u4e5f\u6709\u53cd\u5149\u7247\u3002\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u5728\u5b89\u5168\u5e3d\u4e0a\u7cfb\u7740\u6a59\u8272\u7684\u7e6b\u5e36\uff0c\u6a58\u8272\u9632\u8b77\u8863\u7684\u8896\u53e3\u7d81\u7740\u675f\u53e3\u3002\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u6b63\u5728\u6aa2\u67e5\u96a7\u9053\u7684\u67d0\u500b\u5730\u65b9\uff0c\u4ed6\u5074\u8eab\u9760\u5728\u96a7\u9053\u7684\u7246\u4e0a\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u652f\u7b46\u548c\u4e00\u672c\u672c\u5b50\u3002\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u7684\u672c\u5b50\u4e0a\u4e5f\u5beb\u7740\u5b57\u3002\u96a7\u9053\u5de5\u4f5c\u4eba\u54e1\u7684\u80cc\u666f\u662f\u7070\u8272\u7684\u96a7\u9053\uff0c\u96a7\u9053\u7684\u4e00\u5074\u8a2d\u6709\u8b77\u6b04\u3002\u96a7\u9053\u7684\u4e00\u7aef\u9023\u63a5\u8457\u7070\u8272\u7684\u7acb\u9ad4\u7d50\u69cb\u3002\u96a7\u9053\u7684\u5de5\u4f5c\u4eba\u54e1\u6b63\u5728\u6aa2\u67e5\u96a7\u9053\u7684\u5b89\u5168\u548c\u7dad\u8b77\u5de5\u4f5c\u3002", - "id": 23521 - }, - { - "image_path": "G:\\images\\combined\\-697-_png_jpg.rf.1ab0a0416d5d58cbe6407bed31f500f3.jpg", - "response": "A man in a yellow high vis jacket and white hard hat is holding a camera. He is standing in front of a pier.", - "id": 23522 - }, - { - "image_path": "G:\\images\\combined\\-699-_png_jpg.rf.e4cfe194463a7616d9b95da4b6fd12fb.jpg", - "response": "A group of people standing on a bridge working on train tracks.", - "id": 23523 - }, - { - "image_path": "G:\\images\\combined\\-70-_png_jpg.rf.811570d4d4ea943e9ba1e086056872d1.jpg", - "response": "A group of workers in hard hats are working on a construction site. They are building a sidewalk out of concrete slabs. One worker is kneeling down and using a tool to level a concrete slab. Another worker is sitting on the ground and working on a concrete slab. There is a pile of tools next to the workers and a building under construction in the background.", - "id": 23524 - }, - { - "image_path": "G:\\images\\combined\\-700-_png_jpg.rf.80deeccb62c0e6d1c7dc4a19319cd76d.jpg", - "response": "In the image there are multiple people working at a construction site. They are wearing blue uniforms and yellow hard hats. The people are working on a large structure that has not yet been completed. There are many metal bars and rebar visible in the image. Some of the workers are standing on the ground while others are standing on the structure that is being built. The sky is blue with some clouds in the background.", - "id": 23525 - }, - { - "image_path": "G:\\images\\combined\\-701-_png_jpg.rf.97f35313acf17ee295caa056fc86f8ec.jpg", - "response": " Workers(562,409),(656,996)(427,409),(628,997) at a steel production line", - "id": 23526 - }, - { - "image_path": "G:\\images\\combined\\-703-_png_jpg.rf.f0b9716cdddabf97980cb593169ca1b0.jpg", - "response": "A man in a red hard hat standing in front of a metal machine.", - "id": 23527 - }, - { - "image_path": "G:\\images\\combined\\-705-_png_jpg.rf.43267b0009669f0a776291febb2b1265.jpg", - "response": "A worker in a hard hat and face mask stands in a dimly lit tunnel. They are wearing an orange vest and are standing on a platform. There is a red and white striped bar across the platform and a white light above the worker's head. The floor of the tunnel is wet and there is a hose on the left side of the platform. The walls of the tunnel are lined with wooden planks.", - "id": 23528 - }, - { - "image_path": "G:\\images\\combined\\-707-_png_jpg.rf.0581d9450230c4669e9d1fb75b4050e5.jpg", - "response": "A man wearing a yellow hard hat and carrying a large piece of lumber over his shoulder.", - "id": 23529 - }, - { - "image_path": "G:\\images\\combined\\-710-_png_jpg.rf.e523184dc432b81870e3af5d336be9b0.jpg", - "response": "The photo shows two workers in a factory. One worker is in the foreground and is wearing a grey shirt, dark grey pants and a white helmet. The worker is kneeling down and is operating a machine with a cable connected to it. The second worker is in the background and is wearing a red shirt and grey pants. They are also wearing a white helmet.", - "id": 23530 - }, - { - "image_path": "G:\\images\\combined\\-712-_png_jpg.rf.8e2e9e2a3b0e0412e4e05a6ef93fd1a1.jpg", - "response": "A group of men in hard hats and blue coveralls stand in a half circle in front of a large metal structure. They are all holding pieces of red and white netting. In the background, a large concrete building is visible.", - "id": 23531 - }, - { - "image_path": "G:\\images\\combined\\-713-_png_jpg.rf.59a616c60aa9214fb5d9b1708365248e.jpg", - "response": "The image shows three workers in yellow uniforms and white helmets up in a crane. They are accompanied by a fourth worker in a white uniform and yellow helmet who is not in the crane. The workers are in the middle of a construction site with several pillars around them. They are working on a power line with a yellow wire and a black wire. The crane they are in is yellow and grey. There are also several other people in the image, some of them are wearing ties and some are wearing helmets. The background shows a car and a truck.", - "id": 23532 - }, - { - "image_path": "G:\\images\\combined\\-714-_png_jpg.rf.635f3eac36f8a5c1d0440f2510870578.jpg", - "response": "A couple of men in uniforms working on power lines.", - "id": 23533 - }, - { - "image_path": "G:\\images\\combined\\-715-_png_jpg.rf.6f03a9de240961bfa8d74ce50ddd485a.jpg", - "response": "A group of people standing on top of a building site.", - "id": 23534 - }, - { - "image_path": "G:\\images\\combined\\-716-_png_jpg.rf.6d3fece54d603102f707bb8de088b484.jpg", - "response": "A worker in a white shirt and wearing a cap is using a large tool to work on a power box. He is bent over and looking at the box. He is wearing a green and brown camo shirt. The sky is white and it appears to be raining. There are two red and white safety cones in the background. A building with many windows is in the background on the right. The top of a large metal pole is in the foreground on the right.", - "id": 23535 - }, - { - "image_path": "G:\\images\\combined\\-719-_png_jpg.rf.0b1ce3a39ea8869b2c94d6f5cf617569.jpg", - "response": "A man in a red hat and orange jacket using a device to survey something.", - "id": 23536 - }, - { - "image_path": "G:\\images\\combined\\-72-_png_jpg.rf.a3d6ba85c3d88a0484eec0d959533974.jpg", - "response": "In the image, workers wearing orange vests are seen constructing a railway line. The railway is under construction and the workers are putting finishing touches to it. The railway is located in a mountainous area and the workers are working on a steel girder. The mountain in the background adds to the picturesque beauty of the scene.", - "id": 23537 - }, - { - "image_path": "G:\\images\\combined\\-722-_png_jpg.rf.5e91886c4eb20b9991b80fd1a0e09688.jpg", - "response": "A man and a woman are crouched down looking at a blueprint. They are wearing red and white hard hats. They are on a construction site with a few cranes in the background.", - "id": 23538 - }, - { - "image_path": "G:\\images\\combined\\-723-_png_jpg.rf.da3bc5960770c634504a506def33ebf1.jpg", - "response": "Men(236,462),(341,733)(328,450),(431,734)(422,479),(501,711) walking in front of a building under construction", - "id": 23539 - }, - { - "image_path": "G:\\images\\combined\\-726-_png_jpg.rf.38d6f39b4bd150e157e596150d818172.jpg", - "response": "A group of people walking down a street.", - "id": 23540 - }, - { - "image_path": "G:\\images\\combined\\-727-_png_jpg.rf.0c9ca54a10c8bd22713956fdcce2cb48.jpg", - "response": "In the image there is a construction site with a person wearing a helmet and orange boots, sitting on the ground welding two pieces of metal together. There are also two other people in the picture, one on the far left and one on the far right, both are wearing yellow. On the ground there is a lot of debris including wood, metal, and wires. There is also a red and white fire extinguisher on the ground. In the top right corner there is a camera.", - "id": 23541 - }, - { - "image_path": "G:\\images\\combined\\-728-_png_jpg.rf.4856154246a9931fa06f1ce47cf22cb1.jpg", - "response": "The image shows a group of people standing in a parking lot next to a grey car and a mountain. There are nine people in total, with some wearing hard hats and others wearing suits. The people are standing in front of a concrete wall that has the words \"\"No Entry\"\" written on it in black capital letters. The wall is made up of many small black squares. The group appears to be a mix of men and women.", - "id": 23542 - }, - { - "image_path": "G:\\images\\combined\\-73-_png_jpg.rf.37846b1395bbd85958b4ef16c65d4d83.jpg", - "response": " Two men(402,319),(578,774)(608,302),(809,773) walking through a large pipe", - "id": 23543 - }, - { - "image_path": "G:\\images\\combined\\-731-_png_jpg.rf.ebcf55bfe4bd323f6e03a9b2dbbe5b09.jpg", - "response": "A team of rescue workers in China's Shandong province use a rope to pull a man out of a collapsed mine.", - "id": 23544 - }, - { - "image_path": "G:\\images\\combined\\-732-_png_jpg.rf.b9f6a6b6fe1f3f67bf8643b575d987ab.jpg", - "response": "The image depicts two workers repairing a power line in a snowy and icy environment. They are standing on a ladder, which is placed against a tall power pole. The pole has several electrical components attached to it. The workers are wearing helmets for safety. The snow and ice on the ground and the electrical components give the impression that the photo was taken during winter.", - "id": 23545 - }, - { - "image_path": "G:\\images\\combined\\-733-_png_jpg.rf.49fef9c42dcee452f39a44900ca4a3e6.jpg", - "response": "A man in a yellow hard hat is holding a yellow hard hat and is standing in front of a group of men dressed in white with various tools.", - "id": 23546 - }, - { - "image_path": "G:\\images\\combined\\-735-_png_jpg.rf.3c34bcf505d2aa10b51a40f51584f792.jpg", - "response": "A group of people working on a construction site.", - "id": 23547 - }, - { - "image_path": "G:\\images\\combined\\-742-_png_jpg.rf.9cb2ed3d939aadd73309e3c2d9374930.jpg", - "response": "In the image, a construction worker is sitting on a sidewalk, wearing a yellow hard hat and a blue shirt. The worker is holding a cell phone in his right hand, which is raised to his ear as if he is talking. The worker is also wearing a black bag with a white strap over his shoulder.", - "id": 23548 - }, - { - "image_path": "G:\\images\\combined\\-743-_png_jpg.rf.921634ee7343d7c3a02d60f5a1e079a5.jpg", - "response": "a man wearing a hard hat and camouflage jacket is working on a building site", - "id": 23549 - }, - { - "image_path": "G:\\images\\combined\\-744-_png_jpg.rf.d0f89f3cb21c4339c8dbcc638bebf62d.jpg", - "response": "A man in a white hard hat is using a machine.", - "id": 23550 - }, - { - "image_path": "G:\\images\\combined\\-745-_png_jpg.rf.4b056f4331b75a839cf609e3948bf236.jpg", - "response": "A group of people standing around a construction site.", - "id": 23551 - }, - { - "image_path": "G:\\images\\combined\\-746-_png_jpg.rf.631056f9a104d5e7e30dbd5698ad7bb5.jpg", - "response": "A large group of Chinese workers wearing red helmets(566,214),(723,322)(247,215),(414,326)(388,179),(536,281)(667,122),(821,222)(802,354),(996,471)(804,119),(933,210)(23,209),(213,318)(889,126),(997,218)(196,115),(350,199)(727,113),(858,195)(3,177),(110,259)(408,177),(541,269)(801,118),(901,197)(802,118),(901,197)(196,115),(350,199)(804,113),(997,218)(802,354),(996,471)(408,177),(541,269)(801,118),(901,197)(802,118),(901,197)(388,179),(536,281)(802,354),(996,471)(23,209),(213,318)(23,209),(213,318)(804,113),(997,218)(801,118),(997,218)(388,179),(5", - "id": 23552 - }, - { - "image_path": "G:\\images\\combined\\-747-_png_jpg.rf.427ac128d1ca0807f52d1d0122c16378.jpg", - "response": "The image shows several workers at a construction site. They are all wearing blue uniforms and safety gear. The worker at the left is holding a blue dolly with a sign on it that says \"safety first\". The worker in the middle is standing between two large metal poles with wires attached to them. The worker on the right is standing on a yellow valve with a red dragon design on it. They are all looking up at the wires and the structure they are working on.", - "id": 23553 - }, - { - "image_path": "G:\\images\\combined\\-748-_png_jpg.rf.41afb5936521972e59742eec7df1a3f6.jpg", - "response": "A group of people working on a construction site.", - "id": 23554 - }, - { - "image_path": "G:\\images\\combined\\-749-_png_jpg.rf.a807faf08018c7d61a8647e1e0b3061d.jpg", - "response": "A man wearing a red hard hat, a black jacket, and a white shirt smiles at the camera. He is standing in front of a construction site with many wooden poles around him.", - "id": 23555 - }, - { - "image_path": "G:\\images\\combined\\-751-_png_jpg.rf.acfdc9c90b81f8264fdf54643fe40a7d.jpg", - "response": "A group of people standing in a unfinished building.", - "id": 23556 - }, - { - "image_path": "G:\\images\\combined\\-752-_png_jpg.rf.9532842882f385528548c5d56b5ff7ad.jpg", - "response": "A crane is lifting a very large tree trunk on to the back of a truck. The trunk is white and very thick. There are many people around the truck and crane, some climbing on the tree trunk and some standing on the ground. There is a man on the right side of the truck holding a sign. The sky is overcast.", - "id": 23557 - }, - { - "image_path": "G:\\images\\combined\\-754-_png_jpg.rf.1e945148b0eab77ef92c4fdbcf3bb825.jpg", - "response": "The image shows several construction workers at a construction site. They are wearing yellow hard hats and work clothes. They are working on a large concrete foundation, pouring concrete onto rebar. There is a crane in the background.", - "id": 23558 - }, - { - "image_path": "G:\\images\\combined\\-755-_png_jpg.rf.09b97410c7ab41d4139a199e7d04a93d.jpg", - "response": "a large tunnel that is grey in color", - "id": 23559 - }, - { - "image_path": "G:\\images\\combined\\-758-_png_jpg.rf.ddaa7ac8c45e51d04731cc430c07b14f.jpg", - "response": "A group of three men standing on scaffolding.", - "id": 23560 - }, - { - "image_path": "G:\\images\\combined\\-759-_png_jpg.rf.713cd6c1c9782fce32e74d4888c2c0f9.jpg", - "response": "In the image there is a construction worker wearing a white helmet and a green vest. He is working on a construction site that has multiple cranes in the background. In the foreground, there is a large piece of wood that the worker is holding. There is also a white hard hat and a yellow vest in the image, suggesting that they are related to the construction site. The photo is taken from the perspective of the worker, looking out at the site.", - "id": 23561 - }, - { - "image_path": "G:\\images\\combined\\-760-_png_jpg.rf.a0a70f9f5256632d6bd3ec871431be33.jpg", - "response": "Some workers are on a building site wearing pink shirts and white helmets.", - "id": 23562 - }, - { - "image_path": "G:\\images\\combined\\-761-_png_jpg.rf.437cc90ee867ec824a3a08236722c854.jpg", - "response": "A man in a yellow hard hat is standing in a house that is still under construction. He is wearing a brown shirt and blue jeans. He is holding a level in his right hand and a hammer in his left hand. He is standing on a piece of wood that has been cut into a triangle. The man is black and has a goatee.", - "id": 23563 - }, - { - "image_path": "G:\\images\\combined\\-763-_png_jpg.rf.6a64a5645a895dcfc1a04d5f86e65b0b.jpg", - "response": "In the image there are two men standing on a platform, both are wearing blue overalls. One of the men is standing on the right side of the platform and the other one is standing on the left side. They are both looking down. Underneath them, there is a yellow substance. To the left of the platform, there is a white and yellow wall. On this wall, there is a black arrow pointing downwards. Above the arrow, there is a black line. To the right of the platform, there is a white wall.", - "id": 23564 - }, - { - "image_path": "G:\\images\\combined\\-764-_png_jpg.rf.02b46920483d997e60a5f797ce627e09.jpg", - "response": "In the foreground, there's a man wearing a white helmet, a orange vest, and a white shirt. He's holding a black walkie-talkie. In the background, there's another man wearing a white helmet and a yellow vest. He's standing in front of a red container.", - "id": 23565 - }, - { - "image_path": "G:\\images\\combined\\-766-_png_jpg.rf.95851b1b0d960e3a70efebd0a69629cf.jpg", - "response": "In the image there is a group of people standing around a table full of metal rods. They are all wearing blue hard hats and work clothes. Some of the people are standing closer to the table while others are standing further back. Some of the people are holding blue hard hats and there are several hard hats laying on the table and on the people.", - "id": 23566 - }, - { - "image_path": "G:\\images\\combined\\-769-_png_jpg.rf.686862d858ada176649968f6a4f6024c.jpg", - "response": "a group of people standing around each other", - "id": 23567 - }, - { - "image_path": "G:\\images\\combined\\-77-_png_jpg.rf.1672e30a21d24d68e4f06b61d7316d5b.jpg", - "response": "A man in a yellow hard hat and grey jacket with the jacket unzipped stands on a construction site. He is holding a red and white power tool. The tool is spraying out a white liquid. The man is standing on a mesh platform that is on top of a building. The building is made of concrete and has a city and a mountain in the background. The man is wearing yellow overalls.", - "id": 23568 - }, - { - "image_path": "G:\\images\\combined\\-770-_png_jpg.rf.243f0c4f277d25b021771c1778a53a43.jpg", - "response": "In the image there is a group of people working on a construction site. They are wearing yellow helmets and are standing next to a large structure that is under construction. In front of the construction workers there is a large pile of steel bars that have been connected together. There is also a large pile of iron pipes that have been connected together. The pipes and steel bars are all sitting on the ground. In the background there is a blue warehouse that is under construction. There is also a red forklift that is parked in the distance.", - "id": 23569 - }, - { - "image_path": "G:\\images\\combined\\-771-_png_jpg.rf.c10e3fb45895d03ac4d8376f6386f8ec.jpg", - "response": "The image shows two people working on a construction site. They are crouched down over a large grid of rebar, tying wires together. They are wearing hard hats and appear to be focused on their task. There is a large building under construction in the background.", - "id": 23570 - }, - { - "image_path": "G:\\images\\combined\\-773-_png_jpg.rf.e59f12b5e8261faeddcc49cc7cb27e72.jpg", - "response": "The image shows a group of people standing around a table full of water and other items. Some of the people are wearing yellow hard hats, and there is a red bag that says \"\u4e2d\u56fd\u52a0\u6cb9\" on it. The group appears to be a mix of men and women, and some of them are holding bottles. They are standing on a dirt field, and there is a building in the background.", - "id": 23571 - }, - { - "image_path": "G:\\images\\combined\\-774-_png_jpg.rf.3499468b259b74fbaff92e878a92b7ea.jpg", - "response": "A cement truck is unloading its load of concrete into a large pile.", - "id": 23572 - }, - { - "image_path": "G:\\images\\combined\\-776-_png_jpg.rf.195c287648cf1bcbe78bfff092edf511.jpg", - "response": "A construction worker in a hard hat and blue jumpsuit is welding a steel beam on a construction site.", - "id": 23573 - }, - { - "image_path": "G:\\images\\combined\\-777-_png_jpg.rf.7b64295b43de81ca8b6bfb368b8cc3b4.jpg", - "response": "A construction worker in a white shirt and grey pants standing on a bridge that is under construction. The worker is wearing a white helmet and has a tool bag on his back. He is reaching for a box on the bridge.", - "id": 23574 - }, - { - "image_path": "G:\\images\\combined\\-778-_png_jpg.rf.164fe9afef4e5fcc5a2104133935ce73.jpg", - "response": "In the image there is a scene of a construction site. Two people are working on building a bamboo structure. The person in front is holding a drill and is drilling into a bamboo pole. The person further back is standing on the side of the structure. In the background, there are buildings in various sizes and colors. They are built on the side of a hill. The sky is overcast.", - "id": 23575 - }, - { - "image_path": "G:\\images\\combined\\-779-_png_jpg.rf.76b7c6cb0f35c0d4e25be8225b0bcc3a.jpg", - "response": "A group of workers are working on a large metal tower.", - "id": 23576 - }, - { - "image_path": "G:\\images\\combined\\-78-_png_jpg.rf.77bef326606ec7e75b6a96350ebc9f11.jpg", - "response": "a group of men standing around a hole in the ground", - "id": 23577 - }, - { - "image_path": "G:\\images\\combined\\-780-_png_jpg.rf.73801d5f64f86d24e06772cac360d470.jpg", - "response": "A group of men standing around a construction site", - "id": 23578 - }, - { - "image_path": "G:\\images\\combined\\-783-_png_jpg.rf.c57345ecf47e49982a01cc09fb98c2a7.jpg", - "response": "A group of rescue workers digging through rubble.", - "id": 23579 - }, - { - "image_path": "G:\\images\\combined\\-79-_png_jpg.rf.e61010dd380c28522464b4bfbea0afde.jpg", - "response": "Four construction workers are standing in a line, wearing yellow hard hats, white hard hats, yellow and green work vests, and yellow and green safety harnesses.", - "id": 23580 - }, - { - "image_path": "G:\\images\\combined\\-790-_png_jpg.rf.fcc0aac3a066016284bf3ed17ce95d09.jpg", - "response": "A group of men working on a construction site.", - "id": 23581 - }, - { - "image_path": "G:\\images\\combined\\-795-_png_jpg.rf.e1f3380dd5ca42722640d3e107faa81e.jpg", - "response": "a group of men standing around a construction site", - "id": 23582 - }, - { - "image_path": "G:\\images\\combined\\-797-_png_jpg.rf.b221c324d26a8ac88c7c122dbd0774f1.jpg", - "response": "A group of men working on a construction site, making cement.", - "id": 23583 - }, - { - "image_path": "G:\\images\\combined\\-8-_png_jpg.rf.2302ccd782839b68d9185ba40d0f963f.jpg", - "response": "An electrician repairs a power line.", - "id": 23584 - }, - { - "image_path": "G:\\images\\combined\\-800-_png_jpg.rf.b44342fcf55eb15ea377a24251c4e103.jpg", - "response": "A group of people standing around a large crane.", - "id": 23585 - }, - { - "image_path": "G:\\images\\combined\\-801-_png_jpg.rf.e06f2526d895ab8dd27e3e1750ddd0a0.jpg", - "response": "The image shows a group of men standing in front of a construction site. They are all wearing hard hats and some of them are wearing suits. In the background, there is a truck and a mountain.", - "id": 23586 - }, - { - "image_path": "G:\\images\\combined\\-802-_png_jpg.rf.1bfaccbf4196cf6173daafc03f4c2519.jpg", - "response": "A man in a high visibility vest and blue hard hat stands in front of a scaffolding structure.", - "id": 23587 - }, - { - "image_path": "G:\\images\\combined\\-803-_png_jpg.rf.3fabe7817962be0216ab4daed257aea7.jpg", - "response": "The image shows a large yellow crane with a wooden plank being loaded onto a truck. The plank is being held by a worker who is wearing a yellow hat and striped shirt. The truck is black and has the number 9654 on the door. There are also two people in the background, one near the left side of the image and another near the right side. A red tower is visible in the background, as well as a few other cranes in the distance. The sky is blue and there are a few clouds.", - "id": 23588 - }, - { - "image_path": "G:\\images\\combined\\-804-_png_jpg.rf.7b18680f756348a0c474c1f049884489.jpg", - "response": "A miner is using a jackhammer to break up rock in a mine.", - "id": 23589 - }, - { - "image_path": "G:\\images\\combined\\-806-_png_jpg.rf.c7b8c2e3bde293c32f57706d4e46c511.jpg", - "response": "A worker in a blue jacket and orange helmet is working on a green piece of equipment. They are in a factory setting and there is a book near them.", - "id": 23590 - }, - { - "image_path": "G:\\images\\combined\\-81-_png_jpg.rf.905993ce8afe646a76f1aa25298cd1f1.jpg", - "response": "The image shows three workers inside a large tunnel. They are all wearing hard hats and one is holding a shovel. The two others are using the shovel to scoop water out of a large puddle on the floor of the tunnel. The tunnel is white and made of concrete. There is a blue box on the right side of the tunnel.", - "id": 23591 - }, - { - "image_path": "G:\\images\\combined\\-810-_png_jpg.rf.fdf52ddbdbab70f6b3dbd5ce630fae4d.jpg", - "response": "The image shows a snowy scene with several men working on a power line. There are three men in the picture, all wearing yellow hard hats. One man is standing on a snowy road, while two others are standing on the left side of the image. Another man is working on a power line on the right side of the image. There are also two power boxes in the picture. The sky is covered with thick clouds and it seems to be snowing.", - "id": 23592 - }, - { - "image_path": "G:\\images\\combined\\-812-_png_jpg.rf.bb9e3a93ee244bf9ec590f7c2d2989c2.jpg", - "response": "The image is a collage of three pictures. In the middle picture, an older man is wearing a white hard hat and an apron. He is kneeling down and holding a rock in his left hand. He is smiling and looking at the rock. In the top picture, a white ball is floating above the man's head. The bottom picture is a close up of the man holding the rock.", - "id": 23593 - }, - { - "image_path": "G:\\images\\combined\\-817-_png_jpg.rf.6292e183b3e2ae21107c56c1ce039bf5.jpg", - "response": "A worker in a yellow vest and hard hat is looking at a drone controller in his hands. He is standing in a factory with other workers.", - "id": 23594 - }, - { - "image_path": "G:\\images\\combined\\-818-_png_jpg.rf.6443adae52c7658b1ffc99f089c5ab46.jpg", - "response": "A man in a yellow hard hat is pointing at something in the distance. A man in a blue jumpsuit is sitting on a forklift, smiling. Another man in a blue jumpsuit is standing next to the forklift and the man in the yellow hard hat.", - "id": 23595 - }, - { - "image_path": "G:\\images\\combined\\-82-_png_jpg.rf.370b7bf01f10f0439307194a18cbc1e9.jpg", - "response": "In the image there is a person wearing a white helmet and a white shirt with a name tag that says\u8001\u864e. They are standing in a construction site with multiple large pieces of steel in front of them. There is a red and white forklift in the background and a large yellow and red construction vehicle behind that. There is also a white sign with Chinese writing on the right side of the image.", - "id": 23596 - }, - { - "image_path": "G:\\images\\combined\\-820-_png_jpg.rf.7a1d45ced808fb628f0cdba43a05fb30.jpg", - "response": " A worker(344,362),(579,748) is seen inside the newly discovered underground tunnel.", - "id": 23597 - }, - { - "image_path": "G:\\images\\combined\\-821-_png_jpg.rf.963f745d13237d3a93265734063a6542.jpg", - "response": "In the image there is a man wearing a blue helmet and jacket working on machinery. The machinery is a large piece of equipment with many pipes and valves. The man is holding a tool and appears to be focused on the task at hand.", - "id": 23598 - }, - { - "image_path": "G:\\images\\combined\\-822-_png_jpg.rf.39be163cdace986766c0ad18f220cc1c.jpg", - "response": "The image shows two men working on a construction site. One man is standing on a platform and pointing towards something, while the other man is standing on a ladder and holding a tool. They are both wearing yellow helmets and the man on the platform is also wearing a white shirt and grey pants. The man on the ladder has no shirt and is wearing green shorts. The wall they are working on is white and there is a window next to them. The platform and ladder are covered with a green tarp.", - "id": 23599 - }, - { - "image_path": "G:\\images\\combined\\-823-_png_jpg.rf.9571ef5f1d57b916e6600801cb9431a8.jpg", - "response": "The image shows a group of four people standing in front of a building under construction. They are all wearing hard hats, and the man on the far right is also wearing a black jacket. In front of the group, there is a large pile of bricks wrapped in plastic. The pile is labeled with the number 8. On the ground, there are several other bricks scattered around the area. The background shows a large building with scaffolding in place.", - "id": 23600 - }, - { - "image_path": "G:\\images\\combined\\-825-_png_jpg.rf.2652a8eca2371ceef314c2a97d095bfe.jpg", - "response": "A group of men in suits and hard hats stand in a circle in front of a building under construction.", - "id": 23601 - }, - { - "image_path": "G:\\images\\combined\\-826-_png_jpg.rf.0bb3363fceb8f38d2a3e6cc1f159b4aa.jpg", - "response": "A group of people standing around a construction site looking at a poster.", - "id": 23602 - }, - { - "image_path": "G:\\images\\combined\\-827-_png_jpg.rf.8d83d725a28d61e05993ef7024eafa3d.jpg", - "response": "The image shows two workers walking side by side in front of a construction site. They are both wearing green clothes and yellow hard hats. In the background, there are several other people working at the site. The construction site has several pillars and a large building under construction. There are also several cranes working in the distance.", - "id": 23603 - }, - { - "image_path": "G:\\images\\combined\\-830-_png_jpg.rf.d4de9ac5ab014ca9c8ac827dcbcf039c.jpg", - "response": "A group of workers in blue uniforms and white helmets are standing on a tall structure that resembles a tower. They are working on the structure, which is covered in a white substance. The scene is set against a backdrop of sand and sky.", - "id": 23604 - }, - { - "image_path": "G:\\images\\combined\\-831-_png_jpg.rf.99ed267e2c42a77e01b5881688f2c28d.jpg", - "response": "A man in a yellow hard hat is holding a clipboard and looking at it. He is standing in front of a large, industrial machine with many pipes and gauges. The machine is silver and red and appears to be very complex. The man is wearing a black shirt and has a yellow hard hat on. He is also wearing a pair of yellow overalls.", - "id": 23605 - }, - { - "image_path": "G:\\images\\combined\\-833-_png_jpg.rf.4d0d13d7920712f8294753a6f5702f26.jpg", - "response": "A group of people in hard hats and grey clothes gathered around a table with two laptop computers on it.", - "id": 23606 - }, - { - "image_path": "G:\\images\\combined\\-834-_png_jpg.rf.b7bab73d80828f527c7cf279b3c938d1.jpg", - "response": " Men(635,374),(901,997)(375,454),(510,783)(155,398),(349,997) working on a large metal cylinder", - "id": 23607 - }, - { - "image_path": "G:\\images\\combined\\-836-_png_jpg.rf.b3516ef96d26098ac46d13bfdd89d72e.jpg", - "response": "A construction worker is using a jackhammer to break up concrete.", - "id": 23608 - }, - { - "image_path": "G:\\images\\combined\\-837-_png_jpg.rf.ef7331ce03e111ab22cb314a2739a84f.jpg", - "response": "A group of men working on a roof.", - "id": 23609 - }, - { - "image_path": "G:\\images\\combined\\-838-_png_jpg.rf.db1cbd02c20c60b16b8779196de2279a.jpg", - "response": "A group of men standing on top of a construction site.", - "id": 23610 - }, - { - "image_path": "G:\\images\\combined\\-839-_png_jpg.rf.885a274eae92344405fda6b517318ace.jpg", - "response": "A construction worker wearing a yellow hard hat is talking to another construction worker.", - "id": 23611 - }, - { - "image_path": "G:\\images\\combined\\-842-_png_jpg.rf.b1a18601383c6d274f872397a00aa08c.jpg", - "response": "In the image there are three men wearing white lab coats and green safety helmets. They are working with wood and appear to be creating something out of it. There are two pairs of yellow gloves and a pile of wood shavings in the scene as well.", - "id": 23612 - }, - { - "image_path": "G:\\images\\combined\\-843-_png_jpg.rf.95443e007331e2e00a107180e21c4468.jpg", - "response": "A group of men wearing blue hard hats and uniforms are working on something in the snow.", - "id": 23613 - }, - { - "image_path": "G:\\images\\combined\\-844-_png_jpg.rf.360a64dabc4305b0a8bcac86d5395024.jpg", - "response": "A man in a hard hat and safety vest is driving a forklift in a warehouse. He is in front of a pallet of boxes and there is another pallet visible to his right. There are several other people in the warehouse but they are not in the frame of the picture.", - "id": 23614 - }, - { - "image_path": "G:\\images\\combined\\-845-_png_jpg.rf.3905ad900bf2ba6b1db6a237ed16b6d1.jpg", - "response": "The image shows a construction site with several people working. There are two excavators present, one on the left side of the image and another on the right side. The people are working on a large pipe that is lying on the ground. Some of the people are wearing hard hats, and one person is wearing a yellow hard hat. The excavators are digging into the ground, and there is a large pile of dirt in the middle of the site. In the background, there is a building under construction.", - "id": 23615 - }, - { - "image_path": "G:\\images\\combined\\-846-_png_jpg.rf.15c5b586986483bb24a62fe20d96bba7.jpg", - "response": "A construction site with several people working on it.", - "id": 23616 - }, - { - "image_path": "G:\\images\\combined\\-848-_png_jpg.rf.17f8cbc426d7ca15364414615f4f4716.jpg", - "response": "A worker in a red safety helmet is looking at a computer screen. There are other workers in the background. They are in a factory. There is a large piece of steel being melted in a furnace. There are many other steel bars in the foreground. There is a clock on the wall. The background is full of steel structures.", - "id": 23617 - }, - { - "image_path": "G:\\images\\combined\\-849-_png_jpg.rf.e0d9ac255c00dcba2c79ac4452e20978.jpg", - "response": "A man in a red shirt is on the edge of a roof.", - "id": 23618 - }, - { - "image_path": "G:\\images\\combined\\-85-_png_jpg.rf.810ac24c9d333eaa47030c20e70fa61d.jpg", - "response": "A group of people standing around a large piece of equipment. Some of the people are wearing hard hats and coats. One person is holding a cell phone. There are pipes and\u9600\u95e8 in the background.", - "id": 23619 - }, - { - "image_path": "G:\\images\\combined\\-850-_png_jpg.rf.dc41410bec0ef8f8403ee73c972b25aa.jpg", - "response": "A group of people walking up a steep hill with their bikes.", - "id": 23620 - }, - { - "image_path": "G:\\images\\combined\\-852-_png_jpg.rf.f463d3d512ae7c81845ff8656ca7016d.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 23621 - }, - { - "image_path": "G:\\images\\combined\\-853-_png_jpg.rf.062c9a697ac33d1ce6770c33c1845111.jpg", - "response": "A worker in a yellow hard hat and orange safety vest uses a tool to chip away at a concrete wall.", - "id": 23622 - }, - { - "image_path": "G:\\images\\combined\\-854-_png_jpg.rf.eec6b1038ee425a7cd0ac5b62e4ebfca.jpg", - "response": "The man in the middle is wearing a red long sleeve shirt.", - "id": 23623 - }, - { - "image_path": "G:\\images\\combined\\-856-_png_jpg.rf.c6af3fe6d87138e318ce0fe42674f05a.jpg", - "response": "A man with a white helmet on his head and a orange vest.", - "id": 23624 - }, - { - "image_path": "G:\\images\\combined\\-858-_png_jpg.rf.0426e0d01ba4ba8a962ce39e49ca745a.jpg", - "response": "A construction site with several people working on a building.", - "id": 23625 - }, - { - "image_path": "G:\\images\\combined\\-859-_png_jpg.rf.c3cdbbaa3a22d7420559bf8be00e0e2d.jpg", - "response": "A pair of engineers in hard hats and protective clothing work on a large piece of machinery. The machinery is blue and white and takes up the majority of the image. The engineers are standing on a platform that is green and white. There are also some pipes in the background that are red and white.", - "id": 23626 - }, - { - "image_path": "G:\\images\\combined\\-86-_png_jpg.rf.6e5912380ccf99c318b219b54767fc96.jpg", - "response": "A group of people standing around a large machine.", - "id": 23627 - }, - { - "image_path": "G:\\images\\combined\\-860-_png_jpg.rf.62307b71264e3794880f003fb70d25f9.jpg", - "response": "A group of three men in uniform standing in a room.", - "id": 23628 - }, - { - "image_path": "G:\\images\\combined\\-862-_png_jpg.rf.90a77b037b07a0bf74aa4506e1bd3ddd.jpg", - "response": "In the image there is a group of workers in blue overalls and yellow hats working on a large structure. They are in several sections of the structure, with some in the middle and others at the top and bottom. They are wearing blue gloves and red and yellow hard hats. In the background, there are power lines and a large concrete structure.", - "id": 23629 - }, - { - "image_path": "G:\\images\\combined\\-863-_png_jpg.rf.69b17614092afe4c8db76225f93fa9f9.jpg", - "response": "The image shows a group of people standing around a red and white truck. The truck is spraying water from a large red cannon or hose, which is mounted on the back of the truck. The water is being sprayed into the air and creating a fine mist. The people are standing under the mist and watching the spraying. Some of them are wearing yellow hard hats. There is a blue and white sign next to the truck, and a building with a sign that says \"Caution\" is visible in the background. The ground is wet from the spraying.", - "id": 23630 - }, - { - "image_path": "G:\\images\\combined\\-864-_png_jpg.rf.7e1e58e6a1109dcb458a484e3f6fbae7.jpg", - "response": "The image shows two men in green and grey standing in front of a construction site. The two men are wearing white helmets. The wall of the building under construction is fenced with green and yellow striped mesh. The floor in front of the building is wet.", - "id": 23631 - }, - { - "image_path": "G:\\images\\combined\\-866-_png_jpg.rf.07db78d5435d25484a9941884415c26a.jpg", - "response": " Workers(444,516),(500,730)(483,484),(542,730) are seen at a power transmission line construction site in the town of Ghotki, some 300 kilometers (186 miles) south of Karachi, Pakistan, on February 20, 2013.", - "id": 23632 - }, - { - "image_path": "G:\\images\\combined\\-867-_png_jpg.rf.a3b419ac6b3ecc998c25444ba0a34b97.jpg", - "response": "A snowy mountain scene with a rescue team in orange snowsuits and white helmets.", - "id": 23633 - }, - { - "image_path": "G:\\images\\combined\\-868-_png_jpg.rf.2f8513194d2ea70b71e20d15678a622a.jpg", - "response": "A worker is standing on a ladder and working on a power line.", - "id": 23634 - }, - { - "image_path": "G:\\images\\combined\\-87-_png_jpg.rf.da8729f0984f75248e2d96b6e80344d3.jpg", - "response": "A group of three men standing in front of a tall building.", - "id": 23635 - }, - { - "image_path": "G:\\images\\combined\\-870-_png_jpg.rf.0f6239db89214057385d5660f35dac33.jpg", - "response": "A group of men working on a construction site.", - "id": 23636 - }, - { - "image_path": "G:\\images\\combined\\-871-_png_jpg.rf.7bd96bdd95eb5752ab31b01e5af35b7f.jpg", - "response": "A group of men wearing hard hats are loading a gurney into the back of a van. The men are wearing different colored clothes and hats. One man is wearing a purple shirt and a red hat, another man is wearing a white shirt and a black hat, and a third man is wearing a white shirt and a grey hat. There is a man wearing a white shirt and a black hat sitting in a chair in the van. There is a person wearing a red hat and a black shirt standing next to the van. Another man is sitting on the ground and holding a white bag. There is a white van with a lot of stuff in the back.", - "id": 23637 - }, - { - "image_path": "G:\\images\\combined\\-874-_png_jpg.rf.83ae7547f3f2fb539469b1acd6c45869.jpg", - "response": "A group of three men are standing outside a building, all wearing hard hats. They are looking upwards, possibly watching something or waiting for something to happen. The men are wearing different colored hard hats, with one wearing a blue hat, one wearing a yellow hat, and one wearing a white hat. They are also wearing work clothes, with one man wearing a brown vest over a blue shirt, and the other two men wearing blue shirts. The man in the middle of the group is wearing a yellow shirt.", - "id": 23638 - }, - { - "image_path": "G:\\images\\combined\\-876-_png_jpg.rf.35daa5fb2295a976eee4be38746631fd.jpg", - "response": "A man in a yellow hard hat and blue overalls is working on a solar panel.", - "id": 23639 - }, - { - "image_path": "G:\\images\\combined\\-877-_png_jpg.rf.d11f7eeb7b3b896d56f46d4e3baec0ad.jpg", - "response": "A group of linemen working on power lines", - "id": 23640 - }, - { - "image_path": "G:\\images\\combined\\-878-_png_jpg.rf.ecb4ecb086844317321de622865f8ebe.jpg", - "response": "A group of people standing around a building site.", - "id": 23641 - }, - { - "image_path": "G:\\images\\combined\\-879-_png_jpg.rf.aec67a5f10b4580afbf55fd5e054529b.jpg", - "response": "A worker wearing a yellow helmet is fixing a part of a steel tower.", - "id": 23642 - }, - { - "image_path": "G:\\images\\combined\\-88-_png_jpg.rf.e94d9b00557acaca46256628591e2090.jpg", - "response": "In the image there is a man wearing a yellow hard hat and grey coveralls. He is holding a walkie talkie and smiling at the camera. Behind him are two yellow construction vehicles and a pile of brown dirt. The sky above is grey and there are two white lines of power lines running across the top right corner of the image.", - "id": 23643 - }, - { - "image_path": "G:\\images\\combined\\-880-_png_jpg.rf.4a2625d84dccfae4a23158a031715224.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest standing in a room filled with construction materials and tools. He is smiling at the camera.", - "id": 23644 - }, - { - "image_path": "G:\\images\\combined\\-881-_png_jpg.rf.151e2ba508cae4e3488ac41350c00919.jpg", - "response": "A group of firefighters standing around a fire.", - "id": 23645 - }, - { - "image_path": "G:\\images\\combined\\-882-_png_jpg.rf.80086e33433f7762cc789d423847a9f2.jpg", - "response": "In the image, a group of men are standing around a construction site. One man is wearing a white shirt and a red helmet, while another man is wearing a white shirt and a black helmet. A third man is wearing a white shirt and a red tie. A fourth man is wearing a white shirt and a black tie. A fifth man is wearing a white shirt and a black helmet. A sixth man is wearing a white shirt and a black tie. A seventh man is wearing a white shirt and a black helmet. A eighth man is wearing a white shirt and a black tie. A ninth man is wearing a white shirt and a black tie. A tenth man is wearing a white shirt and a black tie. A eleventh man is wearing a white shirt and a black tie. A twelfth man is wearing a white shirt and a black tie.", - "id": 23646 - }, - { - "image_path": "G:\\images\\combined\\-884-_png_jpg.rf.74ab8f599c6d70a0fd0f9830dee6d3c6.jpg", - "response": "A construction site with two workers.", - "id": 23647 - }, - { - "image_path": "G:\\images\\combined\\-885-_png_jpg.rf.1034a4416f316b194d550c7d98eef657.jpg", - "response": "Some men in orange jumpsuits and white hard hats are working on a railroad track.", - "id": 23648 - }, - { - "image_path": "G:\\images\\combined\\-886-_png_jpg.rf.2079bb13ced58a21a39be36e964aa70a.jpg", - "response": "A man in a yellow hard hat is working on a tall structure. He is standing on a ladder and appears to be focused on his task. The sky is blue and clear behind him.", - "id": 23649 - }, - { - "image_path": "G:\\images\\combined\\-887-_png_jpg.rf.b5c7273803ee42539f2255c5d326198e.jpg", - "response": "In the image there is a person wearing a hard hat and coveralls, who is working on a metal pipe or piece of machinery. They are creating a spark as they use a torch to cut through the metal. The person are crouching down to do the work and there are other people in the background.", - "id": 23650 - }, - { - "image_path": "G:\\images\\combined\\-89-_png_jpg.rf.d1ecc15222224295f442fe26464715b7.jpg", - "response": "In the image there are two construction workers in orange uniform, one is in the middle of the picture and the other is at the top of the picture. They are working on a construction site that has not been completed. There is a large building in the background that is under construction. In the foreground there is a large metal structure that has a thick white line painted on it. The line is broken in the middle. There is a large circular object on the ground that is being worked on.", - "id": 23651 - }, - { - "image_path": "G:\\images\\combined\\-891-_png_jpg.rf.2dbef7acacb4f8b16d28e1119f1e78ac.jpg", - "response": "An image of a Chinese mine worker.", - "id": 23652 - }, - { - "image_path": "G:\\images\\combined\\-892-_png_jpg.rf.78199dc208247e085b56630c1d9bf2ae.jpg", - "response": "A worker(3,162),(557,996) in a hard hat and purple coveralls(3,430),(553,997) repairs a pipe(559,4),(996,997)", - "id": 23653 - }, - { - "image_path": "G:\\images\\combined\\-893-_png_jpg.rf.776546c27a0dc6ff618d8d98dc9f1a3a.jpg", - "response": "A worker in a red jumpsuit and a hard hat is holding a large metal cylinder. The worker is smiling and appears to be in a storage area with many other metal cylinders.", - "id": 23654 - }, - { - "image_path": "G:\\images\\combined\\-894-_png_jpg.rf.600f2377d748c9998fcaf32e1559a7ce.jpg", - "response": "In the image there is a group of people standing around a unfinished brick building. Some people are wearing blue jackets and blue jeans. In the background there is a red fence. In the bottom right corner there is a logo for workercn.com", - "id": 23655 - }, - { - "image_path": "G:\\images\\combined\\-895-_png_jpg.rf.737767a2298baf71db7f0374cd6705b2.jpg", - "response": " People(470,465),(649,683)(412,395),(500,614)(776,437),(893,820)(274,382),(343,557)(938,443),(1000,818) climbing on a rock(0,5),(996,804)", - "id": 23656 - }, - { - "image_path": "G:\\images\\combined\\-897-_png_jpg.rf.1955fcb3a2a8ed8c1a96a33e8b8f3bc9.jpg", - "response": "In the image there are three people standing inside a bridge. The person on the left is wearing a white hardhat and is looking at a blueprint. The person in the middle is also wearing a white hardhat and is talking to the person on the right, who is also wearing a white hardhat. The person on the right is holding a clipboard with a document on it. The bridge has a stone archway and the people are standing under a bridge arch.", - "id": 23657 - }, - { - "image_path": "G:\\images\\combined\\-90-_png_jpg.rf.34bc5b2dd41eafe76b6dbffb513ea8ee.jpg", - "response": "A construction site with two men working on a cement structure that has scaffolding around it.", - "id": 23658 - }, - { - "image_path": "G:\\images\\combined\\-901-_png_jpg.rf.8f941628a34240d5c2eb9c9854dc23ca.jpg", - "response": "The image shows a snowy field with a large tower in the background. There are several people in the foreground, with one person on the left holding a large red object, and another person on the right also holding a large red object. They are both wearing hard hats and appear to be in the process of carrying the object across the snow. There are also two other people in the middle of the scene, one closer to the center and one closer to the right side. They both appear to be wearing hard hats as well.", - "id": 23659 - }, - { - "image_path": "G:\\images\\combined\\-902-_png_jpg.rf.024f22f8efeb2a453e4738fca4cc57b8.jpg", - "response": "A group of men holding a red flag with Chinese writing on it.", - "id": 23660 - }, - { - "image_path": "G:\\images\\combined\\-905-_png_jpg.rf.cf79c68ec00f796e99dd4769a79d0e1a.jpg", - "response": "The image shows a group of men working on a large piece of metal. They are standing on a dirt hill, and the piece of metal is in the foreground. It appears to be a wing or a piece of an aircraft. The men are focused on their task, and one of them is holding a large pair of pliers. The sky is blue with some clouds, and there are trees in the distance. The photo is taken in China.", - "id": 23661 - }, - { - "image_path": "G:\\images\\combined\\-907-_png_jpg.rf.59e28f535602f99a29537bdcd578ff13.jpg", - "response": "A group of workers on a scaffold working on a large glass building.", - "id": 23662 - }, - { - "image_path": "G:\\images\\combined\\-908-_png_jpg.rf.4386ff8e20e3a5509028d5b5f1ece37e.jpg", - "response": "A man in a white shirt and white hat carrying a shovel.", - "id": 23663 - }, - { - "image_path": "G:\\images\\combined\\-91-_png_jpg.rf.c902f18d919cfdba9829b0b6b61ac2c7.jpg", - "response": "Some people are working on a bridge that is being built. They are wearing yellow helmets and some are wearing red and yellow shirts. The bridge has not been finished yet and some parts are made of iron rods.", - "id": 23664 - }, - { - "image_path": "G:\\images\\combined\\-910-_png_jpg.rf.96673bd4d48392756d90b6ddddb221fe.jpg", - "response": "A construction worker is working on a building site.", - "id": 23665 - }, - { - "image_path": "G:\\images\\combined\\-911-_png_jpg.rf.683efb4b77d559ed302b57688f5d9d62.jpg", - "response": " Construction workers(476,374),(758,997) in orange vests(576,496),(715,668) with yellow helmets(650,418),(711,463)(599,389),(674,441) are working on a construction site.", - "id": 23666 - }, - { - "image_path": "G:\\images\\combined\\-912-_png_jpg.rf.c648b4cb0e6da5770cea44abdf1d846f.jpg", - "response": "A group of three men in construction gear.", - "id": 23667 - }, - { - "image_path": "G:\\images\\combined\\-913-_png_jpg.rf.9ce41e3e331957910894fb2987784498.jpg", - "response": "In the image there are two workers wearing blue and yellow helmets, they are crouching down and working on a construction site. The ground is grey and there are many steel bars and concrete structures around them. There are also two clocks in the image, one on the left and one on the right.", - "id": 23668 - }, - { - "image_path": "G:\\images\\combined\\-914-_png_jpg.rf.1c7ae1216a81fd715962bbfa2113431c.jpg", - "response": "A man working on a large wind turbine, the man is wearing a yellow helmet and has a tool belt around his waist. He is standing inside a large wind turbine, which is made of metal and covered in a green net. The man is working on the blades of the turbine, which are painted white and blue. The background is bright blue sky.", - "id": 23669 - }, - { - "image_path": "G:\\images\\combined\\-915-_png_jpg.rf.d9cc35b2f5f99043fb6a32abfd82a415.jpg", - "response": "A group of men standing in front of a camera.", - "id": 23670 - }, - { - "image_path": "G:\\images\\combined\\-917-_png_jpg.rf.6c7f4c765ae71b4fca4efddba8f5679b.jpg", - "response": "A man in a yellow hat and a black jacket is working on a construction site. He is standing on a red ladder and using a tool to work on a metal structure. There are other people working in the background. The sky is overcast and there are some mountains in the distance.", - "id": 23671 - }, - { - "image_path": "G:\\images\\combined\\-918-_png_jpg.rf.68ebe267d5c51f7b82a82bf18082cf53.jpg", - "response": "A group of male warehouse workers walking through the warehouse.", - "id": 23672 - }, - { - "image_path": "G:\\images\\combined\\-919-_png_jpg.rf.34c1fb9f0d915e6865c90adae8c508ce.jpg", - "response": "A group of workers sitting on wooden planks in a large warehouse.", - "id": 23673 - }, - { - "image_path": "G:\\images\\combined\\-92-_png_jpg.rf.ce9fa2ea3506042776ffbb3d6d3e5283.jpg", - "response": "In the image there are multiple power lines in a construction area with a blue sky in the background. There are also a few workers in the area, one is wearing a blue helmet and is standing on some metal beams, another worker is wearing a blue cap and is standing between some metal beams and power lines. There is also a yellow crane operating in the construction area.", - "id": 23674 - }, - { - "image_path": "G:\\images\\combined\\-920-_png_jpg.rf.6e499e5bdf59f430967e74cd58c1c738.jpg", - "response": "A construction worker is using a jackhammer on a city sidewalk.", - "id": 23675 - }, - { - "image_path": "G:\\images\\combined\\-922-_png_jpg.rf.9f1bcda6decbd5becf3c8af8a820c3ac.jpg", - "response": "A crane lifting a couch into the air.", - "id": 23676 - }, - { - "image_path": "G:\\images\\combined\\-923-_png_jpg.rf.d80996c5e08d6f7f97a36bea6539320a.jpg", - "response": "A group of men standing on a ladder near a tall building.", - "id": 23677 - }, - { - "image_path": "G:\\images\\combined\\-924-_png_jpg.rf.e0735a0053b1069eda784467499f1411.jpg", - "response": "A man wearing a red hard hat standing in front of a building under construction.", - "id": 23678 - }, - { - "image_path": "G:\\images\\combined\\-927-_png_jpg.rf.d9212f4e3d1b20c81050b3b7f4dd4a4b.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 23679 - }, - { - "image_path": "G:\\images\\combined\\-929-_png_jpg.rf.d1ae0c9be05d3b071d0005742aed7fde.jpg", - "response": "A group of men in red and yellow work clothes are working on a construction site. They are wearing hard hats and one man is holding a yellow helmet and handing it to another man. There is a yellow helmet and a red helmet in the air being handed between two men.", - "id": 23680 - }, - { - "image_path": "G:\\images\\combined\\-930-_png_jpg.rf.479f6a035e6e62dbf9eb40db47236c02.jpg", - "response": "A man in a white helmet and a man in a gray shirt are working on a construction site. The man in the white helmet is holding a large blue print while the man in the gray shirt is holding a yellow and red tool. They are both standing in front of a wall made of wooden planks.", - "id": 23681 - }, - { - "image_path": "G:\\images\\combined\\-935-_png_jpg.rf.e9d8fabe6a5d6847eb283d48d339e985.jpg", - "response": "A man in a blue hat and shirt is on a metal scaffolding.", - "id": 23682 - }, - { - "image_path": "G:\\images\\combined\\-937-_png_jpg.rf.a7afea22c94bdee71faa676328f2ed1b.jpg", - "response": "Men working on a bridge that is under construction.", - "id": 23683 - }, - { - "image_path": "G:\\images\\combined\\-940-_png_jpg.rf.98f536c860d7d7182f43a3f8a873b5bc.jpg", - "response": "In the image, a person is standing on top of a large amount of steel beams that are on the ground. The person is wearing a orange vest and a hat. The steel beams are placed in a large warehouse like room and some of them are being lifted by a large crane. The room has a yellow roof and the walls are a off white color. There is a large white crane in the middle of the room and it is lifting one of the steel beams.", - "id": 23684 - }, - { - "image_path": "G:\\images\\combined\\-941-_png_jpg.rf.deba8bffce4c64b7c9fbe3e39112138a.jpg", - "response": "A construction worker is on a ladder and is working on power lines.", - "id": 23685 - }, - { - "image_path": "G:\\images\\combined\\-942-_png_jpg.rf.5b17e52f5ab2b9b6d2c92b56231221ad.jpg", - "response": "A group of people in a factory setting with one person welding a large sheet of metal.", - "id": 23686 - }, - { - "image_path": "G:\\images\\combined\\-944-_png_jpg.rf.c124ecce7a8187b19e1e80767989e724.jpg", - "response": "In the image there are two people working on a construction site. They are both pouring concrete into a large wooden mold. The sky is blue with a few white clouds.", - "id": 23687 - }, - { - "image_path": "G:\\images\\combined\\-945-_png_jpg.rf.1e32e606587218159ba8a67b2a0cb95e.jpg", - "response": "A group of four men in hard hats stand in front of a brick building. The men are dressed in blue and green.", - "id": 23688 - }, - { - "image_path": "G:\\images\\combined\\-946-_png_jpg.rf.27bb3a52b4661f2205eb77a588c5c9d6.jpg", - "response": "A man in a blue helmet and overalls is on a ladder, working on power lines.", - "id": 23689 - }, - { - "image_path": "G:\\images\\combined\\-950-_png_jpg.rf.a9026e87235a5a1975cf98f0a5065659.jpg", - "response": "A group of construction workers dressed in orange and yellow work gear standing in a construction site.", - "id": 23690 - }, - { - "image_path": "G:\\images\\combined\\-952-_png_jpg.rf.30565979ab641b043f91d4dbb695160a.jpg", - "response": "The image shows a man wearing a red jacket with yellow sleeves, a red helmet and a red pair of gloves. He is standing in front of a truck and a large orange tank. The man is also holding a walkie-talkie. The background features other trucks and the sky is grey.", - "id": 23691 - }, - { - "image_path": "G:\\images\\combined\\-953-_png_jpg.rf.ca638989c2575cff446de61edec34a47.jpg", - "response": "The image shows two workers in orange jumpsuits and yellow safety vests, climbing a ladder on a telephone pole. They are working on wires attached to the pole. The telephone pole is tall and made of wood or metal, with a mountain visible in the background. The sky is overcast and there are power lines running to the pole.", - "id": 23692 - }, - { - "image_path": "G:\\images\\combined\\-954-_png_jpg.rf.6b404ecbdad4d571dce98f2f21b1c733.jpg", - "response": "A group of men in orange jumpsuits and hard hats are working on a road.", - "id": 23693 - }, - { - "image_path": "G:\\images\\combined\\-955-_png_jpg.rf.34cba2724a27223c9d1f5611b827f739.jpg", - "response": "Four men in the woods wearing blue helmets and grey jumpsuits.", - "id": 23694 - }, - { - "image_path": "G:\\images\\combined\\-956-_png_jpg.rf.f7eb743d8256b4b71123d549c0e77699.jpg", - "response": "a group of people standing around a unfinished room", - "id": 23695 - }, - { - "image_path": "G:\\images\\combined\\-958-_png_jpg.rf.a5a9a44952628dcfb88ba5c79fe9a4c3.jpg", - "response": "In the image there is a river that has a muddy brown color. The river is running through a town and appears to be rising. There is a bridge that has a group of workers on it. One of the workers is wearing a white shirt and tan pants and is wearing a blue helmet. They are working on a power line that is suspended over the river. There are also two other people working on the power line. One of the workers has a tool belt around their waist. In the background there is a bridge that has a white and blue sign on it. The sky is a dark grey color and it appears to be raining.", - "id": 23696 - }, - { - "image_path": "G:\\images\\combined\\-959-_png_jpg.rf.0b7e4d51d4553ecfa57e84fb941402fc.jpg", - "response": "In the image, there are two workers on a power line. They are wearing safety gear, including white coveralls, blue hard hats, and black gloves. One worker is on the left side of the image, crouching down and appears to be securing a tool. The other worker is on the right side of the image, climbing up the side of the pole. They are holding a tool in their left hand. The power line they are working on is black and runs diagonally across the image. The sky is white and overcast.", - "id": 23697 - }, - { - "image_path": "G:\\images\\combined\\-962-_png_jpg.rf.fa167eb84ed01a36135a37bee521beb3.jpg", - "response": "The image shows two people on a ropes course, standing on a platform surrounded by trees. They are both wearing helmets and harnesses. One person is wearing a blue shirt and gray shorts, while the other is wearing a red shirt and gray shorts. The ropes course appears to be in a forest setting.", - "id": 23698 - }, - { - "image_path": "G:\\images\\combined\\-964-_png_jpg.rf.5a2473c8e8f8de6cea9cb86ed515f127.jpg", - "response": "The image shows two workers on a snow-covered power pole. One worker is standing on the ground, while the other is standing on a ladder, both are wearing white and yellow helmets. The power pole is grey and the snow around it is white. There are also some pine branches in the foreground and background, which are covered with snow. The sky is white and appears to be very cold.", - "id": 23699 - }, - { - "image_path": "G:\\images\\combined\\-965-_png_jpg.rf.af20486608d4b2a04d98913e704bb7d4.jpg", - "response": "A city skyline is visible through the bars of a bridge.", - "id": 23700 - }, - { - "image_path": "G:\\images\\combined\\-969-_png_jpg.rf.78d8e85c24dec190a2a99da298eaf1c0.jpg", - "response": "The image shows a large industrial space with a walkway. Two people are standing on the walkway, dressed in red and white. They are both wearing hard hats. One of the people is holding a clipboard. The walls of the space are painted yellow and blue. There are two large metal cylinders in the space, one on the left and one on the right. A ladder is situated in the middle of the image, leading up to the walkway.", - "id": 23701 - }, - { - "image_path": "G:\\images\\combined\\-97-_png_jpg.rf.1db9c32b35341137c62e085f31bdcf37.jpg", - "response": "A couple of workers are on a power line.", - "id": 23702 - }, - { - "image_path": "G:\\images\\combined\\-971-_png_jpg.rf.cf4ccb9a173fc91cf0df7a97a15b46ac.jpg", - "response": "a group of people standing around each other", - "id": 23703 - }, - { - "image_path": "G:\\images\\combined\\-973-_png_jpg.rf.3c26abdc07123fa4e4a7ec15e9180085.jpg", - "response": "A group of people standing in front of a large structure.", - "id": 23704 - }, - { - "image_path": "G:\\images\\combined\\-975-_png_jpg.rf.eb68a69dc5550f39c6e909d246ad69b8.jpg", - "response": "A group of three people standing in front of a tunnel.", - "id": 23705 - }, - { - "image_path": "G:\\images\\combined\\-978-_png_jpg.rf.8b23a6a9cc14f71f0cf47f807b62c8b2.jpg", - "response": "An electrician repairs a power line.", - "id": 23706 - }, - { - "image_path": "G:\\images\\combined\\-981-_png_jpg.rf.a8ec3ca3deb88f92de5f9ce6cacbc948.jpg", - "response": "A group of people standing around a pile of wood.", - "id": 23707 - }, - { - "image_path": "G:\\images\\combined\\-983-_png_jpg.rf.11707774e5e646f8cb67f67961017116.jpg", - "response": " several men(93,378),(618,988)(467,305),(824,988)(314,307),(517,999)(0,362),(172,999) holding a stick(338,0),(972,646)", - "id": 23708 - }, - { - "image_path": "G:\\images\\combined\\-984-_png_jpg.rf.40744babfb02dbde74a45e5ac6e1c3bc.jpg", - "response": "A man in a hard hat and orange safety jacket is laying bricks on a roof. He is smiling at the camera.", - "id": 23709 - }, - { - "image_path": "G:\\images\\combined\\-985-_png_jpg.rf.9b93cbb5964a2cb0fda388ff2e685d53.jpg", - "response": "An electrical worker is working on some copper electrical tubing.", - "id": 23710 - }, - { - "image_path": "G:\\images\\combined\\-987-_png_jpg.rf.d777975e748c6ed56938373bcb13eb29.jpg", - "response": "A group of men standing next to each other.", - "id": 23711 - }, - { - "image_path": "G:\\images\\combined\\-988-_png_jpg.rf.1b9e11eb18cd18e7f2a082840738193c.jpg", - "response": " These workers(227,394),(479,997)(475,481),(623,998)(567,451),(815,998)(1,224),(277,997) are installing a power line(0,289),(999,737) in -40 degree Celsius temperatures", - "id": 23712 - }, - { - "image_path": "G:\\images\\combined\\-989-_png_jpg.rf.0b3fadb07e86a01c08fc12b763852761.jpg", - "response": "A construction site with two men standing in the center of the room wearing red hard hats. They are both dressed in black.", - "id": 23713 - }, - { - "image_path": "G:\\images\\combined\\-99-_png_jpg.rf.5d980cddee556828e2865389e616bf53.jpg", - "response": "A group of men are working on a transformer.", - "id": 23714 - }, - { - "image_path": "G:\\images\\combined\\-990-_png_jpg.rf.85c9e9250bbd15db20159004e8ec53ab.jpg", - "response": "A construction worker in an orange and white shirt and blue pants is using a tool to smooth out concrete.", - "id": 23715 - }, - { - "image_path": "G:\\images\\combined\\-995-_png_jpg.rf.316486b375a292b278b46e523ade0272.jpg", - "response": "In the image there are two men wearing blue jumpsuits and yellow hats. They are building a wire fence. One man is holding a white wire and the other a white wire with a red and white end. There is a yellow balloon above them. Next to them is a pile of branches and a building.", - "id": 23716 - }, - { - "image_path": "G:\\images\\combined\\-997-_png_jpg.rf.06500c61d4643978192e32dfefa52676.jpg", - "response": "A group of people standing in a construction site.", - "id": 23717 - }, - { - "image_path": "G:\\images\\combined\\-998-_png_jpg.rf.daa02034bca969fc72926c8c8ef88f46.jpg", - "response": "The image shows a group of workers inside a large, dark tunnel. They are working on a steel beam, with one man using a torch to weld the beam. Another man is using a tool to level the beam. There are several other people in the tunnel, some standing and some crouching. The tunnel has a concrete floor and walls, and there are several tools scattered around the floor. The image is taken from the perspective of one of the workers.", - "id": 23718 - }, - { - "image_path": "G:\\images\\combined\\-999-_png_jpg.rf.1424e2539083f92fab978c18cb70fde4.jpg", - "response": "A group of workers in yellow and orange vests and hard hats are on a construction site. They are working on a building that has scaffolding around it. One worker is using a tool to chip away at a large piece of concrete. Another worker is using a jackhammer to break up the concrete. There are also several other workers in the scene, some of which are using tools and some of which are observing the process.", - "id": 23719 - }, - { - "image_path": "G:\\images\\combined\\-I1-MS09uaqsLdGTFkgnS0Rcg1mmPyAj95ySg_eckoM_jpeg_jpg.rf.2f1b6ca4d61833f7c861b900e5f91fe1.jpg", - "response": " Two women(3,110),(395,996)(307,42),(750,997) wearing face masks(191,197),(308,329)(518,141),(613,261) walk through the Asakusa district of Tokyo on February 28, 2020, as a preventative measure following a coronavirus outbreak which began in the Chinese city of Wuhan. - Japan confirmed its first case of coronavirus on February 26, a Chinese national who had been in the country for three weeks. (Photo by Charly TRIBALLEAU / AFP) (Photo by CHARLY TRIBALLEAU/AFP via Getty Images)", - "id": 23720 - }, - { - "image_path": "G:\\images\\combined\\-I1-MS09uaqsLdGTFkgnS0Rcg1mmPyAj95ySg_eckoM_jpeg_jpg.rf.757fafc32eb38300b334fc3ce4d50d4f.jpg", - "response": " Two women(3,110),(395,996)(306,41),(750,997) wearing face masks(193,200),(308,327)(519,140),(612,262) walk down a street in Tokyo on February 27, 2020, as a preventative measure against the spread of the COVID-19 novel coronavirus. - Japan on February 27 reported 13 new cases of the novel coronavirus, bringing the total number of infections in the country to 17. (Photo by Behrouz MEHRI / AFP) (Photo by BEHROUZ MEHRI/AFP via Getty Images)", - "id": 23721 - }, - { - "image_path": "G:\\images\\combined\\-I1-MS09uaqsLdGTFkgnS0Rcg1mmPyAj95ySg_eckoM_jpeg_jpg.rf.8d51e76a4a16520e8e6d612eacf673c2.jpg", - "response": " Two women(3,110),(393,996)(319,41),(750,997) wearing face masks(191,200),(306,328)(523,143),(612,261) walk through the Asakusa district of Tokyo on February 27, 2020, as a preventative measure following a coronavirus outbreak which began in the Chinese city of Wuhan. - The number of cases of a new coronavirus in China jumped to more than 70,000 on February 27, with the death toll surpassing 1,700 as authorities scrambled to contain the disease. (Photo by Behrouz MEHRI / AFP) (Photo by BEHROUZ MEHRI/AFP via Getty Images)", - "id": 23722 - }, - { - "image_path": "G:\\images\\combined\\-j1027_jpg.rf.a4008dbf567af0ae48254d48a70c8a2c.jpg", - "response": "A man in a white hard hat and green vest is on a silver ladder.", - "id": 23723 - }, - { - "image_path": "G:\\images\\combined\\-_10_jpg.rf.a05f82bfabb69298e1c53e842f31a69e.jpg", - "response": "A man on a ladder cleaning windows.", - "id": 23724 - }, - { - "image_path": "G:\\images\\combined\\-_11_jpeg.rf.3a6779f4d3c00d42816671c4023e4b55.jpg", - "response": "A man and woman standing on a street corner near a crosswalk.", - "id": 23725 - }, - { - "image_path": "G:\\images\\combined\\-_11_jpeg.rf.9d05b50fc9bf9e5b5a403235f4b1a4f8.jpg", - "response": "A woman in a white shirt is talking on her cell phone.", - "id": 23726 - }, - { - "image_path": "G:\\images\\combined\\-_12_jpeg.rf.6011fbef1c191afdddd4998aad0f4bd2.jpg", - "response": "A woman wearing a pink shirt is standing on a sidewalk.", - "id": 23727 - }, - { - "image_path": "G:\\images\\combined\\-_12_jpeg.rf.f0300f61706402e8d9b15ee695aa9f8b.jpg", - "response": "A man and a woman standing on a sidewalk near a busy street.", - "id": 23728 - }, - { - "image_path": "G:\\images\\combined\\-_13_jpeg.rf.04bce21c5e7df8e87f236d84e25522c6.jpg", - "response": "A group of four people walking down a sidewalk next to a building.", - "id": 23729 - }, - { - "image_path": "G:\\images\\combined\\-_13_jpeg.rf.896a4fa15ae9f340b7d1acf35b3debd8.jpg", - "response": "A group of four people walking down a sidewalk.", - "id": 23730 - }, - { - "image_path": "G:\\images\\combined\\-_14_jpeg.rf.4062e93006c74fdb9effd6d39b57373f.jpg", - "response": "Two women wearing protective masks walk in the snow in Minsk, Belarus, on February 7, 2021.", - "id": 23731 - }, - { - "image_path": "G:\\images\\combined\\-_14_jpeg.rf.b8298e507ab91b1e82fad3714acf8107.jpg", - "response": "A picture of two women walking down a street wearing face masks to protect themselves from the coronavirus. They are both wearing winter coats and one has a pink coat and the other has a blue coat. They are also carrying handbags.", - "id": 23732 - }, - { - "image_path": "G:\\images\\combined\\-_15_jpeg.rf.36b7bb63c3961727a48a5e83d3ec8f0a.jpg", - "response": "A woman in a black dress and knee high socks walking down a street.", - "id": 23733 - }, - { - "image_path": "G:\\images\\combined\\-_15_jpeg.rf.8f7554dafbada8bdfc410f934b778170.jpg", - "response": "A woman in a black dress and knee high socks walking down a street.", - "id": 23734 - }, - { - "image_path": "G:\\images\\combined\\-_18_jpeg.rf.248c1dcdec6c1e0297d15dd920ad2424.jpg", - "response": "a group of people walking down a sidewalk", - "id": 23735 - }, - { - "image_path": "G:\\images\\combined\\-_18_jpeg.rf.a8f1abe63369e1d4b765a272169293b6.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 23736 - }, - { - "image_path": "G:\\images\\combined\\-_1_jpeg.rf.306c48b1cbaf98aae569812ba0d6ba4e.jpg", - "response": "a blurry photo of a group of people walking down a street", - "id": 23737 - }, - { - "image_path": "G:\\images\\combined\\-_1_jpeg.rf.834828fd20c3b3a930012bdc2e949d6e.jpg", - "response": "A group of people walking down a street.", - "id": 23738 - }, - { - "image_path": "G:\\images\\combined\\-_20_jpeg.rf.1093182dcaabded9deaaf07caf2b5ed1.jpg", - "response": "A large group of people walking down a street.", - "id": 23739 - }, - { - "image_path": "G:\\images\\combined\\-_20_jpeg.rf.6055cfe582a99fc9809ab798eef034a3.jpg", - "response": "A large group of people walking across a street.", - "id": 23740 - }, - { - "image_path": "G:\\images\\combined\\-_23_jpeg.rf.c9564b2c08421891231bfc6ee85722bd.jpg", - "response": "The image shows a group of people walking across a street. There are at least 12 people in the picture, dressed in coats as they walk. They are walking on a zebra crossing, with traffic lights on both sides of the crossing. Some of the people are carrying handbags.", - "id": 23741 - }, - { - "image_path": "G:\\images\\combined\\-_23_jpeg.rf.f9ba4efe1db1d8d1c97ded99d33b64a1.jpg", - "response": "The image is a photo of a group of people walking down a city street. They are all dressed in coats, indicating that it is likely a colder day. There is a traffic light visible in the background, as well as a building and a lamp post. The people are walking in a line, with some carrying handbags and backpacks.", - "id": 23742 - }, - { - "image_path": "G:\\images\\combined\\-_24_jpeg.rf.a1ca6314c446b8a331ce596c9f48c979.jpg", - "response": "A boy on a bicycle passing by a woman and a man walking on a sidewalk.", - "id": 23743 - }, - { - "image_path": "G:\\images\\combined\\-_24_jpeg.rf.dcee80cbe8303a1c3f9fe2783e2aec4f.jpg", - "response": "A boy is riding a bike down a sidewalk.", - "id": 23744 - }, - { - "image_path": "G:\\images\\combined\\-_25_jpeg.rf.59ed8e2bee9b430511c836b328f408ed.jpg", - "response": "A group of people walking and standing around a bicycle on a street.", - "id": 23745 - }, - { - "image_path": "G:\\images\\combined\\-_25_jpeg.rf.632245d1c78161223a8350f40760d934.jpg", - "response": "A group of people walking and biking on a boardwalk.", - "id": 23746 - }, - { - "image_path": "G:\\images\\combined\\-_27_jpeg.rf.3a66fb85c1bd58e46d66dca239c9ae8f.jpg", - "response": "In the image, a crowd of people is gathered in a parking lot. They are standing around and watching a performance. There is a girl in the center of the crowd who appears to be dancing. She is wearing a pink shirt and black pants. There are several other people around her, some of them are carrying backpacks. In the background, there is a stage with a speaker on it. The sky above the crowd is dark and there are some clouds.", - "id": 23747 - }, - { - "image_path": "G:\\images\\combined\\-_27_jpeg.rf.43f8cbcd465d14af46345b03b487bf4b.jpg", - "response": "In the image, a large crowd of people are gathered in a city square. They are standing in a line and appear to be listening to a speaker. Some of the people are holding balloons. In the background, there is a stage with a microphone on it. The sky above the crowd is dark and there are trees in the vicinity.", - "id": 23748 - }, - { - "image_path": "G:\\images\\combined\\-_29_jpeg.rf.3bfac65d22da66b090e571c7dc6c1808.jpg", - "response": "A snowy city street with people walking on it.", - "id": 23749 - }, - { - "image_path": "G:\\images\\combined\\-_29_jpeg.rf.cbca58ceff42b4af76d1f94c375e13d0.jpg", - "response": "A group of people walking down a street in the snow. They are all dressed warmly and are wearing hats and coats. Some of the people are holding hands. There is a traffic light on the street corner and a crosswalk. In the background, there are buildings and cars. The picture is taken during the day.", - "id": 23750 - }, - { - "image_path": "G:\\images\\combined\\-_2_jpeg.rf.1405bd33c7b4ebbcd92bc4900aa5bc03.jpg", - "response": "a couple of people walking down a snowy street", - "id": 23751 - }, - { - "image_path": "G:\\images\\combined\\-_2_jpeg.rf.d4cec6a03d5b84bfd1f58b2ba662ab2d.jpg", - "response": "A statue of a person holding a flag is in the foreground. Two women wearing hoods are in the background walking down the street.", - "id": 23752 - }, - { - "image_path": "G:\\images\\combined\\-_34_jpeg.rf.1836be956f887e395468d4be143f7b92.jpg", - "response": "A group of young people standing on a set of stairs.", - "id": 23753 - }, - { - "image_path": "G:\\images\\combined\\-_34_jpeg.rf.7e96f2865657a3706e7a0d926a61ad13.jpg", - "response": "A group of young people are posing for a photo on a staircase. There are two girls and one guy on the bottom step. A girl and guy are on the top step. Another guy is standing behind them on the left. A fifth person is standing behind them on the right. They are all dressed in winter clothes. The two girls in the front are wearing light coats. The girl in the front on the right is wearing a black puffy jacket and has a handbag on her shoulder. The girl behind her on the left is wearing a beige coat. The guy on the right is wearing a black coat and has a hand in his pocket. The guy behind them on the top step is wearing a black coat and has a red shirt underneath. The guy on the top step on the right has black hair and is wearing a black and white jacket.", - "id": 23754 - }, - { - "image_path": "G:\\images\\combined\\-_35_jpeg.rf.4cf30cd900872ab25c4900b67c1bf1a7.jpg", - "response": "A woman with a black bob cut is wearing a red coat with a black dress. She is standing in a street with a backpack on.", - "id": 23755 - }, - { - "image_path": "G:\\images\\combined\\-_35_jpeg.rf.dae595eb3f1be988a44a89ea199e9951.jpg", - "response": "In the image there is a woman wearing a red jacket with black dots and a black dress with white polka dots. She is also wearing a black crossbody bag and black and white shoes. The woman has short black hair and is looking directly at the camera. She has a red bag with white dots hanging from her shoulder. In the background there is a street with buildings on the sides and cars parked on the street. There are also two people walking in the background, one closer to the left and one closer to the right.", - "id": 23756 - }, - { - "image_path": "G:\\images\\combined\\-_36_jpeg.rf.5050dd9e86d124f1782ba23dbb5710bd.jpg", - "response": "a bunch of people walking on a bridge", - "id": 23757 - }, - { - "image_path": "G:\\images\\combined\\-_36_jpeg.rf.fd3c26b642ca223335a7f1270d270ea7.jpg", - "response": "a group of people walking on a boardwalk", - "id": 23758 - }, - { - "image_path": "G:\\images\\combined\\-_37_png.rf.07dc4b8f65812280ca6a7d0f0abbcc72.jpg", - "response": "A man in a suit standing on a sidewalk.", - "id": 23759 - }, - { - "image_path": "G:\\images\\combined\\-_37_png.rf.e22f0913c65ece7dc7e97c5321439ba5.jpg", - "response": "a man standing on a sidewalk in front of a building", - "id": 23760 - }, - { - "image_path": "G:\\images\\combined\\-_39_jpeg.rf.96966b7ef610612083f862e42133ced4.jpg", - "response": "A couple of people that are walking down the street.", - "id": 23761 - }, - { - "image_path": "G:\\images\\combined\\-_39_jpeg.rf.991c4b0de6d43ddfdd0da5002030c470.jpg", - "response": "In the image, there are three people walking down a street. They are all wearing protective face masks. The person on the left is wearing a blue mask, the person in the middle is wearing a black mask, and the person on the right is wearing a black mask with a white design on it. They are all holding their suitcases as they walk. The background is blurred out, and there is rain droplets in the forefront of the image.", - "id": 23762 - }, - { - "image_path": "G:\\images\\combined\\-_40_jpeg.rf.27396b44ab580f4af3d0e7e292039dd2.jpg", - "response": "A man and a woman walking down a street in the snow. They are both wearing blue face masks. The man is wearing a black coat with the hood on and the woman is wearing a purple coat. They are both wearing black pants. There are cars parked on the street and traffic lights in the background. The street is wet from the snow.", - "id": 23763 - }, - { - "image_path": "G:\\images\\combined\\-_40_jpeg.rf.c6f179682ad02590b3315e79d743bda5.jpg", - "response": "A couple of people walking down a street in the snow.", - "id": 23764 - }, - { - "image_path": "G:\\images\\combined\\-_42_jpeg.rf.13635c79a776851971f5949d02b14d9d.jpg", - "response": "A city street with many people walking around. There are shops on the street and people are walking in front of them. Some people are carrying backpacks and handbags. There is a traffic light in the scene as well. The image has a snowy effect applied to it.", - "id": 23765 - }, - { - "image_path": "G:\\images\\combined\\-_42_jpeg.rf.828a39b4c5330ea4a67ae79a1c27bde6.jpg", - "response": "A busy street in istanbul with people walking on the street and shops on the sides.", - "id": 23766 - }, - { - "image_path": "G:\\images\\combined\\-_45_jpeg.rf.ddf043b3c09af6b4924e17d492b43b06.jpg", - "response": "A blurry image of a person walking down a street. The person is wearing all black and carrying a blue bag. There is a car parked on the street and a stop sign in the background. The image has a snowy appearance.", - "id": 23767 - }, - { - "image_path": "G:\\images\\combined\\-_45_jpeg.rf.f134af009339ebefc411003c76b7d48b.jpg", - "response": "A snowy street with a woman walking down the street carrying a blue bag.", - "id": 23768 - }, - { - "image_path": "G:\\images\\combined\\-_46_jpeg.rf.18a869d9bb1be3f17252f9f9ce8fb6d5.jpg", - "response": "A group of people walking down a city street. There are two men and two women walking together. They are all wearing white and carrying backpacks. The image is dotted and has a grey border.", - "id": 23769 - }, - { - "image_path": "G:\\images\\combined\\-_46_jpeg.rf.3219314c69ea84540bb51d259a8dcf96.jpg", - "response": "A group of people walking down a street.", - "id": 23770 - }, - { - "image_path": "G:\\images\\combined\\-_48_jpeg.rf.d861b7e3284a7117bac752a54f8c86f7.jpg", - "response": "A group of three people walking down a street holding hands and laughing in the rain.", - "id": 23771 - }, - { - "image_path": "G:\\images\\combined\\-_48_jpeg.rf.ee704d8603690c7dc501cfaec12a74a2.jpg", - "response": "In the image, three friends are laughing and running through the rain together on a city street. They are all holding an umbrella, and the rain is falling in all directions around them. The friends are all wearing different outfits, with one wearing a white shirt and grey shorts, another wearing a yellow shirt and black skirt, and the third wearing a red shirt and blue jeans. The friends are all standing quite close to each other, with their arms linked together as they run through the rain.", - "id": 23772 - }, - { - "image_path": "G:\\images\\combined\\-_49_jpeg.rf.0e828e17d6d08db84ab7d692b8d6c478.jpg", - "response": "A woman and a child wearing face masks walk down a sidewalk.", - "id": 23773 - }, - { - "image_path": "G:\\images\\combined\\-_49_jpeg.rf.4c0f9c75681bf2e990a52ff1ee548fc5.jpg", - "response": "A group of people walking down a street.", - "id": 23774 - }, - { - "image_path": "G:\\images\\combined\\-_50_jpeg.rf.1266f7475e8af169de57eead432f1106.jpg", - "response": "A group of people walking down a busy sidewalk.", - "id": 23775 - }, - { - "image_path": "G:\\images\\combined\\-_50_jpeg.rf.704b652231978be2784ef1b3206ecf36.jpg", - "response": "A group of people walking down a street.", - "id": 23776 - }, - { - "image_path": "G:\\images\\combined\\-_51_jpeg.rf.09abb9dcde4d727f8486852003f61052.jpg", - "response": "A woman in a blue dress and white shoes is walking down a sidewalk.", - "id": 23777 - }, - { - "image_path": "G:\\images\\combined\\-_51_jpeg.rf.7eff295df168e2d9e9dfda912fbba1c6.jpg", - "response": "a woman in a blue dress is walking down the street", - "id": 23778 - }, - { - "image_path": "G:\\images\\combined\\-_52_jpeg.rf.13ec1e64b084ea7e63125afc1223cc22.jpg", - "response": "A man with red hair standing in front of a building.", - "id": 23779 - }, - { - "image_path": "G:\\images\\combined\\-_52_jpeg.rf.64fef54ed999aed76b4ed0b58c97e155.jpg", - "response": "a man standing in front of a building", - "id": 23780 - }, - { - "image_path": "G:\\images\\combined\\-_55_jpeg.rf.642cbe5a6ca85e7f631f2f7c963cebf6.jpg", - "response": "A man wearing a hat and a black coat is standing in the street.", - "id": 23781 - }, - { - "image_path": "G:\\images\\combined\\-_55_jpeg.rf.c6706bb2803e52b0e0fe3b035d45e7c2.jpg", - "response": "A man in a suit standing in the street in the snow.", - "id": 23782 - }, - { - "image_path": "G:\\images\\combined\\-_56_jpeg.rf.84d7020d66479182bb38a93ed3b0c8b6.jpg", - "response": "A group of three friends laughing and having fun on the street.", - "id": 23783 - }, - { - "image_path": "G:\\images\\combined\\-_56_jpeg.rf.d539e5212104d8edae350a25da3db95f.jpg", - "response": "In the image, there is a group of three people standing on a street. The person in the middle is laughing and holding the hands of the two people on either side of them. The person on the far left is wearing a red shirt and blue jeans. The person in the middle is wearing a grey shirt and blue jeans. The person on the far right is wearing a yellow shirt and black jeans. They are all standing on a street with grey pavement and there are a few people and buildings in the background. The photo appears to be rain-soaked and there are many water droplets scattered throughout the image.", - "id": 23784 - }, - { - "image_path": "G:\\images\\combined\\-_61_jpeg.rf.0374f3e0cd6a4e24d1c6a061b37ee5cc.jpg", - "response": "A group of three people standing on a balcony holding glasses of red wine. They are dressed casually, with one person wearing a blue baseball cap, a pink cardigan over a white top, and a red jacket. Another person is wearing a leopard print scarf and blue jeans. The third person is wearing a white shirt and a navy jacket. There is a potted palm tree in the background and a city skyline visible in the distance. The image is sprinkled with glitter.", - "id": 23785 - }, - { - "image_path": "G:\\images\\combined\\-_61_jpeg.rf.ca9c4877caba6c4b3c493f715326e56e.jpg", - "response": "A group of three people standing on a balcony holding glasses of red wine. They are dressed casually and are looking at their phones. The woman on the left is wearing a black jacket and a patterned scarf, the woman in the middle is wearing an orange jacket and a blue hat, and the man on the right is wearing a white shirt and a jean jacket. There are white dots overlaying the image.", - "id": 23786 - }, - { - "image_path": "G:\\images\\combined\\-_62_jpeg.rf.916cc4c1dcc097e11827c0536aea5b9f.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 23787 - }, - { - "image_path": "G:\\images\\combined\\-_62_jpeg.rf.d9c09dea3e5901e45395572cbac37ad6.jpg", - "response": "a blurry photo of a group of people walking down a sidewalk", - "id": 23788 - }, - { - "image_path": "G:\\images\\combined\\-_63_jpeg.rf.b63f0dd737abf868523b54b000034e86.jpg", - "response": "A group of people standing outside of a tall building.", - "id": 23789 - }, - { - "image_path": "G:\\images\\combined\\-_63_jpeg.rf.dec7ab076d52fb94fefef9d70a6844f5.jpg", - "response": "A couple of women wearing face masks stand in front of a building.", - "id": 23790 - }, - { - "image_path": "G:\\images\\combined\\-_65_jpeg.rf.be7d2cf1b8a67f2e37832c9602cedeaf.jpg", - "response": "The man in the black shirt is looking down at his foot.", - "id": 23791 - }, - { - "image_path": "G:\\images\\combined\\-_65_jpeg.rf.e24d5df713196c9f12e121acacf65f91.jpg", - "response": "a group of people standing in the street", - "id": 23792 - }, - { - "image_path": "G:\\images\\combined\\-_6_jpeg.rf.1f10f35d743c25d5f40186c35c49265a.jpg", - "response": "A group of people walking down a street.", - "id": 23793 - }, - { - "image_path": "G:\\images\\combined\\-_6_jpeg.rf.6231cd3cb333c2c652c2671dbec6d412.jpg", - "response": "A group of people walking on a boardwalk near the water.", - "id": 23794 - }, - { - "image_path": "G:\\images\\combined\\-_7_jpeg.rf.600055834f8d8a9979e2db66929e8dfa.jpg", - "response": "A group of people walking down a sidewalk together.", - "id": 23795 - }, - { - "image_path": "G:\\images\\combined\\-_7_jpeg.rf.a952f0541d3dff8df118047e8e0fe2f2.jpg", - "response": "a group of people walking down the street", - "id": 23796 - }, - { - "image_path": "G:\\images\\combined\\-_8_jpeg.rf.0105753485853c50757efd692dc7e047.jpg", - "response": "Two women walking down the street.", - "id": 23797 - }, - { - "image_path": "G:\\images\\combined\\-_8_jpeg.rf.4b68e17133b6be1b7adae8bf690ab9d6.jpg", - "response": "The image depicts two women walking past a wooden bench. The woman on the left is wearing a blue dress and black gloves, while the woman on the right is wearing a blue cardigan, a light blue shirt, black pants, and a face mask. She is also carrying a black purse. The women are walking together and appear to be having a conversation. The background is a park scene with a bench, a fence, and a car in the distance. The image is slightly blurry and has a pixelated effect applied to it.", - "id": 23798 - }, - { - "image_path": "G:\\images\\combined\\-_9_jpeg.rf.07502b32206509552c381b6337a2a121.jpg", - "response": "a group of people are outside in the rain.", - "id": 23799 - }, - { - "image_path": "G:\\images\\combined\\-_9_jpeg.rf.505cc74daa2eda002b3a21ed2cb99440.jpg", - "response": "A group of people on a street with a building in the background. Some of the people are standing and some are sitting. Some of the people are holding umbrellas. There are many birds flying in the air.", - "id": 23800 - }, - { - "image_path": "G:\\images\\combined\\000000000036_jpg.rf.123dd30b26190886416774faedbf5e09.jpg", - "response": "A black and white photo of a woman holding an umbrella. She is laughing and has short hair.", - "id": 23801 - }, - { - "image_path": "G:\\images\\combined\\000000000036_jpg.rf.523d6c5783cc6bfdd31aed6bfbc39864.jpg", - "response": "A collage of four black and white images. The first image is of a woman with a white umbrella. The second image is of a man sitting on a bench. The third image is of a wall with a hole in it. The fourth image is of a chair.", - "id": 23802 - }, - { - "image_path": "G:\\images\\combined\\000000000036_jpg.rf.6ac3638014933985596cf28ebe2e9226.jpg", - "response": "A collage of a woman holding an umbrella, a woman in a dress, a man in a forklift, and a woman holding a flower.", - "id": 23803 - }, - { - "image_path": "G:\\images\\combined\\000000000049_jpg.rf.4eb178e770cddfc61f2225d4684fc204.jpg", - "response": "A collage of black and white images of people engaged in various activities. There are people playing tennis, a man on a skateboard, a woman walking, a man sitting on a bench, and a man standing in front of a building.", - "id": 23804 - }, - { - "image_path": "G:\\images\\combined\\000000000049_jpg.rf.61db22e15e9b8517c174d31435dbee81.jpg", - "response": "A black and white image of a warehouse. On the left is a fork lift carrying a pallet of boxes. In the background are stacks of boxes. On the right is a shelf with boxes. In the foreground is a person.", - "id": 23805 - }, - { - "image_path": "G:\\images\\combined\\000000000049_jpg.rf.8184af638e6b7e1af700fee275910371.jpg", - "response": "A black and white photo of a building under construction. The image is split into four quadrants, with the left side showing a row of large, stacked building materials, the right side showing a close-up of the same materials, the top right corner showing a close-up of a window frame, and the bottom right corner showing a close-up of a window with a black square covering the glass.", - "id": 23806 - }, - { - "image_path": "G:\\images\\combined\\000000000064_jpg.rf.6282e831eb630e5c7faf6b748f014ca2.jpg", - "response": "A black and white photo of a street scene. There is a large tree in the background and a parked car in the foreground. In the middle of the scene, there is a pole with a clock on it. The clock is set in a black metal casing and has roman numerals for numbers.", - "id": 23807 - }, - { - "image_path": "G:\\images\\combined\\000000000074_jpg.rf.159481656b75332984ab96d124255c06.jpg", - "response": "A collage of four photos. Top left is a dog sleeping on a wooden bench. Top right is two people playing tennis. Bottom left is a dog lying on a white rug. Bottom right is four surfboards stuck in the sand.", - "id": 23808 - }, - { - "image_path": "G:\\images\\combined\\000000000074_jpg.rf.230da7215d20d3e7b59c1a7e8bc02660.jpg", - "response": "A collage of 5 different black and white photos. Clockwise from top left: a bicycle wheel, a man in a leather jacket talking on a phone, a train platform, a fork lift truck in a warehouse, and a group of people walking along a train platform.", - "id": 23809 - }, - { - "image_path": "G:\\images\\combined\\000000000074_jpg.rf.a121af2030e16b7bf365ba82f9aa0640.jpg", - "response": "A collage of 4 images. The first is a black and white image of a person sitting on the ground in front of a pile of wooden blocks. The second is a black and white image of a plan view of the wooden blocks. The third is a black and white image of a person sitting on the ground with their hand on their chin. The fourth is a black and white image of a plan view of the wooden blocks.", - "id": 23810 - }, - { - "image_path": "G:\\images\\combined\\000000000077_jpg.rf.39cc8867bd7119ff994f828f43821031.jpg", - "response": "A collage of black and white images. The top left image is of a man skateboarding with a skate park in the background. The top right image is of a stack of wooden pallets. The bottom left image is of a kite. The bottom right image is of a person in a warehouse.", - "id": 23811 - }, - { - "image_path": "G:\\images\\combined\\000000000077_jpg.rf.b7a84cc0e02957fb6567601aebcc3b3d.jpg", - "response": "A collage of black and white photos of people and signs. There is a man on a skateboard in front of a cafe sign, a man sitting on a forklift, and a man sitting on a bench. There is also a Corona beer sign and a Cafe sign.", - "id": 23812 - }, - { - "image_path": "G:\\images\\combined\\000000000077_jpg.rf.db3411322b8ab02cca3fe8ff72750e2d.jpg", - "response": "A collage of photos of people walking around in a park.", - "id": 23813 - }, - { - "image_path": "G:\\images\\combined\\000000000086_jpg.rf.5f79b24768b4c7bd358628d79787a063.jpg", - "response": "A collage of images including a motorcycle, boxes, a man with a fork lift and a man standing next to a pile of boxes.", - "id": 23814 - }, - { - "image_path": "G:\\images\\combined\\000000000086_jpg.rf.78080d2c570956b794ce90084c0e6088.jpg", - "response": "A collage of black and white images. The top left image is of a man in a white shirt and hat standing in front of a building. The top right image is a close up of a box. The bottom left image is of a man in a suit and tie holding a box. The bottom right image is of a man's hand holding a tie.", - "id": 23815 - }, - { - "image_path": "G:\\images\\combined\\000000000086_jpg.rf.f117bb4719895b40841a765c3f27be22.jpg", - "response": "A collage of black and white images. From top left, a motorcycle parked on a dirt road, a square black box, a square black box, a square black box, a person walking on a sidewalk, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box, a square black box", - "id": 23816 - }, - { - "image_path": "G:\\images\\combined\\000000000094_jpg.rf.5639f2a3edb24173691d028da87c9811.jpg", - "response": "A collage of black and white images of the city of Hebron. In the top right corner, a man is operating a forklift in a warehouse. In the bottom right corner, a pallet of wooden pallets. In the top left corner, a car driving down a street in the city. In the bottom left corner, a stack of wooden pallets.", - "id": 23817 - }, - { - "image_path": "G:\\images\\combined\\000000000094_jpg.rf.94d3741e988c1aea435c3730af096b0d.jpg", - "response": "A collage of black and white photographs of a city street. There are buildings, cars, people, and various signs. There are also a few images of a man working with a large container.", - "id": 23818 - }, - { - "image_path": "G:\\images\\combined\\000000000094_jpg.rf.d51f3fda77d2f99795544aefd4905072.jpg", - "response": "A collage of black and white images of people and vehicles in a street. There are two men pushing a pallet truck, a man unloading a van, a truck and a car. There are also three black squares covering people's faces.", - "id": 23819 - }, - { - "image_path": "G:\\images\\combined\\000000000109_jpg.rf.055f75ee34ff340a4d91731fce6ff58f.jpg", - "response": "A black and white photo of a runway with a plane on it. The plane is a 747 and says JAL on the side. There is a bridge in the background.", - "id": 23820 - }, - { - "image_path": "G:\\images\\combined\\000000000109_jpg.rf.36a52d993b1b16545a579377a1aeff00.jpg", - "response": "A black and white collage of six different images. The top row shows a large boat on the water, a view of the inside of a bus, and a sign that says \"SC2\". The bottom row shows a person walking through a large building, a view of a river from a bridge, and a man standing in a room with a lot of boxes.", - "id": 23821 - }, - { - "image_path": "G:\\images\\combined\\000000000109_jpg.rf.be506ad4b957e44ae1f3d4592b67f63b.jpg", - "response": "A collage of black and white images. The top left image is of a group of people walking on a boardwalk near the water. The top right image is of a man in a white shirt sitting on a chair on a beach. The bottom left image is of a man and a woman playing tennis on a court. The bottom right image is of a man walking on a dock near a pallet of boxes.", - "id": 23822 - }, - { - "image_path": "G:\\images\\combined\\000000000110_jpg.rf.b61c6a509db4200b47dd24765247b68a.jpg", - "response": "A collage of four black and white photos. The first is a close up of a person's face, the second is a close up of a wooden pallet, the third is a street scene with a building and cars, and the fourth is a close up of another wooden pallet.", - "id": 23823 - }, - { - "image_path": "G:\\images\\combined\\000000000110_jpg.rf.c9300f2899d302c5b437ec01b8a30c8f.jpg", - "response": "A collage of images from a warehouse. There are people working in the warehouse, boxes and crates, and a fork lift.", - "id": 23824 - }, - { - "image_path": "G:\\images\\combined\\000000000110_jpg.rf.faabcf0a4518b764e65d5061c3e024cf.jpg", - "response": "A black and white photo of a woman in a store. The woman is wearing a black shirt and grey cardigan. She is holding a handbag and walking through the store. There are multiple boxes stacked on shelves in the background.", - "id": 23825 - }, - { - "image_path": "G:\\images\\combined\\000000000113_jpg.rf.01aa67122124330419de1c4720af9967.jpg", - "response": " A collage(5,3),(994,995) of images from the 1980s and 1990s.", - "id": 23826 - }, - { - "image_path": "G:\\images\\combined\\000000000113_jpg.rf.16e95bb7ad8b4e8c93f4553e77f9b66a.jpg", - "response": "A collage of 5 black and white images of people working with forklifts and pallets.", - "id": 23827 - }, - { - "image_path": "G:\\images\\combined\\000000000113_jpg.rf.2a8d9fcf237571b26c8f44aca6a92e6a.jpg", - "response": "A black and white photo of a man standing behind a forklift.", - "id": 23828 - }, - { - "image_path": "G:\\images\\combined\\000000000127_jpg.rf.74f02d0390376c509ebaaccd02f321fb.jpg", - "response": "A forklift is shown driving through a warehouse.", - "id": 23829 - }, - { - "image_path": "G:\\images\\combined\\000000000127_jpg.rf.9d3d5d55e4bea05c8cffee831d9b67b7.jpg", - "response": "A black and white collage of 6 photos. The first is a close up of a couch. The second is a close up of a couch pillow. The third is a close up of a couch arm. The fourth is a close up of a couch leg. The fifth is a close up of a table leg. The sixth is a close up of a table leg.", - "id": 23830 - }, - { - "image_path": "G:\\images\\combined\\000000000127_jpg.rf.ce8cdcaa92ebfcc4b60d7dd3f4ebee80.jpg", - "response": "A collage of four photos. In the top left photo, a man is sitting on a couch and looking at the camera. In the top right photo, a man is standing on the right side of the couch and is holding a video camera. In the bottom left photo, a box is on the floor and it has the word fragile written on it. In the bottom right photo, a car is parked in front of a building.", - "id": 23831 - }, - { - "image_path": "G:\\images\\combined\\000000000149_jpg.rf.58c4194101ad5bc3e2fb58763583afb0.jpg", - "response": "A collage of four black and white images. The first is a large tree in a field with several people riding bikes around it. The second is a close up of a wall with a black square pattern. The third is a large open building with a white roof and a glass front. The fourth is a man walking down a hallway with a wooden bench on the right.", - "id": 23832 - }, - { - "image_path": "G:\\images\\combined\\000000000149_jpg.rf.87fa63933c3988b95f89b706563dcc2a.jpg", - "response": "A black and white image with four quadrants. The top left quadrant shows a black square over a photo of a plane on a tarmac. The top right quadrant shows a black square over a photo of two men standing in front of a large object. The bottom left quadrant shows a black square over a photo of a highway with cars. The bottom right quadrant shows a black square over a photo of a mattress.", - "id": 23833 - }, - { - "image_path": "G:\\images\\combined\\000000000149_jpg.rf.b244f3a49da363b7376370b43f551ef6.jpg", - "response": "A black and white image showing a variety of different scenes. There are several people walking around, some on a basketball court, some on a field, and some on a street. There are also several bicycles in the scene. In addition, there are several boxes stacked on pallets, and a few cars.", - "id": 23834 - }, - { - "image_path": "G:\\images\\combined\\000000000164_jpg.rf.d9a098e616a1cf37e1339ff9f5cfbcb1.jpg", - "response": "A kitchen with a stove, microwave, toaster, sink, and a counter with a chair in front of it.", - "id": 23835 - }, - { - "image_path": "G:\\images\\combined\\000000000192_jpg.rf.23aadec66d1ba1ade9edd49d5d48fd27.jpg", - "response": "A black and white photo of a woman sitting on a pile of hay next to a cow. The woman is touching the cow's head. There are large stacks of boxes behind the woman and the cow.", - "id": 23836 - }, - { - "image_path": "G:\\images\\combined\\000000000192_jpg.rf.5349c530f54394f7685287dc4c75a720.jpg", - "response": "A black and white image of a man standing on a chair in a market. The man is wearing a black shirt and has a black square covering his face. There are multiple people in the market, some are standing and some are walking around. There are also multiple umbrellas and chairs in the market.", - "id": 23837 - }, - { - "image_path": "G:\\images\\combined\\000000000192_jpg.rf.b5cebf7f28825870f4f31f35893a2785.jpg", - "response": " The Wrigley Field scoreboard(3,6),(683,693) shows the final out of the game.", - "id": 23838 - }, - { - "image_path": "G:\\images\\combined\\000000000201_jpg.rf.ccdb0f434572685482b2408bace36267.jpg", - "response": "A collage of 5 different photos. The first photo is of a man's foot on a pallet. The second photo is of a man sitting on a forklift. The third photo is of a man's foot on a skateboard. The fourth photo is of a man's foot on a bench. The fifth photo is of a man's foot on a box.", - "id": 23839 - }, - { - "image_path": "G:\\images\\combined\\000000000201_jpg.rf.f9d2866fa285bc7ca81aeea1517ad686.jpg", - "response": "A collage of different things including a snowboard, boxes, a building, and a field.", - "id": 23840 - }, - { - "image_path": "G:\\images\\combined\\000000000201_jpg.rf.fab831b1f0ec01806751dbc9c281db61.jpg", - "response": "A collage of three different images. The first image is a black and white picture of a snowboard and a ski boot on the snow. The second image is a black and white picture of a snowboard and a ski boot on the snow. The third image is a black and white picture of a snowboard and a ski boot on the snow.", - "id": 23841 - }, - { - "image_path": "G:\\images\\combined\\000000000241_jpg.rf.2170882b9d788948e7278e98b6495b16.jpg", - "response": "a group of people in a living room playing a game on a Nintendo Wii console", - "id": 23842 - }, - { - "image_path": "G:\\images\\combined\\000000000247_jpg.rf.3bf6354b13fe2dd82f1fbd6a28cfd063.jpg", - "response": "A collage of black and white images of a man in a warehouse.", - "id": 23843 - }, - { - "image_path": "G:\\images\\combined\\000000000247_jpg.rf.6b6c5a5b031f1304f0c6d0c2b4e86f88.jpg", - "response": " A collage(5,5),(995,995) of images showing the process of loading a truck with boxes.", - "id": 23844 - }, - { - "image_path": "G:\\images\\combined\\000000000247_jpg.rf.96c9da9c8d19f26974c332124ac5e888.jpg", - "response": "A black and white photo of a propeller plane.", - "id": 23845 - }, - { - "image_path": "G:\\images\\combined\\000000000257_jpg.rf.2481d57c44ff15b003acfbd97150ae49.jpg", - "response": "A black and white image showing a forklift and boxes.", - "id": 23846 - }, - { - "image_path": "G:\\images\\combined\\000000000257_jpg.rf.2d1a202ccb315093a91bf8c3a886c47f.jpg", - "response": "A collage of four different black and white images. The first image is of a man sitting on a bench and reading a book. The second image is of a building with a statue on top. The third image is of a close up of wooden pallets. The fourth image is a close up of a door.", - "id": 23847 - }, - { - "image_path": "G:\\images\\combined\\000000000257_jpg.rf.fb503456d26cdab7366cdaf389bfdf82.jpg", - "response": "A black and white photo of a city street with a bus, a truck, a helicopter, and people walking around.", - "id": 23848 - }, - { - "image_path": "G:\\images\\combined\\000000000260_jpg.rf.299a47b5f4a78b99c5a0c596ad6f3422.jpg", - "response": "A black and white image showing a warehouse scene. There are two men on forklifts, one on the left and one on the right. The forklifts are carrying pallets of goods. There are also people standing around the warehouse, some closer to the front of the image and some further back. A car is visible in the background on the left side.", - "id": 23849 - }, - { - "image_path": "G:\\images\\combined\\000000000260_jpg.rf.9c7a8ae81c1d768a7cb88c29e07daaa9.jpg", - "response": "A black and white image divided into four quadrants. The top left image shows a man standing in front of a building. The top right image shows a man sitting on a chair. The bottom left image shows a man looking at a computer screen. The bottom right image shows a small black box on a stand.", - "id": 23850 - }, - { - "image_path": "G:\\images\\combined\\000000000260_jpg.rf.d3fc1fc405fc652193cf4131e0ac96bc.jpg", - "response": "A black and white photo of a room with a woman standing in the middle of it. She is standing on a chair and appears to be looking at the ceiling. There are several boxes stacked on the floor around her. The walls are bare and the room has a very industrial feel to it.", - "id": 23851 - }, - { - "image_path": "G:\\images\\combined\\000000000283_jpg.rf.4ca052123ebd67c4364d50b91f42c04d.jpg", - "response": "A bottle of red wine next to a glass of red wine on a glass table.", - "id": 23852 - }, - { - "image_path": "G:\\images\\combined\\000000000294_jpg.rf.5c2825b0552ebd7e2691a4e099d3b959.jpg", - "response": "A collage of black and white images. On the left is a woman with her arm raised in the air, holding a large spoon. In the middle are two stacks of wooden pallets. On the right is a woman in a white shirt and black apron, holding a wooden spoon and looking down at a wooden pallet.", - "id": 23853 - }, - { - "image_path": "G:\\images\\combined\\000000000294_jpg.rf.7a52dbf33d9518078194e0fefd97bd2f.jpg", - "response": "A collage of black and white images of a man and a suitcase.", - "id": 23854 - }, - { - "image_path": "G:\\images\\combined\\000000000294_jpg.rf.8b60432629a65e037bee23664876574c.jpg", - "response": "A collage of black and white images. On the left is a man wearing a white t-shirt and glasses, holding a microphone and looking at the camera. In the middle is a black square, and on the right are two pictures. The first is of a man in a white t-shirt and black pants standing in front of a wall of speakers. The second is of a truck with the back doors open, revealing crates inside.", - "id": 23855 - }, - { - "image_path": "G:\\images\\combined\\000000000308_jpg.rf.30c3fe2d66e946c0e97b1f2e01533429.jpg", - "response": "A collage of images of a man working in a factory.", - "id": 23856 - }, - { - "image_path": "G:\\images\\combined\\000000000308_jpg.rf.a9557bbb7851a861d53064dbe73be6fa.jpg", - "response": "A black and white photo of a building.", - "id": 23857 - }, - { - "image_path": "G:\\images\\combined\\000000000308_jpg.rf.e0c98c1c17bddeb7e8b4b74472bf8df0.jpg", - "response": "A collage of four black and white images. The first image shows a man sitting at a table with a glass of wine in his hand. The second image shows a man standing next to a table with a wine glass on it. The third image shows a cat laying on a bed. The fourth image shows a man sitting on a bench.", - "id": 23858 - }, - { - "image_path": "G:\\images\\combined\\000000000315_jpg.rf.9520f836ca32dbbb99dec02f071b40ac.jpg", - "response": "A black and white image of a woman in a bikini standing in front of a pile of bananas. She is standing on a dock with a forklift behind her. There are several boxes stacked on pallets in the background. There is a fork lift on the right side of the image and a umbrella to the left.", - "id": 23859 - }, - { - "image_path": "G:\\images\\combined\\000000000315_jpg.rf.bc06868808aa0829159816effb08e483.jpg", - "response": "A collage of different images. In the top left corner, there is a beach umbrella. In the top right corner, there is a white chair. In the bottom left corner, there is a man with a beard and a hat. In the bottom center, there is a garbage truck. In the bottom right corner, there are two hot dogs in paper. In the top middle, there is a woman in a bikini walking on the beach. In the bottom middle, there is a bicycle.", - "id": 23860 - }, - { - "image_path": "G:\\images\\combined\\000000000315_jpg.rf.bc95f2a6ae42b95a71cc752e03b821cd.jpg", - "response": "A collage of black and white images of a construction site. The first image is a close up of a ladder and a man's legs, the second is a view of the street from a bridge, the third is a close up of a concrete pillar with a black square over the top of a man's head, and the fourth is a close up of a forklift.", - "id": 23861 - }, - { - "image_path": "G:\\images\\combined\\000000000326_jpg.rf.1564afa07c73d180314019240c50063b.jpg", - "response": "A collage of images including a forklift, a person, a bookcase, and a black and white photo of a tree.", - "id": 23862 - }, - { - "image_path": "G:\\images\\combined\\000000000326_jpg.rf.bec33781f58b87a22c68e978f64af9c5.jpg", - "response": "A collage of black and white images. There is a person holding a globe light, a tree, a street, a person sitting at a desk, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a person holding a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a bowl, a window, a person holding a bottle, a chair, a person holding a wine glass, a table, a person holding a wine bottle, a suitcase, a person holding a cup, a", - "id": 23863 - }, - { - "image_path": "G:\\images\\combined\\000000000326_jpg.rf.cf0af0a3274bf1ae298aec287636b184.jpg", - "response": "A collage of images including a person in a warehouse, a forklift, and a computer screen.", - "id": 23864 - }, - { - "image_path": "G:\\images\\combined\\000000000328_jpg.rf.3c68c467fb00920d9b537477a415bf25.jpg", - "response": "A collage of black and white images including a group of men in uniform, a man standing on a platform, a man standing next to an elephant, a group of people standing around a car, and a man standing on a stage.", - "id": 23865 - }, - { - "image_path": "G:\\images\\combined\\000000000328_jpg.rf.5f2775a5c71929bd1d6c0f70058dbac4.jpg", - "response": "A black and white image divided into 5 parts. In the top left corner, a man in uniform is sitting on a chair and reading a paper. In the top right corner, a man is standing in a room with several boxes. In the bottom left corner, a man is standing next to a pallet with a box on it. In the bottom right corner, a pallet is stacked on another pallet.", - "id": 23866 - }, - { - "image_path": "G:\\images\\combined\\000000000328_jpg.rf.dd2ba79d841bedddfc592bc036f6b0ff.jpg", - "response": "A collage of black and white images of men in uniforms reading papers, a woman in a bikini on a beach, a man in a suit and tie, a woman in a dress and a man in a suit.", - "id": 23867 - }, - { - "image_path": "G:\\images\\combined\\000000000338_jpg.rf.6e88fed0a405e3b9f7a191f63b695fd4.jpg", - "response": "A black and white image of a kitchen with a clock on the wall above the sink. A man is standing at the sink, washing dishes, and another man is standing at the stove. There is a bottle of dish soap on the counter next to the sink. A bowl is on the counter near the sink. A toaster is on the counter near the sink. A knife block is on the counter near the sink. A bowl is on the counter near the stove. A bowl is on the counter near the sink. A knife is on the counter near the sink. A bottle is on the counter near the sink.", - "id": 23868 - }, - { - "image_path": "G:\\images\\combined\\000000000357_jpg.rf.49be64de3266abb85f7f50c3e9591a18.jpg", - "response": "A collage of black and white photos of men in work clothes.", - "id": 23869 - }, - { - "image_path": "G:\\images\\combined\\000000000357_jpg.rf.a7b8a598ad9af97267d6386312f060d9.jpg", - "response": "A pallet with boxes on it.", - "id": 23870 - }, - { - "image_path": "G:\\images\\combined\\000000000357_jpg.rf.f1b80cb09548dd0d261fae6d4e880aea.jpg", - "response": "A collage of four black and white images. The first is of a man and a woman walking on a beach. The second is of a man playing tennis. The third is of a statue of a man holding a baseball bat. The fourth is of two men walking on a sidewalk.", - "id": 23871 - }, - { - "image_path": "G:\\images\\combined\\000000000359_jpg.rf.33b99211d6092dc1e8bc0de036a7548e.jpg", - "response": "A black and white photo of a warehouse. There is a fork lift on the right side of the photo, carrying a pallet of boxes. There are two other pallets of boxes in the warehouse, one on the left side of the photo and one in the center. There is a tower in the background on the left side of the photo. There is a mirror on the left side of the photo with a logo that says \"The Home Depot\" on it.", - "id": 23872 - }, - { - "image_path": "G:\\images\\combined\\000000000359_jpg.rf.354d03f4b0c874a8edc40b1f2fec4026.jpg", - "response": "A collage of black and white images. There is a traffic light on a pole, a man walking down a street, a man with a beard looking at a wall, a city skyline, and a person carrying a bag.", - "id": 23873 - }, - { - "image_path": "G:\\images\\combined\\000000000359_jpg.rf.419afed0626fa2d7176fcd952ebb9cff.jpg", - "response": "A collage of different images. Top left is a skyline with a tall building. Top right is a bridge. Bottom left is a stack of boxes. Bottom right is a bench with a plant behind it.", - "id": 23874 - }, - { - "image_path": "G:\\images\\combined\\000000000360_jpg.rf.5ab9d4f8e9c3716342cf77297cd806e8.jpg", - "response": "A black and white collage of four photos. In the first photo, a forklift is loading a large piece of equipment onto a truck. In the second photo, a man is working on a forklift. In the third photo, a man is working on a forklift. In the fourth photo, a man is working on a forklift.", - "id": 23875 - }, - { - "image_path": "G:\\images\\combined\\000000000360_jpg.rf.a90f880f61959a2898f04987507fc7d1.jpg", - "response": "A black and white photo of a parking garage with a sign that says \"Price: Euro 69 +23% VAT\". There is also a forklift carrying pallets of boxes.", - "id": 23876 - }, - { - "image_path": "G:\\images\\combined\\000000000360_jpg.rf.e3a2dd1614ad1a7e15148a909e4ff4ad.jpg", - "response": "A collage of four black and white images. The first image is of a forklift in a snowy outdoor environment. The second image is of a forklift in a warehouse. The third image is of a man working on a construction site. The fourth image is of a forklift in a warehouse.", - "id": 23877 - }, - { - "image_path": "G:\\images\\combined\\000000000368_jpg.rf.1620dc8be63f9b4ea15c878b70ac3320.jpg", - "response": "A collage of black and white images of children playing soccer, a woman walking her dog, a person on a stationary bike, and a person using a treadmill.", - "id": 23878 - }, - { - "image_path": "G:\\images\\combined\\000000000368_jpg.rf.d2eef3e91128850d6cd6ca72f7b50477.jpg", - "response": "A collage of black and white images. The top left image shows two boys on a playground. The top right image is a close up of a tree. The bottom left image is a close up of a box with the letters A and L. The bottom right image is a close up of a person standing in front of a ladder.", - "id": 23879 - }, - { - "image_path": "G:\\images\\combined\\000000000368_jpg.rf.d692dacab395a92b72e1016add89d986.jpg", - "response": "A collage of black and white images of children playing soccer. There are several children in the collage, some are kicking soccer balls, and others are running or jumping. The images are cut into squares and placed on a white background.", - "id": 23880 - }, - { - "image_path": "G:\\images\\combined\\000000000370_jpg.rf.165f938268706a3e82abf4259336b0a1.jpg", - "response": " A collage(5,3),(993,995) of black and white images showing various aspects of the art installation.", - "id": 23881 - }, - { - "image_path": "G:\\images\\combined\\000000000370_jpg.rf.5758abe4c9baef610f2d083312811389.jpg", - "response": "A collage of four photos. The top left photo is of a young child's face, looking up and smiling. The top right photo is of the front of a motorcycle helmet. The bottom left photo is of a sign on a wall, with Chinese characters at the top and English at the bottom. The bottom right photo is of a person's hand on a motorcycle handlebar.", - "id": 23882 - }, - { - "image_path": "G:\\images\\combined\\000000000370_jpg.rf.d709ce6d4ea756ffb30561bc670fd358.jpg", - "response": "A collage of 5 black and white images. The first is a close up of a rock, the second is a building, the third is a pile of metal rods, the fourth is a black square on a white background, and the fifth is a street with lines on it.", - "id": 23883 - }, - { - "image_path": "G:\\images\\combined\\000000000389_jpg.rf.05bb17a2ec561796d2ba3ff1e31294b2.jpg", - "response": "A collage of images including a warehouse, a forklift, a pallet, a man with a beard, and a truck.", - "id": 23884 - }, - { - "image_path": "G:\\images\\combined\\000000000389_jpg.rf.153b756a4d853c1635d9d893c082bb84.jpg", - "response": " The bearded man(3,6),(448,830) is wearing a tie and smiling.", - "id": 23885 - }, - { - "image_path": "G:\\images\\combined\\000000000389_jpg.rf.1e829ac44d63b71b06909241f0619134.jpg", - "response": "a man is driving a forklift", - "id": 23886 - }, - { - "image_path": "G:\\images\\combined\\000000000395_jpg.rf.84348f84c67db4a36d284ee8016cc4bb.jpg", - "response": "A collage of 4 images. The first is a close up of a man's face wearing a flat cap. The second is a close up of a man's hands holding a square object. The third is a close up of a building. The fourth is a close up of a shelf with several books.", - "id": 23887 - }, - { - "image_path": "G:\\images\\combined\\000000000395_jpg.rf.afd3b4e71897d82c30cb4b166b6897d4.jpg", - "response": "A man wearing a safety vest is operating a forklift.", - "id": 23888 - }, - { - "image_path": "G:\\images\\combined\\000000000395_jpg.rf.d7953308b33024c0606eb7b2803c628f.jpg", - "response": "A collage of images, including a man in a graduation cap and gown, a stack of wooden pallets, a truck carrying wooden pallets, a bridge, and a building under construction.", - "id": 23889 - }, - { - "image_path": "G:\\images\\combined\\000000000397_jpg.rf.465bcd5c7df64897e0e92e53bad72728.jpg", - "response": "A collage of black and white images. There is a woman sitting on a chair in a room, a woman with a baby in a room, a woman with a bicycle in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room, a girl in a room, a man with a fork lift in a room", - "id": 23890 - }, - { - "image_path": "G:\\images\\combined\\000000000397_jpg.rf.8fd9084728431a90e4b278c080418bab.jpg", - "response": "A black and white image of a man playing tennis. He is wearing a white shirt and white shorts and is hitting a tennis ball with a tennis racket. The image is also a collage with a square image of a map of the world in the top left corner and a square image of a wine glass and two roses in the bottom right corner.", - "id": 23891 - }, - { - "image_path": "G:\\images\\combined\\000000000397_jpg.rf.c019ca766dcd3cd69171f63a1fecde45.jpg", - "response": "A black and white photo of a street scene with a few people and a truck. There are also some warning signs and a bike.", - "id": 23892 - }, - { - "image_path": "G:\\images\\combined\\000000000415_jpg.rf.5792519e3baecdeb8ab180259d6cbd21.jpg", - "response": "A stack of boxes on a pallet.", - "id": 23893 - }, - { - "image_path": "G:\\images\\combined\\000000000415_jpg.rf.9062e0e017c38130e7da9395a86f55d4.jpg", - "response": "A collage of images. The top left image is a close up of a bed with a white comforter and a black square over the left corner. The top right image is a close up of a wooden floor with a black square over the bottom right corner. The bottom left image is a close up of a hand grabbing a pillow with a black square over the left corner. The bottom right image is a close up of a door with a black square over the right corner.", - "id": 23894 - }, - { - "image_path": "G:\\images\\combined\\000000000415_jpg.rf.b7857153d750dcc51c60bff6e81fe877.jpg", - "response": "A collage of black and white images. The top left image is of a woman standing in front of a sign that says \"Bottlesmith\". The top right image is of a woman sitting on a table with a handbag and a bottle of wine. The bottom left image is of a man standing in a room with a lot of boxes. The bottom right image is of a man standing in front of a large wooden door.", - "id": 23895 - }, - { - "image_path": "G:\\images\\combined\\000000000419_jpg.rf.14277ed01c05b57f73b4ced168f726f3.jpg", - "response": "A collage of images of a forklift in a warehouse.", - "id": 23896 - }, - { - "image_path": "G:\\images\\combined\\000000000419_jpg.rf.3e12c073204cf549ac60f52333e1fab1.jpg", - "response": "A collage of images including a tennis court, a forklift, a person wearing a hoodie and a building.", - "id": 23897 - }, - { - "image_path": "G:\\images\\combined\\000000000419_jpg.rf.9b86f9dc732e2374d556920c0c9bcb1d.jpg", - "response": "A collage of four photos. The first is a close up of a piece of glass. The second is a boy in a baseball uniform swinging a baseball bat. The third is a boy in a soccer uniform on a soccer field. The fourth is a stack of wooden pallets.", - "id": 23898 - }, - { - "image_path": "G:\\images\\combined\\000000000428_jpg.rf.68079b6f1ed8199336c62142f7e13cbc.jpg", - "response": "A black and white image of a baby in the center, with a birthday cake in front of them. The baby is crying and has frosting on their face. To the right of the baby are two blacked-out squares, and to the left of the baby are two balloons. To the right of the baby are two people, one of which is holding a surfboard. In the background, there is a gym with exercise equipment.", - "id": 23899 - }, - { - "image_path": "G:\\images\\combined\\000000000428_jpg.rf.bba9e27ac87227cf79f67aeff99bb672.jpg", - "response": "A collage of four different images. The first one is a black and white picture of a child holding a balloon. The second one is a black and white picture of a person holding an umbrella. The third one is a black and white picture of a building. The fourth one is a black and white picture of a person standing on a bridge.", - "id": 23900 - }, - { - "image_path": "G:\\images\\combined\\000000000428_jpg.rf.c6619f8ba4ba181093158f8ff113e566.jpg", - "response": "A black and white image of a child holding a balloon. The child is shirtless and wearing a necktie. The background is blurry and there are several other images layered over the top. One image is of pine needles, another is of a house, and the last is of a car.", - "id": 23901 - }, - { - "image_path": "G:\\images\\combined\\000000000436_jpg.rf.44aecc8c9146d29b4f24dfa62a28450d.jpg", - "response": "A collage of black and white images. There is a person holding a cat, a cat sitting on a pile of boxes, a person holding a black and white cat, a cat sitting on a wooden crate, a person standing in front of a cage, and a cat sitting on a wooden crate.", - "id": 23902 - }, - { - "image_path": "G:\\images\\combined\\000000000436_jpg.rf.e40868c4e2cb527d08044c8530cdb6df.jpg", - "response": "A stop sign in a yard with a man standing in front of a house.", - "id": 23903 - }, - { - "image_path": "G:\\images\\combined\\000000000436_jpg.rf.e8f0392bf930690ea58fd0f847a53b72.jpg", - "response": "A collage of images, including a person sitting on a bench, a fence, a tennis court, a skateboard, a bench with a backpack on it, and a person walking in a park.", - "id": 23904 - }, - { - "image_path": "G:\\images\\combined\\000000000443_jpg.rf.128970afa7d1522f0e644131809f7fec.jpg", - "response": "A collage of images including a dog, boxes, a sign and a hallway.", - "id": 23905 - }, - { - "image_path": "G:\\images\\combined\\000000000443_jpg.rf.a2aa37e36d1df789fe0a506866cba189.jpg", - "response": "A black and white photo of a man in a striped shirt with a fur coat and a fur hat. There are also some boxes and a truck in the background.", - "id": 23906 - }, - { - "image_path": "G:\\images\\combined\\000000000443_jpg.rf.f1a18bd645673cf5dcdf7ebb2ad04f0d.jpg", - "response": "A collage of images, including a person holding a cat, a person in a forest, a close-up of a barcode, a person in a field of trees, and a close-up of a barcode.", - "id": 23907 - }, - { - "image_path": "G:\\images\\combined\\000000000459_jpg.rf.810307bf8b13db63a90a18706fe037b7.jpg", - "response": "a man in a suit holding a camera", - "id": 23908 - }, - { - "image_path": "G:\\images\\combined\\000000000471_jpg.rf.16b5cbb22879b861c8b13cc9e6df8a48.jpg", - "response": "A black and white photo of a bus station. There is a bus in the background with the words \"Twin Los Angeles\" written on the side. People are sitting on benches and standing around. There are also suitcases and backpacks scattered around the area.", - "id": 23909 - }, - { - "image_path": "G:\\images\\combined\\000000000471_jpg.rf.9541b1f4df4c0aec35ea95df354c8f0d.jpg", - "response": "A black and white photo of a bus and people.", - "id": 23910 - }, - { - "image_path": "G:\\images\\combined\\000000000471_jpg.rf.d603a2338e51902df0028d34c9d2a8a2.jpg", - "response": "a man(1,525),(456,987) is working on a bus", - "id": 23911 - }, - { - "image_path": "G:\\images\\combined\\000000000474_jpg.rf.622ce1e76e88db04c4f9abb2f9336e1e.jpg", - "response": "A collage of black and white images. The top left image shows a person from the waist down, with their arms outstretched. The top right image shows a person sitting on a wooden bench. The bottom left image shows a wooden staircase with a square cut out of one of the steps. The bottom right image shows two children standing in a garden.", - "id": 23912 - }, - { - "image_path": "G:\\images\\combined\\000000000474_jpg.rf.70913373fbd668ced404fc92bf956eb6.jpg", - "response": "A collage of black and white images. At the top left is a person in a white shirt and shorts jumping in the air with their arms out. Below them are four other people standing in front of a building. The top right image is a close up of a forklift. The bottom left image is of a person holding a handbag walking towards a building. The bottom right image is of a forklift.", - "id": 23913 - }, - { - "image_path": "G:\\images\\combined\\000000000474_jpg.rf.b65b35841272223f8317ae48fc38c9a0.jpg", - "response": "A collage of two photos. In the left photo, a woman is leaning over a large box that is on a pallet. She is wearing a white shirt and has her hair in a ponytail. In the right photo, a close-up of the large box is shown. It has a white sheet covering it. There are also two black squares over the top of the box and the word New China is written on the side of the box.", - "id": 23914 - }, - { - "image_path": "G:\\images\\combined\\000000000488_jpg.rf.264f5765cf91a4bdf7e9841f0a621ef6.jpg", - "response": "A black and white photo of a street. There is a person sitting on a bench, a handbag on the ground, a car parked on the street, a fire hydrant, a traffic light, a parking meter, a suitcase on the ground, a bench, a backpack on the ground, a person walking down the street, a car, a bench, a person, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking meter, a suitcase, a bench, a backpack, a person, a car, a bench, a handbag, a fire hydrant, a traffic light, a parking", - "id": 23915 - }, - { - "image_path": "G:\\images\\combined\\000000000488_jpg.rf.331a3f49e44d8a97763f4935c63e64cf.jpg", - "response": "A collage of black and white images of baseball players.", - "id": 23916 - }, - { - "image_path": "G:\\images\\combined\\000000000488_jpg.rf.dae81b83fc2ed923252b17243d6aceec.jpg", - "response": "A black and white collage of photos of a warehouse.", - "id": 23917 - }, - { - "image_path": "G:\\images\\combined\\000000000510_jpg.rf.2ea6185c3c68a3e9d149899321bbac1c.jpg", - "response": "A black and white collage of four different images. In the top left image, a man is sitting on a bench with his feet up. In the top right image, a man is standing in front of a table with two boxes on it. In the bottom left image, a man is sitting on a chair with his feet up. In the bottom right image, a man is standing in front of a table with boxes on it.", - "id": 23918 - }, - { - "image_path": "G:\\images\\combined\\000000000510_jpg.rf.9256cff6a6c5f4da8d806215b697cec3.jpg", - "response": "A black and white image of a man sitting on a bench. The man is wearing a white shirt and is looking at his cell phone. He is sitting on a wooden bench and there is a cup next to him. The background is blurred and there is a railing behind the bench. The image is split into two parts, the left side is in black and white while the right side is in color. On the right side, there is a person walking towards the bench. The person is wearing a black shirt and is carrying a backpack. There is a white wall in the foreground and a body of water in the background. The water is calm and there are no people in the water.", - "id": 23919 - }, - { - "image_path": "G:\\images\\combined\\000000000510_jpg.rf.d0bd9ea6c5d56b13d66ad8b0f4f13ce0.jpg", - "response": "A black and white photo of a bench with people on it. There are two boys in military uniforms sitting on the bench, one is looking at the camera and the other is looking down. There is a man sitting on the bench with his feet propped up and a handbag beside him. Another man is sitting on the bench with his head down and a handbag beside him. There is a handbag on the ground in front of the two boys and another handbag on the ground in front of the man who is looking down.", - "id": 23920 - }, - { - "image_path": "G:\\images\\combined\\000000000529_jpg.rf.40bea81404c3bb6240fef2442a48b127.jpg", - "response": "A collage of images, including a motorcycle, a forklift, a box, and a person", - "id": 23921 - }, - { - "image_path": "G:\\images\\combined\\000000000529_jpg.rf.69513be0d295e77b2005b5e152b61b89.jpg", - "response": "A collage of four black and white images. The first is of a woman sitting on a motorcycle. The second is of a person in a forest. The third is of a stack of wooden pallets. The fourth is of a close up of a wooden pallet.", - "id": 23922 - }, - { - "image_path": "G:\\images\\combined\\000000000529_jpg.rf.8f9fb626afa05e6b3eb86abcf32d4e5b.jpg", - "response": "A collage of images, including a person riding a bike, a shipping container, a fork lift, and a stack of boxes.", - "id": 23923 - }, - { - "image_path": "G:\\images\\combined\\000000000531_jpg.rf.52398d2602c220b056b742000c241817.jpg", - "response": "A collage of 4 images. The first is a black and white photo of a person in a factory. The second is a close up of a person in a factory using a machine. The third is a black and white photo of a person standing in front of a pallet of boxes. The fourth is a close up of a wooden bench.", - "id": 23924 - }, - { - "image_path": "G:\\images\\combined\\000000000531_jpg.rf.a24c84d753f6f757e81d4dfb1f1e381a.jpg", - "response": "A collage of black and white images. The top image is of a man standing in a doorway holding a remote. The second image is of a wooden deck. The third image is of a river with a few people walking along the shore. The fourth image is of a close up of a wooden pallet. The fifth image is of a close up of a black square. The sixth image is of a close up of a black square. The seventh image is of a close up of a black square. The eighth image is of a close up of a black square. The ninth image is of a close up of a black square. The tenth image is of a close up of a black square.", - "id": 23925 - }, - { - "image_path": "G:\\images\\combined\\000000000531_jpg.rf.bb0dca37c27c95fb99f5a6a391dd0d88.jpg", - "response": "A collage of four different images. The top left image is a black square with a white border, the top right image is a train on train tracks, the bottom left image is a black square with a white border, and the bottom right image is a person running in a field.", - "id": 23926 - }, - { - "image_path": "G:\\images\\combined\\000000000532_jpg.rf.0b8b7dd6c2f06cf2f459d1ed0960d786.jpg", - "response": "A black and white collage of images. On the left is a black school bus. In the top right is a brick wall with two light fixtures. In the bottom right is a woman with blonde hair looking to the right. In the top left is a man standing on the left side of the bus. In the bottom left is a woman with dark hair looking to the left.", - "id": 23927 - }, - { - "image_path": "G:\\images\\combined\\000000000532_jpg.rf.22e12587a564afc66aaffc73bf615898.jpg", - "response": "A black and white photo of a bus.", - "id": 23928 - }, - { - "image_path": "G:\\images\\combined\\000000000532_jpg.rf.68b5aa33d649aa27de408d67ef2d1336.jpg", - "response": "A black and white photo of a forklift and a table with a cake on it.", - "id": 23929 - }, - { - "image_path": "G:\\images\\combined\\000000000536_jpg.rf.90919d2f29454f6489383d7dcb7a86ce.jpg", - "response": "A black and white photo of a store. There are two women standing in the store, one on the left and one on the right. They are both wearing black dresses. In the background, there are other people in the store. There are also boxes on the floor.", - "id": 23930 - }, - { - "image_path": "G:\\images\\combined\\000000000536_jpg.rf.cce298b4c0a0b006696951d8451aaa38.jpg", - "response": "A black and white image of a woman in a black dress standing on a train platform. The image is split into 4 quadrants, with the top left showing the woman's legs in high heels, the top right showing her upper body, the bottom left showing the train tracks and train, and the bottom right showing the train.", - "id": 23931 - }, - { - "image_path": "G:\\images\\combined\\000000000536_jpg.rf.dfb27a3ee0190e98137dd895cef09ea2.jpg", - "response": "A black and white image of two women in a room with two boxes. One woman is holding a handbag and the other is holding a shoe. There are two pairs of shoes on the floor and a handbag on a chair. The boxes are located on the right side of the room and the image is split into three sections.", - "id": 23932 - }, - { - "image_path": "G:\\images\\combined\\000000000540_jpg.rf.06d5a43671b5df3240673ef0d3e2c068.jpg", - "response": "A black and white image of a city street with a man walking down the street. The man is wearing a hat and looking at the camera. There is a box in the bottom left corner of the image with the word \"alamy\" written on it. There is also a truck in the top right corner of the image.", - "id": 23933 - }, - { - "image_path": "G:\\images\\combined\\000000000540_jpg.rf.43c2637ea75f2f061aa7b4de70decd96.jpg", - "response": "A collage of images. On the top left is a plane, in the middle left is a warehouse, and on the bottom left is a man. On the top right is a box, on the bottom right is a close up of the box, and in the middle right is a close up of the box.", - "id": 23934 - }, - { - "image_path": "G:\\images\\combined\\000000000540_jpg.rf.e4d6cea8bc2530486ed3968da357bb41.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man in a white shirt and black pants standing on a wooden platform. The second is a black and white photo of a man sitting on a bicycle in front of a pile of wooden pallets. The third is a black and white photo of a man standing in front of a pile of wooden pallets with a bicycle next to him. The fourth is a black and white photo of a pile of wooden pallets with a bicycle in front of them.", - "id": 23935 - }, - { - "image_path": "G:\\images\\combined\\000000000542_jpg.rf.5596621fcab6959c3665f6a690919f91.jpg", - "response": "A collage of photos. In the top left corner, a man and a boy are standing on a bridge. In the top right corner, a person is holding a camera. In the bottom left corner, a man is sitting on an elephant. In the bottom right corner, a small train is on the tracks.", - "id": 23936 - }, - { - "image_path": "G:\\images\\combined\\000000000542_jpg.rf.9c5ecfa2c6d925ba28336415d77eb4d2.jpg", - "response": "A black and white collage of images. The top image is of a group of men loading cargo into the back of a plane. The second image is of a man standing on a loading dock. The third image is of a pallet of boxes. The fourth image is of a man standing on a step ladder. The fifth image is of a man standing on a step ladder. The sixth image is of a man standing on a step ladder. The seventh image is of a man standing on a step ladder. The eighth image is of a man standing on a step ladder. The ninth image is of a man standing on a step ladder. The tenth image is of a man standing on a step ladder. The eleventh image is of a man standing on a step ladder. The twelfth image is of a man standing on a step ladder. The thirteenth image is of a man standing on a step ladder. The fourteenth image is of a man standing on a step ladder. The fifteenth image is of a man standing on a step ladder. The fourteenth image is of a man standing on a step ladder. The sixteenth image is of a man standing on a step ladder.", - "id": 23937 - }, - { - "image_path": "G:\\images\\combined\\000000000542_jpg.rf.c1fadf6d677d3bad9207d36335f1150a.jpg", - "response": "A collage of images, including a group of people walking, a close up of a book, a book on a table, and a man reading a book.", - "id": 23938 - }, - { - "image_path": "G:\\images\\combined\\000000000544_jpg.rf.0ea5d7fd2a7c82c76141cdd7342d95a5.jpg", - "response": "A baseball player swinging a bat during a game in front of a crowd of people.", - "id": 23939 - }, - { - "image_path": "G:\\images\\combined\\000000000564_jpg.rf.9780c70c111bf84c7b0d4cb26c9bf196.jpg", - "response": "A man is playing tennis on a court.", - "id": 23940 - }, - { - "image_path": "G:\\images\\combined\\000000000572_jpg.rf.860d9658040ff2323dfdd5570d3b7e13.jpg", - "response": "A collage of black and white images. On the left is a person wearing jeans and a black shirt, with a black square over their face. In the middle is a suitcase on the ground, and a pile of boxes on the right. In the bottom right corner is a woman with short hair and a black shirt, standing in front of a door with a black square over her face.", - "id": 23941 - }, - { - "image_path": "G:\\images\\combined\\000000000572_jpg.rf.b86e85d712dfee2f87e93fb76994479d.jpg", - "response": " A collage(5,4),(994,994) of images. The top image is a black and white image of a man standing in front of a wall. The second image is a black and white image of a group of people standing in front of a wooden fence. The third image is a black and white image of a box.", - "id": 23942 - }, - { - "image_path": "G:\\images\\combined\\000000000572_jpg.rf.dae4c80822aa6ce5cd420250e196dc17.jpg", - "response": "A collage of images including a man with a suitcase, a man with a handbag, a man in a plaid shirt, a man in a suit, a man with a briefcase, a man in a tie, a man with a backpack, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a handbag, a man with a hand", - "id": 23943 - }, - { - "image_path": "G:\\images\\combined\\000000000589_jpg.rf.58377b2f27ab97495e88cd636ef285f0.jpg", - "response": " A collage(5,5),(993,995) of three images. The top image is of a small plane sitting on a tarmac. The middle image is of a person sitting on the ground in front of a wall of electrical panels. The bottom image is of a person standing on a concrete pad next to a large concrete block.", - "id": 23944 - }, - { - "image_path": "G:\\images\\combined\\000000000589_jpg.rf.925e278e9bf1ad44418a5db18297732f.jpg", - "response": "A black and white collage of images. The top image is a man with a beard and a hat looking down. The second image is a man with a beard and a hat looking to the left. The third image is a man with a beard and a hat looking down. The fourth image is a man with a beard and a hat looking to the left. The fifth image is a man with a beard and a hat looking down. The sixth image is a man with a beard and a hat looking to the left. The seventh image is a man with a beard and a hat looking down. The eighth image is a man with a beard and a hat looking to the left. The ninth image is a man with a beard and a hat looking down. The tenth image is a man with a beard and a hat looking to the left. The eleventh image is a man with a beard and a hat looking down. The twelfth image is a man with a beard and a hat looking to the left. The thirteenth image is a man with a beard and a hat looking down. The fourteenth image is a man with a beard and a hat looking to the left. The fifteenth image is a man with a beard and a hat looking down. The sixteenth image is a man with a beard and a hat looking to the left. The seventeenth image is a man with a beard and a hat looking down. The eighteenth image is a man with a beard and a hat looking to the left. The nineteenth image is a man with a beard and a hat looking down. The twentieth image is a man with a beard and a hat looking to the left. The twenty-first image is a man with a beard and a hat looking down. The twenty-second image is a man with a beard and a hat looking to the left. The twenty-third image is a man with a beard and a hat looking down. The twenty-fourth image is a man with a beard and a hat looking to the left. The twenty-fifth image is a man with a beard and a hat looking down. The twenty-sixth image is a man with a beard and a hat looking to the left. The twenty-seventh image is a man with a beard and a hat looking down. The twenty-eighth image is a man with a beard and a hat looking to the left. The twenty-ninth image is a man with a beard and a hat looking down. The thirtieth image is a man with a beard and a hat looking", - "id": 23945 - }, - { - "image_path": "G:\\images\\combined\\000000000589_jpg.rf.d883a41f0f2e295bb53b6040b5736f24.jpg", - "response": "A collage of black and white images of a man in a white shirt and black shorts jumping off a roof of a building.", - "id": 23946 - }, - { - "image_path": "G:\\images\\combined\\000000000623_jpg.rf.58b48c4b8301a03f7c7282bc16f1ee53.jpg", - "response": "A collage of 6 photos. The first is a close up of a large elephant with a small elephant in the background. The second is a man doing a one arm push up. The third is a man doing a sit up. The fourth is a man doing a box jump. The fifth is a man doing a deadlift. The sixth is a man doing a bench press.", - "id": 23947 - }, - { - "image_path": "G:\\images\\combined\\000000000623_jpg.rf.c16f6771edef9e8c03a1f2b5f68a9451.jpg", - "response": "A collage of black and white images. In the top left image a man is sitting on a forklift. In the top right image a man is working on a large sheet of glass. In the bottom left image a man is sitting on a forklift. In the bottom right image a man is standing in front of a bus.", - "id": 23948 - }, - { - "image_path": "G:\\images\\combined\\000000000623_jpg.rf.e84f9f6bd4bdda5e20a43abf965d58a7.jpg", - "response": "A black and white photo of a room with a stuffed teddy bear head(3,3),(499,328) mounted on the wall.", - "id": 23949 - }, - { - "image_path": "G:\\images\\combined\\000000000625_jpg.rf.1934fa5545b2249ce4a63e1631835a1a.jpg", - "response": "A black and white photo of a young man and woman playing frisbee in a park. The man is leaping into the air to catch the frisbee, which is located on the top left corner of the image. The woman is standing to the left of the man, and there is a car visible in the top left corner of the image. The photo is split into four quadrants, with the top right quadrant showing a white box with the word \"fotolia\" in it. The bottom right quadrant shows a close-up of the man's hands holding the frisbee, and the bottom left quadrant shows a close-up of the woman's feet standing on a skateboard.", - "id": 23950 - }, - { - "image_path": "G:\\images\\combined\\000000000625_jpg.rf.476b983bd294069e9617d96d7261d132.jpg", - "response": "A collage of four photos. In the top left is a cheerleader with her hands in the air. In the top right is a baseball player. In the bottom left is a girl in a cage with a soccer ball. In the bottom right is a baseball umpire sitting behind a table.", - "id": 23951 - }, - { - "image_path": "G:\\images\\combined\\000000000625_jpg.rf.68ac8e7a8aa346358a54efdee75f9105.jpg", - "response": " A black and white collage(4,3),(994,995) of three photos. The top photo is of a group of people throwing items into the air. The middle photo is of a man and woman sitting together and smiling. The bottom photo is of a person holding a sign.", - "id": 23952 - }, - { - "image_path": "G:\\images\\combined\\000000000634_jpg.rf.01b2cab6e45538b8cef572a36577f2ba.jpg", - "response": "A collage of a skateboarder, a cow, a dog, and a park bench.", - "id": 23953 - }, - { - "image_path": "G:\\images\\combined\\000000000634_jpg.rf.5108cfd876be6dfad1268b063e0ab8a0.jpg", - "response": "A collage of images including a person laying on a box, a building, a box with a black square on it, and a black and white photo of a box.", - "id": 23954 - }, - { - "image_path": "G:\\images\\combined\\000000000634_jpg.rf.9d260470ecaf45524a262145faa2a5d0.jpg", - "response": "A black and white photo of a collage of four photos. The first photo is of a man skateboarding on a ramp. The second photo is of a man playing tennis, stretching to hit the ball with a tennis racket. The third photo is of a man skateboarding on a ramp, doing a trick. The fourth photo is of a suitcase and a backpack.", - "id": 23955 - }, - { - "image_path": "G:\\images\\combined\\000000000641_jpg.rf.59606e3a24ab79f83b66c876bd0679e0.jpg", - "response": "A collage of black and white images of people and machines.", - "id": 23956 - }, - { - "image_path": "G:\\images\\combined\\000000000641_jpg.rf.b5db35d9188d8e2b1626960c17d6c830.jpg", - "response": "A collage of photos shows a bus, a worker, a sign, a box, and a person wearing a hat.", - "id": 23957 - }, - { - "image_path": "G:\\images\\combined\\000000000641_jpg.rf.d97cda3cb0883a7c5c49e8396cfd2339.jpg", - "response": "A forklift is loading a truck with wood.", - "id": 23958 - }, - { - "image_path": "G:\\images\\combined\\000000000650_jpg.rf.952d150b0a755aec4d693dd37b472a78.jpg", - "response": "A collage of four photos of a cat and a dog. The first photo is of a cat sitting on a car. The second photo is of a dog lying on the ground. The third photo is of a cat lying on a wall. The fourth photo is of a dog lying on the ground.", - "id": 23959 - }, - { - "image_path": "G:\\images\\combined\\000000000650_jpg.rf.a683ec99107bf7d9d38ab6a4da99a3e5.jpg", - "response": "A collage of black and white images of a man's feet in sneakers and a skateboard.", - "id": 23960 - }, - { - "image_path": "G:\\images\\combined\\000000000650_jpg.rf.b690a44e922059a7dbbc09e0dc809b22.jpg", - "response": "A black and white image of a cat sitting on a car. Next to it is a warehouse with boxes and a person with a forklift.", - "id": 23961 - }, - { - "image_path": "G:\\images\\combined\\000000000659_jpg.rf.d301505b810e01cf25aa1ad9701fe555.jpg", - "response": "A man is working in a warehouse. He is standing in front of a tall shelf holding a pallet of boxes. The pallet is made of wood and has several boxes on it. The boxes are wrapped in plastic. The man is wearing a white shirt and dark pants. He is also wearing a cap. In the background, there are several other boxes stacked on the floor. Some of them are wrapped in plastic. There are also several other people in the warehouse. One of them is carrying a box. Another one is standing near a tall shelf. The warehouse has a lot of boxes and it looks like a busy place.", - "id": 23962 - }, - { - "image_path": "G:\\images\\combined\\000000000659_jpg.rf.ec584f52e8d9d086f349c7585a17f9ce.jpg", - "response": "A collage of three black and white photos. In the first photo, a man is standing in front of a truck with the door open. The second photo shows a man walking down a set of stairs. The third photo shows a river with a dock in the distance.", - "id": 23963 - }, - { - "image_path": "G:\\images\\combined\\000000000659_jpg.rf.fe7f80df9722c2a03375fdd79492bdec.jpg", - "response": "A black and white image of a warehouse with a forklift and boxes.", - "id": 23964 - }, - { - "image_path": "G:\\images\\combined\\000000000673_jpg.rf.aa95f8f86897032882990d2a19647210.jpg", - "response": " A collage(5,7),(995,992) of images from the warehouse.", - "id": 23965 - }, - { - "image_path": "G:\\images\\combined\\000000000673_jpg.rf.f132eadd5f5715ad1b8c2558883a1789.jpg", - "response": "A collage of black and white images. The top left image is of a beach with waves breaking in the background. The top right image is of a man standing in front of a bookshelf. The bottom left image is of a building with a clock on the front. The bottom right image is of a man standing in front of a bookshelf. There are two surfboards in the middle left image, one laying on the sand and one standing up.", - "id": 23966 - }, - { - "image_path": "G:\\images\\combined\\000000000673_jpg.rf.f164c7790e45352d657e9c17bf7312e5.jpg", - "response": "A black and white photo of a hallway with a statue of a man on a horse in the background. There is a large black square in the foreground. To the right of the square, there is a person standing in the hallway. In the background, there are two people standing in the hallway, one in the middle and one on the right. There is also a person standing on the left side of the hallway. In the background, there is a banner with Chinese characters on it. On the left side of the photo, there is a sign that says \"\u5929\u5802\u53e3\" and below it says \"\u5929\u58022A\". There is also a sign that says \"\u5927\u5b89\u8def\".", - "id": 23967 - }, - { - "image_path": "G:\\images\\combined\\000000000684_jpg.rf.3e041dac382a73a5c94edfcb0b95a7cf.jpg", - "response": "A black and white photo of a sculpture in a gallery. The sculpture is made of large, interlocking geometric shapes, including circles, squares, and triangles. The sculpture is made of a material that looks like wood, but is likely a composite material. The sculpture is standing on a wooden base. The photo is printed on a canvas that is mounted on a wall.", - "id": 23968 - }, - { - "image_path": "G:\\images\\combined\\000000000684_jpg.rf.80bb648140a4e6537580c4cf444fd3db.jpg", - "response": "A collage of four black and white images. The top left image shows a close up of a person's hand holding a small box. The top right image shows a man wearing a gas mask. The bottom left image shows a close up of a cardboard box. The bottom right image shows a crowd of people.", - "id": 23969 - }, - { - "image_path": "G:\\images\\combined\\000000000684_jpg.rf.f1c0de60737828bd426823d67a1500d2.jpg", - "response": "A black and white image of a warehouse with people and a forklift. There are three people standing in the warehouse, one on the left, one in the center, and one on the right. They are all wearing backpacks. In the center of the image, there is a forklift with a person on it. To the right of the forklift, there is a ladder. To the right of the center image, there is a bush with many leaves.", - "id": 23970 - }, - { - "image_path": "G:\\images\\combined\\000000000690_jpg.rf.b43ee20a3a30ebd1de526a2f0a8d1782.jpg", - "response": "A collage of black and white photos of skateboarders and soccer players.", - "id": 23971 - }, - { - "image_path": "G:\\images\\combined\\000000000690_jpg.rf.bfc7e72572588198b7871b87f8d8e90a.jpg", - "response": "A collage of black and white images of people in various locations such as a mall, a train station, and a gym.", - "id": 23972 - }, - { - "image_path": "G:\\images\\combined\\000000000690_jpg.rf.e28e23860df7ae25783d5b3845c4f5b3.jpg", - "response": "A collage of black and white images. Top left is a person's feet in a yoga pose. Top right is a woman's hands holding a camera. Bottom left is a flooded room. Bottom right is a baseball player catching a ball.", - "id": 23973 - }, - { - "image_path": "G:\\images\\combined\\000000000723_jpg.rf.2231788224d7a9f3ea76612f42a76ac2.jpg", - "response": "A collage of four photos, two in black and white, two in color. In the top left photo, a man is sitting on a stationary bike in a gym. In the top right photo, a man is walking into a gym. In the bottom left photo, a man is walking out of a gym. In the bottom right photo, a man is walking into a gym.", - "id": 23974 - }, - { - "image_path": "G:\\images\\combined\\000000000723_jpg.rf.29050b2649aecafb36a155ac9f004f8e.jpg", - "response": "A collage of black and white photos of a man and a motorcycle.", - "id": 23975 - }, - { - "image_path": "G:\\images\\combined\\000000000723_jpg.rf.d6dc48814610d323ccd6e3600bfae612.jpg", - "response": "A black and white photo of a street scene. The street is lined with buildings and there is a cafe on the left hand side. A man is walking down the street, looking at his phone. There are a few other people in the scene, but most of them are looking away. There are a few cars parked on the street.", - "id": 23976 - }, - { - "image_path": "G:\\images\\combined\\000000000730_jpg.rf.0bc433c630c7015c489f5e31cf1de4c0.jpg", - "response": "A collage of black and white images of buses.", - "id": 23977 - }, - { - "image_path": "G:\\images\\combined\\000000000730_jpg.rf.e4dbfdd772f2173ef21a1dfd7b9fa033.jpg", - "response": "A collage of 5 different black and white images. The first is of a tram with the words Polperro Tram Co. on the side. The second is of a man in a construction vehicle. The third is of a building with various signs on it. The fourth is of a person sitting on a step. The fifth is a close up of a machine with a black square on it.", - "id": 23978 - }, - { - "image_path": "G:\\images\\combined\\000000000730_jpg.rf.eedd8837fe4174adb663c76637678845.jpg", - "response": "A collage of four different images. The top left image is a black and white photo of a train with the words \"Cerro Co.\" written on the side. The top right image is a black and white photo of a person throwing a frisbee in a park. The bottom left image is a close-up of a wooden pallet with a black square over the center of the pallet. The bottom right image is a close-up of a wooden pallet with the center square black.", - "id": 23979 - }, - { - "image_path": "G:\\images\\combined\\000000000731_jpg.rf.7f86acb513a9e04a382ad7c5e808564e.jpg", - "response": "A black and white image with a person in a black shirt and black pants. There is a black square missing from the image. There is a tent city in the background. There is a plane on the ground. There is a bus in the background. There is a bridge in the background. There is a white box in the foreground.", - "id": 23980 - }, - { - "image_path": "G:\\images\\combined\\000000000731_jpg.rf.94396d043ffbcace1b4c4ac69ded172b.jpg", - "response": "A black and white image of a forklift with boxes on it. There is a man standing on the left side of the image and a cat on the right. There are also tents in the background.", - "id": 23981 - }, - { - "image_path": "G:\\images\\combined\\000000000731_jpg.rf.e2282bf8801569a2536b3f3629b353b8.jpg", - "response": "A collage of four different images. The first is a woman holding an umbrella. The second is a box with the word alamy on it. The third is a cake with a child in front of it. The fourth is a box with a hole in it.", - "id": 23982 - }, - { - "image_path": "G:\\images\\combined\\000000000735_jpg.rf.3128afa5c16dbec27aa9b90fe1332b44.jpg", - "response": "A black and white collage of images. At the top is a man standing at a counter with a cupcake. Below him are two other men, one holding a skateboard. To the right is a picture of a room with a desk and a window. To the left is a picture of a man standing in front of a wall.", - "id": 23983 - }, - { - "image_path": "G:\\images\\combined\\000000000735_jpg.rf.90787fb89e1380450cc266bed114f9b8.jpg", - "response": "A black and white image showing a man holding a lightbulb, a bus, a table with dishes, a shelf with boxes and a single black square", - "id": 23984 - }, - { - "image_path": "G:\\images\\combined\\000000000735_jpg.rf.f04747773f9fb45b57075674b7adb09e.jpg", - "response": "A collage of black and white images including a man lighting a candle on a cake, a woman standing in front of a table of food, a table with a box on it, and a blurry image of a person holding a camera.", - "id": 23985 - }, - { - "image_path": "G:\\images\\combined\\000000000762_jpg.rf.7b0381e1322eef30463b81a66feb67e3.jpg", - "response": "A living room with a couch, chair, and television.", - "id": 23986 - }, - { - "image_path": "G:\\images\\combined\\000000000764_jpg.rf.24a4469b96f4be5af2a1ccb4b2c28118.jpg", - "response": "A collage of four photos. In the top left photo, a man is throwing a black square object. In the top right photo, a close-up of the black square object. In the bottom left photo, a group of people are standing on a stage. In the bottom right photo, a concrete block is thrown on the stage.", - "id": 23987 - }, - { - "image_path": "G:\\images\\combined\\000000000764_jpg.rf.4a1282d53ce560010e1db43fa6f394d6.jpg", - "response": "A collage of black and white images, including a group of people standing in a field, a box with the number 6 on it, a square, a person holding a frisbee, a box with a logo on it, a person sitting on the ground, a cup of coffee, and a person standing in front of a wall.", - "id": 23988 - }, - { - "image_path": "G:\\images\\combined\\000000000764_jpg.rf.825b159eaba2e0dc15ef77e13e6b91eb.jpg", - "response": "A black and white image showing a collage of images. The images include a woman pointing, a man pushing a pallet jack with crates, a person in a suit and tie, and a man holding a briefcase. The image is also described as a \"a collage of images\" and \"a black and white image\".", - "id": 23989 - }, - { - "image_path": "G:\\images\\combined\\000000000781_jpg.rf.041c9441b57dfaea0a63943c1c4226c3.jpg", - "response": "A black and white image with various features. On the left is a large white square with a small black square in the bottom left corner. In the center right is a sign that says \"EACE WAY HOTEL\" with a small black square over the top. Above this is a square with the words \"IF I WERE\" in black text on a white background. Above this is a square with the words \"I'D BE\" in black text on a white background. Above this is a square with the words \"AT LEAST\" in black text on a white background. Above this is a square with the words \"PART OF\" in black text on a white background. Above this is a square with the words \"A\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a square with the words \"BUT\" in black text on a white background. Above this is a square with the words \"NOT\" in black text on a white background. Above this is a square with the words \"PART\" in black text on a white background. Above this is a square with the words \"OF\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a square with the words \"IMAGINATION\" in black text on a white background. Above this is a square with the words \"AND\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a square with the words \"IMAGINATION\" in black text on a white background. Above this is a square with the words \"AND\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a square with the words \"IMAGINATION\" in black text on a white background. Above this is a square with the words \"AND\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a square with the words \"IMAGINATION\" in black text on a white background. Above this is a square with the words \"AND\" in black text on a white background. Above this is a square with the words \"YOUR\" in black text on a white background. Above this is a", - "id": 23990 - }, - { - "image_path": "G:\\images\\combined\\000000000781_jpg.rf.0f5ece6d6f66ac9f98a7fe4d386ea3fa.jpg", - "response": "A collage of 4 images. The first is a black and white image of a road with a car on it. The second is a black and white image of a box with the word \"ship\" on it. The third is a black and white image of a field of plants. The fourth is a black and white image of a table with boxes on it.", - "id": 23991 - }, - { - "image_path": "G:\\images\\combined\\000000000781_jpg.rf.e60f8ce0f22d49c07db33c2eb5899d0f.jpg", - "response": "A black and white photo of a warehouse. There are three people in the photo, one on the left, one in the center, and one on the right. The person in the center is pushing a cart. There are two other carts in the photo, one on the right and one in the background on the left. There is also a hand truck in the background on the right.", - "id": 23992 - }, - { - "image_path": "G:\\images\\combined\\000000000790_jpg.rf.a5ef906d560c34771e554399f88f378d.jpg", - "response": "A black and white collage of images. The top left image is of a man and a woman sitting at a table with a potted plant on the left. The top right image is of a man standing in front of a large stack of boxes. The bottom left image is of a man sitting on a step. The bottom right image is of a man standing in front of a pallet of boxes.", - "id": 23993 - }, - { - "image_path": "G:\\images\\combined\\000000000790_jpg.rf.dcaa2b6a1d35c0b8444cb3fc345a1bb7.jpg", - "response": "A collage of four photos. In the first, a woman is seen from the neck down, wearing a black and white dress and a black and white purse. She is holding a handbag and standing in front of a door. In the second photo, a man is seen from the neck down, wearing a black tank top and black shorts. He is standing in front of a pile of boxes. In the third photo, a man is seen from the neck down, wearing a black tank top and black shorts. He is standing in front of a pile of boxes and is holding a handbag. In the fourth photo, a man is seen from the neck down, wearing a black tank top and black shorts. He is standing in front of a pile of boxes and is holding a handbag.", - "id": 23994 - }, - { - "image_path": "G:\\images\\combined\\000000000790_jpg.rf.e991c68b872e844de2621020f22b314d.jpg", - "response": "A man and woman sitting at a table.", - "id": 23995 - }, - { - "image_path": "G:\\images\\combined\\000000000810_jpg.rf.35e6199a43aeb4a4e33afe2af7a1cd63.jpg", - "response": "A black and white image of a woman standing in a large warehouse. She is holding a large roll of fabric on her shoulder and looking at the camera. There are other rolls of fabric scattered around the warehouse. The floor is covered in cardboard boxes and the walls are lined with shelving.", - "id": 23996 - }, - { - "image_path": "G:\\images\\combined\\000000000810_jpg.rf.bcd06a1c66b1cbaba9e7af19225949b0.jpg", - "response": "A black and white collage of images. The top left image is of a white chair. The top right image is of a foot in a sandal on a bed. The bottom left image is of a sandwich. The bottom middle image is of a street scene. The bottom right image is of a wall with many signs.", - "id": 23997 - }, - { - "image_path": "G:\\images\\combined\\000000000810_jpg.rf.fdceb21dcd66f1ae434f56261a207bd9.jpg", - "response": "A collage of images including a woman in a store, a pile of boxes, a person in a store, and a person in a store with a cart.", - "id": 23998 - }, - { - "image_path": "G:\\images\\combined\\000000000821_jpg.rf.1038ae9e9ec36936af437ec6d729a630.jpg", - "response": "A collage of black and white images including a man with a beard, a man with a beard and a hat, a man in a suit, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man in a suit and tie, a man", - "id": 23999 - }, - { - "image_path": "G:\\images\\combined\\000000000821_jpg.rf.ca1c4043b6cae386cf63b3b8228e0b66.jpg", - "response": "A collage of four photos. The top left photo is a man standing next to a jukebox. The top right photo is a man sitting on a bench. The bottom left photo is a man standing next to a bus. The bottom right photo is a group of people standing in front of the bus.", - "id": 24000 - }, - { - "image_path": "G:\\images\\combined\\000000000821_jpg.rf.dd8b9d89b6fad019c4702e8e538207d3.jpg", - "response": "A black and white photo of a city street with people and buildings. There are a few images of people in the street, including one of a man wearing a white shirt and another of a man wearing a white tank top. There is also a church with a steeple in the background.", - "id": 24001 - }, - { - "image_path": "G:\\images\\combined\\000000000828_jpg.rf.7c24d384ace29f70b4ab246956f1b51f.jpg", - "response": "A collage of four different images. The top left image shows a man surfing on a wave. The top right image shows a man working in a warehouse. The bottom left image shows a bench with a man sitting on it. The bottom right image shows a brick wall with two boxes on it.", - "id": 24002 - }, - { - "image_path": "G:\\images\\combined\\000000000828_jpg.rf.d513070dd21c797d713e76fd143e2b1e.jpg", - "response": "A black and white image of a dock with a forklift in the middle of it. There is a person on a forklift in the middle of the image. There is a motorcycle parked on the dock. There is a fence on the left side of the image. There is a building on the right side of the image. There is a person standing on the dock.", - "id": 24003 - }, - { - "image_path": "G:\\images\\combined\\000000000828_jpg.rf.d82c2d54fc04c72f73c351dbefb569bb.jpg", - "response": "A collage of images showing a man in a forklift truck.", - "id": 24004 - }, - { - "image_path": "G:\\images\\combined\\000000000836_jpg.rf.15ba27c9cb544e4bde8f1c50eafa580f.jpg", - "response": "A collage of black and white images. Top image is of a man sitting on the ground, bottom left image is of a wooden crate, bottom right image is of a wooden crate with a black square missing from it.", - "id": 24005 - }, - { - "image_path": "G:\\images\\combined\\000000000836_jpg.rf.3aa927a61b22653c61d84fc2d1ea83fa.jpg", - "response": "A black and white photo of a man sitting on a bench. He is looking down at his hands and appears to be deep in thought. There are also three other people in the photo, one of which is walking up a flight of stairs. The other two are standing in the background. There is also a snowboarder in the photo, who is in the process of going down a mountain.", - "id": 24006 - }, - { - "image_path": "G:\\images\\combined\\000000000836_jpg.rf.5ba90dd01fd9231a5b84c9f654772b81.jpg", - "response": "A black and white photo of a snowboarder in the air. Next to the snowboarder is a pile of skis. Below the snowboarder is a box. Next to the box is a fork lift. Next to the fork lift is a pallet of batteries. On the other side of the room is a forklift.", - "id": 24007 - }, - { - "image_path": "G:\\images\\combined\\000000000839_jpg.rf.c13a194639b8f60a3c22eb79c615d69b.jpg", - "response": "A boy is jumping in the air to catch a frisbee.", - "id": 24008 - }, - { - "image_path": "G:\\images\\combined\\000000000882_jpg.rf.6d7e65b265af504128ee7808424f0245.jpg", - "response": "A black and white image of a large building under construction. The building is made of concrete and has many support beams and metal structures. There is a large body of water visible in the background.", - "id": 24009 - }, - { - "image_path": "G:\\images\\combined\\000000000882_jpg.rf.7d4937ac7195a2fb2df5ede697c93ef8.jpg", - "response": "A collage of black and white images of people walking through a zoo.", - "id": 24010 - }, - { - "image_path": "G:\\images\\combined\\000000000882_jpg.rf.ab1ca0ceb4d512dcf247895e54dc454e.jpg", - "response": "A collage of black and white images. In the top left image a man is holding a camera and looking upwards. In the top right image a white box is cut into several smaller squares. In the bottom left image a man is blowing up a balloon with a child standing nearby. In the bottom right image a traffic light is shown from the side.", - "id": 24011 - }, - { - "image_path": "G:\\images\\combined\\000000000897_jpg.rf.41f3105fade357f40173cd5b10846d88.jpg", - "response": "A collage of four different photos. In the top left photo, a man is using a forklift to load a pallet of boxes into the back of a truck. In the top right photo, the same forklift is shown unloading the pallet of boxes. In the bottom left photo, a man is using a crowbar to pry open a large box. In the bottom right photo, a close-up of the same box is shown with the words \"this is not a toy\" written on it.", - "id": 24012 - }, - { - "image_path": "G:\\images\\combined\\000000000897_jpg.rf.70befb977d168a8672cbb4811409c95a.jpg", - "response": "A collage of images, including a person loading a box onto a forklift, a box, and a person in a warehouse.", - "id": 24013 - }, - { - "image_path": "G:\\images\\combined\\000000000897_jpg.rf.cab81830eaa6823ada74574591ed5dd4.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a person in a warehouse holding a large metal pipe. The top right photo is a black and white photo of a person in a warehouse holding a large metal pipe. The bottom left photo is a black and white photo of a person in a warehouse holding a large metal pipe. The bottom right photo is a black and white photo of a person in a warehouse holding a large metal pipe.", - "id": 24014 - }, - { - "image_path": "G:\\images\\combined\\000000000901_jpg.rf.11d8305a94b3d249a62d7faa7dfe9a6f.jpg", - "response": "A collage of four different images. The first is a black and white photo of a busy street with a bus in the background. The second is a close up of a fence. The third is a black and white photo of a truck. The fourth is a stack of wooden pallets.", - "id": 24015 - }, - { - "image_path": "G:\\images\\combined\\000000000901_jpg.rf.192eac607ebea9f6a4bcaccf8cd00c44.jpg", - "response": "A black and white image of a factory. In the top left corner, there is a conveyor belt with boxes on it. In the top right corner, there is a person operating a machine. In the bottom left corner, there is a pallet of boxes. In the bottom right corner, there is a close-up of a machine.", - "id": 24016 - }, - { - "image_path": "G:\\images\\combined\\000000000901_jpg.rf.772fd1f243aca6fc9919c9041431ca9d.jpg", - "response": "A black and white collage of images of a shipping and receiving area. The top left image is of a person on a forklift with a pallet of boxes. The top right image is of a person on a forklift with a pallet of boxes. The bottom left image is of a box on a conveyor belt. The bottom right image is of a pallet of boxes.", - "id": 24017 - }, - { - "image_path": "G:\\images\\combined\\000000000913_jpg.rf.a790e901f3f81ff8ed0d3be907932cc5.jpg", - "response": "A black and white photo of a person sitting on the wing of an airplane. The person is wearing a white jacket and hat. The airplane is covered in snow.", - "id": 24018 - }, - { - "image_path": "G:\\images\\combined\\000000000913_jpg.rf.a7bf7b51be1814c25dc8706f47b4ed93.jpg", - "response": "A collage of black and white images. The top left image is of a small plane on a tarmac. The top right image is of a wooden pallet. The bottom left image is of the side of a fire truck. The bottom right image is of a brick wall with two small windows.", - "id": 24019 - }, - { - "image_path": "G:\\images\\combined\\000000000913_jpg.rf.daa7c0f0b75f5cc9ac8fb45ae4e9f6fd.jpg", - "response": "A collage of 4 images. The first is a black and white image of a F-15E fighter jet on an airbase. The second is a close up of a suitcase. The third is a close up of a door. The fourth is a close up of a white box.", - "id": 24020 - }, - { - "image_path": "G:\\images\\combined\\000000000923_jpg.rf.19ab3f91c2cd9b608de3ce9abad95eb3.jpg", - "response": "A black and white image of a street scene with a man walking by a parked truck. There are a few cars parked on the street and a few trucks. There is a building in the background. There is a person standing on the street. There is a person walking on the street. There is a person sitting on a bench. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a person walking on the sidewalk. There is a person standing on the street. There is a person walking on the street. There is a person standing on the sidewalk. There is a", - "id": 24021 - }, - { - "image_path": "G:\\images\\combined\\000000000923_jpg.rf.69f572b3e48e894a07bae5851e0f6d09.jpg", - "response": "A train is on the tracks in a snowy station.", - "id": 24022 - }, - { - "image_path": "G:\\images\\combined\\000000000923_jpg.rf.f2c1ce454b5403acab2040ebcbfaf108.jpg", - "response": "A collage of black and white images. Top: a row of empty seats in a stadium. Middle: a street with parked cars. Bottom: a baseball player holding a bat, an umpire, and a catcher.", - "id": 24023 - }, - { - "image_path": "G:\\images\\combined\\000000000925_jpg.rf.be83bbc9825d3e615004ae9e02a377d0.jpg", - "response": "A man in a suit sitting down.", - "id": 24024 - }, - { - "image_path": "G:\\images\\combined\\000000000927_jpg.rf.3c007daf391f752a643469ae68bed3b1.jpg", - "response": "A collage of four black and white images. The top left image shows a person with their back to the viewer. The top right image shows a person walking past a row of old gas pumps. The bottom left image shows a dock with a light post in the background. The bottom right image shows a close up of a sign with an arrow pointing down.", - "id": 24025 - }, - { - "image_path": "G:\\images\\combined\\000000000927_jpg.rf.d9e072bb8f0a4c5221038e8ecd3dfb7d.jpg", - "response": "A collage of black and white images. The top image is a close up of a brick wall with a crack in it. The second image is a close up of a brick building. The third image is two men standing next to a white car. The fourth image is a close up of a brick wall. The fifth image is a close up of a brick building. The sixth image is two men standing next to a white car.", - "id": 24026 - }, - { - "image_path": "G:\\images\\combined\\000000000927_jpg.rf.f7ff3fbc0ee9f97ad84aabf902b1432a.jpg", - "response": "A collage of 5 different images. The first is a black and white photo of a woman with a ponytail and a hat, wearing a black shirt with white polka dots and pants. The second is a black and white photo of a man and a woman walking on a beach. The third is a black and white photo of a room with a couch, a potted plant, a lamp, and a framed picture. The fourth is a black and white photo of a hallway with doors and windows. The fifth is a black and white photo of a table with a bowl and a book.", - "id": 24027 - }, - { - "image_path": "G:\\images\\combined\\000000000934_jpg.rf.4d712df9d6569b7bda50f052bbc762d3.jpg", - "response": "A collage of images including an elephant, a truck, and a brick wall.", - "id": 24028 - }, - { - "image_path": "G:\\images\\combined\\000000000934_jpg.rf.a9fc44e2a4128ff2f749139470d227fa.jpg", - "response": "A collage of four photos. The first is a white elephant in a room. The second is a man in a warehouse. The third is a man on a surfboard. The fourth is a man on a surfboard in a room.", - "id": 24029 - }, - { - "image_path": "G:\\images\\combined\\000000000934_jpg.rf.f8317118da34b307e5dee1b20eb611dd.jpg", - "response": "A collage of three photos. The top left photo is of a large elephant standing in the grass. The top right photo is of a brick wall with graffiti on it. The bottom photo is of a golf cart with a person in it.", - "id": 24030 - }, - { - "image_path": "G:\\images\\combined\\000000000960_jpg.rf.0f6571c1858c2c4b8d9a79c223e67cb6.jpg", - "response": "A collage of images including a woman, a man, a box, a street, and a computer screen.", - "id": 24031 - }, - { - "image_path": "G:\\images\\combined\\000000000960_jpg.rf.1a18a6d6a77f934ecc36a9085b9ec883.jpg", - "response": "A collage of black and white photos. The top left photo is of a man with a beard and glasses, wearing a white shirt and suspenders, holding a microphone to his mouth. The top right photo is of a man in a black shirt and pants, standing in front of a machine. The bottom left photo is of a man with a beard and a white shirt, kneeling on the ground and touching the side of a boat. The bottom right photo is of a gray and white striped pattern with three black squares.", - "id": 24032 - }, - { - "image_path": "G:\\images\\combined\\000000000960_jpg.rf.3c9e5d0e70bdaa627ed21a083a9e2afe.jpg", - "response": "A collage of four photos, one of a woman with her arm around a man, one of a man in a fork lift, one of a woman in shorts kicking a soccer ball, and one of a man in a field.", - "id": 24033 - }, - { - "image_path": "G:\\images\\combined\\000000000962_jpg.rf.34005730d98b1d7165c33ded5cfef2be.jpg", - "response": "A collage of images. On the top left is a man in a white shirt sitting on a couch with a remote in his hand. On the top right is a sign that says \"Sunglasses\". In the middle left is a man in a black shirt standing in front of a store. In the middle right is a white box with the letters \"cof\". In the bottom left is a man sitting on a couch with a remote in his hand.", - "id": 24034 - }, - { - "image_path": "G:\\images\\combined\\000000000962_jpg.rf.49b8520e84660fb50f7140e74a616330.jpg", - "response": "A collage of black and white images of a man in a bandana and a man with a dog. The man in the bandana is sitting on a pallet and the man with the dog is sitting on a pallet with a fork lift.", - "id": 24035 - }, - { - "image_path": "G:\\images\\combined\\000000000962_jpg.rf.b0f453511ff75ad24ebc455d678f4ce0.jpg", - "response": "A collage of four black and white images. The first image is of a woman sitting on a dock with a boat in the background. The second image is of a man working on a dock. The third image is of a dock with a boat and a gas pump. The fourth image is of a boat docked at a dock.", - "id": 24036 - }, - { - "image_path": "G:\\images\\combined\\000000000965_jpg.rf.c1c811278ddcc8eff5dd3e3303f65116.jpg", - "response": "A snowboarder's feet in a snowboard.", - "id": 24037 - }, - { - "image_path": "G:\\images\\combined\\000000000969_jpg.rf.187efa6a0d5957273407596088421591.jpg", - "response": "An older man and a young boy playing catch in a yard.", - "id": 24038 - }, - { - "image_path": "G:\\images\\combined\\000000000984_jpg.rf.02485b4e4ce02672bb9d3999fdbf6478.jpg", - "response": "A black and white image of a warehouse with a forklift, pallets, and people. There are two people working in the warehouse, one on the left pushing a pallet jack and one on the right pushing a pallet jack. There are two other people in the warehouse, one in the top left corner and one in the top right corner. The warehouse has multiple pallets and boxes.", - "id": 24039 - }, - { - "image_path": "G:\\images\\combined\\000000000984_jpg.rf.19d24cf9883494234061769d4c14d478.jpg", - "response": "A collage of images. On the left is a person's hand holding a banana. In the middle is a school bus. On the right is a person standing in front of a bus.", - "id": 24040 - }, - { - "image_path": "G:\\images\\combined\\000000000984_jpg.rf.ef3a412420d9a6180d9e8cac0378e274.jpg", - "response": "A black and white photo of a room with a bed, a couch, a tv, and a chair. There are also several boxes with recycling symbols on them.", - "id": 24041 - }, - { - "image_path": "G:\\images\\combined\\000000000985_jpg.rf.40ecb62221a7b1a7b451f36928b23043.jpg", - "response": "A collage of different images. The top left image is of a bus with the word \"feel\" on it. The top right image is of a bus with the word \"fun\" on it. The bottom left image is of a person playing tennis. The bottom right image is of a person in a warehouse.", - "id": 24042 - }, - { - "image_path": "G:\\images\\combined\\000000000985_jpg.rf.7772d6529cadfebf765cc3c1c53933df.jpg", - "response": "A black and white photo of a street scene. There is a person lying on the ground on the left, a truck on the right, and people walking on the street. There are also signs in English on the buildings.", - "id": 24043 - }, - { - "image_path": "G:\\images\\combined\\000000000985_jpg.rf.ef2c5ba7f760a4b7c6363ca109d6c997.jpg", - "response": "A collage of black and white images. The first is a group of people sitting on bleachers with a sign that says \"feel good bus\" in front of them. The second is a close up of a laptop. The third is a group of people standing on a bus. The fourth is a person sitting on a bench with a backpack.", - "id": 24044 - }, - { - "image_path": "G:\\images\\combined\\000000000999_jpg.rf.004bdca2603812000c2025dbed0028c9.jpg", - "response": "A collage of four photos showing different types of warehouse hazards. In the first photo, a worker is standing on a forklift with his hands on his hips. In the second photo, a worker is reaching for a box on a high shelf. In the third photo, a worker is carrying a box on their shoulder. In the fourth photo, a worker is standing on a pallet with their arms out.", - "id": 24045 - }, - { - "image_path": "G:\\images\\combined\\000000000999_jpg.rf.5835702d4fe06c33c7d850555c5d7e56.jpg", - "response": " A man(4,74),(390,653) in a white shirt is bending over and reaching for a box on the ground. The box is near a semi truck.", - "id": 24046 - }, - { - "image_path": "G:\\images\\combined\\000000000999_jpg.rf.83832f99c19bc918361f849391127a31.jpg", - "response": "A blurry image of a man sitting on a chair in front of a table with a computer on it. The table has several boxes on it and the man is looking at a computer screen.", - "id": 24047 - }, - { - "image_path": "G:\\images\\combined\\000000001006_jpg.rf.b936df42ef2ece597102e1a36a6f827b.jpg", - "response": "A man wearing a leather jacket, black t-shirt, black shorts and sandals talks on his cell phone.", - "id": 24048 - }, - { - "image_path": "G:\\images\\combined\\000000001011_jpg.rf.5209b544f4f18c375395ec0f05b60b15.jpg", - "response": "A black and white photo of a building with a sign on the roof. The sign is rectangular and white. The building is in the background with a forklift in the foreground. There are two men in the image, one on the left and one on the right. The right side of the image is blurred out. There are two pallets of boxes in the background. One is on the right side of the image and the other is in the middle. There is a wooden pallet in the foreground on the left side of the image.", - "id": 24049 - }, - { - "image_path": "G:\\images\\combined\\000000001011_jpg.rf.bcf11f967d9eda29cb791d0a04cd0996.jpg", - "response": "A collage of images. The top left image is of a man standing on a metal platform and the top right image is of a man standing on a metal platform with a black box. The bottom left image is of a man sitting on a chair in a room with a window and the bottom right image is of a black box on a wall with text on it.", - "id": 24050 - }, - { - "image_path": "G:\\images\\combined\\000000001011_jpg.rf.d0a8b8f7e75e2caf5aeea2a5070ac868.jpg", - "response": "A collage of different images including a pile of wooden pallets, a person in a suit holding a cell phone, and a group of people walking on a street.", - "id": 24051 - }, - { - "image_path": "G:\\images\\combined\\000000001014_jpg.rf.0804e3c90e26d8848e944bae71d184ea.jpg", - "response": " A man(255,266),(463,578) is standing behind a stack of boxes(197,600),(462,997), there are other people(93,322),(278,567) in the background", - "id": 24052 - }, - { - "image_path": "G:\\images\\combined\\000000001014_jpg.rf.1710d48c7b1f634825088f8d650b648f.jpg", - "response": "A collage of black and white images. The top image is of a man sitting on a bench with his head in his hands. The second image is of a man sitting on a bench with his head in his hands. The third image is of a bird sitting on a tree branch. The fourth image is of a concrete block.", - "id": 24053 - }, - { - "image_path": "G:\\images\\combined\\000000001014_jpg.rf.e5b17bb1526db7fc0fb96ab0aa87d99a.jpg", - "response": "A black and white collage of 5 photos. In the top left photo, two men are standing behind a bush. In the top right photo, a man is holding a sign with the number 7 on it. In the top middle photo, a walkway is shown with a bench on the left and a wall on the right. In the bottom left photo, a white box is shown with a black square missing from it. In the bottom right photo, a close up of a bush is shown with a person partially visible through it.", - "id": 24054 - }, - { - "image_path": "G:\\images\\combined\\000000001089_jpg.rf.118c367a9b7dd8c582d1c36ace131ccf.jpg", - "response": "A black and white photo collage of a man in a suit and a woman in a dress. The man is looking down and has his hand to his mouth. The woman is looking at the camera. There are two other women in the collage, one with her back turned and one looking at the camera. There is a curtain in the background.", - "id": 24055 - }, - { - "image_path": "G:\\images\\combined\\000000001089_jpg.rf.8f9059f1967bcfe98c0005d13b88442c.jpg", - "response": "A black and white collage of six different images. The top left image is a close up of a man's face with his hand covering his mouth. The top right image is a close up of a brick wall. The bottom left image is a man in a suit standing in front of a forklift. The bottom middle left image is a man in a suit sitting in a chair. The bottom middle right image is a man sitting on a bench. The bottom right image is a man riding a motorcycle.", - "id": 24056 - }, - { - "image_path": "G:\\images\\combined\\000000001089_jpg.rf.cec8316692810e0da40281f406a1647b.jpg", - "response": "A collage of black and white images. On the left is a man with his head resting on his hand, wearing a suit and tie. Below him is a table with a plate of food, including a slice of chocolate cake. In the background are several boxes stacked on top of each other. To the left is a row of TV screens. In the top right corner is a shelf with several bottles.", - "id": 24057 - }, - { - "image_path": "G:\\images\\combined\\000000001098_jpg.rf.09b4d048acd34c94ce63e47e0b1b23fa.jpg", - "response": "A collage of four black and white photographs. In the top left photo, a woman is holding a bird on her arm. In the top right photo, the bird is perched on a bottle. In the bottom left photo, a woman is standing in front of a brick wall. In the bottom right photo, a man is standing in front of a brick wall.", - "id": 24058 - }, - { - "image_path": "G:\\images\\combined\\000000001098_jpg.rf.6d995268a101f12497b9d5836af95b12.jpg", - "response": "A collage of images including a person sitting on hay, a person's feet, a building, a stack of materials, and a door.", - "id": 24059 - }, - { - "image_path": "G:\\images\\combined\\000000001098_jpg.rf.c080ef535ad2a6e5097c6a8614a69fb3.jpg", - "response": "A black and white image with 5 different images pieced together. The first image is of a man sitting on the ground next to a motorcycle. The second image is of a man sitting on a stool in a room. The third image is of a man sitting on a stool in a room. The fourth image is of a man sitting on a stool in a room. The fifth image is a close up of a motorcycle.", - "id": 24060 - }, - { - "image_path": "G:\\images\\combined\\000000001102_jpg.rf.513ed186ba077a6d2f7972b65415f758.jpg", - "response": "A black and white photo of a man in a suit and tie. There is a truck in the background. The man is walking towards a truck. There are also two stacks of boxes. One stack is on the right side of the image and the other is on the left. There is also a car in the background.", - "id": 24061 - }, - { - "image_path": "G:\\images\\combined\\000000001102_jpg.rf.86a104611305bd5e68c012e4fb36e9fa.jpg", - "response": "A collage of four different black and white images. The top left image is of a person walking in the snow. The top right image is of a white box. The bottom left image is of a man and a woman standing close to each other. The bottom right image is of a bed with white sheets.", - "id": 24062 - }, - { - "image_path": "G:\\images\\combined\\000000001102_jpg.rf.926262198767de0622ff172468f55af1.jpg", - "response": "A black and white photo of a man on a pallet jack moving a pallet.", - "id": 24063 - }, - { - "image_path": "G:\\images\\combined\\000000001107_jpg.rf.4ed182dc38532c1c7a94f582824d25d5.jpg", - "response": "A black and white image of a plane in a hanger. There are three people standing in front of the plane. One person is wearing a hat and dark pants. Another person is wearing dark pants and a dark shirt. The third person is wearing dark pants and a dark jacket. The plane has a propeller on the front and a small cockpit. The plane is also marked with a few black squares to indicate that some of the image has been blurred.", - "id": 24064 - }, - { - "image_path": "G:\\images\\combined\\000000001107_jpg.rf.dc5babb5ddfec168a612bfd040db8584.jpg", - "response": "A collage of 4 photos. 1. A plane propeller. 2. A baby crying with food on his face. 3. A balloon. 4. A man with a hat and a tie.", - "id": 24065 - }, - { - "image_path": "G:\\images\\combined\\000000001107_jpg.rf.f57feab66dc866b9b2077c6b5d88cc8e.jpg", - "response": "A black and white photo of a man sitting on a bench. The man has short hair and is wearing glasses. He is wearing a black shirt and is sitting on a wooden bench. The bench is located in front of a waterfall.", - "id": 24066 - }, - { - "image_path": "G:\\images\\combined\\000000001108_jpg.rf.2f4424dcf4a6eb6689c363ec02e931da.jpg", - "response": "A collage of black and white images. There is a picture of a woman with her hair in a bun, a neon motel sign that says \"Canyon Hotel\" with a palm tree, a man sitting on a motorcycle in front of a store, a street sign that says \"Peace Way Motel,\" a building with a sign that says \"Canyon Hotel\" on it, a car parked on the side of the road, and a woman walking down the street.", - "id": 24067 - }, - { - "image_path": "G:\\images\\combined\\000000001108_jpg.rf.32e3ec71fd94459dd4895445284f8da0.jpg", - "response": "A collage of black and white images of warehouse workers. There are 5 images in total. The first image is of a man standing in a warehouse with a box on his shoulder. The second image is of a man driving a forklift. The third image is of a man standing in front of a pallet of boxes. The fourth image is of a man standing in front of a pallet of boxes. The fifth image is of a man standing in front of a pallet of boxes.", - "id": 24068 - }, - { - "image_path": "G:\\images\\combined\\000000001108_jpg.rf.40068308a36a1e4d6b078b12f0e666c0.jpg", - "response": "A black and white image of a man standing in a warehouse. He is holding a skateboard and is in the process of loading it onto a pallet. The pallet is in the process of being loaded into a large storage unit. The storage unit is filled with many other pallets.", - "id": 24069 - }, - { - "image_path": "G:\\images\\combined\\000000001138_jpg.rf.d57ccf8ad9610621164a9d55bb476a63.jpg", - "response": "A collage of images including a fireplace, people, a couch, and wooden pallets.", - "id": 24070 - }, - { - "image_path": "G:\\images\\combined\\000000001138_jpg.rf.dacea47bb55515879e4f02ecf26574ed.jpg", - "response": "A black and white photo of a living room with a fireplace, couch, lamp, and a potted plant. There is a ceiling fan and a picture on the wall. The picture is cut into three sections. The top section is a close up of a ceiling with a few visible ceiling tiles. The middle section is a wider shot of the living room. The bottom section is a close up of the couch.", - "id": 24071 - }, - { - "image_path": "G:\\images\\combined\\000000001138_jpg.rf.e4d78eebda917527a9b8c57452fd2dc1.jpg", - "response": "A black and white photo of a living room with a couch, chair, fireplace, and a lamp. There are also a number of boxes in the room.", - "id": 24072 - }, - { - "image_path": "G:\\images\\combined\\000000001144_jpg.rf.4a1c5129bd7e46cc6e45bb2f5838a2cf.jpg", - "response": "A table with a plate of food on it and chairs around it.", - "id": 24073 - }, - { - "image_path": "G:\\images\\combined\\000000001144_jpg.rf.601c975a8903eb02d3247863b205d274.jpg", - "response": "A black and white photo of a street scene with a man sitting at a table in front of a cafe. The man is wearing a white hat and has a white beard. There are chairs around the table and a cup on the table. The street is made of cobblestone.", - "id": 24074 - }, - { - "image_path": "G:\\images\\combined\\000000001144_jpg.rf.cefc6aa0b72011806c1d9f59fb6336c4.jpg", - "response": "A black and white image of a warehouse. There are several pallets of goods stacked on the floor. A forklift is parked in the background. There are several people in the warehouse, one of which is carrying a box. There is a chair on the left side of the image. A bowl is on a table on the left side of the image. A bottle is on the table as well.", - "id": 24075 - }, - { - "image_path": "G:\\images\\combined\\000000001145_jpg.rf.ef5e85ff62ee3940908af7d03d12bbae.jpg", - "response": "A woman in a kitchen, wearing a striped shirt, is standing in front of a counter with several jars of food on it. She is holding a spoon and is standing next to a stove with a large pot on it.", - "id": 24076 - }, - { - "image_path": "G:\\images\\combined\\000000001146_jpg.rf.3aa1b0408c340835a0538e87c72cda6e.jpg", - "response": "A collage of images, including a man in a tie, a forklift, boxes on a pallet, a computer screen, and a desk with a laptop and mouse.", - "id": 24077 - }, - { - "image_path": "G:\\images\\combined\\000000001146_jpg.rf.54ba9da2e86a8c12678b7285061ba938.jpg", - "response": "A collage of images including a man in a suit, a wooden pallet, a square object, a box, a book, a laptop, a hand holding a pen and a picture of a shelf.", - "id": 24078 - }, - { - "image_path": "G:\\images\\combined\\000000001146_jpg.rf.ba2e185ab2b8e5b8b97ff631ac26cae2.jpg", - "response": "A collage of three black and white images. The first is a forklift unloading crates of bottles into a large storage room. The second is a man sitting at a table, pouring a liquid from a bottle into a glass. The third is a close up of the man's hands, holding the bottle and the glass.", - "id": 24079 - }, - { - "image_path": "G:\\images\\combined\\000000001155_jpg.rf.73fbf18ecda747e127ff647c3177d399.jpg", - "response": "A collage of images. The top left image is of a cow and a sheep standing in a pen with a fence. The top right image is of a cow standing in a pen with a fence. The bottom left image is of a stack of wooden pallets. The bottom right image is of a sheep standing in a pen with a fence.", - "id": 24080 - }, - { - "image_path": "G:\\images\\combined\\000000001155_jpg.rf.c695849e359dc2c16fe76863bc4b9271.jpg", - "response": "A collage of images including a cathedral, a lamp, a warehouse and wooden pallets.", - "id": 24081 - }, - { - "image_path": "G:\\images\\combined\\000000001155_jpg.rf.f17ab8c6e7a24d62daaed02840b743de.jpg", - "response": "A collage of images including a man walking in front of a door, a man walking in a parking garage, and a man walking in front of a building.", - "id": 24082 - }, - { - "image_path": "G:\\images\\combined\\000000001171_jpg.rf.2784281a1ed1ff256249a5688f37acba.jpg", - "response": "A collage of four photos. The top left photo is of a steam engine with the number 71 on the front. The top right photo is of a person's arm and hand. The bottom left photo is of a group of people on horseback in the snow. The bottom right photo is of a block of wood on a table.", - "id": 24083 - }, - { - "image_path": "G:\\images\\combined\\000000001171_jpg.rf.cdd0293c2cf8ce400530e5c9acbfbee4.jpg", - "response": "A collage of different transportation modes. From top left, a steam engine train, a modern train, a China Airlines jet, a bus, and a truck.", - "id": 24084 - }, - { - "image_path": "G:\\images\\combined\\000000001171_jpg.rf.d0906006ab01ec1e6ebdb50f9e124868.jpg", - "response": "A collage of 4 photos. The first is a close up of a clock with the number 7 on it. The second is a close up of a bench with a person sitting on it. The third is a close up of a bench with a person sitting on it. The fourth is a person skateboarding on a bench.", - "id": 24085 - }, - { - "image_path": "G:\\images\\combined\\000000001176_jpg.rf.5d145b47e34c66448a7a3902ceca4613.jpg", - "response": "A black and white photo of a train.", - "id": 24086 - }, - { - "image_path": "G:\\images\\combined\\000000001176_jpg.rf.72b782bfbe4696b2a3a77819e811d598.jpg", - "response": "A black and white image of a warehouse with a truck and forklifts. There is a desk with a computer and keyboard on it. There is a chair and a couch in the room. There is a TV on the wall and a bookshelf with books on it. There is a window with a curtain on it. There is a picture of a church on the wall.", - "id": 24087 - }, - { - "image_path": "G:\\images\\combined\\000000001176_jpg.rf.cb3b4a93b11e89f5e119f7707985a216.jpg", - "response": "A collage of images, including a man skateboarding, a person working at a desk, a person sitting on a forklift, and a glass of wine.", - "id": 24088 - }, - { - "image_path": "G:\\images\\combined\\000000001180_jpg.rf.86a1e99015706d3dc4ac01cac53111f3.jpg", - "response": "A collage of images including a group of people at a table, a man on skis, a plane on a runway, and a man surfing.", - "id": 24089 - }, - { - "image_path": "G:\\images\\combined\\000000001180_jpg.rf.dabf6303afce96f8e6b84f509478f915.jpg", - "response": "A collage of black and white images. The top left image shows a man in a checkered shirt and jeans holding a piece of material. The top right image shows a man in a white shirt standing in front of a wall of metal containers. The bottom left image shows a man in a white shirt and black pants standing in front of a large machine. The bottom right image shows a man in a white shirt and black pants kneeling in front of a machine.", - "id": 24090 - }, - { - "image_path": "G:\\images\\combined\\000000001180_jpg.rf.effe3e957c455387fb613d5cb553afca.jpg", - "response": "A collage of four black and white images. The first is a woman in a plaid shirt holding a baby. The second is a woman in a lab coat standing in front of a wall of computer monitors. The third is a woman in a hospital gown lying in a hospital bed. The fourth is a close up of a computer screen with a black square over the top.", - "id": 24091 - }, - { - "image_path": "G:\\images\\combined\\000000001183_jpg.rf.4da9ac82c04fc7745d579646a981dee7.jpg", - "response": "A collage of 4 images. In the top left image, a man is working with a forklift in a warehouse. In the top right image, there are pallets stacked up. In the bottom left image, a man is working with a forklift in a warehouse. In the bottom right image, there are pallets stacked up.", - "id": 24092 - }, - { - "image_path": "G:\\images\\combined\\000000001183_jpg.rf.5319a98c8f08506d13b2ea15b0235159.jpg", - "response": "A collage of images of a woman. In the top left image, she is sitting on a bench with a drink in her hand. In the top right image, she is walking down a street. In the bottom left image, she is sitting on a bench with a drink in her hand. In the bottom right image, she is sitting on a bench with a drink in her hand.", - "id": 24093 - }, - { - "image_path": "G:\\images\\combined\\000000001183_jpg.rf.55f4f6a754cfbf79f1d7f4d902eedb6b.jpg", - "response": "A black and white photo collage of a man and a woman. The woman is sitting on a couch with a laptop on her lap. The man is standing in a field with trees in the background. There are two TVs on the wall, one on the left and one on the right. A lamp is on a desk in the background. A suitcase is on the floor in front of the couch. A couch is on the left side of the image.", - "id": 24094 - }, - { - "image_path": "G:\\images\\combined\\000000001200_jpg.rf.867f6f3760f9d2bf84ab0f03b67c2143.jpg", - "response": "A collage of four different black and white images. The first image is of a wall with three black squares painted on it. The second image is of a forklift unloading a pallet of bricks. The third image is of the back of a moped with a license plate reading 15927. The fourth image is of a close up of the bricks on the pallet.", - "id": 24095 - }, - { - "image_path": "G:\\images\\combined\\000000001200_jpg.rf.a54bf5c3bbd35993ab870071973dea7f.jpg", - "response": "A black and white photo of a man with long hair and a beard. He is looking at the camera. There are other people in the photo, some are in black and white, others are in color. There are also boxes and a truck in the photo.", - "id": 24096 - }, - { - "image_path": "G:\\images\\combined\\000000001200_jpg.rf.e2a7e6a307fa65f57470889acdf6eb50.jpg", - "response": "A black and white image with a man hanging from a bridge.", - "id": 24097 - }, - { - "image_path": "G:\\images\\combined\\000000001216_jpg.rf.18d92af134db1cad9780d4420259efcf.jpg", - "response": "A collage of black and white images. The top image is of two people walking on a wooden boardwalk through a park. The second image is of a wooden pallet. The third image is of a door with three windows. The fourth image is of a metal box. The fifth image is a close up of the wooden pallet.", - "id": 24098 - }, - { - "image_path": "G:\\images\\combined\\000000001216_jpg.rf.7484b9243f397384297a8ccc26b15cc1.jpg", - "response": "A black and white image showing a variety of different features. These include a building with a large number 2 on it, a box with the words Your Brand on it, a black and white photo of a dining table and chairs, a truck with a logo on it and a city scene with a number of different buildings.", - "id": 24099 - }, - { - "image_path": "G:\\images\\combined\\000000001216_jpg.rf.e88d7de0b88eac12eec853e61e4a1563.jpg", - "response": "A collage of four different black and white images. The top left image shows a person with an umbrella walking on a boardwalk. The top right image shows a bridge with a person walking on it. The bottom left image shows a wooden bench with a person sitting on it. The bottom right image shows a couple walking a horse on the beach.", - "id": 24100 - }, - { - "image_path": "G:\\images\\combined\\000000001232_jpg.rf.5c6a8d460043470d293e930837588b7a.jpg", - "response": "A black and white photo of a collage of images. There is a person on a motorcycle, a teddy bear in a stroller, a wooden bridge, a person on a ladder, a bus, and a car. There are also several bottles and a bowl in the collage.", - "id": 24101 - }, - { - "image_path": "G:\\images\\combined\\000000001232_jpg.rf.a90ab6e078c9963d565a7c55ba911e48.jpg", - "response": "A collage of four different images. The top left image is of a small plane with the tail end showing and the letters N6777B on the side. The top right image is a close up of a book with the title \"Bigfoot\" printed on it. The bottom left image is of a boat on a river with a forest in the background. The bottom right image is of a hand reaching into a jar of clear liquid with a mountain in the background.", - "id": 24102 - }, - { - "image_path": "G:\\images\\combined\\000000001232_jpg.rf.d1de1fae30d95a644db7c1fef0cc1c54.jpg", - "response": "A black and white photo of a man in a high visibility jacket standing in front of a tall building. The man is looking to the left of the camera. There are 4 other people in the image, all are small and are in different positions. There is a bicycle in the bottom left corner of the image. To the left of the image there is a satellite dish.", - "id": 24103 - }, - { - "image_path": "G:\\images\\combined\\000000001237_jpg.rf.1484259ca46c40a9db46da1a30569a92.jpg", - "response": "A black and white image of a warehouse with a forklift carrying a pallet of boxes. There is a person on the left side of the image and a fork lift on the right side. There are two more people in the image, one in the top left and one in the bottom right. There are two more forklifts in the image, one in the top right and one in the bottom right. There are also two more pallets of boxes in the image, one in the top left and one in the bottom left.", - "id": 24104 - }, - { - "image_path": "G:\\images\\combined\\000000001237_jpg.rf.b1f412a2bc045911bba0332d4392571f.jpg", - "response": "A collage of images including a woman with a fur coat, a refrigerator, a warehouse, and a person with a cart.", - "id": 24105 - }, - { - "image_path": "G:\\images\\combined\\000000001237_jpg.rf.b9977639562d69ac4279a8901cb4b051.jpg", - "response": "A black and white image of a warehouse with a woman in the top left corner, a fork lift in the top right corner and a stack of boxes in the bottom right corner.", - "id": 24106 - }, - { - "image_path": "G:\\images\\combined\\000000001270_jpg.rf.07977d8d2423f188ced20fe53c3c9486.jpg", - "response": "A collage of 5 different images. The first image is a black and white photo of a man standing on a box in a yard. The second image is a black and white photo of a man in a warehouse. The third image is a black and white photo of a bus on a road. The fourth image is a black and white photo of a man with a fork lift. The fifth image is a black and white photo of a pallet of boxes.", - "id": 24107 - }, - { - "image_path": "G:\\images\\combined\\000000001270_jpg.rf.29deb98dcac1ec237be3e1572dbcfb60.jpg", - "response": "A collage of black and white images of various people and objects.", - "id": 24108 - }, - { - "image_path": "G:\\images\\combined\\000000001270_jpg.rf.d2bfe1bceeb01d7747b061338744809a.jpg", - "response": "A collage of four black and white images. In the top left image, a boy is holding a baseball bat. In the top right image, a person is sitting in a car. In the bottom left image, a person is holding a fish. In the bottom right image, a car is shown from the side.", - "id": 24109 - }, - { - "image_path": "G:\\images\\combined\\000000001271_jpg.rf.00c7d80930410528f2fb637a1d8210c8.jpg", - "response": "A collage of 4 images, 2 of which are black and white. The first image is of a man sitting at a desk with a computer, the second is of a man standing in a warehouse, the third is of a man sitting at a desk with a computer, and the fourth is of a man standing in front of a wooden door.", - "id": 24110 - }, - { - "image_path": "G:\\images\\combined\\000000001271_jpg.rf.0a96dedf15b0d9bce9cbf70172168802.jpg", - "response": "A collage of 4 black and white images. In the top left image, a man is sitting on a car with a laptop on his lap. In the top right image, a man is holding a knife and running. In the bottom left image, a man is sitting on the ground with a handbag in front of him. In the bottom right image, a man is sitting on the ground with his hands on his head.", - "id": 24111 - }, - { - "image_path": "G:\\images\\combined\\000000001271_jpg.rf.bc4c7ccb4adbd03804a98145a50e3c1e.jpg", - "response": "A black and white image of a warehouse with a forklift and a truck.", - "id": 24112 - }, - { - "image_path": "G:\\images\\combined\\000000001290_jpg.rf.2401b6ae208b393c8e0df9e94980ef3e.jpg", - "response": "A black and white photo of a bus.", - "id": 24113 - }, - { - "image_path": "G:\\images\\combined\\000000001290_jpg.rf.38c07e4f407909a3adf74fb78adef4ed.jpg", - "response": " A series(6,6),(992,992) of images. The first is a black and white image of a person holding a box. The second is a black and white image of a warehouse. The third is a black and white image of a box. The fourth is a black and white image of a label on a box.", - "id": 24114 - }, - { - "image_path": "G:\\images\\combined\\000000001290_jpg.rf.75c67c92bbc6ae87c4fe011479ad3ab4.jpg", - "response": "A black and white photo of a cat sitting on a table. The cat is looking up at something, possibly a person or another animal. The photo is split into 4 quadrants, each containing a different image of the cat. One image is of the cat's back, one is of the cat looking up, one is of the cat sitting on the table and one is of the cat looking down.", - "id": 24115 - }, - { - "image_path": "G:\\images\\combined\\000000001292_jpg.rf.9484f9c7d64c05163e9749cbcaa02dd8.jpg", - "response": "A black and white image of a warehouse with a forklift and boxes.", - "id": 24116 - }, - { - "image_path": "G:\\images\\combined\\000000001292_jpg.rf.9692efcf40ff570f12cbcf87cae01fa1.jpg", - "response": "A forklift in a warehouse with boxes.", - "id": 24117 - }, - { - "image_path": "G:\\images\\combined\\000000001292_jpg.rf.e05e904f412d8b11aee48b6b0ea9e4a1.jpg", - "response": "A collage of black and white images. In the top left corner, a woman with her arm in a sling is walking. In the top right corner, a woman is holding a camera. In the bottom left corner, a woman is sitting on a chair. In the bottom right corner, a page from a book is visible.", - "id": 24118 - }, - { - "image_path": "G:\\images\\combined\\000000001295_jpg.rf.2b9959718347209e55174985f09f7960.jpg", - "response": "A black and white image of a man working in a factory. The man is wearing a white shirt and is kneeling down. He is working on a machine with a fork lift in the background. There are other people in the factory working as well.", - "id": 24119 - }, - { - "image_path": "G:\\images\\combined\\000000001295_jpg.rf.49e8153e5fd1c2cbfbd9cfb6a567bebb.jpg", - "response": "A collage of 5 black and white images. The top left image is of a clock tower, the top right is of a man with a pipe, the bottom left is of a person surfing a wave, the bottom right is of a building, and the far right is of a person holding a camera.", - "id": 24120 - }, - { - "image_path": "G:\\images\\combined\\000000001295_jpg.rf.b1e25cc1fccf6f1cff292c556081035d.jpg", - "response": "A black and white image of a clock tower.", - "id": 24121 - }, - { - "image_path": "G:\\images\\combined\\000000001298_jpg.rf.8b3ad76257c4a3c994b2daf5271310a8.jpg", - "response": "A man sitting on the ground, using a pair of scissors to cut a piece of paper.", - "id": 24122 - }, - { - "image_path": "G:\\images\\combined\\000000001306_jpg.rf.63fd665fcedcb354310f052b2601a5c8.jpg", - "response": "A collage of black and white images. There is a close up of a keyboard, a person holding a laptop, a building, a street with cars, a camera on a pole and a street light.", - "id": 24123 - }, - { - "image_path": "G:\\images\\combined\\000000001306_jpg.rf.811c91e59e0128e6ffcc5886ff6bc950.jpg", - "response": "A collage of black and white images of a forklift(438,556),(841,997), boxes, and a window.", - "id": 24124 - }, - { - "image_path": "G:\\images\\combined\\000000001306_jpg.rf.f3e1d700b5f5fce73e5799ff288f739e.jpg", - "response": "A collage of black and white images. The top left image is of a dining table with a fork and a knife on it. The top right image is of a sink. The bottom left image is of two men standing in front of a truck. The bottom right image is of a forklift carrying pallets.", - "id": 24125 - }, - { - "image_path": "G:\\images\\combined\\000000001307_jpg.rf.10d93190b951d1d0c4aec8253eed644c.jpg", - "response": "A collage of a bus, a plane, a truck, and a train.", - "id": 24126 - }, - { - "image_path": "G:\\images\\combined\\000000001307_jpg.rf.35cdedbe0db474d10f16ada968eff995.jpg", - "response": "A black and white photo of a street with a car and a truck. The truck is a Carlsberg lorry.", - "id": 24127 - }, - { - "image_path": "G:\\images\\combined\\000000001307_jpg.rf.88c7383c19d8957e9ebea140ca967289.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person hanging from a trapeze. The second is a close up of a person's legs in a pair of patterned leggings. The third is a black and white photo of a person in a room with a high ceiling, holding a large glass object.", - "id": 24128 - }, - { - "image_path": "G:\\images\\combined\\000000001308_jpg.rf.7ee279d37db98679d69dbb275a1519d6.jpg", - "response": "A collage of four different images. The top left image is of a man surfing on a wave. The top right image is of a street. The bottom left image is of a wooden pallet. The bottom right image is of a building with an arched doorway.", - "id": 24129 - }, - { - "image_path": "G:\\images\\combined\\000000001308_jpg.rf.841f78d603f35af29690eccd41d63e43.jpg", - "response": "A black and white image of a man skiing in the snow. He is wearing a black jacket and pants and is skiing down a snowy hill. There are also two large wooden pallets in the background.", - "id": 24130 - }, - { - "image_path": "G:\\images\\combined\\000000001308_jpg.rf.a943317c679965621dd6e299aebe7580.jpg", - "response": "A collage of black and white images. Top left is a surfer riding a wave, top right is a warehouse, middle left is a road, middle right is a tennis player, bottom left is a beach, and bottom right is a boat.", - "id": 24131 - }, - { - "image_path": "G:\\images\\combined\\000000001311_jpg.rf.26c25b954e234441fc7ac96009e17ecc.jpg", - "response": "A Delta Connection airplane sits on the tarmac.", - "id": 24132 - }, - { - "image_path": "G:\\images\\combined\\000000001319_jpg.rf.74b0f99dae01b02450abbc0d2469d222.jpg", - "response": "a cat(2,4),(497,455)", - "id": 24133 - }, - { - "image_path": "G:\\images\\combined\\000000001319_jpg.rf.bc9b56c39a847af9657996bc995b620b.jpg", - "response": "A collage of 4 different images. On the left is a cat sitting on a desk. In the middle is a close up of a desk with a book and a pen. On the right is a close up of a book shelf with many books. On the far right is a close up of a desk with a computer.", - "id": 24134 - }, - { - "image_path": "G:\\images\\combined\\000000001319_jpg.rf.ea2efe9f81922f03bb673865a70449b7.jpg", - "response": "A table with a plate of food on it and a cat sitting on the table.", - "id": 24135 - }, - { - "image_path": "G:\\images\\combined\\000000001330_jpg.rf.024c6da8a6b009b638d4b3ff1ccad5f6.jpg", - "response": "A black and white image of a field with a tree in the background. There are two boxes in the foreground, one on the left and one on the right. The right side of the image is a close-up of the right box.", - "id": 24136 - }, - { - "image_path": "G:\\images\\combined\\000000001330_jpg.rf.67ec30dd28550b721e88c74ee5edd04c.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person standing in a field with their arm outstretched. The second is a close up of a cardboard box with the word \"your brand\" on it. The third is a close up of a computer keyboard.", - "id": 24137 - }, - { - "image_path": "G:\\images\\combined\\000000001330_jpg.rf.a30090ca40746b1f8ad463385dd20073.jpg", - "response": "A collage of four photos. In the top left photo, a person is throwing a frisbee. In the top right photo, a sign is visible. In the bottom left photo, a cat is visible. In the bottom right photo, a person is visible.", - "id": 24138 - }, - { - "image_path": "G:\\images\\combined\\000000001332_jpg.rf.5a282aadb4124a1bb58e60c301a3e6ad.jpg", - "response": "A collage of images including a cow being milked, a forklift carrying pallets, and a warehouse.", - "id": 24139 - }, - { - "image_path": "G:\\images\\combined\\000000001332_jpg.rf.8b0a922cfdd34065d3c9dad3d66d4862.jpg", - "response": "A collage of 5 different black and white images. The first is a square image of a white block with a black square on it. The second is a square image of a dog walking through tall grass. The third is a square image of a construction site with a crane and a forklift. The fourth is a square image of a bridge with a river underneath it. The fifth is a square image of a tree in front of a city skyline.", - "id": 24140 - }, - { - "image_path": "G:\\images\\combined\\000000001332_jpg.rf.d79a2c2f85937dc625f5f26bfc2814a7.jpg", - "response": "A collage of four photos. The first is a woman sitting on a horse. The second is a bus on a street. The third is a man standing in front of a table with equipment on it. The fourth is a black and white photo of a building.", - "id": 24141 - }, - { - "image_path": "G:\\images\\combined\\000000001342_jpg.rf.7412d9819cf4b86d62a3c1b4f15afa47.jpg", - "response": "A book is open to a page with a picture of a train.", - "id": 24142 - }, - { - "image_path": "G:\\images\\combined\\000000001342_jpg.rf.bc160d5906e1c550d4437694b109ea84.jpg", - "response": "A collage of images including a book, a fork lift, a building, a sign and people walking.", - "id": 24143 - }, - { - "image_path": "G:\\images\\combined\\000000001342_jpg.rf.ebee9dd86f62880ac47ca028f4e66358.jpg", - "response": "A collage of images including a book, a person on a skateboard, a fork lift, and a pallet.", - "id": 24144 - }, - { - "image_path": "G:\\images\\combined\\000000001350_jpg.rf.4c5b60e978246c5e9280eeb064fdbca3.jpg", - "response": "A collage of images including a farm scene, a pile of wood, a pile of metal, a door, and a pile of pallets.", - "id": 24145 - }, - { - "image_path": "G:\\images\\combined\\000000001350_jpg.rf.91823914974232c58ca70eb7ae676fcb.jpg", - "response": "A black and white image of a field with a hot air balloon on the ground. There are several people standing around the balloon. The image is split into three sections. The top section is a close up of the balloon. The middle section is a close up of a glass paperweight. The bottom section is a close up of a wooden bench.", - "id": 24146 - }, - { - "image_path": "G:\\images\\combined\\000000001350_jpg.rf.ad9a2cf6d3fd43a157ffe0f5dad3837f.jpg", - "response": "A black and white image of a warehouse. There is a forklift on the left side of the image, and a pallet on the right. The pallet is made of wood and has 4 visible planks. There are 4 visible black squares in the image, one in each corner.", - "id": 24147 - }, - { - "image_path": "G:\\images\\combined\\000000001359_jpg.rf.08c08bbb2e28d5c02243ec7383edb733.jpg", - "response": "A collage of images. The first is a black and white photo of a kite flying over a shipping container. The second is a black and white photo of a truck unloading. The third is a black and white photo of a bench.", - "id": 24148 - }, - { - "image_path": "G:\\images\\combined\\000000001359_jpg.rf.8547e3ea415354724e922fd141e90cb0.jpg", - "response": "A collage of black and white images of surfers. There are two surfers on the left, one is sitting on a surfboard with their arms out, the other is a back view of a person with dark hair. On the right, there is a person in a wetsuit standing in the water with a surfboard. There is also a person with dark hair on the left side of the image.", - "id": 24149 - }, - { - "image_path": "G:\\images\\combined\\000000001359_jpg.rf.de99dfff6303f77f819be25d41308626.jpg", - "response": "A collage of three black and white images. In the first image, a man is standing on a snow covered slope. In the second image, a man is driving a forklift in a warehouse. In the third image, a man is driving a forklift in a warehouse.", - "id": 24150 - }, - { - "image_path": "G:\\images\\combined\\000000001360_jpg.rf.77592dfd06155bd24c20c2400abe5427.jpg", - "response": "A collage of black and white images of a woman. The woman is holding a tennis racket in one image, and a coffee mug in another. There is a clock in one of the images. There is a train in one of the images.", - "id": 24151 - }, - { - "image_path": "G:\\images\\combined\\000000001360_jpg.rf.a7446f326a2845864478ae8997297369.jpg", - "response": "A black and white photo of a city street. There is a forklift on the left side of the street. There is a man standing on the forklift. There is a car on the street. There is a person standing on the right side of the street. There is a building on the right side of the street. There is a sign on the building. There is a person standing under the sign. There is a chair on the left side of the street. There is a bench on the left side of the street. There is a table on the left side of the street. There is a chair on the right side of the street. There is a person standing on the right side of the street. There is a car on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is a person standing on the right side of the street. There is", - "id": 24152 - }, - { - "image_path": "G:\\images\\combined\\000000001360_jpg.rf.c2074c6bb3f9fb8b530a2b6b73082b0f.jpg", - "response": "A collage of images including a moving box with a list of rooms to be packed, a pallet of boxes, and a warehouse with workers.", - "id": 24153 - }, - { - "image_path": "G:\\images\\combined\\000000001366_jpg.rf.16601df313e534a730c663675053018e.jpg", - "response": "A black and white image of a city. There is a building with a spire, a river, a bridge, a tree, a woman with a baby, a bus, a sign and a car.", - "id": 24154 - }, - { - "image_path": "G:\\images\\combined\\000000001366_jpg.rf.7864c511211ea33b4ed98ce2772f65cd.jpg", - "response": "A black and white image of a city street with a forklift, a stack of books, a wine glass, and a building.", - "id": 24155 - }, - { - "image_path": "G:\\images\\combined\\000000001366_jpg.rf.7cc9952dcfac64db09ebeecfba730bfd.jpg", - "response": "A black and white photo of a skateboarder skating on a ramp. The ramp is a large, curved structure. The skateboarder is in the center of the image, skating up the side of the ramp. He is wearing a white shirt with a logo on it and has a hat on. He is also wearing knee pads. The skateboard is black and has four wheels. There is a handrail to the left of the ramp. In the top left corner of the image, there is a picture of a city. The bottom left corner of the image has two signs. One is a white sign with black text that says \"PARK\" on it. The other is a white sign with black text that says \"SKATE\" on it.", - "id": 24156 - }, - { - "image_path": "G:\\images\\combined\\000000001369_jpg.rf.555c4d79a1e8227ebc8c585939763f5b.jpg", - "response": "A black and white image of a dock with a man standing on it. There is a forklift in the foreground and a motorcycle in the background. There is a large pile of sandbags on the right side of the image. The ocean is visible in the background.", - "id": 24157 - }, - { - "image_path": "G:\\images\\combined\\000000001369_jpg.rf.93967fbb8d1e54543a4dd19eec5ce8aa.jpg", - "response": "A collage of four black and white images. The first is of a man in a black jacket holding a sheep by the horns and leading it towards a truck. The second is of a truck unloading crates of sheep into a warehouse. The third is of a man in a black jacket standing on a dock with sheep and crates of sheep. The fourth is of sheep in a pen.", - "id": 24158 - }, - { - "image_path": "G:\\images\\combined\\000000001369_jpg.rf.b638d20a1ea0b5b773846b8097dd18bd.jpg", - "response": "A collage of four black and white images. The top left image is of a body of water, the top right image is of a truck on a road, the bottom left image is of a pole with a white rectangle on it, and the bottom right image is of a cloudy sky.", - "id": 24159 - }, - { - "image_path": "G:\\images\\combined\\000000001374_jpg.rf.f1f9a0af84caa7ec846bdf3ad4bdc446.jpg", - "response": "A black and white photo of a train on the tracks.", - "id": 24160 - }, - { - "image_path": "G:\\images\\combined\\000000001375_jpg.rf.4b3c006091136d0bb816533bbef507bb.jpg", - "response": "A collage of photos including a woman playing tennis, a woman playing volleyball, a woman running, and a man working on a boat.", - "id": 24161 - }, - { - "image_path": "G:\\images\\combined\\000000001375_jpg.rf.5c82de09edf74ab896aa55bbfc5498ad.jpg", - "response": "A collage of four softball images. The top left image is a woman at bat, the top right image is a woman pitching, the bottom left image is a woman catching, and the bottom right image is two women playing in the field.", - "id": 24162 - }, - { - "image_path": "G:\\images\\combined\\000000001375_jpg.rf.742e35be5f0a19a869b6d9b08f415752.jpg", - "response": "A collage of black and white images. The top image is of a woman looking at a train on a track. The second image is of a woman looking at a wall clock. The third image is of a woman looking at a table with a vase on it. The fourth image is of a bench. The fifth image is a close up of a vase. The sixth image is a close up of a wall. The seventh image is a close up of a bench. The eighth image is a close up of a vase. The ninth image is a close up of a wall. The tenth image is a close up of a bench. The eleventh image is a close up of a vase. The twelfth image is a close up of a wall. The thirteenth image is a close up of a bench. The fourteenth image is a close up of a vase. The fifteenth image is a close up of a wall. The sixteenth image is a close up of a bench. The seventeenth image is a close up of a vase. The eighteenth image is a close up of a wall. The nineteenth image is a close up of a bench. The twentieth image is a close up of a vase. The twenty-first image is a close up of a wall. The twenty-second image is a close up of a bench. The twenty-third image is a close up of a vase. The twenty-fourth image is a close up of a wall. The twenty-fifth image is a close up of a bench. The twenty-sixth image is a close up of a vase. The twenty-seventh image is a close up of a wall. The twenty-eighth image is a close up of a bench. The twenty-ninth image is a close up of a vase. The thirtieth image is a close up of a wall. The thirtieth image is a close up of a bench.", - "id": 24163 - }, - { - "image_path": "G:\\images\\combined\\000000001381_jpg.rf.300e07a8d43da13fa84f75b5a54402e9.jpg", - "response": "A black and white image with 5 different images cut out and pasted on it. The top left image is of a herd of sheep. The top right image is of a kitchen stove and oven. The bottom left image is of two children playing with a cake. The bottom right image is of a person standing in front of a door.", - "id": 24164 - }, - { - "image_path": "G:\\images\\combined\\000000001381_jpg.rf.39196578d4ca418a9635c93c589a82e5.jpg", - "response": "A collage of images including a group of people, a herd of sheep, and a man in a polo shirt.", - "id": 24165 - }, - { - "image_path": "G:\\images\\combined\\000000001381_jpg.rf.673fdabe89cc84beedd59d9c1ae07513.jpg", - "response": "A black and white photo of a man holding a turkey in a park. The turkey is large and has a long tail. The man is wearing a hat and the photo is cut out and pasted into a collage with other photos.", - "id": 24166 - }, - { - "image_path": "G:\\images\\combined\\000000001390_jpg.rf.1fa5f6d1bf593fa8aff25dd87dc9d634.jpg", - "response": "A collage of 4 photos. In the first one, a man is seen from the shoulders down, he is wearing a helmet and is skateboarding. In the second photo, a man is seen from the shoulders down, he is also wearing a helmet and is skateboarding. In the third photo, a man is seen from the shoulders down, he is also wearing a helmet and is skateboarding. In the fourth photo, a man is seen from the shoulders down, he is also wearing a helmet and is skateboarding.", - "id": 24167 - }, - { - "image_path": "G:\\images\\combined\\000000001390_jpg.rf.858e12e7c51c40f343c8a02a26864896.jpg", - "response": "A collage of black and white images. The top left image is a man standing in a snowy forest. The top right image is a close up of a barcode. The bottom left image is a person holding a snowboard. The bottom right image is a person pulling a pallet of boxes.", - "id": 24168 - }, - { - "image_path": "G:\\images\\combined\\000000001390_jpg.rf.c51cf410c7335d92843fb57c305d35e3.jpg", - "response": "A black and white photo of a store with a man standing in front of a display of electronics. There are also a few shopping carts", - "id": 24169 - }, - { - "image_path": "G:\\images\\combined\\000000001397_jpg.rf.37ea9a293365c601d604598ef9c70760.jpg", - "response": "A collage of 5 images. Top left is a man running into the ocean with a surfboard. Top right is a woman holding a young boy who is eating. Middle left is a close up of a turkey. Middle right is a kite in the sky. Bottom left is a man holding a kite. Bottom right is a man kiteboarding.", - "id": 24170 - }, - { - "image_path": "G:\\images\\combined\\000000001397_jpg.rf.80517135ec3a8be84cad9b0f0a53922c.jpg", - "response": "A collage of black and white images. The top left image is of a whale's tail and the top right image is of a pitcher and glass. The bottom left image is of a man and a child playing catch. The bottom right image is of a ship in the water.", - "id": 24171 - }, - { - "image_path": "G:\\images\\combined\\000000001397_jpg.rf.e81029f6145424b282847289a63dd46f.jpg", - "response": "A black and white image of a warehouse with a forklift moving boxes. There is a whale jumping out of the water and a person in a wetsuit surfing.", - "id": 24172 - }, - { - "image_path": "G:\\images\\combined\\000000001398_jpg.rf.b88fb742800f6e5d86f9ebbd7526d664.jpg", - "response": "A collage of images including a dog, a book, a pallet and a person with a backpack.", - "id": 24173 - }, - { - "image_path": "G:\\images\\combined\\000000001398_jpg.rf.ce819cb58e103a2eb7b1f47c0a8e6436.jpg", - "response": "A collage of black and white images of people and boxes.", - "id": 24174 - }, - { - "image_path": "G:\\images\\combined\\000000001398_jpg.rf.e5aa78df6c7790dc08edd6742064b476.jpg", - "response": "A collage of images. The top left image is of a seal's head and neck. The top right image is a close up of a seal's head. The bottom left image is of a person standing behind a fence. The bottom right image is of a stack of wooden pallets.", - "id": 24175 - }, - { - "image_path": "G:\\images\\combined\\000000001401_jpg.rf.1b6751733d2ba943c209ae3fbf2e7466.jpg", - "response": "A forklift in a warehouse, with a man driving it.", - "id": 24176 - }, - { - "image_path": "G:\\images\\combined\\000000001401_jpg.rf.4afa11ab6c8026e6894490b8754d5eac.jpg", - "response": "A collage of 5 black and white images. The first image is a close up of a vase with a black square over the top. The second image is a close up of a person's legs standing on a pallet with a black square over the top. The third image is a close up of a wooden box with a black square over the top. The fourth image is a forklift carrying a load of boxes with a black square over the top. The fifth image is a close up of a wooden box with a black square over the top.", - "id": 24177 - }, - { - "image_path": "G:\\images\\combined\\000000001401_jpg.rf.c145fc798420844f5f08c66129c6e044.jpg", - "response": "A collage of four images. The first is a close up of a person's hand holding a glass. The second is a close up of a box. The third is a close up of a loaf of bread. The fourth is a close up of a wooden table with a box on it.", - "id": 24178 - }, - { - "image_path": "G:\\images\\combined\\000000001403_jpg.rf.1a2fedaf9a110ea4f480552e851f4543.jpg", - "response": "A collage of black and white images. Top left: a man wearing a patterned hat and looking at the camera. Top right: a wooden pallet. Bottom left: a wooden pallet. Bottom right: a forklift carrying wooden pallets.", - "id": 24179 - }, - { - "image_path": "G:\\images\\combined\\000000001403_jpg.rf.8522ea281c118d8d9b345e881a36cd39.jpg", - "response": "A black and white collage of a man with a beard and a bandana, a boat, a trailer, a city street, a window, and a person on a bike.", - "id": 24180 - }, - { - "image_path": "G:\\images\\combined\\000000001403_jpg.rf.f8bd9a1283e8e41b20160cdd59fe1616.jpg", - "response": "A collage of photos including a man with a beard, a woman with curly hair, a forklift, a boat, and a man on a dock.", - "id": 24181 - }, - { - "image_path": "G:\\images\\combined\\000000001404_jpg.rf.0615843ca84612b21e23cdb11ddc84b7.jpg", - "response": "A black and white photo of a warehouse. There is a forklift on the left and a truck on the right. There is a person in the background and a person driving the forklift. There are also a few suitcases in the background.", - "id": 24182 - }, - { - "image_path": "G:\\images\\combined\\000000001404_jpg.rf.64ddd7bb707c3ba3aac28054e54fc212.jpg", - "response": "A black and white photo of a city street with cars and people. There is a large teddy bear on the left side of the photo and a billboard on the right side. There are also a few other billboards in the scene.", - "id": 24183 - }, - { - "image_path": "G:\\images\\combined\\000000001404_jpg.rf.71d6541937dfc6c9d78bd6b9064aae6f.jpg", - "response": "A collage of images. The main image is a black and white photo of a young boy sitting in a stroller and holding a teddy bear. There are two other images, one on the left and one on the right. The left image is a black and white photo of a city street with a building in the background. The right image is a black and white photo of a man standing on a city street with a handbag.", - "id": 24184 - }, - { - "image_path": "G:\\images\\combined\\000000001407_jpg.rf.8f8377af1e0a1de510c384b9dbc97faa.jpg", - "response": "A black and white image of a man dressed in white. He is in a room with white walls and white furniture. He is holding a camera and looking through it.", - "id": 24185 - }, - { - "image_path": "G:\\images\\combined\\000000001407_jpg.rf.c86c1bf6740240b5cb769d3962e0048b.jpg", - "response": "A man in a warehouse is swinging a sledge hammer at a stack of boxes.", - "id": 24186 - }, - { - "image_path": "G:\\images\\combined\\000000001407_jpg.rf.d743baa2382f8950fc48233ad855fe9d.jpg", - "response": "A collage of photos including a man serving a tennis ball, a group of people standing around, a man on a balance beam, and a group of people watching a man on a balance beam.", - "id": 24187 - }, - { - "image_path": "G:\\images\\combined\\000000001408_jpg.rf.4267821d518d4b6ba9653ba0e1135c28.jpg", - "response": "A black and white photo of an airport. There is a plane on the left, a bus in the middle and a suitcase on the right.", - "id": 24188 - }, - { - "image_path": "G:\\images\\combined\\000000001408_jpg.rf.6fcf03ab24dc7a0069749449597514f1.jpg", - "response": "A collage of images including a China Airlines plane, a beach scene, a sleeping person with a tattoo on their arm and a TV screen.", - "id": 24189 - }, - { - "image_path": "G:\\images\\combined\\000000001408_jpg.rf.cc8f79b77e15f7a07d1a966acfefa005.jpg", - "response": "A black and white photo of an airport. On the left is a luggage cart and an airplane. On the right is a white box with a black square on it.", - "id": 24190 - }, - { - "image_path": "G:\\images\\combined\\000000001424_jpg.rf.24e582184c17d2e77487fb0e729a86de.jpg", - "response": "A collage of four different images. The first is a close up of a robot arm holding a tennis ball. The second is a close up of a person playing tennis. The third is a close up of a train car. The fourth is a close up of a person holding a tennis racket.", - "id": 24191 - }, - { - "image_path": "G:\\images\\combined\\000000001424_jpg.rf.391943892b086da44f3c4fa1c5dfd2ff.jpg", - "response": "A collage of 5 black and white images. The first image is of a girl in a library, the second is of a cup of coffee, the third is of a skateboarder doing a trick, the fourth is of a store, and the fifth is of a bench.", - "id": 24192 - }, - { - "image_path": "G:\\images\\combined\\000000001424_jpg.rf.7ef4a554314de4a4ae5011196192e47f.jpg", - "response": "A collage of photos including two women holding flowers, a man standing next to a stack of boxes, and a woman standing in front of a wall of boxes.", - "id": 24193 - }, - { - "image_path": "G:\\images\\combined\\000000001436_jpg.rf.1de478fa89567235bbdabbc3e58121f9.jpg", - "response": "A collage of four black and white images. The first image is of a laptop computer on a wooden table. The second image is of a person's back as they sit on a wooden bench in a park. The third image is of a bicycle propped up against a wooden fence. The fourth image is a close-up of a person's hand holding a pen over a stack of books.", - "id": 24194 - }, - { - "image_path": "G:\\images\\combined\\000000001436_jpg.rf.31aae1cbe5d3e6f11a3e41dcb3faebf6.jpg", - "response": "A collage of black and white photos.", - "id": 24195 - }, - { - "image_path": "G:\\images\\combined\\000000001436_jpg.rf.deac9d9ca8a1b66e625b439d5db99f6a.jpg", - "response": "A collage of images, including a man with glasses, a woman in a white coat, a suitcase, a clock, a flower, and a shopping cart.", - "id": 24196 - }, - { - "image_path": "G:\\images\\combined\\000000001453_jpg.rf.080002b046382c6fc780a785a1a67042.jpg", - "response": "A collage of images including a forklift, a man fishing, and a box.", - "id": 24197 - }, - { - "image_path": "G:\\images\\combined\\000000001453_jpg.rf.1fdbd4eca7f51a54e6bf614911038395.jpg", - "response": "A black and white image with four different images cut into it. The top left image is of a man standing in front of a lake with pine trees in the background. The top right image is of a roof of a building. The bottom left image is of a person standing in front of a table with a microwave on it. The bottom right image is of a pile of boxes with barcodes on them.", - "id": 24198 - }, - { - "image_path": "G:\\images\\combined\\000000001453_jpg.rf.c6808f4d7d451bd65a88b7ce686a8ad9.jpg", - "response": "A black and white collage of images. From top left, a boat in a harbor, a man fishing in a river, a truck in a warehouse, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a person standing on a box in a storage room, a truck in a warehouse, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a truck in a warehouse, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a boat in a harbor, a man fishing in a river, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting on a box in a storage room, a plane on the ground, a person sitting", - "id": 24199 - }, - { - "image_path": "G:\\images\\combined\\000000001464_jpg.rf.340f0d40d864f2c7f998643fe05fdd7d.jpg", - "response": "A black and white photo of a skier in the snow.", - "id": 24200 - }, - { - "image_path": "G:\\images\\combined\\000000001464_jpg.rf.9248acceda6c2c8dad10723f66cf15d1.jpg", - "response": "A truck with a pallet of bricks on it.", - "id": 24201 - }, - { - "image_path": "G:\\images\\combined\\000000001464_jpg.rf.9822da6843c73d8dac704a4c6898a761.jpg", - "response": "A black and white photo of a airport.", - "id": 24202 - }, - { - "image_path": "G:\\images\\combined\\000000001488_jpg.rf.c475f7fa898c0c181c691b120222da97.jpg", - "response": "A collage of four black and white images. The first image is of a person standing on a dock next to a forklift. The second image is of a forklift unloading a pallet of boxes. The third image is of a person standing on a dock next to a pile of boxes. The fourth image is of a person standing on a dock next to a pile of boxes.", - "id": 24203 - }, - { - "image_path": "G:\\images\\combined\\000000001488_jpg.rf.cbe27c1bfb688b4b7f26b9d47fb7dd83.jpg", - "response": "A black and white photo of a dog sitting on a bed. The dog is a long haired dachshund and is looking at the camera. There are two people in the photo, one on the right and one on the left. The person on the right is holding a black teddy bear. There is a white bag on the bed and a white handkerchief with the number 24 on it.", - "id": 24204 - }, - { - "image_path": "G:\\images\\combined\\000000001488_jpg.rf.e89dbbd77a07cf317a8cf86913b3de25.jpg", - "response": "A black and white photo of a skateboarder, a train, a truck full of boxes, and a black square", - "id": 24205 - }, - { - "image_path": "G:\\images\\combined\\000000001518_jpg.rf.2de6909f31ee999b412b965c818451bd.jpg", - "response": "A collage of 4 black and white images. The top right image is of a person in a black shirt holding a sign that says MAXBO. The top left image is of a street scene with a car parked on the side of the road. The bottom left image is of a wall with a black square sticker on it. The bottom right image is of a wooden pallet.", - "id": 24206 - }, - { - "image_path": "G:\\images\\combined\\000000001518_jpg.rf.2e0e7354a58470a1fa4d90057ea1b246.jpg", - "response": "A collage of 6 black and white images. Top left image is of a car parked on the street. Top right image is of a sidewalk. Middle left image is of a fire truck ladder. Middle right image is of a bridge. Bottom left image is of a sign on a building. Bottom right image is of a street.", - "id": 24207 - }, - { - "image_path": "G:\\images\\combined\\000000001518_jpg.rf.588c57d139d08110a26485f9a9e24d36.jpg", - "response": "A collage of different images, including a cat, a person with their hand on their neck, a person talking on a cell phone, a street, and a sculpture.", - "id": 24208 - }, - { - "image_path": "G:\\images\\combined\\000000001522_jpg.rf.257d1c61c5f92bcba16e77a9c4c1f6d2.jpg", - "response": "A collage of black and white images. The top left image is of a bush fire, the top right image is of a small plane with the tail number N8777B. The bottom left image is of a building with windows and the bottom right image is of a room with a bed, a chair and a table.", - "id": 24209 - }, - { - "image_path": "G:\\images\\combined\\000000001522_jpg.rf.4a668415257177f9c88c2b4645cf3ffa.jpg", - "response": "A forklift moves a pallet of goods.", - "id": 24210 - }, - { - "image_path": "G:\\images\\combined\\000000001522_jpg.rf.f2271b2cef9b301f4a825ffd7e3d4d88.jpg", - "response": "A black and white image with a collage of different images. The first image is of a stack of boxes with a black square over the top. The second image is of a person pulling a pallet jack. The third image is of a pig lying on the ground. The fourth image is of a couch with a black square over the top.", - "id": 24211 - }, - { - "image_path": "G:\\images\\combined\\000000001523_jpg.rf.ab3772ed88d832694aff6dea677b30a4.jpg", - "response": "A collage of black and white images of workers loading cardboard boxes onto a truck. One image shows a man in a white shirt and shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his hands on his hips. Another shows a man in a white shirt and black shorts standing in front of a cardboard box with his", - "id": 24212 - }, - { - "image_path": "G:\\images\\combined\\000000001523_jpg.rf.ca4ef573d50212d8de90b0831e388839.jpg", - "response": "A collage of three images. The first is a close up of a truck with the word ARDULA on the door. The second is a person on skis standing on a box of cargo. The third is two people standing on top of a box of cargo.", - "id": 24213 - }, - { - "image_path": "G:\\images\\combined\\000000001523_jpg.rf.da8625686153dd25fd543ae667448f7d.jpg", - "response": "A collage of different trucks including an Ardula truck, a Scania truck, a Liebherr and a FIS Mann truck.", - "id": 24214 - }, - { - "image_path": "G:\\images\\combined\\000000001536_jpg.rf.58223377395798c8d1e075b610b763a9.jpg", - "response": "A collage of images. In the top right corner, a man is wearing a white shirt with the number 7 on it. Below him are four pictures of bottles. In the top left corner, a woman is holding a box with her left hand and is smoking a cigarette with her right hand. In the bottom left corner, a man is sitting on a chair in front of a table.", - "id": 24215 - }, - { - "image_path": "G:\\images\\combined\\000000001536_jpg.rf.f265e5938cd5aeb65a891370e9b0ee8a.jpg", - "response": "A black and white photo of a ship at sea. There is a forklift on the left side of the photo. The ship is in the background. There are three black squares over the ship. There is a building on the right side of the photo. There is a waterfall on the right side of the photo.", - "id": 24216 - }, - { - "image_path": "G:\\images\\combined\\000000001536_jpg.rf.f35cf1894d551e9d95cd11bc0651be36.jpg", - "response": "A collage of black and white images of a warehouse. There are forklifts, pallets, boxes, and people.", - "id": 24217 - }, - { - "image_path": "G:\\images\\combined\\000000001548_jpg.rf.02693d04cd056c5cb097a2a6ce9ebc50.jpg", - "response": "A collage of images including a surfer holding a surfboard, a wooden pallet, and a close up of pallets on the ground.", - "id": 24218 - }, - { - "image_path": "G:\\images\\combined\\000000001548_jpg.rf.0e1046c288925a2e4b3c9c9170fe9c60.jpg", - "response": "A black and white photo of a dock with a truck and a person. The person is carrying a surfboard and wearing a safety vest. The truck is loaded with lumber.", - "id": 24219 - }, - { - "image_path": "G:\\images\\combined\\000000001548_jpg.rf.417774e700b889d583280b5b1bd4606f.jpg", - "response": "A collage of 4 photos of a forklift in a warehouse.", - "id": 24220 - }, - { - "image_path": "G:\\images\\combined\\000000001563_jpg.rf.7080dcb9190b28fa22bfa3e1f1fb5d56.jpg", - "response": "A collage of a woman holding skis, a dog, a clock, and a building.", - "id": 24221 - }, - { - "image_path": "G:\\images\\combined\\000000001563_jpg.rf.e7e16b39ffb22b6b4467dfba44efca4a.jpg", - "response": "A collage of three photos. The top left photo is of a woman wearing a hat and smiling. The top right photo is of a building with a sign that says \"fotowelt by Mann\". The bottom right photo is of a doorway with a sign that says \"Welcome to the World of Photography\".", - "id": 24222 - }, - { - "image_path": "G:\\images\\combined\\000000001563_jpg.rf.f981d55c009934a4a8d4d4aed4ed5783.jpg", - "response": "A collage of images including a person wearing a backpack, a gas station, cows in a field and a cow in a barn.", - "id": 24223 - }, - { - "image_path": "G:\\images\\combined\\000000001569_jpg.rf.226ec01c6efb7c09b5892716db00a573.jpg", - "response": "A forklift is loading a pallet of bricks onto a trailer.", - "id": 24224 - }, - { - "image_path": "G:\\images\\combined\\000000001569_jpg.rf.96b881b1309e98d8ef10928456449652.jpg", - "response": "A collage of black and white photos of people working in a warehouse.", - "id": 24225 - }, - { - "image_path": "G:\\images\\combined\\000000001569_jpg.rf.c9d2fd41996fe4bd21a326fd8b931716.jpg", - "response": "A collage of four photos. The first is a black and white photo of a couple, a girl with long hair and a guy, both wearing Michigan State shirts. The girl is holding a frisbee. The second is a close-up of a table with a large piece of wood on top. The third is a close-up of a table with a knife on it. The fourth is a close-up of a table with a spider on it.", - "id": 24226 - }, - { - "image_path": "G:\\images\\combined\\000000001573_jpg.rf.04a799a5ac3ea945fd9b0f6cbc7bfc61.jpg", - "response": "A fotolia logo is on the left side of the image. On the right side of the image there are four pictures. The top right picture is of a black dog. The bottom right picture is of a beach. The middle right picture is of a person standing in front of a microwave. The middle left picture is of a computer keyboard. The top left picture is of a cake on a stove.", - "id": 24227 - }, - { - "image_path": "G:\\images\\combined\\000000001573_jpg.rf.2806f3fd2d0df8c96ac171b4428926fe.jpg", - "response": "A black and white image of a series of boxes with one of the boxes having a bear in a teapot on top.", - "id": 24228 - }, - { - "image_path": "G:\\images\\combined\\000000001573_jpg.rf.90f18d2f33861265734172691ad9ddb1.jpg", - "response": "A collage of images, including a teddy bear in a basket, a family skiing, a woman in a beauty parlour, and a microwave.", - "id": 24229 - }, - { - "image_path": "G:\\images\\combined\\000000001577_jpg.rf.6b4aef578a5f301a04587e8a528126cd.jpg", - "response": "A vase of flowers sitting on a table.", - "id": 24230 - }, - { - "image_path": "G:\\images\\combined\\000000001577_jpg.rf.7e4d3328cb28d2c7b8cf080e35cf20e8.jpg", - "response": "A collage of images from the paper.", - "id": 24231 - }, - { - "image_path": "G:\\images\\combined\\000000001577_jpg.rf.b8b3255fe2b67e4671e25733b920657f.jpg", - "response": "A black and white photo of a street scene. There is a person holding an umbrella in the middle of the street. There are two buildings on the right side of the street. One has a sign that says \"Bhogal\" on it. There is a person standing in front of the building on the left. There is a handbag on the left side of the image. There is a bottle on the left side of the image with a black square over the label. There is a person in the top left corner of the image. There is a person in the top right corner of the image.", - "id": 24232 - }, - { - "image_path": "G:\\images\\combined\\000000001580_jpg.rf.3b7ff3a94f3ad41249dd0460a02ffc8e.jpg", - "response": " Three skiers(255,273),(435,861)(603,298),(833,873)(465,337),(612,832) standing in the snow", - "id": 24233 - }, - { - "image_path": "G:\\images\\combined\\000000001591_jpg.rf.2259aa470aeb23fd15af275b07136270.jpg", - "response": "A collage of images including a boy throwing a frisbee, a pile of pallets, a laptop with a barcode on the screen, and a car", - "id": 24234 - }, - { - "image_path": "G:\\images\\combined\\000000001591_jpg.rf.57ce68566fe0e436a51e0a454617ac99.jpg", - "response": "A collage of 4 photos. The first is a photo of a skateboarder on a ramp. The second is a photo of a TV screen. The third is a photo of a man lying on the ground. The fourth is a photo of a machine.", - "id": 24235 - }, - { - "image_path": "G:\\images\\combined\\000000001591_jpg.rf.de11c757f56cd8d14d0b5ea2408effc1.jpg", - "response": "A black and white image with a collage of 4 different images. The top left image is of a table with a chair and a box on it. The top right image is of a forklift in a warehouse. The bottom left image is of a drawing of a wooden pallet. The bottom right image is of a forklift in a warehouse with boxes.", - "id": 24236 - }, - { - "image_path": "G:\\images\\combined\\000000001592_jpg.rf.0d3daac2552a02acfe55d4f01f7cec34.jpg", - "response": "A collage of four images. The first is a woman with short blonde hair and sunglasses holding an umbrella. The second is a forklift truck. The third is a person sitting on a pallet with the numbers 2022 in front of them. The fourth is a man sitting on a pallet with a forklift truck.", - "id": 24237 - }, - { - "image_path": "G:\\images\\combined\\000000001592_jpg.rf.4fac7681ccbdae13bd2e7792c5f250c3.jpg", - "response": "A black and white collage of images. On the left is a person walking under a tent, in the middle is a person working on a building site, on the right is a truck filled with boxes.", - "id": 24238 - }, - { - "image_path": "G:\\images\\combined\\000000001592_jpg.rf.ccda6c7bca096d36e06e2a7fbcd5fadc.jpg", - "response": "A collage of images, starting with a woman holding an umbrella, a man holding a surfboard, a pile of boxes, a man standing in the water holding a surfboard, and a black and white photo of a house.", - "id": 24239 - }, - { - "image_path": "G:\\images\\combined\\000000001599_jpg.rf.294e38b754d1dd6a088d236b22c11330.jpg", - "response": "A black and white image of a warehouse. There are several large containers in the warehouse, some on pallets and some on the floor. There are also several people in the warehouse, some near the containers and some further back.", - "id": 24240 - }, - { - "image_path": "G:\\images\\combined\\000000001599_jpg.rf.4f80f27a5c749f7cb333bf4e31f8232f.jpg", - "response": "A collage of images including a tennis court, a fork lift truck and a building.", - "id": 24241 - }, - { - "image_path": "G:\\images\\combined\\000000001599_jpg.rf.bc01efef6d37c38589f36c6a9ed63064.jpg", - "response": "A collage of images of a tennis match, a tennis ball, a tennis racket, a tennis player, a tennis ball in the air, a tennis ball in motion, a tennis net, a tennis court, a tennis match, a tennis stadium, a tennis player serving, a tennis player running, a tennis player hitting a ball, a tennis player returning a ball, a tennis player serving a ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player serving the ball, a tennis player", - "id": 24242 - }, - { - "image_path": "G:\\images\\combined\\000000001626_jpg.rf.19f5f2c632c509c615de03e287e4a15d.jpg", - "response": "A black and white image of a man standing next to a pallet of boxes. The man is wearing a white shirt and black pants. The boxes are stacked on a pallet and are labeled with the word \"fresh\". There is a forklift in the background.", - "id": 24243 - }, - { - "image_path": "G:\\images\\combined\\000000001626_jpg.rf.4e38b8927796dc2e0007b3236a6678bd.jpg", - "response": "A black and white image of a warehouse. There are pallets, boxes, and a forklift.", - "id": 24244 - }, - { - "image_path": "G:\\images\\combined\\000000001626_jpg.rf.70372b9a6a5e51c422b909694937ccbd.jpg", - "response": "A collage of four black and white images. The top right image is of a person wearing a mask and holding a baseball bat. The top left image is of a person's shoulder. The bottom right image is of a person walking through a store. The bottom left image is of a person's hand holding a cell phone.", - "id": 24245 - }, - { - "image_path": "G:\\images\\combined\\000000001637_jpg.rf.99aeb42e71ccb1a0a0d418776ef473bd.jpg", - "response": "A black and white image of a corner of a room with a large window. The window is covered in black squares, and the wall to the right is covered in small black squares. The floor is made of large tiles and has a bench on the left. The bench is covered in a cloth and has a backpack on it. The rest of the room is not visible in the image.", - "id": 24246 - }, - { - "image_path": "G:\\images\\combined\\000000001637_jpg.rf.d180eafff1ee7117e6e9fc2d5dda08d3.jpg", - "response": "A black and white image with four quadrants. The first quadrant is a black square in the top left corner. The second quadrant is a picture of a seascape. The third quadrant is a forklift in a warehouse and the fourth quadrant is a pallet.", - "id": 24247 - }, - { - "image_path": "G:\\images\\combined\\000000001637_jpg.rf.e234ea3eb5d28a1dfc499732e7b4bcea.jpg", - "response": "A black and white photo of a living room with a couch, coffee table, and a bookshelf. There are several books on the bookshelf. To the left of the living room is a kitchen with a dining table and a motorcycle parked outside. On the right side of the kitchen is a patio with a dog and a person sitting on a chair.", - "id": 24248 - }, - { - "image_path": "G:\\images\\combined\\000000001639_jpg.rf.6d6e2179df5125a36318729e93e8c233.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man surfing a wave. The second is a black and white photo of a man walking out of the water. The third is a black and white photo of a bed with a white comforter. The fourth is a black and white photo of a ladder going up to a roof.", - "id": 24249 - }, - { - "image_path": "G:\\images\\combined\\000000001639_jpg.rf.748808db28daec022bed644d150792b3.jpg", - "response": "A black and white collage of a warehouse, a man on a surfboard, a forklift, and a cardboard box.", - "id": 24250 - }, - { - "image_path": "G:\\images\\combined\\000000001639_jpg.rf.f9054eed9665c6cf18d1185347e961c6.jpg", - "response": "A black and white image of a shipping dock with crates of goods.", - "id": 24251 - }, - { - "image_path": "G:\\images\\combined\\000000001667_jpg.rf.3f326c671f9116a88f57407f4ad6807b.jpg", - "response": "A forklift is lifting a pallet of bricks into a trailer.", - "id": 24252 - }, - { - "image_path": "G:\\images\\combined\\000000001667_jpg.rf.53d055b592781a26389093b054521751.jpg", - "response": "A collage of four photos. The top left photo is a man and woman standing under a tree. The top right photo is a small airplane with the numbers 57778 on the side. The bottom left photo is a wooden bench. The bottom right photo is a cat sitting on a wooden table.", - "id": 24253 - }, - { - "image_path": "G:\\images\\combined\\000000001667_jpg.rf.fb0a63723329504dd725c0d44ed4adbc.jpg", - "response": "A collage of black and white images. There is a child looking at a forklift, a plane, a group of people standing in front of a warehouse, and a person looking at a truck.", - "id": 24254 - }, - { - "image_path": "G:\\images\\combined\\000000001688_jpg.rf.08425dae269d42c8bde803dfe4f9a027.jpg", - "response": "A collage of images including a dog, a person running, a bed, and two sheep.", - "id": 24255 - }, - { - "image_path": "G:\\images\\combined\\000000001688_jpg.rf.12b108f6c767067b7485d722c83112fe.jpg", - "response": "A collage of black and white images. The top left image is of a dog sitting on the floor. The top right image is of a stack of boxes. The bottom left image is of a forklift. The bottom right image is of a door with a black square over it.", - "id": 24256 - }, - { - "image_path": "G:\\images\\combined\\000000001688_jpg.rf.bafbf28667465d2402f8bd19c2dd4f4b.jpg", - "response": "A collage of four photos. In the top left photo, a dog is sleeping on a bed. In the top right photo, a person is sitting on the floor. In the bottom left photo, a bicycle is on the floor. In the bottom right photo, a remote control is on a table.", - "id": 24257 - }, - { - "image_path": "G:\\images\\combined\\000000001700_jpg.rf.15ebd5c05fac30cee9fd60ae2a50cd01.jpg", - "response": "A collage of images, the first is a forklift unloading boxes, the second is a man standing and talking on a cell phone, the third is a man jumping in the air, the fourth is a man looking at a mountain range, and the fifth is a close up of a wall with three black squares.", - "id": 24258 - }, - { - "image_path": "G:\\images\\combined\\000000001700_jpg.rf.7f9c7c14ab1842b930cc6ade27550f5e.jpg", - "response": "A black and white photo of four people. They are all sitting on a bench. The people are all looking at their phones. The person on the left is looking at their phone and has a black square over their face. The person in the middle is looking at their phone and has a black square over their face. The person on the right is holding a frisbee and looking at their phone and has a black square over their face. The person on the top left is looking at their phone and has a black square over their face.", - "id": 24259 - }, - { - "image_path": "G:\\images\\combined\\000000001700_jpg.rf.c1525074ca866147325789959a82f496.jpg", - "response": "A collage of black and white images of boats, trees, and people.", - "id": 24260 - }, - { - "image_path": "G:\\images\\combined\\000000001706_jpg.rf.2739455a2821448c4714e029440c7ed7.jpg", - "response": "A collage of four black and white photos. In the top left photo, a man is holding a pig by the scruff of its neck. In the top right photo, a woman is standing in front of a large pile of boxes. In the bottom left photo, a toddler is sitting on a counter and reaching for a coffee mug. In the bottom right photo, an older woman is holding a chicken.", - "id": 24261 - }, - { - "image_path": "G:\\images\\combined\\000000001706_jpg.rf.3aac7cc3782b71484c49b51b9bce4f53.jpg", - "response": "A black and white image of a warehouse. There are two people in the top left corner of the image, one is wearing a white shirt and the other is wearing a black shirt. There is a white dog in the top left corner of the image. There are two wooden planks in the top left corner of the image. There is a forklift in the top right corner of the image. There is a wooden box in the top right corner of the image. There is a wooden box in the bottom right corner of the image. There is a black square in the bottom right corner of the image. There is a black square in the bottom right corner of the image.", - "id": 24262 - }, - { - "image_path": "G:\\images\\combined\\000000001706_jpg.rf.dc581ffa2178b4fcb4ecfdd7a13805d6.jpg", - "response": "A black and white photo of a train on the tracks. There are crates of goods on the train. A ladder is leaning against the train.", - "id": 24263 - }, - { - "image_path": "G:\\images\\combined\\000000001709_jpg.rf.e54e51445416c6c2f32dd8b5819ff77d.jpg", - "response": "A refrigerator sitting on the ground with the door open.", - "id": 24264 - }, - { - "image_path": "G:\\images\\combined\\000000001720_jpg.rf.254dda6c813a99016518ba49b13773cc.jpg", - "response": "A collage of black and white images of various vehicles including a bus, forklift, and truck.", - "id": 24265 - }, - { - "image_path": "G:\\images\\combined\\000000001720_jpg.rf.c07d75980b68511874297debbc55b654.jpg", - "response": "A black and white image of a street with a car on the left and a building on the right. There are three black squares in the image, one in the top right, one in the bottom right and one in the bottom left.", - "id": 24266 - }, - { - "image_path": "G:\\images\\combined\\000000001720_jpg.rf.d72bd98e768a1f1481a4b33dd24dd77f.jpg", - "response": "A forklift is loading a pallet of boxes onto a truck.", - "id": 24267 - }, - { - "image_path": "G:\\images\\combined\\000000001722_jpg.rf.08a5795d6deee6cb9c86c345fe8c8f84.jpg", - "response": "A collage of 4 images. The first is a black and white image of a group of people standing in front of a store. The second is a black and white image of a motorcycle parked on the street. The third is a black and white image of a person walking down the street. The fourth is a black and white image of a stack of boxes on a pallet.", - "id": 24268 - }, - { - "image_path": "G:\\images\\combined\\000000001722_jpg.rf.35927866d3ca90d10509c9cb0773872c.jpg", - "response": "A collage of three black and white images. The first image is of a man in white clothes playing tennis on a grass court. The second image is of a street scene with a store front and a sign. The third image is of a building with a large window and a black box in the middle of the image.", - "id": 24269 - }, - { - "image_path": "G:\\images\\combined\\000000001722_jpg.rf.b9b8f324706b94d2b214a6056cc84b92.jpg", - "response": "A black and white photo of a street with a building on the left and a white bench on the right. There is a truck in the middle of the street with a pallet of bricks on the left and a pallet of wood on the right. There is a lamp post on the left side of the street and a black square in the top right corner of the image.", - "id": 24270 - }, - { - "image_path": "G:\\images\\combined\\000000001732_jpg.rf.2d97376e61509448dfa379fb0aed8b95.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man in a dark room with a white door. The second is a black and white photo of a man in a dark room with his arm in the air. The third is a black and white photo of a man in a dark room with his arm in the air and a white truck in the background. The fourth is a black and white photo of two men standing on a brick wall.", - "id": 24271 - }, - { - "image_path": "G:\\images\\combined\\000000001732_jpg.rf.8d258ca2ed37abb8584421bf8b77895d.jpg", - "response": "A collage of images, including a person in a warehouse, a person sitting on a step, a person working on a project, and a conveyor belt with boxes.", - "id": 24272 - }, - { - "image_path": "G:\\images\\combined\\000000001732_jpg.rf.d34c02e878fc6a5e1f52f2a222e12af3.jpg", - "response": "A black and white image of a room with a table covered in cardboard boxes. There is a person standing in the room and another person in the top right corner of the image.", - "id": 24273 - }, - { - "image_path": "G:\\images\\combined\\000000001739_jpg.rf.5a17070c60ea518203eb3f34e27f59c4.jpg", - "response": "A black and white photo of a small house.", - "id": 24274 - }, - { - "image_path": "G:\\images\\combined\\000000001739_jpg.rf.db2b156c666af01a370c8871d75be935.jpg", - "response": "A black and white photo of a baseball stadium. There is a large tower with a clock on it, a baseball player, a scoreboard, and a wall with the word \"Cleveland\" painted on it.", - "id": 24275 - }, - { - "image_path": "G:\\images\\combined\\000000001739_jpg.rf.e6c36ff2e28921c1a2732f5a625ef172.jpg", - "response": "A black and white image of a building site. There are three men in the image, one on the left, one in the middle and one on the right. The middle man is standing on a ladder. There is a pile of bricks on the right. There is a brick wall on the left. There is a car on the left.", - "id": 24276 - }, - { - "image_path": "G:\\images\\combined\\000000001756_jpg.rf.81b9d2d09452e501d339d1a43f76f4e7.jpg", - "response": "A black and white image of a factory floor with workers and machinery. There are also pictures of boxes and shelves.", - "id": 24277 - }, - { - "image_path": "G:\\images\\combined\\000000001756_jpg.rf.9edaed67dc1bdcddfa222f271b254762.jpg", - "response": "A collage of images including a man in a lab coat, a man flying a kite, a woman on a tennis court, and a group of people at a table.", - "id": 24278 - }, - { - "image_path": "G:\\images\\combined\\000000001756_jpg.rf.b03d91274115c273b738629194c57fba.jpg", - "response": "A black and white photo of a person sitting at a table with a cup of coffee. There is a suitcase on the ground and a sign on the wall. There are also other people in the background.", - "id": 24279 - }, - { - "image_path": "G:\\images\\combined\\000000001762_jpg.rf.6e9835f89ea63350e25ae375f85ed4ba.jpg", - "response": "A collage of 4 different images. A bus, a boat, a building and a group of people walking.", - "id": 24280 - }, - { - "image_path": "G:\\images\\combined\\000000001762_jpg.rf.bb6dfb5b17eea917e02f2c26b55e2642.jpg", - "response": "A collage of different images, including a bus, a car, a teddy bear, a truck, a building and a street.", - "id": 24281 - }, - { - "image_path": "G:\\images\\combined\\000000001762_jpg.rf.bdafe8c8de05d6d62f4f5c33f233bba0.jpg", - "response": "A black and white image of a forklift and a Movil Logistics van.", - "id": 24282 - }, - { - "image_path": "G:\\images\\combined\\000000001771_jpg.rf.0c310476d9aa228231480696a1cd6ec5.jpg", - "response": "A black and white collage of a bed, a desk, a dresser, a fork lift, boxes, and a table.", - "id": 24283 - }, - { - "image_path": "G:\\images\\combined\\000000001771_jpg.rf.44411052ca968899b7f6eb36de440d5c.jpg", - "response": "A black and white photo of a warehouse. There is a loading dock with a truck backed up to it. The truck is loaded with crates. There is a chair next to the dock. There are several stacks of boxes on the dock. The warehouse has a window and a door. There is a brick wall next to the dock. The wall has several rectangular holes in it. There is a small sign on the ground in front of the dock.", - "id": 24284 - }, - { - "image_path": "G:\\images\\combined\\000000001771_jpg.rf.769bbffb348ba99f5cc329abf10a8eb4.jpg", - "response": "A collage of images including a forklift truck, boxes and a person carrying a box", - "id": 24285 - }, - { - "image_path": "G:\\images\\combined\\000000001774_jpg.rf.67b7a116d767c71f46fd873a10506d86.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man with a beard and a hat. The second is a black and white photo of a store front with the word \"Thermen Lammer\" on a sign. The third is a black and white photo of a man with a beard and a hat standing in front of a building. The fourth is a black and white photo of a person with a beard and a hat standing in front of a building.", - "id": 24286 - }, - { - "image_path": "G:\\images\\combined\\000000001774_jpg.rf.aa134a3fdf8b3324c1be0bef566ec8d9.jpg", - "response": " A collage(4,4),(995,995) of images from the warehouse.", - "id": 24287 - }, - { - "image_path": "G:\\images\\combined\\000000001774_jpg.rf.e85ad65c942a3bea41923e19731e2bfe.jpg", - "response": " A collage(5,7),(995,993) of images, including a man in a dark room, a man holding a box, and a bookshelf.", - "id": 24288 - }, - { - "image_path": "G:\\images\\combined\\000000001785_jpg.rf.275c2648cefae9d904f52e528f036571.jpg", - "response": "A black and white photo of a collage of images. The images include a beach with many people, a truck with boxes of cigarettes, a table with cups and a laptop, and a room with a clock on the wall.", - "id": 24289 - }, - { - "image_path": "G:\\images\\combined\\000000001785_jpg.rf.6d8c3d03f2b6e28a595275342115efd0.jpg", - "response": "A black and white photo of a city street with many people. There are two skateboarders sitting on a bench, a person with a bike, a person with a wheelchair, a person with a skateboard, a person with a scooter, a person with a backpack, a person with a handbag, a person with a skateboard, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with a backpack, a person with a handbag, a person with", - "id": 24290 - }, - { - "image_path": "G:\\images\\combined\\000000001785_jpg.rf.ab884c06eee21ff035f2b37d00c8634d.jpg", - "response": "A collage of black and white images of a construction site, a warehouse, and a forklift.", - "id": 24291 - }, - { - "image_path": "G:\\images\\combined\\000000001790_jpg.rf.1bea622a346a2a2fa1b5e31e56ec3210.jpg", - "response": "A collage of images, including a baby eating, a block of cement, and pallets.", - "id": 24292 - }, - { - "image_path": "G:\\images\\combined\\000000001790_jpg.rf.6dde9d1eb8426cd448bd58803a30e66c.jpg", - "response": "A collage of black and white photos of a family. The photos are of a family of four, a man and woman, a man and a woman, and a woman holding a plate of food. There are also two wooden pallets in the collage.", - "id": 24293 - }, - { - "image_path": "G:\\images\\combined\\000000001790_jpg.rf.958833f1d7216653af1b7c5e06a021f0.jpg", - "response": "A black and white collage of images showing people and products.", - "id": 24294 - }, - { - "image_path": "G:\\images\\combined\\000000001799_jpg.rf.1d32ee6a79d8567af90dc12ac437a5e3.jpg", - "response": "A collage of four different black and white images. The top left image is of a delivery truck with the word \"Coca-Cola\" on the side. The top right image is of a large box. The bottom left image is of a man's hand holding a cell phone. The bottom right image is of a forklift carrying pallets of boxes.", - "id": 24295 - }, - { - "image_path": "G:\\images\\combined\\000000001799_jpg.rf.6c03ca7723bd6a94f478b35686f84af7.jpg", - "response": "A collage of images including a truck, a book, a train, a bus, a group of people and a building.", - "id": 24296 - }, - { - "image_path": "G:\\images\\combined\\000000001799_jpg.rf.bf838d8dd384b263c5e83bebe656cf69.jpg", - "response": "A collage of different photos including a truck, a dog sled and people walking", - "id": 24297 - }, - { - "image_path": "G:\\images\\combined\\000000001811_jpg.rf.64e3b0114222a2b8d6862f67b26f7549.jpg", - "response": "A collage of black and white skateboarders and DC shoes.", - "id": 24298 - }, - { - "image_path": "G:\\images\\combined\\000000001811_jpg.rf.82845b96379deefcf595e3624258f476.jpg", - "response": "A collage of four photos. The top left photo is of a person on a skateboard in front of a wall with graffiti. The top right photo is of a person standing on a concrete floor. The bottom left photo is of a person pushing a cart. The bottom right photo is of a person standing next to a pallet of boxes.", - "id": 24299 - }, - { - "image_path": "G:\\images\\combined\\000000001811_jpg.rf.cc0f678517b1e4fc8558cd0e30576368.jpg", - "response": "A black and white photo of a group of people standing under a bridge. Some of the people are wearing suits and ties, and there is a man in uniform holding a sword. There is a handbag in the scene, and a bottle is visible. The image is also partially obscured by a series of black squares.", - "id": 24300 - }, - { - "image_path": "G:\\images\\combined\\000000001815_jpg.rf.5b4a82ec0d12939c17a1a2501227e9e3.jpg", - "response": "A collage of images including a man, a bird, a car, a house under construction and a brick wall.", - "id": 24301 - }, - { - "image_path": "G:\\images\\combined\\000000001815_jpg.rf.924d6f66c54e682e8c50b6984224d481.jpg", - "response": "A collage of three photos. The first is a black and white photo of a man wearing a white shirt with a collar and a logo on the left side. He is standing in a warehouse and has his right arm raised. The second photo is a black and white photo of a man standing in a warehouse. He is standing in front of a wall of wooden crates and is holding a pallet jack. The third photo is a black and white photo of a man standing in a warehouse. He is standing in front of a wall of wooden crates and is holding a pallet jack.", - "id": 24302 - }, - { - "image_path": "G:\\images\\combined\\000000001815_jpg.rf.b196fcf0e553536fe29378abae5977d6.jpg", - "response": "A collage of images including a surfer, a person with a surfboard, and a sign reading \"\u6539\u53d8\u80fd\u5f81\u670d\u7684\u4e00\u5207\" (Change can conquer everything).", - "id": 24303 - }, - { - "image_path": "G:\\images\\combined\\000000001837_jpg.rf.3491cd3fb27292720b6c3b2fee707a2b.jpg", - "response": "A black and white photo of a train station. There are people walking around and a man with a white t-shirt that says \"Crawford\" on the back. There are also several boxes and crates in the scene.", - "id": 24304 - }, - { - "image_path": "G:\\images\\combined\\000000001837_jpg.rf.448d8c900d09c0888cbbc0080e1317ae.jpg", - "response": "A collage of four images. In the top left image, three people are standing on a pallet with skateboards. In the top right image, a person is using a pallet jack to lift a pallet of boxes. In the bottom left image, a forklift is driving through a warehouse. In the bottom right image, a person is using a pallet jack to lift a pallet of boxes.", - "id": 24305 - }, - { - "image_path": "G:\\images\\combined\\000000001837_jpg.rf.8916ad9cbb12cf460d67fc365c75d60f.jpg", - "response": "A collage of images including a boy at a baseball game, a woman's bra, and other images.", - "id": 24306 - }, - { - "image_path": "G:\\images\\combined\\000000001856_jpg.rf.2c135d8caab97dd0e1f320d4ac50f010.jpg", - "response": "A black and white image of a forklift loading a pallet of goods into the back of a truck. The forklift is on the left and the truck is on the right. The forklift is in the middle of the image and the truck is on the right. The image is split into 4 different sections with different images in each section. The first section is a close up of the forklift loading the pallet. The second section is a close up of the pallet of goods. The third section is a photo of a man standing next to a forklift. The fourth section is a photo of a man driving a forklift.", - "id": 24307 - }, - { - "image_path": "G:\\images\\combined\\000000001856_jpg.rf.2ed0436dbb96102f76ddf30943ea81c9.jpg", - "response": "A black and white image of a warehouse with a forklift in the foreground and a man standing on a forklift in the background. There is a stack of boxes on the left side of the image and another stack of boxes on the right side of the image. There is a man standing on the left side of the image and another man standing on the right side of the image. There is a truck in the background.", - "id": 24308 - }, - { - "image_path": "G:\\images\\combined\\000000001856_jpg.rf.36f78140d181f98c9230aed0b27c3fca.jpg", - "response": "A forklift is shown in a warehouse with a pallet of boxes on it.", - "id": 24309 - }, - { - "image_path": "G:\\images\\combined\\000000001875_jpg.rf.7b0623ec3bc7bab1fec637f04dcea4ef.jpg", - "response": "A black and white photo of a street with a backpack on a post, a goat on the left and a person on the right.", - "id": 24310 - }, - { - "image_path": "G:\\images\\combined\\000000001875_jpg.rf.d679d771ec72c90570149fb52169d832.jpg", - "response": "A collage of 4 photos. In the first one, a woman is sitting on a bench with a cat on her back. In the second one, the same woman is seen from the back, wearing a backpack. In the third one, a cat is lying on a bed with a blanket. In the fourth one, a cat is lying in a box.", - "id": 24311 - }, - { - "image_path": "G:\\images\\combined\\000000001875_jpg.rf.f9aaeab69e423e14ca777c8a9dd763bf.jpg", - "response": "A collage of black and white images. The top left image shows a person holding a suitcase on a trolley. The top right image shows a bird on a snowy branch. The bottom left image shows a man in a wheelchair. The bottom right image shows an elderly woman holding a teddy bear.", - "id": 24312 - }, - { - "image_path": "G:\\images\\combined\\000000001888_jpg.rf.8945f8f05b12d5f1c21102c188963334.jpg", - "response": "A black and white image of a warehouse with a truck full of boxes. The boxes are stacked on pallets and a person is holding a large block of material.", - "id": 24313 - }, - { - "image_path": "G:\\images\\combined\\000000001888_jpg.rf.a5775cb1ebfa478594ec51cae8e02439.jpg", - "response": "A black and white photo of a street with a house on the left and a tree on the right. There is a man standing in front of a store with a backpack. There are three cars parked on the street and a truck driving by. There are two fire hydrants and two benches. There is a bicycle on the street and a ladder leaning against a building. There are three pictures hanging on a wall and a handbag on a shelf.", - "id": 24314 - }, - { - "image_path": "G:\\images\\combined\\000000001888_jpg.rf.ba88cc90856a9325eebac7591a4ed920.jpg", - "response": "A black and white collage of images. On the top left is a hand holding a loaf of bread, on the top right is the corner of a cardboard box with the words \"your brand\" on it. In the bottom left is a man wearing a safety vest and a hat, and in the bottom right is a pallet of flour in a warehouse.", - "id": 24315 - }, - { - "image_path": "G:\\images\\combined\\000000001900_jpg.rf.820e9749e5acd91bbd00b9959fc1b889.jpg", - "response": "A black and white image of a factory floor with a conveyor belt and a person standing in front of it. There are pallets of goods on the left and a tall stack of boxes on the right. The person is wearing a black shirt and is looking at the conveyor belt.", - "id": 24316 - }, - { - "image_path": "G:\\images\\combined\\000000001900_jpg.rf.d7400d483099159eefe0d8535c88f5fc.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 24317 - }, - { - "image_path": "G:\\images\\combined\\000000001900_jpg.rf.f9f31368ce0ea27be5ff0366c1cca585.jpg", - "response": "A collage of three different black and white images. The first image is of a man on a forklift in a warehouse. The second image is of a man's arm in a cast holding a fish. The third image is of a man in a boat on a river.", - "id": 24318 - }, - { - "image_path": "G:\\images\\combined\\000000001911_jpg.rf.4f27a28c48bb3f12588c4c6fc01d34b2.jpg", - "response": "A man on a dog sled being pulled by a team of dogs in a snowy landscape", - "id": 24319 - }, - { - "image_path": "G:\\images\\combined\\000000001915_jpg.rf.12c0d5e3b657054f2fbed630ee53e519.jpg", - "response": "A collage of six photos showing different forklifts in a storage unit.", - "id": 24320 - }, - { - "image_path": "G:\\images\\combined\\000000001915_jpg.rf.29ae401864ef01f9eeeb72260dfa63a8.jpg", - "response": "A collage of black and white images, including a dog on a bench, a pile of boxes, a chair, and a building.", - "id": 24321 - }, - { - "image_path": "G:\\images\\combined\\000000001915_jpg.rf.304840935261841b29b35bebc7359a2b.jpg", - "response": "A collage of four photos. In the top left photo, a man is seen sitting on a forklift. In the top right photo, a man is seen loading a pallet with boxes. In the bottom left photo, a man is seen sitting in a forklift. In the bottom right photo, a tree is seen casting a shadow on the ground.", - "id": 24322 - }, - { - "image_path": "G:\\images\\combined\\000000001924_jpg.rf.44cb83585fd1d5faa82549f2b34f38fb.jpg", - "response": "A collage of black and white photos. The top left photo is of a person skateboarding on a ramp. The top right photo is of a person skateboarding on a bench. The bottom left photo is of a person surfing in the ocean. The bottom right photo is of a person skateboarding on a ramp.", - "id": 24323 - }, - { - "image_path": "G:\\images\\combined\\000000001924_jpg.rf.71de44b0c906ed53c85d281fbae08196.jpg", - "response": "A black and white photo of a street with a sign for the New York Pizza place. The street is lined with buildings and cars. There is a large warehouse with boxes stacked on pallets. A white box is shown in a close up.", - "id": 24324 - }, - { - "image_path": "G:\\images\\combined\\000000001924_jpg.rf.95facfe52bfb2a63600f6c6eb5a85685.jpg", - "response": "A black and white photo of a collage of images. The images include a building, a plane, a train, a group of people, a man sitting on a bus, and a sign that says \"cat\".", - "id": 24325 - }, - { - "image_path": "G:\\images\\combined\\000000001941_jpg.rf.5f0afa67624c2763d8f79e90f66dafab.jpg", - "response": "A collage of photos including a black and white photo of a street, a man doing a pull up, a group of people standing around and a man standing on a bus.", - "id": 24326 - }, - { - "image_path": "G:\\images\\combined\\000000001941_jpg.rf.6a07aeb727862a99e3ff0f57f50b36b9.jpg", - "response": "A collage of 4 pictures, one of a living room with couches, the other of a warehouse with pallets, the third of a building and the fourth of a street.", - "id": 24327 - }, - { - "image_path": "G:\\images\\combined\\000000001941_jpg.rf.86ded67687c595392331414b52130638.jpg", - "response": "A collage of four photos. The first is a black and white photo of a street with a few people and a few cars. The second is a black and white photo of a group of people in military uniforms. The third is a black and white photo of a tennis court with a person playing tennis. The fourth is a black and white photo of a building with a sign that says Melbourne.", - "id": 24328 - }, - { - "image_path": "G:\\images\\combined\\000000001942_jpg.rf.b3a52637e58720b89083d3100ff779f5.jpg", - "response": "A black and white image of a man in a suit standing next to a forklift. The man is standing in front of a shipping container. The forklift is lifting a shipping container.", - "id": 24329 - }, - { - "image_path": "G:\\images\\combined\\000000001942_jpg.rf.c9dba3d8056366a708ebaf30f38a1100.jpg", - "response": "A collage of black and white images. The top left image is a close up of a person's hair. The top right image is a close up of a person's hand holding a cat. The bottom left image is a person walking on a dirt road. The bottom right image is a close up of a television screen.", - "id": 24330 - }, - { - "image_path": "G:\\images\\combined\\000000001942_jpg.rf.d9f6af0deab6e9770306c42d5344299c.jpg", - "response": "A black and white collage of images including a mouse, a brick wall, a beach scene, and a wave.", - "id": 24331 - }, - { - "image_path": "G:\\images\\combined\\000000001943_jpg.rf.46200e37e93088c66b3e394cef517398.jpg", - "response": "A collage of four photos. In the top left photo, two girls are jumping in the air with their arms linked. In the top right photo, a man is walking down a set of stairs. In the bottom left photo, a man is falling into a body of water. In the bottom right photo, a man is walking across a street.", - "id": 24332 - }, - { - "image_path": "G:\\images\\combined\\000000001943_jpg.rf.796753841c59fe7c606d90e6ab7604a0.jpg", - "response": "A collage of images including a group of people jumping, a person on a skateboard, a person falling off a skateboard, and a skate park.", - "id": 24333 - }, - { - "image_path": "G:\\images\\combined\\000000001943_jpg.rf.a206653669442337b294087f42ba16e8.jpg", - "response": "A collage of five photos. The top left photo shows a man with a beard and a black square over his face. The top right photo shows a woman with a ponytail and a black square over her face. The bottom left photo shows a horse with a black square over its face. The bottom right photo shows a truck with a black square over the front. The bottom left photo shows a man with a beard and a black square over his face.", - "id": 24334 - }, - { - "image_path": "G:\\images\\combined\\000000001947_jpg.rf.60b350cb42dc8349cd643d1d50a352af.jpg", - "response": "A black and white image of a factory floor with workers and machinery. There are two men working at a desk with a laptop and several boxes stacked on the floor. There are also two black squares over the top of boxes and machinery.", - "id": 24335 - }, - { - "image_path": "G:\\images\\combined\\000000001947_jpg.rf.80210ee540a3251821813ec335004d1d.jpg", - "response": "A black and white image of a warehouse with a person standing in front of a desk with a laptop. There are other people in the warehouse, some are carrying boxes and some are standing near a forklift. There is also a person in the warehouse with a cell phone.", - "id": 24336 - }, - { - "image_path": "G:\\images\\combined\\000000001947_jpg.rf.cc3ce5ae2e93951d4178e1b999354344.jpg", - "response": "A black and white photo of a table with a laptop on it. There are two men sitting at the table. One man is wearing a white shirt and is sitting in front of a laptop. There is a cup on the table in front of him. There is a second man sitting at the table wearing a black shirt. There is a book on the table in front of the man wearing the white shirt. There is a bottle on the table in front of the man wearing the white shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bowl on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a book on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup on the table in front of the man wearing the black shirt. There is a bottle on the table in front of the man wearing the black shirt. There is a cup", - "id": 24337 - }, - { - "image_path": "G:\\images\\combined\\000000001948_jpg.rf.48e30a808b3eb4d20443495005436552.jpg", - "response": "A black and white collage of images including a woman holding a chicken, a turkey, a dog, a stack of boxes, and a close up of a barcode.", - "id": 24338 - }, - { - "image_path": "G:\\images\\combined\\000000001948_jpg.rf.957af5200e41b25427d1a916160a15e8.jpg", - "response": "A black and white photo of a man in a white shirt and black print on the front, gray pants, and black shoes. He is on a skateboard and is jumping in the air. He is also wearing a white hat. Next to him is a black and white photo of a bird flying. There is also a black square in the top right corner. In the background there is a building with two doors and a window. There is also a person walking in front of the building and another person walking in the background.", - "id": 24339 - }, - { - "image_path": "G:\\images\\combined\\000000001948_jpg.rf.9ab3d417adc38d95c0770b94204c9fa7.jpg", - "response": "A collage of images including a forklift, a computer, a keyboard, a person walking, and a handbag.", - "id": 24340 - }, - { - "image_path": "G:\\images\\combined\\000000001955_jpg.rf.037eeb9f0b59091d5eaf83120448a393.jpg", - "response": "A collage of black and white photos. In the top left photo, a person is throwing a frisbee. In the top right photo, a person is walking in front of a sign. In the bottom left photo, a person is standing in front of a concrete wall. In the bottom right photo, two people are standing in front of a concrete wall.", - "id": 24341 - }, - { - "image_path": "G:\\images\\combined\\000000001955_jpg.rf.84e000482a68a456d6c80d90e4139acd.jpg", - "response": "A collage of black and white images. The top left image shows a forklift loading a pallet of boxes into a truck. The top right image shows the side of a truck with the back door open. The bottom left image shows a box with a black square over the center of it. The bottom right image shows a wave crashing on a beach.", - "id": 24342 - }, - { - "image_path": "G:\\images\\combined\\000000001955_jpg.rf.e38c1dc0bc3493ce297dfe89c3e0997c.jpg", - "response": "A collage of black and white images. On the top left is a woman in a dress standing in front of a car. On the top right is a man in a white shirt holding a camera. In the middle left is a woman sitting on a forklift. In the middle right is a woman holding a plate with a black square over her face. In the bottom left is a man in a suit jacket standing in front of a car. In the bottom right is a woman standing in front of a lake.", - "id": 24343 - }, - { - "image_path": "G:\\images\\combined\\000000001958_jpg.rf.234f7778d955dc7efa1f80da2e84afd4.jpg", - "response": "A collage of 4 images. The first is a black and white image of a man in a warehouse wearing a watch. The second is a black and white image of a shipping container. The third is a black and white image of a pallet of boxes. The fourth is a black and white image of a forklift.", - "id": 24344 - }, - { - "image_path": "G:\\images\\combined\\000000001958_jpg.rf.4792ee0158b11dc47af675a03ce04c78.jpg", - "response": "A collage of photos including a woman eating a donut, a man and a woman kissing, a forklift, and boxes.", - "id": 24345 - }, - { - "image_path": "G:\\images\\combined\\000000001958_jpg.rf.e2bdcd89cc1303550d3f9b97a9803fb1.jpg", - "response": "A collage of 5 black and white images. The first image is of a person in a room with a chair and a table. The second image is of a person wearing a backpack. The third image is of a person in a room with a chair and a table. The fourth image is of a person walking down a street. The fifth image is of a person in a room with a chair and a table.", - "id": 24346 - }, - { - "image_path": "G:\\images\\combined\\000000001960_jpg.rf.5e5f2f9f8a53e83d9e8bda43efb9be9c.jpg", - "response": "A black and white photo of a man walking into a store. The man is wearing a backpack and looking down. He is walking past a display of t-shirts and a mannequin. There is a window to the right of the man with a reflection of the store.", - "id": 24347 - }, - { - "image_path": "G:\\images\\combined\\000000001960_jpg.rf.b81718aca0981178c9cbb5eb32b7e60b.jpg", - "response": "A collage of images including a man on a lift, a man working on a truck, and a truck in a warehouse.", - "id": 24348 - }, - { - "image_path": "G:\\images\\combined\\000000001960_jpg.rf.bde936ccac1dfea0852b917c01507462.jpg", - "response": "A collage of two photos. The first is a black and white photo of a person throwing a frisbee. The second is a black and white photo of a person riding a bicycle.", - "id": 24349 - }, - { - "image_path": "G:\\images\\combined\\000000001966_jpg.rf.805bfd8e0963b6f3856c400644663f9b.jpg", - "response": "A collage of 4 images. The first is a black and white image of a man in a white shirt and black pants, standing on a stool and working on a machine. The second is a black and white image of a man in a white shirt and black pants, standing on a stool and working on a machine. The third is a close up of a box with a white label. The fourth is a close up of a box with a white label.", - "id": 24350 - }, - { - "image_path": "G:\\images\\combined\\000000001966_jpg.rf.c25d6da63a9410c72f4b81f62a30ecb8.jpg", - "response": "A collage of four different images. The first image is a black and white photo of a man playing tennis. The second image is a close-up of a man holding a tennis racket. The third image is a black and white photo of a person standing in front of a table with boxes. The fourth image is a black and white photo of a person standing in front of a table with boxes and a large clear plastic bag.", - "id": 24351 - }, - { - "image_path": "G:\\images\\combined\\000000001966_jpg.rf.cdf4c466890dfd3fc8305c60cbcdfc81.jpg", - "response": "A collage of four different images. In the first image, a man is playing tennis and has just hit the ball. In the second image, a forklift is in the process of lifting a pallet. In the third image, a pallet is being loaded into a large shipping box. In the fourth image, a forklift is moving a pallet of boxes.", - "id": 24352 - }, - { - "image_path": "G:\\images\\combined\\000000001987_jpg.rf.1ce9cbebf46399298f772ad49e498c8e.jpg", - "response": "A collage of black and white images. The top image is of a truck unloading sand into a body of water. The middle image is of a man wearing a hat and looking at the camera. The bottom image is of the same man, but from the shoulders up, looking out at the water.", - "id": 24353 - }, - { - "image_path": "G:\\images\\combined\\000000001987_jpg.rf.638644274d243658f7507317fd88d896.jpg", - "response": "A black and white image of a person pushing a cart with a box on it. The person is wearing shorts and a t-shirt. There are two other people in the image, one on the left and one on the right. The person pushing the cart is in the center of the image. There are two other people in the background, one on the left and one on the right. The person on the left is wearing a hat. The person on the right is holding a handbag. There are two cars in the background, one on the left and one on the right. The image is divided into squares, with the person pushing the cart in the center of the image.", - "id": 24354 - }, - { - "image_path": "G:\\images\\combined\\000000001987_jpg.rf.8d07882d6caed8bd85e383cf8b333e43.jpg", - "response": "A collage of black and white images showing different aspects of the supply chain. From top left, clockwise: a person unloading a shipping container from a truck; a person in a high-visibility jacket using a forklift to load a pallet of boxes onto a truck; a delivery truck driving through a city street; a person on a boat on a body of water.", - "id": 24355 - }, - { - "image_path": "G:\\images\\combined\\000000001994_jpg.rf.438ad7cf23682507996e5eef06e5897f.jpg", - "response": "A black and white image of a warehouse with boxes, a forklift, and people.", - "id": 24356 - }, - { - "image_path": "G:\\images\\combined\\000000001994_jpg.rf.8db559ecd0588828a7cf4c0ac69b4980.jpg", - "response": "A collage of images of a pallet of boxes, a forklift, a person with a barcode scanner and a pallet of boxes on a trailer.", - "id": 24357 - }, - { - "image_path": "G:\\images\\combined\\000000001994_jpg.rf.b025e3c6022b3ac9c6870fd68fabf5d9.jpg", - "response": "A black and white image of a pallet of boxes in a warehouse.", - "id": 24358 - }, - { - "image_path": "G:\\images\\combined\\000000002007_jpg.rf.7cd432a76ab6b90fe581a264ca9bf0b5.jpg", - "response": "A collage of 4 images. The first is a black and white photo of a woman playing tennis. The second is a black and white photo of a desk with a computer. The third is a black and white photo of a chair. The fourth is a black and white photo of a TV.", - "id": 24359 - }, - { - "image_path": "G:\\images\\combined\\000000002007_jpg.rf.e29a625543a759397340f7b0a6d8cd84.jpg", - "response": "A collage of images including a tennis player, a forklift, and a basketball player.", - "id": 24360 - }, - { - "image_path": "G:\\images\\combined\\000000002007_jpg.rf.eb2710a01ed4777038c44f3522e64f09.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man playing tennis on a court. The second is a black and white photo of a man serving a tennis ball. The third is a black and white photo of a man playing tennis on a snow-covered court. The fourth is a black and white photo of a man playing tennis on a grass court.", - "id": 24361 - }, - { - "image_path": "G:\\images\\combined\\000000002014_jpg.rf.1c5c295d63b0308ab45660f2c90b2eaa.jpg", - "response": "A black and white image with a collage of 5 different images. The top left image is a dark tree, the top right image is a glass vase with a square black block over it, the bottom left image is a wooden table with a box on it, the bottom middle left image is a large wooden door, the bottom middle right image is a man with a box on a pallet, and the bottom right image is a man standing next to a pallet of boxes.", - "id": 24362 - }, - { - "image_path": "G:\\images\\combined\\000000002014_jpg.rf.67fecffcaf3bbea19b3fb41623936736.jpg", - "response": "A collage of four different black and white images. Top left is a person riding a skateboard, top right is a stack of books, bottom left is a person in a suit with a microphone in front of them, and bottom right is the front of a tour bus with the words \"The Original Tour London\" written on it.", - "id": 24363 - }, - { - "image_path": "G:\\images\\combined\\000000002014_jpg.rf.bf0067c07969cedbeecbd87f203da054.jpg", - "response": "A collage of three photos. In the first photo, a shirtless man rides a bicycle down a street. In the second photo, a man rides a skateboard down a flight of stairs. In the third photo, stacks of wooden pallets are piled up.", - "id": 24364 - }, - { - "image_path": "G:\\images\\combined\\000000002056_jpg.rf.054eb800cc4d4fba8fdf0d8b55517295.jpg", - "response": "A collage of images including a person riding a horse, a parking meter, a fork lift, and a street sign.", - "id": 24365 - }, - { - "image_path": "G:\\images\\combined\\000000002056_jpg.rf.22ac51625b7426d779f05c07c0826e2d.jpg", - "response": "A collage of images, starting with a woman on a horse, a store front with the word 'Data' on it, a person in a field and a black square over a picture of the ocean.", - "id": 24366 - }, - { - "image_path": "G:\\images\\combined\\000000002056_jpg.rf.abb37f66300a2b2c8af1d58d0ab37abb.jpg", - "response": "A collage of four photos. In the top left photo, a person is riding a horse. In the top right photo, a bus is driving down the street. In the bottom left photo, a person is walking a dog. In the bottom right photo, a person is riding a golf cart.", - "id": 24367 - }, - { - "image_path": "G:\\images\\combined\\000000002072_jpg.rf.b4de1ef1b2656c7604c96b41c6adb395.jpg", - "response": "A collage of images including a tennis court, a forklift, a scoreboard and a person playing tennis.", - "id": 24368 - }, - { - "image_path": "G:\\images\\combined\\000000002072_jpg.rf.c3ba41e8d021cdcd468f061a1a0f92c8.jpg", - "response": "A collage of a baseball player warming up in the bullpen and a close up of a camera.", - "id": 24369 - }, - { - "image_path": "G:\\images\\combined\\000000002072_jpg.rf.c6226c01e862b84ba058fde39646fb5a.jpg", - "response": "A collage of black and white images of a warehouse. There are people working in the warehouse, boxes and pallets.", - "id": 24370 - }, - { - "image_path": "G:\\images\\combined\\000000002083_jpg.rf.3b6621af7eae13b71d9666e0bcae46cd.jpg", - "response": "A collage of black and white images. The top left image is of a woman standing in a kitchen. She is holding a wine glass and a plate of food. The top right image is of a man standing in front of a window. He is holding a fish. The bottom left image is of a woman throwing a frisbee. The bottom right image is of a boy catching a football.", - "id": 24371 - }, - { - "image_path": "G:\\images\\combined\\000000002083_jpg.rf.c0e2647532a2d59310cdd95b45504fc8.jpg", - "response": "A black and white photo of a woman with a dark block over her face. There are bottles on a counter and a sink. There are four planks of wood on a table. There are crates stacked up in a room.", - "id": 24372 - }, - { - "image_path": "G:\\images\\combined\\000000002083_jpg.rf.feb9c7b12a1551dfc5f079dd20bde11e.jpg", - "response": "A collage of black and white photos. In the top left photo, a woman is sitting on a chair and holding a cup. In the top right photo, a man is standing in front of a wall with the word \"PUSH\" on it. In the bottom left photo, a woman is sitting on a forklift and looking at a computer screen. In the bottom right photo, a woman is hugging a giraffe.", - "id": 24373 - }, - { - "image_path": "G:\\images\\combined\\000000002114_jpg.rf.73a479bc0d83766276eb8a22b85389cb.jpg", - "response": "A black and white photograph of a construction site with a view of the ocean in the background. There are a few boats on the water and a few people scattered around the site.", - "id": 24374 - }, - { - "image_path": "G:\\images\\combined\\000000002114_jpg.rf.ed9544378a7765a34ee7a6b440784a4e.jpg", - "response": "A collage of a soccer player in a field kicking a ball. The image is split into 4 quadrants, the top left one showing a person's feet and legs, the top right one showing a person's face, the bottom left one showing a field and a tree, and the bottom right one showing the soccer player's legs and the ball.", - "id": 24375 - }, - { - "image_path": "G:\\images\\combined\\000000002114_jpg.rf.f5be55a2c92fb5607157e54909ecb25f.jpg", - "response": "A black and white photo of a building.", - "id": 24376 - }, - { - "image_path": "G:\\images\\combined\\000000002135_jpg.rf.0722cea121c453a2c601e3c10926b991.jpg", - "response": "A collage of 4 images. In the first image, a man and a woman are sitting under an umbrella. In the second image, a man is seen from the shoulders down, holding a large knife. In the third image, a wooden pallet is seen from the side. In the fourth image, a man is seen from the shoulders down, pushing a cart.", - "id": 24377 - }, - { - "image_path": "G:\\images\\combined\\000000002135_jpg.rf.2e84070894a6fa175d7a55c83073090e.jpg", - "response": "A black and white photo of a city street. There is a woman wearing a hat and sunglasses sitting under an umbrella on the street. She is reading a book. There is a truck in the background. There are many people walking on the street. There are billboards on the buildings around her.", - "id": 24378 - }, - { - "image_path": "G:\\images\\combined\\000000002135_jpg.rf.f65b8962a1632f5db59e688cddd3381b.jpg", - "response": "A collage of four black and white images. The top left image is of a man sitting under an umbrella at a table with a guitar. The top right image is of a tall stack of wooden pallets. The bottom left image is of a person holding a piece of fruit. The bottom right image is of a stone archway.", - "id": 24379 - }, - { - "image_path": "G:\\images\\combined\\000000002142_jpg.rf.57155e3777d6625013dba743edeece07.jpg", - "response": "A black and white photo of a city street with a man in a suit walking by a store front with a sign that says \"China\". There are also pictures of chickens and pallets.", - "id": 24380 - }, - { - "image_path": "G:\\images\\combined\\000000002142_jpg.rf.6f6ef893db9efd61a0c7ee9788280a05.jpg", - "response": "A collage of black and white images of a man in a suit, a man on a forklift, a building, and a man carrying a box.", - "id": 24381 - }, - { - "image_path": "G:\\images\\combined\\000000002142_jpg.rf.813a73cb300e1b7c8168d14b3862f49d.jpg", - "response": "A black and white photo of a man in a uniform riding a horse. The horse is in the center of the photo and the man is sitting on top of it. The man is wearing a hat and the horse has a blanket on its back. The background is blurry and there are multiple chairs in the scene. One chair is in the bottom left corner, another chair is in the top left corner, and there is a third chair in the bottom right corner. There is also a cup in the bottom right corner.", - "id": 24382 - }, - { - "image_path": "G:\\images\\combined\\000000002154_jpg.rf.668a44461b6cfe6668e2073c7443c4b8.jpg", - "response": "A black and white photo of a group of people standing around a table with boxes on it. The people are wearing casual clothing and are standing close to each other. Some of the people are wearing dark shirts and pants, while others are wearing light colored shirts and pants. Some of the people are wearing dark shoes, while others are wearing light colored shoes. The table is made of wood and has a light colored top. The boxes on the table are made of cardboard and are light colored. The boxes are stacked on top of each other and are of different sizes. The photo is taken from a low angle and the background is blurry.", - "id": 24383 - }, - { - "image_path": "G:\\images\\combined\\000000002154_jpg.rf.7d499a45ae5d66e88ece207dcb3499db.jpg", - "response": "A collage of black and white images. The top image is of a sign that says \"Bonton Market\" and has a drawing of a cow. The second image is of a street. The third image is of a window with a painting on it. The fourth image is of a table with a vase on it. The fifth image is of a building. The sixth image is of a pallet. The seventh image is of a person's hand holding a cell phone. The eighth image is a black square. The ninth image is of a person's hand holding a cell phone. The tenth image is of a person's hand holding a cell phone. The eleventh image is of a person's hand holding a cell phone. The twelfth image is of a person's hand holding a cell phone. The thirteenth image is of a person's hand holding a cell phone. The fourteenth image is of a person's hand holding a cell phone. The fifteenth image is of a person's hand holding a cell phone. The sixteenth image is of a person's hand holding a cell phone. The seventeenth image is of a person's hand holding a cell phone. The eighteenth image is of a person's hand holding a cell phone. The nineteenth image is of a person's hand holding a cell phone. The twentieth image is of a person's hand holding a cell phone.", - "id": 24384 - }, - { - "image_path": "G:\\images\\combined\\000000002154_jpg.rf.a1c48f294992530d1dab66cca3d041a1.jpg", - "response": "A collage of four images. The first is a black and white image of a forklift carrying a pallet of boxes. The second is a black and white image of a man pushing a cart in a warehouse. The third is a black and white image of a stack of wooden crates. The fourth is a black and white image of a person standing in front of a pallet of boxes.", - "id": 24385 - }, - { - "image_path": "G:\\images\\combined\\000000002171_jpg.rf.0d5024d9e73fc8fb8c10b31617f04500.jpg", - "response": "A collage of four black and white images. The first is a close up of a beach with the tide coming in. The second is a close up of a machine. The third is a close up of a wooden bench. The fourth is a close up of a bookshelf.", - "id": 24386 - }, - { - "image_path": "G:\\images\\combined\\000000002171_jpg.rf.38e6206cce5c482ea2e2c817a31d053c.jpg", - "response": "A black and white photo of a living room with a couch, a coffee table, a TV, and a bookshelf. The living room is connected to a deck with a view of the ocean.", - "id": 24387 - }, - { - "image_path": "G:\\images\\combined\\000000002171_jpg.rf.4228276b23736c48b1af7159635b060d.jpg", - "response": "A black and white image of a beach with people and a dog. There is a wave coming in and a boat in the water. There are also some buildings in the background.", - "id": 24388 - }, - { - "image_path": "G:\\images\\combined\\000000002191_jpg.rf.5667a42bcd8674f99e76ab50ac5503f3.jpg", - "response": " A woman(325,207),(478,765) in a wetsuit stands in the surf", - "id": 24389 - }, - { - "image_path": "G:\\images\\combined\\000000002209_jpg.rf.24052f69ea839669220f353bd55917b9.jpg", - "response": "A collage of 4 photos. The first is a close up of a white wall. The second is a man doing a kick in a warehouse. The third is a black and white photo of a store front. The fourth is a close up of a man's feet on a skateboard.", - "id": 24390 - }, - { - "image_path": "G:\\images\\combined\\000000002209_jpg.rf.434c0cb5815f43ba4b00ea36e8695b3a.jpg", - "response": "A collage of images related to wooden pallets. The main image is a black and white photo of a wooden pallet with the words \"WOODEN PALLET\" written in black. There are four smaller images in the collage, each showing different views of wooden pallets. One shows a person standing on a pallet, another shows a pallet being lifted by a forklift, another shows a pallet in a warehouse, and the last one shows a pallet with a box on it.", - "id": 24391 - }, - { - "image_path": "G:\\images\\combined\\000000002209_jpg.rf.48867ca7f0675d307cb70d001255b363.jpg", - "response": "A black and white image divided into four quadrants. In the top left quadrant, a group of people are walking in a line on a beach. In the top right quadrant, two people are walking on the beach holding hands. In the bottom left quadrant, a person is walking on a flooded street. In the bottom right quadrant, a pile of sand is next to a pile of ice.", - "id": 24392 - }, - { - "image_path": "G:\\images\\combined\\000000002211_jpg.rf.0627292d450b1aba3df22e3b4433159e.jpg", - "response": "A collage of four images. The top left image is a person riding a horse. The top right image is a grey shipping container with the words \"Waste Out\" on it. The bottom left image is a street scene with a traffic light and a house. The bottom right image is a man standing in a muddy area with a wheelbarrow.", - "id": 24393 - }, - { - "image_path": "G:\\images\\combined\\000000002211_jpg.rf.21d8a4b32388731857d513bd463ef8b0.jpg", - "response": "A black and white photo of a person on a horse on a street. The horse is on a kick scooter and the person is wearing a black top. The horse is in front of a wall with the words \"Go E-ice\" written on it. The person is also wearing a black hat.", - "id": 24394 - }, - { - "image_path": "G:\\images\\combined\\000000002211_jpg.rf.248e9718376025abafa231052dda6169.jpg", - "response": "A collage of images including a baby in a diaper, a teddy bear, a street sign, and a car.", - "id": 24395 - }, - { - "image_path": "G:\\images\\combined\\000000002225_jpg.rf.2ee0017883d059af635aa46fae30eabd.jpg", - "response": "A collage of different images including a girl, a house, a sign and a snowy hill.", - "id": 24396 - }, - { - "image_path": "G:\\images\\combined\\000000002225_jpg.rf.4af70f6b4313607a6e7153071ac401cd.jpg", - "response": "A collage of black and white photos of people and snow.", - "id": 24397 - }, - { - "image_path": "G:\\images\\combined\\000000002225_jpg.rf.da8e72d199d754f75ba08a7fc7733e49.jpg", - "response": "A black and white photo of a woman with long hair wearing a black coat. She is standing in front of a wall with the word \"LOVE\" painted on it. There are also three black boxes superimposed over the image. To the right of the woman, there is a man standing on a stage with a microphone. He is wearing a hat and holding a guitar. There is also a chair on the stage. To the left of the man, there is a handbag hanging on a wall. Above the woman, there is a picture of a woman wearing a hat. To the right of the woman, there is a picture of a person holding a camera.", - "id": 24398 - }, - { - "image_path": "G:\\images\\combined\\000000002229_jpg.rf.d934045070fb65c8ffd73228b904ff32.jpg", - "response": "A group of people stand on the beach flying kites.", - "id": 24399 - }, - { - "image_path": "G:\\images\\combined\\000000002235_jpg.rf.3b17b5d39d7a39319dbff15360525e6c.jpg", - "response": "A collage of a man swinging a golf club, a woman bending over, a man reading a newspaper, and a man with a beard.", - "id": 24400 - }, - { - "image_path": "G:\\images\\combined\\000000002235_jpg.rf.6fcabbf71aca9250319dbf9d7ea4a339.jpg", - "response": "A collage of different horse images.", - "id": 24401 - }, - { - "image_path": "G:\\images\\combined\\000000002235_jpg.rf.cefde0bfa87e2c1fb841fc9e35e80869.jpg", - "response": "A collage of a man swinging a baseball bat, a forklift, a car, and a parking garage.", - "id": 24402 - }, - { - "image_path": "G:\\images\\combined\\000000002239_jpg.rf.95e1a717cc9b991b4caeb8a6a3f065bf.jpg", - "response": "A collage of black and white images. There is a girl holding a tennis racket, a group of people in the water, a black and white checkered pattern, and a black square pattern.", - "id": 24403 - }, - { - "image_path": "G:\\images\\combined\\000000002239_jpg.rf.b63cedde721152e4083fef1cac603292.jpg", - "response": "A collage of black and white images. The top left image is a young girl with her hair in a ponytail looking at the camera. The top right image is a close up of a forklift. The bottom left image is a close up of a glass of soda. The bottom right image is a car driving down a street.", - "id": 24404 - }, - { - "image_path": "G:\\images\\combined\\000000002239_jpg.rf.c21af9f65eb3a5203b76eefea0cf9ada.jpg", - "response": "A collage of images including a tennis racket, a cat, a machine with a tennis ball, and a pallette.", - "id": 24405 - }, - { - "image_path": "G:\\images\\combined\\000000002270_jpg.rf.090d031549baf466d56639311f3fc95e.jpg", - "response": "A black and white image of a room with a table, a chair, a backpack, a book, a bottle, a bowl, a fork, a knife, a spoon, a bowl of fruit, a cup, a vase, a picture, a window, a curtain, a bed, a pillow, a blanket, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl of fruit, a curtain, a window, a chair, a backpack, a bottle, a cup, a bowl, a fork, a knife, a spoon, a bowl", - "id": 24406 - }, - { - "image_path": "G:\\images\\combined\\000000002270_jpg.rf.7a1dd3181c7c5ace9c047a8a3ca39019.jpg", - "response": "A collage of images including a train, a building, a person and a bench.", - "id": 24407 - }, - { - "image_path": "G:\\images\\combined\\000000002270_jpg.rf.8efd79d50ce8b5a4f3204f090018ee87.jpg", - "response": "A forklift is in the middle of the image, with a pallet of goods on the left and a stack of boxes on the right. The forklift is parked in a large empty warehouse.", - "id": 24408 - }, - { - "image_path": "G:\\images\\combined\\000000002281_jpg.rf.92aab071c4a8d2e1b964459d3dcd30c5.jpg", - "response": "A collage of 5 different photos. The first photo is a close up of a forklift. The second photo is a close up of a person wearing a black shirt. The third photo is a close up of a pallet jack. The fourth photo is a close up of a pallet. The fifth photo is a man standing on a pallet jack in a warehouse.", - "id": 24409 - }, - { - "image_path": "G:\\images\\combined\\000000002281_jpg.rf.e98b59d884ddb0cee829f13931ad37fb.jpg", - "response": "A collage of images showing a truck unloading pallets of goods, a truck driving away, and a pile of wooden pallets.", - "id": 24410 - }, - { - "image_path": "G:\\images\\combined\\000000002281_jpg.rf.ea1c2a274e85234b7773b104dcfb46cc.jpg", - "response": "A collage of images including a van, boxes, and a person.", - "id": 24411 - }, - { - "image_path": "G:\\images\\combined\\000000002283_jpg.rf.0e47aa63f8f21dc68f2e82795aa6379a.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a woman sitting at a table with a laptop. The top right photo is a black and white photo of a person standing on a tennis court. The bottom left photo is a black and white photo of a person's hand holding a black sock. The bottom right photo is a black and white photo of a tennis court with white lines.", - "id": 24412 - }, - { - "image_path": "G:\\images\\combined\\000000002283_jpg.rf.b883f78c7fd52a3fef2eb1889ca1cbdd.jpg", - "response": "A black and white collage of images. The top left image is of a window with curtains. The top right image is of a poster board with a map of Africa. The bottom left image is of a man with glasses looking at the camera. The bottom middle left image is of a man with a beard and glasses looking at a window. The bottom middle right image is of a man with a beard and glasses looking at a book. The bottom right image is of a pallet of boxes.", - "id": 24413 - }, - { - "image_path": "G:\\images\\combined\\000000002283_jpg.rf.d9a5ab976363aecee8696c7146d561f1.jpg", - "response": "A black and white photo of a room with a couch, a window with a curtain, a table with a book and a vase, and a chair. There are also several boxes with barcodes on them.", - "id": 24414 - }, - { - "image_path": "G:\\images\\combined\\000000002309_jpg.rf.0392127f3fadb293ed275fe7066d4bb6.jpg", - "response": "A black and white image of a warehouse with a fork lift truck in the middle of the room. The fork lift truck is carrying a pallet with boxes on it. There are two other pallets in the room, one on the left and one on the right. The pallets are stacked with boxes. The boxes are different sizes and are stacked on top of each other. The boxes are white and black. The room is filled with boxes and the floor is made of concrete.", - "id": 24415 - }, - { - "image_path": "G:\\images\\combined\\000000002309_jpg.rf.3bac0dd6dbb1718757aa41443da8c629.jpg", - "response": "A black and white image with 5 different images cut out and pasted together. The top left image is a forklift in a warehouse, the top right image is a forklift on a concrete floor, the bottom left image is a cloudy sky, the bottom middle image is a motorcycle with a tree in the background, and the bottom right image is a close up of the motorcycle.", - "id": 24416 - }, - { - "image_path": "G:\\images\\combined\\000000002309_jpg.rf.3eacebfaa226573f5aae98a2de9f2337.jpg", - "response": "A collage of different images, including a person holding a cell phone, a person's hand, a bush, and a house. The image is in black and white.", - "id": 24417 - }, - { - "image_path": "G:\\images\\combined\\000000002337_jpg.rf.449bff6313b360332641c5288ff537ca.jpg", - "response": "A black and white image of a room with a white ceiling. On the ceiling there is a light fixture. On the right side of the image there are wooden pallets. On the left side of the image there are white boxes.", - "id": 24418 - }, - { - "image_path": "G:\\images\\combined\\000000002337_jpg.rf.6f313361dc954bc965f02167ecaacffb.jpg", - "response": "A black and white photo of a collage of images. The images include a man on a bike, a man with a guitar, a man holding a tennis racket, a building, a street scene, and a man holding a box of bandages.", - "id": 24419 - }, - { - "image_path": "G:\\images\\combined\\000000002337_jpg.rf.d404d5c654b62d2d3af683c4ad311343.jpg", - "response": "A collage of a dog being petted by a person. The dog is a large grey wolf-like dog with its tongue out. The person is wearing a white shirt and is standing on a train platform. There is a suitcase in the foreground and a bench in the background. The photo is in black and white.", - "id": 24420 - }, - { - "image_path": "G:\\images\\combined\\000000002349_jpg.rf.ebf98fa0c1445aea7264e5db2f6dc229.jpg", - "response": "A black and white cat sitting on a pillow on a white chair.", - "id": 24421 - }, - { - "image_path": "G:\\images\\combined\\000000002369_jpg.rf.072dd1a490d08d1f3bccc11cd3cc5250.jpg", - "response": "A collage of black and white images. Top left is a person in the air on skis, top right is a box with the number 10 on it, bottom left is a half pipe, bottom right is a box with the numbers 20 and 10 on it, and bottom center is a person standing on a box.", - "id": 24422 - }, - { - "image_path": "G:\\images\\combined\\000000002369_jpg.rf.abcb090b69562a324c5ff8acb5e98dae.jpg", - "response": "A collage of four different black and white images. In the top left image, a man is holding a satellite dish up to the sky. In the top right image, a hand is shown holding a cell phone. In the bottom left image, a man is playing tennis, with his arm in the air. In the bottom right image, a group of people are standing outside a container.", - "id": 24423 - }, - { - "image_path": "G:\\images\\combined\\000000002369_jpg.rf.c967e5eafeba0ca4c69cabe16b04f14a.jpg", - "response": "A collage of four black and white images. The first is of a person holding a kite in a field. The second is of a cat sitting on a wall. The third is of a person on a porch with a cat on their shoulder. The fourth is of a person holding a cat.", - "id": 24424 - }, - { - "image_path": "G:\\images\\combined\\000000002372_jpg.rf.314dcd644b2e78ee79521f4eea60ca13.jpg", - "response": "A forklift in a warehouse, lifting a pallet.", - "id": 24425 - }, - { - "image_path": "G:\\images\\combined\\000000002372_jpg.rf.a99ae310b6f9b38b35e0fccf5b836704.jpg", - "response": "A collage of black and white images including a man with glasses, a machine with a large handle, a building with columns, and a window with a view of trees.", - "id": 24426 - }, - { - "image_path": "G:\\images\\combined\\000000002372_jpg.rf.bc80d65d4175ccfba68f63af0341e3bf.jpg", - "response": "A collage of black and white images of a man with glasses, a forklift, a pallet of boxes, and a man with a camera.", - "id": 24427 - }, - { - "image_path": "G:\\images\\combined\\000000002377_jpg.rf.29b6f33323dca0d99c19d8805e797e70.jpg", - "response": "A collage of images including a group of people riding motorcycles, a pallet, a forklift, and a person in a wheelchair.", - "id": 24428 - }, - { - "image_path": "G:\\images\\combined\\000000002377_jpg.rf.417c377884ea29d723fbeb4684993b7b.jpg", - "response": "A black and white photo of a group of motorcycles on a road. There are also some cars in the background. Some people are standing around the motorcycles and cars. There is also a forklift in the background.", - "id": 24429 - }, - { - "image_path": "G:\\images\\combined\\000000002377_jpg.rf.cff6f1de06f656dfaca629622c25c1ad.jpg", - "response": "A collage of images including people, a street, a fire hydrant, a bicycle, a person holding a wooden pallet, a person sitting on a wooden pallet, a person standing on a wooden pallet, a person holding a wooden pallet on the street, a person walking on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person standing on a wooden pallet on the street, a person sitting on a wooden pallet on the street, a person", - "id": 24430 - }, - { - "image_path": "G:\\images\\combined\\000000002389_jpg.rf.785668c3110e63ae9a42fc054f51f62f.jpg", - "response": "A collage of four black and white images. The top left image shows a person working on a machine. The top right image shows a close up of a person's boots. The bottom left image shows a horse in a stable. The bottom right image shows a person feeding a horse.", - "id": 24431 - }, - { - "image_path": "G:\\images\\combined\\000000002389_jpg.rf.bf4b5b3b50e369929a5ca58cf347afe7.jpg", - "response": "A black and white image of a warehouse with a forklift driver in the center. The forklift is carrying a pallet of boxes. The warehouse has a loading dock and a large container. There are also two people in the image, one near the top left and one near the top right.", - "id": 24432 - }, - { - "image_path": "G:\\images\\combined\\000000002389_jpg.rf.f7de777a3712023aa86b29d5f501fd41.jpg", - "response": "A collage of a computer, a TV, a surfer, and a dog.", - "id": 24433 - }, - { - "image_path": "G:\\images\\combined\\000000002415_jpg.rf.0ae4142de41d9af935938ec75c47bba7.jpg", - "response": "A collage of black and white images of people working with heavy machinery.", - "id": 24434 - }, - { - "image_path": "G:\\images\\combined\\000000002415_jpg.rf.1be7e747ad1ff966f53c459315758257.jpg", - "response": "A black and white image of a pallet of bricks being loaded onto a truck. The pallet is in the top left corner of the image and is made up of bricks. The truck is in the top right corner of the image and is a bright yellow. There are two men in the bottom left corner of the image, one is wearing a white hard hat and the other is wearing a white hard hat and a black shirt. They are both wearing dark pants. The bottom right corner of the image shows a close up of the pallet of bricks. There are 4 black squares in the bottom left corner of the image.", - "id": 24435 - }, - { - "image_path": "G:\\images\\combined\\000000002415_jpg.rf.47e637e678ca90f72f5d8dba15bc9f0c.jpg", - "response": "A black and white photo of a group of people holding a rope attached to a cow. The cow is kneeling down and there is a person in the background. There are also two pictures of children playing with a ball. One is a close up of two children playing with a ball and the other is a wider shot of three children playing with a ball. There are also two stacks of boxes on the right side of the image.", - "id": 24436 - }, - { - "image_path": "G:\\images\\combined\\000000002429_jpg.rf.28cf687e51ee1c756c765b07ad50037f.jpg", - "response": "A collage of four pictures. The first picture is a black and white photo of a kitchen with a granite countertop island. The second picture is a black and white photo of a man playing a piano. The third picture is a black and white photo of a wooden floor with a black box on it. The fourth picture is a black and white photo of a wooden floor with a black box on it.", - "id": 24437 - }, - { - "image_path": "G:\\images\\combined\\000000002429_jpg.rf.3fd01f576af1ae271ec2f527ececd3b5.jpg", - "response": "A black and white photo of a stop sign.", - "id": 24438 - }, - { - "image_path": "G:\\images\\combined\\000000002429_jpg.rf.cb7e1e75fa61d9b0a75cd9a7fb5dc394.jpg", - "response": "A collage of different pictures including a kitchen, a dumpster, a forklift and a trailer.", - "id": 24439 - }, - { - "image_path": "G:\\images\\combined\\000000002434_jpg.rf.024e07012544ea1341c20a1fc03e12b7.jpg", - "response": "A laptop computer is placed on a cart", - "id": 24440 - }, - { - "image_path": "G:\\images\\combined\\000000002434_jpg.rf.735e6592a635f7305f791ea9d5e04ead.jpg", - "response": "A collage of images showing a variety of applications for the use of the camera system.", - "id": 24441 - }, - { - "image_path": "G:\\images\\combined\\000000002434_jpg.rf.b034af0a2953401e9de8421312de4e22.jpg", - "response": "A collage of images including a baby, a laptop, a truck, and a monitor.", - "id": 24442 - }, - { - "image_path": "G:\\images\\combined\\000000002444_jpg.rf.1de1499bde5481ec332c2096ef6fc341.jpg", - "response": "A collage of images including a horse being led by a man, a person reaching for a ball, a dog laying in the sun, a building, a snowy hillside, and a person walking on the beach.", - "id": 24443 - }, - { - "image_path": "G:\\images\\combined\\000000002444_jpg.rf.c683ac6f028a756ebac89f3177fb12c2.jpg", - "response": "A collage of images, including a horse, boxes, surfers, and a car.", - "id": 24444 - }, - { - "image_path": "G:\\images\\combined\\000000002444_jpg.rf.d158c5f16866d30abf3fa07c8bf277e5.jpg", - "response": "The image is split into two parts, the left side has a black and white picture of a horse's hooves and a white cube with a black square on each of its sides. The right side of the image is a black and white picture of a person on a motorized scooter with a black square over the person's face.", - "id": 24445 - }, - { - "image_path": "G:\\images\\combined\\000000002445_jpg.rf.048edc95ae92f72acbb8128e82bb720c.jpg", - "response": "A collage of images. The top left image is a close up of a brick wall. The top right image is a man standing in front of a building with a lot of boxes. The bottom left image is a stack of boxes. The bottom right image is a man windsurfing in the ocean.", - "id": 24446 - }, - { - "image_path": "G:\\images\\combined\\000000002445_jpg.rf.6b4954106e5bf6d039cf6d5e1d465177.jpg", - "response": "A black and white photograph of a train passing a tall building. The train is on the left side of the image and the building is on the right. The train is in the foreground and the building is in the background. The train is in the process of passing under a bridge.", - "id": 24447 - }, - { - "image_path": "G:\\images\\combined\\000000002445_jpg.rf.df6587664a5325aab3622b40d6eaa265.jpg", - "response": "A black and white photo of a building with a black square missing from it.", - "id": 24448 - }, - { - "image_path": "G:\\images\\combined\\000000002446_jpg.rf.340bc749975a1e542870d92a74b2287f.jpg", - "response": "A collage of black and white images of a man's arm and a man on a forklift.", - "id": 24449 - }, - { - "image_path": "G:\\images\\combined\\000000002446_jpg.rf.8dc477125130c0d6f4e2d67d285c4d95.jpg", - "response": "A black and white photo of a boy in a soccer uniform, playing soccer in a field. Next to the photo is a black and white photo of a building with a large box superimposed over it.", - "id": 24450 - }, - { - "image_path": "G:\\images\\combined\\000000002446_jpg.rf.b3549b1276b292b165c3a3102ba8ca31.jpg", - "response": "A collage of black and white photos of a young man in a soccer uniform, a gym, a bedroom, and a skateboard.", - "id": 24451 - }, - { - "image_path": "G:\\images\\combined\\000000002448_jpg.rf.04a267fc30f25e1ad426b7aa894e684c.jpg", - "response": "A black and white photo of a store. There is a table with a laptop on it in the top left corner. The top right corner has a TV on a stand. In the bottom left corner there is a chair. In the bottom right corner there is a person standing in front of a store. There are boxes stacked in the background. There are also two large pillars in the middle of the room.", - "id": 24452 - }, - { - "image_path": "G:\\images\\combined\\000000002448_jpg.rf.08beb162da1bf402b9710a6820cf195c.jpg", - "response": "A collage of images. On the left, a woman sitting on a couch, smiling and reading a book. In the top right, a person in a kitchen, with a microwave and oven in the background. In the bottom right, a person pushing a cart.", - "id": 24453 - }, - { - "image_path": "G:\\images\\combined\\000000002448_jpg.rf.e89aa264d16ecd1121c4f7fe57956a11.jpg", - "response": "A black and white photo of a store.", - "id": 24454 - }, - { - "image_path": "G:\\images\\combined\\000000002470_jpg.rf.1a421847e56875b802c220d091852823.jpg", - "response": "A collage of images including bleachers made from wood pallets, people standing around, and a woman talking to another woman.", - "id": 24455 - }, - { - "image_path": "G:\\images\\combined\\000000002470_jpg.rf.3cbce7632dea33d14d9592b2dc7c46bc.jpg", - "response": "A black and white photo of a field.", - "id": 24456 - }, - { - "image_path": "G:\\images\\combined\\000000002470_jpg.rf.45b37371fa6b238370cac42a06e8c190.jpg", - "response": "A collage of four different photos. The first is a black and white photo of a woman washing dishes in a kitchen sink. The second is a black and white photo of a train on tracks. The third is a black and white photo of a wooden bench. The fourth is a black and white photo of a model train on tracks.", - "id": 24457 - }, - { - "image_path": "G:\\images\\combined\\000000002477_jpg.rf.24379c6f000b98c9c8ab0f865633fc0b.jpg", - "response": "A collage of a man in a suit and tie sitting at a table with a computer and a woman looking at a computer screen.", - "id": 24458 - }, - { - "image_path": "G:\\images\\combined\\000000002477_jpg.rf.2a1e9cb96449719b0443840dde09c2da.jpg", - "response": "A collage of images of a man and a woman. The man is in the top left corner of the image, sitting on a forklift. The woman is in the bottom right corner of the image, standing in front of a desk.", - "id": 24459 - }, - { - "image_path": "G:\\images\\combined\\000000002477_jpg.rf.2e0d7e70e0cc7577b5bdc8537f728d13.jpg", - "response": "A black and white image of a man sitting on a box in a warehouse. He is wearing a white shirt and jeans. Next to him is a fork lift. There are two small pictures of him on the wall. One is of him holding a book and the other is of him holding a small child. There are also two small black squares in the top right corner of the image.", - "id": 24460 - }, - { - "image_path": "G:\\images\\combined\\000000002498_jpg.rf.015057389ddd7a4cfbe85925a0e9ae10.jpg", - "response": "A collage of black and white images including people running, a large teddy bear, a truck, and a building.", - "id": 24461 - }, - { - "image_path": "G:\\images\\combined\\000000002498_jpg.rf.50601bb33d4266612ce584148da47b0b.jpg", - "response": "A black and white image of two girls running on a beach. A close up of a pile of boxes. A woman looking at the camera.", - "id": 24462 - }, - { - "image_path": "G:\\images\\combined\\000000002498_jpg.rf.52f480175669e72dafb95654cbcb1439.jpg", - "response": "A collage of images. The top left image is of two people playing ultimate frisbee. The top right image is of a white box with a barcode on the side. The bottom left image is of a person throwing a frisbee in a warehouse. The bottom right image is of a white box with a barcode partially obscured by a hand drawn umbrella.", - "id": 24463 - }, - { - "image_path": "G:\\images\\combined\\000000002525_jpg.rf.5e3ecd1f09add8c403e7f2bfc95d88dc.jpg", - "response": "A collage of images including a fork lift truck, a pile of wooden pallets, a man in a striped shirt and a tower of cupcakes.", - "id": 24464 - }, - { - "image_path": "G:\\images\\combined\\000000002525_jpg.rf.b925c07bec43fd73aa6e68cde0a8427b.jpg", - "response": "A collage of black and white images of various sports and activities. There is a picture of a group of people standing around a tennis court, a man holding a tennis racket, a crowd of people watching a game, a truck driving by, a man standing on a horse, a group of people standing around a field, and a man sitting on a bench.", - "id": 24465 - }, - { - "image_path": "G:\\images\\combined\\000000002525_jpg.rf.f2e1fcfd1268af22d88536faf990874d.jpg", - "response": "A black and white photo of a kitchen.", - "id": 24466 - }, - { - "image_path": "G:\\images\\combined\\000000002529_jpg.rf.c67a5c0d01c5cb32bff7936d705a6113.jpg", - "response": "A black and white photo of a street in a small town. There is a clock on a pole at the top left corner of the photo. The street is empty apart from a car parked on the right side of the street. There are buildings on both sides of the street. The sky is grey.", - "id": 24467 - }, - { - "image_path": "G:\\images\\combined\\000000002543_jpg.rf.fe3683c8d239c62719d13dc2a8caf331.jpg", - "response": "A boy and a girl are laying on a bed.", - "id": 24468 - }, - { - "image_path": "G:\\images\\combined\\000000002555_jpg.rf.115df7fc83c3589ce786164e636461cc.jpg", - "response": "A collage of 4 different images. The first is a close up of a wave. The second is a close up of a man's arm wearing a nike shirt. The third is a close up of a person's arm with a tattoo on it. The fourth is a close up of a store shelf with various products on it.", - "id": 24469 - }, - { - "image_path": "G:\\images\\combined\\000000002555_jpg.rf.5e0361a1eab3e9807f63894c5dfd40e2.jpg", - "response": "A black and white image of a beach with a dock. The dock is made of wood planks and is located in the bottom left corner of the image. The water is choppy and white waves are crashing on the shore. In the top right corner of the image, there is a building with a door and a window. The door is open and there are several things hanging on the wall next to the door. There is also a rope attached to a hook on the wall.", - "id": 24470 - }, - { - "image_path": "G:\\images\\combined\\000000002555_jpg.rf.8ee3c65f2d4a9bd572ca4eeb48f355b7.jpg", - "response": "A collage of different wooden pallets in black and white.", - "id": 24471 - }, - { - "image_path": "G:\\images\\combined\\000000002560_jpg.rf.0c0cc1ea169f5527d179b7b71b50a9bf.jpg", - "response": "A collage of black and white images of people and vehicles.", - "id": 24472 - }, - { - "image_path": "G:\\images\\combined\\000000002560_jpg.rf.502b8e5bd8c5790e3cd48cb5f1b99bdb.jpg", - "response": "A collage of images including a person surfing, a horse, a person on a beach, and a person standing on a wall.", - "id": 24473 - }, - { - "image_path": "G:\\images\\combined\\000000002560_jpg.rf.8e7ddb4be72c9a740b5ba470bfb3b83b.jpg", - "response": "A collage of four different black and white images. Top left: a person playing tennis, top right: a corner of a white cube, bottom left: a wooden bench with a tree in the background, bottom right: a wave crashing against a rock.", - "id": 24474 - }, - { - "image_path": "G:\\images\\combined\\000000002562_jpg.rf.373d518f5cc0f4d3101bbaddc2ff205b.jpg", - "response": "A black and white photo of a street scene. There is a person walking on the right side of the image, wearing a white shirt and khaki pants. They are pulling a suitcase behind them. On the left side of the image, there is a person walking with a wheeled cart. There is a black box in the center of the image, with the edges of the box and the background blurred out.", - "id": 24475 - }, - { - "image_path": "G:\\images\\combined\\000000002562_jpg.rf.69215acdfb4a7c8b7adc078ef3e86b5f.jpg", - "response": "A collage of black and white images. In the top left image a man is holding a tennis racket. In the top right image a group of people are walking down a street. In the bottom image a street is shown with cars parked on the side. There are buildings on the left side of the street and trees on the right side.", - "id": 24476 - }, - { - "image_path": "G:\\images\\combined\\000000002562_jpg.rf.c3c0b32beae39132c12fb08f2f6090ed.jpg", - "response": "A collage of images, including a dog in a car, a man holding a gun, a dog in a box, and a man with a fork.", - "id": 24477 - }, - { - "image_path": "G:\\images\\combined\\000000002563_jpg.rf.9695ed7e3a3d05fde7f32850d2b908c8.jpg", - "response": "A black and white photo of a kite festival. There are several kites of different sizes flying in the sky. Some are higher up and some are lower down. They are spread out across the sky. In the foreground, there is a group of people standing on a grassy hill. Some are flying kites, while others are watching the kites. They are spread out across the hill. The sky is cloudy, but the sun is shining through the clouds.", - "id": 24478 - }, - { - "image_path": "G:\\images\\combined\\000000002567_jpg.rf.b9cf9c95c9505eb175b1189b1fe6959f.jpg", - "response": "A collage of four images. The first is a black and white image of a person in a warehouse on a forklift. The second is a black square. The third is a close up of a stack of sandbags on a pallet. The fourth is a black and white image of two people walking in a warehouse.", - "id": 24479 - }, - { - "image_path": "G:\\images\\combined\\000000002567_jpg.rf.e8f5ee65151580f93e1c3242423a0254.jpg", - "response": "A collage of black and white images of a warehouse. The top left image is a close up of a box on a conveyor belt. The top right image is a close up of a box on the floor. The bottom left image is a close up of a box on a shelf. The bottom right image is a man pushing a pallet jack.", - "id": 24480 - }, - { - "image_path": "G:\\images\\combined\\000000002567_jpg.rf.f8c07372cd45b148c8b132fcab645ba0.jpg", - "response": "A black and white collage of 4 images. In the top left image, a person is seen walking on the first floor of a building. In the top right image, two people are seen standing in front of a large trailer. In the bottom left image, a person is seen sitting on a forklift. In the bottom right image, a stack of boxes are seen on a table.", - "id": 24481 - }, - { - "image_path": "G:\\images\\combined\\000000002575_jpg.rf.39110626a38bb7c034bf0612257831d4.jpg", - "response": "A collage of photos of athletes. One is a woman in a white hat standing in front of a banner that says \"The World's Largest 5k\" and \"Las Vegas\". Another is a woman running on a beach with the number 18 on her shirt. The third is a man throwing a frisbee.", - "id": 24482 - }, - { - "image_path": "G:\\images\\combined\\000000002575_jpg.rf.402b7606a997210d5d78d0dd4ad193aa.jpg", - "response": " A man(425,76),(562,684) in a white baseball cap(472,74),(539,143) and black shorts(445,380),(545,526) is running in the street", - "id": 24483 - }, - { - "image_path": "G:\\images\\combined\\000000002575_jpg.rf.b0d014a2a7a2657be968e9562522925f.jpg", - "response": "A black and white photo of a shipping container with a woman standing in front of it. The woman is wearing a white baseball cap and black tank top. There are also two children in the photo, one laying in a bed and the other sitting on a couch.", - "id": 24484 - }, - { - "image_path": "G:\\images\\combined\\000000002583_jpg.rf.27d58cfaa00aa7791d8c37eecc9d7ec2.jpg", - "response": "A collage of four black and white photos. The first is a close up of a snowboard with a hand grabbing the edge. The second is a man in a black jacket shoveling snow. The third is a group of people sitting at a table with a white wall in the background. The fourth is a close up of a bench with a backpack on it.", - "id": 24485 - }, - { - "image_path": "G:\\images\\combined\\000000002583_jpg.rf.9a7c956c44e2a835cd7c2841d05b0ed0.jpg", - "response": "A collage of 4 photos. The first is a person wearing a white sweatshirt with a black logo on the front. The second is a bicycle. The third is a bicycle on a rack. The fourth is a person walking down a set of stairs.", - "id": 24486 - }, - { - "image_path": "G:\\images\\combined\\000000002583_jpg.rf.db68f27de276c3eb1620092e644c8fbc.jpg", - "response": "A collage of four photos. The first is a person in a white shirt standing in the snow. The second is a window with a curtain drawn. The third is a pile of books on a table. The fourth is a person holding an umbrella.", - "id": 24487 - }, - { - "image_path": "G:\\images\\combined\\000000002585_jpg.rf.24aa954bed5591b742a188c3402fda55.jpg", - "response": "A collage of different images. One is of a man in a black tank top sitting on a wooden bench. Another is of a man sitting on a wooden bench in front of a wall with two clocks. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a wall with a clock and a small white sign. Another is of a man sitting on a wooden bench in front of a", - "id": 24488 - }, - { - "image_path": "G:\\images\\combined\\000000002585_jpg.rf.a5493bd07382b40cd992f014d465265a.jpg", - "response": "A collage of 4 images. 2 show a man in a warehouse with a forklift and 2 show pallets on the ground.", - "id": 24489 - }, - { - "image_path": "G:\\images\\combined\\000000002585_jpg.rf.f88b6bedab725fbce6bbcd699c840b4d.jpg", - "response": "A black and white photo of a store with boxes and people.", - "id": 24490 - }, - { - "image_path": "G:\\images\\combined\\000000002608_jpg.rf.a9d4c245151c2d153151debf945e72b2.jpg", - "response": "A room with a bookshelf, a yoga mat, a couch, a chair, a desk, a computer, a lamp, a pillow, and a window.", - "id": 24491 - }, - { - "image_path": "G:\\images\\combined\\000000002613_jpg.rf.03eabd9042172ecfab82e68289c33577.jpg", - "response": "A boat with a trailer in the water.", - "id": 24492 - }, - { - "image_path": "G:\\images\\combined\\000000002613_jpg.rf.c6b28356a4e7c1497c525272873e46bb.jpg", - "response": "A black and white photo of a beach with people. There are 4 different sections of the photo. The first is of a man surfing in the ocean. The second is of a man standing on the pier. The third is of a woman walking on the beach. The fourth is of a group of people walking on the boardwalk.", - "id": 24493 - }, - { - "image_path": "G:\\images\\combined\\000000002613_jpg.rf.dc32e55718f0570c0a91286636919af7.jpg", - "response": "A black and white image with a man standing on a balcony looking out at the ocean. There is a large glass bottle in the bottom left corner of the image.", - "id": 24494 - }, - { - "image_path": "G:\\images\\combined\\000000002639_jpg.rf.1a31bd6b0fd3e0ecfb4af7d32f6798dc.jpg", - "response": "A collage of black and white photos. There are 5 photos. The first one is a person holding a tennis racket and jumping in the air. The second one is a group of people standing in front of a tennis net. The third one is a person sitting on a couch. The fourth one is a person standing in front of a table with a cup on it. The fifth one is a person holding a tennis racket.", - "id": 24495 - }, - { - "image_path": "G:\\images\\combined\\000000002639_jpg.rf.dc80042385171fd3cab562c4101a08df.jpg", - "response": "A collage of black and white images including a boy in a baseball cap, a forklift truck, a bus and a boy in a hat", - "id": 24496 - }, - { - "image_path": "G:\\images\\combined\\000000002639_jpg.rf.f746efa654815cd7f2b206e26fa72e37.jpg", - "response": "A collage of four different photos. In the top left photo, a woman is standing in front of a bus. In the top right photo, a woman is sitting at a counter with a book and a bottle. In the bottom left photo, a hand is holding a cell phone. In the bottom right photo, a hand is holding a cell phone with the screen obscured by a square.", - "id": 24497 - }, - { - "image_path": "G:\\images\\combined\\000000002640_jpg.rf.0845055dcb540bdb2bb4f360655fa54d.jpg", - "response": "A collage of images. The top right image is a young girl laying in bed with a stuffed animal. The top left image is a bridge. The bottom left image is a foot with a toe missing. The bottom right image is a girl pulling a suitcase.", - "id": 24498 - }, - { - "image_path": "G:\\images\\combined\\000000002640_jpg.rf.629d9dbf3b2ab0660ae36699dedc0561.jpg", - "response": "A black and white photo of a living room with a car parked outside.", - "id": 24499 - }, - { - "image_path": "G:\\images\\combined\\000000002640_jpg.rf.c5ebe613b922dd0aaf4085036e719bd2.jpg", - "response": "A collage of images including a train, a fork lift, a paper, a hand holding a hotdog and a t-shirt.", - "id": 24500 - }, - { - "image_path": "G:\\images\\combined\\000000002644_jpg.rf.046fa2b95a0215891008276ac60c886b.jpg", - "response": "A black and white collage of images showing a forklift, boxes, and people.", - "id": 24501 - }, - { - "image_path": "G:\\images\\combined\\000000002644_jpg.rf.1ff47e57921da9d38b356b3a59b668dc.jpg", - "response": "A bus is driving down the street.", - "id": 24502 - }, - { - "image_path": "G:\\images\\combined\\000000002644_jpg.rf.972a0571773171046aa2a03c7f04ffcf.jpg", - "response": "A collage of black and white images. The top image is of a man wearing a black hat and black jacket standing in front of a fence. The second image is of a man sitting under a black umbrella. The third image is of a car driving down a street. The fourth image is of a parking lot with cars. The fifth image is of a man standing in front of a building.", - "id": 24503 - }, - { - "image_path": "G:\\images\\combined\\000000002658_jpg.rf.649076224870e1827c3da82dbb0b051b.jpg", - "response": "A collage of four different images. The first is a group of three people standing next to bicycles. The second is a close-up of a bicycle tire. The third is a black and white photo of a building. The fourth is a close-up of a bench with a black square over the middle of it.", - "id": 24504 - }, - { - "image_path": "G:\\images\\combined\\000000002658_jpg.rf.a81c22a4cdd2e7909cb8289677c22492.jpg", - "response": "A black and white photo of a group of people. In the center of the photo, a man is sitting on a forklift. To the left of the man is another man, wearing a white shirt with the word \"Natef\" on it. To the right of the man is another man wearing a black shirt. To the right of the man in the white shirt is a man wearing a black shirt with his sleeves rolled up. In the top left corner of the photo is a man wearing a black shirt. In the bottom right corner of the photo is a man wearing a black shirt.", - "id": 24505 - }, - { - "image_path": "G:\\images\\combined\\000000002658_jpg.rf.f225a7f7be21e7309f464720f6739327.jpg", - "response": "A black and white photo of a group of people. There are 6 people in total, 3 of which are in focus and 3 of which are out of focus. The 3 in focus are standing in front of a forklift truck. The out of focus people are standing behind the in focus people. There is a truck in the background on the right hand side.", - "id": 24506 - }, - { - "image_path": "G:\\images\\combined\\000000002664_jpg.rf.296c1f6e896522884492623f356b6198.jpg", - "response": "A black and white photo of a warehouse. There is a man standing in front of a pallet of boxes on a conveyor belt. Another man is unloading a pallet of boxes from a truck. There is a forklift in the foreground.", - "id": 24507 - }, - { - "image_path": "G:\\images\\combined\\000000002664_jpg.rf.b77ec207d54f91f3846459d1237d40c6.jpg", - "response": "A collage of 5 different black and white images. The first image is of a bicycle rack with 5 bikes locked to it. The second image is of a field with a house in the background. The third image is of a fence with a street sign in front of it. The fourth image is of a church with a clock tower. The fifth image is of a baseball field with a bench in the foreground.", - "id": 24508 - }, - { - "image_path": "G:\\images\\combined\\000000002664_jpg.rf.f5aa0ab426c1a53c9a6f603f72e60c77.jpg", - "response": "A black and white image of a warehouse with bicycles and boxes. There are two rows of bicycles stacked on top of each other and a stack of boxes. There are also some boxes with the fragile symbol on them.", - "id": 24509 - }, - { - "image_path": "G:\\images\\combined\\000000002672_jpg.rf.5aec37229831318042a9f2293df93699.jpg", - "response": "A black and white photo of a man in a white hat standing in front of a wooden pallet. The man is wearing a white hat and black shirt. There is a wooden pallet behind the man. To the right of the man is a sign that says \"THE COSMOPOLITAN OF LAS VEGAS\" in white letters on a black background. There is a white smiley face on the sign. To the left of the man is a square black box covering part of the image.", - "id": 24510 - }, - { - "image_path": "G:\\images\\combined\\000000002672_jpg.rf.6b4aec2d344dccc6a804b66026f3b138.jpg", - "response": "A collage of black and white images. In the top left corner, a man is on a ladder working on a roof. In the top right corner, a man is on a ladder working on a roof. In the bottom left corner, a man is standing next to a pallet of boxes. In the bottom right corner, a pallet of boxes is stacked on a pallet.", - "id": 24511 - }, - { - "image_path": "G:\\images\\combined\\000000002672_jpg.rf.a3a92a1015824d26b9e90f18b3e2077e.jpg", - "response": "A black and white image with different sections. In the top left section, a person is holding an umbrella. In the top right section, a person is holding a ladder. In the bottom left section, a tractor is parked in a garage. In the bottom right section, a person is standing in front of a building.", - "id": 24512 - }, - { - "image_path": "G:\\images\\combined\\000000002686_jpg.rf.0038e30dad4b62feaec797b0705403b5.jpg", - "response": "A black and white photo of a city street with a building on the right. There is a man in a suit walking down the street and another man in a suit on the right. There is a sign with kanji on it in the middle of the street. A hand is in the bottom left corner with a ring on the middle finger. A plate of food is in the bottom left corner with a fork on it. A fork is in the top left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is in the bottom left corner. A fork is in the top right corner. A fork is in the bottom right corner. A fork is in the top left corner. A fork is", - "id": 24513 - }, - { - "image_path": "G:\\images\\combined\\000000002686_jpg.rf.834a06009ef52584edd765f84a3ccbf2.jpg", - "response": "A collage of black and white photos of children playing sports and a woman smiling.", - "id": 24514 - }, - { - "image_path": "G:\\images\\combined\\000000002686_jpg.rf.94db49d970a7e4e2824079eaca42ba5d.jpg", - "response": "A black and white image of a man in a warehouse. He is sitting on a pallet and looking at a computer screen. There are several boxes stacked in the background.", - "id": 24515 - }, - { - "image_path": "G:\\images\\combined\\000000002687_jpg.rf.1582dd7bfe905203e4c9a967c71eca25.jpg", - "response": "A collage of photos including a man standing in front of a Kinema sign, a woman sitting in a car, a man sitting in a car, a man standing in front of a bus, and a man standing in front of a truck.", - "id": 24516 - }, - { - "image_path": "G:\\images\\combined\\000000002687_jpg.rf.3be75681e817d239b957ddff93a92eec.jpg", - "response": "A collage of black and white images. On the left is a black and white image of a person on a motorcycle. In the middle is a black and white image of a shelf with three boxes on it. On the right is a black and white image of a kitchen counter with a microwave and a window.", - "id": 24517 - }, - { - "image_path": "G:\\images\\combined\\000000002687_jpg.rf.e4bbf67251a1e8eb559a1cbf4e65d658.jpg", - "response": "A black and white collage of images including a person sitting at a table, a man speaking into a microphone, a building, and a sign.", - "id": 24518 - }, - { - "image_path": "G:\\images\\combined\\000000002691_jpg.rf.05d924d13067cf111a4824fed58f11c1.jpg", - "response": "A black and white image of a warehouse. There is a forklift in the middle of the image and a man sitting on it. There are also two women sitting at a table on the left side of the image. On the right side of the image there is a stack of pallets.", - "id": 24519 - }, - { - "image_path": "G:\\images\\combined\\000000002691_jpg.rf.a08ef28108c8ec5e2ddbcd6f3fcb703c.jpg", - "response": "A collage of black and white images of a man sitting at a desk, a man standing in front of a cross, and a man riding a bike.", - "id": 24520 - }, - { - "image_path": "G:\\images\\combined\\000000002691_jpg.rf.fc2f6d9a911b8c347133fe2374cda460.jpg", - "response": "A collage of different images. On the top right is a close up of a wooden pallet. Below that is a close up of a box. On the left is a black and white photo of a man sitting at a desk. On the bottom left is a black and white photo of a chair.", - "id": 24521 - }, - { - "image_path": "G:\\images\\combined\\000000002703_jpg.rf.0f5ef67f768c9db9d749f77b3b491183.jpg", - "response": " Collage(6,5),(993,994) of four images. The top image is a man in black shorts and black shirt sitting on a counter. The second image is a close up of the man's right hand holding a knife. The third image is a close up of the man's left hand holding a knife. The fourth image is a close up of the man's feet standing on a bed.", - "id": 24522 - }, - { - "image_path": "G:\\images\\combined\\000000002703_jpg.rf.15cb8e710214b88e2d3bb20b93df9e31.jpg", - "response": "A collage of images, including a person's knee, a group of children on skis, a group of people in a forest, and a person's knee.", - "id": 24523 - }, - { - "image_path": "G:\\images\\combined\\000000002703_jpg.rf.4fd06e47c655a346721df44f78489fe7.jpg", - "response": "A collage of images of a young boy in bed with boxes of medical equipment next to him.", - "id": 24524 - }, - { - "image_path": "G:\\images\\combined\\000000002732_jpg.rf.66378bdeee7c922441ce8461f4753a10.jpg", - "response": "A train on a track, a man in a suit, a fork lift, a person standing in a room, a man in a suit sitting in a chair.", - "id": 24525 - }, - { - "image_path": "G:\\images\\combined\\000000002732_jpg.rf.7973eb070b197ee81144b5d5864cd457.jpg", - "response": "A collage of black and white images. The top left image is of a train on a track. The top right image is of a person sitting on a bench. The bottom left image is of a person riding a horse. The bottom right image is of a person standing in front of a building with their arms raised.", - "id": 24526 - }, - { - "image_path": "G:\\images\\combined\\000000002732_jpg.rf.c30c585c8e6292fd164120e3a0314f72.jpg", - "response": "A black and white image of a warehouse with a man standing on a platform with a forklift. There are multiple boxes stacked on pallets and a person is using a forklift to move a pallet with boxes.", - "id": 24527 - }, - { - "image_path": "G:\\images\\combined\\000000002742_jpg.rf.12bbb5e60a8ac93f6ab0526b02f4d3f6.jpg", - "response": "A black and white collage of six different images. From top left, a pile of old and new mattresses, a woman in a hat holding a large umbrella, a forklift carrying a pallet of dishes, a pile of rugs on the ground, a woman in a black and white striped top, and a person holding a large bowl.", - "id": 24528 - }, - { - "image_path": "G:\\images\\combined\\000000002742_jpg.rf.4a3ad0d93ea96ccb1df8f88af99019d2.jpg", - "response": "A collage of black and white images of a man making pizza, a van, a man sitting under an umbrella, and a man standing in front of a shop.", - "id": 24529 - }, - { - "image_path": "G:\\images\\combined\\000000002742_jpg.rf.b63e8152dfff624b99061ab8146e4f56.jpg", - "response": "A black and white photo of a warehouse with boxes stacked on pallets.", - "id": 24530 - }, - { - "image_path": "G:\\images\\combined\\000000002752_jpg.rf.1f0ccf19d01fed4ee8cfdbe87131508d.jpg", - "response": "A black and white photo of a forklift with a box on top. There is a fence in the background and a person in the forklift.", - "id": 24531 - }, - { - "image_path": "G:\\images\\combined\\000000002752_jpg.rf.210ad205b73d2a06b3a61a25d11a15b8.jpg", - "response": "A black and white photo of a living room with a fireplace and a large window. There is a dining table with a bowl on it and a book on the table. A person is standing in the doorway with a suitcase. There is a guitar in the bottom left corner of the image.", - "id": 24532 - }, - { - "image_path": "G:\\images\\combined\\000000002752_jpg.rf.a3b7e3fdeeaec4ca6a10590a888b0c93.jpg", - "response": "The image is a black and white photo of a display of wooden beds. There are two people in the foreground, one of them is holding an umbrella. In the background there are several other people. The display includes a bed with a headboard and footboard made of wooden slats, and a curtain on the head of the bed. Another bed is placed next to it. The image is divided into four quadrants, the top left one shows a close up of the bed with the curtain, the top right one shows a close up of the footboard, the bottom left one shows a close up of the bed with the headboard, and the bottom right one shows a close up of the footboard.", - "id": 24533 - }, - { - "image_path": "G:\\images\\combined\\000000002754_jpg.rf.3cbf6c4231e88ab92d84d61aa191cbf8.jpg", - "response": "A collage of images. On the left, a dog looking out the window of a truck. In the middle, a person with a forklift. On the right, a person with a strap over their shoulder.", - "id": 24534 - }, - { - "image_path": "G:\\images\\combined\\000000002754_jpg.rf.8e2462c1b75ac9c3f2ddcf7c29fe2e29.jpg", - "response": "A collage of black and white images of students playing in the snow.", - "id": 24535 - }, - { - "image_path": "G:\\images\\combined\\000000002754_jpg.rf.f94071874419fbf27c9ca1d62caa1108.jpg", - "response": "A collage of images, including a dog looking out a car window, a fork lift truck, and a toy car.", - "id": 24536 - }, - { - "image_path": "G:\\images\\combined\\000000002758_jpg.rf.4620435c8c42543ed05fe6eeeca898a7.jpg", - "response": "A collage of images, including a person in a wetsuit jumping off a cliff, a box with a corner cut out, and a bus with the word Sweden on the back.", - "id": 24537 - }, - { - "image_path": "G:\\images\\combined\\000000002758_jpg.rf.5313ca671b057b002368e2d086f041b0.jpg", - "response": "A collage of two photos. The first is a black and white photo of a skateboarder performing a trick on a wall. The second is a black and white photo of a man walking through a doorway with a window in the background. There are also two refrigerators in the second photo.", - "id": 24538 - }, - { - "image_path": "G:\\images\\combined\\000000002758_jpg.rf.93f55f894e6232c088fa962b88ecf25f.jpg", - "response": "A collage of four different black and white images. The first is of a train on the tracks, the second is of a building, the third is of a parking garage and the fourth is of a building with many windows.", - "id": 24539 - }, - { - "image_path": "G:\\images\\combined\\000000002774_jpg.rf.3bdd9aea400541fe04aec3768e3f38ca.jpg", - "response": "A forklift driver lifting a pallet of boxes, a stack of boxes, and a shipping container.", - "id": 24540 - }, - { - "image_path": "G:\\images\\combined\\000000002774_jpg.rf.775f4fc233fb005898072cec8d7f24e7.jpg", - "response": "A collage of black and white images. On the left, a group of men in white t-shirts stand in a line, holding tennis rackets. In the middle, a man lies in bed, wearing a black sweater and black pants. On the right, a man stands in front of a table, holding a large knife. In the background, a bed is visible. On the left side of the bed, there is a black square covering part of a man's face. In the background, there is a pile of boxes.", - "id": 24541 - }, - { - "image_path": "G:\\images\\combined\\000000002774_jpg.rf.f82e676d9a912cfbdbbbe0ffecb625bf.jpg", - "response": "A collage of black and white images. The first is a black and white image of a man standing in a large room with wooden crates stacked on pallets. The second is a black and white image of a man standing in front of a forklift. The third is a black and white image of a forest with two tall pine trees. The fourth is a black and white image of a metal structure. The fifth is a black and white image of a man walking down a sidewalk.", - "id": 24542 - }, - { - "image_path": "G:\\images\\combined\\000000002782_jpg.rf.2a881fc28cc704589e60bfae97f75a93.jpg", - "response": "A collage of four black and white images. The first image is of two surfboards lying on the grass. The second image is of a car. The third image is of a person riding a horse. The fourth image is of a house.", - "id": 24543 - }, - { - "image_path": "G:\\images\\combined\\000000002782_jpg.rf.a5f58077b0d391a01bf3f38509930706.jpg", - "response": "A collage of images including a computer screen, a forklift and a building.", - "id": 24544 - }, - { - "image_path": "G:\\images\\combined\\000000002782_jpg.rf.e6b2425216ebf0cfc3cacab04e22623d.jpg", - "response": "A black and white photo of a room with a clock on the wall. There are several wooden pallets scattered around the room and a person standing in the background.", - "id": 24545 - }, - { - "image_path": "G:\\images\\combined\\000000002833_jpg.rf.d702a060463e2387311d98fe4cbd1e0b.jpg", - "response": "A man walking down the street with an umbrella.", - "id": 24546 - }, - { - "image_path": "G:\\images\\combined\\000000002839_jpg.rf.4e57518a5c8213526e84d1deec612035.jpg", - "response": "A black and white photo of a room with a couch, a table, a bookshelf, a window, and a door. A person is sitting on the couch, looking at the bookshelf. There are books on the bookshelf.", - "id": 24547 - }, - { - "image_path": "G:\\images\\combined\\000000002839_jpg.rf.5201d9aa609754e1d8ca816c58fa8d22.jpg", - "response": "A collage of images including a giraffe, a man and a woman, a truck, and a large tank.", - "id": 24548 - }, - { - "image_path": "G:\\images\\combined\\000000002839_jpg.rf.5b1f80288b78f8125d4ac29f42873eb6.jpg", - "response": "A collage of images, including a close-up of a baby's face, a black and white photo of a street scene, a woman pushing a stroller, and a man walking.", - "id": 24549 - }, - { - "image_path": "G:\\images\\combined\\000000002842_jpg.rf.3790a9f876169bccf52e3fc6dffa5cd2.jpg", - "response": "A collage of different photos. In the top left photo a person is holding a tennis racket. In the top right photo a person is holding a tennis racket in a room. In the bottom left photo a person is standing in front of a store. In the bottom right photo a car is driving down the street.", - "id": 24550 - }, - { - "image_path": "G:\\images\\combined\\000000002842_jpg.rf.93df9e493e9ab8f5626f0a0ed1f96b97.jpg", - "response": "A collage of four black and white images. In the first image, a man is standing in a warehouse with his arms outstretched, holding a box with a black square over his face. In the second image, a man is pulling a pallet truck. In the third image, a man is standing on a pallet truck. In the fourth image, a man is holding a box with a black square over his face. There are also several boxes and a chair in the warehouse.", - "id": 24551 - }, - { - "image_path": "G:\\images\\combined\\000000002842_jpg.rf.cbf73028e0ee69f73c93331ab1080c9c.jpg", - "response": "A collage of black and white images of tennis players, ball boys and ball girls, and spectators.", - "id": 24552 - }, - { - "image_path": "G:\\images\\combined\\000000002860_jpg.rf.11f9d2f7a242b4ec59c4a8e6dbef5610.jpg", - "response": "A collage of images, including a car, a person, a cat, and a hand truck.", - "id": 24553 - }, - { - "image_path": "G:\\images\\combined\\000000002860_jpg.rf.661a56bea9b7dc1a28c2c8b75b9ccd19.jpg", - "response": "A collage of 4 different images. The first one is of a car on a road. The second one is of a donkey pulling a cart. The third one is of a person on a snowmobile. The fourth one is of a blurry image of water.", - "id": 24554 - }, - { - "image_path": "G:\\images\\combined\\000000002860_jpg.rf.ca3905e5daff8a8bf9266d580ddd8378.jpg", - "response": "A collage of images. The top left image is of a bicycle propped up on a stand. The top right image is of a wooden box. The bottom left image is of a man sitting under an umbrella. The bottom right image is of a person holding a large sheet of paper.", - "id": 24555 - }, - { - "image_path": "G:\\images\\combined\\000000002867_jpg.rf.3613ebed522891e9872b67803a178135.jpg", - "response": "A black and white collage of images. Top left: a man standing on a ladder in a room with wood floors and a white wall. Top right: a bookshelf with many books. Bottom left: a man wearing a hat and holding a camera. Bottom right: a kitchen with white cabinets, a window, and a ceiling light.", - "id": 24556 - }, - { - "image_path": "G:\\images\\combined\\000000002867_jpg.rf.5a1021d9786d6787c965b32468848722.jpg", - "response": "A collage of black and white images. The top left image is of a person holding a camera and wearing a hat. The top right image is of a mountain. The bottom left image is of a pile of bricks. The bottom right image is of a field with a net.", - "id": 24557 - }, - { - "image_path": "G:\\images\\combined\\000000002867_jpg.rf.f0b9eb4ea230f558d06689d48d1a2dac.jpg", - "response": "A collage of black and white images of students skiing and snowboarding.", - "id": 24558 - }, - { - "image_path": "G:\\images\\combined\\000000002881_jpg.rf.66746f8bdb09e3028730c498ccfecbdf.jpg", - "response": "A black and white image of a man in a warehouse. He is standing next to a pallet of boxes, and is sitting on a step ladder. There are other people in the warehouse, but they are obscured by the man in the foreground.", - "id": 24559 - }, - { - "image_path": "G:\\images\\combined\\000000002881_jpg.rf.91afd1b0a6d8caf89d183661a50d667c.jpg", - "response": "A black and white image of a stack of pallets.", - "id": 24560 - }, - { - "image_path": "G:\\images\\combined\\000000002881_jpg.rf.a37796c1f3c528ab8927e8c59cea670b.jpg", - "response": "A black and white collage of images. The top left image is of a windmill. The top right image is of a field with hay bales. The bottom left image is of a truck driving down a road. The bottom center image is of a forklift. The bottom right image is of a wet sidewalk.", - "id": 24561 - }, - { - "image_path": "G:\\images\\combined\\000000002890_jpg.rf.26f009177e7e2d921d94c23ee0b4d556.jpg", - "response": "A collage of four photos. The top left photo is a person wearing skis in the snow. The top right photo is an outline of a fire pit. The bottom left photo is a person sitting on a bench with a cat. The bottom right photo is a van parked on the street.", - "id": 24562 - }, - { - "image_path": "G:\\images\\combined\\000000002890_jpg.rf.cc1c59ab2dc1e3f78e572c6534058ca8.jpg", - "response": "A collage of 5 photos. In the first one, a woman and a child are walking in the snow with backpacks. In the second one, a child is running in the snow with skis. In the third one, a woman is holding a kite in the air. In the fourth one, a woman is walking in the snow with a suitcase. In the fifth one, a woman is playing with a dog in the snow.", - "id": 24563 - }, - { - "image_path": "G:\\images\\combined\\000000002890_jpg.rf.d359221fdc9746cc13786e532257fbc3.jpg", - "response": "A collage of black and white photos of people skiing and snowshoeing.", - "id": 24564 - }, - { - "image_path": "G:\\images\\combined\\000000002892_jpg.rf.4e3c74b0472527a7777ac2e65c4cd762.jpg", - "response": "A black and white image of a person holding a cat. The person is wearing a grey shirt and is standing in front of a truck. There is a handbag on the ground next to the person. The person is also holding a cell phone. There is a car in the background on the left side of the image.", - "id": 24565 - }, - { - "image_path": "G:\\images\\combined\\000000002892_jpg.rf.b356913dc6f3b054ec1947af4d2bebca.jpg", - "response": "A collage of images. On the left is a close up of a hand holding a pallet. In the middle is a stack of pallets. On the right is a man standing on a pallet truck in a warehouse.", - "id": 24566 - }, - { - "image_path": "G:\\images\\combined\\000000002892_jpg.rf.c48d6f216c57ebdb8c4e38e5caf912d5.jpg", - "response": "A black and white photo of a person holding a half eaten ice cream bar. The photo is split into 4 quadrants. In the top left quadrant, a person is holding an ice cream bar. In the top right quadrant, a forklift is driving through a warehouse. In the bottom left quadrant, a person is holding a cell phone. In the bottom right quadrant, a man is driving a forklift.", - "id": 24567 - }, - { - "image_path": "G:\\images\\combined\\000000002896_jpg.rf.6946a581d9233648e43d57dc8219293f.jpg", - "response": "A giraffe leaning over a woman's head to get a better look at her.", - "id": 24568 - }, - { - "image_path": "G:\\images\\combined\\000000002907_jpg.rf.1fee2b57a4e08ebf0d4f6ad1a4ac0379.jpg", - "response": "A collage of images including a man in a grass field, boxes stacked on a pallet, and a kitchen.", - "id": 24569 - }, - { - "image_path": "G:\\images\\combined\\000000002907_jpg.rf.a736b0692a3dafbdadf4e54ddbef7dd1.jpg", - "response": "A collage of images. On the left is a black and white photo of a man in a white shirt and black shorts running in a field. He is also wearing a hat. On the right is a screen with three white boxes on it. The first box has three black arrows pointing up. The second box has a black arrow pointing right. The third box has a black arrow pointing down. The top of a table is visible in the bottom right corner.", - "id": 24570 - }, - { - "image_path": "G:\\images\\combined\\000000002907_jpg.rf.f6a203efefbe38b1b119ea01c93ef1dd.jpg", - "response": "A black and white image of a pallet of boxes with a black square over the top. To the left of the image there is a black and white image of a group of children playing frisbee in a yard.", - "id": 24571 - }, - { - "image_path": "G:\\images\\combined\\000000002951_jpg.rf.17b6aed647671e97a358f5c6571688f4.jpg", - "response": "A man pushing a cart with boxes on it.", - "id": 24572 - }, - { - "image_path": "G:\\images\\combined\\000000002951_jpg.rf.2c3cf5b273878203d05981ce32c9587f.jpg", - "response": "A collage of black and white images. On the left is a close up of a pile of delivery boxes with a sign that says \"no parking\" above them. In the middle is a black and white photo of a street scene with a group of people walking down the street. On the right is a black and white photo of a building with many windows.", - "id": 24573 - }, - { - "image_path": "G:\\images\\combined\\000000002951_jpg.rf.77b826bb5eec23f79fa110761de639e2.jpg", - "response": "A collage of 5 black and white images. 1) A forklift parked in front of a building. 2) A man working on a sign. 3) A fire hydrant. 4) A store front. 5) A man working on a sign.", - "id": 24574 - }, - { - "image_path": "G:\\images\\combined\\000000002963_jpg.rf.12d3b85c3767d1b5c28a4d5ad9e4c4c4.jpg", - "response": "A collage of four black and white images. In the top left image, a man is throwing a rock into the air. In the top right image, a man is sitting in the back of a small car. In the bottom left image, a man is walking towards a truck. In the bottom right image, a man is sitting on the ground in front of a wall.", - "id": 24575 - }, - { - "image_path": "G:\\images\\combined\\000000002963_jpg.rf.cd940533a9f3d12e693d3a5b0ef15025.jpg", - "response": "A black and white image with four different sections. The top left is of a hot air balloon, the top right is of a surfboard, the bottom left is of a building, and the bottom right is of a bench.", - "id": 24576 - }, - { - "image_path": "G:\\images\\combined\\000000002963_jpg.rf.d58b6c0c043b0b8fe1afd1a454ea3df6.jpg", - "response": "A collage of images. The top left image is a man holding a kite string and looking up at a kite in the sky. The top right image is a close up of a wall with many signs on it. The bottom left image is a close up of two people standing side by side, both wearing white shirts and black shorts with the word \"Wangetti\" on them. The bottom right image is a close up of a sign with a hand pointing to a box with the words \"Pay here\" on it.", - "id": 24577 - }, - { - "image_path": "G:\\images\\combined\\000000002983_jpg.rf.ac2324e3c1960b697b647a6a3091ee59.jpg", - "response": "A collage of images. Top left: a man and woman in a parking garage. Top right: a door with windows. Middle left: a wooden bench. Middle right: a group of people walking. Bottom: a wooden bench.", - "id": 24578 - }, - { - "image_path": "G:\\images\\combined\\000000002983_jpg.rf.cb4ddae7d05eaa85f38f07371b965efa.jpg", - "response": "A collage of four different images. The first is a woman with long hair and a beanie hat. The second is a train on tracks. The third is a pile of packages. The fourth is a tunnel with a train coming out of it.", - "id": 24579 - }, - { - "image_path": "G:\\images\\combined\\000000002983_jpg.rf.fa760ff66942cd8c2fe67308727d369b.jpg", - "response": "A collage of images including a person holding a cell phone, a forklift, boxes, and a person standing in front of a building.", - "id": 24580 - }, - { - "image_path": "G:\\images\\combined\\000000002985_jpg.rf.76e9d567d114f472b0d204507349a7b2.jpg", - "response": "A collage of images including a black and white image of a person standing in front of a tree, a black and white image of a building with a solar panel, a black and white image of a person standing in front of a pile of boxes, and a black and white image of a person standing in front of a pile of blocks.", - "id": 24581 - }, - { - "image_path": "G:\\images\\combined\\000000002985_jpg.rf.85e3f97b825a619a42cbdeb28b2bf2cf.jpg", - "response": "A collage of images including a little girl in bed, a truck, boxes, and people.", - "id": 24582 - }, - { - "image_path": "G:\\images\\combined\\000000002985_jpg.rf.b7e316c2f5d89051b81dec7d575567db.jpg", - "response": "A collage of four black and white images. The first image is of a forrest with a small box in the bottom left corner. The second image is of a fork lift carrying a pallet of boxes. The third image is of a person standing in a warehouse. The fourth image is of a person standing on a pallet of boxes in a warehouse.", - "id": 24583 - }, - { - "image_path": "G:\\images\\combined\\000000002988_jpg.rf.6e40be8d74c2c929c775d143634a1532.jpg", - "response": "A black and white photo of a car in front of a tall monument with a clock on top. The car is a jeep and is in front of the monument. There are trees in the background.", - "id": 24584 - }, - { - "image_path": "G:\\images\\combined\\000000002988_jpg.rf.90d197ee8bd3e5e34e96200e7a10ac52.jpg", - "response": "A collage of four photos. In the top left photo, a white cat with black spots is sleeping on a black chair. In the top right photo, a person is using a vacuum cleaner. In the bottom left photo, a horse is eating from a bowl on a table. In the bottom right photo, a person is sitting on a horse.", - "id": 24585 - }, - { - "image_path": "G:\\images\\combined\\000000002988_jpg.rf.e92f7cf2825600c6887cb09f09736dea.jpg", - "response": "A collage of black and white images. In the top left image, a cat is sitting on the arm of a chair. In the top right image, a cat is sleeping on the floor. In the bottom left image, a person is standing in front of a bookshelf. In the bottom right image, a person is walking down a hallway.", - "id": 24586 - }, - { - "image_path": "G:\\images\\combined\\000000002992_jpg.rf.80acb9ad5b0621f5279a7a8f01b10cae.jpg", - "response": "A collage of images, including a baby, a woman in a dress, a truck, and some pallets.", - "id": 24587 - }, - { - "image_path": "G:\\images\\combined\\000000002992_jpg.rf.dc8d22ca38dddfd697c3588d502f0d0a.jpg", - "response": "A collage of images, including a baby, a kite, a window, a person's arm, a black square, and a bird.", - "id": 24588 - }, - { - "image_path": "G:\\images\\combined\\000000002992_jpg.rf.e465f242365c566c62103de908e43e16.jpg", - "response": "A collage of photos of a baby and a living room.", - "id": 24589 - }, - { - "image_path": "G:\\images\\combined\\000000002998_jpg.rf.5dbcdc9962c4613075e0c83f5788f877.jpg", - "response": "A collage of black and white images. There is a street scene with a one way sign, a forklift, and a building. There are also two boxes on a pallet and a man walking down the street.", - "id": 24590 - }, - { - "image_path": "G:\\images\\combined\\000000002998_jpg.rf.6f8481a1ee0af9378cc1e3ac79f53ec0.jpg", - "response": "A collage of images including a street sign, a fork lift truck, a pallet and boxes.", - "id": 24591 - }, - { - "image_path": "G:\\images\\combined\\000000002998_jpg.rf.81d88cca86adea8c9056e2c22b3c8742.jpg", - "response": "A black and white photo of a street. There is a person skateboarding on the street. There is a person walking on the street. There is a person sitting on a wall. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on the street. There is a person walking on", - "id": 24592 - }, - { - "image_path": "G:\\images\\combined\\000000003000_jpg.rf.dd64c724a1ead862c6bad67dd0981905.jpg", - "response": "A person(5,174),(993,996) holding a wii remote and a sock", - "id": 24593 - }, - { - "image_path": "G:\\images\\combined\\000000003001_jpg.rf.24bf4278530c2efafa16b5b970d45682.jpg", - "response": "A black and white photo of a factory. There are wooden pallets stacked up in the background. In the foreground, a person is holding a shrimp on a cutting board. Another person is visible in the top left corner of the image. There is a machine in the bottom left corner of the image. There are two black squares in the bottom left corner.", - "id": 24594 - }, - { - "image_path": "G:\\images\\combined\\000000003001_jpg.rf.b170e0685fd43445715e703cc8e0ca34.jpg", - "response": "A black and white image with a variety of images cut out and pasted on it. There are images of donuts, a handbag, a person in a suit, a person walking, a person holding a handbag, a window, and a person walking.", - "id": 24595 - }, - { - "image_path": "G:\\images\\combined\\000000003001_jpg.rf.c1c48712f30013c08b96b682fb1e47ad.jpg", - "response": "A collage of black and white images showing various scenes. In the top left image, a person is lying on the floor with their hands folded in front of them. In the top right image, a person is holding a cake. In the top middle image, a person is holding a doughnut. In the top right corner, a person is standing in front of a wall with a Coca-Cola logo. In the bottom left image, a person is lying on the floor with their hands behind their back. In the bottom middle image, a person is sitting in a chair with a cake on a plate in front of them. In the bottom right image, a person is standing in front of a wall with a sign that says \"The Best Room in the World\".", - "id": 24596 - }, - { - "image_path": "G:\\images\\combined\\000000003008_jpg.rf.6320f10954e5ca193d7d720de9a7994c.jpg", - "response": "A collage of black and white images. The top image is of a woman with a ponytail and a white shirt, she is holding a cell phone. The second image is of a man in a suit and tie. The third image is of a woman holding a cell phone. The fourth image is of a pallet jack. The fifth image is of a woman standing in front of a door. The sixth image is of a man standing in front of a door. The seventh image is of a woman standing in front of a door. The eighth image is of a man standing in front of a door. The ninth image is of a man standing in front of a door. The tenth image is of a pallet. The eleventh image is of a pallet. The twelfth image is of a pallet. The thirteenth image is of a pallet. The fourteenth image is of a pallet. The fifteenth image is of a pallet. The sixteenth image is of a pallet. The seventeenth image is of a pallet. The eighteenth image is of a pallet. The nineteenth image is of a pallet. The twentieth image is of a pallet.", - "id": 24597 - }, - { - "image_path": "G:\\images\\combined\\000000003008_jpg.rf.ce1119fc919afd32726f11d72ed602ac.jpg", - "response": "A collage of 4 images. The first is a black and white image of a girl looking at the camera. The second is a close up of a stack of wooden pallets. The third is a close up of a wooden floor. The fourth is a close up of a wooden bench.", - "id": 24598 - }, - { - "image_path": "G:\\images\\combined\\000000003008_jpg.rf.f2b249996225726000a355fe58e4cd7b.jpg", - "response": "A black and white image of a warehouse. There is a man sitting in a forklift truck in the middle of the image. He is wearing a cap and a white t-shirt. Next to him is a woman standing with her back to the camera. She is wearing a dress and has her hair in a ponytail. In front of them is a pallet of boxes. To the left of the image is a person's hand holding a box. Above them is another person's hand holding a box. On the right side of the image is another person's hand holding a box. Above them is another person's hand holding a box.", - "id": 24599 - }, - { - "image_path": "G:\\images\\combined\\000000003035_jpg.rf.585bc285318ae5161173304d4011041a.jpg", - "response": "A black and white image showing four different scenes. The top left image shows a plane on the tarmac, the top right image shows a person walking on a wooden floor, the bottom left image shows a man standing in front of a window, and the bottom right image shows a room filled with boxes.", - "id": 24600 - }, - { - "image_path": "G:\\images\\combined\\000000003035_jpg.rf.7e2569a898a3791b93bd699aae44f2dc.jpg", - "response": "A stack of wooden pallets.", - "id": 24601 - }, - { - "image_path": "G:\\images\\combined\\000000003035_jpg.rf.f3615d779650f57363e4df2760afa32f.jpg", - "response": "A collage of black and white images. The first is a man with a backpack standing on a rocky outcropping with a camera. The second is a man sitting under an umbrella in a park with a backpack and a suitcase. The third is a man standing in front of a shipping container with a suitcase. The fourth is a man sitting under an umbrella in a park with a suitcase. The fifth is a suitcase with a black square over it.", - "id": 24602 - }, - { - "image_path": "G:\\images\\combined\\000000003048_jpg.rf.179f221a5d016b2772fb839621bcb623.jpg", - "response": "A collage of four photos. The first is a close-up of a baby's face with the baby's face blacked out. The second is a close-up of a teddy bear. The third is a black and white photo of a baby in a stroller. The fourth is a black and white photo of a truck.", - "id": 24603 - }, - { - "image_path": "G:\\images\\combined\\000000003048_jpg.rf.18f781ebc9b42f5cd94ee3d090d3ef36.jpg", - "response": "A collage of images including a baby, a teddy bear, a bus, a window, and a building.", - "id": 24604 - }, - { - "image_path": "G:\\images\\combined\\000000003048_jpg.rf.7973bb6bab825c6f17d4c385229b7bff.jpg", - "response": "A collage of a teddy bear and a group of boys playing frisbee in a field.", - "id": 24605 - }, - { - "image_path": "G:\\images\\combined\\000000003076_jpg.rf.16a46648ba1585a920976d1363a77ec6.jpg", - "response": "A black and white photo of a collage of four photos. In the first photo, a man is sitting on a bench with a pigeon on his arm. In the second photo, a man is sitting on a bench with a dog on his lap. In the third photo, a man is walking with a bicycle. In the fourth photo, a man is pushing a cart of boxes.", - "id": 24606 - }, - { - "image_path": "G:\\images\\combined\\000000003076_jpg.rf.8087300e888432602c149ede05d1797b.jpg", - "response": "A collage of black and white photos. The top left photo is of a group of people walking on a boardwalk with a bus in the background. The top right photo is of a man wearing a shirt that says \"Cleveland Rocks\". The bottom left photo is of a man standing on a bus with a sign that says \"Big Bus Tours\". The bottom right photo is of a group of people playing in the water at a beach.", - "id": 24607 - }, - { - "image_path": "G:\\images\\combined\\000000003076_jpg.rf.d8015755b5d7e3bdbf6f1e439e2a3dac.jpg", - "response": "A collage of images including a dog pulling a sled, a street, and boxes.", - "id": 24608 - }, - { - "image_path": "G:\\images\\combined\\000000003077_jpg.rf.017300876586dee7b62d59e18ac203b0.jpg", - "response": "A group of men standing on some steps.", - "id": 24609 - }, - { - "image_path": "G:\\images\\combined\\000000003091_jpg.rf.d0819dd62562b3d35753bc0cfbcf0008.jpg", - "response": "A plate with a chocolate cake on it.", - "id": 24610 - }, - { - "image_path": "G:\\images\\combined\\000000003103_jpg.rf.19226e72cb39cf7e5f0a018dfeb3d003.jpg", - "response": "A black and white photo of a skateboarder performing a trick on a ramp. The skater is in the process of jumping off the ramp with his skateboard. The ramp is located on the left side of the image and the skater is in the middle of the image. The skateboard is in the air and the skater is wearing a white shirt and black pants. The ramp is made of wood and has a curved top. The skater is wearing a helmet and is in motion. The background is blurry and there are no other people visible in the image.", - "id": 24611 - }, - { - "image_path": "G:\\images\\combined\\000000003103_jpg.rf.46ac855de0a55e0bcd563e41dd43ae83.jpg", - "response": "A collage of 4 images. The first is a black and white image of a man in a black shirt and white shorts skateboarding on a ramp. The second is a black and white image of a man in a black shirt and white shorts working on a bicycle. The third is a black and white image of a row of bicycles in a rack. The fourth is a black and white image of a bench with a bicycle propped up against it.", - "id": 24612 - }, - { - "image_path": "G:\\images\\combined\\000000003103_jpg.rf.7f2d0bdbe82873c85064974cc8210449.jpg", - "response": "A collage of images. The top left image is a man in a white shirt and black pants, wearing a helmet and knee pads, holding a skateboard. The top right image is a close up of a wooden table. The bottom left image is a close up of a box with the corner cut off. The bottom right image is a flock of birds flying in the sky.", - "id": 24613 - }, - { - "image_path": "G:\\images\\combined\\000000003109_jpg.rf.001a8f98dc604062f405d5dfbe9682af.jpg", - "response": "A collage of black and white images of wooden structures. There are three images of wooden benches, one with a view of trees in the background, one of a wooden fence, and one of a wooden bench. There is also a picture of a wooden door with a lantern hanging on it, and a picture of a wooden structure with a window.", - "id": 24614 - }, - { - "image_path": "G:\\images\\combined\\000000003109_jpg.rf.13c7dae10158876c413bed62d9914fde.jpg", - "response": "A black and white image of a snowy outdoor kitchen. The kitchen has a large window and a black umbrella over a table with a bowl of food. A refrigerator is sitting outside in the snow. There are several boxes stacked up outside the kitchen.", - "id": 24615 - }, - { - "image_path": "G:\\images\\combined\\000000003109_jpg.rf.87aae80599f4f8b3e7c4fcd81a0aee70.jpg", - "response": "A black and white photo of a man walking past a stack of wooden pallets. The man is wearing a black hoodie and is walking away from the camera. The pallets are stacked on top of each other and are made of wood. The background includes a building and a road.", - "id": 24616 - }, - { - "image_path": "G:\\images\\combined\\000000003125_jpg.rf.2b4d60f984608605c2221f7694b9f169.jpg", - "response": " A white van(3,3),(770,545) is parked on a driveway.", - "id": 24617 - }, - { - "image_path": "G:\\images\\combined\\000000003125_jpg.rf.370dfa596d4eb6b0344db727dadd51af.jpg", - "response": "A collage of black and white images of a shipping yard. There are images of a truck, a person standing on a pallet, a stack of pallets, and a shipping container.", - "id": 24618 - }, - { - "image_path": "G:\\images\\combined\\000000003125_jpg.rf.f8aaaf715a07dffd6b4d89b50636d074.jpg", - "response": "A collage of black and white images. The top left image is of a white van. The top right image is of a shopping cart. The bottom left image is of pallets stacked on top of each other. The bottom right image is of a group of people standing on a beach.", - "id": 24619 - }, - { - "image_path": "G:\\images\\combined\\000000003134_jpg.rf.29c379a620c308897b2f180288c20516.jpg", - "response": "A collage of black and white images of a city street.", - "id": 24620 - }, - { - "image_path": "G:\\images\\combined\\000000003134_jpg.rf.3be47d5cf53c9999111c73c2629d0868.jpg", - "response": "A black and white photo of a person jumping in front of a bus. The person is wearing a hat and a skirt. The bus is white with the words \"25 PRIME\" on the top left corner and \"Transit\" on the bottom left corner. There are two traffic lights in the background. There are also two birds flying in the sky.", - "id": 24621 - }, - { - "image_path": "G:\\images\\combined\\000000003134_jpg.rf.e1810b086660590154acb981bf76e6fb.jpg", - "response": "A collage of black and white images. The top left image is of a bus driving down a street. The top right image is of a person holding a camera. The bottom left image is of a forklift. The bottom right image is of a chair.", - "id": 24622 - }, - { - "image_path": "G:\\images\\combined\\000000003145_jpg.rf.1f948b1b7d4ab92d5ebbe737ffd26912.jpg", - "response": "A black and white photo of a motorcycle with a room in the background. The motorcycle is on the right side of the photo and the room is on the left. The motorcycle is on the top half of the photo and the room is on the bottom half. The motorcycle is in the center of the photo and the room is to the left. There are three people in the room, one in the center, one on the left, and one on the right. There is a TV on the left side of the room and a couch on the right side of the room. There are three pictures on the wall above the couch. The pictures are of different sizes and shapes. There is a person standing in front of the TV and a person standing in front of the couch. There are two chairs in the room, one on the left side of the room and one on the right side of the room. There are two books on the left side of the room and two books on the right side of the room. There is a table in the center of the room and a mirror on the left side of the room. There are two bottles on the left side of the room and two bottles on the right side of the room. There is a bowl on the left side of the room and a bowl on the right side of the room. There is a clock on the left side of the room and a clock on the right side of the room. There is a couch on the left side of the room and a couch on the right side of the room. There is a chair on the left side of the room and a chair on the right side of the room. There is a table on the left side of the room and a table on the right side of the room. There is a mirror on the left side of the room and a mirror on the right side of the room. There is a couch on the left side of the room and a couch on the right side of the room. There is a chair on the left side of the room and a chair on the right side of the room. There is a table on the left side of the room and a table on the right side of the room. There is a mirror on the left side of the room and a mirror on the right side of the room. There is a couch on the left side of the room and a couch on the right side of the room. There is a chair on the left side of the room and a chair on the right side of the room. There", - "id": 24623 - }, - { - "image_path": "G:\\images\\combined\\000000003145_jpg.rf.3bf3d9685c05a18ca9e4b17cb9b3d3e1.jpg", - "response": "A living room with a couch, a chair, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup, a bowl, a chair, a couch, a lamp, a window, a counter, a sink, a stove, a microwave, a refrigerator, a bottle, a cup, a bowl, a vase, a picture, a bottle, a cup,", - "id": 24624 - }, - { - "image_path": "G:\\images\\combined\\000000003145_jpg.rf.5e1ea013437c9c3f12f3e80066ce3f8a.jpg", - "response": "A black and white photo of a living room with a ceiling fan. There is a TV on the wall and a dining table with chairs. There are multiple people in the room.", - "id": 24625 - }, - { - "image_path": "G:\\images\\combined\\000000003148_jpg.rf.47dcc0e57d83718f609367989f5dbfa5.jpg", - "response": "A collage of images including a brick wall, a person wearing skis, a person walking down a snow-covered sidewalk, and a person carrying a box.", - "id": 24626 - }, - { - "image_path": "G:\\images\\combined\\000000003148_jpg.rf.74843a9eaa74ebf95e1847f370f665cd.jpg", - "response": "A black and white photo of a warehouse with a man on a forklift moving pallets of boxes.", - "id": 24627 - }, - { - "image_path": "G:\\images\\combined\\000000003148_jpg.rf.fbb036b6eb4827df0f9cacc87370fd24.jpg", - "response": "A black and white image of a collage of images. There is a woman with a large breast in a black top with a black censor bar over her breast. There is a man with a mustache sitting on a forklift. There is a man in a black shirt and jeans sitting on a motorcycle. There is a brick building with a door and a window. There is a door with a window. There is a wall of glass bottles.", - "id": 24628 - }, - { - "image_path": "G:\\images\\combined\\000000003157_jpg.rf.4102394e10f1a13b3ee00cd98a9d8825.jpg", - "response": "A man wearing a nike tank top and wrist bands is working out with a barbell.", - "id": 24629 - }, - { - "image_path": "G:\\images\\combined\\000000003157_jpg.rf.8195d123acda4bc612b4597414dc5be3.jpg", - "response": "A collage of images including a tennis racket, boxes, a bed and a person wearing a wristband.", - "id": 24630 - }, - { - "image_path": "G:\\images\\combined\\000000003157_jpg.rf.afa80628b4961f4c0b4a769b500fd4df.jpg", - "response": "A collage of images including a man in a forklift, a man with a tennis racket, and a man standing next to a box.", - "id": 24631 - }, - { - "image_path": "G:\\images\\combined\\000000003160_jpg.rf.8f644215b81aedf0c93a2b2ab680d2c8.jpg", - "response": "A collage of photos of a man and a woman. The woman is sitting at a table with a plate of food and a wine glass. The man is sitting next to her. They are both looking at the camera. There is a book on the table. There is a tree in the background. There are two people in the background. There is a car in the background. There is a house in the background.", - "id": 24632 - }, - { - "image_path": "G:\\images\\combined\\000000003160_jpg.rf.af46dcdc7e6a5b8941c521b7adda6fb5.jpg", - "response": "A black and white photo of a street scene. There is a man standing on the left, wearing a black coat and hat. He is looking to the right. There is a chair on the right, in front of a wall. There is a bicycle on the left, with a basket on the front. In the background there is a tree, and a building. There are two traffic lights, one on the left and one on the right. There are two suitcases in the middle of the image.", - "id": 24633 - }, - { - "image_path": "G:\\images\\combined\\000000003160_jpg.rf.c60fc156458d03a570c8c166d6501cb8.jpg", - "response": "A black and white photo of a city street with a tree and a person riding a bicycle. There are many signs on the buildings and a car is driving down the street.", - "id": 24634 - }, - { - "image_path": "G:\\images\\combined\\000000003209_jpg.rf.4ff5d4248d252d748625ab11df519a3c.jpg", - "response": "A collage of black and white images. On the left is a horse with a person on its back. In the middle is a stack of dishes. On the right is a person holding a camera.", - "id": 24635 - }, - { - "image_path": "G:\\images\\combined\\000000003209_jpg.rf.7504c94d1d3c37f62d9d225a7bf31d6f.jpg", - "response": "A black and white collage of images. On the left is a man in a suit walking across snow. In the middle is a forklift in a warehouse. On the right is a conveyor belt with boxes on it.", - "id": 24636 - }, - { - "image_path": "G:\\images\\combined\\000000003209_jpg.rf.bff67fae6984e1771542f6246ddcf7b8.jpg", - "response": "A collage of four black and white images. The top left image shows a horse with a saddle on, the top right image shows a car driving down a road, the bottom left image shows a pan of food on a stove, and the bottom right image shows a person cutting up food on a cutting board.", - "id": 24637 - }, - { - "image_path": "G:\\images\\combined\\000000003220_jpg.rf.1e1d75d4da6843d05f07ae09887bca35.jpg", - "response": "A black and white image of a street with a truck on the left, a man on the right, and a group of people walking in the middle. There are also a few small children scattered around the street. The image is also distorted with some parts blurred out.", - "id": 24638 - }, - { - "image_path": "G:\\images\\combined\\000000003220_jpg.rf.6b9a5e01c44fbfdbfbe5db1a396043e0.jpg", - "response": "A collage of black and white images, including a truck, a surfer, a person pushing a cart, and a person sitting on a curb.", - "id": 24639 - }, - { - "image_path": "G:\\images\\combined\\000000003220_jpg.rf.b450826149cb9aa6ca2d5cec8f39f0fe.jpg", - "response": "A tennis match is shown in black and white. The image is split into three sections. The top section shows a tennis match in progress with two players, one holding a tennis racket, and a crowd of people in the stands. The middle section is a close-up of a chair. The bottom section is a close-up of a wooden pallet.", - "id": 24640 - }, - { - "image_path": "G:\\images\\combined\\000000003225_jpg.rf.36de1fe45d8a6b2d9829ea57c84694dc.jpg", - "response": "A collage of black and white images. There is a woman wearing a fur lined hooded jacket, a man sitting on a bench, a person holding a handbag, a building with a sign that says \"title,\" a man riding a motorcycle, a woman walking in front of a building, and a person walking in the street.", - "id": 24641 - }, - { - "image_path": "G:\\images\\combined\\000000003225_jpg.rf.997481f1a9dffacfda3163d2f192ecc4.jpg", - "response": "A black and white image of a man holding a box. The box is made of wood and is sitting on a pallet. The man is holding the box in front of a truck. The truck is a dark color and has a ladder on the side. There is a smaller box on the ground next to the pallet.", - "id": 24642 - }, - { - "image_path": "G:\\images\\combined\\000000003225_jpg.rf.ba8a17622da91fd13ff05b9e0f2ec5a4.jpg", - "response": "A collage of four different images. In the top left image, a close-up of a cat's face is shown. In the top right image, a forklift is shown in motion. The bottom left image shows a man sitting on a forklift. The bottom right image shows a man in front of a forklift.", - "id": 24643 - }, - { - "image_path": "G:\\images\\combined\\000000003236_jpg.rf.76f497d6102054d4bc91a52dad90dd4d.jpg", - "response": "The image is a black and white photograph of a group of people in a sitting room. There is a man standing in the room, holding a book and a pair of glasses. He is wearing a tie and a waistcoat. There is a woman sitting on a sofa in the room, holding a book. There are several other people sitting in the room, in armchairs and on the floor. They are all looking at the man standing.", - "id": 24644 - }, - { - "image_path": "G:\\images\\combined\\000000003242_jpg.rf.96f86f746630771b3bd8ce7b09d73533.jpg", - "response": "A collage of black and white images. There is a man standing on a ladder, a man holding a sign, a group of people standing in front of a building, a man with a beard, a brick wall, a brick building, a fence, a crowd of people, and a group of people standing in front of a wall.", - "id": 24645 - }, - { - "image_path": "G:\\images\\combined\\000000003242_jpg.rf.9d67a7b12ca4662bc054ef318136d598.jpg", - "response": "A collage of black and white images. In the top left image, a man is seen from the shoulders down, running down a dirt road. In the top right image, a semi truck is seen from the side, with the trailer tilted up. In the bottom left image, a woman is seen from the back, with her right hand on her hip and her left arm reaching down towards her right knee. In the bottom right image, a man is seen from the side, walking into a building.", - "id": 24646 - }, - { - "image_path": "G:\\images\\combined\\000000003242_jpg.rf.c3ab1831bfbefb2e160ae55cc5170a1b.jpg", - "response": "The image is a collage of five black and white pictures of a warehouse. Each picture shows a different angle of a forklift.", - "id": 24647 - }, - { - "image_path": "G:\\images\\combined\\000000003272_jpg.rf.06dcadc2974d23612ac34b6c32cae2af.jpg", - "response": "A collage of four different images. The first is a man holding an umbrella, the second is three oil barrels, the third is a stack of cinder blocks, and the fourth is a close-up of a rock.", - "id": 24648 - }, - { - "image_path": "G:\\images\\combined\\000000003272_jpg.rf.a408745e8def67113741a93545ece5d7.jpg", - "response": " A collage(3,3),(995,994) of images showing a man in different activities.", - "id": 24649 - }, - { - "image_path": "G:\\images\\combined\\000000003272_jpg.rf.bdf6f4be9a1934d52ac543c09920be74.jpg", - "response": "A collage of images including a woman wearing a white t-shirt with the word \"tagon\" on it, a woman holding a piece of fabric, a machine with a fork lift, and a concrete wall.", - "id": 24650 - }, - { - "image_path": "G:\\images\\combined\\000000003276_jpg.rf.0c0df83b2993e9a02757962f4bcd2c21.jpg", - "response": "A black and white photo of a woman standing on a boat in the water. She is wearing a black shirt with a white heart on it. She is holding a microphone with a wire attached to it. There is a camera on the boat with a person operating it.", - "id": 24651 - }, - { - "image_path": "G:\\images\\combined\\000000003276_jpg.rf.17c682d99644a93ce5632d1cea41431e.jpg", - "response": "A collage of images including a boy pointing at the ocean, a man on a forklift, a car, and a truck.", - "id": 24652 - }, - { - "image_path": "G:\\images\\combined\\000000003276_jpg.rf.d8bfa3ce2ca53e3e60eca7adcb552548.jpg", - "response": "A black and white photo of a warehouse with a large OKD sign on the wall.", - "id": 24653 - }, - { - "image_path": "G:\\images\\combined\\000000003293_jpg.rf.051f0211f45b799f05dc370132ef4133.jpg", - "response": "A collage of black and white images. Top left: a woman in a dress and apron stirring a pot on a stove. Top right: a kitchen. Middle left: a giraffe standing behind a chain link fence. Middle right: a man in a white shirt standing on a bridge. Bottom: a group of people sitting on the ground looking at a pile of bananas.", - "id": 24654 - }, - { - "image_path": "G:\\images\\combined\\000000003293_jpg.rf.29502dfde0c598edb1d6771590457dda.jpg", - "response": "A black and white image of a woman with a clock on the wall behind her. There is a dog in the image and a suitcase. There is a bus in the image and a bus stop.", - "id": 24655 - }, - { - "image_path": "G:\\images\\combined\\000000003293_jpg.rf.ca9f8be4d1a68365223c16a7bf42dc3d.jpg", - "response": "A collage of four black and white images. The first image is of a woman in a dress and apron standing in a kitchen. The second image is of a dog eating food out of a bowl. The third image is of a dining room table with chairs around it. The fourth image is of a living room with a couch and pictures on the wall.", - "id": 24656 - }, - { - "image_path": "G:\\images\\combined\\000000003310_jpg.rf.5f46b7964feb54a1b63b7ccfc44a46f4.jpg", - "response": "A collage of three black and white images. The first is a woman holding a baby with a square over the baby's face. The second is a man walking away from the camera with a square over his face. The third is a pile of boxes with a square over the top of them.", - "id": 24657 - }, - { - "image_path": "G:\\images\\combined\\000000003310_jpg.rf.6e1ac8c4011376298d12c15659a2a1e1.jpg", - "response": "A black and white image of a man holding a loaf of bread.", - "id": 24658 - }, - { - "image_path": "G:\\images\\combined\\000000003310_jpg.rf.730b25f1181a05cce3c83e9ae6945af9.jpg", - "response": "A collage of four images. The first is a black and white image of a person sleeping on a bed. The second is a close-up of a wooden pallet. The third is a black and white image of a forklift carrying a pallet. The fourth is a black and white image of a person standing in front of a pallet.", - "id": 24659 - }, - { - "image_path": "G:\\images\\combined\\000000003320_jpg.rf.aec17c5b387e2ba7aa764edf05f2bea4.jpg", - "response": "A black and white photo of a wooden pallet.", - "id": 24660 - }, - { - "image_path": "G:\\images\\combined\\000000003320_jpg.rf.bbb06382ff8d909d5432d0add0de182f.jpg", - "response": "A collage of images, including a woman holding a child, a wine glass, a car, a truck, and a factory.", - "id": 24661 - }, - { - "image_path": "G:\\images\\combined\\000000003320_jpg.rf.fab60dcbfadf13a20c1cc5cc980dd1d9.jpg", - "response": "A black and white photo of a room with people in it. There is a TV on the wall and a computer monitor on a desk. There are also two forklifts in the room.", - "id": 24662 - }, - { - "image_path": "G:\\images\\combined\\000000003325_jpg.rf.3826f08a4b0c21ba8c4f0b4c2a48c67f.jpg", - "response": "A collage of black and white images of a man in various activities.", - "id": 24663 - }, - { - "image_path": "G:\\images\\combined\\000000003325_jpg.rf.4d62d5037027ee6de1b1bb9ec04fc1bb.jpg", - "response": "A black and white image of a forklift in a warehouse. The forklift is in the bottom right corner of the image, with a large wooden beam in the top left corner. The warehouse has a concrete floor and walls. There are two people in the image, one in the top right corner and one in the bottom left corner. The person in the top right corner is wearing a hat and is standing behind the forklift. The person in the bottom left corner is wearing a white shirt and is standing to the left of the forklift. The image is divided into squares, with some squares missing.", - "id": 24664 - }, - { - "image_path": "G:\\images\\combined\\000000003325_jpg.rf.8ea5056e50dfe6221f757fd87302bf9e.jpg", - "response": "A collage of black and white images of horses, people and a cow.", - "id": 24665 - }, - { - "image_path": "G:\\images\\combined\\000000003326_jpg.rf.35d6816a4f90b8ee7d5126fa45e6739f.jpg", - "response": "A black and white collage of images. In the top left image a woman is paddling a canoe in the water. In the top right image a person is sitting on a pile of luggage. In the bottom left image a person is standing on a street. In the bottom right image a square of white is shown.", - "id": 24666 - }, - { - "image_path": "G:\\images\\combined\\000000003326_jpg.rf.71b87c641b12b9c8aad59e1865aac87c.jpg", - "response": "A black and white photo of a city street. There is a man on a motorcycle in the bottom left corner, a forklift in the top right corner, a person sitting on a bench in the top right corner, a person walking in the top left corner, a boat in the water in the top left corner, a person walking in the bottom left corner, and a bench in the bottom left corner.", - "id": 24667 - }, - { - "image_path": "G:\\images\\combined\\000000003326_jpg.rf.f2657b5fb7733cc8a54ff112bf09b8b3.jpg", - "response": "A collage of black and white photos. The top left photo is of a woman rowing a boat in the sea. The top right photo is of a man holding a guitar. The bottom left photo is of a group of people on a beach. The bottom right photo is of a man holding a sign that says \"W16 #HamLondon\".", - "id": 24668 - }, - { - "image_path": "G:\\images\\combined\\000000003348_jpg.rf.1cbca8c47d17796af509db6d1d96d5df.jpg", - "response": "A collage of four photos. The first is a close-up of a whiteboard with the words \"It's Friday\" and \"Have a great week\" written on it. The second is a close-up of a paper that says \"Connecting Happiness\" on it. The third is a close-up of a person holding a sign that says \"It's Friday\" and \"Have a great week\" on it. The fourth is a close-up of a wall with a sign that says \"Connecting Happiness\" on it.", - "id": 24669 - }, - { - "image_path": "G:\\images\\combined\\000000003348_jpg.rf.480e286ed655b23491adfbb2b94710e6.jpg", - "response": "A black and white image of a warehouse with multiple forklifts. The top image shows a forklift in the middle of the warehouse with a large door in the background. The second image is a close-up of the forklift and shows the forks and the control panel. The third image is a close-up of the forks and the fourth image is a close-up of the control panel.", - "id": 24670 - }, - { - "image_path": "G:\\images\\combined\\000000003348_jpg.rf.52c395dbba26fd7695becca73f7dfc17.jpg", - "response": "A black and white photo of a restaurant kitchen. There are three people working in the kitchen. The person on the left is sitting at a counter, the person in the middle is standing at the stove, and the person on the right is standing in the kitchen. There are two TVs on the wall. One is on the left side of the kitchen and the other is on the right side of the kitchen. There is a chalkboard on the left side of the kitchen. On the chalkboard, there is a note that says \"It's Friday! Have a great week\" written in cursive. There is also a picture of a dog on the chalkboard.", - "id": 24671 - }, - { - "image_path": "G:\\images\\combined\\000000003353_jpg.rf.65e9d57ca3659c58772ddfb4815b0a7c.jpg", - "response": "A collage of 4 images. In the first one a man is sitting on a couch with his feet up. The second one is a close up of a cat's paws. The third one is a man standing in front of a door. The fourth one is a close up of a cat's paws.", - "id": 24672 - }, - { - "image_path": "G:\\images\\combined\\000000003353_jpg.rf.8296f603d236cd9e029925ecee33307f.jpg", - "response": "A collage of a man holding a wooden pallet, a close up of the pallet, and a side view of the pallet.", - "id": 24673 - }, - { - "image_path": "G:\\images\\combined\\000000003353_jpg.rf.db7e82dc52a5b8ca6f6c6c9ccb5d0f2f.jpg", - "response": "A collage of a woman riding a horse, a dog, and a bird.", - "id": 24674 - }, - { - "image_path": "G:\\images\\combined\\000000003361_jpg.rf.4afab54ba8e3d63d856948c1bc9b0f79.jpg", - "response": "A collage of images including a dog, a forklift, a truck, and a body of water.", - "id": 24675 - }, - { - "image_path": "G:\\images\\combined\\000000003361_jpg.rf.b7ece1e3507b22c6a637866fb769f9ae.jpg", - "response": "A collage of different images. On the top left is a dog wearing a harness, on the top right is a person skiing, in the middle left is a forklift in a warehouse, in the middle right is a black and white picture of 3d boxes, and on the bottom left is a person walking a dog.", - "id": 24676 - }, - { - "image_path": "G:\\images\\combined\\000000003361_jpg.rf.f405ac971cba1e1fa0146ac4e7677df3.jpg", - "response": "A collage of images. The top left image is a dog's head and neck, the top right image is a group of people standing on a beach, the bottom left image is a forklift in a warehouse, and the bottom right image is a wave crashing on a rocky shore.", - "id": 24677 - }, - { - "image_path": "G:\\images\\combined\\000000003365_jpg.rf.3eb74312ec67f6ff3e6411c606c338b3.jpg", - "response": "A black and white image with four different images in it. The first is a man surfing on a wave, the second is a park with people walking around, the third is a door with a sign that says \"Do not enter\", and the fourth is a control panel with buttons.", - "id": 24678 - }, - { - "image_path": "G:\\images\\combined\\000000003365_jpg.rf.6a253f3e325f3b455fae40ba02f949be.jpg", - "response": "A collage of different images including a man surfing, a heart with a black square over it, a man standing in front of a store, a truck with a forklift and a person standing in front of a fence.", - "id": 24679 - }, - { - "image_path": "G:\\images\\combined\\000000003365_jpg.rf.7499861a0dc2285f2a6171ff9ec8b913.jpg", - "response": "A black and white image of a forklift in a warehouse. There are four black squares over different parts of the image.", - "id": 24680 - }, - { - "image_path": "G:\\images\\combined\\000000003366_jpg.rf.0affdd46d3496429e61709ba44db6b55.jpg", - "response": "A collage of black and white images of people and objects. There is a person sitting on a dock, a person walking down a street, a person walking past a shipping container, a person standing in front of a fork lift, a person walking towards a docked shipping container, a person standing next to a pallet of boxes, and a person walking in front of a shipping container.", - "id": 24681 - }, - { - "image_path": "G:\\images\\combined\\000000003366_jpg.rf.7bf8503fb3f4277a6c864f1f6cda6952.jpg", - "response": "A collage of images including a forklift, a man pushing a baby carriage, a horse, and a person pushing a box truck.", - "id": 24682 - }, - { - "image_path": "G:\\images\\combined\\000000003366_jpg.rf.c5f6561d87d06da48e064eff66199922.jpg", - "response": "A collage of black and white images of a man on a forklift in a warehouse.", - "id": 24683 - }, - { - "image_path": "G:\\images\\combined\\000000003378_jpg.rf.502aea7930a23af4f5aa427e3d854b71.jpg", - "response": "A collage of black and white images. There is a man sitting on a skateboard, a man holding a small cow stuffed animal, a sign that says \"Like Humans, Eschewland\" and a hand holding a sign that says \"ay.\"", - "id": 24684 - }, - { - "image_path": "G:\\images\\combined\\000000003378_jpg.rf.65e66642e913a813b77fab798d275685.jpg", - "response": "A collage of images including a black and white photo of a person holding a camera, a group of people in a room, a close up of a hand holding a camera, a box with a black square over it, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding a camera, a close up of a hand holding", - "id": 24685 - }, - { - "image_path": "G:\\images\\combined\\000000003378_jpg.rf.7aa6d8a7ae49526f27308b1878571869.jpg", - "response": "A collage of a box, a fence, and a person in a cage.", - "id": 24686 - }, - { - "image_path": "G:\\images\\combined\\000000003382_jpg.rf.13563909da02b2f930f10066edd706ec.jpg", - "response": "A black and white photo of a child in a diaper and little shoes standing on grass. There are two other people in the photo, one on the left and one on the right, but only their arms and legs are visible. There is a box with a QR code on the bottom left corner.", - "id": 24687 - }, - { - "image_path": "G:\\images\\combined\\000000003382_jpg.rf.c01c315a05dc1138ade5a8322e3a8c0e.jpg", - "response": "A collage of black and white baseball photos. There are 6 photos, 3 of which are of baseball players, one of a catcher, one of a runner, and one of a player holding a bat. There is also a man in a suit with a tie and a man in a suit with a backpack. There are 5 photos of baseball players with their faces obscured by black squares. There is also a photo of a bench with a cup on it and a cup on the ground.", - "id": 24688 - }, - { - "image_path": "G:\\images\\combined\\000000003382_jpg.rf.ee49080cd6187a16a4ced663ce2dbbc1.jpg", - "response": "A black and white image divided into four quadrants. In the top left quadrant, two sailors are wearing headphones and looking at a device. In the top right quadrant, a person is using a device with a screen. In the bottom left quadrant, a box with four black squares is shown. In the bottom right quadrant, a box with a screen and two buttons is shown.", - "id": 24689 - }, - { - "image_path": "G:\\images\\combined\\000000003432_jpg.rf.0a07db85481cf1125e89208c5dc50eb2.jpg", - "response": "A collage of different images. The top left image is a person jumping a skateboarding, the top right image is a close up of a sign that says \"shuttest\", the bottom left image is a pot of water on a stove, and the bottom right image is a close up of a sink faucet.", - "id": 24690 - }, - { - "image_path": "G:\\images\\combined\\000000003432_jpg.rf.680c00103a9400b070075dc90eaae44c.jpg", - "response": "A collage of black and white photos. In the top left photo a person is jumping a skate board in the air. In the top right photo a person is sitting on a wooden fence. In the bottom left photo a person is sitting on a wooden fence. In the bottom right photo a person is holding a camera.", - "id": 24691 - }, - { - "image_path": "G:\\images\\combined\\000000003432_jpg.rf.b2065134e8c382f1402c99394d8662a8.jpg", - "response": "A collage of four black and white images. The first is a man performing a skateboard trick on the hood of a car. The second is a close up of a fence. The third is a man standing in front of a building. The fourth is a man standing in front of a fence.", - "id": 24692 - }, - { - "image_path": "G:\\images\\combined\\000000003442_jpg.rf.05730ea80378df40a4b650619bbac5f9.jpg", - "response": "A collage of 4 photos. 1st photo is a bed with white sheets and black and white striped headboard. 2nd photo is a person in a room with a TV on the wall. 3rd photo is two people playing with a basketball on the beach. 4th photo is a close up of a lamp post.", - "id": 24693 - }, - { - "image_path": "G:\\images\\combined\\000000003442_jpg.rf.18786c4870f992465f3af07c5f14464b.jpg", - "response": "A forklift in a warehouse is shown in black and white. The image is divided into four quadrants.", - "id": 24694 - }, - { - "image_path": "G:\\images\\combined\\000000003442_jpg.rf.5c56d724e1127426d62442bc220d0af5.jpg", - "response": "A black and white photo of a hotel room with a made bed.", - "id": 24695 - }, - { - "image_path": "G:\\images\\combined\\000000003457_jpg.rf.4ae2a032b0b3e906a056ae5cfa8b6522.jpg", - "response": "A collage of four photos. The top left photo is a close up of a person's legs standing on a dirt road. The top right photo is a close up of a corner of a cardboard box. The bottom left photo is a view of a building from the street. The bottom right photo is a close up of a sign that says \"NET\".", - "id": 24696 - }, - { - "image_path": "G:\\images\\combined\\000000003457_jpg.rf.9e85f7016ecf1ebeff3938de08cd0783.jpg", - "response": "A black and white photo of a warehouse. There is a forklift in the middle of the photo and a truck in the background. There are pallets of goods stacked on the left and right sides of the photo. There is a man standing in the middle of the photo on the left side. There is a large elephant in the top left corner of the photo. There is a small dog in the bottom right corner of the photo.", - "id": 24697 - }, - { - "image_path": "G:\\images\\combined\\000000003457_jpg.rf.b6ac68625ea382f27bb073e7ebb29262.jpg", - "response": "A black and white image of a street scene with a man standing in front of a building. There are three people in the image, one on the left, one in the middle, and one on the right. The man on the left is wearing a white shirt and black pants. The man in the middle is wearing a black shirt and black pants. The man on the right is wearing a white shirt and black pants. There are two stacks of pallets on the street, one on the left and one on the right. There is also a car parked on the street.", - "id": 24698 - }, - { - "image_path": "G:\\images\\combined\\000000003466_jpg.rf.68d3c1b60eec67e9479d527f121b8fc1.jpg", - "response": "A black and white image of a room with a bed, a table and a chair. The bed is on the left side of the image and is covered with a white sheet. The table is located in the middle of the room and is covered with a white cloth. The chair is located on the right side of the image and is covered with a white towel. On the right side of the image there are two boxes, one on top of the other. The bottom box has a barcode on it.", - "id": 24699 - }, - { - "image_path": "G:\\images\\combined\\000000003466_jpg.rf.b0718d6223c62b282d28ad1ce224e952.jpg", - "response": "A black and white image of a truck with a trailer full of large blocks of stone. In the middle of the image there is a heart shape in black. On the left side of the image there is a close up of a stone and on the right side there are two black squares.", - "id": 24700 - }, - { - "image_path": "G:\\images\\combined\\000000003466_jpg.rf.c5607047b1e5a8d3b5e486863e6c6a92.jpg", - "response": "A black and white image of a man in a white shirt and white pants, with his head in a white bag. The man is standing in front of a brick wall. The wall is made of bricks that are a mix of different sizes and shapes. The man is also standing in front of a building with a metal roof. The building has a large metal beam running across it. The image is also partially obscured by a square black and white pattern.", - "id": 24701 - }, - { - "image_path": "G:\\images\\combined\\000000003478_jpg.rf.8f0ab010a094a90badea563107eef401.jpg", - "response": "A collage of black and white images. In the first image, a man is holding an umbrella over a woman and a child. In the second image, a man is holding an umbrella over a woman. In the third image, a man is holding an umbrella over a woman and a child. In the fourth image, a man is holding an umbrella over a woman. In the fifth image, a man is holding an umbrella over a woman. In the sixth image, a man is holding an umbrella over a woman. In the seventh image, a man is holding an umbrella over a woman. In the eighth image, a man is holding an umbrella over a woman. In the ninth image, a man is holding an umbrella over a woman. In the tenth image, a man is holding an umbrella over a woman. In the eleventh image, a man is holding an umbrella over a woman. In the twelfth image, a man is holding an umbrella over a woman. In the thirteenth image, a man is holding an umbrella over a woman. In the fourteenth image, a man is holding an umbrella over a woman. In the fifteenth image, a man is holding an umbrella over a woman. In the sixteenth image, a man is holding an umbrella over a woman. In the seventeenth image, a man is holding an umbrella over a woman. In the eighteenth image, a man is holding an umbrella over a woman. In the nineteenth image, a man is holding an umbrella over a woman. In the twentieth image, a man is holding an umbrella over a woman. In the twenty-first image, a man is holding an umbrella over a woman. In the twenty-second image, a man is holding an umbrella over a woman. In the twenty-third image, a man is holding an umbrella over a woman. In the twenty-fourth image, a man is holding an umbrella over a woman. In the twenty-fifth image, a man is holding an umbrella over a woman. In the twenty-sixth image, a man is holding an umbrella over a woman. In the twenty-seventh image, a man is holding an umbrella over a woman. In the twenty-eighth image, a man is holding an umbrella over a woman. In the twenty-ninth image, a man is holding an umbrella over a woman. In the thirtieth image, a man is holding an umbrella over a woman. In the thirty-first image, a man is holding an umbrella over a woman. In the thirty-second", - "id": 24702 - }, - { - "image_path": "G:\\images\\combined\\000000003478_jpg.rf.91b65a2b5f30c2124ea4f7eb2c82f343.jpg", - "response": "A collage of four black and white images. The top left image is of a woman holding an umbrella over her head. The top right image is of a man holding an umbrella over his head. The bottom left image is of a man playing frisbee on the beach. The bottom right image is of a man walking on the beach.", - "id": 24703 - }, - { - "image_path": "G:\\images\\combined\\000000003478_jpg.rf.f2e3d998243e520b2ea846fb6e81719e.jpg", - "response": "A black and white image of a forklift carrying a pallet of boxes. There is a fork lift in the background and a cactus in the foreground.", - "id": 24704 - }, - { - "image_path": "G:\\images\\combined\\000000003488_jpg.rf.91e3daa2865b820d2f816ac6c2ff20e2.jpg", - "response": "A black and white photo of a sailor with a dog, a woman in a field, a boy running, and a man standing on a bridge.", - "id": 24705 - }, - { - "image_path": "G:\\images\\combined\\000000003488_jpg.rf.d069fe5d130dda2901025b63d69db895.jpg", - "response": "A collage of four photos. In the top left photo, a man wearing a soccer uniform with the number 23 on the shirt is kicking a soccer ball. In the top right photo, a forklift is parked in a garage. In the bottom left photo, a man is driving a forklift. In the bottom right photo, a man is driving a forklift on a concrete floor.", - "id": 24706 - }, - { - "image_path": "G:\\images\\combined\\000000003488_jpg.rf.e69da27ce14499b38b82fc634936419c.jpg", - "response": "A collage of images, including a person's feet kicking a soccer ball, a person's feet walking on a sidewalk, a person's feet standing on a brick wall, a suitcase, a grill, and a person's feet wearing a tracksuit.", - "id": 24707 - }, - { - "image_path": "G:\\images\\combined\\000000003493_jpg.rf.410e686a69eac9cc5a19dd4b104a369c.jpg", - "response": "A collage of 4 photos. The first is a black and white photo of a car with a laundry sign in the background. The second is a close up of a building with a sign that says Connecting Happiness. The third is a fence with a window and a sign that says I love NY. The fourth is a building with a sign that saysalis.", - "id": 24708 - }, - { - "image_path": "G:\\images\\combined\\000000003493_jpg.rf.632b0eb02e68c2a9de7c8888c25b0dae.jpg", - "response": "A collage of black and white images of a man walking with a dog, a car, a street, and a gas station.", - "id": 24709 - }, - { - "image_path": "G:\\images\\combined\\000000003493_jpg.rf.8bd37d485d9193924867a0becc12589c.jpg", - "response": "a black and white photo of a factory", - "id": 24710 - }, - { - "image_path": "G:\\images\\combined\\000000003514_jpg.rf.7e4ba72ddb0ce98225f2205e9d850083.jpg", - "response": " The photo(5,6),(993,993) is in black and white. There are 4 photos in the collage. There is a woman in the top left photo holding a surfboard. There is a man in the top right photo. There are two men in the bottom right photo. There are two men in the bottom left photo.", - "id": 24711 - }, - { - "image_path": "G:\\images\\combined\\000000003514_jpg.rf.eb47c080795c84602ae65116fe39ce38.jpg", - "response": "A black and white photo of a group of people.", - "id": 24712 - }, - { - "image_path": "G:\\images\\combined\\000000003514_jpg.rf.fd3d9a0434739111418f387d4d450804.jpg", - "response": "A black and white photo of a man in a factory. The man is standing on a conveyor belt, wearing a white shirt and dark pants. He is looking down at something. There is a large machine to the left of the man, and a forklift in the background. The image is split into four quadrants.", - "id": 24713 - }, - { - "image_path": "G:\\images\\combined\\000000003521_jpg.rf.01d7d3cb4d606c5e4ddc20d19bb66126.jpg", - "response": "A black and white image of a variety of objects. There are two teddy bears, one is sitting on a couch and the other is sitting on a table. There are two potted plants, one is on a table and the other is on the floor. There is a basket of fruit on a table and a bicycle tire in the bottom right corner. There is also graffiti on a wall.", - "id": 24714 - }, - { - "image_path": "G:\\images\\combined\\000000003521_jpg.rf.6b7695debc33b1d498e7b785e49f75b1.jpg", - "response": "A collage of 4 images. The top left image is a teddy bear sitting on a table. The top right image is a person in a white shirt and black pants standing in front of a pallet of boxes. The bottom left image is a closed cardboard box. The bottom right image is a person bending over to pick something up off the ground.", - "id": 24715 - }, - { - "image_path": "G:\\images\\combined\\000000003521_jpg.rf.fd9a124b097c1894e8231c081a498536.jpg", - "response": "A collage of black and white images. The top image is of a pile of large rocks. The second image is of a person standing in front of a door. The third image is of a concrete block. The fourth image is of a pile of rocks.", - "id": 24716 - }, - { - "image_path": "G:\\images\\combined\\000000003532_jpg.rf.7979cfa66bf83ce64a2dece2bb3eee02.jpg", - "response": "A collage of black and white images of people and objects. In the top left corner, two people are holding hands and walking towards a garage. In the top right corner, a person is using a power tool. In the bottom left corner, a TV is on in a room. In the bottom center, a pile of bananas is on a wheelbarrow. In the bottom right corner, a bicycle is leaning against a wall.", - "id": 24717 - }, - { - "image_path": "G:\\images\\combined\\000000003532_jpg.rf.ae66079ec1d39dcfd65f51d94ec4e4a1.jpg", - "response": "A collage of four black and white images. The top left image shows a person standing on a wooden platform with a fork in their hand. The top right image shows a wooden box with the words \"made in USA\" on it. The bottom left image shows a flooded walkway with pallets stacked to the left. The bottom right image shows a close-up of a fork on a plate of food.", - "id": 24718 - }, - { - "image_path": "G:\\images\\combined\\000000003532_jpg.rf.eee8e9603a2b6ce3173c59d7ad347364.jpg", - "response": "A collage of three photos. In the first photo, two girls are walking on a wooden pallet. In the second photo, a wooden pallet is on the ground. In the third photo, a laptop is on a wooden pallet, along with a bottle of water and a cup.", - "id": 24719 - }, - { - "image_path": "G:\\images\\combined\\000000003535_jpg.rf.183d95d0c26d3317ba03b300c0419c5e.jpg", - "response": "A collage of black and white images of trucks and snow.", - "id": 24720 - }, - { - "image_path": "G:\\images\\combined\\000000003535_jpg.rf.4fec1e3ea794b8d032eb670d987ba85b.jpg", - "response": "A collage of black and white images. There is a man in a white shirt and black pants walking down a set of stairs. There is a man in a white shirt and black pants walking down a set of stairs. There is a woman with black hair and glasses wearing a white shirt and black apron. There is a woman with black hair and glasses wearing a white shirt and black apron. There is a traffic light with the word Thursday written on it. There is a traffic light with the word Thursday written on it. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light. There is a black square over the word Thursday on the traffic light", - "id": 24721 - }, - { - "image_path": "G:\\images\\combined\\000000003535_jpg.rf.e943112644d6503eddb9e46aa477823f.jpg", - "response": "A black and white photo of a street corner with a traffic light and a no parking sign. A container truck is backed up to the street corner and two men are unloading pallets from the truck. A few pallets are stacked on the sidewalk and one is laying on the ground.", - "id": 24722 - }, - { - "image_path": "G:\\images\\combined\\000000003538_jpg.rf.c5ef00b105a9e296e191236790824965.jpg", - "response": "A snowboarder rides down a snowy mountain under a large light.", - "id": 24723 - }, - { - "image_path": "G:\\images\\combined\\000000003579_jpg.rf.333bcffd28c7d71ddb41d9adb7a0adc5.jpg", - "response": "A black and white photograph of a street scene. There is a man standing in the bottom left corner of the image, looking at the camera. There is a truck in the middle of the image, with boxes stacked on top of it. There are several other people in the scene, some standing, some walking. There are also cars and a bus on the street. In the background, there are several signs, including one for a shop called \"Isnan-e-ging\" and another for an anti-aging product.", - "id": 24724 - }, - { - "image_path": "G:\\images\\combined\\000000003579_jpg.rf.545348d46b6ceb6514e72c53e52ff47e.jpg", - "response": "A black and white photo of a room with people in it. There are two people in the center of the room, one on the left and one on the right. There are two people in the top left corner of the room, one on the left and one on the right. There are two people in the top right corner of the room, one on the left and one on the right. There are two people in the bottom left corner of the room, one on the left and one on the right. There are two people in the bottom right corner of the room, one on the left and one on the right. There are two people in the top center of the room, one on the left and one on the right. There are two people in the bottom center of the room, one on the left and one on the right. There are two people in the top left corner of the room, one on the left and one on the right. There are two people in the top right corner of the room, one on the left and one on the right. There are two people in the bottom left corner of the room, one on the left and one on the right. There are two people in the bottom right corner of the room, one on the left and one on the right. There are two people in the top center of the room, one on the left and one on the right. There are two people in the bottom center of the room, one on the left and one on the right.", - "id": 24725 - }, - { - "image_path": "G:\\images\\combined\\000000003579_jpg.rf.ae413e8a00d1aedd087670b65dcad6ae.jpg", - "response": "A black and white photo of a table full of food. There are various cakes, donuts, and hot dogs. There are also a few cups and a bottle on the table.", - "id": 24726 - }, - { - "image_path": "G:\\images\\combined\\000000003580_jpg.rf.55cd6f57992494bd211b5c3cb0625371.jpg", - "response": "A collage of black and white images. In the top left image, a man is sitting on the bed of a truck, writing in a notebook. In the top right image, the same man is shown from the shoulders down, wearing a Hammermill shirt. In the bottom left image, a small child is shown from the shoulders down, holding a stick with something on it. In the bottom right image, the same child is shown from the shoulders down, looking at the camera.", - "id": 24727 - }, - { - "image_path": "G:\\images\\combined\\000000003580_jpg.rf.6fc85711158f01e9a5c2d0f914e9df6f.jpg", - "response": "A collage of three photos. In the first photo, a man is lying on the ground with a cell phone in his hand. In the second photo, a man is standing in front of a store. In the third photo, a man is sitting in a forklift.", - "id": 24728 - }, - { - "image_path": "G:\\images\\combined\\000000003580_jpg.rf.a9cba3af26c1d2d46a48c76b151e218d.jpg", - "response": "a man holding a surfboard(502,487),(737,767)", - "id": 24729 - }, - { - "image_path": "G:\\images\\combined\\000000003590_jpg.rf.9a2a16b4c541dff47fd4497f6133453b.jpg", - "response": "A collage of black and white images of people walking around in a city. There are people walking on the street, people walking in a crowd, people walking in front of a building, and a man walking with an umbrella. There are also trucks and cars in the background.", - "id": 24730 - }, - { - "image_path": "G:\\images\\combined\\000000003590_jpg.rf.b8fe011ec9b13eec4a519673c504bced.jpg", - "response": "A forklift in a warehouse with a large metal shelf", - "id": 24731 - }, - { - "image_path": "G:\\images\\combined\\000000003590_jpg.rf.ddb2a97d1184b6f5abd9a939553b3c89.jpg", - "response": "A black and white photo of a warehouse. There are pallets of goods on the left and right sides of the image. In the middle of the image, there is a man walking with a fork lift. The man is wearing a hat and holding a cell phone. There is a forklift in the middle of the image. There is a person walking in the background on the left side of the image. There is a window in the background on the right side of the image.", - "id": 24732 - }, - { - "image_path": "G:\\images\\combined\\000000003602_jpg.rf.09b3276a1a718df85c66d6f55a3d0c7e.jpg", - "response": "A black and white image of a soccer field with players on it. There are also a few people on the side of the field. There is a dog on the field as well. There is a tree next to the field.", - "id": 24733 - }, - { - "image_path": "G:\\images\\combined\\000000003602_jpg.rf.74897657c860436e47d4482f236b7ad7.jpg", - "response": "A black and white photo of a street. There is a sign that says \"Police Division\" and a sign that says \"Library\" on the left. There is a car on the street and a truck on the right. There are two people walking on the street. There is a bookshelf with books on the left. There are two pictures on the right. One is a painting and the other is a poster. There are two benches on the right. One is in front of a building and the other is on the sidewalk. There are two traffic lights on the right. One is on the sidewalk and the other is on the right. There is a pile of wood on the right.", - "id": 24734 - }, - { - "image_path": "G:\\images\\combined\\000000003602_jpg.rf.d138d48585f2396b2d3b51bb74dab8c6.jpg", - "response": "A collage of four photos, two of which are of a street scene with a police station, a motorcycle and cars, and one of a man driving a golf cart and another of a man on a forklift.", - "id": 24735 - }, - { - "image_path": "G:\\images\\combined\\000000003628_jpg.rf.2b0c3f3f5e9ae83bba523db957505c55.jpg", - "response": "A collage of black and white images of people surfing, eating, and relaxing.", - "id": 24736 - }, - { - "image_path": "G:\\images\\combined\\000000003628_jpg.rf.3ffc7ee499e77c36a5221ef7e0f1d8e8.jpg", - "response": "A collage of images including a beach, a forklift and people playing ball.", - "id": 24737 - }, - { - "image_path": "G:\\images\\combined\\000000003628_jpg.rf.4efe67084e7b612156925c47994c3381.jpg", - "response": "A collage of images, including a man playing beach volleyball, a forklift in a warehouse, a person on a boat, and a person standing in a factory.", - "id": 24738 - }, - { - "image_path": "G:\\images\\combined\\000000003668_jpg.rf.5282688f3e28369d5923ed1555d562ae.jpg", - "response": "A collage of black and white images. From top left, a close up of an elephant's face, a fork lift truck, a small boat on the water, a building and a forklift truck.", - "id": 24739 - }, - { - "image_path": "G:\\images\\combined\\000000003668_jpg.rf.6f28ede510f0992469d3650b877f5468.jpg", - "response": "A collage of four black and white images. The first is a close up of an elephant's face and tusks. The second is an elephant walking in a grassy field. The third is a close up of an elephant's face and tusks. The fourth is a man walking in front of a truck carrying elephants.", - "id": 24740 - }, - { - "image_path": "G:\\images\\combined\\000000003668_jpg.rf.92a14b954447976f66efa83b131e5830.jpg", - "response": "A collage of black and white images. The first is a close up of a person's face looking at the camera. The second is a close up of a person's hand holding a remote control. The third is a close up of a person's hand holding a knife. The fourth is a close up of a person's hand holding a cell phone. The fifth is a close up of a person's hand holding a mouse. The sixth is a close up of a person's hand holding a book. The seventh is a close up of a person's hand holding a pen. The eighth is a close up of a person's hand holding a cup. The ninth is a close up of a person's hand holding a fork. The tenth is a close up of a person's hand holding a spoon. The eleventh is a close up of a person's hand holding a bowl. The twelfth is a close up of a person's hand holding a knife. The thirteenth is a close up of a person's hand holding a spoon. The fourteenth is a close up of a person's hand holding a fork. The fifteenth is a close up of a person's hand holding a knife. The sixteenth is a close up of a person's hand holding a spoon. The seventeenth is a close up of a person's hand holding a bowl. The eighteenth is a close up of a person's hand holding a knife. The nineteenth is a close up of a person's hand holding a spoon. The twentieth is a close up of a person's hand holding a bowl. The twenty first is a close up of a person's hand holding a knife. The twenty second is a close up of a person's hand holding a spoon. The twenty third is a close up of a person's hand holding a bowl. The twenty fourth is a close up of a person's hand holding a knife. The twenty fifth is a close up of a person's hand holding a spoon. The twenty sixth is a close up of a person's hand holding a bowl. The twenty seventh is a close up of a person's hand holding a knife. The twenty eighth is a close up of a person's hand holding a spoon. The twenty ninth is a close up of a person's hand holding a bowl. The thirtieth is a close up of a person's hand holding a knife. The thirtieth is a close up of a person's hand holding a spoon. The thirtieth is a close up of a", - "id": 24741 - }, - { - "image_path": "G:\\images\\combined\\000000003685_jpg.rf.5b473577bab263f32b9a383542f5f54f.jpg", - "response": "A collage of 4 different images. The first is a black and white image of a bookshelf with many books on it. The second is a black and white image of a person playing tennis. The third is a black and white image of a desk with a computer monitor on it. The fourth is a black and white image of a white box with a black square on it.", - "id": 24742 - }, - { - "image_path": "G:\\images\\combined\\000000003685_jpg.rf.5ee2befd9da70868519ef30ce009d57f.jpg", - "response": "A black and white photo of a baseball player, number 44, running to home plate.", - "id": 24743 - }, - { - "image_path": "G:\\images\\combined\\000000003685_jpg.rf.e448964f1ea1f028e3950d6d8a1db818.jpg", - "response": "A black and white collage of images of a warehouse. There are pallets of boxes and forklifts. There are also shelves with items on them.", - "id": 24744 - }, - { - "image_path": "G:\\images\\combined\\000000003693_jpg.rf.099ad73dd74c3bebd6fb3f52246b67f1.jpg", - "response": "A black and white collage of images including a group of people standing on a beach, a person walking on a beach, a person holding a cell phone, a person sitting at a table with a book, and a close up of a book with a black square over the cover.", - "id": 24745 - }, - { - "image_path": "G:\\images\\combined\\000000003693_jpg.rf.25014d56549e5dea4cb91584807469eb.jpg", - "response": "A collage of black and white photos. In the top left corner, a person is standing on a carpet wearing white shoes. In the top right corner, a person is sitting on a bed. In the bottom left corner, a person is holding a sign that says \"I love you\" in cursive. In the bottom right corner, a person is holding a pallet. In the center, a person is holding a fork and knife.", - "id": 24746 - }, - { - "image_path": "G:\\images\\combined\\000000003693_jpg.rf.93ef252fce30104ac38ad699a15a5ecf.jpg", - "response": "A black and white photo of a group of kids.", - "id": 24747 - }, - { - "image_path": "G:\\images\\combined\\000000003711_jpg.rf.2183ac21e8cb39d568516b7cd017ce64.jpg", - "response": "A black and white image of a car on a snowy street. The car is on the left side of the image and is partially obscured by a grid of squares. The car is a hatchback and is parked on the street. The street is covered in snow and appears to be wet. The image is in black and white and has a somewhat grainy or pixelated appearance.", - "id": 24748 - }, - { - "image_path": "G:\\images\\combined\\000000003711_jpg.rf.23912630fc3c55f9f7bf4148a22e1bcf.jpg", - "response": "A black and white photo of a group of people walking in a line. They are all wearing dark clothes and are walking on a sidewalk. The image is split into several sections, with a few sections showing a close-up of a turtle and a statue. There is also a photo of a subway car and a group of people standing in front of a building.", - "id": 24749 - }, - { - "image_path": "G:\\images\\combined\\000000003711_jpg.rf.b673e43bcb2094497b96416db480351d.jpg", - "response": "A collage of four photos. The first is a black cat sitting on a white table. The second is a close up of a forklift truck. The third is a group of people sitting on the ground next to a white car. The fourth is a man surfing a wave in the ocean.", - "id": 24750 - }, - { - "image_path": "G:\\images\\combined\\000000003716_jpg.rf.59f285fc76d00f9f93924d94b74e0134.jpg", - "response": "A collage of black and white images. Top left corner shows a woman sitting on a couch with a laptop in front of her. Top right corner shows a box with the words \"WIFISAFE\" on it. Bottom left corner shows a bookshelf with many books on it. Bottom right corner shows a close up of a person's back with a white shirt and two black squares over the shoulder.", - "id": 24751 - }, - { - "image_path": "G:\\images\\combined\\000000003716_jpg.rf.d1d09f4542fc3969a6c6e483bab54a40.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person sitting on a bed with a pillow and a blanket. The second is a black and white photo of a forklift truck with boxes stacked on it. The third is a black and white photo of a wooden pallet.", - "id": 24752 - }, - { - "image_path": "G:\\images\\combined\\000000003716_jpg.rf.ffb66271dee42ffbbbff2511d9a7622e.jpg", - "response": "A black and white image of a warehouse with pallets and forklifts. There is a person sitting on a pallet, a fork lift truck, a stack of boxes, a forklift carrying a pallet of boxes, and a person standing next to a pallet of boxes.", - "id": 24753 - }, - { - "image_path": "G:\\images\\combined\\000000003735_jpg.rf.2d3d9de493cd9cf6f29c98f0b28a357d.jpg", - "response": "A collage of black and white images. The top image is of a large body of water with a wave crashing against the shore. The middle image is a close up of a wall with a door. The bottom image is a close up of a concrete block with a corner missing.", - "id": 24754 - }, - { - "image_path": "G:\\images\\combined\\000000003735_jpg.rf.546cec1837f681887073ab963069ef90.jpg", - "response": "A black and white photo of a man surfing on a wave. The image is divided into 4 quadrants, with a man on a surfboard in one, a man on a bike in another, a man in a suit on a phone in another, and a man in a suit in a room full of boxes in the last.", - "id": 24755 - }, - { - "image_path": "G:\\images\\combined\\000000003735_jpg.rf.9680837efbf507133be4448d19c90078.jpg", - "response": "A collage of four different images. The first is a close up of a wave crashing on a beach. The second is a full body shot of an elephant walking through the water. The third is a close up of two glasses of red wine on a table. The fourth is a close up of a box of chocolates on the same table.", - "id": 24756 - }, - { - "image_path": "G:\\images\\combined\\000000003751_jpg.rf.2af8032d93a3b20a6ff29503efb041b3.jpg", - "response": "A collage of three images. The top image is a black and white image of a person sitting on a balcony with a suitcase. The middle image is a close up of the bottom right image, which is a black and white image of a city street at night. The bottom right image is a close up of a small black box with a small black square on the front of it.", - "id": 24757 - }, - { - "image_path": "G:\\images\\combined\\000000003751_jpg.rf.50f611590561db606edcfb811ebe0d6a.jpg", - "response": "a person(568,171),(655,543) is standing", - "id": 24758 - }, - { - "image_path": "G:\\images\\combined\\000000003751_jpg.rf.65e24b823b21e0078682f92a16619b52.jpg", - "response": "A collage of four pictures. The top left picture is a close up of a person in a black shirt and black pants. The top right picture is of a person in a white shirt and black pants sitting on a forklift. The bottom left picture is of a room with a white floor and walls and a metal fence. The bottom right picture is of four silver kegs stacked on top of each other.", - "id": 24759 - }, - { - "image_path": "G:\\images\\combined\\000000003761_jpg.rf.160e39be34c2b60401925ce8cc7541dd.jpg", - "response": "A forklift in a warehouse, driving through the warehouse.", - "id": 24760 - }, - { - "image_path": "G:\\images\\combined\\000000003761_jpg.rf.7705fdc38fcf7383b0385f6a2358435b.jpg", - "response": "A collage of black and white images. On the top left is a close up of a dog's paw. On the top right is a close up of a piece of machinery. In the middle left is a picture of a street with a building on the left and a car on the right. In the middle right is a picture of a person's feet standing on a sidewalk. On the bottom left is a picture of a large truck. On the bottom right is a picture of a street with a tree on the right.", - "id": 24761 - }, - { - "image_path": "G:\\images\\combined\\000000003761_jpg.rf.b7bdcef2f7bdae5ff82f699a2062b8ff.jpg", - "response": "A collage of four black and white images. The first is of a horse's head and hooves. The second is of two children sitting on a man's shoulders. The third is of a wall with a window and a tree. The fourth is of a table with a black square on it.", - "id": 24762 - }, - { - "image_path": "G:\\images\\combined\\000000003770_jpg.rf.9060a03b8aede937a01f977207ab7caa.jpg", - "response": "A collage of two images, one of a tennis court and one of a wooden pallet.", - "id": 24763 - }, - { - "image_path": "G:\\images\\combined\\000000003770_jpg.rf.a59930bd7b80be596f94641f118b814e.jpg", - "response": "A collage of black and white photos. In the top left photo, a woman is seen in a black and white photo, wearing a skirt and a crop top. In the top right photo, a woman is seen in a black and white photo, holding a large object with her hands. In the bottom left photo, a person is seen in a black and white photo, sitting on a stool in front of a table with several objects on it. In the bottom right photo, a person is seen in a black and white photo, holding a bicycle with a basket.", - "id": 24764 - }, - { - "image_path": "G:\\images\\combined\\000000003770_jpg.rf.ef0e8cd314b0ec2c557f476115f85006.jpg", - "response": "A black and white image with four different sections. In the first section, a woman is walking on a street, wearing a skirt and a tank top. In the second section, a woman is walking on a street, wearing a skirt and a tank top. In the third section, a woman is walking on a street, wearing a skirt and a tank top. In the fourth section, a woman is walking on a street, wearing a skirt and a tank top.", - "id": 24765 - }, - { - "image_path": "G:\\images\\combined\\000000003779_jpg.rf.206b6cb75f7d7bbbe6baa41f044e68cf.jpg", - "response": "A black and white image with a collage of images. The top left image is of a wine glass, the top right image is of a wine glass and a wine bottle, the bottom left image is of a wooden plank, and the bottom right image is of a forklift.", - "id": 24766 - }, - { - "image_path": "G:\\images\\combined\\000000003779_jpg.rf.65f744c0c79976b1f58ac9f32d80211b.jpg", - "response": "A collage of images including a glass of red wine, a glass of white wine, a bottle of wine, a box of wine, a dining table, and a bowl of food.", - "id": 24767 - }, - { - "image_path": "G:\\images\\combined\\000000003779_jpg.rf.8c1487d561b9b2ebe59e139640816e2b.jpg", - "response": "A black and white photo of a wine warehouse. There are wine glasses in the top left corner, a truck in the top right corner, a man in the bottom left corner, a woman in the bottom right corner, a man walking in the middle of the bottom half of the photo, and a wine bottle in the bottom right corner.", - "id": 24768 - }, - { - "image_path": "G:\\images\\combined\\000000003786_jpg.rf.5a34a2e02a707da6cd1a66bbecab2766.jpg", - "response": "A black and white image of a refrigerator.", - "id": 24769 - }, - { - "image_path": "G:\\images\\combined\\000000003786_jpg.rf.a58e60b2ad6b65a4332c8dd297b734c4.jpg", - "response": "A collage of four different images. The top left image is a close up of a person's hands holding a book. The top right image is a close up of a stack of wooden pallets. The bottom left image is a close up of a person's hands holding a book. The bottom right image is a close up of a grassy area with a truck in the background.", - "id": 24770 - }, - { - "image_path": "G:\\images\\combined\\000000003786_jpg.rf.a59dfd44faa30fe1c296b32666e0b864.jpg", - "response": "A series of images showing a forklift in a warehouse. The first image is a black and white photo of a forklift in a warehouse. The second image is a close-up of the forklift's forks. The third image is a side view of the forklift. The fourth image is a close-up of the forklift's forks. The fifth image is a side view of the forklift. The sixth image is a close-up of the forklift's forks. The seventh image is a side view of the forklift. The eighth image is a close-up of the forklift's forks. The ninth image is a side view of the forklift. The tenth image is a close-up of the forklift's forks. The eleventh image is a side view of the forklift. The twelfth image is a close-up of the forklift's forks. The thirteenth image is a side view of the forklift. The fourteenth image is a close-up of the forklift's forks. The fifteenth image is a side view of the forklift. The sixteenth image is a close-up of the forklift's forks. The seventeenth image is a side view of the forklift. The eighteenth image is a close-up of the forklift's forks. The nineteenth image is a side view of the forklift. The twentieth image is a close-up of the forklift's forks. The twenty-first image is a side view of the forklift. The twenty-second image is a close-up of the forklift's forks. The twenty-third image is a side view of the forklift. The twenty-fourth image is a close-up of the forklift's forks. The twenty-fifth image is a side view of the forklift. The twenty-sixth image is a close-up of the forklift's forks. The twenty-seventh image is a side view of the forklift. The twenty-eighth image is a close-up of the forklift's forks. The twenty-ninth image is a side view of the forklift. The thirtieth image is a close-up of the forklift's forks.", - "id": 24771 - }, - { - "image_path": "G:\\images\\combined\\000000003804_jpg.rf.833b42c2ce1a895299430ca4462e14e7.jpg", - "response": "A black and white photo of a group of people standing on a dock next to a boat. There are also some trucks in the background.", - "id": 24772 - }, - { - "image_path": "G:\\images\\combined\\000000003804_jpg.rf.abb99f202ce19821849003e3170a40a4.jpg", - "response": "A black and white photo of a street scene. There is a bus in the background, a car in the middle right, and a person in the bottom right. There are also a few cups and a bowl in the bottom right corner.", - "id": 24773 - }, - { - "image_path": "G:\\images\\combined\\000000003804_jpg.rf.bbfcc85b72cf75a9d76961faca33cc43.jpg", - "response": " A black and white photo(4,5),(994,992) of a warehouse", - "id": 24774 - }, - { - "image_path": "G:\\images\\combined\\000000003817_jpg.rf.2eddc244ba020892a79b2a33e1df5d12.jpg", - "response": "A collage of images including a person carrying bananas on their back, a truck, a bowl, a dog, and a beach.", - "id": 24775 - }, - { - "image_path": "G:\\images\\combined\\000000003817_jpg.rf.6007202e7d71cd048bcc17bd8c26b7ec.jpg", - "response": "A black and white image with four different images cut out and pasted together. The top left image is of a man riding a horse and a cart full of bananas. The top right image is of a group of people standing around a white gazebo. The bottom left image is of a concrete wall with a black square cut out of it. The bottom right image is of a vase with a picture of a man on a horse on it.", - "id": 24776 - }, - { - "image_path": "G:\\images\\combined\\000000003817_jpg.rf.b5e705da3d2d66d2cff870cc2856f372.jpg", - "response": "A collage of images including a person walking down a road, a person carrying a large box, a person walking in front of a truck, and a person holding a baseball bat.", - "id": 24777 - }, - { - "image_path": "G:\\images\\combined\\000000003830_jpg.rf.31de34ad55636df67561662420a5f800.jpg", - "response": "A collage of images. Top left: cars driving on a street. Top right: a teddy bear and a handbag. Middle left: a white box. Middle right: a man sitting in a chair. Bottom: a black square", - "id": 24778 - }, - { - "image_path": "G:\\images\\combined\\000000003830_jpg.rf.3232675ffae960c8b14ebd6354eff45f.jpg", - "response": "A black and white image of a warehouse. On the left side of the image there are some pallets and a forklift. In the middle of the image there are some barrels and a person. On the right side of the image there are some more barrels.", - "id": 24779 - }, - { - "image_path": "G:\\images\\combined\\000000003830_jpg.rf.ccfb13161bb9858decc0cb17c9b083c7.jpg", - "response": "A black and white photo of a warehouse. There are several pallets of goods in the warehouse. Some are stacked on top of each other, and some are placed on the ground. There are also some boxes on the ground. In the background, there are cars driving by outside the warehouse. There are also some people visible in the warehouse.", - "id": 24780 - }, - { - "image_path": "G:\\images\\combined\\000000003837_jpg.rf.5312fc594bcc1ed25c3fbf71729c4e3d.jpg", - "response": "A black and white image of a beach scene with people walking along the water. There are buildings in the background and a pier. In the foreground, there are wooden pallets.", - "id": 24781 - }, - { - "image_path": "G:\\images\\combined\\000000003837_jpg.rf.c02473ab64767a70d769f62a426c459a.jpg", - "response": "A black and white photo of a boy sitting on a pile of suitcases. The suitcases are stacked on a forklift. There are other suitcases scattered around the scene. There is a lifeguard stand in the background. There are people in the background. There is a chair in the foreground.", - "id": 24782 - }, - { - "image_path": "G:\\images\\combined\\000000003837_jpg.rf.e22f966743d13037fd585ada087b7b77.jpg", - "response": "A collage of images. On the left is a woman in a bikini standing on a wooden pallet. In the middle is a sign for a doctor in thailand. On the right is a stack of wooden pallets.", - "id": 24783 - }, - { - "image_path": "G:\\images\\combined\\000000003849_jpg.rf.0993052580d84eb4370b8f5a640957c7.jpg", - "response": "A soccer player is in front of a goal with a soccer ball. There is a bus in the foreground.", - "id": 24784 - }, - { - "image_path": "G:\\images\\combined\\000000003849_jpg.rf.b9bc76c43549c3201d2403f777d7e96e.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a forklift in a warehouse. The top right photo is a black and white photo of a forklift on a concrete floor. The bottom left photo is a black and white photo of a flooded street. The bottom right photo is a close up of a chain link fence.", - "id": 24785 - }, - { - "image_path": "G:\\images\\combined\\000000003849_jpg.rf.f70b9ed524ef6d187f70a7ef51ad2b48.jpg", - "response": "A collage of images, including a highway, a bridge, and a warehouse.", - "id": 24786 - }, - { - "image_path": "G:\\images\\combined\\000000003860_jpg.rf.2aba1299d7aa81bc43e79632104eb0db.jpg", - "response": "A collage of four different images. The first is a black and white image of a person walking in a park. The second is a black and white image of a construction site. The third is a black and white image of a bookshelf with many books. The fourth is a black and white image of a car.", - "id": 24787 - }, - { - "image_path": "G:\\images\\combined\\000000003860_jpg.rf.2afa1191660276f5884bc899acedc8d1.jpg", - "response": "A collage of images including a dog, a table, a field, a building, and people in a park.", - "id": 24788 - }, - { - "image_path": "G:\\images\\combined\\000000003860_jpg.rf.ed55532fdfb6a53215a8d712ed59e820.jpg", - "response": "A collage of black and white images. The top image is of a park with a bench and a tree. The middle left image is of a man in a white shirt and black pants standing on a sidewalk. The middle right image is of a man in a white baseball uniform kneeling on a baseball field. The bottom left image is of a building with many windows. The bottom right image is of a man in a white baseball uniform with the number 44 on his shirt.", - "id": 24789 - }, - { - "image_path": "G:\\images\\combined\\000000003865_jpg.rf.4a0b9a7a9e475b4f132a6f3ef0471023.jpg", - "response": "A black and white photo of a bird flying in the sky.", - "id": 24790 - }, - { - "image_path": "G:\\images\\combined\\000000003865_jpg.rf.c6506fd5decada6577f146fb5cda6ce6.jpg", - "response": "A black and white photo of a warehouse with a forklift.", - "id": 24791 - }, - { - "image_path": "G:\\images\\combined\\000000003865_jpg.rf.faedd1fe5ceb83ffad5f2f320c6c4f7f.jpg", - "response": "A collage of four photos. The first is a black and white photo of a large room with a glass wall and a door. The second is a black and white photo of a forklift with a pallet of bricks. The third is a black and white photo of a group of people standing around a table. The fourth is a black and white photo of a fork lifting a pallet of bricks.", - "id": 24792 - }, - { - "image_path": "G:\\images\\combined\\000000003877_jpg.rf.08c6d8d1caeea1d188cc5546ded78dd0.jpg", - "response": "A collage of four black and white images. The first image is of a wooden table and a chair. The second image is of a motorcycle with a large bunch of bananas tied to the back. The third image is of a table full of dishes including bowls and plates. The fourth image is of a close up of the dishes.", - "id": 24793 - }, - { - "image_path": "G:\\images\\combined\\000000003877_jpg.rf.0e2ab2c8e7a9da8dca11f6b3ce05c33f.jpg", - "response": "A black and white photo of a room with a door and window. There are two pictures of a room with a table and a cart. There is a picture of a wooden pallet and a picture of a dolly.", - "id": 24794 - }, - { - "image_path": "G:\\images\\combined\\000000003877_jpg.rf.af27d9c0f57df3c2e60daada9e45a49e.jpg", - "response": "A collage of images including a woman in a bikini standing on wooden pallets, a group of people standing in a pool, a beach scene, and a crowd of people", - "id": 24795 - }, - { - "image_path": "G:\\images\\combined\\000000003897_jpg.rf.094595276dfbeb858aa6d6fea56656cd.jpg", - "response": "A black and white image of a giraffe in a zoo pin. The giraffe is in the top left corner of the image and is walking through a gate into its pin. The pin is a chain link fence. The giraffe has a very long neck and is very tall. The giraffe has brown spots on its body. The pin is surrounded by a parking lot with cars. There is a person standing in the bottom right corner of the image. They are wearing a white shirt and a hat. They are looking at the giraffe. There is a black square over the person's head. There is a building in the bottom left corner of the image. The building is small and has a shingled roof. There is a flag on the building. The flag is black and white and has a white circle in the middle. There is a ladder on the side of the building. There is a truck in the bottom right corner of the image. The truck is black and white. There is a mountain in the background.", - "id": 24796 - }, - { - "image_path": "G:\\images\\combined\\000000003897_jpg.rf.326b167d80de050f97b3966216ba1556.jpg", - "response": "A black and white photo of a warehouse with a forklift and a desk with a computer.", - "id": 24797 - }, - { - "image_path": "G:\\images\\combined\\000000003897_jpg.rf.3b752e7919843be696b5691480703e9e.jpg", - "response": "A black and white photo of a man surfing.", - "id": 24798 - }, - { - "image_path": "G:\\images\\combined\\000000003899_jpg.rf.302eb405cf56baee76e3a5d649230b28.jpg", - "response": "A black and white photo of a kitchen with a fridge, sink, oven and stairs.", - "id": 24799 - }, - { - "image_path": "G:\\images\\combined\\000000003899_jpg.rf.4d64cb8ebba304f9fdb05cf5b4175ca6.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person holding a sign that says \"It's Friday! Have a great weekend!\" The second is a black and white photo of a person standing in front of a door. The third is a black and white photo of a person standing on a street.", - "id": 24800 - }, - { - "image_path": "G:\\images\\combined\\000000003899_jpg.rf.ed309081ce8a71de4e44e1c8d02f0136.jpg", - "response": "A black and white photo of a kitchen. In the kitchen there is a refrigerator, a microwave, a sink, a chair, a bottle, a vase, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup, a bowl, a bottle, a cup", - "id": 24801 - }, - { - "image_path": "G:\\images\\combined\\000000003911_jpg.rf.1c5720ca36a0cabde5ac105611e7a201.jpg", - "response": "A black and white image divided into four quadrants. In the top left quadrant, a dog is eating food off a plate. In the top right quadrant, a man is walking through a forest. In the bottom left quadrant, a box is shown with two black squares on it. In the bottom right quadrant, a wooden box is shown with a black square on it.", - "id": 24802 - }, - { - "image_path": "G:\\images\\combined\\000000003911_jpg.rf.75b195baea152adaf7e67c557b008b3e.jpg", - "response": "A forklift is moving a pallet of material.", - "id": 24803 - }, - { - "image_path": "G:\\images\\combined\\000000003911_jpg.rf.c0cc26c03de811f4fa2a78abc09b2eb6.jpg", - "response": "A collage of black and white images. The top left image is a close up of a fork with a person's hand holding a piece of food. The top right image is a forklift. The bottom left image is a person walking in a warehouse. The bottom right image is a close up of a fork.", - "id": 24804 - }, - { - "image_path": "G:\\images\\combined\\000000003917_jpg.rf.3b7c18385a788ad01baa180a721ff31c.jpg", - "response": "A black and white photo of two people riding bikes. One person is wearing a white jacket and is in the front of the picture. The other person is wearing a white jacket and is in the back. They are riding bikes and are both wearing helmets. They are riding on a road with grass on either side. There is a box of 6 in the bottom right corner. There are two bowls of food in the top left corner. One is a clear bowl with a black square over the top and the other is a clear bowl with a black square over the top and a spoon in it. There is also a tray with a black square over the top.", - "id": 24805 - }, - { - "image_path": "G:\\images\\combined\\000000003917_jpg.rf.53cce5ba2e1c9a5eb23bae6e694a6b5d.jpg", - "response": "A collage of images including a bus, a store front, a black and white photo of a store, and a sign that says \"Connecting Happiness\".", - "id": 24806 - }, - { - "image_path": "G:\\images\\combined\\000000003917_jpg.rf.6f083f1f04132ec409bbcb071172fc7d.jpg", - "response": "A collage of images including a forklift, boxes, a truck, a person diving into a pool, and a plate of food.", - "id": 24807 - }, - { - "image_path": "G:\\images\\combined\\000000003920_jpg.rf.956b36c308d4854a9c18d635bb0113e5.jpg", - "response": "A man is surfing on a wave in the ocean. He is wearing a black shirt and is crouching low on a surfboard.", - "id": 24808 - }, - { - "image_path": "G:\\images\\combined\\000000003920_jpg.rf.c31366bb98193abe83cff6dcccacad85.jpg", - "response": "A collage of black and white images of a man and a truck.", - "id": 24809 - }, - { - "image_path": "G:\\images\\combined\\000000003920_jpg.rf.edb15e6bcae5783d2d6b16fe17d8e9e6.jpg", - "response": "A black and white photo of a shipyard. A ship is being built in the background. In the foreground, a person is standing in front of a wall.", - "id": 24810 - }, - { - "image_path": "G:\\images\\combined\\000000003938_jpg.rf.a2d8cf45faf2c694b99e74ace15d37e5.jpg", - "response": "A black and white photo of a fence with a sign that says Tri-City Fence Company.", - "id": 24811 - }, - { - "image_path": "G:\\images\\combined\\000000003938_jpg.rf.da7d1d436e7b664fb7704d037d64a83e.jpg", - "response": "A collage of black and white photos. The top left photo is of a woman with her back to the camera, wearing a black sweater. The top right photo is of a room with a couch, a chandelier, and a painting on the wall. The bottom left photo is of a person holding a cell phone with the word \"Still\" on the back. The bottom right photo is of a person sitting on a couch with their hand on the back of the couch.", - "id": 24812 - }, - { - "image_path": "G:\\images\\combined\\000000003938_jpg.rf.dbc8764056f6a4b04c17d3afcf579ebf.jpg", - "response": "A collage of black and white images. On the top left is a person in a suit holding a gun and pointing it at a laptop. On the top right is a street at night with a car parked on the side. In the bottom left is a person in a wheelchair in front of a laptop. In the bottom right is a woman holding a remote in front of a laptop.", - "id": 24813 - }, - { - "image_path": "G:\\images\\combined\\000000003939_jpg.rf.131f6d3458a3284479d18b07ed2dbc8a.jpg", - "response": "A black and white photo of a warehouse with a forklift in the middle of it. The forklift is moving boxes and is in the process of moving a pallet. There are multiple boxes scattered around the warehouse and a person is visible in the background.", - "id": 24814 - }, - { - "image_path": "G:\\images\\combined\\000000003939_jpg.rf.4b69d29176b71f463e69c678bdd6459a.jpg", - "response": "A collage of images of children and trucks.", - "id": 24815 - }, - { - "image_path": "G:\\images\\combined\\000000003939_jpg.rf.e76fdc633199829503adf56f111ff0fb.jpg", - "response": "A collage of four pictures. The top left picture is a black and white picture of a toddler sitting on a woman's lap. The toddler is holding a cup. The top right picture is a black and white picture of a woman standing in front of a door. The bottom left picture is a black and white picture of a crowd of people standing in front of a building. The bottom right picture is a black and white picture of a warehouse.", - "id": 24816 - }, - { - "image_path": "G:\\images\\combined\\000000003964_jpg.rf.48d19e5c87b5c22a15aa05c26d34d777.jpg", - "response": "A collage of images including a brick wall, a forklift, a box, a tennis racket, a box, and some kegs.", - "id": 24817 - }, - { - "image_path": "G:\\images\\combined\\000000003964_jpg.rf.5ecd393e535f403ad31b36c79dfd06b0.jpg", - "response": "A collage of black and white photos. In the top left photo, a person is holding a basket on their shoulder. In the top right photo, a man is looking to the right. In the bottom left photo, a person is standing on a dock. In the bottom right photo, a person is standing in front of a fence.", - "id": 24818 - }, - { - "image_path": "G:\\images\\combined\\000000003964_jpg.rf.e288e70db5401a8ea5410cca78f35da6.jpg", - "response": "A collage of images including a man holding a frisbee, a brick wall, a person wearing a hat and a truck.", - "id": 24819 - }, - { - "image_path": "G:\\images\\combined\\000000003988_jpg.rf.72fab1793b1b4912dc3dc22b992ca13e.jpg", - "response": "A newspaper with the headline Connecting Happiness.", - "id": 24820 - }, - { - "image_path": "G:\\images\\combined\\000000003988_jpg.rf.a9a181e257a6a193703a212c6b761a13.jpg", - "response": "A collage of four different photos. The first is a black and white photo of a little girl holding a teddy bear. The second is a black and white photo of a bicycle with a basket. The third is a black and white photo of a cat's face. The fourth is a black and white photo of a woman's face.", - "id": 24821 - }, - { - "image_path": "G:\\images\\combined\\000000003988_jpg.rf.e13e8859da5c3de5ad50d669929b975d.jpg", - "response": "A collage of four photos. In the first, a person is riding a bicycle with a basket in the front. In the second, a woman is rowing a boat with a child. In the third, a person is surfing a wave in the ocean. In the fourth, a person is walking on a ramp with a skateboard.", - "id": 24822 - }, - { - "image_path": "G:\\images\\combined\\000000003995_jpg.rf.3610e3f2e2176887cea9e668b41dcd77.jpg", - "response": "People(572,339),(672,606)(366,388),(432,556)(246,383),(337,586) playing frisbee on a field", - "id": 24823 - }, - { - "image_path": "G:\\images\\combined\\000000004020_jpg.rf.25a43b10da79db04c25bcfddfdb16d2e.jpg", - "response": "A man hitting a tennis ball with a tennis racquet on a tennis court.", - "id": 24824 - }, - { - "image_path": "G:\\images\\combined\\000000004021_jpg.rf.0931c437405d8e0d1bc7c78b112cb5cb.jpg", - "response": "A black and white image showing a baseball game in progress. There are four people on the field, two of them wearing baseball uniforms with the number 44 and 45 on the back. One of the players is running towards a base, while the other is standing next to it. There is a truck in the background filled with boxes. In a separate image, a hand is holding a box with the word \"Vitabiotics\" on it. Another image shows a close-up of the box, with the Vitabiotics logo and some text visible.", - "id": 24825 - }, - { - "image_path": "G:\\images\\combined\\000000004021_jpg.rf.57edad27f3b432b1b1cbc1e35529c76e.jpg", - "response": "A collage of sports photos including a soccer player kicking a ball, a baseball player swinging a bat, and a lacrosse player holding a stick.", - "id": 24826 - }, - { - "image_path": "G:\\images\\combined\\000000004021_jpg.rf.66ea410d5777d22f4d1868a9376b3db4.jpg", - "response": "A collage of different baseball players and fans.", - "id": 24827 - }, - { - "image_path": "G:\\images\\combined\\000000004042_jpg.rf.02db33e46a195602847a201fa7454c36.jpg", - "response": "A black and white image with four different images arranged in a square. The first image is of a person in a white shirt and black pants holding a baseball bat. The second image is of a person in a white shirt and black pants holding a baseball glove. The third image is of a pile of bottles of water. The fourth image is of a person surfing in the ocean.", - "id": 24828 - }, - { - "image_path": "G:\\images\\combined\\000000004042_jpg.rf.1e529469406415b2556b930be48eacf9.jpg", - "response": "A black and white image of a warehouse with a forklift in the middle of the room. The forklift is in the center of the image and has a large monitor on the front. To the left of the forklift are stacks of boxes. To the right of the forklift is a man wearing a white shirt and a hat. He is looking at a large screen. To the right of the man is a couch.", - "id": 24829 - }, - { - "image_path": "G:\\images\\combined\\000000004042_jpg.rf.6f5a4e4d1db395e925c6c4c50ec268b8.jpg", - "response": "A collage of four pictures. The first is a black and white picture of a baseball player in a white uniform with a black glove. The second is a black and white picture of a giraffe standing in a fenced in area. The third is a black and white picture of a box with the word encore on it. The fourth is a black and white picture of a group of people sitting on bleachers.", - "id": 24830 - }, - { - "image_path": "G:\\images\\combined\\000000004065_jpg.rf.0ef151324a21cdc9a6d80ae89af5e5d3.jpg", - "response": "A collage of three photos. The top photo is a woman smiling and wearing glasses. The middle photo is a close up of a lamp with the OKD logo. The bottom photo is a close up of a box with black squares on it.", - "id": 24831 - }, - { - "image_path": "G:\\images\\combined\\000000004065_jpg.rf.18ba39f295e57f48ac6d970af44d248e.jpg", - "response": "A black and white image of a woman standing in front of a stack of wooden pallets. The woman is wearing glasses, a black shirt, and a necklace. She has blonde hair and is smiling. The pallets are stacked in front of her and behind her. There is a box on top of the pallets. The woman is also holding a box in her hand. There are four black squares on the right side of the image, representing four more pallets.", - "id": 24832 - }, - { - "image_path": "G:\\images\\combined\\000000004065_jpg.rf.7380a481e7f37dd909317518314a91e6.jpg", - "response": "A black and white photo of a table with wine glasses and cutlery. There is also a sign for a doctor and a phone.", - "id": 24833 - }, - { - "image_path": "G:\\images\\combined\\000000004066_jpg.rf.1ce26f2d85d455af6d65956e434d0cb8.jpg", - "response": "A collage of four black and white images. The first is a man surfing a wave in the ocean. The second is a close up of a box on a conveyor belt. The third is a person's feet propped up on a wall. The fourth is a hand holding a book.", - "id": 24834 - }, - { - "image_path": "G:\\images\\combined\\000000004066_jpg.rf.b68434a529e2e3954d95b02e216256cc.jpg", - "response": "A collage of four photos. In the top left photo, a woman is walking on the beach with waves crashing behind her. In the top right photo, a man is walking up a flight of stairs. In the bottom left photo, a woman is walking on a sidewalk with a shadow of a cat behind her. In the bottom right photo, a man is playing tennis with a racquet in his hand.", - "id": 24835 - }, - { - "image_path": "G:\\images\\combined\\000000004066_jpg.rf.bba58b9494f8a291fd629d5df9025c2d.jpg", - "response": "A black and white photo collage of a surfer, a forklift, a brick wall, and a box.", - "id": 24836 - }, - { - "image_path": "G:\\images\\combined\\000000004068_jpg.rf.a0da3b8d251a89740da7d1889559250e.jpg", - "response": "A collage of images including a pallet, a barcode and a fire.", - "id": 24837 - }, - { - "image_path": "G:\\images\\combined\\000000004068_jpg.rf.ba3ecbd415179bdb3bc4ba6ffa3e49ca.jpg", - "response": "A black and white photo of a building.", - "id": 24838 - }, - { - "image_path": "G:\\images\\combined\\000000004068_jpg.rf.e0c88be97861cd8623905e7d30c3220f.jpg", - "response": "A black and white image showing a man standing next to a parked truck. The truck is a semi tractor trailer and is parked in a lot. The man is wearing a dark colored shirt and dark pants. He is standing next to the truck and appears to be looking at it. The truck has 4 large tires visible in the image. There are 3 other people in the image, all of them are standing further away from the truck. One of them is wearing a white shirt and dark pants, the other two are wearing dark colored shirts and dark pants.", - "id": 24839 - }, - { - "image_path": "G:\\images\\combined\\000000004080_jpg.rf.0f57807671e52b611ec86e921e62dae0.jpg", - "response": "A collage of black and white images including a group of men with a camel in front of a store front that says \"Wrestling\", a street with cars and a truck, and a person holding a camera.", - "id": 24840 - }, - { - "image_path": "G:\\images\\combined\\000000004080_jpg.rf.7cadb8eeb3579a2cafb77507a5bc04bb.jpg", - "response": "A collage of images including a black and white photo of a person holding a sign, a cow, a truck, a building and a group of people walking on a beach.", - "id": 24841 - }, - { - "image_path": "G:\\images\\combined\\000000004080_jpg.rf.c7dd6ed8144d4ca14f8170f30d201630.jpg", - "response": "A collage of black and white images of a large industrial machine in a factory", - "id": 24842 - }, - { - "image_path": "G:\\images\\combined\\000000004092_jpg.rf.6e7a9282efbf4921472f8c16c5e4c1b3.jpg", - "response": "A collage of black and white images. On the left is a woman with short hair looking into the camera with her mouth open. She is wearing a t-shirt that says \"Tartuffe\" in bold letters. In front of her is a table with a chair on wheels. On the right is a black square with a smaller square in the bottom right corner. Below that is a wooden pallet. In the top right corner is a black square with a smaller square in the bottom right corner.", - "id": 24843 - }, - { - "image_path": "G:\\images\\combined\\000000004092_jpg.rf.b922b46403d741be12fc37ea35536b99.jpg", - "response": "A collage of a little girl and a dog.", - "id": 24844 - }, - { - "image_path": "G:\\images\\combined\\000000004092_jpg.rf.c4275557b1dacb87ce483d1ba8c21e80.jpg", - "response": "A collage of images including a person, a pile of wooden pallets, a box, and a person standing on a scale.", - "id": 24845 - }, - { - "image_path": "G:\\images\\combined\\000000004093_jpg.rf.29a091132b3b1ffbb0983a1f78e46f40.jpg", - "response": "A collage of black and white images. The top left image is a close up of a chain link fence. The top right image is a close up of a hanging triangle. The bottom left image is a pile of trash behind a fence. The bottom right image is a man standing in a warehouse.", - "id": 24846 - }, - { - "image_path": "G:\\images\\combined\\000000004093_jpg.rf.85f42c31ac035ed9c73da26599e54cc7.jpg", - "response": "A black and white photo of a building under construction. The image shows a large truck backed up to a wall of a building, with a forklift moving large pieces of concrete towards the truck. The concrete appears to be square and is stacked on the truck. There is a fence in the foreground and a person is visible in the bottom left of the image.", - "id": 24847 - }, - { - "image_path": "G:\\images\\combined\\000000004093_jpg.rf.a44abcf3bc3563a38a5824c0e88f2d08.jpg", - "response": "A collage of three pictures. The top picture is of a giraffe standing in a pin with a building behind it. The middle picture is of a box with the recycle logo on it. The bottom picture is of a giraffe standing in a pin with a building behind it.", - "id": 24848 - }, - { - "image_path": "G:\\images\\combined\\000000004108_jpg.rf.176b5c0990adfa6ead454940648debbb.jpg", - "response": "A black and white photo of a collage of images. The images include a table with hot dogs and drinks, a pile of sandbags, a street light, a fork on a plate, a forklift, and a crowd of people.", - "id": 24849 - }, - { - "image_path": "G:\\images\\combined\\000000004108_jpg.rf.9cac0f4852cb6445edcd0df0d1415634.jpg", - "response": "A collage of four black and white images. The top right image is of a wooden bench with a pillow on it. The top left image is of a table with plates of food and a cake. The bottom left image is of a wooden bench with black squares over the legs. The bottom right image is of a man reaching up to a box.", - "id": 24850 - }, - { - "image_path": "G:\\images\\combined\\000000004108_jpg.rf.dc7a8aacce82a8b7eea3827047098121.jpg", - "response": "A collage of images including a dog with a frisbee in its mouth, a woman throwing a frisbee, a pallet of food, and a black square", - "id": 24851 - }, - { - "image_path": "G:\\images\\combined\\000000004130_jpg.rf.a6db55b3262923457afc64c0f05874df.jpg", - "response": "A black and white photo of a bus parked on the side of a road.", - "id": 24852 - }, - { - "image_path": "G:\\images\\combined\\000000004131_jpg.rf.96bdf9ec7b859563d637cf79fe570eab.jpg", - "response": "A collage of black and white photos of a skateboarder performing tricks.", - "id": 24853 - }, - { - "image_path": "G:\\images\\combined\\000000004131_jpg.rf.aecb4977e077fa3e563e35e67fedaaf0.jpg", - "response": "A collage of black and white images. Top left corner is a close up of a baseball glove, top right corner is a close up of a suitcase. Bottom left corner is a close up of a wooden pallet. Bottom right corner is a street scene with a motorcycle and a person sitting on the sidewalk. In the middle, left side is a building with a sign that says \"Cineaste\" and a sign that says \"Sala\". In the middle, right side is a building with a sign that says \"M\" on it.", - "id": 24854 - }, - { - "image_path": "G:\\images\\combined\\000000004131_jpg.rf.d994def3f81d19be20c6222c3b236bd2.jpg", - "response": "A collage of photos of people skateboarding and sitting on a bench.", - "id": 24855 - }, - { - "image_path": "G:\\images\\combined\\000000004138_jpg.rf.62cf513ff73318bf47076de2b9079957.jpg", - "response": "A man is doing a trick on a skateboard at a skate park. He is in the air and there is graffiti on the walls.", - "id": 24856 - }, - { - "image_path": "G:\\images\\combined\\000000004139_jpg.rf.262ba2e81d05ea00aa6468a5326676cf.jpg", - "response": "A collage of different images. In the top left corner, a person is walking on the beach. In the top right corner, a person is sitting on a toilet. In the bottom left corner, a car is shown in black and white. In the bottom center, a group of people are shown sitting on the beach under an umbrella. In the bottom right corner, a fork is shown on a table.", - "id": 24857 - }, - { - "image_path": "G:\\images\\combined\\000000004139_jpg.rf.59b958f26c59fe6061c53100c8f6eef0.jpg", - "response": "A black and white photo of a woman playing tennis. She is wearing a white tennis outfit and is holding a tennis racket in her right hand. She is in the middle of a swing, having just hit the ball. The ball is visible in the top left corner of the image. The woman is standing on a tennis court, which is made of concrete and has a thick white line running down the center. There are several boxes stacked up in the background, on the right side of the court. The woman's shadow is visible on the court, as is the shadow of the ball. The image is divided into four quadrants, with the tennis court taking up the top left quadrant, the bottom left quadrant showing a brick wall, the bottom right quadrant showing a window, and the top right quadrant showing a door.", - "id": 24858 - }, - { - "image_path": "G:\\images\\combined\\000000004139_jpg.rf.e8f45dc05be25d8864c2aafe14064b3c.jpg", - "response": "A collage of images including a woman walking on a beach, a woman standing in a kitchen, a forklift in a warehouse and a woman walking on a beach.", - "id": 24859 - }, - { - "image_path": "G:\\images\\combined\\000000004159_jpg.rf.810ddd2e36da836851287319ed924a3c.jpg", - "response": "A collage of images including a forklift, a person holding a pallet of boxes, a person in a suit, and a person walking.", - "id": 24860 - }, - { - "image_path": "G:\\images\\combined\\000000004159_jpg.rf.aa5f5613ca1a7fc0991feea6a775ae8c.jpg", - "response": "A person is standing next to a pallet with boxes on it.", - "id": 24861 - }, - { - "image_path": "G:\\images\\combined\\000000004159_jpg.rf.ab5231055e73b943cb8e5926bcfaa217.jpg", - "response": "A collage of four pictures, two of which show a warehouse and workers, one shows a person on a forklift and one shows a close up of a box.", - "id": 24862 - }, - { - "image_path": "G:\\images\\combined\\000000004172_jpg.rf.669200268d9278e76c578f658fb4e699.jpg", - "response": "A black and white photo of a crowd of people in a gym.", - "id": 24863 - }, - { - "image_path": "G:\\images\\combined\\000000004172_jpg.rf.eaa40139a220c963af0debb21f7074e4.jpg", - "response": "A collage of photos. One is of a crowd of people watching a basketball game. Another is of a man in a warehouse using a forklift. There is also a photo of a hand holding a basketball.", - "id": 24864 - }, - { - "image_path": "G:\\images\\combined\\000000004172_jpg.rf.f2334b334129f276ed01fe5e1f262af5.jpg", - "response": "A black and white collage of 4 photos. Top left photo is of a crowd of people watching a man in a jersey stand on a platform. Top right photo is of a person's feet on a yoga mat. Bottom left photo is of a person standing on a balance beam. Bottom right photo is of a person's feet on a skateboard.", - "id": 24865 - }, - { - "image_path": "G:\\images\\combined\\000000004175_jpg.rf.3d7e004fde23c81c03a20c5226cd1feb.jpg", - "response": "A black and white photo of a woman in front of a bookshelf.", - "id": 24866 - }, - { - "image_path": "G:\\images\\combined\\000000004175_jpg.rf.55e0e2e652ba40e9d8cabaf6e7710c58.jpg", - "response": "A collage of images including a black and white shot of a baseball field, a man throwing a baseball, a man running on a track, a man on a bicycle and a man on a motorcycle.", - "id": 24867 - }, - { - "image_path": "G:\\images\\combined\\000000004175_jpg.rf.c570f65bbfda039c8fc0aab635e6a1cb.jpg", - "response": "A collage of black and white images of a warehouse", - "id": 24868 - }, - { - "image_path": "G:\\images\\combined\\000000004180_jpg.rf.1c482b7de99b6e472719f832146584e8.jpg", - "response": "A collage of four pictures. The top left picture is a person sitting on the floor with a box in front of them. The top right picture is a close up of a box on a pallet. The bottom left picture is a close up of a wooden table. The bottom right picture is a close up of a robot on a pallet moving a box.", - "id": 24869 - }, - { - "image_path": "G:\\images\\combined\\000000004180_jpg.rf.9096181f28ce3dec05c8b2ab24b2a89a.jpg", - "response": "A collage of images including a boy, a hand holding a cellphone, a man wearing a watch, and a car.", - "id": 24870 - }, - { - "image_path": "G:\\images\\combined\\000000004180_jpg.rf.ed4ff4aaca10e8a7991f10b5b6254def.jpg", - "response": "A collage of images, including a forklift carrying a pallet of boxes, a chair, a table, and a trash can.", - "id": 24871 - }, - { - "image_path": "G:\\images\\combined\\000000004211_jpg.rf.0b5220a73d3634b2b17030fe6618d62e.jpg", - "response": "A collage of images including a heart, a bull, a person and a cow.", - "id": 24872 - }, - { - "image_path": "G:\\images\\combined\\000000004211_jpg.rf.d5a9b2ddf33cf86db6d41e83597e7f9f.jpg", - "response": "A collage of black and white images. There are images of people unloading boxes from a truck, boxes being loaded into a truck, and a truck with the word \"China\" on the side. There are also images of people standing around and a tent.", - "id": 24873 - }, - { - "image_path": "G:\\images\\combined\\000000004211_jpg.rf.d7472bdab5d442aa11b250a96908e043.jpg", - "response": "A collage of black and white images. The first is a man on a horse trying to lasso a cow. The second is a woman in a dress with a calf. The third is a close up of a wooden bridge. The fourth is a close up of a concrete block.", - "id": 24874 - }, - { - "image_path": "G:\\images\\combined\\000000004212_jpg.rf.4a0afedb9d30d189e473fd1d067bd7e7.jpg", - "response": "A black and white image with a number of features. There is a boat on the left side of the image, with a person on it. There is a bridge in the background. There are two people on the right side of the image, one closer to the top and one closer to the bottom. There is a person in the middle of the image, closer to the top. There is a building on the left side of the image, with a clock on it. There is a person walking on the right side of the image, closer to the bottom. There is a car on the right side of the image, closer to the top. There is a truck on the right side of the image, closer to the bottom. There is a person in the middle of the image, closer to the bottom. There is a person in the middle of the image, closer to the top. There is a car on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the bottom. There is a car on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of the image, closer to the top. There is a person on the left side of the image, closer to the bottom. There is a person on the left side of", - "id": 24875 - }, - { - "image_path": "G:\\images\\combined\\000000004212_jpg.rf.4e433d13b4af084f8b927b5701c0a650.jpg", - "response": "A collage of a man and a woman with a dog. The man is balding and wearing glasses. The woman has short hair and is wearing glasses. The dog is white with black spots. The man is sitting in a car. The woman is sitting in front of a brick wall. There is a book on the wall. The dog is sitting on the car. The photo is black and white.", - "id": 24876 - }, - { - "image_path": "G:\\images\\combined\\000000004212_jpg.rf.df020d04828a7eacae9aec9d8cf52077.jpg", - "response": "A black and white photo of a dog on a skateboard. The dog is laying on a skateboard with a wire coming out of its mouth. There is a person on the left side of the photo holding a skateboard. Another person is on the right side of the photo holding a skateboard. There is a person in the middle of the photo with their foot on a skateboard. There is a truck in the background. There are waves in the ocean. There is a person on the right side of the photo bending over. There is a person on the left side of the photo bending over. There is a person on the right side of the photo with their hand on a skateboard. There is a person on the left side of the photo with their hand on a skateboard.", - "id": 24877 - }, - { - "image_path": "G:\\images\\combined\\000000004219_jpg.rf.6424b064f73970db520a40bfdac00a6a.jpg", - "response": "A collage of black and white photos. In the top left photo a woman is sitting on the ground with a book and a bottle next to her. The top right photo is a close up of a person's legs wearing grey pants and black shoes on skis. The bottom left photo is a close up of a hand holding a remote. The bottom right photo is a close up of a person's legs on skis.", - "id": 24878 - }, - { - "image_path": "G:\\images\\combined\\000000004219_jpg.rf.9d9bc70c0a5910da2400dc168cf8c3ba.jpg", - "response": "A black and white image of a dock with a dog on a bench, a forklift, and a body of water.", - "id": 24879 - }, - { - "image_path": "G:\\images\\combined\\000000004219_jpg.rf.cc5bc36e821d6d3400438676888ec05b.jpg", - "response": "A black and white photo of a street scene. In the top left corner, two people are sitting on a bench. In the top right corner, a boat is in the water. In the bottom left corner, a truck is unloading boxes. In the bottom right corner, a white box is partially visible.", - "id": 24880 - }, - { - "image_path": "G:\\images\\combined\\000000004239_jpg.rf.100055674684fecd8306b06fbdc72db0.jpg", - "response": "A black and white photo of a baseball game. There are two baseball players on the field, one of them is the batter and the other is the catcher. The batter is in the process of swinging at the ball. There is a baseball in the air near the batter. The catcher is crouched down behind the batter. There are two baseball gloves in the scene, one is on the left side of the field and the other is on the right side of the field. There are two baseball bats in the scene, one is on the left side of the field and the other is on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right side of the field. There is a baseball glove on the left side of the field. There is a baseball glove on the right", - "id": 24881 - }, - { - "image_path": "G:\\images\\combined\\000000004239_jpg.rf.dec6bc523f3f8116d7699f6b020c032b.jpg", - "response": "A collage of three different images. The first is a black and white photo of a person in a black jacket doing a trick on a snowboard. The second is a black and white photo of a city street with cars driving down the road. The third is a black and white photo of a street corner with a traffic light and a box with the word \"safe\" on it.", - "id": 24882 - }, - { - "image_path": "G:\\images\\combined\\000000004239_jpg.rf.e6f4c29ca93807bbf524c9b41126f1fb.jpg", - "response": "A collage of black and white images. In the top left image, a man is walking a horse in a field. In the top right image, a man is working on a construction site. In the bottom left image, a horse is standing on a dirt road. In the bottom right image, a man is playing with a dog on a beach.", - "id": 24883 - }, - { - "image_path": "G:\\images\\combined\\000000004243_jpg.rf.02abee1d9f20871d1b23bf10b17bf3fd.jpg", - "response": "A collage of black and white images of a man working in a factory. There are images of machinery, tools, and people working.", - "id": 24884 - }, - { - "image_path": "G:\\images\\combined\\000000004243_jpg.rf.053b05bca7f7e3bb179dc0b50b82d3de.jpg", - "response": "A collage of black and white photos of children.", - "id": 24885 - }, - { - "image_path": "G:\\images\\combined\\000000004243_jpg.rf.b6cf63922d62039ffef97749aeaf2024.jpg", - "response": "A collage of a young boy, a fork, a forked piece of cake, and a fork on a plate.", - "id": 24886 - }, - { - "image_path": "G:\\images\\combined\\000000004244_jpg.rf.4052bbfb91f97e39e7e6ad35f4b03d4d.jpg", - "response": " The restaurant(4,7),(994,994) is located in the heart of the city.", - "id": 24887 - }, - { - "image_path": "G:\\images\\combined\\000000004244_jpg.rf.6e0e63daa28d18c95d66758bac466d03.jpg", - "response": "A black and white image of a warehouse with a man on a forklift. There are two forklifts in the image, one in the top left corner and one in the bottom right corner. The man on the forklift is wearing a white shirt and is in the process of loading a pallet. There is a computer monitor on the left side of the image and a TV on the right side of the image. The TV is turned on and is showing a video of a man driving a forklift. The image is split into four quadrants, with each quadrant showing a different view of the warehouse. The top left quadrant shows the man on the forklift, the top right quadrant shows the computer monitor, the bottom left quadrant shows the TV, and the bottom right quadrant shows the forklift in the warehouse.", - "id": 24888 - }, - { - "image_path": "G:\\images\\combined\\000000004244_jpg.rf.f3ceed51d03de4cc6c5b5a8a58a78504.jpg", - "response": "A black and white photo of a warehouse. There are 4 people in the photo, 2 are wearing white shirts and 2 are wearing black shirts. There is a fork lift in the middle of the photo and a person is on it. There is a person on the left side of the photo and a person on the right side of the photo. There is a shelf on the right side of the photo with 4 bottles on it.", - "id": 24889 - }, - { - "image_path": "G:\\images\\combined\\000000004259_jpg.rf.1a312cd30a64d6508204702f2d462740.jpg", - "response": " The blacked-out individuals(373,558),(748,996)(677,444),(996,996) are: a couple(677,4),(997,408), a woman, a man, and a man in a suit.", - "id": 24890 - }, - { - "image_path": "G:\\images\\combined\\000000004259_jpg.rf.6f2a575108727e60dc44f5234438c3ac.jpg", - "response": " A man(154,623),(320,997) in a suit(2,66),(320,628) and tie is walking down a street", - "id": 24891 - }, - { - "image_path": "G:\\images\\combined\\000000004259_jpg.rf.8f19b14c58ec504457f06bee5644cda0.jpg", - "response": "A collage of black and white photos. On the top left is a group of people standing around a table with a cake on it. On the top right is a man and a boy riding bikes. The bottom left is a close up of a person's feet with a sock on it. The bottom right is a living room with a window and a tv.", - "id": 24892 - }, - { - "image_path": "G:\\images\\combined\\000000004265_jpg.rf.d25e5380d56e27aca0ccec1af7b662ec.jpg", - "response": "A collage of three different images. The first is a black and white image of a street scene with a bus, the second is a close up of a surveillance camera and the third is a close up of a wall", - "id": 24893 - }, - { - "image_path": "G:\\images\\combined\\000000004265_jpg.rf.e4dd1605968804c4d627e1e0d8ad39c6.jpg", - "response": "A black and white image of a variety of different objects. There are two vases, one on the left and one on the right. In the middle, there is a person's head and shoulders, and a bicycle. Above the bicycle, there are three storage containers. To the right of the storage containers, there are four boxes with black squares over the top. To the left of the storage containers, there are two potted plants.", - "id": 24894 - }, - { - "image_path": "G:\\images\\combined\\000000004265_jpg.rf.fca3d60e079686ec4a450c788d1af176.jpg", - "response": "A collage of four black and white images. The top left image is of a window with a plant in front of it. The top right image is of a close up of a brick wall. The bottom left image is of a wooden pallet. The bottom right image is of a close up of a bicycle tire.", - "id": 24895 - }, - { - "image_path": "G:\\images\\combined\\000000004282_jpg.rf.0ba980199b025dda2b6113677f7cad31.jpg", - "response": "A black and white photo of a cat sitting on a table.", - "id": 24896 - }, - { - "image_path": "G:\\images\\combined\\000000004282_jpg.rf.1d804467c0bd2f362aaaf6278661d070.jpg", - "response": "A collage of images including a truck, a person unloading a truck, a pallet jack, a person loading a pallet into a truck, and a person standing next to a pallet of boxes.", - "id": 24897 - }, - { - "image_path": "G:\\images\\combined\\000000004282_jpg.rf.76eb9c644cecc004597a1bbd3d0dfead.jpg", - "response": "A black and white photo of a store with a forklift in the background.", - "id": 24898 - }, - { - "image_path": "G:\\images\\combined\\000000004286_jpg.rf.61cc726b2f3f8496c6418f8a6830e1ae.jpg", - "response": "A forklift moving wooden pallets in a warehouse.", - "id": 24899 - }, - { - "image_path": "G:\\images\\combined\\000000004286_jpg.rf.e5011142731cd4249f4d1172a49e92b2.jpg", - "response": "A black and white image of a forklift loading a truck with packages. There is a group of people walking in the background.", - "id": 24900 - }, - { - "image_path": "G:\\images\\combined\\000000004286_jpg.rf.fff26c2105f02a42dbc9ff88aa75c154.jpg", - "response": "A collage of images, including a giraffe in a field, a forklift on a road, plates of food on a table, and a person riding a horse.", - "id": 24901 - }, - { - "image_path": "G:\\images\\combined\\000000004289_jpg.rf.0f087819df2c03f209134556f284c298.jpg", - "response": "A forklift with a pallet of boxes on it is parked on a sidewalk.", - "id": 24902 - }, - { - "image_path": "G:\\images\\combined\\000000004289_jpg.rf.a156f2428271254a00f6bbbd8f84aa99.jpg", - "response": "A black and white photo of a street. People are walking on the sidewalk. There is a car parked on the street. There is a bench on the sidewalk.", - "id": 24903 - }, - { - "image_path": "G:\\images\\combined\\000000004289_jpg.rf.d7fe387c4f2c02c951aae3cb13fb0f27.jpg", - "response": "A collage of images including a street, a package, a forklift and a form with the title \"Connection Happiness\"", - "id": 24904 - }, - { - "image_path": "G:\\images\\combined\\000000004309_jpg.rf.1817d7974337db842dd9b6b4fe3c3dcc.jpg", - "response": "A black and white photo of a city street with a car driving by. There is a crosswalk and a traffic light. There is also a stone wall and a stone pillar.", - "id": 24905 - }, - { - "image_path": "G:\\images\\combined\\000000004309_jpg.rf.3d5d2cff549da105825a6f216ce48b3b.jpg", - "response": "A collage of different forklifts in a warehouse.", - "id": 24906 - }, - { - "image_path": "G:\\images\\combined\\000000004309_jpg.rf.b78ca7c8f9eb6b924a9fabd89811bd91.jpg", - "response": "A black and white image of a warehouse with a large box in the foreground. The box is white with a wifi smart camera logo on it. The warehouse has several tall shelves on the left side of the image and a door in the background. There is a balloon in the top center of the image.", - "id": 24907 - }, - { - "image_path": "G:\\images\\combined\\000000004312_jpg.rf.49a81db0749ef0cbf14aa17227d90333.jpg", - "response": "A collage of different images. On the left is a close up of a person's hand holding a pair of skis. Above that is a picture of a person's hand holding a glove. Above that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift in a warehouse. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person's hand holding a ski. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile of skis. Below that is a picture of a forklift. Below that is a picture of a person standing on a pile", - "id": 24908 - }, - { - "image_path": "G:\\images\\combined\\000000004312_jpg.rf.bc21054c8c3acfb05ebc09de641d520d.jpg", - "response": "A collage of images including a man holding a camera, a man standing in a forest, a person sitting in a chair, and a building.", - "id": 24909 - }, - { - "image_path": "G:\\images\\combined\\000000004312_jpg.rf.e302c7577e64d890d1833832a2ba1e0d.jpg", - "response": "A collage of two forklifts in a warehouse. One forklift is driving down the aisle and the other is parked on the right side of the image. There is a person in the top left corner of the image holding a camera. The image is black and white.", - "id": 24910 - }, - { - "image_path": "G:\\images\\combined\\000000004331_jpg.rf.b98b78ea8459b1ea590391dbe569b3b2.jpg", - "response": "A woman with a bicycle is getting off a bus.", - "id": 24911 - }, - { - "image_path": "G:\\images\\combined\\000000004355_jpg.rf.6a564676518678a0ed0424701d96db21.jpg", - "response": "A collage of different vehicles including a forklift, a motorcycle, a car, and a truck.", - "id": 24912 - }, - { - "image_path": "G:\\images\\combined\\000000004355_jpg.rf.faf6ed67b41809e877e760efb2c291dd.jpg", - "response": "A collage of black and white images. The top left image is of a man wearing a gas mask and riding a motorcycle. The top right image is a close up of a tree. The bottom left image is of a deck with a wooden bench. The bottom right image is of a suitcase on a sidewalk.", - "id": 24913 - }, - { - "image_path": "G:\\images\\combined\\000000004355_jpg.rf.fb13ed9f3c3085a18e5f3df8929a7d43.jpg", - "response": "A collage of images, including a person sitting on a motorcycle, a pallet of boxes, a close-up of a hand holding a smartphone, and a dog looking out of a window.", - "id": 24914 - }, - { - "image_path": "G:\\images\\combined\\000000004359_jpg.rf.09de393680f338e61635629240290efe.jpg", - "response": "A collage of images including a boy on a baseball field, a group of people on a subway platform, a man with glasses holding a wallet, a toddler holding a ball, and a baseball player throwing a ball.", - "id": 24915 - }, - { - "image_path": "G:\\images\\combined\\000000004359_jpg.rf.9e818db6f426e948d2e8c3df8448f566.jpg", - "response": "The image is a black and white photograph of a parking lot. There are two cars parked in the lot, one on the left and one on the right. The car on the left is a small white car, and the car on the right is a small black car. There is a building in the background, and a forklift is parked in front of it. The building has a loading dock, and there is a handrail next to it. The building is next to a parking garage, and there are two other cars parked in the garage. There is a bench in front of the building.", - "id": 24916 - }, - { - "image_path": "G:\\images\\combined\\000000004359_jpg.rf.a9df2bda43a9ca6e7ff31ad30858d331.jpg", - "response": "A collage of black and white images. The top left image is of a woman in a white shirt holding a white bag. The top right image is of a woman in a white shirt sitting in a large body of water. The bottom left image is of a man in a white shirt with the number 8 on the back of it. The bottom right image is a black square with a white square in the bottom right corner.", - "id": 24917 - }, - { - "image_path": "G:\\images\\combined\\000000004360_jpg.rf.07cdd3f0ba0ab31fabb2a7d36efbb5af.jpg", - "response": "A black and white photo of a bunch of different things. There is a bus, a box from Amazon, a building, a bike, a skateboard, a handbag, a bottle, a pair of shoes, a shoe box, and a couple of people.", - "id": 24918 - }, - { - "image_path": "G:\\images\\combined\\000000004360_jpg.rf.20d2fad4ec6c267116bafa01789f199e.jpg", - "response": "A collage of black and white photos. Top left photo is of a truck tire. Top right photo is of a forklift. Middle left photo is of a pile of wooden pallets. Middle right photo is of a woman wearing a helmet and holding ski poles. Bottom left photo is of a man standing in front of a forklift. Bottom right photo is of a woman wearing ski goggles and a black jacket.", - "id": 24919 - }, - { - "image_path": "G:\\images\\combined\\000000004360_jpg.rf.c0c2d8a665717d5810098a8e2a4d886b.jpg", - "response": "A collage of four black and white images. The top left image is of a man with a beard and a black hat standing in front of a bus. The top right image is of a man standing in the doorway of a bus. The bottom left image is of a pile of garbage on the ground. The bottom right image is of a wire cage.", - "id": 24920 - }, - { - "image_path": "G:\\images\\combined\\000000004375_jpg.rf.7aa29b1d6d428db7ee6bb04a18be64ca.jpg", - "response": "A black and white photo of a ski resort. There is a large group of people standing around in the snow, some of them are wearing skis. In the background, there is a ski lodge and several signs. The sky is grey and overcast.", - "id": 24921 - }, - { - "image_path": "G:\\images\\combined\\000000004376_jpg.rf.80af059af03a75742881d439ef8caaa4.jpg", - "response": "A collage of black and white images. The top left image is of a woman sitting at a table with bananas. The top right image is of a woman holding a black square over another woman's face. The bottom left image is of a woman with blonde hair tied with rope. The bottom right image is of a woman's foot with a rope tied around it.", - "id": 24922 - }, - { - "image_path": "G:\\images\\combined\\000000004376_jpg.rf.9508062d2bba953866a47fed844517a7.jpg", - "response": "A collage of black and white images. There is a man sitting on a pile of bananas, a giraffe at a zoo, a boy eating ice cream, a dead animal on the ground, a man with a camera, a crowd of people, a man on a bike, a bird flying, and a man feeding a giraffe.", - "id": 24923 - }, - { - "image_path": "G:\\images\\combined\\000000004376_jpg.rf.eb114e59d6235d4833d9215f0015b347.jpg", - "response": "A collage of black and white images, including a book, a baseball player, a person reading a book, a person eating a bag of chips, and a person using a computer.", - "id": 24924 - }, - { - "image_path": "G:\\images\\combined\\000000004377_jpg.rf.328a94b0091e8c4a0b4a43ac0bff72f0.jpg", - "response": "A collage of black and white images. The top left image shows a person standing in a yard with a white picket fence in the background. The top right image is a close up of a runway at an airport. The bottom left image is a close up of wooden pallets. The bottom right image is a woman standing in a field holding a camera.", - "id": 24925 - }, - { - "image_path": "G:\\images\\combined\\000000004377_jpg.rf.76f4751ee09be93f13df896f152bca1a.jpg", - "response": "A collage of black and white images of people working with wood. One image shows two people working on a wooden fence, another shows a man standing in front of a pallet of wood, and the third shows a close up of a block of wood.", - "id": 24926 - }, - { - "image_path": "G:\\images\\combined\\000000004377_jpg.rf.f7148e10fcb82373d0a20b62b9e230ea.jpg", - "response": "A collage of three photos. The top left photo is of a man putting a small ball into a well. The top right photo is of a stack of cardboard boxes. The bottom right photo is of a woman with glasses smiling.", - "id": 24927 - }, - { - "image_path": "G:\\images\\combined\\000000004386_jpg.rf.56a4132973ae94e07f9aae99c5d01050.jpg", - "response": "A black and white photo of a table with a plate of food on it. The plate has pizza on it. There is a person sitting at the table. There is a zebra standing in the mud. There is a person sitting on a bench. There is a truck in the background. There is a black square over the zebra's tail. There is a black square over the mud. There is a black square over the bench.", - "id": 24928 - }, - { - "image_path": "G:\\images\\combined\\000000004386_jpg.rf.b63cd6a8f9ac032fcdfd856ad82311b9.jpg", - "response": "A black and white photo with four different images. The first is a close up of a person's feet wearing sneakers. The second is a close up of a person's jeans. The third is a close up of a table with a wallet, keys, and a cell phone. The fourth is a close up of a desk with a computer mouse and keyboard.", - "id": 24929 - }, - { - "image_path": "G:\\images\\combined\\000000004386_jpg.rf.efbe0fc193694395e5efeab10760d6ad.jpg", - "response": "A collage of four different black and white images. The first image is of a man lying on the ground with a log on top of him. The second image is of a forklift in a muddy field. The third image is of a pallet. The fourth image is of a pallet with a fork on it.", - "id": 24930 - }, - { - "image_path": "G:\\images\\combined\\000000004421_jpg.rf.1733e75fd548169c0a52463508c1f763.jpg", - "response": "A group of people standing in a kitchen.", - "id": 24931 - }, - { - "image_path": "G:\\images\\combined\\000000004426_jpg.rf.0ef15fb2f10607699c94a38fc7cae6e0.jpg", - "response": "A collage of black and white images. In the top left image, a fire hydrant is shown with a black square over the center of it. In the top right image, a black square is over a door. In the top middle image, a black square is over a sink. In the bottom left image, a person is walking down a street with a black square over their head. In the bottom right image, two people are walking down a street with a black square over their heads.", - "id": 24932 - }, - { - "image_path": "G:\\images\\combined\\000000004426_jpg.rf.1d6cdcfd62c1e4344aed1df5d959b341.jpg", - "response": "A black and white photo of a street. There is a car parked on the street. There is a fire hydrant on the sidewalk. There is a house on the corner. There is a fence around the house. There is a stop sign on the corner. There is a street sign on the corner. There is a crosswalk on the street. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a black square on the street. There is a triangle on the street. There is a stop sign on the street. There is a house on the corner. There is a fence around the house. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk. There is a bench on the sidewalk. There is a handbag on the bench. There is a person walking on the sidewalk", - "id": 24933 - }, - { - "image_path": "G:\\images\\combined\\000000004426_jpg.rf.90c526a80748e9aeb609c16a68f41545.jpg", - "response": "A black and white image with a number of different images cut out and pasted in. There is a person walking in a building, a car, a person on a bike and a person with a skateboard.", - "id": 24934 - }, - { - "image_path": "G:\\images\\combined\\000000004428_jpg.rf.2caf0b6d533a8a3fbadba9280f084d7f.jpg", - "response": "A black and white image of a forklift driver and a pallet of goods. The pallets are stacked and have a white label on them. There is a person in the background wearing a hat and a black shirt. There is a person in the background wearing a white shirt and a tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a person in the background wearing a white shirt and a black tie. There is a", - "id": 24935 - }, - { - "image_path": "G:\\images\\combined\\000000004428_jpg.rf.b97a62008fafe1a7d8f10eb47561d495.jpg", - "response": "A collage of black and white images. From left to right, the images are of a man in a chef's outfit, a woman holding a tennis racket, a man in a suit, a woman in a dress, and a man in a hat.", - "id": 24936 - }, - { - "image_path": "G:\\images\\combined\\000000004428_jpg.rf.df05b6221855f2c434fca1645d634e69.jpg", - "response": "A collage of different images including a chef, a bed, a girl and a turkey.", - "id": 24937 - }, - { - "image_path": "G:\\images\\combined\\000000004441_jpg.rf.2e2aac333af5bc7aca1925c877a7288e.jpg", - "response": "A collage of images including a man wearing a mask, a package with the letters EPAL on it, and pallets of packages.", - "id": 24938 - }, - { - "image_path": "G:\\images\\combined\\000000004441_jpg.rf.63037eb5a7398edbbd0e568f26095ea0.jpg", - "response": "A collage of a boy holding a phone, a car, and wooden pallets.", - "id": 24939 - }, - { - "image_path": "G:\\images\\combined\\000000004441_jpg.rf.f901291ddcd74560390f0cbefc061378.jpg", - "response": "A collage of images including a child, an open book, a computer screen, a crowd of people with umbrellas, and a sign.", - "id": 24940 - }, - { - "image_path": "G:\\images\\combined\\000000004442_jpg.rf.5670542bf28f35d214ae5afb3436e2eb.jpg", - "response": "A collage of images including a girl sitting on a bed, a man skateboarding and a man looking sad.", - "id": 24941 - }, - { - "image_path": "G:\\images\\combined\\000000004442_jpg.rf.92ef835c351df904ef4a4438136c7dbc.jpg", - "response": "A collage of black and white images. The first image is a close up of a bed with a pillow and a blanket. The second image is a man pulling a pallet truck. The third image is a close up of a bed with a person lying on it. The fourth image is a close up of a bed with a person lying on it. The fifth image is a close up of a bed with a person lying on it. The sixth image is a close up of a bed with a person lying on it. The seventh image is a close up of a bed with a person lying on it. The eighth image is a close up of a bed with a person lying on it. The ninth image is a close up of a bed with a person lying on it. The tenth image is a close up of a bed with a person lying on it. The eleventh image is a close up of a bed with a person lying on it. The twelfth image is a close up of a bed with a person lying on it. The thirteenth image is a close up of a bed with a person lying on it. The fourteenth image is a close up of a bed with a person lying on it. The fifteenth image is a close up of a bed with a person lying on it. The sixteenth image is a close up of a bed with a person lying on it. The seventeenth image is a close up of a bed with a person lying on it. The eighteenth image is a close up of a bed with a person lying on it. The nineteenth image is a close up of a bed with a person lying on it. The twentieth image is a close up of a bed with a person lying on it. The twenty-first image is a close up of a bed with a person lying on it. The twenty-second image is a close up of a bed with a person lying on it. The twenty-third image is a close up of a bed with a person lying on it. The twenty-fourth image is a close up of a bed with a person lying on it. The twenty-fifth image is a close up of a bed with a person lying on it. The twenty-sixth image is a close up of a bed with a person lying on it. The twenty-seventh image is a close up of a bed with a person lying on it. The twenty-eighth image is a close up of a bed with a person lying on it. The twenty-ninth image is a close up of a", - "id": 24942 - }, - { - "image_path": "G:\\images\\combined\\000000004442_jpg.rf.eafa15a75f45bb8a2a259a7bafd190a6.jpg", - "response": "A collage of black and white images. The top left image is of a girl sitting on a couch with a handbag. The top right image is of a dining table and a chair. The bottom left image is of a baseball player. The bottom right image is of a block puzzle.", - "id": 24943 - }, - { - "image_path": "G:\\images\\combined\\000000004444_jpg.rf.1223b18979dfde803e7de432c219eb5c.jpg", - "response": "A collage of three photos. The top photo is of a roof of a building with wooden slats. The middle photo is of a man in a white shirt sitting on a bench. The bottom photo is of a man with a mohawk haircut holding a cigarette.", - "id": 24944 - }, - { - "image_path": "G:\\images\\combined\\000000004444_jpg.rf.8c9dd93125cb4c089bbe6baba93373bc.jpg", - "response": "A black and white photo of a man standing in a kitchen. He is wearing a dark shirt and is looking into a refrigerator. There are two other people in the kitchen, one behind the man and one to the right of him. There are two lights on in the kitchen, one above the refrigerator and one on the right side of the room. There are also two potted plants in the kitchen, one on the left side of the room and one on the right side. There are two bottles on a counter to the right of the refrigerator.", - "id": 24945 - }, - { - "image_path": "G:\\images\\combined\\000000004444_jpg.rf.9244860fe1e4c292113a4225d3df3c31.jpg", - "response": "A train with many boxes inside.", - "id": 24946 - }, - { - "image_path": "G:\\images\\combined\\000000004462_jpg.rf.bc11954f76ab474aabb130c1918d0248.jpg", - "response": "A blurry black and white photo of a street with trees and street lights.", - "id": 24947 - }, - { - "image_path": "G:\\images\\combined\\000000004478_jpg.rf.0cd30753b739d7839f0853f9f7b6ac9e.jpg", - "response": "A black and white photo of a collage of different images. The images include a close up of a wall, a close up of a tree, a close up of a fence, a close up of a brick wall, a close up of a door, a close up of a ladder, a close up of a pile of boxes, a close up of a fence, a close up of a car, a close up of a person, a close up of a person wearing a hat, a close up of a person wearing a shirt, a close up of a person wearing a hat and a shirt, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat, a close up of a person wearing a shirt and a hat,", - "id": 24948 - }, - { - "image_path": "G:\\images\\combined\\000000004478_jpg.rf.6bfbe337e3293f255a355b8a38070246.jpg", - "response": "A black and white image of a forklift in a junkyard. There is a forklift on the left side of the image, with a pile of junk on the left and a pile of junk on the right. The forklift is driving towards the right side of the image. On the right side of the image, there is a box with a black square in the top right corner. Below the box, there is a road with a car on the left side of the road. There are also two trees on the right side of the road.", - "id": 24949 - }, - { - "image_path": "G:\\images\\combined\\000000004478_jpg.rf.b0f0fa184ab0f29633b61c35460e6d42.jpg", - "response": "A collage of black and white images. The top left image is of a jumbo jet on a runway, the top right image is of a person's hand holding a cell phone, the bottom left image is of a person playing tennis, and the bottom right image is of a bird perched on a wire.", - "id": 24950 - }, - { - "image_path": "G:\\images\\combined\\000000004489_jpg.rf.039fd6000315065bbeaac88a6b38f42c.jpg", - "response": "A collage of four black and white images. The top left image shows a bicycle parked on a street. The top right image shows a 3D cube in the air. The bottom left image shows a wooden box with the letters EPAL on it. The bottom right image shows a woman sitting on a couch using a tablet.", - "id": 24951 - }, - { - "image_path": "G:\\images\\combined\\000000004489_jpg.rf.d80cc487a78109fd5ff3c53ab9a3beb4.jpg", - "response": "A black and white photo of a loading dock with a few pallets stacked up. There is a bike in the background and a person walking. There is also a small building with a sign that says \"Laundromat\" and a mailbox. And finally, there is a cow standing in the street.", - "id": 24952 - }, - { - "image_path": "G:\\images\\combined\\000000004489_jpg.rf.ef3ee2dd8fb31842f0a67d6682dba25e.jpg", - "response": "A black and white photo of a store with a man standing in front of it. There is a bicycle in the background. There is a baby in the bottom right corner of the photo. There is a man sitting down in the bottom right corner of the photo. There is a cart with a TV on it in the bottom left corner of the photo. There is a motorcycle in the top left corner of the photo. There is a person in the top left corner of the photo.", - "id": 24953 - }, - { - "image_path": "G:\\images\\combined\\000000004490_jpg.rf.1a897c3dd204531f539a0ec59e19cf9f.jpg", - "response": "A collage of 4 photos. The first one is a woman wearing a hat and ski goggles on a snowy mountain. The second one is a close up of a building. The third one is a group of people walking in the snow. The fourth one is a close up of a sign.", - "id": 24954 - }, - { - "image_path": "G:\\images\\combined\\000000004490_jpg.rf.a4f3ba9a964ef0c02c72035f793c342c.jpg", - "response": "A collage of images including a man in ski gear standing in the snow, a person sitting on a bus with a handbag and a bottle of lotion.", - "id": 24955 - }, - { - "image_path": "G:\\images\\combined\\000000004490_jpg.rf.acb6b2e0e67ce6828a955813b7a6388b.jpg", - "response": "A collage of four black and white images. The first is a woman wearing a parka and ski goggles. The second is a truck driving on a dirt road. The third is a boat in the water. The fourth is a close up of a machine.", - "id": 24956 - }, - { - "image_path": "G:\\images\\combined\\000000004497_jpg.rf.9e3c0f91f83e54e4eb65d390bb3e75eb.jpg", - "response": "A collage of black and white images. The top left image is of a man standing in front of a truck with the word \"Fondi\" written on the side. The top right image is of a man walking away from the camera. The bottom left image is of a white box with black lines and black dots. The bottom right image is of two stacks of grey crates.", - "id": 24957 - }, - { - "image_path": "G:\\images\\combined\\000000004497_jpg.rf.a3e9501364fbd1ebb2a65d1a61527c58.jpg", - "response": "A black and white photo of a wooden pallet.", - "id": 24958 - }, - { - "image_path": "G:\\images\\combined\\000000004497_jpg.rf.eb88d5b89cf0408395fe378fff948d59.jpg", - "response": "A collage of images. On the top right is a woman wearing ski goggles and holding a ski pole. Below her is a close up of a woman laughing. To the left of the laughing woman is a picture of a truck with the word \"M\u00f6bel\" on it. Below the truck is the word \"Presse\" and a website address.", - "id": 24959 - }, - { - "image_path": "G:\\images\\combined\\000000004502_jpg.rf.5344843a30e0bcee0f4fa3b0fb8bd391.jpg", - "response": "A collage of black and white images. The top left image is a woman holding a tennis racket, the top right image is a group of American flags on a building, the bottom left image is a close up of a person's hand holding a candle, and the bottom right image is a close up of a building with many windows.", - "id": 24960 - }, - { - "image_path": "G:\\images\\combined\\000000004502_jpg.rf.5f65eacdaa275fb4133c3aa71f847444.jpg", - "response": "A collage of black and white images of a lego robot", - "id": 24961 - }, - { - "image_path": "G:\\images\\combined\\000000004502_jpg.rf.fd26a2c33321f4e1cb9a16dd2422372e.jpg", - "response": "A collage of images. Top left is a windmill, top right is a building with many boxes, left center is a sign with writing on it, right center is a kite in the air, bottom is a hill with trees on it.", - "id": 24962 - }, - { - "image_path": "G:\\images\\combined\\000000004508_jpg.rf.8066946222de61f4b083cd05076b6586.jpg", - "response": "A collage of four different images. The first is a zebra standing next to a person. The second is a close up of a person's face. The third is a bus parked in a lot. The fourth is a truck unloading hay.", - "id": 24963 - }, - { - "image_path": "G:\\images\\combined\\000000004508_jpg.rf.879cec9c42e7815b4e87b92b1460dd18.jpg", - "response": "A collage of black and white images. In the top left corner, a woman is holding a zebra's tail. In the top right corner, two books are shown. In the bottom left corner, a girl is holding a kite. In the bottom right corner, a book is shown with the title \"1984\".", - "id": 24964 - }, - { - "image_path": "G:\\images\\combined\\000000004508_jpg.rf.c7ebd5fdbc3f738ea872fad1bf7a1547.jpg", - "response": "A black and white photo of a woman sitting on a bench.", - "id": 24965 - }, - { - "image_path": "G:\\images\\combined\\000000004509_jpg.rf.71032c71050dccc19a24d695042f384e.jpg", - "response": "A collage of six different pictures. One picture is of a man's hand on a wooden pallet. Another picture is of a person's back. The third picture is of a person's back and arm. The fourth picture is of a person's back and arm. The fifth picture is of a baseball player swinging a bat. The sixth picture is of a baseball player swinging a bat.", - "id": 24966 - }, - { - "image_path": "G:\\images\\combined\\000000004509_jpg.rf.75417992c5d2fa941d9888abcc11ce98.jpg", - "response": "A collage of images including a close up of a bikini bottom, a camera on a tripod, a surfboard in the water, a group of people on a beach, and a man in a suit on a stage.", - "id": 24967 - }, - { - "image_path": "G:\\images\\combined\\000000004509_jpg.rf.fa74d4132174fdcd27e6d048bb054a42.jpg", - "response": "A black and white image of a woman with a blonde ponytail wearing a black bikini top and black shorts. She is pulling a cart with a black square in it. The image is divided into 3 squares. The top left square is a close up of the woman's face. The top right square is a close up of the woman pulling the cart. The bottom right square is a picture of a horse walking on the beach.", - "id": 24968 - }, - { - "image_path": "G:\\images\\combined\\000000004527_jpg.rf.2754b300e3304330ec7f95f5d20a3e49.jpg", - "response": "A collage of images of baseball players at bat. One of the images is a close up of a player's shoulder and bat.", - "id": 24969 - }, - { - "image_path": "G:\\images\\combined\\000000004527_jpg.rf.4fdc86963a3f8dab48064514a178727b.jpg", - "response": "A collage of images including a pregnant woman, a man and a woman walking down a street, a glass of wine, and a woman in a bra.", - "id": 24970 - }, - { - "image_path": "G:\\images\\combined\\000000004527_jpg.rf.e0c2a91b9f0076dc0c53c87a23f63d33.jpg", - "response": "A collage of six different black and white images. In the top left image, a hand is seen wiping a surface. The top right image shows a truck with a ladder. The bottom left image shows a refrigerator. The bottom right image shows a tree in a park. The middle left image shows a person's hand holding a small object. The middle right image shows a building with solar panels. The top right image shows a truck with a ladder.", - "id": 24971 - }, - { - "image_path": "G:\\images\\combined\\000000004549_jpg.rf.e0905607441d55d56b2e995c63ba4a4d.jpg", - "response": " Two surfers(786,405),(981,572)(73,354),(253,507) in the water", - "id": 24972 - }, - { - "image_path": "G:\\images\\combined\\000000004551_jpg.rf.45504c7b780452d168a373df3e4acead.jpg", - "response": "A collage of black and white images. The top left image is of a hand holding a flower up in the air. The top right image is of a woman's back as she looks at a screen. The bottom left image is of a crowd of people gathered under umbrellas. The bottom right image is of a single block.", - "id": 24973 - }, - { - "image_path": "G:\\images\\combined\\000000004551_jpg.rf.4e9e1ef0be479b3c224784f75d79f39f.jpg", - "response": "A collage of 5 black and white images. The first image is of a person with their arm raised in the air. The second image is of a person standing in a yard. The third image is of a table with a white table cloth and various items on it. The fourth image is of a person standing in front of a fence. The fifth image is of a birdcage.", - "id": 24974 - }, - { - "image_path": "G:\\images\\combined\\000000004551_jpg.rf.d619ec21f3c95545f474ef655a5bc88c.jpg", - "response": "A black and white photo of a lamb standing in a barn. There are clouds in the sky and birds flying around. There are also two people standing in the barn. One person is standing on the left side and the other is standing on the right side. There is a third person standing in the background. There is a person standing in front of a door. There are two other people standing in the background. There is a bench in the background on the right side.", - "id": 24975 - }, - { - "image_path": "G:\\images\\combined\\000000004554_jpg.rf.9915ed1a37b02e7acd0378c9be262a63.jpg", - "response": "The image is a black and white photo of a group of people snowboarding and skiing. There are at least seven people visible in the photo, including one person who is adjusting their snowboard bindings. Some people are standing on the snow, while others are in motion, either moving towards the camera or away. There are two pairs of skis visible in the photo, one pair on the left and another pair on the right.", - "id": 24976 - }, - { - "image_path": "G:\\images\\combined\\000000004555_jpg.rf.728f5eed010cdc7e180c051fa6834a9d.jpg", - "response": "A black and white collage of several images. Top left is a boat on the river, top right is a pair of legs walking, bottom left is a woman with her chest bound, bottom right is a wall with advertisements.", - "id": 24977 - }, - { - "image_path": "G:\\images\\combined\\000000004555_jpg.rf.b26eb63caaacae74a9570527e78f5264.jpg", - "response": "A black and white photo of a building with a clock on the front of it. Next to the building is a forklift with boxes stacked on it. In the top right corner of the image there is a forklift in a warehouse with boxes stacked on it.", - "id": 24978 - }, - { - "image_path": "G:\\images\\combined\\000000004555_jpg.rf.ec2643abdea630832609ab1c66308e6f.jpg", - "response": "A collage of photos including a toddler sitting on a couch, a bookshelf with several books on it, and a stuffed animal.", - "id": 24979 - }, - { - "image_path": "G:\\images\\combined\\000000004567_jpg.rf.1363e87289d66e7f752f478c40c1c236.jpg", - "response": "A collage of four photos. In the top left photo, a woman is sitting at a desk with a computer. In the top right photo, a woman is standing in front of a computer. In the bottom left photo, a woman is sitting on the floor in front of a computer. In the bottom right photo, a pile of wood is being loaded onto a truck.", - "id": 24980 - }, - { - "image_path": "G:\\images\\combined\\000000004567_jpg.rf.c3e1c10725375baab7fea4683fb9e71b.jpg", - "response": "A black and white photo of a room with a person in it. The person is sitting at a desk and appears to be working on a sewing machine. There are also several boxes stacked up in the room.", - "id": 24981 - }, - { - "image_path": "G:\\images\\combined\\000000004567_jpg.rf.dfe84eda7378453250d28fe8e2788b71.jpg", - "response": "A collage of images including a person using a laptop, a forklift, a car, and a building.", - "id": 24982 - }, - { - "image_path": "G:\\images\\combined\\000000004574_jpg.rf.0bbf6bbcd6f2db5b5d6d1e6238d2d319.jpg", - "response": "A collage of four different images. The first is a close up of a black and white suitcase. The second is a close up of a black and white wall. The third is a close up of two people's legs in black and white. The fourth is a close up of a black and white umbrella.", - "id": 24983 - }, - { - "image_path": "G:\\images\\combined\\000000004574_jpg.rf.4b71e899487bcbb8180ae4eec1ef912d.jpg", - "response": "a man(705,125),(938,575) is hitting a ball with a bat", - "id": 24984 - }, - { - "image_path": "G:\\images\\combined\\000000004574_jpg.rf.cba0bee28e0ec3a633790ad81cf7d2ae.jpg", - "response": "A collage of black and white photos.", - "id": 24985 - }, - { - "image_path": "G:\\images\\combined\\000000004578_jpg.rf.3065096a8b71a365ecb704095c0ed815.jpg", - "response": "A collage of black and white photos. There is a woman with white hair, a computer, a glass of wine, a TV, a bookshelf, a cat, a vase, a clock, a bottle, a chair, a couch, a picture frame, a bowl, a book, a cup, a remote, a keyboard, a mouse, a monitor, a shelf, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair, a TV, a clock, a vase, a wine glass, a bookshelf, a book, a bottle, a cup, a remote, a couch, a chair", - "id": 24986 - }, - { - "image_path": "G:\\images\\combined\\000000004578_jpg.rf.4d04ab39e894919799536f2bddc62b5e.jpg", - "response": "A black and white image of a catcher throwing a ball to a pitcher. The image is a collage of several different baseball pictures. There are several players in the collage including a pitcher and a catcher. There are also boxes in the collage.", - "id": 24987 - }, - { - "image_path": "G:\\images\\combined\\000000004578_jpg.rf.ad917855bc8c7ee3abf360d334b1cf63.jpg", - "response": "A black and white collage of images of a woman sitting in a room with boxes", - "id": 24988 - }, - { - "image_path": "G:\\images\\combined\\000000004592_jpg.rf.01a39388c89439b22462aaca44709ac1.jpg", - "response": "A collage of four different images. The first is a black and white image of a runner on a track. The second is a black and white image of a car on a road. The third is a black and white image of a tennis player on a court. The fourth is a black and white image of a close up of a grid pattern.", - "id": 24989 - }, - { - "image_path": "G:\\images\\combined\\000000004592_jpg.rf.1956915806383db41075c36a3a9e6261.jpg", - "response": "A black and white collage of images. At the top is a group of people in a crowded room, below that is a woman's face with a fork in it, below that is a plate with a slice of pizza on it, below that is a bus, below that is a pallet of boxes, and below that is a hand holding a knife over a box.", - "id": 24990 - }, - { - "image_path": "G:\\images\\combined\\000000004592_jpg.rf.55916db3a22ff8e0e156baef853be63a.jpg", - "response": "A collage of images including a woman jumping over a bar, a gym, a factory, and a man walking.", - "id": 24991 - }, - { - "image_path": "G:\\images\\combined\\000000004595_jpg.rf.62350edce6030c688ce88b8535e38188.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a Flyer bus. The top right photo is a black and white photo of a person bending over to look in a bag. The bottom left photo is a black and white photo of a person using a parking meter. The bottom right photo is a close up of a parking sign.", - "id": 24992 - }, - { - "image_path": "G:\\images\\combined\\000000004595_jpg.rf.aa939288671f6bb19cdb5209c91210b6.jpg", - "response": "A black and white image of a store with a man in the bottom left corner and a woman in the top left corner. There is a TV in the top right corner and a man is standing behind it. There is a box in the bottom center of the image with a price label on it.", - "id": 24993 - }, - { - "image_path": "G:\\images\\combined\\000000004595_jpg.rf.bd72c8cbccbc7a8b540cb2304da9a06c.jpg", - "response": "A collage of four photos. The first is a black and white photo of a bus. The second is a black and white photo of a cow. The third is a black and white photo of a bus on a road. The fourth is a black and white photo of a man on a lift working on a car.", - "id": 24994 - }, - { - "image_path": "G:\\images\\combined\\000000004608_jpg.rf.4b2d5d1e546ebf3c37b3e09eb2b59261.jpg", - "response": "A collage of black and white images, including a woman smiling, a snowy forest, a person holding a cat, a clock tower, and a man looking out a window.", - "id": 24995 - }, - { - "image_path": "G:\\images\\combined\\000000004608_jpg.rf.7fd7d447c2d42ca1732de940f5a20dfd.jpg", - "response": "A collage of four different images. The top left image is a black square with a bird flying in the top left corner. The top right image is a black square of a building with the roof missing. The bottom left image is a black square of a bus with the word COUNTRY on the side. The bottom right image is a black square of a forklift carrying a box.", - "id": 24996 - }, - { - "image_path": "G:\\images\\combined\\000000004608_jpg.rf.cf00b0a296a9828eadc28d2fade61038.jpg", - "response": "A collage of black and white images. The top right image is of a man in a suit and tie walking in front of a building. The top left image is a square black and white image of a bird flying. The bottom right image is a close up of a man's feet as he sits on a bench. The bottom middle image is a close up of a wooden bench. The bottom left image is a man walking down a sidewalk.", - "id": 24997 - }, - { - "image_path": "G:\\images\\combined\\000000004616_jpg.rf.03b1ffa2d75354efff4d6ff90f089622.jpg", - "response": "A black and white photo of a warehouse with a forklift.", - "id": 24998 - }, - { - "image_path": "G:\\images\\combined\\000000004616_jpg.rf.20e34d5695f1494a703c4087a6332fb8.jpg", - "response": "A collage of images including a girl with a furry shawl, boxes, a soccer net with a ball in it, and a group of people.", - "id": 24999 - }, - { - "image_path": "G:\\images\\combined\\000000004616_jpg.rf.b6702b17ba54f64be1baedd110b6e6d5.jpg", - "response": "A black and white image of a car.", - "id": 25000 - }, - { - "image_path": "G:\\images\\combined\\000000004642_jpg.rf.2e144716870d0d4d2f44300f3e23f6a8.jpg", - "response": "A collage of black and white images. The top left image is of a pizza in a box. The top right image is of a man looking at his cell phone. The bottom left image is of a building with a row of windows. The bottom right image is of a man looking at his cell phone.", - "id": 25001 - }, - { - "image_path": "G:\\images\\combined\\000000004642_jpg.rf.522ee63fd64b278701ce96eeded1a923.jpg", - "response": "A black and white image with four quadrants. The top left one is a close up of a face, the top right one is a corner of a laptop, the bottom left one is a stack of chairs, and the bottom right one is a man in a suit holding his arms out.", - "id": 25002 - }, - { - "image_path": "G:\\images\\combined\\000000004642_jpg.rf.880ef88887b0a8b34c7d7821d416a99e.jpg", - "response": "A black and white image of the World Trade Center, with a large explosion on the left, and a group of firemen on the right. There are also several American flags in the image.", - "id": 25003 - }, - { - "image_path": "G:\\images\\combined\\000000004662_jpg.rf.ab445e428e358b2beb3b0e31ac82547b.jpg", - "response": "A baseball player up to bat at home plate.", - "id": 25004 - }, - { - "image_path": "G:\\images\\combined\\000000004665_jpg.rf.2f42f64b163e8781a3d6b587917629d9.jpg", - "response": "A collage of black and white photos including a wedding photo, a dog, and two children.", - "id": 25005 - }, - { - "image_path": "G:\\images\\combined\\000000004665_jpg.rf.932d2a927fce15f576ef3d0df1cc3ed8.jpg", - "response": "A collage of photos including a man in a suit and tie, a black and white photo of a boat, a building, and a warehouse.", - "id": 25006 - }, - { - "image_path": "G:\\images\\combined\\000000004665_jpg.rf.b159b65580e207ab96c40a9b64b5691d.jpg", - "response": "A collage of a man and woman in a warehouse, with boxes and a forklift.", - "id": 25007 - }, - { - "image_path": "G:\\images\\combined\\000000004678_jpg.rf.b251cd79f85db7157b543a01d5ab12cc.jpg", - "response": "A black and white photo of a man walking a dog in a park. In the background is a large building under construction.", - "id": 25008 - }, - { - "image_path": "G:\\images\\combined\\000000004684_jpg.rf.6368da40b8fc058e89410965ae260f29.jpg", - "response": "A black and white photo of a couple being photographed in front of a large stack of M\u00f6bel Preiss boxes. The boxes are stacked in two rows and are labeled with the M\u00f6bel Preiss logo. The couple is wearing formal attire and is smiling for the camera.", - "id": 25009 - }, - { - "image_path": "G:\\images\\combined\\000000004684_jpg.rf.95b878e2bc27d9b43d0087c4b17687a9.jpg", - "response": "A collage(4,4),(993,995) of images including a group of people, a chef, and a beekeeper.", - "id": 25010 - }, - { - "image_path": "G:\\images\\combined\\000000004684_jpg.rf.9febe72cdd4791213827bca4dd83106e.jpg", - "response": "A collage of images including a woman carrying a bag, a man on a horse, a woman in black pants, a package and a woman carrying a handbag.", - "id": 25011 - }, - { - "image_path": "G:\\images\\combined\\000000004688_jpg.rf.35bc2cc5cdb22837c8b9d2308d8e7de2.jpg", - "response": "A black and white photo of a building with a large sign on it. The sign has the numbers 1, 2, 3, 4, 5, and 15 on it. There are also four smaller squares on the sign. The building is surrounded by other buildings. There is a street with cars and a bus in front of the building. The image is split into three different sections.", - "id": 25012 - }, - { - "image_path": "G:\\images\\combined\\000000004688_jpg.rf.70f82891f7c4324a54271202453ad616.jpg", - "response": "A black and white image with four quadrants. The first one is a close up of a tree with a square black box over the top. The second is a close up of a wooden pallet with a square black box over the top. The third is a close up of a wheel in the mud with a square black box over the top. The fourth is a close up of a puddle with a square black box over the top.", - "id": 25013 - }, - { - "image_path": "G:\\images\\combined\\000000004688_jpg.rf.afc181bd2864ad89e1f4aa8fafef9776.jpg", - "response": "A collage of black and white images. The top image is of a man standing next to a large tree. The second image is of a man standing on a pile of dirt. The third image is of a man standing next to a stack of boxes. The fourth image is of a man standing on a forklift.", - "id": 25014 - }, - { - "image_path": "G:\\images\\combined\\000000004700_jpg.rf.0d8f88176b75be52c24c82082de65c95.jpg", - "response": "A group of boys playing soccer on a field.", - "id": 25015 - }, - { - "image_path": "G:\\images\\combined\\000000004704_jpg.rf.abda8bce385925a55a0cf35d9439e749.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person in a wheelchair on a beach. The second is a black and white photo of a person standing in front of a bike rack with a backpack on. The third is a black and white photo of a person standing in front of a bike rack with a backpack on.", - "id": 25016 - }, - { - "image_path": "G:\\images\\combined\\000000004704_jpg.rf.b89e5c0b8b603cbd9e958b5d6d9d653d.jpg", - "response": "A collage of 4 black and white images. Top left image is of a boat on the water with a person in a white coat on the boat. Top right image is of a dock with several boats. Bottom left image is of a building with a reflection of the water on the wall. Bottom right image is of a battery on a table.", - "id": 25017 - }, - { - "image_path": "G:\\images\\combined\\000000004704_jpg.rf.bbbd1ccbacb9eac85b8bedad28e7427d.jpg", - "response": "A collage of four black and white photos. The top left photo is of a wall with a white square pattern. The top right photo is of a man with his head turned to the right, looking at something in the distance. The bottom left photo is of a person standing in a room with a white wall and a white ceiling. The bottom right photo is of a stack of wooden pallets.", - "id": 25018 - }, - { - "image_path": "G:\\images\\combined\\000000004714_jpg.rf.23fe205b3ed568e9c9a5b1852419036f.jpg", - "response": "A black and white photo of a group of people in a room. There is a fireplace to the left and a wall of windows to the right. A man is playing a guitar in the left hand corner of the image. A person is sitting in a chair in the middle of the room. There are two people standing in the middle of the room, one in front of the fireplace and one in front of the wall of windows. There are three people standing on the right side of the room, two of them are in front of the wall of windows and one is behind them. There is a bench in the foreground of the image.", - "id": 25019 - }, - { - "image_path": "G:\\images\\combined\\000000004714_jpg.rf.2863cd916311b2f1df6804971ad20839.jpg", - "response": "A collage of 6 black and white images of a forklift in a warehouse.", - "id": 25020 - }, - { - "image_path": "G:\\images\\combined\\000000004714_jpg.rf.648ed36d2c1e7adea70e8cc8508fb846.jpg", - "response": "A collage of three black and white images. The top left image shows a man in a room with a black box over his face. The top right image shows a close up of a wooden pallet. The bottom left image shows a man wearing a straw hat in a body of water. The bottom right image shows a close up of the same man's back.", - "id": 25021 - }, - { - "image_path": "G:\\images\\combined\\000000004719_jpg.rf.354fef1bc2ebc100b6cd025e25019532.jpg", - "response": "A black and white image of a table with food on it, a pallet, and a box.", - "id": 25022 - }, - { - "image_path": "G:\\images\\combined\\000000004719_jpg.rf.adb59e2efbd1df2470e2087ef0c0f368.jpg", - "response": "A collage of different images. On the top left is a close up of a table with a plate of fish on it. The plate is surrounded by a table cloth and a fork is resting on the plate. On the top right is a sign that says Model. Underneath that is a photo of a store front with a sign that says Model. Below that is a photo of a pallet. On the left is a photo of a truck with a box full of vegetables.", - "id": 25023 - }, - { - "image_path": "G:\\images\\combined\\000000004719_jpg.rf.f8694ed2a4191ec7a4dc9a5e3c780557.jpg", - "response": "A black and white image of a bed with a dog on it. The dog is on the right side of the bed and is in the middle of the image. The dog is a large breed and is laying on a pillow. The image is split into 4 quadrants. The top left quadrant is a close up of a plate with a fork on it. The bottom left quadrant is a close up of a tile floor. The bottom right quadrant is a close up of a wooden bench. The top right quadrant is a little girl standing in a room.", - "id": 25024 - }, - { - "image_path": "G:\\images\\combined\\000000004731_jpg.rf.746521fe5243af3b189a12a5d2f5a1ef.jpg", - "response": "A collage of 6 different black and white images. From top left, a woman holds a baby, a kitchen counter with a cup and a sink, a calendar on the wall, a refrigerator, a person with a headscarf on a subway, and a person doing a trick on a skateboard.", - "id": 25025 - }, - { - "image_path": "G:\\images\\combined\\000000004731_jpg.rf.9525602290fb3c961e9edf7732c0f12a.jpg", - "response": "A black and white image of a man in a mask and gloves breaking into a garage. The garage is located on the left side of the image and the man is in the bottom left corner. He is breaking into the garage door. The garage is located on the left side of the image and the man is in the bottom left corner. He is breaking into the garage door.", - "id": 25026 - }, - { - "image_path": "G:\\images\\combined\\000000004731_jpg.rf.dfc9ccdea1e8d70f1e912576c5476a26.jpg", - "response": "A collage of pictures including a man holding a baby, a table with a blender and a toaster, a microwave, a baby in a high chair and a sink.", - "id": 25027 - }, - { - "image_path": "G:\\images\\combined\\000000004736_jpg.rf.1d6fe51dd6dbfebf43c6fbf9ffe98307.jpg", - "response": "A collage of black and white images including a child at bat in a baseball game, a boy in a living room, a boy in a classroom, a boy in a toy cage, and a child in a hospital bed.", - "id": 25028 - }, - { - "image_path": "G:\\images\\combined\\000000004736_jpg.rf.2fcfa414a4fe9559a1bc954bc7ccd3d7.jpg", - "response": "A collage of images including a baseball game, a box of tissues and a close up of a car.", - "id": 25029 - }, - { - "image_path": "G:\\images\\combined\\000000004736_jpg.rf.6defee2eb58589d7349548036762056d.jpg", - "response": "A collage of black and white baseball images.", - "id": 25030 - }, - { - "image_path": "G:\\images\\combined\\000000004741_jpg.rf.24db1b5347c42a5bf7bda457db408921.jpg", - "response": "A small village shop with a thatched roof and a sign that says Irish knitwear. A woman is riding a horse down the street and there are three people walking in front of the shop.", - "id": 25031 - }, - { - "image_path": "G:\\images\\combined\\000000004742_jpg.rf.1684c278f3f38ae0242e426e3d2c1728.jpg", - "response": "A collage of four photos. In the top left photo, a man is surfing on a wave. In the top right photo, a man is sitting on a ledge looking at a laptop. In the bottom left photo, a plane is flying over a city. In the bottom right photo, a man is sitting at a desk with a laptop and a cell phone.", - "id": 25032 - }, - { - "image_path": "G:\\images\\combined\\000000004742_jpg.rf.273f81433d4793a2f02dc2b9ad6905ab.jpg", - "response": "A black and white collage of images. On the top left is a close up of a wooden beam with a scratch on it. Below that is a woman and a child standing in a room. Below that is a desk with a computer on it. Below that is a truck in a garage. Below that is a car.", - "id": 25033 - }, - { - "image_path": "G:\\images\\combined\\000000004742_jpg.rf.81fe61ba6364e621cca842ab4bc147e1.jpg", - "response": "A collage of a person surfing, a pallet, and a white pallet box.", - "id": 25034 - }, - { - "image_path": "G:\\images\\combined\\000000004761_jpg.rf.16efaa98cc80359b99fa6eb84b25e5b8.jpg", - "response": "A collage of black and white images. There is a picture of a desk with a computer, a picture of a building, a picture of a group of people standing in a line, a picture of a chair, a picture of a pile of pillows, and a picture of a recycling symbol.", - "id": 25035 - }, - { - "image_path": "G:\\images\\combined\\000000004761_jpg.rf.abd012c3336164363f80581d5db3b367.jpg", - "response": "A collage of four black and white photos. The first is a desk with a bottle of wine, a cup, a bowl, a book and a remote. The second is a person sitting on a chair. The third is a brick wall. The fourth is a TV.", - "id": 25036 - }, - { - "image_path": "G:\\images\\combined\\000000004761_jpg.rf.db233387dbd01e9b8f2e6f25b10e06a7.jpg", - "response": "A collage of black and white images. The top left image is a close up of a computer screen with a hand covering the screen. The top right image is a man wearing a robe and a stole. The bottom left image is a forklift with the word CAT on the side. The bottom right image is a close up of a wooden bench.", - "id": 25037 - }, - { - "image_path": "G:\\images\\combined\\000000004762_jpg.rf.8962595a88835cc543df910739f4228b.jpg", - "response": "A collage of a man standing next to a double decker bus, a person sitting on a bench and a man with a backpack.", - "id": 25038 - }, - { - "image_path": "G:\\images\\combined\\000000004762_jpg.rf.bd793f6ef6a98f0072ca871bf4c9db83.jpg", - "response": "A windmill is shown in a black and white photo. The windmill is located in a field and is a prominent feature of the scene. The windmill is made of wood and has four blades. It is located to the right of a tree in the foreground. The tree is located to the left of the windmill. The windmill is situated behind a fence. The fence is located in front of a building. The building is located behind the windmill. The building is made of brick and has a shingled roof. The roof is located above a window. The window is located above a door. The door is located above a small sign. The sign is located above a bench. The bench is located in front of a wall. The wall is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a building. The building is located in front of a windmill. The windmill is located in front of a tree. The tree is located in front of a", - "id": 25039 - }, - { - "image_path": "G:\\images\\combined\\000000004762_jpg.rf.c3bfd95f1b1ce5c282dbb7cf158304e8.jpg", - "response": "A collage of images including a black and white photo of a bus, a close up of two hands clapping and a close up of a person's elbow.", - "id": 25040 - }, - { - "image_path": "G:\\images\\combined\\000000004772_jpg.rf.1344ef2a5b25178377f801500ae366b7.jpg", - "response": "A black and white photo of a person surfing.", - "id": 25041 - }, - { - "image_path": "G:\\images\\combined\\000000004772_jpg.rf.a215f8997d22c298ef8457922d3283ac.jpg", - "response": "A black and white photo of a woman with her face obscured with black squares. She is wearing a white shirt and has dark hair. In front of her is a metal cage on a wooden pallet. The cage is empty and has a door handle on the right side. There is a window to the left of the cage and a body of water is visible through the window. There is a boat in the water.", - "id": 25042 - }, - { - "image_path": "G:\\images\\combined\\000000004772_jpg.rf.a3676455d422094a31ce7186f56d155f.jpg", - "response": "A collage of four black and white images. The top left image is of a small body of water with a clothes line in the foreground. The top right image is of a close-up of water falling from a faucet. The bottom left image is of a house with a tiled roof and a tree in the foreground. The bottom right image is of a close-up of a shipping container.", - "id": 25043 - }, - { - "image_path": "G:\\images\\combined\\000000004834_jpg.rf.2e7f6c54ada85e271095c86fc44eac40.jpg", - "response": "A black and white collage of images including a close up of wood, a stoplight, a surfer, a lighthouse, and a city.", - "id": 25044 - }, - { - "image_path": "G:\\images\\combined\\000000004834_jpg.rf.8fc6f88b2a7e6a77fb3f3278159b4094.jpg", - "response": "A collage of three black and white images. The top left image is of a woman wearing a pointed conical hat and holding a baby. The top right image is a street scene with a truck driving down the road. The bottom right image is a close up of a box truck driving down the road.", - "id": 25045 - }, - { - "image_path": "G:\\images\\combined\\000000004834_jpg.rf.9ad5990f98eead26a02b0c1107c5b323.jpg", - "response": "A black and white photo of a room with a woman holding a baby in the top left corner. There is a pile of firewood in the top left corner and a black square has been photoshopped over the top left corner of the image. There is a black square photoshopped over the top right corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is a black square photoshopped over the top left corner of the image. There is", - "id": 25046 - }, - { - "image_path": "G:\\images\\combined\\000000004840_jpg.rf.43bfd237ca1b4c68749aad60156ed85d.jpg", - "response": "A black and white photo of a baseball player in a field. The player is holding a baseball bat and is in the process of swinging it. The player is wearing a baseball uniform and is standing in the grass. The background shows a building with several windows in the distance.", - "id": 25047 - }, - { - "image_path": "G:\\images\\combined\\000000004840_jpg.rf.4fec72f1dc564517ac63ee7dc9fd0b92.jpg", - "response": "A collage of three surfers, one on a surfboard in the water, one performing a trick on his surfboard, and one walking up a flight of stairs. The image is in black and white.", - "id": 25048 - }, - { - "image_path": "G:\\images\\combined\\000000004840_jpg.rf.63892965bdf14d656376714ca92631f2.jpg", - "response": "A collage of photos including a girl with skis, a bus, a snowy forest and a building.", - "id": 25049 - }, - { - "image_path": "G:\\images\\combined\\000000004843_jpg.rf.5d3b69315a585f0258e7298bf4012f5d.jpg", - "response": "A collage of black and white images. On the left is a small child sitting on a man's shoulders. In the middle is a young boy looking at a laptop. On the right are several boxes of EPAL.", - "id": 25050 - }, - { - "image_path": "G:\\images\\combined\\000000004843_jpg.rf.767d8d8fb7e2246061dc6aa3cbcb993d.jpg", - "response": "A collage of black and white images. The top left image is of a man standing on a dock holding a fishing rod. The top right image is a close up of wood planks. The bottom left image is a close up of a wall with a black square over the left corner. The bottom right image is a close up of a barbed wire fence with a boat in the background.", - "id": 25051 - }, - { - "image_path": "G:\\images\\combined\\000000004843_jpg.rf.85b8d2b781fecaf52d761128c03d9712.jpg", - "response": "A collage of black and white photos. The top left photo is of a man in a cowboy hat and overalls holding a baby. The top right photo is of a man standing on a horse. The bottom left photo is of a man holding a rope in front of a horse. The bottom right photo is of a man standing in front of a fence.", - "id": 25052 - }, - { - "image_path": "G:\\images\\combined\\000000004844_jpg.rf.ed7c45dbe37f9257597fd3268394057b.jpg", - "response": "A little girl sucking her thumb.", - "id": 25053 - }, - { - "image_path": "G:\\images\\combined\\000000004859_jpg.rf.39e90b67087f8544cacc3ee9a7082d71.jpg", - "response": "A black and white image of a baseball player swinging a bat. The player is wearing a white uniform with the number 30 on the back. The image is cut into squares and there are black squares covering parts of the image. There is a car in the bottom left corner of the image and a baseball field in the background.", - "id": 25054 - }, - { - "image_path": "G:\\images\\combined\\000000004859_jpg.rf.a6fec66b3191028c1dba5bf2d3ac8426.jpg", - "response": "A black and white image of a warehouse with a man holding a surfboard. The man is wearing a wetsuit and appears to be surfing inside the warehouse. There is a forklift in the warehouse and several boxes stacked on the floor. The image is divided into four quadrants, with the left and right quadrants showing the warehouse and the top and bottom quadrants showing the man and the surfboard.", - "id": 25055 - }, - { - "image_path": "G:\\images\\combined\\000000004859_jpg.rf.f2bc4bc360164c0e1d0e87d5551042e2.jpg", - "response": "A collage of a boy reading a book, a man in a brick building, a house, and a church.", - "id": 25056 - }, - { - "image_path": "G:\\images\\combined\\000000004876_jpg.rf.460ce4c5af6f3feb8c39593ac96e28e2.jpg", - "response": "A man is doing a trick on a skateboard. He is wearing a black shirt and is on a metal platform. The image is in black and white.", - "id": 25057 - }, - { - "image_path": "G:\\images\\combined\\000000004891_jpg.rf.361d4ee2a8a60e6fa511c1c6e9bef454.jpg", - "response": "A collage of black and white images. The top left image is of a cow laying down on the ground. The top right image is of a cow's head and face. The bottom left image is of a person's hand holding a rope attached to a cow. The bottom right image is of a man standing next to a cow.", - "id": 25058 - }, - { - "image_path": "G:\\images\\combined\\000000004891_jpg.rf.3d2773dc3834cf7afe361bb8e09bf33d.jpg", - "response": "A collage of images including a plane on a runway, a container ship, a snowy landscape, two people wearing ski goggles and waving, and a baggage cart at an airport.", - "id": 25059 - }, - { - "image_path": "G:\\images\\combined\\000000004891_jpg.rf.a63a4c32232d78d3ca764661ee15affa.jpg", - "response": "An airport scene with a jet airliner on the tarmac in the background. There is a person walking on the tarmac in the foreground. A car is parked on the tarmac. There are several pay phones on the concourse.", - "id": 25060 - }, - { - "image_path": "G:\\images\\combined\\000000004893_jpg.rf.5cbe95cdf532672339be258eabe7dfc4.jpg", - "response": "A collage of baseball players and a bathtub.", - "id": 25061 - }, - { - "image_path": "G:\\images\\combined\\000000004893_jpg.rf.5dd12f2c19768c66982fb80949ce20e6.jpg", - "response": "A collage of black and white images, including a bathroom, a window with a curtain, a bookcase, and a vase. There is also a Fotolia logo in the top right corner.", - "id": 25062 - }, - { - "image_path": "G:\\images\\combined\\000000004893_jpg.rf.ded56f52c0678bbfeb03638ce9b6253f.jpg", - "response": "A forklift in a warehouse is being used to move boxes.", - "id": 25063 - }, - { - "image_path": "G:\\images\\combined\\000000004903_jpg.rf.069fb7355b366f5a89c85a728cee039c.jpg", - "response": "A black and white image of a group of children playing soccer on a field. There is a bush in the foreground and a traffic light in the background.", - "id": 25064 - }, - { - "image_path": "G:\\images\\combined\\000000004903_jpg.rf.63159bf72a85efa25c504fdda36b9eca.jpg", - "response": "A black and white photo of a city at night, with a river running through it. There are buildings on the side of the river lit up with lights. A large stack of boxes on pallets, with one box in the foreground. A close up of the box on the pallet, showing the corner of the box. A car driving down a road in the foreground. A forest of trees in the background.", - "id": 25065 - }, - { - "image_path": "G:\\images\\combined\\000000004903_jpg.rf.fbb9905731ecb3393ed5ea597412ba63.jpg", - "response": "A collage of black and white images. The top image is of three oil barrels stacked on top of each other. The second image is of a bus on a street. The third image is of a pay phone. The fourth image is of a man standing in front of a bus.", - "id": 25066 - }, - { - "image_path": "G:\\images\\combined\\000000004916_jpg.rf.012acec7f89c2b23f8a8e5ee65e7f947.jpg", - "response": "A black and white photo of a kitchen. There is a woman in the left side of the photo, she is wearing a dress and her back is turned to the camera. There is a child in the middle of the photo, they are wearing a black dress and their back is turned to the camera. There is a table in the right side of the photo, on top of it there is a keyboard and a mouse. There is a hand on the keyboard and a hand on the mouse. There is a cup on the table. On the right side of the photo there is a picture of a person with a hand on their hip.", - "id": 25067 - }, - { - "image_path": "G:\\images\\combined\\000000004916_jpg.rf.af91eba178fb8241466a6ef00b2fa79d.jpg", - "response": "A collage of black and white images including a man playing tennis, a woman in a dress, a building, and a forest.", - "id": 25068 - }, - { - "image_path": "G:\\images\\combined\\000000004916_jpg.rf.d79ee81a70c5310df10210b272da588c.jpg", - "response": "A collage of black and white photos of people doing various activities. In the top left photo, two people are standing with their backs to the camera. In the top right photo, a man is standing in front of a lighted area. In the bottom left photo, two people are standing on a snow-covered ground. In the bottom center photo, a man is bending over with his hands on his knees. In the bottom right photo, a man is doing a trick on a snowboard.", - "id": 25069 - }, - { - "image_path": "G:\\images\\combined\\000000004947_jpg.rf.28a43fa2afa3203240d4ea508a220484.jpg", - "response": "A black and white photo of a person working on a sculpture of a sheep. The sheep is a full size sculpture and is being worked on by the person. The person is standing on a platform and is surrounded by various tools. To the right of the photo is a picture of a tree. Below the tree picture is a black square with a smaller black square in the bottom right corner.", - "id": 25070 - }, - { - "image_path": "G:\\images\\combined\\000000004947_jpg.rf.37b9fd88cfc7e56194477d0c6f3f2554.jpg", - "response": "A collage of a man with a baby, a dog, a computer, a fork lift, and a tv.", - "id": 25071 - }, - { - "image_path": "G:\\images\\combined\\000000004947_jpg.rf.c73bd5a9b3f55ba617d48eb30b894f5e.jpg", - "response": "A collage of a person using a laptop computer on a kitchen counter.", - "id": 25072 - }, - { - "image_path": "G:\\images\\combined\\000000004968_jpg.rf.16524b7926aa36118d3cf01861f9d07c.jpg", - "response": "a collage(5,4),(995,994) of images", - "id": 25073 - }, - { - "image_path": "G:\\images\\combined\\000000004968_jpg.rf.b56de0c587a62994882d75d9ad4765c5.jpg", - "response": "A collage of images including a man looking out a window, a city street, a building, and a bench.", - "id": 25074 - }, - { - "image_path": "G:\\images\\combined\\000000004968_jpg.rf.f3113d7b72438d9bb0794795c69e0612.jpg", - "response": "A collage of black and white images of shipping boxes and delivery trucks.", - "id": 25075 - }, - { - "image_path": "G:\\images\\combined\\000000004972_jpg.rf.3a9947f417d4f146600fb3acd611cbfc.jpg", - "response": "A black and white photo of a man in a white shirt holding a rope tied to a horse. A man in a white shirt and black pants is in the background. Another man in a white shirt is in the background. A horse is in the background. A wooden pallet is in the foreground. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background. A man in a white shirt is in the background.", - "id": 25076 - }, - { - "image_path": "G:\\images\\combined\\000000004972_jpg.rf.3eec9b36fcdfd9616ab94a5e35e9ed35.jpg", - "response": "A collage of three different wooden pallets. One is light brown, one is dark brown and the third is white.", - "id": 25077 - }, - { - "image_path": "G:\\images\\combined\\000000004972_jpg.rf.b6d6a713c4a1a5220b382213df5c98b2.jpg", - "response": "A collage of black and white images. The top image is a black and white image of a woman sitting on a pile of logs. The middle left image is a black and white image of a square divided into 4 equal sections. The middle right image is a black and white image of a woman sitting on a pile of logs. The bottom image is a black and white image of a square divided into 4 equal sections.", - "id": 25078 - }, - { - "image_path": "G:\\images\\combined\\000000004975_jpg.rf.29071c9a425c2f2d97b3044670d789c2.jpg", - "response": "A collage of images including a man in a graduation gown, a JCB, a man with a black square over his face, a person in a wheelchair and a window with a black square over the image.", - "id": 25079 - }, - { - "image_path": "G:\\images\\combined\\000000004975_jpg.rf.6217329e702cb962274f5e7d802d77e0.jpg", - "response": "A black and white photo of a man and a woman standing under an umbrella. The woman is wearing a black and white checkered dress and the man is wearing a black suit. They are standing in front of a building with a sign that says \"COUNTRY\" on it. The man is also holding a handbag. In the bottom right corner of the image, there is a person wearing a black shirt and black pants.", - "id": 25080 - }, - { - "image_path": "G:\\images\\combined\\000000004975_jpg.rf.cc3a286085150e581bb8bbaee316d912.jpg", - "response": "A collage of images, including a car, a truck, a crate of apples, a person walking, and a person using a machine.", - "id": 25081 - }, - { - "image_path": "G:\\images\\combined\\000000004979_jpg.rf.1067a931c86fff9358329d2a3558ae22.jpg", - "response": "A collage of black and white photos. In the top left corner, a woman is sitting on a bench with a handbag. In the top right corner, a woman is sitting on a horse on the beach. In the bottom left corner, a woman is sitting on a couch with a handbag. In the bottom right corner, a woman is standing in front of the ocean.", - "id": 25082 - }, - { - "image_path": "G:\\images\\combined\\000000004979_jpg.rf.2f6cf7a7207649e221571b1be0e652ee.jpg", - "response": "A collage of black and white images. The top left image is of a street sign, the top right is of a person walking in front of a building, the bottom left is of a person walking up a flight of stairs, the bottom right is of a close up of a metal box.", - "id": 25083 - }, - { - "image_path": "G:\\images\\combined\\000000004979_jpg.rf.cff70a8020f60573fe81e37834239cfc.jpg", - "response": "A black and white photo of a bathroom with a toilet, sink, and tub. The tub is on the left, the toilet is on the right, and the sink is in the top right corner. The bathroom is made of brick and has a window on the left side. The window is covered with blinds. There is a chair in the bottom left corner of the photo.", - "id": 25084 - }, - { - "image_path": "G:\\images\\combined\\000000004980_jpg.rf.33217fefe016278a7ea92249ebf1fa9e.jpg", - "response": "A woman with glasses and a skirt is holding a suitcase and stepping off a bus.", - "id": 25085 - }, - { - "image_path": "G:\\images\\combined\\000000004980_jpg.rf.68e549f0e711be0fb796e84c2aee46d5.jpg", - "response": "A bathroom scene with a bathrub and a tiled wall. There are two bathmats on the floor, one in front of the bathrub and one in front of the sink. The bathmat in front of the sink is white with black squares on it. The bathmat in front of the bathrub is black.", - "id": 25086 - }, - { - "image_path": "G:\\images\\combined\\000000004980_jpg.rf.7707c12479c81c1ed1e977a13bc969e1.jpg", - "response": "A black and white image with a grid of images. There is a woman holding a suitcase, a woman sitting on a couch, a woman with her hand on her face, a person looking at a computer screen, a person looking at a book, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over the eyes, a person looking at a computer screen with a black square over the eyes, a person looking at a book with a black square over", - "id": 25087 - }, - { - "image_path": "G:\\images\\combined\\000000004981_jpg.rf.663592685209035643aa97eef0835987.jpg", - "response": "A black and white image with a person walking away from the camera. The person is holding a white bag and is wearing a white shirt and dark pants. There is a forklift in the background.", - "id": 25088 - }, - { - "image_path": "G:\\images\\combined\\000000004981_jpg.rf.669c57a18c4657c3630e7eaf69d279b6.jpg", - "response": " A woman(559,425),(869,997) and a man(839,356),(997,996) standing next to a car(377,327),(996,997) with a missing pallet(10,426),(418,943)", - "id": 25089 - }, - { - "image_path": "G:\\images\\combined\\000000004981_jpg.rf.a18800d43a6b29847dd3067019e644f3.jpg", - "response": "A black and white image of a variety of different scenes. The top left image is of a crowd of people standing on a bridge. The top right image is of a car. The bottom left image is of a bridge with a crowd of people walking on it. The bottom right image is of a plane taking off.", - "id": 25090 - }, - { - "image_path": "G:\\images\\combined\\000000004984_jpg.rf.335e4bdf0f51a6dd5dea8cc3289b8c73.jpg", - "response": "A collage of black and white images. The top left image is a man in the water with a black square over his face. The top right image is a close up of a man's face. The bottom left image is a man on a bicycle with a car behind him. The bottom right image is a close up of the man's face.", - "id": 25091 - }, - { - "image_path": "G:\\images\\combined\\000000004984_jpg.rf.8b63ee0e0fe3fc7f3482a79198ade308.jpg", - "response": "A black and white image with 5 different images in it. The first image is of a car with a number 7 on the back of it. The second image is of a wall with a brick pattern. The third image is of a traffic light with a car behind it. The fourth image is of a brick wall with a wooden pallet leaning against it. The fifth image is of a person's arm with a tattoo on it.", - "id": 25092 - }, - { - "image_path": "G:\\images\\combined\\000000004984_jpg.rf.92d4b3f6fbec3e384781e97bd6c7e315.jpg", - "response": "A black and white photo of a beach with the ocean in the background. There is a person sitting on a chair on the beach, a person standing next to a pole, a truck in the background, and a fork lift truck.", - "id": 25093 - }, - { - "image_path": "G:\\images\\combined\\000000004988_jpg.rf.501fc891c76560e4f00d3e7feea92a62.jpg", - "response": "A black and white image of a bus and some other vehicles. The bus is on the left side of the image and is in the middle of the picture. The other vehicles are on the right side of the image and are towards the top of the picture. There is a fence in the middle of the image. The top left corner of the image is black and the bottom left corner is black.", - "id": 25094 - }, - { - "image_path": "G:\\images\\combined\\000000004988_jpg.rf.8e48a1bc2a831c50e711de1c48883c56.jpg", - "response": "A collage of images including a bus, a truck, and pallets.", - "id": 25095 - }, - { - "image_path": "G:\\images\\combined\\000000004988_jpg.rf.c0fe4c1039891b1cf7c4b60ae40284a7.jpg", - "response": "A collage of black and white images. The top right image is of a person sitting on a bench with a suitcase. The top left image is of the back of a bus. The bottom left image is of a close up of a metal box. The bottom right image is of a pallet.", - "id": 25096 - }, - { - "image_path": "G:\\images\\combined\\000000005016_jpg.rf.3b4484eb2050ada585bd5491ce9d151a.jpg", - "response": "A black and white image with four quadrants. The top left one features a man surfing on a wave, the top right one has a close up of a building with a clock, the bottom left one has a picture of a crowd of people, and the bottom right one has a close up of a tree. All of this is set against a backdrop of the ocean.", - "id": 25097 - }, - { - "image_path": "G:\\images\\combined\\000000005016_jpg.rf.912bcea915b8ae94a6ee7259bc382c24.jpg", - "response": "A collage of four photos, one of a surfer, one of a skier, one of a boy, and one of a man playing golf.", - "id": 25098 - }, - { - "image_path": "G:\\images\\combined\\000000005016_jpg.rf.e3eaa2aa2a373dbf8b35b7ea2a63675d.jpg", - "response": "A collage of four different photos. One of a man surfing, one of a building, one of a billboard and one of a road.", - "id": 25099 - }, - { - "image_path": "G:\\images\\combined\\000000005028_jpg.rf.141f2cb1c54ffdaaa3c5d27b0dbe5188.jpg", - "response": "A collage of four different black and white images. The first is a woman sitting on a couch with a laptop in front of her. The second is a fire hydrant. The third is a bed with a white comforter and many pillows. The fourth is a digital billboard with a calendar on it.", - "id": 25100 - }, - { - "image_path": "G:\\images\\combined\\000000005028_jpg.rf.267bfd438004b360d4fc353ded3d1bec.jpg", - "response": "A collage of four black and white photos. On the left is a person sitting at a desk with a computer. In the second row, there is a snowy landscape, a building, and a person standing on a ladder.", - "id": 25101 - }, - { - "image_path": "G:\\images\\combined\\000000005028_jpg.rf.500401c1d119b4a4d67ff9afa160ad8d.jpg", - "response": "A black and white image of a warehouse. On the top right is a stack of cement bags, on the top left is a scale with a plastic bag on it, in the middle left is a stack of firewood, in the middle right is a stack of bricks, and in the bottom left is a box.", - "id": 25102 - }, - { - "image_path": "G:\\images\\combined\\000000005032_jpg.rf.132c42054cab783e8ea1d012de25fb8a.jpg", - "response": "A collage of a family in ski gear with a laptop open to a picture of the family.", - "id": 25103 - }, - { - "image_path": "G:\\images\\combined\\000000005032_jpg.rf.47d1c23e4776c7555aeccef647234b4c.jpg", - "response": "A collage of four photos. In the top left photo, a man is standing on skis in the snow. In the top right photo, a woman is sitting on a subway train with her legs up. In the bottom left photo, a railing is shown. In the bottom right photo, a close-up of a tree branch is shown.", - "id": 25104 - }, - { - "image_path": "G:\\images\\combined\\000000005032_jpg.rf.6ecd2d41247225543775f79ec7a062ce.jpg", - "response": "A collage of different images including a person on a bike, a person playing tennis, a person on a ladder, and a person with a backpack and boxes.", - "id": 25105 - }, - { - "image_path": "G:\\images\\combined\\000000005038_jpg.rf.39955ee5a0d99c338f31b1bb7075c7ab.jpg", - "response": "A black and white image of a woman in a room with a bed and a lamp. There are also boxes in the room. The woman is wearing glasses and an apron. There is also a person with a fork in the image.", - "id": 25106 - }, - { - "image_path": "G:\\images\\combined\\000000005038_jpg.rf.a50be720d01537ae5c503af7fdeddecc.jpg", - "response": "A collage of black and white images. The top left image is of a bed with white sheets and pillows. The top right image is of a woman holding a stuffed animal. The bottom left image is of a man walking down a street. The bottom right image is of a tile floor.", - "id": 25107 - }, - { - "image_path": "G:\\images\\combined\\000000005038_jpg.rf.ea026519d04f6dea1dfc3c5e51b69328.jpg", - "response": "A black and white photo of a room with a bed in the background. There are also boxes in the room.", - "id": 25108 - }, - { - "image_path": "G:\\images\\combined\\000000005073_jpg.rf.c3b3cfe00738e972cc5a442b0beed2e9.jpg", - "response": "A black and white image of an airport. There is a plane on the runway, a plane in the background, a building with a sign that says \"jet centre\" and another building with a sign that says \"\u884c\u653f\u822a\u7a7a\". There is also a person on a ladder near the top of the image.", - "id": 25109 - }, - { - "image_path": "G:\\images\\combined\\000000005073_jpg.rf.d80f918ade384a7326bfdb28f03646e7.jpg", - "response": "A collage of black and white images. The top left image is of a street scene with a car and several people. The top right image is a close up of a white box with a black square over the top. The bottom left image is of a wall with a black square over the top. The bottom right image is of a forklift carrying a white box.", - "id": 25110 - }, - { - "image_path": "G:\\images\\combined\\000000005073_jpg.rf.e80b18768cfd7a14af7ffe08ac162055.jpg", - "response": "A collage of black and white images. On the left is a person walking down a set of stairs. In the middle is a cow standing on a concrete block. On the right is a person wearing a white shirt and black pants.", - "id": 25111 - }, - { - "image_path": "G:\\images\\combined\\000000005083_jpg.rf.fba43c89335e3bfdbfdf5810030bc1da.jpg", - "response": " Cross-country skiers(238,176),(466,997)(415,125),(746,996)(95,253),(267,861) in a race", - "id": 25112 - }, - { - "image_path": "G:\\images\\combined\\000000005085_jpg.rf.5f9195e5fef4367be14cbbb000ae2a7d.jpg", - "response": "A collage of four photos. The top left photo is of two people sitting on a wooden bench in a park. The top right photo is of a person standing on a ladder in a room. The bottom left photo is of a corner of a wall with a black square on it. The bottom right photo is of a person standing in front of a refrigerator door.", - "id": 25113 - }, - { - "image_path": "G:\\images\\combined\\000000005085_jpg.rf.cdd8a00e6dac83d2186d6ae27231bcc1.jpg", - "response": "A collage of black and white images. From top to bottom, the images are a computer keyboard, a computer screen with a puzzle on it, a person running, a person walking in a forest, and two people sitting on a bench.", - "id": 25114 - }, - { - "image_path": "G:\\images\\combined\\000000005085_jpg.rf.e176b995d48bb0b53fb1cdb8316c9db2.jpg", - "response": "A black and white image of a man walking in front of a fruit market. The man is wearing a dark shirt and is walking in front of a fruit market. There are two wooden crates of fruit stacked on a shelf behind the man. To the left of the man, there is a person sitting on a bench. The bench is next to a railing and a tree.", - "id": 25115 - }, - { - "image_path": "G:\\images\\combined\\000000005086_jpg.rf.694b734da334edbb2c7de964c78eccba.jpg", - "response": "A black and white photo of a street scene with a man walking a bicycle, a woman walking a horse and carriage, a man walking down a flight of stairs, a woman walking down a street, and a man walking down a street.", - "id": 25116 - }, - { - "image_path": "G:\\images\\combined\\000000005086_jpg.rf.d19ba99f1c656fc91d33312b59001721.jpg", - "response": "A black and white image of a parking lot with cars and a truck. There is a fence in the background and a bench. There are also two people in the image.", - "id": 25117 - }, - { - "image_path": "G:\\images\\combined\\000000005086_jpg.rf.dc90d9c7f419ba83d9a42b985bd265ca.jpg", - "response": "A black and white image of a collage of images. The images include a tree, a building, a forklift with boxes, and a building with boxes stacked on pallets.", - "id": 25118 - }, - { - "image_path": "G:\\images\\combined\\000000005088_jpg.rf.337755b9274f81b2f4f7a111d124896a.jpg", - "response": "A collage of black and white images including a roof, a tennis court, a person playing tennis, and a car.", - "id": 25119 - }, - { - "image_path": "G:\\images\\combined\\000000005088_jpg.rf.37839432b65e49ad0371896226cd5086.jpg", - "response": "A black and white image of an airport with a plane on the runway. There are two people in the image, one on the right side and one in the middle. There is a building in the background.", - "id": 25120 - }, - { - "image_path": "G:\\images\\combined\\000000005088_jpg.rf.9d10cbafc1a653c327c02909cc4b38b2.jpg", - "response": "A collage of four different images. The first is a small building with a door and a window. The second is a jet airplane taking off from an airport runway. The third is a snowy cliffside with a small cabin. The fourth is a close-up of a box of Lowes tap washers.", - "id": 25121 - }, - { - "image_path": "G:\\images\\combined\\000000005094_jpg.rf.09b60222d496e9fa98aaa7babb9ee1d3.jpg", - "response": "A collage of four black and white images. The first is a man in a suit walking down a street. The second is a close up of a man's shoes. The third is a group of people walking in a subway car. The fourth is a close up of a book.", - "id": 25122 - }, - { - "image_path": "G:\\images\\combined\\000000005094_jpg.rf.18c735043db6c9450baa286b606e3e04.jpg", - "response": "A collage of four photos. The first is a close-up of a stack of wooden pallets. The second is a group of people in a library, with one person holding a book. The third is a man in a suit opening a car door. The fourth is a close-up of a rug with a design of flowers.", - "id": 25123 - }, - { - "image_path": "G:\\images\\combined\\000000005094_jpg.rf.686daddc80faa7c1044fbfcbbb6bf1e5.jpg", - "response": "A collage of black and white images of people and objects. On the left is a woman in a white coat walking out of a library. In the middle is a bed with white sheets and a lamp. On the right is a woman in a black and white striped shirt and black pants looking at a white sign. In the bottom right corner is a man in a suit looking at a white and black striped package. In the bottom middle is a white and black striped package. In the top middle is a lamp.", - "id": 25124 - }, - { - "image_path": "G:\\images\\combined\\000000005105_jpg.rf.fd4bb44a5f0871a0ddab01fd52e0ba7c.jpg", - "response": "A man on a paddle board in the water.", - "id": 25125 - }, - { - "image_path": "G:\\images\\combined\\000000005107_jpg.rf.0309a851597d357d3747fdfc86e85832.jpg", - "response": "A collage of images, including a group of people in a public space, a man sitting on a horse, a group of people in a public space, and a man playing a guitar.", - "id": 25126 - }, - { - "image_path": "G:\\images\\combined\\000000005107_jpg.rf.c8118851c0164d03f92533215d4c5662.jpg", - "response": "A black and white photo of a bus with people getting on it.", - "id": 25127 - }, - { - "image_path": "G:\\images\\combined\\000000005107_jpg.rf.ca8d97811ac1299885b88133d21d6b23.jpg", - "response": "A black and white collage of 6 different images. 3 show a bus, 2 show a store, and 1 shows a bus stop.", - "id": 25128 - }, - { - "image_path": "G:\\images\\combined\\000000005113_jpg.rf.11a019793bf33c4b756f07b80c297ead.jpg", - "response": "A collage of four photos. The top left photo is a close up of a keyboard on a desk. The top right photo is a close up of a laptop computer. The bottom left photo is a stack of concrete blocks. The bottom right photo is a person working on a construction site.", - "id": 25129 - }, - { - "image_path": "G:\\images\\combined\\000000005113_jpg.rf.b8d370737073f45d93989ce42aad46db.jpg", - "response": "A black and white photo of a computer keyboard.", - "id": 25130 - }, - { - "image_path": "G:\\images\\combined\\000000005113_jpg.rf.f8bbdee4f59381f06d64c205b344a7a2.jpg", - "response": "A collage of black and white images. The top left image is of a computer keyboard. The top right image is of the back of a truck. The bottom left image is of a pile of boxes. The bottom right image is of a car driving down a street.", - "id": 25131 - }, - { - "image_path": "G:\\images\\combined\\000000005124_jpg.rf.8601b3c16766480542cbb4ee6f8af591.jpg", - "response": "A collage of images including a person kicking a ball, a recycling symbol, a person using a computer, a TV, and a person using a computer.", - "id": 25132 - }, - { - "image_path": "G:\\images\\combined\\000000005124_jpg.rf.ecd3ba6d1d54d6dfbcc62e937a2c4b48.jpg", - "response": "A collage of black and white images. On the left is a man in a white shirt and black shorts diving in front of a soccer goal. In the middle is a black and white photo of a tree. On the right is a close up of a metal pole with a black square over the top.", - "id": 25133 - }, - { - "image_path": "G:\\images\\combined\\000000005139_jpg.rf.25c1a9a76a8e53aaa26341473b6a7600.jpg", - "response": "A collage of different sports including tennis, soccer, and football.", - "id": 25134 - }, - { - "image_path": "G:\\images\\combined\\000000005139_jpg.rf.f1acadfa659278400a5856c6b2154b6c.jpg", - "response": "A black and white collage of images including a man holding a tennis racket, a woman sitting on a wall, a man on a balcony, a bunch of bananas, a plane on a runway, and a building.", - "id": 25135 - }, - { - "image_path": "G:\\images\\combined\\000000005139_jpg.rf.f314b5efc60a977ceec27882a39197d8.jpg", - "response": "A collage of black and white photos of a woman dusting a bed, dusting a table, and dusting a couch.", - "id": 25136 - }, - { - "image_path": "G:\\images\\combined\\000000005142_jpg.rf.b7ea353f8eb418de65d2eee4042c5b1d.jpg", - "response": "A black and white cat sitting in a suitcase.", - "id": 25137 - }, - { - "image_path": "G:\\images\\combined\\000000005152_jpg.rf.7351dbe46e1ef2b6dddded0e0403caf3.jpg", - "response": "A collage of multiple skateboarders in different locations. There is a person wearing a white shirt with the number 8 on it. Another person is in the process of jumping on a skateboard. Another person is sitting on a skateboard on a bench. A person is holding a skateboard in their hand. There is a forklift in the background of one of the images.", - "id": 25138 - }, - { - "image_path": "G:\\images\\combined\\000000005152_jpg.rf.a19fafae5401fc6b80774327a7d27cb9.jpg", - "response": "A black and white image of a man wearing a white shirt and grey pants, holding a pole with a wire mesh box at the end. The man is standing behind a wire mesh box and a wooden box. There are two black squares in the middle of the image and a black rectangle on the right side. There is a wire mesh box on the right side of the image and a black rectangle on the bottom right corner.", - "id": 25139 - }, - { - "image_path": "G:\\images\\combined\\000000005152_jpg.rf.ec41201b686b77d721c8670e77930d9d.jpg", - "response": "A collage of four photos. The first is a black and white photo of a person in a white lab coat holding a test tube. The second is a black and white photo of a person jumping over a turnstile. The third is a black and white photo of a kitchen with a sink, a stove, and a refrigerator. The fourth is a black and white photo of a group of people walking through a door.", - "id": 25140 - }, - { - "image_path": "G:\\images\\combined\\000000005169_jpg.rf.98f69c5c746ffa6f045943f8952c929a.jpg", - "response": "A double decker bus is driving down a snowy street.", - "id": 25141 - }, - { - "image_path": "G:\\images\\combined\\000000005172_jpg.rf.0819f8be8a1eb8e3fe52e0be541138fc.jpg", - "response": "A black and white photo with 5 different images. The top left image is of a refrigerator with a picture of a woman and a child on it. The top right image is a close up of a wall with a clock on it. The bottom left image is a close up of a glass of water sitting on a counter. The bottom right image is a car driving down a road. The bottom right image is a building with a sign on it.", - "id": 25142 - }, - { - "image_path": "G:\\images\\combined\\000000005172_jpg.rf.26d7e7eec545283a0aeb7715bd500c12.jpg", - "response": "A bathroom with a sink, toilet and mirror.", - "id": 25143 - }, - { - "image_path": "G:\\images\\combined\\000000005172_jpg.rf.56e1a17130537fcabdb40ae8ed4f49fd.jpg", - "response": "A black and white image of a warehouse with a forklift and pallets. There are 5 pallets in total, some stacked on top of each other, and some on the ground. There is also a car in the background.", - "id": 25144 - }, - { - "image_path": "G:\\images\\combined\\000000005178_jpg.rf.8caae3e2c027284e06df67f4e091a484.jpg", - "response": "A collage of four different images. The top left image is a black square with a small square of a person in the middle. The top right image is a black square with a man in a black t-shirt looking to the right. The bottom left square is a black square with a person sitting on a horse in the desert. The bottom right square is a black square with a city skyline with a billboard in the foreground.", - "id": 25145 - }, - { - "image_path": "G:\\images\\combined\\000000005178_jpg.rf.9255acc89accb2fb7d658f91cf2e3d16.jpg", - "response": "A collage of images. The top image is a black and white photo of a dog walking on a beach. The middle left image is a black square over a photo of a tree. The middle right image is a black square over a photo of a girl blowing bubbles. The bottom right image is a black and white photo of a girl blowing bubbles.", - "id": 25146 - }, - { - "image_path": "G:\\images\\combined\\000000005178_jpg.rf.968521a5ca2f6b14411bc21abd18e343.jpg", - "response": "A collage of images. On the top right is a truck with a horse in the back. Below that is a person with a horse in a field. Below that is a shipping container.", - "id": 25147 - }, - { - "image_path": "G:\\images\\combined\\000000005205_jpg.rf.00fe6b66371dade1412e1c2567c11cfd.jpg", - "response": "A collage of three black and white images. The top left image is of a motorcycle with a box on the ground. The top right image is of a wooden pallet. The bottom right image is a close up of a wooden block.", - "id": 25148 - }, - { - "image_path": "G:\\images\\combined\\000000005205_jpg.rf.a02b85fcbecd649074c2a8891e0bd264.jpg", - "response": "A collage of images including a man with a helmet on a motorcycle, a bathroom with a toilet and rug, a group of people on a beach, and a license plate on a car.", - "id": 25149 - }, - { - "image_path": "G:\\images\\combined\\000000005205_jpg.rf.ea783656948d415a7a6514a584ff3b08.jpg", - "response": "A collage of 4 photos. In the first one, a man is holding a microphone in front of a camera. In the second one, a man is holding a large knife in front of another man. In the third one, there are many boxes stacked on top of each other. In the fourth one, two men are talking in the background.", - "id": 25150 - }, - { - "image_path": "G:\\images\\combined\\000000005210_jpg.rf.6024ee435e71024e7fa7237a7bc9715f.jpg", - "response": "A collage of images including a pallet of goods, a kite, a baby's face and a man's face.", - "id": 25151 - }, - { - "image_path": "G:\\images\\combined\\000000005210_jpg.rf.b29c2d398ff18576fe666ddbc498ca7b.jpg", - "response": "A black and white image of a beach with a number of people walking along the beach. There are a number of people standing around in the middle of the image, with some of them walking towards the left. There are also a number of people walking towards the right. In the background, there are a number of buildings and a hill.", - "id": 25152 - }, - { - "image_path": "G:\\images\\combined\\000000005210_jpg.rf.ed6684bc4799cb5d1a071a05cf54f702.jpg", - "response": "A collage of four different images. In the top left image, a person is standing on a beach looking out at the water. In the top right image, a person is standing on a snowboard. In the bottom left image, a laptop computer is open on a desk. In the bottom right image, a stack of papers is on a desk.", - "id": 25153 - }, - { - "image_path": "G:\\images\\combined\\000000005215_jpg.rf.38a948efc4860140df4aa65ed5776243.jpg", - "response": "A black and white image of a man in a suit sitting on a pile of garbage next to a business storage box.", - "id": 25154 - }, - { - "image_path": "G:\\images\\combined\\000000005215_jpg.rf.45f9da3b124cb8d34deb698799f5cb51.jpg", - "response": "A collage of 4 photos. The first is a black and white photo of a person wearing a cowboy hat and boots. The second is a black and white photo of a person in a hat and a car. The third is a black and white photo of a box. The fourth is a black and white photo of a person in a hat and a car.", - "id": 25155 - }, - { - "image_path": "G:\\images\\combined\\000000005215_jpg.rf.6e221d0ce8efd85139ab3a1fe3336380.jpg", - "response": "A black and white photo of a room with a table and chairs. There is a person sitting at the table and another person standing in the room. There are also several books scattered around the room.", - "id": 25156 - }, - { - "image_path": "G:\\images\\combined\\000000005219_jpg.rf.a655c1e2021a8c43f6aba3af4b657825.jpg", - "response": "A collage of photos including a baby in a carrier, a woman with a baby, a city street, and a person with a handbag.", - "id": 25157 - }, - { - "image_path": "G:\\images\\combined\\000000005219_jpg.rf.bcb379582b2fc78abbb2b79bd33e42e2.jpg", - "response": "A collage of black and white images. The top right image is a close up of a laptop computer. The top left image is a person sitting on a bed with a tattoo on their arm. The bottom left image is a person walking with a skateboard. The bottom right image is a close up of a person's feet.", - "id": 25158 - }, - { - "image_path": "G:\\images\\combined\\000000005219_jpg.rf.e4c770dfa38511f5a955bb6b83252804.jpg", - "response": "A collage of images including a baby, a camera, a table and chairs, and a tiled floor.", - "id": 25159 - }, - { - "image_path": "G:\\images\\combined\\000000005225_jpg.rf.432a6fc6120f5f6939c65dc0eb01e1b4.jpg", - "response": "A baby sitting in a high chair with a teddy bear standing next to it.", - "id": 25160 - }, - { - "image_path": "G:\\images\\combined\\000000005245_jpg.rf.9ad8e6a899611f43592dff1c10222fb0.jpg", - "response": "A collage of four different images. The top left image is a man wearing a straw hat with a black square over his face. The top right image is a close up of smoke. The bottom left image is a wooden pallet. The bottom right image is two people cross country skiing with a black square over their faces.", - "id": 25161 - }, - { - "image_path": "G:\\images\\combined\\000000005245_jpg.rf.a6368f64e2ac887a2551e7b907329e83.jpg", - "response": "A collage of four different photos. The top left photo is a man wearing a straw hat and a black t-shirt, the top right photo is a close up of a cat's face, the bottom left photo is a black and white photo of a building, and the bottom right photo is a close up of a cat's backside.", - "id": 25162 - }, - { - "image_path": "G:\\images\\combined\\000000005245_jpg.rf.b15537c13f7db2e8d0335dd2ed5d39b6.jpg", - "response": "A collage of images including a river, a train, a person wearing a hat, and a sign.", - "id": 25163 - }, - { - "image_path": "G:\\images\\combined\\000000005247_jpg.rf.69b778031b2171545863662e7affe7c6.jpg", - "response": "A black and white photo of a man sitting on a motorcycle. The man is wearing a black shirt and has a beard. The motorcycle is black and has a helmet hanging off the back of it. There is a building in the background with a window that has the number 7 on it. There is also a tree in the background.", - "id": 25164 - }, - { - "image_path": "G:\\images\\combined\\000000005247_jpg.rf.8c3ed2cd9e0e64995e20001fc0e84524.jpg", - "response": "A collage of three different things. First is a close up of a person's hand holding a knife and fork in front of a tower block, second is a close up of three wooden pallets, and third is a black and white photo of a city block with two black squares covering parts of the buildings.", - "id": 25165 - }, - { - "image_path": "G:\\images\\combined\\000000005247_jpg.rf.ad1cfe9ff64a1f686a583362efa555d2.jpg", - "response": "A man in a warehouse with a forklift and some wooden pallets.", - "id": 25166 - }, - { - "image_path": "G:\\images\\combined\\000000005256_jpg.rf.0333b46d09b216173e15c6da98f8e960.jpg", - "response": "A collage of black and white photos, including a man in a plaid shirt, a motorcycle, a dining table with chairs, a wine glass, a person lying on a bed, a handbag, a bottle, a cup, a fork, a knife, a spoon, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person, a bottle, a cup, a spoon, a fork, a book, a TV, a clock, a bottle of wine, a cup, a dining table, a chair, a person", - "id": 25167 - }, - { - "image_path": "G:\\images\\combined\\000000005256_jpg.rf.999bb09e6554f387b44beb5c3adc00bc.jpg", - "response": "A collage of images including a truck, a box that says Big Kitchen, a box with a knife on it, a box with a picture of a person on it, and a box with a picture of a person falling.", - "id": 25168 - }, - { - "image_path": "G:\\images\\combined\\000000005256_jpg.rf.e90e02708b0b6f8e75941403dc5730c0.jpg", - "response": "A collage of images, including a man in a helmet holding a camera, a group of people walking on a beach, a room with a fireplace and a couch, and a motorcycle helmet.", - "id": 25169 - }, - { - "image_path": "G:\\images\\combined\\000000005278_jpg.rf.bff643c18ac0ebb39eb426971b07c51d.jpg", - "response": "A train on the tracks in a station.", - "id": 25170 - }, - { - "image_path": "G:\\images\\combined\\000000005282_jpg.rf.6b3fc05cc2856ff0007bd8537a1e40a7.jpg", - "response": "A bridge over a river with a narrowboat passing under it.", - "id": 25171 - }, - { - "image_path": "G:\\images\\combined\\000000005288_jpg.rf.9e5fc6b3df8e772da3e1371a9ce7aa69.jpg", - "response": "A black and white image of a beach scene with a woman sitting on a rock next to a bowl. There are two men in the image, one on the left and one on the right. There are also two no smoking signs and two no dogs allowed signs. The image is titled \"A Day at the Beach\"", - "id": 25172 - }, - { - "image_path": "G:\\images\\combined\\000000005288_jpg.rf.b48cba542acc069e96fb9d1d2a6c7b95.jpg", - "response": "A collage of black and white images. The top image is of a close up of a palm leaf. The second image is of a person walking down a street with a backpack. The third image is of a group of people sitting at a table.", - "id": 25173 - }, - { - "image_path": "G:\\images\\combined\\000000005288_jpg.rf.e53864787ea396347d6fef0d858fbcf2.jpg", - "response": "A collage of images including a dog watching a baseball game, a man in a room with a TV and a truck, and a child playing with a truck.", - "id": 25174 - }, - { - "image_path": "G:\\images\\combined\\000000005294_jpg.rf.c2fe64662353f04848f04d0d732c21cd.jpg", - "response": " Two men(265,324),(733,928)(235,256),(524,713) sitting on a bench(392,430),(779,942) reading newspapers(370,256),(610,507)(450,435),(778,733)", - "id": 25175 - }, - { - "image_path": "G:\\images\\combined\\000000005303_jpg.rf.1385c3b9d7dfb39a2b19056af363e079.jpg", - "response": "A close up of a wooden pallet with a square hole in the side. There is a black and white photo of a fire burning in a container.", - "id": 25176 - }, - { - "image_path": "G:\\images\\combined\\000000005303_jpg.rf.afa675bb3cdef990751a76c6fb86b0d4.jpg", - "response": "A black and white photo of a man and a child. The man is looking down at the child and smiling. The child is looking up at the man. The man is wearing a white shirt with the word \"Rush\" on it. There is a TV in the background on the left side of the room. There are three boxes stacked up in the background on the right side of the room. There is a chair in the background on the right side of the room. There is a black square over the man's face. There is a black square over the child's face. There is a black square over the TV. There is a black square over the chair. There is a black square over the boxes.", - "id": 25177 - }, - { - "image_path": "G:\\images\\combined\\000000005303_jpg.rf.f88b8297ec135c118bd4e67b2ab9cfa9.jpg", - "response": "A black and white photo of a bridge with a truck in the background. There is a man in a suit standing in front of the bridge. There are also three black squares over different parts of the image.", - "id": 25178 - }, - { - "image_path": "G:\\images\\combined\\000000005312_jpg.rf.0abac44fd37b9c07ece08789b52aff8b.jpg", - "response": "A collage of black and white photos of people in public spaces. There are two photos of people sitting on park benches, one of a man reading a newspaper and one of a woman looking at her phone. There are also two photos of people walking down the street, one of a man walking and one of a woman walking. There is also a photo of a bus stop with a bus in the background.", - "id": 25179 - }, - { - "image_path": "G:\\images\\combined\\000000005312_jpg.rf.42c3d77b2e949f01d9fbcddd02735645.jpg", - "response": "A collage of black and white images, including a beach scene, a close-up of a wall, and a city street.", - "id": 25180 - }, - { - "image_path": "G:\\images\\combined\\000000005312_jpg.rf.724e0c285baa07caa3137d8269303c07.jpg", - "response": "A toddler looking at the camera, surrounded by a collage of different images. In the background, there is a mountain and a pagoda.", - "id": 25181 - }, - { - "image_path": "G:\\images\\combined\\000000005313_jpg.rf.10c018f68e376e89ea7dacc53ac4b88f.jpg", - "response": "A collage of different images. In the top right image, a woman is walking down a street carrying a bag. In the top left image, a man is walking down a street carrying a bag. In the bottom left image, a person is holding a brush in their hair. In the bottom right image, a book is open on a table.", - "id": 25182 - }, - { - "image_path": "G:\\images\\combined\\000000005313_jpg.rf.723c26e73cc3e07f26edf6332e13288e.jpg", - "response": "A collage of black and white images including a group of people standing on a street, a bus, a truck, a building and a train.", - "id": 25183 - }, - { - "image_path": "G:\\images\\combined\\000000005313_jpg.rf.757d9076e5de58fdca20e246ca856459.jpg", - "response": "A black and white image of a forklift in a kitchen. There are also pictures of a man in a kitchen and a man in a white shirt.", - "id": 25184 - }, - { - "image_path": "G:\\images\\combined\\000000005324_jpg.rf.74c3d97bbdac31086d5a537ded80334d.jpg", - "response": "A collage of images of kids playing baseball.", - "id": 25185 - }, - { - "image_path": "G:\\images\\combined\\000000005324_jpg.rf.bc366c37b4934af038a2ea65c4d15463.jpg", - "response": "A collage of black and white images. Top left is a group of people sitting on a beach under an umbrella. Top right is a man holding a baseball bat. Middle left is a group of people sitting on a bench. Middle right is a woman swinging a tennis racket. Bottom left is a stack of crates. Bottom right is a close up of a woman holding a tennis racket.", - "id": 25186 - }, - { - "image_path": "G:\\images\\combined\\000000005324_jpg.rf.e39c68bc05e1f809a3970f50d525e162.jpg", - "response": "A black and white collage of images, including a boat, a building, a person jumping, and a bird.", - "id": 25187 - }, - { - "image_path": "G:\\images\\combined\\000000005325_jpg.rf.4844a6166d6b217aa7fe3b2b4ecdf636.jpg", - "response": "A collage of four different images. The first is a black and white image of a person on a motorcycle with a house in the background. The second is a black and white image of a woman in a dress sitting on the sidewalk with a house in the background. The third is a black and white image of a building with a black box drawn over it. The fourth is a black and white image of a building with a black box drawn over it.", - "id": 25188 - }, - { - "image_path": "G:\\images\\combined\\000000005325_jpg.rf.c4e3d3bd9dab488c0c02f1f92a7bfa32.jpg", - "response": "A collage of four photos. In the first, a man wearing a white jacket is walking in the street. In the second, a man wearing a white jacket is walking in the street. In the third, a man wearing a white jacket is walking in the street. In the fourth, a man wearing a white jacket is walking in the street.", - "id": 25189 - }, - { - "image_path": "G:\\images\\combined\\000000005325_jpg.rf.ccaa3f5a41b5135300cc44dd802819e9.jpg", - "response": "A collage of black and white images of people and architecture.", - "id": 25190 - }, - { - "image_path": "G:\\images\\combined\\000000005336_jpg.rf.1f47e52dcc80e502b82f733238fa650a.jpg", - "response": "A collage of a woman walking down the street, a picture of a bunch of boxes on a pallet, and a picture of a building with a sky background.", - "id": 25191 - }, - { - "image_path": "G:\\images\\combined\\000000005336_jpg.rf.3e2f36cdfc7fc098544a44ece0d6a3ed.jpg", - "response": "A collage of black and white images. The top left image is of a street with cars and buses. The top right image is of a corner of a cardboard box. The bottom left image is of a hand holding a cell phone. The bottom right image is of a close up of wood planks.", - "id": 25192 - }, - { - "image_path": "G:\\images\\combined\\000000005336_jpg.rf.3e9c56bbf604aa4f3bfcab644843a57a.jpg", - "response": "A collage of black and white images. The top left image is of a woman walking down a street. The top right image is of a train. The bottom left image is of a recycling symbol. The bottom right image is of a news stand.", - "id": 25193 - }, - { - "image_path": "G:\\images\\combined\\000000005339_jpg.rf.a2a50663b34a19b0df5966bbc800d92b.jpg", - "response": " A collage(4,6),(996,993) of black and white images. On the left is a man surfing in the sea. In the middle is a dog with a scarf on its head. On the right is a man with a hooded jacket on.", - "id": 25194 - }, - { - "image_path": "G:\\images\\combined\\000000005339_jpg.rf.dc5c7d719308befd62f48c4e3be288b5.jpg", - "response": "A collage of images including a statue of a man falling, a forklift, a building, and a dumpster.", - "id": 25195 - }, - { - "image_path": "G:\\images\\combined\\000000005339_jpg.rf.e0be310838232cebd5ecc6f36cb1a1d4.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man in a wetsuit surfing on a wave. The second is a black and white photo of a table with cups and bottles on it. The third is a black and white photo of a man in a wetsuit standing on a surfboard. The fourth is a black and white photo of a man in a wetsuit lying on a surfboard.", - "id": 25196 - }, - { - "image_path": "G:\\images\\combined\\000000005340_jpg.rf.2d21ebd1ad8bcd5a382e8f04563f1436.jpg", - "response": "A black and white photo of a man in a white shirt standing on a skateboard.", - "id": 25197 - }, - { - "image_path": "G:\\images\\combined\\000000005340_jpg.rf.433e8a4cd0ad21a8230a2416c61d3cc8.jpg", - "response": "A collage of 5 black and white images. Top left image is of a train, top right image is of a ladder, middle left image is of a city street with a bus and people, middle right image is of a bench, bottom left image is of a street with cars and people, bottom right image is of a bench.", - "id": 25198 - }, - { - "image_path": "G:\\images\\combined\\000000005340_jpg.rf.f290bf325fcc2dae969ecccf784eaeae.jpg", - "response": "A collage of black and white images. The top left image is of a person holding a cell phone with a black square over the face. The top right image is of a person holding a camera with a black square over the face. The bottom left image is of a person's hands holding a brush with a black square over the face. The bottom right image is of a book with a black square over the face.", - "id": 25199 - }, - { - "image_path": "G:\\images\\combined\\000000005345_jpg.rf.2371e718449f11c181d8136d5a8dedbd.jpg", - "response": "A black and white photo of a table with a box on it. The box is white and has a black square on each end. The table is made of wood and has a black frame. There is a person in the background of the photo.", - "id": 25200 - }, - { - "image_path": "G:\\images\\combined\\000000005345_jpg.rf.760efac03363476cc78f3262281817da.jpg", - "response": "A collage of black and white images, including a truck, a kitchen, a TV, a person, a suitcase, a clock, a speaker, a desk, a window, a shelf, a bottle, a bowl, a cup, a spoon, a fork, a bowl of fruit, a bowl of salad, a bottle of wine, a bottle of water, a cup of coffee, a bottle of sauce, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl of fruit, a bowl of vegetables, a bowl of pasta, a bowl of rice, a bowl of salad, a bowl of soup, a bowl", - "id": 25201 - }, - { - "image_path": "G:\\images\\combined\\000000005345_jpg.rf.8f780a008e5127993f535b781a0c060e.jpg", - "response": " Collage(5,10),(993,993) of four images. Top left: A kitchen counter with a laptop on it. Top right: A person wearing a white shirt and a hat. Bottom left: A stack of wooden pallets. Bottom right: A person leaning over a wooden pallet.", - "id": 25202 - }, - { - "image_path": "G:\\images\\combined\\000000005355_jpg.rf.264751e09a2b881629de171c4a1fe06b.jpg", - "response": "A collage of images including a bear, a pallet, and a baseball game.", - "id": 25203 - }, - { - "image_path": "G:\\images\\combined\\000000005355_jpg.rf.9bdcc0480392974a3945bfc08424d003.jpg", - "response": "A collage of black and white images. The top left image is a close up of a grassy area with a square black box missing. The top right image is a black and white image of a street scene with a train on the right. The bottom left image is a close up of a laptop with the word ASUS on it. The bottom right image is a street scene with people walking on the sidewalk.", - "id": 25204 - }, - { - "image_path": "G:\\images\\combined\\000000005355_jpg.rf.bc3fddbca569011e45fba8fbfe36d85b.jpg", - "response": " A collage(5,4),(995,994) of three images. The first is a black and white image of a tennis player in the middle of a serve. The second is a black and white image of a stack of wooden pallets. The third is a black and white image of a bench with a backpack on it.", - "id": 25205 - }, - { - "image_path": "G:\\images\\combined\\000000005356_jpg.rf.57a75bbeebfbed934957f8c49e19df38.jpg", - "response": " A man(328,447),(469,987) is standing in front of a window at an airport. He is looking out at a parked airplane.", - "id": 25206 - }, - { - "image_path": "G:\\images\\combined\\000000005359_jpg.rf.201450ac2bf23a99c29f63661d82c17b.jpg", - "response": "A collage of four black and white images. The first is a fireplace with a painting hanging above it. The second is a person in a suit and tie. The third is a boat on land. The fourth is a truck with a small house on the back.", - "id": 25207 - }, - { - "image_path": "G:\\images\\combined\\000000005359_jpg.rf.5efb36327463981f51b71d2c1ea15401.jpg", - "response": "A black and white image with a collage of different images. The top right image is a box with the word \"kitchen\" written on it. The top left image is a kitchen. The bottom right image is a window with a plane passing by. The bottom left image is a sidewalk with a tree in the background.", - "id": 25208 - }, - { - "image_path": "G:\\images\\combined\\000000005359_jpg.rf.ffcf564562616d038a914058aad19770.jpg", - "response": "A black and white image of a building with a large glass window. The building has a black and white sign on it that says \"The LINE Hotel\". There is a black box in the foreground of the image.", - "id": 25209 - }, - { - "image_path": "G:\\images\\combined\\000000005360_jpg.rf.24242dd9fb139bed3649e5c3580d7340.jpg", - "response": "A bookshelf with many books on it.", - "id": 25210 - }, - { - "image_path": "G:\\images\\combined\\000000005360_jpg.rf.62ef920939802581dc3263f60765470c.jpg", - "response": "A collage of images. Top: a kite flying in the sky. Middle left: a living room with a couch, two chairs, a dining table, and two vases. Middle right: a beach scene with many people, umbrellas, and tents. Middle left: a surfer riding a wave. Bottom left: a person's hair. Bottom right: a black square.", - "id": 25211 - }, - { - "image_path": "G:\\images\\combined\\000000005360_jpg.rf.a0fbb8941a5f44ee267e5a89826fd24a.jpg", - "response": "A black and white photo of a wooden pallet.", - "id": 25212 - }, - { - "image_path": "G:\\images\\combined\\000000005368_jpg.rf.865383ca78107780e3f8252ba2c2dc26.jpg", - "response": "A collage of images including a forklift, a boat, a woman throwing a frisbee and a girl standing on a beach.", - "id": 25213 - }, - { - "image_path": "G:\\images\\combined\\000000005368_jpg.rf.a802d19fe3d44815c9c714e9ac4fabcf.jpg", - "response": "A collage of black and white images including a person on skis, a living room, a table with books, a checklist of household chores, and a person carrying a box.", - "id": 25214 - }, - { - "image_path": "G:\\images\\combined\\000000005368_jpg.rf.b60d3c299f53ec3d79062c41a93aa464.jpg", - "response": "A collage of black and white images of a person doing various activities. There is a person skiing down a snowy mountain, a person doing a backflip, a person walking on a bridge, and a person walking in front of a truck. There are also three black squares placed over the image.", - "id": 25215 - }, - { - "image_path": "G:\\images\\combined\\000000005376_jpg.rf.387f1d567101f0117d42713e21bf7fba.jpg", - "response": "A black and white photo of a street scene with a man walking with a skateboard and a woman pushing a stroller. There is also a sign that says no dogs and a no smoking sign.", - "id": 25216 - }, - { - "image_path": "G:\\images\\combined\\000000005376_jpg.rf.afc26f04d8b8032ef9716dd0bf68e706.jpg", - "response": "A collage of images including a person on a skateboard, a forklift, boxes, and seagulls.", - "id": 25217 - }, - { - "image_path": "G:\\images\\combined\\000000005376_jpg.rf.c51c4923380dbb425d294282d2e9e19d.jpg", - "response": "A black and white collage of different images. The central image is of a man sitting at a table with a computer in front of him. He is wearing a white shirt and has a black watch on his left wrist. He is looking at the computer screen and has a pen in his right hand. To the right of the man is a laptop. To the left of the man is a square image of a group of people standing in front of a building. Above the group of people is a square image of a band performing on a stage. Above the stage is a square image of a bus. To the left of the bus is a square image of a man sitting on a motorcycle. To the top right of the collage is a square image of a beach scene with people standing and sitting on the sand. The sky is blue and there are umbrellas set up. To the top left of the collage is a square image of a carnival scene with rides and games.", - "id": 25218 - }, - { - "image_path": "G:\\images\\combined\\000000005377_jpg.rf.232a5ca64bc1a72fe7f91155e0ceee1c.jpg", - "response": "A collage of 6 different black and white images. The top right image is of a woman with her arms crossed. The top left image is of a body of water. The bottom left image is of a white box. The bottom middle left image is of a kite in the sky. The bottom middle right image is of a sign with the word \"EXC\" on it. The bottom right image is of a field.", - "id": 25219 - }, - { - "image_path": "G:\\images\\combined\\000000005377_jpg.rf.28cd4a45a5b99e712324d2c9de07ead9.jpg", - "response": "A collage of black and white images. The top left image is of a woman sitting on a bench by the ocean. The top right image is of a truck on a dirt road. The bottom left image is of a wooden bench. The bottom right image is of a pond with a tree reflection.", - "id": 25220 - }, - { - "image_path": "G:\\images\\combined\\000000005377_jpg.rf.78a80a47a35e33d3cd249ef367d5e6fb.jpg", - "response": "A black and white image of a group of people in a public space. They are looking at a sign that says \"no dogs\" and \"no children under 12\". In the foreground, there are two women taking photos of the sign with their cell phones. The first woman is holding the phone in front of her face, while the second woman is holding the phone in the air. The image is split into three sections, with the top section showing a close-up of the sign, the middle section showing a wider shot of the group of people, and the bottom section showing a close-up of the women's hands holding the phones.", - "id": 25221 - }, - { - "image_path": "G:\\images\\combined\\000000005385_jpg.rf.202922d0cf4f112ccdbecaaebe64d8e2.jpg", - "response": "A collage of four different images. The first is a black and white image of a baseball player, the second is a close up of a person's hands holding a Postpak envelope, the third is a close up of a person's hands typing on a keyboard, and the fourth is a black and white image of a person sitting on a couch.", - "id": 25222 - }, - { - "image_path": "G:\\images\\combined\\000000005385_jpg.rf.5eee6a0672eb6e7a50a63bae27abc29d.jpg", - "response": "A black and white photo of a bus driving down a street. The bus is on the left side of the image and is in the center. There are people standing on the sidewalk next to the bus. The bus has the number 15 on the back of it. On the right side of the image there is a man standing next to a box. There is also a car parked on the right side of the image. On the right side of the image there is a man standing on the sidewalk.", - "id": 25223 - }, - { - "image_path": "G:\\images\\combined\\000000005385_jpg.rf.8f2a140afc146f65be4a5837c7e01fc6.jpg", - "response": "A collage of 5 photos of children playing baseball.", - "id": 25224 - }, - { - "image_path": "G:\\images\\combined\\000000005388_jpg.rf.134437fc011bb06811b0601df3e21375.jpg", - "response": "A black and white collage of images including a sports stadium, a man on a bus, a man in a wheelchair, and a person listening to music.", - "id": 25225 - }, - { - "image_path": "G:\\images\\combined\\000000005388_jpg.rf.9af2bc5c53081f259df2ea83d420dd12.jpg", - "response": "A black and white image of a city street with a statue in the middle. There are multiple cars, buses, and people walking around. There is also a traffic light in the scene.", - "id": 25226 - }, - { - "image_path": "G:\\images\\combined\\000000005388_jpg.rf.b5c4623ff00e843204c17e9361e67058.jpg", - "response": "A collage of black and white images. The top left image is a person in white clothes and a baseball cap throwing a baseball on a baseball field. The top right image is a close up of a person's hands playing a xylophone. The bottom left image is a person in a black shirt and hat swinging a baseball bat. The bottom right image is a close up of a xylophone.", - "id": 25227 - }, - { - "image_path": "G:\\images\\combined\\000000005394_jpg.rf.0dd61647752d73af88c473b38195065c.jpg", - "response": "A black and white image with a variety of features. At the top is a wooden pallet, followed by a bowl and a pair of flip flops. Below that is a section of a lake, and at the bottom is a cactus.", - "id": 25228 - }, - { - "image_path": "G:\\images\\combined\\000000005394_jpg.rf.6d75afc8d4b23f66c5d95b407c5b07cd.jpg", - "response": "A collage of images including a forklift, a boat, and a pallet of wood.", - "id": 25229 - }, - { - "image_path": "G:\\images\\combined\\000000005394_jpg.rf.f5ae53a6d2afde9897dc4a3262645b99.jpg", - "response": "A black and white image of a collage of different images. The top image is of a boat on the water with a banner reading \"News\" in the background. The second image is of a person holding a bottle of beer. The third image is of a pile of wooden pallets. The fourth image is of a Nokia phone. The fifth image is of a person's feet in flip flops.", - "id": 25230 - }, - { - "image_path": "G:\\images\\combined\\000000005424_jpg.rf.774abec9bfbdc9d2a68badc5527bb55d.jpg", - "response": "A man sitting on a bed reading a book to a small child.", - "id": 25231 - }, - { - "image_path": "G:\\images\\combined\\000000005425_jpg.rf.4394c8a1ac437e36e380ec92e454fe86.jpg", - "response": "A black and white photo of a steam clock in Vancouver, BC. The clock is in the center of the image, with a man sitting on a bench above it. The man is wearing a white shirt and has his legs crossed. The bench is located on the right side of the clock. The background shows a street with a few buildings, a tree, and a bench. The image is divided into 4 squares.", - "id": 25232 - }, - { - "image_path": "G:\\images\\combined\\000000005425_jpg.rf.a63c7728860f5ab47227b1f58bc92e47.jpg", - "response": "A collage of images including a man surfing, a man in a white swim suit holding a surfboard, a house, and a barcode.", - "id": 25233 - }, - { - "image_path": "G:\\images\\combined\\000000005425_jpg.rf.d6db322d56511dafa46c338cdf9f261b.jpg", - "response": "A black and white image of a person falling into a large wave. The image is split into three sections, with the left section showing the person falling into the wave, the middle section showing the wave crashing over a forklift, and the right section showing a bedroom with a bed and a lamp.", - "id": 25234 - }, - { - "image_path": "G:\\images\\combined\\000000005430_jpg.rf.4331ecb63e652d19d7d0d6c27a75e3fe.jpg", - "response": "A collage of black and white images of people engaging in winter sports. From top to bottom, the images show a person in a plaid shirt holding ski poles, a man in a striped shirt skiing, a person in a striped shirt water skiing, a person surfing, and a man snowboarding.", - "id": 25235 - }, - { - "image_path": "G:\\images\\combined\\000000005430_jpg.rf.e933b91a1e81e5ae0b3efa2793240b9d.jpg", - "response": "A black and white photo of a boat in the water. There are 4 sections of the photo, the top left is a man holding a cell phone, the top right is a person with their hand on their face, the bottom left is a truck, and the bottom right is a wave in the water.", - "id": 25236 - }, - { - "image_path": "G:\\images\\combined\\000000005430_jpg.rf.ed25a3674295e230b81a0de789b324ba.jpg", - "response": "A collage of black and white images. On the left is a close up of a hand making a peace sign. In the center is a woman holding an umbrella. To the right is a man sitting in a car. In the top right is a close up of a hand holding a phone. In the bottom left is a blurry image of a city street.", - "id": 25237 - }, - { - "image_path": "G:\\images\\combined\\000000005443_jpg.rf.08c7ed844682332de1567a60a36d959c.jpg", - "response": "A collage of 4 images. The first is a black and white image of a man walking with skis on a snowy road. The second is a close up of a box with a QR code on it. The third is a black and white image of a man walking in front of a store. The fourth is a black and white image of a man walking in front of a store.", - "id": 25238 - }, - { - "image_path": "G:\\images\\combined\\000000005443_jpg.rf.10adc51adacae606e1bf3943cb549b60.jpg", - "response": "A collage of four photos. The first is a black and white photo of a person skiing on a snowy hill. The second is a black and white photo of a group of people standing around a pool. The third is a black and white photo of a clock. The fourth is a black and white photo of a woman playing tennis.", - "id": 25239 - }, - { - "image_path": "G:\\images\\combined\\000000005443_jpg.rf.f853fe0f400636cd4ead444d1f98cf03.jpg", - "response": "A collage of three photos. The first is a black and white photo of a Flexx Moving and Storage box with a list of rooms to be packed. The second is a close-up of a hand holding a coin over a bowl. The third is a black and white photo of a snowy field with a tree in the background.", - "id": 25240 - }, - { - "image_path": "G:\\images\\combined\\000000005471_jpg.rf.8d171d255b526d526576c6b1257c7558.jpg", - "response": "A collage of four photos. The top left photo shows a woman standing on a beach with her arms outstretched. The top right photo shows a close-up of a person's hands holding a frisbee. The bottom left photo shows a forklift with the word \"Liu\" on it. The bottom right photo shows a baseball player in a field getting ready to throw a ball.", - "id": 25241 - }, - { - "image_path": "G:\\images\\combined\\000000005471_jpg.rf.bd843ee04674a6aa5a20e1131a7a9bc7.jpg", - "response": "A collage of photos of a man in a baseball uniform.", - "id": 25242 - }, - { - "image_path": "G:\\images\\combined\\000000005471_jpg.rf.c6b3482b4e48b643d5ec9bc92233bbb7.jpg", - "response": "A black and white image of a man moving boxes. There are two men in the image, one is standing on the left side and the other is on the right side. They are both wearing dark pants. In the middle of the image, there is a man who is moving a box on a pallet jack. There are also many boxes stacked up in the image. One of the boxes is on the left side, and there are two more on the right side. There is also a person on the left side of the image who is wearing a striped shirt.", - "id": 25243 - }, - { - "image_path": "G:\\images\\combined\\000000005476_jpg.rf.29d5642e08ef34c1792a053e030944fb.jpg", - "response": "A collage of black and white photos of a family on the beach. The top left photo is of a group of people walking on the beach. The top right photo is of a woman holding a young boy's hand. The bottom left photo is of a woman holding a young boy's face in her hands. The bottom right photo is of a man holding a young boy.", - "id": 25244 - }, - { - "image_path": "G:\\images\\combined\\000000005476_jpg.rf.31c37e91592a31b3ce40d1499f745610.jpg", - "response": "A black and white image of a beach scene with people walking on the sand. There is a forklift on the right side of the image. There are two people in the water, one closer to the left side and one closer to the right side. There are two people on the left side of the image, one closer to the left side and one closer to the middle. There are two people in the middle of the image, one closer to the middle and one closer to the right side. There are two people on the right side of the image, one closer to the right side and one closer to the top.", - "id": 25245 - }, - { - "image_path": "G:\\images\\combined\\000000005476_jpg.rf.5e38dd5dff07541989cdba119adbb974.jpg", - "response": "A black and white image with four different sections. The first section is of a group of people standing on a beach, the second is of a fireplace, the third is of a wall with a book on it and the fourth is of a staircase.", - "id": 25246 - }, - { - "image_path": "G:\\images\\combined\\000000005482_jpg.rf.3bc5b35b22e10e3ea401a95825e23cbe.jpg", - "response": "A black and white photo of a fire hydrant next to a fence.", - "id": 25247 - }, - { - "image_path": "G:\\images\\combined\\000000005482_jpg.rf.8b85f36170d597df2b663a061702e587.jpg", - "response": "A collage of four photos. The first is of a parking lot with several cars. The second is of a person doing a trick on a skateboard. The third is of a building with a window. The fourth is a close up of a metal box with a black square on it.", - "id": 25248 - }, - { - "image_path": "G:\\images\\combined\\000000005482_jpg.rf.bb18ddd1f853a0eabee6eefc32f86b68.jpg", - "response": "A black and white photo of a city at night. There is a bridge with people walking on it. There is a boat in the water. There are people walking on the street. There is a building with many windows. There is a person wearing a white shirt. There is a person holding a camera. There is a person holding a skateboard. There is a person holding a surfboard. There is a person wearing a white tank top. There is a person wearing a white t-shirt. There is a person wearing a white hat. There is a person wearing a white shirt and black shorts. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white shirt and black pants. There is a person wearing a white", - "id": 25249 - }, - { - "image_path": "G:\\images\\combined\\000000005505_jpg.rf.770dc4d4abe3803d82ceca9257973510.jpg", - "response": "A collage of images, including a street scene, a person riding a horse, and a stack of boxes.", - "id": 25250 - }, - { - "image_path": "G:\\images\\combined\\000000005505_jpg.rf.b185c0a0c9fcd9998c05fb7d30dc0453.jpg", - "response": "A black and white collage of various images. There is a picture of a group of people walking down a street, a picture of giraffes in a zoo, a picture of a clock on a building, and a picture of a man taking a picture of a crowd.", - "id": 25251 - }, - { - "image_path": "G:\\images\\combined\\000000005505_jpg.rf.c7edff56bed3488ea10d4a229b66e0f5.jpg", - "response": "A black and white photo of a street scene with a forklift in the foreground. There is a clock on a building, a shop sign, a person walking, a car, a person on a bike, a person on a horse and a bridge.", - "id": 25252 - }, - { - "image_path": "G:\\images\\combined\\000000005508_jpg.rf.15161ea8616fdabca27c93633e082a4b.jpg", - "response": "A collage of images including a woman with her back to the camera, a man with long hair, a giraffe standing in a store, a woman in a store, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with a mustache, a man with a beard, a man with", - "id": 25253 - }, - { - "image_path": "G:\\images\\combined\\000000005508_jpg.rf.5b127c70880281b05377f86df27f1fab.jpg", - "response": "A collage of images of a warehouse, a forklift, pallets of goods, and people.", - "id": 25254 - }, - { - "image_path": "G:\\images\\combined\\000000005508_jpg.rf.9248960c2ca89c51fb039a5fd2360be0.jpg", - "response": "A black and white photo of a sink with a bottle of soap on it.", - "id": 25255 - }, - { - "image_path": "G:\\images\\combined\\000000005513_jpg.rf.6791373544c8daee2dcc5e805af942a7.jpg", - "response": "A collage of black and white images. The top image is of a ceiling with many round designs on it. The second image is of a person sitting on the grass with their back to the viewer. The third image is of a building with a pointy roof. The fourth image is of a window with bars on it. The fifth image is of a person sitting on the grass with their back to the viewer. The sixth image is of a building with a pointy roof. The seventh image is of a building with many windows. The eighth image is of a person sitting on the grass with their back to the viewer. The ninth image is of a building with a pointy roof. The tenth image is of a person sitting on the grass with their back to the viewer.", - "id": 25256 - }, - { - "image_path": "G:\\images\\combined\\000000005513_jpg.rf.9a88a6bca5bcc26f41c816187e3dfad7.jpg", - "response": "A collage of images, including a dog, a box, a person's feet, and a landscape.", - "id": 25257 - }, - { - "image_path": "G:\\images\\combined\\000000005513_jpg.rf.f0f5883501e616511b656ce74455cede.jpg", - "response": "A collage of black and white images. The first is a woman with a hat holding an umbrella. The second is a child in a striped shirt. The third is a girl with a handbag. The fourth is a sign with a picture of a person and the words \"self referral support kit\". The fifth is a sign with a picture of a person and the words \"self referral support kit\". The sixth is a sign with a picture of a person and the words \"self referral support kit\". The seventh is a sign with a picture of a person and the words \"self referral support kit\". The eighth is a sign with a picture of a person and the words \"self referral support kit\".", - "id": 25258 - }, - { - "image_path": "G:\\images\\combined\\000000005522_jpg.rf.3a079a6f791a692b1b4752e2b206c913.jpg", - "response": "A collage of a woman holding a cake and a cat sitting on a desk.", - "id": 25259 - }, - { - "image_path": "G:\\images\\combined\\000000005522_jpg.rf.477c070fd3475fa97bcfd32a8ce8ce7a.jpg", - "response": "A collage of black and white photos.", - "id": 25260 - }, - { - "image_path": "G:\\images\\combined\\000000005522_jpg.rf.b79dd14da9ce8af41002ba26ebe8446c.jpg", - "response": "A black and white image of a building with a door.", - "id": 25261 - }, - { - "image_path": "G:\\images\\combined\\000000005535_jpg.rf.097692930e1657d8dafbc0a315cc687d.jpg", - "response": "A collage of black and white images. The top image is a close up of a leaf, the middle image is a man playing tennis, and the bottom image is a close up of a concrete structure.", - "id": 25262 - }, - { - "image_path": "G:\\images\\combined\\000000005535_jpg.rf.6a85d8cb686fca58660e0502d8213ffa.jpg", - "response": "A black and white image of a train, a bus, a truck, a pile of boxes, and a stack of cinder blocks.", - "id": 25263 - }, - { - "image_path": "G:\\images\\combined\\000000005535_jpg.rf.c7e8e6076315a54f842ff7eb6c771f97.jpg", - "response": "A collage of four different black and white images. The top left image is of a bus with a square black block covering the front. The top right image is of a man standing in front of a fence. The bottom left image is of a man holding a camera. The bottom right image is of a fire.", - "id": 25264 - }, - { - "image_path": "G:\\images\\combined\\000000005559_jpg.rf.0026fd61da636278d235e7cebf04eb0b.jpg", - "response": "A collage of four black and white images. The top left image is of a forest with a black square in the center of the image. The top right image is of a forklift truck with a bookshelf on it. The bottom left image is of a city square with a bus, cars, and people. The bottom right image is of a chair.", - "id": 25265 - }, - { - "image_path": "G:\\images\\combined\\000000005559_jpg.rf.606a1a206f22546242e91b0a34b5a884.jpg", - "response": "A black and white photo with 5 different images cut out and pasted together. The top right image is of a group of people sitting around a table with a large wrapped object on it. The top left image is of a wooded area. The bottom left image is of a truck backed up to a loading dock. The bottom right image is of a person standing in front of a door. The bottom left image is of a truck driving down a road.", - "id": 25266 - }, - { - "image_path": "G:\\images\\combined\\000000005559_jpg.rf.ac64cdd24bfedd9919d059f721488ea1.jpg", - "response": "A collage of three black and white images. The first is a snowy forest with a bench. The second is a woman sitting on a bench with a dog. The third is a close up of wooden benches.", - "id": 25267 - }, - { - "image_path": "G:\\images\\combined\\000000005569_jpg.rf.301197a865bfae4ae63dd932d9c813a3.jpg", - "response": "A collage of black and white images, including a shower, a chair, a person with a beard, a person in a hat, a sink, a door, a window, a chair, a person in a plaid shirt, a person in a hat, a person in a plaid shirt, a sink, a chair, a person with a beard, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink, a window, a door, a chair, a sink,", - "id": 25268 - }, - { - "image_path": "G:\\images\\combined\\000000005569_jpg.rf.cefb01041596ccb595597ff2b82ed307.jpg", - "response": "A collage of black and white images of people walking around. There are a few people walking on a street, a person carrying a bag, a person holding a newspaper, and a bus.", - "id": 25269 - }, - { - "image_path": "G:\\images\\combined\\000000005569_jpg.rf.d17c39496f5bedf014a89bf68888bc0d.jpg", - "response": "A collage of images including a person holding a pipe, a person wearing a tie, a motorcycle, and a person walking on a sidewalk.", - "id": 25270 - }, - { - "image_path": "G:\\images\\combined\\000000005589_jpg.rf.132b754531ba5ee30425767305bd1e27.jpg", - "response": "A collage of four black and white images. The first image is of a man sitting on a bus seat with his legs crossed. The second image is of a man sitting on the floor of a bus with his legs crossed. The third image is of a man sitting on a bus seat with his legs crossed. The fourth image is of a man sitting on the floor of a bus with his legs crossed.", - "id": 25271 - }, - { - "image_path": "G:\\images\\combined\\000000005589_jpg.rf.512b2f93e0fc8e3897c802a597a76458.jpg", - "response": "A black and white image of a city street with a bus and cars. There is a square with a person holding a knife and a fork, a clock, a calculator and a glass of water.", - "id": 25272 - }, - { - "image_path": "G:\\images\\combined\\000000005589_jpg.rf.c937ee3f3700f061b82c33517dca780d.jpg", - "response": "A collage of different images. The top left image is of a computer keyboard. The top right image is of a busy street with cars and people. The top middle image is of a pile of garbage. The bottom left image is of a person's hand holding a wine glass. The bottom right image is of a wooden pallet with the numbers 1, 1, and 3.", - "id": 25273 - }, - { - "image_path": "G:\\images\\combined\\000000005599_jpg.rf.8147d5bf4b314092e7f1c6904330e542.jpg", - "response": "A black and white image of a box with the label care 1 on it. The box is next to a price tag that says 69.44 with VAT. There is a picture of a table with a bowl on it. There is a picture of a person sitting on a bench. There is a picture of a pagoda. There is a picture of a bird flying in the sky.", - "id": 25274 - }, - { - "image_path": "G:\\images\\combined\\000000005599_jpg.rf.a1b8ec725d362c48e831dc634d0663ff.jpg", - "response": "A collage of black and white images. The top left image is of a large group of people in a field with tents in the background. The top right image is of a large cardboard box. The bottom left image is of a person wearing a hat with a picture of a mountain on it. The bottom right image is of a group of people standing in a field.", - "id": 25275 - }, - { - "image_path": "G:\\images\\combined\\000000005599_jpg.rf.afe64b83193efddc5306c103db362c48.jpg", - "response": "A collage of black and white images. The first is a woman standing on the street with a handbag. The second is a close up of a handbag. The third is a man pushing a cart. The fourth is a close up of a cart. The fifth is a woman walking on the street. The sixth is a close up of a handbag. The seventh is a woman standing on the street. The eighth is a close up of a handbag. The ninth is a woman standing on the street. The tenth is a close up of a handbag. The eleventh is a woman standing on the street. The twelfth is a close up of a handbag. The thirteenth is a woman standing on the street. The fourteenth is a close up of a handbag. The fifteenth is a woman standing on the street. The sixteenth is a close up of a handbag. The seventeenth is a woman standing on the street. The eighteenth is a close up of a handbag. The nineteenth is a woman standing on the street. The twentieth is a close up of a handbag.", - "id": 25276 - }, - { - "image_path": "G:\\images\\combined\\000000005601_jpg.rf.310a3c041b72e5be3e35f7b06d6ffeec.jpg", - "response": "A white box on a white background with a black box on a black background.", - "id": 25277 - }, - { - "image_path": "G:\\images\\combined\\000000005601_jpg.rf.77a6c44768d2a1049bff998f8b8b8350.jpg", - "response": "A collage of images, including a man and a woman embracing, a pile of boxes, and a person standing in front of a sign that says \"Kitchen.\"", - "id": 25278 - }, - { - "image_path": "G:\\images\\combined\\000000005601_jpg.rf.fbf5189e97621c6948f551cbdf915495.jpg", - "response": "A black and white image of a mountain scene with a white box in the foreground.", - "id": 25279 - }, - { - "image_path": "G:\\images\\combined\\000000005608_jpg.rf.a37fc159eee88a6a490365615001dacb.jpg", - "response": "A collage of a baseball player swinging a bat.", - "id": 25280 - }, - { - "image_path": "G:\\images\\combined\\000000005608_jpg.rf.c332efc74cf0eec5902a4e121b4fc9a4.jpg", - "response": "A collage of black and white images. The top left image is of a person walking with a handbag. The top right image is of a sign with the price of a product. The bottom left image is of a hand holding a sandwich. The bottom right image is of a person skateboarding.", - "id": 25281 - }, - { - "image_path": "G:\\images\\combined\\000000005608_jpg.rf.d608b766729fe248a16cee428df31c2a.jpg", - "response": "A collage of images, including a baseball player, a machine, and a track.", - "id": 25282 - }, - { - "image_path": "G:\\images\\combined\\000000005614_jpg.rf.105ec6cb31f50ab1a216f5bd9821df3e.jpg", - "response": "A black and white image of a beach with people walking around. There are 8 people in the image, 4 of which are located near the top, 3 in the middle and one at the bottom right. There are also 4 cars in the image, 2 on the left, one in the middle and one on the right.", - "id": 25283 - }, - { - "image_path": "G:\\images\\combined\\000000005614_jpg.rf.b572a9bfb5d2a9cff673a6fda6f9bc1c.jpg", - "response": "A collage of images including a bench made out of wooden pallets, a man hitting a baseball with a bat, a man playing polo, and a man swinging a golf club.", - "id": 25284 - }, - { - "image_path": "G:\\images\\combined\\000000005614_jpg.rf.c325badd63e027d71a12bf3bc2a30d17.jpg", - "response": "A black and white photo with four different sections. Each section has a different scene. A person is surfing on a wave in the upper right corner, a person is riding a bike in the lower left corner, a person is walking on a bridge in the upper left corner and a bush is in the upper left corner.", - "id": 25285 - }, - { - "image_path": "G:\\images\\combined\\000000005619_jpg.rf.231168745f8de054bae1c5b76366294e.jpg", - "response": "A wooden cutting board with four slices of meat on it. The meat is being cut with a fork and knife. There is a bowl of sauce next to the cutting board.", - "id": 25286 - }, - { - "image_path": "G:\\images\\combined\\000000005620_jpg.rf.2c81e93f07891788c874daddcf1a5a9a.jpg", - "response": "A collage of black and white images. The top image is of a busy street with cars, buses, and pedestrians. The second image is of a person walking up a flight of stairs. The third image is of a door with a large window. The fourth image is of a building with a sign on the corner.", - "id": 25287 - }, - { - "image_path": "G:\\images\\combined\\000000005620_jpg.rf.ebe6fae26e7ab06f17ce01d7ce27241a.jpg", - "response": "A collage of images including a black and white image of a woman holding a plate of food, a city square with a statue and a bus, a close up of a building, a close up of a brick wall, and a close up of a person's face.", - "id": 25288 - }, - { - "image_path": "G:\\images\\combined\\000000005620_jpg.rf.f1f27bae8c6c6c10d9dfb4486e919011.jpg", - "response": "A black and white image of a person walking by a parked truck and a forklift. There are also two pallets visible.", - "id": 25289 - }, - { - "image_path": "G:\\images\\combined\\000000005632_jpg.rf.fb3df5d82391da6b9676de60e9ffd031.jpg", - "response": "A man sitting on a couch using a laptop computer.", - "id": 25290 - }, - { - "image_path": "G:\\images\\combined\\000000005638_jpg.rf.051847984b6528be674065c456949d6f.jpg", - "response": "A black and white photo of a group of people in a room. There is a person sitting on the floor with their hands on their face. There is a person in a wheelchair on the left side of the room. There is a person on the right side of the room holding a handbag. There is a person in the middle of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a handbag on the floor in the middle of the room. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing in the back of the room with their back to the camera. There is a person standing", - "id": 25291 - }, - { - "image_path": "G:\\images\\combined\\000000005638_jpg.rf.40dd9f2a7bb63e1bf1d705569501dc78.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man on a motorcycle. The second is a black and white photo of a man on a bike. The third is a black and white photo of a man running. The fourth is a black and white photo of a man wearing a hat and a white shirt.", - "id": 25292 - }, - { - "image_path": "G:\\images\\combined\\000000005638_jpg.rf.b7545052785f4bb5bdd420f79c8e4b6c.jpg", - "response": "A black and white photo of a building with a fence and a woman sitting on a chair next to a box.", - "id": 25293 - }, - { - "image_path": "G:\\images\\combined\\000000005641_jpg.rf.270dbc73dc08426ee99d18292c87cf1d.jpg", - "response": "A collage of four black and white images. In the top left image, a person is holding a cell phone. In the top right image, a square is missing from a building. In the bottom left image, a person is holding a cell phone. In the bottom right image, a person is walking in front of a building with a steam vent.", - "id": 25294 - }, - { - "image_path": "G:\\images\\combined\\000000005641_jpg.rf.70c31142d1cb5b01e5bc2992b1ec5a4b.jpg", - "response": "A collage of images, including a man in a tracksuit, a bench, a warehouse, a forest, and a man walking in the snow.", - "id": 25295 - }, - { - "image_path": "G:\\images\\combined\\000000005641_jpg.rf.fb898e7cedd0294af968e336fd5a54a7.jpg", - "response": "A collage of black and white photos. The top left photo is of a man in a baseball uniform in a field. The top right photo is of a man in a white shirt sitting on a bench. The bottom left photo is of a boy in a baseball uniform in a field. The bottom right photo is of a group of people on a beach.", - "id": 25296 - }, - { - "image_path": "G:\\images\\combined\\000000005644_jpg.rf.5bfd5bbebed32c60e7fec1c1029fb149.jpg", - "response": "A man on a skateboard doing a trick.", - "id": 25297 - }, - { - "image_path": "G:\\images\\combined\\000000005652_jpg.rf.7eb1e59b53bd64acfa4395f9a9506029.jpg", - "response": "A collage of four different images. The first is a close up of a woman's face as she smiles and holds a phone to her ear. The second is a close up of a wooden pallet. The third is a train on a train track. The fourth is a close up of a black square.", - "id": 25298 - }, - { - "image_path": "G:\\images\\combined\\000000005652_jpg.rf.b2237e7bb841c6642adfff9fa4acbb30.jpg", - "response": "A collage of black and white photos. There is a close up of a childs face holding a cell phone. Another photo is of a person holding a cell phone and taking a picture. A third photo is of a street scene with cars and people. A fourth photo is of a man holding a cell phone.", - "id": 25299 - }, - { - "image_path": "G:\\images\\combined\\000000005652_jpg.rf.f77c98884fde7b947861997729777a78.jpg", - "response": "A collage of black and white images including a baby, a box, a woman with long hair, a park, and a person in a white shirt.", - "id": 25300 - }, - { - "image_path": "G:\\images\\combined\\000000005670_jpg.rf.17990d697917f0552868f048a7e7d80d.jpg", - "response": "A collage of four photos. The top left photo is a close up of a man's face. The top right photo is a close up of a woman's hand holding a phone to her ear. The bottom left photo is a bus. The bottom right photo is a box.", - "id": 25301 - }, - { - "image_path": "G:\\images\\combined\\000000005670_jpg.rf.68f1032254e376994eb336e9f3eda8b5.jpg", - "response": "A collage of a man with a hat sitting in front of a computer, another man sitting in front of a computer, a pile of boxes, and a pile of computer keys.", - "id": 25302 - }, - { - "image_path": "G:\\images\\combined\\000000005670_jpg.rf.8634a84cda6b594b78cb65a4392f1c30.jpg", - "response": "a man with a face mask and a black and white photo of a building", - "id": 25303 - }, - { - "image_path": "G:\\images\\combined\\000000005673_jpg.rf.4c6fe2dbbc1ce8140a84d4131b86c0b4.jpg", - "response": "A collage of four different images. The first is a black and white photo of a man in a cowboy hat and glasses holding a smartphone. The second is a close-up of a forklift truck. The third is a black and white photo of a stack of wooden pallets. The fourth is a black and white photo of a section of a wooden pallet.", - "id": 25304 - }, - { - "image_path": "G:\\images\\combined\\000000005673_jpg.rf.89507a0c239850a17ac8c90746461548.jpg", - "response": "A black and white photo of a man wearing a hat and glasses, holding a camera and looking at the screen. There is a TV in the background.", - "id": 25305 - }, - { - "image_path": "G:\\images\\combined\\000000005673_jpg.rf.fa3a5ef0c91de598ed92cd32a701a3c1.jpg", - "response": "A black and white collage of images. On the left is a hand holding a black square with a white square missing from it. Above that is a square with a black border. Below that is a hand with a ring on the ring finger holding a black square with a white square missing from it. To the right is a woman with a black jacket and a baby in a stroller. To the left is a man with a black shirt and white pants. Below that is a woman with a black shirt and white pants sitting on a bench. To the right is a woman with a black jacket and a baby in a stroller. To the left is a woman with a black shirt and white pants. To the right is a woman with a black jacket and a baby in a stroller.", - "id": 25306 - }, - { - "image_path": "G:\\images\\combined\\000000005684_jpg.rf.0f4faf42c00f013a03b609e57bd58bcd.jpg", - "response": "A black and white image of a street with houses on the left and a white box on the right. In the middle of the image there are three rows of grey boxes with a white lid on the top of the first row and a white arrow pointing to the right on the top of the second row. The third row is filled with boxes and has a white arrow pointing to the left on the top. On the right side of the image there is a white box with a black square on top of it.", - "id": 25307 - }, - { - "image_path": "G:\\images\\combined\\000000005684_jpg.rf.35b8fdf4e12d1a191ea3ad2c93d9e23c.jpg", - "response": "A collage of black and white images, including a bus on a street, a surfer riding a wave, a person standing on a ladder, a car on a street, a trash can, and a door.", - "id": 25308 - }, - { - "image_path": "G:\\images\\combined\\000000005684_jpg.rf.b6f59f4d03cd34e440836eaebe5bf11c.jpg", - "response": "A black and white image of a pallet with boxes on it.", - "id": 25309 - }, - { - "image_path": "G:\\images\\combined\\000000005688_jpg.rf.0b9e22d443c866d6a2aeabb556c43a2e.jpg", - "response": "A black and white photo of a beach with many people. There are many umbrellas set up along the beach and people are walking around. There are also some flags flying in the distance.", - "id": 25310 - }, - { - "image_path": "G:\\images\\combined\\000000005688_jpg.rf.1f576dd631199baad4e945dafd216934.jpg", - "response": "A black and white image of a child holding a kite with a beach scene in the background.", - "id": 25311 - }, - { - "image_path": "G:\\images\\combined\\000000005688_jpg.rf.dd297d12395bc359d645e3e32fcd5653.jpg", - "response": "A collage of images. On the left is a box with the letters III on it. Above it is a picture of a group of people standing under a black and white umbrella. Above that is a picture of a person skiing. Above that is a picture of a door with a sign that says \"Caution: May be hot.\" The last image is a square of black.", - "id": 25312 - }, - { - "image_path": "G:\\images\\combined\\000000005699_jpg.rf.207e4d89d87b47dfa3fee9d4deded985.jpg", - "response": "A collage of images including a man on a forklift, stacks of boxes, and a fence.", - "id": 25313 - }, - { - "image_path": "G:\\images\\combined\\000000005699_jpg.rf.a6fbc42c1f6a119d660032150d2ed799.jpg", - "response": "A black and white image of a kite being flown in the sky. The kite is a box kite with a bird flying above it. There are two other kites in the sky, one on the left and one on the right. There are also two people in the image, one on the left and one on the right. The background is a field with a boat in the middle of it.", - "id": 25314 - }, - { - "image_path": "G:\\images\\combined\\000000005699_jpg.rf.c35dcb446a3c06ab86150312bda29130.jpg", - "response": "A black and white photo of a steam clock in a city. The clock is located in the top right corner of the image, and is surrounded by a few other buildings. The image is divided into four quadrants, with the top left quadrant containing a large building with many windows. The bottom left quadrant features a smaller building with a door and two windows. The top right quadrant features a tree with no leaves. The bottom right quadrant features a close-up of the steam clock.", - "id": 25315 - }, - { - "image_path": "G:\\images\\combined\\000000005701_jpg.rf.34126ac20f1d64781d2468ba8f47d0ac.jpg", - "response": "A collage of 5 black and white photos. In the first photo, a man is shown from the neck down, wearing shorts and a striped shirt. The second photo is a close up of a man's head, the third photo is a man in shorts and a white shirt throwing a frisbee, the fourth photo is a man in a white shirt and black shorts throwing a frisbee, and the fifth photo is a group of three men, one is wearing a white shirt and black shorts, the second man is wearing a white shirt and black pants, and the third man is wearing a white shirt and black shorts. The last photo is a close up of a man's head.", - "id": 25316 - }, - { - "image_path": "G:\\images\\combined\\000000005701_jpg.rf.3754334138e8c3c2458a9aab718171f6.jpg", - "response": "A collage of images, including a person with a shaved head, a clock on a building, a bench, a group of people walking on a sidewalk, and a close-up of a person's eyes.", - "id": 25317 - }, - { - "image_path": "G:\\images\\combined\\000000005701_jpg.rf.daf420925c3fe82f4c03ab78e7903807.jpg", - "response": "A collage of four images. The top left image is of a young boy in shorts and striped shirt, with his arms outstretched, trying to feed a giraffe. The top right image is of two giraffes standing next to a wooden fence. The bottom left image is of a woman's dress, with a wide brimmed hat, and a purse. The bottom right image is of a close up of a purse, with the letters P and E visible.", - "id": 25318 - }, - { - "image_path": "G:\\images\\combined\\000000005703_jpg.rf.28a699574eff75fe560bbf5968b60b79.jpg", - "response": "A black and white photo collage of various scenes. The top left picture is of a man sitting at a desk with a computer monitor in front of him. The top right picture is of a dog standing on a desk. The bottom left picture is of a street scene with a traffic light and a building in the background. The bottom right picture is of a baby's face with a black square over the baby's eye.", - "id": 25319 - }, - { - "image_path": "G:\\images\\combined\\000000005703_jpg.rf.9d1a8b0da957b8338af49ee6e09ae18d.jpg", - "response": "A black and white photo of a building with a glass front. There are three sections of the building visible. The first section is a close up of the glass front with a reflection of a tree and a stack of wooden pallets. The second section is a wider view of the building with the same reflection visible. The third section is a close up of the pallets with a black square over the top of each one.", - "id": 25320 - }, - { - "image_path": "G:\\images\\combined\\000000005703_jpg.rf.d34a8f9f10d1a9327413f1d74a045d97.jpg", - "response": "A black and white photo of a steam clock in a park. The clock is in the upper right corner of the image, with a tree in the background. There is a woman's eye in the bottom right corner of the image, and a picture of a woman in the bottom left corner. There are also two black squares in the top left corner of the image.", - "id": 25321 - }, - { - "image_path": "G:\\images\\combined\\000000005713_jpg.rf.5dc1334880fcc6766c01ba44391dc975.jpg", - "response": "A collage of four black and white images. In the top left image a person is lying on the floor in front of a TV. In the top right image a person is standing in a kitchen. In the bottom left image a person is sitting on a bench in front of a building. In the bottom right image a section of a wall is shown with a texture.", - "id": 25322 - }, - { - "image_path": "G:\\images\\combined\\000000005713_jpg.rf.66197bb17aa67f980d1e5c1482f22db9.jpg", - "response": "a man(1,507),(386,987) looking at a phone", - "id": 25323 - }, - { - "image_path": "G:\\images\\combined\\000000005713_jpg.rf.fd5324ba30ad38702ee59580ba8c9f13.jpg", - "response": "A collage of four different photos. The first is a black and white photo of a man with a beard and glasses sitting on a wooden bench. The second is a black and white photo of a dog with a ball in a grassy field. The third is a black and white photo of a box with the words \"pack line\" on it. The fourth is a black and white photo of a person's feet in a shoe.", - "id": 25324 - }, - { - "image_path": "G:\\images\\combined\\000000005728_jpg.rf.34dbf3d73b4d1be931477ea155015aa4.jpg", - "response": "A collage of black and white photos of people playing frisbee on a beach.", - "id": 25325 - }, - { - "image_path": "G:\\images\\combined\\000000005728_jpg.rf.adf8816a8c26b59c7976efeb57c74bf9.jpg", - "response": "A forklift in a yard, carrying a wooden pallet.", - "id": 25326 - }, - { - "image_path": "G:\\images\\combined\\000000005728_jpg.rf.c6a5650221ebdaadfa4b6b3d5c86de5f.jpg", - "response": "A black and white photo of a park with a few people in it. There is a building on the right and a few trees in the background.", - "id": 25327 - }, - { - "image_path": "G:\\images\\combined\\000000005736_jpg.rf.06fda3c5112a991d6c8f83cee01067a4.jpg", - "response": "A collage of four photos. The top left photo is a black and white photo of a sailboat on the water. The top right photo is a black and white photo of a person surfing on a wave. The bottom left photo is a black and white photo of a person standing on a roof of a building. The bottom right photo is a black and white photo of a person standing on a bridge.", - "id": 25328 - }, - { - "image_path": "G:\\images\\combined\\000000005736_jpg.rf.e2e451c2d90213240e3761333f3eca23.jpg", - "response": "A collage of four black and white photos. The top left photo is of a person walking with a handbag, the top right photo is of a person's faceless upper body walking towards a building, the bottom left photo is of a person in a wheelchair with a handbag, and the bottom right photo is of a building with a reflection on it.", - "id": 25329 - }, - { - "image_path": "G:\\images\\combined\\000000005736_jpg.rf.e9d972c337e1f54cf34c1ad1114a92dc.jpg", - "response": "A collage of four images, one of a fork lift, one of a man on a fork lift, one of a brick wall with a light on it, and one of a man walking.", - "id": 25330 - }, - { - "image_path": "G:\\images\\combined\\000000005740_jpg.rf.66e71a38ecb663312011bf7961b9956c.jpg", - "response": "A black and white photo of a woman with a scarf on her head and a bag on her shoulder. She is standing in front of a wall with several black squares covering different parts of the image. There is a person in the background, partially obscured by the woman.", - "id": 25331 - }, - { - "image_path": "G:\\images\\combined\\000000005740_jpg.rf.80c32450c0335954a9ece41b4d44c994.jpg", - "response": "A collage of a man surfing, a man climbing a rock, a bus and a mountain.", - "id": 25332 - }, - { - "image_path": "G:\\images\\combined\\000000005740_jpg.rf.9fe771f6a5010a05956c52a36768fa49.jpg", - "response": "A collage of surfers and their boards.", - "id": 25333 - }, - { - "image_path": "G:\\images\\combined\\000000005755_jpg.rf.8e2cc7b54fa7c7ac92e06caf916f6504.jpg", - "response": "A black and white image of a fire hydrant, boxes, pallets, and a bucket.", - "id": 25334 - }, - { - "image_path": "G:\\images\\combined\\000000005755_jpg.rf.cc5e1c67f590cf0b030be8f57ec03a69.jpg", - "response": " A Flexocare storage box(347,3),(997,578) is being used to hold pallets(334,559),(997,965)", - "id": 25335 - }, - { - "image_path": "G:\\images\\combined\\000000005755_jpg.rf.e8e46eefd8fc41458aed73bf60408cdc.jpg", - "response": "A black and white photo of a fire hydrant.", - "id": 25336 - }, - { - "image_path": "G:\\images\\combined\\000000005756_jpg.rf.0df1de2f73c9b1bb1f8110f68bc555c1.jpg", - "response": "A black and white collage of images. The top left image is of a group of people walking down a street. The top right image is of a store front with a sign that says \"Cafe Arizona.\" The bottom left image is of a man with a beard and a black and white shirt. The bottom right image is of a man laying on the ground.", - "id": 25337 - }, - { - "image_path": "G:\\images\\combined\\000000005756_jpg.rf.81ebda934b269459b741f2c1cc4661ea.jpg", - "response": "A black and white photo of a tarmac with a 747 parked on it. There are several people in the photo, some of which are blurred out. One person is holding an umbrella. There is a box in the foreground.", - "id": 25338 - }, - { - "image_path": "G:\\images\\combined\\000000005756_jpg.rf.ad90b5606216668892417d606c97c287.jpg", - "response": "A collage of three different images. The first is a black and white image of a group of people holding umbrellas. The second is a black and white image of a pallet with a box on it. The third is a black and white image of a pallet with a box on it.", - "id": 25339 - }, - { - "image_path": "G:\\images\\combined\\000000005769_jpg.rf.1b5e36a04643f9c1a077ba192db97d26.jpg", - "response": "A collage of images. On the left is a street scene with a building on fire. In the middle is a person on skis. On the right is a white wall.", - "id": 25340 - }, - { - "image_path": "G:\\images\\combined\\000000005769_jpg.rf.2f9409e38cfbcb0907ef5b34390338d8.jpg", - "response": "A black and white photo of a steam clock in a city. The clock is in the center of the image and has a steam vent on top. The clock is located on a post and has a smaller clock on each side. The background shows a street with a truck and a building.", - "id": 25341 - }, - { - "image_path": "G:\\images\\combined\\000000005769_jpg.rf.e277e5d04b667fecdd03b87c1187746a.jpg", - "response": "A black and white photo of a clock tower.", - "id": 25342 - }, - { - "image_path": "G:\\images\\combined\\000000005802_jpg.rf.857ee206a190efa3d1c5c88047c5f150.jpg", - "response": "A collage of black and white images. The top left image shows a man in a white shirt and black pants holding a large metal canister. The top right image shows a close up of a wooden cabinet. The bottom left image shows a person standing on a staircase. The bottom right image shows two computer monitors.", - "id": 25343 - }, - { - "image_path": "G:\\images\\combined\\000000005802_jpg.rf.8a583ee8cd407956d542594fc5a1f763.jpg", - "response": "A collage of four photos. In the first, a man and a woman are standing in a kitchen. The woman is reading a book and the man is preparing food. In the second, a woman is sitting on a bench reading a book. In the third, a flock of birds are walking on the ground. In the fourth, a square is missing from the wall.", - "id": 25344 - }, - { - "image_path": "G:\\images\\combined\\000000005802_jpg.rf.ea64d381cf7c58d002b454d8f23acf4d.jpg", - "response": "A collage of black and white images. In the top left image, a man is pouring liquid into a large metal cylinder. In the top right image, a person is running. In the bottom left image, a wooden bench is shown. In the bottom right image, a group of people are shown in a boat.", - "id": 25345 - }, - { - "image_path": "G:\\images\\combined\\000000005804_jpg.rf.36a8a55628876d5fcdea35bc10f01686.jpg", - "response": "A collage of images, including a person skateboarding, a stack of boxes, and a person packing a box.", - "id": 25346 - }, - { - "image_path": "G:\\images\\combined\\000000005804_jpg.rf.88e411fb333a59f72b5647c3533a2cb3.jpg", - "response": "A collage of six black and white images. The top image is of a dog laying on a white wicker chair. The second image is of a dog laying on a white wicker chair. The third image is of a dog laying on a white wicker chair. The fourth image is of a box of wine on a table. The fifth image is of a dog running through a field. The sixth image is of a dog laying on a white wicker chair.", - "id": 25347 - }, - { - "image_path": "G:\\images\\combined\\000000005804_jpg.rf.e021a371519fccb3311ea6fbb6801e32.jpg", - "response": "A collage of black and white images including a woman reading a book, a baby sitting on a couch, a hand holding a knife, and a table with a diamond pattern.", - "id": 25348 - }, - { - "image_path": "G:\\images\\combined\\000000005828_jpg.rf.f944b4a6cc2a322ad77e59f2c6c5f98d.jpg", - "response": "A woman sitting on a bench reading a book.", - "id": 25349 - }, - { - "image_path": "G:\\images\\combined\\000000005830_jpg.rf.3314ae7d916cbf7a8dc8893bd4fda52b.jpg", - "response": "A black and white image of a house with a window, a lamp, a shelf and a chair. Also shown are black and white blocks and a black and white image of a pallet.", - "id": 25350 - }, - { - "image_path": "G:\\images\\combined\\000000005830_jpg.rf.4842b677a393a892ab57c5335e7a2597.jpg", - "response": "A black and white photo of a house and a yard.", - "id": 25351 - }, - { - "image_path": "G:\\images\\combined\\000000005830_jpg.rf.fb4ad7f0316076f3d187dfc9f2c9917e.jpg", - "response": "A black and white image of a warehouse with a forklift in the middle of the room. The forklift is on the right side of the image and is driving towards the left. There are two other forklifts in the image, one on the left side and one on the right side. The forklift in the middle is driving towards a pallet that is on the left side of the image. The pallet is placed on a platform that is on the ground. The image is split into squares with the forklifts and pallet in each square.", - "id": 25352 - }, - { - "image_path": "G:\\images\\combined\\000000005832_jpg.rf.4adaa7d76866dfbd1cde85d96a5f4fba.jpg", - "response": "A collage of images including a man working on a project, a computer, and a brick wall.", - "id": 25353 - }, - { - "image_path": "G:\\images\\combined\\000000005832_jpg.rf.d076bc738cc8188d864c73724c06be83.jpg", - "response": "A collage of different images including a woman's face and a person holding a cell phone.", - "id": 25354 - }, - { - "image_path": "G:\\images\\combined\\000000005832_jpg.rf.f9300507588774b7b1d5b70070ef6a9a.jpg", - "response": "A collage of images including a computer, a desk, a giraffe, boxes, a hand truck and a shelf.", - "id": 25355 - }, - { - "image_path": "G:\\images\\combined\\000000005860_jpg.rf.1dffe122769f2f6070a53d3054500f1f.jpg", - "response": " Collage(6,4),(993,994) of images showing a pallet and a soda bottle.", - "id": 25356 - }, - { - "image_path": "G:\\images\\combined\\000000005860_jpg.rf.d9cf375a8c7d301c52f336756630f442.jpg", - "response": "A black and white photo of a forklift in a warehouse. The forklift is in the center of the image and is driving to the left. There are two screens on the forklift, one in the front and one in the back. The front screen is showing a video feed from a camera mounted on the forklift. The camera is mounted on the left side of the forklift. The forklift is driving on a concrete floor. There are several pallets of boxes in the background. The boxes are stacked on top of each other and are located on the right side of the image. There are also two additional boxes on the left side of the image. The background is blurred to emphasize the forklift and the camera.", - "id": 25357 - }, - { - "image_path": "G:\\images\\combined\\000000005860_jpg.rf.e8f1c915e76804880edc181d16819606.jpg", - "response": "A black and white photo of a Pepsi machine, a phone, a person with an umbrella, a window, and a car.", - "id": 25358 - }, - { - "image_path": "G:\\images\\combined\\000000005879_jpg.rf.57bcdb1321d619e8ff287b1d9af62b7a.jpg", - "response": "A collage of four photos. The first is a black and white photo of a cow grazing in a field. The second is a black square with a white dot in the center. The third is a black and white photo of a semi truck unloading crates. The fourth is a black and white photo of a cow in a pen.", - "id": 25359 - }, - { - "image_path": "G:\\images\\combined\\000000005879_jpg.rf.bb7d63ad21fdd9beae0328370e212686.jpg", - "response": "A collage of black and white images including a person on a bicycle, a truck, a fire truck, a bus, a person on an airplane, a city street, and a group of people walking.", - "id": 25360 - }, - { - "image_path": "G:\\images\\combined\\000000005879_jpg.rf.f001ac4da78843305ffcc3b475874400.jpg", - "response": "A collage of black and white images, including a forklift, a car, a building, and a street.", - "id": 25361 - }, - { - "image_path": "G:\\images\\combined\\000000005882_jpg.rf.15fa78448080f4ac79d3c84bd1c3fe20.jpg", - "response": "A tractor(619,6),(996,637) pulling a trailer", - "id": 25362 - }, - { - "image_path": "G:\\images\\combined\\000000005882_jpg.rf.4b77af948fca0d8b8e1d7ad7cc207b98.jpg", - "response": "A collage of black and white images including a surfer, a building, a street, and a train.", - "id": 25363 - }, - { - "image_path": "G:\\images\\combined\\000000005882_jpg.rf.e05b3cb7b834c70d53cb3e3911f6d74a.jpg", - "response": "A collage of black and white images. There are two images of a dog wearing a scarf and a dog wearing a hat. There are two images of a man skiing. There are two images of a man wearing a tie. There are two images of a man with a beard. There are two images of a man wearing a helmet. There are two images of a man wearing a striped shirt. There are two images of a man wearing a striped sweater. There are two images of a man wearing a striped scarf. There are two images of a man wearing a striped hat. There are two images of a man wearing a striped glove. There are two images of a man wearing a striped sock. There are two images of a man wearing a striped pant. There are two images of a man wearing a striped jacket. There are two images of a man wearing a striped ski. There are two images of a man holding a ski pole. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard. There are two images of a man holding a snow ski. There are two images of a man holding a snowboard.", - "id": 25364 - }, - { - "image_path": "G:\\images\\combined\\000000005906_jpg.rf.803df71f298c640402179ac53ab02c53.jpg", - "response": "A black and white collage of images. Top left is a close up of a hand on a stair rail. Top right is a woman with her arms outstretched. Middle left is a fire hydrant. Middle right is a hand holding a knife. Bottom left is a close up of a toilet. Bottom right is a close up of a bowl with a hand holding a pill.", - "id": 25365 - }, - { - "image_path": "G:\\images\\combined\\000000005906_jpg.rf.8b4e0abc917f3aece12f195f4a2708d6.jpg", - "response": "A collage of 4 images, 2 of which are in black and white. The first image is of a person standing on a step with a book in their hand. The second image is of a forklift truck in a warehouse. The third image is of a box being loaded into a van. The fourth image is of a radiator.", - "id": 25366 - }, - { - "image_path": "G:\\images\\combined\\000000005906_jpg.rf.93a67cd7181c3649fa3b1e37fcf9e19e.jpg", - "response": "A collage(3,3),(994,994) of black and white images", - "id": 25367 - }, - { - "image_path": "G:\\images\\combined\\000000005907_jpg.rf.478b894974100291561ac8c32473576b.jpg", - "response": "A black and white collage of images. The top left square is a beach with many seagulls. The top right square is a woman sitting in a chair. The bottom left square is a close up of a kite. The bottom right square is a group of people sitting around a table.", - "id": 25368 - }, - { - "image_path": "G:\\images\\combined\\000000005907_jpg.rf.491d273e21b249e2078060e1858d9140.jpg", - "response": "A collage of black and white images of people walking around in a city. There are several people walking on a street, one of them carrying a bag and a book. There are also pigeons flying around. In another image, a man is holding a sign with a cup on it.", - "id": 25369 - }, - { - "image_path": "G:\\images\\combined\\000000005907_jpg.rf.b954e729dd3fcf9c5bdde3bf66186443.jpg", - "response": "A black and white collage of images. The top left image is of a group of birds on the ground. The top right image is of a store front. The bottom left image is of a person standing in front of a store. The bottom right image is of two people sitting at a table.", - "id": 25370 - }, - { - "image_path": "G:\\images\\combined\\000000005915_jpg.rf.a5fa4fe397cb0f5ec9bfba4f3c316aa6.jpg", - "response": "A black and white image of a warehouse. There are shelves on the right and a concrete floor on the left. In the middle of the image there is a person wearing a baseball uniform holding a baseball bat.", - "id": 25371 - }, - { - "image_path": "G:\\images\\combined\\000000005915_jpg.rf.ec91b21f8443a6e8f508c899add863d1.jpg", - "response": "A collage of black and white images. The top right image is a close up of wooden pallets. The bottom left image is of a group of people in a circle, sitting on the ground. The bottom right image is of a person in black tights and high heels standing in a puddle of water. The top left image is of a person in black standing in front of a door.", - "id": 25372 - }, - { - "image_path": "G:\\images\\combined\\000000005915_jpg.rf.ee100d4f68cef687001b9f22f0ade3a7.jpg", - "response": "A collage of three images. The top left image is of three baseball players on a field, the top right image is a close up of a wooden pallet, and the bottom right image is a close up of the same pallet.", - "id": 25373 - }, - { - "image_path": "G:\\images\\combined\\000000005916_jpg.rf.70e7d6d1ca176e2f26399e518be5c304.jpg", - "response": "A black and white photo of a semi truck.", - "id": 25374 - }, - { - "image_path": "G:\\images\\combined\\000000005916_jpg.rf.989b15ed2ca5c89546ca5941cf472d22.jpg", - "response": "A forklift, a box, a truck, and a plane", - "id": 25375 - }, - { - "image_path": "G:\\images\\combined\\000000005916_jpg.rf.b479cd39f07be0d917e01454be75c235.jpg", - "response": "A black and white photo of a little girl in a dress standing on a bed. The bedspread has a floral pattern. The girl is holding a stuffed animal. The photo is split into 4 squares. In the top left square, the girl is standing on the bed and looking down. In the top right square, the girl is looking to the right. In the bottom left square, the back of a persons head is visible. In the bottom right square, the back of a dog with a collar is visible.", - "id": 25376 - }, - { - "image_path": "G:\\images\\combined\\000000005946_jpg.rf.074594f80ef37a0905f2f3f43a93e22c.jpg", - "response": "A black and white photo of a woman holding a baby and a box of baby goods.", - "id": 25377 - }, - { - "image_path": "G:\\images\\combined\\000000005946_jpg.rf.6a2d5b3ed3264395e59b3d25278989d3.jpg", - "response": "A black and white photo of a store with a man sitting on a shelf. The man is wearing a black shirt and has a beard. He is holding a bag and looking at the camera. There is a dumpster in the background.", - "id": 25378 - }, - { - "image_path": "G:\\images\\combined\\000000005946_jpg.rf.a4bd8cead855397bdbe397efe431cab2.jpg", - "response": "A collage of a woman with a motorcycle, a man in a hat, and a building.", - "id": 25379 - }, - { - "image_path": "G:\\images\\combined\\000000005961_jpg.rf.0033091cbf113172830eb6edb4a4de33.jpg", - "response": "A black and white photo of a man standing in front of a box. The man is wearing a black shirt and has a beard. The box is filled with items and the man is looking into the box. There are also two smaller images of the box.", - "id": 25380 - }, - { - "image_path": "G:\\images\\combined\\000000005961_jpg.rf.1b3e09b00872b1f333a545d448f0b327.jpg", - "response": "A black and white image of a forklift loading a pallet with stacks of cash. There is a bus in the background.", - "id": 25381 - }, - { - "image_path": "G:\\images\\combined\\000000005961_jpg.rf.9bd254b95a16b13d35410f479bb1a4d1.jpg", - "response": "A collage of black and white images. On the left is a close up of a box with the word \"diversive\" printed on it. Above that is a close up of a hand holding a bouquet of flowers. Above that is a close up of a man's head. Below that is a close up of a window with a plane visible through it. Below that is a close up of a box with the word \"diversive\" printed on it.", - "id": 25382 - }, - { - "image_path": "G:\\images\\combined\\000000005965_jpg.rf.2e8ba945d26758d8c8fa3783d39a6e52.jpg", - "response": "A black and white image of a man on a motorcycle, a forklift, and a pile of lumber.", - "id": 25383 - }, - { - "image_path": "G:\\images\\combined\\000000005965_jpg.rf.4b97fd0e542564ff5acf128bd18b82d1.jpg", - "response": "A collage of black and white images of wooden pallets.", - "id": 25384 - }, - { - "image_path": "G:\\images\\combined\\000000005965_jpg.rf.6f0f5413c6c79d8e916e7d7e1ea2bd9a.jpg", - "response": "A collage of four black and white photos. The top left photo shows a man in a cowboy hat sitting on a stool. The top right photo shows a woman playing badminton. The bottom left photo shows a black square over a photo of a car. The bottom right photo shows a black square over a photo of a person holding a tennis racket.", - "id": 25385 - }, - { - "image_path": "G:\\images\\combined\\000000005967_jpg.rf.53920d35200d22beacf41edeecbc589b.jpg", - "response": "A Banair plane taxis on the runway.", - "id": 25386 - }, - { - "image_path": "G:\\images\\combined\\000000006004_jpg.rf.184d4e6d42c98a994f03d87037c4da3e.jpg", - "response": "A black and white image of a boat and a plane. The boat is docked at a dock and is very large. The plane is on the right side of the image and is white. There is a smaller plane in the bottom right corner of the image.", - "id": 25387 - }, - { - "image_path": "G:\\images\\combined\\000000006004_jpg.rf.d6a29e6445e4fb716643e0b64ebb7083.jpg", - "response": "A black and white photo of a dog with a brush on its back. The dog is facing the right side of the photo. There is a bench in the background.", - "id": 25388 - }, - { - "image_path": "G:\\images\\combined\\000000006004_jpg.rf.e4609aaa46318943735abdf154302976.jpg", - "response": "A collage of four black and white images. The first is a large yacht at a dock, the second is a person running on a track, the third is a close up of a book shelf, and the fourth is a close up of a docked boat.", - "id": 25389 - }, - { - "image_path": "G:\\images\\combined\\000000006005_jpg.rf.0ea337ec0d6b6dac1c55fa61753af599.jpg", - "response": "A collage of 5 different images. The first one is a black and white picture of 3 giraffes standing in a zoo enclosure. The second one is a black and white picture of a shipping container with the word kitchen written on it. The third one is a black and white picture of a pallet with boxes on it. The fourth one is a black and white picture of a truck with a trailer. The fifth one is a black and white picture of a giraffe standing in the savannah.", - "id": 25390 - }, - { - "image_path": "G:\\images\\combined\\000000006005_jpg.rf.b156e4039210bc4f6e95408fc95c2f93.jpg", - "response": "A collage of images. The first is a black and white photo of a giraffe standing next to a fence. The second is a black and white photo of a cardboard box marked LARGE. The third is a black and white photo of a grid of squares, with one square blacked out.", - "id": 25391 - }, - { - "image_path": "G:\\images\\combined\\000000006005_jpg.rf.f2c294ccd5aaa73fb9d988c1b079223d.jpg", - "response": "A collage of black and white images. The top left image is of a giraffe in a zoo enclosure. The top right image is of a door with a window. The bottom left image is of a truck driving down a road. The bottom right image is of a motorhome driving down a road.", - "id": 25392 - }, - { - "image_path": "G:\\images\\combined\\000000006010_jpg.rf.296d305103c57d9ed8e9f30e04a86453.jpg", - "response": "A black and white image of a forklift.", - "id": 25393 - }, - { - "image_path": "G:\\images\\combined\\000000006010_jpg.rf.74bf6741eb8e4b43549a7f797798f3aa.jpg", - "response": "A black and white image of a train on a track.", - "id": 25394 - }, - { - "image_path": "G:\\images\\combined\\000000006010_jpg.rf.fcf1f97186e53237b69d4d73011804e7.jpg", - "response": "A collage of images, including a locomotive, a woman's face, a pile of boxes, and a street scene.", - "id": 25395 - }, - { - "image_path": "G:\\images\\combined\\000000006026_jpg.rf.70063f5dfd0d5a848d037a78a0bd1921.jpg", - "response": "A collage of images including a man with his mouth open, a truck, a dog, and a hand holding a surfboard.", - "id": 25396 - }, - { - "image_path": "G:\\images\\combined\\000000006026_jpg.rf.e57b514d7a285553db6d969ab5cd35a4.jpg", - "response": "A black and white image with four quadrants. In the top left is a woman's face with a black square covering the right side of her face. In the top right is a tall building with a black square covering the middle right of the building. In the bottom left is a man standing on a building with a ladder, he is wearing a backpack and looking up. In the bottom right is a man climbing a ladder on the side of a building.", - "id": 25397 - }, - { - "image_path": "G:\\images\\combined\\000000006026_jpg.rf.efee6ecc8bd25a06576728afd43954ef.jpg", - "response": "A black and white photo of a baby looking out of a window. The baby is on the left hand side of the image and is looking out of the window. The window is covered in black squares. To the right of the baby is a black square. Above the square is a black square. To the right of the baby is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square. To the right of the square is a black square.", - "id": 25398 - }, - { - "image_path": "G:\\images\\combined\\000000006028_jpg.rf.0c3a7c337dddb14b4b2abdcba878658c.jpg", - "response": "A collage of images. The top image is a close up of a wave in the water. The second image is a black and white image of a sailboat in the water. The third image is a close up of a person standing on a dock. The fourth image is a black and white image of a building on the water. The fifth image is a close up of a person standing on a dock. The sixth image is a black and white image of a boat in the water. The seventh image is a close up of a person standing on a dock. The eighth image is a black and white image of a boat in the water. The ninth image is a close up of a person standing on a dock. The tenth image is a black and white image of a boat in the water.", - "id": 25399 - }, - { - "image_path": "G:\\images\\combined\\000000006028_jpg.rf.5d3f98a7a14f11ebca9c5562fb3d2d78.jpg", - "response": "A collage of images, including a man surfing, a dog on a surfboard, a man and a woman sitting on a surfboard, a bus on a street, and a dog running down a street. The image is in black and white.", - "id": 25400 - }, - { - "image_path": "G:\\images\\combined\\000000006028_jpg.rf.e688d6702992985682cd3390bd1f0046.jpg", - "response": "A collage of 4 images. The first is a black and white image of a group of people in the water with a white foam on top. The second is a close up of a surfboard with a person's hand holding it. The third is a black and white image of a person carrying a surfboard. The fourth is a black and white image of a staircase with a door at the top. The door has a sign that says \"EXIT\" and there are two chairs on the right side of the door.", - "id": 25401 - }, - { - "image_path": "G:\\images\\combined\\000000006031_jpg.rf.a99ba8bdbee66d9b385a3cfa6b85991a.jpg", - "response": "A collage of four different images. The first is a close up of a hand holding a book. The second is a close up of a hand holding a camera. The third is a close up of a hand holding a pen. The fourth is a close up of a hand holding a book.", - "id": 25402 - }, - { - "image_path": "G:\\images\\combined\\000000006031_jpg.rf.bcad16b10724684ac256c73196b0b764.jpg", - "response": "A forklift is moving through a warehouse.", - "id": 25403 - }, - { - "image_path": "G:\\images\\combined\\000000006031_jpg.rf.e9c3c0b896832e9eb928e4310fd2beff.jpg", - "response": "A collage of black and white images. On the left is a man in a suit jacket looking down. Above him is a square of text that says \"Hilton Hotel\" with a picture of a hotel in the background. In the middle is a sailboat on the water. Below that is a baseball player in a uniform. To the right is a catcher and an umpire with a black square covering the pitcher.", - "id": 25404 - }, - { - "image_path": "G:\\images\\combined\\000000006033_jpg.rf.3c85f1a1965403475ab7a71b382192f9.jpg", - "response": "A black and white image of a forklift and a bus.", - "id": 25405 - }, - { - "image_path": "G:\\images\\combined\\000000006033_jpg.rf.4bf772816feac61a86b5eb773d666381.jpg", - "response": "A black and white photo of a dog being loaded into a trailer. The dog is on the left side of the photo and the trailer is on the right. The dog is in the top left corner of the photo and the trailer is in the top right corner. The photo is divided into squares. In the bottom left corner of the photo, a hand is holding a lighter. In the bottom right corner of the photo, a hand is holding a cigarette.", - "id": 25406 - }, - { - "image_path": "G:\\images\\combined\\000000006033_jpg.rf.decb7ccba1c0a3ba1037912ea1a870f2.jpg", - "response": "A collage of images, including a person standing on a pallet, pallets stacked on top of each other, a giraffe, a street view of a city, and a bridge.", - "id": 25407 - }, - { - "image_path": "G:\\images\\combined\\000000006041_jpg.rf.1d8c7ff41cb9a5a09b45b53b6d789947.jpg", - "response": "A collage of three photos. The first is a black and white photo of a person shoveling snow. The second is a black and white photo of a person wearing snow skis. The third is a black and white photo of a group of people walking in front of a store.", - "id": 25408 - }, - { - "image_path": "G:\\images\\combined\\000000006041_jpg.rf.8bd49484ce454960b947cd4453b5a2c8.jpg", - "response": "A collage of images including a man shoveling snow, a pallet of boxes, and a house with a broken window.", - "id": 25409 - }, - { - "image_path": "G:\\images\\combined\\000000006041_jpg.rf.d9adcd7ba0e3a0fab83e48c59634b64f.jpg", - "response": "A collage of four different photos. In the first photo, a person is snowboarding in the snow. In the second photo, a person is ice skating on a rink. In the third photo, a person is snowboarding in the snow. In the fourth photo, a person is ice skating on a rink.", - "id": 25410 - }, - { - "image_path": "G:\\images\\combined\\000000006042_jpg.rf.360835e7fa17922faff5ae15dd826bb4.jpg", - "response": "A black and white collage of four different workers. One is working on a forklift, one is working with a box, one is working with a pipe and one is working with a pallet.", - "id": 25411 - }, - { - "image_path": "G:\\images\\combined\\000000006042_jpg.rf.9dd3837a094d9dc4c99b44e3e4848a1b.jpg", - "response": "A collage of a person on a skateboard, a surfer, and stacked boxes.", - "id": 25412 - }, - { - "image_path": "G:\\images\\combined\\000000006042_jpg.rf.aa845ca2b4d074d62749a97c8d8e6558.jpg", - "response": "A collage of black and white images. At the top is a man sitting on a bench with a baseball bat. Below him are two boxes, one on the left and one on the right. Below that is a man riding a skateboard. Below that is a machine with a screen and two buttons. At the bottom is a close up of a power box.", - "id": 25413 - }, - { - "image_path": "G:\\images\\combined\\000000006051_jpg.rf.f1ec77c25b99b127cec90b2697704563.jpg", - "response": "A dog is sitting on the floor between two people's legs. The dog is black and white and has floppy ears. It is looking at the camera. There is a handbag next to the dog. The floor is grey. There are two seats behind the people, one on the left and one on the right. The left seat is occupied and the right seat is empty. There is a white bar in front of the dog.", - "id": 25414 - }, - { - "image_path": "G:\\images\\combined\\000000006053_jpg.rf.5a66b9908f6da8980164768c1976ddc4.jpg", - "response": "A black and white image with four different sections. In the top left section a person is skiing in the snow. In the top right section a lake is visible with a mountain in the background. The bottom right section shows a person sitting on a bench and the bottom left section is a white square.", - "id": 25415 - }, - { - "image_path": "G:\\images\\combined\\000000006053_jpg.rf.8d0e138007b39a63c94fb8057337e922.jpg", - "response": "A black and white image divided into four quadrants. In the top left is a person skiing in the snow. In the top right is a forklift. In the bottom left is a child in a snow suit playing in the snow. In the bottom right is a close up of a child's face.", - "id": 25416 - }, - { - "image_path": "G:\\images\\combined\\000000006053_jpg.rf.ed79b054a4170f6f7acbfee3107011e5.jpg", - "response": "A collage of black and white images. The top left image is of a person skiing down a snowy hill. The top right image is of a man in a hard hat in a construction area. The bottom left image is of a QR code on a wall. The bottom right image is of a busy street with a train on it.", - "id": 25417 - }, - { - "image_path": "G:\\images\\combined\\000000006057_jpg.rf.81eabdc0d382901f4d3d54dc39330a39.jpg", - "response": "A tennis player in a white shirt and black skirt.", - "id": 25418 - }, - { - "image_path": "G:\\images\\combined\\000000006074_jpg.rf.03316870495fc2b998903e91ca76ef39.jpg", - "response": "A truck, a bowl, a spoon, a paper, a black square", - "id": 25419 - }, - { - "image_path": "G:\\images\\combined\\000000006074_jpg.rf.79caf8d378550281c6e9c8e2a2c8fb50.jpg", - "response": "A collage of images including a van, a box, people walking, a stairwell and a pixelated image.", - "id": 25420 - }, - { - "image_path": "G:\\images\\combined\\000000006074_jpg.rf.c6f7e16c268e024727a153f16edc47dc.jpg", - "response": "A van with people around it, stacks of money, and a pile of money on a pallet.", - "id": 25421 - }, - { - "image_path": "G:\\images\\combined\\000000006075_jpg.rf.9135c2674176226b44a93cde0c6a7720.jpg", - "response": "A black and white photo of a street with a clock hanging from the ceiling. The clock has a white face with black hands and numbers. The background shows a building with a window and a lamp.", - "id": 25422 - }, - { - "image_path": "G:\\images\\combined\\000000006075_jpg.rf.b7a7c65fa04b8ca2f3ca0680ee293173.jpg", - "response": "A black and white image of a train station.", - "id": 25423 - }, - { - "image_path": "G:\\images\\combined\\000000006075_jpg.rf.c0b33429a2ab3b2c2f3ba6ea21269618.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 25424 - }, - { - "image_path": "G:\\images\\combined\\000000006101_jpg.rf.25a2260d7cee711b0fd7cdf2f1651d65.jpg", - "response": "A black and white image of a train on a train track. The train is a high speed train and has the letters SNCF on the side. There are two people standing on a platform next to the train. One person is on the left and is wearing a white jacket and black pants. The other person is on the right and is wearing a black jacket and black pants. There is a handbag on the platform next to the person on the left. The image is split into 5 different sections, with the train in the middle and the platform on either side.", - "id": 25425 - }, - { - "image_path": "G:\\images\\combined\\000000006101_jpg.rf.cd3c7071f4e40de2a632957fd31c3ea7.jpg", - "response": "A collage of three black and white images. The first is a close up of a person's feet standing on a scale. The second is a person standing in a yard holding a frisbee. The third is a close up of a car.", - "id": 25426 - }, - { - "image_path": "G:\\images\\combined\\000000006101_jpg.rf.d124d3ee9b6f54e0ab28cdd8f3ec14d6.jpg", - "response": "A black and white photo of people working on a building. The people are working on the roof of the building and are in various positions. The building has many windows and is made of concrete. There are also some wooden planks in the foreground.", - "id": 25427 - }, - { - "image_path": "G:\\images\\combined\\000000006107_jpg.rf.377358060bba3329d0705edca504fb1e.jpg", - "response": "A collage of 4 different images. 1) A person with a snorkel mask on, 2) a boat on the water, 3) a wooden pallet, and 4) a motorcycle laying on its side.", - "id": 25428 - }, - { - "image_path": "G:\\images\\combined\\000000006107_jpg.rf.52fbbb3a958e65c8a3e2939189bbba0b.jpg", - "response": "A black and white photo of a factory.", - "id": 25429 - }, - { - "image_path": "G:\\images\\combined\\000000006107_jpg.rf.6ee42fa7be32ef715b91d3639be64b20.jpg", - "response": "A collage of photos of kids playing baseball.", - "id": 25430 - }, - { - "image_path": "G:\\images\\combined\\000000006140_jpg.rf.46227529af84e5bbe2e2550807e59fae.jpg", - "response": "A collage of four photos, all of which are black and white. In the first photo, a woman is sitting at a table talking on her cell phone. She is wearing a striped shirt and has her hair in a ponytail. In the second photo, a group of people are sitting at a table outside. They are all wearing hats and are engaged in conversation. In the third photo, a dog is laying on the ground. It is white with black spots and has a collar on. In the fourth photo, a woman is walking down the street. She is wearing a black jacket and has her hair in a bun.", - "id": 25431 - }, - { - "image_path": "G:\\images\\combined\\000000006140_jpg.rf.b8e48bef68a4b8fff1df2fcdae3e47db.jpg", - "response": "A collage of four black and white images. The first is a close up of a woman's face, the second is a jet engine with the words \"Pratt & Whitney\" on it, the third is a view of a building from below, and the fourth is a close up of a wooden bench.", - "id": 25432 - }, - { - "image_path": "G:\\images\\combined\\000000006140_jpg.rf.e94ae784bdefe95d5e17be6c78ba94e1.jpg", - "response": "A black and white photo of a man sitting on a bench. He is wearing a striped shirt and has a cup on his head. The bench is located under a tree.", - "id": 25433 - }, - { - "image_path": "G:\\images\\combined\\000000006151_jpg.rf.4a44e18bdbae782ec1be2118ead00544.jpg", - "response": "A person is sitting at a table and is peeling a banana. They are holding the banana in one hand and are peeling it with the other. They are using a knife to peel the banana. The person is also holding a spoon in their other hand. The spoon is not being used. The person is wearing a shirt and is sitting at a table. The table is made of wood. The image is in black and white.", - "id": 25434 - }, - { - "image_path": "G:\\images\\combined\\000000006155_jpg.rf.1c2f549997587311bcd9aa272f2443e4.jpg", - "response": "A stack of wooden pallets.", - "id": 25435 - }, - { - "image_path": "G:\\images\\combined\\000000006155_jpg.rf.a3cb4c00afafe8b997d17d43f816b2c0.jpg", - "response": "A collage of four photos. In the first, a woman is sitting on a bench and feeding a dog. In the second, a woman is feeding a dog. In the third, a dog is standing on the street. In the fourth, a woman is feeding a dog.", - "id": 25436 - }, - { - "image_path": "G:\\images\\combined\\000000006155_jpg.rf.e87f834c58dc5d4778f13eb9998d3757.jpg", - "response": "A collage of four different images. The first is a close up of a hand holding a smartphone. The second is a close up of a person's hand holding a smartphone. The third is a bus on a street. The fourth is a close up of a store front.", - "id": 25437 - }, - { - "image_path": "G:\\images\\combined\\000000006180_jpg.rf.81865efc8fbd96b9eaef4fd419a95d03.jpg", - "response": "A steam train in a park, with a man standing in the doorway of the engine.", - "id": 25438 - }, - { - "image_path": "G:\\images\\combined\\000000006189_jpg.rf.48c64a49245af5e0400aff35f293a5ac.jpg", - "response": "A collage of images, including a book with a dollar bill on top of it, a hand holding a dollar bill, a train, and a pile of money.", - "id": 25439 - }, - { - "image_path": "G:\\images\\combined\\000000006189_jpg.rf.62da7f9f7849fa1b2faeaf0ec70f513c.jpg", - "response": "A train is on the tracks and there is a table with a pizza on it.", - "id": 25440 - }, - { - "image_path": "G:\\images\\combined\\000000006189_jpg.rf.beb2e35b68a0fa1da8f7c5c33cfece0e.jpg", - "response": "A black and white image with 4 different images in it. One of a man wearing a black shirt with a white logo on it. Another of a man wearing a black shirt with a white logo on it. Another of a man wearing a black shirt with a white logo on it. And the last one of a man holding a bottle of alcohol.", - "id": 25441 - }, - { - "image_path": "G:\\images\\combined\\000000006197_jpg.rf.313ed9b2edb588426e1959090e89ff11.jpg", - "response": "A black and white photo of a street scene. There is a person sitting on a bench reading a newspaper. Another person is sitting on a bench with a dog. A truck is parked on the street. A forklift is parked on the street. A trailer is parked on the street. A book is on a bench.", - "id": 25442 - }, - { - "image_path": "G:\\images\\combined\\000000006197_jpg.rf.a5c63a352255eb82325ba006087ec2ee.jpg", - "response": "A collage of images, including a pickup truck, a large building, a box, and a man operating machinery.", - "id": 25443 - }, - { - "image_path": "G:\\images\\combined\\000000006197_jpg.rf.c6947e6a573bd33b5304dcc729431756.jpg", - "response": "A collage of photos including a man standing in front of a truck and a camper, a man on a forklift, and a man standing in front of a parked truck with a camper.", - "id": 25444 - }, - { - "image_path": "G:\\images\\combined\\000000006200_jpg.rf.24e16e48210e832d8ac3a98d111037a7.jpg", - "response": "A black and white photo of a skateboarder.", - "id": 25445 - }, - { - "image_path": "G:\\images\\combined\\000000006200_jpg.rf.cfcbdba788dac55b437c346b3496eea5.jpg", - "response": "A collage of black and white images. The top left image shows a man surfing a wave on a surfboard. The top right image shows a close up of a dog's head with its tongue out. The bottom left image shows a person in the water with a rescue tube. The bottom right image shows a close up of a box with four black squares and some white lines.", - "id": 25446 - }, - { - "image_path": "G:\\images\\combined\\000000006200_jpg.rf.f5c773124a03fc0ecadf51c2d98a8b53.jpg", - "response": "A collage of three black and white images. The first is a line of fire trucks with a fire hose spraying water into a burning building. The second is a close up of a fire fighter's boot. The third is a close up of a motorcycle.", - "id": 25447 - }, - { - "image_path": "G:\\images\\combined\\000000006225_jpg.rf.6e81674f6ea01d9aef16aa248d90228e.jpg", - "response": "A collage of images including a drum set, a forklift, a drummer, a soldier, a fork lift, a person holding a remote, a person wearing a hard hat, a man in uniform, a person in a suit, a person in a uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit, a person in uniform, a person in a suit,", - "id": 25448 - }, - { - "image_path": "G:\\images\\combined\\000000006225_jpg.rf.86db34863a078bad418d3172fd729722.jpg", - "response": "A collage of images including a stack of wooden pallets, a man and a woman working at a mixing board, and a block of wood.", - "id": 25449 - }, - { - "image_path": "G:\\images\\combined\\000000006225_jpg.rf.d9f6fbef0f9f7bfc1674df6e637bfbbb.jpg", - "response": "A collage of photos of the band playing music.", - "id": 25450 - }, - { - "image_path": "G:\\images\\combined\\000000006233_jpg.rf.85f15ab2b2eda3ea2be34a7727687fc0.jpg", - "response": "A collage of images including a street scene, a car, people, a building, a puddle, a sign, a handbag, a wave, and a building.", - "id": 25451 - }, - { - "image_path": "G:\\images\\combined\\000000006233_jpg.rf.c385047a0669e360c71fd56e543b06ab.jpg", - "response": "A black and white photo of a street scene with cars, people and a truck. There are wooden pallets(567,478),(996,915) in the foreground.", - "id": 25452 - }, - { - "image_path": "G:\\images\\combined\\000000006233_jpg.rf.fffd406e52864edd05e2c973b86fb6cc.jpg", - "response": "A collage of six different images. The first is a black and white image of a busy street with cars, buses, and people. The second is a black and white image of a man surfing in the ocean. The third is a black and white image of a group of people in a room. The fourth is a black and white image of a group of people standing in line. The fifth is a black and white image of a group of people walking down a street. The sixth is a black and white image of a group of people standing in front of a building.", - "id": 25453 - }, - { - "image_path": "G:\\images\\combined\\000000006253_jpg.rf.3e328dba7ded879daa25b1edd69763e1.jpg", - "response": "A collage of black and white photos of people in a warehouse.", - "id": 25454 - }, - { - "image_path": "G:\\images\\combined\\000000006253_jpg.rf.6ce4741c963930a9a5e07dab52b8fd9a.jpg", - "response": "A collage of four photos. The top left photo is a woman in a plaid dress holding a suitcase and a book. The top right photo is a woman pulling a suitcase and making a funny face. The bottom left photo is a man standing in front of a forklift. The bottom right photo is a man running in the woods.", - "id": 25455 - }, - { - "image_path": "G:\\images\\combined\\000000006253_jpg.rf.e383d69dfd4364bbe21b6bc590d70251.jpg", - "response": "A black and white photo of a boy riding a bike.", - "id": 25456 - }, - { - "image_path": "G:\\images\\combined\\000000006262_jpg.rf.079a88081ad622aaa378fee536b8d38c.jpg", - "response": " Chip Yates(309,128),(601,658), the electric motorcycle speed record holder, on his electric sportbike", - "id": 25457 - }, - { - "image_path": "G:\\images\\combined\\000000006268_jpg.rf.67be82eeab4a0fe8d9a50a3519465665.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man playing tennis. The second is a black and white photo of a man throwing a tennis racket. The third is a black and white photo of a man in a forklift. The fourth is a black square.", - "id": 25458 - }, - { - "image_path": "G:\\images\\combined\\000000006268_jpg.rf.ba91ce0a66d57b044de196a9fd09c9c8.jpg", - "response": "A collage of images, including a tennis court, a person sitting on a bench, and a person hitting a tennis ball with a racquet.", - "id": 25459 - }, - { - "image_path": "G:\\images\\combined\\000000006268_jpg.rf.fa11ee7fa1d4a4889bcee08310050cd9.jpg", - "response": "A collage of black and white images. From top left to bottom right, the images are a person's legs in shorts and socks, a dog's face, a person's back as they ride a horse, a person's back as they walk a dog, a fence, and a person carrying a bucket of water.", - "id": 25460 - }, - { - "image_path": "G:\\images\\combined\\000000006270_jpg.rf.574830ac4e5149817398bc03f6437c33.jpg", - "response": "A collage of images of a forklift in a warehouse.", - "id": 25461 - }, - { - "image_path": "G:\\images\\combined\\000000006270_jpg.rf.7c3a350943dadbbe79f899fe98d73d0e.jpg", - "response": "A collage of black and white images. The top left image is of a bus with the word \"bussi\" on the front. The top right image is of a person's back with a square over their face. The bottom left image is of a black square on a white background. The bottom right image is of a dog laying on a table with a leash attached to its collar.", - "id": 25462 - }, - { - "image_path": "G:\\images\\combined\\000000006270_jpg.rf.db7499715c568b201d84ff2259f35cb2.jpg", - "response": "A collage of images, including a black and white image of skiers on a snowy hill, a black and white image of a skier in the air, a black and white image of a man in a ski suit, a black and white image of a skier on a slope, a black and white image of a group of people standing in front of a building, and a black and white image of a man in a ski suit standing in front of a stack of crates.", - "id": 25463 - }, - { - "image_path": "G:\\images\\combined\\000000006293_jpg.rf.103377901703884971941af71e92088e.jpg", - "response": "A collage of images including a group of people sitting on a bench, a man walking with a backpack and ski poles, a person skiing, a man operating a forklift, and a person taking a picture.", - "id": 25464 - }, - { - "image_path": "G:\\images\\combined\\000000006293_jpg.rf.42ee606f934000e3e55b8f6e592cc1f8.jpg", - "response": "A collage of black and white photos of people and dogs.", - "id": 25465 - }, - { - "image_path": "G:\\images\\combined\\000000006293_jpg.rf.4500e98980b179fa69d0cde7edacaca8.jpg", - "response": " a man(3,392),(431,954) holding a laptop(18,153),(283,357) on his shoulders is running", - "id": 25466 - }, - { - "image_path": "G:\\images\\combined\\000000006295_jpg.rf.27f1250643e397112b75826bd20869d9.jpg", - "response": "A collage of images including a tennis court, a man playing tennis, and two pieces of plastic.", - "id": 25467 - }, - { - "image_path": "G:\\images\\combined\\000000006295_jpg.rf.8409962b9fdf83c617c2b26cfb8d3c02.jpg", - "response": "A collage of images including a man on a forklift, boxes on a pallet, and a street with cars.", - "id": 25468 - }, - { - "image_path": "G:\\images\\combined\\000000006295_jpg.rf.e8e8393307acdde2c30a99034dae71e2.jpg", - "response": "A black and white image of a group of people standing around a pallet of boxes. The boxes are stacked on top of each other and are on a pallet. The people are standing around the pallet and looking at the boxes. The boxes are made of cardboard and are stacked on top of each other.", - "id": 25469 - }, - { - "image_path": "G:\\images\\combined\\000000006318_jpg.rf.1a811f5ee52eb4f6fe10ec210309ba77.jpg", - "response": "A collage of black and white images including a snowy mountain, a large crowd of people, a skateboarder on a ramp, and a close up of a wall.", - "id": 25470 - }, - { - "image_path": "G:\\images\\combined\\000000006318_jpg.rf.a0ddc0cabee851fb834cf1d461e12efb.jpg", - "response": "A collage of a man sleeping in a bed and another man riding a skateboard.", - "id": 25471 - }, - { - "image_path": "G:\\images\\combined\\000000006318_jpg.rf.a889d1324a57b0380865e84e4a445cfa.jpg", - "response": "A black and white image with four different sections. In the top left section, a man is hanging from a rope with another man holding a rope. In the top right section, a boat is in the water. In the bottom left section, a man is carrying a bag. In the bottom right section, a man is sitting on a bench.", - "id": 25472 - }, - { - "image_path": "G:\\images\\combined\\000000006332_jpg.rf.0c747af78f8f021780cb6ed818c93783.jpg", - "response": "a collage(3,5),(995,994) of black and white images", - "id": 25473 - }, - { - "image_path": "G:\\images\\combined\\000000006332_jpg.rf.df711f2bbd525aa9afdf87b0f6a73b1a.jpg", - "response": "A black and white photo of a collage. The collage is made up of three photos. The top left photo is of a man holding a surfboard. The top right photo is of a man standing on a basketball court. The bottom left photo is of a man standing in front of a building. The bottom right photo is of a tree.", - "id": 25474 - }, - { - "image_path": "G:\\images\\combined\\000000006332_jpg.rf.f7fa027024affb6760f4da122b2136e6.jpg", - "response": "A collage of black and white images. The top left image is of three men sitting on a beach with a cooler between them. The top right image is a close up of a computer screen with a black box covering the screen. The bottom left image is of a book on a table. The bottom right image is of a bowl of food with chopsticks on top.", - "id": 25475 - }, - { - "image_path": "G:\\images\\combined\\000000006339_jpg.rf.03299f7b10db08c4edd54f48e87373bf.jpg", - "response": "A toddler sitting in a stroller with a banana in his mouth.", - "id": 25476 - }, - { - "image_path": "G:\\images\\combined\\000000006339_jpg.rf.1f57596f84653553e5500ceca5f1efea.jpg", - "response": "A black and white image of a warehouse. There are four different instances of the warehouse in the image. The first is a man sitting on a pallet. The second is a woman standing and leaning on a pallet. The third is a pallet with boxes stacked on it. The fourth is a close up of the pallet with boxes on it.", - "id": 25477 - }, - { - "image_path": "G:\\images\\combined\\000000006339_jpg.rf.2f8b4b1f38b228cfb6a5fac8795780b2.jpg", - "response": " A collage(4,4),(992,992) of images. The top left image is a blurry image of a woman riding a horse in a riding arena. The top right image is a close up of a wooden beam. The bottom right image is a close up of a metal container.", - "id": 25478 - }, - { - "image_path": "G:\\images\\combined\\000000006357_jpg.rf.3b08ddc12fe1927dc4fdc080ef8a8b51.jpg", - "response": "A collage of images. The top image is a black and white photo of a little girl laying in bed. The second image is a close up of a machine. The third image is a close up of a tree.", - "id": 25479 - }, - { - "image_path": "G:\\images\\combined\\000000006357_jpg.rf.671328d28ba0c11cc8d51652152d9851.jpg", - "response": "A black and white photo of a girl in a bed. The girl is smiling and looking at the camera. There are two photos of the girl in the bed. One is a close up of her face and the other is a wider shot of her in the bed. There is a picture of a cat on the right side of the photo. There is a basket on the right side of the photo with a white and black cat in it. There is a person standing in front of a refrigerator.", - "id": 25480 - }, - { - "image_path": "G:\\images\\combined\\000000006357_jpg.rf.aa08494f0e303d109324af2785c3c0fb.jpg", - "response": "A collage of black and white images of a woman walking with an umbrella, a pillow, a chair, a fork, a bowl, a book, a fork, a chair, a book, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a bowl, a pillow, a fork, a book, a chair, a fork, a", - "id": 25481 - }, - { - "image_path": "G:\\images\\combined\\000000006358_jpg.rf.13bd0d0e48fc702e3bcfd15ffead41c5.jpg", - "response": "A sink with a cup on it and a toothbrush in front of a mirror.", - "id": 25482 - }, - { - "image_path": "G:\\images\\combined\\000000006364_jpg.rf.c19d042a8b572205fe669bbe4b6841bc.jpg", - "response": "A collage of 4 different images. The first is a black and white photo of a man lying on a mattress on the floor. The second is a close up of a pallet. The third is a close up of a fork lift. The fourth is a close up of a fork lift with a man sitting on it.", - "id": 25483 - }, - { - "image_path": "G:\\images\\combined\\000000006364_jpg.rf.e931e94b5d05b2537eb7a78554446970.jpg", - "response": "A collage of black and white images of people making art. On the left is a woman looking down at a bowl in her hands. In the top right is a woman looking down at a plate of food. In the bottom right is a close up of a hand holding a knife and cutting into a potato. In the top left is a woman looking down at a plate of food. In the bottom left is a man and a woman looking at a plate of food.", - "id": 25484 - }, - { - "image_path": "G:\\images\\combined\\000000006364_jpg.rf.f2f9b5380a002c25eca847a377df7d17.jpg", - "response": "A collage of 4 photos, the first is a man with a shaved head in a white t-shirt and black shorts, the second is a man in a white shirt and shorts running on a track, the third is a man in a white shirt and black shorts driving a forklift, the fourth is a close up of a man in a white shirt and black shorts with a black square over his face.", - "id": 25485 - }, - { - "image_path": "G:\\images\\combined\\000000006379_jpg.rf.032c1ca4869e52972691d4fa43cf5e6a.jpg", - "response": "A black and white photo of a group of people standing in a snowy field. There are two men in the center of the photo, one on the left and one on the right, and a woman in the bottom left corner. The woman is wearing a black coat and holding a black purse. The two men are wearing glasses and are looking at something in their hands. The top right corner of the photo is blurred out.", - "id": 25486 - }, - { - "image_path": "G:\\images\\combined\\000000006379_jpg.rf.9e4507261eb6b34a356a87c96877bdff.jpg", - "response": "A warehouse with two forklifts. One is a small electric forklift and the other is a larger electric forklift.", - "id": 25487 - }, - { - "image_path": "G:\\images\\combined\\000000006379_jpg.rf.dc8d13bb3543a4e83ab706e8028aa61f.jpg", - "response": "A collage of black and white images. The top left image is of a man standing in front of a snowy mountain. The top right image is of a wooden bench. The bottom left image is of a man standing in front of a wooden shelf. The bottom right image is of a pine tree.", - "id": 25488 - }, - { - "image_path": "G:\\images\\combined\\000000006380_jpg.rf.272d85e3287be8c2464ff37b9b1087cb.jpg", - "response": "A collage of four different photos. In the top left corner, a man is standing on a pile of wood. In the top right corner, a forklift is lifting a pallet. In the bottom left corner, a person is pulling a suitcase. In the bottom right corner, a person is pulling two suitcases.", - "id": 25489 - }, - { - "image_path": "G:\\images\\combined\\000000006380_jpg.rf.2d5311725e18048b38e813f664a8fa88.jpg", - "response": "A collage of four different black and white images. In the top left image a man is throwing a frisbee, in the top right a man is working on a house, in the bottom left a woman is squatting on the ground, and in the bottom right a close up of a box with Chinese writing on it.", - "id": 25490 - }, - { - "image_path": "G:\\images\\combined\\000000006380_jpg.rf.53bd18a3f51bd587cad8811404380936.jpg", - "response": "A collage of black and white images, including a person stretching, a table with a computer and other equipment, a person standing in a field, a building with a clock on it, and a person standing in front of a wall with a clock on it.", - "id": 25491 - }, - { - "image_path": "G:\\images\\combined\\000000006393_jpg.rf.789d9401f0cf4161b9abe80b2e891227.jpg", - "response": "A man(616,395),(820,962) standing in front of a machine.", - "id": 25492 - }, - { - "image_path": "G:\\images\\combined\\000000006393_jpg.rf.83130f4849276790e42bb2d68de68c78.jpg", - "response": "A collage of four photos of a forklift in a warehouse. The forklift is a dark grey color and has the word \"Schenker\" on the door. The first photo is a top down view of the forklift, the second photo is a side view of the forklift, the third photo is a front view of the forklift, and the fourth photo is a close up of the forklift.", - "id": 25493 - }, - { - "image_path": "G:\\images\\combined\\000000006393_jpg.rf.ad2902269d333b9fb319f76375d6b48e.jpg", - "response": "A collage of a necklace, a forklift, and a table.", - "id": 25494 - }, - { - "image_path": "G:\\images\\combined\\000000006397_jpg.rf.0632a85c97386214b1bc5424017c32db.jpg", - "response": "A black and white photo of a street scene. There are two women in the foreground, one on the left and one on the right. They are both wearing glasses and coats. The woman on the left is holding an umbrella. In the background, there is a building, a horse and carriage, and a statue. There is also a fence and a traffic light.", - "id": 25495 - }, - { - "image_path": "G:\\images\\combined\\000000006397_jpg.rf.25a6e2a03490f2cefcb880cbaf62b023.jpg", - "response": "A collage of images. The first is a black and white image of a man windsurfing. The second is a black and white image of a table with a bowl of food and a bottle. The third is a black and white image of a man windsurfing.", - "id": 25496 - }, - { - "image_path": "G:\\images\\combined\\000000006397_jpg.rf.352a2d30e3ae53b90006c1925b37adbd.jpg", - "response": "A forklift in a warehouse with a pallets.", - "id": 25497 - }, - { - "image_path": "G:\\images\\combined\\000000006409_jpg.rf.280eafbe660839f82267cc3a24d4b6eb.jpg", - "response": "A black and white photo of four different people. The first person is wearing a white shirt and black pants, the second person is wearing a white shirt and no pants, the third person is wearing a white shirt and no pants and a hat, and the fourth person is wearing a white shirt and pants and a hat.", - "id": 25498 - }, - { - "image_path": "G:\\images\\combined\\000000006409_jpg.rf.378cf5924802fc498c1c93c1e07a32a6.jpg", - "response": "A collage of 4 photos. The top left photo is a man with a white shirt and black pants leaning over with his right arm extended. The top right photo is a close up of a man with a white shirt and black pants. The bottom left photo is a man with a white shirt and black pants doing a handstand on a wooden dock. The bottom right photo is a close up of a man with a white shirt and black pants doing a handstand on a wooden dock.", - "id": 25499 - }, - { - "image_path": "G:\\images\\combined\\000000006409_jpg.rf.54a8712be717daf26de4dd51a74fcb0b.jpg", - "response": "A collage of black and white images. The top left image is of a man with his arms outstretched, looking like he is jumping. The top right image is of a pile of debris. The bottom left image is of a man with a beard and mustache walking. The bottom right image is of a man and a woman standing close together.", - "id": 25500 - }, - { - "image_path": "G:\\images\\combined\\000000006414_jpg.rf.0f3b2c8e4c1928e560e3c39ee4078651.jpg", - "response": "a man surfing on a wave in the ocean", - "id": 25501 - }, - { - "image_path": "G:\\images\\combined\\000000006414_jpg.rf.7b7117b9e0590454096a0b575cafa896.jpg", - "response": "A collage of images including a construction vehicle, a building, a ship, and a mountain.", - "id": 25502 - }, - { - "image_path": "G:\\images\\combined\\000000006414_jpg.rf.a32538718560bcce7baebf7be17c0b84.jpg", - "response": "A collage of images. The top left image is a black and white photo of a large building under construction. The top right image is a close up of a white wall with three black squares cut out of it. The bottom left image is a black and white photo of a person standing in a field of tall grass. The bottom right image is a stack of white boxes.", - "id": 25503 - }, - { - "image_path": "G:\\images\\combined\\000000006421_jpg.rf.0c740c5621b23ec888ef1936f6fe31d2.jpg", - "response": "A black and white photo of a beach scene with thatched umbrellas and a woman laying on a bed. The woman has long dark hair and is wearing a white shirt. There is a small black box on the wall to the right of the bed.", - "id": 25504 - }, - { - "image_path": "G:\\images\\combined\\000000006421_jpg.rf.503649b792a7fcf7f2a61864ba41ad55.jpg", - "response": "A black and white image of a pile of bags with a house in the background. There are two squares blacked out in the image.", - "id": 25505 - }, - { - "image_path": "G:\\images\\combined\\000000006421_jpg.rf.5ef58902f6f629a2b3e481ae130e69a4.jpg", - "response": "A collage of four black and white images of beach scenes. The top left image shows a beach with palm trees and thatched umbrellas. The top right image shows a beach with a lifeguard tower. The bottom left image shows a building with a sign that says \"Lido.\" The bottom right image shows a beach with a snow-covered dune.", - "id": 25506 - }, - { - "image_path": "G:\\images\\combined\\000000006424_jpg.rf.24b0395b9ef9674a09eba55762e35f29.jpg", - "response": "A collage of images, including a forklift, a surfer, and a person in a wetsuit.", - "id": 25507 - }, - { - "image_path": "G:\\images\\combined\\000000006424_jpg.rf.c90ffc9bbbbd9a0528dc99c64aa1802d.jpg", - "response": "A collage of images showing the interior of a vehicle and the surrounding area. The collage includes a total of 5 images. The first image is a close-up of the interior of the vehicle, showing the dashboard and steering wheel. The second image is a close-up of the interior of the vehicle, showing the passenger seat. The third image is a close-up of the interior of the vehicle, showing the glove compartment. The fourth image is a close-up of the interior of the vehicle, showing the door handle. The fifth image is a view of the surrounding area, showing a building and a forklift.", - "id": 25508 - }, - { - "image_path": "G:\\images\\combined\\000000006424_jpg.rf.d31d2235cb353dd4ccfd9647a910054a.jpg", - "response": "A collage of images including a forklift, boxes, a person in a coat, and a woman with a sign reading \"I'm not a robot.\"", - "id": 25509 - }, - { - "image_path": "G:\\images\\combined\\000000006447_jpg.rf.63876f9e84e3756e2d7f2edce2c7e570.jpg", - "response": "A black and white photo of a boy on skis in the snow.", - "id": 25510 - }, - { - "image_path": "G:\\images\\combined\\000000006447_jpg.rf.bca915cf55aa5cefbd2f79f31c15aede.jpg", - "response": "A black and white image of a beach with a woman sitting on a wooden bench. There is a dog in the water and a book on the table.", - "id": 25511 - }, - { - "image_path": "G:\\images\\combined\\000000006447_jpg.rf.cff4fc09922ca945bcc8f285af978d03.jpg", - "response": "A black and white photo of a giraffe head. The giraffe is looking at the camera and there are two people in the background. There is a truck in the background on the right side.", - "id": 25512 - }, - { - "image_path": "G:\\images\\combined\\000000006465_jpg.rf.874a1aa2fac7ab1d164a75b6506c6c22.jpg", - "response": " A collage(4,6),(995,993) of images showing a Nighthawk router and people.", - "id": 25513 - }, - { - "image_path": "G:\\images\\combined\\000000006465_jpg.rf.c45e5bd13347c3a41e9ed70a078c5980.jpg", - "response": "A black and white photo of a group of people working in a kitchen. There are a few people visible in the photo, and they are all wearing uniforms. They are standing around a table, which has several metal food preparation trays on it. Some of the people are working with food, such as a man who is holding a spoon and standing over a pan of food. Another man is standing behind a counter, and there is a bottle on the table. In the background, there is a wall with a clock on it.", - "id": 25514 - }, - { - "image_path": "G:\\images\\combined\\000000006465_jpg.rf.e5ad023ceeb7c6336e4f133acec9f4b0.jpg", - "response": " Collapsible pallets(249,285),(996,927) are a popular choice for shipping.", - "id": 25515 - }, - { - "image_path": "G:\\images\\combined\\000000006484_jpg.rf.20e263da730ce4c65edbed3ec3e3a146.jpg", - "response": "A collage of a woman's face and a cat, a pizza, a chair, a window, and a cat toy.", - "id": 25516 - }, - { - "image_path": "G:\\images\\combined\\000000006484_jpg.rf.524b571291ca176d47cfe420cc17ae37.jpg", - "response": "A black and white photo of a rock and a box.", - "id": 25517 - }, - { - "image_path": "G:\\images\\combined\\000000006484_jpg.rf.785a9777d5333aa6d59568ec06304dcc.jpg", - "response": "A collage of a man in a forklift, a bottle, a plant, and a fence.", - "id": 25518 - }, - { - "image_path": "G:\\images\\combined\\000000006489_jpg.rf.a5812b34a91caa90ba5b7e461452d79b.jpg", - "response": "A collage of four photos, one of a person wearing a backpack, one of a cruise ship, one of a mountain range and one of a person on a sled.", - "id": 25519 - }, - { - "image_path": "G:\\images\\combined\\000000006489_jpg.rf.ae0851644b018cc8cae4687464467bdc.jpg", - "response": "A collage of a man in a bike helmet, a stack of wooden pallets, and a large block of wood.", - "id": 25520 - }, - { - "image_path": "G:\\images\\combined\\000000006489_jpg.rf.ca454db1926f4e44fbf6b6a18537a922.jpg", - "response": "A collage of images, including a person carrying a backpack, a forklift carrying pallets, and a person sitting in a car.", - "id": 25521 - }, - { - "image_path": "G:\\images\\combined\\000000006491_jpg.rf.527ee252df2d88759a30dee0c00ece81.jpg", - "response": "A black and white photo of a collage of images. The images include a man wearing a straw hat and a bandana around his face, a man in a warehouse with a fork lift, a box of sugar apples, and a table tennis table.", - "id": 25522 - }, - { - "image_path": "G:\\images\\combined\\000000006491_jpg.rf.67fc0cfe1d0191c98e8ed4c5162f7c23.jpg", - "response": "A collage of four black and white images. On the left is a woman wearing a conical hat and a white and black scarf around her head. She is looking down. In the middle left is a black square. In the middle right is a man's back, he is shirtless and has a tattoo on his back. In the middle right is a black square. In the right image a man is holding a sheep by the horns and pouring water into a bucket.", - "id": 25523 - }, - { - "image_path": "G:\\images\\combined\\000000006491_jpg.rf.87c2bd0a4cd51537e4771f5d87837e2a.jpg", - "response": "A black and white photo of a street scene. There is a woman wearing a pointed hat and a head scarf. She is standing in front of a building. There are many people walking on the street. There are also many bicycles parked along the street. There is a car driving down the street. There are traffic lights. There are also two black squares over the woman's face and over the building.", - "id": 25524 - }, - { - "image_path": "G:\\images\\combined\\000000006517_jpg.rf.372bd07484242a03eef2f0dfb582f903.jpg", - "response": "A black and white image of a group of people standing outside a home with their luggage. There are two people standing on the right, one wearing a plaid shirt and the other wearing a black shirt. They are both holding suitcases. In the background, there is a car parked in a driveway and a street with a few cars.", - "id": 25525 - }, - { - "image_path": "G:\\images\\combined\\000000006517_jpg.rf.40acc651d650d922d17102b26dae36f8.jpg", - "response": "A collage of images including a man in a forklift, a woman making a face, a street view and a block of wood.", - "id": 25526 - }, - { - "image_path": "G:\\images\\combined\\000000006517_jpg.rf.6fa9d2ae29c0106160c32621688fc496.jpg", - "response": "A black and white image of a man working on a construction site. There is a forklift in the background and a man in a hard hat is on the left. There are also a number of boxes and a ladder in the scene.", - "id": 25527 - }, - { - "image_path": "G:\\images\\combined\\000000006522_jpg.rf.ac6c9af6122c09d71d573e98984b3250.jpg", - "response": "A black and white photo of a city street at night. The street is empty of people but there are a few cars driving down the street. The Gooderham Building, also known as the Flatiron Building, is on the right side of the street. The building is tall and has a distinct flat triangle shape. There are several street lamps along the sidewalk and a few traffic lights. The sky is dark and there are a few stars visible.", - "id": 25528 - }, - { - "image_path": "G:\\images\\combined\\000000006531_jpg.rf.1268bf4b17f52f36d6455a97ca7ef708.jpg", - "response": "A black and white photo of a man working on a forklift.", - "id": 25529 - }, - { - "image_path": "G:\\images\\combined\\000000006531_jpg.rf.70f42dc5d3f055c5321eb57b17a17979.jpg", - "response": "A collage of four photos. The top left photo shows a crane lifting a car. The top right photo shows a close-up of a person's face with a black bar over it. The bottom left photo shows a street with a building on the left and trees on the right. The bottom right photo shows a person sitting on a forklift.", - "id": 25530 - }, - { - "image_path": "G:\\images\\combined\\000000006531_jpg.rf.f9cd0df9f2132d15f3760472cfafeadc.jpg", - "response": "A collage of black and white photos. In the top left photo, a man is jumping over a car. In the top right photo, a man is jumping over a car. In the bottom left photo, four boys are sitting on a bench. In the bottom right photo, a group of boys are sitting on a grassy hill.", - "id": 25531 - }, - { - "image_path": "G:\\images\\combined\\000000006539_jpg.rf.0e744bee4764d922fa10ed3b934231c3.jpg", - "response": "A collage of black and white images, including a bird, a bearded man, a bicycle, a man in a suit, a field, and a building.", - "id": 25532 - }, - { - "image_path": "G:\\images\\combined\\000000006539_jpg.rf.e1346ac89943ce0f336ebfcedd7b085e.jpg", - "response": "A man driving a forklift with pallets stacked behind him.", - "id": 25533 - }, - { - "image_path": "G:\\images\\combined\\000000006539_jpg.rf.f16a7ba1e19a0b9488599e3c0ca2de62.jpg", - "response": "A bed with a white blanket and a pillow.", - "id": 25534 - }, - { - "image_path": "G:\\images\\combined\\000000006541_jpg.rf.3054a4fda6e48c095bb6ad17cc92d2c6.jpg", - "response": "A collage of a man swinging a golf club, a man jumping in the air, and a man holding a frisbee.", - "id": 25535 - }, - { - "image_path": "G:\\images\\combined\\000000006541_jpg.rf.458005e86d9df7d7b77522756c87c592.jpg", - "response": "A collage of black and white images. The top left image is a close up of a person's hand holding a camera. The top right image is a close up of a window. The bottom left image is of a person standing in the snow. The bottom right image is of a pile of luggage on a baggage claim belt.", - "id": 25536 - }, - { - "image_path": "G:\\images\\combined\\000000006541_jpg.rf.83f00fd6107cfe18b137772a83a09eb9.jpg", - "response": "A collage of different activities, including a man wearing shorts and a white shirt running up a flight of stairs, a man wearing all black running up a flight of stairs, a man jumping over a step, a man wearing all black running up a flight of stairs, a close up of a shoe on a step, a man wearing shorts and a white shirt running up a flight of stairs, a man wearing all black running up a flight of stairs, a man jumping over a step, a man wearing all black running up a flight of stairs, and a close up of a shoe on a step.", - "id": 25537 - }, - { - "image_path": "G:\\images\\combined\\000000006562_jpg.rf.90bad1213e1c5d8d38c6841604952e67.jpg", - "response": "A collage of black and white images including a man's face, a person on a boat, a person jumping off a bridge, and a group of people standing on a bridge.", - "id": 25538 - }, - { - "image_path": "G:\\images\\combined\\000000006562_jpg.rf.be19e6672683f2b5ce31471ea52f3113.jpg", - "response": "A black and white photo of a woman on skis.", - "id": 25539 - }, - { - "image_path": "G:\\images\\combined\\000000006562_jpg.rf.dafd462c0afcf0af5838fbced3654b73.jpg", - "response": "A collage of images showing a man's back with dark spots on it. There are also images of people working on a roof, a fork lift, and a pile of boxes.", - "id": 25540 - }, - { - "image_path": "G:\\images\\combined\\000000006572_jpg.rf.0fa3690437607405b511496d71c8f80c.jpg", - "response": "A woman with blonde hair in a braid is sitting at a desk. There is a small bed in the background.", - "id": 25541 - }, - { - "image_path": "G:\\images\\combined\\000000006572_jpg.rf.13dbdbb72ba35a423946d80a10fe61fa.jpg", - "response": "A woman sitting on a forklift", - "id": 25542 - }, - { - "image_path": "G:\\images\\combined\\000000006572_jpg.rf.362a6375d59c50104e133b07e9571590.jpg", - "response": "A collage of 4 different images. Top left corner is a close up of a blonde woman's hair in a braid. Top right corner is a building with a lot of windows. Bottom left corner is a close up of power lines. Bottom right corner is a group of people standing outside a building.", - "id": 25543 - }, - { - "image_path": "G:\\images\\combined\\000000006578_jpg.rf.04323e8586543a11d13cd6d43e1a910c.jpg", - "response": "A woman with a dark shirt and a wedding ring on her left hand.", - "id": 25544 - }, - { - "image_path": "G:\\images\\combined\\000000006579_jpg.rf.16edc24a8c8e1fbfbcb709650451c6dc.jpg", - "response": "A black and white photo of a little boy holding a stuffed animal.", - "id": 25545 - }, - { - "image_path": "G:\\images\\combined\\000000006579_jpg.rf.38fdd7b48466b94a50417e5c1959e4a3.jpg", - "response": "A collage of images including a person sitting on a race car, a person holding a helmet, and a racing helmet with the letters Kyt on it.", - "id": 25546 - }, - { - "image_path": "G:\\images\\combined\\000000006579_jpg.rf.fddf389ecbfe3a85857ac4dd58a9b9a3.jpg", - "response": "A collage of images including a woman with a bag, a person on skis, a bus, a shirt with the word Yale on it and a person wearing a sweatshirt with a hood.", - "id": 25547 - }, - { - "image_path": "G:\\images\\combined\\000000006580_jpg.rf.2fb7eca7e03924b5c7a0f7511d931a0e.jpg", - "response": "A collage of four images. The top left image is of a group of people standing on a street corner. The top right image is of a router box that says \"Nighthawk\" on it. The bottom left image is of a building at night. The bottom right image is of a kite.", - "id": 25548 - }, - { - "image_path": "G:\\images\\combined\\000000006580_jpg.rf.34cb1441961955b8e9496dcd6a2a5714.jpg", - "response": "A collage of images including a crowd of people, a TV screen, a sign that says alamy, and a camera.", - "id": 25549 - }, - { - "image_path": "G:\\images\\combined\\000000006580_jpg.rf.521eb5870942158ce63b9d97aaaa5fb0.jpg", - "response": "A black and white image with two people standing in front of a pallet of boxes. The boxes are grey and stacked on top of each other. The people are looking at the boxes and there is a camera in the scene.", - "id": 25550 - }, - { - "image_path": "G:\\images\\combined\\000000006590_jpg.rf.89119bad55323cec0351ef65d8f3f227.jpg", - "response": "A collage of black and white images. The top left image is of a little girl holding an umbrella. The top right image is of a crowd of people. The bottom left image is of a child in a hospital bed. The bottom right image is of a woman pushing a stroller.", - "id": 25551 - }, - { - "image_path": "G:\\images\\combined\\000000006590_jpg.rf.c91e24441d63ba5b5e12491ed8ba50d4.jpg", - "response": "A collage of photos showing a little girl with an umbrella, a fork lift, a forklift tire, and a person wearing a hard hat", - "id": 25552 - }, - { - "image_path": "G:\\images\\combined\\000000006590_jpg.rf.eb47cdfb81d5ceda5d7f5058b9d97c75.jpg", - "response": "A collage of four different photos. The first is a black and white photo of a little girl holding an umbrella. The second is a close up of a wooden bench. The third is a toy bus with a child sitting on it. The fourth is a motorcycle with a child on it.", - "id": 25553 - }, - { - "image_path": "G:\\images\\combined\\000000006593_jpg.rf.02898541c347e2c93936b7b82f410599.jpg", - "response": "A collage of photos including a person jumping in the air, a person skateboarding, and a church.", - "id": 25554 - }, - { - "image_path": "G:\\images\\combined\\000000006593_jpg.rf.12b8534557af16f7fb96730e5eeab58b.jpg", - "response": "A collage of 4 different photos. 1 is a man playing tennis, 2 is a man playing guitar, 3 is a person jumping on a trampoline, and 4 is a close up of a computer screen with a black square over the center of it.", - "id": 25555 - }, - { - "image_path": "G:\\images\\combined\\000000006593_jpg.rf.233215c15fbd78a0380618b389566fff.jpg", - "response": "A black and white photo of a person on a surfboard in the water. There is also a person running and a sink with two faucets.", - "id": 25556 - }, - { - "image_path": "G:\\images\\combined\\000000006602_jpg.rf.2d34e104861f52c43ab8d5451faafdc6.jpg", - "response": "A collage of black and white images including a man sitting on a surfboard, a horse and carriage, a clock tower, and a group of people.", - "id": 25557 - }, - { - "image_path": "G:\\images\\combined\\000000006602_jpg.rf.48ccdc2b691dcb46ded77677184a2e40.jpg", - "response": "A black and white image of a busy airport with people walking around with their luggage. There are multiple people carrying suitcases, handbags and backpacks. There are also multiple chairs and tables visible in the image.", - "id": 25558 - }, - { - "image_path": "G:\\images\\combined\\000000006602_jpg.rf.e470eb6b4ace2b3e6536fe2d2d0b211d.jpg", - "response": "A collage of four black and white images. The first image is of a bare tree in a park. The second image is of a large building. The third image is of a wooden pallet. The fourth image is of a small building.", - "id": 25559 - }, - { - "image_path": "G:\\images\\combined\\000000006603_jpg.rf.40774454049dd4125ee3759dafc9cb2e.jpg", - "response": "A collage of images. Top left is an elephant with a man on its back in the water. Top right is a forklift in front of a container. Bottom is a close up of a wooden pallet.", - "id": 25560 - }, - { - "image_path": "G:\\images\\combined\\000000006603_jpg.rf.cc39312c5ce5273d295c580fa1341dec.jpg", - "response": "A collage of images. The top left image is a man riding an elephant. The top right image is a man standing in front of a building. The bottom left image is a forklift. The bottom right image is a snowy mountain.", - "id": 25561 - }, - { - "image_path": "G:\\images\\combined\\000000006603_jpg.rf.d37e3a163b580f2ecf4f80d6a027e5f3.jpg", - "response": "A collage of images including a man standing by a lake, a white box, and children playing on a playground.", - "id": 25562 - }, - { - "image_path": "G:\\images\\combined\\000000006608_jpg.rf.226b486fbc7e4d001a78b4b3b6901618.jpg", - "response": "A room with two pallets, one on the left and one on the right. On the left pallet there is a laptop and a monitor. On the right pallet there are two more monitors. On the table in front of the monitors there are two keyboards and two mice. On the floor in front of the pallets there are two more keyboards and two more mice. On the floor in the middle of the room there is a coffee table. On the floor in front of the coffee table there is a box.", - "id": 25563 - }, - { - "image_path": "G:\\images\\combined\\000000006608_jpg.rf.623891e4b11fb7cd2d91af7865dc9427.jpg", - "response": "A collage of 4 images. The first is a close up of a computer screen with a keyboard and mouse. The second is a forklift truck. The third is a person surfing. The fourth is a close up of a computer screen with a mouse.", - "id": 25564 - }, - { - "image_path": "G:\\images\\combined\\000000006608_jpg.rf.7ea18f685aef0b7663e3efc232edf4ed.jpg", - "response": "A baby sitting on a bed next to a cardboard box.", - "id": 25565 - }, - { - "image_path": "G:\\images\\combined\\000000006627_jpg.rf.43e7bb5b07f578ea3bdaf157f8a271ea.jpg", - "response": " A collage(4,6),(993,994) of four images. In the top left image, a person is seen from the shoulders down, holding a book and pointing to a screen. In the top right image, a close-up of a necklace is shown. In the bottom left image, a person is seated in a forklift truck, wearing a striped shirt and a watch. In the bottom right image, a close-up of a necklace is shown.", - "id": 25566 - }, - { - "image_path": "G:\\images\\combined\\000000006627_jpg.rf.46a9c45dfed41c382658b6f2c44b5ebc.jpg", - "response": "A woman in a dress is opening a Lokabox package.", - "id": 25567 - }, - { - "image_path": "G:\\images\\combined\\000000006627_jpg.rf.c5382e3797d5690306e7eb6a233af9ad.jpg", - "response": "A collage of images, including a plant in a window sill, a wooden pallet, a hand holding a dog with a bandage on its face, a person holding a camera, a group of people in a field, and a hand holding a knife.", - "id": 25568 - }, - { - "image_path": "G:\\images\\combined\\000000006640_jpg.rf.27bf1448681525062893571899bf645b.jpg", - "response": "A collage of four images. The first is a black and white image of a person's hands holding a bin of rice. The second is a black and white image of a person's feet in a bin of rice. The third is a black and white image of a person's feet in a bin of rice with a black square over the top. The fourth is a black and white image of a person falling off of a ski.", - "id": 25569 - }, - { - "image_path": "G:\\images\\combined\\000000006640_jpg.rf.2f2f6982a318784bc36bad26d1af899f.jpg", - "response": "A collage of black and white images of people and objects. There are two men in uniform, a woman in a coat, a person holding a tennis racket, a person holding a cup, a bus, and a handbag.", - "id": 25570 - }, - { - "image_path": "G:\\images\\combined\\000000006640_jpg.rf.685545ee03ab9d46491299edb50eb14a.jpg", - "response": "A collage of images including a group of people, a forklift, a person in a warehouse, a person with a beard, a person wearing a hat, a person in a uniform, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a hat, a person with a beard, a person wearing a tie, a person with a beard, a person wearing a", - "id": 25571 - }, - { - "image_path": "G:\\images\\combined\\000000006658_jpg.rf.39add154c928d8fc12059c50c34f7940.jpg", - "response": "A collage of images including a close up of a dog's paw, a black and white photo of a dog, a man standing on a ladder, and a close up of a dog's paw.", - "id": 25572 - }, - { - "image_path": "G:\\images\\combined\\000000006658_jpg.rf.54d7166a2a09bdc031d512e0af7f16e7.jpg", - "response": "A collage of a woman driving a forklift in a warehouse.", - "id": 25573 - }, - { - "image_path": "G:\\images\\combined\\000000006658_jpg.rf.b94cacf1cc658f0b6486bd59254fcbf4.jpg", - "response": "A collage of four images. The first is a close up of a person's arm covered in dirt. The second is a close up of a wooden pallet. The third is a forklift carrying a pallet. The fourth is a close up of a box.", - "id": 25574 - }, - { - "image_path": "G:\\images\\combined\\000000006664_jpg.rf.6b04a25a778687a94ff2147b83bf109a.jpg", - "response": "A collage of black and white images including a man working on a brick wall, a close up of a brick wall, a clock tower, and a painting of a man.", - "id": 25575 - }, - { - "image_path": "G:\\images\\combined\\000000006664_jpg.rf.c8c4ffe70c61628d52c3d4ee9677397b.jpg", - "response": "A collage of a tennis player, a tennis net, and a keyboard.", - "id": 25576 - }, - { - "image_path": "G:\\images\\combined\\000000006664_jpg.rf.d78acac0a8635159e40309115d25abef.jpg", - "response": "A collage of black and white images of people working with wood and metal. The top image is of a man working on a roof with a hammer. The second image is of a man working on a roof with a crowbar. The third image is of a man working on a roof with a level. The fourth image is of a woman looking at a pile of wood. The fifth image is of a man working on a metal structure.", - "id": 25577 - }, - { - "image_path": "G:\\images\\combined\\000000006675_jpg.rf.6ddae46cb2bc08d961a0eeb5d5a62426.jpg", - "response": "A black and white collage of images. There is a person in a boat, a man and a dog, a waterfall, a dog sitting on a couch, a woman and a child, a man with a backpack, a man holding a pole with a flag on it, and a man standing on a stage.", - "id": 25578 - }, - { - "image_path": "G:\\images\\combined\\000000006675_jpg.rf.7a16f4e73076a93796764cb86c6b7abb.jpg", - "response": "A collage of black and white images. The top left image is of a woman sitting at a table with a bowl of food in front of her. The top right image is of a city street with kites flying in the sky. The bottom left image is of a cake with a slice missing. The bottom right image is of a room with a wooden staircase.", - "id": 25579 - }, - { - "image_path": "G:\\images\\combined\\000000006675_jpg.rf.e384c6de2a8f2d04728ef9e13a73a254.jpg", - "response": "A collage of images including a man holding a skateboard, a man's face, a wall with paintings on it, a man on a snowboard, and a clock.", - "id": 25580 - }, - { - "image_path": "G:\\images\\combined\\000000006701_jpg.rf.1421abd0248c3d337731ede314df5ef5.jpg", - "response": "a car on the road(1,603),(995,993)", - "id": 25581 - }, - { - "image_path": "G:\\images\\combined\\000000006709_jpg.rf.4ff8c80f44df4f4391a2bbe6509d86a1.jpg", - "response": "A collage of images. The first is a black and white photo of a man in a white shirt and shorts holding a large piece of wood over his head. The second is a black and white photo of a dog sitting on the ground. The third is a black and white photo of a man and woman standing behind a pile of wooden pallets. The fourth is a black and white photo of a man and woman sitting on the ground next to a dog.", - "id": 25582 - }, - { - "image_path": "G:\\images\\combined\\000000006709_jpg.rf.e857535f5d718ef178bf2d4673a3acdf.jpg", - "response": "A collage of photos including a man throwing a frisbee, a man on a skateboard, a woman with skis, a man with a snowboard, and a group of people skiing.", - "id": 25583 - }, - { - "image_path": "G:\\images\\combined\\000000006709_jpg.rf.faf2f178b4699b1934b0530e8c8eca91.jpg", - "response": "A collage of 5 black and white photos. In the top left photo, a man is walking with his back to the camera. In the top right photo, a woman is walking with her back to the camera. In the bottom left photo, a man is standing on the street corner holding a map. In the bottom right photo, a man is eating a sandwich. In the bottom middle photo, a woman is walking down the street with a handbag.", - "id": 25584 - }, - { - "image_path": "G:\\images\\combined\\000000006710_jpg.rf.486b4e7e65fb6868d42d1f3fca92cee7.jpg", - "response": "A collage of images including a dog on a boat, a tiled wall and a sink.", - "id": 25585 - }, - { - "image_path": "G:\\images\\combined\\000000006710_jpg.rf.86c96e6864dc9ea7d8051e3951553c2c.jpg", - "response": "A collage of images, including a dog laying on a pile of boxes, a forklift, a box with the word CAT on it, and a street with houses", - "id": 25586 - }, - { - "image_path": "G:\\images\\combined\\000000006710_jpg.rf.d9bf574ed14a285675fa16de8086ae98.jpg", - "response": "A collage of a dog, a giraffe, a forklift, and a box.", - "id": 25587 - }, - { - "image_path": "G:\\images\\combined\\000000006712_jpg.rf.66b57eaa3f2271fdd14cec7ef93596fa.jpg", - "response": "A forklift is moving a box.", - "id": 25588 - }, - { - "image_path": "G:\\images\\combined\\000000006712_jpg.rf.74530c13770415b85399c7eba1d7c65f.jpg", - "response": "A collage of four photos. In the top left photo, a man is lying on the ground with a baseball. In the top right photo, a man is sitting at a desk with a laptop and a pizza in a cardboard box. In the bottom left photo, a forklift is parked in a yard. In the bottom right photo, a man is holding a knife over a pizza on a pan.", - "id": 25589 - }, - { - "image_path": "G:\\images\\combined\\000000006712_jpg.rf.857fc7279a46ebb15e19ac0d82f8215a.jpg", - "response": "A black and white photo of a man surfing on a surfboard in the ocean. There is a person in a wetsuit surfing on a wave. Another person is sitting on a bench. A person is standing on a stairway. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person standing on a ramp. There is a person walking on a ramp. There is a person", - "id": 25590 - }, - { - "image_path": "G:\\images\\combined\\000000006715_jpg.rf.5d371058a02a230f24f2bb667f36f90b.jpg", - "response": "A collage of black and white images. From top left, clockwise: a tree with snow on its branches, a snow-covered picnic table, a man holding a baby, a close-up of a wooden pallet, and a man wearing glasses and a striped shirt.", - "id": 25591 - }, - { - "image_path": "G:\\images\\combined\\000000006715_jpg.rf.d40e1a9648beede8e8ac24a765afd079.jpg", - "response": "A collage of 4 images. The first is a close up of a wooden pallet. The second is a close up of a puddle of water. The third is a close up of a stack of wooden pallets. The fourth is a close up of a single pallet.", - "id": 25592 - }, - { - "image_path": "G:\\images\\combined\\000000006715_jpg.rf.e68cdcf48b111f6bd6094f9d2b562a41.jpg", - "response": "A collage of images including a surfer, a horse and some filing cabinets.", - "id": 25593 - }, - { - "image_path": "G:\\images\\combined\\000000006719_jpg.rf.51aa6f8a2d47908f574e6bc8b88510f7.jpg", - "response": "A collage of images including a girl in bed, a boy sitting on a surfboard on the beach, a girl holding a surfboard, a man and boy sitting on a beach, a bedroom with a window and a bed, and a girl with a surfboard in a living room.", - "id": 25594 - }, - { - "image_path": "G:\\images\\combined\\000000006719_jpg.rf.990339c778ad9efc711e5f42d8762b19.jpg", - "response": "A forklift is lifting a surfboard out of a box.", - "id": 25595 - }, - { - "image_path": "G:\\images\\combined\\000000006719_jpg.rf.bbe4948f8447a9e2c541a94f792836e0.jpg", - "response": "A collage of different photos. In the top left photo, a person is sitting on a surfboard on the beach. In the top right photo, a circle logo with the letters \"KD\" in it is shown. In the bottom left photo, a black tie is shown. In the bottom right photo, a woman is making a weird face.", - "id": 25596 - }, - { - "image_path": "G:\\images\\combined\\000000006725_jpg.rf.136652c219d666c75ff94f64a2c4a98c.jpg", - "response": "A home office with a desk and chair.", - "id": 25597 - }, - { - "image_path": "G:\\images\\combined\\000000006744_jpg.rf.19c01b6c691b40e0f21943040d208f11.jpg", - "response": "A collage of black and white images including a baby in a hospital bed, a man sitting under an umbrella, a laptop, a snowy landscape, and a ship.", - "id": 25598 - }, - { - "image_path": "G:\\images\\combined\\000000006744_jpg.rf.76a71296a1c9e7e3ccbac1c54f9272d1.jpg", - "response": "A collage of black and white photos. In the top right corner, a man in uniform is looking at the camera. In the top left corner, a square black block is placed over a photo of a man in uniform. In the bottom left corner, a building is visible through a fence. In the bottom center, two women are walking under an umbrella. One of the women is holding the umbrella and looking down. The other woman is looking away from the camera. Both women are wearing coats.", - "id": 25599 - }, - { - "image_path": "G:\\images\\combined\\000000006744_jpg.rf.a7365906c98638ea14f1d5590805f09b.jpg", - "response": "A collage of images including a man with his face obscured, a woman smiling, a parking lot, and a building.", - "id": 25600 - }, - { - "image_path": "G:\\images\\combined\\000000006747_jpg.rf.a77819110144c5a618f64e5a429218fc.jpg", - "response": "A collage of four images. One is a black and white photo of a man standing in front of a desk with a computer. Another is a black and white photo of a pile of wooden pallets. The third is a black and white photo of a cardboard box with the date 2/19/13 on it. The fourth is a black and white photo of a wave in the ocean with a person swimming in it.", - "id": 25601 - }, - { - "image_path": "G:\\images\\combined\\000000006747_jpg.rf.cd8a3354d9dd5d0a2b4d4a49489cf4b4.jpg", - "response": "A collage of black and white images of a man working in a warehouse. One image shows him holding a box, another shows him on a forklift, and the third shows him in a hospital bed.", - "id": 25602 - }, - { - "image_path": "G:\\images\\combined\\000000006747_jpg.rf.ce95c7a12fc98e09f88a14dfde227853.jpg", - "response": "A collage of black and white images. The first is a close up of a giraffe's face. The second is a pile of boxes. The third is a group of people standing on a snowy hillside. The fourth is a man standing in front of a pallet of wood. The fifth is a man kneeling over another man who is lying on the ground.", - "id": 25603 - }, - { - "image_path": "G:\\images\\combined\\000000006748_jpg.rf.38962f7de32c606b93eb56b664e92fe1.jpg", - "response": "A collage of four photos, one of a motorcycle, one of a person on a motorcycle, one of a truck and one of a person working on a truck.", - "id": 25604 - }, - { - "image_path": "G:\\images\\combined\\000000006748_jpg.rf.3a906b84a1a1b6665c3fa5ffe3143618.jpg", - "response": "A black and white photo of a collage of images. The top left image is a close up of a hand holding a cell phone. The top right image is a close up of a hand holding a box with the word \"Box\" on it. The bottom left image is a close up of a hand holding a cell phone. The bottom right image is a close up of a hand holding a box with the word \"Box\" on it.", - "id": 25605 - }, - { - "image_path": "G:\\images\\combined\\000000006748_jpg.rf.49b93af738e85d88ff70dc0bfd23fef2.jpg", - "response": "A collage of images including a man in a white shirt sitting in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forklift, a man sleeping in a forkl", - "id": 25606 - }, - { - "image_path": "G:\\images\\combined\\000000006749_jpg.rf.4d6e05ae945d776b008e665de6dd5c84.jpg", - "response": "A collage of tennis players, buildings, and pallets.", - "id": 25607 - }, - { - "image_path": "G:\\images\\combined\\000000006749_jpg.rf.9a5f2f8d5bca285ee50abd4daaad12b2.jpg", - "response": " Collage(4,3),(994,995) of images, including a tennis player hitting a ball, a pile of boxes, and two men working with blocks.", - "id": 25608 - }, - { - "image_path": "G:\\images\\combined\\000000006749_jpg.rf.dbe3f6289273cf844c53b222b31d88e0.jpg", - "response": "A forklift driver is driving a forklift with a pallet of boxes on it. The forklift is in a warehouse.", - "id": 25609 - }, - { - "image_path": "G:\\images\\combined\\000000006760_jpg.rf.1d2fa66b021f321762d4fc6bbac5d5b0.jpg", - "response": " A collage(4,6),(996,994) of images from the film.", - "id": 25610 - }, - { - "image_path": "G:\\images\\combined\\000000006760_jpg.rf.4bf6834cefedbed9888662055da44d0e.jpg", - "response": "A woman holding a hot dog and looking at the camera.", - "id": 25611 - }, - { - "image_path": "G:\\images\\combined\\000000006760_jpg.rf.4eac50d570c684e8ddc55631dc4d25fa.jpg", - "response": "A black and white photo of a collage of four photos. The top left photo is a close up of a person holding a hot dog. The top right photo is a man surfing. The bottom left photo is a child riding a bike with a woman walking beside them. The bottom right photo is a close up of a window with a view of the ocean.", - "id": 25612 - }, - { - "image_path": "G:\\images\\combined\\000000006777_jpg.rf.1c50f9b42d80ac542076c8bd96500b91.jpg", - "response": "A collage of four images, two in black and white, two in color, of a forklift in a warehouse. The forklift is carrying a pallet of boxes. The warehouse has a door and shelves.", - "id": 25613 - }, - { - "image_path": "G:\\images\\combined\\000000006777_jpg.rf.79be6145a6b17352c877f9e44c2a3047.jpg", - "response": "A collage of 4 photos. Top left is a close up of the facade of a church, top right is a boat on the water, bottom left is a bench in a church, and bottom right is a close up of a wall.", - "id": 25614 - }, - { - "image_path": "G:\\images\\combined\\000000006777_jpg.rf.7f18cfd820a88a17337efb2003007d09.jpg", - "response": "A tennis player hitting a ball on a court.", - "id": 25615 - }, - { - "image_path": "G:\\images\\combined\\000000006780_jpg.rf.3f11afd9a40031822ca35c34460c22ac.jpg", - "response": "A collage of black and white images. The top image is of a man in a hat standing in front of a building. The middle image is of a man in a hard hat standing in front of a building. The bottom image is of a man standing in front of a building.", - "id": 25616 - }, - { - "image_path": "G:\\images\\combined\\000000006780_jpg.rf.49aeedcbb9a685532439d8fee69982de.jpg", - "response": "A collage of black and white images. The top left image shows a person lying on the ground with their legs in the air. The top right image is a close-up of someone's hand holding a frisbee. The bottom left image is of a person standing in a park with their arms in the air. The bottom right image is of a person walking through a park.", - "id": 25617 - }, - { - "image_path": "G:\\images\\combined\\000000006780_jpg.rf.8aed01a4446066950f326649cd9e582b.jpg", - "response": "A collage of different park scenes. There is a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group of people walking on a path in a park, a group of people walking on a sidewalk next to a park, a group", - "id": 25618 - }, - { - "image_path": "G:\\images\\combined\\000000006789_jpg.rf.9e8cb91969d4664f8527f124e607b0c2.jpg", - "response": "A train on a track, passing under a large tower.", - "id": 25619 - }, - { - "image_path": "G:\\images\\combined\\000000006790_jpg.rf.29c2b2b5a3a06962cd8402f92a5d85d8.jpg", - "response": "A collage of black and white images. The top image is of a man surfing on a wave. The middle left image is of a man in a white shirt riding a surfboard on his stomach. The middle right image is of a bird flying over a city. The bottom left image is of a man in a white shirt swinging a baseball bat. The bottom right image is of a man in a white shirt catching a baseball.", - "id": 25620 - }, - { - "image_path": "G:\\images\\combined\\000000006790_jpg.rf.d4db95fca8f7982a3c7a533e0adf2d1c.jpg", - "response": "A collage of images. The top image is a black and white photo of a woman sitting on the ground in front of a wall. She is wearing a white shirt and has her hands to her face. There are two black squares over her eyes. The middle image is a close up of a wooden pallet. The bottom image is a close up of a person sitting on a chair. There is a box in front of them and a hand resting on the box.", - "id": 25621 - }, - { - "image_path": "G:\\images\\combined\\000000006790_jpg.rf.d52c86b2514d8fd9f235d82dc49bfed6.jpg", - "response": "A forklift with boxes in the back.", - "id": 25622 - }, - { - "image_path": "G:\\images\\combined\\000000006810_jpg.rf.5b4ba3bef411c082b75becd75b35066c.jpg", - "response": "A black and white photo of a room with a window, a door, a table and a chair.", - "id": 25623 - }, - { - "image_path": "G:\\images\\combined\\000000006810_jpg.rf.6a709560936d5bd25cfaa57c32dd6af1.jpg", - "response": "A collage of three black and white images. The first is of a glass building with a clock on the second floor. The second is of an arched doorway with a decorative stone design. The third is of a concrete bench in front of a building.", - "id": 25624 - }, - { - "image_path": "G:\\images\\combined\\000000006810_jpg.rf.6a76a8b7b5fce3783429a80aa92c8265.jpg", - "response": "A black and white image of a building with a clock on the second floor. There is a pile of wooden pallets in front of the building. To the right of the building is a picture of a horse with a black square over its genital area.", - "id": 25625 - }, - { - "image_path": "G:\\images\\combined\\000000006811_jpg.rf.233bf8096add54a134dadcc3c92180b5.jpg", - "response": "A collage of images including a cow, a person riding a skateboard, a person on a scooter, and a box.", - "id": 25626 - }, - { - "image_path": "G:\\images\\combined\\000000006811_jpg.rf.62dff4829824cf78fae92955b0fde6ba.jpg", - "response": "A black and white image of a man moving boxes with a forklift.", - "id": 25627 - }, - { - "image_path": "G:\\images\\combined\\000000006811_jpg.rf.8aac70ea9a58fa23c00e3d2014636fb0.jpg", - "response": "A collage of four images. The first is a woman on skis in the snow. The second is a close up of a bed with a cat sleeping on it. The third is a close up of a wave in the ocean. The fourth is a man operating a forklift.", - "id": 25628 - }, - { - "image_path": "G:\\images\\combined\\000000006824_jpg.rf.4e58b2993ad67796f77d1e7e64eb41a3.jpg", - "response": "A collage of 5 different images. The first is a black and white image of a surfer riding a wave. The second is a black and white image of a man riding a surfboard in a wave pool. The third is a black and white image of a forklift carrying wooden pallets. The fourth is a black and white image of a man standing on a wooden pallet. The fifth is a black and white image of a stack of wooden pallets.", - "id": 25629 - }, - { - "image_path": "G:\\images\\combined\\000000006824_jpg.rf.71cc5bcb0a1e2503df8a32ed743792d8.jpg", - "response": "A collage of four different images. The first is a surfer riding a wave, the second is a baby with a piece of bread, the third is a close up of a computer screen, and the fourth is a wooden bench.", - "id": 25630 - }, - { - "image_path": "G:\\images\\combined\\000000006824_jpg.rf.a741b286bf07988661ea01a8b2ff4394.jpg", - "response": "A collage of four different images. In the top left image, a person is surfing on a wave. In the top right image, a person is skiing. In the bottom left image, a forklift is driving on a road. In the bottom right image, a person is holding a scanner.", - "id": 25631 - }, - { - "image_path": "G:\\images\\combined\\000000006846_jpg.rf.055e1951d680e13eb592ae6048cf0f5f.jpg", - "response": "A black and white photo of a man holding a football. A forklift and a box with the logo of the company Harney and Sons.", - "id": 25632 - }, - { - "image_path": "G:\\images\\combined\\000000006846_jpg.rf.2c99652d9281463c1713577417d19a02.jpg", - "response": "A black and white photo of a man sitting on a forklift. The man is wearing a hat and there is a dog sitting on the forklift with him. There are also two other people in the photo. There is a large crowd of people in the background. There is a fork lift truck in the photo and a pallet of boxes.", - "id": 25633 - }, - { - "image_path": "G:\\images\\combined\\000000006846_jpg.rf.6d89071892a784d145b0f83290fbdbf5.jpg", - "response": "A collage of images, including a man sitting on a table, a truck, a pile of surfboards, a pile of suitcases, a person sitting on a chair, a person holding a surfboard, a person standing in front of a building, a person sitting at a table, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front of a truck, a person sitting on a couch, a person standing in front of a building, a person sitting on a chair, a person standing in front", - "id": 25634 - }, - { - "image_path": "G:\\images\\combined\\000000006847_jpg.rf.65459bb45337492b88c94c1b63626c7d.jpg", - "response": "A man with a beard and a black tie.", - "id": 25635 - }, - { - "image_path": "G:\\images\\combined\\000000006870_jpg.rf.400eee3698a9ff09cdaf08e917a7382f.jpg", - "response": "A collage of 4 photos. 1) a train, 2) a person holding a ticket, 3) a cow's behind, 4) a person knitting", - "id": 25636 - }, - { - "image_path": "G:\\images\\combined\\000000006870_jpg.rf.44e6fe0a024ee1497bfcf0a426be0763.jpg", - "response": "A collage of black and white images including a locomotive, a cathedral, a suitcase, a bag and a pair of fishnet tights.", - "id": 25637 - }, - { - "image_path": "G:\\images\\combined\\000000006870_jpg.rf.d21f0e2075671355b548b98b6b2ba644.jpg", - "response": "A collage of black and white images. Clockwise from top left: a train, a box, a person wearing a hat, a person holding a hot dog, a clock.", - "id": 25638 - }, - { - "image_path": "G:\\images\\combined\\000000006873_jpg.rf.1b694610c1ecf8655f61890e481a1c75.jpg", - "response": "A collage of 5 black and white images. The first image is of a small elephant with a harness on it's back. The second image is of a person's hand feeding the elephant. The third image is of a table with two bowls of food. The fourth image is of a person's hand reaching for a bottle. The fifth image is of a person standing in front of a wall with a small black square.", - "id": 25639 - }, - { - "image_path": "G:\\images\\combined\\000000006873_jpg.rf.60f0f43ee648d1c4312a02b201668bfb.jpg", - "response": "A black and white image of a man riding an elephant on a city street. The elephant is in the center of the image, and the man is sitting on top of it. The elephant is walking next to a bus. The image also includes a person riding a motorcycle, a person sitting on a bench, and a building in the background.", - "id": 25640 - }, - { - "image_path": "G:\\images\\combined\\000000006873_jpg.rf.f4b6733331558b15ff863d8de35c022d.jpg", - "response": "A collage of black and white images. The top left image is of an elephant's foot on a metal rail. The top right image is of a person lying on the ground in the snow. The bottom left image is of a wooden door with a window. The bottom right image is of a person pulling a sled with boxes.", - "id": 25641 - }, - { - "image_path": "G:\\images\\combined\\000000006901_jpg.rf.54b0bc27b17a145335d5e9e21e8ac533.jpg", - "response": "A black and white photo collage of different images. There is a man sitting on a bench, a woman walking on the beach, a tie on a chair, a building, a car, a bird, and a group of people.", - "id": 25642 - }, - { - "image_path": "G:\\images\\combined\\000000006901_jpg.rf.81c4b88894e66a618c7f607060f3423a.jpg", - "response": "A collage of four different pictures. The top left picture is of a table with tools on it. The top right picture is of a stack of wooden pallets. The bottom left picture is of two people standing in front of a pile of snow. The bottom right picture is of a dog's backside.", - "id": 25643 - }, - { - "image_path": "G:\\images\\combined\\000000006901_jpg.rf.c32e5d392216bf9528bf330421dc7eb8.jpg", - "response": "A black and white photo of a collage of people with luggage. There are several people carrying backpacks and suitcases, and a man is seen running with a backpack. There are also several boxes and suitcases stacked on a platform.", - "id": 25644 - }, - { - "image_path": "G:\\images\\combined\\000000006906_jpg.rf.959f7dfd51166172d5af76fa18a69049.jpg", - "response": "A collage of photos including two men in a room, a man on a boat, a woman riding a horse, and a person sitting on stairs.", - "id": 25645 - }, - { - "image_path": "G:\\images\\combined\\000000006906_jpg.rf.d2e36423348a874f1055d55ef6b1e7e5.jpg", - "response": "A collage of images including a man in glasses, a pile of books, a book on a shelf and a black square on a white background.", - "id": 25646 - }, - { - "image_path": "G:\\images\\combined\\000000006906_jpg.rf.f53ebacd0f7ce36aa6e394ec52b3e981.jpg", - "response": "A collage of images including a man in a suit holding a cellphone, a forklift, a Thinkstock logo, a traffic cone, and a road.", - "id": 25647 - }, - { - "image_path": "G:\\images\\combined\\000000006920_jpg.rf.f0dfd7f332c52b7f8931e5089c183e97.jpg", - "response": " a snowboarder(319,280),(518,609) carving through the snow", - "id": 25648 - }, - { - "image_path": "G:\\images\\combined\\000000006921_jpg.rf.637d32d56d9a3941a9877c759c352668.jpg", - "response": "A collage of four photos. The top left photo is a close up of a person's shoulder with a black and white backpack. The top right photo is a street view of a neighborhood with houses and cars. The bottom left photo is a close up of a person's knee with a black square over it. The bottom right photo is a boy in a canoe with a white helmet on.", - "id": 25649 - }, - { - "image_path": "G:\\images\\combined\\000000006921_jpg.rf.abfe1f7ab6d021a685f0227ca6a41e33.jpg", - "response": "A collage of a baby drinking from a bottle, a woman with a nose ring, a wooden pallet, a dog, a bench, a person with a backpack, a house, a car, a person holding a skateboard, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard, a bench, a house, a car, a person with a handbag, a person with a backpack, a person with a skateboard", - "id": 25650 - }, - { - "image_path": "G:\\images\\combined\\000000006921_jpg.rf.ce394f46ce30af57033b0d71f73dfd9b.jpg", - "response": "A collage of images including a person on a bike, a person sleeping in a bed, a person holding a dog's leash and a person's arm.", - "id": 25651 - }, - { - "image_path": "G:\\images\\combined\\000000006935_jpg.rf.19b0c4c3015f04a14c0b0785314ef560.jpg", - "response": "A collage of images including a man with a white beard, a person in a wheelchair, a woman with a handbag, a man with a suitcase, a person with a cane, a person with a backpack, a person with a handbag, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase, a person with a handbag, a person with a backpack, a person with a suitcase", - "id": 25652 - }, - { - "image_path": "G:\\images\\combined\\000000006935_jpg.rf.41034534c26db6c7fc188b81636f49db.jpg", - "response": "A collage of images including people carrying suitcases, boxes, and backpacks, a person in a helmet, and a person sitting on a bench.", - "id": 25653 - }, - { - "image_path": "G:\\images\\combined\\000000006935_jpg.rf.5b09e33f50d8537e63614a744822c0ac.jpg", - "response": "A black and white image of a forklift with a person in the background holding a cup of coffee.", - "id": 25654 - }, - { - "image_path": "G:\\images\\combined\\000000006936_jpg.rf.7f0226c820b1711897e139944a490ced.jpg", - "response": "A collage of four different images. The first is a black and white image of a building with a flat roof and a curved wall. The second is a close up of a white wooden pallet. The third is a black and white image of a bed with white sheets and black dots. The fourth is a close up of a white block wall with black squares missing from it.", - "id": 25655 - }, - { - "image_path": "G:\\images\\combined\\000000006936_jpg.rf.899a4a5e1a3f50564788bd50ceebcf5e.jpg", - "response": "A collage of black and white images. The top left image is of a person standing in front of a truck. The top right image is of a person on a motorcycle. The bottom left image is of a person walking with a backpack. The bottom right image is of a person standing in front of a forklift.", - "id": 25656 - }, - { - "image_path": "G:\\images\\combined\\000000006936_jpg.rf.f290fa745d04ed5044a42b3add58600e.jpg", - "response": "A collage of black and white images of a dog.", - "id": 25657 - }, - { - "image_path": "G:\\images\\combined\\000000006941_jpg.rf.3e706b99f5b221ea84894c5d1a797d97.jpg", - "response": "A collage of images including a young boy with a hearing aid, a computer, a wheelchair, a forklift and a chair.", - "id": 25658 - }, - { - "image_path": "G:\\images\\combined\\000000006941_jpg.rf.aad89f5dcf18d7e4180f16ce2b35191d.jpg", - "response": "A collage of images, including a man sitting on a bed with a black box superimposed over his face, a man holding a bottle, a man sitting on a bed with his mouth open, a man holding a bottle in a warehouse, and a black and white photo of a man sitting on a bed with a black box superimposed over his face.", - "id": 25659 - }, - { - "image_path": "G:\\images\\combined\\000000006941_jpg.rf.c0e73e74064aaa0a7ec765b805fc9e7f.jpg", - "response": "A collage of black and white images. At the top left is a girl holding a popsicle, at the top right are two stacks of wooden pallets, in the middle left is a close up of a black and white photo of a book, in the middle right is a black and white photo of two people playing frisbee on a beach, at the bottom left are two photos of a window, and at the bottom right is a square of black.", - "id": 25660 - }, - { - "image_path": "G:\\images\\combined\\000000006943_jpg.rf.2fb6edec3fa391e4efe828c86c1cc3ed.jpg", - "response": "A black and white photo of a woman with a coat and a bag. The bag is black and has a handle. She is standing in front of a group of people. Some of the people are carrying handbags. One of the handbags is black and white. Another handbag is large and black. There is a bench in the background. There is a palm tree in the background. There is a person sitting on a bench.", - "id": 25661 - }, - { - "image_path": "G:\\images\\combined\\000000006943_jpg.rf.b9c3854f0cedb7d70e3e4c6ca06d091a.jpg", - "response": "A collage of images, including a woman with an umbrella, a snowy mountain, a pallet of boxes, and a black square.", - "id": 25662 - }, - { - "image_path": "G:\\images\\combined\\000000006943_jpg.rf.c4af31d8faaef6388ea68dc7c48950ce.jpg", - "response": "A collage of a person riding a horse, a building, and wooden pallets.", - "id": 25663 - }, - { - "image_path": "G:\\images\\combined\\000000006945_jpg.rf.ac4af9153b0f099b0b7f690cf0fcd3f9.jpg", - "response": "A woman holding a small dog in her arms.", - "id": 25664 - }, - { - "image_path": "G:\\images\\combined\\000000006973_jpg.rf.39c64ffc5484572d2fcc6a2ee9971784.jpg", - "response": "A collage of photos including a man holding a tennis racket, a woman laying in bed, and two men with ties.", - "id": 25665 - }, - { - "image_path": "G:\\images\\combined\\000000006973_jpg.rf.ace473075627f8eced3add4cfc18c8e2.jpg", - "response": "A collage of four photos. The top left photo shows a man in a white shirt with the word Brazil on it, running on a track. The top right photo shows a wooden pallet. The bottom left photo is a close up of a man's shorts with a square black box over the word Brazil on the shirt. The bottom right photo shows a woman holding a small pile of money in front of her face and a house in the background.", - "id": 25666 - }, - { - "image_path": "G:\\images\\combined\\000000006973_jpg.rf.c08bd664835d4efe043e3c579f316bdc.jpg", - "response": "A man in a white shirt and black shorts is standing on a forklift with his foot on the side of a roof.", - "id": 25667 - }, - { - "image_path": "G:\\images\\combined\\000000006981_jpg.rf.474968bde3cbf360cd46ac21b46c9988.jpg", - "response": "A collage of black and white images of people and objects. On the left is a woman holding a small child, in the middle is a woman sitting on the ground with a baby on her lap, and on the right is a woman holding a banana. In the bottom left is a man wearing a shirt that says \"parking\" on it, and in the bottom right is a hand holding a dollar bill.", - "id": 25668 - }, - { - "image_path": "G:\\images\\combined\\000000006981_jpg.rf.6bbeffb426e25f44eb806ee33567d625.jpg", - "response": "A collage of images including a man playing tennis, a person holding a camera, a person wearing a baseball uniform, and a box with the letter a on it.", - "id": 25669 - }, - { - "image_path": "G:\\images\\combined\\000000006981_jpg.rf.c86801e431d4e332e4bb22b265d06f99.jpg", - "response": "A collage of a child, a dog, a bike, a boy falling off a bike, and a girl holding a dog leash.", - "id": 25670 - }, - { - "image_path": "G:\\images\\combined\\000000006996_jpg.rf.924f7fccba2871cdda43f13b0a8ee17f.jpg", - "response": "A collage of black and white images. The top left image is of a dog walking on a road. The top right image is of a baby riding a bike. The bottom left image is of a person sitting on a stool. The bottom right image is of a woman with glasses holding a microphone.", - "id": 25671 - }, - { - "image_path": "G:\\images\\combined\\000000006996_jpg.rf.b1810d60311bd1d5ae6209bac37ca19a.jpg", - "response": "A black and white photo of two children on a bike. They are riding a bike on a sidewalk. To the right of the children is a box. To the left of the children is a dog.", - "id": 25672 - }, - { - "image_path": "G:\\images\\combined\\000000006996_jpg.rf.b70bf6ad149460bb35855205a2a8716f.jpg", - "response": "A collage of four black and white photos. In the top left photo, a dog is walking down a street. In the top right photo, a man is playing tennis. In the bottom left photo, a person is walking a bicycle down a sidewalk. In the bottom right photo, a person is standing on a wall with a stick in each hand.", - "id": 25673 - }, - { - "image_path": "G:\\images\\combined\\000000007023_jpg.rf.5007aebfedd929e77ae32639f75406be.jpg", - "response": "A collage of three black and white images. The first is a close up of a person sitting on a forklift. The second is a person standing in front of a forklift. The third is a close up of a forklift.", - "id": 25674 - }, - { - "image_path": "G:\\images\\combined\\000000007023_jpg.rf.8d009c88a62abfae57470c536d6ee67d.jpg", - "response": "A collage of two photos. The first is a black and white photo of a man in a striped shirt and black pants throwing a frisbee on a tennis court. The second is a close up of wooden pallets, with one pallet visible in the foreground and another pallet stacked behind it. There is a black square in the top right corner of the image.", - "id": 25675 - }, - { - "image_path": "G:\\images\\combined\\000000007023_jpg.rf.b6047e04274e8eda74ea3e1c6c79a9e5.jpg", - "response": "A collage of four photos. Top left is a tennis court with people playing tennis. Top right is a close up of a person's neck with a necklace. Bottom left is a large vehicle with the word Crown on the side. Bottom right is a person holding money.", - "id": 25676 - }, - { - "image_path": "G:\\images\\combined\\000000007035_jpg.rf.55ca43b1fd58c4e3254c21e5d23830d4.jpg", - "response": "A collage of 5 black and white images. 1) A person riding a donkey, 2) a bed with a pillow and two smaller pictures on the wall, 3) a potted plant, 4) an elephant, 5) the word \"a\" and \"ally\"", - "id": 25677 - }, - { - "image_path": "G:\\images\\combined\\000000007035_jpg.rf.7be17a98dbf8c0f571066c477f421eba.jpg", - "response": "A collage of black and white images. From top left, a man riding a horse on the beach, a close up of a tennis court with a player, a close up of a building with a black square over the window, a man swimming in the ocean, and a man playing tennis.", - "id": 25678 - }, - { - "image_path": "G:\\images\\combined\\000000007035_jpg.rf.e5a95d9ec4e5b655a57b37fcfb8995b9.jpg", - "response": "A collage of four black and white images. The first is a man on a horse, the second is a stack of white blocks, the third is a city street at night, and the fourth is a close-up of a concrete block.", - "id": 25679 - }, - { - "image_path": "G:\\images\\combined\\000000007049_jpg.rf.1e029958d29d9c22b23a470a8021dfe5.jpg", - "response": "A black and white image of a man standing next to a forklift.", - "id": 25680 - }, - { - "image_path": "G:\\images\\combined\\000000007049_jpg.rf.d490c6140497e4074903ba23dae1b6fd.jpg", - "response": "A collage of black and white images of people and objects. There is a man holding an umbrella, a truck, a person walking with a handbag, a man wearing a leather jacket, a woman with a ponytail, a man with a beard, a man wearing a suit, a person with a backpack, a man with a briefcase, a person with a handbag, a person with a backpack, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a person with a handbag, a", - "id": 25681 - }, - { - "image_path": "G:\\images\\combined\\000000007049_jpg.rf.dbc4899d9c6cdc57c90c04a9c95ae3b5.jpg", - "response": "A collage of a man holding an umbrella, a woman in a boat, a man in a kayak and a man on a ladder.", - "id": 25682 - }, - { - "image_path": "G:\\images\\combined\\000000007069_jpg.rf.0bbbcc908335e25aebf69793797faa5f.jpg", - "response": "A forklift with a pallet on it.", - "id": 25683 - }, - { - "image_path": "G:\\images\\combined\\000000007069_jpg.rf.15ef8effaa0a4b6859b32a71d7e89f0a.jpg", - "response": "A collage of images including a tennis court, a group of people playing tennis, a man holding a tennis racket, and a group of people watching a tennis match.", - "id": 25684 - }, - { - "image_path": "G:\\images\\combined\\000000007069_jpg.rf.c23212381cc9358366ec33d50f581070.jpg", - "response": "A forklift is loading a pallet into a truck.", - "id": 25685 - }, - { - "image_path": "G:\\images\\combined\\000000007072_jpg.rf.82cec4d609e2df75bfdff3b41241c38f.jpg", - "response": "A man is walking on the beach carrying a surfboard.", - "id": 25686 - }, - { - "image_path": "G:\\images\\combined\\000000007096_jpg.rf.015da704d57cad3e773090f4b8ccbd0b.jpg", - "response": "A collage of four photos. In the top left photo, a man is seen climbing into a truck with a cage on the back. In the top right photo, the truck is seen with the number 47200 on the door. In the bottom left photo, a man is seen walking on the side of a boat. In the bottom right photo, a man is seen sitting on the back of a truck with a cage on the back.", - "id": 25687 - }, - { - "image_path": "G:\\images\\combined\\000000007096_jpg.rf.019fd9de3ce560079ae76207cae28d3d.jpg", - "response": "A collage of 5 different black and white images. The first image is of a person in a dress standing in front of a door with the number 47200 above it. The second image is of a person's hand holding a teddy bear. The third image is of a person in a dress standing in front of a door. The fourth image is of a person's hand holding a teddy bear. The fifth image is of a person in a dress standing in front of a door.", - "id": 25688 - }, - { - "image_path": "G:\\images\\combined\\000000007096_jpg.rf.a9f91d4c3c0a0027d2e553255476ed19.jpg", - "response": "A black and white image of a truck with the number 47200 on the side. A website address is visible, ookbox.com. A man is shown eating chips, another is reading a book, and the third is eating a donut.", - "id": 25689 - }, - { - "image_path": "G:\\images\\combined\\000000007103_jpg.rf.0c414a75d13fa96d47d159fa3785c91e.jpg", - "response": "A collage of black and white images of people, including a woman holding up a packet of drugs, a child holding a packet of money, a group of people walking through a terminal, and a woman with a syringe in her arm.", - "id": 25690 - }, - { - "image_path": "G:\\images\\combined\\000000007103_jpg.rf.103a4dfd7a64f55370561cae0428eb82.jpg", - "response": "A collage of a woman feeding a baby, a woman pointing at a bus, and a bus.", - "id": 25691 - }, - { - "image_path": "G:\\images\\combined\\000000007103_jpg.rf.d39c3fb3abb4e3f01fcd6c64b3fe39c8.jpg", - "response": "A collage of three photos. The top left photo is a close up of a woman smiling with her mouth open. The top right photo is a close up of a wall with a few pieces of art on it. The bottom left photo is a close up of a work bench with a few bottles on it. The bottom right photo is a close up of a few pieces of art on a wall.", - "id": 25692 - }, - { - "image_path": "G:\\images\\combined\\000000007104_jpg.rf.5929534e618072b42457784aa3376a33.jpg", - "response": " A collage(622,83),(859,666) of students(318,38),(526,563)(3,174),(341,668) and staff(833,4),(997,669) holding their library books(2,349),(189,519) and suitcases(509,638),(669,997)(342,558),(501,790).", - "id": 25693 - }, - { - "image_path": "G:\\images\\combined\\000000007104_jpg.rf.7937acd56d7792d6ef1b1e1b2c6e0d9a.jpg", - "response": "A collage of black and white photos of a man playing a guitar and other people sitting in chairs.", - "id": 25694 - }, - { - "image_path": "G:\\images\\combined\\000000007104_jpg.rf.e9d85f16fa64ef8f04b2971e495c695e.jpg", - "response": "A collage of a woman looking over a stack of wooden pallets, a street scene with people crossing the road and a store front.", - "id": 25695 - }, - { - "image_path": "G:\\images\\combined\\000000007115_jpg.rf.558679a5a4f88c50dea8e4d874f9cdcc.jpg", - "response": "A collage of different black and white images. The main image is of a group of people walking down a street holding open umbrellas. The text WWF is visible on one of the umbrellas. There are also images of a chandelier, a hand with a ring on it, a play button, a square black box, a group of people crossing a street, and a store front.", - "id": 25696 - }, - { - "image_path": "G:\\images\\combined\\000000007115_jpg.rf.d4a0a4cc9a22471cfb252ef00fb4b1ab.jpg", - "response": "A collage of black and white photos of a woman skiing and holding an umbrella.", - "id": 25697 - }, - { - "image_path": "G:\\images\\combined\\000000007115_jpg.rf.def6119f99165fb0653e4eb3d34ae0fb.jpg", - "response": "A series of four photos showing a man in a forklift with a small child in the forklift with the man.", - "id": 25698 - }, - { - "image_path": "G:\\images\\combined\\000000007116_jpg.rf.0f35733122a7b5629f656077e1cb54da.jpg", - "response": "A collage of four photos of a woman driving a forklift.", - "id": 25699 - }, - { - "image_path": "G:\\images\\combined\\000000007116_jpg.rf.2263735f415c974a9f335ad9630ffc50.jpg", - "response": "A car with surfboards on the roof is parked on a beach.", - "id": 25700 - }, - { - "image_path": "G:\\images\\combined\\000000007116_jpg.rf.fc6acef18c8d2b4175b4640aba55485f.jpg", - "response": "A collage of black and white photos. Top left: a ferry in the water. Top right: a woman's purse. Middle left: a door with a window. Middle right: a woman walking with a handbag. Bottom left: a handbag on a chair. Bottom right: a dog running.", - "id": 25701 - }, - { - "image_path": "G:\\images\\combined\\000000007123_jpg.rf.05743581fb7db205adf52e84b59baab1.jpg", - "response": "A collage of four photos. The first is a black and white photo of a man sitting on a boat in the water with a fishing rod. The second is a black and white photo of a man standing on a beach with his hands in the air. The third is a black square over a white square with a man in a white shirt standing in front of a boat. The fourth is a black square over a white square with a man in a white shirt standing on a boat with his hands in the air.", - "id": 25702 - }, - { - "image_path": "G:\\images\\combined\\000000007123_jpg.rf.3370cf3c6a31e3d6f49f0e30d9052892.jpg", - "response": "A collage of a man kiteboarding, jumping over the waves, and a truck and boat on the beach.", - "id": 25703 - }, - { - "image_path": "G:\\images\\combined\\000000007123_jpg.rf.4e73c5468c6215b2748274ef04cff699.jpg", - "response": "A collage of four different images. The first is a black and white image of a man kiteboarding on the water. The second is a black and white image of a man driving a forklift. The third is a close up of a white box with the word host on it. The fourth is a close up of a bus with a sign that says frs.", - "id": 25704 - }, - { - "image_path": "G:\\images\\combined\\000000007125_jpg.rf.3f61caefe16ded4ee30b6f0b37268223.jpg", - "response": "A collage of black and white images of children walking on a bike path, a man sitting in the cab of a tractor, and a fence.", - "id": 25705 - }, - { - "image_path": "G:\\images\\combined\\000000007125_jpg.rf.ab52830709555977602f6b534c37b3e2.jpg", - "response": "A collage of black and white photos. The top left photo is of a snowy street with people walking down the street. The top right photo is of a chandelier hanging from a ceiling. The bottom left photo is of two people standing side by side holding ski poles. The bottom right photo is of a hand holding a book.", - "id": 25706 - }, - { - "image_path": "G:\\images\\combined\\000000007125_jpg.rf.c98a1bb33f484ab55df18e607d2e0e3b.jpg", - "response": "A collage of black and white photos. The top left photo is of a group of people walking down a road. The top right photo is of a sign that says \"OKD LAMPU H4\" with a picture of a lightbulb. The bottom left photo is of a fence with a person walking in front of it. The bottom right photo is of a dog looking out of a window.", - "id": 25707 - }, - { - "image_path": "G:\\images\\combined\\000000007129_jpg.rf.3b0c871fc278a42ce30dd0006d2df983.jpg", - "response": "A collage of a man and a child on skis, a man with a beard, a man and a child playing baseball, and a cement block with a hole in it.", - "id": 25708 - }, - { - "image_path": "G:\\images\\combined\\000000007129_jpg.rf.62ad0ccd9e61a2cbeda199f5cfd8ba6c.jpg", - "response": "A collage of images, including a person in a hard hat standing in front of a forklift, a person pulling a suitcase, a person in a hard hat standing in front of a pallet of boxes, and a group of people carrying luggage.", - "id": 25709 - }, - { - "image_path": "G:\\images\\combined\\000000007129_jpg.rf.e6ec2563a50deb6f6246cb1ab5e7d0d2.jpg", - "response": "A collage of images, including a person taking a photo of another person, a person's shoes, a person walking down a street, and a box.", - "id": 25710 - }, - { - "image_path": "G:\\images\\combined\\000000007149_jpg.rf.086366e6e0843fc9b52102f3de34875a.jpg", - "response": "A black and white image divided into 4 quadrants. In the top left is a forklift with a pallet of boxes. In the top right is a woman sitting in a forklift. In the bottom left is a bookshelf with several books and other items. In the bottom right is a man sitting in a forklift.", - "id": 25711 - }, - { - "image_path": "G:\\images\\combined\\000000007149_jpg.rf.a13999f24293ab7d1013e2aee50aec42.jpg", - "response": "A black and white photo of a person shearing a sheep. There is a person on the left side of the photo with their right arm reaching down to a sheep. The sheep is standing on a stool and is being held down by a harness on its head. The person is holding a pair of scissors in their right hand. The scissors are cutting the wool off the sheep. There is a chair in the background on the right side of the photo. To the right of the photo is a desk with a computer on it. There are two books on the desk. The first book is a hardcover book with a black cover. The second book is a paperback book with a white cover.", - "id": 25712 - }, - { - "image_path": "G:\\images\\combined\\000000007149_jpg.rf.d779f9e828a4654ddbdac5874318d124.jpg", - "response": "A collage of images including a sheep being herded into a truck, a stack of white boxes, a forklift, and a pallet with the words \"vampyrus ripae\" on it.", - "id": 25713 - }, - { - "image_path": "G:\\images\\combined\\000000007150_jpg.rf.6de3b942c8673b2c8edc5bf74e6ca48b.jpg", - "response": "A black and white photo of a man's back, a woman's pregnant belly, a man in a warehouse, and a man in a warehouse.", - "id": 25714 - }, - { - "image_path": "G:\\images\\combined\\000000007150_jpg.rf.992255b04bfde09b9f0c0627287059a6.jpg", - "response": "A collage of 5 different images. On the top left is a cow, on the top right is a stack of wooden pallets, below that is a forklift, on the bottom left is a cow with a tag in its ear and on the bottom right is a man driving a forklift.", - "id": 25715 - }, - { - "image_path": "G:\\images\\combined\\000000007150_jpg.rf.de92143728e1cdb5ecced20d3fe91aeb.jpg", - "response": "A collage of a tennis court, two men playing tennis, a portrait of a man, and a poster of a man.", - "id": 25716 - }, - { - "image_path": "G:\\images\\combined\\000000007159_jpg.rf.0fdeb98ca14108e2ef5ab14bdf464baa.jpg", - "response": "A collage of four photos. The first is a black and white photo of a person skiing. The second is a black and white photo of a person surfing. The third is a black and white photo of a person riding a snowboard. The fourth is a black and white photo of a person riding a surfboard. The photos are arranged in a square.", - "id": 25717 - }, - { - "image_path": "G:\\images\\combined\\000000007159_jpg.rf.5fef4715bfa25bbc3de083493597256a.jpg", - "response": "A collage of black and white images. The top image is of a snowy hillside with several people sitting on it. The second image is of a woman and a child riding a bike. The third image is of a man and a woman walking on a street. The fourth image is of a pallet of boxes. The fifth image is of a fence. The sixth image is of a man and a woman sitting on a wall. The seventh image is of a woman and a child riding a bike. The eighth image is of a man and a woman walking on a street. The ninth image is of a fence. The tenth image is of a man and a woman sitting on a wall. The eleventh image is of a fence. The twelfth image is of a man and a woman walking on a street. The thirteenth image is of a fence. The fourteenth image is of a man and a woman sitting on a wall. The fifteenth image is of a fence. The sixteenth image is of a man and a woman walking on a street. The seventeenth image is of a fence. The eighteenth image is of a man and a woman sitting on a wall. The nineteenth image is of a fence. The twentieth image is of a man and a woman walking on a street. The twenty-first image is of a fence. The twenty-second image is of a man and a woman sitting on a wall. The twenty-third image is of a fence. The twenty-fourth image is of a man and a woman walking on a street. The twenty-fifth image is of a fence. The twenty-sixth image is of a man and a woman sitting on a wall. The twenty-seventh image is of a fence. The twenty-eighth image is of a man and a woman walking on a street. The twenty-ninth image is of a fence. The thirtieth image is of a man and a woman sitting on a wall. The thirtieth image is of a fence.", - "id": 25718 - }, - { - "image_path": "G:\\images\\combined\\000000007159_jpg.rf.bdb965c75c88c75689d43f866fdaa6ba.jpg", - "response": "A collage of black and white images. The top left image shows a man and a woman walking up a snowy hill. The top right image shows a forklift in a warehouse. The bottom left image shows a man and a woman walking on a beach. The bottom right image shows a man sitting on a chair.", - "id": 25719 - }, - { - "image_path": "G:\\images\\combined\\000000007178_jpg.rf.04bc22fe11f19bbd0a973488bd9a80ac.jpg", - "response": "A collage of images including a truck, people, a table, a cup, a umbrella, and a black and white photo of a cube.", - "id": 25720 - }, - { - "image_path": "G:\\images\\combined\\000000007178_jpg.rf.6e19a2e2cc136e7533bb4fe9b2c719dd.jpg", - "response": "A collage of images, including a man using a pallet jack, pallets, and a brick walkway.", - "id": 25721 - }, - { - "image_path": "G:\\images\\combined\\000000007178_jpg.rf.78f6f98b25816357a0a1cfb9962971ef.jpg", - "response": "A collage of three different images. The first is a black and white photo of a truck driving down a road. The second is a stack of wooden pallets. The third is a close up of a persons hair.", - "id": 25722 - }, - { - "image_path": "G:\\images\\combined\\000000007201_jpg.rf.1d0674f00d09ba0344642b71638f3415.jpg", - "response": "A collage of images including a woman, a table with equipment, a necklace, a car and the ocean.", - "id": 25723 - }, - { - "image_path": "G:\\images\\combined\\000000007201_jpg.rf.9263428745c7cc8c1d8ce476bc81ad0e.jpg", - "response": "A collage of four black and white images. The first is a car with a surfboard on top. The second is a man sitting on a wall. The third is a close up of a wave. The fourth is a man in a white shirt and tie.", - "id": 25724 - }, - { - "image_path": "G:\\images\\combined\\000000007201_jpg.rf.9e6cc816efdebebdc19b4998f7ed38ce.jpg", - "response": "A collage of 4 images. Top left is a car on a beach, top right is a warehouse with forklifts, bottom left is a surfer riding a wave, and bottom right is a stack of pallets.", - "id": 25725 - }, - { - "image_path": "G:\\images\\combined\\000000007207_jpg.rf.058240c52e836d1aaba2bfb3f3f38ccc.jpg", - "response": "A black and white image of four people. They are all looking at something in the distance. The two men on the left are wearing hoodies and looking to the left. The two men on the right, who are standing, are looking to the right. The woman on the right is holding a bowl. The image is also split into two squares. One square is of a man wakeboarding and the other is of a black square with a white cross in the middle.", - "id": 25726 - }, - { - "image_path": "G:\\images\\combined\\000000007207_jpg.rf.2f7262cd2221aaf19ba6827b384ee66e.jpg", - "response": "A collage of four different images. The first is a group of people standing around with one of them holding a cell phone. The second is a close up of a man's face who is looking up. The third is a close up of a fork lift. The fourth is a close up of a wooden pallet.", - "id": 25727 - }, - { - "image_path": "G:\\images\\combined\\000000007207_jpg.rf.bc00dbdbfd9b0e52016f02cdf4c73fb9.jpg", - "response": "A collage of black and white images. On the top left is a group of four men, one of whom is eating a lollipop, on the top right is a boy in a life jacket on a boat, in the middle left is a man looking at a book, in the middle right is a woman with a child on her shoulders, and on the bottom right is a crowd of people watching a sports event.", - "id": 25728 - }, - { - "image_path": "G:\\images\\combined\\000000007220_jpg.rf.96e2b09804b926ebf77a3fde05adb3a7.jpg", - "response": "A dinner table with plates of food, a bottle of beer, and a bottle of soda.", - "id": 25729 - }, - { - "image_path": "G:\\images\\combined\\000000007221_jpg.rf.8f78c6ed3fc293d91bff756ae232d6f4.jpg", - "response": "A black and white photo of a baby sitting in a high chair.", - "id": 25730 - }, - { - "image_path": "G:\\images\\combined\\000000007221_jpg.rf.bc95662804f0ba8c9e7d145cb2b6e1b0.jpg", - "response": "A black and white image of a baby sitting in a car next to a Nvidia logo.", - "id": 25731 - }, - { - "image_path": "G:\\images\\combined\\000000007221_jpg.rf.cf36545e575a625215bd0c7eedff9c47.jpg", - "response": "A collage of 4 different images. The first is a black and white image of a baby laying on a bed. The second is a close up of a file cabinet. The third is a close up of a mattress on a pallet. The fourth is a black square over a bed in a hospital room.", - "id": 25732 - }, - { - "image_path": "G:\\images\\combined\\000000007232_jpg.rf.018f5ebfaba9628b05c23949e8491c71.jpg", - "response": "A black and white photo of a train on the tracks.", - "id": 25733 - }, - { - "image_path": "G:\\images\\combined\\000000007253_jpg.rf.7a48656d8063112ecb06573ac91b4d03.jpg", - "response": "A black and white photo of a warehouse with a forklift on the left and a security camera on the right. There are 4 people in the warehouse, 2 are standing on the right side of the image and 2 are on the left side. The people on the right side are closer to the camera and have their faces blurred out.", - "id": 25734 - }, - { - "image_path": "G:\\images\\combined\\000000007253_jpg.rf.b795466bc6ff015b9b21b4e5cbd554c4.jpg", - "response": "A collage of black and white images. The top left image is of the front of a motorcycle. The top right image is a close up of a corner of a wall. The bottom left image is of the back of a motorcycle. The bottom right image is of a man standing in front of a building.", - "id": 25735 - }, - { - "image_path": "G:\\images\\combined\\000000007253_jpg.rf.ebf19420a66db44aa150ad2eb33dab2f.jpg", - "response": "A collage of black and white images. There is a person on a motorcycle with a helmet on, a group of people on scooters, a car driving down the street, and a person walking down the street. There is also a white box on the left side of the image.", - "id": 25736 - }, - { - "image_path": "G:\\images\\combined\\000000007256_jpg.rf.4196611a99ba57fa872019ef46a84af1.jpg", - "response": "A collage of photos of a woman and a man, the woman is standing on the left side of the image and the man is standing on the right side of the image. They are both looking at the camera. There is a bus in the background. There are two other people in the image, one is standing in front of the fence and the other is standing behind the fence. There is a person sitting on a bench in the background. There is a handbag on the ground in the foreground. There is a person holding a baseball bat in the middle of the image. There is a person holding a cell phone in the bottom right corner of the image.", - "id": 25737 - }, - { - "image_path": "G:\\images\\combined\\000000007256_jpg.rf.b9a75d7bc4268eb3d5bb9ae8d2b68f02.jpg", - "response": "A black and white collage of 4 different photos. In the top left photo, 3 people are standing on a platform with their backs to the viewer. In the top right photo, a man is using a cell phone. In the bottom left photo, a man is sitting in a car with a forklift in the background. In the bottom right photo, a stack of boxes is being loaded onto a pallet.", - "id": 25738 - }, - { - "image_path": "G:\\images\\combined\\000000007256_jpg.rf.c89b654310c4e0fd87797961f9d37470.jpg", - "response": "A collage of black and white images. From top left, a man and woman standing on a train platform, a skateboarder in mid-air performing a trick, a close-up of wooden pallets, a person standing on a road holding a surfboard, and a person standing on a ladder in front of a building.", - "id": 25739 - }, - { - "image_path": "G:\\images\\combined\\000000007260_jpg.rf.19cad8072291b79118bb95e5f8014ee1.jpg", - "response": "A collage of three photos. The first is a black and white photo of an old car with a tree and a high school in the background. The second is a close up of the same car with a white truck in the background. The third is a black and white photo of the same car with a tree and the high school in the background.", - "id": 25740 - }, - { - "image_path": "G:\\images\\combined\\000000007260_jpg.rf.6b20504d85ee07b6fd4acf2bbf3b5c8e.jpg", - "response": "A collage of four pictures. The first picture is a black and white picture of a tennis player on a tennis court. The second picture is a close-up of three milk cartons. The third picture is a black and white picture of a group of people standing in line at a festival. The fourth picture is a close-up of the same milk cartons.", - "id": 25741 - }, - { - "image_path": "G:\\images\\combined\\000000007260_jpg.rf.9738a30d29b0f4e84a6846ceb526bc33.jpg", - "response": "A collage of images including a tennis match, a man sitting on the ground, a bus, a fork lift, and a person holding a tennis racket.", - "id": 25742 - }, - { - "image_path": "G:\\images\\combined\\000000007275_jpg.rf.62b11263272799d9837782a99f662517.jpg", - "response": "A collage of images, including a person riding a snowboard, a person taking a photo, a train, and a group of people.", - "id": 25743 - }, - { - "image_path": "G:\\images\\combined\\000000007275_jpg.rf.9dcb4c336e10712d9c7b43a87a191124.jpg", - "response": "A black and white photo of people sitting on a grass field. There are two people playing frisbee and three people sitting on the grass. There are also two boxes on the right side of the image.", - "id": 25744 - }, - { - "image_path": "G:\\images\\combined\\000000007275_jpg.rf.b6effbc4d56a02615eca5c04de87eef1.jpg", - "response": "A collage of a man on a snowboard in the air, a white building, and a picture of a man in a harness on a building.", - "id": 25745 - }, - { - "image_path": "G:\\images\\combined\\000000007277_jpg.rf.20a3e306d5476e352bd79a43e60fae3a.jpg", - "response": "A man standing behind a large wooden crate that is on a pallet. The man is wearing a striped shirt. There is a forklift in the background.", - "id": 25746 - }, - { - "image_path": "G:\\images\\combined\\000000007277_jpg.rf.87ba8689d57e01f2a3726dfdbb503665.jpg", - "response": "A collage of black and white images. The top left image is of a man in a white striped shirt standing in front of a table with a computer on it. The top right image is of a glass wall looking into a store with two women shopping. The bottom left image is of a car engine with a laptop on top of it. The bottom right image is of a white box with a black square in the middle of it.", - "id": 25747 - }, - { - "image_path": "G:\\images\\combined\\000000007277_jpg.rf.8ced01e6445c838812486d318fadd867.jpg", - "response": "A black and white photo of a man in a striped shirt standing on a street corner. There are buses and cars on the street and people walking on the sidewalks. The man is holding a cell phone in his right hand. There are two black squares over the man's shirt and another black square over the top right corner of the photo.", - "id": 25748 - }, - { - "image_path": "G:\\images\\combined\\000000007297_jpg.rf.139a92a5b9b3731125a584191cdf6e5f.jpg", - "response": "A black and white image of a table with a cup of coffee, a donut and a book. In the background, there is a view of Big Ben in London.", - "id": 25749 - }, - { - "image_path": "G:\\images\\combined\\000000007297_jpg.rf.3f4ee8085ed24ab3dcbb978dac4d8ee8.jpg", - "response": "A black and white photo of a street scene with a clock tower in the background. There are three cars in the foreground, one on the left, one in the middle, and one on the right. The middle car has a black square covering a headlight.", - "id": 25750 - }, - { - "image_path": "G:\\images\\combined\\000000007297_jpg.rf.6390f5eb1b0e9b098e1c6b939c00fd9e.jpg", - "response": "A collage of black and white images of people and objects. There are images of people moving large boxes, people walking around with forklifts, and people standing around with large boxes. There are also images of people walking around with hand trucks.", - "id": 25751 - }, - { - "image_path": "G:\\images\\combined\\000000007298_jpg.rf.2949cf9e6fca86e1ff90eb4320d93a7f.jpg", - "response": "A baseball player holding a ball standing next to a base.", - "id": 25752 - }, - { - "image_path": "G:\\images\\combined\\000000007307_jpg.rf.6d6ee40d0063c2832146df0f5deb4475.jpg", - "response": "A collage of black and white images of street art and signage.", - "id": 25753 - }, - { - "image_path": "G:\\images\\combined\\000000007307_jpg.rf.824a647c2307ad4a18900c42d3a34978.jpg", - "response": " A collage(4,6),(995,995) of images from the BOO event.", - "id": 25754 - }, - { - "image_path": "G:\\images\\combined\\000000007307_jpg.rf.eabd352db5817b48c1a7a613c627a67f.jpg", - "response": "A collage of images including a black and white photo of a model railway diorama with buses, a person lying on the ground, a person holding a tennis racket, a black and white photo of a person holding a tennis racket and a black and white photo of a person lying on the ground", - "id": 25755 - }, - { - "image_path": "G:\\images\\combined\\000000007318_jpg.rf.145ace7da16e33c1914392ed61ab5ad4.jpg", - "response": "A collage of images, including a woman wearing a mask, a truck, and a fire truck.", - "id": 25756 - }, - { - "image_path": "G:\\images\\combined\\000000007318_jpg.rf.38f9062b5838f47da77b3e993978f866.jpg", - "response": "A collage of images, including a woman in sunglasses, a person holding a cell phone, a stack of boxes, a man in a suit, a person sitting in a chair, a person walking, a person standing in front of a fence, and a person standing in front of a table with umbrellas.", - "id": 25757 - }, - { - "image_path": "G:\\images\\combined\\000000007318_jpg.rf.b365d0b55e1708186e862ba4755eed33.jpg", - "response": "A black and white photo of a flower shop.", - "id": 25758 - }, - { - "image_path": "G:\\images\\combined\\000000007325_jpg.rf.f9dc8f345aea4e2e2160477019719336.jpg", - "response": "A man taking a picture of a bus parked on the side of the street.", - "id": 25759 - }, - { - "image_path": "G:\\images\\combined\\000000007355_jpg.rf.1abc90962fbfbfdb9fb58b088ffa5d61.jpg", - "response": "A collage(4,5),(995,994) of images including a bus, a parking lot, and a street.", - "id": 25760 - }, - { - "image_path": "G:\\images\\combined\\000000007355_jpg.rf.30c51cb7fa062cfc616821b0b3c0b61b.jpg", - "response": "A collage of three photos. The first is a woman sitting at a table with two cups of coffee in front of her. The second is a close-up of the back of a car. The third is a woman sitting on a bench with a book over her face.", - "id": 25761 - }, - { - "image_path": "G:\\images\\combined\\000000007355_jpg.rf.57071b7b846f1694a92883d36294a8b8.jpg", - "response": "A collage of three different images. The first is a black and white image of a city bus driving down a street. The second is a black and white image of a man working on a car. The third is a black and white image of a boat with sails full of wind.", - "id": 25762 - }, - { - "image_path": "G:\\images\\combined\\000000007357_jpg.rf.4ffc82e256fe730ef61977bc30738649.jpg", - "response": "A collage of four photos showing a man in a VIP shirt standing next to a pallet jack, a pallet jack on the ground, a pallet jack on the ground with a VIP shirt on a hanger, and a VIP shirt on a hanger with a black square over it.", - "id": 25763 - }, - { - "image_path": "G:\\images\\combined\\000000007357_jpg.rf.afa6f8e34e7e240b4cb83243a29eecd7.jpg", - "response": "A collage of four different images. The first is a black and white image of a large boulder with a pile of snow next to it. The second is a black and white image of a forklift driving on a road. The third is a black and white image of a car driving through a parking garage. The fourth is a black and white image of a forklift driving through a warehouse.", - "id": 25764 - }, - { - "image_path": "G:\\images\\combined\\000000007357_jpg.rf.c784ca6771afe2f676863f9da770dfd1.jpg", - "response": "A collage of 5 photos of pallet jacks in a warehouse.", - "id": 25765 - }, - { - "image_path": "G:\\images\\combined\\000000007394_jpg.rf.43caa1eae8638e9f930812808269013c.jpg", - "response": "A collage of black and white images showing a man on a forklift truck in a warehouse. The images show the man driving the forklift truck around the warehouse and interacting with boxes.", - "id": 25766 - }, - { - "image_path": "G:\\images\\combined\\000000007394_jpg.rf.bf95912a17e5c74dfb8b03c9d5da8405.jpg", - "response": "A black and white photo of a warehouse. There are pallets and boxes stacked up in the warehouse. There is a person standing in the warehouse holding a cell phone.", - "id": 25767 - }, - { - "image_path": "G:\\images\\combined\\000000007394_jpg.rf.fa860b98424fb9d3c2ae342815d92014.jpg", - "response": "A collage of four black and white images. In the top left image, a man is walking on a pile of metal rebar. In the top right image, a van is parked in front of a building. In the bottom left image, a man is walking across a bridge that is under construction. In the bottom right image, a pile of cardboard boxes is taped to a wall.", - "id": 25768 - }, - { - "image_path": "G:\\images\\combined\\000000007938_jpg.rf.4d11a6d11ea63c43b0252ecc026c4800.jpg", - "response": "A black and white photo of a city street with a man walking down the sidewalk. The man is wearing a suit and tie and talking on his cell phone. There are several cars parked along the street and a few people sitting on benches. There is also a traffic light on the corner of the street.", - "id": 25769 - }, - { - "image_path": "G:\\images\\combined\\000000011619_jpg.rf.36fee2d0b70ab04cd5ddcb9309533f86.jpg", - "response": "A bus stop with a bench and a large sign above it.", - "id": 25770 - }, - { - "image_path": "G:\\images\\combined\\000000011619_jpg.rf.3beac4d1681b9bec45d4863193fc4332.jpg", - "response": "A collage of a man sleeping on a bus, a bus, a bench, and a restaurant.", - "id": 25771 - }, - { - "image_path": "G:\\images\\combined\\000000011619_jpg.rf.84e929f37ff63a1622325187a0de6463.jpg", - "response": "A collage of black and white images. The top left image is a man with dark hair, his head resting on his arm. The top right image is a man standing in a yard. The bottom left image is a close up of a man's hand on a keyboard. The bottom right image is a stack of wooden pallets.", - "id": 25772 - }, - { - "image_path": "G:\\images\\combined\\000000018370_jpg.rf.0bab746bea7e5e22ac90b801b95da793.jpg", - "response": "A black and white photo of a forklift in a store. There are pictures of a store front, a map, a bunch of books, a handbag, a clock, a picture of a man and a woman, and a bunch of photos in an envelope.", - "id": 25773 - }, - { - "image_path": "G:\\images\\combined\\000000018370_jpg.rf.15004bc52f673280d5f6874971297c72.jpg", - "response": "A collage of black and white images. The top left image is of a man on a forklift, the top right image is of a group of people standing on a dock, the bottom left image is of a man on a forklift, and the bottom right image is of a building with a forklift in front of it.", - "id": 25774 - }, - { - "image_path": "G:\\images\\combined\\000000018370_jpg.rf.82ee4caa932e353c253f5c818fac376b.jpg", - "response": "A collage of images including a goldwing motorcycle, a group of people walking down a street, a person sitting on a bench, and a menu on a wall.", - "id": 25775 - }, - { - "image_path": "G:\\images\\combined\\000000019399_jpg.rf.8471a9c6999decb8dfb908a8ea0400c2.jpg", - "response": "A man on a snowboard doing a trick in the air.", - "id": 25776 - }, - { - "image_path": "G:\\images\\combined\\000000025453_jpg.rf.3150afe2142884972221e01f2ede5b09.jpg", - "response": "A collage of a truck, a pallet, and a shipping box.", - "id": 25777 - }, - { - "image_path": "G:\\images\\combined\\000000025453_jpg.rf.5490b6ffc45bba06ad70e06d57dd0c97.jpg", - "response": "A collage of 5 pictures, the first picture is a black and white picture of a crowd of people standing around a white classic car. The second picture is a close up of the front of the car. The third picture is a close up of the grill of the car. The fourth picture is a close up of the back of the car. The fifth picture is a close up of a bench.", - "id": 25778 - }, - { - "image_path": "G:\\images\\combined\\000000025453_jpg.rf.8bcb56359be82024fbe9d72a3a84d785.jpg", - "response": "A black and white photo of a town square. There is a car on the left side of the photo, a clock in the middle, and a pile of sandbags on the right side. There are also pictures of boxes and a truck on the right side of the photo.", - "id": 25779 - }, - { - "image_path": "G:\\images\\combined\\000000027987_jpg.rf.76b1c57631afb2393203f0d6393882a5.jpg", - "response": "A collage of images including a group of people around a horse, a black and white photo of a building, and a black and white photo of a wooden box.", - "id": 25780 - }, - { - "image_path": "G:\\images\\combined\\000000027987_jpg.rf.9e2db65e874c34882896374deb9fff7f.jpg", - "response": "A collage of photos including a man and a woman with a horse, a black and white photo of a crowd of people at a horse race, and a photo of a crowd of people watching a golf match.", - "id": 25781 - }, - { - "image_path": "G:\\images\\combined\\000000027987_jpg.rf.d738f5f3c0db784dfe806cd9a6bc5b63.jpg", - "response": "A collage of images showing a young girl with a pony, a young girl standing on a box, a girl in a barn, and a barn with a horse inside.", - "id": 25782 - }, - { - "image_path": "G:\\images\\combined\\000000028560_jpg.rf.1fa96216be43a3e0c9adc86c2a2b1015.jpg", - "response": "A collage of images of pallet jacks in a warehouse.", - "id": 25783 - }, - { - "image_path": "G:\\images\\combined\\000000028560_jpg.rf.204ed65a876e5bd442abf37b8cc1214e.jpg", - "response": "A collage of three photos. The first is a black and white photo of a man in a white shirt standing in front of a black pickup truck. The second is a black and white photo of a girl in a soccer uniform kicking a soccer ball. The third is a black and white photo of a man in a white shirt holding a soccer ball.", - "id": 25784 - }, - { - "image_path": "G:\\images\\combined\\000000028560_jpg.rf.8f9382c7d8b7bd59d191b8d47893c7bf.jpg", - "response": "A collage of three photos. The first is a black and white photo of a man sitting on a bench in front of a car. The second is a black and white photo of a person sitting on a bench in front of a car. The third is a black and white photo of a group of people walking down a street.", - "id": 25785 - }, - { - "image_path": "G:\\images\\combined\\000000028858_jpg.rf.bc5b529275a38dc4bacbf80416795e30.jpg", - "response": "A collage of four photos. The top left photo is of a wooden Adirondack chair. The top right photo is of a wooden picnic table. The bottom left photo is of a wooden pallet. The bottom right photo is of an old truck.", - "id": 25786 - }, - { - "image_path": "G:\\images\\combined\\000000028858_jpg.rf.db2a9747e46fd2efc94c0dadefb9a6fc.jpg", - "response": "A collage of four black and white images. The first is of a bench with a person sitting on it. The second is of a man walking down a sidewalk. The third is of a bench with a bicycle leaning against it. The fourth is of a pile of wood.", - "id": 25787 - }, - { - "image_path": "G:\\images\\combined\\000000028858_jpg.rf.e414789a1c09c2029b8e650c58dd71a9.jpg", - "response": "A black and white image of a group of people standing in a field. There are 4 people in the foreground and more people in the background. There are also 3 kites flying in the sky.", - "id": 25788 - }, - { - "image_path": "G:\\images\\combined\\000000029639_jpg.rf.09d5b806cbf4f3a3720c1fa08ee46bea.jpg", - "response": "A collage of black and white images. The top image is of a person standing on a ladder and painting a large advertisement on the side of a building. The middle image is of a stack of wooden pallets. The bottom image is of a parking lot with two old cars and a truck.", - "id": 25789 - }, - { - "image_path": "G:\\images\\combined\\000000029639_jpg.rf.ad48de0c308ba76cafee3a57be29f341.jpg", - "response": " A political poster(95,10),(497,503) for Obama, a cup of coffee(556,228),(711,497), a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife, a fork and knife,", - "id": 25790 - }, - { - "image_path": "G:\\images\\combined\\000000029639_jpg.rf.fdb803a91d4f112ab213a184e008a7d5.jpg", - "response": "A black and white photo of a city street. There is a Mercedes truck parked on the street. There are several people in the photo, some are standing and some are walking. There are also many objects in the photo, including a handbag, a bowl, a cup, a spoon, a fork, a knife, a bowl of fruit, a basket, a suitcase, a bowl, a bottle, a cup, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon, a fork, a knife, a bowl, a spoon,", - "id": 25791 - }, - { - "image_path": "G:\\images\\combined\\000000040497_jpg.rf.9afb79f9a529374c0ee93f2599f84d2b.jpg", - "response": "A black and white photo of a group of people sitting on the back of a truck. The truck is white and has a canopy. There is a pile of white sand behind the truck. In the foreground, there is a black and white photo of a payphone. There are black squares covering some of the images.", - "id": 25792 - }, - { - "image_path": "G:\\images\\combined\\000000040497_jpg.rf.eec98acc0735d668f74c589aacc597aa.jpg", - "response": "A collage of black and white images. The top left image is of a close up of a bridge with a person walking under it. The top right image is of a close up of a car. The bottom left image is of a person sitting on a wall in a park. The bottom right image is a close up of a white box.", - "id": 25793 - }, - { - "image_path": "G:\\images\\combined\\000000040497_jpg.rf.f7989c1a87a0330f59227f67db00fe48.jpg", - "response": "A collage of images including boxes(2,496),(244,773), pallets(478,423),(997,838), and a car", - "id": 25794 - }, - { - "image_path": "G:\\images\\combined\\000000056549_jpg.rf.07249a3f01e92ba52c85824cd5e1c63a.jpg", - "response": "A collage of black and white images including an old truck, a school, a group of motorcycles and a building.", - "id": 25795 - }, - { - "image_path": "G:\\images\\combined\\000000056549_jpg.rf.0e6058246bd47c479a0bf9ba5a4c89ff.jpg", - "response": "A black and white image of a car show with many old cars. There is a close up of a car door and a close up of a gas pump.", - "id": 25796 - }, - { - "image_path": "G:\\images\\combined\\000000062067_jpg.rf.2351ab283e1ee08ece5cdd9550231ef1.jpg", - "response": "A black and white photo of a flooded street with a bus and cars.", - "id": 25797 - }, - { - "image_path": "G:\\images\\combined\\000000062067_jpg.rf.465f8a7db1b655166973b860592e6817.jpg", - "response": "A black and white photo of a dock with people and vehicles. There are two semi trucks, a motorcycle, a car, and a person on a boat. There are also two wooden pallets on the dock.", - "id": 25798 - }, - { - "image_path": "G:\\images\\combined\\000000062067_jpg.rf.78054e0325603b3fd4e46bffefdb7548.jpg", - "response": "A collage of images including a man in a suit, a table with wine glasses, a building with a pitched roof, a man's face, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a group of people sitting around a table, a person holding a camera, a man standing in front of a building, a woman sitting at a table, a man in a suit, a", - "id": 25799 - }, - { - "image_path": "G:\\images\\combined\\000000064800_jpg.rf.636fcafe03f70ff114b32f93428a552c.jpg", - "response": "A black and white photo of a restaurant.", - "id": 25800 - }, - { - "image_path": "G:\\images\\combined\\000000089743_jpg.rf.933f183f701dc36b602bee25eb6c2bca.jpg", - "response": "A street scene in a small town with a few cars and people.", - "id": 25801 - }, - { - "image_path": "G:\\images\\combined\\000000098493_jpg.rf.46f16ea8dc09aa39253b4fd90021a8eb.jpg", - "response": "A collage of black and white images. The top left image is of a small brick building with a sign above the door that says \"Library\". The top right image is of a forklift carrying a large box with the word \"KILLER\" on it. The bottom left image is of a brick wall with a window that has a forklift inside. The bottom right image is of a forklift carrying a large box.", - "id": 25802 - }, - { - "image_path": "G:\\images\\combined\\000000098493_jpg.rf.5dcc01f6f70672c4129715e6953f9c99.jpg", - "response": "A collage of black and white images of a school building, a truck, and two men with a forklift.", - "id": 25803 - }, - { - "image_path": "G:\\images\\combined\\000000098493_jpg.rf.7d32e90fd3cdc42af385b3068d3b7283.jpg", - "response": "A collage of black and white images. The first is a side view of a brick building with a window. The second is a forklift in a parking lot. The third is a close up of a pallet of boxes. The fourth is a close up of a person in a warehouse.", - "id": 25804 - }, - { - "image_path": "G:\\images\\combined\\000000102256_jpg.rf.0566b36083d875d2c53299d4edd18e6b.jpg", - "response": "A collage of black and white images of people and forklifts.", - "id": 25805 - }, - { - "image_path": "G:\\images\\combined\\000000102256_jpg.rf.2077ef102ac495de7c92f65d20f327cd.jpg", - "response": "A black and white image of a car being worked on in a parking lot. There are several people in the area, some standing, some sitting. A large garage is in the background. There is a small building to the left of the garage. The car is in the center of the image, with a second car to the right. A third car is partially visible in the bottom right corner of the image. There is a black square box in the top left corner of the image.", - "id": 25806 - }, - { - "image_path": "G:\\images\\combined\\000000102256_jpg.rf.70cde56469375a47dbaf8f7713f02ba4.jpg", - "response": "A collage of three black and white images. The first image is of a group of people standing around a forklift with a pallet on it. The second image is of a man in a hard hat standing on a forklift. The third image is of a pallet.", - "id": 25807 - }, - { - "image_path": "G:\\images\\combined\\000000109338_jpg.rf.3ceec564438f648b620cfb98ee958bc5.jpg", - "response": "A black and white photo of a flea market.", - "id": 25808 - }, - { - "image_path": "G:\\images\\combined\\000000109338_jpg.rf.4e984e68e469271cec52ad230aa09e7c.jpg", - "response": "A collage of black and white images of a variety of scenes. There are two men standing on a loading dock, a man on skis jumping off a ramp, a forklift driving in a warehouse, a group of people sitting on a bench, a man on a motorcycle, and a truck driving down a dirt road.", - "id": 25809 - }, - { - "image_path": "G:\\images\\combined\\000000109338_jpg.rf.a83677cb315f8229acaae1f9fc9f4a0a.jpg", - "response": "A collage of different photos. In the top left photo, a man is standing next to a truck. In the top right photo, a man is standing next to a truck with a trailer. In the bottom left photo, a man is standing next to a motorcycle. In the bottom right photo, a man is standing next to a car. In the middle photo, a man is standing next to a truck.", - "id": 25810 - }, - { - "image_path": "G:\\images\\combined\\000000130081_jpg.rf.70ade60d9b40687d7fd0ea3cf8220668.jpg", - "response": " a collage(3,6),(995,994) of images including a woman sitting at a table with a man, a man and a woman in a clothing store, and a man holding a bottle of wine(277,105),(333,267)", - "id": 25811 - }, - { - "image_path": "G:\\images\\combined\\000000130081_jpg.rf.96960e1c9bd71e622a5a4796d60d5ceb.jpg", - "response": "A collage of images, including a group of people sitting at a table, a close up of a table, a forklift, a car, and a black and white photo of a warehouse.", - "id": 25812 - }, - { - "image_path": "G:\\images\\combined\\000000130081_jpg.rf.a49410e7d62ec0807ce364889c184a4a.jpg", - "response": "A collage of black and white photos. On the left, a group of people are sitting around a table with wine glasses and bottles. In the middle, a man is standing in front of a wooden pallet. On the right, a man is sitting in a wheelchair.", - "id": 25813 - }, - { - "image_path": "G:\\images\\combined\\000000134586_jpg.rf.60feb50eb86b71ca5fba6a3b29fb03be.jpg", - "response": "A collage of black and white images.", - "id": 25814 - }, - { - "image_path": "G:\\images\\combined\\000000158130_jpg.rf.022f240ce4259c1ba7f3545d83c765ee.jpg", - "response": "A black and white photo of a train station with a train on the right and a bus on the left.", - "id": 25815 - }, - { - "image_path": "G:\\images\\combined\\000000158130_jpg.rf.b42ac8958cb9cb3407f69d7e1ab82335.jpg", - "response": "A collage of four black and white images. On the left is a close up of the front of an old truck. The second image is a black and white photo of a man walking in front of a truck. The third image is a close up of a tree branch. The fourth image is a close up of a blow up alien.", - "id": 25816 - }, - { - "image_path": "G:\\images\\combined\\000000158130_jpg.rf.e5b3f7cb86449c091e6b7c82cac2f500.jpg", - "response": "A black and white photograph of a street scene in London. On the left is a man walking down the street wearing a long coat and a hat. In the background, a sign reads \"ZONE ENDS\". In the middle of the street, there are two stacks of wooden pallets. On the right, there is a building with a sign that reads \"Crescent House\". In the background, there is a truck.", - "id": 25817 - }, - { - "image_path": "G:\\images\\combined\\000000171970_jpg.rf.2280fd942dba8ee0d8ff50b96629daea.jpg", - "response": "A collage of black and white photos. In the top left photo, a man is sitting in the passenger seat of a van. In the top right photo, a hand is holding a camera. In the bottom left photo, a man is sleeping on a chair. In the bottom middle photo, a sign says Emergency Exit. In the bottom right photo, a dog is walking in the grass.", - "id": 25818 - }, - { - "image_path": "G:\\images\\combined\\000000171970_jpg.rf.b03962cff8ca67804e480e51a6a25f70.jpg", - "response": "A black and white photo of a city street. There is a man sitting on a lift working on a sign. There is a sign that says \"Send all their photos in a single email\" and a sign that says \"Salt Lake High School\". There are also two motorcycles parked on the street.", - "id": 25819 - }, - { - "image_path": "G:\\images\\combined\\000000171970_jpg.rf.c9b7f025d3a529e8cad43ea80251d72d.jpg", - "response": "A black and white image of a forklift with a man in the drivers seat. There are 4 other people in the image, one on the left side, one on the right side, one in the top left corner and one in the top right corner. There is a carousel in the top left corner and a pile of boxes in the bottom left corner. There is a motorcycle in the top right corner and a person in the top center corner. There is a bookshelf in the bottom left corner with books on it. There is a picture of a woman in the top left corner and a picture of a man in the top right corner.", - "id": 25820 - }, - { - "image_path": "G:\\images\\combined\\000000178835_jpg.rf.07fff94febd92ea9303dd4859ffeec25.jpg", - "response": "A collage of 4 images showing a forklift in a warehouse.", - "id": 25821 - }, - { - "image_path": "G:\\images\\combined\\000000178835_jpg.rf.88d2c5e768d0f4021a312adb119890c7.jpg", - "response": "A black and white collage of images. The collage includes 12 images of wooden pallets, 2 houses, a truck, a person using a chainsaw, a person using a drill, a person wearing a hard hat, a person carrying a wooden pallet, and a person using a level.", - "id": 25822 - }, - { - "image_path": "G:\\images\\combined\\000000178835_jpg.rf.cbcb1cfd77714eed3dc6aae718be4ae8.jpg", - "response": "A collage of black and white images including a house, a truck, a group of people, a table and a roof.", - "id": 25823 - }, - { - "image_path": "G:\\images\\combined\\000000179415_jpg.rf.38d621cf7d0a155b9df7e6c5db8c387d.jpg", - "response": "A collage of different people in black and white.", - "id": 25824 - }, - { - "image_path": "G:\\images\\combined\\000000179415_jpg.rf.92d04865b6ccf18e1d03d531ee876f23.jpg", - "response": "A collage of four different black and white images. In the top left image a man is sitting on a chair and working on a laptop. In the top right image a person is lying on the ground. In the bottom left image a wooden bench is shown. In the bottom right image a group of people are standing outside of a building.", - "id": 25825 - }, - { - "image_path": "G:\\images\\combined\\000000179415_jpg.rf.97552198b84ec6afe3377598f3a1708f.jpg", - "response": "A collage of six different images. The first is a close up of a person's hands on a keyboard. The second is a close up of a person's hands holding a cell phone. The third is a close up of a person's hands holding a book. The fourth is a close up of a computer mouse. The fifth is a close up of a laptop. The sixth is a close up of a building.", - "id": 25826 - }, - { - "image_path": "G:\\images\\combined\\000000184531_jpg.rf.8156bee980a3e60cb4636ef9aed6523c.jpg", - "response": "A collage of four black and white images. The first is of a truck with a crane on the back. The second is of a man walking towards a train. The third is of a building with a door and a window. The fourth is of a film roll.", - "id": 25827 - }, - { - "image_path": "G:\\images\\combined\\000000184531_jpg.rf.8792bd5fbcdfe7c1c37297cd6bd881f4.jpg", - "response": "A collage of images including a motorcycle, a car, a light, a bridge, and a power line.", - "id": 25828 - }, - { - "image_path": "G:\\images\\combined\\000000184531_jpg.rf.8ad9caf8ce999fc31e5c15313e2b2ba3.jpg", - "response": "A forklift is driving through a warehouse.", - "id": 25829 - }, - { - "image_path": "G:\\images\\combined\\000000196090_jpg.rf.2973f1d239961bb9487a14799411d384.jpg", - "response": "A black and white photo of a beach with a forklift, ice cream stand, and Obama/Steagall sign.", - "id": 25830 - }, - { - "image_path": "G:\\images\\combined\\000000196090_jpg.rf.621dca3c9a7c4f5cddca0d05c2bc961e.jpg", - "response": "A black and white photo of a city street with a building on the right side. There is a pile of snow in the foreground, and a man and a woman are walking down the street in the background. There is a car parked on the street and a sign for a restaurant in the upper left corner of the photo.", - "id": 25831 - }, - { - "image_path": "G:\\images\\combined\\000000196090_jpg.rf.89ed61c9ab8fa3e70d051c98b73749fe.jpg", - "response": "A collage of black and white images. In the top left image, a man is walking down a street with a sign that says \"FAROUK\" above him. In the top right image, a police officer is riding a motorcycle. In the bottom left image, a man is walking down a street with a sign that says \"SHEPHERDS IN ELLIS\". In the bottom right image, a man is walking down a street with a sign that says \"AMAZON\".", - "id": 25832 - }, - { - "image_path": "G:\\images\\combined\\000000212112_jpg.rf.88964ae88d99497ce04771de3cebabdf.jpg", - "response": "An old black truck is parked on the side of the road.", - "id": 25833 - }, - { - "image_path": "G:\\images\\combined\\000000218397_jpg.rf.2e1266aecb65142965d9944a73d0439a.jpg", - "response": "A black and white photo of a town square with a large crowd of people sitting on a hill. There is a tall tower in the background and a stop sign in the foreground. There are also some buildings and a fence in the scene.", - "id": 25834 - }, - { - "image_path": "G:\\images\\combined\\000000218397_jpg.rf.d5fe23dc875a2dcf5197bdf0aab71401.jpg", - "response": "A series of black and white images of people sitting and standing around a truck.", - "id": 25835 - }, - { - "image_path": "G:\\images\\combined\\000000218397_jpg.rf.ed677cf7a5920219004c809da331255c.jpg", - "response": "A black and white photo of a truck with people in the back. There are many people and objects in the photo.", - "id": 25836 - }, - { - "image_path": "G:\\images\\combined\\000000219784_jpg.rf.1c5e770d1ebbcd96712d2a1cd020f5b6.jpg", - "response": "A black and white photo of a man in a room. The man is wearing a black hat and has a beard. He is drinking from a cup. To the right of the man is a window. In front of the window is a wooden structure. To the left of the man is a table with a cup on it. On the table is a book. On the wall behind the man is a poster. On the right side of the photo is a black square", - "id": 25837 - }, - { - "image_path": "G:\\images\\combined\\000000219784_jpg.rf.848fc4944b6984603a4af45b909a3660.jpg", - "response": "A collage of images including a man and woman, a box, and a window.", - "id": 25838 - }, - { - "image_path": "G:\\images\\combined\\000000219784_jpg.rf.fe50f1311ec0a631246d0b91440d3d41.jpg", - "response": "A black and white photo of a man with a hat on his head. The man is standing in front of a wooden bench. There are other wooden benches in the background.", - "id": 25839 - }, - { - "image_path": "G:\\images\\combined\\000000233644_jpg.rf.74402e815275eed28958bc0a8ca16da5.jpg", - "response": "A collage of black and white images of people running, walking, and playing tennis. There are also images of a person wearing a suit, a person wearing a baseball cap, and a person holding a megaphone.", - "id": 25840 - }, - { - "image_path": "G:\\images\\combined\\000000233644_jpg.rf.7d819c3f0ca96379211289e17a4c385a.jpg", - "response": "A collage of black and white images. At the top left is a close up of a man's chin and neck, he is wearing a black suit and a tie with leopard print. At the top right is a black and white photo of a truck. Below the man is a white box with a lock and a set of four icons on it. Below that is a black and white photo of a forklift carrying a pallet of boxes.", - "id": 25841 - }, - { - "image_path": "G:\\images\\combined\\000000233644_jpg.rf.ca76ee9311b99d646559a9bdba71ad0f.jpg", - "response": "A collage of black and white photos including people in a coffee shop, a man in a suit, a woman with a backpack, a table with two cups of coffee, a car, a bicycle, and a TV.", - "id": 25842 - }, - { - "image_path": "G:\\images\\combined\\000000242510_jpg.rf.8934d24408a126d208187f1bab11083a.jpg", - "response": "A man kneeling down in front of a pole with a clock on it.", - "id": 25843 - }, - { - "image_path": "G:\\images\\combined\\000000246875_jpg.rf.0dffe3856693989f00e56225fba30356.jpg", - "response": "A collage of black and white photos of a woman sitting in a chair under an umbrella. She is holding a camera and has a cup in her hand. There is a fence behind her and a crate on the ground. There is also a person sleeping in the background.", - "id": 25844 - }, - { - "image_path": "G:\\images\\combined\\000000246875_jpg.rf.4da80f0fd2f4a550068251a24ff9c17d.jpg", - "response": "A collage of a woman hitting a ball with a bat, and a photo of a carton of boxes.", - "id": 25845 - }, - { - "image_path": "G:\\images\\combined\\000000246875_jpg.rf.8d352afd5f17c0c3098a815727293923.jpg", - "response": "A collage of images including a woman swinging a baseball bat, a man on a stationary bike, a woman running, and a group of people walking down the street.", - "id": 25846 - }, - { - "image_path": "G:\\images\\combined\\000000252054_jpg.rf.1e3f556d52b8da282ad50e89441023e7.jpg", - "response": "A black and white photo of a person standing in front of a pile of boxes. The person is wearing a white shirt and is standing on a porch. There are two bicycles in the photo, one leaning against a fence and another one on the ground. The person is holding a package and there are other packages in the background.", - "id": 25847 - }, - { - "image_path": "G:\\images\\combined\\000000252054_jpg.rf.f439cfb471acebdf7b5a2d19b96dd645.jpg", - "response": "A collage of four photos. The first is a close up of a person's face with glasses and a nose ring. The second is a forklift in a warehouse. The third is a woman standing in a hallway. The fourth is a forklift in a warehouse.", - "id": 25848 - }, - { - "image_path": "G:\\images\\combined\\000000252054_jpg.rf.fdeffdb1cc2e5be2f23afce049229989.jpg", - "response": "A collage of images, including a baby, a person in a hazmat suit, a person using a smartphone, a person using a wheelchair, and a group of people standing on a street corner.", - "id": 25849 - }, - { - "image_path": "G:\\images\\combined\\000000256965_jpg.rf.19c86f55a87e9b95dde7f97e9c0808bf.jpg", - "response": "A collage of black and white images of various trucks and equipment.", - "id": 25850 - }, - { - "image_path": "G:\\images\\combined\\000000256965_jpg.rf.41a36e536f4a3222a1dded9e26903da5.jpg", - "response": "A collage of four images. The first is a black and white image of a truck and a car. The second is a black and white image of a truck with a large box on the back. The third is a black and white image of a person standing in front of a truck. The fourth is a black and white image of a person standing in front of a bookshelf.", - "id": 25851 - }, - { - "image_path": "G:\\images\\combined\\000000256965_jpg.rf.f1846cdb14a50a2efc13ebf4e9f82e63.jpg", - "response": "A collage of images including a forklift, a person on a forklift, a man driving a forklift, a truck, and a group of people.", - "id": 25852 - }, - { - "image_path": "G:\\images\\combined\\000000256967_jpg.rf.6ec2cf016b25f273d24bcd9e7f1423b8.jpg", - "response": "A man and a child flying a kite in a field.", - "id": 25853 - }, - { - "image_path": "G:\\images\\combined\\000000258505_jpg.rf.93462b61e2b390512b27c03f7a2043fd.jpg", - "response": "A collage of a group of people, a truck, a stage, and a box.", - "id": 25854 - }, - { - "image_path": "G:\\images\\combined\\000000258505_jpg.rf.b59b0972b41758e086b8fb73706704ea.jpg", - "response": "A black and white image of a pallet of boxes with a person in a soccer uniform standing next to it.", - "id": 25855 - }, - { - "image_path": "G:\\images\\combined\\000000258505_jpg.rf.ec09edd7e514f8df199201b72498c168.jpg", - "response": "A collage of images, including a group of children playing soccer, a motorcycle, and a car.", - "id": 25856 - }, - { - "image_path": "G:\\images\\combined\\000000260604_jpg.rf.1c73114b6d14ef6b185e692652980bfe.jpg", - "response": "A black and white image of a parking lot with a few cars. There is a forklift in the bottom left corner of the image and a few pallets. There are also a few people in the image.", - "id": 25857 - }, - { - "image_path": "G:\\images\\combined\\000000260604_jpg.rf.6ef788c2e711f0733c05488a0d4a70bd.jpg", - "response": "A collage of black and white images. Top left image is of a table with many small items on it. Top right image is of a plate with a bunch of small food items on it. Bottom left image is of a warehouse with a man walking through it. Bottom right image is of a gym with a diving board.", - "id": 25858 - }, - { - "image_path": "G:\\images\\combined\\000000260604_jpg.rf.b98a1c7622a4b4ea5b096fcc72e2004a.jpg", - "response": "A collage of black and white images of people and cars.", - "id": 25859 - }, - { - "image_path": "G:\\images\\combined\\000000267022_jpg.rf.034a6e3010602bd11cffdb61e6ea4f23.jpg", - "response": "A row of chairs sitting under an umbrella.", - "id": 25860 - }, - { - "image_path": "G:\\images\\combined\\000000274753_jpg.rf.1a634f6be7ed73b30fa632b56f853306.jpg", - "response": "A black and white photo of a city street with a car and a truck. There are people standing on the sidewalk and on the back of the truck. There are also some bicycles in the scene.", - "id": 25861 - }, - { - "image_path": "G:\\images\\combined\\000000274753_jpg.rf.273e05f627a5397bf5703591830cf13f.jpg", - "response": "A collage of images including a bus, a motorcycle, a person, and boxes.", - "id": 25862 - }, - { - "image_path": "G:\\images\\combined\\000000274753_jpg.rf.e308c3bf2622df1df209f608d14c05a9.jpg", - "response": "A collage of images including a brick wall, a fire, a pile of bricks and blocks and a pile of wood.", - "id": 25863 - }, - { - "image_path": "G:\\images\\combined\\000000276719_jpg.rf.2c3e5738a4dcfd900388ad0c19fd109f.jpg", - "response": "A black and white photo of a dog on a leash walking down the street. There are two men standing in the street looking at old cars. There are two cars on the street, one on the left and one on the right. There is a crowd of people in the background. There is a traffic light in the middle of the scene.", - "id": 25864 - }, - { - "image_path": "G:\\images\\combined\\000000284954_jpg.rf.1792ad5fc9614551d6476a34970a7ec0.jpg", - "response": "A black and white photo of a street scene. There is a man on a motorcycle, a truck, a bicycle, a bus, a car, a person walking, a bicycle rack, a bench, a person with a backpack, a person with a handbag, a person with a handbag and a handbag.", - "id": 25865 - }, - { - "image_path": "G:\\images\\combined\\000000284954_jpg.rf.17fa43daaa26e52fcf4e1022407463a7.jpg", - "response": "A collage of three photos. In the first photo, a person is seen sitting on a bicycle. In the second photo, the same person is seen from the side, sitting on the ground and working on a model. In the third photo, the model is seen from the front.", - "id": 25866 - }, - { - "image_path": "G:\\images\\combined\\000000284954_jpg.rf.33ac676a9c1ad7d9437c621982854134.jpg", - "response": "A collage of four different black and white images. The top left image is of a bicycle with a black square over the center of it. The top right image is of a stack of wooden pallets. The bottom left image is of a police car with a black square over the center of it. The bottom right image is of a group of people walking down a sidewalk with a black square over the center of two of them.", - "id": 25867 - }, - { - "image_path": "G:\\images\\combined\\000000286688_jpg.rf.e8a6a6d0bceec0f588fee7edf57d38eb.jpg", - "response": "An old truck on display at a car show.", - "id": 25868 - }, - { - "image_path": "G:\\images\\combined\\000000290110_jpg.rf.5693065bae994d20cc727c4c83091810.jpg", - "response": "A satellite uplink truck parked in a parking lot with several antennas on top.", - "id": 25869 - }, - { - "image_path": "G:\\images\\combined\\000000293974_jpg.rf.077905176f9026254552b59651b51125.jpg", - "response": "A collage of two pictures. One is a black and white picture of an elephant in a cage at a zoo, the other is a picture of a wooden bench in a similar cage.", - "id": 25870 - }, - { - "image_path": "G:\\images\\combined\\000000293974_jpg.rf.e34579145bfbc54a80ae026517e1a97d.jpg", - "response": "A collage of four photos. The top left photo shows a large elephant standing in a holding pen with a blanket on. The top right photo shows a close up of the elephant's head with a blanket on. The bottom left photo shows a group of elephants walking down a street in a line. The bottom right photo shows a close up of a shipping container.", - "id": 25871 - }, - { - "image_path": "G:\\images\\combined\\000000293974_jpg.rf.f5e070600c977cf0d751fbe3996eab6a.jpg", - "response": "A collage of two images. The first is a black and white photo of a man standing in front of a wall with a barbell. The second is a black and white photo of a stack of boxes.", - "id": 25872 - }, - { - "image_path": "G:\\images\\combined\\000000303768_jpg.rf.49a27f806a2a014f55616d6f4f672655.jpg", - "response": "A collage of images of pallets and a forklift.", - "id": 25873 - }, - { - "image_path": "G:\\images\\combined\\000000303768_jpg.rf.7f2d71dcf839bcbef1a29319e7ca1f6f.jpg", - "response": "A collage of four pictures of a forklift in a warehouse.", - "id": 25874 - }, - { - "image_path": "G:\\images\\combined\\000000303768_jpg.rf.8a309359279c7c9238cdd12e029ff894.jpg", - "response": "A black and white collage of images. The main image is of a Skyliner bus. There are two men walking on the street, one with a backpack and one with a handbag. There is a person walking with a suitcase. There are also two people walking with a handbag.", - "id": 25875 - }, - { - "image_path": "G:\\images\\combined\\000000312825_jpg.rf.13f3e3484520bf1138c25cb0c85ea2fe.jpg", - "response": "A forklift in front of a building.", - "id": 25876 - }, - { - "image_path": "G:\\images\\combined\\000000312825_jpg.rf.5249469671c00e2b11394f455445bcb1.jpg", - "response": "A collage of different things including a man sitting on a bench, a truck, a table and chairs.", - "id": 25877 - }, - { - "image_path": "G:\\images\\combined\\000000312825_jpg.rf.796bcf77149b29121221e7c047ffd5dc.jpg", - "response": "A forklift truck in a warehouse", - "id": 25878 - }, - { - "image_path": "G:\\images\\combined\\000000313164_jpg.rf.90500482839b34f8f653a8105ffbc252.jpg", - "response": "A collage of four images. In the top left image, a person is standing on a bicycle. In the top right image, a Boodles banner is displayed. In the bottom left image, a person is using a forklift. In the bottom right image, a person is standing next to a rack of wine bottles.", - "id": 25879 - }, - { - "image_path": "G:\\images\\combined\\000000313164_jpg.rf.c41f75a871200f9bdf808b385e781e43.jpg", - "response": "A collage of images, including a group of people standing around, a box, a bottle, and a handbag.", - "id": 25880 - }, - { - "image_path": "G:\\images\\combined\\000000313164_jpg.rf.c7fc66a30ae96a8c89ab14cd2befc9bd.jpg", - "response": "A collage of images, including a man on a bike, a box on the ground, a person carrying a box, a box on a street corner, and a box in a doorway.", - "id": 25881 - }, - { - "image_path": "G:\\images\\combined\\000000313787_jpg.rf.4a03956b4d6dbfa2eb643091cbe24ac5.jpg", - "response": "A black and white photo of a street with a house on the left and a truck on the right. There is a man standing on the sidewalk near the truck.", - "id": 25882 - }, - { - "image_path": "G:\\images\\combined\\000000313787_jpg.rf.a3a29b73dd143ae79387e7a054df3111.jpg", - "response": "A collage of black and white images of a city street and people. There are 6 images in total. The first image is of a man walking down the street. The second image is of a woman walking down the street. The third image is of a man walking down the street. The fourth image is of a woman walking down the street. The fifth image is of a man walking down the street. The sixth image is of a woman walking down the street. There are also 9 people in the collage. The first person is walking with a dog. The second person is walking with a handbag. The third person is walking with a handbag. The fourth person is walking with a handbag. The fifth person is walking with a handbag. The sixth person is walking with a handbag. The seventh person is walking with a handbag. The eighth person is walking with a handbag. The ninth person is walking with a handbag. There are also 10 cars in the collage. The first car is parked on the street. The second car is parked on the street. The third car is parked on the street. The fourth car is parked on the street. The fifth car is parked on the street. The sixth car is parked on the street. The seventh car is parked on the street. The eighth car is parked on the street. The ninth car is parked on the street. The tenth car is parked on the street.", - "id": 25883 - }, - { - "image_path": "G:\\images\\combined\\000000313787_jpg.rf.c8eee41e2b0516d48239bcca8f9c3926.jpg", - "response": "A collage of photos of children playing baseball, a boy in a black shirt with a white logo on it, a boy in a white shirt with the number 29 on the back, a truck, a house, a fence, a street, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car, a street sign, a tree, a house, a fence, a person, a car", - "id": 25884 - }, - { - "image_path": "G:\\images\\combined\\000000329766_jpg.rf.8b5d98d26adba9d35f32e057ee2c78e3.jpg", - "response": "A train is pulling into a station, with a man standing on the platform.", - "id": 25885 - }, - { - "image_path": "G:\\images\\combined\\000000350077_jpg.rf.06465190a570c2fd509e9ce54ec43c05.jpg", - "response": "A pallet jack is moving a pallet in a warehouse.", - "id": 25886 - }, - { - "image_path": "G:\\images\\combined\\000000350077_jpg.rf.3e31ab10d791ee9a7c7261965902f775.jpg", - "response": "A collage of images, including a person standing in front of a building, a forklift, a traffic light, and a bird perched on a wire.", - "id": 25887 - }, - { - "image_path": "G:\\images\\combined\\000000350077_jpg.rf.e35dcbc9ebfb99eb0ea13a2806dedb77.jpg", - "response": "A black and white photo of a street with a truck and a forklift.", - "id": 25888 - }, - { - "image_path": "G:\\images\\combined\\000000350819_jpg.rf.21c61a88bb5052e53f20fc720a441c33.jpg", - "response": "A collage of four black and white images. The first is of a bench on a street. The second is of a person sitting on the bench. The third is of a river with rapids. The fourth is of a person holding a cell phone.", - "id": 25889 - }, - { - "image_path": "G:\\images\\combined\\000000350819_jpg.rf.e4fd45a44be14d7cc8cdb0b1843c41b7.jpg", - "response": "A collage of black and white photos. In the top left photo a man with a beard and sunglasses is sitting on a bench. In the top right photo a man is standing behind a forklift. In the bottom left photo a man is standing in front of a door. In the bottom right photo a forklift is parked next to a building.", - "id": 25890 - }, - { - "image_path": "G:\\images\\combined\\000000350819_jpg.rf.e9397364c1f484dc03d09cff2d6452f4.jpg", - "response": "A collage of three photos. In the top left photo, a man in a suit is sitting on a chair and talking on a microphone. In the top right photo, a man is sitting on a chair and holding a microphone. In the bottom photo, a man is standing on a stage in front of a crowd.", - "id": 25891 - }, - { - "image_path": "G:\\images\\combined\\000000352680_jpg.rf.77e8993a59366ae1f9a504360c4277d3.jpg", - "response": "A collage of a woman smiling, a forklift, and pallets.", - "id": 25892 - }, - { - "image_path": "G:\\images\\combined\\000000352680_jpg.rf.8b49829ee47dde05959d67f1c09851f0.jpg", - "response": "A black and white image of a baseball field with a group of children playing baseball. There are cars parked in the background and a truck.", - "id": 25893 - }, - { - "image_path": "G:\\images\\combined\\000000352680_jpg.rf.c70c1f2cd647d742d520a84b549eb989.jpg", - "response": "A black and white photo of a man on a forklift.", - "id": 25894 - }, - { - "image_path": "G:\\images\\combined\\000000353409_jpg.rf.273e9b8f55352031feac7f57a5cc8e85.jpg", - "response": "A collage of black and white photos. The top left photo is of a large group of people standing on a street corner. The top right photo is of a group of people standing in front of a building. The bottom left photo is of a man standing on a ladder in front of a building. The bottom right photo is of a group of people standing on a balcony.", - "id": 25895 - }, - { - "image_path": "G:\\images\\combined\\000000353409_jpg.rf.97f33039816da7d94b4dbd7d4172c7e4.jpg", - "response": "A black and white photo of a long table with people sitting on both sides of the table. There are many people in the photo and they are all dressed in formal attire. Some people are standing while others are sitting. In the background, there is a clock on the wall.", - "id": 25896 - }, - { - "image_path": "G:\\images\\combined\\000000353409_jpg.rf.d5c1353c2e709fe7e90c527ffc6ad372.jpg", - "response": "A black and white image of a forklift and warehouse.", - "id": 25897 - }, - { - "image_path": "G:\\images\\combined\\000000357989_jpg.rf.58e471717e48b092011d24d9603bb048.jpg", - "response": "A collage of black and white images of people walking, playing basketball, and a forklift.", - "id": 25898 - }, - { - "image_path": "G:\\images\\combined\\000000357989_jpg.rf.64d48a73529fce0514b05ed945f6ac59.jpg", - "response": "A collage of images including a person running, a close up of a building, and a person walking.", - "id": 25899 - }, - { - "image_path": "G:\\images\\combined\\000000357989_jpg.rf.f487c625669846dd5dcfe5c1ee67a3d3.jpg", - "response": "A collage of a man working out with a medicine ball, a stack of boxes, and a box being moved by a man.", - "id": 25900 - }, - { - "image_path": "G:\\images\\combined\\000000366576_jpg.rf.1e802dcd7d95fe96d858c39afe00a954.jpg", - "response": "A collage of black and white images of animals in captivity. There is a zebra in a pin, a horse in a stable, a dog on a skateboard, an elephant in a cage and a monkey on a surfboard.", - "id": 25901 - }, - { - "image_path": "G:\\images\\combined\\000000366576_jpg.rf.37601f2a7c38dba9959dd778f4407bf9.jpg", - "response": "A collage of three images. The first is a black and white photo of a zebra standing in a pin with a man in a suit standing behind a fence. The second is a black and white photo of a warehouse with a rack of boxes. The third is a black and white photo of a zebra standing in a pin with a man in a suit standing behind a fence.", - "id": 25902 - }, - { - "image_path": "G:\\images\\combined\\000000366576_jpg.rf.ce729b0bfa86c31a2db1132d36127218.jpg", - "response": "A collage of three different images. The first is a black and white photo of two zebras grazing in a grassy field. The second is a close-up of the back of a small truck with a black square over the license plate. The third is a close-up of a pallet with a white background.", - "id": 25903 - }, - { - "image_path": "G:\\images\\combined\\000000377235_jpg.rf.4d31af74e063fe35da935459474a5709.jpg", - "response": "A black and white photo of a group of people standing in front of a building. Some people are sitting on a bench, and one person is sitting on a motorized cart. There is a person wearing a backpack and a handbag. A person is wearing a hat and a backpack. A sign is posted on the building.", - "id": 25904 - }, - { - "image_path": "G:\\images\\combined\\000000377235_jpg.rf.6e4e7adb2f7ef0948abc1613bf2bc0cc.jpg", - "response": "A collage of images. The top image is a man laying on a pile of wooden pallets. The second image is a group of people playing frisbee in a field. The third image is a man sitting on a stack of wooden pallets.", - "id": 25905 - }, - { - "image_path": "G:\\images\\combined\\000000377235_jpg.rf.de6b70d49950216a9844f81917dc63a3.jpg", - "response": "A black and white image of a person walking into a store with a car parked in front of it. There is a sign in front of the store with directions on how to find different stores.", - "id": 25906 - }, - { - "image_path": "G:\\images\\combined\\000000384146_jpg.rf.1119c369354546320a62a1a73090369a.jpg", - "response": "A black and white photo of a street scene with a bicycle in the foreground. The bicycle has a backpack on the back and a basket in front. There is a car parked on the street and a few people walking around. In the background, there is a church with a steeple.", - "id": 25907 - }, - { - "image_path": "G:\\images\\combined\\000000384146_jpg.rf.22665c93aaa1b001efbf00f588ada471.jpg", - "response": "A collage of four black and white photos. The top left photo is of a man on a horse in a town plaza. The top right photo is of a street with cars driving on it. The bottom left photo is of a store front with a man sitting outside. The bottom right photo is of a building with a clock tower.", - "id": 25908 - }, - { - "image_path": "G:\\images\\combined\\000000384146_jpg.rf.fa1943bef239e4949d9787e25318fa90.jpg", - "response": "A collage of images, starting with a street scene with cars, buses, and pedestrians, and ending with a close-up of a statue base.", - "id": 25909 - }, - { - "image_path": "G:\\images\\combined\\000000384857_jpg.rf.1eba2c13f92b927cc72f4c2fe7c8ff58.jpg", - "response": "A collage of four black and white images. In the top left image, a person is sitting at a table with a cup on it. In the top right image, a wooden crate is on a table. In the bottom left image, a forklift is driving in a warehouse. In the bottom right image, a person is sitting in a car looking out the window at a busy street.", - "id": 25910 - }, - { - "image_path": "G:\\images\\combined\\000000384857_jpg.rf.d79a0de41fbfca15f90f26ab6244fe12.jpg", - "response": "A collage of black and white images of a baseball field, a batting cage, a table with water bottles and a towel, and a woman swinging a baseball bat.", - "id": 25911 - }, - { - "image_path": "G:\\images\\combined\\000000384857_jpg.rf.e4dfc6efc127082345e4815ed34a2f30.jpg", - "response": "A collage of black and white images. There is a motorcycle on the left, a motorcycle on the right, a brick wall in the middle left, and a fence in the bottom left corner.", - "id": 25912 - }, - { - "image_path": "G:\\images\\combined\\000000391823_jpg.rf.14a9aa7dc9f2306e7628b886d8cfdcb1.jpg", - "response": "A collage of black and white images. The top image is of a man standing on a ledge of a tall building. The second image is of a man hanging from the ledge. The third image is of a man standing on the ledge. The fourth image is of a man standing on the ledge with his hands in the air. The fifth image is of a bus driving down a street. The sixth image is of a man standing on the ledge with his hands in the air. The seventh image is of a man standing on the ledge with his hands in the air. The eighth image is of a man standing on the ledge with his hands in the air. The ninth image is of a man standing on the ledge with his hands in the air. The tenth image is of a man standing on the ledge with his hands in the air. The eleventh image is of a man standing on the ledge with his hands in the air. The twelfth image is of a man standing on the ledge with his hands in the air. The thirteenth image is of a man standing on the ledge with his hands in the air. The fourteenth image is of a man standing on the ledge with his hands in the air. The fifteenth image is of a man standing on the ledge with his hands in the air. The sixteenth image is of a man standing on the ledge with his hands in the air. The seventeenth image is of a man standing on the ledge with his hands in the air. The eighteenth image is of a man standing on the ledge with his hands in the air. The nineteenth image is of a man standing on the ledge with his hands in the air. The twentieth image is of a man standing on the ledge with his hands in the air.", - "id": 25913 - }, - { - "image_path": "G:\\images\\combined\\000000391823_jpg.rf.3008b701539c815e4015f12b9bbf2081.jpg", - "response": "A collage of four black and white images. The top left image is of a hand holding a brick with a square black box over it. The top right image is of a window with a square black box over it. The bottom left image is of a wall with black and white bricks and a square black box over it. The bottom right image is of a broom with a square black box over it.", - "id": 25914 - }, - { - "image_path": "G:\\images\\combined\\000000391823_jpg.rf.4b8bde20b27230d2177bfff15c195ce5.jpg", - "response": "A black and white photo of a park with people and dogs. There are tents and cars in the background. There are two dogs in the air, one is a golden lab and the other is a black and white one. There is a person in the air on a trampoline. There are two cars in the foreground. There is a person sitting on a chair in the park. There is a tent in the background. There is a boxy object in the foreground.", - "id": 25915 - }, - { - "image_path": "G:\\images\\combined\\000000400983_jpg.rf.141d0ef719f826bc7a9e359a5da2d599.jpg", - "response": "A black and white photo of a loading dock with a forklift and a truck.", - "id": 25916 - }, - { - "image_path": "G:\\images\\combined\\000000400983_jpg.rf.86045453ede3882f49017393b4e4718e.jpg", - "response": "A collage of black and white images. The top image is a black and white image of a group of people standing around a large metal structure. The middle image is a black and white image of a man standing on a platform next to a large metal structure. The bottom image is a black and white image of a pile of wooden boards.", - "id": 25917 - }, - { - "image_path": "G:\\images\\combined\\000000400983_jpg.rf.c68cc9edea08360ea9466acfcaeee9b1.jpg", - "response": "A black and white image of a town. There is a truck in the top right corner, a clock tower in the bottom left corner, a group of people in the top left corner, and a building with a sign in the top right corner.", - "id": 25918 - }, - { - "image_path": "G:\\images\\combined\\000000403404_jpg.rf.38375320712230c7ac7d452e14a3514f.jpg", - "response": "A collage of images of a pallet jack.", - "id": 25919 - }, - { - "image_path": "G:\\images\\combined\\000000403404_jpg.rf.7b1f652b456dd917a2e0f2eae030a1b1.jpg", - "response": "A black and white image of a grocery store with a man in a suit looking at a clipboard. There are several baskets of fruit on display, including apples and oranges. The image is split into four quadrants, with the top left quadrant showing a close-up of the fruit display, the top right quadrant showing a man in a suit looking at a clipboard, the bottom left quadrant showing a close-up of the clipboard, and the bottom right quadrant showing a close-up of the fruit display.", - "id": 25920 - }, - { - "image_path": "G:\\images\\combined\\000000403404_jpg.rf.c04c86703d928c92ceea1e4170433d91.jpg", - "response": "A collage of tennis players playing tennis.", - "id": 25921 - }, - { - "image_path": "G:\\images\\combined\\000000404828_jpg.rf.3e8026b9fa7baf99e677106859171628.jpg", - "response": "A black and white photo of a group of people standing around a table. There are crates of wine bottles on the ground.", - "id": 25922 - }, - { - "image_path": "G:\\images\\combined\\000000404828_jpg.rf.45aa11499f8a54fd709b2cbb709c5505.jpg", - "response": "A collage of 4 photos. In the first, a group of people stand around a man who is holding a clipboard. In the second, a man in a white baseball uniform stands on the field with a baseball glove. In the third, a man in a white baseball uniform is sitting on the ground and in the fourth, a man in a white baseball uniform is holding a baseball glove and a ball.", - "id": 25923 - }, - { - "image_path": "G:\\images\\combined\\000000404828_jpg.rf.7b061bfec5a025188c30f1822a566bd3.jpg", - "response": "A collage of images, including two people holding hands, a car on a road, and boxes of supplies.", - "id": 25924 - }, - { - "image_path": "G:\\images\\combined\\000000408846_jpg.rf.4627b9c8beaefa20020740c7105cdc72.jpg", - "response": "A collage of four black and white images. The first image is of a crowd of people standing on the street. The second image is of a horse-drawn carriage on the street. The third image is of a forklift. The fourth image is of a truck.", - "id": 25925 - }, - { - "image_path": "G:\\images\\combined\\000000408846_jpg.rf.881119525c4e8e1f3bce5fd381913e92.jpg", - "response": "A collage of black and white images. On the left is a woman riding a horse. In the middle is a box with the recycling symbol on it. In the bottom right is a close up of a box with a barcode on it. In the bottom center is a man walking down a street. In the top center is a man walking down a street.", - "id": 25926 - }, - { - "image_path": "G:\\images\\combined\\000000408846_jpg.rf.ee5ed08c994197f8f396e127cf0c834a.jpg", - "response": "A black and white image of four different images. The first is of a woman sitting on a horse, the second is of a woman standing in front of a table of boxes, the third is of a street sign, and the fourth is of a group of people standing in front of a food truck.", - "id": 25927 - }, - { - "image_path": "G:\\images\\combined\\000000409740_jpg.rf.275b71c4330b99cfbd533c53f583d1c5.jpg", - "response": "A collage of images, including a bus, a traffic light, a handbag, a woman walking, and a man and a woman hugging.", - "id": 25928 - }, - { - "image_path": "G:\\images\\combined\\000000409740_jpg.rf.37c17a91e103d588db7a3ff4be456ee7.jpg", - "response": "A collage of four pictures. In the first picture two men are filming a wind turbine. In the second picture a close-up of a box is shown. In the third picture a close-up of a box is shown. In the fourth picture a close-up of a box is shown.", - "id": 25929 - }, - { - "image_path": "G:\\images\\combined\\000000409740_jpg.rf.f78493d346953aee4f2602dbbbfb6a28.jpg", - "response": "A black and white photo of a beach scene with palm trees in the background. There is a person sitting on a wall and a person holding a sign that says \"Restore Glass-Steagall! Build Nawapa!\" There is a couch made out of pallets on the beach and a person is doing yoga.", - "id": 25930 - }, - { - "image_path": "G:\\images\\combined\\000000410068_jpg.rf.098960c2ff488b8ccbadd15ca4d5a14f.jpg", - "response": "A black and white image of a warehouse. On the top half of the image there is a forklift in the top left corner and a stack of boxes in the top right corner. The bottom half of the image is a close up of pallets.", - "id": 25931 - }, - { - "image_path": "G:\\images\\combined\\000000410068_jpg.rf.db4cdbabdf23bbe2b02d918aaec32e30.jpg", - "response": "A collage of black and white photos. The top left photo is of a person holding an umbrella in front of a row of parked cars. The top right photo is of a bus driving down a street. The bottom left photo is of a puddle reflecting a building. The bottom right photo is of a tree in front of a building.", - "id": 25932 - }, - { - "image_path": "G:\\images\\combined\\000000410068_jpg.rf.fb8073ce3939f2d0c4d2851effe005de.jpg", - "response": "A black and white image of a pallet with boxes on it. The boxes are stacked on top of each other and are made of cardboard. The pallet is sitting on the ground and there is a truck in the background.", - "id": 25933 - }, - { - "image_path": "G:\\images\\combined\\000000422279_jpg.rf.65ed59378fbdecda25cc4c21eec939d8.jpg", - "response": "A collage of black and white images. Top left: a partially eaten chocolate donut on a plate. Top right: a glass cake plate with a chocolate bundt cake on it. Bottom left: a window with leaves outside. Bottom center: a young boy on a skateboard. Bottom right: a man eating a donut.", - "id": 25934 - }, - { - "image_path": "G:\\images\\combined\\000000422279_jpg.rf.6987dc6f59cd7571a506e470b70a417c.jpg", - "response": "A collage of black and white images of a woman on a bus, a parking meter, and a forklift.", - "id": 25935 - }, - { - "image_path": "G:\\images\\combined\\000000422279_jpg.rf.9da8b4c3fddf4d33db74117138adefa1.jpg", - "response": "A collage of images including a horse being x-rayed, a man standing next to a horse, and a vet tech holding a horse's head.", - "id": 25936 - }, - { - "image_path": "G:\\images\\combined\\000000426500_jpg.rf.5ac15a54670abd2173c1651f0ef20026.jpg", - "response": "A black and white photo of a city street with a man walking down the street. There is a man sitting on a bench and a man standing on the sidewalk. There are also cars and a bus in the background.", - "id": 25937 - }, - { - "image_path": "G:\\images\\combined\\000000426500_jpg.rf.775a1a1152507c25499e3a83adaf6450.jpg", - "response": "A black and white image of a city street with various people and vehicles. There are two people walking under an umbrella, a couple of people riding a motorcycle, a few people walking on the sidewalk, and a few cars and trucks driving down the street. There is also a bus parked on the side of the street.", - "id": 25938 - }, - { - "image_path": "G:\\images\\combined\\000000426500_jpg.rf.e21db4b1656001ad1694d541afc158ed.jpg", - "response": "A collage of black and white images of people walking, sitting, and flying kites.", - "id": 25939 - }, - { - "image_path": "G:\\images\\combined\\000000430166_jpg.rf.65f594d26152bc823f1a44c0678afb94.jpg", - "response": "A black and white collage of four photos. The top left photo is of a bike rack with bikes on it. The top right photo is of a busy street with cars. The bottom left photo is of a person sleeping on a couch. The bottom right photo is of a crowd of people in a park flying kites.", - "id": 25940 - }, - { - "image_path": "G:\\images\\combined\\000000430166_jpg.rf.8104aebf8bda4a0210eb0b8f8d819685.jpg", - "response": "A black and white image of a street with cars and trucks. There is a building with a roof and a fence. There is a truck driving down the street.", - "id": 25941 - }, - { - "image_path": "G:\\images\\combined\\000000430166_jpg.rf.819fbd3d9860aa542ac8f95f54f76b9a.jpg", - "response": "A black and white image of a warehouse with people working. There are three wooden pallets on the bottom of the image. One is on the left, one is in the middle, and one is on the right. There is a box in the top right corner.", - "id": 25942 - }, - { - "image_path": "G:\\images\\combined\\000000431952_jpg.rf.4844e40fe8f157219fe328a0c2336d66.jpg", - "response": "A collage of black and white pictures. In the top left picture a man is sitting on the ground. In the top right picture a forklift is driving. In the bottom left picture a man is sitting on a pile of wood. In the bottom right picture a man is driving a forklift.", - "id": 25943 - }, - { - "image_path": "G:\\images\\combined\\000000431952_jpg.rf.593cad900f0ec275e92c51806d0adae9.jpg", - "response": "A collage of three photos. In the top left photo, a man is standing in front of a pile of wooden pallets. In the top right photo, a man is sitting on a pile of wooden pallets. In the bottom photo, a man is sitting on a pile of wooden pallets.", - "id": 25944 - }, - { - "image_path": "G:\\images\\combined\\000000431952_jpg.rf.fbabd64542fd51f1f91d09a0201eab76.jpg", - "response": "A collage of four photos. The top left photo shows a woman standing in front of a truck with a man standing behind her. The top right photo shows a clown standing in front of a Hummer. The bottom left photo shows a fire hydrant and a garage. The bottom right photo shows a man standing in front of a truck.", - "id": 25945 - }, - { - "image_path": "G:\\images\\combined\\000000437817_jpg.rf.12fb2e34fa049bd3fbdb22db2fac6179.jpg", - "response": "A black and white photo of a group of people in a park. There are two children on the left and a woman on the right. In the middle of the photo there are three boxes. In the top right corner there is a white van. In the bottom right corner there are people flying kites.", - "id": 25946 - }, - { - "image_path": "G:\\images\\combined\\000000437817_jpg.rf.7f1678c795522fc03e914ad124c3b84b.jpg", - "response": "A black and white image of a man standing next to a pallet of boxes. The boxes are wrapped in plastic and have black squares over the faces of the people in the image. The man is standing on a loading dock and there is a forklift in the background.", - "id": 25947 - }, - { - "image_path": "G:\\images\\combined\\000000437817_jpg.rf.bea39765a44d0a15ff7ab671dcc3ac2e.jpg", - "response": "A group of people sitting outside at a table with a large white truck parked next to them.", - "id": 25948 - }, - { - "image_path": "G:\\images\\combined\\000000451594_jpg.rf.4ecfd52e7ce201f8035f4728925dbfbe.jpg", - "response": "A black and white photo of a street scene in Guildford. There are two buses on the road, one is a double decker. The road is made of small rectangular bricks. On the left is a small square planter with a tree in it. On the right is a building with a sign saying 'The Star'. There are people on the pavement, some wearing masks.", - "id": 25949 - }, - { - "image_path": "G:\\images\\combined\\000000460962_jpg.rf.9be37dd1a507b2a2205debe380a746af.jpg", - "response": "A black and white photo of a street with a stop sign and a building. There are also two men working on a large pallet.", - "id": 25950 - }, - { - "image_path": "G:\\images\\combined\\000000460962_jpg.rf.cdb81d8d614553d4a97e3deb55aa1d9d.jpg", - "response": "A collage of four black and white images. The first is a stop sign on a street corner. The second is a man in white pants and a white shirt leaning over and touching the head of a person in a white shirt and black pants. The third is a close up of a wall with a box on it. The fourth is a forklift driving on a road.", - "id": 25951 - }, - { - "image_path": "G:\\images\\combined\\000000460962_jpg.rf.f367f081cc0c1242c205434c718ad7e8.jpg", - "response": "A collage of images including a forklift, a stop sign, a restaurant and a street.", - "id": 25952 - }, - { - "image_path": "G:\\images\\combined\\000000466451_jpg.rf.8abd0fbe48afe14f03bac25ad5f702c4.jpg", - "response": " A man(126,63),(296,347) and woman(248,99),(345,337) are loading a pick-up truck(2,157),(449,996) with wooden benches(3,426),(458,997).", - "id": 25953 - }, - { - "image_path": "G:\\images\\combined\\000000466451_jpg.rf.c538e220a33c89373462e415a38c96ff.jpg", - "response": "A collage of a pickup truck, a box, a building, and a website.", - "id": 25954 - }, - { - "image_path": "G:\\images\\combined\\000000466451_jpg.rf.e830a54e4c6d6adc15e8dfb2a1116814.jpg", - "response": "A collage of black and white images including a truck, a graduation cap, a handbag, a dress, a statue, and a group of people.", - "id": 25955 - }, - { - "image_path": "G:\\images\\combined\\000000468652_jpg.rf.9df5d153b575cd29f69f3bfdfdf78212.jpg", - "response": "A black and white photo of a 1950's Ford pickup truck with the hood up.", - "id": 25956 - }, - { - "image_path": "G:\\images\\combined\\000000470364_jpg.rf.37ba0abe105cf1737e13a58037839625.jpg", - "response": "A collage of four photos. One is a close up of a coffee mug, one is a man sitting at a table, one is a group of people standing in front of a building, and one is a man standing in front of a window.", - "id": 25957 - }, - { - "image_path": "G:\\images\\combined\\000000470364_jpg.rf.7187f4e117d6ecd11cb5353228d1aa7f.jpg", - "response": "A black and white image of a living room with a couch and a coffee table. There are also three toy buses on the floor.", - "id": 25958 - }, - { - "image_path": "G:\\images\\combined\\000000470364_jpg.rf.e172d1eb65a96dd6701cb3a1ef51a4ee.jpg", - "response": "A black and white photo of a table with a coffee cup and a donut. There is a fork on the table. There is a man sitting in a forklift.", - "id": 25959 - }, - { - "image_path": "G:\\images\\combined\\000000515682_jpg.rf.3be6289b815a64ad2db57ec1529d1445.jpg", - "response": "A black and white photo of a street with people walking on it. There are four people walking in the street, one in the middle and one on each side. There is a truck in the background. In the foreground, there is a pile of bags and a building.", - "id": 25960 - }, - { - "image_path": "G:\\images\\combined\\000000515682_jpg.rf.81e8d4e53b98a83e7d59d399cd1cb247.jpg", - "response": "A table with a plate of food and a cup of coffee.", - "id": 25961 - }, - { - "image_path": "G:\\images\\combined\\000000515682_jpg.rf.f84267e1e55e4f1be6590aa4a8740c7b.jpg", - "response": "A black and white photo of a person riding a skateboard. The person is wearing white pants and black shoes. The skateboard has white wheels. There are two cakes in the bottom left corner of the image, one on the left and one on the bottom left. There is a photo of a person holding a skateboard in the bottom right corner. There is a phone in the top left corner. The background is a field of grass and dirt.", - "id": 25962 - }, - { - "image_path": "G:\\images\\combined\\000000521995_jpg.rf.1d0bbd0f95d330913fecb04b3b4ea375.jpg", - "response": " A collage(5,6),(995,992) of images from the attack.", - "id": 25963 - }, - { - "image_path": "G:\\images\\combined\\000000521995_jpg.rf.5cf784e1ac4597c07914365d5e2a7655.jpg", - "response": "A collage of images, including a person pushing a cart, a brick wall, a street view, and a man in a factory.", - "id": 25964 - }, - { - "image_path": "G:\\images\\combined\\000000521995_jpg.rf.d18da9a0f34b47ed6de1a139c7822885.jpg", - "response": "A black and white photo of a collage of four photos. The first photo is of a window with a statue of a man on a horse in front of a building. The second photo is of a street with several double decker buses. The third photo is of a man sitting in a chair with a suitcase. The fourth photo is of a man sitting in a folding chair with a suitcase and a backpack.", - "id": 25965 - }, - { - "image_path": "G:\\images\\combined\\000000524533_jpg.rf.bd7d7003b0d83809cbb690277460d132.jpg", - "response": "A black and white photo of a bus stop with a bus in the background. There are several people waiting at the bus stop, some with umbrellas and others without. There is a handbag on the ground and a bench in the background.", - "id": 25966 - }, - { - "image_path": "G:\\images\\combined\\000000524533_jpg.rf.f5eaec2637644cec7ab2c9ed4b9d6355.jpg", - "response": "A collage of black and white images. Top left is a sign that says \"send all other photos in a site\" and above that are pictures of a car. Top right is a box with a arrow pointing up. Middle left is a tire on the back of a truck. Middle right is a man in a suit and tie. Bottom left is a pile of watermelons. Bottom right is a man in a suit walking down the street.", - "id": 25967 - }, - { - "image_path": "G:\\images\\combined\\000000524533_jpg.rf.fe173858755a3d2d28634629636fdb66.jpg", - "response": "A collage of images including a forklift, a mug, a box, a building and a photo of a person in a single picture.", - "id": 25968 - }, - { - "image_path": "G:\\images\\combined\\000000551018_jpg.rf.187ea443497fb14adbd4f6188bcf0fd4.jpg", - "response": "A collage of four photos. The first is a black and white photo of a street scene with cars, buses, and people. The second is a black and white photo of a person walking on a bridge. The third is a black and white photo of a person's legs and feet, with the shoes visible. The fourth is a black and white photo of a river with rapids.", - "id": 25969 - }, - { - "image_path": "G:\\images\\combined\\000000551018_jpg.rf.9be5fec4145ecbc6b9bf13734861154c.jpg", - "response": "A collage of black and white images. Clock tower, wooden planks, cars, a truck, a bus, a building, a road.", - "id": 25970 - }, - { - "image_path": "G:\\images\\combined\\000000555808_jpg.rf.a7bf9502bd698eb7ddfc035b7318594e.jpg", - "response": "A black and white photo of a group of people sitting on the back of a truck. There is a large building in the background and a body of water to the right. There is a box with a black square on it in the foreground.", - "id": 25971 - }, - { - "image_path": "G:\\images\\combined\\000000555808_jpg.rf.e22a3e95f8624caa493e047ec39499c2.jpg", - "response": "A collage of images including a plane, a car, a street sign, a building, a box, and people.", - "id": 25972 - }, - { - "image_path": "G:\\images\\combined\\000000555808_jpg.rf.e8bc95f3bbd0cd57b44c6fa570237410.jpg", - "response": "A collage of black and white images, including a crowd of people in a park, a person playing tennis, a group of people standing around a tall stone tower, and a group of people holding signs and standing around a bus.", - "id": 25973 - }, - { - "image_path": "G:\\images\\combined\\000000561126_jpg.rf.2e33b315d769e889eaad0a33d79fa9d8.jpg", - "response": "A collage of four photos. The top left photo is of a child sitting on the hood of a truck. The top right photo is of a young boy standing on the sidewalk with his hands on his hips. The bottom left photo is of a wall with three black squares painted on it. The bottom right photo is of a door with three windows and a sign on it.", - "id": 25974 - }, - { - "image_path": "G:\\images\\combined\\000000561126_jpg.rf.c1bcec4fb927346d5e021ce287c3640e.jpg", - "response": "A collage of images including a truck, a building, a person walking an elephant, and a bench.", - "id": 25975 - }, - { - "image_path": "G:\\images\\combined\\000000561126_jpg.rf.ffc9d37baf2f9de31b246911d2a6d5f2.jpg", - "response": "A black and white image of a grocery store. There is a car in the top left corner, a shelf of beer in the top right corner, a person walking in the bottom left corner, a person walking in the bottom right corner, a person walking in the top center, a person walking in the top right corner, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in the top left corner, a person walking in the top right corner, a person walking in the top center, a person walking in", - "id": 25976 - }, - { - "image_path": "G:\\images\\combined\\000000565612_jpg.rf.6fe74fdbd7143fc686fc6c33cecd7b11.jpg", - "response": "A collage of black and white images. The top left image is of a bridge with a car in the background. The top right image is of a pile of wood. The bottom left image is of a Caterpillar tractor. The bottom right image is of a motorcycle.", - "id": 25977 - }, - { - "image_path": "G:\\images\\combined\\000000565612_jpg.rf.8046d44b845bdb0e23037bcfe8c2f35a.jpg", - "response": "A black and white photo of a street. On the left side of the street there is a pile of pallets. On the right side of the street there are two people walking. In the middle of the street there is a car. On the left side of the street there is a small hill with a tree on it.", - "id": 25978 - }, - { - "image_path": "G:\\images\\combined\\000000565612_jpg.rf.c59ba67d7b0b92ab1d168e4fa553a12b.jpg", - "response": "A collage of different buildings and an airplane.", - "id": 25979 - }, - { - "image_path": "G:\\images\\combined\\000000571575_jpg.rf.28d2f7560ef716494402e7fb732c55aa.jpg", - "response": "A collage of black and white images. The top image is of a woman in a dress and hat holding a camera and standing next to a car. The middle image is a black and white photo of a group of people standing in front of a tower. The bottom image is of a line of toy cars on the ground.", - "id": 25980 - }, - { - "image_path": "G:\\images\\combined\\000000571575_jpg.rf.931c376571591507992619880262b9fb.jpg", - "response": "A collage of black and white images. There is a man sitting on a bench, a man playing a saxophone, a man with a large hat holding a bag, a building with a large door and two windows, and a design with three squares on a white background.", - "id": 25981 - }, - { - "image_path": "G:\\images\\combined\\000000571575_jpg.rf.95edc9f0d60dab986f9269bfee4fa504.jpg", - "response": "A black and white image showing a collage of different images. The top left image shows a man sitting on a chair with a handbag, the top right image shows a man standing next to a forklift, the bottom left image shows a man sitting on a chair, the bottom right image shows a box with the word \"Cisco\" on it, and the top right image shows a man standing next to a wooden crate.", - "id": 25982 - }, - { - "image_path": "G:\\images\\combined\\000000580185_jpg.rf.5947e92089aa817763069f7ec5b137d0.jpg", - "response": "A black and white photo of a street fair with people and trucks. There are four pictures of pallets, one of them with a black square over it.", - "id": 25983 - }, - { - "image_path": "G:\\images\\combined\\000000580185_jpg.rf.def7e69fabe51ee9d03e2676eadd6eff.jpg", - "response": "A black and white photo of a city street with a sign that says Gesamter Strafe. A bus is parked on the street and there are people walking around. A picture of a building is shown with a black square over the top. A picture of a bottle cap is shown with a black square over the top.", - "id": 25984 - }, - { - "image_path": "G:\\images\\combined\\000000580185_jpg.rf.e78e71de25eda64e1592415df51707c5.jpg", - "response": "A collage of a man standing in front of a building, a box, a tree, and a street.", - "id": 25985 - }, - { - "image_path": "G:\\images\\combined\\000001_jpg.rf.21278d4f2888f2064d90d73e9ac62be8.jpg", - "response": "A worker is using a drill on a construction site.", - "id": 25986 - }, - { - "image_path": "G:\\images\\combined\\000001_jpg.rf.55355ea4441f70f866235672691f3697.jpg", - "response": "A man in a yellow hard hat is using a power drill on a bamboo scaffolding.", - "id": 25987 - }, - { - "image_path": "G:\\images\\combined\\000002_jpg.rf.49ff09eb5715b9f8c401a01ad29f88fb.jpg", - "response": "The image is a black and white photo of two men in coveralls and hard hats working on a large transformer on a power pole. They are standing on a ladder and appear to be focused on their task. The transformer is located in front of a building.", - "id": 25988 - }, - { - "image_path": "G:\\images\\combined\\000002_jpg.rf.90aa71fae6edaf64ec9997944ac22e1e.jpg", - "response": "The image shows two workers in yellow safety vests and helmets standing on a large transformer. The worker on the left is wearing a yellow vest with the number 25 on it. The worker on the right is wearing a red vest with the number 35 on it. They are both wearing black pants. The worker on the right is also wearing a pair of orange headphones. The worker on the left is holding a large tool in his right hand, while the worker on the right is holding a tool in his left hand. They are both looking at the large transformer with focused expressions on their faces. The transformer is white in color and is located between two utility poles. The background shows a part of a building with windows.", - "id": 25989 - }, - { - "image_path": "G:\\images\\combined\\000003_jpg.rf.254a04cfb2f0a4084cea62de85baefa1.jpg", - "response": "The photo shows five workers in blue uniforms and hard hats standing around a square hole in the ground. They are holding shovels and a large pipe. To the left of the frame is a black car with a white roof, and in the background on the right is a large truck. The sky is grey and overcast.", - "id": 25990 - }, - { - "image_path": "G:\\images\\combined\\000003_jpg.rf.a81b451c066846da27075b2c088db81e.jpg", - "response": "The image shows five workers in blue uniforms and safety helmets who are working at a construction site. They are standing around a square pit in the ground. One of them is holding a large pipe with both hands, while the other four are watching the process. There is a red arrow pointing towards the pit in the ground. On the left side of the image, there is a black car with a dent on its left side. The workers are wearing white shoes. In the background, there is a large truck and a tower.", - "id": 25991 - }, - { - "image_path": "G:\\images\\combined\\000005_jpg.rf.24f0ce3b6336b251055d5642e59bb4cb.jpg", - "response": "In the image two workers are seen wearing red helmets and white protective clothing. They are repairing an electricity pylon with tools. The sky is blue and clear.", - "id": 25992 - }, - { - "image_path": "G:\\images\\combined\\000005_jpg.rf.d371921d3cf87785fcfab18f5ff0fb15.jpg", - "response": "In the image two workers are fixing an electricity cable. They are wearing grey uniforms and red helmets. The workers are on a platform and they are using tools to fix the cable.", - "id": 25993 - }, - { - "image_path": "G:\\images\\combined\\000007_jpg.rf.2441fe009db7b4fd291222dda5981cfe.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 25994 - }, - { - "image_path": "G:\\images\\combined\\000007_jpg.rf.b766b2ef39009e446cd58e199cfc8ca0.jpg", - "response": "A picture of several men in white shirts and yellow hard hats.", - "id": 25995 - }, - { - "image_path": "G:\\images\\combined\\000007_jpg.rf.bbaba9e03b3048f41ed7a7d937d20959.jpg", - "response": "A black and white photo of a group of men in hard hats standing together. Some of the men are wearing ties and the man in the center is wearing a white shirt.", - "id": 25996 - }, - { - "image_path": "G:\\images\\combined\\000008_jpg.rf.146cd48957e10e73533d1d6f99533f07.jpg", - "response": "A group of rescue workers in orange jumpsuits remove a body from a hole in the ground. The hole is in the process of being enlarged by wooden boards and a jack. The workers are using shovels and their hands to dig into the hole.", - "id": 25997 - }, - { - "image_path": "G:\\images\\combined\\000008_jpg.rf.c5c65a242a35f1df6405c97405115570.jpg", - "response": "The image is a black and white photograph of a group of men working in a pit. They are wearing hard hats and the men in the center of the group are wearing backpacks. The men are standing around the edge of the pit, which is filled with dirt and debris. There are also several pieces of wood and debris scattered around the pit.", - "id": 25998 - }, - { - "image_path": "G:\\images\\combined\\000008_jpg.rf.c638138a6c08c8b4b9c40f4b29be146f.jpg", - "response": "The image shows a group of firefighters in orange uniforms working to rescue a person trapped in a large pit. The firefighters are standing at various angles around the pit, which is filled with dirt and debris. Some of them are using tools to dig and rescue the person. A large concrete slab is visible at the top of the pit, and there are several wooden poles and a metal ladder placed around the pit. Some other people are standing at the top of the pit, watching the rescue efforts.", - "id": 25999 - }, - { - "image_path": "G:\\images\\combined\\000009_jpg.rf.784ed1255a7d33d13457f4b5e0e17edd.jpg", - "response": "A worker on a small lift repairs a street light.", - "id": 26000 - }, - { - "image_path": "G:\\images\\combined\\000009_jpg.rf.c8b3f9e821d7156294108432dbdbecdd.jpg", - "response": "A worker on a small lift repairs a sign.", - "id": 26001 - }, - { - "image_path": "G:\\images\\combined\\000010_jpg.rf.124004f1652aa5823c4e9cc036b9fa6d.jpg", - "response": "A black and white image of a group of six men walking in a line across a desert landscape. They are all wearing high visibility vests and hard hats. The men are all wearing dark trousers and shirts, and the man in the foreground is also wearing a tie. They are all walking in a line across the ground, which is covered in small stones and there are a few large rocks in the background. In the sky above, there are a few birds flying.", - "id": 26002 - }, - { - "image_path": "G:\\images\\combined\\000010_jpg.rf.23e19a4c741e365af6b7e14523d2a4bf.jpg", - "response": "The image shows a group of five people walking together in a construction site. They are all wearing hard hats and high visibility vests. The man on the far left is wearing a grey vest and a red helmet, the second person from the left is wearing a blue vest and a blue helmet, the third person is wearing an orange vest and a blue helmet, the person in the middle is wearing a yellow vest and a blue helmet, and the man on the far right is wearing a white shirt and a blue helmet. They are all walking on a dirt path that is to the left of a pile of dirt and construction materials. In the background, there is a bridge that is under construction.", - "id": 26003 - }, - { - "image_path": "G:\\images\\combined\\000011_jpg.rf.48858ebfa1b373fc9d4a43eac037e731.jpg", - "response": "A group of people walking in front of a tall building under construction.", - "id": 26004 - }, - { - "image_path": "G:\\images\\combined\\000011_jpg.rf.91d5ff947797ea95e1fec02577200472.jpg", - "response": "The image is a black and white photograph of a group of men walking in a line across a street. They are all wearing hard hats and several of them have ties. In the background, there is a building under construction. To the far left, there is a banner with Chinese writing on it. In front of the banner, there is a group of people standing under a walkway that has Chinese writing on it as well.", - "id": 26005 - }, - { - "image_path": "G:\\images\\combined\\000011_jpg.rf.9e7fdba12c5eb137a1ca43f17afc29e2.jpg", - "response": "a group of people walking through a gate that says \u6c5f\u82cf\u7701\u82cf\u4e2d\u5efa\u8bbe\u96c6\u56e2\u6709\u9650\u516c\u53f8 on it", - "id": 26006 - }, - { - "image_path": "G:\\images\\combined\\000012_jpg.rf.8b72d7dd60cfb785d0c04c8bd21a1329.jpg", - "response": "In the image there is a construction site with multiple workers. In the foreground, there is a worker in a blue shirt and a yellow helmet welding two metal bars together. To the right of the worker, there is another worker in a red shirt and yellow helmet standing next to a concrete pile. Further to the right, there are two more workers, one in a yellow shirt and yellow helmet and another in a black shirt and yellow helmet. They are working on a structure made of concrete. In the background, there is a blue sky with clouds.", - "id": 26007 - }, - { - "image_path": "G:\\images\\combined\\000012_jpg.rf.8bb1ea9c5059d2ebae9df164aae814ca.jpg", - "response": "In the image there is a construction site with multiple workers. In the foreground, there is a worker in a blue shirt and yellow hard hat, welding rebar for a building. To the right of the worker, there is a worker in a red shirt and yellow hard hat, standing behind a\u7f51\u683c of steel. In the background, there is a worker in a black shirt and yellow hard hat, standing on a platform. In the far distance, there is a worker in a white shirt and black hat, standing on a platform. In the bottom right corner of the image, there is a pile of red bricks.", - "id": 26008 - }, - { - "image_path": "G:\\images\\combined\\000013_jpg.rf.4633bcf314a5658362d24809cc6bb604.jpg", - "response": "A man in a red hard hat is welding some steel.", - "id": 26009 - }, - { - "image_path": "G:\\images\\combined\\000014_jpg.rf.358c2aef247831f21fcff2c2834fb2e0.jpg", - "response": "A group of people working on a construction site.", - "id": 26010 - }, - { - "image_path": "G:\\images\\combined\\000014_jpg.rf.4aa5ccc51ec1e970aad016268846e3b1.jpg", - "response": "A group of workers(414,414),(754,845)(598,301),(813,595)(899,284),(997,467)(784,283),(901,468) working on a construction site", - "id": 26011 - }, - { - "image_path": "G:\\images\\combined\\000014_jpg.rf.55dab990a47efcf3be4525f391f1b114.jpg", - "response": "A group of workers are working on a construction site. They are wearing hard hats and are focused on their tasks. Some of them are sitting on a steel bar, while others are standing. The workers are smiling, and one of them is even laughing. The atmosphere seems to be positive and the workers seem to be enjoying their work.", - "id": 26012 - }, - { - "image_path": "G:\\images\\combined\\000015_jpg.rf.85197c5dd449ff2e77e5dccaffafacae.jpg", - "response": "In the image, there is a factory scene with two workers present. One worker is standing to the right of the image, wearing a red helmet and dark clothes, and the other worker is standing further back in the image, wearing a white helmet and light-colored clothes. The main focus of the image is a factory room with a robot in the center, which is welding two pieces of metal together. The welding light is bright and shiny, and there are sparks flying. The walls of the factory room are made of glass, and there are Chinese characters written on the glass. On the right side of the factory room, there is a banner with English writing that says \"Boiler body Welding\". In the foreground, there is a bench with a yellow and black sign on it that says \"Safety shoes\". On the right side of the image, there is a machine with a red light on it.", - "id": 26013 - }, - { - "image_path": "G:\\images\\combined\\000015_jpg.rf.a8bda17c4eaf2baac9d315e7e4f2c45c.jpg", - "response": "In the image, there is a factory scene with workers and machines. A worker is standing in the lower right corner of the image, wearing a red helmet and white working clothes. Another worker is wearing a red helmet and white working clothes in the lower left corner of the image. In the upper right corner of the image, there is a sign that says \"Boiler body Welding\". There are also several other signs in the scene. In the middle of the image, there is a robot welding a boiler body. The background is a large window.", - "id": 26014 - }, - { - "image_path": "G:\\images\\combined\\000016_jpg.rf.590cef14f6fcd13b066e263b41dda673.jpg", - "response": "a man wearing a red hard hat and a white shirt", - "id": 26015 - }, - { - "image_path": "G:\\images\\combined\\000016_jpg.rf.95e4d235a51b3aeb38516fad07f143d2.jpg", - "response": "a man wearing a hard hat and holding a tool", - "id": 26016 - }, - { - "image_path": "G:\\images\\combined\\000017_jpg.rf.8d7e4f762b44fda6adfb4aec30f2249c.jpg", - "response": "A man wearing a blue hard hat and work gloves is holding a coiled up orange and black cable. He is standing on a sidewalk next to a stone wall. There are several potted plants on the wall behind him. To his right is a white car.", - "id": 26017 - }, - { - "image_path": "G:\\images\\combined\\000018_jpg.rf.769f3f5f84d7a5a74a5a838fac3ad1cd.jpg", - "response": "A group of men standing on a train car.", - "id": 26018 - }, - { - "image_path": "G:\\images\\combined\\000018_jpg.rf.abb9864505276e94f9df9b5216e8377f.jpg", - "response": "A train with workers on it and power lines above it.", - "id": 26019 - }, - { - "image_path": "G:\\images\\combined\\000019_jpg.rf.1c4b572dbea191f559cad28efcd5f8fa.jpg", - "response": "The image shows a group of six men standing in front of a construction site. The man second from the left is wearing a grey shirt and black pants. The man on the far right is wearing a black shirt and grey pants. The man in the middle is wearing a red shirt and black pants. The man on the far left is wearing a white shirt and grey pants. The man on the far right is wearing a black shirt and grey pants. In the background, there is a white shed and a blue building.", - "id": 26020 - }, - { - "image_path": "G:\\images\\combined\\000020_jpg.rf.83085407924830977dbcd30a7a93423b.jpg", - "response": "A construction worker in a yellow hard hat is standing on a scaffold and pointing towards something in the distance. Another worker is visible, standing further back and wearing a yellow hard hat. They are both wearing grey coveralls.", - "id": 26021 - }, - { - "image_path": "G:\\images\\combined\\000020_jpg.rf.a7463ba425e2ec8bcffe62a434550293.jpg", - "response": "A construction worker standing on scaffolding pointing to the sky.", - "id": 26022 - }, - { - "image_path": "G:\\images\\combined\\000020_jpg.rf.cffe5007d2a6636588ae736301e144e2.jpg", - "response": "A man standing on a scaffold reaching out to another man.", - "id": 26023 - }, - { - "image_path": "G:\\images\\combined\\000021_jpg.rf.76292278016dc8c5c7197182280e85f2.jpg", - "response": "A man in a yellow jacket and a hard hat is looking at another man who is holding a tablet. The man in the hard hat is in front of a concrete wall with pipes going through it.", - "id": 26024 - }, - { - "image_path": "G:\\images\\combined\\000021_jpg.rf.fad82d793e72124ecc1477032d9ab66f.jpg", - "response": "A man in a hard hat and high visibility vest is looking at a man holding a tablet. The man in the vest is looking at the camera. They are both standing in a warehouse.", - "id": 26025 - }, - { - "image_path": "G:\\images\\combined\\000022_jpg.rf.7c37a93cdba34841886fd0cc1349203c.jpg", - "response": " Men(276,428),(424,997)(408,409),(538,997)(68,408),(243,996)(497,350),(641,996) in hard hats and camouflage standing in a mine shaft.", - "id": 26026 - }, - { - "image_path": "G:\\images\\combined\\000023_jpg.rf.8e562754d48f1cfdb3f03247bd6d705f.jpg", - "response": "A black and white photo of a group of people walking towards a van. The van is positioned on the left hand side of the image and the group is walking away from it. There are at least 12 people in the group, some of which are wearing suits. The person in the foreground is wearing a dark suit and carrying a backpack. There is a handbag on the ground in front of the person in the foreground. The group is walking on a tarmac surface.", - "id": 26027 - }, - { - "image_path": "G:\\images\\combined\\000023_jpg.rf.9331fe9ac8901b0546da14b4a0569eb9.jpg", - "response": "a group of people walking in front of a van", - "id": 26028 - }, - { - "image_path": "G:\\images\\combined\\000024_jpg.rf.7a910ba9cce70d73cf50f369997ed67d.jpg", - "response": "A group of people wearing hard hats(137,11),(328,187)(616,18),(697,107) and orange or blue work clothes are working on a piece of equipment. They are using a small red tractor to lift a large piece of metal.", - "id": 26029 - }, - { - "image_path": "G:\\images\\combined\\000025_jpg.rf.159de1946151f06feadd9527b0598780.jpg", - "response": "A black and white photo of four men standing on a construction site, three of them are wearing hard hats and high visibility vests. They are looking at a blueprint that is held up by one of the men on the right.", - "id": 26030 - }, - { - "image_path": "G:\\images\\combined\\000025_jpg.rf.3bfe0a9750738ea7bdd0166b1da81c2e.jpg", - "response": "Three men in construction gear, hard hats and yellow vests, are looking at blueprints in a construction site.", - "id": 26031 - }, - { - "image_path": "G:\\images\\combined\\000025_jpg.rf.64660dc25f6601080caa4e4d2adc6881.jpg", - "response": "Three men in construction gear standing on a construction site looking at a blueprint.", - "id": 26032 - }, - { - "image_path": "G:\\images\\combined\\000026_jpg.rf.ffba30613c6432a74166ad645a931e28.jpg", - "response": "In the image, there are two people wearing yellow reflective vests and helmets, pointing to a large cargo ship in the background. The person on the left is holding a walkie-talkie and has a cell phone at their ear. The person on the right is holding a clipboard. The ship is white and blue and is docked at a loading bay. There are some buildings visible in the background, with the one on the far left being smaller and made of brick, and the one in the center being larger and made of concrete. The sky above is white and overcast.", - "id": 26033 - }, - { - "image_path": "G:\\images\\combined\\000027_jpg.rf.2939ac2b6bbf58e6d8c17a5361216014.jpg", - "response": "The photo shows a group of men standing on a large rock, which is covered in blood. The men are wearing jeans, shirts, and hats, and appear to be working on a construction project. The rock is brown and appears to be made of concrete. The photo is taken underground, and there are railings visible in the background. The lighting in the photo is dim, and there are several spots of blood on the ground.", - "id": 26034 - }, - { - "image_path": "G:\\images\\combined\\000027_jpg.rf.8afde33dee36e5824d54efbca81ada90.jpg", - "response": "The photo is a black and white photograph of a group of men working in a stone cave. They are standing on a large rock in the middle of the cave and appear to be working on a structure made of wooden beams and planks of wood. The men are wearing hats and the cave has a very low ceiling.", - "id": 26035 - }, - { - "image_path": "G:\\images\\combined\\000028_jpg.rf.603bac459dd764f5efcec327520f3cf8.jpg", - "response": "A group of linemen are working on power lines.", - "id": 26036 - }, - { - "image_path": "G:\\images\\combined\\000029_jpg.rf.2ef0054f347336c78809282fe80916f8.jpg", - "response": "A construction site with two workers in orange vests and yellow and orange hard hats. They are working on a pole with a concrete mixer behind them.", - "id": 26037 - }, - { - "image_path": "G:\\images\\combined\\000029_jpg.rf.5132d20379bd87e41b3dc69a5505bec2.jpg", - "response": "A construction site with two workers in orange vests and yellow and orange hard hats. They are working on a pole in the center of the image. There is a purple hose connected to the pole. In the background, there are buildings and other construction equipment.", - "id": 26038 - }, - { - "image_path": "G:\\images\\combined\\000030_jpg.rf.c9ef02c958cc885fe9742124a3b4cdb0.jpg", - "response": "A group of men in business attire standing around a fountain.", - "id": 26039 - }, - { - "image_path": "G:\\images\\combined\\000031_jpg.rf.2f2fbfbc728ef4da156d5177717eb0cf.jpg", - "response": " Men(571,604),(700,997)(357,262),(492,576)(617,233),(692,446) working in a tunnel", - "id": 26040 - }, - { - "image_path": "G:\\images\\combined\\000032_jpg.rf.5bea43a3def760f81b613ce3c358b012.jpg", - "response": "A pair of workers wearing yellow hard hats sit on a pile of train tracks. The one on the left is facing the camera and is wearing a dark blue shirt and a yellow hard hat. The one on the right is facing the other way and is wearing a light blue shirt and a yellow hard hat. The background is a jumble of dark grey train tracks and a wall of grey concrete. There is a white glare on the left side of the image.", - "id": 26041 - }, - { - "image_path": "G:\\images\\combined\\000032_jpg.rf.c151d8265ca7efb381a0b476ac454a59.jpg", - "response": "A pair of workers wearing yellow hard hats are sitting on train tracks. They are both wearing blue shirts and the one on the right has a yellow hard hat with a blue stripe. The man on the left is wearing a yellow hard hat with a red stripe. The sky is dark and there is a yellow circle around the top left of the image.", - "id": 26042 - }, - { - "image_path": "G:\\images\\combined\\000034_jpg.rf.348254e383634cc6863cc6265e91383f.jpg", - "response": "A worker wearing a yellow helmet is welding steel bars inside a factory.", - "id": 26043 - }, - { - "image_path": "G:\\images\\combined\\000035_jpg.rf.9e5c5ab0930442cfbe9bb255df1edb34.jpg", - "response": "A man in a suit and red hard hat walks in front of a cage of rebar.", - "id": 26044 - }, - { - "image_path": "G:\\images\\combined\\000036_jpg.rf.26319f8e43ab464797acc4c5404b94bf.jpg", - "response": "A Marine is given a shot of morphine during the battle for Hue, Vietnam, in 1968.", - "id": 26045 - }, - { - "image_path": "G:\\images\\combined\\000036_jpg.rf.3b04f7ddbef2fbc72c0fc51c2803e75c.jpg", - "response": "A group of men(181,336),(957,935)(74,109),(402,793)(420,125),(956,928) working together to move a large tree.", - "id": 26046 - }, - { - "image_path": "G:\\images\\combined\\000037_jpg.rf.07b685260a3e9d16e89858f42d8f523e.jpg", - "response": "A man wearing a yellow vest and a white helmet is using a tool to attach bricks to a wall. The wall is made of red bricks and is not yet fully built. The man is in a construction site with a building in the background. There is a blue sky above and a red flag is stuck in the ground.", - "id": 26047 - }, - { - "image_path": "G:\\images\\combined\\000037_jpg.rf.8796f276b956aa144bdebdbb7ef2dc22.jpg", - "response": "A man in a white hard hat and white overall is placing bricks on a brick wall. He is holding a trowel in his right hand and there is a brick on his left hand. He is standing in front of a pile of bricks and there is a house in the background.", - "id": 26048 - }, - { - "image_path": "G:\\images\\combined\\000038_jpg.rf.cd357ef2fbc65c08c187c404a29e1fc3.jpg", - "response": "In the image there are two workers wearing blue and yellow helmets. They are working on a large piece of industrial equipment that resembles a giant metal drawer or safe. The workers are standing behind the equipment and appear to be installing or fixing it. There are several metal disks or round parts inside the equipment.", - "id": 26049 - }, - { - "image_path": "G:\\images\\combined\\000039_jpg.rf.247c5e99a077dec50858e6a5d22aa212.jpg", - "response": "A construction worker wearing a yellow helmet is working on a building. The building is made of concrete and has a scaffolding around it. The worker is on the scaffolding, working on the side of the building. There is another worker further back in the image. In the background, there is a tower crane operating in the construction site.", - "id": 26050 - }, - { - "image_path": "G:\\images\\combined\\000039_jpg.rf.bc31f8ee02711388993aa8d48c867291.jpg", - "response": "A construction worker wearing a hard hat is on a ladder, working on a scaffold. He is standing on a platform and is surrounded by scaffolding. He is pouring a concrete wall and is in the process of putting down rebar.", - "id": 26051 - }, - { - "image_path": "G:\\images\\combined\\000040_jpg.rf.0f5f3a5d9a446fcf98f4777611969c9b.jpg", - "response": "A train on a track with three men working on a lift above it.", - "id": 26052 - }, - { - "image_path": "G:\\images\\combined\\000040_jpg.rf.757989d5ba99efb132935c61f8d6e2c3.jpg", - "response": "A black and white photo of a train yard. There are two trains on the tracks, one in the foreground and one in the background. The trains are electric and appear to be of a modern design. There are three men visible in the photo, one on the left side of the image, one in the center, and one on the right side. They appear to be working on the trains.", - "id": 26053 - }, - { - "image_path": "G:\\images\\combined\\000040_jpg.rf.bf201a653eee6be47ecbbf0db54804f7.jpg", - "response": "A black and white photo of a train yard. There are two trains on the tracks, one on the left and one on the right. They are both white and appear to be stopped. There are three people visible in the photo, one on the left, one in the middle, and one on the right. They appear to be working on the trains. There is a sign above the left train that says \"03-16\". There are also two power poles visible on the left side of the photo.", - "id": 26054 - }, - { - "image_path": "G:\\images\\combined\\000041_jpg.rf.02342639c81808f703b559cd4d7d929b.jpg", - "response": "A black and white photo of a group of people standing outside near a bus. Some people are wearing ties and the bus is a white van. There are also some buildings in the background.", - "id": 26055 - }, - { - "image_path": "G:\\images\\combined\\000041_jpg.rf.52ece3db67924595e0db5faf96e40672.jpg", - "response": "@\u798f\u5dde\u6e05\u534e\u7d2b\u5149\u79d1\u6280\u56ed several men in suits and hard hats", - "id": 26056 - }, - { - "image_path": "G:\\images\\combined\\000043_jpg.rf.1b931ec5024009f8a0e01f2f342ca67f.jpg", - "response": "A group of three men standing inside a room.", - "id": 26057 - }, - { - "image_path": "G:\\images\\combined\\000044_jpg.rf.2638037eb1180e205bf884682ee20c73.jpg", - "response": "A man in a red shirt is adjusting the blue hard hat of another man.", - "id": 26058 - }, - { - "image_path": "G:\\images\\combined\\000045_jpg.rf.4b7a8736c3cc7c5383f218d251709c08.jpg", - "response": "A worker wearing a hard hat and carrying a tool kit crouches down in a factory.", - "id": 26059 - }, - { - "image_path": "G:\\images\\combined\\000045_jpg.rf.4f46b8102d46e896edf442deb90644ac.jpg", - "response": "A worker in a hard hat and coveralls squats on the floor, holding a metal pipe with a handheld torch. The sparks from the torch are flying in all directions.", - "id": 26060 - }, - { - "image_path": "G:\\images\\combined\\000046_jpg.rf.0080c62c4fe859dc3283fa763c378fec.jpg", - "response": "A group of men wearing hard hats stand in a tunnel.", - "id": 26061 - }, - { - "image_path": "G:\\images\\combined\\000046_jpg.rf.9b577803cc8033bea2fddd753e554fd6.jpg", - "response": "a group of people standing inside a cave.", - "id": 26062 - }, - { - "image_path": "G:\\images\\combined\\000048_jpg.rf.4e8835b88c7db4fe5ad705772b9d83a7.jpg", - "response": "a group of men standing around talking to each other", - "id": 26063 - }, - { - "image_path": "G:\\images\\combined\\000049_jpg.rf.2f39773ecced21f18bbb97ebe4a83d21.jpg", - "response": "A pair of electricians work on fixing some power lines.", - "id": 26064 - }, - { - "image_path": "G:\\images\\combined\\000049_jpg.rf.ac3876c3e0f4ea51a09ed86b5a80dc63.jpg", - "response": "The image shows two workers on a roof, repairing some power lines. One worker is on the left side of the image, climbing up a ladder, and the other one is in the middle of the image, working on the power lines. Both of them are wearing white and blue uniforms. The left worker is also wearing a blue cap. The worker in the middle is holding a tool in his right hand, and there are many wires and cables connected to a box at the lower right corner of the image.", - "id": 26065 - }, - { - "image_path": "G:\\images\\combined\\000050_jpg.rf.3316e58b05b88a6a5ceec09770584670.jpg", - "response": "A man in a blue shirt and grey pants is using a saw to cut through a piece of concrete. He is wearing a blue shirt, grey pants, and a blue hat. He is looking down at the saw and the piece of concrete.", - "id": 26066 - }, - { - "image_path": "G:\\images\\combined\\000050_jpg.rf.a3166479c1fe1c491ab474026d8cc15b.jpg", - "response": "A man in a white hat and black jacket is holding a skateboard in front of a tall building. The building is made up of many different sections of square windows. The man is standing on a street in front of the building and there is a small car parked on the street. The photo is in black and white.", - "id": 26067 - }, - { - "image_path": "G:\\images\\combined\\000050_jpg.rf.deb548a40ed2424c99d6a0456f5ff28f.jpg", - "response": "A man in a blue shirt and hat is using a saw to cut something.", - "id": 26068 - }, - { - "image_path": "G:\\images\\combined\\000052_jpg.rf.68d21e5cf882a7b5538237292ecffc8d.jpg", - "response": "A group of men stand around a large metal tower in the middle of a field. Some of the men are standing on the ground while others are climbing the tower. They are all wearing hard hats.", - "id": 26069 - }, - { - "image_path": "G:\\images\\combined\\000052_jpg.rf.9798273fd064cea6a4fb19a5f0d8d967.jpg", - "response": "A group of people standing around an electrical pole with multiple men wearing hard hats.", - "id": 26070 - }, - { - "image_path": "G:\\images\\combined\\000052_jpg.rf.b0d01308336447a2165991011034e250.jpg", - "response": "A group of people standing around an electrical pole with hard hats on.", - "id": 26071 - }, - { - "image_path": "G:\\images\\combined\\000054_jpg.rf.b0731de3f27cb3d6307df4f8be486b90.jpg", - "response": "A construction site with a yellow crane in the background.", - "id": 26072 - }, - { - "image_path": "G:\\images\\combined\\000054_jpg.rf.f1af1d650628aa6373eaf8ef537c4cac.jpg", - "response": "A construction site with a yellow crane in the background.", - "id": 26073 - }, - { - "image_path": "G:\\images\\combined\\000055_jpg.rf.0b03a25e4a922df4e032020fa095b996.jpg", - "response": "A man wearing a hard hat and high visibility vest stands on a construction site holding a set of plans.", - "id": 26074 - }, - { - "image_path": "G:\\images\\combined\\000055_jpg.rf.8c85669bef1829e5f8002599d384575b.jpg", - "response": "In the image a man wearing a yellow hard hat and a high visibility vest is holding a plan in front of a car. He is smiling at the camera.", - "id": 26075 - }, - { - "image_path": "G:\\images\\combined\\000056_jpg.rf.df446cd6b5c7145042e35098abc42c7a.jpg", - "response": "A group of people sitting around a table with papers and books in front of them.", - "id": 26076 - }, - { - "image_path": "G:\\images\\combined\\000058_jpg.rf.2d97b6aa7b701da415c39124f26d6a45.jpg", - "response": "A group of workers in yellow jackets and hard hats are working on a train track.", - "id": 26077 - }, - { - "image_path": "G:\\images\\combined\\000058_jpg.rf.42e7b43c482f97ebea32e038940bc9f2.jpg", - "response": "A black and white photo of a group of men working on a railroad track. They are wearing hard hats and vests. Some men are working on the track, using tools like hammers and wrenches. Others are standing around, watching the work being done. There are also a few people in the background, watching the whole scene.", - "id": 26078 - }, - { - "image_path": "G:\\images\\combined\\0000599864fd15b3.jpg", - "response": "A group of five people posing for a picture in front of a double decker bus.", - "id": 26079 - }, - { - "image_path": "G:\\images\\combined\\000059_jpg.rf.1f06b7af953737c260fd88d227918d17.jpg", - "response": "A group of three construction workers taking a break from work.", - "id": 26080 - }, - { - "image_path": "G:\\images\\combined\\000060_jpg.rf.86219ea52ed560d572cf828f239fd43a.jpg", - "response": "A man wearing a red hard hat standing in a house that is under construction. He is wearing a navy blue shirt and has his arms crossed in front of him.", - "id": 26081 - }, - { - "image_path": "G:\\images\\combined\\000060_jpg.rf.bd52d4d91c7ce9b355c2554149bcec1b.jpg", - "response": "A man wearing a red hard hat standing in a house that is under construction.", - "id": 26082 - }, - { - "image_path": "G:\\images\\combined\\000061_jpg.rf.24028e2dc50667453e8bb35d1a8b8d8e.jpg", - "response": "In the image, three rescue workers wearing orange suits are in the rubble of a destroyed building. Two of the workers are walking with rescue dogs, and all three are carrying rescue tools. The building in the background is destroyed, and there are personal belongings, such as a backpack and a handbag, scattered around the rubble.", - "id": 26083 - }, - { - "image_path": "G:\\images\\combined\\000061_jpg.rf.738fb75a7fc5aae7b88a2862cad89518.jpg", - "response": "In the image, we can see that it is likely an aftermath scene of a disaster, possibly a earthquake or some other type of disaster. In the scene, there are three rescue workers wearing orange outfits with white helmets and black shoes. They are walking through rubble, which is debris and other damaged materials. They are accompanied by three rescue dogs, who are wearing yellow vests. The dogs are also helping with the rescue efforts.", - "id": 26084 - }, - { - "image_path": "G:\\images\\combined\\000061_jpg.rf.bd056d8591fe7f3f81362fcd8b2c7701.jpg", - "response": "A group of rescue workers walking through rubble with two dogs.", - "id": 26085 - }, - { - "image_path": "G:\\images\\combined\\000062_jpg.rf.23396c4313ed127a3377cf9d262f34e0.jpg", - "response": "A construction worker in a yellow hard hat and green and yellow vest, is adjusting a red metal wall form. The worker is reaching up to a metal bar with a wrench. The worker is wearing a yellow hard hat and glasses. The worker is also wearing a yellow and blue vest. The worker is in a construction site with other workers in the background. There are many metal rods scattered around the site.", - "id": 26086 - }, - { - "image_path": "G:\\images\\combined\\000062_jpg.rf.23b35477962d405fe2c84865d12a2369.jpg", - "response": "A construction worker in a yellow hard hat and green safety vest is working on a construction site. He is adjusting a metal bar on a red and white structure. There are other workers in the background, some on the right side and some in the middle of the image. There are also some people in the far background on the right side of the image. There are several metal pipes in the scene, some are on the right side of the image and some are in the middle. There are also several pieces of rebar in the scene, some are on the right side of the image and some are in the foreground.", - "id": 26087 - }, - { - "image_path": "G:\\images\\combined\\000062_jpg.rf.5003c97929a90cb7a09d23d6414c21fe.jpg", - "response": "A worker at the construction site of the new library and learning campus in Putrajaya. - AZLINA ABDULLAH/THESUN/FILEPICTURE", - "id": 26088 - }, - { - "image_path": "G:\\images\\combined\\000063_jpg.rf.6ea36737298885a23759ce939ffca77a.jpg", - "response": "A couple of workers are cleaning the ground.", - "id": 26089 - }, - { - "image_path": "G:\\images\\combined\\000064_jpg.rf.0d5d8bedaacb92a5b6de5f9b1ff1d324.jpg", - "response": "A construction site with several people standing around. There are a few pillars in the background and a large concrete structure under construction. Some rebar is laid out on the ground and a few workers are wearing yellow hard hats.", - "id": 26090 - }, - { - "image_path": "G:\\images\\combined\\000064_jpg.rf.5616f0b882d269deff7274240d3d49e6.jpg", - "response": "In the image, there is a construction site with multiple workers present. The workers are wearing yellow helmets, and some of them are wearing white t-shirts. They are working on a building that has columns made of concrete. The building has a metal mesh structure on the ground floor, and some of the workers are standing on this metal mesh. The workers are of varying heights and positions, with some closer to the foreground and others further away. The scene is quite busy and active, with the workers focused on their tasks.", - "id": 26091 - }, - { - "image_path": "G:\\images\\combined\\000064_jpg.rf.ac51191a1f9142e47679fef0a57d25a7.jpg", - "response": "A black and white photo of a construction site. There are several people working on the site, some are standing and some are walking around. The ground is covered in rebar and steel mesh. There are several large concrete walls and pillars in the background. The photo is taken from an aerial view.", - "id": 26092 - }, - { - "image_path": "G:\\images\\combined\\000065_jpg.rf.e075eac66ba372f582f0573167dada68.jpg", - "response": "A group of men standing underneath a yellow crane.", - "id": 26093 - }, - { - "image_path": "G:\\images\\combined\\000066_jpg.rf.008091f0a3ea3b5a63ad711bd447e36d.jpg", - "response": "A man wearing a hard hat stands in front of a construction site. He is wearing a white shirt and has a large circular object on his left. He is leaning against a cement mixer.", - "id": 26094 - }, - { - "image_path": "G:\\images\\combined\\000066_jpg.rf.79589997535ea0c3474ffb4edd5536cd.jpg", - "response": "A man wearing a yellow vest and a white helmet is standing in a construction site. He is smiling and has one hand on a large concrete mixer and the other on a metal barrel. There is a tool in the foreground and a pile of sand in the background. The sky is grey and overcast.", - "id": 26095 - }, - { - "image_path": "G:\\images\\combined\\000067_jpg.rf.e92ab9ab32c4bd220b89a209b8616822.jpg", - "response": "a group of people walking through a building under construction", - "id": 26096 - }, - { - "image_path": "G:\\images\\combined\\000068_jpg.rf.203dbf1b32ad162837c9919b01e9385a.jpg", - "response": " Workers(382,32),(760,837)(169,213),(445,804)(79,272),(252,738)(2,356),(107,737) in China are seen working in the snow.", - "id": 26097 - }, - { - "image_path": "G:\\images\\combined\\000068_jpg.rf.70eed03c149b38d9624333e4e8b73065.jpg", - "response": "Firefighters from the London Fire Brigade train in the snow at Battersea, London, 1957. The training exercise was held in preparation for the Brigade's role in rescuing people during the winter weather.", - "id": 26098 - }, - { - "image_path": "G:\\images\\combined\\000068_jpg.rf.a8c4447df1e27a0746ee6f4831c99e33.jpg", - "response": "A group of men wearing hard hats are working together to pull a large piece of equipment. They are all dressed in dark clothing and some have their faces covered with scarves. The ground is covered in snow and they are standing in front of a tower.", - "id": 26099 - }, - { - "image_path": "G:\\images\\combined\\000069_jpg.rf.3ff3253344cd08247218237c7659e7f8.jpg", - "response": "The image shows two men working on a construction site in a rural area. They are standing on a large, rectangular foundation that has been dug out of the ground. The foundation appears to be made of concrete and is being built in a corner of a building site.", - "id": 26100 - }, - { - "image_path": "G:\\images\\combined\\000070_jpg.rf.2e91bf92e6500a099b1f4ddf2560785a.jpg", - "response": "A man sitting at a desk in a large control room.", - "id": 26101 - }, - { - "image_path": "G:\\images\\combined\\000070_jpg.rf.e87123f1a0da45f1564e2c95b74802e9.jpg", - "response": "A man sitting at a desk in a large control room.", - "id": 26102 - }, - { - "image_path": "G:\\images\\combined\\000071_jpg.rf.683ddf3d8eff78b21a54077730416455.jpg", - "response": "A group of people working on a bridge that is under construction.", - "id": 26103 - }, - { - "image_path": "G:\\images\\combined\\000071_jpg.rf.f1ddd514a3abce867aa77a4d7f2cee29.jpg", - "response": "A group of people working on a bridge.", - "id": 26104 - }, - { - "image_path": "G:\\images\\combined\\000072_jpg.rf.0c3c6827b044eb3d0766f6a735881fa1.jpg", - "response": "A power line technician wearing a tool belt and a red helmet is suspended in the air while climbing a telephone pole. He is wearing white gloves and is holding onto the power lines. The telephone pole is made of wood and has several wires attached to it. The sky is blue with a few thin clouds.", - "id": 26105 - }, - { - "image_path": "G:\\images\\combined\\000072_jpg.rf.b139d5ec750bd4383a8e006ac5c4c405.jpg", - "response": "A worker is suspended from a power line in the sky. He is wearing a blue jumpsuit and a red helmet. He is holding onto the power line with one hand and a tool in the other hand. There are many wires and power lines around him.", - "id": 26106 - }, - { - "image_path": "G:\\images\\combined\\000072_jpg.rf.b7f7bc887a91c4efda39a3c1e0a650ba.jpg", - "response": "A worker repairs a power line in a black and white photo.", - "id": 26107 - }, - { - "image_path": "G:\\images\\combined\\000073_jpg.rf.3791857ec2383ca263bcd7acb6e23e75.jpg", - "response": "The image shows a group of construction workers working on a building site. They are all wearing hard hats and are standing in a large pit of dirt. Some of the workers are using shovels to dig and pour concrete. There are several people in the pit, with some standing close to the foreground and others further back. A few workers are also standing on the ground outside the pit.", - "id": 26108 - }, - { - "image_path": "G:\\images\\combined\\000073_jpg.rf.51c169c53c62bf96e8dc4af74654ab13.jpg", - "response": "The image shows a group of construction workers working on a building site. They are all wearing hard hats and are standing in a large pit of dirt. Some of them are using shovels to dig and move the dirt. In the background, there is a bridge or an overpass that appears to be under construction. The workers are scattered around the site, with some standing closer to the foreground and others further away.", - "id": 26109 - }, - { - "image_path": "G:\\images\\combined\\000074_jpg.rf.7f88c503d0ac42c5364d3ac0b8b29ae6.jpg", - "response": "An older man wearing a hard hat and coveralls stands in front of a factory floor with various pieces of machinery.", - "id": 26110 - }, - { - "image_path": "G:\\images\\combined\\000075_jpg.rf.31484e8a392d182451251f0a641e8711.jpg", - "response": "A group of people working on a construction site.", - "id": 26111 - }, - { - "image_path": "G:\\images\\combined\\000076_jpg.rf.1445121d237f8182bbfacbf6cbc09eb1.jpg", - "response": "A man in a hard hat and orange safety vest is working on a piece of machinery. He is standing on a platform and is in the process of turning a large wheel. He is wearing a uniform and appears to be focused on his task. There is a red and white truck in the background, and another person is visible in the distance. The sky is blue and clear, and there is a building visible to the left of the platform.", - "id": 26112 - }, - { - "image_path": "G:\\images\\combined\\000076_jpg.rf.c67bba8f5b5f357e9daa4485fc1739bd.jpg", - "response": "A man in a white hard hat is standing on top of a metal platform. He is wearing dark pants and a dark jacket. He is looking down at something. To his right, there is a tower with metal rungs leading up it. In the distance, there are two power lines.", - "id": 26113 - }, - { - "image_path": "G:\\images\\combined\\000076_jpg.rf.e3b9d22a7d21a9a47dc54b4fcd50739f.jpg", - "response": "A man in a orange hard hat and work clothes is working on a metal piece of equipment. He is wearing a black jacket and pants. He is standing on a large piece of machinery that looks like it could be a part of a oil rig. There is a red and white truck to the left of the man and another person is working in the background. The sky is blue and there are no clouds.", - "id": 26114 - }, - { - "image_path": "G:\\images\\combined\\000077_jpg.rf.dc9a02347ee78987535412c9d32c5563.jpg", - "response": "A group of men in hard hats stand in a construction site.", - "id": 26115 - }, - { - "image_path": "G:\\images\\combined\\000077_jpg.rf.dfe297f14e8f88c7a6a2b1ef927cbaca.jpg", - "response": "a group of men standing around each other", - "id": 26116 - }, - { - "image_path": "G:\\images\\combined\\000078_jpg.rf.5b660c0c24fdb0f96ecc710e75e3c744.jpg", - "response": "In the image there are two workers, both are wearing grey and yellow uniforms, grey and yellow helmets, and grey and yellow work boots. They are standing on a platform in a factory, the worker on the left is holding a yellow folder with some papers in it, the worker on the right is wearing green gloves. They are both looking at the camera and smiling. The background is a large factory building.", - "id": 26117 - }, - { - "image_path": "G:\\images\\combined\\000078_jpg.rf.8a0d762abf5e16937fc9a650ac3b096d.jpg", - "response": " Two engineers(208,318),(433,840)(399,309),(588,841) discussing a paper while standing on a platform in a factory", - "id": 26118 - }, - { - "image_path": "G:\\images\\combined\\000079_jpg.rf.00f9d7ab36b55caa4de405ea5969a5bc.jpg", - "response": "A man wearing a green hard hat and a red and black flannel shirt holds a long, thick wooden board in front of a stack of wooden boards. The man is standing in front of a stack of wooden boards that are as tall as he is. The boards are a mix of red and green, and they are arranged in stacks on the ground. The man is wearing white gloves and he is looking down at the board he is holding.", - "id": 26119 - }, - { - "image_path": "G:\\images\\combined\\000080_jpg.rf.119d3ba24f68494ec9e80ac4d5148a9f.jpg", - "response": "A group of people standing around a table with some food on it.", - "id": 26120 - }, - { - "image_path": "G:\\images\\combined\\000081_jpg.rf.0223f7d3e3915fbfb8f47c57fb2a773b.jpg", - "response": "A group of people standing around each other.", - "id": 26121 - }, - { - "image_path": "G:\\images\\combined\\000081_jpg.rf.4372af3f8d30cf93b48ea085c501e5ba.jpg", - "response": "A black and white photograph of a group of people standing in a public square. A man in a dark suit stands in the center of the frame, surrounded by other men in business suits. One man on the right is wearing a hard hat. A woman on the left is wearing a puffy jacket. The background includes a wall with Chinese characters and a poster with a picture of a group of people.", - "id": 26122 - }, - { - "image_path": "G:\\images\\combined\\000081_jpg.rf.d397996b97942309b6d83992588b518a.jpg", - "response": "A man in a red hard hat is talking to a group of people.", - "id": 26123 - }, - { - "image_path": "G:\\images\\combined\\000082_jpg.rf.b62f8f529b4562c7cb2e1e3ffe86b273.jpg", - "response": "A couple of men in blue work clothes and yellow hats are on a telephone pole.", - "id": 26124 - }, - { - "image_path": "G:\\images\\combined\\000083_jpg.rf.0babf67d2ea238765567b0bc97bd5ba1.jpg", - "response": "A black and white photo of two workers on a bridge. They are both wearing hard hats and one of them is also wearing a suit. They are both crouched down, working on the bridge. In the background, there are some power lines.", - "id": 26125 - }, - { - "image_path": "G:\\images\\combined\\000083_jpg.rf.cc75f3d83d6d35005ddc2c8986eb7a05.jpg", - "response": "A man in a black jacket and red hat is kneeling down next to a man in a orange jacket and red hat. They are both working on a train track.", - "id": 26126 - }, - { - "image_path": "G:\\images\\combined\\000084_jpg.rf.ad6d5461ff5f7bc550f88977f4374442.jpg", - "response": "A group of people wearing hard hats are walking together. Some of them are wearing red hard hats, some are wearing white hard hats, and one is wearing a blue hard hat. They are walking across a street, and there is a large red and white sign in the background that says \"\u8d2f\u5f7b\u6267\u884c\u300a\u6613\u53bf\u9ec4\u7cb1\u68a6\u5c71\u4f53\u516c\u56ed\u4fee\u5efa\u6027\u8be6\u7ec6\u89c4\u5212\u300b\" in white lettering.", - "id": 26127 - }, - { - "image_path": "G:\\images\\combined\\000084_jpg.rf.d81060786560797a7a1028828a24f829.jpg", - "response": "A group of people walking down a street.", - "id": 26128 - }, - { - "image_path": "G:\\images\\combined\\000085_jpg.rf.6d94eb845985e0505a389384811cb09d.jpg", - "response": "The image shows two women walking down a street under a black umbrella. The woman on the left is wearing a white shirt and grey shorts, while the woman on the right is wearing a yellow top and grey shorts. They are both carrying handbags. The street is quiet with only a few cars and a truck parked on the side. There are also a few pedestrians in the background. The sky is overcast and there is a hill in the distance.", - "id": 26129 - }, - { - "image_path": "G:\\images\\combined\\000086_jpg.rf.c1de32e6cd5a6708813e2ae9e4b80af4.jpg", - "response": "A couple of men are working on some power lines. They are standing on the power lines and are wearing helmets. They are in front of a building.", - "id": 26130 - }, - { - "image_path": "G:\\images\\combined\\000087_jpg.rf.9a7f095ee5ce9a6774f1b871fb95242a.jpg", - "response": "A man wearing a helmet and an orange vest is repelling down a waterfall.", - "id": 26131 - }, - { - "image_path": "G:\\images\\combined\\000088_jpg.rf.6b65cb060f912da31b978c980976cba5.jpg", - "response": "The image shows two workers in orange snowsuits and red helmets standing on a snow-covered slope. They are both holding onto a snow-covered fence and appear to be directing water from hoses onto the snow. In the background, there is a snow-covered mountain.", - "id": 26132 - }, - { - "image_path": "G:\\images\\combined\\000089_jpg.rf.5b85677b01b717d05faeb75491139e67.jpg", - "response": "A black and white photograph of three men working on a railway. The men are wearing helmets and overalls and are working on a railway carriage. One man is standing on the left holding a large object, possibly a pipe, and the other two men are working on the railway carriage in the background.", - "id": 26133 - }, - { - "image_path": "G:\\images\\combined\\000089_jpg.rf.8308d943e8ceebbe4a9b3b2f10526c9d.jpg", - "response": "The image shows a group of three men working on a construction site in a rocky area. They are wearing hard hats and one of the men is holding a large spool of wire. Another man is holding a blue bucket and there are two other men in the background. The sky is overcast and there are some flags in the background.", - "id": 26134 - }, - { - "image_path": "G:\\images\\combined\\000090_jpg.rf.336c16412f1a75947ef318950b6b0014.jpg", - "response": "A black and white photo of a group of men standing in a circle. They are all wearing striped shirts and hard hats. In the background, there are a few buildings under construction.", - "id": 26135 - }, - { - "image_path": "G:\\images\\combined\\000090_jpg.rf.6f6d54b8d8c26499e4f792b85f202702.jpg", - "response": "A group of men standing in a circle wearing hard hats", - "id": 26136 - }, - { - "image_path": "G:\\images\\combined\\000090_jpg.rf.a62cddef8109cec3ef3ce5508599e1d5.jpg", - "response": "A group of men standing in a circle, all wearing hard hats. They are all dressed in business attire. In the background there is a construction site with a few buildings under construction.", - "id": 26137 - }, - { - "image_path": "G:\\images\\combined\\000091_jpg.rf.415952644d22405c45cf460f96b2da8d.jpg", - "response": "The picture shows a group of people standing in front of a bus. Among them, there are two men in the focus of the picture, one on the left and one on the right. The one on the left is wearing a black suit and a black shirt, and has his hands behind his back. The one on the right is wearing a gray suit and a white shirt, and has his hands clasped in front of him. Both of them are looking to the right. In the background, there are several people in different colors of suits. On the right side of the picture, there is a white word \"\u8944\u967d\u623f\u7522\u71b1\u7dda\" and a green circle with a red border.", - "id": 26138 - }, - { - "image_path": "G:\\images\\combined\\000092_jpg.rf.1245b583c99fa60c19f622ada4019f75.jpg", - "response": "In the image two men are wearing blue overalls and yellow safety helmets. They are standing in a factory with a white helmet and a yellow helmet.", - "id": 26139 - }, - { - "image_path": "G:\\images\\combined\\000093_jpg.rf.15cbf3c7d87aebe506034dfb4d2e2da6.jpg", - "response": "A black and white image of two men standing in front of a house under construction. The man on the left is wearing a hard hat and holding a set of plans in his hand. The man on the right is wearing a suit and appears to be talking to the man on the left.", - "id": 26140 - }, - { - "image_path": "G:\\images\\combined\\000093_jpg.rf.63d0596bcd879d2add7eeb29d3cbdce1.jpg", - "response": "two men standing on a roof top", - "id": 26141 - }, - { - "image_path": "G:\\images\\combined\\000093_jpg.rf.7315ea0c29680ed083f2abd106215e99.jpg", - "response": "A man in a suit and tie standing on a ladder in front of a car.", - "id": 26142 - }, - { - "image_path": "G:\\images\\combined\\000094_jpg.rf.c8cb76f3243dc5eb0b36d1b99f983d1f.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are all focused on their work and appear to be skilled in their craft.", - "id": 26143 - }, - { - "image_path": "G:\\images\\combined\\000094_jpg.rf.f062c3fa4b75780c202e2c655a491811.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are building a structure with many metal bars and wires. Some of the workers are kneeling on the ground while working on the metal bars.", - "id": 26144 - }, - { - "image_path": "G:\\images\\combined\\000096_jpg.rf.1aabf4996d57defad028bf339a31d40e.jpg", - "response": "The image shows two workers preparing large black tubes or pipes for installation. The pipes are stacked in a pile on the ground and the workers are standing on either side of the pile, reaching in to stack the pipes. The scene is outdoors and there is a building in the background. The workers are wearing dark clothes and one of them is wearing a red and white cap.", - "id": 26145 - }, - { - "image_path": "G:\\images\\combined\\000096_jpg.rf.d4126a10a063c4e98a205e60d917e684.jpg", - "response": "The image shows two workers handling large black tubes, possibly pipes, on a city street. The workers are wearing safety gear and are in the process of stacking the large tubes. The photo appears to have been taken in China.", - "id": 26146 - }, - { - "image_path": "G:\\images\\combined\\000096_jpg.rf.d490190e1fa358dd29067631ae738c41.jpg", - "response": "The image is a black and white photograph of two men working with large metal cylinders. They are standing on a factory floor, surrounded by several large metal pipes. The men are bent over, working with the metal pipes, and both are wearing hats. One of the men is wearing a cap, and the other is wearing a visor. The background is a wall with signs on it.", - "id": 26147 - }, - { - "image_path": "G:\\images\\combined\\000097_jpg.rf.4f447f2a3ed399b1f8c11d4317922017.jpg", - "response": "A man wearing a yellow hard hat is sitting on a pile of rubble. He is wearing a white shirt and tan pants. There is a pile of bricks to his right and a pile of rubble to his left. There is a yellow and blue hard hat on top of the rubble next to him. There is a person wearing a yellow hard hat and orange vest to the left of the man. There is a brown building in the background.", - "id": 26148 - }, - { - "image_path": "G:\\images\\combined\\000097_jpg.rf.e9b93a486f49d7da2889082830cab9fe.jpg", - "response": "A woman sits on a pile of rubble, wearing a hat and a dress. She is surrounded by debris and there are two smaller figures in the foreground. A large building is visible in the background.", - "id": 26149 - }, - { - "image_path": "G:\\images\\combined\\000097_jpg.rf.f7fd60a2694ad03c26546b54556071f1.jpg", - "response": "A man wearing a yellow hard hat is sitting on a pile of rubble. He is wearing a white shirt and grey pants. There is a pile of bricks and concrete rubble in front of him. He is holding a shovel. There is a brown building in the background.", - "id": 26150 - }, - { - "image_path": "G:\\images\\combined\\000098_jpg.rf.06e920cc263e1775f41bdc69bce92f03.jpg", - "response": "A group of men standing on top of a unfinished building.", - "id": 26151 - }, - { - "image_path": "G:\\images\\combined\\000098_jpg.rf.0f556ddd58b879e2c3d77c622db003ab.jpg", - "response": "A group of men in shirts and ties stand on a construction site, surrounded by scaffolding. They are looking up at the metal framework of the structure.", - "id": 26152 - }, - { - "image_path": "G:\\images\\combined\\000099_jpg.rf.aebb9e531529abcac910d4cb14112c75.jpg", - "response": "A man in a white hard hat and glasses is crouched down in a room full of pipes. He is wearing a white lab coat and has a white helmet on. He is looking at the camera.", - "id": 26153 - }, - { - "image_path": "G:\\images\\combined\\0000e8b36676338b.jpg", - "response": "A black and white bus is parked on the grass.", - "id": 26154 - }, - { - "image_path": "G:\\images\\combined\\000100_jpg.rf.2e81765cf8e298d5a5f0433934e11e01.jpg", - "response": "A man in a green vest and white hard hat is working on a construction site. He is using a tool to press a block of concrete into place on a wall. There are other workers and construction equipment in the background.", - "id": 26155 - }, - { - "image_path": "G:\\images\\combined\\000100_jpg.rf.6d32dd07011221025106b845af05183c.jpg", - "response": "A man wearing a hard hat and high visibility vest working on a construction site. He is standing next to a large piece of wood and is holding it in his hands. In the background there are other people and machines.", - "id": 26156 - }, - { - "image_path": "G:\\images\\combined\\000101_jpg.rf.62fe8becce2865727d3a67735e2b2f55.jpg", - "response": "In the image there are two people wearing yellow helmets and grey uniforms. They are looking at a piece of paper. On the right side of the paper is a blackboard with some writing on it.", - "id": 26157 - }, - { - "image_path": "G:\\images\\combined\\000101_jpg.rf.f1f00cb7a9491e1bc51b9f4a7ddba190.jpg", - "response": "The image shows two men wearing yellow hard hats and grey uniforms. They are looking at a piece of paper together. One man is on the left and the other is on the right. They both seem to be discussing something.", - "id": 26158 - }, - { - "image_path": "G:\\images\\combined\\000102_jpg.rf.68b5aee86a3a27c11801537cf6844289.jpg", - "response": "A young boy wearing a red hard hat is sitting on a pile of rocks. He is covered in dirt and has a large red bandage on his right knee. He is wearing a brown shirt, brown pants and brown boots. Next to him is a pile of blue ropes and a pile of grey rocks.", - "id": 26159 - }, - { - "image_path": "G:\\images\\combined\\000103_jpg.rf.90bea5569936bf7916e23a9de27da76b.jpg", - "response": "A group of people standing around each other", - "id": 26160 - }, - { - "image_path": "G:\\images\\combined\\000103_jpg.rf.f887bea4196d30c8d7c15f64d67f9cd6.jpg", - "response": "A group of people standing around a construction site.", - "id": 26161 - }, - { - "image_path": "G:\\images\\combined\\000104_jpg.rf.4b7c05c77b0bf39178b0a97862fe90d5.jpg", - "response": "A group of workers fixing a large pipe in the ground.", - "id": 26162 - }, - { - "image_path": "G:\\images\\combined\\000104_jpg.rf.80028f9033595f37ba005002452acccd.jpg", - "response": "Men in hard hats work on a large pipe.", - "id": 26163 - }, - { - "image_path": "G:\\images\\combined\\000105_jpg.rf.006cb86fd5a3b1cb0565f5cfe6367ccf.jpg", - "response": " Surveyors(255,370),(472,997)(88,465),(239,997) working on the roof of the Forum building", - "id": 26164 - }, - { - "image_path": "G:\\images\\combined\\000106_jpg.rf.08bd782c9087ad306f837b5fb9b5ee71.jpg", - "response": "A construction worker is working on a construction site. He is wearing a blue uniform and a white hard hat. He is kneeling down and holding a long tool.", - "id": 26165 - }, - { - "image_path": "G:\\images\\combined\\000106_jpg.rf.5183f25eb88c53e21add61fe5975a9d4.jpg", - "response": "A man wearing a hard hat and carrying a tool walks past a large concrete structure.", - "id": 26166 - }, - { - "image_path": "G:\\images\\combined\\000107_jpg.rf.12ea8b17c8a8c3f47b7ec30da9057ae2.jpg", - "response": "A man standing in front of a tripod with a device on top.", - "id": 26167 - }, - { - "image_path": "G:\\images\\combined\\000107_jpg.rf.1c36ca489dc656ef885f58c3e521985c.jpg", - "response": "A man standing in front of a tripod with a device on top.", - "id": 26168 - }, - { - "image_path": "G:\\images\\combined\\000108_jpg.rf.e24693876471ee73d3538876e1771c9b.jpg", - "response": "The image is a black and white photo of men working on a house. There are four men in the photo, two of them are standing on ladders and the other two are working on the ground. The men are wearing hard hats and one of them is wearing a tie. The house is made of brick and has a porch. There is a tree in the background and some tools are scattered around the house.", - "id": 26169 - }, - { - "image_path": "G:\\images\\combined\\000109_jpg.rf.300c816d8ac2f779636eac9da5f87f29.jpg", - "response": "The image shows a worker in a factory. The worker is wearing a red hard hat, safety glasses, and blue coveralls. They are standing next to a large metal cylinder and are adjusting a valve on a nearby machine. The background is a bit blurry and there are several pipes visible in the factory.", - "id": 26170 - }, - { - "image_path": "G:\\images\\combined\\00010bf498b64bab.jpg", - "response": "A rainy city street filled with traffic.", - "id": 26171 - }, - { - "image_path": "G:\\images\\combined\\000110_jpg.rf.c7984c34b4d012a4818989ed49a6f083.jpg", - "response": "The image shows a group of men in blue work clothes and yellow hard hats, using sledgehammers and crowbars to break up a sidewalk. The men are standing in a pile of dirt and there are several cars nearby. The photo was taken at night and there are streetlights illuminating the scene.", - "id": 26172 - }, - { - "image_path": "G:\\images\\combined\\000111_jpg.rf.6a73cf18cf82ce83d17fda5f306b44b9.jpg", - "response": "A black and white photo of a group of men walking through a snowy forest. They are climbing over fallen trees and walking through the snow. Some of the men are wearing helmets and some are carrying backpacks.", - "id": 26173 - }, - { - "image_path": "G:\\images\\combined\\000111_jpg.rf.bb51be9d506dcf4759333f31b9fbc8d8.jpg", - "response": " Mountain rescue team(358,556),(468,712)(458,396),(569,677)(156,798),(254,997)(699,200),(776,403)(807,148),(892,268) in action after a snow storm", - "id": 26174 - }, - { - "image_path": "G:\\images\\combined\\000112_jpg.rf.57ab7055e26b7dfeb909aceacb1fecde.jpg", - "response": "A pair of workers stand on a railway track, one of them is using a tool.", - "id": 26175 - }, - { - "image_path": "G:\\images\\combined\\000112_jpg.rf.c7d3f5208749367363b1037e25661144.jpg", - "response": "The image shows an active construction site for a railway line. In the foreground, two workers can be seen wearing yellow hard hats and work clothes. They are standing on a section of train tracks, with one of them holding a tool. The sky above is blue with some white clouds. In the background, there are several metal frameworks of different sizes. Some of them are painted red and have a cage-like structure. A small building is visible to the far left of the image.", - "id": 26176 - }, - { - "image_path": "G:\\images\\combined\\000113_jpg.rf.0f76982b6cee7599aee9fa5d251e3ae8.jpg", - "response": "A black and white photo of three men in hard hats. They are standing in front of a building under construction. One man is carrying a bucket on his head. They are standing near a turnstile.", - "id": 26177 - }, - { - "image_path": "G:\\images\\combined\\000113_jpg.rf.865862900159d59af102f1908a4e6d34.jpg", - "response": "The image shows three men standing in a line, using their cell phones to scan a QR code at a turnstile. The turnstiles are made of silver metal and are in a white room. The men are all wearing construction hats and have green shirts. One of the men is on the left, in the middle is a man holding a phone, and on the right is another man. Behind the men, there is a blue wall with a white board on it. The white board has a white frame and is covered with text in red and black. On the right side of the room, there is a large white structure with a crane in the background.", - "id": 26178 - }, - { - "image_path": "G:\\images\\combined\\000114_jpg.rf.47dbcafe47dfafe061053546b6ec90ab.jpg", - "response": "A black and white photo of two men working on a construction site. They are both wearing hard hats and are standing on a rocky area. One man is using a sledge hammer to break up a large rock while the other man is crouching down next to him. In the background, there is a small excavator on a dirt road.", - "id": 26179 - }, - { - "image_path": "G:\\images\\combined\\000114_jpg.rf.78c03c71a63cf56709553813424a34a9.jpg", - "response": "A construction site with two men working on it.", - "id": 26180 - }, - { - "image_path": "G:\\images\\combined\\000115_jpg.rf.8f8fed7d893ec3754e59296f509ea3b1.jpg", - "response": "The image shows two men wearing hard hats, sitting outside, looking at a laptop. The man on the left is smiling and has his hands on the laptop keyboard. The man on the right is also smiling and looking at the laptop. They are both wearing green shirts and the man on the right is wearing a checkered shirt underneath. They seem to be construction workers taking a break and looking at the plans.", - "id": 26181 - }, - { - "image_path": "G:\\images\\combined\\000116_jpg.rf.88ef4f27a9bd20f7005d2c6463c72bf9.jpg", - "response": "In the image a construction worker is operating a drilling machine. The worker is wearing a yellow hard hat, orange safety vest and has a beard. The drilling machine is a large black machine with a drill head. The worker is holding the drill head with both hands. The background shows the worker in the middle of a construction site. There are two people in the background. The person closer to the right has long dark hair and is wearing a white shirt and dark pants. The person closer to the left is wearing a yellow hard hat and is not visible from the waist up. In the foreground on the right there is a section of light brown train tracks.", - "id": 26182 - }, - { - "image_path": "G:\\images\\combined\\000116_jpg.rf.f7966dcf522d29d870b5750f373c4fed.jpg", - "response": "In the image a construction worker is operating a drilling machine. The worker is female and wearing a yellow hard hat, orange safety vest and orange gloves. She is in the middle of drilling into a concrete wall. Another worker is visible in the background, they are also wearing a yellow hard hat and are partially obscured by the first worker and the drilling machine.", - "id": 26183 - }, - { - "image_path": "G:\\images\\combined\\000117_jpg.rf.7ae5a9fd32445cf5d3dc8031f2237a01.jpg", - "response": "A man in a blue shirt and a red hard hat points to something on a power pole.", - "id": 26184 - }, - { - "image_path": "G:\\images\\combined\\000119_jpg.rf.a6365871679c2aab06ec98e3219d26c9.jpg", - "response": "A man in a yellow shirt and black pants standing on a platform at a construction site.", - "id": 26185 - }, - { - "image_path": "G:\\images\\combined\\000119_jpg.rf.f2f08ca6a0f4309277618fc732002425.jpg", - "response": "A man in a yellow shirt and black pants is standing on a platform. He is holding a clipboard and a pen. He is also wearing a hard hat. The platform is on a construction site and there are stairs in the background.", - "id": 26186 - }, - { - "image_path": "G:\\images\\combined\\000120_jpg.rf.0ce7b40229d8f1cf628272a2c3e40f14.jpg", - "response": "A worker in a white jumpsuit and yellow hat is standing on a damaged power box at night. The power box is connected to several wires and appears to be damaged. The worker is standing on top of the power box, which is not a safe place to be.", - "id": 26187 - }, - { - "image_path": "G:\\images\\combined\\000121_jpg.rf.2118c52c0644b2078d57b4a4b74f4bd4.jpg", - "response": "A group of men standing around a glass display.", - "id": 26188 - }, - { - "image_path": "G:\\images\\combined\\000122_jpg.rf.fad6b35fd0243fadf29fb30cd70c4f95.jpg", - "response": "A young Asian male wearing a blue hard hat and a blue jacket.", - "id": 26189 - }, - { - "image_path": "G:\\images\\combined\\000123_jpg.rf.57e93c2ea32f49c09ff4cd79b6c7b28d.jpg", - "response": "a group of people standing in a unfinished room", - "id": 26190 - }, - { - "image_path": "G:\\images\\combined\\000124_jpg.rf.88c7281bda577e639104b21620132568.jpg", - "response": " Two linemen(98,153),(480,619)(378,10),(894,997) work on a power line", - "id": 26191 - }, - { - "image_path": "G:\\images\\combined\\000124_jpg.rf.e8ee11cc7b27108d0be994d41a71e6d2.jpg", - "response": "In the image two workers are fixing an electrical component. They are both wearing blue helmets and work aprons. The man on the left is holding a black and orange electrical device while the man on the right is connecting a black wire to the component. The sky is overcast and the workers are on a roof.", - "id": 26192 - }, - { - "image_path": "G:\\images\\combined\\000125_jpg.rf.48a5cf32009f1ebdcf91d137c2f665a5.jpg", - "response": "A worker is sitting on a scaffold, wearing a white hard hat and a white shirt. The worker is looking at something in his hand. The background is blurry, but there is a man in the background wearing a white hard hat and a dark shirt. There is a tower of scaffolding behind the worker.", - "id": 26193 - }, - { - "image_path": "G:\\images\\combined\\000126_jpg.rf.4b62c3472aaf2ab8317f0a86fac31e61.jpg", - "response": "Two men in hard hats stand in front of a drilling rig.", - "id": 26194 - }, - { - "image_path": "G:\\images\\combined\\000126_jpg.rf.c07bcdee11530bc4c0fca7ea4ca3bd3b.jpg", - "response": "In the image there are two people standing in front of a drilling rig. Both of them are wearing hard hats. One of the men is wearing a blue jacket and the other is wearing a white jacket.", - "id": 26195 - }, - { - "image_path": "G:\\images\\combined\\000127_jpg.rf.54e855f2feb69161aca4f3bc7119d486.jpg", - "response": "A group of people working on a construction site at night.", - "id": 26196 - }, - { - "image_path": "G:\\images\\combined\\000127_jpg.rf.abc979029849028803b28c32518e93af.jpg", - "response": "A group of people working on a construction site at night.", - "id": 26197 - }, - { - "image_path": "G:\\images\\combined\\000127_jpg.rf.b4eed4cbef7be2a134fd5fae7c4843d5.jpg", - "response": "The image shows a group of people working on a construction site at night. They are wearing hard hats and are standing around a pile of grey rebar, which is scattered across the ground. Some of the people are using long-handled tools, such as shovels, to work on the site. There is a yellow and black truck parked further back on the left side. The photo is taken from a low angle, looking up at the people and the building they are working on.", - "id": 26198 - }, - { - "image_path": "G:\\images\\combined\\000129_jpg.rf.300d68598c73a215a6b25b731c52136c.jpg", - "response": "A black and white photo of a construction site. In the foreground, two men in white hard hats are looking at the camera. They are standing on a wooden platform. In the background, a large building is under construction. There are three cranes working on it. The sky is grey and overcast.", - "id": 26199 - }, - { - "image_path": "G:\\images\\combined\\000129_jpg.rf.64c3c553c9e9c37ff68b40c1776757f5.jpg", - "response": "The construction site of the Yangzhou Grand Theater is under construction. In the picture, two construction workers are standing on the steel bars in the foreground, looking at the construction site. The Yangzhou Grand Theater is the largest theater in Yangzhou, with a total investment of 800 million yuan and a construction area of about 40,000 square meters. It includes a theater with a seating capacity of 1,800 and a conference center with a large conference hall and a small conference hall. The project is expected to be completed and put into use in 2013.", - "id": 26200 - }, - { - "image_path": "G:\\images\\combined\\00012db06b98f573.jpg", - "response": "A green SUV with a white top is parked in front of a garage. The SUV has a black top and is parked on the gravel. The garage door is closed and there is a number 708 above the garage door. There is a tree trunk in the foreground and a white car is parked behind the green SUV.", - "id": 26201 - }, - { - "image_path": "G:\\images\\combined\\000130_jpg.rf.0ea76bfa5ebff20a64c889210f917bd6.jpg", - "response": "The image shows a group of people in a room. They are all wearing blue jackets and white helmets. The people are gathered around a large device that looks like a turbine or propeller. The device is blue and has a large metal fan-like piece attached to it.", - "id": 26202 - }, - { - "image_path": "G:\\images\\combined\\000130_jpg.rf.fb0727490f39ce8c05862ba7584b52f0.jpg", - "response": "The image shows a group of people in a factory setting. They are all wearing white hard hats and work clothes. There are two blue machines in the foreground, which appear to be some sort of industrial equipment. A person is working on one of the machines, using a tool. Another person is holding a large propeller. In the background, there are several other people standing around, observing the scene. Some of them are wearing ties. The factory has a window in the background, letting in natural light.", - "id": 26203 - }, - { - "image_path": "G:\\images\\combined\\000131_jpg.rf.021fe8c2d02278793ce6a05a10970799.jpg", - "response": "A group of men in suits and hard hats", - "id": 26204 - }, - { - "image_path": "G:\\images\\combined\\000131_jpg.rf.c5fad8928695347532f978bb3b290a95.jpg", - "response": "The photo is in black and white. There are six people in the photo. They are all dressed in suits. The man in the middle is wearing a tie. They are talking in a construction site. In front of them is a white round table. On the table are several books and a bowl with a spoon in it. Next to the table is a white sign with a drawing of a soldier in a helmet on it. Under the sign are four Chinese characters. To the right of the sign is a high steel support column. To the left of the column is a white sign with a drawing of a helmet and several Chinese characters. Under the sign are three Chinese characters.", - "id": 26205 - }, - { - "image_path": "G:\\images\\combined\\000132_jpg.rf.8b32e6340fb056215f8af66c7e9fc3c1.jpg", - "response": "A group of people walking down a red carpet.", - "id": 26206 - }, - { - "image_path": "G:\\images\\combined\\000133_jpg.rf.1f289a150d6c8258fdf89ac5495d73b4.jpg", - "response": "A construction site with multiple people working on it.", - "id": 26207 - }, - { - "image_path": "G:\\images\\combined\\000135_jpg.rf.6e1ca5023ca4db07713e003f7986f8a0.jpg", - "response": "A black and white photo of workers inside a building. They are wearing hard hats and shoveling concrete.", - "id": 26208 - }, - { - "image_path": "G:\\images\\combined\\000135_jpg.rf.aac1582c6e0f458c017161af359460a2.jpg", - "response": "A black and white photo of a group of workers inside a building. They are all wearing hard hats and several of them are using shovels to move large amounts of sand.", - "id": 26209 - }, - { - "image_path": "G:\\images\\combined\\000136_jpg.rf.b4af07d15bcf83b0f0a643b550d6395d.jpg", - "response": "A man is painting the inside of a large cement structure that is curved on the inside. He is standing on a ladder and holding a pole with a brush on the end of it. He is wearing a hard hat and a grey shirt.", - "id": 26210 - }, - { - "image_path": "G:\\images\\combined\\000136_jpg.rf.f8fb62f220b9b8bb9cc43ac1abb76ba4.jpg", - "response": "A man is painting the inside of a large cement structure that is curved on the inside. He is wearing a hard hat and using a long brush to apply a green paint to the inside of the structure.", - "id": 26211 - }, - { - "image_path": "G:\\images\\combined\\000137_jpg.rf.2cf7d0749834b2e73d051779caa985ec.jpg", - "response": "A group of men in hard hats are gathered around a man who is laying on the ground. They are all looking at something the man on the ground is holding. There is a red and white hard hat on the ground in front of the man.", - "id": 26212 - }, - { - "image_path": "G:\\images\\combined\\000137_jpg.rf.58926eb7b1b88924f5c3efd8dccc676c.jpg", - "response": "A group of men in blue and red hard hats are standing around a man who is kneeling down. They are all looking at a piece of equipment that the man is holding. In the background, there is a tree and a yellow and black power box.", - "id": 26213 - }, - { - "image_path": "G:\\images\\combined\\000137_jpg.rf.6fefd616f226132aa6274bcc09af7246.jpg", - "response": "A man in a white shirt is standing in front of a group of men in hard hats. They are standing on a sidewalk in front of a building. There is a bicycle on the ground to the left of the man in the white shirt. There is a handbag on the ground to the right of the man in the white shirt. There is a ladder leaning against the building behind the men.", - "id": 26214 - }, - { - "image_path": "G:\\images\\combined\\000138_jpg.rf.1e2f6f3a9f33d25946c3cd071a8c8035.jpg", - "response": "A construction worker wearing a yellow hard hat stands in front of a large building under construction. The worker is facing away from the camera and is wearing a green jacket and camouflage pants. There are several other people scattered around the construction site, some of them are also wearing hard hats. In the background, a large crane can be seen working on the building. The sky is overcast and the ground is covered in small white flowers.", - "id": 26215 - }, - { - "image_path": "G:\\images\\combined\\000138_jpg.rf.650ba56ed9370bc3637d446c87cb518e.jpg", - "response": "A man in a yellow hard hat stands in front of a construction site. He is wearing a green jacket and has a yellow hard hat on. There are several cranes working in the background. There is a large white building under construction. There are several people scattered around the site, some are closer to the man and some are further away. There are also several pipes and rebar visible in the scene.", - "id": 26216 - }, - { - "image_path": "G:\\images\\combined\\000139_jpg.rf.20561552d1a0efe765229649a92874cb.jpg", - "response": "A group of four people stand in a construction site. They are all wearing black coats and hard hats. The man in the far left is wearing a blue hat and looking to the left. The man in the middle, who is pointing, is wearing a red hat. The man to the right of the man in the middle is wearing a gray hat and looking to the right. In the background, a partially constructed building is visible.", - "id": 26217 - }, - { - "image_path": "G:\\images\\combined\\000139_jpg.rf.72ff6281a08e65c81fdaffefa45c77c3.jpg", - "response": "A black and white photo of a group of men in hard hats standing on a construction site. They are standing on a wet surface and there are stacks of materials around them. In the background there is a building under construction.", - "id": 26218 - }, - { - "image_path": "G:\\images\\combined\\000140_jpg.rf.7fb0106bd1ce36229dd1982bf559b67d.jpg", - "response": "A construction worker is working on a high up construction site in the middle of a city. The worker is wearing a yellow hard hat and yellow vest. He is on a platform that is placed on top of a high up building. To his right is a grey building and to his left is a taller grey building. In the distance is the Shanghai World Financial Center and the Oriental Pearl TV Tower.", - "id": 26219 - }, - { - "image_path": "G:\\images\\combined\\000140_jpg.rf.8a108c6834db6ebc674718f8b8e5c9c0.jpg", - "response": "A man in a white shirt and grey pants is hanging from a wire in front of a tall building. He is wearing a harness and appears to be in the process of climbing the building. The background shows a cityscape with other tall buildings in the distance. There is a bridge visible in the foreground. The picture is in black and white.", - "id": 26220 - }, - { - "image_path": "G:\\images\\combined\\000141_jpg.rf.82fe19a52c77809b494af5f35485613b.jpg", - "response": "A black and white photo of a group of people standing in front of a bus.", - "id": 26221 - }, - { - "image_path": "G:\\images\\combined\\000141_jpg.rf.9f33283fa4109ec27ca7520a22b9a3b0.jpg", - "response": "a group of people standing outside in front of a van", - "id": 26222 - }, - { - "image_path": "G:\\images\\combined\\000142_jpg.rf.94dbf9dd956342d1ff8963246676e8a4.jpg", - "response": "A group of people working on a construction site, building a house.", - "id": 26223 - }, - { - "image_path": "G:\\images\\combined\\000143_jpg.rf.2feea3e7720714f39059d816954873b7.jpg", - "response": "A woman wearing a hard hat with two stacked on top of her head.", - "id": 26224 - }, - { - "image_path": "G:\\images\\combined\\000143_jpg.rf.d6d52703912640d815f02dd5e675604c.jpg", - "response": "A woman wearing a white hard hat and a yellow safety vest.", - "id": 26225 - }, - { - "image_path": "G:\\images\\combined\\000143_jpg.rf.e739b44ff0f786387f243e4844532ef5.jpg", - "response": "Three people are wearing hard hats and orange safety vests. They are at a construction site.", - "id": 26226 - }, - { - "image_path": "G:\\images\\combined\\000144_jpg.rf.cb03a4aba8cb9f48f5653b8d9e3ce3b1.jpg", - "response": "A man wearing a blue shirt, white gloves and a white hard hat is working on an electrical box. He is holding a blue handled wire cutter in one hand and is cutting a blue wire with it. He has another wire, red and black, plugged into the box. The man is standing in a yellow and white room.", - "id": 26227 - }, - { - "image_path": "G:\\images\\combined\\000144_jpg.rf.e4bf79ba5e07473b88631908a787cfb3.jpg", - "response": "A worker is repairing a machine. He is crouched and wearing a white shirt, a helmet, and glasses. He is holding a screwdriver and has a small tool in his other hand. He is working on a metal machine with a lot of wires and gears. The picture is in black and white.", - "id": 26228 - }, - { - "image_path": "G:\\images\\combined\\000145_jpg.rf.7130d3533f27d3e3cac65cd84d310b66.jpg", - "response": "In the picture there are two workers in the foreground wearing white hard hats and white uniforms. In the background is a tall building. To the right of the workers is a car. In the middle of the picture is a box.", - "id": 26229 - }, - { - "image_path": "G:\\images\\combined\\000146_jpg.rf.0edc46371ad7e1dbc36f1ec4b30e0f8b.jpg", - "response": "A group of men in white and blue uniforms standing in front of a building.", - "id": 26230 - }, - { - "image_path": "G:\\images\\combined\\000147_jpg.rf.c104e54ca0da555636928715d49579d2.jpg", - "response": "A black and white photo of a group of men in hard hats sitting in front of a building under construction.", - "id": 26231 - }, - { - "image_path": "G:\\images\\combined\\000148_jpg.rf.2296c7e1b5c707f82b29b8a7abf79044.jpg", - "response": "a group of men standing in front of a construction site", - "id": 26232 - }, - { - "image_path": "G:\\images\\combined\\000148_jpg.rf.86b525bca2d867b84da2affb2b558fc7.jpg", - "response": "a group of men standing around a construction site", - "id": 26233 - }, - { - "image_path": "G:\\images\\combined\\000149_jpg.rf.397b481a4f8117ae4f05833b74f725d0.jpg", - "response": "A man wearing a hard hat and a white shirt is working at a construction site. He is standing on a floor and holding a shovel. He is looking down at the ground.", - "id": 26234 - }, - { - "image_path": "G:\\images\\combined\\000149_jpg.rf.cc4eb2317212ed84dedfcf2a7b7ece64.jpg", - "response": "A man wearing a white hard hat, blue shirt and grey pants.", - "id": 26235 - }, - { - "image_path": "G:\\images\\combined\\000151_jpg.rf.1df948720ff4c82b9cdf679dba89b99d.jpg", - "response": "A man is using a crane to trim a tree.", - "id": 26236 - }, - { - "image_path": "G:\\images\\combined\\000151_jpg.rf.a9233ac6b82d17d3bec484f9c117afae.jpg", - "response": "A man in a white shirt and black pants is standing next to a yellow truck with the number 29 on it. The truck has a crane on it and the number 5508 is on the side of the truck. The truck is parked under a tree and two men are working on the tree. The tree has green leaves and the sky is dark.", - "id": 26237 - }, - { - "image_path": "G:\\images\\combined\\000152_jpg.rf.293818286a8bd7ef95bc890ceaeb94a0.jpg", - "response": "A group of three workers in yellow and orange work clothes, with yellow helmets, are standing in front of a yellow and white work vehicle. They are holding tools, with the man on the left holding a pair of pliers, the woman in the middle has her hands crossed, and the man on the right is holding a pair of scissors.", - "id": 26238 - }, - { - "image_path": "G:\\images\\combined\\000153_jpg.rf.159ccaca96e13cf674e1d37960b82a91.jpg", - "response": "A worker is welding steel at a construction site.", - "id": 26239 - }, - { - "image_path": "G:\\images\\combined\\000154_jpg.rf.90822cd341bdd5c43225058e85d9cc64.jpg", - "response": "The image shows a group of men dressed in black suits standing in an airport. There are three men in the foreground and two men in the background. They are all facing the camera. In the background, there is a conveyor belt and a person wearing a white shirt and black tie. There are also two TVs in the scene, one on the left and one on the right. The TVs are turned on and show a white screen.", - "id": 26240 - }, - { - "image_path": "G:\\images\\combined\\000155_jpg.rf.b233894023a6d0be42755a7090b03611.jpg", - "response": "A man in a black suit and red hard hat is talking to two other men. They are all standing in front of a cement mixer and a truck.", - "id": 26241 - }, - { - "image_path": "G:\\images\\combined\\000155_jpg.rf.bd98d0f2a8fd2029aa3f4276d7adb3fc.jpg", - "response": "The image shows a construction site with three men in the foreground. The middle-aged man in the center is wearing a black suit and a helmet. He is talking to an older man on the left, who is also wearing a helmet and a brown coat. The younger man on the right is wearing a brown coat and a red helmet. He is holding a cell phone in his hand. In the background, there are two yellow and gray cement mixers. One is on the left and the other is on the right. There is also a white sign with red Chinese characters in the middle of the scene.", - "id": 26242 - }, - { - "image_path": "G:\\images\\combined\\000156_jpg.rf.dbeca8d8f3d25c149d43bf733a8fad33.jpg", - "response": "A group of three men standing in a unfinished building looking at a blueprint.", - "id": 26243 - }, - { - "image_path": "G:\\images\\combined\\000157_jpg.rf.5a4ed2326e901883d32b4306696e47de.jpg", - "response": "The image shows a group of rescue workers standing around a piece of rubble. They are all wearing hard hats and some are wearing yellow and orange hard hats. One worker is holding a shovel and digging through the rubble. The workers are standing in a dusty and dirty environment.", - "id": 26244 - }, - { - "image_path": "G:\\images\\combined\\000157_jpg.rf.c9eb78b843b363538884bdc9000d5efc.jpg", - "response": "The image shows a group of rescue workers in a dimly lit room filled with rubble and debris. They are working together to clear the debris using various tools such as shovels and axes. Some of the workers are wearing hard hats and masks while others are bare headed. The room is filled with smoke and dust, making it difficult to see clearly.", - "id": 26245 - }, - { - "image_path": "G:\\images\\combined\\000158_jpg.rf.1cbe140c5ba300406d5954352ab2226a.jpg", - "response": "A black and white photo of a city street. There is a man pushing a wheelbarrow on the street. A bus is in the background. There are two traffic lights on the right side of the street. There is a tall fence on the left side of the street. There are two people walking on the street. There are two buildings in the background.", - "id": 26246 - }, - { - "image_path": "G:\\images\\combined\\000159_jpg.rf.1c6b56f2be623ad7584d79a57c3be0f7.jpg", - "response": "A black and white photo of two men working on a construction site. They are both wearing hard hats and are working on a foundation.", - "id": 26247 - }, - { - "image_path": "G:\\images\\combined\\000159_jpg.rf.8aa87e0f8f55d5ab07e5ba30a8c123a2.jpg", - "response": "The image shows a construction site where some workers are digging a hole in the ground. The hole is lined with bricks at the bottom. In the hole, some yellow pipes are visible. In front of the hole, some workers are standing, one is wearing a blue shirt and a yellow hat, the other one is wearing a blue shirt and a yellow hat as well. Another worker is further back, wearing a blue shirt and a white hat. On the left side of the image, there is a white building visible.", - "id": 26248 - }, - { - "image_path": "G:\\images\\combined\\000159_jpg.rf.9796b4cfca6cfabb3bbd96471a0d1306.jpg", - "response": "A group of men working on a construction site.", - "id": 26249 - }, - { - "image_path": "G:\\images\\combined\\000161_jpg.rf.88eeb4f8e95848ddf41d31c0d1bf3e77.jpg", - "response": "The image shows two people, a man and a woman, wearing hard hats and looking over a construction site. They are both dressed in business attire. The man is pointing towards something to the left of the frame, and the woman is looking in the same direction. They are both sitting on a stack of concrete blocks. There are several stacks of blocks in the foreground, and a pile of them is located in the middle of the image. The woman has her legs crossed and is holding a rolled-up piece of paper. The man has his hands on his knees. The background shows a wall under construction, with scaffolding in front of it.", - "id": 26250 - }, - { - "image_path": "G:\\images\\combined\\000162_jpg.rf.1129ded110cc89e839f03c7c9b6abaab.jpg", - "response": "A black and white photo of a construction site.", - "id": 26251 - }, - { - "image_path": "G:\\images\\combined\\000162_jpg.rf.a6743af3eff20fe42b4e606f6d2759b5.jpg", - "response": "A group of people standing around a long red table.", - "id": 26252 - }, - { - "image_path": "G:\\images\\combined\\000163_jpg.rf.2417ff852c53e07bdc24633f94e94d4f.jpg", - "response": "A group of people are standing in front of a bulldozer, all wearing hard hats. Some of the people are looking at the bulldozer while others are looking in different directions. One person has a backpack on and there is a person on the far right with a watch on their wrist.", - "id": 26253 - }, - { - "image_path": "G:\\images\\combined\\000163_jpg.rf.28e5302eaf5c4c2731df7470fb4f5b91.jpg", - "response": "A group of people wearing hard hats with SeaWorld on them.", - "id": 26254 - }, - { - "image_path": "G:\\images\\combined\\000164_jpg.rf.e7586041ffe0326590ec9919274c37e1.jpg", - "response": "A group of four men standing on a sidewalk talking.", - "id": 26255 - }, - { - "image_path": "G:\\images\\combined\\000165_jpg.rf.805a242816a87ee576fa2f9695442e48.jpg", - "response": "a group of people walking on a sidewalk", - "id": 26256 - }, - { - "image_path": "G:\\images\\combined\\000166_jpg.rf.8c12d934da7510a8435634ba6c40293a.jpg", - "response": "A man sitting in a chair with a bag on his lap.", - "id": 26257 - }, - { - "image_path": "G:\\images\\combined\\000166_jpg.rf.945214b46fc649217f315b8eed2078cf.jpg", - "response": "A man in a white hard hat and yellow safety jacket sitting in a chair.", - "id": 26258 - }, - { - "image_path": "G:\\images\\combined\\000167_jpg.rf.042aaa62ba211db6afcffc3c4e78037c.jpg", - "response": "A group of men in uniforms and hard hats are standing around a large tower. They are working on the tower, which is covered in power lines.", - "id": 26259 - }, - { - "image_path": "G:\\images\\combined\\000167_jpg.rf.4ba12adc18dcf56fdfa4f07c09bcf06d.jpg", - "response": "A group of men in uniforms and hard hats are standing around a tall tower. The tower is made of metal and has power lines running up it. Some men are working on the tower, while others are standing around it. There are also some yellow flowers in the foreground.", - "id": 26260 - }, - { - "image_path": "G:\\images\\combined\\000168_jpg.rf.f95e8358be2b9b6ed84527cdd030e4f2.jpg", - "response": "An oil worker in an orange shirt and helmet working on an oil rig.", - "id": 26261 - }, - { - "image_path": "G:\\images\\combined\\00016982f6086d39.jpg", - "response": "The image displays a cell phone screen with a variety of applications. There are 13 icons displayed, including Adobe PDF, Touch Guitar, Sports Tracker, YouTube, and several others. The time displayed at the top is 12:15 and the date is January 18th. The phone's operating system appears to be Windows Mobile.", - "id": 26262 - }, - { - "image_path": "G:\\images\\combined\\000169_jpg.rf.4b0d891b74511b72c106df248ef6c117.jpg", - "response": "A man wearing a orange vest and a orange hard hat standing in front of a cement wall.", - "id": 26263 - }, - { - "image_path": "G:\\images\\combined\\000169_jpg.rf.c09086fb46f77bd3185a07c3e535cb51.jpg", - "response": "A man standing in a warehouse with a clipboard in his hand.", - "id": 26264 - }, - { - "image_path": "G:\\images\\combined\\000171_jpg.rf.006441f5601f222eb2a15025cd496862.jpg", - "response": " Construction workers(404,538),(456,813)(523,337),(588,528)(483,202),(546,489) working on a construction site", - "id": 26265 - }, - { - "image_path": "G:\\images\\combined\\000171_jpg.rf.7e76df3a62b71229ad776e0ad0df66af.jpg", - "response": "A group of men standing on top of a construction vehicle.", - "id": 26266 - }, - { - "image_path": "G:\\images\\combined\\000172_jpg.rf.b0fee1416ff094a944317e4472c04bde.jpg", - "response": "An oil worker wearing a helmet and coveralls is working on an oil rig. They are holding a large wrench and are standing next to a pipe and valve. The pipe and valve are covered in mud.", - "id": 26267 - }, - { - "image_path": "G:\\images\\combined\\000172_jpg.rf.dcf53fab24a6c4887e420f0e72e12c25.jpg", - "response": "An image of a man working with a tool in his hands. He is wearing a grey hard hat and a brown shirt. He has a tool in his hands that look like they could be hammers.", - "id": 26268 - }, - { - "image_path": "G:\\images\\combined\\000174_jpg.rf.365743eff7470c13cf4821de2701e9d0.jpg", - "response": "The image shows two workers inside a large piece of machinery. They are wearing hard hats and work clothes. One worker is on the left, and the other is on the right. They are both focused on their tasks.", - "id": 26269 - }, - { - "image_path": "G:\\images\\combined\\000174_jpg.rf.8069d709e8e25bfaa510521f111717de.jpg", - "response": "A black and white photo of a man in a helmet sitting on the underside of a plane. The plane is made of metal and has a lot of exposed machinery. The man is sitting on a ladder and is holding a flashlight.", - "id": 26270 - }, - { - "image_path": "G:\\images\\combined\\000174_jpg.rf.a6e0d4e53342e5562e3b245e6e986afe.jpg", - "response": "In the image there are two workers wearing blue overalls and yellow hard hats. They are working on the underside of a train. One worker is on the left and is holding a blue tool in his right hand and a yellow tool in his left hand. The other worker is on the right and is also holding a blue tool in his right hand. They are working on a metal structure.", - "id": 26271 - }, - { - "image_path": "G:\\images\\combined\\000175_jpg.rf.09f7516d9652861c40cd3e876cdf769f.jpg", - "response": "Men(35,119),(319,989)(447,197),(628,810)(348,216),(459,619)(614,170),(742,727)(726,166),(969,996)(240,175),(345,791) standing in a construction site", - "id": 26272 - }, - { - "image_path": "G:\\images\\combined\\000176_jpg.rf.39ee2a195a940b658fafbc7a295eb1eb.jpg", - "response": "The image shows a group of rescue workers carrying a wooden beam over their shoulders. They are all wearing hard hats and some are wearing red shirts. The workers are spread out across the scene, with some closer to the foreground and others further back. In the background, there is a mountain.", - "id": 26273 - }, - { - "image_path": "G:\\images\\combined\\000176_jpg.rf.cd2df8e7bbeca24d6598658540c57029.jpg", - "response": "The image is a black and white photograph of a group of soldiers walking single file through a jungle. They are wearing helmets and appear to be moving through rough terrain. There are mountains visible in the background.", - "id": 26274 - }, - { - "image_path": "G:\\images\\combined\\000177_jpg.rf.2d0bb6947ad35f0e0ceb92e77e3734cf.jpg", - "response": "The photo shows a group of men standing in a row on a dirt field. The field is light brown in color and has tire tracks visible in it. The men are wearing a variety of clothing, including suits and business casual attire. Some of the men are wearing ties, and many are wearing dark shoes. In the background, there is a white car parked to the left of the field, and a blue and white wall to the right of the field. The sky is blue and cloudless.", - "id": 26275 - }, - { - "image_path": "G:\\images\\combined\\000178_jpg.rf.1278fed1a0aef5f37a102507e587fb5b.jpg", - "response": "A black and white photo of two men working on a tower.", - "id": 26276 - }, - { - "image_path": "G:\\images\\combined\\000178_jpg.rf.b8caa56a9d4e5ee66d4c58397736149e.jpg", - "response": "A man in a white shirt and grey pants is on a grey metal pole. He is wearing a blue hat and has a tool belt around his waist. There are many power lines around him and a crane is lifting a metal object towards the top of the pole.", - "id": 26277 - }, - { - "image_path": "G:\\images\\combined\\000178_jpg.rf.c37034f921c58f4c2b27fa1d34451af0.jpg", - "response": "A man in a blue hat is on a power line post.", - "id": 26278 - }, - { - "image_path": "G:\\images\\combined\\000179_jpg.rf.b36f3b044e3c1f21f2fcc3dac6001ce1.jpg", - "response": "A man in a blue jacket and yellow hard hat is working on a power line. He is wearing a yellow hard hat and is holding a tool.", - "id": 26279 - }, - { - "image_path": "G:\\images\\combined\\000179_jpg.rf.c49a41c033c29632e8bd6561961d8986.jpg", - "response": "A man in a hard hat and safety gear repairs a power line.", - "id": 26280 - }, - { - "image_path": "G:\\images\\combined\\000180_jpg.rf.f6949a650aa7d78afdfcc74c3e0cee8e.jpg", - "response": "A group of five men wearing yellow helmets stand on top of a roof. They are all wearing yellow helmets and some of them are wearing yellow shirts. They are standing on a construction site with rebar sticking out of the ground. In the background, there is a forest and a bridge under construction.", - "id": 26281 - }, - { - "image_path": "G:\\images\\combined\\000181_jpg.rf.599edd6150ea2f22b1defe5a8d53e9f9.jpg", - "response": "a group of people(324,323),(463,997)(458,378),(579,898)(74,373),(182,777)(693,318),(996,996)(483,379),(662,997)(260,416),(341,759) standing around", - "id": 26282 - }, - { - "image_path": "G:\\images\\combined\\000182_jpg.rf.33a364a25abd9863476b76aa4c622b34.jpg", - "response": "A group of men are working on a train track.", - "id": 26283 - }, - { - "image_path": "G:\\images\\combined\\000182_jpg.rf.fc4681f970d03ea23c523593aedc2156.jpg", - "response": "A group of men are working on a train track.", - "id": 26284 - }, - { - "image_path": "G:\\images\\combined\\000183_jpg.rf.8e2c5dab6ee7b1552dde5c027f0a04c9.jpg", - "response": "A worker in a blue jumpsuit and blue helmet is up in a power line, holding onto a tool with both hands.", - "id": 26285 - }, - { - "image_path": "G:\\images\\combined\\000184_jpg.rf.5acf79b6efc1157111899abce991f54f.jpg", - "response": "A man in a hard hat points to something in the distance while standing next to another man. Both men are wearing hard hats. In the background, there is a partially constructed building and a hill.", - "id": 26286 - }, - { - "image_path": "G:\\images\\combined\\000184_jpg.rf.8f4662d0bc7244bc02a4e668a81c1d75.jpg", - "response": "A man in a hard hat points to something in the distance.", - "id": 26287 - }, - { - "image_path": "G:\\images\\combined\\000185_jpg.rf.591e10ad7fcf73e74f406965dd98a521.jpg", - "response": "A man in overalls climbing a telephone pole.", - "id": 26288 - }, - { - "image_path": "G:\\images\\combined\\000185_jpg.rf.df6bb74d6626400cb31a7b694fbcc941.jpg", - "response": "An electrician repairs a power line in the sky.", - "id": 26289 - }, - { - "image_path": "G:\\images\\combined\\000186_jpg.rf.df0cc95df795c41b61e24b9f120813e5.jpg", - "response": "A large group of men sitting on the ground.", - "id": 26290 - }, - { - "image_path": "G:\\images\\combined\\000187_jpg.rf.2168238e1b68e1b5aa65d32a3be2546d.jpg", - "response": "A construction site with several workers visible. There is a bulldozer in the background and a large pile of dirt to the right. A blue metal structure is present in the middle of the scene. 5 workers are present in the scene, 3 of them are wearing blue and white clothes, the other two are wearing blue and red clothes.", - "id": 26291 - }, - { - "image_path": "G:\\images\\combined\\000187_jpg.rf.bb64f66ba6a44f48638b2e311ac1b062.jpg", - "response": "A construction site with multiple workers wearing blue uniforms and hard hats. There is a bulldozer and a large pile of sand in the background.", - "id": 26292 - }, - { - "image_path": "G:\\images\\combined\\000188_jpg.rf.0c53346e72f7d75037d81c09444dc848.jpg", - "response": " Two men(239,313),(488,996)(496,294),(752,997) in a warehouse", - "id": 26293 - }, - { - "image_path": "G:\\images\\combined\\000188_jpg.rf.1e0133f37bcb25651b6330f69f61f4f4.jpg", - "response": "In the image there are two men standing in a large warehouse. One man is wearing a blue shirt and a helmet, he is pointing to the left. The other man is wearing a green shirt and a yellow helmet, he is holding a clipboard. Between the two men there are several boxes, on the left side there are 13 boxes stacked in three layers and on the right side there are 12 boxes stacked in three layers. In front of the two men there is a forklift that is silver and black. On top of the forklift there are several boxes, in total there are 11 boxes. The boxes are all wrapped in brown paper and have white labels.", - "id": 26294 - }, - { - "image_path": "G:\\images\\combined\\000188_jpg.rf.5cb4871ef2dd14bf42df99421ff176ed.jpg", - "response": "In the image there are two men standing in a storage warehouse. The man on the left is wearing a blue shirt and a helmet, he is pointing to the left. The man on the right is wearing a green shirt and a yellow helmet, he is holding a clipboard. Between the two men there are two tall pallet racks filled with boxes.", - "id": 26295 - }, - { - "image_path": "G:\\images\\combined\\000189_jpg.rf.08cd108d3dbde6167f9d807d7799721f.jpg", - "response": "A black and white photo of two firemen in a dark room. They are both holding guns and pointing them at a door. The left most fireman is wearing a helmet and is holding a flashlight. The right most fireman is also wearing a helmet and is holding a gun. There are two fire extinguishers on the wall and a sign that says \"Do not use water on electrical fire\". There are also two more signs on the wall that are not clearly visible.", - "id": 26296 - }, - { - "image_path": "G:\\images\\combined\\000189_jpg.rf.7101738179531eeca854c3920fa211d3.jpg", - "response": "A man with a blue hard hat is spraying a white liquid on a wall.", - "id": 26297 - }, - { - "image_path": "G:\\images\\combined\\000189_jpg.rf.7600e8a73ba9fbd39dd6c4f3d3f4ab0e.jpg", - "response": "A man in a hard hat is spraying a yellow liquid on a wall.", - "id": 26298 - }, - { - "image_path": "G:\\images\\combined\\000190_jpg.rf.34ab390641782d2495c7feb09bb371ce.jpg", - "response": "A man wearing a hard hat and work clothes is working on a construction site. He is wearing a tool belt and is leaning over a metal railing. He is looking down at something and holding a tool in his hand. There is another man partially visible to the right of him.", - "id": 26299 - }, - { - "image_path": "G:\\images\\combined\\000191_jpg.rf.f3a552cc6b3fcb0995aff95dede3be64.jpg", - "response": "A group of workers are working on a construction site. They are wearing hard hats and are pouring concrete into a mold. The workers are pouring concrete into a large mold on the ground.", - "id": 26300 - }, - { - "image_path": "G:\\images\\combined\\000192_jpg.rf.aabd208d4582fc41c79799c504e43a2a.jpg", - "response": "A man wearing a blue hard hat sits in front of a desk with multiple computer screens. He is wearing a grey shirt and blue pants.", - "id": 26301 - }, - { - "image_path": "G:\\images\\combined\\000194_jpg.rf.fdff5313dd5b4b466cdb94a202936adb.jpg", - "response": "A group of people standing around a construction site.", - "id": 26302 - }, - { - "image_path": "G:\\images\\combined\\000195_jpg.rf.51a47596f5ccc67edaa256aa3d1346d0.jpg", - "response": "a group of men standing on a boat", - "id": 26303 - }, - { - "image_path": "G:\\images\\combined\\000195_jpg.rf.8e96bcff6595ba775cc1e24a79a92be9.jpg", - "response": " Workmen(286,384),(459,668)(180,368),(319,621)(498,536),(692,997) on the deck of the vessel with a large piece of steel in the background", - "id": 26304 - }, - { - "image_path": "G:\\images\\combined\\000195_jpg.rf.a02a815c6182578b3059219cd9d8685c.jpg", - "response": "a group of men standing on a boat wearing hard hats", - "id": 26305 - }, - { - "image_path": "G:\\images\\combined\\000197_jpg.rf.875ea2a3a15d5e561d2698b4ea0506ef.jpg", - "response": "In the image there are two workers wearing hard hats, one is on the left and the other is on the right. They are both working on a construction site and are standing on top of a yellow ladder. In front of them are many bamboo poles and iron pipes on the ground, which are likely materials for their work. The scene is set during the day and there are buildings in the background.", - "id": 26306 - }, - { - "image_path": "G:\\images\\combined\\000197_jpg.rf.c3b657eef893d93183e983041df4f8df.jpg", - "response": "A construction worker in a white hard hat is bending over to pick up a bamboo stick. Another construction worker is standing next to them wearing a black shirt and a white hard hat. They are on a construction site with a pile of bamboo sticks and metal pipes in the foreground.", - "id": 26307 - }, - { - "image_path": "G:\\images\\combined\\000198_jpg.rf.9d5cc3e80971b3e376a909a31b0d901d.jpg", - "response": "A black and white photograph of two workers in a factory. They are standing in a large open space with a concrete floor and a high ceiling. There are two large metal tanks in the background, one on the left and one on the right. In the foreground, there is a large metal container hanging from a crane, which is being lowered into the factory. The container is being held by two workers, one on the left and one on the right. The worker on the left is wearing a hard hat and protective goggles, and is holding a large metal rod. The worker on the right is wearing a hard hat and is looking at the container. There is a puddle of water in front of the workers, reflecting their silhouettes.", - "id": 26308 - }, - { - "image_path": "G:\\images\\combined\\0001a2f47097ee27.jpg", - "response": "A woman wearing a white top and a necklace is standing in front of a yellow truck.", - "id": 26309 - }, - { - "image_path": "G:\\images\\combined\\0001c6bf48e16ab2.jpg", - "response": "A blue 2009 Nissan Geniss is parked in front of a building. The Geniss has the brand name \"Nissan\" on the front of the car and the word \"GENISS\" on the front bumper. The car has 5 doors and is a blue color. The passenger side window has a black cover on it. The car has a black roof rack on top. The back of the car has a hatchback door that opens upward. The rear bumper has the brand name \"Nissan\" on it. The background is a clear sky.", - "id": 26310 - }, - { - "image_path": "G:\\images\\combined\\000200_jpg.rf.460e62606baf8f7adacc625c1450bd47.jpg", - "response": " Several men(592,263),(778,964)(413,346),(571,795)(232,342),(334,693)(140,384),(229,607) in hard hats(669,261),(744,331)(265,341),(318,396)(460,346),(515,401)(171,383),(214,428) carrying tree branches(439,432),(588,616) through the snow(2,268),(996,999)", - "id": 26311 - }, - { - "image_path": "G:\\images\\combined\\000200_jpg.rf.b1c9f167b6b9361f12cd9a174af78a20.jpg", - "response": "A group of men walking through the snow", - "id": 26312 - }, - { - "image_path": "G:\\images\\combined\\000201_jpg.rf.89b5fe693dbcf2246c0835359006ae14.jpg", - "response": "A group of men in orange vests and hard hats are working on a construction site at night. They are standing around a yellow construction vehicle. In the foreground, there is a large orange and white traffic cone.", - "id": 26313 - }, - { - "image_path": "G:\\images\\combined\\000201_jpg.rf.917b745080ab629fa5945371f00b89c0.jpg", - "response": "A group of construction workers working on a project at night.", - "id": 26314 - }, - { - "image_path": "G:\\images\\combined\\000201_jpg.rf.e1260bed7b4667a8d861c24adef21b74.jpg", - "response": "A group of rescue workers stand next to a damaged vehicle.", - "id": 26315 - }, - { - "image_path": "G:\\images\\combined\\000202_jpg.rf.66c19230f76853b5b895dcc0605bfabc.jpg", - "response": "A man in a hard hat and safety vest is standing on a metal ladder on a tower. He is looking through a camera.", - "id": 26316 - }, - { - "image_path": "G:\\images\\combined\\000202_jpg.rf.75f5d84f1dd7714cbaf4c4e6694f2ae9.jpg", - "response": "A construction worker sitting on scaffolding next to a yellow crane.", - "id": 26317 - }, - { - "image_path": "G:\\images\\combined\\000202_jpg.rf.90ad23e224527277806244063b9fcf26.jpg", - "response": "A man in a yellow hard hat is sitting on a ladder.", - "id": 26318 - }, - { - "image_path": "G:\\images\\combined\\000203_jpg.rf.4dcde959640d4d5f9933a0969c306ea9.jpg", - "response": "The image is a black and white photograph of two men working on a power line. They are standing on a road and one of them is holding a power line tool. They are wearing hard hats and the man on the right is wearing a jacket with the number 45 on it. There is a large power line in the background and a traffic sign can be seen in the left side of the image.", - "id": 26319 - }, - { - "image_path": "G:\\images\\combined\\000203_jpg.rf.89f86ee5efb5d233926c25bbf4e3f29f.jpg", - "response": "The image shows two workers in grey uniforms standing outdoors, one on the left and one on the right, with a street in the background. They are both holding a rope with a grey metal ring attached to it. The left worker is also holding a grey metal device with a red handle. They are both looking at the rope.", - "id": 26320 - }, - { - "image_path": "G:\\images\\combined\\000203_jpg.rf.a257d8d29177ef1eefbf4d9eb3ff3362.jpg", - "response": "The image shows two workers in grey uniforms standing outside. They are both holding a rope and adjusting it.", - "id": 26321 - }, - { - "image_path": "G:\\images\\combined\\000205_jpg.rf.e5462b5b1464b02858e57c1ae80f4c6b.jpg", - "response": "A man wearing a hard hat and thick winter gloves is using a chainsaw to cut through a snow covered tree branch. Several other people are in the background, some of them are wearing hard hats and winter clothing. The ground is covered in a thick layer of snow.", - "id": 26322 - }, - { - "image_path": "G:\\images\\combined\\000206_jpg.rf.bcb49ad72b65a149ad503b0fc51ef618.jpg", - "response": "A black and white photo of a group of men wearing hard hats standing around a construction site.", - "id": 26323 - }, - { - "image_path": "G:\\images\\combined\\000206_jpg.rf.fc2f0a2ac4aa1202e84de0418347ba99.jpg", - "response": "A group of men standing around each other", - "id": 26324 - }, - { - "image_path": "G:\\images\\combined\\000207_jpg.rf.d2dfcf2e97fc833eba8743662235095e.jpg", - "response": "a group of men standing in a room", - "id": 26325 - }, - { - "image_path": "G:\\images\\combined\\000208_jpg.rf.0b64177c8c7b35863dd5b027b281bda2.jpg", - "response": "An electrician fixing an electrical wire on a power pole.", - "id": 26326 - }, - { - "image_path": "G:\\images\\combined\\000208_jpg.rf.b1244e7dfd39a31ae0ee8e6ae20e730c.jpg", - "response": "A worker in a white uniform and a hard hat works on a piece of machinery.", - "id": 26327 - }, - { - "image_path": "G:\\images\\combined\\000209d575f3aa4f.jpg", - "response": "In the image there is a street vendor selling Macau beer. The stand is yellow and has a large sign advertising the beer. There is a woman sitting behind the stand and a large banner advertising the beer on the side. The banner features an illustration of a beer bottle and a can. The street is decorated with many lanterns and the sky is blue.", - "id": 26328 - }, - { - "image_path": "G:\\images\\combined\\000209_jpg.rf.046daf5e9515e457ab85b3f7a4361b17.jpg", - "response": "A group of men working on a building.", - "id": 26329 - }, - { - "image_path": "G:\\images\\combined\\000210_jpg.rf.03da42a696e6b22dbd1d10ba3c04751d.jpg", - "response": "A group of people in hard hats are gathered around a man who is showing them something on a clipboard. They are all standing on a construction site near a building under construction.", - "id": 26330 - }, - { - "image_path": "G:\\images\\combined\\000211_jpg.rf.2209639e842d28cf6c7ebd8f981763bc.jpg", - "response": "The image shows two workers in blue uniforms and yellow helmets up on a cherry picker, repairing wires on a utility pole.", - "id": 26331 - }, - { - "image_path": "G:\\images\\combined\\000211_jpg.rf.2fc47b963a992f47f6cefdc528be8d49.jpg", - "response": "A black and white photo of two men working on a power line. They are standing on a lift and wearing hard hats. One man is on the left side of the lift and is holding a tool in his right hand, which is raised towards the power line. The other man is on the right side of the lift and is also holding a tool in his right hand. They are both wearing dark clothing. The background is a tree with leaves and branches.", - "id": 26332 - }, - { - "image_path": "G:\\images\\combined\\000213_jpg.rf.67d0231d78712f6fe1788e45cc103dd5.jpg", - "response": " Firemen(531,453),(762,867)(423,405),(571,593)(577,305),(748,573)(2,235),(257,997) in helmets(439,405),(508,498)(584,303),(662,386)(76,171),(183,275) and white helmets(42,168),(116,239) digging in the dirt", - "id": 26333 - }, - { - "image_path": "G:\\images\\combined\\000213_jpg.rf.8d9bb1c1b159725f5df1553d8b65e818.jpg", - "response": "A group of men wearing hard hats and carrying a large carpet through a darkened room.", - "id": 26334 - }, - { - "image_path": "G:\\images\\combined\\000214_jpg.rf.7f51606aeede97f7344814454b8b4e5b.jpg", - "response": "a group of men wearing blue hard hats", - "id": 26335 - }, - { - "image_path": "G:\\images\\combined\\000215_jpg.rf.e4ab6a56905de8c6c2f683258519d532.jpg", - "response": "In the image there is a man wearing black and a blue helmet who is climbing a tower made of white material. He is on a ladder and is in the process of climbing it. The tower itself is made of interwoven white material. There are also some clouds in the sky.", - "id": 26336 - }, - { - "image_path": "G:\\images\\combined\\000216_jpg.rf.4275ef9de3b527ef479222125a4dffff.jpg", - "response": " Lineman(305,264),(728,996) working on power lines in a tree.", - "id": 26337 - }, - { - "image_path": "G:\\images\\combined\\000216_jpg.rf.d752b76bb18830d943523761713f482d.jpg", - "response": " lineworker(303,262),(739,997) working on a power line", - "id": 26338 - }, - { - "image_path": "G:\\images\\combined\\000217_jpg.rf.bb507cd0b475441921c2091816f297bd.jpg", - "response": "The image is a black and white photograph of a group of people walking in front of a construction site. The people are walking single file and appear to be led by a man in a suit who is holding a stop sign. The group is made up of men and women and some of them are carrying backpacks. They are walking towards a large banner that reads \"V7\u7164\u77ff\u5de5\u7a0b\" and \"\u65bd\u5de5\u9053\u8d3a\u5de5\u591a\". There is also a banner above the group that reads \"\u5b9e\u73b0\u4e70\u7279\u4ea7\u4e0a\u5927\u6c5f\u76f4\u7684\u91d1\u8bfa\u4e94\u6362\u4ee3\u4e0bX\u6c5f\u76f4\u7684\" in Chinese characters. The background shows a wall and a bridge.", - "id": 26339 - }, - { - "image_path": "G:\\images\\combined\\000217_jpg.rf.c4a9682cb8292a5cf7174025deffd49a.jpg", - "response": "The image shows a group of people walking in front of a large blue construction gate. The gate has a white sign that says \"\u65bd\u5de5\u901a\u9053\" (shizhen\u901a\u9053). The people are wearing a variety of outfits, including suits, business-casual attire, and construction gear like hard hats and high-visibility vests. Some of the people are also carrying yellow hard hats. The background features a row of buildings, some of which are in the process of demolition.", - "id": 26340 - }, - { - "image_path": "G:\\images\\combined\\000218_jpg.rf.c116c59b87e10f42754dc463bb54169d.jpg", - "response": "a group of people(440,446),(547,892)(653,426),(797,977)(187,444),(296,894)(347,433),(445,823)(262,405),(389,904)(512,438),(600,853)(1,419),(75,847) standing in front of a building(0,148),(997,571)", - "id": 26341 - }, - { - "image_path": "G:\\images\\combined\\000219_jpg.rf.889113bf8d83071ebd45899995deea35.jpg", - "response": "Four men in front of a sign for a construction site.", - "id": 26342 - }, - { - "image_path": "G:\\images\\combined\\000219_jpg.rf.e438b0b54c27439bc3bce12c779805d8.jpg", - "response": "Four men in front of a sign for a construction site.", - "id": 26343 - }, - { - "image_path": "G:\\images\\combined\\000220_jpg.rf.802553597c0d30d69a225c608c04e655.jpg", - "response": "The image shows a group of men sitting around a large table. The table is filled with fruit such as bananas and apples, as well as cups, bottles, and bowls. The men are wearing business attire and appear to be having a meeting. They are seated on both sides of the table, with some men closer to the front and some men further back. A few of the men are wearing ties. In the background, there is a banner hanging on the wall that says \"\u8bf7\u6ce8\u610f\u505a\u597d2012\u5e74\u9632\u53f0\u5de5\u4f5c\".", - "id": 26344 - }, - { - "image_path": "G:\\images\\combined\\000221_jpg.rf.3eca1d81fba37ee245d209159d94b9f6.jpg", - "response": "a group of people standing in front of a bulldozer", - "id": 26345 - }, - { - "image_path": "G:\\images\\combined\\000222_jpg.rf.95d22197e3636f5a978d6249f22cf149.jpg", - "response": "A group of workers in a warehouse, wearing safety gear and holding clipboards.", - "id": 26346 - }, - { - "image_path": "G:\\images\\combined\\000223_jpg.rf.acf7e4458a3678cd3d47ea268af81351.jpg", - "response": "In the image there are two workers wearing blue hard hats. One of them is on a yellow truck with the door open and a rope on a hook. Another worker is on a wooden pallet near the truck. There are also some boxes and a book on the ground.", - "id": 26347 - }, - { - "image_path": "G:\\images\\combined\\000223_jpg.rf.e484cd26573bb507beda568fc79075ad.jpg", - "response": "A black and white photograph of a street scene. In the foreground, a car is being loaded with crates of chickens. In the background, two men are loading a truck with crates. The truck is parked on the street. There is a handrail on the left side of the street.", - "id": 26348 - }, - { - "image_path": "G:\\images\\combined\\000224_jpg.rf.da5cb5242f3d9234242ad752c07c2d5e.jpg", - "response": "The image shows a group of workers in a large tunnel. They are all wearing yellow and orange reflective vests and white hardhats. The vests identify them as construction workers. There are four workers in the image, with one on the left, two in the middle, and one on the right. They are all working on a large piece of equipment, which appears to be a metal girder or support beam. The workers are focused on their task, with one of them even working on the beam while kneeling on the ground. The background of the image is a concrete wall and ceiling, suggesting that they are in a\u96a7\u9053 or large underground space.", - "id": 26349 - }, - { - "image_path": "G:\\images\\combined\\000225_jpg.rf.aab7766a3c5289f6f2cc8eded828af24.jpg", - "response": "A group of men in hard hats stand around a large pipe. The pipe is light brown and runs diagonally from the bottom left to the top right of the image. It is laying on the ground next to a wall of rock. There are also two cars in the background, one on the left and one on the right. In the background there is a mountain with trees on it.", - "id": 26350 - }, - { - "image_path": "G:\\images\\combined\\000225_jpg.rf.ac52144cfacbf3847d62a9bdf4af9d96.jpg", - "response": "A black and white photo of a group of men standing on the side of a road. Some men are wearing ties and one man is wearing a hat. There is a car parked on the road and a large tree trunk laying on its side in the foreground. There are two large lakes in the background.", - "id": 26351 - }, - { - "image_path": "G:\\images\\combined\\000225_jpg.rf.ad38d6f2d232353d87e89c7d201fe449.jpg", - "response": "A group of men in hard hats stand around a large pipe. The pipe is light brown and is on the ground. It is located on the right side of the image. There are also two cars in the background. To the far left of the image there are three men in hard hats. One of the men is wearing a white shirt and grey pants. The other two men are wearing blue shirts and grey pants. In the background there is a mountain with green trees on it.", - "id": 26352 - }, - { - "image_path": "G:\\images\\combined\\000227_jpg.rf.a58163ef2e825d6ca6f98f901c6ca6f3.jpg", - "response": "A worker in a yellow hard hat and blue overalls is on a ladder. They are on the side of a tower, holding a rope. They are also holding a water bottle. They are wearing a yellow hard hat, blue overalls, and have a rope tied around their waist. The tower is made of metal and is in a forest.", - "id": 26353 - }, - { - "image_path": "G:\\images\\combined\\000228608388803f.jpg", - "response": "A white car with a for sale sign in the window.", - "id": 26354 - }, - { - "image_path": "G:\\images\\combined\\000228_jpg.rf.a73b760720e7a860a2d76c3eea47a288.jpg", - "response": " Two men(668,154),(881,997)(519,138),(724,996) in hard hats(597,137),(690,275)(729,152),(852,299) standing on a construction site", - "id": 26355 - }, - { - "image_path": "G:\\images\\combined\\000228_jpg.rf.aa0b01356d3138495be2e55a53f38b8e.jpg", - "response": " Two men(674,154),(882,997)(519,138),(726,996) in hard hats(597,137),(690,273)(728,153),(852,296) stand on a construction site", - "id": 26356 - }, - { - "image_path": "G:\\images\\combined\\000229_jpg.rf.505e05d4a687fe876754509a8fd1449d.jpg", - "response": "In the image two workers are seen fixing an electricity post. Both of them are wearing safety gear and are in white and yellow. One of them is on the left side of the image and the other one is on the right side. They are both holding tools in their hands. The left side worker is fixing the electric post and the right side worker is fixing the wires. The post is grey in color and it has two black electric wires coming out of it. The wires are also grey in color.", - "id": 26357 - }, - { - "image_path": "G:\\images\\combined\\000229_jpg.rf.e55ee7fcabbc4d203bc6d104cb8fa795.jpg", - "response": "A couple of men in white and yellow are working on a power box. They are wearing white gloves and red and yellow hard hats. The man on the left has a red hard hat and is wearing a white hat with a red logo on it. The man on the right has a yellow hard hat and is wearing a white helmet with a black and yellow logo on it. They are both wearing safety gear.", - "id": 26358 - }, - { - "image_path": "G:\\images\\combined\\000230_jpg.rf.33f4a3c92e477e31bfb6bd4fb8985d15.jpg", - "response": "A black and white photograph of a group of men working on electrical power lines and equipment.", - "id": 26359 - }, - { - "image_path": "G:\\images\\combined\\000230_jpg.rf.49d906804623f2adca8dbb573ede1ff5.jpg", - "response": "A group of men in gray and blue uniforms and hard hats are on an electric pole. They are climbing on the pole and wires.", - "id": 26360 - }, - { - "image_path": "G:\\images\\combined\\000231_jpg.rf.fc3054d46711c33930cfe8ce52974d36.jpg", - "response": " Workers(513,156),(809,803)(315,176),(460,506)(464,156),(570,388)(528,153),(647,367) in China are seen cutting a bridge(0,263),(999,753) with a chainsaw(577,315),(996,668).", - "id": 26361 - }, - { - "image_path": "G:\\images\\combined\\000232_jpg.rf.9f5a070965c9f1bf6ed755bf47130bd3.jpg", - "response": "A man wearing a white shirt and a yellow hard hat is using a large drill to drill into a piece of wood.", - "id": 26362 - }, - { - "image_path": "G:\\images\\combined\\000233_jpg.rf.cc8e8f100254ffdf24c7f93862a51e0d.jpg", - "response": "A group of men standing on top of a roller coaster.", - "id": 26363 - }, - { - "image_path": "G:\\images\\combined\\000234_jpg.rf.0133fa20f41a8934d51ef36f1af5826b.jpg", - "response": "An electrician is working on some wires up high.", - "id": 26364 - }, - { - "image_path": "G:\\images\\combined\\000234_jpg.rf.c178d77ae6d9bf7fde58e6ca5a6ec057.jpg", - "response": "An electrician is working on some wires.", - "id": 26365 - }, - { - "image_path": "G:\\images\\combined\\000235_jpg.rf.1711b5727711520462f6ab7f48fd0209.jpg", - "response": "A worker in a hard hat and safety glasses is climbing a staircase.", - "id": 26366 - }, - { - "image_path": "G:\\images\\combined\\000235_jpg.rf.6144eafd939672d56deec6946d65e187.jpg", - "response": "A worker wearing a hard hat and carrying a flashlight is on a ladder at night.", - "id": 26367 - }, - { - "image_path": "G:\\images\\combined\\000236_jpg.rf.4b59a5c53ed59c6d08637a203f35160b.jpg", - "response": "A black and white photograph of a group of men walking across a building site. The men are wearing a variety of clothes and are positioned in a line across the image. They are walking towards the camera, which is positioned in the foreground. The men are of different heights and some are carrying items such as a briefcase and a handbag.", - "id": 26368 - }, - { - "image_path": "G:\\images\\combined\\000236_jpg.rf.b3c36a556ef10e0f38eda40d5a6deb71.jpg", - "response": "A group of men walking across a dirt field.", - "id": 26369 - }, - { - "image_path": "G:\\images\\combined\\000237_jpg.rf.663d3804b45096f125ffbd7c46ae0888.jpg", - "response": "A group of men are working on a brick wall.", - "id": 26370 - }, - { - "image_path": "G:\\images\\combined\\000237_jpg.rf.bb046c2bbf04cc1bd528d05cd7f1a60a.jpg", - "response": "The image shows three men working on a brick wall. They are all wearing hard hats and one of them has a yellow hard hat. The man in the middle is wearing a blue hat and a blue jacket with a hood. He is standing on a ladder and working on the wall. The man on the right is wearing a yellow hard hat and a yellow helmet and is pushing a wheelbarrow filled with bricks. He is standing next to the wall. The wall is made of bricks and is a bright red color. There is a pile of bricks next to the wall and another pile of bricks further to the right. The sky is grey and overcast.", - "id": 26371 - }, - { - "image_path": "G:\\images\\combined\\000238_jpg.rf.112b6cd40bb5c03e963c0c2a0ced4405.jpg", - "response": "A construction worker in a yellow helmet and work clothes is working on a construction site. He is standing on a platform and connecting reinforcement steel bars. There are other workers in the background, one on the left and two on the right. Above the construction site, a yellow crane is operating. The sky is blue and there are no clouds.", - "id": 26372 - }, - { - "image_path": "G:\\images\\combined\\000238_jpg.rf.6320b1e14e6d70e3e7f4be855cf98b3d.jpg", - "response": "A black and white photo of a construction site. A man is working on the site, he is standing on a platform and wearing a white helmet. He is working on a large structure with a crane in the background. The ground is made of concrete and there are many steel bars visible. The photo is taken from a first person perspective.", - "id": 26373 - }, - { - "image_path": "G:\\images\\combined\\000238_jpg.rf.f89f23ef41dcc2e590f57e9a5b6ab189.jpg", - "response": "A construction worker in a yellow helmet is working on a construction site. He is wearing brown pants and a brown and black jacket. He is in the center of the image and there are other workers in the background. There are several yellow and white construction cranes in the background. There are two other workers in the image, one on the far left and one on the far right. There is a white truck in the bottom right corner of the image.", - "id": 26374 - }, - { - "image_path": "G:\\images\\combined\\000239_jpg.rf.7669925e62070eded4cd48fdce9fcb11.jpg", - "response": "A man wearing a hard hat and carrying a light on his shoulder stands on a ladder in a deep hole in the ground.", - "id": 26375 - }, - { - "image_path": "G:\\images\\combined\\000239_jpg.rf.7ef53c5b8be2f516b924087000476ad0.jpg", - "response": "A construction worker wearing a yellow vest and blue hard hat is using a jackhammer to break up a large rock.", - "id": 26376 - }, - { - "image_path": "G:\\images\\combined\\000239_jpg.rf.ebe90c248a9cce982504ab2588fa62f1.jpg", - "response": "A construction worker wearing a yellow jacket and a blue hard hat is using a jackhammer to break up a large rock. The worker is standing on top of the rock and is focused on the task at hand. There is another worker in the background, wearing a yellow jacket and a white hat. They are standing behind a fence. The sky is blue and cloudless.", - "id": 26377 - }, - { - "image_path": "G:\\images\\combined\\000240_jpg.rf.57bfd0c3b6774d59ca1a5e36dc84cb7f.jpg", - "response": "A construction site with a few people working on it.", - "id": 26378 - }, - { - "image_path": "G:\\images\\combined\\000240_jpg.rf.83691a8bd47805dea01d7dc01d78bed8.jpg", - "response": "A construction site with several people working on it.", - "id": 26379 - }, - { - "image_path": "G:\\images\\combined\\000240_jpg.rf.8878ac3581f6d82cd12e38d08d184c7e.jpg", - "response": "A black and white photo of a construction site. The site is surrounded by a fence and there are several people working on it. The sky is cloudy and there are a few trees in the background.", - "id": 26380 - }, - { - "image_path": "G:\\images\\combined\\000241_jpg.rf.ef457b678b536fa1cd69584fc1387f0e.jpg", - "response": "The construction site is in the midst of a city. There is a bridge in the background. In the foreground, there is a large circular construction site. There are five workers in the site, some are welding the steel bars.", - "id": 26381 - }, - { - "image_path": "G:\\images\\combined\\000242_jpg.rf.cddadac88e777ecfbde89e4f2708d096.jpg", - "response": "A group of men standing on a sidewalk", - "id": 26382 - }, - { - "image_path": "G:\\images\\combined\\000243_jpg.rf.9cc03cbae02b938918e861dad27f650b.jpg", - "response": "a black and white photo of a train track being built", - "id": 26383 - }, - { - "image_path": "G:\\images\\combined\\000244_jpg.rf.32bb28a3ed52548e6561026ab1672ae9.jpg", - "response": "A man wearing a white hard hat is looking at a solar panel. The man is wearing a white shirt, black pants and is holding a blueprint. The solar panel is installed on a wooden structure in a green yard.", - "id": 26384 - }, - { - "image_path": "G:\\images\\combined\\000244_jpg.rf.c6f253c349f4daf6c4ff9ac9ef8c025d.jpg", - "response": "A man leaning on a fence with solar panels in the background.", - "id": 26385 - }, - { - "image_path": "G:\\images\\combined\\000244_jpg.rf.f6d588fd78853a611b6c543db576a74d.jpg", - "response": "A man in a white shirt and a hard hat looking over blueprints in front of a solar panel.", - "id": 26386 - }, - { - "image_path": "G:\\images\\combined\\000245_jpg.rf.60728bdb7b8ef03f37db813c100d3aaf.jpg", - "response": "a group of men standing around talking to each other", - "id": 26387 - }, - { - "image_path": "G:\\images\\combined\\000246_jpg.rf.45fb270300821748c0e2006f2371f445.jpg", - "response": "A construction site with three people working. They are standing on a large pile of steel rods and wooden planks. The planks are stacked in piles on the right and left of the people. The steel rods are piled up in front of the people and extend out to the left. In the background, there is a car on the left and a red rug on the right.", - "id": 26388 - }, - { - "image_path": "G:\\images\\combined\\000246_jpg.rf.4bb492ea4b5e7dc817357e267b98161c.jpg", - "response": "A black and white photo of two people working with wood in a construction site. They are standing on the ground, surrounded by wooden planks and wood panels. There are several other people working in the background, some of them are carrying wooden planks on their shoulders. A truck is parked in the upper left corner of the image.", - "id": 26389 - }, - { - "image_path": "G:\\images\\combined\\000247_jpg.rf.294e29ad6c1f48092ec310adb2faf198.jpg", - "response": "A couple of men working on power lines.", - "id": 26390 - }, - { - "image_path": "G:\\images\\combined\\000247_jpg.rf.3a0927d760d4aad813e52c9555bf6c33.jpg", - "response": "A couple of men working on a power transformer.", - "id": 26391 - }, - { - "image_path": "G:\\images\\combined\\000247_jpg.rf.9248423648eefaf0b1ddc6c08b6b4bcc.jpg", - "response": "A black and white photo of two men working on a power station. They are wearing hard hats and are focused on the task at hand. The power station is made up of many different metal components and wires.", - "id": 26392 - }, - { - "image_path": "G:\\images\\combined\\000248_jpg.rf.e81ead8583b6214cd3a9b7cb52b99f3f.jpg", - "response": "A tunneling machine is shown in a shaft with a group of workers standing around it.", - "id": 26393 - }, - { - "image_path": "G:\\images\\combined\\000248_jpg.rf.f9ca9f8884fe143ae95f1131c29db5bf.jpg", - "response": "The image shows a tunneling machine in the process of creating a tunnel. The tunneling machine has a large circular cutting head with teeth on it. It is standing in a large pit in the ground, with a concrete wall to the right of it. There are several people standing around the machine, some of them are wearing hard hats. One person is wearing a red hard hat, another person is wearing a white hard hat. There is a backpack on the ground in front of the machine. To the far left of the image, there is a ladder.", - "id": 26394 - }, - { - "image_path": "G:\\images\\combined\\000249_jpg.rf.09255b791b01edf7a70b73118301ab64.jpg", - "response": "A man in a black uniform is handing pink papers to a man in a yellow hard hat who is standing next to a motorcycle.", - "id": 26395 - }, - { - "image_path": "G:\\images\\combined\\000249_jpg.rf.db6644f0ef95f848f33e698eacef71ba.jpg", - "response": "A black and white photo of a man in a uniform handing out flyers to people. The man is standing in front of a table with more flyers on it and a sign behind him. There are several motorcycles and bicycles around him and a few people standing around him.", - "id": 26396 - }, - { - "image_path": "G:\\images\\combined\\000250_jpg.rf.124c8038902bd290b3a80310f5ad6928.jpg", - "response": " Two men(268,311),(610,996)(14,349),(375,996) looking at a clipboard(3,567),(360,743)", - "id": 26397 - }, - { - "image_path": "G:\\images\\combined\\000250_jpg.rf.5121533ce9bb04a1b1f4eb3e0b4115ae.jpg", - "response": " Two construction workers(249,216),(606,912)(13,274),(374,975) looking over a blueprint(3,594),(355,882)", - "id": 26398 - }, - { - "image_path": "G:\\images\\combined\\000250_jpg.rf.79bedf40845d5404c50a85e34fa1461a.jpg", - "response": " Two construction workers(251,219),(607,912)(11,274),(378,974) looking over a blueprint(2,578),(353,883)", - "id": 26399 - }, - { - "image_path": "G:\\images\\combined\\000251_jpg.rf.6a51df3e2fed8b4a9ed2fc3b3c8bd804.jpg", - "response": "A worker with the words \"State Grid\" on his safety vest points to a power tower.", - "id": 26400 - }, - { - "image_path": "G:\\images\\combined\\0002526673_jpg.rf.af8636526e1e9671144450d5485247be.jpg", - "response": "A woman with long dark hair and bangs, wearing a white shirt and a brown skirt with a grid pattern, is standing in an airport. She is wearing a blue mask and holding a green book in her right hand. She is standing under a sign that says \"arrivals\" and \"departure\" in green and white letters. She is wearing a brown bag with a gold buckle across her shoulder. In the background, there are two men wearing orange vests and jeans, and a woman wearing a white shirt and black pants. There are also two suitcases, one next to each man.", - "id": 26401 - }, - { - "image_path": "G:\\images\\combined\\0002526673_jpg.rf.e9a9740ea330f73f3f3c218440e2cff0.jpg", - "response": "A woman with long dark hair and bangs, wearing a white shirt and a black and white plaid skirt, is standing in an airport. She is wearing a blue surgical mask and holding a green book. She has a brown crossbody bag with a gold chain strap. She is standing under a sign that says \"arrivals\" and \"departure\" in green and orange. Behind her is a flight board with various flights listed in white text on a blue background. To the left of her is a group of people with their suitcases, and to the right is a pillar.", - "id": 26402 - }, - { - "image_path": "G:\\images\\combined\\000252_jpg.rf.6a869de53847b2177345279226ada653.jpg", - "response": "A picture of a snowy street with a group of men working on a transformer.", - "id": 26403 - }, - { - "image_path": "G:\\images\\combined\\000254_jpg.rf.3612a0340a6291abf28a4c7be811a16d.jpg", - "response": "A construction worker is installing a window in a building.", - "id": 26404 - }, - { - "image_path": "G:\\images\\combined\\000254_jpg.rf.d166cda550acf911b066d57ad1119408.jpg", - "response": "A construction worker is installing a window on a building.", - "id": 26405 - }, - { - "image_path": "G:\\images\\combined\\000255_jpg.rf.f65af4534ea5764df8bd276b7b638019.jpg", - "response": "A group of workers in red uniforms working on an oil rig.", - "id": 26406 - }, - { - "image_path": "G:\\images\\combined\\000256_jpg.rf.4b1ab86cafedb5bff07b4aac1bccacbb.jpg", - "response": "A construction site with several people working on it.", - "id": 26407 - }, - { - "image_path": "G:\\images\\combined\\000257_jpg.rf.99e85748c6f45b558ee116cfbc1b6669.jpg", - "response": "A couple of workers in blue uniforms and hard hats are working on a power box. One of them is kneeling on the ground and is holding a large orange tool while the other one is holding a large metal piece with a hole in it. They are both looking at the tool in the person on the ground's hands.", - "id": 26408 - }, - { - "image_path": "G:\\images\\combined\\000258_jpg.rf.5d3d1f8569d8241d52f2d4b054e4fc68.jpg", - "response": "The image shows a group of people gathered in front of a building under construction. The group is standing on a small platform in front of a sign that has a picture of the same building. The people are looking at the sign and the building. There are also two cranes working in the background.", - "id": 26409 - }, - { - "image_path": "G:\\images\\combined\\000259_jpg.rf.e32930c81c87a95ff5a6342c98f13c0f.jpg", - "response": "Firefighters are seen rescuing a man who fell into a well at a construction site in Chongqing, Southwest China, on Jan. 14, 2015. The man, surnamed Wang, was working at the construction site when he accidentally fell into the well. He was rescued after a 40-minute operation.", - "id": 26410 - }, - { - "image_path": "G:\\images\\combined\\000260_jpg.rf.e5ce816896b96750d3fcc28a3cc3723a.jpg", - "response": "A construction site with two workers. They are working on a grid of steel rods, which is the foundation of a building.", - "id": 26411 - }, - { - "image_path": "G:\\images\\combined\\000262_jpg.rf.6bd0ce94159485ff863d22a692d219d9.jpg", - "response": "a group of men walking down a dirt road", - "id": 26412 - }, - { - "image_path": "G:\\images\\combined\\000264_jpg.rf.3efc4596f95700610d534d9bbbde93d1.jpg", - "response": "A man in an orange and blue shirt is holding a long black pole.", - "id": 26413 - }, - { - "image_path": "G:\\images\\combined\\000264_jpg.rf.e96fca67b59cf2d4543345aa16ebf1cc.jpg", - "response": "A man in an orange shirt and blue pants is working on a construction site. He is holding a large black pole and is leaning over to work on it. He is wearing a white hard hat and has a pen in his pocket. The ground around him is covered in small rocks and he is standing on a patch of dirt.", - "id": 26414 - }, - { - "image_path": "G:\\images\\combined\\000265_jpg.rf.24ed4b2bd4748274195db7159fa51224.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is large and has a brown color. There are two workers in the tunnel, one on the left and one on the right. The worker on the left is wearing an orange vest and white hard hat. The worker on the right is wearing an orange vest and a yellow hard hat. They are both working on the ground.", - "id": 26415 - }, - { - "image_path": "G:\\images\\combined\\000265_jpg.rf.991bd2d1827dfa4e6c05038610e80c1c.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is narrow and long, with a brown stone wall on the right side and a brown stone wall on the left side. The floor of the tunnel is covered with dirt and rocks. In the foreground, two workers are wearing orange vests and white hats. One of them is squatting down and working on a pipe, while the other is standing in the background, watching. There is a light on the right wall of the tunnel, illuminating the scene.", - "id": 26416 - }, - { - "image_path": "G:\\images\\combined\\000266_jpg.rf.1cd280f1677a5ac74c0c62bc7d42cc3f.jpg", - "response": "The image shows a construction site with three men working.", - "id": 26417 - }, - { - "image_path": "G:\\images\\combined\\000269_jpg.rf.d820d765372db1e3b679227a1fe24b10.jpg", - "response": "In the image, a group of six men are standing in front of a large building. The men are wearing various styles of clothing, with some wearing suits and others wearing more casual attire. They are all standing in a construction area, with yellow caution tape visible in the background. There are also several cars visible in the background, parked on the street. In the foreground, there is a pile of dirt and a large piece of machinery.", - "id": 26418 - }, - { - "image_path": "G:\\images\\combined\\000270_jpg.rf.8afe80ec4421f282024c6b744c7e8449.jpg", - "response": "A couple of men working on a foundation for a building.", - "id": 26419 - }, - { - "image_path": "G:\\images\\combined\\000271_jpg.rf.7cfa7a775d4eb0f00e2b56530c69f8a2.jpg", - "response": "The image shows a construction site in a residential area. There are several workers present, some are digging a large hole in the ground, others are standing around. A yellow trailer is parked in the background. The street is unpaved and there are rocks scattered around. The workers are wearing blue shirts and safety helmets.", - "id": 26420 - }, - { - "image_path": "G:\\images\\combined\\000272_jpg.rf.0d1aa5e87dd4be6247c4669ebe86b253.jpg", - "response": "The image shows a worker in a yellow hard hat and black clothes, holding a large black boot in a tunnel. The tunnel is grey and rough looking and the worker is crouching down. There is a rope attached to the boot and the worker is pulling the boot with it. The worker also has a tool belt around their waist.", - "id": 26421 - }, - { - "image_path": "G:\\images\\combined\\000274_jpg.rf.91dbc98b642cbd4f632c231f16b7b422.jpg", - "response": "The image shows a group of five men dressed in blue work clothes and red hard hats standing in a barren field. They are all holding shovels and working together to move a large chunk of cement. In the background, there are mountains visible.", - "id": 26422 - }, - { - "image_path": "G:\\images\\combined\\000275_jpg.rf.8a323208d020304f9069d3a6b98212de.jpg", - "response": "A construction site with several people working on it. They are wearing different colored uniforms and hard hats. Some of them are holding umbrellas to shield themselves from the rain. The ground is wet and there are pipes and rebar sticking up in the foreground. In the background, there are a few buildings and a city skyline.", - "id": 26423 - }, - { - "image_path": "G:\\images\\combined\\000276_jpg.rf.b52d25e1fe16d625a48a7a74cdf3e2cd.jpg", - "response": "The image shows a group of people wearing hard hats(125,159),(331,346)(636,433),(773,570)(469,376),(602,539)(385,429),(485,543)(322,443),(397,536) and looking into a window into a building. The building has a sign above the window that reads \"\u6210\u578b\u94a2\u7b4b\u6837\u677f\".", - "id": 26424 - }, - { - "image_path": "G:\\images\\combined\\000277_jpg.rf.3fe1caa7ede380ef936e05d87b84a4be.jpg", - "response": "The three men(229,276),(602,994) are wearing white hard hats(267,294),(337,352)(468,278),(573,357)(350,331),(437,394)", - "id": 26425 - }, - { - "image_path": "G:\\images\\combined\\000278_jpg.rf.320c6ef0bcb0ecdc45182f25dbe0a1c3.jpg", - "response": "A group of workers wearing blue uniforms and orange hard hats are outside. They are working on a construction site and one of them is using a jackhammer. There is a pile of rocks in the foreground and a bike is parked in the background. There is also a store in the background.", - "id": 26426 - }, - { - "image_path": "G:\\images\\combined\\000278_jpg.rf.f3b956790114914f4890ec244d9426bc.jpg", - "response": "A group of workers are on a construction site.", - "id": 26427 - }, - { - "image_path": "G:\\images\\combined\\000279_jpg.rf.0867247275ff132225d9e3dc0318d080.jpg", - "response": "The image shows five men in a row, all facing the same direction and looking up at a snowy white cliff. They are wearing yellow helmets and green work clothes. The men are of different heights and some have their hands raised. In the foreground, a man is looking up, his mouth wide open, his hands are above his head, and his yellow helmet is slightly askew. To his left, a man with a similar appearance is looking up, but his hands are not raised. In the middle of the image, two men are looking up, one has his hands raised and the other has his hands on the rope. In the background, two other men are visible, but they are not looking up.", - "id": 26428 - }, - { - "image_path": "G:\\images\\combined\\000280_jpg.rf.54322ee773c2b9d6ba6133001f6c7e50.jpg", - "response": "The image shows a group of men standing in a construction area. There is a building on the left, which appears to be under construction, and a building on the right. In the center of the group, there is a man wearing a white hat and a red shirt. He is talking to a man in a green uniform. Another man in a green uniform is standing to the right of the man in the red shirt. A third man in a green uniform is standing to the right of the man in the red shirt. All the men are wearing ties. In the background, there is a truck.", - "id": 26429 - }, - { - "image_path": "G:\\images\\combined\\000281_jpg.rf.05de725e14925e126545e54e066e5dab.jpg", - "response": " A man(67,217),(258,616) in an orange uniform(68,270),(255,598) stands in a muddy area(4,449),(813,998)", - "id": 26430 - }, - { - "image_path": "G:\\images\\combined\\000281_jpg.rf.7327aaf6ff01fbceb74e730d0722558b.jpg", - "response": " Workers(384,178),(512,368)(66,218),(261,616)(948,235),(1000,358) at a construction site in the mud", - "id": 26431 - }, - { - "image_path": "G:\\images\\combined\\000282_jpg.rf.808c1fc5e0c7c939a8445575956c58b9.jpg", - "response": "A man is working on a building site, he is on a ladder and is wearing a white shirt and a yellow hat. He is working on a wooden scaffolding that is attached to the building. The building is grey and the scaffolding is being built around a corner of the building. There is a green tarp to the left of the man and a white rope to the right of him. There is also a yellow rope on the ground in front of the man.", - "id": 26432 - }, - { - "image_path": "G:\\images\\combined\\000283_jpg.rf.52c5bfbff626a41794f6684b273804cc.jpg", - "response": "a group of men standing around talking", - "id": 26433 - }, - { - "image_path": "G:\\images\\combined\\000284_jpg.rf.9fae97153447d2c96e2a3e71a531f888.jpg", - "response": "Men(588,274),(686,723)(220,327),(327,656)(397,294),(521,703) working at a metal recycle yard", - "id": 26434 - }, - { - "image_path": "G:\\images\\combined\\000286_jpg.rf.475851bd2e9807123f08a713d295b923.jpg", - "response": "A group of construction workers working on a project at night.", - "id": 26435 - }, - { - "image_path": "G:\\images\\combined\\000287_jpg.rf.7e299becc379acb97886b10145e64289.jpg", - "response": "A group of men standing around a construction site looking at a display of plans.", - "id": 26436 - }, - { - "image_path": "G:\\images\\combined\\000289_jpg.rf.641bb1ee19087fa0ded689589f0f3cb8.jpg", - "response": "a group of people standing on a construction site", - "id": 26437 - }, - { - "image_path": "G:\\images\\combined\\000290_jpg.rf.0306ddd2ffd1533045e5a41d7dd89b95.jpg", - "response": "A man wearing a red hard hat is holding a stick and laughing while talking on his cell phone. He is wearing a green shirt and the phone is up to his ear. There is a blue back hoe in the background.", - "id": 26438 - }, - { - "image_path": "G:\\images\\combined\\000290_jpg.rf.2636acb496ec024254a7d3595897890b.jpg", - "response": "A man wearing a red hard hat and holding a shovel is laughing while talking on his cell phone. He is wearing a green shirt and has a beard. In the background there is construction equipment including a blue backhoe and a yellow front loader. There is also a building in the background.", - "id": 26439 - }, - { - "image_path": "G:\\images\\combined\\000291_jpg.rf.27ee3bc756ca32a30079416f07ff7e97.jpg", - "response": "A group of workers in orange are working on a road. They are wearing hard hats and the person in the front is wearing a yellow helmet. They are using tools to work on the road.", - "id": 26440 - }, - { - "image_path": "G:\\images\\combined\\000292_jpg.rf.341f96593754be77c241aab8b1ddab75.jpg", - "response": "A construction worker is working on a scaffold.", - "id": 26441 - }, - { - "image_path": "G:\\images\\combined\\000293_jpg.rf.dd4fc25237a0b7716319b70ac039ca72.jpg", - "response": "An electrician is working on some power lines.", - "id": 26442 - }, - { - "image_path": "G:\\images\\combined\\000294_jpg.rf.4506fac6c355e2e5eff3afc9869180ed.jpg", - "response": "The image shows two workers at a construction site, standing on a grid of rebar. The man on the left is wearing camouflage pants and a green shirt, and is holding a yellow helmet in his hand. The man in the center, who is wearing a yellow helmet, is wearing a gray top and dark pants. They are working together to assemble the rebar for a building foundation.", - "id": 26443 - }, - { - "image_path": "G:\\images\\combined\\000295_jpg.rf.67b7ee30127d1c971ecc46405bba9133.jpg", - "response": " Two engineers(234,334),(430,996) are working on a large piece of machinery. They are wearing yellow high vis vests(244,402),(372,628) and blue hard hats(287,333),(357,401)(349,368),(401,441). The machinery is a large piece of equipment with many pipes and cables running through it.", - "id": 26444 - }, - { - "image_path": "G:\\images\\combined\\000297_jpg.rf.e104572d933576b5b615399014111570.jpg", - "response": "The image shows a group of people standing next to a light blue and white van. The people are wearing hard hats and are standing in front of a tower. A red machine, which appears to be a large tube or pipe, is spraying water into the air. The water is coming from the top of the red machine and is floating upwards. There is a sign in the background that says \"\u5b89\u5168\u751f\u7522\" (safety production).", - "id": 26445 - }, - { - "image_path": "G:\\images\\combined\\000298_jpg.rf.24b96b02839cad5efc15c9feb3b6dd74.jpg", - "response": "A group of men standing around and talking.", - "id": 26446 - }, - { - "image_path": "G:\\images\\combined\\000299_jpg.rf.bde6281de9ec33127d0b678d5ad1734d.jpg", - "response": "The image shows a group of workers in a\u96a7\u9053. They are all wearing yellow hard hats and work clothes. Some of them are standing near a cart with various tools and materials, including buckets and pipes. The tunnel has brown walls and the floor is a curved brown track. In the distance, two workers can be seen walking away from the camera.", - "id": 26447 - }, - { - "image_path": "G:\\images\\combined\\0002c799b0cd7412.jpg", - "response": "A woman sitting on a piano bench holding a bottle of water.", - "id": 26448 - }, - { - "image_path": "G:\\images\\combined\\0002cb8d8ea5eb7e.jpg", - "response": "a scene during the day time", - "id": 26449 - }, - { - "image_path": "G:\\images\\combined\\0002d070329eb0fc.jpg", - "response": "A man standing on top of a blue car in front of a crowd of people.", - "id": 26450 - }, - { - "image_path": "G:\\images\\combined\\0002f9c7fac5f093.jpg", - "response": "The image shows a large colorful mural on the wall of a building. The mural features various images and words, including a guitar, the word \"Hola,\" and the word \"Hello.\" There are several people walking around the area, with some close to the building and others further away. A car is parked on the street nearby.", - "id": 26451 - }, - { - "image_path": "G:\\images\\combined\\000300_jpg.rf.5870088a89617175351cf82766b40a42.jpg", - "response": "A couple of men working on a train track in a tunnel.", - "id": 26452 - }, - { - "image_path": "G:\\images\\combined\\000301_jpg.rf.78cfd3904faec1d8ed392de558980400.jpg", - "response": "A group of men standing around in hard hats", - "id": 26453 - }, - { - "image_path": "G:\\images\\combined\\000302_jpg.rf.6f4094a283d1533bdefbb743bf70ad09.jpg", - "response": "In the image two workers are seen installing an electricity cable in a green field. They are wearing green and blue helmets. One of the workers is holding a tool in his right hand which is used to tighten the cable. The background consists of a mountain and a forest.", - "id": 26454 - }, - { - "image_path": "G:\\images\\combined\\000303_jpg.rf.5dbce49e69d154046a243a10464ace43.jpg", - "response": "A man in a blue shirt and red tie is talking to a group of people. They are standing in front of a building and a mountain. There is a white sign with black writing on the left side of the image.", - "id": 26455 - }, - { - "image_path": "G:\\images\\combined\\000306_jpg.rf.a0d5dab61d266b5e6e3431c0ca4fe487.jpg", - "response": "A group of men standing on the side of a road.", - "id": 26456 - }, - { - "image_path": "G:\\images\\combined\\000307_jpg.rf.f0a7e85cee71a68c6d3c4be10cc45fbf.jpg", - "response": "An employee works on power equipment in a snowy village in Sichuan, China, January 26, 2016. REUTERS/Stringer", - "id": 26457 - }, - { - "image_path": "G:\\images\\combined\\000308_jpg.rf.525d81e879afe3da6eb60f7efc68260d.jpg", - "response": "Three men(486,214),(657,897)(24,238),(193,952)(701,222),(911,997) standing in front of a pile of dirt", - "id": 26458 - }, - { - "image_path": "G:\\images\\combined\\000311_jpg.rf.44d95e30a8993b879451e199cb34feaa.jpg", - "response": "A group of men standing next to each other.", - "id": 26459 - }, - { - "image_path": "G:\\images\\combined\\000312_jpg.rf.3a63a2ff6d3a4de49acd68d561d629dd.jpg", - "response": "A construction site with two workers in green uniforms and yellow hard hats. They are standing on a metal beam holding and adjusting iron girders. The building behind them is made of concrete and has many windows. There is a ladder on the right side of the image and a green tarp in the top left corner.", - "id": 26460 - }, - { - "image_path": "G:\\images\\combined\\000313_jpg.rf.b8b2b3ecbd333eabecfe03bf43c74f78.jpg", - "response": "A worker in a blue uniform and blue hat is on a ladder.", - "id": 26461 - }, - { - "image_path": "G:\\images\\combined\\000314_jpg.rf.5043b52ca8a76c4f814578256af1122d.jpg", - "response": "A group of workers are building a bridge.", - "id": 26462 - }, - { - "image_path": "G:\\images\\combined\\000315_jpg.rf.0f23d469e45af9ba5443c687f786a0bf.jpg", - "response": "A van and an ambulance are parked on the side of the road. The van is white and the ambulance is painted in red and white. There are people standing around the vehicles. One person is holding a camera. The van is on the left side of the image and the ambulance is on the right side. The people are standing in front of a tunnel. The tunnel is dark and appears to be made of stone. The van is partially in front of the tunnel and the ambulance is parked outside the tunnel.", - "id": 26463 - }, - { - "image_path": "G:\\images\\combined\\000317_jpg.rf.bc29dfead348d8f576d7af2b5b513a8b.jpg", - "response": "A large crane is lifting a tower section from a truck bed and positioning it on top of a tower. The tower is white and has a large base. There are several people in the scene, some are wearing hard hats and some are wearing camouflage. One man is standing on the back of a truck, another is climbing a ladder, and others are standing around the base of the tower. There is a hill in the background.", - "id": 26464 - }, - { - "image_path": "G:\\images\\combined\\000318_jpg.rf.e995ff37cb5d0bd199fc536f590d6d90.jpg", - "response": "In the image, a team of construction workers is working on a massive sand dune. They are wearing yellow hard hats and safety gear. In the foreground, a worker is pulling on a large canvas bag, and another is shoveling sand onto the bag. A third worker is in the background, and two more are visible further back. The sky is blue, and the sun is shining.", - "id": 26465 - }, - { - "image_path": "G:\\images\\combined\\000321_jpg.rf.f7301cb84de0f3853650c2ee81b430e7.jpg", - "response": "A group of men standing around each other wearing hard hats.", - "id": 26466 - }, - { - "image_path": "G:\\images\\combined\\000322_jpg.rf.0ae3d694d2f7651cf89b3347f5ca46c7.jpg", - "response": "The image shows a construction worker using a construction safety training simulator. The simulator is a kiosk-like structure with a screen and a few buttons. The construction worker is standing in front of the screen, which is showing the training program. The worker is wearing a white t-shirt and a construction helmet. Another person, probably a trainer, is standing behind the worker, watching the training. The background shows a green mat and a yellow wall. On the right side of the image, there is a yellow pillar with some text written on it.", - "id": 26467 - }, - { - "image_path": "G:\\images\\combined\\000323_jpg.rf.fde11bca2b7c9f45ade138ac31cabde3.jpg", - "response": "A group of men standing around in a construction site", - "id": 26468 - }, - { - "image_path": "G:\\images\\combined\\000324_jpg.rf.8c0e282f5bfd0506a672482d39a30ede.jpg", - "response": "a group of men standing under a red umbrella", - "id": 26469 - }, - { - "image_path": "G:\\images\\combined\\000325_jpg.rf.30dbe1873f2dd9dddf57c8de338ce9b9.jpg", - "response": "A man in an orange jacket and white hard hat is standing on top of a metal structure. He is holding a tool in his right hand and gesturing with his left hand towards the camera. The sky above him is blue with white clouds. There are several metal pipes and tubes attached to the metal structure. In the foreground, there is a ladder made of silver metal.", - "id": 26470 - }, - { - "image_path": "G:\\images\\combined\\000326_jpg.rf.bc9e86aadaf5425607c7313a4d0b2585.jpg", - "response": "In the image, two construction workers are looking at a tablet. They are both wearing yellow and yellow reflective vests, and helmets. The man on the left is wearing a blue helmet, and the man on the right is wearing a yellow helmet. They both have red headphones around their necks.", - "id": 26471 - }, - { - "image_path": "G:\\images\\combined\\000327_jpg.rf.ec58e54bf54b5166a822dca1a9cdfffb.jpg", - "response": "6 men(574,232),(667,669)(246,192),(408,782)(782,279),(860,649)(443,231),(538,662)(348,218),(445,688)(694,244),(803,667) in a construction site", - "id": 26472 - }, - { - "image_path": "G:\\images\\combined\\000329_jpg.rf.4902603ace12d2bad23cb928bf42373e.jpg", - "response": " Two construction workers(416,277),(996,669)(3,278),(483,810) working on a pipe(318,6),(948,869)", - "id": 26473 - }, - { - "image_path": "G:\\images\\combined\\000330_jpg.rf.5f9aeb8b57dfa080be9213563634fcef.jpg", - "response": "In the image, there is a worker wearing a red shirt and a blue helmet. The worker is looking at a piece of equipment, which is a yellow machine with some pipes and a metal bar. The worker is also standing next to a large pipe. The background shows a green field and a blue sky with white clouds.", - "id": 26474 - }, - { - "image_path": "G:\\images\\combined\\000331_jpg.rf.49a64457078f8d92adbff7bd5bc2af42.jpg", - "response": " Emergency services(186,14),(478,838)(693,207),(998,850) work to free a man who was trapped in a sinkhole in China.", - "id": 26475 - }, - { - "image_path": "G:\\images\\combined\\000331_jpg.rf.badaac8650d1cb7db0cd3c41149b9be4.jpg", - "response": " A man(415,338),(809,778) is trapped in a hole after a wall collapsed in China.", - "id": 26476 - }, - { - "image_path": "G:\\images\\combined\\000332_jpg.rf.f8d84ca122b37eba4d0929d7e2031b09.jpg", - "response": "A group of people standing around a pile of dirt.", - "id": 26477 - }, - { - "image_path": "G:\\images\\combined\\000333_jpg.rf.11293ee2077fb75d34adea3ab9600055.jpg", - "response": "a group of people in front of a motorcycle", - "id": 26478 - }, - { - "image_path": "G:\\images\\combined\\000334_jpg.rf.ce325863c2bbc78f53cb42e7d33a1ed8.jpg", - "response": "A worker is working on a tunnel.", - "id": 26479 - }, - { - "image_path": "G:\\images\\combined\\000335_jpg.rf.47df56d188839ad20fb6b339d6f9e6c9.jpg", - "response": "A group of workers are working on an electrical tower.", - "id": 26480 - }, - { - "image_path": "G:\\images\\combined\\000336_jpg.rf.607fac711fc171d49d5e7ae4c44c95d1.jpg", - "response": "In the image, a worker is using a drill to do some maintenance work. The worker is wearing a blue shirt and a yellow hard hat. The drill is being used to make a hole in a black wall. The worker is in the process of drilling into the wall.", - "id": 26481 - }, - { - "image_path": "G:\\images\\combined\\000337_jpg.rf.5663ebea5a7b360752415f7d5f739dc4.jpg", - "response": "a group of people standing in front of a white van", - "id": 26482 - }, - { - "image_path": "G:\\images\\combined\\000338_jpg.rf.3200d446a8c96a83700d647dfc15c1ed.jpg", - "response": "A large group of men wearing hard hats are gathered around a power pole. They are all dressed in dark colored clothing. In the foreground, two men are holding a pole while a third man is climbing it. In the background, two other men are climbing the pole.", - "id": 26483 - }, - { - "image_path": "G:\\images\\combined\\000339_jpg.rf.59bc96bda06ca03c00c56da9a87d8975.jpg", - "response": "In the image, a group of rescue workers in orange jumpsuits are gathered around a man who is trapped in a large pit. The man is on a stretcher and appears to be covered in dirt. The rescue workers are surrounding him and appear to be working together to extract him from the pit. Some of the workers are holding shovels and appear to be digging around the man.", - "id": 26484 - }, - { - "image_path": "G:\\images\\combined\\000339_jpg.rf.7aaa1135e336a8912a5cae781a714bdc.jpg", - "response": "In the image, several construction workers have been buried alive in an underground pit while working on a construction site. They are wearing orange work uniforms. One man is lying on the ground, while another is being rescued by firefighters using a stretcher. The rescuers are also wearing orange work uniforms. In the background, there are several onlookers wearing coats and ties.", - "id": 26485 - }, - { - "image_path": "G:\\images\\combined\\000340_jpg.rf.7cf5a44e24e4040648d1712d260015a1.jpg", - "response": "The image shows a group of four men standing in a construction site. They are all wearing hard hats and coats. The man on the left is wearing a navy blue coat and a red hard hat. The man second from the left is wearing a grey coat and a red hard hat. The man on the right is wearing a black coat and a red hard hat. They are all standing in front of a construction site with a red brick wall and a building under construction in the background. There are also some motorcycles and a car parked in the construction site.", - "id": 26486 - }, - { - "image_path": "G:\\images\\combined\\000341_jpg.rf.3fbcd2fe53e028322d57809729acd2e3.jpg", - "response": "The image shows a group of workers in red hard hats standing on a set of concrete stairs. The workers are wearing grey clothes and red hard hats. The stairs are being built or repaired and there is debris on the ground. The building has a brown roof and red walls. There is a white fence in the background.", - "id": 26487 - }, - { - "image_path": "G:\\images\\combined\\000342_jpg.rf.5ef2b513480d92029b10b7e6e704131c.jpg", - "response": "A group of workers are on a power pole.", - "id": 26488 - }, - { - "image_path": "G:\\images\\combined\\000343_jpg.rf.a5ae5dec99aad8f1cd2a8512468e6a6c.jpg", - "response": "A man wearing a purple shirt and a yellow hard hat sits in a teal colored vehicle.", - "id": 26489 - }, - { - "image_path": "G:\\images\\combined\\000344_jpg.rf.a025c703a774f8fc783cc78507b7b7f6.jpg", - "response": "A man in a snowy field stands on a metal platform and works on an electrical tower. The tower is covered in snow and ice, and the man is wearing a black snowsuit to stay warm. He is using a tool to make adjustments to the power lines above.", - "id": 26490 - }, - { - "image_path": "G:\\images\\combined\\000345_jpg.rf.256fefccc820dddf6b6e4a94115da8d2.jpg", - "response": "In the image there is a worker wearing a hard hat and coveralls standing in a factory. The factory is filled with sparks and the worker is holding a long stick over a pot with liquid metal. The liquid metal is on fire and the worker is stirring it with the stick.", - "id": 26491 - }, - { - "image_path": "G:\\images\\combined\\000346_jpg.rf.693b0c37533ba0fd3bd8cfa78cc10d8e.jpg", - "response": "A man in an orange shirt and blue hat is on a roof installing solar panels.", - "id": 26492 - }, - { - "image_path": "G:\\images\\combined\\000347_jpg.rf.3bd61f7108488ae87f848cfc8923ed56.jpg", - "response": "A construction worker is using a tool on a building site.", - "id": 26493 - }, - { - "image_path": "G:\\images\\combined\\000348_jpg.rf.f07d8797d6d352d1057bce29341f0710.jpg", - "response": "A group of men working on a construction site.", - "id": 26494 - }, - { - "image_path": "G:\\images\\combined\\000350_jpg.rf.bcccb161ec06b7879b1483bb6f389969.jpg", - "response": "An engineer in a yellow vest and blue hard hat is looking at a blueprint in a construction site.", - "id": 26495 - }, - { - "image_path": "G:\\images\\combined\\000351_jpg.rf.c60f62b07915b587aa4318f36bb7a556.jpg", - "response": "A couple of men in yellow jackets and hard hats are working on power lines in the dark.", - "id": 26496 - }, - { - "image_path": "G:\\images\\combined\\000352_jpg.rf.8ae5c3be0dd874cd365630cc09ee409d.jpg", - "response": "An electrician wearing a blue hard hat and an orange jumpsuit repairs a power line.", - "id": 26497 - }, - { - "image_path": "G:\\images\\combined\\000353_jpg.rf.7a5ab17e7dd73dab5878962238db1372.jpg", - "response": "A power line with three men working on it.", - "id": 26498 - }, - { - "image_path": "G:\\images\\combined\\000354_jpg.rf.0465083c8c0fe3688652cd2b7286d1be.jpg", - "response": "A worker in a red hard hat is standing next to a large machine with pipes and gauges. The ground around the machine is covered in a light layer of snow.", - "id": 26499 - }, - { - "image_path": "G:\\images\\combined\\000355_jpg.rf.840c24cfbfb6ba1efd349dfa59436fbd.jpg", - "response": "A group of people(342,359),(511,964)(656,384),(728,732)(879,358),(975,698)(793,363),(881,700)(594,384),(657,693)(494,383),(599,820)(24,339),(249,997)(808,365),(860,677)(964,368),(997,667)(438,368),(501,797)(722,384),(796,686) standing in front of a construction site", - "id": 26500 - }, - { - "image_path": "G:\\images\\combined\\000355_jpg.rf.8ac2ba2b3ef24c70c36eeb34e41bd743.jpg", - "response": "A group of people standing in a construction site.", - "id": 26501 - }, - { - "image_path": "G:\\images\\combined\\000356_jpg.rf.b8016adc409b249fabb8efd474ae6764.jpg", - "response": "A construction worker welding steel on the side of a building.", - "id": 26502 - }, - { - "image_path": "G:\\images\\combined\\000357_jpg.rf.cfcbdce5757a184a3f9cd10b5f9b1230.jpg", - "response": "a man wearing a yellow hard hat holding a rolled up blueprint in front of a building under construction", - "id": 26503 - }, - { - "image_path": "G:\\images\\combined\\000359_jpg.rf.6051b3855b3a23ad592b645d8a39e95f.jpg", - "response": "The image shows two workers in yellow hard hats and green uniforms walking away from the camera on a construction site. They are carrying tools and have orange straps on their waists. In the background, there is a large building under construction with scaffolding and a red tower crane. There is also a blue truck parked near the workers. The sky is blue and there are no other people in the scene.", - "id": 26504 - }, - { - "image_path": "G:\\images\\combined\\00035b31f27829d6.jpg", - "response": "The image features two women wearing matching black outfits, possibly cheerleaders or dancers. They are posing together for a photo, with one woman standing behind the other. Both women have matching outfits and appear to be smiling for the camera.", - "id": 26505 - }, - { - "image_path": "G:\\images\\combined\\000361_jpg.rf.2e4e02020e55a55a1b060bd2c1f54dcb.jpg", - "response": "A group of construction workers are working on a building site.", - "id": 26506 - }, - { - "image_path": "G:\\images\\combined\\000362_jpg.rf.e951e9060d2369e57ae846ceb21ce79c.jpg", - "response": "In the image there is a construction site with multiple people present. Some people are standing around while others are working. There is a large crane in the background and a truck is visible as well. Some notes are being taken by a man who is wearing a hard hat and holding a clipboard. He is standing under the crane.", - "id": 26507 - }, - { - "image_path": "G:\\images\\combined\\000364_jpg.rf.f52dca4850e7ed28d8eddaf170ce2545.jpg", - "response": "The image shows a group of four construction workers in a large building site. They are all wearing blue coveralls and yellow hard hats, and are standing among steel beams and other construction materials. The workers are of varying heights and are positioned at different points within the frame. In the foreground, two of the workers are shaking hands, while another is visible in the background. The fourth worker is not clearly visible. The workers are barefoot.", - "id": 26508 - }, - { - "image_path": "G:\\images\\combined\\000365_jpg.rf.dc1c47b479f3b2c225fa7daa049cbca2.jpg", - "response": "In the image there is a person wearing a yellow hard hat and camouflage clothing, working on a construction site made of iron rods. The person is crouching down and appears to be holding a yellow tape measure and a bottle of water. There is a yellow hard hat on the ground next to the person and a few other people working in the background.", - "id": 26509 - }, - { - "image_path": "G:\\images\\combined\\000366_jpg.rf.f9327f9abc4a3b09034ae14d1e60d125.jpg", - "response": "A group of men standing around talking.", - "id": 26510 - }, - { - "image_path": "G:\\images\\combined\\000367_jpg.rf.0aac62145e497a17e021e1b34c498ecd.jpg", - "response": "Three men in construction gear looking at a blueprint on a white board.", - "id": 26511 - }, - { - "image_path": "G:\\images\\combined\\000369_jpg.rf.e28334dffa840d7d3cd92d1278d6e5d5.jpg", - "response": "A couple of men working on power lines.", - "id": 26512 - }, - { - "image_path": "G:\\images\\combined\\000370_jpg.rf.750b1a0a71f0bc87bb7d40ebb3e11805.jpg", - "response": "A construction site with three men working on it.", - "id": 26513 - }, - { - "image_path": "G:\\images\\combined\\000371_jpg.rf.43097238a6f069d8f087baf4593bdfe9.jpg", - "response": "A group of men standing around and talking.", - "id": 26514 - }, - { - "image_path": "G:\\images\\combined\\000372_jpg.rf.001b71ff2fccbbe356b1a874e9878fb2.jpg", - "response": "a group of people walking in front of a construction site", - "id": 26515 - }, - { - "image_path": "G:\\images\\combined\\000372_jpg.rf.15520ace36f9ff529f2542f824a20a90.jpg", - "response": "a group of people walking in front of a construction site", - "id": 26516 - }, - { - "image_path": "G:\\images\\combined\\000373_jpg.rf.3150cb3be14117663f48811f452de85d.jpg", - "response": "A man is lifted out of a hole by a group of onlookers(415,3),(637,327)(148,715),(457,997)(769,62),(917,329)(656,286),(878,791)(860,251),(997,618)(698,626),(890,997)(508,736),(716,997) and firefighters(170,329),(628,869).", - "id": 26517 - }, - { - "image_path": "G:\\images\\combined\\000373_jpg.rf.dc31acc6ac4471d3ed6464982a989554.jpg", - "response": "A man is lifted out of a hole by a group of construction workers(149,329),(630,877)(148,716),(457,997)(768,63),(940,348)(512,735),(714,997)(649,286),(877,788)(418,3),(637,328)(859,251),(997,629)(678,627),(905,997).", - "id": 26518 - }, - { - "image_path": "G:\\images\\combined\\000374_jpg.rf.341ee1a44e6c83e17f4588899683139e.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a construction site. They are working on a large structure made of metal rods, and one of them is using a tool to make adjustments. In the background, there is a large green earth mover parked next to a orange safety fence.", - "id": 26519 - }, - { - "image_path": "G:\\images\\combined\\000376_jpg.rf.e2c92fba2d900f28de182b71c7c6f90f.jpg", - "response": "a group of men wearing hard hats", - "id": 26520 - }, - { - "image_path": "G:\\images\\combined\\000377_jpg.rf.0e18a4933f0b6b6fcefebd024e5d6852.jpg", - "response": "The image shows two men standing in front of a construction site. One man is wearing a hard hat and green jacket and is holding a pen and paper. The other man is wearing a black jacket. They are both standing in front of a construction site with a bulldozer in the background.", - "id": 26521 - }, - { - "image_path": "G:\\images\\combined\\000377_jpg.rf.f10c5a396ee7c553d92e1d0b2e02fdb0.jpg", - "response": "The image shows two men standing on a construction site. One man is wearing a hard hat and a green jacket, and is standing in front of a bulldozer. The other man is wearing a black jacket and is holding a clipboard. They are both standing on a concrete area with a large building in the background.", - "id": 26522 - }, - { - "image_path": "G:\\images\\combined\\000378_jpg.rf.07b7ee7a7a288b7273108eac0ccecd15.jpg", - "response": "A ship is being dismantled in a shipyard in\u798f\u5dde\u957f\u4e50.", - "id": 26523 - }, - { - "image_path": "G:\\images\\combined\\000379_jpg.rf.47927bd204f376e8052c8171c5548501.jpg", - "response": " Construction workers(268,432),(339,737)(724,407),(782,698)(336,520),(414,857)(548,487),(658,861)(472,486),(557,820)(382,480),(488,858)(698,417),(738,628)(641,423),(686,588)(917,143),(997,881) stand under a partially constructed building", - "id": 26524 - }, - { - "image_path": "G:\\images\\combined\\000379_jpg.rf.9b060a4741197524be3761b75754d887.jpg", - "response": "A group of people stand under a concrete structure.", - "id": 26525 - }, - { - "image_path": "G:\\images\\combined\\000380_jpg.rf.f7421ac40e43f1f3e78daf1eed6f61d6.jpg", - "response": " Two workers(275,185),(514,995)(642,66),(870,996) in a mine", - "id": 26526 - }, - { - "image_path": "G:\\images\\combined\\000381_jpg.rf.4233fcf300286ababdf23bdc1f8205e9.jpg", - "response": "In the image two construction workers are talking in a construction site. One of the worker is holding a clipboard and talking on a phone. Another worker is watching him. They are both wearing orange jackets and helmets. In the background a yellow excavator is working.", - "id": 26527 - }, - { - "image_path": "G:\\images\\combined\\000382_jpg.rf.9b666b97c3ac00c3c4bcb19843b5d363.jpg", - "response": "The image shows two workers in blue uniforms and safety gear, one of them is hanging from a power line and the other one is working on a power line support.", - "id": 26528 - }, - { - "image_path": "G:\\images\\combined\\000383_jpg.rf.7f215d4067e9c75258f3e094f5c94f53.jpg", - "response": "A group of three men wearing hard hats are standing in a room with concrete walls and a cement floor. They are wearing yellow and black clothing and are holding equipment.", - "id": 26529 - }, - { - "image_path": "G:\\images\\combined\\000384bb6da4764b.jpg", - "response": "A magazine page with an article about FON.", - "id": 26530 - }, - { - "image_path": "G:\\images\\combined\\000385_jpg.rf.7ccd228d56c5d86cd67066017831b3fb.jpg", - "response": "a group of men working on a building site", - "id": 26531 - }, - { - "image_path": "G:\\images\\combined\\000385_jpg.rf.c694c0e3f6c1560bd2240c3e8e6f7201.jpg", - "response": "A group of workers in China are seen here working on a large construction site.", - "id": 26532 - }, - { - "image_path": "G:\\images\\combined\\000386_jpg.rf.73b93d2f05de14b805f87e65f483be29.jpg", - "response": "The image shows two men standing in front of a building under construction. Both men are wearing white hard hats. The man on the left is wearing a blue shirt and blue jeans, and is holding a stick. The man on the right is wearing a white shirt and green pants, and is also holding a stick. They are both looking at something, possibly the building or the construction site. The building has scaffolding around it and is covered in green netting.", - "id": 26533 - }, - { - "image_path": "G:\\images\\combined\\000387_jpg.rf.25b9fb0c212f1e22e7b630410c203fba.jpg", - "response": "In the image there is a group of people standing around a man who is laying on the ground. The man is wearing a black jacket and has a white shirt underneath. He is also wearing a pair of grey pants. There is a TV sitting on the ground near the man. It is a silver TV that is turned off. The man is also holding a remote in his hand. There is a yellow helmet on the ground in front of the man who is laying on the ground. He is also wearing a black hat. There is a white bowl next to the man who is laying on the ground. In the background there is a white van.", - "id": 26534 - }, - { - "image_path": "G:\\images\\combined\\000387_jpg.rf.272972284965d7a81a574ebf65b2bf30.jpg", - "response": "In the image there is a group of people standing around a man who is laying on the ground. The man is wearing a black jacket and has a white shirt underneath. He is also wearing a pair of grey pants. There is a yellow hard hat on the ground next to the man. In the background, there is a grey street sign that says \"Kai Fa\" in red letters. There is also a yellow hard hat further back on the ground.", - "id": 26535 - }, - { - "image_path": "G:\\images\\combined\\000388_jpg.rf.bc1cfda0343fdef23e74098a71efeddf.jpg", - "response": "A group of men standing on top of a building with steel beams and a metal framework.", - "id": 26536 - }, - { - "image_path": "G:\\images\\combined\\000389_jpg.rf.50c15ebe1134033f86381210014044b3.jpg", - "response": "A construction site with a person wearing a blue shirt and yellow hard hat. The person is standing next to a large piece of machinery and some metal rods. There are many other metal rods stacked on the ground and some are being loaded onto a truck in the background. There are also some people in the scene.", - "id": 26537 - }, - { - "image_path": "G:\\images\\combined\\000390_jpg.rf.ac64f6bafbb779e7161d4a96179169ae.jpg", - "response": "A worker is being rescued by soldiers using a zipline.", - "id": 26538 - }, - { - "image_path": "G:\\images\\combined\\000391_jpg.rf.6c9651db9db0d55ba2fbc4923e9edd90.jpg", - "response": "Three men in a room with white walls and one of them is holding a clipboard.", - "id": 26539 - }, - { - "image_path": "G:\\images\\combined\\000392_jpg.rf.794d189c2d81caa3aee8425d7fa5386a.jpg", - "response": "A group of people sitting around a table.", - "id": 26540 - }, - { - "image_path": "G:\\images\\combined\\000393_jpg.rf.4202a4721c3f5340e6d0a528f092be91.jpg", - "response": "In the image two workers are seen handling a large spool of wire. The man on the left is wearing a blue jacket and a hat and is holding a blue cable. The man on the right is wearing a blue hat and is pulling a large wooden spool of wire. The workers are standing on the road and there are a few cars and a truck in the background. The sky is grey and it appears to be raining.", - "id": 26541 - }, - { - "image_path": "G:\\images\\combined\\000394_jpg.rf.2d540c09dcebb3047a971b8fd5d645a6.jpg", - "response": "A construction worker is standing under a large piece of equipment.", - "id": 26542 - }, - { - "image_path": "G:\\images\\combined\\000395_jpg.rf.932a27894a5e19a3f54355204216e68c.jpg", - "response": "A group of men are working on a construction site.", - "id": 26543 - }, - { - "image_path": "G:\\images\\combined\\000396_jpg.rf.0c42020a50193eeb171ced9b71f7efa9.jpg", - "response": "A man in a black shirt and a red hard hat is watching two other men who are working on a power line. The power line is attached to a tall metal pole and the men are on it. There are trees in the background and a mountain.", - "id": 26544 - }, - { - "image_path": "G:\\images\\combined\\000397_jpg.rf.47528d1e8c07bed01c530207aff5b47a.jpg", - "response": "In the picture, several workers are seen pushing a large wooden pole through the snow. The workers are wearing blue hats and some of them are wearing green jackets. The ground is covered with snow and the workers are using a rope to pull the pole.", - "id": 26545 - }, - { - "image_path": "G:\\images\\combined\\000398_jpg.rf.c274af655b1bca970d1e756190af3be4.jpg", - "response": "In the image there are two construction workers, one is positioned on the left and the other in the center right. They are wearing yellow helmets and work clothes. The man on the right is holding a yellow shovel and the man on the left is holding a yellow pipe. They are working on a construction site, there are red steel bars in the bottom left of the image and a concrete column frame in the background. The sky is a clear blue color.", - "id": 26546 - }, - { - "image_path": "G:\\images\\combined\\000399_jpg.rf.d225a73b4749112c255e0c7614b676d6.jpg", - "response": "A man is working on a building.", - "id": 26547 - }, - { - "image_path": "G:\\images\\combined\\000400_jpg.rf.095a9d5c7ff6f2dc49713cd2b2b38493.jpg", - "response": "This image shows a man sitting at a desk in an airplane. He is wearing a black coat and is looking out the window. There is a lamp on the desk and several books and papers are scattered about. The man's watch is visible and he has a pen in his left hand. The background is blurred out and there is a red circle in the top right corner.", - "id": 26548 - }, - { - "image_path": "G:\\images\\combined\\000401_jpg.rf.d18a81bf31e397e4214829ac125f123a.jpg", - "response": "The photo shows some workers in blue uniforms and blue helmets who seem to be working on a construction site. The workers are very focused on their task, which seems to be cementing or cutting a concrete structure. One worker is on the left side of the image, and the other three are on the right side. They are all wearing white gloves, and the one in the middle has a knife in his hand. The background shows a large building and a blue sky.", - "id": 26549 - }, - { - "image_path": "G:\\images\\combined\\000402_jpg.rf.96399112e3437f137f4219f5f94d75f6.jpg", - "response": "A pair of workers with blue hats and black jackets are working in a field with snow covered trees in the background.", - "id": 26550 - }, - { - "image_path": "G:\\images\\combined\\000403_jpg.rf.d11078c39fa04980d3d2c8ff9a8546fd.jpg", - "response": "In the image there is a construction site with multiple workers. There is a yellow hard hat being worn by a worker in the center of the image. There is a white helmet being worn by a worker in the far left of the image. There are two red and white striped poles in the foreground of the image. In the background there are multiple buildings under construction. There is a yellow crane operating in the background on the left side. There is a white building under construction on the right side of the image.", - "id": 26551 - }, - { - "image_path": "G:\\images\\combined\\000404_jpg.rf.360526fbc00258f8c7877c84eeeb8a7e.jpg", - "response": "A couple of men in hard hats stand next to a hole in the ground.", - "id": 26552 - }, - { - "image_path": "G:\\images\\combined\\000405_jpg.rf.087b49ab5145d6ecc7710d680e42c1d0.jpg", - "response": "A man in a blue shirt and yellow hat is sitting on a muddy surface. Another man in a blue shirt and orange pants is standing next to him. They are both working on a construction site.", - "id": 26553 - }, - { - "image_path": "G:\\images\\combined\\000406_jpg.rf.6ff11b12b8eafb7bd1d09e13050d0c02.jpg", - "response": "A worker in a blue hat and tan coat is using a tool to work on a grey pole with many wires attached to it. The pole is in front of a small orange truck with a yellow front. The truck has a red light on top and a blue and white license plate on the front.", - "id": 26554 - }, - { - "image_path": "G:\\images\\combined\\000407_jpg.rf.857e353a3d6b275c253f6a63f4f9b6e3.jpg", - "response": " Two men(325,144),(691,996)(73,158),(340,996) in high visibility vests(335,385),(690,999)(79,389),(342,995) and hard hats(380,143),(526,301)(198,158),(333,296) stand in a tunnel holding a rolled-up blueprint(49,613),(594,953).", - "id": 26555 - }, - { - "image_path": "G:\\images\\combined\\000408_jpg.rf.70b94c8225d3a02a58367138b0a4af2d.jpg", - "response": "The image shows a construction site with a large crane digging in a muddy area. There are two workers visible, one on the far right and another further back in the scene. There is a muddy water hole in the foreground and a muddy trail going off to the left. In the background, there is a power line and a few wind turbines.", - "id": 26556 - }, - { - "image_path": "G:\\images\\combined\\000409_jpg.rf.2135d5a8cf7f599f4e6f9f4080c03c6c.jpg", - "response": "A group of people sitting around a table with papers and water bottles in front of them.", - "id": 26557 - }, - { - "image_path": "G:\\images\\combined\\000411_jpg.rf.0e00e613def9a71bef48d2e58c4edc99.jpg", - "response": "In the image there is a man wearing an orange uniform and a blue hat, he is working on\u4fee\u590d\u4e00\u6761\u8f93\u7535\u7ebf\u8def, the man is hanging from the lines while wearing safety equipment. He is wearing white gloves and has a tool belt around his waist. The background is a snowy mountain.", - "id": 26558 - }, - { - "image_path": "G:\\images\\combined\\000412_jpg.rf.329478389bcd3d0d43bb2c621a984527.jpg", - "response": "A construction site with two men working on a scaffold. Both men are wearing yellow hard hats and are standing on the scaffold. One man is helping the other by holding a pipe for him.", - "id": 26559 - }, - { - "image_path": "G:\\images\\combined\\000413_jpg.rf.054fe095236a9485d802f066742f4240.jpg", - "response": "A construction site with multiple workers and a crane.", - "id": 26560 - }, - { - "image_path": "G:\\images\\combined\\000414_jpg.rf.2a8e3400513bd6f1f0ff3240e7a8f241.jpg", - "response": " Two workers(651,208),(995,996)(486,423),(655,997) in protective gear document the damage to a bridge", - "id": 26561 - }, - { - "image_path": "G:\\images\\combined\\000415_jpg.rf.c0088a77ced230bf5e7ef6f2c9dc9566.jpg", - "response": "A man in a red hat is on a power line, working on it.", - "id": 26562 - }, - { - "image_path": "G:\\images\\combined\\000416_jpg.rf.74ac17334848b4abd3c92f48313f3fed.jpg", - "response": "A man(77,308),(553,997) with a blue shirt(267,452),(553,832) and a red hard hat(752,153),(973,357) is pointing to something on the ground.", - "id": 26563 - }, - { - "image_path": "G:\\images\\combined\\000416_jpg.rf.8c3ca21c7bdf72bd3b6666b4be97c05f.jpg", - "response": "Men(687,156),(996,996)(76,308),(555,997) in hard hats(753,155),(970,357) standing in a construction site", - "id": 26564 - }, - { - "image_path": "G:\\images\\combined\\000418_jpg.rf.b91e8fa982627abfe64722d835ec96af.jpg", - "response": "A group of people working on a building construction site.", - "id": 26565 - }, - { - "image_path": "G:\\images\\combined\\000419_jpg.rf.b88c00554457dbaa810b5c2335801a82.jpg", - "response": "A group of men in blue work coveralls and red safety helmets are standing in the dirt. They are looking up at a power pole that has been felled by a storm. The pole is leaning to the right and has been broken in several places. It is covered in tree branches and there are several downed power lines attached to it. The ground around the pole is littered with tree branches and there is a pile of them to the right of the pole.", - "id": 26566 - }, - { - "image_path": "G:\\images\\combined\\000420_jpg.rf.5966537dfe703d24551036fc59c36b29.jpg", - "response": "A construction site with a pile of bricks in the foreground. A man in a blue jacket and red hat is on the left, standing next to the pile of bricks. A man in a blue jacket and black pants is on the right, walking towards the pile of bricks. In the background, there is a red and white building. To the far right, there is a white building with many windows. In the middle, there is a yellow and black construction vehicle.", - "id": 26567 - }, - { - "image_path": "G:\\images\\combined\\000421a4ed497ea4.jpg", - "response": "A large metal pot filled with a white liquid sits on a black scale. A wooden spoon is in the pot and a person's hand is visible holding the spoon.", - "id": 26568 - }, - { - "image_path": "G:\\images\\combined\\000421_jpg.rf.f4c1c684671e48e2f30fcd948bce3cd5.jpg", - "response": "A diagram showing the damage to the tunnel.", - "id": 26569 - }, - { - "image_path": "G:\\images\\combined\\000423_jpg.rf.34f99526ee90c0904addd645f456bee9.jpg", - "response": "A construction worker in a yellow hard hat is using a tool to chip away at a cement structure. The cement structure is in the middle of a construction site. There are two large cement vats to the right of the worker and a bucket of some sort to the left of the worker. In the background there is a forest of trees and a tower.", - "id": 26570 - }, - { - "image_path": "G:\\images\\combined\\000424_jpg.rf.d184b94e3c6e93028dcde071e6c74311.jpg", - "response": "Two men in yellow vests and hard hats looking at blueprints on a rooftop.", - "id": 26571 - }, - { - "image_path": "G:\\images\\combined\\000426_jpg.rf.c266f866e19b43354ccf84309f21a5a5.jpg", - "response": "A couple of men fixing a pipe in a muddy field.", - "id": 26572 - }, - { - "image_path": "G:\\images\\combined\\000427_jpg.rf.146a26e4aff8db36ca7459cd6c8dc51d.jpg", - "response": "a group of people standing in a field", - "id": 26573 - }, - { - "image_path": "G:\\images\\combined\\000428_jpg.rf.492222766511d64106bce014a4c230e2.jpg", - "response": "A construction site with several people working on a railway.", - "id": 26574 - }, - { - "image_path": "G:\\images\\combined\\000429_jpg.rf.50b485de5778f8cf0a9b8947b07999c7.jpg", - "response": "A construction site with multiple people working on it.", - "id": 26575 - }, - { - "image_path": "G:\\images\\combined\\000433_jpg.rf.9624bdf4bfac47c0fb9fd19186bbc3f7.jpg", - "response": "Three workers in blue work clothes and white helmets are standing on a green staircase near a white building. They are in front of a large pipe and a valve.", - "id": 26576 - }, - { - "image_path": "G:\\images\\combined\\000434_jpg.rf.296fc4e679d7cd094d8dab1ebd946bb8.jpg", - "response": "A worker is seen at a construction site of the Hong Kong-Zhuhai-Macau Bridge in Zhuhai city, south China's Guangdong province, Oct. 26, 2016. The Hong Kong-Zhuhai-Macau Bridge, the world's longest sea crossing, is expected to be completed in 2017. (Xinhua/Li Gang)", - "id": 26577 - }, - { - "image_path": "G:\\images\\combined\\000435_jpg.rf.45652ef6edad3070722a75052756b382.jpg", - "response": "A construction worker in a white helmet and red shirt is working on a mesh of red pipes. The worker is on the bottom left of the image and another worker is on the top right. They appear to be building a structure out of the red pipes.", - "id": 26578 - }, - { - "image_path": "G:\\images\\combined\\000437_jpg.rf.4a14c0ba9cb40ded56abc9bef260dd18.jpg", - "response": "A group of men standing around a green building.", - "id": 26579 - }, - { - "image_path": "G:\\images\\combined\\000437_jpg.rf.66c05c614b9c54c1958d36a74396ba46.jpg", - "response": "A group of men standing around a green trailer.", - "id": 26580 - }, - { - "image_path": "G:\\images\\combined\\000438_jpg.rf.bb14073afec32e7a0a80f3001f4fc210.jpg", - "response": "A construction site with multiple workers wearing yellow and orange hard hats.", - "id": 26581 - }, - { - "image_path": "G:\\images\\combined\\000439_jpg.rf.f86e3218ce2a4e715eb859cf4a17cd03.jpg", - "response": "The photo shows a group of workers in a grey tunnel. They are all holding tools and are wearing red helmets. The tunnel is symmetrical and the workers are standing in the middle. There are measurement tools in the foreground.", - "id": 26582 - }, - { - "image_path": "G:\\images\\combined\\00043e7c5c4c025a.jpg", - "response": "A silver car is parked in a parking lot with fog all around. The car has its brake lights on. There is a fence in the distance on the right side of the image. Two street lights are visible in the image, one on the left and one on the right.", - "id": 26583 - }, - { - "image_path": "G:\\images\\combined\\000440_jpg.rf.0b62b36d4867a3cc9bbfad81456954a7.jpg", - "response": "A man in a red uniform and hard hat sitting in a forklift in a warehouse.", - "id": 26584 - }, - { - "image_path": "G:\\images\\combined\\000441_jpg.rf.7b7e70b730d10e97f89b252acf7e8b9d.jpg", - "response": "In the image there are two people wearing neon yellow safety vests. They are sitting on a concrete structure, likely a balcony or a roof, and having a discussion. The man on the left is pointing towards something in the distance, and they both have coffee in hand. The man on the right has short hair and a beard, and is wearing a red hat. The woman has long hair and is wearing a pink hat. They are both carrying a red tool bag. In the background, on the right, there is construction happening.", - "id": 26585 - }, - { - "image_path": "G:\\images\\combined\\000442_jpg.rf.b740bf0649247a63f700b6ffc2bc8730.jpg", - "response": "a group of men(362,182),(613,888)(94,82),(385,996)(538,276),(997,997)(1,81),(123,997)(798,104),(953,546)(567,233),(762,877)(601,169),(720,420) looking at a paper(223,800),(765,997)", - "id": 26586 - }, - { - "image_path": "G:\\images\\combined\\000443_jpg.rf.fd829b7a43ba6aac861ad8f8658a9fa9.jpg", - "response": "A construction site with multiple cranes and workers.", - "id": 26587 - }, - { - "image_path": "G:\\images\\combined\\000444_jpg.rf.105d9abcfb33fb38afc512a016febf77.jpg", - "response": "a group of people standing in front of a construction site", - "id": 26588 - }, - { - "image_path": "G:\\images\\combined\\000445_jpg.rf.b74ce0b225f25ac5ba2ee38135476618.jpg", - "response": "A man wearing a yellow hard hat sitting on a yellow tractor.", - "id": 26589 - }, - { - "image_path": "G:\\images\\combined\\000446_jpg.rf.7eca73589b76b142ce4f30546c9bccc0.jpg", - "response": "The image shows two workers repairing a power line. They are both wearing blue shirts and yellow helmets. One worker is on a cherry picker and the other is on the ground. They are both working on a power line.", - "id": 26590 - }, - { - "image_path": "G:\\images\\combined\\000447_jpg.rf.c3e33e8497cffd49bc7c05b371d1e95b.jpg", - "response": "A picture of workers on a ladder working on a power line.", - "id": 26591 - }, - { - "image_path": "G:\\images\\combined\\000448_jpg.rf.9cf1dc059a084cf693feb4d858ffc43e.jpg", - "response": "In the image, there are two people wearing yellow helmets and yellow and white safety vests. They are both looking at solar panels. The solar panels are arranged in neat rows and cover most of the surface of the scene. The sky is light blue and can be seen above the solar panels.", - "id": 26592 - }, - { - "image_path": "G:\\images\\combined\\000449_jpg.rf.8808b858779185fbb17e0fa156986df5.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 26593 - }, - { - "image_path": "G:\\images\\combined\\000449_jpg.rf.94a14f102861d293e8b0d2f6ddec0d4a.jpg", - "response": "A group of men in suits standing in front of a building under construction", - "id": 26594 - }, - { - "image_path": "G:\\images\\combined\\000450_jpg.rf.34b7e151c0e1ecb4b3904370c495daaf.jpg", - "response": "a man in a yellow hat(427,455),(513,595)", - "id": 26595 - }, - { - "image_path": "G:\\images\\combined\\000451_jpg.rf.67951c705c0b07e3e1e57ed0949b201a.jpg", - "response": "In the image, there are two people standing in a construction site. The person on the left is wearing a yellow hat and a yellow top with black pants. The person on the right is wearing a red hat and a blue jacket with a white top and black pants. They are both holding hands and are pointing to the left. In front of them, on the ground, there are several pieces of wood in different colors and sizes. To the left of the construction site, there is a truck.", - "id": 26596 - }, - { - "image_path": "G:\\images\\combined\\000453_jpg.rf.90b35b73b02c0087d2cc9475a04171e5.jpg", - "response": "A group of men working on power lines.", - "id": 26597 - }, - { - "image_path": "G:\\images\\combined\\000454_jpg.rf.72f9a698ef6af41a2eaf901de9a52768.jpg", - "response": "A worker in orange protective gear repairs a steel girder on a bridge.", - "id": 26598 - }, - { - "image_path": "G:\\images\\combined\\000455_jpg.rf.2be2729d6161e3daa5662655af2897a0.jpg", - "response": "In the image two workers wearing blue helmets are repairing a machine. The background is a wall and a fence.", - "id": 26599 - }, - { - "image_path": "G:\\images\\combined\\000456_jpg.rf.5f99f6b477c80db359016ac27c974306.jpg", - "response": "A construction site with three people and a yellow crane.", - "id": 26600 - }, - { - "image_path": "G:\\images\\combined\\000457_jpg.rf.a888a54548051dfb9683d80d347cd5a8.jpg", - "response": "A group of people standing around a large piece of machinery.", - "id": 26601 - }, - { - "image_path": "G:\\images\\combined\\000458_jpg.rf.89e817c4ba0f4204912f10bb7ada7c9f.jpg", - "response": "A group of six people standing in a warehouse.", - "id": 26602 - }, - { - "image_path": "G:\\images\\combined\\000459_jpg.rf.f7c33cd506aff92e57e5bfbe3c09b15f.jpg", - "response": "In the image there are two workers wearing red helmets and grey uniforms. They are building a bamboo structure with yellow tubes. The worker on the right is smiling and has a red helmet and is pulling on a yellow tube. There are green plants and a white building in the background.", - "id": 26603 - }, - { - "image_path": "G:\\images\\combined\\000460_jpg.rf.0a30e1a0c6e935a1881451c66b4caa9a.jpg", - "response": "The image shows a group of five men standing outside a building. They are all wearing white shirts and are holding blue and orange hard hats. The man on the far left is wearing a hat and glasses and is pointing towards the building. The man second from the left is also wearing a hat and has a beard. The third man has black hair and glasses and is looking upwards. The man second from the right has dark hair and is looking to the right. The man on the far right has dark hair and is also looking to the right. In front of the group, there is a large blue and white sign that reads \"\u65f6\u65f6\u6ce8\u610f\u5b89\u5168\". To the left of the group, there is a flight of stairs leading to a metal door.", - "id": 26604 - }, - { - "image_path": "G:\\images\\combined\\000460_jpg.rf.496370e91aaf1cbdb2b0c8ad71f00a6b.jpg", - "response": "The image shows a group of five men standing outside a building. They are all wearing safety helmets and seem to be having a discussion. The building in the background is a grey-blue color with a staircase leading up to it. The men are standing in front of the building and to the left, there is a sign that says \"\u65f6\u65f6\u6ce8\u610f\u5b89\u5168\" (meaning pay attention to safety at all times).", - "id": 26605 - }, - { - "image_path": "G:\\images\\combined\\000462_jpg.rf.a57a10d1df206ac91388fff97575a2c0.jpg", - "response": "The image shows a group of men working on a large metal structure, which appears to be a part of an electricity pylon. The men are wearing hard hats and are focused on their task. Some of them are standing on ladders, while others are using tools such as hammers and wrenches. The sky is grey and overcast, and there are trees in the background.", - "id": 26606 - }, - { - "image_path": "G:\\images\\combined\\000463_jpg.rf.b7e034a4f817b48e192c4def03c7996b.jpg", - "response": "A group of construction workers wearing hard hats.", - "id": 26607 - }, - { - "image_path": "G:\\images\\combined\\000464_jpg.rf.30e12df711e9fce60e11c403bde0a7f9.jpg", - "response": "A large ship is on a wet dock. It is red and black. There is a man in front of the ship wearing a white shirt and a hard hat. He is looking at the ship. There are several people on the dock near the ship. There is a yellow and blue crane near the ship. There are several red objects on the ground near the ship.", - "id": 26608 - }, - { - "image_path": "G:\\images\\combined\\000465_jpg.rf.64e00628ca847b6c7206a435535ba848.jpg", - "response": "In the image two workers are working on a ship in the background a small island can be seen. The ship is surrounded by water and a few hills. In the foreground there is a yellow and red building with the letters FZ Evening News on it.", - "id": 26609 - }, - { - "image_path": "G:\\images\\combined\\000467_jpg.rf.65416f61651b2117af42e4e8ead58dba.jpg", - "response": "A worker is cleaning the inside of a large metal cylinder. He is wearing a white lab coat and protective glasses. He is holding a blue torch and a red helmet. He is standing inside the cylinder, which is filled with water. The water is clear and has a few small ripples. The worker is focused on his task, and there is a blue light shining on the inside of the cylinder.", - "id": 26610 - }, - { - "image_path": "G:\\images\\combined\\000469_jpg.rf.fe9e7ccbda2305e4ca7dbb56abe06f19.jpg", - "response": "A construction worker is working on a building site, sitting on the ground between steel rods. The worker is wearing a grey shirt, grey pants, and a blue hat with a red design on it. There are several other workers visible in the image, although they are smaller and farther away. The scene takes place outdoors and the weather appears to be sunny.", - "id": 26611 - }, - { - "image_path": "G:\\images\\combined\\000470_jpg.rf.85d282e583685b5fa8f152cea386c768.jpg", - "response": "In the image there are three people, two of them are wearing white helmets and white long-sleeved shirts, and the other person is wearing a black shirt and a gray helmet. They are discussing the drawings held by the person on the right in a building site. The person on the right is also holding a tablet in his hand.", - "id": 26612 - }, - { - "image_path": "G:\\images\\combined\\000471_jpg.rf.839ddab390b0d59901db7530594edb1a.jpg", - "response": "A construction worker in a white shirt and blue hard hat is using a tool.", - "id": 26613 - }, - { - "image_path": "G:\\images\\combined\\000472_jpg.rf.c9f1d44c52344ca260373e37b2df9ac5.jpg", - "response": "In the image two men are working on a power line in the mountains. They are wearing safety gear and one of them is holding a tool.", - "id": 26614 - }, - { - "image_path": "G:\\images\\combined\\000475_jpg.rf.da324d3fcca192b7bdc9dade60ae5f66.jpg", - "response": "a group of shirtless men wearing yellow hard hats", - "id": 26615 - }, - { - "image_path": "G:\\images\\combined\\000476_jpg.rf.ef6a5785bf5cbee393edff69f15c9893.jpg", - "response": "A man wearing a yellow hard hat, measuring a wooden beam with a tape measure while standing on a red ladder. He is wearing a yellow hard hat, blue jeans, a brown shirt, and yellow work gloves. He is also wearing a tool belt with various tools in it. The sky is blue with no clouds and the sun is shining brightly.", - "id": 26616 - }, - { - "image_path": "G:\\images\\combined\\000477_jpg.rf.cad5a69cd0c7e75ae52e79623940f7b4.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 26617 - }, - { - "image_path": "G:\\images\\combined\\000479_jpg.rf.7ed6653d8c624ad66dad4478777f2dcd.jpg", - "response": "In the image, two workers are suspended from a power line while working on a power pole. Both of them are wearing white suits and yellow helmets. One of them is holding a tool bag while the other one is holding a tool. The sky is overcast.", - "id": 26618 - }, - { - "image_path": "G:\\images\\combined\\000480_jpg.rf.234b654d1042802277a7af314f0b6c4e.jpg", - "response": "A worker is seen fixing the power lines in the image. He is standing on a bamboo ladder and is holding a tool in his right hand. He is wearing a blue dress and a cap. The power lines are made of bamboo and are fixed to the wall. The wall is grey in color.", - "id": 26619 - }, - { - "image_path": "G:\\images\\combined\\000481_jpg.rf.949c70bb365883289b518a758bfd2891.jpg", - "response": "A group of men working on a large pipe in the ground.", - "id": 26620 - }, - { - "image_path": "G:\\images\\combined\\000481_jpg.rf.96da2ad1df7e80732252e48049f6945d.jpg", - "response": "The image shows a construction site in a field with a large ditch. The workers are working on a long concrete arch that will be the bottom of a large\u6db5\u6d1e. The workers are wearing black or\u7070\u8272\u5916\u5957 and some are wearing red \u786c\u7ea2\u8272\u7684\u5934\u76d4. On the left side of the ditch, there are several people, some are carrying wooden boards, and some are carrying black bags. On the right side of the ditch, there is a large yellow crane.", - "id": 26621 - }, - { - "image_path": "G:\\images\\combined\\000482_jpg.rf.9583c61f028ae38fa20dffb59dabac29.jpg", - "response": "A construction vehicle and a man standing in front of it.", - "id": 26622 - }, - { - "image_path": "G:\\images\\combined\\000483_jpg.rf.c2e1b09dc886e481162cf17456eb73fa.jpg", - "response": "A man wearing a white hard hat and carrying a tool belt is stacking wooden blocks. He is wearing a grey shirt, brown pants and white gloves. There are four wheels on the bottom of the wooden blocks. There are trees in the background.", - "id": 26623 - }, - { - "image_path": "G:\\images\\combined\\000484_jpg.rf.2ccaea07e8e6741479b56e2e0e88e98b.jpg", - "response": "The image shows a group of four men wearing camouflage clothing and hard hats, standing in a lush green field. They are holding rolls of what looks like metal wire. The men are spread out across the field, with the one on the left and the one on the right slightly further apart than the one in the middle who is standing next to the man on the far left. All of them are looking down at the wire they are holding.", - "id": 26624 - }, - { - "image_path": "G:\\images\\combined\\000485_jpg.rf.ca9a04f00f206893cd2acea48d592b2b.jpg", - "response": "The image shows a group of workers on a yellow machine near railway tracks. There are five workers in total, wearing yellow vests and hard hats. They are standing on the yellow machine, which also has a red engine at the back. The workers seem to be focused on their task.", - "id": 26625 - }, - { - "image_path": "G:\\images\\combined\\000486_jpg.rf.183459316377dc1cadc89849ff17780c.jpg", - "response": "A group of people standing around a table with some metal on it.", - "id": 26626 - }, - { - "image_path": "G:\\images\\combined\\000487_jpg.rf.d5ec0fa530a43436dab71e453bc53551.jpg", - "response": "A black and white photo of a group of people standing in front of a construction site. They are all wearing hard hats and coats. In the center of the group is a woman wearing a suit and a tie. She is holding a cup of coffee. To her left is a man wearing a suit and a tie. He is holding a bottle of water. To his right is a man wearing a hard hat and a suit. He is holding a lighter. In front of this group is a man wearing a hard hat and a suit. He is holding a cell phone. To his right is a man wearing a hard hat and a suit. He is holding a lighter. Behind this group is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is holding a bottle of water. Behind him is a man wearing a hard hat and a suit. He is holding a lighter. Behind him is a man wearing a hard hat and a suit. He is", - "id": 26627 - }, - { - "image_path": "G:\\images\\combined\\000488_jpg.rf.4f88df9de7996296675eb9f9619165a7.jpg", - "response": "A woman writing on a yellow paper on a door.", - "id": 26628 - }, - { - "image_path": "G:\\images\\combined\\000489_jpg.rf.ef250c51f00ab8b99c120deed2650339.jpg", - "response": "The image shows a group of seven men wearing red hard hats standing in a circle in a construction area. They are all dressed in business casual attire. The two men on the left and right are wearing brown suits and the three men in the center are wearing black suits. The man on the far left is wearing a white shirt and grey pants and is looking to the left. The man in the center on the far right is wearing a grey suit and looking to the left. The man standing to the far right is wearing a red hat and grey pants and is looking to the left. In the background there is a red building with two white columns on the left and a grey fence behind the men. To the far right there is a grey building under construction.", - "id": 26629 - }, - { - "image_path": "G:\\images\\combined\\00048f37069b6aa8.jpg", - "response": "A SriLankan Airlines jet takes off from the runway at dusk.", - "id": 26630 - }, - { - "image_path": "G:\\images\\combined\\000490_jpg.rf.1dc4bfde679cfa4b8d202df17722c940.jpg", - "response": "A construction worker is pouring some liquid into a large hole in the ground. The ground around the hole is covered in a white material. There are wooden beams visible in the background. The worker is wearing a red hat and holding a blue bucket.", - "id": 26631 - }, - { - "image_path": "G:\\images\\combined\\000491_jpg.rf.613b7514b44891e053e40aaca16c1fe3.jpg", - "response": "A group of people standing in front of a wall with a sign that says 'attack body armor\u4f53\u9a8c\u5c4b' and they are all wearing orange hats.", - "id": 26632 - }, - { - "image_path": "G:\\images\\combined\\000492_jpg.rf.c90c8b7d7d555d24c42457911b7f2e7c.jpg", - "response": "In the image there is a worker wearing a grey shirt and an orange hard hat. They are working with a red angle grinder and sparks are flying from the machine. The worker is also wearing a grey shirt and black pants. In the background, there are some stairs.", - "id": 26633 - }, - { - "image_path": "G:\\images\\combined\\000493_jpg.rf.3c16cc6798964af9d6e34dd0dbea36b1.jpg", - "response": "The image shows a group of four men standing on a rain-soaked road. They are all wearing coats, and one of them is wearing a yellow hard hat. One man is holding a black umbrella, and another umbrella can be seen in the background. A car is visible in the background on the right side of the image. The men are standing fairly close to each other, and they all appear to be looking in the same direction.", - "id": 26634 - }, - { - "image_path": "G:\\images\\combined\\000493_jpg.rf.c6e1515683a9252ffe03991be5f9552e.jpg", - "response": "The image shows a group of four men standing on a wet surface, holding umbrellas. They are wearing jackets and one of the men is wearing a hard hat. There are two cars in the background and a building to the left. The men are standing under two umbrellas, one of which has the words factory atmosphere written on it.", - "id": 26635 - }, - { - "image_path": "G:\\images\\combined\\000494_jpg.rf.8d3395c3fd65d47634b6576ebc6e1f5a.jpg", - "response": "A man and a woman in coveralls and hard hats, the woman sitting on a brick wall the man standing next to her.", - "id": 26636 - }, - { - "image_path": "G:\\images\\combined\\000495_jpg.rf.017b9570470d36687446bc7c6e734015.jpg", - "response": "The image shows a group of workers on a bridge, working on a section of train tracks. They are wearing yellow hard hats and work clothes. In the foreground, a person is operating a piece of machinery, possibly a crane, which is lifting a large piece of concrete onto the tracks. Another person is standing nearby, watching the operation. There is a third person further in the background, closer to the edge of the bridge. The bridge itself is made of concrete and spans a river. The river is green and has a small waterfall at the far end. The sky is blue with thin clouds.", - "id": 26637 - }, - { - "image_path": "G:\\images\\combined\\000496_jpg.rf.8a995ff57f6d157b76340efe7b8eb2b0.jpg", - "response": "A group of men standing around a white van.", - "id": 26638 - }, - { - "image_path": "G:\\images\\combined\\000496_jpg.rf.ef6cabf00659f07a2a7875dd59957157.jpg", - "response": "A group of men standing around a white van.", - "id": 26639 - }, - { - "image_path": "G:\\images\\combined\\000497_jpg.rf.f393c317e5a55d11471ba61132892e00.jpg", - "response": "A man sitting on a metal beam in a large building under construction.", - "id": 26640 - }, - { - "image_path": "G:\\images\\combined\\000498_jpg.rf.0e7c923c40eb5dc63c6f271d8bb0afd7.jpg", - "response": "A man crouching down working on a building.", - "id": 26641 - }, - { - "image_path": "G:\\images\\combined\\000499_jpg.rf.1d678050f1ee11336a6d10cafd23e8b6.jpg", - "response": "a construction worker(383,477),(749,914) in a red hard hat(431,534),(569,639)", - "id": 26642 - }, - { - "image_path": "G:\\images\\combined\\0004c9478eeda995.jpg", - "response": "A tall red brick building with many windows.", - "id": 26643 - }, - { - "image_path": "G:\\images\\combined\\000500_jpg.rf.17d8d27d8c2bc75a5629ae39194ce8d9.jpg", - "response": "A worker wearing a protective mask welding in a factory.", - "id": 26644 - }, - { - "image_path": "G:\\images\\combined\\000501_jpg.rf.afb9804da7680c88044597b38014591a.jpg", - "response": "A group of three men standing in a factory, all wearing hard hats.", - "id": 26645 - }, - { - "image_path": "G:\\images\\combined\\000502_jpg.rf.4a98246446a0165bc5ed727469e56c65.jpg", - "response": "A group of people stand around a metal box that is spewing out white smoke. They are all wearing red hard hats.", - "id": 26646 - }, - { - "image_path": "G:\\images\\combined\\000503_jpg.rf.ab70eaf9337f677e44fbabeb5e8fde1e.jpg", - "response": "In the image there are two workers wearing yellow helmets and work clothes. They are working on a construction site located at the foot of a snow mountain. One worker is cutting a metal piece while the other worker is squatting and watching. There is also a cup and a book on the construction site.", - "id": 26647 - }, - { - "image_path": "G:\\images\\combined\\000504_jpg.rf.298d06ecebaff74a66856e692e3646f3.jpg", - "response": "A large hole in the ground with a man standing in front of it.", - "id": 26648 - }, - { - "image_path": "G:\\images\\combined\\000505_jpg.rf.a92cdff0768b7b5c53c18e0942ef54ab.jpg", - "response": "Some people are working on a large building.", - "id": 26649 - }, - { - "image_path": "G:\\images\\combined\\000506_jpg.rf.a29406db2dc6ec550facb121ef1fd4c5.jpg", - "response": "A worker is seen on a lift working on wires at night.", - "id": 26650 - }, - { - "image_path": "G:\\images\\combined\\000507_jpg.rf.329a3644e9e8cde9fdbe1f85b72b8c0e.jpg", - "response": "A group of men in uniforms and hard hats are standing in a parking lot with some electrical equipment. They are all holding onto wires and cables.", - "id": 26651 - }, - { - "image_path": "G:\\images\\combined\\000508_jpg.rf.f4a176e64dfbf4bfe3d4a9a0380ecc46.jpg", - "response": "A man wearing a hard hat and work clothes sits on a stool and operates a circular saw. He is cutting a long piece of metal with the saw, which is on a table in front of him. The man appears to be the only person in the image. He is focused on the task at hand, and there are no other people or objects in the frame. The background is blurry, with a building visible in the distance. The man is working on a construction site, and there are several other people visible in the background, although they are not the main focus of the image.", - "id": 26652 - }, - { - "image_path": "G:\\images\\combined\\000509_jpg.rf.4d04fa2ab7bd0b0b99dd586e22271732.jpg", - "response": "A couple of men wearing hard hats and smiling at each other.", - "id": 26653 - }, - { - "image_path": "G:\\images\\combined\\000511_jpg.rf.f785ac3c83c81d5f27f46a8428858c3c.jpg", - "response": "The image shows two workers in yellow uniforms and white helmets, who are repairing power lines. They are on a cherry picker, which is lifting them to the power lines. The sky above them is overcast.", - "id": 26654 - }, - { - "image_path": "G:\\images\\combined\\000512_jpg.rf.4c3193e67de287e86fc51e65e831c2d5.jpg", - "response": "In the image two men wearing blue helmets and work clothes are in a wooded area cutting branches and vines with hand saws. They are standing on a path and there is a fallen tree branch on the ground.", - "id": 26655 - }, - { - "image_path": "G:\\images\\combined\\000514_jpg.rf.5caa88cdf2f69125d372049e041cff4a.jpg", - "response": "The image shows a group of workers in a tunnel. They are all wearing red and white clothes. One worker is in the center of the image, holding a long tool in the air and pointing it towards the top of the tunnel. Another worker is on his left, using a tool to remove something from the wall of the tunnel. A third worker is on the right, using a tool to remove something from the wall of the tunnel. The fourth worker is on the far right, using a tool to remove something from the wall of the tunnel.", - "id": 26656 - }, - { - "image_path": "G:\\images\\combined\\000515_jpg.rf.bad9fa2537dacc7489b61bb3e0c86402.jpg", - "response": "In the image there are two workers wearing blue uniforms and hard hats, they are repairing an power cable on a pole. The background is a building with a sign that says \"EAC\". There are also two red signs, one on the right side of the image and the other one is smaller and located above the EAC sign.", - "id": 26657 - }, - { - "image_path": "G:\\images\\combined\\000516_jpg.rf.db77eed789e98715ad33cd593eb68825.jpg", - "response": "The workers are climbing the red ladder.", - "id": 26658 - }, - { - "image_path": "G:\\images\\combined\\000517_jpg.rf.c153fd7a79d2351dc65a8a1e14bb4cef.jpg", - "response": "The image shows two men in a warehouse. One man is on the left and is wearing a blue uniform with a white helmet and yellow reflective tape. He is holding a pallet jack and is in the process of lifting a box. The other man is on the right and is wearing a green uniform with a red helmet. He is smiling at the camera. They are both standing in front of a stack of boxes.", - "id": 26659 - }, - { - "image_path": "G:\\images\\combined\\000518_jpg.rf.b7d66fc735404758bc271bd6499fe6ce.jpg", - "response": "In the image two workers are seen in a snowy terrain, fixing a power cable. The workers are wearing blue helmets and are in the middle of the picture. The power cable they are working on is seen on the right side of the image and is covered in snow. The background shows a snow-covered mountain.", - "id": 26660 - }, - { - "image_path": "G:\\images\\combined\\000519_jpg.rf.3b913b789a37b8f4ff34ad5155395399.jpg", - "response": "A group of workers are working on a large metal structure that resembles a giant bird's nest. They are standing on top of a metal platform that is attached to the top of the structure. The workers are wearing hard hats and are focused on their task. In the background, there are a few buildings visible.", - "id": 26661 - }, - { - "image_path": "G:\\images\\combined\\000521_jpg.rf.bce302a811427f6bf4f5ed98435ceeec.jpg", - "response": "A group of people standing in a cave.", - "id": 26662 - }, - { - "image_path": "G:\\images\\combined\\000522_jpg.rf.6b17be027876df302304677610792883.jpg", - "response": "A man in a red shirt and yellow hat is holding a large hook with a chain attached to it. He is standing in front of a large ship.", - "id": 26663 - }, - { - "image_path": "G:\\images\\combined\\000523_jpg.rf.8776a893fc020260118cc8e1978c27f3.jpg", - "response": "The image shows a factory setting with two workers standing in front of a yellow piece of machinery. They are both wearing yellow hard hats and blue coveralls. The worker on the left is holding a green tool box and a blue tool while the worker on the right is holding a yellow tool. There are several other workers and machines in the background.", - "id": 26664 - }, - { - "image_path": "G:\\images\\combined\\000524_jpg.rf.e79f27718bbcd6a46154455ef692a3f3.jpg", - "response": "In the image there is a factory scene with a worker in an orange uniform and yellow hard hat sitting on a stool. The worker is holding a metal rod with a flame coming out of it. The factory has a lot of metal machinery and the worker is crouching down. There is also a person in a white shirt and black pants standing in the background. The image is taken in a dark factory.", - "id": 26665 - }, - { - "image_path": "G:\\images\\combined\\000525_jpg.rf.f8014c5ec10374f5b6af701467c5ab8c.jpg", - "response": "The photo shows a group of people standing in front of a pile of rubble. They are all wearing hard hats and are looking at a piece of paper. In the background, there is a large machine and a cliff face.", - "id": 26666 - }, - { - "image_path": "G:\\images\\combined\\000526_jpg.rf.f575ce99c4200c72592ad82ae9bcbf0d.jpg", - "response": "two workers in yellow and green vests and white helmets are discussing something in a construction site.", - "id": 26667 - }, - { - "image_path": "G:\\images\\combined\\000528_jpg.rf.0c91e7c9e56f9edf96cbbdd87d382440.jpg", - "response": "The picture shows a group of people gathered around a white board. The board has a blue background and red Chinese characters. The people are standing in front of a building that is under construction. There are several cranes working in the background.", - "id": 26668 - }, - { - "image_path": "G:\\images\\combined\\000530_jpg.rf.76f4e059af70e1401877eda9b4ba2774.jpg", - "response": "A man in a yellow and black striped shirt is working on a large metal tower. He is wearing a yellow and black striped shirt, a white helmet, and orange gloves. He is standing on the ground and holding a large tool in his right hand, which appears to be a metal bar. He is looking up at the tower, which is the main focus of the image. The tower is made of metal and has a cage-like structure with vertical bars. The background is a white sky and a metal structure above the man.", - "id": 26669 - }, - { - "image_path": "G:\\images\\combined\\000533_jpg.rf.7e3f3dcfb6e1c11422a75e49cce6f5bf.jpg", - "response": "In the image there are two people standing on a construction site. They are both wearing hard hats and one of them is wearing a red hard hat and the other is wearing a blue hard hat. They are both holding a blueprint. The man on the right is wearing a yellow and grey high visibility vest. The man on the right is also wearing a red hard hat. They are both leaning on a bamboo scaffolding.", - "id": 26670 - }, - { - "image_path": "G:\\images\\combined\\000534_jpg.rf.8ea154f4c791d9774dd7878b01ef77e6.jpg", - "response": "The man in the front row on the far left is wearing a white shirt and glasses.", - "id": 26671 - }, - { - "image_path": "G:\\images\\combined\\000534_jpg.rf.f8931f67a0036d2a897cd206cf1fbcc9.jpg", - "response": "The group of people are standing in front of a building. They are all wearing hard hats. There is a man wearing a white shirt and glasses. Another man is wearing a white shirt and a tie. A woman is wearing a black shirt and glasses. Another woman is wearing a blue shirt. There is a man wearing a grey shirt and a tie. Another man is wearing a white shirt. There is a man wearing a blue shirt.", - "id": 26672 - }, - { - "image_path": "G:\\images\\combined\\000535_jpg.rf.558a2a1fde5e8cf46ba97533e832bcc8.jpg", - "response": "A man wearing a red hard hat and a black jacket.", - "id": 26673 - }, - { - "image_path": "G:\\images\\combined\\000536_jpg.rf.0ee7620583c95b218673d3164820a23e.jpg", - "response": "In the image there are two workers wearing orange and yellow hard hats, standing next to a fence. They are both working on an electrical wire with tools. One of the workers is using a tool to fix an electrical wire that is hanging on the fence. The other worker is holding a tool in his right hand, ready to use. In the background, there are houses and mountains.", - "id": 26674 - }, - { - "image_path": "G:\\images\\combined\\000537_jpg.rf.fe75635ec522a2e3b6d9a85b6a93c2f4.jpg", - "response": "A group of men walking across a dirt field.", - "id": 26675 - }, - { - "image_path": "G:\\images\\combined\\000538_jpg.rf.547169713284d12189253bd726259463.jpg", - "response": "A construction worker in a red uniform and red hard hat smiles next to a grey tank with a hose attached to it. He is standing on a construction site in front of a grey wall and a white building. There is a Chinese banner with yellow and red characters hanging on the white building.", - "id": 26676 - }, - { - "image_path": "G:\\images\\combined\\000539_jpg.rf.463ba25442bfff9b11bd49d0d140e79b.jpg", - "response": "A group of people standing around a pile of rubble.", - "id": 26677 - }, - { - "image_path": "G:\\images\\combined\\000539_jpg.rf.a2169c394568f796ec1aa298b5b54220.jpg", - "response": "A group of people standing around a pile of rubble.", - "id": 26678 - }, - { - "image_path": "G:\\images\\combined\\000540_jpg.rf.f31ee9578c380312e0278837c96a9900.jpg", - "response": "a group of men standing around a white board", - "id": 26679 - }, - { - "image_path": "G:\\images\\combined\\000541_jpg.rf.14ce04b7b4b0668fc6b5dbdf40410840.jpg", - "response": "A group of men wearing hard hats and carrying wooden poles.", - "id": 26680 - }, - { - "image_path": "G:\\images\\combined\\000542_jpg.rf.5258ccd12083dac06af1be127a026b3a.jpg", - "response": "The image shows three workers in the foreground, all wearing blue shirts, on a large ship. They are working on a large circular net that is partially on the ship and partially on the ground. The net is made of a thick string material and is supported by wooden boards. In the background, there is a large red and white boat with a crane on it. The sky is overcast and there are a few clouds in the sky. There are also a few other people on the ship, although they are less prominent in the image.", - "id": 26681 - }, - { - "image_path": "G:\\images\\combined\\000543_jpg.rf.4845bff7d595f6d8988aadea35797f02.jpg", - "response": "a group of men standing in front of a mountain", - "id": 26682 - }, - { - "image_path": "G:\\images\\combined\\000544_jpg.rf.d91ef8e22618a20c7e399991395f05e1.jpg", - "response": "In the image two workers are in a factory. They are both wearing yellow hard hats and blue work clothes. They are standing in front of a large machine with white fans and blue pumps. There are many pipes and silver fans in the background.", - "id": 26683 - }, - { - "image_path": "G:\\images\\combined\\000545_jpg.rf.e3f4534be608d0759cbb7d240547b5c2.jpg", - "response": "a group of men standing around in front of a building", - "id": 26684 - }, - { - "image_path": "G:\\images\\combined\\000546_jpg.rf.714638ed3d2ad9f9375f7a35a208f0cc.jpg", - "response": "The image shows a fire at a factory. Firefighters in yellow helmets are extinguishing the fire. The factory building is blackened and smoke is still rising from it. In the foreground, there is a blue truck with a Chinese character \"\u4e2d\u56fd\" on the door. On the right side of the truck, there is a character \"\u4e2d\u56fd\u91cd\u6c7d\", it is probably a brand of the truck.", - "id": 26685 - }, - { - "image_path": "G:\\images\\combined\\000547_jpg.rf.ed6dbf3ef5a3241022c6c4b8f80657c7.jpg", - "response": "A man(347,337),(700,998) in a hard hat(398,335),(565,501) standing in front of a construction site", - "id": 26686 - }, - { - "image_path": "G:\\images\\combined\\000548_jpg.rf.2baa6d45417324de1d20f1c24218b843.jpg", - "response": "An electrician fixing an electrical panel in a building.", - "id": 26687 - }, - { - "image_path": "G:\\images\\combined\\000549_jpg.rf.090eb5ccbfde1e96f19608030013f778.jpg", - "response": "A warehouse with shelves full of boxes and forklifts in the background. Two men wearing yellow vests and hard hats are standing in the foreground, one on the left and one on the right. They are both holding clipboards and smiling at the camera.", - "id": 26688 - }, - { - "image_path": "G:\\images\\combined\\00054dab88635bdb.jpg", - "response": "A red muscle car is parked in a lot with other antique cars.", - "id": 26689 - }, - { - "image_path": "G:\\images\\combined\\000550_jpg.rf.97620255272f0ad767c1d30ef93f295e.jpg", - "response": "In the image there are two men dressed in business attire, one of them is wearing a white helmet while the other one is wearing a yellow helmet on his head. They are both looking at a blueprint, the man on the left is holding a pen and is about to write something on the blueprint.", - "id": 26690 - }, - { - "image_path": "G:\\images\\combined\\000551_jpg.rf.0860076f29c4446bf35fed11b3c9466d.jpg", - "response": "A group of men standing around each other", - "id": 26691 - }, - { - "image_path": "G:\\images\\combined\\000552_jpg.rf.0b56f01bc479b2157f46dd45bc990198.jpg", - "response": "A group of men standing around a construction site.", - "id": 26692 - }, - { - "image_path": "G:\\images\\combined\\000553_jpg.rf.b551f117d5e3e5592365093fc62513ee.jpg", - "response": "A group of people sitting around a table with papers and coffee cups on it.", - "id": 26693 - }, - { - "image_path": "G:\\images\\combined\\000554_jpg.rf.8b20386141b8cce8537a132bfe138731.jpg", - "response": "In the image two workers are seen fixing an electricity meter. One of the worker is wearing blue helmet and mask due to which his face is covered. Both of them are wearing white uniform. One of the meter is white and grey in color and it is fixed to the wall. Another meter is black and white in color and it is fixed to the wall also. The wall on which the meters are fixed is grey in color.", - "id": 26694 - }, - { - "image_path": "G:\\images\\combined\\000555_jpg.rf.14b4ec2ad0301f64f73966a23b707a2f.jpg", - "response": "A group of men standing in front of a building that is in the process of being built. They are all wearing hard hats.", - "id": 26695 - }, - { - "image_path": "G:\\images\\combined\\000556_jpg.rf.581b790815ae3f1b33b013058fe44682.jpg", - "response": "An electrician repairs power lines in the sky.", - "id": 26696 - }, - { - "image_path": "G:\\images\\combined\\000557_jpg.rf.251939117772f2a2edd2db4fb6e0c5f7.jpg", - "response": "A group of workers in hard hats are shoveling something onto a cart.", - "id": 26697 - }, - { - "image_path": "G:\\images\\combined\\000558_jpg.rf.2e8a30cb6db08a2cdfa7d5acfb5e3e76.jpg", - "response": "A man in a suit and a hard hat stands in front of a building under construction with another man in a hard hat to his right and a third man to his left.", - "id": 26698 - }, - { - "image_path": "G:\\images\\combined\\000559_jpg.rf.dd0987be9d6fe2493beea86ee8009aac.jpg", - "response": "In the image, a group of workers is working on a railway. They are wearing orange vests and white helmets. On the left, a yellow excavator is digging on the rails. Some workers are standing on the rails, and some are standing on the ground. Some workers are holding tools, and a rope is placed on the right side of the image. In the background, there are some buildings and mountains.", - "id": 26699 - }, - { - "image_path": "G:\\images\\combined\\000560_jpg.rf.9947d49d6a0e4341e0a4fb841befaa45.jpg", - "response": "A group of men standing around a construction site.", - "id": 26700 - }, - { - "image_path": "G:\\images\\combined\\000561_jpg.rf.fa5d29eb1a74661d7a48565c14fee027.jpg", - "response": "A man in an orange shirt and a hard hat is looking at a large yellow floating structure in the water. The man's shirt says \"Wu Rong\" on the back. There are several other people visible in the image, but they are too small to make out any details. There are also several boats in the water, some closer to the man and some further away. The sky above the water is grey and overcast.", - "id": 26701 - }, - { - "image_path": "G:\\images\\combined\\000563_jpg.rf.e647bc916601992b5965b853352365c7.jpg", - "response": "In the image two workers are wearing red jumpsuits and yellow helmets. They are working on a bridge that has a steel beam with a sign that says \" Danger, High Voltage\". There is a cup on the bridge and a field in the background.", - "id": 26702 - }, - { - "image_path": "G:\\images\\combined\\000564_jpg.rf.fb8b8e7cf712ffe34b7bc12aea327c15.jpg", - "response": "An electrician is seen here in the process of fixing a power line. He is wearing a hard hat and safety gear. He is hanging from a wire and appears to be in the process of fixing something.", - "id": 26703 - }, - { - "image_path": "G:\\images\\combined\\000565_jpg.rf.a47a062976d3f270adad1d49d593a1af.jpg", - "response": "A miner is working in a coal mine in China. He is wearing a yellow helmet and holding a large tool. He is in a tunnel in the mine. The walls of the tunnel are covered with black coal.", - "id": 26704 - }, - { - "image_path": "G:\\images\\combined\\000566_jpg.rf.8ab0adffdee3349ac025526ba3e67429.jpg", - "response": " Archaeologists(578,254),(756,793)(300,444),(402,696)(704,296),(823,746) working at the site", - "id": 26705 - }, - { - "image_path": "G:\\images\\combined\\000567_jpg.rf.622e6606a2d0f1bb7717254278fc6ae1.jpg", - "response": "A group of men working on a construction site.", - "id": 26706 - }, - { - "image_path": "G:\\images\\combined\\000568_jpg.rf.2973c6bd3426edded4a6d5524fb8f0ec.jpg", - "response": "A crew of linemen work on repairing a power line in the snow.", - "id": 26707 - }, - { - "image_path": "G:\\images\\combined\\000569_jpg.rf.de2843f655d9c60ad111084cca2046e4.jpg", - "response": "The picture shows a group of men standing in front of a construction site. All the men are wearing white shirts and red helmets. To the far left of the picture is a man in a navy blue shirt and red helmet, on the far right is a man in a light blue shirt and red helmet, and to the far right of the middle man is a man in a grey shirt and white hat. In the background, a partially visible person is wearing a red shirt and red shorts. There are some stairs in the background and a blue metal staircase leading upwards.", - "id": 26708 - }, - { - "image_path": "G:\\images\\combined\\000570_jpg.rf.bd6cf98b7d083904f9ecaec41af75672.jpg", - "response": "A man in a white shirt and black pants with his hands on his hips.", - "id": 26709 - }, - { - "image_path": "G:\\images\\combined\\000571_jpg.rf.39a0a48cc6df25f9e79d5fadc944bfb9.jpg", - "response": "The image shows a construction site with several workers engaged in different tasks. There is a man in the center of the image who is kneeling on the ground and working on\u6df7\u51dd\u571f\u6d47\u7b51. Another worker is holding a long wooden pole, and a third worker is pulling a long wooden pole towards the man in the center. There are two workers on the right side of the image, one is pulling a long wooden pole and the other is holding a long wooden pole. In the background, there are several workers and wooden scaffolding. A car is parked in the middle of the image, and a building is visible at the far end of the image. The workers are wearing yellow helmets, and the man in the center is also wearing a white helmet.", - "id": 26710 - }, - { - "image_path": "G:\\images\\combined\\000572_jpg.rf.20df3db6392d2b042bf1ffd81df284da.jpg", - "response": "A group of men in orange work clothes and blue hard hats are carrying a large pipe over their shoulders. They are walking through a muddy field.", - "id": 26711 - }, - { - "image_path": "G:\\images\\combined\\000573_jpg.rf.eee0a7e0aef47fdaba174522230b51b7.jpg", - "response": " People(272,366),(413,920)(563,405),(724,985)(35,365),(263,997)(726,415),(838,850)(888,452),(954,683) walking in a desert", - "id": 26712 - }, - { - "image_path": "G:\\images\\combined\\000574_jpg.rf.8de14cd0bd5d9610ff04dab154ef6331.jpg", - "response": " A geologist(191,510),(339,997) examining rock(462,778),(668,867) in a quarry", - "id": 26713 - }, - { - "image_path": "G:\\images\\combined\\000575_jpg.rf.bd19a2358899326f64aecf75e62d300c.jpg", - "response": "A man wearing a blue helmet is welding in a construction site. He is on a yellow ladder.", - "id": 26714 - }, - { - "image_path": "G:\\images\\combined\\000576_jpg.rf.3a9ef7cac8a6879480ecf921fa198dce.jpg", - "response": "a man in a blue shirt and a yellow hard hat", - "id": 26715 - }, - { - "image_path": "G:\\images\\combined\\000577_jpg.rf.058420974497c9e80041951aee5aa7f3.jpg", - "response": "In the image, two people are standing next to each other. The person on the left is wearing a blue shirt and has long blonde hair. She is wearing a yellow hard hat and holding a blueprint. The person on the right is wearing a yellow hard hat, black shirt, and jeans. He is also holding a blueprint. They are shaking hands. In the background, there is a building under construction. The building has scaffolding in front of it and only the roof frame has been built. The sky is blue with clouds.", - "id": 26716 - }, - { - "image_path": "G:\\images\\combined\\000577_jpg.rf.3cc1e500ccbb74b5e2613c8c3313c3c8.jpg", - "response": "In the image, two people are standing outside, shaking hands. The person on the left, who is wearing a white shirt, is taller and appears to be female. She is wearing a yellow helmet and holding a blueprint. The person on the right, who is wearing a yellow helmet and a black T-shirt, is shorter and appears to be male. He is carrying a tool bag. They are both standing in front of a building under construction. The building has scaffolding around it and is a tan color with brown roof. There are also two cranes in the background.", - "id": 26717 - }, - { - "image_path": "G:\\images\\combined\\000578_jpg.rf.66b4187d28506b3695311b0297527b51.jpg", - "response": "A worker is on a snowy telephone pole, using a pole-topper to trim the snow off the wires.", - "id": 26718 - }, - { - "image_path": "G:\\images\\combined\\000579_jpg.rf.6264a9708ff4f8b2c96a4f9dd69bbb72.jpg", - "response": "A group of men in hard hats and work clothes are working on a large metal pipe.", - "id": 26719 - }, - { - "image_path": "G:\\images\\combined\\000580_jpg.rf.62189e8a01d09006370606a35b30e621.jpg", - "response": "A group of men wearing hard hats and carrying equipment.", - "id": 26720 - }, - { - "image_path": "G:\\images\\combined\\000581_jpg.rf.06f1fe622237a820d9442560bb43f1d6.jpg", - "response": " Men(608,132),(995,996)(5,20),(453,997)(505,248),(695,689) working in a mine", - "id": 26721 - }, - { - "image_path": "G:\\images\\combined\\000582_jpg.rf.480f0dfdc8a46d06d154257695781768.jpg", - "response": "A large building under construction with a red roof and a large red boiler.", - "id": 26722 - }, - { - "image_path": "G:\\images\\combined\\000583_jpg.rf.26a076a1662b011b9b79686471432d01.jpg", - "response": "In the image two workers are operating a piece of equipment. The equipment is yellow and grey and has a large wooden pole with chains hanging from it. The chains are hanging from a wooden pulley system. The sky is a clear blue.", - "id": 26723 - }, - { - "image_path": "G:\\images\\combined\\000584_jpg.rf.e8c021c60b1e6c3f194c5e925f974a0f.jpg", - "response": "A man in a white shirt and black pants points to something in the distance. Another man in a grey shirt and black pants stands behind him. They are both standing in front of a building that has scaffolding on the side of it. There is a sign on the scaffolding that says \"\u6ce8\u610f\u5b89\u5168 \u4e25\u7981\u6500\u722c\" which translates to \"be aware of safety, do not climb\".", - "id": 26724 - }, - { - "image_path": "G:\\images\\combined\\000585_jpg.rf.6ab3d5d3cab22b4832ea31f9b7632983.jpg", - "response": "a group of people standing in a construction site", - "id": 26725 - }, - { - "image_path": "G:\\images\\combined\\000586_jpg.rf.c2c5e14e795f34e44f19a9553b4e8dcf.jpg", - "response": "A black and white photo of two men looking into a control box.", - "id": 26726 - }, - { - "image_path": "G:\\images\\combined\\000587_jpg.rf.8f4c3197dd864fe016961efc000193ab.jpg", - "response": "The image shows two workers in yellow helmets and green work clothes, climbing on a metal tower. The tower is silver and has a wooden base with a few steps. The workers are wearing orange safety belts and have yellow helmets on their heads. One of the workers is holding a tool in his hand. The background is a little forest and a mountain.", - "id": 26727 - }, - { - "image_path": "G:\\images\\combined\\000588_jpg.rf.a5cf86237cc0ca94e15037092b44595c.jpg", - "response": "The image shows a construction site in the city. There are two yellow construction cranes operating in the background. In the foreground, there are several people wearing yellow helmets and working on the construction site. Some of them are standing on the concrete structure, while others are working on the ground. There are several wooden poles and some pieces of blue fabric on the construction site. In the distance, there are several buildings under construction.", - "id": 26728 - }, - { - "image_path": "G:\\images\\combined\\000589_jpg.rf.d1bb63306446351024dab2c591600d6f.jpg", - "response": "A man wearing a hard hat and orange helmet is working on a tall yellow ladder. He is on a metal scaffolding that is placed against a building. The man is wearing a white shirt and has a beard. He is holding a hammer and a nail. There is a brown bag on the ground next to the scaffolding.", - "id": 26729 - }, - { - "image_path": "G:\\images\\combined\\000590_jpg.rf.d743a894a1eb28bbee6cfa53474119ce.jpg", - "response": "A group of people in suits and hard hats stand around a construction site. One of the men is wearing a suit and tie, and a hard hat. A sign on the left side of the image says \"\u5b89\u5168\u5e3d\u6234\u597d\" which translates to \"wear hard hats safely\".", - "id": 26730 - }, - { - "image_path": "G:\\images\\combined\\000591_jpg.rf.3f79dd5a9bbc6c92e608e94fd96506c7.jpg", - "response": "In the image there are two construction workers dressed in yellow vests and blue hard hats. They are standing in a construction site that has a lot of concrete, metal pipes and some unfinished walls. The woman on the left is holding a set of plans and is talking to the man on the right.", - "id": 26731 - }, - { - "image_path": "G:\\images\\combined\\000592_jpg.rf.4a97501eee95b5c7802ba4bcae8eefaf.jpg", - "response": "An electrician repairs a power line.", - "id": 26732 - }, - { - "image_path": "G:\\images\\combined\\000593_jpg.rf.2fba005296d4fac6a4bf812667f2af7c.jpg", - "response": "A group of men working on a construction site.", - "id": 26733 - }, - { - "image_path": "G:\\images\\combined\\000595_jpg.rf.ad6cce5a876d202ca28283813e4c818f.jpg", - "response": "A man in a hard hat and coveralls is walking through a tunnel. The tunnel is made of rock and has a wooden walkway. There is a lantern in the man's hand. In the background, there is mining equipment.", - "id": 26734 - }, - { - "image_path": "G:\\images\\combined\\000597_jpg.rf.4df50aabb357786780bd1aac0fb50ede.jpg", - "response": "A man wearing a safety vest and a hat standing next to a large metal cylinder.", - "id": 26735 - }, - { - "image_path": "G:\\images\\combined\\000599_jpg.rf.b4614c48f92afa0faa1f75ffcc116f4c.jpg", - "response": "A worker in a yellow hard hat stands in front of a white wall with the words \"\u4e2d\u56fd\u94c1\u5efa\" in large black letters. There is a blue and white poster on the wall with a red border. The poster is titled \"\u5b89\u5168\u5bb6\u4e66\" and features a red Chinese character.", - "id": 26736 - }, - { - "image_path": "G:\\images\\combined\\0005dcda3040dab3.jpg", - "response": "Three young women are posing for a picture. They are all wearing white tops and are smiling at the camera. The woman on the left is wearing a black and white striped shirt. The woman in the middle has long black hair and is wearing a white shirt and a blue skirt. The woman on the right has long black hair and is wearing a white shirt and a black skirt. They are all posing for the camera and there are other people in the background.", - "id": 26737 - }, - { - "image_path": "G:\\images\\combined\\000600_jpg.rf.ce3a59d57b1aefa0410fc1a215085afd.jpg", - "response": "A couple of men in yellow hard hats and orange safety vests are standing in front of a red shipping container. The man on the left is wearing a brown safety helmet and looking into the red container. The man on the right is crouching down and looking into the container with his hand on the door. There are many more shipping containers stacked in the background behind the men.", - "id": 26738 - }, - { - "image_path": "G:\\images\\combined\\000601_jpg.rf.f715eb44be034241ef5b3ae33b01a262.jpg", - "response": "The image shows a group of people working on a railway. There is a man in the foreground who seems to be a worker, wearing a yellow helmet and orange work vest. He is smiling and has his arms raised, with a large tool in his hand. He appears to be celebrating. In the background, there are several other people, some wearing red and yellow vests, working on the railway. There are also a few people in the distance wearing red vests. The sky is dark and there are some green plants around the workers.", - "id": 26739 - }, - { - "image_path": "G:\\images\\combined\\000602_jpg.rf.62b936d3c3dd1477b5de905531df6af0.jpg", - "response": "A man wearing a yellow hard hat and blue overalls is working on a building. He is crouched down and working on a cement wall.", - "id": 26740 - }, - { - "image_path": "G:\\images\\combined\\000603_jpg.rf.e385b7619622e8cc320e33e3bb3ca254.jpg", - "response": "Two men(637,533),(844,915)(153,295),(323,919) working in a mine", - "id": 26741 - }, - { - "image_path": "G:\\images\\combined\\000605_jpg.rf.e735f57acee99f9c1a5eccce5a8cafc3.jpg", - "response": "The image shows a group of people gathered in front of a wall. The man in the center is wearing a black and white striped shirt and glasses. To the right of him, the man second from the right is wearing a black suit. Further right, the man third from the right is wearing a white shirt and black suit. To the left of the man in the center, the woman in a blue and white dress is wearing glasses and has her hair in a bun.", - "id": 26742 - }, - { - "image_path": "G:\\images\\combined\\000607_jpg.rf.ff773852c635cb09beb6fddb2acf14ed.jpg", - "response": "The image shows a group of workers at a construction site, building a bridge. The bridge is in the background and appears to be a suspension bridge with a steel girder structure. The workers are in the foreground and are wearing orange and yellow reflective vests. Some of them are on the bridge, working on the construction of the bridge. Some are standing on large blue concrete forms which are used for building the bridge. One worker is using a tool to work on the bridge, and another worker is holding a large metal bar. The workers are working in teams and appear to be skilled and experienced.", - "id": 26743 - }, - { - "image_path": "G:\\images\\combined\\000608_jpg.rf.a892cc157529c8208d2fdd5e5841b7c9.jpg", - "response": " A worker(659,478),(891,997) is standing next to a wall", - "id": 26744 - }, - { - "image_path": "G:\\images\\combined\\000610_jpg.rf.7d13dcd0f955362462e10625c1225b7d.jpg", - "response": "Two men in red work clothes and helmets are working on a pipe in the desert.", - "id": 26745 - }, - { - "image_path": "G:\\images\\combined\\000612_jpg.rf.04de2ddea7ee33d9f4fff6bec3ee715a.jpg", - "response": "The picture shows a group of people in front of a building site. They are all wearing red hard hats. In the foreground on the left, there is a man in a black suit and red hard hat. To his right, there is a man in a white shirt and red hard hat. Further back in the group, there is a man in a white shirt and black suit. In the background, there is a building site with a large concrete structure.", - "id": 26746 - }, - { - "image_path": "G:\\images\\combined\\000613_jpg.rf.d0968d65127aa26b779542af8b55d39c.jpg", - "response": "A worker with a flashlight examining the damage", - "id": 26747 - }, - { - "image_path": "G:\\images\\combined\\000614_jpg.rf.5301791f23266f00fe1a19bde2a9e276.jpg", - "response": "A group of men working on power lines.", - "id": 26748 - }, - { - "image_path": "G:\\images\\combined\\000616_jpg.rf.5381305ffd25b43f957e554e99d2970e.jpg", - "response": "A man in a blue shirt and black pants is cutting a yellow ribbon with a pair of scissors.", - "id": 26749 - }, - { - "image_path": "G:\\images\\combined\\000617_jpg.rf.e46b4188bc7b8a30e47dfba5112dc4ca.jpg", - "response": "a group of people standing in front of a building", - "id": 26750 - }, - { - "image_path": "G:\\images\\combined\\000617_jpg.rf.f54ea24d77e1d0704af4bf194e6eb83b.jpg", - "response": "a group of people standing in front of a building", - "id": 26751 - }, - { - "image_path": "G:\\images\\combined\\000618_jpg.rf.afc7aa29150b2d69db213500b42edd24.jpg", - "response": "A construction worker and a foreman discuss the blueprints for a new home.", - "id": 26752 - }, - { - "image_path": "G:\\images\\combined\\000619_jpg.rf.f731575bcd3ce7635023d04d0e90aa9d.jpg", - "response": "A man wearing a hard hat and safety gloves is working on an electrical box.", - "id": 26753 - }, - { - "image_path": "G:\\images\\combined\\000620_jpg.rf.e12264c9447353c8ec1c85ca82435452.jpg", - "response": "A man in a hard hat and blue jacket is standing in a coal mine. He is standing next to a large machine that has a yellow arm and a large circular blade on it. The machine is cutting into the side of a tunnel and there is a large amount of black coal on the ground. The tunnel is filled with coal dust and there is a pipe running along the side of the tunnel.", - "id": 26754 - }, - { - "image_path": "G:\\images\\combined\\000621_jpg.rf.2548da2b74b1fba21da5ee73c34ab0ac.jpg", - "response": "A group of workers are seen working on a bridge in the image. The bridge is grey in color and made of metal. The workers are wearing blue uniforms and helmets. One of the workers is seen holding a blue helmet in his hand. The bridge is located near a field with green plants and bushes. There are also some trees in the background. A truck is seen parked in the distance.", - "id": 26755 - }, - { - "image_path": "G:\\images\\combined\\000622_jpg.rf.dcfbb40dea1ca8fab2eee39f58c62787.jpg", - "response": "A group of three men in grey jumpsuits and blue safety helmets are harnessed up while working on a ladder against a tall pole.", - "id": 26756 - }, - { - "image_path": "G:\\images\\combined\\000623_jpg.rf.f8d5366a3e872ea04f667d021368750a.jpg", - "response": "The image shows a large industrial building with a large overhead crane in the center. The crane is painted red and white, and has a red cross beam with the words \"\u5927\u6d0b\u7535\u673a\" written in white. There are two people visible at the top of the crane, working above the large pipes and machinery of the industrial building. The building has a high ceiling and appears to be used for manufacturing or industrial activity.", - "id": 26757 - }, - { - "image_path": "G:\\images\\combined\\000624_jpg.rf.2ea7a06a929179235d1c5612b8ee15aa.jpg", - "response": "The image shows a group of men working on a construction site. They are building a tall concrete structure, and some of them are standing on a ladder. The men are wearing hard hats and are working with various tools, including a large orange pipe. The sky is grey, and the air appears to be hazy.", - "id": 26758 - }, - { - "image_path": "G:\\images\\combined\\000625_jpg.rf.7e22894c9699c1c0f1d3248e38fa8747.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing hard hats and orange work suits. Some of them are kneeling down, while one of them is holding a back pack. In the background, there are two people wearing white shirts and glasses. They are talking to each other. To the far right, there is a person wearing a red work suit and a white hat. They are standing in front of a large pipe. The background is blurred, and there are several other people in the tunnel, but they are either partially obscured or not clearly visible.", - "id": 26759 - }, - { - "image_path": "G:\\images\\combined\\000625_jpg.rf.9a7962e1045cada4145e4d688726f25a.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing hard hats and orange work suits. In the foreground, a man is being carried out of the tunnel on a stretcher. To the left of the scene, a man in a white shirt is talking to another person. In the background, there are several other people standing around the tunnel. The photo is taken in a mine.", - "id": 26760 - }, - { - "image_path": "G:\\images\\combined\\000627_jpg.rf.30e70df0bc0d329a3dceaeb3e488a676.jpg", - "response": "Four people are working on a construction site. They are wearing yellow helmets and grey tops. They are working on a structure that is made of iron rods. There are many iron rods on the ground and some are connected to a wooden beam. A person on the far left is wearing a black helmet and a black jacket. Another person in the middle is working on a metal structure. The person on the far right is bending over and working on the metal structure.", - "id": 26761 - }, - { - "image_path": "G:\\images\\combined\\000628_jpg.rf.9acd2c247869a2d53c39376288cfc97e.jpg", - "response": "A pair of men wearing hard hats are standing in a rocky riverbed and holding a large coil of grey electrical wire.", - "id": 26762 - }, - { - "image_path": "G:\\images\\combined\\000629_jpg.rf.2ada786c1bd646ea89a42b1df7723cd9.jpg", - "response": "A couple of men working on a wooden structure while wearing hard hats.", - "id": 26763 - }, - { - "image_path": "G:\\images\\combined\\000630_jpg.rf.714f0ac7db07032bb6ec7a85f6f6aeec.jpg", - "response": " People(338,596),(427,997)(647,634),(714,967)(500,602),(596,997)(104,587),(191,956)(722,622),(796,997)(820,643),(907,989)(471,624),(524,966)(598,628),(658,985)(917,635),(997,996)(201,578),(308,987)(302,590),(367,959)(510,602),(578,958)(898,636),(957,996)(916,635),(997,996)(611,625),(663,939)(699,620),(753,967)(497,603),(580,997)(597,627),(658,985)(500,603),(580,997)(338,596),(427,997)(597,625),(658,985)(471,624),(524,966)(500,603),(580,997)(338,596),(427,997)(722,622),(796,997)(104,587),(191,956)(201,578),(308,", - "id": 26764 - }, - { - "image_path": "G:\\images\\combined\\000632_jpg.rf.4884226bae212d17f94188a363a22b5d.jpg", - "response": "In the image there is a man standing in front of a fence wearing an orange and yellow jacket and a blue hard hat. The man also has a black bag over his shoulder. Behind the man there is a wall with several signs on it. To the right of the man there is a motorcycle.", - "id": 26765 - }, - { - "image_path": "G:\\images\\combined\\000633_jpg.rf.f47c36e6848782382affb0a0fb6b9a15.jpg", - "response": "An electrical worker wearing a blue helmet and white gloves is working on a power line. They are adjusting a part of the power line and looking intently at it. The sky is a clear blue color.", - "id": 26766 - }, - { - "image_path": "G:\\images\\combined\\000634_jpg.rf.50867273c728c7f74afcab78de888e37.jpg", - "response": "A man in a hard hat stands on top of a pile of junk. He is using a jackhammer to break up the debris. The junk includes a large piece of metal with the word \"Yankee\" painted on it. There are several other pieces of metal scattered around, including a large piece with the word \"Spartan\" painted on it. The junk is piled up in a lot, with a sky background.", - "id": 26767 - }, - { - "image_path": "G:\\images\\combined\\000637_jpg.rf.c3467a56bc47da61238d481f2856ba48.jpg", - "response": "A group of men standing around a construction site", - "id": 26768 - }, - { - "image_path": "G:\\images\\combined\\000638_jpg.rf.e25d5986a6dd7f74b26e60d12b08955d.jpg", - "response": "A group of people standing around and talking to each other.", - "id": 26769 - }, - { - "image_path": "G:\\images\\combined\\000639_jpg.rf.1e5971ebb1ba28e6a32e7cdd3b5030f3.jpg", - "response": "A group of workers wearing yellow hard hats are working on a road. They are using hoses and shovels and there is a red and white fence behind them.", - "id": 26770 - }, - { - "image_path": "G:\\images\\combined\\000640_jpg.rf.db25a8d696f0956f9b586a215b88335c.jpg", - "response": "a man in a suit standing in front of a sign that says \"\u4eac\u4e1c\u5e84\u78a7\u6842\u56ed \u9996\u671f\u5f00\u76d8\u65e5 \u54c1\u724c\u7ad9\u8d2a\u6210\u672a\u6765\"", - "id": 26771 - }, - { - "image_path": "G:\\images\\combined\\000641_jpg.rf.a6e7a461a8c1ef47ad6c8ef7c369b55f.jpg", - "response": "A group of workers are standing in a large metal structure that is under construction. They are wearing hard hats and work clothes. Some of them are holding tools. The sky is grey and overcast.", - "id": 26772 - }, - { - "image_path": "G:\\images\\combined\\000642_jpg.rf.c2c589704edef3ef018a55cc5f6fc25f.jpg", - "response": "A couple of men working on a building.", - "id": 26773 - }, - { - "image_path": "G:\\images\\combined\\000643_jpg.rf.9f03fe0225ac5e7725223c3a529ea915.jpg", - "response": "The image shows a construction site with a group of people standing in the middle of it. They are all wearing hard hats, and the ground is littered with steel rods in front of them. The scaffolding around the site is green and yellow. In the background, a building can be seen rising above the trees.", - "id": 26774 - }, - { - "image_path": "G:\\images\\combined\\000644_jpg.rf.6139f46089930fa5881fae6957033d1e.jpg", - "response": "In the image two workers are seen in the middle of the picture wearing safety gear and working on an electric line. They are wearing safety helmets and the working attire. The sky is blue with clouds and the sun is shining bright. There are two more electric lines seen in the picture one on the left and the other on the right side of the image. The electric wires are green in color. There is a logo of China News on the bottom right corner of the image.", - "id": 26775 - }, - { - "image_path": "G:\\images\\combined\\000645_jpg.rf.d6f085b1f2588faae791d5a0d0ca82d3.jpg", - "response": "a man(339,438),(529,916) in orange is working on a traffic light", - "id": 26776 - }, - { - "image_path": "G:\\images\\combined\\000646_jpg.rf.0fbffa1705efcb0cd65c6fac102d8b46.jpg", - "response": "The image shows a construction site with several people working. There is a large concrete pump in the middle of the scene, pouring concrete into a large foundation. The workers are standing around the foundation, some of them wearing yellow hard hats and others wearing hard hats of different colors. Some of them are holding long tools, while others are using smaller tools. In the background, there are a few buildings under construction, and a car is parked on the right side of the image.", - "id": 26777 - }, - { - "image_path": "G:\\images\\combined\\000648_jpg.rf.e66dde828ffc9356915b9979b2406123.jpg", - "response": "The image shows a construction site with multiple workers. There is a man in the foreground who appears to be using a jackhammer. He is wearing a white head covering, a blue shirt, and blue pants. He is also wearing a red helmet.", - "id": 26778 - }, - { - "image_path": "G:\\images\\combined\\000649_jpg.rf.1fbc5a08f7e747e5aeae6c2cd1accb51.jpg", - "response": "\u53c2\u89c2\u5de5\u5730\u7684\u8d2d\u623f\u8005(73,316),(314,995)", - "id": 26779 - }, - { - "image_path": "G:\\images\\combined\\000650_jpg.rf.62698b83c4b80318f8ec07747883ae6b.jpg", - "response": "The image shows a man standing in front of a large propeller for a ship. The propeller is located in a factory and is in the process of being made. The man is wearing a red hard hat and a navy blue polo shirt with a white and black checkered pattern. He is also wearing dark blue pants.", - "id": 26780 - }, - { - "image_path": "G:\\images\\combined\\000652_jpg.rf.32a41e624072ee5a2547d303a15df65d.jpg", - "response": "Some workers are pouring concrete into a large grid.", - "id": 26781 - }, - { - "image_path": "G:\\images\\combined\\000653_jpg.rf.4935bf4e14b1a58924a14a0954a6db65.jpg", - "response": "A group of men standing in front of a truck.", - "id": 26782 - }, - { - "image_path": "G:\\images\\combined\\000654_jpg.rf.c458ec546ab34f76704b37e59bbb046e.jpg", - "response": "A large truck with a power transformer on the back.", - "id": 26783 - }, - { - "image_path": "G:\\images\\combined\\000656_jpg.rf.fa4c4fa4f8da79fc2c7868dda08acd71.jpg", - "response": "A man in a purple shirt and jeans is standing at a podium in a construction site. He is wearing a red hard hat. He is speaking to a group of people, some of whom are also wearing red hard hats. They are standing in front of a construction site with a few tall buildings. In the background, there are a few cranes.", - "id": 26784 - }, - { - "image_path": "G:\\images\\combined\\000657_jpg.rf.1b746696f6322a4dd18a5c5234b17b9d.jpg", - "response": "In the image there is a person wearing a white shirt and a yellow hard hat sitting on the ground in a construction area. They are next to a pile of broken concrete and are looking at something. There is a pile of wooden boards behind them and a blue sign that says \"copper\" to their left. There is also a man in the background standing on a platform made of wooden boards.", - "id": 26785 - }, - { - "image_path": "G:\\images\\combined\\000658_jpg.rf.ac88afff4cfc98874f31e007e1b53b9e.jpg", - "response": "The image shows two workers in blue hard hats and white gloves, working in a large hole filled with water. The hole is surrounded by concrete pipes and has a large metal tube running through it. The workers are standing in the hole, one at the bottom and one near the middle. They are wearing black jackets and the one on the bottom is wearing a blue hard hat. The scene appears to be a construction or maintenance job.", - "id": 26786 - }, - { - "image_path": "G:\\images\\combined\\000659_jpg.rf.e937a01d9ed3ffb4dbbf5fa035843cc7.jpg", - "response": "A man in a red shirt is holding a fire hose.", - "id": 26787 - }, - { - "image_path": "G:\\images\\combined\\000661_jpg.rf.fe810d2b939f8cd9a9bd06a8ccf68af3.jpg", - "response": "The image shows three workers in white and blue hard hats and safety vests crouching in front of a grey control box. The workers are on either side of the box, with one worker on the left and two others on the right. The worker on the right is kneeling on a red cushion on the floor. All three workers are looking down at the control box, which has been opened and is exposed to the camera. The workers appear to be repairing or maintaining the box.", - "id": 26788 - }, - { - "image_path": "G:\\images\\combined\\000662_jpg.rf.e131bca00a6c5b1426548fbd1b13e4b0.jpg", - "response": "A man in a suit is speaking at a table with two other men.", - "id": 26789 - }, - { - "image_path": "G:\\images\\combined\\000663_jpg.rf.14985a49d3abb04125134c5731f99b26.jpg", - "response": "Two men in high visibility vests and hard hats, one with a headlamp on and the other with a blue and gold hard hat.", - "id": 26790 - }, - { - "image_path": "G:\\images\\combined\\000664_jpg.rf.fc30d1b482a86ee54f148773d855e7bb.jpg", - "response": "A man in a red jumpsuit and a hard hat is sitting in a yellow forklift.", - "id": 26791 - }, - { - "image_path": "G:\\images\\combined\\000665_jpg.rf.37006c08acfffe13c0cdadc96c17305b.jpg", - "response": "a man in a blue jacket and hat fixing a power line", - "id": 26792 - }, - { - "image_path": "G:\\images\\combined\\000666_jpg.rf.df68b023531ceed4c524081ef92a5be3.jpg", - "response": "A group of three construction workers stand in front of a large bridge that is under construction. The bridge has a red crane in the background, and the workers are wearing hard hats. The sky is hazy and grey.", - "id": 26793 - }, - { - "image_path": "G:\\images\\combined\\000667_jpg.rf.5f89701fa2fc48968b75ad6e78b8c985.jpg", - "response": "In the image there are two workers wearing yellow jackets and orange helmets. They are shaking hands in front of a large metal and concrete structure. The structure has many metal beams and is covered in pipes and machinery.", - "id": 26794 - }, - { - "image_path": "G:\\images\\combined\\000668_jpg.rf.4e747fc55a6fa43d690967e160fbd9dd.jpg", - "response": "In the image there is a person wearing a orange vest and a blue helmet. They are working on a machine that looks like a metal tower with a red and yellow background.", - "id": 26795 - }, - { - "image_path": "G:\\images\\combined\\00066af7b52f505c.jpg", - "response": "A street scene with a brick building that has a clock on the corner. There is a traffic light above the street and a crosswalk. A car is parked on the street and a stop sign is visible.", - "id": 26796 - }, - { - "image_path": "G:\\images\\combined\\000670_jpg.rf.eab6cbf6bec3b25808cc555a877299d4.jpg", - "response": "A city street with two workers walking down the street. In the background are three tall buildings.", - "id": 26797 - }, - { - "image_path": "G:\\images\\combined\\000671_jpg.rf.dd7be2cf8a9ec2f6e2ac41e650271854.jpg", - "response": "The image shows a group of men standing on a patio. They are all wearing pants, some are also wearing shirts. There are at least five men in the group, all standing in a semi-circle. The men are all wearing different shoes, some are black, some are blue, and one is white.", - "id": 26798 - }, - { - "image_path": "G:\\images\\combined\\000672_jpg.rf.69354dbef932e5bd02961ffa1ca82618.jpg", - "response": "The image shows a group of people walking together in a parking lot. They are all wearing hard hats, and some of them are also wearing backpacks. In the background, there is a building under construction with scaffolding. Another building is visible to the right of the group. The people are standing on a concrete surface and there are a few more people walking in the background. Some of them are carrying handbags. The sky is grey and overcast.", - "id": 26799 - }, - { - "image_path": "G:\\images\\combined\\000672_jpg.rf.8e002fb6300ab8612a935024023aac19.jpg", - "response": "The image shows a group of people walking together in a parking lot in front of a large building under construction. The people are wearing hard hats and there is a building in the background.", - "id": 26800 - }, - { - "image_path": "G:\\images\\combined\\000673_jpg.rf.f14abf574c7bf8307e3e274278d15662.jpg", - "response": "The image shows two men working on a construction site. They are wearing work clothes and hard hats. One man is on the left and is bending over to work on a metal bar with a wrench. The other man is on the right and is looking at something. They are both focused on their tasks.", - "id": 26801 - }, - { - "image_path": "G:\\images\\combined\\000674_jpg.rf.84205f58332f473f85f027832c209a43.jpg", - "response": "Men standing around a pole(337,396),(597,857)", - "id": 26802 - }, - { - "image_path": "G:\\images\\combined\\000674_jpg.rf.e976a88b1ce32af384b93ae26f0db6a4.jpg", - "response": "A group of people standing around a piece of machinery.", - "id": 26803 - }, - { - "image_path": "G:\\images\\combined\\000675_jpg.rf.086beadb450f286fc47ae32dec727dea.jpg", - "response": "Some people are working on a construction site.", - "id": 26804 - }, - { - "image_path": "G:\\images\\combined\\000676_jpg.rf.0e8c354748d7e57256b5c266df685549.jpg", - "response": "a group of people walking across a parking lot", - "id": 26805 - }, - { - "image_path": "G:\\images\\combined\\000676_jpg.rf.5ad4fb75a7fc449c03d13e2793720e1a.jpg", - "response": "A group of men walking down a street.", - "id": 26806 - }, - { - "image_path": "G:\\images\\combined\\000677_jpg.rf.160126c5edef7559392464eb5d2f81f1.jpg", - "response": "An electrician repairs a power line.", - "id": 26807 - }, - { - "image_path": "G:\\images\\combined\\000678_jpg.rf.b6be4011af8a072b5bdc7bb7049e61cd.jpg", - "response": "An oil rig with two men standing in front of it.", - "id": 26808 - }, - { - "image_path": "G:\\images\\combined\\000679_jpg.rf.74d0a3fab9629d4e3254dacfb1776043.jpg", - "response": "A group of men sitting around a table.", - "id": 26809 - }, - { - "image_path": "G:\\images\\combined\\000680_jpg.rf.2abb3dda084b8acb864f23af0eba1276.jpg", - "response": "A group of men standing in front of a yellow construction vehicle and a building. They are all wearing hard hats and some are wearing uniforms.", - "id": 26810 - }, - { - "image_path": "G:\\images\\combined\\000681_jpg.rf.37b6bffc80ea619d77b448243e6db925.jpg", - "response": "A group of people standing around a construction site.", - "id": 26811 - }, - { - "image_path": "G:\\images\\combined\\000681_jpg.rf.5412b52408e577ee26f33db20532450f.jpg", - "response": "A group of people standing around a construction site.", - "id": 26812 - }, - { - "image_path": "G:\\images\\combined\\000682_jpg.rf.5b581e5b3808591bf38923dc65ce7d54.jpg", - "response": "A man in a white shirt is shaking hands with another man.", - "id": 26813 - }, - { - "image_path": "G:\\images\\combined\\000684_jpg.rf.82f5fde6f3129ea11547a02999fa156a.jpg", - "response": "A construction site with two men looking at a sign.", - "id": 26814 - }, - { - "image_path": "G:\\images\\combined\\000685_jpg.rf.7c78011519a11e377d5a60a02baba0e2.jpg", - "response": "A group of construction workers in hard hats and yellow vests standing on a building site.", - "id": 26815 - }, - { - "image_path": "G:\\images\\combined\\000686_jpg.rf.790cd87a7340090c88b7f729910427f7.jpg", - "response": "A group of people working on a brick and cinder block building.", - "id": 26816 - }, - { - "image_path": "G:\\images\\combined\\000687_jpg.rf.432ff9976572d2a32bfd87f050b1d7eb.jpg", - "response": "A man wearing a hard hat and safety gear is welding in a pile of rubble.", - "id": 26817 - }, - { - "image_path": "G:\\images\\combined\\000688_jpg.rf.994af02f7243dac5adb5e81cb5393e70.jpg", - "response": "A worker is sitting in a hole in a wall. The worker is wearing a yellow hard hat and has a yellow hard hat on. The worker is also wearing a pink shirt. The worker is holding a yellow hard hat in their left hand. There is a cup on the ground in front of the worker. The cup is silver and has a handle. There is a brick wall in front of the worker. The wall is made of red bricks. There is a yellow rope going across the wall. There is a person's foot in the left side of the picture. The person is wearing a black shoe. There is a white bar in the left side of the picture. There is a pipe sticking out of the wall on the right side of the picture.", - "id": 26818 - }, - { - "image_path": "G:\\images\\combined\\000689_jpg.rf.aec3b3b3e380d2332b8d285ce438826c.jpg", - "response": "A group of people standing in front of an electrical substation.", - "id": 26819 - }, - { - "image_path": "G:\\images\\combined\\00068a9d975dcc8a.jpg", - "response": "A man in a uniform and a woman are holding a cell phone in front of them.", - "id": 26820 - }, - { - "image_path": "G:\\images\\combined\\000690_jpg.rf.004d951e1ca30ccb42cba8035d2da582.jpg", - "response": "An African worker sits on the ground, wearing a yellow construction helmet and orange vest. He is holding a long object with a string attached to it.", - "id": 26821 - }, - { - "image_path": "G:\\images\\combined\\000691_jpg.rf.d118716134b6d0f00575b13f77be9e14.jpg", - "response": "A group of people working on a construction site.", - "id": 26822 - }, - { - "image_path": "G:\\images\\combined\\000691_jpg.rf.e24924578428e25598e21e355db796c3.jpg", - "response": "A group of people working on a construction site.", - "id": 26823 - }, - { - "image_path": "G:\\images\\combined\\000692_jpg.rf.73d63a3d3ed60af043841e6cd56a6aca.jpg", - "response": "A man wearing a yellow hard hat is carrying three wooden boards over his shoulder. He is wearing a black shirt and has his hands on the boards. The man has a beard and is not wearing any other protective gear. The boards are a light brown color and appear to be made of wood. The man's face is not visible. The background shows the frame of a building under construction.", - "id": 26824 - }, - { - "image_path": "G:\\images\\combined\\000693_jpg.rf.d588494a13a9d41cd3eac33b22f8769b.jpg", - "response": "A businessman in a suit and hard hat is holding a metal bar with a worker in a similar hat. They are in a factory with multiple metal bars on racks around them.", - "id": 26825 - }, - { - "image_path": "G:\\images\\combined\\000695_jpg.rf.df198f93ec38d2b42d25a0d6c041dfa4.jpg", - "response": "A woman in a red hat and blue shirt is walking in a construction site with two other women. One of the women is wearing a red hat and carrying a red bag. Another woman is wearing a white shirt and is carrying a black bag. They are walking across a dirt field. On the left side of the field is a large construction site with tall concrete pillars. To the right of the field is a large body of water.", - "id": 26826 - }, - { - "image_path": "G:\\images\\combined\\000697_jpg.rf.f424bf4b58002c116dfa521f5f0df901.jpg", - "response": "A man in a hard hat stands in front of a large piece of mining equipment. The man is wearing blue coveralls and is standing with his hands on his hips. The mining equipment is huge and is made of metal. It has many moving parts and is covered in dust. The man appears to be observing the machine.", - "id": 26827 - }, - { - "image_path": "G:\\images\\combined\\000699_jpg.rf.c9e49879e19510961cfc351e8d64762a.jpg", - "response": "A group of men working on a construction site.", - "id": 26828 - }, - { - "image_path": "G:\\images\\combined\\0006dc0977056410.jpg", - "response": "A white van with yellow stripes is driving down a highway.", - "id": 26829 - }, - { - "image_path": "G:\\images\\combined\\000701_jpg.rf.07892e471e46dd19d5ebd7602fb36047.jpg", - "response": "a group of people sitting around a table", - "id": 26830 - }, - { - "image_path": "G:\\images\\combined\\000702_jpg.rf.97e1ef7171d97a3efcd824515aadce9a.jpg", - "response": "A group of men in suits and hard hats walking across a construction site.", - "id": 26831 - }, - { - "image_path": "G:\\images\\combined\\000703_jpg.rf.0c25d7824c1b1f0c42508e13d1844afd.jpg", - "response": "A group of four construction workers in blue uniforms.", - "id": 26832 - }, - { - "image_path": "G:\\images\\combined\\000704_jpg.rf.f1a9812ccd68f821fa0abafa14ac4371.jpg", - "response": "A pair of linemen, one standing on a ladder and the other on the ground, work on a power line.", - "id": 26833 - }, - { - "image_path": "G:\\images\\combined\\000705_jpg.rf.72c85ad3da870541b85225177cb102c9.jpg", - "response": "A group of people working on a cement area.", - "id": 26834 - }, - { - "image_path": "G:\\images\\combined\\000706_jpg.rf.e2aa9bf9d67be05dbe134cd8d6dbcf94.jpg", - "response": "A group of men working on a building site.", - "id": 26835 - }, - { - "image_path": "G:\\images\\combined\\000707_jpg.rf.4af8ae2f68a61aa2743d5093e05610d9.jpg", - "response": "A worker in camouflage jacket and a hard hat stands in front of a yellow crane and a large metal structure. The worker is smiling and holding a tool.", - "id": 26836 - }, - { - "image_path": "G:\\images\\combined\\000708_jpg.rf.34ef79b9b5e7abe62be7edbb850af4ff.jpg", - "response": "A construction site with multiple workers.", - "id": 26837 - }, - { - "image_path": "G:\\images\\combined\\000709_jpg.rf.87fa0c60827456554fff1e9956cdd4a9.jpg", - "response": "A group of three people standing on a sidewalk.", - "id": 26838 - }, - { - "image_path": "G:\\images\\combined\\000710_jpg.rf.3bf930fd51ba331c75a0a1be8609b703.jpg", - "response": "A toy display of two men working in a mine.", - "id": 26839 - }, - { - "image_path": "G:\\images\\combined\\000711_jpg.rf.12d7e48f94606c0b1cb44abb457894fd.jpg", - "response": "A group of men standing around a TV.", - "id": 26840 - }, - { - "image_path": "G:\\images\\combined\\000712_jpg.rf.a5761cb2da424248c1f1f4b10fa6fd43.jpg", - "response": "a man(237,333),(478,636) in a red hat(417,332),(480,415) working on a cement block", - "id": 26841 - }, - { - "image_path": "G:\\images\\combined\\000713_jpg.rf.0589797bc505d88914948db902dffb3e.jpg", - "response": "The image shows a building under construction. The building is made of concrete and has an arch design. There are several workers visible in the image, working on different parts of the building. Some of them are working on the roof, while others are working on the first floor. Some of them are using tools such as hammers and drills. The workers are wearing different types of protective gear, including hard hats and safety vests.", - "id": 26842 - }, - { - "image_path": "G:\\images\\combined\\000713_jpg.rf.b5e77f8134c74e7b7e35a04ea31eb4da.jpg", - "response": "The image shows a building under construction. The building is made of concrete and has several arches. There are several workers on the construction site, some of them are working on the first floor, others on the second floor and some on the roof. Some of the workers are using tools such as hammers and drills. There are also some pipes visible in the image.", - "id": 26843 - }, - { - "image_path": "G:\\images\\combined\\000714_jpg.rf.17128f65276c4040eecfce9311ebac6f.jpg", - "response": "A worker in a red jacket and a white hat, with a device in his hand, is standing in a dark tunnel. The tunnel is grey and has rail tracks on the side of the worker. The worker is in the middle of the tunnel.", - "id": 26844 - }, - { - "image_path": "G:\\images\\combined\\000715_jpg.rf.6faee14cd63964370f00652329ded534.jpg", - "response": "In the image there is a man pushing a cart. The cart is made of metal and has two wheels. The man is wearing a hat and a jacket. He is standing in front of a building that is under construction. The building is made of concrete and has many floors. There is a large poster in front of the building with two tall buildings on it. The sky is overcast and it seems to be raining.", - "id": 26845 - }, - { - "image_path": "G:\\images\\combined\\000716_jpg.rf.b74dfa11fc4fae4be93c2d51154024ed.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is smiling at the camera while holding a power tool with a drill in his hand. He is also wearing a black glove on his left hand. Next to him is another person wearing a yellow hard hat and a white shirt. They are both in front of a building under construction with blue fences and green netting.", - "id": 26846 - }, - { - "image_path": "G:\\images\\combined\\000717_jpg.rf.77632f146222214d47eec053e626b1da.jpg", - "response": " Men(54,289),(578,998)(543,318),(703,995)(735,190),(996,996)(253,293),(389,999) standing inside a large pipe", - "id": 26847 - }, - { - "image_path": "G:\\images\\combined\\000718_jpg.rf.8179a84da76eb5286c51a8d9ce8cdc4f.jpg", - "response": "The image shows a group of people standing on a construction site. There are five people in the foreground, with one on the left wearing a red hard hat and dark blue jeans, one in the center wearing a white hard hat and dark pants, and one on the right wearing a striped shirt and dark blue jeans. In the background, there are three people, one wearing a black shirt and dark blue jeans, one wearing a white shirt and dark pants, and one wearing a black shirt and gray pants. They are all pointing towards the left. On the left side of the image, there are a few trees and a patch of grass. On the right side of the image, there is a building under construction with scaffolding.", - "id": 26848 - }, - { - "image_path": "G:\\images\\combined\\000718_jpg.rf.9a31053ad1be26d19b6d19a8680f8338.jpg", - "response": "The image shows a group of people standing in a construction site. There are five people in the scene, with one person on the left wearing a red hat and black clothes, and four others standing together in the middle, with the one on the right wearing a white hat and black jacket with a blue shirt underneath. The person on the left is pointing to the right, where there is a building under construction with grey walls and black windows. There are also some trees in the background.", - "id": 26849 - }, - { - "image_path": "G:\\images\\combined\\000719_jpg.rf.b8b51dfe5a9cc3e0714f6c6c3ac15992.jpg", - "response": "A group of workers in orange uniform sitting on a log", - "id": 26850 - }, - { - "image_path": "G:\\images\\combined\\000719_jpg.rf.beadbd52f0c215ed470053878d8fdc9e.jpg", - "response": "A group of young men wearing orange work clothes and blue safety helmets are sitting on a curb. They are smiling at the camera. One man is sitting on a blue and red fire hose.", - "id": 26851 - }, - { - "image_path": "G:\\images\\combined\\000720_jpg.rf.20dc8beb3d1a86edfd4973b0a450979e.jpg", - "response": "The image shows a group of four men standing on a construction site. They are all wearing hard hats and are engaged in conversation. The man on the far left is holding a camera and appears to be pointing at something. In the background, a car is visible on the left side of the image. The men are all wearing different outfits, with the man on the far left wearing a black shirt and grey pants, the man in the middle wearing a white shirt and black pants, the man on the right wearing a pink shirt and grey pants, and the man in the middle wearing a white shirt and black pants.", - "id": 26852 - }, - { - "image_path": "G:\\images\\combined\\000722_jpg.rf.d6aea3c3df6d52215700c19ef5ad9597.jpg", - "response": "A group of workers stand next to a wall with pictures on it.", - "id": 26853 - }, - { - "image_path": "G:\\images\\combined\\000723_jpg.rf.8a8316cd8adab80204d62f6191fe441e.jpg", - "response": "A group of men working on electronics.", - "id": 26854 - }, - { - "image_path": "G:\\images\\combined\\000725_jpg.rf.2cc7384f4e14b99b3b83abe19d4c6c8d.jpg", - "response": "A worker is seen in a protective suit and blue hat, holding a long pipe while standing on a yellow step ladder. He is working on a large piece of machinery with a sign on the wall nearby that reads \"\u6cbf\u7ebf\u795e\u6811\u8fd9\u91cc\u6709\u9ad8\u538b\u7535\". The background shows another yellow step ladder and a white construction vehicle. In the top right corner, there's a sign that reads \"\u65b0\u7586\u662f\u4e2a\u597d\u5730\u65b9\".", - "id": 26855 - }, - { - "image_path": "G:\\images\\combined\\000726_jpg.rf.329801437be30143f0614049da006389.jpg", - "response": "The image shows a group of men walking together. They are all wearing white or red hard hats, and some are also wearing light blue or white shirts. They are in front of a building that has a large glass entrance and a metal structure. There is a bench visible in the foreground, and a person with dark hair and a black shirt is standing alone in the background. There are several other people visible in the background, some of them wearing hard hats as well.", - "id": 26856 - }, - { - "image_path": "G:\\images\\combined\\000727_jpg.rf.0fe2078ee3ec12c35c4650f84c699193.jpg", - "response": "A man in grey jumpsuit and yellow hard hat working on power lines.", - "id": 26857 - }, - { - "image_path": "G:\\images\\combined\\000728_jpg.rf.4d97a8501b53503f67d5995dd3ea4017.jpg", - "response": "A group of people standing around a table with a man pointing at it.", - "id": 26858 - }, - { - "image_path": "G:\\images\\combined\\000729_jpg.rf.3db10d43c38dfc4f5a94556f5661197d.jpg", - "response": "In the image two construction workers are observing a digger in a quarry. The digger is positioned on the right side of the image and is in the process of digging into a hill of rubble. The workers are both wearing orange safety vests and helmets. The one on the left is holding a clipboard. The sky above them is bright and hazy.", - "id": 26859 - }, - { - "image_path": "G:\\images\\combined\\000732_jpg.rf.6d9904feb2d7ee3f0257336f8b03de7a.jpg", - "response": "A group of men working on power lines.", - "id": 26860 - }, - { - "image_path": "G:\\images\\combined\\000733_jpg.rf.05cc7d792c5d95feb2a4a9cf40c0db55.jpg", - "response": "A group of people standing around in front of a building. Some of the people are wearing hard hats.", - "id": 26861 - }, - { - "image_path": "G:\\images\\combined\\000734_jpg.rf.862d41e6242e1c7b025ef4b75c87c94d.jpg", - "response": "A few men in hard hats and safety gear are working on some power lines. They are on a ladder and are surrounded by various equipment.", - "id": 26862 - }, - { - "image_path": "G:\\images\\combined\\000735_jpg.rf.b6d9f5829302e9abca9a33a6fb9e5724.jpg", - "response": "A man in a hard hat and suspenders is standing on a ladder and washing a window.", - "id": 26863 - }, - { - "image_path": "G:\\images\\combined\\000736_jpg.rf.3d33ecbad79e60a6735cbaa19eef6c04.jpg", - "response": "Rescue workers in protective gear work to clear debris from the mine.", - "id": 26864 - }, - { - "image_path": "G:\\images\\combined\\000737_jpg.rf.084d9c751dd31f7c726c3883deba6035.jpg", - "response": "A group of workers are pouring concrete for the bridge.", - "id": 26865 - }, - { - "image_path": "G:\\images\\combined\\000738_jpg.rf.230bb191b931260210f438fb56befee8.jpg", - "response": "A worker in a red shirt and a hard hat is talking to two women. One of the women is a student and the other is a farmer. They are standing in front of a yellow and grey wall. There is a yellow poster on the wall to the left of the group. In the background, there is a staircase with a metal railing. On the right side of the staircase, there is a pink and grey plastic chair. In front of the chair, there is a pink and grey plastic stool. On the ground, there is a pink and grey plastic bag.", - "id": 26866 - }, - { - "image_path": "G:\\images\\combined\\000738_jpg.rf.79c66b464a8d4649055fc8ecf62b6913.jpg", - "response": "A man in a red shirt and a hard hat is talking to two women. The man is a construction worker and is wearing a red shirt. The women are both wearing dark clothing. One of the women is a student and is wearing a backpack. They are all standing in front of a construction site.", - "id": 26867 - }, - { - "image_path": "G:\\images\\combined\\000740_jpg.rf.e2a06ef57b8a8bedd4ccc9db073fbeef.jpg", - "response": "A construction worker wearing a yellow vest and a red helmet is using a tool to pour concrete into a large mold. The worker is standing on top of a large tarp and there are several rebar rods sticking out of the ground around the mold. The ground is covered in a light layer of brown dirt.", - "id": 26868 - }, - { - "image_path": "G:\\images\\combined\\000741_jpg.rf.9a00b7b9ceabefcbf3f80b5ce3a451f9.jpg", - "response": "The image shows workers in a room wearing work clothes and hard hats. In the room, there are two tables, one in the middle of the room and the other on the right side. On the left side of the room, there is a cabinet. In front of the two tables, there is a green mat. On the right side of the cabinet, there are two white boxes. In the middle of the room, there is a man in a white shirt and grey pants. He is wearing a white hat and has a white object in his hand. There are also two other men in the room, one on the left side and the other on the right side of the room.", - "id": 26869 - }, - { - "image_path": "G:\\images\\combined\\000742_jpg.rf.9a3729383b5fe7c6ed74ab20c4789f19.jpg", - "response": "An electrician repairs power lines in the sky.", - "id": 26870 - }, - { - "image_path": "G:\\images\\combined\\000743_jpg.rf.d492a21be2a749229d3e29f6e14bb366.jpg", - "response": "A person wearing a white hard hat and a grey jacket is working in a construction site. They are standing in front of a yellow truck and a red and yellow crane. There are many stacks of metal rods in front of them and a yellow machine with blue pipes on the right. A white truck is parked further back in the scene.", - "id": 26871 - }, - { - "image_path": "G:\\images\\combined\\000744_jpg.rf.3ce90af77ddc3e28494a47991a3991d7.jpg", - "response": "A group of men working on a power line in a field.", - "id": 26872 - }, - { - "image_path": "G:\\images\\combined\\000745_jpg.rf.81325e4552fd7902abe89ca8684bdb8e.jpg", - "response": "A group of people in suits and hard hats stand around a map of a city. Some of them are Chinese, and some are wearing hard hats.", - "id": 26873 - }, - { - "image_path": "G:\\images\\combined\\000746_jpg.rf.a7e24a95913edd62435bb18aa039ad03.jpg", - "response": "A worker drills a hole in the ceiling of the No. 2 tunnel.", - "id": 26874 - }, - { - "image_path": "G:\\images\\combined\\000747_jpg.rf.9b3a9369a7908d1b460c276d8205edc3.jpg", - "response": "a group of men standing on a snowy hillside", - "id": 26875 - }, - { - "image_path": "G:\\images\\combined\\000749_jpg.rf.d291314b27dc04c8ca07e98602d63cb9.jpg", - "response": "A group of four children wearing red hard hats are standing around a woman who is also wearing a red hard hat. The woman is holding a piece of paper with a maze on it.", - "id": 26876 - }, - { - "image_path": "G:\\images\\combined\\000751_jpg.rf.b751c9f9fda86602167755ee50efae26.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 26877 - }, - { - "image_path": "G:\\images\\combined\\000752_jpg.rf.6771a97e506dba1a7433b1293a1ce7ec.jpg", - "response": "a man and a woman walking down a dirt road", - "id": 26878 - }, - { - "image_path": "G:\\images\\combined\\000753_jpg.rf.9a00db2ad026eb39324b64010089749f.jpg", - "response": "The image shows a group of men in factory settings. They are all wearing yellow hard hats and some are wearing black shoes, white shirts, and dark blue or grey pants. One man is wearing a tie and black pants. In the background, there are a lot of metal pipes and a wall painted with the American flag. The floor is light yellow and many people are standing.", - "id": 26879 - }, - { - "image_path": "G:\\images\\combined\\000754_jpg.rf.17387878d99dda738804de89aec4a841.jpg", - "response": "Rescuers work at the site of a collapsed hotel in Xi'an, capital of Shaanxi Province, China, May 15, 2009. A hotel under construction in Xi'an, capital of Shaanxi Province, collapsed on Sunday, killing at least 19 people and injuring 16 others, local authorities said. The hotel, with seven floors, was under construction for about a month and was about 80 percent finished when it collapsed at around 11:30 a.m. Sunday, local authorities said. The cause of the collapse is under investigation. (Xinhua/Chen Yichen)", - "id": 26880 - }, - { - "image_path": "G:\\images\\combined\\000756_jpg.rf.881e64221b20fe10891a233c4720a9a1.jpg", - "response": "a brick wall(1,3),(374,996)", - "id": 26881 - }, - { - "image_path": "G:\\images\\combined\\000757_jpg.rf.b892769700ab0f6b1576f46f3f29c88b.jpg", - "response": "a man(679,1),(999,577) in a blue shirt and orange hard hat(699,186),(834,375) is using a tool to cut through a pipe(487,396),(727,606)", - "id": 26882 - }, - { - "image_path": "G:\\images\\combined\\000758_jpg.rf.c212c2f91c44b3e55fa2c22b5a3ca317.jpg", - "response": "A man in a red hard hat working on a wooden structure.", - "id": 26883 - }, - { - "image_path": "G:\\images\\combined\\000759_jpg.rf.a63bd826807e0816af329101b47708d8.jpg", - "response": "A photo shows Chinese Premier Li Keqiang visiting a construction site in Chongqing, Southwest China, on April 10, 2018. Li visited the construction site of a housing project in the city of\u4e07\u5dde\u533a, Southwest China's Chongqing municipality, on April 10, 2018. The premier was informed of the progress of the project and the difficulties encountered. He also held talks with workers and asked about their living conditions. At that meeting, Premier Li stressed that the government should ensure the quality of the housing project, ensuring the safety and interests of the people. He also encouraged the workers to continue their hard work, and the government will always be with the people.", - "id": 26884 - }, - { - "image_path": "G:\\images\\combined\\000760_jpg.rf.a6de9c1931fccff32bbb4ee58aedf8d9.jpg", - "response": "A construction worker wearing a blue shirt and a purple hat is pouring concrete into a large tube. Another worker is in the background. They are both wearing aprons and the worker in the foreground has a white, red, and blue striped apron. They are standing on a construction site with a white sky and a large pile of dirt in the background. There is a white rope on the ground and a black pipe sticking out of the ground.", - "id": 26885 - }, - { - "image_path": "G:\\images\\combined\\000761_jpg.rf.1f4804cb8256396daf97aea1c4f297ad.jpg", - "response": "A group of men working on a train track.", - "id": 26886 - }, - { - "image_path": "G:\\images\\combined\\000763_jpg.rf.ccaf5042caf6b8eda208ebe54ca3c015.jpg", - "response": "The image shows a group of seven men wearing hard hats, with the middle man wearing a blue shirt and a white and blue hat. They are standing in front of a bridge that is in the process of being built. The background is a forest.", - "id": 26887 - }, - { - "image_path": "G:\\images\\combined\\000764_jpg.rf.576fac4722befea099109b2065615474.jpg", - "response": "A man wearing a orange safety jacket and a white hard hat standing next to a metal pole.", - "id": 26888 - }, - { - "image_path": "G:\\images\\combined\\000765_jpg.rf.5003a4f5b6133eca5f7e0ae065a2b589.jpg", - "response": "In the image several people are on a boat, they seem to be scientists or researchers dressed in red. They are looking at something that has been deployed from the boat. The deployed object is hanging from a rope and is orange in color. The background is the sky and the sea.", - "id": 26889 - }, - { - "image_path": "G:\\images\\combined\\000766_jpg.rf.081737773277f8decfa68f749c301082.jpg", - "response": "The image shows two railway workers in yellow protective gear standing on railroad tracks. They are both wearing yellow hard hats and bright yellow reflective vests. The man on the left is slightly to the left of the center of the image and is looking to the right, while the man on the right is looking slightly down and to the right. They appear to be having a conversation.", - "id": 26890 - }, - { - "image_path": "G:\\images\\combined\\000767_jpg.rf.9e32e044d14d51442c0557e346c3b7d6.jpg", - "response": "A construction worker in a yellow helmet is working on a building site. He is standing on a ladder and working on a large metal structure. He is wearing a grey shirt, a red harness, and a yellow helmet. There are several other people working on the site, but the main focus is on the man in the yellow helmet.", - "id": 26891 - }, - { - "image_path": "G:\\images\\combined\\000768_jpg.rf.f13fc90ce292f1927dc7b11bbe89936d.jpg", - "response": "The image shows two workers in camouflage uniforms and yellow helmets standing on the rubble of a building. The building in the background is brown and has a lot of windows. There are also two cars visible in the background.", - "id": 26892 - }, - { - "image_path": "G:\\images\\combined\\000770_jpg.rf.8ef9673709c6ffa1a6164c25be4a82ce.jpg", - "response": "Men working on a tunnel that is not yet complete.", - "id": 26893 - }, - { - "image_path": "G:\\images\\combined\\000771_jpg.rf.026d627e1ef50f3f6e1343b844d2735e.jpg", - "response": "A man in a blue shirt is showing two other men something on a wire.", - "id": 26894 - }, - { - "image_path": "G:\\images\\combined\\000772_jpg.rf.19760d33701244caa327c114dbcf304b.jpg", - "response": "The image shows a group of men standing in a row. They are wearing business attire, with some wearing ties. The men are standing in front of a building. One man is wearing a red hard hat. In the background, there is a car parked.", - "id": 26895 - }, - { - "image_path": "G:\\images\\combined\\000772_jpg.rf.f92dbcf9662bc123e95401a9ffd40f72.jpg", - "response": "a group of men standing in front of a building", - "id": 26896 - }, - { - "image_path": "G:\\images\\combined\\000773_jpg.rf.f98e3dd189dd46cb55d5f81357cef946.jpg", - "response": "A group of people working on a construction site.", - "id": 26897 - }, - { - "image_path": "G:\\images\\combined\\000774_jpg.rf.c1cbeb4841fb1a629db41136d423d0a9.jpg", - "response": "A man wearing a yellow hard hat and work clothes is working in a mine. He is holding a tool and standing next to a long wooden pole. The mine is filled with dirt and rock.", - "id": 26898 - }, - { - "image_path": "G:\\images\\combined\\000775_jpg.rf.91c46fa05a28ed51185fd0bd7d0aa2d1.jpg", - "response": "A group of older men wearing blue hard hats.", - "id": 26899 - }, - { - "image_path": "G:\\images\\combined\\000776_jpg.rf.959d5bd7d968993b0bb4a6a264eaf937.jpg", - "response": "A pair of workers stand in the entrance of a tunnel. They are wearing blue work clothes and white helmets. In front of them is a tripod with a device on it. The tunnel is dark and has some tools scattered around. The walls of the tunnel are grey and there are steel bars on the side.", - "id": 26900 - }, - { - "image_path": "G:\\images\\combined\\000778_jpg.rf.5ec9c604d2fd8d75e713a7cc9e930709.jpg", - "response": "A group of men in blue uniforms and hard hats are working on a large metal box. They are standing around the box and appear to be fixing or maintaining it. The box is white and grey and says \"Ningde Power Supply Company\" on it. There are also several wires and cables connected to the box. In the background, there is a lush green hillside.", - "id": 26901 - }, - { - "image_path": "G:\\images\\combined\\000779_jpg.rf.b35e91cc998d9cdff74c3a6cd24c8098.jpg", - "response": "The image shows two men standing next to a large metal cylinder in the middle of a sandy desert. The desert is a mix of light brown and dark brown sand dunes. The sky is a bright blue color. In front of the men and the metal cylinder, there is a small pond of water. The men are wearing white helmets and clothes. The metal cylinder is about 2 meters in diameter and 2.5 meters tall.", - "id": 26902 - }, - { - "image_path": "G:\\images\\combined\\000780_jpg.rf.81f3c333363b27e1cc3a4daf7a4fc70d.jpg", - "response": "A construction site with multiple workers visible. There are multiple bamboo poles arranged in a grid pattern on the ground, and a few workers are standing on them, with one worker in the center of the frame, and two others to the right. There is also a brown box truck parked in the background on the left side.", - "id": 26903 - }, - { - "image_path": "G:\\images\\combined\\000781_jpg.rf.c27d9b002e49dbabeb3143eeecd4cf61.jpg", - "response": "two men(403,345),(526,858)(535,420),(691,852) working on a construction site", - "id": 26904 - }, - { - "image_path": "G:\\images\\combined\\000782_jpg.rf.0256c97b916ecb56a5bb34bd96f9b18a.jpg", - "response": "A worker in a yellow hard hat looks up while holding onto a rope.", - "id": 26905 - }, - { - "image_path": "G:\\images\\combined\\000783_jpg.rf.fe0f1ae95c2ed6cac4d788d37e8dd8a1.jpg", - "response": "North Korean leader Kim Jong-un (C) talking with officials during his visit to the newly built residential area in Pyongyang (Photo: Rodong Sinmun)", - "id": 26906 - }, - { - "image_path": "G:\\images\\combined\\000785_jpg.rf.9f4c3d1ba745f6ce56ac2747ef41a239.jpg", - "response": "a group of men walking across a bridge", - "id": 26907 - }, - { - "image_path": "G:\\images\\combined\\000786_jpg.rf.c0d071176b6a6d785cad30048cca8dfd.jpg", - "response": "a group of people walking across a street", - "id": 26908 - }, - { - "image_path": "G:\\images\\combined\\000787_jpg.rf.b0401ca62f5490a23ddbbc326183b50a.jpg", - "response": "A group of men standing around a construction site.", - "id": 26909 - }, - { - "image_path": "G:\\images\\combined\\000788_jpg.rf.adfd2d33a3e0d125f4074ed0229d07e3.jpg", - "response": "A construction worker wearing a hard hat and orange vest.", - "id": 26910 - }, - { - "image_path": "G:\\images\\combined\\000790_jpg.rf.0e6f719b48c0007e82552e0d3f2ff4ec.jpg", - "response": "A couple of men are working on a construction site.", - "id": 26911 - }, - { - "image_path": "G:\\images\\combined\\000791_jpg.rf.cc962e65586a5867ad25c5d04814b090.jpg", - "response": "A group of men in suits and black coats are walking through a garden. They are walking on a brick path that is surrounded by rows of plants. In the background, there is a white building with a red sign on it. The sky is grey and overcast.", - "id": 26912 - }, - { - "image_path": "G:\\images\\combined\\000793_jpg.rf.44e2f49650727307e7c11873e24ef294.jpg", - "response": "A group of workers inside a large tunnel working on a railway line.", - "id": 26913 - }, - { - "image_path": "G:\\images\\combined\\000794_jpg.rf.9515099bc0e447bee25c8da920416827.jpg", - "response": "In the image there is a worker wearing a yellow helmet and coveralls, welding two pieces of metal together. The worker is on the left side of the image and is focused on the task at hand. There is another worker on the right side of the image, wearing a yellow helmet and coveralls, but they are not actively welding. The background is a dark grey wall and the floor is a dark grey. There are sparks flying up from the welding and a bright orange light from the welding torch.", - "id": 26914 - }, - { - "image_path": "G:\\images\\combined\\000795_jpg.rf.c455c5904bf455f81730a43bac6629b2.jpg", - "response": "In the image, a worker is seen wearing a blue shirt and a orange hardhat. The worker is standing in front of a piece of machinery that looks like it's from the inside of a ship. The worker is focusing on a part of the machinery, possibly making adjustments or fixing something. There are several wires and cables visible in the scene, some of them are black and some are blue. The background is a bit blurry but it seems to be a factory environment.", - "id": 26915 - }, - { - "image_path": "G:\\images\\combined\\000796_jpg.rf.0092b2207a6a92dd57ea3ec366ade149.jpg", - "response": "A group of people working on a construction site.", - "id": 26916 - }, - { - "image_path": "G:\\images\\combined\\000797_jpg.rf.d474941f152efa5bd7f7ac98e4e5927e.jpg", - "response": "The image shows two workers inside a cave. They are standing on a large piece of equipment that looks like a crane or a forklift, with four wheels. The machine is painted yellow and black. The workers are wearing helmets and appear to be in the process of drilling into the cave wall. The wall of the cave is covered in a gray and brown speckled pattern. The cave itself is filled with dirt and there are two large rocks visible in the background.", - "id": 26917 - }, - { - "image_path": "G:\\images\\combined\\000798_jpg.rf.b4fc9c066e3c4b63d6feae5a911aef7e.jpg", - "response": "In the image there is a construction worker wearing a green and brown camo jacket and a orange hard hat. They are holding a large grey brick and there is a building in the background.", - "id": 26918 - }, - { - "image_path": "G:\\images\\combined\\000799_jpg.rf.fa3e9b489574dd49e024c288a989e1e0.jpg", - "response": "A group of men in suits standing in a field", - "id": 26919 - }, - { - "image_path": "G:\\images\\combined\\0007a5a18213563f.jpg", - "response": "A stone building with a yellow facade is behind a statue of a man. The building has many windows and a red roof. There is a small tree in front of the building and a string of flags on a wire next to the building.", - "id": 26920 - }, - { - "image_path": "G:\\images\\combined\\0007b54189a67423.jpg", - "response": "A book with the title National Key Scheme Guide 2010 on the cover.", - "id": 26921 - }, - { - "image_path": "G:\\images\\combined\\0007f2c11800286e.jpg", - "response": "A close up of three bottles of wine on a shelf. The bottles are dark grey and have gold writing on them. The writing includes the word \"brunello\" and \"Poggio Antico\". The year 2003 is also visible on one of the bottles.", - "id": 26922 - }, - { - "image_path": "G:\\images\\combined\\000800_jpg.rf.3119e3a9d008e879e18bc4a469f9bb1b.jpg", - "response": "a group of men standing around a field", - "id": 26923 - }, - { - "image_path": "G:\\images\\combined\\000801_jpg.rf.27bb0654c3aa0c11968897c8c1efc280.jpg", - "response": "A group of men in front of a building.", - "id": 26924 - }, - { - "image_path": "G:\\images\\combined\\000802_jpg.rf.a83309bcee208f7286dfbeea98e025ca.jpg", - "response": "The image shows a group of people working in what appears to be a factory. Some of the people are standing, while others are kneeling on the floor. They are all focused on their tasks.", - "id": 26925 - }, - { - "image_path": "G:\\images\\combined\\000803_jpg.rf.87b6adabca0004245508d243ef2f8307.jpg", - "response": "A construction site with a building on the right side of the image that is mostly finished, and a building on the left that is still under construction. In the foreground, two men wearing hard hats are pointing at something.", - "id": 26926 - }, - { - "image_path": "G:\\images\\combined\\000804_jpg.rf.b15aa3082124be9ad848d4491369970c.jpg", - "response": "A man in a white hard hat is working on a brick wall. He is wearing coveralls and a white hard hat. There are other people in the background. There is a pile of bricks to the right of the man. There is a brick wall in the background. There is a house in the background. There is a truck in the background.", - "id": 26927 - }, - { - "image_path": "G:\\images\\combined\\000805_jpg.rf.9c42a09fd79088582008730f0d24fe6d.jpg", - "response": "A construction worker is being interviewed by a reporter.", - "id": 26928 - }, - { - "image_path": "G:\\images\\combined\\000806_jpg.rf.8839c44c153edb1056dd4f0b2e1e7551.jpg", - "response": "A man is using a shovel to move rocks and dirt.", - "id": 26929 - }, - { - "image_path": "G:\\images\\combined\\000807_jpg.rf.31a63dd55b7ff87ff1af999c78bc0410.jpg", - "response": "A group of men standing around each other.", - "id": 26930 - }, - { - "image_path": "G:\\images\\combined\\000809_jpg.rf.a05ac5b1132893bd70042da63f2b179c.jpg", - "response": "A man wearing a yellow vest and a white helmet is using a shovel to dig into the ground. He is wearing brown boots and is crouching down. To the left of the man is a blue tower. In front of the tower is a pile of dirt and gravel. In the background is a building under construction.", - "id": 26931 - }, - { - "image_path": "G:\\images\\combined\\000810_jpg.rf.c74e99887bc78faa244c8b2b8cfe0654.jpg", - "response": "a group of people wearing hard hats", - "id": 26932 - }, - { - "image_path": "G:\\images\\combined\\000811dda0037f67.jpg", - "response": "A crowded city street with many people walking around.", - "id": 26933 - }, - { - "image_path": "G:\\images\\combined\\000811_jpg.rf.8870cc430c42ca4d84c7829b5f8040b5.jpg", - "response": "The image shows a construction site with several people working. There is a close-up view of two men wearing yellow hard hats and green vests, with one of them holding a large wooden beam and the other one holding a large metal tube. They are standing under a wooden structure, which appears to be the frame of a building. In the background, there is another man wearing a yellow hard hat and a vest, as well as a few other people further in the background. The sky is bright and white.", - "id": 26934 - }, - { - "image_path": "G:\\images\\combined\\000812_jpg.rf.9210c94dde1a24d3f64908cec52ca283.jpg", - "response": "A man wearing a blue hard hat shovels sand into a wheelbarrow.", - "id": 26935 - }, - { - "image_path": "G:\\images\\combined\\000814_jpg.rf.1265acb33ccf04cb6e76ece5aa109e39.jpg", - "response": "A group of men standing around each other.", - "id": 26936 - }, - { - "image_path": "G:\\images\\combined\\000817_jpg.rf.04a9cc3684767a57a30e86ee190a0857.jpg", - "response": "A group of men working in a room that is under construction. They are wearing hard hats and are standing in a shaft. The walls are brick and there are exposed beams. There is a ladder against the wall and a fire extinguisher hanging on the wall.", - "id": 26937 - }, - { - "image_path": "G:\\images\\combined\\000818_jpg.rf.e4a0ec93ed454b14d3b14c157d210572.jpg", - "response": "A group of five men and one woman standing in front of a stack of shipping containers. They are all wearing hard hats and work clothes.", - "id": 26938 - }, - { - "image_path": "G:\\images\\combined\\000819_jpg.rf.6e537e9cddbf1605225a290be65f1020.jpg", - "response": "A man wearing a blue jacket and a red helmet is working on a brick wall. He is using a level to make sure the wall is straight. He is also using a square to make sure the bricks are laying properly. He is wearing a black jacket and jeans. He has a beard and is wearing glasses.", - "id": 26939 - }, - { - "image_path": "G:\\images\\combined\\000820_jpg.rf.961ac2c04eb41f343ecc3ea478948f3a.jpg", - "response": "A group of rescue workers in orange jumpsuits and blue hardhats stand on the side of a river. They are holding shovels and wearing waders. The river is rocky and brown, and the workers are standing on a rocky bank. The sky is overcast and there are trees in the background.", - "id": 26940 - }, - { - "image_path": "G:\\images\\combined\\000821_jpg.rf.5a0349a89fddd46ecfdf98fc4a0249c9.jpg", - "response": "Men in blue and yellow hard hats are working on a large pipe that is in the ground. They are standing next to it and working on it.", - "id": 26941 - }, - { - "image_path": "G:\\images\\combined\\000822_jpg.rf.55cc1369534352f10d47b898162fa0c2.jpg", - "response": "A large hole in the ground with a yellow ball in it.", - "id": 26942 - }, - { - "image_path": "G:\\images\\combined\\000824_jpg.rf.03af0d3bed5b6cc7301dceefaa85a6e3.jpg", - "response": "The image shows two men in blue uniforms and hard hats standing in front of a green electrical box. The man on the left is wearing a red hard hat and is reaching into the electrical box while the man on the right is wearing a blue hard hat and is looking at the box. Both men are holding notebooks and there is a clipboard with a paper on it that the man on the right has his hand on.", - "id": 26943 - }, - { - "image_path": "G:\\images\\combined\\000825_jpg.rf.f470a3798c666cf693f03c3080f2c74f.jpg", - "response": "A group of construction workers wearing yellow and white hard hats, reflective jackets and yellow boots. They are working on a construction site with concrete and steel structures. The sky is blue with white clouds.", - "id": 26944 - }, - { - "image_path": "G:\\images\\combined\\000826_jpg.rf.4603b96dc1deb65c3f03476136de54db.jpg", - "response": "A group of people working on a building under construction.", - "id": 26945 - }, - { - "image_path": "G:\\images\\combined\\000828_jpg.rf.806bbd8d901137bfdfdd82e88ac55ba8.jpg", - "response": "The image shows a group of men standing in front of a bus. There are nine people in total, with some standing closer to the bus and others standing further away. They are all dressed in business attire. In the background, there are a few buildings visible. The sky is overcast and there are some trees to the right of the image.", - "id": 26946 - }, - { - "image_path": "G:\\images\\combined\\000829_jpg.rf.1b1349290248f3bca5ee8ab383e121bb.jpg", - "response": "A worker in a blue uniform and red helmet is hugging a grey pole. The worker is wearing a tool belt and has a measuring tape around their wrist. The sky is blue with a few wispy clouds.", - "id": 26947 - }, - { - "image_path": "G:\\images\\combined\\000830_jpg.rf.4955fd6db2763b7f3048abce56ec093b.jpg", - "response": "A man and woman wearing orange work vests and hard hats are standing on a construction site. They are looking at a laptop which is placed on a concrete pylon. The woman is holding a digital camera in her hand. In the background there is a building under construction.", - "id": 26948 - }, - { - "image_path": "G:\\images\\combined\\000831_jpg.rf.5b8984420a1b859db42b5a43f0c31c8e.jpg", - "response": "A group of men working on a road at night.", - "id": 26949 - }, - { - "image_path": "G:\\images\\combined\\000832_jpg.rf.bc190ca1ba23f14a5daf047cbb6641b3.jpg", - "response": "A group of people sitting around a table.", - "id": 26950 - }, - { - "image_path": "G:\\images\\combined\\000833_jpg.rf.8d85c4022a554aca4221eea5b5b49c3d.jpg", - "response": "In the image two people are seen wearing blue and yellow helmets. They are wearing blue coats. One of them is holding a yellow helmet and pointing towards the power generator.", - "id": 26951 - }, - { - "image_path": "G:\\images\\combined\\000834_jpg.rf.ddd3468009f5c58df4dd2010db1651e5.jpg", - "response": " A family(257,473),(516,859)(513,190),(644,703)(390,258),(531,528)(213,487),(295,731) working on a construction project", - "id": 26952 - }, - { - "image_path": "G:\\images\\combined\\000835_jpg.rf.47a2ea874455fb2249bc103a27055655.jpg", - "response": "a group of men standing around each other", - "id": 26953 - }, - { - "image_path": "G:\\images\\combined\\000836_jpg.rf.58a9b6be495e25d6cb339ae91a5441c2.jpg", - "response": "A worker in a blue jumpsuit and yellow hard hat is perched on a power line, repairing it.", - "id": 26954 - }, - { - "image_path": "G:\\images\\combined\\000837_jpg.rf.20bac9a3d71d96ba500fc57febd82122.jpg", - "response": "A group of people standing around a model of a city.", - "id": 26955 - }, - { - "image_path": "G:\\images\\combined\\000838_jpg.rf.78f36e91a07b0de6b3c7164dfaa770f7.jpg", - "response": "a group of people standing inside a mall", - "id": 26956 - }, - { - "image_path": "G:\\images\\combined\\000839_jpg.rf.9245c0dcd59bfe38a3198873d7417ff7.jpg", - "response": "A miner is using a jackhammer in a coal mine.", - "id": 26957 - }, - { - "image_path": "G:\\images\\combined\\000840_jpg.rf.f75421f584c5115d36d5a63022af8435.jpg", - "response": "The image shows a man working on a device outdoors. The device is a black box with a screen attached to a silver pole. The man is wearing a white shirt and blue shorts, and he has black hair. He is standing on a ladder and appears to be connecting wires to the device. The sky is blue with clouds, and there are buildings in the background.", - "id": 26958 - }, - { - "image_path": "G:\\images\\combined\\000841_jpg.rf.e28255594452bd6033ef89e9affba2a7.jpg", - "response": "A man in a suit and tie standing next to a woman in a hard hat. They are both smiling at the camera. In the background, a man is operating a forklift. There are many stacks of boxes in the background.", - "id": 26959 - }, - { - "image_path": "G:\\images\\combined\\000842_jpg.rf.aeb5d5425d8f06964a4532800e631203.jpg", - "response": "a group of people standing around talking", - "id": 26960 - }, - { - "image_path": "G:\\images\\combined\\000844_jpg.rf.3304df9b806a500928925306978f5a12.jpg", - "response": "In the image there is a construction site with multiple cranes in the background. In the foreground, a worker is building a structure out of metal rods. The metal rods form a grid-like pattern on the structure. The worker is wearing a yellow hard hat and has a yellow hard glove on his right hand. He is kneeling on the grid-like structure and appears to be focusing on his work.", - "id": 26961 - }, - { - "image_path": "G:\\images\\combined\\000845_jpg.rf.8cca9991a95005c2890c2a0df24f8808.jpg", - "response": "In the image, a group of men are gathered around a hole in the ground. Some of them are wearing blue uniforms and red helmets, and one of them is holding a clipboard. They are standing on a construction site, and in the background, there is a building and a excavator.", - "id": 26962 - }, - { - "image_path": "G:\\images\\combined\\000846_jpg.rf.a7b67033e8eb91f3a12a22648e1bea57.jpg", - "response": "A group of people standing around a construction site.", - "id": 26963 - }, - { - "image_path": "G:\\images\\combined\\000847_jpg.rf.8584a0b0b639b43eb2cfc38128f3ac44.jpg", - "response": "a group of people standing in front of a building", - "id": 26964 - }, - { - "image_path": "G:\\images\\combined\\000849_jpg.rf.989a85e1bcf1f96d0e0798a3bdb912e1.jpg", - "response": "a building in the background(114,173),(865,502)", - "id": 26965 - }, - { - "image_path": "G:\\images\\combined\\000851_jpg.rf.15c2bca42f39921350828ab93fdc066d.jpg", - "response": "A close up of a person wearing a yellow hard hat. The person is wearing a khaki jacket and has a yellow hard hat with the letters M&E on the side. The person is also wearing black earplugs.", - "id": 26966 - }, - { - "image_path": "G:\\images\\combined\\000852_jpg.rf.fd2c126e9ef8503be18afa1a3153c534.jpg", - "response": "A construction site with two workers standing on a large grid of steel reinforcement bars.", - "id": 26967 - }, - { - "image_path": "G:\\images\\combined\\000853_jpg.rf.c252ac17f2559bbe8676cf0c2375fab6.jpg", - "response": "A man in blue overalls and a blue hat is climbing a telephone pole. He is wearing a tool belt and has a tool in his hand. There are several power lines attached to the pole and others in the background. The sky is overcast and there is snow on the ground.", - "id": 26968 - }, - { - "image_path": "G:\\images\\combined\\000854_jpg.rf.a2c26ddd422a021ca1fe130c56a93859.jpg", - "response": "A woman wearing a pink hard hat is working on a building. She is standing on a ladder and is in the process of applying a substance to the side of the building. She is also wearing a grey t-shirt and has a pink cell phone attached to her belt. There is another person in the background working on the building as well.", - "id": 26969 - }, - { - "image_path": "G:\\images\\combined\\000855_jpg.rf.8172642039566804f34fede6daabb78c.jpg", - "response": "A group of people in blue hats and suits standing in the street.", - "id": 26970 - }, - { - "image_path": "G:\\images\\combined\\000856_jpg.rf.57c087f5398075c03964f853f0896aa5.jpg", - "response": "In the image there is a construction site with multiple cranes in the background. In the foreground, a worker in a blue uniform and a red helmet is crouching down and working with some metal rods. The metal rods are rusty and the worker is holding some with both hands. There are several other people working in the construction site as well.", - "id": 26971 - }, - { - "image_path": "G:\\images\\combined\\000857_jpg.rf.c6d13ced58e1813b16dfcf9862fd737f.jpg", - "response": "A group of men working on power lines with a yellow crane working on a power line in the background.", - "id": 26972 - }, - { - "image_path": "G:\\images\\combined\\000858_jpg.rf.5837c294aeb8ab30e45b0afb423b471e.jpg", - "response": "A group of workers in hard hats and safety vests are standing inside a large tunnel. They are standing around a yellow pipe that is coming through the tunnel. The pipe is very large and long.", - "id": 26973 - }, - { - "image_path": "G:\\images\\combined\\000859_jpg.rf.3dc50c307721b9a83c9775bc685cf486.jpg", - "response": "A man in a yellow vest and hard hat is on a construction site, placing a block on a roof. He is wearing a yellow vest and has a yellow hard hat on. He is standing on a roof and is in front of a blue sky.", - "id": 26974 - }, - { - "image_path": "G:\\images\\combined\\000861_jpg.rf.8175a4652b5dbfb889274b4a3110efe0.jpg", - "response": "In the image, workers are seen wearing orange and yellow uniform. They are working under a bridge, with one worker on the left and another on the right. The workers are repairing the bridge, with bricks and cement in the scene.", - "id": 26975 - }, - { - "image_path": "G:\\images\\combined\\000863_jpg.rf.543462efb7a86bebc1eefcd821f904a4.jpg", - "response": "A man in a green jacket and red hard hat is pulling a red pipe while two other men in hard hats help him. They are all standing on a snowy hill.", - "id": 26976 - }, - { - "image_path": "G:\\images\\combined\\000864_jpg.rf.9d517da992ca238348f21c11948aea1e.jpg", - "response": "An electrician and a helper work on a circuit panel.", - "id": 26977 - }, - { - "image_path": "G:\\images\\combined\\000867_jpg.rf.12a9b95697d2e39913ceca14f2f44475.jpg", - "response": "A construction site with three workers visible. They are standing near a pile of materials and a small cart. There is a blue truck parked further back. There is a building under construction with scaffolding on the left. On the right are some residential buildings.", - "id": 26978 - }, - { - "image_path": "G:\\images\\combined\\000868_jpg.rf.1eedadfdf99c236addcf4cc2a6e9d3d1.jpg", - "response": "The picture shows a group of people in the foreground looking at a blueprint. They are all wearing hard hats. To the left of the group is a man in a white hat and black jacket. To the right of the group is a man in a black jacket and red hard hat. Behind the group is a large white building with a blue roof. The building has many windows and is surrounded by a fence. In the background on the right is a yellow billboard.", - "id": 26979 - }, - { - "image_path": "G:\\images\\combined\\000869_jpg.rf.eb7cc05013d7eef5480c87be18600fb5.jpg", - "response": "a group of people standing in front of a bus", - "id": 26980 - }, - { - "image_path": "G:\\images\\combined\\000870_jpg.rf.7ed312c412815714e8847d403433ed5d.jpg", - "response": "A man is working on a large piece of metal. He is wearing a blue jacket and a yellow hard hat. There are other men in the background, one is on the far left and another is in the middle. There is a table with tools on it in the foreground. On the right side of the room there is a chair. The walls are green and white and the ceiling is white. There are two windows on the right side of the room and one on the left. There is a large metal pipe on the right side of the room. The ground is made of dirt.", - "id": 26981 - }, - { - "image_path": "G:\\images\\combined\\000872_jpg.rf.a707541c8d5157f4b5bee055a2c57b53.jpg", - "response": "A woman wearing a yellow hard hat and work gloves is on a metal scaffolding. She is working on a ceiling that has insulation and pink fiberglass hanging from the beams.", - "id": 26982 - }, - { - "image_path": "G:\\images\\combined\\000873_jpg.rf.4ca72f6ad80e9761a8a122bb1f96b69d.jpg", - "response": "The photo shows two workers in a\u96a7\u9053. One worker is on the left, dressed in black clothes and a yellow hard hat. The other worker is in the middle, wearing a yellow top and a yellow hard hat. They are both wearing white gloves. The worker on the right is holding a large power drill and is drilling into a stone wall. The wall is brown and the drill bit is white. The workers are all focused on the task at hand.", - "id": 26983 - }, - { - "image_path": "G:\\images\\combined\\000874_jpg.rf.3fb9500c5c6fa2deb484aee1b2cda0e9.jpg", - "response": "A group of men standing around a construction site", - "id": 26984 - }, - { - "image_path": "G:\\images\\combined\\000876_jpg.rf.e5423ba9bf46620e4153023553b654ca.jpg", - "response": "A group of people in hard hats and orange coveralls are working on a pipe.", - "id": 26985 - }, - { - "image_path": "G:\\images\\combined\\000878_jpg.rf.2dd68e702357ca91dc9a33c62d309798.jpg", - "response": "In the image there is a person wearing a white suit and a yellow helmet, who is sitting on a red chair and is working with a hot steel production line. The hot steel is being poured from a machine and some of it is falling onto a grate. The whole scene is taking place in a factory.", - "id": 26986 - }, - { - "image_path": "G:\\images\\combined\\000879_jpg.rf.e1c31223d6836d68bdec2c9c37fa27fa.jpg", - "response": "A group of six people standing in a construction site wearing hard hats.", - "id": 26987 - }, - { - "image_path": "G:\\images\\combined\\000880_jpg.rf.81e7d24ee46492562247c98f8426bc82.jpg", - "response": "The image shows a rescue scene where a man is being carried on a stretcher by firefighters through a hole in the earth. The hole is filled with grey mud and there are several other people in the scene, some of them in protective gear. The man being carried appears to be covered in dirt and there is a bottle nearby. The background shows a street with a few people standing around.", - "id": 26988 - }, - { - "image_path": "G:\\images\\combined\\000881_jpg.rf.f2488dd75edd5094eb14121533e6ead9.jpg", - "response": "a group of men standing around each other", - "id": 26989 - }, - { - "image_path": "G:\\images\\combined\\000882_jpg.rf.209a1dbe8b82d5282f64f118dfd4d00b.jpg", - "response": "A group of people working on a construction site.", - "id": 26990 - }, - { - "image_path": "G:\\images\\combined\\000883_jpg.rf.7327af5cc76675bbf17fa31ad1274a74.jpg", - "response": "A woman in a yellow hard hat and safety vest looking at a tablet.", - "id": 26991 - }, - { - "image_path": "G:\\images\\combined\\000884_jpg.rf.36d303358ef3624b9145f3815e59ec0c.jpg", - "response": "A man standing in front of a building.", - "id": 26992 - }, - { - "image_path": "G:\\images\\combined\\000885_jpg.rf.bf69106e3518c323c1d66e583f23f055.jpg", - "response": "A construction site with multiple workers wearing hard hats. There are two yellow machines behind the workers. The sky is grey and there are no clouds. The buildings in the background have a lot of windows.", - "id": 26993 - }, - { - "image_path": "G:\\images\\combined\\0008860dad1f9510.jpg", - "response": "A DVD case for the movie Shaun of the Dead.", - "id": 26994 - }, - { - "image_path": "G:\\images\\combined\\000886_jpg.rf.35180c35033e464bfcd77028d712e480.jpg", - "response": "In the image there is a group of people standing together. They are all wearing orange vests and some are wearing hard hats. The man in the middle is clapping his hands and smiling. To the left of the man in the middle, there is a man with black hair and a red tie. To the right of the man in the middle, there is a man wearing a red hard hat.", - "id": 26995 - }, - { - "image_path": "G:\\images\\combined\\000887_jpg.rf.6284efc40762f9951f821a5cbf15d59f.jpg", - "response": "A group of people wearing hard hats are sitting around a table.", - "id": 26996 - }, - { - "image_path": "G:\\images\\combined\\000888_jpg.rf.12821308ab6041bcd234d23e9bd7ce83.jpg", - "response": "The image shows a worker in a safety orange jumpsuit and hard hat standing on the top of a utility pole, fixing wires. The pole is grey and has many electrical components attached to it. The worker is holding onto the wires with both hands and appears to be focused on his task. The sky is overcast and there are no other people or objects visible in the image.", - "id": 26997 - }, - { - "image_path": "G:\\images\\combined\\000889_jpg.rf.d3a0b2ebc01e2d1570ae02459c91fea2.jpg", - "response": "The image shows a group of workers in orange jumpsuits and white hard hats standing on top of an electricity transformer. The workers are wrapped in what looks like bubble wrap or plastic wrap. They are standing on a roof and there are power lines and a tall mountain in the background.", - "id": 26998 - }, - { - "image_path": "G:\\images\\combined\\000890_jpg.rf.ee6c2f81ca2bca3428be0ddc9b2d613b.jpg", - "response": "In the image, a group of workers is working on a railway line at night. They are wearing orange vests and safety helmets. Some of them are using electric tools to work on the tracks. The tracks are made of steel and are located in a field. The workers are spread out across the field, with some standing closer to the tracks and some further away. In the background, there is a train.", - "id": 26999 - }, - { - "image_path": "G:\\images\\combined\\000891_jpg.rf.f63c89f4d91b83948b3e548edc8d3cef.jpg", - "response": "The image shows a group of five men standing next to each other, wearing hard hats. They are all dressed in dark-colored clothes, and some of them have beards. The man on the far left is wearing a red hard hat, while the man in the middle, who is wearing a red hard hat and glasses, has his hands clasped together. The man second from the left is wearing a white hard hat. The man second from the right, who is wearing a yellow hard hat, is talking to the man on the far right, who is also wearing a yellow hard hat. They are both looking to the right.", - "id": 27000 - }, - { - "image_path": "G:\\images\\combined\\000895_jpg.rf.e3efd3ad48f98cc42ad196cea7e91ab6.jpg", - "response": "A group of men working on a construction site.", - "id": 27001 - }, - { - "image_path": "G:\\images\\combined\\000896_jpg.rf.34b93c4400460772e7134c39f975529a.jpg", - "response": "A worker is using a tool to stir the hot glowing metal in the factory.", - "id": 27002 - }, - { - "image_path": "G:\\images\\combined\\000897_jpg.rf.d3ebb149822ad9e9827c95e6ce6c048c.jpg", - "response": "A group of people sitting around a table.", - "id": 27003 - }, - { - "image_path": "G:\\images\\combined\\000898_jpg.rf.92917f9a26e6ab767a083c1cc418e910.jpg", - "response": "The image shows a group of men standing in a circle, wearing hard hats and business clothes. They are all looking in the same direction. In the background, there is a mountain and a red banner with yellow writing on it.", - "id": 27004 - }, - { - "image_path": "G:\\images\\combined\\000899_jpg.rf.f0e50017b10e1dd48d35ccacac98166e.jpg", - "response": "a group of people walking across a parking lot", - "id": 27005 - }, - { - "image_path": "G:\\images\\combined\\000900_jpg.rf.722fc2ee4d555aa3484e788f9faa9eda.jpg", - "response": "A group of\u5efa\u7b51\u5de5\u4eba(639,395),(759,829)(498,371),(592,846)(329,538),(424,727)(430,573),(516,817) are working on a building", - "id": 27006 - }, - { - "image_path": "G:\\images\\combined\\000901_jpg.rf.a32346bdece1b5139dd261cd36b75ef4.jpg", - "response": "The image shows two workers in blue helmets and white waterproof overalls standing in ankle-deep water. They are using long handled tools to work on an object in the water.", - "id": 27007 - }, - { - "image_path": "G:\\images\\combined\\000902_jpg.rf.357091b94aa689b65ff9b8033f4d00d6.jpg", - "response": "A group of men in blue uniforms and red helmets are working on power lines. They are standing on a roof and have tools in their hands. There are many power poles and wires in the scene.", - "id": 27008 - }, - { - "image_path": "G:\\images\\combined\\000903_jpg.rf.32b7029ca750e100b229737c9f672f28.jpg", - "response": "A construction worker wearing a blue sweatshirt and a orange hard hat.", - "id": 27009 - }, - { - "image_path": "G:\\images\\combined\\000904_jpg.rf.0abcd5e0112a02f87612bc631be98081.jpg", - "response": "A group of people wearing hard hats standing in front of a construction site.", - "id": 27010 - }, - { - "image_path": "G:\\images\\combined\\000905_jpg.rf.fe0f12347c576d6765e448cb05d1408b.jpg", - "response": " Two workers(581,613),(828,997)(602,441),(761,700) in orange protective clothing(603,465),(760,697)(582,671),(827,997) walking up a ladder(536,372),(808,996)", - "id": 27011 - }, - { - "image_path": "G:\\images\\combined\\000906_jpg.rf.280157aeb2eeaa416339844b7811f699.jpg", - "response": "A man wearing a green shirt and a red hard hat stands in front of a red train on train tracks.", - "id": 27012 - }, - { - "image_path": "G:\\images\\combined\\000907_jpg.rf.3f1ff92ce7d442557a5a47ae19b8c823.jpg", - "response": "An employee of a power company works on a power transmission line in Handan, Hebei province, China, 20 May 2016. China's State Grid Corporation, the country's state-owned power grid operator, has been ranked the world's largest company by revenue for the first time, according to the latest Fortune Global 500 list. The corporation's revenue for 2015 was 1.18 trillion yuan (approximately 179.3 billion U.S. dollars), according to the list. The company's profit for 2015 was 221.1 billion yuan. The ranking list is based on the revenue of the top 500 companies in the world. The list was released on 11 May 2016. Photo: IC", - "id": 27013 - }, - { - "image_path": "G:\\images\\combined\\000908_jpg.rf.2272ef4b9995a146787480abc018a0ae.jpg", - "response": "In the image there are two workers in red uniforms and red helmets, standing on a platform in the mud. They are working near a large piece of drilling equipment. There are two other pieces of drilling equipment visible in the background, one on the left and one on the right. There is also a blue sky and some power lines in the background.", - "id": 27014 - }, - { - "image_path": "G:\\images\\combined\\000909_jpg.rf.cbc29eab6ef12fc3cfae94cee989d54e.jpg", - "response": "A construction worker is using a hose to pump concrete onto a grid of rebar.", - "id": 27015 - }, - { - "image_path": "G:\\images\\combined\\000910_jpg.rf.ad0cea2d2609609dca44d13d2806b1d5.jpg", - "response": "A man wearing a yellow safety vest and a hard hat stands in front of a large cargo ship with a lot of cargo containers on it. The man has his arms crossed and is looking at the camera.", - "id": 27016 - }, - { - "image_path": "G:\\images\\combined\\000912_jpg.rf.22e222da4e245c0e10721f2e7efdc28d.jpg", - "response": "A construction worker in a red shirt and yellow hard hat is using a trowel to apply a grey substance to the corner of a pit in the ground. The pit is filled with rubble and the worker is standing on the edge of the pit.", - "id": 27017 - }, - { - "image_path": "G:\\images\\combined\\000913_jpg.rf.fdd27145d5d6957785669793b6e66972.jpg", - "response": "A man in a hard hat walking up a flight of stairs in a darkened room.", - "id": 27018 - }, - { - "image_path": "G:\\images\\combined\\000914_jpg.rf.eeb78ebc55bcf80acda2176fb18f5c07.jpg", - "response": "A group of three men standing on a construction site.", - "id": 27019 - }, - { - "image_path": "G:\\images\\combined\\000915_jpg.rf.20b410a90a75a1089ef7ca306c37e20c.jpg", - "response": "A group of four workers in orange jumpsuits and hard hats are working on a yellow machine. They are all holding various tools and the ground is covered in a green tarp.", - "id": 27020 - }, - { - "image_path": "G:\\images\\combined\\000917_jpg.rf.85ea171e577c86f97cc1d9eebe532430.jpg", - "response": "A man wearing a yellow safety helmet and a yellow and gray vest.", - "id": 27021 - }, - { - "image_path": "G:\\images\\combined\\000919_jpg.rf.b91f9d1054d1dd7eb164bfeb0aedd788.jpg", - "response": "A worker fixing an electricity meter on a wall.", - "id": 27022 - }, - { - "image_path": "G:\\images\\combined\\000920_jpg.rf.4f961b2a2a698794590b58be4e7e9849.jpg", - "response": "In the image there is a large truck parked on a construction site. The truck is a white and grey concrete mixer. It is parked on a dirt patch and is surrounded by rocks and debris. There are two people standing next to the truck. One person is on the left and is wearing a grey top and grey pants. They are wearing a red helmet and white shoes. The other person is on the right and is wearing a white shirt and grey pants. They are wearing a yellow helmet. In front of the truck is a large rock that has been cut in half. The left half of the rock is still attached to the truck.", - "id": 27023 - }, - { - "image_path": "G:\\images\\combined\\000921_jpg.rf.f6bfcf01953678bcae344f30ab5de90c.jpg", - "response": " Two construction workers(208,495),(514,858)(458,438),(703,837) in a hole(149,227),(955,862)", - "id": 27024 - }, - { - "image_path": "G:\\images\\combined\\000922_jpg.rf.e9bd8292f913a5691612289dad3c8d02.jpg", - "response": "A group of people standing around each other.", - "id": 27025 - }, - { - "image_path": "G:\\images\\combined\\000924_jpg.rf.a828e07e7f72b1bd8514a0dfc9d10d57.jpg", - "response": "Kim Jong Un (center) tours the Pyongyang Bag Factory with Pak Toon Guk (right) and other officials (Photo: KCNA).", - "id": 27026 - }, - { - "image_path": "G:\\images\\combined\\000926_jpg.rf.692c0bbb2568a1f233128576b949cca6.jpg", - "response": "The image shows Kim Jong-un, the young and relatively unknown heir to North Korea's leadership, inspecting the construction site of a building in North Korea. He is dressed in a black suit and is smiling. To his right, there is a person in a grey shirt and black pants. To his left, there is another person in a black shirt and black pants. Above Kim Jong-un, there is a building under construction with a grey roof and yellow walls. To his right, there is a blue and yellow sign that says \"China Daily\".", - "id": 27027 - }, - { - "image_path": "G:\\images\\combined\\000927_jpg.rf.320898fd87ddaae78c5d8af97177e5f9.jpg", - "response": "A construction site with workers wearing yellow helmets.", - "id": 27028 - }, - { - "image_path": "G:\\images\\combined\\000929_jpg.rf.01855c1fdc45cbfbaa2c77be6554f988.jpg", - "response": "In the image two electrical workers are working on a electrical box. They are both wearing blue hard hats. One of the workers is on the phone and is checking the settings on the box. They are both in front of a large\u53d8\u7535\u7ad9.", - "id": 27029 - }, - { - "image_path": "G:\\images\\combined\\000930_jpg.rf.91d94a594bf040f0ac8cf900c3c924bc.jpg", - "response": "The image shows a large construction site with a number of construction workers scattered around the area. A large yellow crane is in the background, lifting a piece of concrete. In the foreground, a man in a green shirt and orange helmet is walking towards the camera, while another man in a similar outfit is walking to the right. A third man in an orange vest is walking towards the left. A fourth man in an orange vest is walking towards the right, and a fifth man in an orange vest is walking towards the left. In the background, a few other people are scattered around the site.", - "id": 27030 - }, - { - "image_path": "G:\\images\\combined\\000931_jpg.rf.06eeabb2abb178b67d34a2029e12f7dd.jpg", - "response": "a group of men standing in front of a van", - "id": 27031 - }, - { - "image_path": "G:\\images\\combined\\000932_jpg.rf.e468a5bfb73afb6a3e545a825c90d51a.jpg", - "response": "The image shows two workers standing next to a yellow and black van. Both are wearing blue jumpsuits and yellow hard hats. One worker is holding a yellow fire hose in his left hand while the other worker is putting on a yellow jacket.", - "id": 27032 - }, - { - "image_path": "G:\\images\\combined\\000934_jpg.rf.98be2538ff5d37f4247937472cbfefa0.jpg", - "response": "a group of people standing around each other", - "id": 27033 - }, - { - "image_path": "G:\\images\\combined\\000936_jpg.rf.3df8ae675064d18240227ca53836a442.jpg", - "response": "The image shows a group of five men standing in a factory. They are all wearing hard hats and are looking at a piece of paper. The paper is held by a man in the center of the group, who is wearing a red hard hat. The men are standing in front of a large piece of machinery, which fills the background of the image. The machinery has a brown color and is made up of many metal parts.", - "id": 27034 - }, - { - "image_path": "G:\\images\\combined\\000938_jpg.rf.baa74d89c7a47e0a5d613b6c007fef67.jpg", - "response": "a group of men walking down a street", - "id": 27035 - }, - { - "image_path": "G:\\images\\combined\\000939_jpg.rf.8936954756617faf650a038d1d68814d.jpg", - "response": "A miner in a hardhat crouches next to a large metal object.", - "id": 27036 - }, - { - "image_path": "G:\\images\\combined\\000940_jpg.rf.2fa70861c60f322c93b1889d59f31b27.jpg", - "response": "Men in hard hats working on a construction site.", - "id": 27037 - }, - { - "image_path": "G:\\images\\combined\\000941_jpg.rf.084aedbb33e8879311f05516cbff048f.jpg", - "response": "The image shows a large tunnel that is still under construction. The tunnel is dark and has a curved roof. In the foreground, two workers are standing on the right side of the tunnel, wearing yellow helmets and orange vests. The one on the left is holding a bottle of something and a white towel, while the one on the right is drinking from a bottle as well. In the background, another worker is standing further inside the tunnel, wearing a white helmet and a blue vest. There are wooden planks on the left side of the tunnel, and a large pipe on the right side.", - "id": 27038 - }, - { - "image_path": "G:\\images\\combined\\000942_jpg.rf.e41aec0862768decdc084d87f0b90f88.jpg", - "response": "A man wearing a hard hat and holding rolled up blueprints, standing on a construction site.", - "id": 27039 - }, - { - "image_path": "G:\\images\\combined\\000943_jpg.rf.175ac235c10045d14ecc7a788a387b8b.jpg", - "response": "A man wearing a blue work suit and a red hard hat is standing in front of a pile of gravel with a yellow construction vehicle behind him.", - "id": 27040 - }, - { - "image_path": "G:\\images\\combined\\000944_jpg.rf.207ac081c773b970b10132afd023f066.jpg", - "response": "a group of people standing around a cement block", - "id": 27041 - }, - { - "image_path": "G:\\images\\combined\\000945_jpg.rf.68ca637662d5fc59efd8368a5703a70d.jpg", - "response": "The image shows two workers in safety vests and hard hats. They are standing in a wooded area, with one of them holding a large metal pole. The pole is leaning against a tree, and the worker is using a handsaw to cut it. Another worker is standing further back, and there is a pile of wood in the background. The workers appear to be focused on their task, and the lighting in the image is bright.", - "id": 27042 - }, - { - "image_path": "G:\\images\\combined\\000946_jpg.rf.e57e4b9290df384dec5da1e28a98ff0e.jpg", - "response": "A man wearing a yellow hard hat is looking at his cell phone.", - "id": 27043 - }, - { - "image_path": "G:\\images\\combined\\000948_jpg.rf.07eb163d881bf3c32b326b82783fbb74.jpg", - "response": "The image shows two workers in blue uniforms and white hard hats on a power pole. They are both holding on to the pole with their left hands and are in the process of installing or fixing something on the pole. The sky is blue and there are a few clouds in the sky. There are also some trees visible in the background.", - "id": 27044 - }, - { - "image_path": "G:\\images\\combined\\000950_jpg.rf.bf9f89d5b2b0ccc1094b762227a418a7.jpg", - "response": "A group of six people stand on a construction site. There are two men on the left wearing white t-shirts and red hats. Another man on the left is wearing a green uniform. The man in the center is wearing a white shirt and a red hat. To the right of him, there are two men. One is wearing a green uniform and the other is wearing a white shirt and glasses. In the background, there is a crane working on a building.", - "id": 27045 - }, - { - "image_path": "G:\\images\\combined\\000951_jpg.rf.4060d0a290a4d7193936ae271658462c.jpg", - "response": "In the image there is a woman wearing a pink and white shirt and a red helmet. She is standing next to a yellow construction vehicle and is holding a shovel. She is also wearing a mask. Behind her, there is a man wearing a yellow helmet and a red shirt. He is operating an earth mover. To the left of the image, there is a large rock.", - "id": 27046 - }, - { - "image_path": "G:\\images\\combined\\000952_jpg.rf.8e10c84ced07e124b221a32c54fa8e8d.jpg", - "response": "The image shows three construction workers on a building site. They are working on a rooftop construction site that has a stunning view of the city in the background. The construction workers are wearing safety gear, including hard hats and safety harnesses. One of the workers is operating a red and black crane, which is lifting a large piece of rebar. Another worker is holding a large tool, and the third worker is bending over to work on something. The construction site is made up of steel rebar, and there are several large steel beams on the site.", - "id": 27047 - }, - { - "image_path": "G:\\images\\combined\\000954_jpg.rf.c9d947f6cb9bd7b09356a0fe68043123.jpg", - "response": "In the image there are two yellow cranes operating at a construction site. One is on the left side of the image and the other one is on the right side. There are two construction workers wearing yellow helmets and work clothes. One of them is standing on the stairs and the other one is standing between the two cranes. There is a train on the right side of the image. On the left side of the image there is a machine with a blue cabin and a white base. Underneath the machine there is a yellow ladder.", - "id": 27048 - }, - { - "image_path": "G:\\images\\combined\\000955_jpg.rf.25792e6e6b264bf3e92f8fa516cfe952.jpg", - "response": "A man in a yellow hard hat is using a jack hammer to break up concrete. Another man is in the background. They are both wearing yellow hard hats. The man using the jack hammer is wearing a red shirt and grey pants. The other man is wearing a white shirt and grey pants. They are both working in a construction site.", - "id": 27049 - }, - { - "image_path": "G:\\images\\combined\\000956_jpg.rf.21027314044251196149280b153024c6.jpg", - "response": "a group of men standing in front of a wall with papers on it", - "id": 27050 - }, - { - "image_path": "G:\\images\\combined\\000957f9cbd14b35.jpg", - "response": "A keyboard is behind two Toblerone chocolate bars.", - "id": 27051 - }, - { - "image_path": "G:\\images\\combined\\000958_jpg.rf.a1603077755d7e89f09bf13f456e2dfc.jpg", - "response": "A picture of two men working on power lines.", - "id": 27052 - }, - { - "image_path": "G:\\images\\combined\\000960_jpg.rf.36d3eb33f9d0f441da7dac3654d73e02.jpg", - "response": "The image shows a construction worker in a\u6a58\u9ec4\u8272\u7684\u5de5\u4f5c\u670d and red helmet standing in a construction zone in a city. The worker is in the foreground and is smiling at the camera. In the background, there is a residential building on the left and a tower on the right. There is a bicycle parked in the middle ground and a pile of rubble in the foreground. There is a yellow box on the left side of the image and a large construction vehicle on the right side of the image.", - "id": 27053 - }, - { - "image_path": "G:\\images\\combined\\000962_jpg.rf.682e82cb263b9ae7b475f10d0d3173b3.jpg", - "response": "A worker in an orange uniform and red helmet is facing two cranes. The worker has a backpack on and is wearing a safety harness. The sky is blue with clouds.", - "id": 27054 - }, - { - "image_path": "G:\\images\\combined\\000963_jpg.rf.6b9bf5f0230c6b817c4cd1ae4e9a4e90.jpg", - "response": "The image shows two workers in blue uniforms and safety gear working on an electrical transformer. They are standing on a roof and appear to be connecting something to the transformer. The roof has a sign that says \"High voltage danger,\u7981\u6b62\u6500\u767b\". There are also two other people in the background, one of them is holding a camera. There is a truck in the background with a sign that says \"no parking\" on the door.", - "id": 27055 - }, - { - "image_path": "G:\\images\\combined\\000964_jpg.rf.06e9d12ef6d4dfc5b1dee5fd59fb6fc4.jpg", - "response": "A man and a woman wearing hard hats and work clothes are working with metal. They are standing in front of a table with metal rods on it and a building behind them. There are several other people in the background, some of them are wearing hard hats as well. There are also several other people working in the area, some of them are carrying items.", - "id": 27056 - }, - { - "image_path": "G:\\images\\combined\\000965_jpg.rf.0bbe27f43b85f379b7b1b89733a90238.jpg", - "response": "A group of men in suits and hard hats are standing in a construction site.", - "id": 27057 - }, - { - "image_path": "G:\\images\\combined\\000966_jpg.rf.1bb939606221c7252762dd76d9701a24.jpg", - "response": "A group of people in red suits and yellow helmets are walking up a hill. They are walking on a steep hill and some of them are holding onto a wire fence. The fence is made of metal and it's attached to the hill. The hill is covered with green plants and there are some rocks on the ground. The sky is blue and there are no clouds in the sky.", - "id": 27058 - }, - { - "image_path": "G:\\images\\combined\\000967_jpg.rf.87385de8e9ae694b51a3dff0d5f22322.jpg", - "response": "A man in a grey jacket and yellow hard hat points to a red and grey box.", - "id": 27059 - }, - { - "image_path": "G:\\images\\combined\\000968_jpg.rf.17b51aa0819db80c1eec6e429dfa9a5c.jpg", - "response": "A group of three men working on a construction site.", - "id": 27060 - }, - { - "image_path": "G:\\images\\combined\\000971_jpg.rf.45ab6f3813b905853b1879f6b738603a.jpg", - "response": "A group of workers are working on a train track.", - "id": 27061 - }, - { - "image_path": "G:\\images\\combined\\000973_jpg.rf.ccfba3a4cd9701618c97baab74c10425.jpg", - "response": "A group of five men wearing yellow hard hats are working on a construction site. They are all wearing black shirts and pants. They are working on a large concrete building that is white on the outside and grey on the inside. They are wearing yellow hard hats and some are wearing black shoes. There are orange ties\u7ed1\u5728\u94a2\u7b4b\u4e0a, and a blue sky above.", - "id": 27062 - }, - { - "image_path": "G:\\images\\combined\\000974_jpg.rf.53f04e2a88e15c56c4a213958b853e32.jpg", - "response": "A group of people walking up a snow covered hill.", - "id": 27063 - }, - { - "image_path": "G:\\images\\combined\\000975_jpg.rf.d394e01217d59daf994cd38e50505e98.jpg", - "response": "A group of five men are working on a structure made of bamboo. They are all wearing blue shirts and safety helmets. One man is standing on a ladder, another is climbing down a ladder, one is standing on the structure, and two others are working on the bamboo scaffolding.", - "id": 27064 - }, - { - "image_path": "G:\\images\\combined\\000976_jpg.rf.7eb17dbc982c02556edfa60fb3ddb346.jpg", - "response": "The image shows a group of workers standing around a manhole cover on a sidewalk. They appear to be fixing or maintaining something. In the background, there is a red car and a large building with a sphere on top. The workers are wearing blue uniforms and orange helmets.", - "id": 27065 - }, - { - "image_path": "G:\\images\\combined\\000977_jpg.rf.3ef5d0db9f394c9c2572d059f4046f93.jpg", - "response": "A worker is sitting on the front of a yellow crane. The worker is wearing a green uniform and a yellow hard hat. They are pulling on a black strap with their right hand while their left foot is propped up on a yellow pipe. The worker is sitting on the bottom of the crane, which is white in color. There are two people in the background, one is wearing a green shirt and the other is wearing a white shirt. They are both standing and looking at the crane. The background is a light grey color.", - "id": 27066 - }, - { - "image_path": "G:\\images\\combined\\000978_jpg.rf.da32e8ca980dcfc90393cac7e35eda3e.jpg", - "response": "A group of rescue workers in a mine shaft.", - "id": 27067 - }, - { - "image_path": "G:\\images\\combined\\000979_jpg.rf.8919db6dcd683b41ba12cd3c69b8796b.jpg", - "response": "A group of men standing in front of a building.", - "id": 27068 - }, - { - "image_path": "G:\\images\\combined\\000980_jpg.rf.e5f3dd5658d4f34746ea3f52a3f318b0.jpg", - "response": "The image shows two workers in grey uniforms and blue helmets standing under a large orange bridge crane. The crane has a blue metal structure with several wires and a box attached to it. The workers are standing on a concrete surface and one of them is holding a metal rod. They are looking upwards and appear to be focused on the task at hand. The sky is clear and bright in the background.", - "id": 27069 - }, - { - "image_path": "G:\\images\\combined\\000981_jpg.rf.a762465a055f6dc218a5541f102d902c.jpg", - "response": "A group of people stand in front of a wooden structure that is under construction. There is a man in a white shirt and khaki pants standing on the right side of the group, and another man in a white shirt kneeling down in the middle. A woman with blonde hair is on the left side of the group, and a man with dark hair is standing behind the woman. In the background, there is a roofless house under construction with wooden beams and a blue sky with clouds.", - "id": 27070 - }, - { - "image_path": "G:\\images\\combined\\000982_jpg.rf.f0ac4c5c06e5742c3f7900f57b757df7.jpg", - "response": "A group of people standing around a construction site.", - "id": 27071 - }, - { - "image_path": "G:\\images\\combined\\000983_jpg.rf.bc98a3163fd3ea7f2996d88fee581f07.jpg", - "response": "A man is working on a wooden structure with a crane in the background.", - "id": 27072 - }, - { - "image_path": "G:\\images\\combined\\000984_jpg.rf.e9abfba6dc63445c6ce3d3150a21ce6c.jpg", - "response": "Two men(406,234),(579,910)(612,203),(803,911) wearing orange hard hats(658,201),(724,263)(469,234),(531,297) and orange vests(436,331),(548,543)(639,306),(763,541) standing in a tunnel", - "id": 27073 - }, - { - "image_path": "G:\\images\\combined\\000985_jpg.rf.33cdab26fd831f3e52e12821b79839d1.jpg", - "response": "A man in an orange vest and red helmet is working on a large pipe. He is standing in a hole in the ground and is holding a tool. The pipe is white and is located in a tunnel-like structure. The man is also holding a white pipe.", - "id": 27074 - }, - { - "image_path": "G:\\images\\combined\\000986_jpg.rf.c6b72535c66a6ed6dd465f2ec44e819d.jpg", - "response": "A group of rescue workers stand in front of a large hole in the ground. The hole is surrounded by a metal scaffolding frame. The workers are wearing orange uniforms and hard hats. In the hole, which is covered with a tarp, a yellow and black bulldozer can be seen.", - "id": 27075 - }, - { - "image_path": "G:\\images\\combined\\000987_jpg.rf.2d638774adccc22291ffb5b38c4f8b5b.jpg", - "response": "A group of three men standing on a power box wearing hard hats and overhauls.", - "id": 27076 - }, - { - "image_path": "G:\\images\\combined\\000988_jpg.rf.f42eb030467ae5c724160d2dff259b5e.jpg", - "response": "In the image there are three people working on electricity poles in a rural area. They are wearing safety harnesses and climbing equipment. The background shows a mountain range and a blue sky. In the foreground there is a cornfield.", - "id": 27077 - }, - { - "image_path": "G:\\images\\combined\\000989_jpg.rf.f2d9118d51f9e391396baf83f4077f99.jpg", - "response": "The image shows a young woman on the right, dressed in a yellow and orange safety vest and a white helmet. She is smiling at the camera. To the left of her, a middle-aged man in a red safety vest and an orange helmet looks at the camera. They are both in front of a cave.", - "id": 27078 - }, - { - "image_path": "G:\\images\\combined\\000990_jpg.rf.00a1a4c8d38349fc62bc05bff60599c4.jpg", - "response": "A group of three men standing in front of a construction site.", - "id": 27079 - }, - { - "image_path": "G:\\images\\combined\\000992_jpg.rf.30e6c4a5d30dbacd5e37b0ef5f93bd93.jpg", - "response": "A group of men standing next to each other.", - "id": 27080 - }, - { - "image_path": "G:\\images\\combined\\000993_jpg.rf.27c17e8e96a6ccdcaa1b3d0d486e1ef8.jpg", - "response": "A group of people wearing hard hats and orange vests.", - "id": 27081 - }, - { - "image_path": "G:\\images\\combined\\000994_jpg.rf.d5aa2893b72ce6db0cd080dcc13066db.jpg", - "response": "A group of three men working on a construction site.", - "id": 27082 - }, - { - "image_path": "G:\\images\\combined\\000995_jpg.rf.188b5c70fd4de185aad6ada6f7491698.jpg", - "response": "a man(353,435),(863,996) standing in front of a building", - "id": 27083 - }, - { - "image_path": "G:\\images\\combined\\000997_jpg.rf.143a73dd215bac46f823509efcf0676c.jpg", - "response": "A group of workers in orange jumpsuits are working on a construction site by a river. They are building a wall or a structure out of concrete blocks. There are three workers in the foreground and one in the background. There are also three cranes operating in the background. The sky is grey and overcast.", - "id": 27084 - }, - { - "image_path": "G:\\images\\combined\\000998_jpg.rf.2e6a791f6eaa374a11fa853023d77bc0.jpg", - "response": "A construction worker wearing a blue and red jacket and a yellow hard hat is working on a large grid of steel. The worker is crouching down and appears to be using a tool to work on the grid. The grid is made up of many thin pieces of steel and the worker is focused on a particular area. The worker is also wearing a grey hat and grey gloves.", - "id": 27085 - }, - { - "image_path": "G:\\images\\combined\\000999_jpg.rf.87f5501a3204659d6fd81c36f5476499.jpg", - "response": "In the image there is a worker dressed in red and wearing a hard hat. They are working on a large red valve that is part of a yellow and blue industrial machine. The worker are in what seems to be a factory.", - "id": 27086 - }, - { - "image_path": "G:\\images\\combined\\0009S6815V3PEU1N-C123-F4_jpg.rf.5ffe7c095c2442621e91c3490ca06ec1.jpg", - "response": "A family wearing face masks(659,246),(799,413)(362,455),(513,629)(169,312),(313,438)(1,415),(129,560) at an airport.", - "id": 27087 - }, - { - "image_path": "G:\\images\\combined\\0009S6815V3PEU1N-C123-F4_jpg.rf.86a633f2f33299a243620c375f648ae0.jpg", - "response": "A group of people wearing face masks are lined up at a counter. Some of them are checking their phones. One girl has a pink stuffed animal.", - "id": 27088 - }, - { - "image_path": "G:\\images\\combined\\0009S6815V3PEU1N-C123-F4_jpg.rf.db1f932df2e514afbfdb627ed663fcaa.jpg", - "response": "A group of people wearing face masks are lined up at a counter. Some of the people are children. One girl has a teddy bear attached to her stroller. One girl is checking her phone.", - "id": 27089 - }, - { - "image_path": "G:\\images\\combined\\000a1a700c0c7950.jpg", - "response": "A black and white Nokia phone with the word Caledos Runner 2.5 at the bottom. The phone is displaying a running app with a white background. The app has a black navigation bar at the bottom with the back, home, settings and search buttons. Above the navigation bar is a white field with black text. The text includes the word details, duration, distance, calories, heart rate and calories burned. Below the white field is a black field with a white clock, a heart, a backpack and two black edit buttons.", - "id": 27090 - }, - { - "image_path": "G:\\images\\combined\\000a533ef1b9cacf.jpg", - "response": "The cover of the book Animal Farm by George Orwell. The title is in white with red and black letters. The background is black and white and has an image of a spider web.", - "id": 27091 - }, - { - "image_path": "G:\\images\\combined\\000adfe5b817011c.jpg", - "response": "A man sitting on a bench outside of a red brick building.", - "id": 27092 - }, - { - "image_path": "G:\\images\\combined\\000aecd78b230135.jpg", - "response": "A man and woman sitting on a couch with another man standing next to them.", - "id": 27093 - }, - { - "image_path": "G:\\images\\combined\\000b7b75-1600_jpg.rf.88db94d6e9b11c6ee80032b23e820cec.jpg", - "response": "A group of people wearing face masks to protect themselves from air pollution.", - "id": 27094 - }, - { - "image_path": "G:\\images\\combined\\000b7b75-1600_jpg.rf.c11e810fa378ac8b373226d8bfd6a7b8.jpg", - "response": "a group of people wearing face masks(378,293),(453,387)(768,383),(859,507)(498,295),(570,385)(320,179),(371,257)(2,308),(63,397)(133,333),(229,463)", - "id": 27095 - }, - { - "image_path": "G:\\images\\combined\\000b9d6c0f7d794d.jpg", - "response": "A collection of books about famous artists such as Monet, Degas, Renoir, Van Gogh, and Leonardo da Vinci.", - "id": 27096 - }, - { - "image_path": "G:\\images\\combined\\000bb81adefe7332.jpg", - "response": "A glass display case with a bakery sign above it.", - "id": 27097 - }, - { - "image_path": "G:\\images\\combined\\000bd0b4fa27644c.jpg", - "response": "In the image, there is a large white and red taxi cab driving down the street. The taxi cab has a green license plate. There is a crowd of people walking on the sidewalk next to the street. A green car is driving on the street as well. There are traffic lights on poles above the street. The sky is blue and there are no clouds visible.", - "id": 27098 - }, - { - "image_path": "G:\\images\\combined\\000c91f4578d37a6.jpg", - "response": "A man and woman holding a baby.", - "id": 27099 - }, - { - "image_path": "G:\\images\\combined\\000ca4a1855318b1.jpg", - "response": "A table with a burlap table cloth and three white plates with chocolate on them. There is a package of chocolate bars on the table as well.", - "id": 27100 - }, - { - "image_path": "G:\\images\\combined\\000d96ad76e6b834.jpg", - "response": "a piece of paper that says explain everything", - "id": 27101 - }, - { - "image_path": "G:\\images\\combined\\000dd852-116Booooox_jpg.rf.96400488a34d0ad0da800fbc446d0eac.jpg", - "response": "A cardboard box on the floor with a sticker on it.", - "id": 27102 - }, - { - "image_path": "G:\\images\\combined\\000e3e4f5c6c454d.jpg", - "response": "An opened laptop with the battery removed, showing the internal components.", - "id": 27103 - }, - { - "image_path": "G:\\images\\combined\\000e97147fa9e763.jpg", - "response": "A blue t-shirt with a rainbow on it.", - "id": 27104 - }, - { - "image_path": "G:\\images\\combined\\000ed967c71e566f.jpg", - "response": "The image features three people on a stage in front of a dark background. They are dressed in costumes and are holding hands. The person on the left is dressed like Ken from the Street Fighter video game and is wearing a red scarf. The person in the middle is wearing a blue costume and has long blonde hair. The person on the right is wearing a costume with a brown loincloth and has long black hair. They are all dressed in character.", - "id": 27105 - }, - { - "image_path": "G:\\images\\combined\\000f234939e98c68.jpg", - "response": "The image depicts a basketball game in progress with several players on the court. There are three players in the foreground, one on the left, another in the middle, and the third on the right. They are all wearing basketball uniforms and are positioned close to the camera.", - "id": 27106 - }, - { - "image_path": "G:\\images\\combined\\000f78a66fd29c49.jpg", - "response": "a close up of a phone screen with a button to enable notifications", - "id": 27107 - }, - { - "image_path": "G:\\images\\combined\\000fd38f35d0ad0c.jpg", - "response": "A man standing in front of a large screen giving a presentation.", - "id": 27108 - }, - { - "image_path": "G:\\images\\combined\\000_1OC3DT_jpg.rf.0059a54467e2bd0cb510a774b63ada58.jpg", - "response": "In the image, there is a group of people wearing face masks. They are sitting in an auditorium and are all holding cameras. The people are of different ages and are wearing a variety of clothing. Some of them are wearing suits, while others are in casual clothing. They are all focused on something and are wearing face masks to protect themselves from the COVID-19 pandemic.", - "id": 27109 - }, - { - "image_path": "G:\\images\\combined\\000_1OC3DT_jpg.rf.9cf95360eff2b0caa16780cba3e5d5f8.jpg", - "response": "In the image, there is a group of people wearing face masks. They are sitting in an auditorium and are holding cameras. Some of them are wearing ties and the chairs are grey in color. Among the people, some are holding cellphones and there are also some suitcases.", - "id": 27110 - }, - { - "image_path": "G:\\images\\combined\\000_1OC3DT_jpg.rf.c0535721d9eecb907421d74c9d32c162.jpg", - "response": "In the image, there is a group of people wearing face masks. They are sitting in an auditorium and are holding cameras. Some of them are wearing ties and the chairs are grey in color. There are also some suitcases in the room.", - "id": 27111 - }, - { - "image_path": "G:\\images\\combined\\000_1ov3n5_0_jpeg_jpg.rf.4625678311e432a02f01a2a63ce7a490.jpg", - "response": "A woman wearing a face mask and a protective suit carries a baby wrapped in a blanket at the airport.", - "id": 27112 - }, - { - "image_path": "G:\\images\\combined\\000_1ov3n5_0_jpeg_jpg.rf.5fe88de4cf5f2efdb8f80fa3379abc5c.jpg", - "response": "A woman wearing a face mask and a hairnet carries a baby wrapped in a blanket. She is wearing a blue protective suit and a face mask. She is also wearing a hairnet and has a handbag on her shoulder. She is at an airport.", - "id": 27113 - }, - { - "image_path": "G:\\images\\combined\\000_1ov3n5_0_jpeg_jpg.rf.c449ab1d575e04fbfadafa46675ff657.jpg", - "response": "A woman wearing a face mask and medical protective gear holds a baby wrapped in a blanket. She is also wearing a hairnet. She is standing in an airport.", - "id": 27114 - }, - { - "image_path": "G:\\images\\combined\\001000_jpg.rf.d9e146f86f0832586162e779e1923f46.jpg", - "response": "a man in a blue shirt and tan pants is hanging from a wire", - "id": 27115 - }, - { - "image_path": "G:\\images\\combined\\001003_jpg.rf.beba99b94c8e88cbe8ea5d2ff9fd0282.jpg", - "response": "The image shows two workers repairing a power pole. They are wearing yellow helmets and work clothes. One of them is hanging on the power pole with safety belt, while the other one is repairing the power transformer on the pole. The sky is blue and clear.", - "id": 27116 - }, - { - "image_path": "G:\\images\\combined\\001004_jpg.rf.ae0e6b6c4e080c81ff38e9c2fa18df14.jpg", - "response": "A construction worker in a yellow vest and blue hard hat points to something in the air while talking to a man in a white hard hat and yellow vest who is holding a set of plans. They are standing in front of a building under construction with scaffolding.", - "id": 27117 - }, - { - "image_path": "G:\\images\\combined\\001005_jpg.rf.f966879208a090a8bd1ce710eec5a8bc.jpg", - "response": "A group of men working on a power line.", - "id": 27118 - }, - { - "image_path": "G:\\images\\combined\\001006_jpg.rf.dbef18a1780602be7f052675fc5042c5.jpg", - "response": "The image shows two workers installing power cables in a snowy village. They are wearing grey and blue uniforms and blue hats. The workers are of Chinese ethnicity.", - "id": 27119 - }, - { - "image_path": "G:\\images\\combined\\001007_jpg.rf.c1b293d4429f72ac5b814de62bc3cc41.jpg", - "response": "A man in a red uniform and a red hard hat shoveling snow next to a blue truck.", - "id": 27120 - }, - { - "image_path": "G:\\images\\combined\\001008_jpg.rf.0d51f1b5790a70d6b7d1c609e2a26fbd.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing yellow hard hats and are holding papers. One of the men is holding a laptop. They are standing on a dirt mound with a large building under construction in the background. The building has a large archway and several cranes are visible in the distance. There are also a few other people scattered around the site, some of them are carrying items.", - "id": 27121 - }, - { - "image_path": "G:\\images\\combined\\001009_jpg.rf.a286b88defd930099b3919a1dcf1ffc5.jpg", - "response": "A group of construction workers wearing yellow vests and hard hats are working on a construction site.", - "id": 27122 - }, - { - "image_path": "G:\\images\\combined\\001010_jpg.rf.5f7f0d410424bf37fc4b3d2d223d3269.jpg", - "response": "A group of people standing next to a river with a bridge in the background.", - "id": 27123 - }, - { - "image_path": "G:\\images\\combined\\001011_jpg.rf.5ed85a5f5469b00f4b2cb3ae25e3f2ef.jpg", - "response": "a group of men in suits walking across a field", - "id": 27124 - }, - { - "image_path": "G:\\images\\combined\\001012_jpg.rf.154332bac3a4caf0d09abed338834a7a.jpg", - "response": "A man wearing a yellow hard hat and a yellow safety vest with his arms crossed in front of a white work truck.", - "id": 27125 - }, - { - "image_path": "G:\\images\\combined\\001013_jpg.rf.4c06edd5266c980a022c49c6844d6981.jpg", - "response": "A man standing next to a pile of rubble.", - "id": 27126 - }, - { - "image_path": "G:\\images\\combined\\001014_jpg.rf.4b9af00064825a1e668323ede7d882ec.jpg", - "response": "A construction site with a building being built.", - "id": 27127 - }, - { - "image_path": "G:\\images\\combined\\001015_jpg.rf.841b5db9a0b36b37c3ce76db7549f59d.jpg", - "response": "A worker in a hard hat and orange safety vest is using a flashlight to look inside a pipe. The pipe is made of metal and is either silver or has a silver-colored coating. The worker is kneeling down and appears to be focused on the task at hand. There are two other people in the background, one on the left and one on the right, but they are not actively involved in the task at hand.", - "id": 27128 - }, - { - "image_path": "G:\\images\\combined\\001016_jpg.rf.2236b1895bd16e2b667cc1b7cc13020c.jpg", - "response": "The image shows two workers in a room with a large amount of steel rebar laid out on the floor and some concrete walls. The workers are in the process of building a foundation for a new building. One worker is on the left, bending over to tie a\u675f of steel rebar, while the other worker is on the right, operating a piece of machinery that is cutting steel bars.", - "id": 27129 - }, - { - "image_path": "G:\\images\\combined\\001017_jpg.rf.67714155c7aa3c50876d36b06ea2c3ea.jpg", - "response": "A construction worker is using a jackhammer to break up a concrete surface. The worker is wearing a yellow and orange uniform and a red hard hat. They are kneeling down and the jackhammer is on the ground in front of them. The concrete has been broken up into small pieces which are flying into the air.", - "id": 27130 - }, - { - "image_path": "G:\\images\\combined\\001018_jpg.rf.d7dabad4abd27c5dfe5c013140f9ee33.jpg", - "response": "A construction site with workers in hard hats and orange vests. They are working on top of a building that has not yet been completed. The sky is hazy and there are power lines in the background.", - "id": 27131 - }, - { - "image_path": "G:\\images\\combined\\00101ca6983dde74.jpg", - "response": "A corner building with a blue top and white bottom.", - "id": 27132 - }, - { - "image_path": "G:\\images\\combined\\001021_jpg.rf.ccde636e5b233a56c668c9eb17173680.jpg", - "response": "In the image there is a worker wearing a blue helmet and a high visibility vest. The worker is in a factory and is holding a metal object. The worker is in the center of the image and is the only person visible. The background is blurry and there are metal girders visible in the factory.", - "id": 27133 - }, - { - "image_path": "G:\\images\\combined\\001022_jpg.rf.60f85bb0bc7bbe95a0145e7cc14b5321.jpg", - "response": "In the image there is a man and a woman wearing orange protective vests and white helmets. They are both holding a rolled-up plan in their hands and are standing in a construction site. The woman is looking at the plan while the man is talking to her.", - "id": 27134 - }, - { - "image_path": "G:\\images\\combined\\001023_jpg.rf.595dbd643f547daaaa810939f2ea22b6.jpg", - "response": "a group of men standing in front of a building", - "id": 27135 - }, - { - "image_path": "G:\\images\\combined\\001025_jpg.rf.0f9cf2096d0585b09f4a0eb5c7d11fd7.jpg", - "response": "A man and woman standing in a warehouse. The woman is holding a clipboard and both are smiling at the camera. The man is wearing a safety vest and helmet and the woman is wearing a red helmet. There are pallets and boxes stacked in the background. In the left background there is a forklift and a man driving it.", - "id": 27136 - }, - { - "image_path": "G:\\images\\combined\\001026_jpg.rf.6558b4c60a6adfee3751d18549a27f36.jpg", - "response": "A man wearing a yellow hard hat and holding rolled up blueprints is sitting on a wooden beam at a construction site while talking on a cell phone.", - "id": 27137 - }, - { - "image_path": "G:\\images\\combined\\001027_jpg.rf.2170151de449e979301cd822bc8c181d.jpg", - "response": "A black and white photo of two people standing on a balcony. They are both wearing hard hats and looking out over the railing. The people are standing on a staircase landing, and there is a brick wall behind them. The bricks are very close together and the wall is not smooth. There is a railing in front of them, and they are standing on a step above the railing.", - "id": 27138 - }, - { - "image_path": "G:\\images\\combined\\001028_jpg.rf.a065177aadf87fb64a252d1557a4f2d8.jpg", - "response": "A man wearing a hard hat is cutting a tree with a chainsaw.", - "id": 27139 - }, - { - "image_path": "G:\\images\\combined\\001030_jpg.rf.dae2ef0f5ac37244864c84e06b035096.jpg", - "response": "A group of men in white shirts and red hats are walking across a construction site. In the background there are two cranes and a pile of dirt.", - "id": 27140 - }, - { - "image_path": "G:\\images\\combined\\001031_jpg.rf.e094f8db836b0ccbd152c9b745737611.jpg", - "response": "a man in a blue shirt and yellow hard hat", - "id": 27141 - }, - { - "image_path": "G:\\images\\combined\\001032_jpg.rf.49ef53c6ec1ba71d188f25b0d4cd7310.jpg", - "response": "A group of men working on a construction site.", - "id": 27142 - }, - { - "image_path": "G:\\images\\combined\\001035_jpg.rf.2fa809535bce33fa18a81a4067d1a622.jpg", - "response": "A group of men standing around a construction site.", - "id": 27143 - }, - { - "image_path": "G:\\images\\combined\\001036_jpg.rf.a406f90662d404a5f0900bcd71bb5375.jpg", - "response": "In the image there is a construction site with a person walking in it. The person is wearing a red hat and grey clothes. There are many steel bars in the site, some of them are in the foreground, some in the middle and some in the background. The steel bars are arranged in different shapes, some of them look like cages. The whole scene looks like the foundation of a building.", - "id": 27144 - }, - { - "image_path": "G:\\images\\combined\\001037_jpg.rf.e38ace3bee274b50c42d6e5145d9a29c.jpg", - "response": "A man and woman in hard hats are pointing at a building under construction. The woman is wearing a red hard hat and a black purse is over her shoulder. The man is wearing a blue shirt and jeans.", - "id": 27145 - }, - { - "image_path": "G:\\images\\combined\\001038_jpg.rf.2f2592c2e957518069c56e8491fb37bc.jpg", - "response": "A group of men are walking up a snowy hill.", - "id": 27146 - }, - { - "image_path": "G:\\images\\combined\\001039_jpg.rf.ebb6da50b58cb3e118f669ac3cbc8a9a.jpg", - "response": "A construction worker in a red hard hat is using a chisel and a hammer to break up concrete.", - "id": 27147 - }, - { - "image_path": "G:\\images\\combined\\001040_jpg.rf.1d17601bf6cfb04f2a7321cbd2823b72.jpg", - "response": "The image shows a group of men standing on a construction site, wearing hard hats and looking around. There is a building under construction in the background, with scaffolding and debris in the foreground. The men are standing close together, with one of them holding a cell phone. The sky is blue and there are no other people visible in the image.", - "id": 27148 - }, - { - "image_path": "G:\\images\\combined\\001041_jpg.rf.f3697e547c4105e15a5bad51d37dd415.jpg", - "response": "In the image, a group of three men are wearing white safety helmets and looking at a wall. The man on the left is wearing a black coat and a white safety helmet with the word \"China\" on it. The man in the middle is wearing a red and white checkered safety helmet. The man on the right is wearing a white safety helmet with the word \"China\" and the word \"\u4e2d\u94c1\" which stands for China Railway. They are all pointing at a wall.", - "id": 27149 - }, - { - "image_path": "G:\\images\\combined\\001042_jpg.rf.7fc73a235a3e42c310e68d5076c61122.jpg", - "response": "A group of people wearing white hard hats are standing on a balcony overlooking a construction site. Some of the people are also wearing red and white striped shirts. In the background, there are large windows and the walls are being constructed. There is also a clock on the wall.", - "id": 27150 - }, - { - "image_path": "G:\\images\\combined\\001044_jpg.rf.66a4a9bf7845d51962a09e5cbea00b41.jpg", - "response": "In the image, there are two men working on a wooden structure. Both of them are wearing blue shirts and yellow helmets. One man is measuring a wooden plank with a measuring tape, while the other man is using a drill to work on the wooden structure. The background is blurred, and there is a light shining on the men from the right side of the image.", - "id": 27151 - }, - { - "image_path": "G:\\images\\combined\\001045_jpg.rf.a0613aa4de9c0614b56eecbe86471624.jpg", - "response": "An employee works on a power transformer at a substation in Lanzhou, Gansu Province, China, 18 November 2010. China's National Energy Administration said China's total installed capacity of power generation reached 1.28 billion kilowatts at the end of 2010, up 13.5 percent year on year. China is expected to have 1.3 billion kilowatts of installed capacity of power generation by the end of 2011, the NEA said.", - "id": 27152 - }, - { - "image_path": "G:\\images\\combined\\001046_jpg.rf.3e5177830e48449d80fd14a59dd96268.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 27153 - }, - { - "image_path": "G:\\images\\combined\\001050_jpg.rf.98b644419d7cf082a71c9d6163b08c31.jpg", - "response": "In the image there is a person working at a construction site. The person is wearing a white uniform and yellow boots. They are on a building site with a large broom. The person are standing on a large grid of metal rods.", - "id": 27154 - }, - { - "image_path": "G:\\images\\combined\\001052_jpg.rf.d99b4dfe5d5f58326445c2288274f460.jpg", - "response": "A group of people wearing hard hats and safety vests.", - "id": 27155 - }, - { - "image_path": "G:\\images\\combined\\001053_jpg.rf.85e4010550f91bc64b8fd38d5cddb5eb.jpg", - "response": "A man wearing a yellow hard hat and coveralls is holding a long piece of wood. He is standing in front of a wall with numerous wooden posts sticking out of it.", - "id": 27156 - }, - { - "image_path": "G:\\images\\combined\\001054_jpg.rf.18fcd1bf1146aa72d66a888618db1985.jpg", - "response": "A group of men working on a construction site.", - "id": 27157 - }, - { - "image_path": "G:\\images\\combined\\001056_jpg.rf.cfb4f8b2cd445f72e556dae06c715048.jpg", - "response": "a group of men standing in front of a building", - "id": 27158 - }, - { - "image_path": "G:\\images\\combined\\001058_jpg.rf.a7c139236c8f74352d1665820b62797f.jpg", - "response": "A man sitting on scaffolding with a yellow helmet on.", - "id": 27159 - }, - { - "image_path": "G:\\images\\combined\\001059_jpg.rf.a0b1bf0ef2b22769be49a824282908da.jpg", - "response": "A group of three men and a woman standing in a warehouse.", - "id": 27160 - }, - { - "image_path": "G:\\images\\combined\\001060_jpg.rf.6ca0aef6c054196d153d264b06f55982.jpg", - "response": "A construction worker carries a long piece of wood as another worker looks on. They are standing in front of a house that is still under construction. The house has wooden beams in the walls and the roof. There is a hammer on the ground between the two workers.", - "id": 27161 - }, - { - "image_path": "G:\\images\\combined\\001061_jpg.rf.0fd466bf5c528e31e9d47ba79af76ffa.jpg", - "response": "The image shows a group of men standing in front of a building under construction. Some of the men are wearing ties and the one on the far right is wearing a short-sleeved shirt. The one on the far left is wearing a tie and a short-sleeved shirt. The man in the center is wearing a tie. The man on the far right is wearing a tie and a short-sleeved shirt. The background is blurred out.", - "id": 27162 - }, - { - "image_path": "G:\\images\\combined\\001062_jpg.rf.88f7199611371836721093ba78cc5159.jpg", - "response": "A group of workers are standing on a construction site.", - "id": 27163 - }, - { - "image_path": "G:\\images\\combined\\001063_jpg.rf.962096d5ac7bc2828f77bde0999df293.jpg", - "response": "A group of men working on a construction site.", - "id": 27164 - }, - { - "image_path": "G:\\images\\combined\\001064_jpg.rf.45d161764224f7d7c97e74263691b9c2.jpg", - "response": "a worker in a red jacket and hard hat standing next to a fence", - "id": 27165 - }, - { - "image_path": "G:\\images\\combined\\001065_jpg.rf.cde8c584e83b4c541cdb6b039315bfe8.jpg", - "response": "Men(382,310),(533,905)(532,385),(620,799)(687,372),(795,813) in white shirts(533,435),(618,611)(383,388),(528,619) and red hard hats(433,309),(496,377)(698,386),(757,447)(609,375),(652,432)(710,387),(765,445) walking on a dirt road", - "id": 27166 - }, - { - "image_path": "G:\\images\\combined\\001068_jpg.rf.2778803904c76b8fce10d0345a2cbe64.jpg", - "response": "A group of men working on an electrical tower.", - "id": 27167 - }, - { - "image_path": "G:\\images\\combined\\001069_jpg.rf.d36f1e4398ce9d74432f491ab81b3805.jpg", - "response": "A group of men walking down a street some are wearing hard hats.", - "id": 27168 - }, - { - "image_path": "G:\\images\\combined\\001070_jpg.rf.40e18675defdd1d13d32c45fbdfbc989.jpg", - "response": "A man wearing a yellow safety vest and a hard hat is holding a camera and drinking from a travel mug. He is standing next to a wall with a lighthouse in the background.", - "id": 27169 - }, - { - "image_path": "G:\\images\\combined\\001071_jpg.rf.946c81eeff9e638367e897a13c48d11e.jpg", - "response": " A Chinese worker(105,175),(431,997) carries a log(115,328),(558,411) in the snow", - "id": 27170 - }, - { - "image_path": "G:\\images\\combined\\001072_jpg.rf.2e3369695df2c18d3536a7cd0f6e840d.jpg", - "response": "The image shows a worker on a ladder working on a power line. The worker is wearing a white helmet and a blue uniform. The ladder is yellow and is placed against the power line. The background is a dark sky.", - "id": 27171 - }, - { - "image_path": "G:\\images\\combined\\001073_jpg.rf.6138201cb21d17452fcdcc0ec10b9bda.jpg", - "response": "An electrician is working on power lines.", - "id": 27172 - }, - { - "image_path": "G:\\images\\combined\\001074_jpg.rf.19594f4ddf15e8ca207b0a6a289bfe81.jpg", - "response": "A group of workers are constructing a bridge.", - "id": 27173 - }, - { - "image_path": "G:\\images\\combined\\001075_jpg.rf.0ea99f3f8aad65b2bbeb9e7cf78a0400.jpg", - "response": " Two miners(233,254),(598,996)(457,209),(709,995) working in a coal mine", - "id": 27174 - }, - { - "image_path": "G:\\images\\combined\\001076_jpg.rf.589279a8238c6b96e4f0d3a016ef6e10.jpg", - "response": "The image shows a group of people standing underneath a large iron bird that is suspended in the air by a crane. The bird appears to be in the process of being installed or is being lowered for some purpose. The people are wearing hard hats, which suggests that they may be construction workers or involved in the installation process. The background shows a blue sky with some clouds.", - "id": 27175 - }, - { - "image_path": "G:\\images\\combined\\001077_jpg.rf.e845102787c7eb33532bf924f3b6bda8.jpg", - "response": "A group of men holding up umbrellas.", - "id": 27176 - }, - { - "image_path": "G:\\images\\combined\\001078_jpg.rf.1f13b8fa41e0f8beda8a43a2f6d3de98.jpg", - "response": "A construction worker wearing a red vest and a blue hat is building a structure.", - "id": 27177 - }, - { - "image_path": "G:\\images\\combined\\001079_jpg.rf.fc1490ce208926f7ab2eefe2b5473c6b.jpg", - "response": "A group of men standing in front of a construction site wearing hard hats.", - "id": 27178 - }, - { - "image_path": "G:\\images\\combined\\001080_jpg.rf.0df64efb8a2cfb73eaacebf4adf48acc.jpg", - "response": "The image shows two workers in blue vests and red helmets, one of them is holding a blue clipboard. They are standing on a construction site with a blue sky background. In the foreground, there is a metal grating and a piece of yellow pipe.", - "id": 27179 - }, - { - "image_path": "G:\\images\\combined\\001082_jpg.rf.99195e0ae8984a2b81403d681342add1.jpg", - "response": "A group of three men, two of which are wearing yellow vests and yellow hard hats. One man is wearing a brown jacket and holding a cell phone. One man is smiling and holding a clipboard.", - "id": 27180 - }, - { - "image_path": "G:\\images\\combined\\001083_jpg.rf.dd5659248ae226434f7e1d8cc0a95c61.jpg", - "response": "A man wearing a yellow hard hat and blue shirt crouches down next to a piece of machinery. He is wearing a yellow hard hat, white gloves, and white and blue shoes. He is also wearing a blue shirt and has a mustache. The machinery he is working on is silver and appears to be a large piece of heavy equipment. The man is sitting on the ground and appears to be working on the machinery.", - "id": 27181 - }, - { - "image_path": "G:\\images\\combined\\001084_jpg.rf.42e33abaf485684181c1d0ab0d30d702.jpg", - "response": "The image shows a large tunneling machine that has been used to excavate a tunnel. The tunneling machine is on display in a tunnel and is surrounded by construction workers. The workers are wearing orange vests and hard hats. They are standing on both sides of the tunneling machine and appear to be working on it. The tunneling machine has a large circular cutting head that is covered in rocks. The machine has two large metal wheels on the bottom and is painted a bright yellow color.", - "id": 27182 - }, - { - "image_path": "G:\\images\\combined\\001085_jpg.rf.67c201e6b1a23861078b41f1077395c7.jpg", - "response": "A group of men working on a construction site.", - "id": 27183 - }, - { - "image_path": "G:\\images\\combined\\001086_jpg.rf.956f0e978038f39a2817d158bec8fe73.jpg", - "response": "A man in a hard hat and coveralls is working on a large metal cylinder. He is kneeling down and appears to be focusing on the task at hand. The sky is grey and overcast behind him.", - "id": 27184 - }, - { - "image_path": "G:\\images\\combined\\001087_jpg.rf.533dc6a8a7b44df0f876a3361424727b.jpg", - "response": "The image shows a group of men walking together in a construction site. They are all wearing red hard hats and are dressed in dark clothing. The men are walking in a line and some of them are carrying something in their hands. The background shows a building under construction and a blue and white sign that says \"\u5b89\u5168\u82b1\".", - "id": 27185 - }, - { - "image_path": "G:\\images\\combined\\001088_jpg.rf.a81cdb599ee8ab95a7269cd69b90ef5c.jpg", - "response": "a group of men standing in a large room with unfinished concrete floors and bare walls. They are all dressed in black.", - "id": 27186 - }, - { - "image_path": "G:\\images\\combined\\001089_jpg.rf.36a4d0219f7c0f330d8aee818f001466.jpg", - "response": "A worker wearing a yellow hard hat and sunglasses is handling rebar.", - "id": 27187 - }, - { - "image_path": "G:\\images\\combined\\001091_jpg.rf.7e7eb70201d21e8be49b5b4264ad9d45.jpg", - "response": "A worker is mixing some chemicals in a large blue barrel. The worker is wearing a red hard hat and a grey shirt. There are three other large blue barrels in the scene, one to the left of the worker, one behind the worker, and one to the right of the worker. There is a white powder in the far left barrel and a yellow liquid in the barrel behind the worker. The background shows a large building.", - "id": 27188 - }, - { - "image_path": "G:\\images\\combined\\001092_jpg.rf.f6917ddcd184edc114edc69b78adf1bf.jpg", - "response": "A man working in a manhole with a hard hat on.", - "id": 27189 - }, - { - "image_path": "G:\\images\\combined\\001093_jpg.rf.a78f705638b8cd89f4456b7c57d1ebe2.jpg", - "response": "A group of seven men standing on a construction site wearing hard hats.", - "id": 27190 - }, - { - "image_path": "G:\\images\\combined\\001094_jpg.rf.8ea100a7860acb62dffff86eeedf07f5.jpg", - "response": "The image shows three construction workers standing on top of a building under construction. They are wearing hard hats and appear to be posing for a photo. The sky is blue and there are no clouds in sight. The building they are standing on appears to be made of concrete and there is a large metal structure above them.", - "id": 27191 - }, - { - "image_path": "G:\\images\\combined\\001095_jpg.rf.c7da1c297b9dfff068500fc5c13937f9.jpg", - "response": "The image shows three men in hard hats and yellow shirts standing on a barge at night. They are working on a large concrete pipe, with two of them using large tools to work on the pipe. The third man is looking at the camera. The background shows a crane and a person in a black shirt.", - "id": 27192 - }, - { - "image_path": "G:\\images\\combined\\001096_jpg.rf.71ff83eea8e89db8b76c247fe9b04970.jpg", - "response": "The image shows a group of people gathered in front of a large video screen. Some of the people are wearing yellow vests. In the background, there is a banner with the words \"\u5f00\u5de5\u4eea\u5f0f\" on it, which indicates that this is a groundbreaking ceremony for a new factory. There is also a large camera mounted on a crane, pointed at the banner. The people are standing on a grey surface, and there are two red lanterns hanging above them. The photo seems to have been taken from the perspective of one of the people in the crowd.", - "id": 27193 - }, - { - "image_path": "G:\\images\\combined\\001097_jpg.rf.02967a478948a8f3991a2f78207b86ca.jpg", - "response": "A group of people sitting around a table.", - "id": 27194 - }, - { - "image_path": "G:\\images\\combined\\001098_jpg.rf.a8d558e33e67c677b168ec25264bc29f.jpg", - "response": "The image shows several construction workers in a tunnel. They are all wearing yellow hard hats and some are holding cell phones. In the foreground on the left, a man is eating an apple and has a bandage on his\u5de6\u624b. Another man on the right is eating a donut. In the background, a person is eating a hot dog. The workers appear to be taking a break.", - "id": 27195 - }, - { - "image_path": "G:\\images\\combined\\001099_jpg.rf.c428991b6419eaa0d981011c6f058fdf.jpg", - "response": "A group of people standing on a bridge.", - "id": 27196 - }, - { - "image_path": "G:\\images\\combined\\0010f2581775d795.jpg", - "response": "A white jeep parked in front of a tall building.", - "id": 27197 - }, - { - "image_path": "G:\\images\\combined\\0010f4c10f7ab07e.jpg", - "response": "A busy city street with cars, trucks, and pedestrians. There is a white police van parked on the side of the street. A woman is crossing the street at a crosswalk. A traffic light is visible on the corner.", - "id": 27198 - }, - { - "image_path": "G:\\images\\combined\\001100_jpg.rf.bcebb82f5fda094093463d85fef31d21.jpg", - "response": "A picture of two men in orange safety gear standing in front of a large power box.", - "id": 27199 - }, - { - "image_path": "G:\\images\\combined\\001101_jpg.rf.a81e466da6b68e8a5c9ee0481ba837a4.jpg", - "response": "A pair of men working on a wooden beam in a house under construction.", - "id": 27200 - }, - { - "image_path": "G:\\images\\combined\\001103_jpg.rf.9e714c5f2829ab604151733cdf5f10da.jpg", - "response": "A group of workers in green and yellow shirts and yellow hats are working on a red bridge.", - "id": 27201 - }, - { - "image_path": "G:\\images\\combined\\001104_jpg.rf.f87e72f80e4e6e1786d484b3a10160ee.jpg", - "response": "A man and a woman standing in front of a large container dock with their arms crossed. Both are wearing hard hats and safety glasses. The woman is wearing a yellow hard hat and has long brown hair. The man has a beard and is wearing a red shirt and a yellow hard hat. They both have reflective material on their clothing. In the background there are large industrial cranes.", - "id": 27202 - }, - { - "image_path": "G:\\images\\combined\\001105_jpg.rf.d217d3deb7a3c1341d02e621664698ff.jpg", - "response": "A worker repairs a power pole in a snowstorm.", - "id": 27203 - }, - { - "image_path": "G:\\images\\combined\\001106_jpg.rf.273c1ed3b6f33bd6113112ab7e9f3af5.jpg", - "response": "A worker is seen on a ladder below a high-voltage power transmission line in this undated photo. The photo was taken by a drone and provided to Xinhua News Agency. The drone captured the image from a height of 150 meters. The worker is seen wearing a yellow hat and a blue shirt. He is smiling at the camera. He is standing on a ladder which is placed on a high-voltage power transmission line. The power transmission line is green in color and can be seen stretching out to both directions. The background shows a road.", - "id": 27204 - }, - { - "image_path": "G:\\images\\combined\\001107_jpg.rf.2a8364702d18905a144461412c9d238f.jpg", - "response": "A group of people working on a construction site.", - "id": 27205 - }, - { - "image_path": "G:\\images\\combined\\001108_jpg.rf.0737afeaf7670385888027a4114a2cb6.jpg", - "response": "A construction site with two men working on a machine.", - "id": 27206 - }, - { - "image_path": "G:\\images\\combined\\001109_jpg.rf.0f8879bebbc2e2bdb4ae80537f5ed219.jpg", - "response": "A group of people working on a roof with solar panels on it.", - "id": 27207 - }, - { - "image_path": "G:\\images\\combined\\001110_jpg.rf.2ea77b7abcc9cbb13ed630464e20f761.jpg", - "response": "The image shows a group of workers wearing orange work clothes and yellow helmets who are building a blue steel framework. Some of the workers are standing on the left side, and some are on the right side of the image. One of the workers on the right is wearing a yellow helmet and is in the middle of welding two steel bars. Another worker in the middle is wearing a yellow helmet and is welding steel bars as well. A third worker is crouching on the left side and is fixing the steel framework.", - "id": 27208 - }, - { - "image_path": "G:\\images\\combined\\001111_jpg.rf.c41285c3005020ac13575e4f70e585f1.jpg", - "response": "A group of people working on a construction site.", - "id": 27209 - }, - { - "image_path": "G:\\images\\combined\\001112_jpg.rf.292f1ae0712bc659c5d711f5f9e32e32.jpg", - "response": "A man in a suit and tie holding a clipboard and wearing a hard hat is talking to a man in a hard hat and safety vest in a warehouse. They are both holding clipboards.", - "id": 27210 - }, - { - "image_path": "G:\\images\\combined\\001113_jpg.rf.ee71056856d451345d4b33a63126b0aa.jpg", - "response": "A man in a red hard hat is showing another man a blueprint.", - "id": 27211 - }, - { - "image_path": "G:\\images\\combined\\001114_jpg.rf.5007e4db85c86c42c89e3adc1f4cbc1d.jpg", - "response": " Construction workers(436,550),(522,889)(234,171),(347,426) are working on the interior of the new Olympic Oval.", - "id": 27212 - }, - { - "image_path": "G:\\images\\combined\\001115_jpg.rf.d638f3c41c89ed510e3314434de26000.jpg", - "response": "a group of people(553,494),(670,916)(688,515),(822,945)(407,490),(508,848) walking in a construction site", - "id": 27213 - }, - { - "image_path": "G:\\images\\combined\\001116_jpg.rf.75ff6f17560285f301d668f561153d57.jpg", - "response": "a man is working on a power line", - "id": 27214 - }, - { - "image_path": "G:\\images\\combined\\001117_jpg.rf.120af8f5e29d4f812ba08d481a533e4e.jpg", - "response": "a group of men standing in front of a van", - "id": 27215 - }, - { - "image_path": "G:\\images\\combined\\001118_jpg.rf.92713b9fdb41e0a0222db7d300de4852.jpg", - "response": " Workers(277,34),(593,996)(616,338),(732,765) in China have to carry bamboo shoots on their backs", - "id": 27216 - }, - { - "image_path": "G:\\images\\combined\\001119_jpg.rf.765f211488741475a4bda0ae3fb778db.jpg", - "response": "The image shows two construction workers at a construction site. They are wearing hard hats and working on a project involving concrete. One worker is pouring concrete into a large tube while the other worker is standing behind him. They are both wearing grey and yellow clothing.", - "id": 27217 - }, - { - "image_path": "G:\\images\\combined\\001120_jpg.rf.d66fbbed443592ad4da7ba38cb4af2c1.jpg", - "response": "The image shows a group of men standing around a man in a blue suit who is shaking hands with another man. They are all wearing red hard hats. In the background, there are several cars and a truck. The photo appears to have been taken at a construction site.", - "id": 27218 - }, - { - "image_path": "G:\\images\\combined\\001122_jpg.rf.da84fdb1c1ea4f933027ca904cef4563.jpg", - "response": "The image shows two construction workers in yellow hard hats, standing next to a grey concrete pole. They are wearing dark work clothes and the left worker also has a white beard. The workers are on a construction site, surrounded by brown dirt and small grey stones. In the background, there is a yellow construction vehicle.", - "id": 27219 - }, - { - "image_path": "G:\\images\\combined\\001123_jpg.rf.f10664c615e936836a9b81ac65583ce1.jpg", - "response": "A large tunnel with a machine in the center.", - "id": 27220 - }, - { - "image_path": "G:\\images\\combined\\001124_jpg.rf.1cf7d19ab9b31021ef094094c0efb854.jpg", - "response": "a man(595,175),(999,815) in a white shirt", - "id": 27221 - }, - { - "image_path": "G:\\images\\combined\\001125_jpg.rf.8629e52faadd119f27faab875bc1298a.jpg", - "response": "A group of men standing around a construction site", - "id": 27222 - }, - { - "image_path": "G:\\images\\combined\\001126_jpg.rf.96e63376cb6363d20d3d43e655ddbdfd.jpg", - "response": "A worker is standing in a tunnel under a bridge, looking up. He is wearing a yellow hard hat and dark clothes. He is standing in front of several shelves of what appear to be metal or steel beams.", - "id": 27223 - }, - { - "image_path": "G:\\images\\combined\\001127_jpg.rf.b7f46a55a31c12131ba14c9b2718d945.jpg", - "response": " Two construction workers(566,193),(703,826)(680,206),(845,826) in a dark construction site", - "id": 27224 - }, - { - "image_path": "G:\\images\\combined\\001128_jpg.rf.0fcdccefce4cdbbc7e2ff26a073d48cc.jpg", - "response": "A group of people working on a building site wearing hard hats.", - "id": 27225 - }, - { - "image_path": "G:\\images\\combined\\001129_jpg.rf.889c2a7dc761c6681291cc1f388be96d.jpg", - "response": "Four men wearing hard hats and work clothes are standing around a fire. The fire is located on the left side of the image and is bright red. The men are standing on the right side of the image and are wearing yellow and silver hard hats. The fire is casting a shadow on the ground.", - "id": 27226 - }, - { - "image_path": "G:\\images\\combined\\001130_jpg.rf.7ce3604f3d812137b39192bf0b1155ae.jpg", - "response": "A worker is placing large blocks of ice into a cave.", - "id": 27227 - }, - { - "image_path": "G:\\images\\combined\\001131_jpg.rf.e8fe68680200b755acaeb4fa030c43f6.jpg", - "response": "The picture shows a group of people in suits and yellow safety vests and hats walking down a sidewalk next to a large construction site. The ground is made of red bricks and there are several buildings in the background. The people are walking in a line and some of them are looking at the construction site.", - "id": 27228 - }, - { - "image_path": "G:\\images\\combined\\001132_jpg.rf.1a55d46e160520f57fbd60d190cf115e.jpg", - "response": "A man in a red hat is standing on a roof.", - "id": 27229 - }, - { - "image_path": "G:\\images\\combined\\001133_jpg.rf.5b8be3578711713d639806d9f80e1671.jpg", - "response": "A group of men wearing hard hats are standing in a lot. They are all dressed in business attire.", - "id": 27230 - }, - { - "image_path": "G:\\images\\combined\\001134_jpg.rf.78e753dc46ff83b63c326be38cf76f25.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 27231 - }, - { - "image_path": "G:\\images\\combined\\001135_jpg.rf.8e5e59ccdef330cddbba00af18425e06.jpg", - "response": "a group of men walking across a room", - "id": 27232 - }, - { - "image_path": "G:\\images\\combined\\001137_jpg.rf.e3b626e534ee66d3e1582e838a844472.jpg", - "response": "In the image, there is a construction worker wearing a green shirt and a red helmet. The worker is at a construction site, pushing a wheelbarrow filled with bricks. There are many more bricks scattered around the site, some are piled up in the top left corner of the image, some are on the ground in the middle of the image, and some are in the wheelbarrow. In the background, there are other workers and a building under construction.", - "id": 27233 - }, - { - "image_path": "G:\\images\\combined\\001138_jpg.rf.034b607312d1e15efdfa9e34e36be414.jpg", - "response": " People(2,387),(193,988)(568,479),(691,938)(308,409),(553,997)(163,441),(336,997)(840,486),(929,793)(689,522),(772,899)(706,559),(854,997) standing outside a building", - "id": 27234 - }, - { - "image_path": "G:\\images\\combined\\001139_jpg.rf.3578899231dbe3a40e926936c84b1929.jpg", - "response": "In the image there is a person wearing a blue hard hat and a white mask. They are wearing a brown jacket and working on a construction site. There are also two other people in the background, one wearing a red jacket and the other one not wearing a jacket. There are metal rods in the foreground and some sparks flying.", - "id": 27235 - }, - { - "image_path": "G:\\images\\combined\\001140_jpg.rf.196528e32a9646954c7102833af2dbdb.jpg", - "response": "The image shows two workers on a power line. They are wearing blue uniforms and blue hats. They are sitting on a power line tower, and their legs are hanging down. They are holding onto the power line with their hands. The sky is blue with some clouds. The background also shows another tower on the left side. On the right side, there are two green wires connected to the tower.", - "id": 27236 - }, - { - "image_path": "G:\\images\\combined\\001141_jpg.rf.0c493eec1b92f364e5f662f02a908932.jpg", - "response": "A group of men in suits and hard hats are standing in front of a building under construction. Some of the men are wearing ties and the building has scaffolding around it.", - "id": 27237 - }, - { - "image_path": "G:\\images\\combined\\001143_jpg.rf.d0e0ffc027186e96af142a8d5906a036.jpg", - "response": "In the image two construction workers are building the foundation of a building. They are wearing yellow and orange shirts and hats. In the background there are other workers and a yellow and white crane. There are also mountains in the distance.", - "id": 27238 - }, - { - "image_path": "G:\\images\\combined\\001144_jpg.rf.6ecc96639ec323db042b9559b5f7259e.jpg", - "response": "The image shows a group of men standing in a circle, wearing hard hats and business attire. They are talking in front of a construction site. In the background, there is a partially constructed building with a sign that reads \"\u5b89\u5168\u901a\u9053 S\u5b89\u5168\u901a\u9053\". There is also a yellow crane operating in the background.", - "id": 27239 - }, - { - "image_path": "G:\\images\\combined\\001145_jpg.rf.299ad1a444656600b2d1406f49645652.jpg", - "response": "a group of men standing in a unfinished room wearing hard hats(1,348),(84,438)(222,356),(298,433)(550,266),(638,346)(337,354),(399,413)(794,305),(997,507)", - "id": 27240 - }, - { - "image_path": "G:\\images\\combined\\001146_jpg.rf.52e4db92911a49607fcbbce1ff0448c2.jpg", - "response": "A group of men in business attire with red hard hats on.", - "id": 27241 - }, - { - "image_path": "G:\\images\\combined\\001147_jpg.rf.a44a048d21ed27735fedbb4146948a54.jpg", - "response": "A large truck is driving under a tall structure that is being built.", - "id": 27242 - }, - { - "image_path": "G:\\images\\combined\\001148_jpg.rf.e6eb81f045e85d1f94234fb524550350.jpg", - "response": "A man wearing a red coverall and a white hard hat is standing next to a red shipping container. He is smiling and has his hand on the shipping container. There is a sign on the shipping container that says \"security device only\". There is also a sign on the shipping container that says \"open this\" with an arrow pointing to the shipping container.", - "id": 27243 - }, - { - "image_path": "G:\\images\\combined\\001150_jpg.rf.8a09a4b78dfc2245442283061b5bcd8d.jpg", - "response": "A group of people standing on a construction site.", - "id": 27244 - }, - { - "image_path": "G:\\images\\combined\\001151_jpg.rf.2082e8872b0ecee2e9d9da76b8865ddc.jpg", - "response": "A group of people walking down a street.", - "id": 27245 - }, - { - "image_path": "G:\\images\\combined\\001152_jpg.rf.8ccd0b6adbd32ba0ef4e03521535dfe5.jpg", - "response": "A worker is on the roof of a yellow van, fixing a power line. He is wearing a white shirt, red pants, and a red helmet. There is a yellow van below him. In the image, you can also see a yellow pole and a yellow ladder.", - "id": 27246 - }, - { - "image_path": "G:\\images\\combined\\001153_jpg.rf.34cfeb287d1bbb4402daf5cbe6ab7764.jpg", - "response": "A group of men working on a tunnel that is grey in color.", - "id": 27247 - }, - { - "image_path": "G:\\images\\combined\\001154_jpg.rf.2508d449edc947353da86f534c7b23d2.jpg", - "response": "A technician in a yellow hard hat is holding a device and looking at it. He is standing in a room with a grey wall and a grey ceiling. There is a large, silver, cylindrical equipment to his left and a white door to his right. He is wearing a grey shirt and a brown pants. There are several wires coming out of the top of the equipment and going into the wall.", - "id": 27248 - }, - { - "image_path": "G:\\images\\combined\\001155_jpg.rf.8705409b72d6f8744d796732b9a0bcaa.jpg", - "response": "In the image there is a male construction worker wearing a yellow hard hat, blue shirt and blue jeans. He is working on a construction site wearing brown boots. He is standing on a ladder on a clear day with a blue sky and white clouds. There is a large green tarp in the background.", - "id": 27249 - }, - { - "image_path": "G:\\images\\combined\\001156eb13f37194.jpg", - "response": "A white mini cooper parked in front of a garage.", - "id": 27250 - }, - { - "image_path": "G:\\images\\combined\\001156_jpg.rf.99ef78455b5f7c1a24f53fdb79d67108.jpg", - "response": "The picture shows a group of people standing in front of a building under construction. They are all wearing red helmets. In the middle of the group, there is a man in a grey suit and red helmet. To the far left of the group is a woman in a white coat and red helmet. To the far right of the group is a woman in a red jacket and red helmet. In front of the group is a pile of bricks and a pile of wood. To the far right of the group is a person in a green jacket sitting on a pile of wood.", - "id": 27251 - }, - { - "image_path": "G:\\images\\combined\\001157_jpg.rf.560d592aa2d5eaef1ed882af4bc4ab77.jpg", - "response": "A group of men standing around in a factory.", - "id": 27252 - }, - { - "image_path": "G:\\images\\combined\\001158_jpg.rf.89df0e7612679961aed2bc8fada934b0.jpg", - "response": "In the image there are three people, two of them are wearing yellow hats and they are sitting on a power box. The person on the right is wearing a red hat. The sky is overcast.", - "id": 27253 - }, - { - "image_path": "G:\\images\\combined\\001159_jpg.rf.516f8d87c7cc647ce53530219882425b.jpg", - "response": "A group of people standing in the rain with many holding up colorful umbrellas.", - "id": 27254 - }, - { - "image_path": "G:\\images\\combined\\001161_jpg.rf.cc2fe1d4d651ab8fa298c1fa70b0c139.jpg", - "response": "In the image two workers are building a structure with bamboo. They are both wearing yellow hats and grey shirts. The sky is blue with thin clouds.", - "id": 27255 - }, - { - "image_path": "G:\\images\\combined\\001162_jpg.rf.1c39f4fe30e71fd2bcf3a54d805f2301.jpg", - "response": "A group of workers in orange and blue uniforms walking on a green hillside.", - "id": 27256 - }, - { - "image_path": "G:\\images\\combined\\001163_jpg.rf.633e5f18954f91d09d49c076c02686be.jpg", - "response": "A worker wearing a yellow hard hat is standing on a metal staircase. The worker is wearing a grey top and orange safety vest. The worker is holding a black metal rail. The metal staircase winds up into a tower. There are glass windows on the side of the tower.", - "id": 27257 - }, - { - "image_path": "G:\\images\\combined\\001165_jpg.rf.2d2a988b526f764182cbc4d8cd580393.jpg", - "response": "An electrician teaches a worker how to use his phone.", - "id": 27258 - }, - { - "image_path": "G:\\images\\combined\\001166_jpg.rf.926bf48eddfd70c79eea82daaa5c2dd7.jpg", - "response": "A group of men in orange vests and yellow hard hats are gathered around a round metal object on the ground. They appear to be working on it.", - "id": 27259 - }, - { - "image_path": "G:\\images\\combined\\001168_jpg.rf.3fb944b385d911d3cf136ab586b17f22.jpg", - "response": "In the image, a worker is wearing a red helmet and working on a large piece of metal equipment outdoors. The worker is holding a wrench and is in the process of tightening a bolt on the metal equipment. The metal equipment appears to be a large pipe or cylinder, and the worker is standing next to it on the left side of the pipe. The background is blurry and appears to be out of focus, with a red wall in the background.", - "id": 27260 - }, - { - "image_path": "G:\\images\\combined\\001169_jpg.rf.04549b26ee36e57f9ed4897c6671e3b7.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. All of them are wearing hard hats. They are holding and looking at some papers. The papers are in different colors and shapes, but all of them have some writing on them. The building in the background is made of concrete and appears to be still in the construction process.", - "id": 27261 - }, - { - "image_path": "G:\\images\\combined\\001170_jpg.rf.3cd7d771b0ecfafcae62c2cd73f94efa.jpg", - "response": " Two engineers(324,145),(693,997)(73,158),(340,996) in a tunnel", - "id": 27262 - }, - { - "image_path": "G:\\images\\combined\\001171_jpg.rf.b63654be3b870f5988f4f1f040d1a664.jpg", - "response": "back of head(236,282),(688,989)", - "id": 27263 - }, - { - "image_path": "G:\\images\\combined\\001172_jpg.rf.c73d8e7503221355de53869cf49528ed.jpg", - "response": "A construction worker wearing a red jacket and a yellow safety harness.", - "id": 27264 - }, - { - "image_path": "G:\\images\\combined\\001173_jpg.rf.9f0f855026f3ff6fd7ac8a551b4b21c3.jpg", - "response": "The image shows an oil drilling site with two workers in the foreground. One worker is on the left and is wearing a white helmet, a green raincoat, and yellow reflective clothing. The other worker is on the right and is wearing a white helmet and a black raincoat. They are standing in front of a large yellow drilling rig and a white pump. A yellow hose is connected to the pump and another yellow hose is connected to the drilling rig. The ground is wet and there are footprints all over. The sky is overcast and the sun is not shining.", - "id": 27265 - }, - { - "image_path": "G:\\images\\combined\\001174_jpg.rf.363ae975aadec4a889a286d0887d2c8b.jpg", - "response": "A man in a red hard hat is walking towards a pile of dirt.", - "id": 27266 - }, - { - "image_path": "G:\\images\\combined\\001175_jpg.rf.3e8d266db58caadfbe785a064ef8b597.jpg", - "response": "A worker in a red vest and blue hard hat is kneeling down next to a brick wall. They are working on a small grey box with a screwdriver. There is a traffic cone and a fire hydrant in the background. The whole scene is set at night.", - "id": 27267 - }, - { - "image_path": "G:\\images\\combined\\001176_jpg.rf.beb0f0ad879ccb1bf210b51d5cb1f540.jpg", - "response": "A man in a red jacket and a white helmet is smiling at the camera. He is wearing a red jacket with yellow stripes, and a white helmet with the words \"China Railway No. 2 Engineering Group\" on it. He is also wearing a red vest with yellow stripes. He is holding a walkie-talkie in his right hand. In the background, there is a white wall and a pile of dark brown wooden planks. The sky is light blue with clouds.", - "id": 27268 - }, - { - "image_path": "G:\\images\\combined\\001177_jpg.rf.a8305072ef19fad35a419ca8110c04b6.jpg", - "response": "A group of workers are working on a large metal structure. They are standing on the ground and appear to be building or constructing the large metal structure. Some of the workers are wearing hard hats and orange vests. In the background, there is a blue sky with some clouds.", - "id": 27269 - }, - { - "image_path": "G:\\images\\combined\\001178_jpg.rf.c10a14e0c0c65c4e082df7d3d882fabb.jpg", - "response": "A group of people standing around a large piece of metal equipment. Some of the people are wearing hard hats and safety vests.", - "id": 27270 - }, - { - "image_path": "G:\\images\\combined\\001179_jpg.rf.c5411d758beeb24c9e6d3f125d6d287c.jpg", - "response": "A factory worker is operating a machine that is spitting out sparks.", - "id": 27271 - }, - { - "image_path": "G:\\images\\combined\\001180_jpg.rf.3a37a79a9712d18ac146e9a181de7d30.jpg", - "response": "In the image there are several workers on a construction site. They are working on a building that is under construction. There are a total of 8 people in the image, some are standing on the building frame and some are standing on the ground. The sky in the background is blue with some clouds.", - "id": 27272 - }, - { - "image_path": "G:\\images\\combined\\001181_jpg.rf.fdb507faff8cfceecd9e18e207ac6126.jpg", - "response": "An electrician is working on power lines.", - "id": 27273 - }, - { - "image_path": "G:\\images\\combined\\001182_jpg.rf.b3b38cdfc610e90833c34984e089e8a6.jpg", - "response": "The image shows a group of men working on a power line. They are dressed in blue uniforms and white safety vests. The men are standing on ladders and are focused on their task. The sky is dark in the background and there is a yellow machine nearby.", - "id": 27274 - }, - { - "image_path": "G:\\images\\combined\\001183_jpg.rf.42c11e18345cc8f5e45e9a55f8d0aeaf.jpg", - "response": "A group of people working on a construction site.", - "id": 27275 - }, - { - "image_path": "G:\\images\\combined\\001184_jpg.rf.ab41f6a36ed00c926e73d215cc2d4b87.jpg", - "response": "The image shows a construction site where two workers are constructing a road. There are two machines in the scene, one in the middle of the construction site and the other one on the right side of the image. The workers are wearing yellow helmets and are working on the construction site.", - "id": 27276 - }, - { - "image_path": "G:\\images\\combined\\001185_jpg.rf.d15e490b2048956b04403e0c1c6ed21f.jpg", - "response": "A group of people working on a building construction site.", - "id": 27277 - }, - { - "image_path": "G:\\images\\combined\\001186_jpg.rf.f4e9b79953080d53a0dcd3ae9acb5346.jpg", - "response": "A man in a yellow hat and a blue shirt is helping a woman in a pink shirt and yellow hat to untangle a rope. They are standing in front of a pile of bricks and a pile of mud. There is a brick wall in the background and a pile of mud to the right. There is also a mountain in the background.", - "id": 27278 - }, - { - "image_path": "G:\\images\\combined\\001187_jpg.rf.98482944c92e88805fe3b2761af8c71a.jpg", - "response": "a group of men wearing hard hats", - "id": 27279 - }, - { - "image_path": "G:\\images\\combined\\001190_jpg.rf.75963105c7ac8f07324a7588dd421569.jpg", - "response": "A worker in a red jacket and a white mask is sitting on a concrete pile with a torch in his hand. He is wearing a red helmet. The concrete pile is grey and has a wire mesh attached to it. There is a bucket on the left side of the worker. The background is grey and the lighting is yellow.", - "id": 27280 - }, - { - "image_path": "G:\\images\\combined\\001191_jpg.rf.b5b557c2de713ca78991042aacf8ded8.jpg", - "response": "A construction worker wearing a blue hard hat is looking up.", - "id": 27281 - }, - { - "image_path": "G:\\images\\combined\\001192_jpg.rf.ef1a257ad4d9fd20dfd332982f72518e.jpg", - "response": "a group of men standing in front of a building", - "id": 27282 - }, - { - "image_path": "G:\\images\\combined\\001193_jpg.rf.174abccf396cd6e1cbd15d61d07aad57.jpg", - "response": "A group of men in blue work uniforms and white helmets are working on a ladder near a tall metal tower. The tower is tall and made of metal, with a ladder propped against it. The men are wearing white helmets and are focused on their task.", - "id": 27283 - }, - { - "image_path": "G:\\images\\combined\\001195_jpg.rf.46cccc76a175c99b1c5e2752c9f53233.jpg", - "response": "a man in a suit is shaking the hand of a man in a white shirt", - "id": 27284 - }, - { - "image_path": "G:\\images\\combined\\001196_jpg.rf.43b4c41d5e40cfed183da00031bb22a5.jpg", - "response": "A lineworker is suspended from a safety line while climbing a telephone pole. He is wearing a tool belt and a hard hat. The telephone pole is brown and has several wires attached to it. The sky is overcast.", - "id": 27285 - }, - { - "image_path": "G:\\images\\combined\\001197_jpg.rf.4b1a2c5d806fec95d45a84decdcfa45d.jpg", - "response": "A construction worker is welding steel at a construction site. He is wearing a blue shirt, grey pants, a black and orange hard hat, and blue gloves. He is kneeling down and holding a welding torch which is causing the steel to melt and glow with a bright orange flame. The steel bars are rusty and are being used to reinforce the concrete.", - "id": 27286 - }, - { - "image_path": "G:\\images\\combined\\001198_jpg.rf.0dff39985173b065abc4b7bad8d6e685.jpg", - "response": "A group of men working on a construction site.", - "id": 27287 - }, - { - "image_path": "G:\\images\\combined\\001199_jpg.rf.48ee63fc77acbf00e3d1b2ff786610d1.jpg", - "response": "A group of men working inside of a large tunnel.", - "id": 27288 - }, - { - "image_path": "G:\\images\\combined\\001201_jpg.rf.bc37467d6167e25e61733e0abbff9c23.jpg", - "response": "Four men working on a construction site at night.", - "id": 27289 - }, - { - "image_path": "G:\\images\\combined\\001202_jpg.rf.67f3b0f6097c67ea818a7955f8c06607.jpg", - "response": "A group of three men in green, red, and blue uniforms are working on an electrical box.", - "id": 27290 - }, - { - "image_path": "G:\\images\\combined\\001203_jpg.rf.14216e5fb6f860928bc5534d538b0182.jpg", - "response": "A man in a harness is suspended by ropes while he washes windows on a tall building. He is wearing a white helmet and a yellow and black jacket. There is a blue bucket hanging from the harness. Another man is behind him, holding a large blue and white pole. The building is grey and the windows are reflecting the surrounding buildings.", - "id": 27291 - }, - { - "image_path": "G:\\images\\combined\\001204_jpg.rf.6ef31cd2a2d4d540372b206889591d58.jpg", - "response": "An electrician is working on some wires.", - "id": 27292 - }, - { - "image_path": "G:\\images\\combined\\001205_jpg.rf.68c93b12620aecfee886d6bfbbeb800d.jpg", - "response": " President Paul BIYA(414,474),(543,903), flanked by the Prime Minister, the Government Delegate to the West, and other personalities, visits the construction site of the new health center in the Buea Sub-prefecture.", - "id": 27293 - }, - { - "image_path": "G:\\images\\combined\\001208_jpg.rf.cec7d631fc9d30f83cec344d17cf8429.jpg", - "response": "The image shows a train track with three people working on it. Two of the people are wearing yellow and blue and are focused on working on the train tracks. They are crouched down and one of them is holding a yellow helmet. Another person is standing further back wearing a black shirt and jeans. Above the train tracks, there is a sign that says \"\u6a19\u6e96\u5316\". To the right of the sign, there is a yellow and blue billboard. The background shows a grey sky and a green hedge on the left side of the image.", - "id": 27294 - }, - { - "image_path": "G:\\images\\combined\\001209_jpg.rf.57fbcc9bead21581140a36c2c7859bab.jpg", - "response": "A man is working on a power line in the mountains. He is on a wooden ladder and is wearing a blue shirt and grey pants. He has a tool belt around his waist and is wearing a hard hat. The power lines are black and run in a series of lines up and down the mountain. There is a small village below the man with white houses and grey roofs. The sky is blue and there are a few clouds. The trees around the man are green and tall.", - "id": 27295 - }, - { - "image_path": "G:\\images\\combined\\001210_jpg.rf.b5d7950697b2b20bb690710bceea2cdf.jpg", - "response": "A man wearing a white hard hat is working on a building. He is standing on a platform that is surrounded by scaffolding. The man is wearing a yellow shirt and jeans.", - "id": 27296 - }, - { - "image_path": "G:\\images\\combined\\001212_jpg.rf.eb57682b7d31678240bf284b35f19c3a.jpg", - "response": "A construction site with many steel bars and a worker in the background.", - "id": 27297 - }, - { - "image_path": "G:\\images\\combined\\001214_jpg.rf.8dde0a6505bb524a7b4b3ce44413dfda.jpg", - "response": "The image shows three workers in blue and yellow hard hats working on a red metal structure. They are all crouched down and focused on their task. The leftmost worker is wearing a grey hard hat and appears to be cutting something with a pair of pliers. The middle worker is wearing a white hard hat and appears to be holding something. The worker on the right is wearing a yellow hard hat and is working on the red metal structure. The workers are surrounded by small rocks and debris.", - "id": 27298 - }, - { - "image_path": "G:\\images\\combined\\001215_jpg.rf.7881aac0c23f7bb9c6d08b2a95b688f2.jpg", - "response": "The image shows a construction site with several workers in orange jackets and safety hats. They are working on a foundation, building a structure with concrete and steel reinforcement bars. The workers are standing on the foundation, which has wooden beams to support it. There is a sign in the background that says \"\u89c4\u7a0b\u64cd\u4f5c \u63a7\u5236\u597d\", which likely means \"Standard Operating Procedure, Control Well\". The photo is taken from a side angle, showing the workers and their work in detail.", - "id": 27299 - }, - { - "image_path": "G:\\images\\combined\\001216_jpg.rf.797d105dc447cbc1d66be164408634d1.jpg", - "response": "A man and woman standing next to each other with hard hats on.", - "id": 27300 - }, - { - "image_path": "G:\\images\\combined\\001217_jpg.rf.72304ee5892c0ac93a429c1dd54c2aac.jpg", - "response": "A man in a hard hat is on a ladder, working on a power line. Another man is standing in the water, holding a rope. They are in a flooded street.", - "id": 27301 - }, - { - "image_path": "G:\\images\\combined\\001218_jpg.rf.1c2c4d52ede336370b4c88279050798a.jpg", - "response": "A man in a blue jumpsuit and blue hat is standing in a dark room. He is looking at a machine with many wires and switches. There are other people in the room, but they are mostly obscured by the machine. The walls of the room are concrete and there is a rug on the floor.", - "id": 27302 - }, - { - "image_path": "G:\\images\\combined\\001219_jpg.rf.156dadd78b9d07567ba5480ccd2337e1.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are working on a large concrete slab and one of them is pouring concrete onto the rebar grid.", - "id": 27303 - }, - { - "image_path": "G:\\images\\combined\\001220_jpg.rf.64c8701f986ddd95406e5ca876c16391.jpg", - "response": " Two men(401,394),(512,896)(501,444),(604,929) standing in the middle of a railway tunnel", - "id": 27304 - }, - { - "image_path": "G:\\images\\combined\\001221_jpg.rf.72437ca691b96bfa528be6c3d7eade56.jpg", - "response": "A group of men in hard hats and work clothes are pulling on a rope. They are in a yard with a brick wall to the left and some trees and brush to the right.", - "id": 27305 - }, - { - "image_path": "G:\\images\\combined\\001223_jpg.rf.215c05dddd5d8522948ade1065ef8134.jpg", - "response": " Firefighters(483,221),(634,912)(50,331),(217,995)(727,358),(797,752) are working to put out a fire in the jungle", - "id": 27306 - }, - { - "image_path": "G:\\images\\combined\\001224_jpg.rf.9156cb943740d3fcf0f80a2ea6618acb.jpg", - "response": "The image shows two workers in red at a construction site. They are wearing hard hats and one of them is holding a large orange pipe. They are standing next to a large concrete structure or form that has rebar sticking out of it. In the background, there is a banner that says \"\u5be6\u73fe\u5168\u8fc7\u7a0b\u5b89\u5168\u751f\u7522\" which translates to \"\u5b9e\u73b0\u5168\u8fc7\u7a0b\u5b89\u5168\u751f\u4ea7\" in English. The scene appears to be taking place on a bridge or a walkway.", - "id": 27307 - }, - { - "image_path": "G:\\images\\combined\\001225_jpg.rf.973ef205b724a7eac7a400e84cc5da67.jpg", - "response": "A group of men in orange work clothes and hard hats are working on a pole.", - "id": 27308 - }, - { - "image_path": "G:\\images\\combined\\001226_jpg.rf.51c0ee12496f9948fbaece18320a08d7.jpg", - "response": "A group of people walking down a street.", - "id": 27309 - }, - { - "image_path": "G:\\images\\combined\\001227_jpg.rf.a65e46eeda94dbca9c9778d7804f263b.jpg", - "response": "A group of men standing in front of a bus.", - "id": 27310 - }, - { - "image_path": "G:\\images\\combined\\001228_jpg.rf.6ed1d9789757d14a77ee56a98303a323.jpg", - "response": "A factory with multiple workers and machines.", - "id": 27311 - }, - { - "image_path": "G:\\images\\combined\\001230_jpg.rf.4a961dbf1e3256aa3cb721060e6ee2b9.jpg", - "response": "A man in a yellow hard hat is standing in the middle of a large tunnel. He is wearing red pants and a brown shirt. He is holding a flashlight and appears to be looking up. The tunnel is made of concrete and curves in on itself. There are lights on the ceiling of the tunnel and a circular light is on the right side of the tunnel.", - "id": 27312 - }, - { - "image_path": "G:\\images\\combined\\001231_jpg.rf.237987736b659a1a20989c5198cc9a57.jpg", - "response": "a person in a white hard hat and glasses", - "id": 27313 - }, - { - "image_path": "G:\\images\\combined\\001232_jpg.rf.bbbeeed164f3b2716189a846e23ebc54.jpg", - "response": "In the image two workers are on a ladder working on a telephone pole.", - "id": 27314 - }, - { - "image_path": "G:\\images\\combined\\001233_jpg.rf.80b2fe0d2e49262755b6fb44db39511f.jpg", - "response": "In the image there are several men wearing hard hats, one man is kneeling down and using a blow torch, another man is holding a cell phone to the left of the first man. To the right of the first man a yellow sign with black Chinese characters can be seen. In front of the men and the yellow sign is a red rug. To the right of the men is a large green metal machine.", - "id": 27315 - }, - { - "image_path": "G:\\images\\combined\\001234_jpg.rf.e723ee4605af388561b224b4c37a4c4c.jpg", - "response": "A man wearing a green hard hat and a yellow safety vest is looking at blueprints in a building that is under construction.", - "id": 27316 - }, - { - "image_path": "G:\\images\\combined\\001235_jpg.rf.e541cc1ceebc18d8bac9e84d0e891eb6.jpg", - "response": "A group of people standing in front of a blue and white building.", - "id": 27317 - }, - { - "image_path": "G:\\images\\combined\\001236_jpg.rf.9d45705d988ed81c74c65755d8980dc1.jpg", - "response": "In the image two workers are seen wearing yellow helmets and are in the process of installing a precast concrete slab. The wall on the left is made of steel and is seen in the process of getting constructed. The workers are also seen using some tools like a rope and a hook.", - "id": 27318 - }, - { - "image_path": "G:\\images\\combined\\001237_jpg.rf.03f48ef5842b8e2e6cf19c58f0bab08d.jpg", - "response": "A group of people standing around talking. Some of the people are wearing hard hats. In the background is construction taking place.", - "id": 27319 - }, - { - "image_path": "G:\\images\\combined\\001238_jpg.rf.7a628f96249aec37cba173ef01c1decf.jpg", - "response": "The image shows three men working on a power box. They are standing on a ladder, with two of them wearing hard hats and one of them wearing a red hat. The men are focused on the task at hand, and there are a few pairs of hands visible in the image, likely assisting with the work. The power box is grey and black, and there are several wires and cables attached to it and running in different directions. The sky above them is blue with some clouds.", - "id": 27320 - }, - { - "image_path": "G:\\images\\combined\\001239_jpg.rf.63b9fa00982c9fd4dc6e3b9b1de8eb6f.jpg", - "response": "A group of men in red uniforms are working on a power box on a pole.", - "id": 27321 - }, - { - "image_path": "G:\\images\\combined\\001240_jpg.rf.f2eca98748bf9a8b20a0adf4c52416fc.jpg", - "response": "A construction site with a building under construction in the background.", - "id": 27322 - }, - { - "image_path": "G:\\images\\combined\\001241_jpg.rf.46b6e23c077782820a2fce06623e1b4d.jpg", - "response": "A worker in yellow helmet is welding a steel pipe.", - "id": 27323 - }, - { - "image_path": "G:\\images\\combined\\001242_jpg.rf.1e4158846848608677f3d619a59c75b1.jpg", - "response": "A worker in a yellow hard hat is standing in a large circular hole in a white bridge. The bridge has a green netting over it. The worker is holding a tool in his hand.", - "id": 27324 - }, - { - "image_path": "G:\\images\\combined\\001243_jpg.rf.240136cfb87ce72674449714b684a13b.jpg", - "response": "The image shows a group of rescue workers carrying a person on a stretcher. The rescue workers are wearing orange uniforms and white helmets. In the background, there is a white and red ambulance. The scene appears to be taking place on a construction site. There are also several other people standing around, some of them appear to be onlookers, while others may be involved in the rescue operation.", - "id": 27325 - }, - { - "image_path": "G:\\images\\combined\\001245_jpg.rf.6c0b2f3969efd352a339ca9468c44235.jpg", - "response": "A group of men working on a construction site at night.", - "id": 27326 - }, - { - "image_path": "G:\\images\\combined\\001246_jpg.rf.5bb6fb3ced52cce40951be4ef4fe74f7.jpg", - "response": "In the image, a group of workers are seen pulling a rope to tie a large ship named Xing Hua to a dock. The ship is large and brown in color. The workers are wearing orange and yellow hard hats and blue jumpsuits. One of the workers is seen pulling a rope while the others look on. The sky is blue with a few clouds in the distance. The ship has the words \"HKG\" on it, indicating it is from Hong Kong.", - "id": 27327 - }, - { - "image_path": "G:\\images\\combined\\001248_jpg.rf.d552ad17b837e8154a50b60dd9fa4eb0.jpg", - "response": "In the image there are three workers wearing blue and yellow work clothes and yellow and red helmets. They are holding a large pile of black hoses and preparing to drill into the ground. In the background, there is a truck.", - "id": 27328 - }, - { - "image_path": "G:\\images\\combined\\001249_jpg.rf.316b4a5cbf8e7f45f54a5f6b2b8de9c1.jpg", - "response": "A man in a blue helmet and black jacket is on a yellow ladder, working on power lines.", - "id": 27329 - }, - { - "image_path": "G:\\images\\combined\\001250_jpg.rf.ad37b129ef1ef9200851b5ab45129011.jpg", - "response": "A worker repairs a power line in a flooded area in Shanghai, China, 1 July 2012. Shanghai has been hit by the heaviest rainfall in 50 years, local media reported. The continuous heavy rain has caused serious waterlogging in many areas of the city. The municipal authorities have deployed all available resources to deal with the disaster. They have opened 10 floodgates and 182 water outlets to relieve the water pressure on the city's main drainage system. So far, no deaths have been reported. According to local media, the city has invested over 100 million yuan (USD 15.6 million) in anti-flood measures this year. This includes the construction of 10 large-scale flood storage basins and the improvement of drainage systems. The municipal government has also set up 24-hour flood control centers in key areas to monitor the weather and water levels. The continuous heavy rain is expected to last until 3 July, local media reported.", - "id": 27330 - }, - { - "image_path": "G:\\images\\combined\\001251_jpg.rf.5d6763ac620fdc5e3c4db688e7525d66.jpg", - "response": "A group of workers in green uniforms are working on a large metal cylinder. The metal cylinder is white and very tall, standing on a steel pillar. The workers are wearing white helmets and black uniforms. One worker is in the middle of the metal cylinder, another worker is on the left side of the metal cylinder, and the last worker is on the right side of the metal cylinder. They seem to be working hard.", - "id": 27331 - }, - { - "image_path": "G:\\images\\combined\\001252_jpg.rf.ca4dca390b6517397a39620588eada92.jpg", - "response": "A man in a hard hat standing on a metal platform.", - "id": 27332 - }, - { - "image_path": "G:\\images\\combined\\001253_jpg.rf.86fd2ad0e41d0c3a67db8e72ef8b8df1.jpg", - "response": "In the image there are two construction workers wearing blue and yellow work clothes and yellow helmets. They are working on a bridge, one of them is using a red and yellow tool belt and is holding a large saw while cutting through a brick structure. The other worker is bending over and using a blue tool to work on the structure. The sky is blue and there are a few clouds. In the background there is a building and a car on the road.", - "id": 27333 - }, - { - "image_path": "G:\\images\\combined\\001254_jpg.rf.cf1db7155014a0764ade2c14a875712e.jpg", - "response": "The image shows two workers in green uniforms and blue helmets who are repairing an electricity meter on the side of a tall building. The workers are standing on a small platform, with one of them using a tool to fix the meter. The building is a multi-storey residential one, and there are several other electricity meters attached to the building.", - "id": 27334 - }, - { - "image_path": "G:\\images\\combined\\001255_jpg.rf.13d16fb0895be6d17a7924ebdbb019fd.jpg", - "response": "A group of people in blue overalls and white hard hats are standing in a control room.", - "id": 27335 - }, - { - "image_path": "G:\\images\\combined\\001256_jpg.rf.d6debaef5cf5f1ebeac1f10e24a757af.jpg", - "response": "A group of men in hard hats watch a giant cave.", - "id": 27336 - }, - { - "image_path": "G:\\images\\combined\\001257_jpg.rf.6b403ed20b13769e39bdcbefe374a8e1.jpg", - "response": "A group of men wearing hard hats are walking down a street.", - "id": 27337 - }, - { - "image_path": "G:\\images\\combined\\001259_jpg.rf.6e9125224f89994f2d98e4fa92c877a0.jpg", - "response": "In the image there are three people, two of them are wearing blue work clothes and one is wearing a black outfit. They are all wearing blue hats. The person on the right is writing something in a notebook, the person in the middle is checking the insulators of the power equipment and the person on the left is setting up the equipment.", - "id": 27338 - }, - { - "image_path": "G:\\images\\combined\\001260_jpg.rf.86126de07d97beaa4d4707356c855381.jpg", - "response": "A man in a black jacket and white hard hat is standing on a ladder and touching a power line. He is surrounded by green trees and a grey sky.", - "id": 27339 - }, - { - "image_path": "G:\\images\\combined\\001261_jpg.rf.4526a946ab74156e90a7c71801927e4c.jpg", - "response": "In the image, a worker is fixing a power box while wearing a white shirt, orange safety belt and a blue helmet. The worker is also holding a tool in his right hand. The background is a dark room with a staircase.", - "id": 27340 - }, - { - "image_path": "G:\\images\\combined\\001263_jpg.rf.e0897cffd5f544c2e6ebc02482c9297a.jpg", - "response": "Men in blue and red jackets and khaki pants working on a construction site.", - "id": 27341 - }, - { - "image_path": "G:\\images\\combined\\001265_jpg.rf.142f4ca44a8f1d4935b264d02fe5a1e8.jpg", - "response": "In the image there are two people standing in a pit. The pit is surrounded by a green fence. The ground is made of dirt. There are wooden beams on the ground, some of them are placed on a metal grid.", - "id": 27342 - }, - { - "image_path": "G:\\images\\combined\\001266_jpg.rf.275777bbd845c04dbaf885c6bc2357cd.jpg", - "response": "The image shows three construction workers wearing orange vests and hard hats, working on a building. The building has a white roof with gray decorative elements in the shape of honeycombs. The workers are spread out across the roof, with one on the left, one in the center, and one on the right. They are engaged in various tasks, such as laying tiles or working with tools. The sky is a clear blue color.", - "id": 27343 - }, - { - "image_path": "G:\\images\\combined\\001267_jpg.rf.6d07356722b1cb6144a60edf7173c8ee.jpg", - "response": "A man is shirtless while working in a cave. He is wearing a yellow hard hat and is holding a green tool. He is standing in front of a large rock and there is a bicycle next to him.", - "id": 27344 - }, - { - "image_path": "G:\\images\\combined\\001268_jpg.rf.68b16a6462350772044c4e49a3e7c697.jpg", - "response": "The image shows two workers in a confined space, such as a pipe or cistern, wearing blue overalls and yellow hard hats. They are using long-handled tools, such as shovels and crowbars, to dig through a layer of debris. The workers are standing in a shaft that is filled with debris, such as brick and concrete, and there is a ladder leaning against the wall to the right. The background is a red brick wall and the workers are facing each other.", - "id": 27345 - }, - { - "image_path": "G:\\images\\combined\\001269_jpg.rf.90835e0246dad9d6e18768eefb967778.jpg", - "response": "The image shows a construction site with several workers visible. They are working on a roof, which has been constructed but is not yet finished. The workers are engaged in various tasks, such as\u94a2\u7b4b\u7ed1\u624e\u548c\u6d47\u7b51\u6df7\u51dd\u571f. Some of them are wearing white helmets. In the background, there is a mountain.", - "id": 27346 - }, - { - "image_path": "G:\\images\\combined\\001270_jpg.rf.d13778ad11dadae4d0b10986310e7d34.jpg", - "response": "A pair of workers are seen in the image, with one standing and the other kneeling down next to a generator. They are wearing hard hats and are working on a road. The road is grey and made of asphalt. There is a red mountain in the background and a green mountain to the left. There is a yellow sign on the right side of the road and a white sign on the left. There is a patch of grass on the left side of the image and a rock on the right. The sky is grey and overcast.", - "id": 27347 - }, - { - "image_path": "G:\\images\\combined\\001271_jpg.rf.a06aeaf1b5fb4942cf973619fbbba221.jpg", - "response": "A construction worker wearing a yellow hard hat and a green vest is working on a construction site. He is standing over a large pile of dirt and concrete.", - "id": 27348 - }, - { - "image_path": "G:\\images\\combined\\001272_jpg.rf.36a709d5ecfa65b1e74f4cddefb63e56.jpg", - "response": "An electrician in an orange uniform working on some power lines.", - "id": 27349 - }, - { - "image_path": "G:\\images\\combined\\001274_jpg.rf.e0d3dfa828a257598ec22c64f18a36e5.jpg", - "response": "A man with a yellow hard hat and a mask is reaching into a hole in the ground. Another man with a yellow hard hat is looking at the man with the mask.", - "id": 27350 - }, - { - "image_path": "G:\\images\\combined\\001276_jpg.rf.2b35491c1464d929ac18ee3b4590a1b1.jpg", - "response": "In the image there are two men dressed in high visibility clothing and orange hard hats standing in front of a large grey gas holder. They are both holding a tablet and appear to be discussing something on the screen. The gas holder is a large round structure with a metal framework extending up from it. This metal framework also supports several white storage tanks. The sky is a mix of light blue and white clouds.", - "id": 27351 - }, - { - "image_path": "G:\\images\\combined\\001278_jpg.rf.95ceb988ed4af6c9583aa01a057e7651.jpg", - "response": "A group of men in hard hats are standing in a room that has unfinished walls and floor. They are talking to a police officer. The officer is also wearing a hard hat. One of the men is holding a blue folder.", - "id": 27352 - }, - { - "image_path": "G:\\images\\combined\\001279_jpg.rf.f966a8c447cf4d372790717b997319b0.jpg", - "response": "a construction worker wearing a yellow hat and a orange and yellow vest", - "id": 27353 - }, - { - "image_path": "G:\\images\\combined\\001280_jpg.rf.1732da40eef903b513d04c1ed2949505.jpg", - "response": "In the image two men are talking to each other on a construction site. One man is standing on the left wearing a yellow high visibility vest and a white helmet. The other man is standing on the right also wearing a yellow high visibility vest and a white helmet. Between the two men a orange excavator and a yellow dump truck are parked. The sky is overcast.", - "id": 27354 - }, - { - "image_path": "G:\\images\\combined\\001281_jpg.rf.f0d1f95aa86bd83752bfebb044237176.jpg", - "response": "Three men(110,306),(366,997)(420,344),(592,997)(260,327),(418,997) standing under a metal structure", - "id": 27355 - }, - { - "image_path": "G:\\images\\combined\\001282_jpg.rf.a82fa1c35e6d948779c98049ed67f5e7.jpg", - "response": "A group of people walking down a street holding up several umbrellas.", - "id": 27356 - }, - { - "image_path": "G:\\images\\combined\\0012836b7cb7e1a8.jpg", - "response": "A man standing at a podium with several people standing behind him. They are all holding signs and flags.", - "id": 27357 - }, - { - "image_path": "G:\\images\\combined\\001283_jpg.rf.1e78724d8abb5d2ae4dbed00a3ebd870.jpg", - "response": "A man wearing a yellow vest and helmet is leaning on a wooden ladder.", - "id": 27358 - }, - { - "image_path": "G:\\images\\combined\\001284_jpg.rf.eb3c3de53ad61e4969249e9d7c403894.jpg", - "response": "A building in a city.(369,106),(517,434)", - "id": 27359 - }, - { - "image_path": "G:\\images\\combined\\001285_jpg.rf.df7fab32a85d92ffe86794c082d194a2.jpg", - "response": "A man in a yellow jacket and orange hard hat is looking at a large yellow floating structure in the water. The word \"\u6b66\u8239\" is written on the back of the man's jacket. There are several other people visible in the image, but they are too small to be seen clearly. There are also several boats in the water.", - "id": 27360 - }, - { - "image_path": "G:\\images\\combined\\001286_jpg.rf.aa4a0dd3d66e69d20db18175542d9130.jpg", - "response": "A group of workers are working on a train track.", - "id": 27361 - }, - { - "image_path": "G:\\images\\combined\\001287_jpg.rf.06a66e9eb621ca52912553c0dd586125.jpg", - "response": "The image shows two construction workers dressed in orange safety jackets and helmets, standing on a construction site. They are both holding a clipboard with a blueprint on it. In the background, there is a tower crane. The sky is blue and cloudless.", - "id": 27362 - }, - { - "image_path": "G:\\images\\combined\\001288_jpg.rf.74b7acf215eaa7b173067d8d89cb6a7f.jpg", - "response": "A construction worker in a pink shirt and red hard hat is holding a long metal pole and is in the process of attaching it to a building. The pole is slightly bent and the worker is wearing work gloves. There is a pile of wood in the background.", - "id": 27363 - }, - { - "image_path": "G:\\images\\combined\\001289_jpg.rf.fa8067387428ab63447d4b93e88a0f81.jpg", - "response": "A couple of workers are standing on a ladder on a power line.", - "id": 27364 - }, - { - "image_path": "G:\\images\\combined\\001290_jpg.rf.c68f1050330ad4bc17a278a9b2c743ce.jpg", - "response": "A group of workers are constructing a bridge.", - "id": 27365 - }, - { - "image_path": "G:\\images\\combined\\001292_jpg.rf.aa2a9a9e5682e848929ab67562cf4cb3.jpg", - "response": "A group of people standing around a large metal structure.", - "id": 27366 - }, - { - "image_path": "G:\\images\\combined\\001293_jpg.rf.017891d511a6dd57911a310862f5a7bd.jpg", - "response": "A construction site with two people working. There are two green machines in the foreground and a cityscape in the background. There are also two buildings under construction in the background.", - "id": 27367 - }, - { - "image_path": "G:\\images\\combined\\001294_jpg.rf.5b7d17136ba77ca944b0dbdc91d37475.jpg", - "response": "A group of workers are working on some power lines.", - "id": 27368 - }, - { - "image_path": "G:\\images\\combined\\001295_jpg.rf.a679d5fa05164043dcb44481041390f3.jpg", - "response": "A man wearing a yellow hard hat, yellow vest, and smiling at the camera. He is standing in front of a construction site with a large yellow tractor with a long arm and bucket. There are several red bricks laying on the ground and a white truck and a brown car are parked in the background.", - "id": 27369 - }, - { - "image_path": "G:\\images\\combined\\001296_jpg.rf.82b81a171fa74d253d33f5a1cbde829b.jpg", - "response": "A group of people working on a ship that is in the process of being built.", - "id": 27370 - }, - { - "image_path": "G:\\images\\combined\\001297_jpg.rf.dab09d1313dced24eefd582057c690e5.jpg", - "response": "In the image two workers are seen working on a large metal cylinder. The metal cylinder is grey in color and is seen from the top. It has a large circular opening at the top. The workers are wearing blue color helmets. One of the worker is seen on the left side of the image and the other one is on the right side of the image. Both of them are wearing blue color uniforms. One of the worker is seen cutting something with the help of a saw. The background of the image is green.", - "id": 27371 - }, - { - "image_path": "G:\\images\\combined\\001299_jpg.rf.7a56776af615291a09421b0af2e7793e.jpg", - "response": "In the image there is a construction site with a single worker visible. The worker is standing on top of a wooden framework which looks like it could be a scaffold or the framework for a building. The worker is wearing a yellow hard hat and is positioned at the center of the image. The background is a light grey sky.", - "id": 27372 - }, - { - "image_path": "G:\\images\\combined\\001300_jpg.rf.b9daeddfe30044df7b26d48b501b3042.jpg", - "response": "A construction site with a worker in the foreground carrying a bunch of steel pipes. In the background there is a partially constructed building with a green net on it. There is also a man walking in the background.", - "id": 27373 - }, - { - "image_path": "G:\\images\\combined\\001301_jpg.rf.9b3f86212b34135a496f404549d6fd41.jpg", - "response": "A construction site with a concrete mixer pouring concrete into a large steel rebar frame.", - "id": 27374 - }, - { - "image_path": "G:\\images\\combined\\001302_jpg.rf.81a481b2e279412223aac79c15bc101f.jpg", - "response": "The image shows a group of men working on a power line. There are four men in the picture, three of them are wearing blue jumpsuits and yellow hard hats, and the man on the far left is wearing a red hard hat and a blue jumpsuit. They are all holding onto a rope that is attached to a power line. The background shows a room with a window and a motorcycle parked in front of it.", - "id": 27375 - }, - { - "image_path": "G:\\images\\combined\\001303_jpg.rf.32686961ad762a32acce1ea13dbfd7eb.jpg", - "response": "Men standing on a dirt road(107,126),(629,993)", - "id": 27376 - }, - { - "image_path": "G:\\images\\combined\\001304_jpg.rf.cbee2cd2e0a3ef8d0687d765b135df5b.jpg", - "response": "A group of people standing around and talking to each other.", - "id": 27377 - }, - { - "image_path": "G:\\images\\combined\\001305_jpg.rf.af41b8c425bc325e1728aea52f15c769.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 27378 - }, - { - "image_path": "G:\\images\\combined\\001306_jpg.rf.ed584e0b671803b93e5be3da3b15eaac.jpg", - "response": "A worker is sitting on a metal box while holding a device.", - "id": 27379 - }, - { - "image_path": "G:\\images\\combined\\001307_jpg.rf.57a31fa57a3bacadbb14f80fae27b805.jpg", - "response": "A male construction worker looking out a window.", - "id": 27380 - }, - { - "image_path": "G:\\images\\combined\\001308_jpg.rf.f45b12aa628b60cb089d88a03ea2db36.jpg", - "response": " Two men(204,417),(342,748)(514,371),(590,683) are working on a construction site.", - "id": 27381 - }, - { - "image_path": "G:\\images\\combined\\001309_jpg.rf.d53879b2f4f9da35db55be513bdde0f6.jpg", - "response": "A man wearing a hard hat and work clothes is welding two pieces of metal together. He is standing on a platform and holding a wire in his hand. The metal pieces are placed on the platform and the man is working on them.", - "id": 27382 - }, - { - "image_path": "G:\\images\\combined\\00130c2588695b00.jpg", - "response": "A bottle of wine with a label that says \"Life is to live\" on the back.", - "id": 27383 - }, - { - "image_path": "G:\\images\\combined\\001310_jpg.rf.8af1b2e455727ddf86125436fdeb3262.jpg", - "response": "a group of men walking in front of a building under construction", - "id": 27384 - }, - { - "image_path": "G:\\images\\combined\\001311_jpg.rf.5242199d3384acf84f4a06d95c6a15c3.jpg", - "response": "The image shows a group of people sitting around a table. There are several men and one woman in the scene. They are all wearing jackets and sweaters, indicating that the weather is likely cool. There are two bottles of water on the table, one near each end. A cell phone is also visible on the table. The people are engaged in a discussion or listening to a speaker, as indicated by their body language.", - "id": 27385 - }, - { - "image_path": "G:\\images\\combined\\001312_jpg.rf.4fa69bcf6ef53d535d061a1a0e76b6db.jpg", - "response": "A man wearing a yellow hard hat and a brown shirt is working on a wooden structure. He is wearing blue jeans and a black belt with a silver buckle. He is holding a tape measure in his right hand and a cell phone in his left hand. He is standing under a structure that appears to be a wooden frame, possibly for a house, with blue sky and clouds visible through the structure.", - "id": 27386 - }, - { - "image_path": "G:\\images\\combined\\001314_jpg.rf.a57eb678e1c8d5f830ab8f0e25ba7f16.jpg", - "response": "A group of men standing around a factory.", - "id": 27387 - }, - { - "image_path": "G:\\images\\combined\\001315_jpg.rf.7145887d82022d11b11c01fac050960e.jpg", - "response": "A group of people wearing hard hats sitting on a construction site drinking water.", - "id": 27388 - }, - { - "image_path": "G:\\images\\combined\\001316_jpg.rf.e9559d1677b0736855e966b9a068bedb.jpg", - "response": "A man wearing a hard hat and a striped shirt is pushing a wheelbarrow full of bricks. He is smiling and has a yellow hard hat on.", - "id": 27389 - }, - { - "image_path": "G:\\images\\combined\\001318_jpg.rf.76a0ce9a1462f3ee172891d543e85dc8.jpg", - "response": "A construction worker and a manager looking at a blueprint on the hood of a truck.", - "id": 27390 - }, - { - "image_path": "G:\\images\\combined\\001319_jpg.rf.57a5b9edd85bf6ddc718f533e35c8bd6.jpg", - "response": "A worker is seen in the image making adjustments to a metal grid on the right hand side of the image. The metal grid is being used to reinforce a bridge that is under construction. The bridge is located in the background of the image and is made up of multiple levels. The worker is wearing a yellow hard hat and camouflage pants. They are holding a tool in their right hand that is used to make the adjustments to the metal grid. The worker is standing on the ground and the sky is blue in the background.", - "id": 27391 - }, - { - "image_path": "G:\\images\\combined\\001320_jpg.rf.3146d9c0ca1c94e22e685ac7531e31dc.jpg", - "response": "A man wearing a yellow hard hat standing on a wooden structure with blue sky in the background.", - "id": 27392 - }, - { - "image_path": "G:\\images\\combined\\001321_jpg.rf.ae64b3a87e17abd307c1b97bd0563426.jpg", - "response": "An air conditioning repairman is showing his coworker something on the side of an air conditioning unit.", - "id": 27393 - }, - { - "image_path": "G:\\images\\combined\\001322_jpg.rf.80fbe25f7ba3e8862c9eec0c7ecb741e.jpg", - "response": "A worker in a yellow hard hat is using a tool to open a blue recycling bin. The bin is located on the left side of the worker and has a yellow lid. There are two other recycling bins located on the right side of the worker, one on the top of the other. In the background, there is a yellow and white recycling bin and a scooter.", - "id": 27394 - }, - { - "image_path": "G:\\images\\combined\\001324_jpg.rf.fca7c308871abc74b321ec632485992a.jpg", - "response": "a man on a ladder working on a power line", - "id": 27395 - }, - { - "image_path": "G:\\images\\combined\\001325_jpg.rf.8e85ff138270a6655f7fc7f8fb1bf4ca.jpg", - "response": "In the image there are two workers in green uniforms and blue helmets, they are installing a white pole in the ground. The ground where the workers are working is covered with brown soil. On the right side of the image, there is a truck.", - "id": 27396 - }, - { - "image_path": "G:\\images\\combined\\001326_jpg.rf.b75b8ac197474ee91ba0ca9880f46e83.jpg", - "response": "The image shows a group of six men standing on a construction site, wearing hard hats and looking at a piece of paper. The paper is marked with a few lines and the thumb of one of the men. The men are standing in front of a large building that is under construction. There are two cranes operating in the background. The sky is blue with a few white clouds.", - "id": 27397 - }, - { - "image_path": "G:\\images\\combined\\001327_jpg.rf.f46258698ca4700b9e5d3994f7d61a9d.jpg", - "response": "A group of men are standing under umbrellas.", - "id": 27398 - }, - { - "image_path": "G:\\images\\combined\\001328_jpg.rf.ab99c1558e9d6724c5b3c3369d112f83.jpg", - "response": "In the image there is a man wearing a white helmet and a green shirt. He is holding a large drill and has a dirty face. The drill is attached to a yellow pipe. The man is in a tunnel and there are two lights on the right side of the image.", - "id": 27399 - }, - { - "image_path": "G:\\images\\combined\\001329_jpg.rf.3b7f28b99750d3117dc545a693d0e4c4.jpg", - "response": "A man wearing a brown sweater and a yellow hard hat standing in front of two men wearing green and yellow safety jackets and yellow hard hats.", - "id": 27400 - }, - { - "image_path": "G:\\images\\combined\\001330_jpg.rf.575bac452127685c72866dfc31be1b00.jpg", - "response": "A man wearing a white mask, a yellow hard hat, and a blue vest.", - "id": 27401 - }, - { - "image_path": "G:\\images\\combined\\001331_jpg.rf.d3ac2301fffbfe84c73616e5a5f75b63.jpg", - "response": "A worker wearing a tool belt walks on a construction site.", - "id": 27402 - }, - { - "image_path": "G:\\images\\combined\\001332_jpg.rf.a0071975b353c627a3792de4b76207a7.jpg", - "response": "The image shows a group of construction workers working on a tunnel. The tunnel is a large, dark space with a cement floor. The workers are wearing blue uniforms and yellow helmets. They are using hoses to spray concrete onto the floor of the tunnel. There are rebar sticks scattered around the floor of the tunnel. The workers are standing in the tunnel, which is surrounded by cement walls.", - "id": 27403 - }, - { - "image_path": "G:\\images\\combined\\001333_jpg.rf.eed64e7bfad03387131915ed0f651064.jpg", - "response": "In the image there is a man wearing a red shirt and a blue helmet. He is holding several bricks in his hands and placing them on a pile. There are many other people in the background, some of them are carrying bricks as well. The sky is blue and there are a few clouds. In the distance there is a yellow balloon and a blue balloon floating in the air. There are also several other people standing around the area.", - "id": 27404 - }, - { - "image_path": "G:\\images\\combined\\001334_jpg.rf.621778196885aec324dbf28ef33eea08.jpg", - "response": "In the image there is a person wearing a yellow hard hat and blue coveralls. They are standing in front of a yellow truck and a large blue crane. The crane has a red and white striped counterweight at the end of its arm and is lifting a large blue shipping container. The sky is blue with some clouds.", - "id": 27405 - }, - { - "image_path": "G:\\images\\combined\\001335_jpg.rf.60a92dc65a58898c2e769eb06cb89970.jpg", - "response": "The image shows a group of people sitting around a white table. There are chairs around the table and a man is standing up speaking to the group. The people are wearing different types of shirts and the man speaking is wearing a tie. There are two TVs on the wall, one on the left and the other on the right. The TVs are turned on and there is a danger sign on one of them. The windows have blue frames and there are three of them.", - "id": 27406 - }, - { - "image_path": "G:\\images\\combined\\001336_jpg.rf.f41ccef570de5832ddb57ddc9f5f9104.jpg", - "response": "A construction worker in a red hard hat walking on the ground.", - "id": 27407 - }, - { - "image_path": "G:\\images\\combined\\001337_jpg.rf.60b8475273dd5bf50bfcb23e676ba755.jpg", - "response": "A man in a hard hat(729,337),(985,452) and camouflage uniform(508,478),(996,999) is standing in front of a large metal door. He is holding a tool and appears to be opening the door. There is a fire burning inside the metal container.", - "id": 27408 - }, - { - "image_path": "G:\\images\\combined\\001339_jpg.rf.8d6feb075aefee5bf5434834fb82fb39.jpg", - "response": "A group of workers standing in front of a building under construction.", - "id": 27409 - }, - { - "image_path": "G:\\images\\combined\\001340_jpg.rf.e29d753b0ede0f7fbfb8f399d7687249.jpg", - "response": "The image shows two men standing on a construction site. They are wearing red hats and are looking at a pile of steel bars. The steel bars are placed on the ground in a circle, with some tied together with yellow ropes. The background shows a roof with a grey tarp and a white wall. There are also some bags and other items on the ground. The words \"\u8c6b\u9f99\u673a\u68b0\u73b0\u573a\u56fe\" are written at the bottom in white.", - "id": 27410 - }, - { - "image_path": "G:\\images\\combined\\001341_jpg.rf.2e21e94d4f2287ad3e9c7d04b8c46eed.jpg", - "response": "The image shows two workers in blue hardhats and camouflage uniforms, one holding a large grey pipe and the other one standing behind him. They are both on a red platform which is placed on top of a large building. The sky is blue and there are a few clouds. In the distance, there is another building under construction with a lot of pillars and a blue roof. There are also a few cranes visible in the scene.", - "id": 27411 - }, - { - "image_path": "G:\\images\\combined\\001342_jpg.rf.86ea01fa109ea6969eeb3db8bd003391.jpg", - "response": "A group of men in business clothes are standing in a field. They are looking at a tree and the sky. Some of them are pointing at the tree. One man is wearing a grey suit. Another man is wearing a grey suit and a tie. A third man is wearing a black suit. A fourth man is wearing a black suit and a tie. A fifth man is wearing a black suit. A sixth man is wearing a black suit and a tie. A seventh man is wearing a black suit. A eighth man is wearing a black suit and a tie. A ninth man is wearing a black suit. A tenth man is wearing a black suit. A eleventh man is wearing a black suit. A twelfth man is wearing a black suit.", - "id": 27412 - }, - { - "image_path": "G:\\images\\combined\\001343_jpg.rf.70fcfad48ee6162b72248e40347ae37a.jpg", - "response": "An image of a man standing next to a piece of machinery. He is wearing a blue jacket with a black stripe, a orange hard hat and blue jeans. The man is smiling at the camera.", - "id": 27413 - }, - { - "image_path": "G:\\images\\combined\\001344_jpg.rf.5856fb31cfbf2d6ad4df0314e1f0642d.jpg", - "response": "In the image two workers are seen wearing blue helmets and black overalls. They are working on a power transformer which is grey in color. The transformer is located in a rural area with a few buildings seen in the background. The workers are focusing on their work and one of them is holding a screwdriver.", - "id": 27414 - }, - { - "image_path": "G:\\images\\combined\\001345_jpg.rf.02d011e7d2564329343ec26249c0b013.jpg", - "response": "a group of people standing under umbrellas", - "id": 27415 - }, - { - "image_path": "G:\\images\\combined\\001346_jpg.rf.f82b0746f3e5593a5175a2460b034663.jpg", - "response": "A construction worker in a yellow hard hat and neon orange vest is holding a large black hose. He is standing in a large underground tunnel. To the left of the worker is a sign that says \"6:00 AM, \u9ad8\u5065\u8de8\u8f66\u7ad9\".", - "id": 27416 - }, - { - "image_path": "G:\\images\\combined\\001347_jpg.rf.b99549429fbc643cff769d5163ca309f.jpg", - "response": " Construction workers(689,403),(772,683)(591,537),(655,914)(708,540),(802,957) at the construction site of the new hospital in Dushanbe", - "id": 27417 - }, - { - "image_path": "G:\\images\\combined\\001349_jpg.rf.f17526f8f4cf97c260128b3d727a0bb5.jpg", - "response": "A group of people wearing hard hats.", - "id": 27418 - }, - { - "image_path": "G:\\images\\combined\\001350_jpg.rf.947666fd0520848544680f6a8391d222.jpg", - "response": "A man in a suit is pointing to something in the distance, while several other men stand around him. They are all standing in front of a row of houses.", - "id": 27419 - }, - { - "image_path": "G:\\images\\combined\\001351_jpg.rf.5ac7dfcd0ccdf56cb128b3e056c383d8.jpg", - "response": "A man wearing a yellow vest and a hard hat with a light on top is holding a walkie talkie in a dark room.", - "id": 27420 - }, - { - "image_path": "G:\\images\\combined\\001352_jpg.rf.8bf0db4142292773b86ccb8b706a174b.jpg", - "response": "A worker is on a power pole, fixing some wires.", - "id": 27421 - }, - { - "image_path": "G:\\images\\combined\\001353_jpg.rf.b343385e9ae8e2b9d350b12562ac9045.jpg", - "response": "A man is carried on a stretcher by rescue workers in China.", - "id": 27422 - }, - { - "image_path": "G:\\images\\combined\\001354_jpg.rf.a6173dd2ba50b583d0039f3f11bc9d53.jpg", - "response": "A man in a black jacket and red hard hat is walking with another man in a white hard hat beside a construction site. There are several other people in the background of the image.", - "id": 27423 - }, - { - "image_path": "G:\\images\\combined\\001355_jpg.rf.0d6cb4b0eebd29446b78f89f8cf29e79.jpg", - "response": "A man in a black shirt and shorts is using a yellow tool to chip away at a large rock.", - "id": 27424 - }, - { - "image_path": "G:\\images\\combined\\001356_jpg.rf.2ee51654e706ced938bcd6cb3497b56e.jpg", - "response": "A group of men standing next to a building under construction.", - "id": 27425 - }, - { - "image_path": "G:\\images\\combined\\001359_jpg.rf.309af4856eee99a7a29ed70649312a17.jpg", - "response": "A worker is working on a power line in the snow.", - "id": 27426 - }, - { - "image_path": "G:\\images\\combined\\001360_jpg.rf.a14c54a6105806079e70c1fb4f969f40.jpg", - "response": "a group of men standing around a parking lot", - "id": 27427 - }, - { - "image_path": "G:\\images\\combined\\001361_jpg.rf.f519c96da3862ec0ccdc6baaa40ee465.jpg", - "response": "A construction worker and a helper are working on a wooden beam on a construction site. The worker is wearing a yellow helmet and a blue shirt with a white logo on the sleeve. The helper is wearing an orange helmet and a red shirt. They are both working on a wooden beam with blue sky in the background.", - "id": 27428 - }, - { - "image_path": "G:\\images\\combined\\001363_jpg.rf.108718030faf881ecd15d7c001c79473.jpg", - "response": "The image shows a scene of a school. In the foreground on the left, there is a man wearing a red shirt and black pants. To his right, there are three men standing in a row. The man on the left is wearing a red tie and the other two men are wearing yellow ties. All three are wearing name tags. In the background, there is a building with a sign that reads \"\u6f33\u6d66\u53bf\u4f5b\u6619\u4e2d\u5fc3\u5c0f\u5b66\". The man on the left is holding a cellphone in his hand.", - "id": 27429 - }, - { - "image_path": "G:\\images\\combined\\001364_jpg.rf.da873ee9c729dae7eb247ca87c1659b6.jpg", - "response": "A group of men working on a power line in a wooded area.", - "id": 27430 - }, - { - "image_path": "G:\\images\\combined\\001366_jpg.rf.ef7e83d183239859f72e503c4cc0129b.jpg", - "response": "A group of people working on a construction site pouring concrete", - "id": 27431 - }, - { - "image_path": "G:\\images\\combined\\001368_jpg.rf.1ccc027db6c70755638667a0488d8467.jpg", - "response": "A man in a red hat kneeling down in a green field.", - "id": 27432 - }, - { - "image_path": "G:\\images\\combined\\001369_jpg.rf.212465986c6d0f68f3e1b9f5d485477f.jpg", - "response": "In the image, a group of people are working together to excavate something from the ground. They are wearing hard hats and the man on the far left is holding a spade. The digging area is filled with dirt and there are trees in the background. The sky is white and it appears to be a bright day.", - "id": 27433 - }, - { - "image_path": "G:\\images\\combined\\001370_jpg.rf.590de34036cbd653d09667cb2f015693.jpg", - "response": "The image shows a factory worker in a blue and yellow uniform with a yellow hard hat and orange face mask standing inside a large metal structure that looks like the inside of a wire basket. The worker is holding a long metal bar and looking at it. The metal structure is made up of many metal rods that form a tunnel shape. There are other workers visible in the background, some wearing hard hats and one wearing a white helmet.", - "id": 27434 - }, - { - "image_path": "G:\\images\\combined\\001371_jpg.rf.e34a71d29c631abedf395959e9deec2d.jpg", - "response": "a man(383,282),(615,996) writing on a purple wall(1,4),(673,997)", - "id": 27435 - }, - { - "image_path": "G:\\images\\combined\\001372_jpg.rf.293426e87d7414f034ec0a2413e3d75c.jpg", - "response": "A woman wearing a red hard hat is pointing to a section of a wall. Another woman wearing a red hard hat is standing behind her.", - "id": 27436 - }, - { - "image_path": "G:\\images\\combined\\001373_jpg.rf.1448924b8d16316a757d077b5aad7524.jpg", - "response": "A worker in a red jacket and white helmet is standing next to a yellow pipe and a white gas tank. He is holding a red tool and is looking at the camera. To the right of the worker, there is a large blue machine with a yellow pipe connected to it. In the background, there is a white machine with a yellow pipe connected to it. The ground is covered with yellow sand.", - "id": 27437 - }, - { - "image_path": "G:\\images\\combined\\001375_jpg.rf.38308e5a6151be392798d330a51e1b78.jpg", - "response": "two men standing next to each other in a factory, smiling at the camera. they are both wearing orange hard hats and blue work clothes with orange stripes. the one on the left has his arms crossed and is looking at the camera, while the other has his hands folded and is looking to the side. there are train tracks on the left side of the image and debris on the right side.", - "id": 27438 - }, - { - "image_path": "G:\\images\\combined\\001376_jpg.rf.15d7d0288dd8496f4bfc77623f6d5b1d.jpg", - "response": "A man wearing a yellow jacket and a helmet is using a tool to manipulate a large piece of metal that is on fire. The metal is being melted and sparks are flying off of it.", - "id": 27439 - }, - { - "image_path": "G:\\images\\combined\\001377_jpg.rf.53e21f6d6ba8100cd1f01067972fe486.jpg", - "response": "The image shows two men working on a rooftop, applying a liquid to the surface. The liquid appears to be flowing over the surface, and the men are using long brushes to apply it. The surface they are working on is a large, flat concrete area.", - "id": 27440 - }, - { - "image_path": "G:\\images\\combined\\001378_jpg.rf.1abe27be4094ddcf27a21b59719c70e5.jpg", - "response": "In the image, two people are crouched down in a large\u96a7\u9053. They are both wearing yellow hard hats and work clothes. The person on the left is holding a flashlight while the other person is looking up at the roof of the tunnel. The floor of the tunnel is covered in what looks like brown dirt.", - "id": 27441 - }, - { - "image_path": "G:\\images\\combined\\001379_jpg.rf.4d9aa026d8437401ec9fd6cc3088e2a2.jpg", - "response": " Three workers(30,204),(153,359)(300,207),(397,343)(834,150),(926,306) are standing behind a large wall(2,284),(996,997)", - "id": 27442 - }, - { - "image_path": "G:\\images\\combined\\00137de5b77904f3.jpg", - "response": "In the image, there is a flyer for a party called \"Live Free\" with a girl's face on it. The text on the flyer is in blue and white, and it says \"Live Free\" in a sticker-like font. The flyer is on a dark blue background with a gradient effect. There are also two other flyers in the background, which are slightly transparent and have a similar design to the main flyer.", - "id": 27443 - }, - { - "image_path": "G:\\images\\combined\\001380_jpg.rf.3a1bcd3ce1d909845eb4c5abe14ac06e.jpg", - "response": "A worker in a red hard hat and yellow vest points to a power line.", - "id": 27444 - }, - { - "image_path": "G:\\images\\combined\\001382_jpg.rf.d5661f8e4399162ed25cee70f916d8bd.jpg", - "response": "a group of men walking", - "id": 27445 - }, - { - "image_path": "G:\\images\\combined\\001383_jpg.rf.36a44bdda67f59ae91fd88581e22688a.jpg", - "response": "A man in a black uniform standing in the street with a construction tool.", - "id": 27446 - }, - { - "image_path": "G:\\images\\combined\\001385_jpg.rf.0a1a7ef0b30da373e84fce602d4dd56f.jpg", - "response": "A group of eleven men wearing hard hats and work clothes are sitting in a row on a cement bench in a large, dark and possibly dirty industrial space. They are all looking at the camera.", - "id": 27447 - }, - { - "image_path": "G:\\images\\combined\\001386_jpg.rf.8f51a999f501cd6b4d9afc4392edba3c.jpg", - "response": "A group of four people standing in front of a construction site.", - "id": 27448 - }, - { - "image_path": "G:\\images\\combined\\001387_jpg.rf.f8b4e72c26c839e18e2568992b845b26.jpg", - "response": "A group of men working on a project.", - "id": 27449 - }, - { - "image_path": "G:\\images\\combined\\001388_jpg.rf.2c882e5c2f6bc52a8b829917d9b64a05.jpg", - "response": "a group of men standing in front of a fence", - "id": 27450 - }, - { - "image_path": "G:\\images\\combined\\001389_jpg.rf.f83e571aec0efde7c9caa443f02db45a.jpg", - "response": "Two men looking at blueprints, one talking on a cell phone.", - "id": 27451 - }, - { - "image_path": "G:\\images\\combined\\001390_jpg.rf.d3c8a0084e6b97332ba87762153a4942.jpg", - "response": "In the image two technicians are working on a electrical box. One man is holding a large red tool and the other man is hooking something up to the box. They are both wearing blue helmets and the man on the right is also wearing a white shirt.", - "id": 27452 - }, - { - "image_path": "G:\\images\\combined\\001391_jpg.rf.f24e801a3ba58bb43c69ad64699ea5e1.jpg", - "response": "A group of people standing next to a river.", - "id": 27453 - }, - { - "image_path": "G:\\images\\combined\\001392_jpg.rf.269956ad8cf5d94a78f0ac515f8aa08b.jpg", - "response": "A man wearing a yellow hard hat is sitting on a metal platform and cutting a metal pipe with a handheld torch. He is wearing a grey shirt and grey pants. He is wearing brown work boots. He is sitting next to a large metal wheel. In the background, there is a body of water and a lot of fog.", - "id": 27454 - }, - { - "image_path": "G:\\images\\combined\\001393_jpg.rf.33cdf0c1e049bf5cf625958bbb25484b.jpg", - "response": "A group of men working on a construction site.", - "id": 27455 - }, - { - "image_path": "G:\\images\\combined\\001394_jpg.rf.07808a4d4c7aace53b2d30da9daa68e2.jpg", - "response": "The image shows a construction site with several people working. There is a large truck in the background on the left side of the image. In the foreground, a large pipe is being lifted into place by a crane. The pipe is supported by several workers who are standing around it. The workers are wearing a variety of uniforms and gear, including hard hats, safety jackets, and boots. The sky is blue and cloudless in the background.", - "id": 27456 - }, - { - "image_path": "G:\\images\\combined\\001395_jpg.rf.bbbd402482e2325e581db6d831b72430.jpg", - "response": "This image is a photo of Kim Jong-un, the leader of North Korea, visiting a ship. He is wearing a black jacket and smiling. He is standing next to an individual who is not fully visible in the frame. The person who is partially visible is wearing a brown suit. Kim Jong-un is holding a clipboard with a pen in his hand. There is a book on a stand next to him. The ship appears to be a navy vessel.", - "id": 27457 - }, - { - "image_path": "G:\\images\\combined\\001396_jpg.rf.86e790523bddb5c887f5a8bcb860fb09.jpg", - "response": "A group of people standing in front of a building site wearing hard hats.", - "id": 27458 - }, - { - "image_path": "G:\\images\\combined\\001397_jpg.rf.b97b4e8a8657d8f4187a3ebfeee8e212.jpg", - "response": "A group of workers in blue and yellow are working on a bridge.", - "id": 27459 - }, - { - "image_path": "G:\\images\\combined\\001399_jpg.rf.2624a6ac2959ed49986d695312c14ce0.jpg", - "response": "A group of workers are working on a construction site. They are working on a building that has scaffolding around it. They are removing concrete with a jackhammer. One worker is using a yellow and red hard hat, another is wearing a yellow and orange vest, and the third is wearing a red hard hat and a yellow vest. They are all wearing blue jeans.", - "id": 27460 - }, - { - "image_path": "G:\\images\\combined\\0013a4847289b1e5.jpg", - "response": "A group of Hooters girls standing in a line with their hands above their heads.", - "id": 27461 - }, - { - "image_path": "G:\\images\\combined\\001400_jpg.rf.c473d212bec95d30505b7dfe0f023957.jpg", - "response": "A family consisting of a man, woman and two children are standing in front of a building that is under construction. They are all wearing hard hats.", - "id": 27462 - }, - { - "image_path": "G:\\images\\combined\\001401_jpg.rf.1b2eef444708aef539da98744b2fdd92.jpg", - "response": "In the image, two workers are doing some maintenance on a sidewalk. One of them is holding a red fire hydrant in his hands. They are standing on a construction site, which has some equipment, including a large truck, on it. The sky is overcast and there are some power lines in the background. The workers are wearing helmets for safety.", - "id": 27463 - }, - { - "image_path": "G:\\images\\combined\\001402_jpg.rf.93038f96fc686cc93a2d3c6250820c7d.jpg", - "response": "In the image there is a construction site with three people working. The person in the foreground is wearing a yellow helmet and a yellow vest and is holding a large brick. There are two other people in the background, one closer to the left and one closer to the right. They are both wearing yellow helmets and are working on the construction site. There is a lot of metal pipes and machinery in the foreground and a large pile of grey stones in the middle and to the right. The background is a white wall and a grey sky.", - "id": 27464 - }, - { - "image_path": "G:\\images\\combined\\001404_jpg.rf.1863acfa6de21c3564e5495ad75db24f.jpg", - "response": "The image shows a construction site for an underground subway. The photo is taken from above the construction site and looking down. There are several workers in blue shirts and yellow hard hats working on the site. They are working on the steel beams and concrete framework for the subway tunnel. The tunnel is wide and long, with several support beams running horizontally and vertically. The workers are spread out along the length of the tunnel, with some working closer to the foreground and others further away. The steel rebar is visible throughout the framework, with some pieces sticking out at angles. The workers are focused on their tasks, with some carrying tools and others working on the steel beams.", - "id": 27465 - }, - { - "image_path": "G:\\images\\combined\\001405_jpg.rf.c498655e8efef014fc3e7faa6a5c3fe6.jpg", - "response": "In the image, construction workers are working on a train station. There is a row of workers in yellow vests working on the train tracks. In the background, there are some buildings under construction.", - "id": 27466 - }, - { - "image_path": "G:\\images\\combined\\001406_jpg.rf.400ef9740da3f1a1a309a980eeaf983a.jpg", - "response": "A worker is using a pick ax to chip away at a rock. The worker is wearing a yellow hard hat and grey coveralls. The wall of the rock is a grey-yellow color and there are small rocks and dust all over the ground.", - "id": 27467 - }, - { - "image_path": "G:\\images\\combined\\001407_jpg.rf.b10c8d84d1bb97117ec8bd11e1cd10ab.jpg", - "response": "In the image, a man and a woman are sitting on a steel beam in an unfinished building. Both are wearing orange and blue coveralls and yellow hard hats. The woman is holding a orange hard hat in her hand and smiling at the man. The man is wearing a blue hard hat and has a smile on his face. They are both in the process of working on a construction site.", - "id": 27468 - }, - { - "image_path": "G:\\images\\combined\\001408_jpg.rf.f38aad3318030de359d57d0704190fce.jpg", - "response": "The image shows three men in red and grey uniforms, with one of them holding a clipboard, standing in a room and examining an electrical panel.", - "id": 27469 - }, - { - "image_path": "G:\\images\\combined\\001411_jpg.rf.a48a89f02686dac8eb0bd2b5ba92296b.jpg", - "response": "A man wearing a brown shirt and a yellow hat climbing a ladder attached to a power line pole.", - "id": 27470 - }, - { - "image_path": "G:\\images\\combined\\001412_jpg.rf.2626112d8441fb86e06c629252d47c00.jpg", - "response": "A man wearing a yellow hard hat and a blue and green vest is sitting on a metal rail. He is in front of a yellow crane and some scaffolding.", - "id": 27471 - }, - { - "image_path": "G:\\images\\combined\\001413_jpg.rf.f7d3baaff3cdddb6acda8b2c42c9db34.jpg", - "response": "A couple of workers fixing a power line.", - "id": 27472 - }, - { - "image_path": "G:\\images\\combined\\001414_jpg.rf.142cfe65c9a95927a7d2c9a9753d5019.jpg", - "response": "In the image, there is a factory scene where a worker is welding some steel. The factory floor is filled with multiple steel pipes of various sizes and shapes. The worker is located in the center of the image, wearing a grey shirt, a grey helmet, and orange gloves. They are welding a steel bar with sparks flying to the left. There is also a bench with a tool bag on the right side of the worker. In the background, there are several other steel pipes and a cabinet. The factory floor is a bit cluttered with steel items.", - "id": 27473 - }, - { - "image_path": "G:\\images\\combined\\001415_jpg.rf.c9b1c2cbb305ca3b46e84a32cbabbca4.jpg", - "response": "Firefighters(426,267),(802,966)(413,19),(623,675) cutting through a bamboo structure(2,10),(997,997)", - "id": 27474 - }, - { - "image_path": "G:\\images\\combined\\001416_jpg.rf.c220f4b2a8c7032802a0eee13b645c57.jpg", - "response": "An engineer wearing a hard hat and overalls is working on a machine.", - "id": 27475 - }, - { - "image_path": "G:\\images\\combined\\001417_jpg.rf.f9cfe6b4cfe8e26b6dbfe429e45ced90.jpg", - "response": "A man is handing another man a certificate in a storage room filled with boxes of goods.", - "id": 27476 - }, - { - "image_path": "G:\\images\\combined\\001418_jpg.rf.ebfe6ca04d4c82ae4c86193b6d3bdd51.jpg", - "response": "The image shows two workers in green and black uniforms and blue helmets, one of them is holding a large grey pipe and a drilling machine, and is looking at the camera, smiling. They are standing on a red platform which is next to a very tall building that is currently under construction. The sky is a clear blue and the cityscape in the background is grey with some buildings that have some colour, mainly white and brown.", - "id": 27477 - }, - { - "image_path": "G:\\images\\combined\\001419_jpg.rf.218ca042237a33f4581471f829f1ece7.jpg", - "response": "A group of people standing around a construction site.", - "id": 27478 - }, - { - "image_path": "G:\\images\\combined\\001420_jpg.rf.930fc89d907824ec16fcdc59d7088d85.jpg", - "response": "A man wearing a yellow hard hat is leaning against a brick wall. He is smiling and looking away from the camera. He is wearing a grey and white striped shirt.", - "id": 27479 - }, - { - "image_path": "G:\\images\\combined\\001421_jpg.rf.f7a42b5c99803ba5344f60c83928e5e2.jpg", - "response": "A construction site with multiple workers.", - "id": 27480 - }, - { - "image_path": "G:\\images\\combined\\001422_jpg.rf.22089ac5805a730b8be38b23cf4e9b2c.jpg", - "response": "A group of men standing in front of two buses.", - "id": 27481 - }, - { - "image_path": "G:\\images\\combined\\001423_jpg.rf.2216e37bde86c39a7aa31bf903418a7f.jpg", - "response": "The image shows a group of people standing in a tunnel, with some wearing yellow hard hats. In the tunnel, there is a large piece of construction equipment, a yellow and black bulldozer, sitting on tracks. The bulldozer is positioned in the middle of the tunnel, with people standing around it on all sides. Some people are standing closer to the bulldozer, while others are further away. Some people are also standing on the tracks, which have been laid out in the tunnel.", - "id": 27482 - }, - { - "image_path": "G:\\images\\combined\\001424_jpg.rf.3262973583808b6fa42652ef4c50d8df.jpg", - "response": "A construction site with multiple people working on different tasks.", - "id": 27483 - }, - { - "image_path": "G:\\images\\combined\\001425_jpg.rf.78ad0edc19f1c05b73abf2941fbda7d9.jpg", - "response": "A group of workers stand in a grey concrete tunnel. One man is using a level and prisms while another man is holding a device with a display screen. They are wearing hard hats and high visibility clothing.", - "id": 27484 - }, - { - "image_path": "G:\\images\\combined\\001426_jpg.rf.6c80d1eaa7b75375476efa809bf22bee.jpg", - "response": "Rescue workers carry a body of a victim on a stretcher after a landslide hit a residential area in Shuili town, Ludian county, Yunnan province, August 4, 2014. A strong earthquake hit Yunnan province on Wednesday, killing at least 394 people and injuring more than 11,000, state media reported. The magnitude 6.5 earthquake, which struck at 4:30 pm local time (0830 GMT), was the worst to hit the province in 44 years. REUTERS/China Daily (CHINA - Tags: DISASTER TPX IMAGES OF THE DAY)", - "id": 27485 - }, - { - "image_path": "G:\\images\\combined\\001427_jpg.rf.32a987e1eb901f71ab26917f98bca9f4.jpg", - "response": "A man in a yellow hard hat is crouched down next to a large pipe. He is wearing a blue shirt and has a white beard. He is looking at the contents of the pipe, which is filled with white wool. There is a large pile of sheepskin next to the pipe.", - "id": 27486 - }, - { - "image_path": "G:\\images\\combined\\001428_jpg.rf.047755e62026d3dc4e75531c30681af9.jpg", - "response": "In the image there are two workers in the foreground, one is wearing a red hard hat and the other is wearing a camo hard hat. They are working on a large anchor chain that is laid out on the ground in front of a large ship that is in the background. The ship is brown and black and is parked in a dry dock. There is a pile of dirt behind the ship and a yellow forklift is parked next to it. In the foreground there is a white bucket and a blue bucket, both of which have paint in them.", - "id": 27487 - }, - { - "image_path": "G:\\images\\combined\\001430_jpg.rf.333796af6a572262f0958e2c92b57d79.jpg", - "response": "A man in a yellow hard hat and plaid shirt is kneeling down and smiling at another man who is also kneeling down. They are both wearing jeans and hard hats. In front of them is a red and white pipe with a silver valve on it. There is a piece of wood propped up against the wall and a measuring tape is resting on it. The wall next to the men is unfinished concrete and there is a window to the left of them.", - "id": 27488 - }, - { - "image_path": "G:\\images\\combined\\001431_jpg.rf.177e3b93e1ab9cd7dc17c1014b865a6c.jpg", - "response": "A man in a yellow hard hat is sitting on the ground in front of a forklift. Another man in a yellow hard hat is sitting on the forklift. Both men are wearing yellow hard hats. The forklift is yellow and black. There is a large warehouse with wooden pallets stacked high on the walls.", - "id": 27489 - }, - { - "image_path": "G:\\images\\combined\\001432_jpg.rf.45d659831d121ce46456ba845e98664e.jpg", - "response": "A man wearing a yellow helmet is using a tool to dig through the ground. He is standing in a dark cave filled with rocks and debris. The room is filled with a lot of thick smoke.", - "id": 27490 - }, - { - "image_path": "G:\\images\\combined\\001433_jpg.rf.fe72f1116ce9790996f7aae13a266490.jpg", - "response": "a group of people standing in front of a red and white sign", - "id": 27491 - }, - { - "image_path": "G:\\images\\combined\\001435_jpg.rf.87f86265745771c241878ea6a7558508.jpg", - "response": "A worker is working in a mine, he is climbing a rock wall using a rope. He is shirtless and wearing a red hard hat.", - "id": 27492 - }, - { - "image_path": "G:\\images\\combined\\001436_jpg.rf.45cd5094ee66688a49c89889653edd23.jpg", - "response": "A man sleeping in a small space with a yellow helmet on.", - "id": 27493 - }, - { - "image_path": "G:\\images\\combined\\001437_jpg.rf.2c5abd98396ecfd104525ffa16698f6c.jpg", - "response": "A worker shines a flashlight at a truck in a dark underground tunnel.", - "id": 27494 - }, - { - "image_path": "G:\\images\\combined\\001438_jpg.rf.f3576e16ac67d88bccb4b9d38ac6a78e.jpg", - "response": "A construction site with a large hole in the ground.", - "id": 27495 - }, - { - "image_path": "G:\\images\\combined\\001439_jpg.rf.3570a222d1ac6db83c45ab92d1674d2e.jpg", - "response": "The image shows a group of rescue workers in red uniforms working to free a man trapped beneath debris. The man is lying on his back on the ground with his head exposed, and appears to be naked. He is surrounded by rescue workers who are using tools to cut through the debris. One worker is on the left, wearing a helmet and holding a large metal tool. Another worker is on the right, also wearing a helmet and holding a long metal rod. There are also two other workers in the background. The scene is taking place in an underground location.", - "id": 27496 - }, - { - "image_path": "G:\\images\\combined\\001440_jpg.rf.8284c06021439138029a739f3aaf4bdf.jpg", - "response": "A group of construction workers working on a bridge.", - "id": 27497 - }, - { - "image_path": "G:\\images\\combined\\001441_jpg.rf.c917185463fad0ef2074af67c25ce61d.jpg", - "response": "The image shows a group of five men walking up a snow-covered hill. They are all wearing hard hats and one of them is carrying a small shovel. The ground is covered in a layer of ice and frost, and the men are dressed in dark clothing. The sky is gray and foggy, and there are a few bare trees in the background. The men appear to be working on a construction project or some other outdoor activity that requires them to be prepared for potential hazards.", - "id": 27498 - }, - { - "image_path": "G:\\images\\combined\\001442_jpg.rf.b55c111405b7bb547b96cffd9f68a831.jpg", - "response": "A man in white and orange clothing repairs a power line at night.", - "id": 27499 - }, - { - "image_path": "G:\\images\\combined\\001443_jpg.rf.c2db33cf42c48f86bae58675ea2875c1.jpg", - "response": "A man in a blue shirt and hat is using a machete to cut through a bush. Another man is bent over and pulling on a branch. They are both wearing blue clothing.", - "id": 27500 - }, - { - "image_path": "G:\\images\\combined\\001445_jpg.rf.c101a51d2fe2add1edf0ff47f81e2885.jpg", - "response": "A work crew from the state-owned China Power Grid Corporation works to restore power to a village after heavy snowfall in the northern province of Hebei, China.", - "id": 27501 - }, - { - "image_path": "G:\\images\\combined\\001446_jpg.rf.defbaa456d29798c3788c30c6c9b6c0b.jpg", - "response": "A man is lifted into the air by a crane while several other men look on. The man being lifted is wearing a white shirt and grey pants. He has a beard and is wearing a grey hat. There is a table with a blue cloth on it. The table is being pushed by a man in a white shirt and grey pants. He is wearing a blue hat and is pushing the table towards a group of people. The group of people is made up of at least 8 people. They are standing around a ladder. The ladder is leaning against a building. The building has several signs on it. One sign is in an orange box and says \"FOR RENT\" in white. Another sign is in an orange box and says \"FOR LEASE\" in white. There is also a sign that is green with white letters that say \"GUANGDONG MINHAI BUILDING\". The image is taken outside.", - "id": 27502 - }, - { - "image_path": "G:\\images\\combined\\001447_jpg.rf.3c6455e2c344ad532446144ac7a6a178.jpg", - "response": "A group of workers are standing under a large piece of equipment. They are wearing yellow and red helmets and uniforms. In front of them, a large truck is unloading equipment. The workers are fixing the equipment. They are surrounded by many power lines and a large building.", - "id": 27503 - }, - { - "image_path": "G:\\images\\combined\\001448_jpg.rf.d8a5ffee8b7c23562d79d97a8f4e5a8b.jpg", - "response": "In the image two construction workers are repairing a water pipe. One worker is wearing a blue helmet and a blue coat and is kneeling on the ground. The other worker is wearing an orange helmet and an orange and white suit. They are repairing a water pipe that is leaking. There is a bucket on the ground near the workers. In the background there is a white fence.", - "id": 27504 - }, - { - "image_path": "G:\\images\\combined\\001449_jpg.rf.9575eea58c1ac64b02838f32994ac2c3.jpg", - "response": "The image shows a construction worker in an orange vest and yellow hard hat. The worker is holding a shovel and is standing on a brick road. The sun is shining in the sky and there are a few street lights in the background. There are also a few containers in the distance.", - "id": 27505 - }, - { - "image_path": "G:\\images\\combined\\001450_jpg.rf.6b70fa4ba6dc0d68bf59832d58c77ccc.jpg", - "response": "A man wearing a yellow hard hat and carrying a tool belt is carrying two pieces of wood over his shoulder. He is walking towards a door way in a building that is not yet finished.", - "id": 27506 - }, - { - "image_path": "G:\\images\\combined\\001452_jpg.rf.692976eeccf51b7bd7c2e96eac36a479.jpg", - "response": "A group of men walking down a street.", - "id": 27507 - }, - { - "image_path": "G:\\images\\combined\\001453_jpg.rf.518266b343f8b625b0c22ada789b44d2.jpg", - "response": "a group of men standing around a map", - "id": 27508 - }, - { - "image_path": "G:\\images\\combined\\001454_jpg.rf.85efa804b7103aa91678b86d7c8617d5.jpg", - "response": "A group of three people standing in front of solar panels.", - "id": 27509 - }, - { - "image_path": "G:\\images\\combined\\001455_jpg.rf.3b35e20f80e02654a38788cce853a7c3.jpg", - "response": "The image shows two workers on a snowy power pole. They are wearing grey and yellow helmets and grey uniforms. The pole is grey and has many wires attached to it. The wires are black and some snow is on them. The workers are repairing the wires. The sky is white and the trees around the pole are covered with snow.", - "id": 27510 - }, - { - "image_path": "G:\\images\\combined\\001456_jpg.rf.73325932b549ec213cd8284abb615d61.jpg", - "response": "The photo shows two men working in a pit. One man is wearing a white shirt and gray pants and is crouching down. The other man is wearing a green shirt and gray pants and is kneeling down. They are both wearing yellow hard hats. In the foreground, two men are working as well. One man is wearing a green shirt and gray pants and is kneeling down. The other man is wearing a black shirt and gray pants and is also kneeling down. They are both wearing brown hard hats. The men in the foreground are also working on a pit.", - "id": 27511 - }, - { - "image_path": "G:\\images\\combined\\001458_jpg.rf.863d60c05e506122fd831cf232c96d22.jpg", - "response": "A man wearing a yellow hard hat standing in front of a large pile of yellow heavy construction equipment.", - "id": 27512 - }, - { - "image_path": "G:\\images\\combined\\001459_jpg.rf.40f2acaf7113cc846d6ba0194822360c.jpg", - "response": "A man in a high visibility jacket and yellow hard hat walks away from a large blue and white ship and a large blue crane. He is carrying a long stick.", - "id": 27513 - }, - { - "image_path": "G:\\images\\combined\\001460_jpg.rf.4ca44042e3758b16d7caed2083105092.jpg", - "response": "A group of men standing next to each other.", - "id": 27514 - }, - { - "image_path": "G:\\images\\combined\\001461_jpg.rf.31622b5893f523e55c94f1d74e4cc7ed.jpg", - "response": "A group of men in white and blue shirts are walking down a hallway.", - "id": 27515 - }, - { - "image_path": "G:\\images\\combined\\001462_jpg.rf.ae4b85b4daa4f248920d5dd1d42089ad.jpg", - "response": "A few men in blue uniforms and yellow hats are working on an electricity tower in a grassy field. They are using a large rope to lift a metal piece to the top of the tower. The sky is blue with some clouds.", - "id": 27516 - }, - { - "image_path": "G:\\images\\combined\\001464_jpg.rf.576f1178735aa12c748ed8286ce33826.jpg", - "response": "A group of workers are on a metal structure.", - "id": 27517 - }, - { - "image_path": "G:\\images\\combined\\001466_jpg.rf.31f3f8de16b028e3efe5984cc42cca7a.jpg", - "response": "The image shows a group of men standing in front of a yellow construction vehicle. They are all wearing hard hats and some are wearing suits. In the background, there is a mountain.", - "id": 27518 - }, - { - "image_path": "G:\\images\\combined\\001467_jpg.rf.6f659cf6bf44080159805fa4868007ea.jpg", - "response": "A man wearing a yellow hard hat and white t-shirt standing in front of a yellow tractor.", - "id": 27519 - }, - { - "image_path": "G:\\images\\combined\\001468_jpg.rf.b3a91e8bac404c1312101dd02381d541.jpg", - "response": "A woman in a yellow hard hat is holding a clipboard and looking at it. She is standing in a factory or control room, wearing coveralls and a hard hat. There are many pipes and valves on the walls around her, and she is looking at a large pipe in the foreground.", - "id": 27520 - }, - { - "image_path": "G:\\images\\combined\\001469_jpg.rf.ff201ada3b98a5cb18a5edba26cb15c4.jpg", - "response": "A man in a red hard hat and red overalls is handing a yellow bowl to another man. The man receiving the bowl is wearing an orange safety vest and a yellow hard hat. They are both standing in front of a machine.", - "id": 27521 - }, - { - "image_path": "G:\\images\\combined\\001470_jpg.rf.8c01f0e5d09a66f92c90c4a486dc9397.jpg", - "response": "A man is using a machine to cut through a wall.", - "id": 27522 - }, - { - "image_path": "G:\\images\\combined\\001471_jpg.rf.a972cc61acae8d21d5187cb7275e423e.jpg", - "response": "Four construction workers in hard hats stand in front of a building under construction.", - "id": 27523 - }, - { - "image_path": "G:\\images\\combined\\001472_jpg.rf.1c406e4b021690d055804a202e83f995.jpg", - "response": "In the image, two men are working on a construction site. They are wearing blue helmets and work clothes. One of them is holding a tool in his hand, which he is using to cut a metal rod. The ground is covered with bricks and construction tools. In the background, there is a building under construction. The sky is light grey in color and it is a bit cloudy.", - "id": 27524 - }, - { - "image_path": "G:\\images\\combined\\001473_jpg.rf.f0d364ea22f13a187e23492c08ec2bcf.jpg", - "response": "A group of construction workers wearing yellow and orange safety jackets and hard hats are working on a construction site. They are wearing high visibility jackets and boots.", - "id": 27525 - }, - { - "image_path": "G:\\images\\combined\\001474_jpg.rf.a4ba96717450be940f93f48254f3f404.jpg", - "response": "A group of four men standing in front of a construction site.", - "id": 27526 - }, - { - "image_path": "G:\\images\\combined\\001476_jpg.rf.3ac70dc01eefac32d102e547fbeb8020.jpg", - "response": "A man in a yellow hard hat is working on a power line. He is standing on a platform that is attached to a tower, and he is using a tool to work on the power line. He is wearing a blue shirt and has a backpack on. The tower is made of metal and is in a green field.", - "id": 27527 - }, - { - "image_path": "G:\\images\\combined\\001477_jpg.rf.1ecf9fc557caa9c0996512b150bcdfc2.jpg", - "response": "A man in a tie and a construction hat is pointing to something in the distance. He is flanked by a group of men, all wearing hard hats. They are standing on a construction site.", - "id": 27528 - }, - { - "image_path": "G:\\images\\combined\\001479_jpg.rf.694df6c1ad24385dfdee6218c5e6167f.jpg", - "response": "A couple of women standing in front of a building.", - "id": 27529 - }, - { - "image_path": "G:\\images\\combined\\001480_jpg.rf.6cc5e6326154ac2700265b3c01291834.jpg", - "response": "A man in a yellow vest kneeling on the floor.", - "id": 27530 - }, - { - "image_path": "G:\\images\\combined\\001481_jpg.rf.c2acfe649accb1dc41830e7c70fa1ccb.jpg", - "response": "In the image there is a person wearing a hard hat, black uniform and black gloves. The person is in a factory holding a silver barrel. The factory has a lot of pipes and metal machinery.", - "id": 27531 - }, - { - "image_path": "G:\\images\\combined\\001482_jpg.rf.6a9d463b20a57529ac75e3f6307221fb.jpg", - "response": "A man wearing a yellow hard hat and white gloves is working on a construction site. He is sitting on a piece of wood and appears to be using a tool. He is also wearing a blue shirt, grey pants and has a beard. There are two other people in the background, one on the left and one on the right, but they are not focused on in the image.", - "id": 27532 - }, - { - "image_path": "G:\\images\\combined\\001483_jpg.rf.74028b5e7db918cab02907a4a4e2d212.jpg", - "response": "A group of construction workers wearing yellow hats and uniforms are working on a bridge.", - "id": 27533 - }, - { - "image_path": "G:\\images\\combined\\001484_jpg.rf.271ce165fde71b902bf3446379dee6ac.jpg", - "response": "The image shows a group of six people standing in a circle on a sidewalk next to a construction site. They are all wearing hard hats, with some of them also wearing suits. The people are of various heights and are spread out in the circle. The one on the left is wearing a red hard hat and is slightly taller than the others. The person on the far right is wearing a blue hard hat and is holding a clipboard. The person in the center is wearing a white hard hat and is holding a sheet of paper. The two people to the left and right of the center person are both holding sheets of paper as well. The construction site is visible in the background, with a blue banner in the middle of the frame. There are also two cars visible in the background, one closer to the left side of the frame and one closer to the right side of the frame.", - "id": 27534 - }, - { - "image_path": "G:\\images\\combined\\001485_jpg.rf.ff2d7eee242cb423609966809d4a4f4b.jpg", - "response": "A white cement truck is driving down the street.", - "id": 27535 - }, - { - "image_path": "G:\\images\\combined\\001486_jpg.rf.a9af7b9a2432632bad3b6481e359d916.jpg", - "response": "A woman sitting on a motorcycle with a bowl of food on her lap.", - "id": 27536 - }, - { - "image_path": "G:\\images\\combined\\001488_jpg.rf.a1f3ca7951a6bbbfe0f4eb015090f7d0.jpg", - "response": "A group of workers are working on a construction site. They are pouring concrete on a large area of unfinished floor. Some of them are holding hoses that are spraying the concrete. In the background, there are some buildings under construction.", - "id": 27537 - }, - { - "image_path": "G:\\images\\combined\\001489_jpg.rf.eb80936186159345ff9ce772e9df620b.jpg", - "response": "A group of men working on a metal structure.", - "id": 27538 - }, - { - "image_path": "G:\\images\\combined\\001490_jpg.rf.9635be5d34584452afd5caa89b22a115.jpg", - "response": "A group of men in white shirts and red hats are walking across a red carpet in front of a building under construction. The men are walking single file across the carpet. The building has a sign on it that says \"\"Blue Sky\"\".", - "id": 27539 - }, - { - "image_path": "G:\\images\\combined\\001491_jpg.rf.dcdcdccf50f245934701de216f16832e.jpg", - "response": "A picture of five people standing on a transmission tower.", - "id": 27540 - }, - { - "image_path": "G:\\images\\combined\\001492_jpg.rf.6ff24d40506e1f1d90957bfa76bd90fc.jpg", - "response": "A woman in a red helmet and black skirt is talking to a group of men in hard hats. They are standing in a field with construction equipment, including a yellow truck with a crane. There are power lines in the background.", - "id": 27541 - }, - { - "image_path": "G:\\images\\combined\\001493_jpg.rf.9f41d5967fb43460a602b7fbc09db685.jpg", - "response": "A man in a yellow hard hat is using a tool to chip away at a large pile of rubble in a dark tunnel. There is a ladder against the wall of the tunnel and a hose is attached to a pipe in the rubble.", - "id": 27542 - }, - { - "image_path": "G:\\images\\combined\\001494_jpg.rf.0ffded1a1024d6b64803aef1bae16b70.jpg", - "response": "A group of workers in hard hats and blue coveralls are on a ship. They are working on a large piece of equipment.", - "id": 27543 - }, - { - "image_path": "G:\\images\\combined\\001495_jpg.rf.02f3b72b1c57d64a2d67508122464975.jpg", - "response": "In the image, a man is sitting in a chair, wearing a green uniform and a yellow hard hat. He has a yellow hard hat on his head. In front of him are two black computer monitors. On the left side of the monitors is a white box-like object. To the right of the man is a window. On the left side of the room are several gray cabinets.", - "id": 27544 - }, - { - "image_path": "G:\\images\\combined\\001496_jpg.rf.3ee8ade19c8a66d6a337d6dfd0775cdc.jpg", - "response": "Two men wearing orange work vests and white helmets are talking in a building site. One man is showing a brick to the other man.", - "id": 27545 - }, - { - "image_path": "G:\\images\\combined\\001497_jpg.rf.e51026b526e75afbc7ce0c20db558661.jpg", - "response": "A worker in a yellow hat and green uniform is on a lift working on a large gas pipe. He is wearing a yellow hat and has a tool in his hand. He is in a city street surrounded by buildings.", - "id": 27546 - }, - { - "image_path": "G:\\images\\combined\\001498_jpg.rf.0eb0de837dea991c5363287f295a44c6.jpg", - "response": "A worker in a blue uniform and blue hat working on power lines.", - "id": 27547 - }, - { - "image_path": "G:\\images\\combined\\001499_jpg.rf.5e6a1a41594a591b07cf7218f3bdaaab.jpg", - "response": "Men working on a construction site(221,553),(386,996)(358,555),(528,996)(777,516),(883,996)(628,532),(818,996)(34,547),(202,953)", - "id": 27548 - }, - { - "image_path": "G:\\images\\combined\\001500_jpg.rf.75c8c605ea2876c3594b698f1a060712.jpg", - "response": "A group of men standing around each other.", - "id": 27549 - }, - { - "image_path": "G:\\images\\combined\\001501_jpg.rf.0bb4a90a29ed913b82e21c49c9778d60.jpg", - "response": "A man in a hard hat and high visibility vest is holding a laptop in a tunnel.", - "id": 27550 - }, - { - "image_path": "G:\\images\\combined\\001502_jpg.rf.d0102a3a8a2e03e87cf4b8751c9f1634.jpg", - "response": "The image shows two workers in orange suits and yellow hard hats, with one using a pick ax to chip away at the side of a large pit filled with brown water. The pit has a large rock or boulder in it, and the workers are standing on the lip of the pit, working to remove the boulder. They are connected by a rope for safety.", - "id": 27551 - }, - { - "image_path": "G:\\images\\combined\\001504_jpg.rf.af1d86a2211e4241a063a3e2f35a32f3.jpg", - "response": "A group of five construction workers are walking in the dirt. They are wearing yellow vests and hard hats. In the background, there is a large bulldozer.", - "id": 27552 - }, - { - "image_path": "G:\\images\\combined\\001505_jpg.rf.7936c1ec1c4a0bdda4cae28af0088f2d.jpg", - "response": "An electrician in a blue uniform and hard hat is working on some power lines. He is standing on a ladder and appears to be adding something to the power lines. He is also drinking water from a plastic cup.", - "id": 27553 - }, - { - "image_path": "G:\\images\\combined\\001506_jpg.rf.50f5131f3ab80713fe417aaa5ee60341.jpg", - "response": "A man in a blue jacket and orange vest is operating a piece of equipment on a boat.", - "id": 27554 - }, - { - "image_path": "G:\\images\\combined\\001507_jpg.rf.68a53d2ba774d2cafa6dd63f0af8e753.jpg", - "response": "A worker wearing a yellow hard hat and a red jacket stands next to a large metal circular frame. The metal frame is made up of several long pieces of steel rebar bound together with additional metal straps. The worker is holding a long piece of rebar and appears to be cutting it with a red tool.", - "id": 27555 - }, - { - "image_path": "G:\\images\\combined\\001508_jpg.rf.3aad49375bf84faff8336be5938c6eea.jpg", - "response": "A group of rescue workers in orange jumpsuits working to free a person trapped in the rubble of a collapsed building.", - "id": 27556 - }, - { - "image_path": "G:\\images\\combined\\001509_jpg.rf.f05803b7f61614f51aa7eeb9df6ad6f1.jpg", - "response": "Some people working on a construction site.", - "id": 27557 - }, - { - "image_path": "G:\\images\\combined\\001510_jpg.rf.2b859a0af6475aa9ee8a32a79fa497a1.jpg", - "response": "In the image there are two people working in a factory. They are standing in a large room with a cement floor. The room is filled with machinery and tools. There is a fire hydrant in the room and a hose is attached to it. The people are wearing blue shirts and safety hats.", - "id": 27558 - }, - { - "image_path": "G:\\images\\combined\\001511_jpg.rf.19322bafeee312eb5c5bd5196e26c2db.jpg", - "response": "A group of people wearing hard hats are standing in a room.", - "id": 27559 - }, - { - "image_path": "G:\\images\\combined\\001512d120e1e800.jpg", - "response": "The image shows a group of four cats on a sunny day. They are standing on top of a pile of crates, which are stacked on the ground. The cats are spread out and are in various positions on the crates. One cat is sitting on top of a yellow crate, while another cat is laying on the ground near the crates. The third cat is standing on the left side of the yellow crate, and the fourth cat is laying on the right side of the yellow crate. The crates are made of plastic and have Chinese writing on them.", - "id": 27560 - }, - { - "image_path": "G:\\images\\combined\\001512_jpg.rf.fb1d7419b731d0c57c39912578225357.jpg", - "response": "A group of men standing around each other wearing hard hats.", - "id": 27561 - }, - { - "image_path": "G:\\images\\combined\\001513_jpg.rf.03acd2ede4d09d902f898222d7d5ed4d.jpg", - "response": "A group of workers stand in a factory wearing hard hats.", - "id": 27562 - }, - { - "image_path": "G:\\images\\combined\\001514_jpg.rf.fb231190464141ecb10e1b26de9d66a5.jpg", - "response": "a group of men standing on a rocky beach", - "id": 27563 - }, - { - "image_path": "G:\\images\\combined\\001515_jpg.rf.6854a6a34eb6a9df7ea17fc22c9595cd.jpg", - "response": "A group of men standing around a construction site", - "id": 27564 - }, - { - "image_path": "G:\\images\\combined\\001516_jpg.rf.7ca8922e60c97c95afda32fce7b9b5d3.jpg", - "response": "A construction site with two workers.", - "id": 27565 - }, - { - "image_path": "G:\\images\\combined\\001517_jpg.rf.19fbb009a94a8434f10bd0a262cde9be.jpg", - "response": "A blue truck is on its side in the dirt, after it crashed and rolled over. The truck is on its side in the dirt, and appears to have been involved in an accident. There are several people standing around the truck, and some are wearing yellow hard hats. One man is using a jack to lift the front of the truck. Another man is using a drill to work on the front of the truck. A third man is standing nearby, and there is a fourth man standing further to the right. In the background, there is a fence and a person wearing a red shirt and black pants.", - "id": 27566 - }, - { - "image_path": "G:\\images\\combined\\001518_jpg.rf.9c5fc6e3125756b85c1dec479f596a6b.jpg", - "response": "In the image, two workers are seen in a factory. They are wearing yellow helmets and grey uniforms. The factory floor is grey and there are multiple yellow bricks laid out. The workers are standing near a yellow brick making machine. They are next to a conveyor belt with many bricks on it. Some bricks are stacked on the left side of the image, and some are on the right side. There is also a yellow piece of machinery on the left side of the image.", - "id": 27567 - }, - { - "image_path": "G:\\images\\combined\\001519_jpg.rf.7b583395ebba05a3ce099ab5fea26f81.jpg", - "response": "In the image two construction workers are working on a building site. They are wearing yellow helmets and grey uniforms. The workers are working on a foundation for a building. One of the workers is kneeling down and holding a large drill which is drilling into a large concrete pylon.", - "id": 27568 - }, - { - "image_path": "G:\\images\\combined\\001520_jpg.rf.18822bec568b6623ece46daa6aaee12c.jpg", - "response": " Three men(63,297),(212,913)(382,263),(524,778)(190,255),(403,997) walking down a street", - "id": 27569 - }, - { - "image_path": "G:\\images\\combined\\001521_jpg.rf.b63cb12e3b87ec0a41de428ba618b211.jpg", - "response": "A construction worker is cutting through a large beam with a circular saw. The worker is wearing a yellow hard hat and a blue shirt. They are standing on a platform and cutting through the beam with sparks flying. There are several power lines above the worker and the beam. The sky is overcast and there are a few clouds in the sky.", - "id": 27570 - }, - { - "image_path": "G:\\images\\combined\\001522_jpg.rf.b52ab11e0acc3b569bfaaa5375c40185.jpg", - "response": "In the image two workers are building a stone wall. They are both wearing blue uniforms and blue helmets. The wall is under construction and there are some unfinished parts. The workers are putting stones on the wall.", - "id": 27571 - }, - { - "image_path": "G:\\images\\combined\\001523_jpg.rf.6b5780783cf462613bc13765e133109f.jpg", - "response": "The image shows two workers on a power pole. They are wearing yellow helmets and work clothes. The left worker is in the middle of the pole, and the right worker is at the bottom of the pole, sitting on a red and black step ladder. They are both holding tools in their hands. The workers are focused on their task, and the sky behind them is a clear blue.", - "id": 27572 - }, - { - "image_path": "G:\\images\\combined\\001525_jpg.rf.7ab260ba0b91bffa2dbd57ddf13db3f4.jpg", - "response": "The image shows two men standing in front of a row of large shipping containers. Both men are wearing jackets, with one wearing a hard hat. The man on the left is wearing a black jacket, while the man on the right is wearing a brown one.", - "id": 27573 - }, - { - "image_path": "G:\\images\\combined\\001526_jpg.rf.6721b86687d5931f6c22c9d8768fc68f.jpg", - "response": "The image shows three workers dressed in orange coveralls and yellow helmets, carrying a large log on a construction site. The workers are wearing gloves and have a rope around the log. They are walking on wooden planks and one of them is holding a tool.", - "id": 27574 - }, - { - "image_path": "G:\\images\\combined\\001527_jpg.rf.d930cfff0c3a0bb20f14003cb5f93196.jpg", - "response": "The image shows three men working in a mine. They are all wearing hard hats and are standing in a passageway between large rocks. The man on the left is holding a tool and is standing on some stairs. The man in the middle is holding a tool and is looking at the camera. The man on the right is also holding a tool and is looking down. There is a rail on the left side of the image and a large rock on the right side of the image.", - "id": 27575 - }, - { - "image_path": "G:\\images\\combined\\001528_jpg.rf.c78b9e8b8149c297c8c7f2bedff625ec.jpg", - "response": "Three men in construction gear looking at a blueprint.", - "id": 27576 - }, - { - "image_path": "G:\\images\\combined\\001529_jpg.rf.ffc7b42e3a01c0294d16b94c911fd5d6.jpg", - "response": "A building with a sign that reads \u6e56\u5317\u4e5d\u5408\u7535\u529b\u5efa\u8bbe\u6709\u9650\u516c\u53f8.", - "id": 27577 - }, - { - "image_path": "G:\\images\\combined\\001531_jpg.rf.aad275a8b0fe6a6d82ec4e2bd00a5361.jpg", - "response": "In the image there is a worker dressed in blue overalls and a blue hat crouching down next to a wall of pipes. The worker is holding a small silver pipe in their hand.", - "id": 27578 - }, - { - "image_path": "G:\\images\\combined\\001533_jpg.rf.5f48985b7510ebc754cdd6f1499b16ed.jpg", - "response": "a group of men standing around a construction site", - "id": 27579 - }, - { - "image_path": "G:\\images\\combined\\001534_jpg.rf.e7d0bf71ba943e99fe1dc0c7b3ca84bb.jpg", - "response": "In the image Dilma Rousseff, the President of Brazil, is wearing a green suit and a white hard hat. She is standing in front of a group of people who are also wearing hard hats. Some of the people in the group are looking at her while she speaks. She is gesturing with her hands as she speaks. There is a building in the background.", - "id": 27580 - }, - { - "image_path": "G:\\images\\combined\\001535_jpg.rf.d9c3a0d96dd2fba484bafb5e8ab88089.jpg", - "response": "A man in a yellow hat and yellow jacket carrying a load of pipes.", - "id": 27581 - }, - { - "image_path": "G:\\images\\combined\\001536_jpg.rf.46c6a5c7a25ea9857b31f509e3913495.jpg", - "response": "In the image two workers are crouched down working on a red mesh net with white signs on it. The signs have black letters and a yellow triangle. In the background there is a orange truck with numbers 7123 on it.", - "id": 27582 - }, - { - "image_path": "G:\\images\\combined\\001537_jpg.rf.ad0602ac3e16a4852b994e674ef912ae.jpg", - "response": "A woman wearing a green jumpsuit and a hard hat is striking a pose in front of a brick wall. She is wearing a red and white hard hat, a green jumpsuit, and has a tool belt around her waist. She has her hands on her hips and one arm is raised in the air.", - "id": 27583 - }, - { - "image_path": "G:\\images\\combined\\001538_jpg.rf.1dd2cd9a3e93a209bab0c2d186ff9236.jpg", - "response": "A worker is working on a large construction site.", - "id": 27584 - }, - { - "image_path": "G:\\images\\combined\\001539_jpg.rf.2d702a94d67d38430b9591e8ab1409b5.jpg", - "response": "A group of people walking through a construction site.", - "id": 27585 - }, - { - "image_path": "G:\\images\\combined\\001540_jpg.rf.29615f4deaa0c5e6783ffcd7e66086e1.jpg", - "response": "In the image there are two power line workers in blue uniforms and yellow hats. They are high up on a telephone pole doing work on the power lines.", - "id": 27586 - }, - { - "image_path": "G:\\images\\combined\\001541_jpg.rf.dc61b256a63eb148c2956f33ca6943f5.jpg", - "response": "An electrician repairs power lines in the city of Xian, China.", - "id": 27587 - }, - { - "image_path": "G:\\images\\combined\\001542_jpg.rf.22f41f71e9119344c69e05993be9352f.jpg", - "response": "The image shows two workers in green uniforms and blue helmets, who are repairing an electricity pylon in a mountainous area. They are wearing harnesses and one of them is carrying a tool bag. The pylon is made of wood and is surrounded by snow and pine trees. The sky is overcast and the atmosphere looks cold and challenging.", - "id": 27588 - }, - { - "image_path": "G:\\images\\combined\\001543_jpg.rf.2dc5f14f407f249093981a8945368002.jpg", - "response": "In the image, two men are working on a roof of a wooden house. They are wearing green work clothes and white helmets. The man in the front is holding a large wooden bar and is working on a wooden beam on the roof. The man behind him is working on a different part of the same beam. They seem to be focused on their work.", - "id": 27589 - }, - { - "image_path": "G:\\images\\combined\\001544_jpg.rf.fd4ad31465a853652c724c03b9939c10.jpg", - "response": "A man wearing a yellow hard hat, safety glasses, and blue coveralls is using a black drill to make a hole in a white wall. The man is fully focused on the task at hand and there is a window behind him with brown wooden blinds.", - "id": 27590 - }, - { - "image_path": "G:\\images\\combined\\001545_jpg.rf.a5fb6eaf4838fb1b11189b4c0acd27bf.jpg", - "response": "A man in a hard hat stands in front of a construction site holding a blueprint.", - "id": 27591 - }, - { - "image_path": "G:\\images\\combined\\001546_jpg.rf.78e856aa00a979d9476e1683e2eccb13.jpg", - "response": " Three people(643,215),(855,900)(3,237),(374,997)(367,269),(615,907) standing next to a large spool(215,566),(541,997) of wire", - "id": 27592 - }, - { - "image_path": "G:\\images\\combined\\001547_jpg.rf.a72a22853457350b98cc85703c48dda8.jpg", - "response": "A group of people sitting around a table.", - "id": 27593 - }, - { - "image_path": "G:\\images\\combined\\001548_jpg.rf.2dad453e56232c97e532914bc8796652.jpg", - "response": "The image shows a power station with two workers. One worker is on the left side of the image, wearing a gray shirt and a blue helmet. Another worker is on the right side of the image, wearing a red helmet and a black shirt. They are both looking up at another worker who is climbing a ladder towards the top of a power pole. The power pole is gray and the ladder is white. The power station is made of gray metal and there are many wires around the workers.", - "id": 27594 - }, - { - "image_path": "G:\\images\\combined\\001549_jpg.rf.bbcd14968ae54d8f8f03f4b34feee973.jpg", - "response": "A group of people gathered around a computer screen.", - "id": 27595 - }, - { - "image_path": "G:\\images\\combined\\001550_jpg.rf.03587ef026f9a3f5c106a3c91087632d.jpg", - "response": "The image shows two men standing in front of a yellow truck that is parked on a snowy surface. Both men are wearing hard hats and winter gear. One man is holding a chainsaw, and they both appear to be wearing snow chains on their boots.", - "id": 27596 - }, - { - "image_path": "G:\\images\\combined\\001551_jpg.rf.570e8e41511f80902db86ef05a39dbd2.jpg", - "response": "A worker in a red hard hat is working on a large piece of machinery. They are holding a pipe up to a machine and adjusting it. They are wearing a white shirt and grey pants. There are other workers visible in the background. There are several other workers in the factory.", - "id": 27597 - }, - { - "image_path": "G:\\images\\combined\\001552_jpg.rf.cbc6fa31129c67f448c1d454c7c457e7.jpg", - "response": "The image shows a group of men working on a construction site in a field. There are four men in total, with one on the left and three more on the right. They are all wearing blue jeans and appear to be wearing hard hats. In the background, a small orange construction vehicle is parked. It is a small, compact excavator. The sky is blue and cloudless. The field is covered in dry, yellow grass.", - "id": 27598 - }, - { - "image_path": "G:\\images\\combined\\001553_jpg.rf.b819e01da75f3e335034e251678b66a8.jpg", - "response": "A man in a white jumpsuit is working with metal in a factory. There is a large amount of sparks flying from the metal being worked on by the man.", - "id": 27599 - }, - { - "image_path": "G:\\images\\combined\\001554_jpg.rf.c5872565979e5637c9b672f5b4a6c288.jpg", - "response": "A man in an orange jacket and hard hat is standing in a construction area. He is looking up and to the left, and there is a red crane operating in the background. There are two other people in the scene, one near the middle left and another further left. In the background, a building is under construction.", - "id": 27600 - }, - { - "image_path": "G:\\images\\combined\\001555_jpg.rf.4950b210fef66ba5eff0c752bcddf394.jpg", - "response": "The image shows a group of men in safety gear standing in a room. They are wearing yellow reflective vests, red hard hats, and red fire extinguisher jackets. Some of the men are holding fire extinguishers, and they are all standing in front of a wall. The room appears to be a construction site.", - "id": 27601 - }, - { - "image_path": "G:\\images\\combined\\001556_jpg.rf.606308d511636bf559de7b971f265049.jpg", - "response": "A man in a blue uniform and hard hat is working on an electrical box on a metal platform. He is wearing work boots and has a tool belt around his waist. He is standing on the platform and appears to be focused on the task at hand.", - "id": 27602 - }, - { - "image_path": "G:\\images\\combined\\001557_jpg.rf.24101dce426b0290f64721002784c13b.jpg", - "response": "A group of workers are working on a bridge.", - "id": 27603 - }, - { - "image_path": "G:\\images\\combined\\001558_jpg.rf.762d2bdf4d4b4ddfbff27a41d857f130.jpg", - "response": "A group of people working on a construction site.", - "id": 27604 - }, - { - "image_path": "G:\\images\\combined\\001559_jpg.rf.9445e8cf9db4eca32d8490ee03dcc21d.jpg", - "response": "A couple of men working on a power line.", - "id": 27605 - }, - { - "image_path": "G:\\images\\combined\\00155bc9538a26ed.jpg", - "response": "A yellow car with a black stripe on the hood is parked in a parking lot.", - "id": 27606 - }, - { - "image_path": "G:\\images\\combined\\001560_jpg.rf.34f1017afe1c92283a3c5d7f5f5abf33.jpg", - "response": "The image shows two workers in a tunnel, dressed in rain gear and hard hats. They are standing side by side, with one worker on the left and the other on the right. Both are holding equipment, with the worker on the left holding a tool in his hand. The tunnel is dark, and the workers are the only visible elements in the image.", - "id": 27607 - }, - { - "image_path": "G:\\images\\combined\\001561_jpg.rf.3f2a27ae812e3e07d9efe882c3a16071.jpg", - "response": "A group of men working on a power box.", - "id": 27608 - }, - { - "image_path": "G:\\images\\combined\\001562_jpg.rf.609a93aab51a198f85ea2a82b4eacf85.jpg", - "response": "A man in a white hard hat and high visibility vest places an insulation block on a roof. The man is on a ladder and the sun is shining.", - "id": 27609 - }, - { - "image_path": "G:\\images\\combined\\001563_jpg.rf.7ea9e6d84cc5372373185d0969dab9e4.jpg", - "response": "The image shows a collapsed wall of a building on a street corner. The wall has collapsed onto the street, which is blocked off with police tape. There are two uniformed officers standing on the right side of the scene, looking at the damage. A car is visible on the left side of the scene, behind the police officers.", - "id": 27610 - }, - { - "image_path": "G:\\images\\combined\\001564_jpg.rf.2ad33db38a2204af6218673d2811c6b3.jpg", - "response": "A woman in a green shirt and a hard hat is standing on a bridge with a man in a yellow hard hat. They are standing in front of a large structure that is either a bridge or a very large pipe.", - "id": 27611 - }, - { - "image_path": "G:\\images\\combined\\001566_jpg.rf.10e498011fdf94e474015541d54a4142.jpg", - "response": "A worker in a red hat is reading a clipboard.", - "id": 27612 - }, - { - "image_path": "G:\\images\\combined\\001567_jpg.rf.5db3ab0fe6107492e73be3f881093c05.jpg", - "response": "The image shows a group of men standing in a dark underground mine. They are all wearing hard hats and some are carrying flashlights. The men are standing in front of a gate that says \"123\u5347\u964d\u4f5c\u52d5\u5eab\" (Lift operation control room). The mine appears to be a coal mine, as there are coal carts and rails visible in the background.", - "id": 27613 - }, - { - "image_path": "G:\\images\\combined\\001568_jpg.rf.6f4f139c09d1ef24330b4cb35a5eab07.jpg", - "response": "A construction worker wearing a red hard hat and holding a walkie talkie.", - "id": 27614 - }, - { - "image_path": "G:\\images\\combined\\001569_jpg.rf.61e3135cf078c6b8d843621856f7f4b1.jpg", - "response": "a man climbing a mountain with a rope", - "id": 27615 - }, - { - "image_path": "G:\\images\\combined\\001570_jpg.rf.e16ce9d048c44718eaed65317f9e9cf6.jpg", - "response": "The image shows three men working at a construction site. They are wearing hard hats and uniforms. The man on the left is holding a large cable while the man in the middle is cutting into it with a circular saw. The man on the right is holding a tool in his right hand. The background shows a large metal structure and a building under construction. There is a red and yellow sign on the right side of the image.", - "id": 27616 - }, - { - "image_path": "G:\\images\\combined\\001571_jpg.rf.53b518d894877635706ea1f13fe30c87.jpg", - "response": "A worker carries a bag of cement in a construction site of a residential complex in Huaibei, Anhui province, China, August 14, 2015. China's economic growth accelerated in the second quarter, data showed on Wednesday, defying expectations for a slowdown as the world's second-largest economy recovers from a bruising property bust. REUTERS/Stringer CHINA OUT. NO COMMERCIAL OR EDITORIAL SALES IN CHINA", - "id": 27617 - }, - { - "image_path": "G:\\images\\combined\\001572_jpg.rf.67f200888d9e9e7d1da8eb42d16bc88e.jpg", - "response": "A group of people working on a construction site.", - "id": 27618 - }, - { - "image_path": "G:\\images\\combined\\001573_jpg.rf.ac1b4ff6854832dc9ded980acf3e8435.jpg", - "response": "A construction site with several people wearing hard hats standing next to large rolls of steel wire. There is a yellow truck in the background. The people are working on a building with yellow and blue walls and a brown roof. The building has three doors and two windows on the second floor. There are also several chimneys on the roof. In the foreground, there are several large steel coils.", - "id": 27619 - }, - { - "image_path": "G:\\images\\combined\\001574_jpg.rf.4ab8f723e1761eaeefac3317839d9e89.jpg", - "response": "A worker is standing in front of a fire with a stick.", - "id": 27620 - }, - { - "image_path": "G:\\images\\combined\\001575_jpg.rf.af4741e4a7dc83d0a99acc1cc67abceb.jpg", - "response": "A group of men standing around each other.", - "id": 27621 - }, - { - "image_path": "G:\\images\\combined\\001576_jpg.rf.dd681d00f290c7b7fcfcbc311f554a34.jpg", - "response": "A construction site with a number of men working on it. There are a number of steel rods laid out and stacked on the ground. A yellow and orange hard hat can be seen on the ground. A number of people are working on the site, some are bending over and working with the steel rods, others are standing around the site. In the background there is a building under construction.", - "id": 27622 - }, - { - "image_path": "G:\\images\\combined\\001578_jpg.rf.c54f9a055766eb52e3d8f904d50abdc0.jpg", - "response": "Men(647,459),(768,909)(549,442),(617,785)(470,444),(557,769)(332,456),(410,767)(879,450),(983,839)(717,455),(814,835)(594,434),(660,810)(600,468),(683,814)(297,458),(357,766) standing on a pile of dirt", - "id": 27623 - }, - { - "image_path": "G:\\images\\combined\\001579_jpg.rf.d3d9c681efa30a17c8c00ce26a015ea1.jpg", - "response": " Firefighters(221,391),(804,818)(2,435),(299,997)(14,439),(328,723) work to free a man trapped in a car under a bridge", - "id": 27624 - }, - { - "image_path": "G:\\images\\combined\\001580_jpg.rf.835b6e934cc0d3c1b0e519b00d9d0354.jpg", - "response": "A worker in a blue hat walking on train tracks.", - "id": 27625 - }, - { - "image_path": "G:\\images\\combined\\001581_jpg.rf.f706f9cc6c2f2150644a322921d7a6d9.jpg", - "response": "A group of people work on a construction site.", - "id": 27626 - }, - { - "image_path": "G:\\images\\combined\\001584_jpg.rf.dfc8abb7288889e6007cfe67554a6832.jpg", - "response": "A man wearing a yellow hard hat is working on a construction site. He is crouching down and working on a grid of metal rods that are sunk into the ground. The man is wearing a red shirt, a yellow hard hat, and grey pants. He is also wearing a watch on his left wrist. The ground around the man is wet and muddy. There is a large rock to the right of the man and a smaller one above him. To the left of the man, there are two smaller rocks.", - "id": 27627 - }, - { - "image_path": "G:\\images\\combined\\001585_jpg.rf.8345473a0c0d50a590dd567d8d8af504.jpg", - "response": "A group of four workers in red coveralls and blue hard hats pose in front of an oil well.", - "id": 27628 - }, - { - "image_path": "G:\\images\\combined\\001586_jpg.rf.a041f57291ff58a9aaa6d38a8c404e7b.jpg", - "response": "In the image, rescue workers in hard hats and uniforms are surrounding a man who is covered in dirt. The man is being carried out of a cave by two rescuers, with one rescuer on his left side and the other on his right. The rescuers are wearing yellow helmets and the man is wearing an orange helmet. There are other rescuers in the background, some of whom are carrying tools. The cave is partially visible, with a stone wall on the left and a pile of dirt on the right.", - "id": 27629 - }, - { - "image_path": "G:\\images\\combined\\001587_jpg.rf.32c57d5843c74a21b305c747dce1a185.jpg", - "response": " Rescuers(387,416),(513,933)(216,159),(303,623)(510,187),(618,633)(326,96),(428,466)(273,397),(388,914) work to free a trapped worker at the construction site of a flyover in Chongqing, China.", - "id": 27630 - }, - { - "image_path": "G:\\images\\combined\\001588_jpg.rf.e6e85b26b8a1368eea250076d44244de.jpg", - "response": "The image shows three workers in a factory, with two of them wearing white and blue uniforms and the other one wearing red. They are all wearing white safety helmets. One of the workers on the left is holding a blue electric drill and another one on the right is holding a black pipe. The third worker is squatting and fixing the ceiling.", - "id": 27631 - }, - { - "image_path": "G:\\images\\combined\\001589_jpg.rf.5fe883d8aa4d8707d4cd2aff77f46032.jpg", - "response": "A group of workers are working on a scaffold on top of a building. There are four people in total, three of them are working on the scaffold, one of them is standing on the side. The sky is grey and overcast.", - "id": 27632 - }, - { - "image_path": "G:\\images\\combined\\001590_jpg.rf.f65c3ef337444938c2471fd28ec6380f.jpg", - "response": "A construction worker wearing a hard hat and safety vest is holding a tablet in one hand and a cell phone in the other. The worker is looking at the tablet screen and talking on the cell phone. The background shows a crane and a building under construction.", - "id": 27633 - }, - { - "image_path": "G:\\images\\combined\\001591_jpg.rf.d76ac906adf133cc60c5f28eae27b4da.jpg", - "response": "A man in a blue jacket and a white hard hat is looking at a blueprint with two men in yellow hard hats. They are all standing on a construction site with a large mountain in the background.", - "id": 27634 - }, - { - "image_path": "G:\\images\\combined\\001593_jpg.rf.0f0d1a182dd89e83ac023616acc0f1fb.jpg", - "response": "a group of people standing around talking", - "id": 27635 - }, - { - "image_path": "G:\\images\\combined\\001594_jpg.rf.532eb75000510642d7d072d4db5c96c1.jpg", - "response": "A man in a suit and red helmet shakes hands with another man in front of a construction site.", - "id": 27636 - }, - { - "image_path": "G:\\images\\combined\\001595_jpg.rf.0379a4803af73b01f1cc89bd81f55c99.jpg", - "response": "A construction worker digging a hole with a shovel.", - "id": 27637 - }, - { - "image_path": "G:\\images\\combined\\001596_jpg.rf.713398a36a4001039e9b23ddca094bbf.jpg", - "response": "A group of men in red coveralls and yellow hard hats stand in a line in front of a large concrete building. They are all holding a silver cable.", - "id": 27638 - }, - { - "image_path": "G:\\images\\combined\\001597_jpg.rf.cb3941d8f20de0793cb33e72eddcaffa.jpg", - "response": "The image shows a group of five men standing together. They are all wearing orange shirts and red helmets. The man on the far left is wearing a blue helmet. The man on the far right is wearing a white shirt and black pants. In the background, there is a yellow and black forklift. To the right of the group, there is a person in a white shirt and black pants holding a box. In the background, there are also two motorcycles.", - "id": 27639 - }, - { - "image_path": "G:\\images\\combined\\001599_jpg.rf.0dceab731819856427ef4a78f73c48cb.jpg", - "response": "A worker wearing a yellow hard hat is working on yellow scaffolding.", - "id": 27640 - }, - { - "image_path": "G:\\images\\combined\\0015f300e061c1f3.jpg", - "response": "a newspaper article(3,10),(877,996) about a man who committed suicide by jumping off a cliff", - "id": 27641 - }, - { - "image_path": "G:\\images\\combined\\001600_jpg.rf.dbc8eecdb825c24965a885a168ccf9a2.jpg", - "response": "The image shows two construction workers in yellow and green reflective vests, standing in front of a house under construction. Both men are wearing yellow and green safety helmets. The man on the left is a white male with a goatee, and the man on the right is a black male. They are both smiling and laughing. The man on the right is holding a blue frisbee. They are both holding wooden planks.", - "id": 27642 - }, - { - "image_path": "G:\\images\\combined\\001601_jpg.rf.2e305956801e79ea8cc61e937840c677.jpg", - "response": "A man in a green shirt and yellow hard hat standing in front of a building under construction.", - "id": 27643 - }, - { - "image_path": "G:\\images\\combined\\001602_jpg.rf.5ae2c3fba41bb86b31d83f2687be57ca.jpg", - "response": "A man wearing a hard hat and high vis vest standing in a large warehouse.", - "id": 27644 - }, - { - "image_path": "G:\\images\\combined\\001603_jpg.rf.aff8c80abeaf16f71a31b7b771a00395.jpg", - "response": "A group of people standing around in a lot with buildings behind them.", - "id": 27645 - }, - { - "image_path": "G:\\images\\combined\\001604_jpg.rf.935542358b0e98bd15c214fbbb7fea35.jpg", - "response": "In the image, three people dressed in red shirts and blue hats are crouched down next to a ditch. They are working on a pipeline that is running through the grass. In the background, there are mountains. To the right, there are several chairs and a table. In the middle of the scene, there is a pink flag and a green tree. In the far distance, there are also some other flags and mountains.", - "id": 27646 - }, - { - "image_path": "G:\\images\\combined\\001605_jpg.rf.6d1534020a877a3fa9e3a01a9c581f32.jpg", - "response": "A group of men wearing suits and hard hats are walking through a construction site. Some of the men are carrying handbags. One of the men is wearing a tie. The sky is overcast.", - "id": 27647 - }, - { - "image_path": "G:\\images\\combined\\001606_jpg.rf.6d9c58afa264993a70cf55872af9e80b.jpg", - "response": "A worker is seen high up on a pole, fixing some wires. He is wearing a black jacket, a yellow helmet, and white gloves. The pole is grey and the sky above is full of clouds. There are many wires in the air and some on the ground.", - "id": 27648 - }, - { - "image_path": "G:\\images\\combined\\001607_jpg.rf.264fc9d7766ce3d08b9ea1faabdebeb7.jpg", - "response": "A group of people standing around a construction site.", - "id": 27649 - }, - { - "image_path": "G:\\images\\combined\\001608_jpg.rf.93d448d2fdbf93b94b6036c365e0d7f3.jpg", - "response": "The image shows a group of people standing in front of a building under construction. The people include a man in a white shirt and black pants, a woman in a green and blue suit, and another man in a white shirt and black pants. There is also a man in a white shirt and black pants on the far left of the image. In front of the group is a white and blue sign that says \"\u6c5f\u82cf\u7701\u82cf\u4e2d\u5efa\u8bbe\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8\" and \"\u521b\u9020\u7f8e\u597d\". There is also a white and blue sign in the background that says \"\u521b\u5148\u4e89\u4f18\" and \"\u70b9\u8bc4\u53f0\". The building under construction is fenced off with red and white fencing.", - "id": 27650 - }, - { - "image_path": "G:\\images\\combined\\001609_jpg.rf.51a87f4b6e044f8cb961585e9fde76ba.jpg", - "response": "A group of three men working on a construction site.", - "id": 27651 - }, - { - "image_path": "G:\\images\\combined\\00160ca5be682aca.jpg", - "response": "A man with a bald head and a white shirt standing in front of a white trailer with a picture of a racing car on it.", - "id": 27652 - }, - { - "image_path": "G:\\images\\combined\\001610_jpg.rf.81e9f0cb9c36c545be40d6d29f6ffb5b.jpg", - "response": "In the image two workers are seen repairing an electricity board. The wall of the electricity board is grey in color. There is a red Chinese text written on the wall of the electricity board which says \"\u79e6\u8363\u5e26\u8d1f\u8377\u8377\u62c9\u95f8\u5200\". There is another text written in English on the wall which says \"Test\". The workers are wearing blue color dress. One of the worker is holding a blue color helmet in his head. Another worker is holding a blue color object in his hand. They are standing near a green color tree. The background is a open ground with some plants and trees.", - "id": 27653 - }, - { - "image_path": "G:\\images\\combined\\001611_jpg.rf.cba5b2a70137fb510ebc947a9320fc7f.jpg", - "response": "A couple of men working on power lines.", - "id": 27654 - }, - { - "image_path": "G:\\images\\combined\\001612_jpg.rf.a8da2500b7f259dbf7d1751935661f6c.jpg", - "response": "A man in a blue shirt and yellow hard hat is in a large concrete pipe. He is standing at the bottom of the pipe, which is circular in shape, and has several rings of concrete. There is a ladder made of wood leaning against the pipe on the right side.", - "id": 27655 - }, - { - "image_path": "G:\\images\\combined\\001613_jpg.rf.c3945a0cd1e421e86a76816f6e6c2a0a.jpg", - "response": "A man wearing a yellow and silver vest and a blue hat stands in front of a construction site. The man is wearing a yellow and silver vest, blue pants, and a blue hat. The vest has a silver stripe and the hat has a blue brim. The man is standing in front of a construction site. There are red and white barriers in front of the man. There are also several people in the construction site. One person is wearing a yellow shirt and gray pants. Another person is wearing a white shirt and gray pants. There is also a person wearing a white shirt and black pants. There is a blue and white sign on the right side of the image. The sign says \"\u94a2\u7b4b\u52a0\u5de5\u68da\" in English. There are also several cranes in the construction site. One crane is on the left side of the image and another crane is on the right side of the image.", - "id": 27656 - }, - { - "image_path": "G:\\images\\combined\\001614_jpg.rf.a7878618e65e6deac92cf2a087cd490a.jpg", - "response": "An electrician working on an electrical box with a blue sky in the background.", - "id": 27657 - }, - { - "image_path": "G:\\images\\combined\\001615_jpg.rf.676eb28fa90ea8897f4924da9418bb41.jpg", - "response": "In the image there are two men working on fixing a power line. One man is kneeling down and holding a tool in his right hand, the other man is standing and holding a tool in his left hand. They are both wearing blue helmets and the man on the left is also wearing a white shirt.", - "id": 27658 - }, - { - "image_path": "G:\\images\\combined\\001617_jpg.rf.21ec276c14a8a56027c716408c497f5b.jpg", - "response": "a group of men standing around a model house", - "id": 27659 - }, - { - "image_path": "G:\\images\\combined\\001618_jpg.rf.3f4d3847f9b9380dc179d5d2948ba1e1.jpg", - "response": "A group of men working on a construction site.", - "id": 27660 - }, - { - "image_path": "G:\\images\\combined\\001619_jpg.rf.dc166abe51eef457c7753f6b7992c77f.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest is standing in front of a construction site. He is holding a set of plans in his hands and looking at the camera with a smile on his face. There is a cup on the construction site, and two other people are visible in the background, one on the left and one on the right. They are both wearing orange hard hats.", - "id": 27661 - }, - { - "image_path": "G:\\images\\combined\\001620_jpg.rf.2244c6bb57870c9551eceab4d1bd9213.jpg", - "response": "An image of a construction worker in an orange uniform and red helmet standing on a worksite. He is smiling at the camera. In the background, there is a crane and a street with people walking on it. There is also a building with a balcony on the left side of the image.", - "id": 27662 - }, - { - "image_path": "G:\\images\\combined\\001621_jpg.rf.ebe65014dce20c337f68c06ccdae7f4e.jpg", - "response": "A construction worker is using a jackhammer to break up a street.", - "id": 27663 - }, - { - "image_path": "G:\\images\\combined\\001623_jpg.rf.4ecee22960aa6600a11cfd7778a9369f.jpg", - "response": "In the image a man is wearing a safety vest and a yellow helmet. He is holding a flashlight in his right hand which is shining brightly. He is smiling and appears to be in a tunnel.", - "id": 27664 - }, - { - "image_path": "G:\\images\\combined\\001624_jpg.rf.5075cd7314c76c13ca507d680153f7cd.jpg", - "response": "Two men in blue hard hats squat beside a power pole.", - "id": 27665 - }, - { - "image_path": "G:\\images\\combined\\001625_jpg.rf.75a02b6fcc2291e876615b7a391528f2.jpg", - "response": "A smiling warehouse worker in a yellow hard hat, blue shirt, and yellow safety vest standing in front of a forklift and pallets of boxes.", - "id": 27666 - }, - { - "image_path": "G:\\images\\combined\\001626_jpg.rf.495ed1b40923086843ece5b6673d4564.jpg", - "response": "A group of people standing in front of a large metal object that is being heated by a machine. They are all wearing hard hats and white protective clothing. Some of them are also wearing black shoes. The background is blurry and there are some sparks visible in the air.", - "id": 27667 - }, - { - "image_path": "G:\\images\\combined\\001627_jpg.rf.e1f49498e6393a69ba0cb8342e566269.jpg", - "response": "The image shows a group of men dressed in winter clothing and hard hats standing in front of a mountain. They are holding a rope, possibly preparing to climb the mountain.", - "id": 27668 - }, - { - "image_path": "G:\\images\\combined\\001628_jpg.rf.a8610b5ad1f62e1ea24fd2541e29aeff.jpg", - "response": "Three men in yellow vests and hard hats are looking at a blueprint in a construction site.", - "id": 27669 - }, - { - "image_path": "G:\\images\\combined\\0016295405bec6fc.jpg", - "response": "A baseball game is in progress with a batter up to plate. The batter is holding a baseball bat and is positioned in the batter's box. The catcher is squatting behind the batter and is wearing a baseball glove. There are several other players on the field, including those in the outfield and the infield. The umpire is standing behind the catcher, observing the play. The crowd is watching the game intently, filling the stands with spectators.", - "id": 27670 - }, - { - "image_path": "G:\\images\\combined\\001629_jpg.rf.6cdc64a1f163a11014ddbf5c3fa9c6f3.jpg", - "response": "A couple of men in orange work jackets and yellow helmets are working on power lines.", - "id": 27671 - }, - { - "image_path": "G:\\images\\combined\\001630_jpg.rf.d990f8fbf1d161c81d3bad0229c9c731.jpg", - "response": "In the image there are multiple people working on a construction site. There is a man wearing a blue shirt and green pants sitting on a red mat using a tool to cut into a concrete wall. Another man is wearing a yellow helmet and sitting on a white mat using a tool to cut into the concrete wall. There is a person wearing a blue shirt and yellow helmet sitting on a white mat using a tool to cut into the concrete wall.", - "id": 27672 - }, - { - "image_path": "G:\\images\\combined\\001631_jpg.rf.669e1b721419fdd791d141e15f96c223.jpg", - "response": "The image shows a man in a green camouflage jacket and a red hard hat standing in a room that has half of its floor and walls painted grey. The man is holding a grey pipe and a grey water hose. There is a second man in the room, wearing a red hard hat and a green jacket. In the foreground, a red and white striped mattress is partially visible on the right side of the image.", - "id": 27673 - }, - { - "image_path": "G:\\images\\combined\\001632_jpg.rf.3123778a00c831fbb1fbeb3039bf3a5d.jpg", - "response": "A man in a yellow hard hat is holding a level and looking out a window. He is wearing a blue and yellow striped shirt and a brown belt. He has a beard and is wearing a yellow hard hat. There is a blue pipe in the foreground and a yellow pipe behind it. The man is standing next to a wall that is painted dark grey.", - "id": 27674 - }, - { - "image_path": "G:\\images\\combined\\001633_jpg.rf.60f7e96cc662988e1667f89811b74fdb.jpg", - "response": " A person(263,558),(519,997) in a hard hat(357,556),(494,751) and a red jacket(264,783),(518,998) is looking out at the ocean(0,583),(996,997) with two oil rigs(736,218),(950,638)(258,353),(564,625) in the background.", - "id": 27675 - }, - { - "image_path": "G:\\images\\combined\\001634_jpg.rf.b966570dabdf367568d28216525c3cc9.jpg", - "response": "A construction worker is on a ladder, working on a balcony. He is wearing a white shirt, a black vest, a red and white hat, and glasses. He is holding a tool in his right hand. Next to him, on the balcony, there is a yellow helmet and a red and white tool. The balcony has a black fence. On the right side of the balcony, there is a wooden board. On the lower left side of the board, there is a yellow logo. The background is a grey roof with a brown eave.", - "id": 27676 - }, - { - "image_path": "G:\\images\\combined\\001635_jpg.rf.30649f9be5268c547e8fa23a5e0c1311.jpg", - "response": "A group of five men dressed in blue and orange work clothes with blue helmets on their heads. They are standing in front of a big digger and a big heap of rubble. The man in the middle is holding a plan in his hands.", - "id": 27677 - }, - { - "image_path": "G:\\images\\combined\\001637_jpg.rf.9a2017403449ba0271893d812e6c3997.jpg", - "response": "A group of men standing around talking to each other.", - "id": 27678 - }, - { - "image_path": "G:\\images\\combined\\001639_jpg.rf.62240b48a80d4e3af7cc0ed343dff64a.jpg", - "response": "A woman in a blue shirt and khaki pants is talking on a cell phone. Two men in orange vests and white helmets are looking at blueprints. The plans are spread out on a table. The men are also wearing white helmets. The ground is dirt. There is a house under construction in the background.", - "id": 27679 - }, - { - "image_path": "G:\\images\\combined\\001640_jpg.rf.f1fe659a6d16835bc7cdc42c934da166.jpg", - "response": "A woman wearing a hard hat and safety glasses is standing in front of a large piece of machinery. She is wearing a grey jumpsuit and orange hard hat. She is also wearing black leather gloves. She is holding a large tool in her right hand. The background is a large piece of machinery painted green. There is also a wooden platform in the foreground.", - "id": 27680 - }, - { - "image_path": "G:\\images\\combined\\001641_jpg.rf.8c04aa65061b2fd4027960f06a648164.jpg", - "response": "A group of five workers wearing yellow hard hats are inside a large, open construction site. They are working on a large, metal structure that resembles a honeycomb. The workers are positioned at various points along the structure, which is made up of many intersecting metal rods. Some of the workers are welding metal rods together, while others are standing and watching the process. There is a large amount of smoke coming from the welding activity.", - "id": 27681 - }, - { - "image_path": "G:\\images\\combined\\001642_jpg.rf.b2f3eb7bf8819b881d1367edcff059e6.jpg", - "response": "A man in an orange vest and yellow helmet is walking through a gravel pit. He is walking between two large mounds of white stones. The sky is blue and clear. There are mountains in the distance.", - "id": 27682 - }, - { - "image_path": "G:\\images\\combined\\001643_jpg.rf.10196d44a9b46c42e99d7a8798196696.jpg", - "response": "A group of men wearing hard hats", - "id": 27683 - }, - { - "image_path": "G:\\images\\combined\\001644_jpg.rf.d4add4b68334f4e8307fd3cfcef5fc38.jpg", - "response": "In the image there is a group of people standing next to each other. They are all wearing black suits and red helmets. In the background there is a brown mountain. Under the picture it says \u201cHeilongjiang Province Governor Zhang Zuoyi branch of the construction site inspections Changchun\u201d", - "id": 27684 - }, - { - "image_path": "G:\\images\\combined\\001645_jpg.rf.de5003a5e88f51c996c6f485ef80435d.jpg", - "response": "A man in a green uniform and blue hard hat is sitting on a yellow metal rail. He is wearing a watch on his left wrist. The man is holding a yellow helmet with his right hand. The background is a reddish-brown wall.", - "id": 27685 - }, - { - "image_path": "G:\\images\\combined\\001646_jpg.rf.b2ef6ebbc775b57fcc285a4810437029.jpg", - "response": "A construction worker in a red uniform and yellow hat is shoveling concrete.", - "id": 27686 - }, - { - "image_path": "G:\\images\\combined\\001647_jpg.rf.3df4a81978f25720438c2c44bef76cd1.jpg", - "response": "a group of men wearing hard hats", - "id": 27687 - }, - { - "image_path": "G:\\images\\combined\\001648_jpg.rf.9f9bcb9e9cbca6f44b0f3789cad2ea41.jpg", - "response": "A worker in a yellow vest and a helmet(305,555),(377,651) is leaning over a white fence, looking at something. There are many other people in the scene, some of them are standing on the right side of the fence, and some are standing on the left side. They are all looking in the same direction. In the background, there is a large bridge.", - "id": 27688 - }, - { - "image_path": "G:\\images\\combined\\001649_jpg.rf.2ca275db373b86915b769f1227cfd590.jpg", - "response": "A construction site with a green building under construction. There are several materials on the ground including a large pile of wood, a stack of pipes, and a pile of black metal rods. There are two workers in the scene, one on the left and one on the right. They are both wearing yellow vests. There is a yellow ladder on the left side of the image and a yellow ladder on the right side of the image. There is also a yellow step stool on the left side of the image.", - "id": 27689 - }, - { - "image_path": "G:\\images\\combined\\001650_jpg.rf.4d4fa25dcae64b67df2df8e66e919c7f.jpg", - "response": "A group of three men standing on a construction site.", - "id": 27690 - }, - { - "image_path": "G:\\images\\combined\\001651_jpg.rf.737158d5ccf4499299625fdc34341859.jpg", - "response": "The image shows a group of workers at a construction site. They are working on a new train line, with several of them working on the tracks which are being laid between two pieces of wood. One of the workers is holding a large orange tool. The sky is blue and there are a few clouds.", - "id": 27691 - }, - { - "image_path": "G:\\images\\combined\\001652_jpg.rf.41c1c0f097bd2de7947407adf0c39f01.jpg", - "response": "The image shows a truck with a crane on the back. The crane is lifting a large object, which appears to be a large metal cylinder, into the back of the truck. The truck is parked on the side of a road, which is a dirt road in the middle of a construction site. There are several people standing around the truck, some of them are wearing hard hats. In the background, there is a tunnel, which is under construction. The sky is overcast and there are some clouds in the sky.", - "id": 27692 - }, - { - "image_path": "G:\\images\\combined\\001653_jpg.rf.2e699f812194451953681c6b33b99dd9.jpg", - "response": "Men(383,474),(713,966) standing on a bridge", - "id": 27693 - }, - { - "image_path": "G:\\images\\combined\\001654_jpg.rf.afe318663ed3489d1883b4d62b191679.jpg", - "response": "A pair of linemen work on fixing a power line.", - "id": 27694 - }, - { - "image_path": "G:\\images\\combined\\001655_jpg.rf.a5d9a39e8bdf57d283e0658b8ffc26d0.jpg", - "response": "a group of men standing around each other", - "id": 27695 - }, - { - "image_path": "G:\\images\\combined\\001656_jpg.rf.b493ad4e5a3c2f5f83f4c69ca9271c95.jpg", - "response": "The image shows a construction site with many workers. There is a large concrete structure in the foreground, with a red pipe running across it. Some of the workers are standing on the structure, while others are working on it. They are wearing yellow and green vests. Some of them are holding tools, such as a broom and a shovel. A few of them are wearing hard hats. In the background, there are several other people, some of whom are carrying tools. The ground is covered with concrete slabs, and there are some steel bars visible.", - "id": 27696 - }, - { - "image_path": "G:\\images\\combined\\001657_jpg.rf.a0ee16f48ed74ce5f3a412a4c4a22f15.jpg", - "response": "The two men are wearing hard hats and reflective vests.", - "id": 27697 - }, - { - "image_path": "G:\\images\\combined\\001658_jpg.rf.04bad448b07a71365ae045d2a8b92057.jpg", - "response": "A large white truck with a crane on the back.", - "id": 27698 - }, - { - "image_path": "G:\\images\\combined\\001659_jpg.rf.e3de76bcd5fe4864298071de5b1abecd.jpg", - "response": "A man in a green work suit and a blue hat is sitting on a steel girder. He is wearing a white helmet and has a tool belt around his waist. He is also wearing green gloves. In the background, there is a yellow construction vehicle. The sky is blue and clear. There are also wooden scaffolding and steel beams in the background.", - "id": 27699 - }, - { - "image_path": "G:\\images\\combined\\00165f9e139aedaf.jpg", - "response": "A yellow and red building with Chinese writing on it.", - "id": 27700 - }, - { - "image_path": "G:\\images\\combined\\001660_jpg.rf.fd73bb6614b70fe349ef60a5bae99df3.jpg", - "response": "In the image two construction workers are working on a construction site. One worker is on the left and is bending over with his hands on his knees wearing a yellow and orange shirt, grey pants, and a white helmet. The other worker is on the right and is wearing an orange shirt, blue pants, and a white helmet. They are both working on a large concrete surface. In the background there is a large unfinished building with many columns. There is also a tower crane in the background on the right side of the image. In the foreground there are stacks of wood and a large piece of wood that is being cut by the worker on the right who is holding a circular saw.", - "id": 27701 - }, - { - "image_path": "G:\\images\\combined\\001661_jpg.rf.8e13daea35d4cbb0dd524948d60c95dd.jpg", - "response": "A group of men in white and black in front of a building with a green and white sign that says Shandong Baishitong.", - "id": 27702 - }, - { - "image_path": "G:\\images\\combined\\001662_jpg.rf.a8191e9adb04f695499abeafdd2caede.jpg", - "response": "A worker wearing a yellow shirt, yellow hat and sunglasses is cutting metal with a saw at a construction site. The metal is red and is part of a large framework. There is a large yellow crane in the background.", - "id": 27703 - }, - { - "image_path": "G:\\images\\combined\\001663_jpg.rf.c13c9b14172820f281c5e9706d893cfd.jpg", - "response": "A group of five people working on a construction site.", - "id": 27704 - }, - { - "image_path": "G:\\images\\combined\\001664_jpg.rf.2a7c3bc7d9e10593ab40d23b18eee978.jpg", - "response": " Three men(654,112),(851,998)(351,220),(568,997)(64,167),(291,996) in high visibility vests(656,300),(838,728)(382,403),(564,838)(86,360),(280,787) and hard hats(456,221),(536,333)(141,166),(227,288)(707,110),(794,223) standing in a tunnel", - "id": 27705 - }, - { - "image_path": "G:\\images\\combined\\001665_jpg.rf.b6da0df6ba77d468dffe857a2bcbb854.jpg", - "response": "Firefighters are seen in the image, with one of them holding a fire extinguisher. They are standing in a room that has been destroyed by fire. The room is filled with debris and there are two doors in the room. One of the doors is made of wood and the other is made of metal. There is also a brick wall in the room. In the image, there are a total of six people, including the firefighters. Three of them are wearing suits, one of them is wearing a red hat, and the other two are wearing black hats. Another person in the image is holding a camera.", - "id": 27706 - }, - { - "image_path": "G:\\images\\combined\\001666_jpg.rf.3d5a51bd6b012b6775af4d03cd9abca7.jpg", - "response": "A group of men standing next to each other.", - "id": 27707 - }, - { - "image_path": "G:\\images\\combined\\001667_jpg.rf.6b525563bdf6a7da544fac80a3b0abc7.jpg", - "response": "A man in a grey shirt is holding a long white object.", - "id": 27708 - }, - { - "image_path": "G:\\images\\combined\\001668_jpg.rf.3c2d1925b0b7b571276f2c901886505d.jpg", - "response": "A worker in a blue hard hat and tan shirt is helping another worker in a black shirt and blue pants up a ladder. The workers are standing next to a large piece of equipment.", - "id": 27709 - }, - { - "image_path": "G:\\images\\combined\\001669_jpg.rf.3e8d314b6c092c9a4ca30ab57c84fb28.jpg", - "response": " Three men(400,153),(737,995)(50,369),(207,997)(820,6),(997,994) in yellow jackets(402,312),(629,848)(55,450),(198,727) and white helmets(486,151),(617,272)(820,3),(997,146) standing on a construction site looking at blueprints.", - "id": 27710 - }, - { - "image_path": "G:\\images\\combined\\001670_jpg.rf.fc828e65df2979d9d50d610dc177e2bd.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a red shirt, the person is crouched down working on a construction site. The site has a lot of steel rebar being used for a bridge construction project. The person is working on the bottom of a large concrete structure.", - "id": 27711 - }, - { - "image_path": "G:\\images\\combined\\001671_jpg.rf.264ccdd4d55c3b96533ab0c946d67ad8.jpg", - "response": "a worker in a red uniform and a hardhat is standing in a room with a lot of pipes and machinery.", - "id": 27712 - }, - { - "image_path": "G:\\images\\combined\\001673_jpg.rf.1cd46797a1771cc11f5736e8ee3500a4.jpg", - "response": "a group of people standing inside a building that has scaffolding all over it. They are all wearing hard hats.", - "id": 27713 - }, - { - "image_path": "G:\\images\\combined\\001674_jpg.rf.aefe3d794a8db3a1de3d984762df29ca.jpg", - "response": "Four men are working on a construction site. They are all wearing hard hats and are holding a large piece of wood.", - "id": 27714 - }, - { - "image_path": "G:\\images\\combined\\001676_jpg.rf.38a635035cdb4820c785bfaac693f1b8.jpg", - "response": "In the image there are three people. Two of them are wearing orange work clothes and one is wearing a suit. They are all wearing hard hats. In front of them is a campfire where they are warming their hands. Behind them is a large pile of grey rocks. Above them, the sky is white.", - "id": 27715 - }, - { - "image_path": "G:\\images\\combined\\001677_jpg.rf.ecde05418fa7a97e4284302766a9b29f.jpg", - "response": "A group of people working on a construction site at night.", - "id": 27716 - }, - { - "image_path": "G:\\images\\combined\\001678_jpg.rf.523560c9581edb83261112a946463e01.jpg", - "response": "A man in a white hard hat and orange jumpsuit is on a power line pole. He is wearing black gloves and is working on the pole. There are several other power lines and poles in the vicinity.", - "id": 27717 - }, - { - "image_path": "G:\\images\\combined\\001680_jpg.rf.888a3249251e5489da46c94094d76c30.jpg", - "response": "A group of men working on a power line.", - "id": 27718 - }, - { - "image_path": "G:\\images\\combined\\001681_jpg.rf.14991dd1c50eb1a99ad6427b45840ae4.jpg", - "response": "A group of men standing around each other.", - "id": 27719 - }, - { - "image_path": "G:\\images\\combined\\001682_jpg.rf.c4305675789b498b6672e93b33adbd72.jpg", - "response": "A group of five men working on a construction site.", - "id": 27720 - }, - { - "image_path": "G:\\images\\combined\\001683_jpg.rf.33810851cbcf34ff1932ce57b63a2dfb.jpg", - "response": " A\u96a7\u9053\u5de5\u7a0b\u5e08(413,479),(579,996)\u7ad9\u5728\u96a7\u9053\u4e2d\u95f4", - "id": 27721 - }, - { - "image_path": "G:\\images\\combined\\001684_jpg.rf.327ba8cbac80cf8dbe893d8a9dd5af84.jpg", - "response": "The image shows two men in matching orange jumpsuits and blue hardhats, one standing to the left of the other, on a ship. The ship has a metal framework above them and a red crane on the left.", - "id": 27722 - }, - { - "image_path": "G:\\images\\combined\\001685_jpg.rf.c657de50203b30d1069d7abc45936b42.jpg", - "response": "In the image there is a male mechanic wearing a yellow helmet and orange earphones. He is using a laptop placed on a red car lift. There is a black car on the lift and a wheel on the right. In front of the mechanic, there is a yellow machine.", - "id": 27723 - }, - { - "image_path": "G:\\images\\combined\\001686_jpg.rf.0d15ff20d74910aac1b28f2f52723b67.jpg", - "response": "A man is wearing a yellow construction hat and a pair of safety glasses. He is also wearing a brown shirt. He is holding a yellow ear plug in his left hand and has a beard on his face. There are some yellow helmets and white\u9632\u62a4\u76ee\u955c on the ground behind him.", - "id": 27724 - }, - { - "image_path": "G:\\images\\combined\\001687_jpg.rf.f8460ef4d41d19b0787d26cfbcf5251b.jpg", - "response": "A group of men walking in front of a blue and white building.", - "id": 27725 - }, - { - "image_path": "G:\\images\\combined\\001688_jpg.rf.5b0cc694ba0da75759aa87527d45e2ca.jpg", - "response": "a group of people standing in front of a van", - "id": 27726 - }, - { - "image_path": "G:\\images\\combined\\001689_jpg.rf.f506bf56b7043531c4a156f7320e0f3b.jpg", - "response": "A worker in a yellow hard hat is pointing to a piece of rebar on a construction site. The worker is wearing a grey jacket and has a yellow hard hat on.", - "id": 27727 - }, - { - "image_path": "G:\\images\\combined\\001690_jpg.rf.91e995aa9c5b0cc64cb8fd868c518162.jpg", - "response": "A group of people working on a construction site.", - "id": 27728 - }, - { - "image_path": "G:\\images\\combined\\001692_jpg.rf.0b75247e5399996966ed9676e3ed2781.jpg", - "response": "A man in a camo jacket and a hard hat is smiling and holding a tool in front of a construction site.", - "id": 27729 - }, - { - "image_path": "G:\\images\\combined\\001694_jpg.rf.2f5943adb1842305dcebe233dbd76de1.jpg", - "response": "A construction worker(283,560),(367,905) standing in front of a tall building(188,3),(995,723) under construction", - "id": 27730 - }, - { - "image_path": "G:\\images\\combined\\001695_jpg.rf.ab53cff614f1233de44bb070a9ff8ddd.jpg", - "response": "A man in a cherry picker is working on power lines.", - "id": 27731 - }, - { - "image_path": "G:\\images\\combined\\001696_jpg.rf.ec0d8dd2e16fc8ef2c1ea5924fb3a9f8.jpg", - "response": "People(268,127),(399,617)(574,183),(690,783)(476,149),(578,570)(646,117),(753,603) standing in a construction site", - "id": 27732 - }, - { - "image_path": "G:\\images\\combined\\001697_jpg.rf.010bf60be233d1f2765f24501504c18d.jpg", - "response": "A group of people standing around a computer screen.", - "id": 27733 - }, - { - "image_path": "G:\\images\\combined\\001699_jpg.rf.54b6ece07e2776e1d592cf384f52ff79.jpg", - "response": "A group of rescue workers in orange jumpsuits and white helmets are working together to lift a woman out of a hole in the ground. She is lying on a rock and is being supported by several of the workers. They are all wearing the same uniform.", - "id": 27734 - }, - { - "image_path": "G:\\images\\combined\\0016bd822c0a9511.jpg", - "response": "A van with a green and white color scheme and the license plate AJS 870.", - "id": 27735 - }, - { - "image_path": "G:\\images\\combined\\001700_jpg.rf.b22eb8790ce55d69aaa62fbe0b00d5bb.jpg", - "response": "A group of workers are working on a scaffolding inside a tunnel. There are three workers in the image, one is at the left side, another one is in the middle and the third one is at the right side of the image. They are all wearing helmets and the one in the middle is also wearing a backpack. The tunnel has stone walls and the workers are working on a scaffolding that is placed against one of the walls. The wall is covered with a white sheet and the workers are working on it. There are also some tools and wires in the image.", - "id": 27736 - }, - { - "image_path": "G:\\images\\combined\\001701_jpg.rf.b3fa48ce04734ef302afdeb927cbea44.jpg", - "response": "In the image two workers are building a structure. The workers are wearing blue and yellow protective gear. They are working on a yellow structure with a city skyline in the background.", - "id": 27737 - }, - { - "image_path": "G:\\images\\combined\\001702_jpg.rf.30e856211e2574aab439b83f9b2c840f.jpg", - "response": "A group of workers in hard hats and blue coveralls are gathered around a large electrical tower. They are all wearing orange hard hats. One man is adjusting a large electrical component on the tower. In the background, there are other workers and scaffolding.", - "id": 27738 - }, - { - "image_path": "G:\\images\\combined\\001704_jpg.rf.e43c8aeb92842eadc4406e4b24b70afc.jpg", - "response": "In the image there is a tunnel that is under construction. Inside the tunnel there are several workers wearing yellow hard hats. One worker is carrying a large orange air tank. In the foreground on the right side of the image there is a yellow machine with a wooden handle and a metal pipe attached to it. In the background on the left side of the image there is a person wearing a orange vest and a helmet. In the background inside the tunnel there are two more workers. The tunnel is white and bright and the workers are scattered throughout the scene.", - "id": 27739 - }, - { - "image_path": "G:\\images\\combined\\001705_jpg.rf.f8f03ebd337233dd82c6b90832fe9823.jpg", - "response": "a group of men walking in front of a building under construction", - "id": 27740 - }, - { - "image_path": "G:\\images\\combined\\001706_jpg.rf.fc7c3d6ceec623312d773f98e28d23cf.jpg", - "response": "A group of men in blue uniforms and red helmets are working on a pipe in the ground. They are all holding pipes and wearing red helmets.", - "id": 27741 - }, - { - "image_path": "G:\\images\\combined\\001708_jpg.rf.5083b3ba422ed8722b0f4b3d83b89517.jpg", - "response": "A group of people standing in front of a wall with the words\u300c\u4e07\u5e72\u8363\u5e1d\u5171\u7b51\u7cbe\u54c1\u300dwritten on it. Some of them are wearing red hats.", - "id": 27742 - }, - { - "image_path": "G:\\images\\combined\\001710_jpg.rf.b4796906d5ada05d1a99afc1a8e7b822.jpg", - "response": "A group of men working on a large pipe.", - "id": 27743 - }, - { - "image_path": "G:\\images\\combined\\001711_jpg.rf.672db672689e94f367fc84502a1de8af.jpg", - "response": " Three men(473,426),(583,858)(619,376),(754,856)(827,437),(964,858) walking through a tunnel", - "id": 27744 - }, - { - "image_path": "G:\\images\\combined\\001712_jpg.rf.859e0e37a25be6821da909472adda6f8.jpg", - "response": " Construction workers(375,67),(938,996)(2,5),(385,989) are shown with a police officer.", - "id": 27745 - }, - { - "image_path": "G:\\images\\combined\\001713_jpg.rf.7bb2f7a6994febf83e72adacde6e8421.jpg", - "response": "A construction site with multiple people working on it.", - "id": 27746 - }, - { - "image_path": "G:\\images\\combined\\001714_jpg.rf.6846b404f6ede8be40da127cd63598fd.jpg", - "response": "a group of people walking in front of a large building under construction", - "id": 27747 - }, - { - "image_path": "G:\\images\\combined\\001715_jpg.rf.b44158c1e617ae4810bf838d87897b01.jpg", - "response": "A group of men wearing hard hats are standing around.", - "id": 27748 - }, - { - "image_path": "G:\\images\\combined\\001716_jpg.rf.ff0dac11dbbf3a96f86b45ab11b95fae.jpg", - "response": "a man in a yellow hard hat climbing a ladder", - "id": 27749 - }, - { - "image_path": "G:\\images\\combined\\001717_jpg.rf.5670c6ebeddc7383bd653c0a7b82519e.jpg", - "response": "A group of men working on a hillside.", - "id": 27750 - }, - { - "image_path": "G:\\images\\combined\\001718_jpg.rf.3ae4395d10ab8acd01e258872c13f477.jpg", - "response": "A group of men standing around a large pile of steel.", - "id": 27751 - }, - { - "image_path": "G:\\images\\combined\\001719_jpg.rf.26a378b9fad872e7207f515ab4ed40d1.jpg", - "response": "The image shows a construction site with several workers. There is a large building under construction in the background, with several columns and a framework of steel rebar. The workers are wearing yellow hard hats and are focused on their tasks. One worker is bending over to tie rebar, while another worker is crouching and working with rebar near them. A third worker is in the center of the frame, with their arms outstretched and their head down. They appear to be directing the placement of rebar.", - "id": 27752 - }, - { - "image_path": "G:\\images\\combined\\001720_jpg.rf.2a1f39843789da487a40df8ab503a3c6.jpg", - "response": "A group of people standing in a field. One woman with short hair and a blue shirt is speaking into a microphone. She is standing on the left side of the image. To the right of her are five men standing in front of a building. The building has three floors and is white and grey in color. In front of the building is a field of green vegetation. The ground is wet and there are two birds in the field.", - "id": 27753 - }, - { - "image_path": "G:\\images\\combined\\001721_jpg.rf.c6a3c898bd12821b1233c16e6ffa689b.jpg", - "response": "A man wearing a hard hat and safety vest is standing on a forklift in a warehouse. He is in front of a pallet of boxes and is smiling at the camera.", - "id": 27754 - }, - { - "image_path": "G:\\images\\combined\\001722_jpg.rf.66cb962240e153c28b9db4e15e7d363e.jpg", - "response": "The image shows two workers at a construction site, standing on a large area of concrete that has been reinforce with steel bars. The concrete is still wet and some of it is being sprayed with a hose.", - "id": 27755 - }, - { - "image_path": "G:\\images\\combined\\001723_jpg.rf.b1b72b8cc1d645b6937120d97affca10.jpg", - "response": "A group of six men in yellow or orange vests and white or yellow hard hats. Some of them are smiling at the camera. In the background, there is a blue wall with some white writing on it.", - "id": 27756 - }, - { - "image_path": "G:\\images\\combined\\001724_jpg.rf.47ad7ebd2e8d37b702cfc63e286b4c83.jpg", - "response": "a group of men standing in a construction site", - "id": 27757 - }, - { - "image_path": "G:\\images\\combined\\001725_jpg.rf.309ba4fec17b95605c55455f1e3b9139.jpg", - "response": "a group of men standing in front of a building", - "id": 27758 - }, - { - "image_path": "G:\\images\\combined\\001727_jpg.rf.7f5ff227ce3f7d7c011cff6114cb571a.jpg", - "response": "In the image there is a man wearing a yellow hard hat and a green vest. The man is crouching down next to a hole in the ground and holding a variety of tools including a ruler, a pickaxe, and a small shovel. There is a ruler that is on the ground next to the hole. The man has a beard and is looking intently at the hole. There is a person's hand holding a cell phone in the background.", - "id": 27759 - }, - { - "image_path": "G:\\images\\combined\\001728_jpg.rf.5cda1d471e38330138e2c4f58d8a2938.jpg", - "response": "A group of men standing around a construction site.", - "id": 27760 - }, - { - "image_path": "G:\\images\\combined\\001729_jpg.rf.7f5a4f94d05fd0fa411df57259799f3c.jpg", - "response": "A group of people are working on a construction site. They are pouring concrete onto a grid of steel rebar. Some of the people are wearing hard hats and there is a red pipe running through the scene. In the background, there is a flag and a building.", - "id": 27761 - }, - { - "image_path": "G:\\images\\combined\\001730_jpg.rf.39f675ceaa4317b6ddf34822926d3551.jpg", - "response": "A worker is fixing the power lines which are covered with ice.", - "id": 27762 - }, - { - "image_path": "G:\\images\\combined\\001732_jpg.rf.6b63109292fa1f66a132370a22b7db99.jpg", - "response": "A group of people in black suits and orange vests are sitting around a large conference table. The people in the front are wearing orange vests. The table has several cups and red hard hats on it. There is a sign on the wall that says '\u4e2d\u56fd\u4e2d\u51b6' which likely stands for 'China Metallurgical Group Corporation'.", - "id": 27763 - }, - { - "image_path": "G:\\images\\combined\\001733_jpg.rf.65fb493dec0bb400360f9aa9f021fae0.jpg", - "response": "In the image there are two people working at a factory. They are standing in front of a large metal cylinder with a fire inside it. The fire is burning bright orange and yellow and is spewing out flames that are shooting up into the air. The people are wearing hard hats and blue jackets as they work with the fire.", - "id": 27764 - }, - { - "image_path": "G:\\images\\combined\\001734_jpg.rf.8cf330e9003da78de0727c1ea1cb5c51.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats, repairing a white transformer at night. The transformer is located in an outdoor area and is covered in protective white material. The workers are wearing safety harnesses and are focused on their task. In the background, there are several power lines and cables.", - "id": 27765 - }, - { - "image_path": "G:\\images\\combined\\001736_jpg.rf.2a89377156635b38c93f9463e8fa6065.jpg", - "response": "A man(77,102),(632,950) wearing a blue jumpsuit(84,136),(537,824) and a red hard hat(468,95),(649,383) is kneeling down and working on a pipe(378,726),(738,996).", - "id": 27766 - }, - { - "image_path": "G:\\images\\combined\\001737_jpg.rf.246765a107803211b92b626df98d35c2.jpg", - "response": "A man and woman construction workers standing in a unfinished building.", - "id": 27767 - }, - { - "image_path": "G:\\images\\combined\\001740_jpg.rf.0f5cf618dc3e14f0205f27951f488e73.jpg", - "response": "A construction site with two men standing in front of a yellow back hoe.", - "id": 27768 - }, - { - "image_path": "G:\\images\\combined\\001741_jpg.rf.9934f2eefb6ca1b2ca5456f9d2ce3943.jpg", - "response": "A construction worker sitting on scaffolding, working on a building.", - "id": 27769 - }, - { - "image_path": "G:\\images\\combined\\001742_jpg.rf.bdc1e04511f97c382b10b9d9446a648d.jpg", - "response": "In the image there is a large roof covered with solar panels. Two people are working on the panels, one is on the left and the other one is on the right. The sky is blue and there are no clouds.", - "id": 27770 - }, - { - "image_path": "G:\\images\\combined\\001744_jpg.rf.27f8774d03830808e8c5c957826649a6.jpg", - "response": "A group of men in suits and hard hats are standing in a construction site. One man is pointing towards the camera and another man is pointing towards the right. A man in a suit is wearing a tie.", - "id": 27771 - }, - { - "image_path": "G:\\images\\combined\\001745_jpg.rf.0f7873cfeebbe2d10021dcba80162c55.jpg", - "response": "A man wearing a blue hard hat and a tan shirt is working on a construction site. He is climbing a ladder and holding a wooden pole.", - "id": 27772 - }, - { - "image_path": "G:\\images\\combined\\001746_jpg.rf.5d54088749097b60e23289ae3e263f69.jpg", - "response": "A construction site with two men wearing red helmets. They are both dressed in black clothing. One of the men is pointing to something on a table in front of them. There are several other tables with different materials on them in the scene.", - "id": 27773 - }, - { - "image_path": "G:\\images\\combined\\001748_jpg.rf.1db92ca16201ec9edcf85a2c09f3f9e6.jpg", - "response": "A large power pole being built in a field with a blue sky above.", - "id": 27774 - }, - { - "image_path": "G:\\images\\combined\\001749_jpg.rf.5d162c0b55425c8ed5b6e03f2695f6c9.jpg", - "response": "A construction worker is trapped in a construction site. He is wearing a yellow helmet and a black jacket with the word \"Fire\" on it. The background shows a pile of bricks and a bamboo structure.", - "id": 27775 - }, - { - "image_path": "G:\\images\\combined\\001750_jpg.rf.ab7c94a0c08ce2d8e2d48bc3b5dcd669.jpg", - "response": "A pair of linemen work on fixing a power line.", - "id": 27776 - }, - { - "image_path": "G:\\images\\combined\\001751_jpg.rf.694b766264e446cb12aeebf276d92358.jpg", - "response": "A mine with two miners working.", - "id": 27777 - }, - { - "image_path": "G:\\images\\combined\\001754_jpg.rf.78d7092606e5fd1bc4a101ac23255ec2.jpg", - "response": "a group of men standing around each other", - "id": 27778 - }, - { - "image_path": "G:\\images\\combined\\001755_jpg.rf.5ca2cfeb3989ad58935f0382669b510a.jpg", - "response": "In the image there are several workers wearing blue helmets and white working clothes with a yellow car on the left and a large spool of cable on the right. They are working on a rural road and some of them are holding tools.", - "id": 27779 - }, - { - "image_path": "G:\\images\\combined\\001756_jpg.rf.1425dd17836f302b02c8c60e0aa98e70.jpg", - "response": "A man in a blue work suit and orange hard hat is pushing a large piece of equipment. The equipment is white and has a brown door that is propped open. The man is wearing a blue work suit and has a tool belt around his waist. He is also wearing a yellow hard hat. There is a blue bag on the right side of the image and a step ladder on the left. In the background, there is a building with a lot of windows.", - "id": 27780 - }, - { - "image_path": "G:\\images\\combined\\001757_jpg.rf.73e362ed4bdc43fd1f6a3628101fbb16.jpg", - "response": "A group of people standing around a construction site.", - "id": 27781 - }, - { - "image_path": "G:\\images\\combined\\001759_jpg.rf.66e4b5aad3181f418e4e58c47462850c.jpg", - "response": "The image shows a group of men standing in a circle, some of them holding a clipboard and a pen. The man on the far left is wearing a grey shirt and jeans, and is holding a clipboard. The man in the center is wearing a light blue shirt and black pants, and is holding a pen. The man on the far right is wearing a white shirt and black pants. There is a building in the background, and the ground is wet.", - "id": 27782 - }, - { - "image_path": "G:\\images\\combined\\001760_jpg.rf.ff2001392917a4e82695dfe11a98a11d.jpg", - "response": "A worker shines a light on a tire of a loader at a construction site of the South-North Water Diversion Project in Tianjin, north China, April 13, 2013. The South-North Water Diversion Project, a major Chinese water project, is designed to prevent floods in the Yellow River basin and provide water to the north. The project includes two routes, one runs from south to north through Hebei, Tianjin and Beijing, while the other one runs from south to north through Hebei, Tianjin, Shandong and Henan. The project is expected to prevent floods in the Yellow River basin and provide water to the north, which is often in short of water. (Xinhua/Li Bo)", - "id": 27783 - }, - { - "image_path": "G:\\images\\combined\\001761_jpg.rf.5fc9180fd052211be43ecea1e1d759a1.jpg", - "response": "In the image four workers are seen repairing the electricity post. They are wearing blue colour overalls. The sky is grey in colour.", - "id": 27784 - }, - { - "image_path": "G:\\images\\combined\\001762_jpg.rf.5fec6edaf24a1cc9a71be39bf83d8417.jpg", - "response": "The picture shows some workers are operating a yellow excavator with an orange arm in a construction site. The excavator is positioned on the right side of the image, with a pipe attached to the front. The pipe is connected to a concrete pile driver. The driver is holding a yellow and red pipe with a handle, and the pipe is inserted into the pile. The workers are wearing red uniforms and safety helmets. The ground around the excavator is covered with red sand.", - "id": 27785 - }, - { - "image_path": "G:\\images\\combined\\001763_jpg.rf.98c81f3199f675f66c699a81400dd5f8.jpg", - "response": "An older man wearing a hard hat and jeans is holding a coffee thermos. Another man wearing a hard hat and yellow safety goggles is standing next to him. Both men are wearing yellow hard hats and work clothes. They are standing in front of a brick wall.", - "id": 27786 - }, - { - "image_path": "G:\\images\\combined\\001764_jpg.rf.f8a872b62c62f1d6cb6263ceda18db66.jpg", - "response": "In the image there is a group of people working on a construction site. They are standing on a mesh platform that is placed on top of a large concrete pile. The platform is secured by ropes and appears to be a temporary structure. The people are wearing hard hats and some of them are wearing yellow vests. The word \"\u5b89\u5168\" (safety in Chinese) is displayed on a banner on the platform.", - "id": 27787 - }, - { - "image_path": "G:\\images\\combined\\001765_jpg.rf.8561871b9bf42f25c07d292f1c25d2f1.jpg", - "response": "The image shows three men wearing red and black jackets and yellow or orange hardhats, standing in a snowy area. They are holding onto a rope or a long stick, and appear to be in the process of cutting through a tree. The man in the center is also wearing a yellow hardhat. The background shows a snowy area with trees and a building.", - "id": 27788 - }, - { - "image_path": "G:\\images\\combined\\001767_jpg.rf.20c732ee160c28dda4e78d43c25be41d.jpg", - "response": "An electrician working on an electrical box with a blue hard hat on.", - "id": 27789 - }, - { - "image_path": "G:\\images\\combined\\001768_jpg.rf.348c70b75f90ef413b8a6d7939894b88.jpg", - "response": "A worker in a yellow hard hat working on an orange pipe.", - "id": 27790 - }, - { - "image_path": "G:\\images\\combined\\001769_jpg.rf.e1cf3bfecbaccfd76cbaae331af6f0da.jpg", - "response": "The image shows a group of workers standing in a snowy field. They are all wearing blue hard hats and some are wearing orange vests. The workers are holding onto a large snow covered power line.", - "id": 27791 - }, - { - "image_path": "G:\\images\\combined\\001770_jpg.rf.b006c53bddfa51b906e289eb04776669.jpg", - "response": "A group of men standing around each other", - "id": 27792 - }, - { - "image_path": "G:\\images\\combined\\001771_jpg.rf.dafedead19f05b8f037cdf8b485c7122.jpg", - "response": "The image shows a group of five men standing on a steep, rocky hillside. They are all dressed in work clothes and are holding onto a rope that is attached to a large rock. The men are positioned in such a way that they are supporting each other as they navigate the rocky terrain.", - "id": 27793 - }, - { - "image_path": "G:\\images\\combined\\001772_jpg.rf.314530996918a7b18334a6d343ccbf54.jpg", - "response": "A man in a black shirt and yellow hard hat is crouched down next to a cement wall. He is looking at a circuit box and has a screwdriver in his hand.", - "id": 27794 - }, - { - "image_path": "G:\\images\\combined\\001773_jpg.rf.f18a58d538ab9f7d239e0498b6bce8f4.jpg", - "response": "A group of four people walking on a construction site.", - "id": 27795 - }, - { - "image_path": "G:\\images\\combined\\001774_jpg.rf.61225fd6a705bf8105b191eb2692644c.jpg", - "response": "A man on a snowy tower with a pick axe.", - "id": 27796 - }, - { - "image_path": "G:\\images\\combined\\001775_jpg.rf.79a2395ce66f67b2a98b81f144ab8d42.jpg", - "response": "A group of men standing around a construction site.", - "id": 27797 - }, - { - "image_path": "G:\\images\\combined\\001776_jpg.rf.f1b0a681da1400aa10278b1145f0bd53.jpg", - "response": "A man in a yellow helmet and blue shirt is using a jackhammer on the roof of a building. Another man in a green shirt is standing on the roof next to him. They are both wearing safety harnesses. In the background, there are two buildings and a street.", - "id": 27798 - }, - { - "image_path": "G:\\images\\combined\\001777_jpg.rf.41ecd31813a524ddda182a4f50e281cc.jpg", - "response": "A man in a red suit and yellow hard hat is standing in a tunnel. He is holding a flashlight and a tablet.", - "id": 27799 - }, - { - "image_path": "G:\\images\\combined\\001778_jpg.rf.1df865719fcbe79d6905eb2b0965ec51.jpg", - "response": "A group of three men in yellow vests standing in front of a brick wall with graffiti on it. They are looking at a blueprint.", - "id": 27800 - }, - { - "image_path": "G:\\images\\combined\\001779_jpg.rf.ed7b35582296a774279f86dcbd306a94.jpg", - "response": "In the image, two workers are standing in a flooded\u96a7\u9053. They are wearing blue work suits and hard hats. The floor of the tunnel is covered in water up to their knees. One of the workers is holding a flashlight while the other one is holding a pipe. They are both looking into the distance.", - "id": 27801 - }, - { - "image_path": "G:\\images\\combined\\001780_jpg.rf.51b84317fba252c81d21b8fa3e44cfdf.jpg", - "response": "A group of men in hard hats stand in front of a construction site.", - "id": 27802 - }, - { - "image_path": "G:\\images\\combined\\001781_jpg.rf.26f1b850dc1b16ecc5328590da83de92.jpg", - "response": "A man standing in front of a building with a red hat and a yellow vest.", - "id": 27803 - }, - { - "image_path": "G:\\images\\combined\\001782_jpg.rf.a8de7b79d413f2e3f9fb037688b17d5d.jpg", - "response": "The image features two men dressed in work clothes, sitting on a large pipe. Both men are wearing yellow hard hats, and one of them is wearing a red vest. They are looking at a blueprint, which is rolled up and resting on the pipe in front of them. The two men appear to be construction workers, discussing plans at a building site.", - "id": 27804 - }, - { - "image_path": "G:\\images\\combined\\001783_jpg.rf.6ffb6e3d4a875bb8035cf5b1d5db5788.jpg", - "response": "A construction worker wearing a yellow hard hat is looking over blueprints. He is wearing a black jacket and is standing in front of a yellow crane. There is a white car visible in the bottom right corner of the image.", - "id": 27805 - }, - { - "image_path": "G:\\images\\combined\\001784_jpg.rf.bbd93faa90004a9c9b59593c9f942583.jpg", - "response": "A group of men standing around a construction site.", - "id": 27806 - }, - { - "image_path": "G:\\images\\combined\\001785_jpg.rf.e6a3e206d8cf97ce38b64cf30a79f3ec.jpg", - "response": "An electrician in a blue shirt and hard hat is\u4fee\u7f2e\u7535\u7ebf", - "id": 27807 - }, - { - "image_path": "G:\\images\\combined\\001786_jpg.rf.9b922f02142d8eafb691db2f962f78e7.jpg", - "response": "A group of men working on a large pipe in the ground.", - "id": 27808 - }, - { - "image_path": "G:\\images\\combined\\001787_jpg.rf.c01e5e2a982357ec5b1f34901b6317bf.jpg", - "response": "An engineer in a hard hat and safety vest standing in front of a body of water with docked boats. He is holding a walkie talkie.", - "id": 27809 - }, - { - "image_path": "G:\\images\\combined\\001788_jpg.rf.18c0c95286ede0e25ec6f1c4da9cc648.jpg", - "response": "A group of people stand on a red carpet. They are wearing black suits and red cheongsams. They are holding a large red ribbon. Behind them is a large white wall with a red logo on it. The logo is shaped like a wave. The wall has two Chinese characters on it. To the left of the people, the character is larger. To the right, the character is larger.", - "id": 27810 - }, - { - "image_path": "G:\\images\\combined\\001789_jpg.rf.537591200e39cf8fb86d48ed2e7356cc.jpg", - "response": "A group of people standing in a construction site.", - "id": 27811 - }, - { - "image_path": "G:\\images\\combined\\001790_jpg.rf.ba6c802435c9f7b8b3dff619a6b9dbdf.jpg", - "response": "A construction site with multiple workers. There is a tall unfinished building with a red framework. There are two cranes working in the background. There are several cars parked around the construction site.", - "id": 27812 - }, - { - "image_path": "G:\\images\\combined\\001791_jpg.rf.85f729282df34f5ad254d36152755540.jpg", - "response": "A group of three women in hard hats are standing in front of three computer screens. They are looking at the screens and one of them is holding a coffee mug.", - "id": 27813 - }, - { - "image_path": "G:\\images\\combined\\001792_jpg.rf.1348df4984dc575f0c67489360b41b18.jpg", - "response": "A group of people are sitting around a table. The table has a red table cloth and many cups, bowls, and bottles on it. In front of each person there is a laptop. On the wall there are several posters.", - "id": 27814 - }, - { - "image_path": "G:\\images\\combined\\001793_jpg.rf.0328690e34d798a4ab04742670880d52.jpg", - "response": "The image shows a group of people working in a coal mine. There are two main figures, one on the left and one on the right. They are both wearing yellow hard hats and appear to be digging or working with heavy equipment. There is a large scoop or shovel on the left side of the image, and a person on the right is holding a long tool. The background is a dark grey cave-like structure with a rough texture. There is a logo in the bottom left corner that says \"people.com/guizhou\" and the word \"Guizhou\" in red.", - "id": 27815 - }, - { - "image_path": "G:\\images\\combined\\001794_jpg.rf.99bbd2006018803b02e57d5343974439.jpg", - "response": "A construction site with three men working on a building.", - "id": 27816 - }, - { - "image_path": "G:\\images\\combined\\001796_jpg.rf.d61fe08b961036c4664ac1d717d9d8b2.jpg", - "response": " Four men(286,5),(479,649)(514,374),(682,708)(643,288),(883,857)(38,282),(365,851)(295,577),(708,919) are working on a construction site.", - "id": 27817 - }, - { - "image_path": "G:\\images\\combined\\001797_jpg.rf.46de7b714af17d0d5510060d2d844bba.jpg", - "response": "A lineworker for Pacific Power & Light Company repairs a power line in the aftermath of the Christmas Day tsunami. The lineworker is wearing a white jumpsuit and a red hard hat. He is sitting on a ladder, working on the power line.", - "id": 27818 - }, - { - "image_path": "G:\\images\\combined\\001798_jpg.rf.f8239177a78c237669dd0f8ded85f198.jpg", - "response": "In the image, a worker is wearing a white hat and striped white and grey shirt while using a grinding machine. The worker is focused on the task at hand and sparks are flying from the grinding of a metal rod. The grinding wheel is on a table and there is a chair in the background. The scene takes place in an industrial setting.", - "id": 27819 - }, - { - "image_path": "G:\\images\\combined\\0017b3722e2579fe.jpg", - "response": "The image shows a group of people sitting at tables in a darkened room. There are men and women, some wearing suits, and they all appear to be clapping. The tables have red tablecloths and are arranged in a semi-circle. There are chairs around the tables and a few bottles and wine glasses on the tables. One man is wearing headphones and looking at his cell phone. The atmosphere seems lively and celebratory.", - "id": 27820 - }, - { - "image_path": "G:\\images\\combined\\0017b872c4ad04c7.jpg", - "response": "A little girl in an orange shirt is smiling while drawing a picture on a computer screen.", - "id": 27821 - }, - { - "image_path": "G:\\images\\combined\\0017c0c45277ee1a.jpg", - "response": "A poster with a list of names is attached to a wall. Two men are on ladders, adding or removing names from the poster.", - "id": 27822 - }, - { - "image_path": "G:\\images\\combined\\0017fde4b397259a.jpg", - "response": "A black and white print of two men fighting in a battle.", - "id": 27823 - }, - { - "image_path": "G:\\images\\combined\\001800_jpg.rf.da02c4d4bf719f9b43bd9a05d89b408b.jpg", - "response": "A group of people in hard hats are taking photos of a building site.", - "id": 27824 - }, - { - "image_path": "G:\\images\\combined\\001801_jpg.rf.fefadce14897b3988834c39d58348815.jpg", - "response": "A group of workers(292,509),(387,897)(458,508),(601,997)(104,388),(203,667)(201,389),(359,703) are working on a bridge", - "id": 27825 - }, - { - "image_path": "G:\\images\\combined\\001802_jpg.rf.e39e2b094add2e91785729c5d5ab9528.jpg", - "response": "A group of three men working on a construction site.", - "id": 27826 - }, - { - "image_path": "G:\\images\\combined\\001803_jpg.rf.9ee2fe388f9111effc57ceef30216ac2.jpg", - "response": "A woman and a man stand on a rooftop. They are both wearing jeans, white shirts, and red helmets. The woman is also wearing a red and white checkered shirt. They are both holding a long white rope with a red flag tied to it. There is a yellow flag on the left side of the rooftop and a pink flag on the right side. In the background, there is a building with a pink wall and a brown roof.", - "id": 27827 - }, - { - "image_path": "G:\\images\\combined\\001804_jpg.rf.40108895269ed22a80e87d91efc09b1e.jpg", - "response": "A man in a hard hat and work clothes is using a pallet jack to lift a pallet of bricks. Another man is standing on a ladder in the background, working on a brick wall. There is a large industrial building with a lot of shelves and storage in the background.", - "id": 27828 - }, - { - "image_path": "G:\\images\\combined\\001805_jpg.rf.68c89681e8a10b3b4524697737a6135c.jpg", - "response": "A construction worker wearing a green shirt, red hard hat, and work boots is working on a construction site. They are crouched down and working on a grid of rebar.", - "id": 27829 - }, - { - "image_path": "G:\\images\\combined\\001807_jpg.rf.115fd8348e564c7327fa4a46a4eef58a.jpg", - "response": "A construction worker wearing a yellow hard hat is welding a grid of metal.", - "id": 27830 - }, - { - "image_path": "G:\\images\\combined\\001808_jpg.rf.277027124be9b377792bee36f0466f4e.jpg", - "response": "A man wearing a red hard hat and a dark shirt is using a long tool to stir the contents of a brick oven. The man is in a room with a wooden wall and the brick oven is on his left. The fire in the oven is orange and yellow.", - "id": 27831 - }, - { - "image_path": "G:\\images\\combined\\001809_jpg.rf.e82a1470fc1cbf83dd18b227b3730318.jpg", - "response": "A shipping yard with a container crane in the background. In the foreground, two men dressed in business suits and white hard hats are pointing at a container.", - "id": 27832 - }, - { - "image_path": "G:\\images\\combined\\001810_jpg.rf.003b0967294cce4baf756605bfd2be4a.jpg", - "response": " Two engineers(41,229),(378,997)(384,209),(732,997) in a tunnel(2,5),(999,996) looking at a blueprint(317,547),(462,727)", - "id": 27833 - }, - { - "image_path": "G:\\images\\combined\\001811_jpg.rf.0e9a73e753ac07af07e15d997a120408.jpg", - "response": "A man in a red hard hat is working on a scaffold.", - "id": 27834 - }, - { - "image_path": "G:\\images\\combined\\001812_jpg.rf.219d0f07c7260ea64c5766266eb62edb.jpg", - "response": "A man and woman in a unfinished room with wood beams. The man is wearing a hard hat and holding a set of blueprints.", - "id": 27835 - }, - { - "image_path": "G:\\images\\combined\\001813_jpg.rf.7c5d21d822014543b86ceb07e30d39fd.jpg", - "response": "A group of workers wearing hard hats and work clothes are standing around a table. On the table are several bottles of water and a few red bags. A man in a suit is shaking hands with one of the workers. In the background, there are a few buildings and mountains.", - "id": 27836 - }, - { - "image_path": "G:\\images\\combined\\001814_jpg.rf.68c5d33cd53e85e3866f7615827b7249.jpg", - "response": "A pile of debris on a street.", - "id": 27837 - }, - { - "image_path": "G:\\images\\combined\\001815_jpg.rf.26c380e734e1a04938c694e4918a4942.jpg", - "response": "A man is seen in the image wearing a blue jacket and hat. He is climbing a wall with a rope. The wall has several icicles hanging from it. The sky is blue and clear.", - "id": 27838 - }, - { - "image_path": "G:\\images\\combined\\001816_jpg.rf.d0646b03a81ccedd67c9be760a3e0ae3.jpg", - "response": "The image shows three workers sitting on a lunch break. They are all wearing hard hats and one of them is holding a can of beer.", - "id": 27839 - }, - { - "image_path": "G:\\images\\combined\\001818_jpg.rf.271a52d390da7be130c1e5fd8db60454.jpg", - "response": "The image shows three men working on a construction site. They are all wearing blue shirts and are carrying materials. One man is carrying a large metal object on his shoulder, another man is carrying a long wooden pole, and the third man is carrying a bag. They are all walking across a wooden platform. In the background, there is a sign that says \"Daily\". The sky is blue and there are no clouds in the sky.", - "id": 27840 - }, - { - "image_path": "G:\\images\\combined\\001819_jpg.rf.0c28b2aef6222b82642cc1fdd2cb4e21.jpg", - "response": "The image shows a group of rescue workers in safety gear working to free a man who is trapped beneath a large rock. The workers are positioned around the man, with some of them holding the rock in place while others work to stabilize his head and shoulders. There is a large pipe nearby, and a rope is draped over the rock. The workers are wearing hard hats and the man is wearing a helmet. The photo is taken from a high angle, looking down at the scene.", - "id": 27841 - }, - { - "image_path": "G:\\images\\combined\\001820_jpg.rf.00910e9fd937df988e0a6f7275a4702e.jpg", - "response": "A construction site with two workers in the foreground, a pile of wooden planks and two large storage containers in the background.", - "id": 27842 - }, - { - "image_path": "G:\\images\\combined\\001821_jpg.rf.bb0a6165c43080989411a1ccbf78f158.jpg", - "response": "A group of men in suits and hard hats are gathered around a construction site. Some of the men are wearing red hard hats. In the background, there are a few buildings.", - "id": 27843 - }, - { - "image_path": "G:\\images\\combined\\001822_jpg.rf.8ad04cd44455977e48cd46ecfc0dc88e.jpg", - "response": "Two workers(316,435),(623,951)(430,178),(631,559) are working on a large pipe.", - "id": 27844 - }, - { - "image_path": "G:\\images\\combined\\001823_jpg.rf.8a793f15d647767d4484c01125c5d71d.jpg", - "response": "A worker in an orange uniform and hard hat is working on a silver and black train. They are leaning over and looking into the train. They are in front of a white wall and a road is visible to the left of the worker.", - "id": 27845 - }, - { - "image_path": "G:\\images\\combined\\001825_jpg.rf.e2e1551db91b7bfcd818b1a7de66e51f.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 27846 - }, - { - "image_path": "G:\\images\\combined\\001826_jpg.rf.51e5fed28fc27a17eaa37db7e647432c.jpg", - "response": "A group of five people are working on a construction site. They are all wearing hard hats and one of them is holding a hose. The ground is wet and there are numerous rebar sticks sticking out of the ground. The word \"\u632f\u6363\u68d2\" is written in Chinese characters at the bottom right corner of the image.", - "id": 27847 - }, - { - "image_path": "G:\\images\\combined\\001827_jpg.rf.838c33f7f3e1672a97dc40254cc65361.jpg", - "response": "A group of men standing around each other", - "id": 27848 - }, - { - "image_path": "G:\\images\\combined\\001828_jpg.rf.0c942823e46af1c4c4dee22079698675.jpg", - "response": "A man in a white shirt is standing in a construction site.", - "id": 27849 - }, - { - "image_path": "G:\\images\\combined\\001829_jpg.rf.1cdf4ba13f1715616d0a3a00535b097e.jpg", - "response": "The image shows four workers in red at a construction site. They are all wearing bright red pants and hard hats. One worker is on the left of the image, leaning forward and holding a shovel with both hands, digging into the ground. Another worker is in the middle, holding a shovel in a similar position. The third worker is on the right, wearing a white hard hat and holding a long tool. The fourth worker is on the far right, wearing a red hard hat and holding a tool as well. In the background, a white building with black windows can be seen on the left side of the image.", - "id": 27850 - }, - { - "image_path": "G:\\images\\combined\\001830_jpg.rf.72bde77cdbc84cad2f881b072e9d78b1.jpg", - "response": "In the image two men in blue overalls and yellow hard hats are standing in front of a\u53d8\u7535\u7ad9. They are both holding black sticks with little red lights on the top. The man on the left is pointing to the right with his stick. In the background there are many tall metal towers and power lines.", - "id": 27851 - }, - { - "image_path": "G:\\images\\combined\\001831_jpg.rf.5bcea508b6e55138184d1cdc93eee5d5.jpg", - "response": "A group of men in hard hats and work clothes are working on a large metal box that is part of a power structure. They are standing on a platform that is elevated, and they are using a crane to lift and move the metal box.", - "id": 27852 - }, - { - "image_path": "G:\\images\\combined\\001832_jpg.rf.ee3f0ce17d6ef437ab379d3bc4dbdc10.jpg", - "response": "a group of people standing in front of a building", - "id": 27853 - }, - { - "image_path": "G:\\images\\combined\\001833_jpg.rf.5b7045d76b345d6107eef849ea3fb249.jpg", - "response": "The image shows two workers in the foreground, one wearing an orange jacket and the other wearing black, both working to remove snow and ice from a tree and large rock. The tree is covered in snow and ice and is located on a mountain. The workers are using shovels and possibly chainsaws to remove the ice and snow. The sky is overcast and there is no other visible human presence in the image.", - "id": 27854 - }, - { - "image_path": "G:\\images\\combined\\001834_jpg.rf.37c06e815a5edcf3068568a2956b7a11.jpg", - "response": "A man wearing a blue hard hat and a blue jacket.", - "id": 27855 - }, - { - "image_path": "G:\\images\\combined\\001835_jpg.rf.17b22b5abe641682e46c0f962b976527.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. They are all wearing hard hats, with four men on the left and three on the right. In the middle of the group, there is a man holding a drill. The building in the background is made of brick and metal scaffolding is visible on the outside. In the foreground, there is a pile of wood and other construction debris.", - "id": 27856 - }, - { - "image_path": "G:\\images\\combined\\001836_jpg.rf.74584e5883bb38fe09a8d4f569113ddc.jpg", - "response": "A man wearing a yellow helmet is crossing a stream. He is stepping over a log in the stream. There is a pile of trash on the bank of the stream behind him. There are two other people standing on the bank of the stream. One of them is bending over. There is a blue and white pipe running across the bank of the stream.", - "id": 27857 - }, - { - "image_path": "G:\\images\\combined\\001837_jpg.rf.abea5e8dda01385c4411613e659c2ef7.jpg", - "response": "a group of people standing around a hole in the ground", - "id": 27858 - }, - { - "image_path": "G:\\images\\combined\\001838_jpg.rf.c48956c44e74fea7f19c856bbc9bcf63.jpg", - "response": "A woman in a suit and hard hat is being handed a hard hat by two men. The woman is smiling and seems to be happy about it. The men are wearing black and the woman is wearing a suit and a hard hat. They are standing in a construction area.", - "id": 27859 - }, - { - "image_path": "G:\\images\\combined\\001839_jpg.rf.84a339d33542690df9ce6c9be950b854.jpg", - "response": "A man and woman wearing hard hats in a warehouse. The woman is holding a tablet and waving at the camera while the man looks on. In the background a worker is carrying a box.", - "id": 27860 - }, - { - "image_path": "G:\\images\\combined\\001840_jpg.rf.d29eac6933b047d68e70a4055c45de86.jpg", - "response": "The image shows two workers in blue uniforms and red hats, climbing on a utility pole. The pole is made of wood and is located in front of a blue sky with some white clouds. The workers are in the process of installing a power line.", - "id": 27861 - }, - { - "image_path": "G:\\images\\combined\\001841_jpg.rf.16099d81c46b75babeb75f4e72f87c35.jpg", - "response": "a group of men standing around in a unfinished room", - "id": 27862 - }, - { - "image_path": "G:\\images\\combined\\001842_jpg.rf.d26e9c45a39566e1d359f533bab3ef25.jpg", - "response": "In the image there are two men standing next to a concrete wall. Both men are wearing yellow and blue helmets. One man is wearing a blue shirt and is holding a clipboard.", - "id": 27863 - }, - { - "image_path": "G:\\images\\combined\\001843_jpg.rf.484b296fd75ba2c04755ddbbbefcea0b.jpg", - "response": "A group of workers stand next to a large orange and white striped pole. A crane is lifting a large piece of concrete onto the top of the pole.", - "id": 27864 - }, - { - "image_path": "G:\\images\\combined\\001844_jpg.rf.13460f1a5539a564e3b95a163c0d8de6.jpg", - "response": "A group of four people are working on a bridge. They are all wearing yellow hard hats. One person is sitting on the bridge holding a yellow hard hat. Another person is sitting on the bridge on the right holding a yellow and blue hard hat. The third person is on the left side of the bridge holding a blue and yellow hard hat. The fourth person is on the left side of the bridge holding a yellow hard hat. The bridge is being built over a rocky hill.", - "id": 27865 - }, - { - "image_path": "G:\\images\\combined\\001846_jpg.rf.e5faa9e53073458ef98a7ef39346f20b.jpg", - "response": "A shirtless man wearing a hard hat, gloves and work pants standing in a room filled with construction materials and debris. He is holding a tool in each hand and appears to be taking a break.", - "id": 27866 - }, - { - "image_path": "G:\\images\\combined\\001847_jpg.rf.e5096d850c007c3e890733f8779e5956.jpg", - "response": "A group of people standing around a large hole in the ground.", - "id": 27867 - }, - { - "image_path": "G:\\images\\combined\\001848_jpg.rf.f49c284e5aa9d036cd29b4f3c6b0109a.jpg", - "response": "a group of people standing around a construction site", - "id": 27868 - }, - { - "image_path": "G:\\images\\combined\\001849_jpg.rf.e41122d0f4e41a6118a948a600642aa2.jpg", - "response": "a group of people standing around each other", - "id": 27869 - }, - { - "image_path": "G:\\images\\combined\\00184da8d21e6c33.jpg", - "response": "In the image there is a stage with a large screen on the right side of it. On the stage there are three people, one on the left, one in the middle and one on the right. The person on the right is standing on a podium. In the audience you can see many people. On the left side of the stage there is a person standing with a microphone.", - "id": 27870 - }, - { - "image_path": "G:\\images\\combined\\001851_jpg.rf.41a65fab4db0c1abb9049ed475a75357.jpg", - "response": "a group of men walking down a dirt road", - "id": 27871 - }, - { - "image_path": "G:\\images\\combined\\001852_jpg.rf.7f0e449777d138b0168c360ea8145a82.jpg", - "response": "A man in a red hard hat is using a tool while standing on a concrete step. He is wearing a black shirt and grey pants. He is tied to a building with a green rope.", - "id": 27872 - }, - { - "image_path": "G:\\images\\combined\\001855_jpg.rf.ec48193ff174d33503fc8673db172c81.jpg", - "response": "The image shows two workers, one wearing a white shirt and a yellow helmet and the other wearing a white shirt and a red helmet, sitting on the ground and fixing an electrical component. They are wearing work clothes and the worker on the right is also wearing safety goggles.", - "id": 27873 - }, - { - "image_path": "G:\\images\\combined\\001856_jpg.rf.73b0ff693dac24a4cd41aa8e4eb663d2.jpg", - "response": "A worker uses a torch to cut through a metal pole.", - "id": 27874 - }, - { - "image_path": "G:\\images\\combined\\001857_jpg.rf.c25eaf63fae71165a6b76568351b3a13.jpg", - "response": "A man and woman are standing in a room that is under construction. The man is wearing a white hard hat and holding a clipboard. The woman is standing with her hands on her hips. They are both looking at the clipboard. The walls of the room are made of wood and there are power tools in the foreground.", - "id": 27875 - }, - { - "image_path": "G:\\images\\combined\\001858_jpg.rf.b4c8ce31c820aaa2b1b54cbd3aff8cae.jpg", - "response": "A group of workers are working on a construction site.", - "id": 27876 - }, - { - "image_path": "G:\\images\\combined\\001860_jpg.rf.6bd8fd8a35835bd2da6a2dbbcc2bc08f.jpg", - "response": "A group of people standing around a construction site.", - "id": 27877 - }, - { - "image_path": "G:\\images\\combined\\001861_jpg.rf.ddb4e74a2e47c6a2677951c715ce5fe9.jpg", - "response": "A group of about 15 men in grey and yellow work clothes and yellow helmets. They are standing in front of a pile of grey rocks and debris and a yellow and blue back hoe. They are all holding their right arms up in the air and are smiling at the camera. In the background there is a brown mountain with a red and white flag on it and a yellow and blue back hoe working in the rocks.", - "id": 27878 - }, - { - "image_path": "G:\\images\\combined\\001862_jpg.rf.e44852e2ddda5fc621fdd4374224d358.jpg", - "response": "A street that has been dug up by a construction crew.", - "id": 27879 - }, - { - "image_path": "G:\\images\\combined\\001863_jpg.rf.e45ee25a72faec437c74b81bf618577a.jpg", - "response": "Power line workers in the snow in the state of Sichuan in China.", - "id": 27880 - }, - { - "image_path": "G:\\images\\combined\\001864_jpg.rf.660540e677d8e6fcb863d38d01c57b07.jpg", - "response": "The photo shows a group of people in orange vests and red hats standing on a steel track. To the right of the track is a yellow vehicle. The background shows a yellow vehicle on a rail. The people are standing in front of a building.", - "id": 27881 - }, - { - "image_path": "G:\\images\\combined\\001865_jpg.rf.af31d300b0d7f86965d565f900e03b91.jpg", - "response": "A group of people standing around a cage that is filled with concrete.", - "id": 27882 - }, - { - "image_path": "G:\\images\\combined\\001866_jpg.rf.ddffadea05b9f23aecae1a72b7728719.jpg", - "response": "In the image there are multiple people working on a large construction site. They are working on a concrete slab and some of them are standing on it. There are also some cranes and other construction equipment on the site. The sky is blue and the sun is shining.", - "id": 27883 - }, - { - "image_path": "G:\\images\\combined\\001867_jpg.rf.4bb50ad35e6aac00d42e112d258c3974.jpg", - "response": "A group of men standing in a room.", - "id": 27884 - }, - { - "image_path": "G:\\images\\combined\\001868_jpg.rf.f1d486a56466e6be4dd260d46e282b69.jpg", - "response": "A man working on a building foundation in the middle of a field.", - "id": 27885 - }, - { - "image_path": "G:\\images\\combined\\001869_jpg.rf.40b9911c00df2b3468e5193c97034021.jpg", - "response": " A man(544,450),(709,914) in orange overalls(545,524),(706,906) walking down a metal staircase(497,433),(737,997)", - "id": 27886 - }, - { - "image_path": "G:\\images\\combined\\001871_jpg.rf.18c0a0895898732132e55888c33c9256.jpg", - "response": "A group of three men in yellow hard hats and yellow work shirts are looking at a machine. The two men on the right are holding clipboards and looking at the machine. The machine has a lot of pipes and knobs.", - "id": 27887 - }, - { - "image_path": "G:\\images\\combined\\001872_jpg.rf.ef7a7de51948d40a2271654ce243e177.jpg", - "response": " two men(248,103),(508,995)(648,329),(849,768) with hard hats(359,103),(482,202)(687,329),(784,420) on a mountain side", - "id": 27888 - }, - { - "image_path": "G:\\images\\combined\\001873_jpg.rf.cc998aa53293ddbf473d2ce23cd3f920.jpg", - "response": "A worker is seen breaking the glass of a bus. The bus is located on the left side of the image and the worker is on the left side. The broken glass is spread all over the floor. The right side of the image shows a bridge.", - "id": 27889 - }, - { - "image_path": "G:\\images\\combined\\001874_jpg.rf.d283fe2f2372755ee787dc3c9f63812a.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 27890 - }, - { - "image_path": "G:\\images\\combined\\001875_jpg.rf.96dcfe8bc31d5594dcbeac27ad84c2b8.jpg", - "response": "A man in a yellow hard hat is using a hose to spray water on rebar.", - "id": 27891 - }, - { - "image_path": "G:\\images\\combined\\001876_jpg.rf.16e403102e25adc03995e5b0eb9b58d4.jpg", - "response": "A man wearing a blue hard hat and a yellow safety vest is standing in front of a building under construction. The man is holding a set of plans in his hand and is looking at them. He is wearing a suit and tie and has a briefcase.", - "id": 27892 - }, - { - "image_path": "G:\\images\\combined\\001877_jpg.rf.bfd746884f0d6b3f5de5e980b389873b.jpg", - "response": "A man standing on a yellow ladder working on a electrical box.", - "id": 27893 - }, - { - "image_path": "G:\\images\\combined\\001878_jpg.rf.8a4f30ab2ced5d792a2fa5705b73e80e.jpg", - "response": "A man in a blue helmet is using a tool to fix a power line.", - "id": 27894 - }, - { - "image_path": "G:\\images\\combined\\001880_jpg.rf.ac909b24b61a64f45c49c4986aebaace.jpg", - "response": "A worker is seen in a scaffolding structure built around a mountain.", - "id": 27895 - }, - { - "image_path": "G:\\images\\combined\\001881_jpg.rf.68cb5253e04e4af56836359935c199a2.jpg", - "response": "A construction site with multiple workers and construction equipment.", - "id": 27896 - }, - { - "image_path": "G:\\images\\combined\\001882_jpg.rf.2a663f6451bb1e1a3793911e1e6f7ce1.jpg", - "response": "A group of men working on a construction site.", - "id": 27897 - }, - { - "image_path": "G:\\images\\combined\\001883_jpg.rf.b15d351a8fbd754f0619ccd93bfad276.jpg", - "response": "A group of men wearing white shirts and red hats are standing around a man in a white shirt and black pants. They are all standing on a concrete area with a blue sky above them.", - "id": 27898 - }, - { - "image_path": "G:\\images\\combined\\001884_jpg.rf.806e9b1e3a34ff1acbe2aa0d9c85ffef.jpg", - "response": "A worker is seen carrying a pipe in a tunnel. He is wearing a yellow hard hat and a gas mask. The tunnel is filled with smoke and there are other workers in the background. One of them is carrying a drill.", - "id": 27899 - }, - { - "image_path": "G:\\images\\combined\\001886_jpg.rf.9c3435cc58fde1a2130690cc8b7b9186.jpg", - "response": "A group of men standing around each other.", - "id": 27900 - }, - { - "image_path": "G:\\images\\combined\\001887_jpg.rf.a39427814b89319a7c117969568b9199.jpg", - "response": "In the image there are three people dressed in orange and blue work clothes. They are working on a construction site and are pulling on a rope or chain. The rope is connected to a large hook and is being used to lift something.", - "id": 27901 - }, - { - "image_path": "G:\\images\\combined\\001888_jpg.rf.3415117a311911c3932a19d650698be8.jpg", - "response": "The image shows a group of people standing in a room. The person in the center is wearing a black suit and is standing in front of a counter. There are two chairs behind the counter. The room has two doors and two windows. The walls are beige and the floor is dark brown. On the counter there are several items including a laptop, a keyboard, a mouse, and a few books. There is also a TV mounted on the wall.", - "id": 27902 - }, - { - "image_path": "G:\\images\\combined\\001889_jpg.rf.d8821cbe9c0ef6d8b4446cad0a57b134.jpg", - "response": "A man wearing a yellow hard hat is holding a trowel and applying grout to a tile wall.", - "id": 27903 - }, - { - "image_path": "G:\\images\\combined\\001890_jpg.rf.59417c8c1d7444f0d1e52e04c551d576.jpg", - "response": "The image shows two workers on a power pole. They are both wearing blue and yellow jackets. One worker is on the left side of the pole and the other one is on the right side. They are repairing the power lines. The sky is overcast.", - "id": 27904 - }, - { - "image_path": "G:\\images\\combined\\001891_jpg.rf.78225af86b21db39678c28d194d7be33.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 27905 - }, - { - "image_path": "G:\\images\\combined\\001892_jpg.rf.da5f742eff782eaf9f7bb0e1e70c2db2.jpg", - "response": "The image shows a group of people standing around a piece of paper. There are several men wearing hard hats and one of them is holding a piece of paper. They are standing in front of a large ship that is being built.", - "id": 27906 - }, - { - "image_path": "G:\\images\\combined\\001894_jpg.rf.eeebde979f19ebdec952a8ba92ae37ad.jpg", - "response": "A group of men wearing white and red hard hats are standing in a circle. They are all wearing ties and some are wearing white shirts. In the background there is a building with a sign that says \"focus\".", - "id": 27907 - }, - { - "image_path": "G:\\images\\combined\\001896_jpg.rf.25591f26163493c4f445d4c4b3f27867.jpg", - "response": "A group of people standing around a construction site looking at the ground. Some people are wearing hard hats and one person is holding a cell phone.", - "id": 27908 - }, - { - "image_path": "G:\\images\\combined\\001897_jpg.rf.68c95c19dc300998ec7251b80a6d7d62.jpg", - "response": "An image of a construction site with a person operating a machine. The machine is yellow and black and has a large arm with a drill at the end. The drill is drilling into the side of a large rock or wall. The person operating the machine is wearing a hard hat and has a white shirt. There is a small stream of water running down the side of the rock or wall. In the background, there is a bridge.", - "id": 27909 - }, - { - "image_path": "G:\\images\\combined\\001898_jpg.rf.73902438ca8e72f912943d63e02f8c03.jpg", - "response": "A group of five men working on a building site wearing hard hats.", - "id": 27910 - }, - { - "image_path": "G:\\images\\combined\\001899_jpg.rf.86650c8add9cae113fb5e2b67d51bcc4.jpg", - "response": "A group of people working on a building that is not finished. The building has a lot of wood beams in the middle and some walls have been built. There are a few trees in the background and a few cars in the parking lot.", - "id": 27911 - }, - { - "image_path": "G:\\images\\combined\\0018b38d7afbb037.jpg", - "response": "A man in a suit standing at a podium in front of a banner for the Australian Human Rights Commission.", - "id": 27912 - }, - { - "image_path": "G:\\images\\combined\\0018e004f5cac5e0.jpg", - "response": "A red car with the word Cordia Turbo on the back of it.", - "id": 27913 - }, - { - "image_path": "G:\\images\\combined\\001900_jpg.rf.638b7d8f60751737afd5c7da441475e9.jpg", - "response": "A man wearing a yellow hard hat and work clothes is welding two pieces of metal together. He is sitting on a pile of metal and the welding is causing the metal to glow and smoke. There is a large metal pipe next to him and he has a white glove on his hand.", - "id": 27914 - }, - { - "image_path": "G:\\images\\combined\\001901_jpg.rf.0d4c27bb16fdb0274e4a0a01da63fecb.jpg", - "response": "\u3010\u82f1\u6587\u3011 A Bangladeshi man(477,145),(858,996) is helped by another after an accident in Dhaka, Bangladesh, on Aug. 29, 2012. A passenger bus carrying tourists from China crashed into a truck in Bangladesh's capital, killing at least 10 people and injuring 12 others, police said.", - "id": 27915 - }, - { - "image_path": "G:\\images\\combined\\001902_jpg.rf.dbd2a996dd3d27ca5b8a5a36a57c8c33.jpg", - "response": "A couple of men in blue shirts and hard hats are working on a power line.", - "id": 27916 - }, - { - "image_path": "G:\\images\\combined\\001903_jpg.rf.2303c20cdf75e971dae56ef46ced6d57.jpg", - "response": "A group of men standing around each other.", - "id": 27917 - }, - { - "image_path": "G:\\images\\combined\\001904_jpg.rf.36ac404de8d70e57680e616036f93fe0.jpg", - "response": "A construction site with two workers on scaffolding. They are working on a large glass building.", - "id": 27918 - }, - { - "image_path": "G:\\images\\combined\\001905_jpg.rf.655f38dadffe6f10150b0663286cf870.jpg", - "response": "A group of people, including Chinese President Xi Jinping, are gathered in a factory. Some of them are wearing hard hats. In the background, there are several large metal cylinders.", - "id": 27919 - }, - { - "image_path": "G:\\images\\combined\\001906_jpg.rf.1d08191b7bb26082899006c1e986257f.jpg", - "response": "A construction worker is working on a site.", - "id": 27920 - }, - { - "image_path": "G:\\images\\combined\\001908_jpg.rf.c9bb9ddf1bf3327a415ec8bee4ac086e.jpg", - "response": "The photo shows a group of people standing around a map. There are at least 12 people in the photo, some of them are wearing suits. One person is wearing a white shirt and a tie, another one is wearing a black shirt and a suit, and another one is wearing a pink shirt and a black suit. One person is wearing a black shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a black shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a white shirt and a suit, another one is wearing a", - "id": 27921 - }, - { - "image_path": "G:\\images\\combined\\001909_jpg.rf.05c7d8f5041dc337d176d1f53e20cbbd.jpg", - "response": "A group of men in white shirts and some in safety vests and some in hard hats are walking across a concrete area in front of a building.", - "id": 27922 - }, - { - "image_path": "G:\\images\\combined\\001910_jpg.rf.6a1c1e8e101c0f1389157bd4619045bf.jpg", - "response": "A group of men looking at a banner on a construction site.", - "id": 27923 - }, - { - "image_path": "G:\\images\\combined\\001911_jpg.rf.53ab53bbac5dddad897781a91e6d2ec6.jpg", - "response": "The image shows a construction site with two workers visible. They are located on the right side of the image, working on the ground. In front of them, there is a large pile of steel rods, black and silver. To the left of the workers, there is a large pile of brown wooden planks. In the background, there are some buildings, the closest one is a blue building with a white sign that says \"\u78ba\u4fdd\u5e73\u5b89\" (Safeguarding Safety). This sign is located at the top left corner of the image. The sky is light blue with clouds.", - "id": 27924 - }, - { - "image_path": "G:\\images\\combined\\001912_jpg.rf.e78495b614b7863ff0c08c57aec905cd.jpg", - "response": "a group of men standing around a blueprint", - "id": 27925 - }, - { - "image_path": "G:\\images\\combined\\001913_jpg.rf.de7cd644cf131f89a1855ba4460f28eb.jpg", - "response": "The image shows several construction workers pouring concrete for the foundation of a building. The workers are wearing yellow hard hats and are standing on the unfinished floor of the building. There is a large hose being used to pump concrete onto the floor. The workers are positioned at various points along the hose, with one person on the left, one person in the middle, and two people on the right. There is a yellow hard hat visible in the middle of the scene, and a blue tarp is visible in the background.", - "id": 27926 - }, - { - "image_path": "G:\\images\\combined\\001914_jpg.rf.f320a3c2c658cc4650bc63b5ca3f2e0a.jpg", - "response": "A group of men in hard hats stand in a circle.", - "id": 27927 - }, - { - "image_path": "G:\\images\\combined\\001915_jpg.rf.641a9a4fcc5843a19dbe8d92a5d25330.jpg", - "response": "A picture of some power lines with three men working on them.", - "id": 27928 - }, - { - "image_path": "G:\\images\\combined\\001916_jpg.rf.b5defaa7687939501b4fb20016ebd893.jpg", - "response": "A man in a yellow hard hat stands in front of a body of water. There are large ships visible in the background.", - "id": 27929 - }, - { - "image_path": "G:\\images\\combined\\001917_jpg.rf.5a1fbc21af1f5722fa542e0ce7c66efb.jpg", - "response": "A man wearing a yellow hard hat and blue shirt is shoveling gravel into a wheelbarrow. He is standing on a construction site and there is a large building under construction in the background. There is a yellow hard hat on the ground next to the man.", - "id": 27930 - }, - { - "image_path": "G:\\images\\combined\\001918_jpg.rf.3d8468eee2005ef630e47c3b3e989df6.jpg", - "response": "A man in a yellow hat and camouflage clothes is on a ladder, working on wires.", - "id": 27931 - }, - { - "image_path": "G:\\images\\combined\\001919_jpg.rf.9dbf457611696ae6c4c6c2d258f4f3ea.jpg", - "response": "A few men in red suits are working on power lines.", - "id": 27932 - }, - { - "image_path": "G:\\images\\combined\\001921_jpg.rf.afa08c4cc44a4387c5e76c638e1abb06.jpg", - "response": "A man in a white suit is holding a yellow hard hat and talking to another man in a grey suit. They are standing in front of a white SUV with mud on the tires. There is a large tarp in the background and a few trees.", - "id": 27933 - }, - { - "image_path": "G:\\images\\combined\\001922_jpg.rf.574f72e36fa8c99dab5fc440a4358210.jpg", - "response": "A pair of workers on a scaffold outside a building.", - "id": 27934 - }, - { - "image_path": "G:\\images\\combined\\001923_jpg.rf.1e1e3bf693e038e27b883f4d245daf24.jpg", - "response": "The photo shows two workers in orange vests and orange hard hats, one on the left and one on the right, standing in a tunnel. The one on the right is holding a yellow device with a blue screen and appears to be drawing on the wall of the tunnel. The wall of the tunnel is brown and appears to be made of concrete. The left worker is looking at the wall the right worker is drawing on. The left worker is also wearing a yellow vest and can see a patch of brown hair and a white logo on the vest. The right worker is holding a pen in their right hand and a yellow device with a blue screen in their left hand.", - "id": 27935 - }, - { - "image_path": "G:\\images\\combined\\001924_jpg.rf.a6ea7f5da86154ed2b17519acfe9d745.jpg", - "response": "A man wearing a red hard hat and a white shirt is using a machine on a construction site.", - "id": 27936 - }, - { - "image_path": "G:\\images\\combined\\001925_jpg.rf.4e1c8f28fb52048a0bc6413ef8056b79.jpg", - "response": "A group of men standing in a room that has a wooden roof that has fallen in.", - "id": 27937 - }, - { - "image_path": "G:\\images\\combined\\001926_jpg.rf.d02a59bdb12f2a201f7b9ce4b98304bd.jpg", - "response": "A worker in a yellow hard hat and work clothes inspects an electricity pylon.", - "id": 27938 - }, - { - "image_path": "G:\\images\\combined\\001927_jpg.rf.2794bedcb3c7a1266af9c6005f4126a3.jpg", - "response": "The image shows a group of men standing in front of a building under construction. They are all wearing hard hats and some of them are holding cell phones. The men are standing in a patch of dirt near the construction site. In the background, there is a partially constructed building with scaffolding in place. The building has a sign on the right side that says \"\u4e1c\u6e56\u9633\u5149\".", - "id": 27939 - }, - { - "image_path": "G:\\images\\combined\\001928_jpg.rf.bccb7d99d3b8935a1bb78846bf68dbab.jpg", - "response": "Two men in yellow hard hats and reflective vests standing on a construction site looking at a clipboard.", - "id": 27940 - }, - { - "image_path": "G:\\images\\combined\\001929_jpg.rf.b1d81d5d9e70413ea032472d9c0d0947.jpg", - "response": "a group of men standing around a construction site", - "id": 27941 - }, - { - "image_path": "G:\\images\\combined\\001930_jpg.rf.30e2baeb7bf2d79568cbf940b2713981.jpg", - "response": "A woman in a red hard hat is walking with a man in a white shirt. They are in front of a construction site with a building under construction. There are other people walking around them. There are also trucks in the scene.", - "id": 27942 - }, - { - "image_path": "G:\\images\\combined\\001931_jpg.rf.c8bfa6160ae64cfdeeaed2bc6bc0dc32.jpg", - "response": "A man wearing a white hard hat is standing on a ladder. He is wearing a white hard hat, a plaid shirt, and work gloves. He is holding the rungs of the ladder and looking upwards. There is a white wall behind him and scaffolding to his right.", - "id": 27943 - }, - { - "image_path": "G:\\images\\combined\\001932_jpg.rf.81b2b3ad8a336e6ab1a331ee1a4c5498.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 27944 - }, - { - "image_path": "G:\\images\\combined\\001933_jpg.rf.512531ea62736fc297d7d48d6ec917f0.jpg", - "response": "A man in a red hat and blue jacket is on a metal structure, possibly a power tower. He is wearing climbing gear and appears to be in the process of climbing. Another man is visible at the bottom of the structure, holding a rope. The sky is clear and blue.", - "id": 27945 - }, - { - "image_path": "G:\\images\\combined\\001937_jpg.rf.07022334dbaff18071c0e9a1f726d3ca.jpg", - "response": "A worker in a white shirt and orange hard hat crouches down to work on an electrical meter.", - "id": 27946 - }, - { - "image_path": "G:\\images\\combined\\001938_jpg.rf.11e6746c06c112c71cd28ae2acd7afa8.jpg", - "response": "A group of men standing in front of a yellow and orange construction site.", - "id": 27947 - }, - { - "image_path": "G:\\images\\combined\\001939_jpg.rf.6f29e5cf2052f17221c9e4b2dfa775f0.jpg", - "response": "Three men in high visibility vests and hard hats are standing in front of a wall. They are smiling at the camera. The man on the left is holding a clipboard.", - "id": 27948 - }, - { - "image_path": "G:\\images\\combined\\001940ecf2a6f9eb.jpg", - "response": "The book cover for \"The Return of eva peron\" by V.S. Naipaul.", - "id": 27949 - }, - { - "image_path": "G:\\images\\combined\\001940_jpg.rf.81ad0dd6e8cd76cf7efe7a05387d0730.jpg", - "response": "A group of three men in blue hard hats are working on a large white box. The men are in the process of fixing a power line.", - "id": 27950 - }, - { - "image_path": "G:\\images\\combined\\001941_jpg.rf.52d4de0a6f5fc452a92959e71e10bbaa.jpg", - "response": "A group of three men working on a bridge together.", - "id": 27951 - }, - { - "image_path": "G:\\images\\combined\\001942_jpg.rf.1ce0af64832e2304a00d6bec3d0e1625.jpg", - "response": "In the image there is a construction site with multiple workers. There are at least four workers, with one worker in the foreground who is a construction worker wearing a yellow helmet and an orange safety vest with a white shirt and blue pants. The worker is fixing some steel bars. Above the worker, there are at least three other workers, one on the left wearing a green shirt and yellow helmet, one in the center wearing a yellow helmet and blue clothes, and one on the right wearing a blue shirt and a yellow helmet. In the background, there are\u81f3\u5c11 two more workers, one on the far left wearing a green shirt and yellow helmet, and one on the far right wearing a white shirt and a yellow helmet.", - "id": 27952 - }, - { - "image_path": "G:\\images\\combined\\001944_jpg.rf.9c8e2c910cacad289010ba1940c938a1.jpg", - "response": "A man wearing a yellow high vis vest and a blue hard hat is standing next to a large wooden beam. He is smiling at the camera.", - "id": 27953 - }, - { - "image_path": "G:\\images\\combined\\001945_jpg.rf.258cbbd59db6e8b79864d7a3acbed334.jpg", - "response": "A group of three men dressed in yellow vests and hard hats are looking at a blueprint. They are standing in front of a construction site.", - "id": 27954 - }, - { - "image_path": "G:\\images\\combined\\001946_jpg.rf.4b33fc4f8087ea45806fabfbaf526d64.jpg", - "response": "A man in a white hard hat is holding a cell phone to his ear.", - "id": 27955 - }, - { - "image_path": "G:\\images\\combined\\001947_jpg.rf.587c6a1e741f5c0785eef779b546ac58.jpg", - "response": "A construction worker showing a tablet to another worker.", - "id": 27956 - }, - { - "image_path": "G:\\images\\combined\\001948_jpg.rf.086f698a84bb90b4ccf53493f3a5885b.jpg", - "response": "The image shows a large tunnel under construction. The tunnel is circular and has a blue steel frame supporting it. The tunnel is surrounded by scaffolding. In front of the tunnel, three workers are standing. On the left, a worker is holding a large white bowl. On the right, two other workers are standing, one wearing an orange jumpsuit and a yellow hard hat, and the other wearing a red jumpsuit. The background shows that the sky is clear.", - "id": 27957 - }, - { - "image_path": "G:\\images\\combined\\001949358c06aeb2.jpg", - "response": "In the image, a man is in the process of throwing a volleyball into a basketball hoop. He is wearing a jersey that says \"PAC U\" on it and the number 15. The man is standing on a basketball court, and there is a group of people watching him from the side. Some of them are sitting on a low wall. The wall is made of concrete, and there is a basketball net hanging from the ceiling. The sky is dark, and there is a light shining on the wall.", - "id": 27958 - }, - { - "image_path": "G:\\images\\combined\\00194949204a98ef.jpg", - "response": "A wall with pictures and signs on it.", - "id": 27959 - }, - { - "image_path": "G:\\images\\combined\\001949_jpg.rf.b5bb8139382c5c02131b0706cb39a527.jpg", - "response": "The image shows three men standing in a large underground tunnel. They are all dressed in orange work clothes. The middle man is holding a white box with a red heart on it and the words \"\u7231\u5fc3\u836f\u7bb1\" (love heart first aid box) written on it. The man on the left is handing the box to the man on the right.", - "id": 27960 - }, - { - "image_path": "G:\\images\\combined\\001950_jpg.rf.0c3313e06f611ce271eb4461a5608865.jpg", - "response": "The image shows a group of rescue workers in orange jumpsuits and yellow helmets standing on a hillside at the edge of a pit. They are using tools and equipment, including what appears to be a long blue pipe, to search for a missing person. The workers are spread out across the scene, with some closer to the pit and others further away. The hillside is rocky and covered in dirt, and there is a large patch of dirt to the right of the workers. The photo was taken by a website called\u91d1\u534e\u65b0\u95fb\u7f51.", - "id": 27961 - }, - { - "image_path": "G:\\images\\combined\\001951_jpg.rf.4e76d78a9c9803e363a43ef7ca72f852.jpg", - "response": "A man and woman wearing hard hats and holding a set of plans at a construction site.", - "id": 27962 - }, - { - "image_path": "G:\\images\\combined\\001952_jpg.rf.5d33fa4baf2a99b5b479c084cad06688.jpg", - "response": "A power line technician wearing a blue uniform and a blue hat is working on a power line.", - "id": 27963 - }, - { - "image_path": "G:\\images\\combined\\001954_jpg.rf.ef8455473837609506a5974c0db7f8ce.jpg", - "response": "The image shows a group of people walking and talking on a sidewalk. They are all dressed in black, and some of them are carrying backpacks. The people in the front are men, and behind them are more people. The wall on the left side of the image has several posters on it. The closest one at the top reads \"\u521b\u65b0\u7fa4\u4f17\u5de5\u4f5c\u65b9\u6cd5\", and the one next to it reads \"\u4f9d\u6cd5\u5316\u89e3\u793e\u4f1a\u77db\u76fe\". In the background, there are several tall buildings under construction.", - "id": 27964 - }, - { - "image_path": "G:\\images\\combined\\001955_jpg.rf.f6519f6cc519cc00e70fee5951cb692e.jpg", - "response": "a group of men wearing hard hats", - "id": 27965 - }, - { - "image_path": "G:\\images\\combined\\001956_jpg.rf.05778a74d44ad4db318dea97df84ee2d.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is holding a rolled up paper and showing it to another worker. Both are standing in front of a building under construction.", - "id": 27966 - }, - { - "image_path": "G:\\images\\combined\\001957_jpg.rf.42406af1f27ba59a4c64368bfa5b36d9.jpg", - "response": "A group of men standing in a room with one of them holding a flashlight.", - "id": 27967 - }, - { - "image_path": "G:\\images\\combined\\001959_jpg.rf.5822df6d5bb8b420590647cb98e3a3da.jpg", - "response": "A man wearing a hard hat and holding a large wire on a sunny day.", - "id": 27968 - }, - { - "image_path": "G:\\images\\combined\\001960_jpg.rf.7bcc2ac8eb95cec7b1862ca376ebd2b8.jpg", - "response": "A female construction worker in a pink helmet is showing something to a male construction worker in white helmet. They are both dressed in white and blue.", - "id": 27969 - }, - { - "image_path": "G:\\images\\combined\\001961_jpg.rf.c728e4ba57955c9d17c20081793e5e67.jpg", - "response": "A construction site with a few men in hard hats walking through it.", - "id": 27970 - }, - { - "image_path": "G:\\images\\combined\\001962_jpg.rf.86a446f9fa7d0aea7022992a7d079fa3.jpg", - "response": "A group of men standing around a pile of bricks.", - "id": 27971 - }, - { - "image_path": "G:\\images\\combined\\001963_jpg.rf.b86c92d4623874ecb8f6a7a101f67451.jpg", - "response": "A railway worker points at the train tracks.", - "id": 27972 - }, - { - "image_path": "G:\\images\\combined\\001964_jpg.rf.dbee48ae4fee56c4bb81c1a43821b926.jpg", - "response": "a group of men standing around a construction site", - "id": 27973 - }, - { - "image_path": "G:\\images\\combined\\001965_jpg.rf.096278c0f995607763bba91342203949.jpg", - "response": "A construction worker wearing a yellow vest and red helmet.", - "id": 27974 - }, - { - "image_path": "G:\\images\\combined\\001966_jpg.rf.5599a9abe6ba342264b3bfd8b3f382d4.jpg", - "response": "A group of people working on a construction site.", - "id": 27975 - }, - { - "image_path": "G:\\images\\combined\\001967_jpg.rf.1ac4f814bdb8a71cefe5ae935d748b71.jpg", - "response": "A man is working on a power line in the mountains.", - "id": 27976 - }, - { - "image_path": "G:\\images\\combined\\001968_jpg.rf.79ba438ac2f55dafd2abd7bf3340a459.jpg", - "response": "The image shows six men standing in a line in front of a construction site. All of them are wearing suits except for one who is wearing a blue jacket. The men are all of Asian descent.", - "id": 27977 - }, - { - "image_path": "G:\\images\\combined\\001969_jpg.rf.c12d66da222b0a0d27ddeb6ed13da442.jpg", - "response": "A man in a yellow hard hat is on a lift working on power lines.", - "id": 27978 - }, - { - "image_path": "G:\\images\\combined\\001971_jpg.rf.7f3999bbedf91e780f68165fffeac638.jpg", - "response": "a group of people standing in a room that is under construction", - "id": 27979 - }, - { - "image_path": "G:\\images\\combined\\001973_jpg.rf.882d42da40a740a8ae3f3d6b86136dd7.jpg", - "response": "a group of people standing in front of a bus", - "id": 27980 - }, - { - "image_path": "G:\\images\\combined\\001974_jpg.rf.871f6f300ca977b5f4474a4d079c160f.jpg", - "response": "The image shows three workers in blue jumpers and red helmets on a ladder and a step ladder, repairing a power pole with many wires, in front of a white building.", - "id": 27981 - }, - { - "image_path": "G:\\images\\combined\\001975_jpg.rf.25fa15b87181587e98cbe630889bf1d8.jpg", - "response": "A man in a yellow hard hat standing on a brick wall.", - "id": 27982 - }, - { - "image_path": "G:\\images\\combined\\001976_jpg.rf.fbea416755dd1763ce0228593285e409.jpg", - "response": "A construction worker wearing a yellow hard hat is standing on a tall ladder. The worker is wearing a yellow vest and grey pants. They are standing on a tall ladder with a blue sky in the background. There are some pipes in the foreground.", - "id": 27983 - }, - { - "image_path": "G:\\images\\combined\\001977_jpg.rf.b8275b55ad5fcfc1ca96e6bc62048302.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing hard hats and work clothes. One man is pointing towards a unfinished building in the background.", - "id": 27984 - }, - { - "image_path": "G:\\images\\combined\\001978_jpg.rf.3757849eda4ff4df985d9fda59697f5b.jpg", - "response": "The image shows a group of people, most of them wearing yellow hard hats. There are at least five people in the group, with one person on the far left and another person to their right, who is wearing a yellow hard hat and a brown towel around their neck. Another person is standing in the middle of the group, wearing a red hard hat. There is a girl on the far left who is handing a piece of paper to the person wearing the yellow hard hat. The background shows a yellow building with red lettering.", - "id": 27985 - }, - { - "image_path": "G:\\images\\combined\\001979_jpg.rf.594d7a4f34501ee61c48fdf011b8b891.jpg", - "response": "The image shows three men walking together in a courtyard. The man on the left is holding a black briefcase and a red hard hat. The man in the center is also wearing a red hard hat. The man on the right is wearing a tan jacket over a black shirt and pants and is carrying a black folder. In the background, there is a building under construction with several tall green construction towers and a red roof. There is also a blue fence in the middle of the courtyard.", - "id": 27986 - }, - { - "image_path": "G:\\images\\combined\\001980_jpg.rf.ae95941eba98e08c891389bdd6fdf035.jpg", - "response": "A construction worker in a yellow hard hat crouches down next to a large circular object. The worker is wearing a grey shirt and grey pants. They are working on a grid of metal rebar.", - "id": 27987 - }, - { - "image_path": "G:\\images\\combined\\001981_jpg.rf.d568b72b3c62910ac50ef60bb119c30d.jpg", - "response": " Two men(206,350),(446,996)(457,350),(654,997) standing in front of a crane(399,2),(738,628)", - "id": 27988 - }, - { - "image_path": "G:\\images\\combined\\001982_jpg.rf.a465fd6d0814d59d36060d97214cac70.jpg", - "response": "A man wearing a white jumpsuit and a hard hat is sitting on scaffolding. He is wearing work boots and holding a drill.", - "id": 27989 - }, - { - "image_path": "G:\\images\\combined\\001983_jpg.rf.a8792e3887a32f6a5320e1c5364a3d08.jpg", - "response": "A man in a yellow hard hat is kneeling on a construction site. He is wearing a black shirt and grey pants. He is holding a hammer in his right hand. There are many wooden planks around him. To his right, there is a yellow tower crane.", - "id": 27990 - }, - { - "image_path": "G:\\images\\combined\\001984_jpg.rf.b273595bc6524cfb490444c6d9f7e9f8.jpg", - "response": "A group of men working on a construction site.", - "id": 27991 - }, - { - "image_path": "G:\\images\\combined\\001985_jpg.rf.7d9ae7ec88158e1b3b70db4d43ff41f2.jpg", - "response": "A man wearing a blue shirt and a white hat is using a device on a tripod at a construction site.", - "id": 27992 - }, - { - "image_path": "G:\\images\\combined\\001986_jpg.rf.a6f2230c2903ce17bf8c0f4c7d94871f.jpg", - "response": "a group of men wearing hard hats", - "id": 27993 - }, - { - "image_path": "G:\\images\\combined\\001987_jpg.rf.5a84c29028f60bb2c114fcd82a4553b5.jpg", - "response": "A group of men standing next to each other wearing business attire and hard hats.", - "id": 27994 - }, - { - "image_path": "G:\\images\\combined\\001988_jpg.rf.203e8aeb17a8e6f4a7d5b2acb8b0277d.jpg", - "response": "A group of workers are standing on scaffolding.", - "id": 27995 - }, - { - "image_path": "G:\\images\\combined\\001989_jpg.rf.bf1159d0cfeddbf57557d64cce59bcf1.jpg", - "response": "\u9879\u76ee\u7ecf\u7406\u674e\u6587\u5fe0(288,63),(719,997)\u5728\u67e5\u770b\u65bd\u5de5\u8d28\u91cf", - "id": 27996 - }, - { - "image_path": "G:\\images\\combined\\001990_jpg.rf.d1e7c1afbb72f60388a435c6bc7a058f.jpg", - "response": "The image shows a tunnel with a dump truck inside. The tunnel is circular and has a concrete wall. The dump truck is parked at the center of the tunnel and is unloading concrete. The dump truck has a bright light shining on it. There is a person wearing a red hard hat standing in the bottom right corner of the image.", - "id": 27997 - }, - { - "image_path": "G:\\images\\combined\\001991_jpg.rf.2bb748c3bf56843ac8cf5ddf610c7286.jpg", - "response": "The image shows two workers in white and blue uniforms, with one of them wearing a tool belt, installing a power line. They are standing on a large grey pole with the number 51 on it, and there is a large white sign with red Chinese characters behind them. The sky is overcast and there are many power lines in the air.", - "id": 27998 - }, - { - "image_path": "G:\\images\\combined\\001992_jpg.rf.c5c3e6cda9f9c3366d10f8f746f2036c.jpg", - "response": "A man wearing a yellow hard hat and measuring a wooden floor.", - "id": 27999 - }, - { - "image_path": "G:\\images\\combined\\001993_jpg.rf.40c0c6d6bfc7f442a020fcb106a2498e.jpg", - "response": "A group of people standing on top of a building site wearing hard hats.", - "id": 28000 - }, - { - "image_path": "G:\\images\\combined\\001994_jpg.rf.a0f3569ddf91d10e0ad256d7b8e9139b.jpg", - "response": "A man in a uniform is working on a power line attached to a tall pole.", - "id": 28001 - }, - { - "image_path": "G:\\images\\combined\\001995_jpg.rf.1a4e894114de11764c5808f38141850a.jpg", - "response": "A couple of men in white jumpsuits are working on a power line.", - "id": 28002 - }, - { - "image_path": "G:\\images\\combined\\001996_jpg.rf.5de8c2f1daf34927595f5c5cd103f951.jpg", - "response": "A group of men in hard hats.", - "id": 28003 - }, - { - "image_path": "G:\\images\\combined\\001997_jpg.rf.81b4ce223e6b4185a56096f2d3baf7ab.jpg", - "response": "In the image there are two workers wearing blue hard hats and white pants. They are both on a ladder working on a power pole. The pole is made of wood and has many wires and electrical components attached to it. There are also many other power poles in the background.", - "id": 28004 - }, - { - "image_path": "G:\\images\\combined\\001999_jpg.rf.b7348e2409f5d5ffc2e85740370f06aa.jpg", - "response": "A man in a yellow hard hat kneeling on the ground looking at a set of plans. He is wearing a grey shirt, brown pants with a tool belt and black boots. There are wooden beams around him and a table with various items on it in the background.", - "id": 28005 - }, - { - "image_path": "G:\\images\\combined\\0019b1bd14387254.jpg", - "response": "A man wearing a black and white sweater is standing in front of a poster. The poster is titled \"The Role of Social Categorization Processing of Own- and Other-Rated Emotions.\" There is a water bottle on the table next to the poster.", - "id": 28006 - }, - { - "image_path": "G:\\images\\combined\\001a7cbe1d4e025e.jpg", - "response": "A girl in a plaid shirt is holding a piece of paper.", - "id": 28007 - }, - { - "image_path": "G:\\images\\combined\\001b13d0431888a2.jpg", - "response": "A bottle of Reposado tequila and a bottle of Arette Anejo tequila sit side by side on a counter.", - "id": 28008 - }, - { - "image_path": "G:\\images\\combined\\001b616c9bd209ff.jpg", - "response": "A record album cover for the 70th anniversary of the Dutch Philharmonic Orchestra.", - "id": 28009 - }, - { - "image_path": "G:\\images\\combined\\001bc9f141c3df42.jpg", - "response": "A bottle of Thatchers Old Rascal cider next to a glass filled with the cider.", - "id": 28010 - }, - { - "image_path": "G:\\images\\combined\\001bebecea382500.jpg", - "response": "A black and yellow car on display with a crowd of people standing around it.", - "id": 28011 - }, - { - "image_path": "G:\\images\\combined\\001ccd20db4c2295.jpg", - "response": "Two men are holding and pointing at a shoe. One man is wearing a yellow shirt and a hat, and the other man is wearing a black and blue jacket and a watch. The man on the right is also wearing a ring. The wall behind them has the letters N and C on it.", - "id": 28012 - }, - { - "image_path": "G:\\images\\combined\\001cdd25e148cd36.jpg", - "response": "A green and blue checkered police car is parked on the side of the road.", - "id": 28013 - }, - { - "image_path": "G:\\images\\combined\\001ce300279f1a81.jpg", - "response": "A wall with a drawing of Oscar the Grouch from Sesame Street.", - "id": 28014 - }, - { - "image_path": "G:\\images\\combined\\001ce802c60d8ea1.jpg", - "response": "The image depicts a group of young men playing a competitive game of soccer on a grass field. There are at least eleven players present, all wearing different colored jerseys, with some wearing blue and white striped jerseys and others wearing blue and white striped jerseys. They are actively engaged in the game, running, jumping, and making quick maneuvers to kick the soccer ball. The players are spread across the field, with some closer to the foreground and others further away. The ball is located towards the left side of the field, and one player is attempting to kick it with his stick.", - "id": 28015 - }, - { - "image_path": "G:\\images\\combined\\001d028a021c9c00.jpg", - "response": "A print ad for Camel cigarettes, featuring actor Richard Carlson. The ad is in black and white. Richard Carlson is sitting in a director's chair, holding a cigarette. To his right, there is a picture of him on set. To his left, there are pictures of him with his wife and daughter. The ad copy is in the center of the page.", - "id": 28016 - }, - { - "image_path": "G:\\images\\combined\\001ddeda193f5789.jpg", - "response": "A car covered in snow with a license plate that says \"517\".", - "id": 28017 - }, - { - "image_path": "G:\\images\\combined\\001e5ad725a4c7c3.jpg", - "response": "A group of people holding a box with the word fusion on it.", - "id": 28018 - }, - { - "image_path": "G:\\images\\combined\\001e61e36acec4cc.jpg", - "response": "A group of three people sitting on a couch in a room.", - "id": 28019 - }, - { - "image_path": "G:\\images\\combined\\001e68b987a389d5.jpg", - "response": "An old yellow hotrod with the number 22 on the hood.", - "id": 28020 - }, - { - "image_path": "G:\\images\\combined\\001e77be67b2e99c.jpg", - "response": "A wall with a sign that says COAL on it.", - "id": 28021 - }, - { - "image_path": "G:\\images\\combined\\001ef6050a0a97a6.jpg", - "response": "A kitchen counter with a bag of Nestle Toll House chocolate chips, a bag of Nestle chocolate morsels, a can of sweetened condensed milk, a bag of Nestle golden chocolate baking bars, a measuring cup with sugar, a measuring cup with flour, a bowl of sugar, and a bowl of flour.", - "id": 28022 - }, - { - "image_path": "G:\\images\\combined\\001f5618a7b33d88.jpg", - "response": "A clock with three little men hanging from it.", - "id": 28023 - }, - { - "image_path": "G:\\images\\combined\\001f581f2f2db648.jpg", - "response": "A paper advertisement for Sprint's Palm Pixi phone.", - "id": 28024 - }, - { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.7c8c3a1ea477387e77eeb4e130e285d7.jpg", - "response": "A group of people standing in front of a camera. They are all wearing face masks. They are holding up plastic pipes and signs. One of the signs is in Chinese.", - "id": 28025 - }, - { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.9b62ebcbd9492f96c0e34644f795e2c6.jpg", - "response": "A group of people stand in a row, wearing face masks. They are all holding up white plastic pipes. In front of them is a sign that says \"We are all Hong Kongers, we all have the right to live in a clean environment. We are all victims of the government's policy. We need your support to protect our right.\"", - "id": 28026 - }, - { - "image_path": "G:\\images\\combined\\001_1024_jpeg_jpg.rf.a8d05cc51aa2f8a52fe0b31df45113ba.jpg", - "response": "A group of people are standing in a row, all wearing face masks(226,147),(363,342)(479,338),(587,461)(767,509),(837,586)(689,576),(766,659). They are holding up a plastic pipe and a sign.", - "id": 28027 - }, - { - "image_path": "G:\\images\\combined\\002000_jpg.rf.e679e8b30f526f19db5f4daa5996ea20.jpg", - "response": "The image shows a group of construction workers in blue uniforms and yellow hard hats, working on a bridge. They are standing on the bridge, which has a red and white crane in the background. The workers are focused on their task, which involves pouring concrete. The bridge appears to be in the middle of construction, with some parts of it already built and others still under construction.", - "id": 28028 - }, - { - "image_path": "G:\\images\\combined\\002001_jpg.rf.8affcf66ce844ae4e89df7c5d1aca14b.jpg", - "response": "In the image two men are working on a project. One man is wearing a blue shirt and a white helmet and is digging in the ground with a shovel. Another man is wearing a yellow helmet and a yellow hard hat and is also digging in the ground with a shovel. They are both wearing yellow and white helmets. In the background there is a building with a sign on it.", - "id": 28029 - }, - { - "image_path": "G:\\images\\combined\\002002_jpg.rf.dd4e7f9bbc25827848f4fe8b3f0a8e6e.jpg", - "response": "The image shows a group of people standing in front of a yellow wall with a sign that reads \u201c\u6cb3\u5357\u5929\u4e30\u96c6\u56e2\u201d. The group is standing in two rows, and there is a person on the far left wearing a black jacket and grey shirt. Another person in the second row from the left is wearing a blue jacket and grey shirt. The person on the far right is wearing a black jacket and a grey scarf. The wall behind the group has a logo that reads \u201cFonon\u201d on the first line and \u201cShenan\u201d on the second line. The group is standing in front of the wall and there is a white sign with the date January 19th, 2018 written on it.", - "id": 28030 - }, - { - "image_path": "G:\\images\\combined\\002003_jpg.rf.04ebbbe457537443ab32b9e17113d5b4.jpg", - "response": "A man wearing a yellow hat and no shirt is holding a large pick ax over his shoulder. He is standing in a dark room with a light shining on him. The walls of the room are made of concrete and there is a large crack in the wall on the right side.", - "id": 28031 - }, - { - "image_path": "G:\\images\\combined\\002004_jpg.rf.31fe47334b6c9f147fa9a7b940d66cb7.jpg", - "response": "A group of people standing around a machine.", - "id": 28032 - }, - { - "image_path": "G:\\images\\combined\\002005_jpg.rf.2309b34137f530485987cd45b202f6da.jpg", - "response": "A worker in a\u6a59\u8272\u5de5\u88c5 and a yellow hard hat(426,238),(639,449) is working on a blue metal structure.", - "id": 28033 - }, - { - "image_path": "G:\\images\\combined\\002006_jpg.rf.ecbe3d4ff462fb47997bb8ee889bab76.jpg", - "response": "a group of men wearing blue shirts that say Jiangsu\u7f1d\u7eab on the back", - "id": 28034 - }, - { - "image_path": "G:\\images\\combined\\002007_jpg.rf.dd1865af0c389af210d29724ba91808f.jpg", - "response": "The image shows the interior of a large tunnel. There are three workers visible, one in the center of the image and two others to the left. The worker in the center is turning a wheel, and the two others are standing further back. The workers are all wearing hard hats.", - "id": 28035 - }, - { - "image_path": "G:\\images\\combined\\002008_jpg.rf.9b23d9d58c85308a7d8aaa19f3d0371f.jpg", - "response": "In the image two workers are\u4fee\u7406ing high voltage wires on a power pole. They are wearing blue helmets and white work clothes. The sky is full of clouds.", - "id": 28036 - }, - { - "image_path": "G:\\images\\combined\\002009_jpg.rf.afb3bd33ed7d63cbe44e9baf3550a775.jpg", - "response": "The image shows a group of people, including rescuers and bystanders, gathered around two people who are trapped under a large pile of dirt. The people are huddled together and appear to be working to free the two individuals who are trapped beneath the dirt. The scene is set outdoors and there are several sets of footprints visible in the dirt.", - "id": 28037 - }, - { - "image_path": "G:\\images\\combined\\002010_jpg.rf.9f96f3dccdb1dcd8cece5c4bab2dde6f.jpg", - "response": "A group of men working on a construction site.", - "id": 28038 - }, - { - "image_path": "G:\\images\\combined\\002011_jpg.rf.f522901f51c12869110c376473effdaa.jpg", - "response": "A man in a red shirt and red helmet is working on some equipment. He is wearing sunglasses and has a beard. He is looking at some hoses and is touching a switch. He is standing in front of some other equipment and is near a white wall.", - "id": 28039 - }, - { - "image_path": "G:\\images\\combined\\002012_jpg.rf.fb264a8af3c0030abbabbc3c54fcfc16.jpg", - "response": "A woman in a green dress is speaking into a microphone. She is walking with a group of men. One of the men is wearing a blue shirt and a tie. Another man is wearing a white t-shirt. A third man is wearing a black shirt and khaki pants. They are walking on a dirt road. There is a car to the left of the group. In the background there is a building with a sign that says \"Zhihao\" on it.", - "id": 28040 - }, - { - "image_path": "G:\\images\\combined\\002013_jpg.rf.5dd3b85b7fad310668548a52b3613b17.jpg", - "response": "a large metal object(2,0),(997,775)", - "id": 28041 - }, - { - "image_path": "G:\\images\\combined\\002014_jpg.rf.8fbd10cd363f8ec84e64b5da6b24bb55.jpg", - "response": " A man(316,332),(446,631) in an orange jacket(317,396),(445,627) stands in front of a muddy construction site(2,347),(996,996) with a large body(2,205),(996,367) of water in the background.", - "id": 28042 - }, - { - "image_path": "G:\\images\\combined\\002015_jpg.rf.01d6917c4aa6ebeda742b3a3d25862b9.jpg", - "response": "A group of people standing next to a truck in a coal mine.", - "id": 28043 - }, - { - "image_path": "G:\\images\\combined\\002017_jpg.rf.4dd8e150b13fb7a4a902767c3482ed40.jpg", - "response": "The image shows a snowy forest with several pine trees. The foreground is filled with workers in blue work clothes and red safety vests. They are all wearing blue hats. In the middle, three workers are holding a large white pipe with red characters on it. One of them is on the left, the other on the right, and the one in the middle is crouching.", - "id": 28044 - }, - { - "image_path": "G:\\images\\combined\\002018_jpg.rf.29ee8ad553f887637de04971b5eceadd.jpg", - "response": "A construction worker in a hard hat sitting in a forklift.", - "id": 28045 - }, - { - "image_path": "G:\\images\\combined\\002019_jpg.rf.971dc483f29b0dc9b9d49eb5be1a99b2.jpg", - "response": "In the image there are two construction workers, one is holding a pipe and is looking into the camera, the other one is looking into the distance. They are both wearing yellow helmets. Behind them is a large power plant with many pipes and cables.", - "id": 28046 - }, - { - "image_path": "G:\\images\\combined\\002020_jpg.rf.ad58900155c0eaec64cfa07fcf004af6.jpg", - "response": "A woman in a hard hat and safety vest looking at a tablet.", - "id": 28047 - }, - { - "image_path": "G:\\images\\combined\\002021_jpg.rf.c63093976d6aaadf7012c380a729e9aa.jpg", - "response": "In the image, a worker is seen wearing a blue uniform and a helmet while working on an electricity pylon. The worker is standing on the pylon and connecting two wires. The sky is blue and there are no clouds in the sky. In the background, there are some mountains.", - "id": 28048 - }, - { - "image_path": "G:\\images\\combined\\002022_jpg.rf.edd1b7299ff9a86591dcf7f096f747c8.jpg", - "response": "A worker in a blue jacket and yellow hard hat is working on a power line.", - "id": 28049 - }, - { - "image_path": "G:\\images\\combined\\002023_jpg.rf.6109ee90d01daddd49503729a81942f4.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a construction site. They are standing over a large area of concrete that has been dug out and is filled with steel rebar. The worker is holding a large wrench and is working on the rebar. The background shows a large area of concrete with many steel rebar sticking out of it.", - "id": 28050 - }, - { - "image_path": "G:\\images\\combined\\002024_jpg.rf.adcc11b402d788c44c786ade0bdf82fd.jpg", - "response": "A woman in a pink hard hat interviews a man in a blue shirt and white hard hat. They are both standing in front of a pink crane.", - "id": 28051 - }, - { - "image_path": "G:\\images\\combined\\002025_jpg.rf.7d7c9803ad3b4fcf59c04d40c9cc801a.jpg", - "response": "A worker at the China National Non-Ferrous Metal Corporation in Lianyungang, East China's Jiangsu province, checks the temperature of a melting furnace. The company has invested heavily in new technology to reduce emissions and improve efficiency.", - "id": 28052 - }, - { - "image_path": "G:\\images\\combined\\002026_jpg.rf.50fa1005a5e431202791701cf4834f4c.jpg", - "response": "A group of three men wearing black leather jackets and yellow hard hats are walking down a staircase. The staircase is surrounded by scaffolding and the wall is green.", - "id": 28053 - }, - { - "image_path": "G:\\images\\combined\\002027_jpg.rf.8fcffee7b1495d823ff32a50cc862b4e.jpg", - "response": "A couple of men looking at blueprints on a table.", - "id": 28054 - }, - { - "image_path": "G:\\images\\combined\\002029_jpg.rf.2eb399c32585b6a0f0794386251ad483.jpg", - "response": "In the image, two people are standing in a large industrial building. They are both wearing white hard hats, and the person on the left is also wearing a blue jacket. They are both holding papers and appear to be examining something. In the background, there is a large red structure.", - "id": 28055 - }, - { - "image_path": "G:\\images\\combined\\002031_jpg.rf.161a36ebeb665993f3f0a6e93c83f820.jpg", - "response": "A construction site with multiple workers, some of which are pouring concrete into a large mold.", - "id": 28056 - }, - { - "image_path": "G:\\images\\combined\\002032_jpg.rf.14582cee99fe10d25d48623c18bfab33.jpg", - "response": "A man in a yellow raincoat, hat, and sunglasses is looking down. He is wearing a yellow hat and has a black cord around his neck with a black clip at the end of it. The man is also wearing black sunglasses. The background is bright white.", - "id": 28057 - }, - { - "image_path": "G:\\images\\combined\\002033_jpg.rf.f4d58b6b1913a1bc0262e67694e43f7c.jpg", - "response": "A worker wearing a red uniform and a hard hat is cutting through a metal pipe with a grinder. The sparks from the grinder are flying all around and some of them are visible in the foreground of the image. The worker is standing in a large warehouse-like setting with a lot of metal debris all around.", - "id": 28058 - }, - { - "image_path": "G:\\images\\combined\\002034_jpg.rf.c4005fef2344f7058826898904f5f916.jpg", - "response": "3 men(158,289),(413,996)(507,0),(833,940) in blue uniforms and yellow hard hats(224,288),(370,456)(509,3),(618,150)(508,3),(617,149), one holding a red and black box(348,516),(638,869) and the other two holding wires(357,496),(619,595).", - "id": 28059 - }, - { - "image_path": "G:\\images\\combined\\002035_jpg.rf.0adc01f2270f1218cfe58f1a194adc0e.jpg", - "response": "A man in a hard hat is operating a piece of equipment in a tunnel.", - "id": 28060 - }, - { - "image_path": "G:\\images\\combined\\002036_jpg.rf.d0070bc78178734fb3eb7b133357e296.jpg", - "response": "The image shows three men in orange work clothes standing around a large metal device with two red handles. They are all wearing hard hats and the men on the left and right are also wearing red gloves. The men appear to be engineers as they are standing around the metal device which is some sort of large machine. They are looking at the machine and talking.", - "id": 28061 - }, - { - "image_path": "G:\\images\\combined\\002037_jpg.rf.68105c7e49de457c5036b800d453f821.jpg", - "response": "a group of men working on a street", - "id": 28062 - }, - { - "image_path": "G:\\images\\combined\\002038_jpg.rf.cf32a62f42e18fabe1ac39703217c064.jpg", - "response": " Two workers(390,331),(598,997)(157,408),(443,997) standing on a construction site", - "id": 28063 - }, - { - "image_path": "G:\\images\\combined\\002039_jpg.rf.346a8558cfbb18aa30555b909e2cd380.jpg", - "response": "The image shows two people in blue work clothes and white or orange hard hats standing in a construction site. They are both holding some papers. In the background, there is a red brick wall, a pile of yellow sand, a few red bags possibly containing construction materials, a couple of yellow cranes, and a few electric poles.", - "id": 28064 - }, - { - "image_path": "G:\\images\\combined\\002040_jpg.rf.7ae3724a0d68516e55b9c3c3c7131ec4.jpg", - "response": "A construction site with three men standing around. They are all wearing red hard hats. One man is holding an umbrella. There is a building in the background.", - "id": 28065 - }, - { - "image_path": "G:\\images\\combined\\002041_jpg.rf.fc5f9b8bc4885d4f2889ec46e1fe3506.jpg", - "response": "In the image there is a large group of people working on a bridge. They are all wearing hard hats and some are wearing yellow and grey. There is a large yellow and grey crane in the background. In the foreground there is a man wearing a grey shirt and brown and green pants. He is holding a tool in his right hand. There are blue posts stuck in the ground around the area where the people are working. The bridge appears to be made of metal and is in various stages of construction.", - "id": 28066 - }, - { - "image_path": "G:\\images\\combined\\002042_jpg.rf.d201385e3a65c8543ef7f5f5d124d05f.jpg", - "response": "The image shows two construction workers at a construction site. They are wearing hard hats and work clothes. One of the workers is holding a large pipe while the other worker is pulling on it. They are standing on the construction site over a cement foundation.", - "id": 28067 - }, - { - "image_path": "G:\\images\\combined\\002043_jpg.rf.056e113a91c2b2dc87205e4cb625b210.jpg", - "response": "A group of men standing in front of a large rock wall.", - "id": 28068 - }, - { - "image_path": "G:\\images\\combined\\002044_jpg.rf.7667197518ad37301dffe9698f417622.jpg", - "response": "The image shows two men standing in a room that is in the process of being painted. The walls are white, but not yet finished, and there is a large bare space where the ceiling and walls meet. The ceiling is white and has a wooden frame. The floor is a light brown color. One man is on the left side of the image and is wearing a dark gray shirt. He has dark hair and is looking down at the floor. The other man is on the right side of the image and is wearing a green shirt. He has dark hair and is also looking down at the floor.", - "id": 28069 - }, - { - "image_path": "G:\\images\\combined\\002045_jpg.rf.0537ca2d7b931a4a82f50d35f95d70e9.jpg", - "response": "A group of people working on a building construction site.", - "id": 28070 - }, - { - "image_path": "G:\\images\\combined\\002046_jpg.rf.f482c1bd7f7d0b4fa449edab34fa2037.jpg", - "response": "Two men in hard hats and orange vests looking at a blueprint.", - "id": 28071 - }, - { - "image_path": "G:\\images\\combined\\002047_jpg.rf.741703ca1935df8cea02bdd2e1042b5b.jpg", - "response": "A group of people in blue uniforms and hard hats are gathered around a grey box. They are all wearing gloves and some are holding tools.", - "id": 28072 - }, - { - "image_path": "G:\\images\\combined\\002048_jpg.rf.5167858c8044965bc27fe94cd7dba43e.jpg", - "response": "In the image there is a person wearing a yellow construction hat and a brown shirt. They are holding a plastic bottle filled with water and drinking from it. The bottle is filled with a clear liquid. The person is in front of a green construction site.", - "id": 28073 - }, - { - "image_path": "G:\\images\\combined\\002050_jpg.rf.fa1c00b8427d60be3fd04f03dd5e9b73.jpg", - "response": "Rescuers(2,4),(397,997)(299,170),(522,640) try to save a boy(469,564),(546,693) who fell into a well.", - "id": 28074 - }, - { - "image_path": "G:\\images\\combined\\002051_jpg.rf.f64a9d6cb004b4a48d6b95cc048a5546.jpg", - "response": "In the image two men are working on power lines. They are both wearing white and yellow safety gear. One man is standing on a utility pole and the other is on a ladder working on the power lines.", - "id": 28075 - }, - { - "image_path": "G:\\images\\combined\\002052_jpg.rf.564e967a46df1ca84b34cf944dbe400d.jpg", - "response": "A construction worker and a man in a suit and tie standing in a construction site. The worker is wearing a yellow helmet and an orange vest. The man in the suit is wearing a white helmet. They are both holding a clipboard.", - "id": 28076 - }, - { - "image_path": "G:\\images\\combined\\002053_jpg.rf.857a6e73284b48f346e894d3a42dcf74.jpg", - "response": "A construction worker is pouring concrete around a steel rebar cage. He is wearing a yellow construction hat, yellow and green construction suit, and yellow and black work boots. He is holding a yellow and white bag in his left hand while he is pouring concrete. There is a large concrete pole in the middle of the construction site. The worker is pouring concrete around it. There are many other workers in the construction site. Some of them are standing on the steel grid on the ground, some are standing on the concrete floor, and some are standing on the yellow steel bars. There are also many other steel bars in the construction site.", - "id": 28077 - }, - { - "image_path": "G:\\images\\combined\\002054_jpg.rf.362f2e4b79a676925802723fc28dc8ef.jpg", - "response": "A group of three people working on a construction site.", - "id": 28078 - }, - { - "image_path": "G:\\images\\combined\\002055_jpg.rf.6bf076a768aea28a56a2040ef19e1dbb.jpg", - "response": "A group of men standing around a dry grass field", - "id": 28079 - }, - { - "image_path": "G:\\images\\combined\\002056_jpg.rf.4df94fd11af8b623c8ac294577ad37fe.jpg", - "response": "A hand is holding a wooden thermometer in front of a construction site. The thermometer is showing a temperature of 42 degrees Celsius (107.6 degrees Fahrenheit). In the background, a young boy is walking.", - "id": 28080 - }, - { - "image_path": "G:\\images\\combined\\002057_jpg.rf.02fb370ed9d21eec3ad1c65195b7167c.jpg", - "response": " A backhoe(317,3),(628,696) is used to dig a hole in the ground.", - "id": 28081 - }, - { - "image_path": "G:\\images\\combined\\002058_jpg.rf.9c924e1decd43fb2a93222bfdaff717e.jpg", - "response": "A group of workers are seen pulling on a rebar. They are all wearing yellow hard hats and are in a construction site.", - "id": 28082 - }, - { - "image_path": "G:\\images\\combined\\002059_jpg.rf.d6d28c5962dbb91491da2cb7fffe212a.jpg", - "response": "A demolition worker is spraying a hose at a pile of rubble. He is wearing a hard hat and holding the hose. There is a yellow and black hard hat on the demolition worker.", - "id": 28083 - }, - { - "image_path": "G:\\images\\combined\\00205b05bcd4257a.jpg", - "response": "A person is holding a white Samsung Galaxy Alpha in their left hand. The phone is powered by Android and has the words Samsung Galaxy Alpha on the screen. The background shows a blurry blue and white image.", - "id": 28084 - }, - { - "image_path": "G:\\images\\combined\\002060_jpg.rf.32358e7fd605ead93b8302ceb3fa4fbe.jpg", - "response": "a group of people standing around a blueprint", - "id": 28085 - }, - { - "image_path": "G:\\images\\combined\\002061_jpg.rf.a0bab305dc76fa671b2e0fedc7b291f1.jpg", - "response": "The image shows a city street scene with a bridge crossing a river. Two workers are on the right side of the image, one near the center of the scene and the other towards the bottom. They are both dressed in orange safety jumpsuits and yellow hard hats. The worker on the right has a tool belt around his waist. The street is filled with traffic, including several cars and a yellow truck. On the left side of the image, there is a tall apartment building with several floors. In front of it, there is a group of power lines with a worker on the leftmost line.", - "id": 28086 - }, - { - "image_path": "G:\\images\\combined\\002062_jpg.rf.1b6b6e88db3ef9d25f6d21cf5136bffa.jpg", - "response": "Four workers in hard hats and safety vests standing in front of shipping containers.", - "id": 28087 - }, - { - "image_path": "G:\\images\\combined\\002063_jpg.rf.c502244055cb28dcc6efd458cdc82ad6.jpg", - "response": "The image is a black and white photo of two construction workers. They are both wearing yellow hard hats and safety vests. The worker on the left is facing the camera and appears to be writing something down. The worker on the right is turned away from the camera and is facing the opposite direction. They both seem to be having a conversation.", - "id": 28088 - }, - { - "image_path": "G:\\images\\combined\\002064_jpg.rf.61eaece1ec4fdba6e9aed22674ce3e7e.jpg", - "response": "A man in a black shirt and gray pants is on a ladder and is working on a power line.", - "id": 28089 - }, - { - "image_path": "G:\\images\\combined\\002065_jpg.rf.b5cc11b4f3e5bb940a468331c2b789ef.jpg", - "response": "In the image two workers are in orange suits and white helmets. They are climbing on a large power pole with many electrical components on it. The pole is red and white and the electrical components are red and white. There are many wires around the pole and the sky is grey.", - "id": 28090 - }, - { - "image_path": "G:\\images\\combined\\002066_jpg.rf.93af70c9f50e76bafe0fa1f30a0a6f93.jpg", - "response": "In the image there is a person crouched down working on a large blue box with a few wires and a pipe going into it. The person is also wearing a white helmet.", - "id": 28091 - }, - { - "image_path": "G:\\images\\combined\\002067_jpg.rf.61911a0bca4e383fcaa767596522f16c.jpg", - "response": "A group of men standing around each other.", - "id": 28092 - }, - { - "image_path": "G:\\images\\combined\\002069_jpg.rf.68e0dbd3f700c257fc970bd05bbb6672.jpg", - "response": "A man in a blue shirt and blue hat is sitting on a wooden stool, working on some wires. He is wearing a tool belt around his waist. In the background, there is a building with a fence in front of it. The fence has many wires strung across it. There are also two other people in the background, one near the left side of the building and one near the right side.", - "id": 28093 - }, - { - "image_path": "G:\\images\\combined\\002071_jpg.rf.e1aa4d3015cfb90672a99ca6945e78fd.jpg", - "response": "The image shows a group of construction workers inside a large\u96a7\u9053. They are all wearing hard hats and some are using tools. There is debris on the ground and the workers are standing in a small shaft.", - "id": 28094 - }, - { - "image_path": "G:\\images\\combined\\002072_jpg.rf.c08668bdb2f4480e7ed45323adec8d6c.jpg", - "response": "A group of men wearing safety gear walking down a street.", - "id": 28095 - }, - { - "image_path": "G:\\images\\combined\\002073_jpg.rf.aa23a7b7e50061dc6163af7b30dc5df3.jpg", - "response": "A group of workers in blue uniforms and hard hats are standing outside a small metal building. Some of them are wearing orange safety vests. There is a small basketball hoop behind them.", - "id": 28096 - }, - { - "image_path": "G:\\images\\combined\\002074_jpg.rf.1927f57d33ec09a6f7bbff968b22bf7c.jpg", - "response": "The image shows a construction site with multiple workers. They are working on a project that involves the construction of a large building. In the image, there are numerous iron rods that form a part of the building's support structure. Some workers are standing on a platform that is supported by the iron rods. The workers are wearing uniforms and some of them are wearing hard hats. The iron rods are arranged in a grid pattern and they extend up into the sky.", - "id": 28097 - }, - { - "image_path": "G:\\images\\combined\\002075_jpg.rf.9dfbc443f072e90bf3cfeba5e6e94981.jpg", - "response": "A group of men are standing outside a building. They are all wearing hard hats.", - "id": 28098 - }, - { - "image_path": "G:\\images\\combined\\002077_jpg.rf.d5b6d4c7211417c7931bb553403cbf17.jpg", - "response": "A group of people working on a wooden structure.", - "id": 28099 - }, - { - "image_path": "G:\\images\\combined\\002079_jpg.rf.450668f500eda2db6db4f349c5cba2ec.jpg", - "response": "A group of workers wearing yellow helmets are working on a bridge.", - "id": 28100 - }, - { - "image_path": "G:\\images\\combined\\002081_jpg.rf.277277e523d447e024a87c688c1b3cf5.jpg", - "response": "The image shows two men standing in the back of a truck filled with various tools and equipment. Both men are wearing white shirts, jeans, and hard hats. One man is wearing black sunglasses and has a tool belt around his waist. They both appear to be smiling for the camera.", - "id": 28101 - }, - { - "image_path": "G:\\images\\combined\\002082_jpg.rf.462473902ea8685e6f009a1298d246cd.jpg", - "response": "A man in a blue shirt is loading a pallet with boxes. Another man in a yellow hard hat is driving a forklift.", - "id": 28102 - }, - { - "image_path": "G:\\images\\combined\\002083_jpg.rf.ad97ec54a6933d34013b898ba2962e2f.jpg", - "response": "a group of men standing in a field", - "id": 28103 - }, - { - "image_path": "G:\\images\\combined\\002084_jpg.rf.9c292ec888dbe95280a4ccb3ca8a6e0f.jpg", - "response": "The image shows a group of men standing in front of a warehouse. There are five men in the foreground, with another two men standing further back. The men are standing on a concrete surface. The warehouse is a blue building with a yellow door. There is a large metal pipe on the ground to the left of the group. A smaller metal pipe is visible to the right of the group. The background is a blue container.", - "id": 28104 - }, - { - "image_path": "G:\\images\\combined\\002085_jpg.rf.fa23f750748bcee0fa953606a9960595.jpg", - "response": "A group of people standing around a construction site holding umbrellas.", - "id": 28105 - }, - { - "image_path": "G:\\images\\combined\\002086_jpg.rf.d4a4c6d14af0d5b4fb908955e6da0dd4.jpg", - "response": "A worker in a yellow hard hat and a white mask stands in a dimly lit tunnel. They are wearing an orange vest and a yellow hard hat. They are standing in front of a concrete wall with a red and white striped beam above their head. There are hoses hanging on the wall to the left of the worker and a large spool of wire to the right. The ground is wet in front of the worker and there is a thin stream of water coming from somewhere off camera to the right.", - "id": 28106 - }, - { - "image_path": "G:\\images\\combined\\002087_jpg.rf.0bf6bc2e5ab2fbd76bf857878a66891f.jpg", - "response": "a group of people standing on a concrete walkway", - "id": 28107 - }, - { - "image_path": "G:\\images\\combined\\002088_jpg.rf.398b564599381af4a7e6657e9610ef3a.jpg", - "response": "A group of people working on a construction site.", - "id": 28108 - }, - { - "image_path": "G:\\images\\combined\\002089_jpg.rf.791a0a54d515cb44a24379be6cbd444d.jpg", - "response": "A group of men standing in front of a building.", - "id": 28109 - }, - { - "image_path": "G:\\images\\combined\\002090_jpg.rf.2c2ccc71ec0884324fad1fa2c75e7145.jpg", - "response": "A worker in a red shirt and yellow hard hat sits on the ground next to a piece of equipment.", - "id": 28110 - }, - { - "image_path": "G:\\images\\combined\\002091_jpg.rf.01a4bd790c5857a3cacfffc7e07b5381.jpg", - "response": "A couple of men wearing hard hats are working on a pipe.", - "id": 28111 - }, - { - "image_path": "G:\\images\\combined\\002092_jpg.rf.dc25f2ed30c38d41128f404ecf8c730f.jpg", - "response": "A group of men in suits and hard hats stand inside an elevator.", - "id": 28112 - }, - { - "image_path": "G:\\images\\combined\\002093_jpg.rf.89c010581a93a2512d0789deb2a6f355.jpg", - "response": " Three people(395,323),(751,997)(699,305),(997,996)(49,362),(378,997) in high vis vests(399,599),(668,997)(729,601),(997,997)(47,683),(377,997) and hard hats(420,321),(618,513)(696,304),(904,513)(141,362),(378,581) standing in front of a ship", - "id": 28113 - }, - { - "image_path": "G:\\images\\combined\\002094_jpg.rf.1cfb464de964ccc57c0a7a65b7837cf5.jpg", - "response": "A group of people standing in front of a building.", - "id": 28114 - }, - { - "image_path": "G:\\images\\combined\\002097_jpg.rf.bf8927dfed8179176b3921c0b2b60c47.jpg", - "response": "A man in a yellow hard hat is standing on a ladder. He is working on a ship that appears to be a redish-pink color. There is a cage surrounding the area where the man is working.", - "id": 28115 - }, - { - "image_path": "G:\\images\\combined\\002099_jpg.rf.4ab301bfe7228e08af4441a6bd517304.jpg", - "response": "In the image there is a man standing in front of a construction fence that has several\u5e7f\u544a (advertisements) on it. The man is pointing to a map of the construction area. The map is of the \u83b1\u65af\u8d2d\u7269\u5e7f\u573a (Leis Shopping Plaza). The man is wearing a black jacket and black pants. He is also wearing glasses and has short hair. Behind the man, there is a \u83dc\u5e02\u573a (market) with several people in front of it. There are also several \u7535\u7ebf\u6746 (power line poles) in the background.", - "id": 28116 - }, - { - "image_path": "G:\\images\\combined\\0020b616878d2bf2.jpg", - "response": "A red station wagon with the back hatch open, filled with crates and a basket full of goods.", - "id": 28117 - }, - { - "image_path": "G:\\images\\combined\\002100_jpg.rf.a3af795d1ff9e2742edf1f33db0de84a.jpg", - "response": "a man in a white shirt(557,175),(697,989)", - "id": 28118 - }, - { - "image_path": "G:\\images\\combined\\002101_jpg.rf.ac50075b38ba78459f05f8e46dd09fb0.jpg", - "response": "A worker wearing a yellow hard hat and orange gloves stands on a construction site. He is wearing a black jacket and grey pants. He is holding a grey metal bar and appears to be welding it to a larger metal structure. There are mountains in the background.", - "id": 28119 - }, - { - "image_path": "G:\\images\\combined\\002102_jpg.rf.81e541da6a6ad1f72698046af74acf1b.jpg", - "response": "A construction worker wearing a grey construction suit and an orange helmet is working on a building.", - "id": 28120 - }, - { - "image_path": "G:\\images\\combined\\002103_jpg.rf.7cdb425c628f6e0e3b2559639118cfb0.jpg", - "response": "A pair of workers in orange vests and orange helmets are working in a field. They are cutting a tree branch with a large pair of shears.", - "id": 28121 - }, - { - "image_path": "G:\\images\\combined\\002104_jpg.rf.eff603dc263b88fda6413719fb94841c.jpg", - "response": "A group of three men in blue work uniforms and hard hats are working on a power line. They are standing on top of a roof and appear to be fixing or installing something.", - "id": 28122 - }, - { - "image_path": "G:\\images\\combined\\002105_jpg.rf.1b4e94f52f7fdd8af7f5d2a0a6715a7a.jpg", - "response": "A woman in a suit and hard hat is holding a tablet and talking to two men in yellow vests and hard hats. They are standing in front of a large industrial plant.", - "id": 28123 - }, - { - "image_path": "G:\\images\\combined\\002106_jpg.rf.e48ddaa40b0c88247f7e67e7bf3f5228.jpg", - "response": "a group of men standing in front of a drilling machine", - "id": 28124 - }, - { - "image_path": "G:\\images\\combined\\002107_jpg.rf.d18feb753fee6d01dbb31f37a88fd592.jpg", - "response": "An image of a construction worker taking a drink of water. The worker is wearing a grey shirt, work gloves, a white hard hat, and has a white beard. They are drinking from a blue water bottle. In the background, there is a yellow crane.", - "id": 28125 - }, - { - "image_path": "G:\\images\\combined\\002108_jpg.rf.b597ef4cbda10636be72efce179ad9f6.jpg", - "response": "A roofer wearing a white hard hat and work clothes is installing a new roof on a house. The roof is made of wood and the roofer is on the right side of the roof working on it. The sky is blue and the roof is being installed on a clear day.", - "id": 28126 - }, - { - "image_path": "G:\\images\\combined\\002109_jpg.rf.fb5f06ec0d8353d505baffd0e4a54d73.jpg", - "response": "A group of people looking at a model of a city.", - "id": 28127 - }, - { - "image_path": "G:\\images\\combined\\002110_jpg.rf.a0339025a4f98e27dffd49731fc691e4.jpg", - "response": "An entrance with a sign that says '\u4e2d\u56fd\u5efa\u7b51\u7b2c\u4e8c\u5de5\u7a0b\u6709\u9650\u516c\u53f8'. There is also a sign that says '\u4e2d\u94c1\u5efa\u5927\u53a6' and a sign that says '\u4e2d\u94c1\u5efa\u5de5' above a turnstile.", - "id": 28128 - }, - { - "image_path": "G:\\images\\combined\\002111_jpg.rf.66267092de82dda8b93ba8008b4d302b.jpg", - "response": "A construction worker wearing a yellow vest and a white helmet.", - "id": 28129 - }, - { - "image_path": "G:\\images\\combined\\002112_jpg.rf.1c4cebc9a813c02a00743f9868f11a33.jpg", - "response": "a man in a tan suit standing in front of a blue wall", - "id": 28130 - }, - { - "image_path": "G:\\images\\combined\\002113_jpg.rf.3f05704331e6fe1f15700d4d273f8aca.jpg", - "response": "A group of men in blue uniforms and yellow hats are standing in front of a building. They are all holding notebooks and checking something on a grey box. The men are also wearing yellow hats and some of them are carrying backpacks. The building in the background is white and grey and has many windows. There are also many power lines and a grey transformer in the scene.", - "id": 28131 - }, - { - "image_path": "G:\\images\\combined\\002115_jpg.rf.6c3eb742b24974d93d96b59aeaa4880a.jpg", - "response": "A worker in a factory setting, standing next to a truck carrying steel.", - "id": 28132 - }, - { - "image_path": "G:\\images\\combined\\002116_jpg.rf.052f835b985276c9246b3a4a4975ba03.jpg", - "response": "A group of men working on a building.", - "id": 28133 - }, - { - "image_path": "G:\\images\\combined\\00211783004d27f6.jpg", - "response": "a car engine with the hood open showing the various parts", - "id": 28134 - }, - { - "image_path": "G:\\images\\combined\\002118_jpg.rf.aec233e724b33b55fa95bc27c6451440.jpg", - "response": "A group of men working on machinery inside of a factory.", - "id": 28135 - }, - { - "image_path": "G:\\images\\combined\\002119_jpg.rf.3ab4954daba018b5f0689665baad8086.jpg", - "response": "The image shows a group of people standing in front of a blue warehouse. They are all wearing yellow vests and white safety helmets. Some of them are also wearing black jackets. In front of the warehouse, there is a large container and a sign with Chinese characters. On the right side of the image, a person on the far right is wearing a white safety helmet and a white shirt.", - "id": 28136 - }, - { - "image_path": "G:\\images\\combined\\00211cd710311b87.jpg", - "response": "A crowd of people are gathered on a street. One man is holding a sign that says \"Why be afraid\" in bright green letters. Another man is holding a small American flag. A man in a black jacket is holding a sign that says \"Tea Party\" in red letters.", - "id": 28137 - }, - { - "image_path": "G:\\images\\combined\\002120_jpg.rf.df9d5dc606d5e98bd08e3cbeef7656d6.jpg", - "response": "A worker is standing on top of steel beams and pulling on a rope. The steel beams are piled up in the foreground and the sky is cloudy.", - "id": 28138 - }, - { - "image_path": "G:\\images\\combined\\002121_jpg.rf.e1f275387da537aec7d2e9edce3efca5.jpg", - "response": "The image shows a construction site with many people working on a building that is still in the framing stage. The workers are scattered across the site, with some working on the left side and others on the right. They are wearing hard hats and uniforms, and there are several red\u5de5\u5177\u5de5\u5177\u548c\u4e00\u4e2a\u767d\u8272\u68af\u5b50\u5728\u5730\u677f\u4e0a.", - "id": 28139 - }, - { - "image_path": "G:\\images\\combined\\002122_jpg.rf.473fc0fc5d0afd1d03164ee25df5ec0a.jpg", - "response": "a group of men wearing hard hats", - "id": 28140 - }, - { - "image_path": "G:\\images\\combined\\002123_jpg.rf.654faff8c9e487cb3c9f3d73a1b8e1fd.jpg", - "response": "A worker in front of a building site. The worker is a woman and is wearing a red hard hat. She is also wearing a grey shirt with the number 2 on it. She has a tool in her hand, it is a long tool with a metal head. She is holding the tool up with her arm above her head. She is smiling at the camera. To the right of the worker is a large white pole. In the background of the image there is a building under construction. The building has a metal framework. The walls of the building are covered in a yellow mesh.", - "id": 28141 - }, - { - "image_path": "G:\\images\\combined\\002124_jpg.rf.392a0a5b7018410517185b96b2ff74b7.jpg", - "response": "A group of people standing around a truck in a coal mine.", - "id": 28142 - }, - { - "image_path": "G:\\images\\combined\\002125_jpg.rf.0680088cff9cc896e9d6969afad5a2e9.jpg", - "response": "A group of men are working together to pull a rope up a snowy hill. They are all wearing hard hats and orange vests. One man is at the top of the hill, and the rest are at the bottom. They are all dressed in blue jackets.", - "id": 28143 - }, - { - "image_path": "G:\\images\\combined\\002127_jpg.rf.e47d80b7e8d82e96dbe153594761236b.jpg", - "response": "In the image there is a man wearing a yellow hat and a blue shirt standing next to a large solar panel. He is touching the panel with both hands and appears to be working on it. The solar panel is a large, shiny silver color and covers most of the image. In the background, there are a few other people and some mountains.", - "id": 28144 - }, - { - "image_path": "G:\\images\\combined\\002128_jpg.rf.2e6a2e378b0755cea81230107bba0a7f.jpg", - "response": "The image shows three workers in yellow jackets and white helmets who are repairing a power line. They are standing on a lift, which has the words \"\u676d\u5dde\u7231\u77e5\" written on the side. The workers are wearing yellow jackets and have their sleeves rolled up. One of them is using a tool to work on the power line, which is suspended between two orange poles. The lift is positioned next to a white car and a tree. The workers are focused on their task, and one of them is holding a rope to maintain his balance.", - "id": 28145 - }, - { - "image_path": "G:\\images\\combined\\002129_jpg.rf.c5a3f6383fdf381d5374e12dc53188bb.jpg", - "response": "In the image, a couple of men are working on a train track. They are wearing orange vests and hard hats. One man is kneeling on the track while the other one is standing. They seem to be in the middle of an outdoor construction site.", - "id": 28146 - }, - { - "image_path": "G:\\images\\combined\\002130_jpg.rf.d68bd0b7e637f9784611963736866df3.jpg", - "response": "In the image there is a worker wearing a blue uniform and a yellow helmet who is working on a large metal cylinder. The worker is putting a sticker on the metal cylinder. The background of the image is grey.", - "id": 28147 - }, - { - "image_path": "G:\\images\\combined\\002131_jpg.rf.b287ca7d39e56127036e84a16fc01e49.jpg", - "response": "A construction worker in a blue uniform and hard hat is kneeling on the ground, working on a grid of rebar. The rebar is being used to reinforce concrete.", - "id": 28148 - }, - { - "image_path": "G:\\images\\combined\\002132_jpg.rf.27d3f365835d65ff1313dc7d78768d63.jpg", - "response": "A couple of men standing in front of a rock wall", - "id": 28149 - }, - { - "image_path": "G:\\images\\combined\\002133_jpg.rf.9450651834131112cc3351ea571f6aaa.jpg", - "response": "A group of men standing under a tent.", - "id": 28150 - }, - { - "image_path": "G:\\images\\combined\\002134_jpg.rf.987b3d42f178afb59f0d1fde162fec64.jpg", - "response": "A group of men standing around a map that is placed on a board.", - "id": 28151 - }, - { - "image_path": "G:\\images\\combined\\002135_jpg.rf.612064a3663ac66b0fcde918dc3abe22.jpg", - "response": "The picture shows some people are gathered in the courtyard of a grey building. Some of them are carrying black bags. One of the men is wearing a red shirt and grey pants. Another man is wearing a white shirt and black pants. A man in a black suit is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. She is holding a book in her hand and a pen in another hand.", - "id": 28152 - }, - { - "image_path": "G:\\images\\combined\\0021364dbb9756ff.jpg", - "response": "A young boy in a white shirt and jeans kneeling on the floor in front of a box.", - "id": 28153 - }, - { - "image_path": "G:\\images\\combined\\002136_jpg.rf.a8bc03f87bd3e8343ec420e83ff359a3.jpg", - "response": "A group of men wearing hard hats are gathered around a doorway. Some of them are holding a cell phone.", - "id": 28154 - }, - { - "image_path": "G:\\images\\combined\\002137_jpg.rf.2172732116549cbc404e024f79f01e62.jpg", - "response": "A group of workers wearing hard hats are working on a ship.", - "id": 28155 - }, - { - "image_path": "G:\\images\\combined\\002138_jpg.rf.7db154958a6427ade9a1f6b5fec293f4.jpg", - "response": "a group of men standing around a construction site", - "id": 28156 - }, - { - "image_path": "G:\\images\\combined\\002139_jpg.rf.b5f3a4c065e8fafed4ea7ec1a3f7e8f6.jpg", - "response": "The image shows two workers on a power line. They are wearing blue uniforms and white hard hats. They are standing on a metal platform and are working on the power line. The sky is blue and clear.", - "id": 28157 - }, - { - "image_path": "G:\\images\\combined\\002140_jpg.rf.3545f883aa039e02e7fa9b00a194b6b6.jpg", - "response": "Four men in blue shirts and hard hats stand in a semi-circle, looking at a blueprint. They are all wearing red hard hats. One man is pointing to a part of the blueprint. The building behind them is only partially constructed, with scaffolding in front of it and a sign reading \"\u79d1\u5b66\u53d1\u5c55 \u5171\u5efa\u548c\u8c10 \u5bcc\u5f3a\u6c11\u4e3b\u7684\u5341\u4e03\u5927\u7cbe\u795e\" hanging on the second story.", - "id": 28158 - }, - { - "image_path": "G:\\images\\combined\\002141_jpg.rf.471ffb10d6d5598735f2ca91b3885e6f.jpg", - "response": "The image shows three workers carrying a large spool of grey wire over their shoulders. They are wearing blue uniforms and blue hats. In the background, there are a few trees and some mountains.", - "id": 28159 - }, - { - "image_path": "G:\\images\\combined\\002142c669f5b1b7.jpg", - "response": "A woman in a blue and orange tank top and black shorts is wearing roller skates and has her hands on her hips.", - "id": 28160 - }, - { - "image_path": "G:\\images\\combined\\002142_jpg.rf.bc48c0aff61b7a6f809d820ff81a8c74.jpg", - "response": "A group of workers wearing yellow hats are shoveling dirt.", - "id": 28161 - }, - { - "image_path": "G:\\images\\combined\\002143_jpg.rf.e2ebb4a09d1e31418bc66c4ab01f870d.jpg", - "response": "A mine rescue team sprays foam into the mine to extinguish the fire.", - "id": 28162 - }, - { - "image_path": "G:\\images\\combined\\002145_jpg.rf.2ea5c90a50f7b43c0a972e33174eec7d.jpg", - "response": "A man in a snowy field is fixing a power line.", - "id": 28163 - }, - { - "image_path": "G:\\images\\combined\\002146_jpg.rf.260abdf2e64f58bd3352e0fad09a10ae.jpg", - "response": "Two National Grid representatives in front of a power line", - "id": 28164 - }, - { - "image_path": "G:\\images\\combined\\002147_jpg.rf.f52dbe4f6ab89613b25a3d7ded2827ec.jpg", - "response": "In the image there is a person wearing a blue jacket and a red helmet. They are crouching down and working on a large piece of concrete. The person is also holding a long tool in their hand. In the background, there are several large, old, white and green containers. The ground around the person and the containers is covered with gray concrete.", - "id": 28165 - }, - { - "image_path": "G:\\images\\combined\\002148_jpg.rf.0e9ae078afe4c9d722da6eea409603a6.jpg", - "response": "In the image there are three men working on a construction site. They are all dressed in orange and blue work clothes and are wearing hard hats. The man in the middle is holding a wire and is in the process of cutting through a concrete wall. The man on the left is crouching down and the man on the right is holding a white device. The sky is bright and white in the background.", - "id": 28166 - }, - { - "image_path": "G:\\images\\combined\\002149_jpg.rf.ac34b72a0e0b80a04fd828816eefe8b1.jpg", - "response": "A group of men standing around each other.", - "id": 28167 - }, - { - "image_path": "G:\\images\\combined\\00214a12ff8112fb.jpg", - "response": "A store with a sign that says Mealtime.", - "id": 28168 - }, - { - "image_path": "G:\\images\\combined\\002150_jpg.rf.150f58a2e277944bd63266a01031a88f.jpg", - "response": "a group of people standing under umbrellas", - "id": 28169 - }, - { - "image_path": "G:\\images\\combined\\002151_jpg.rf.e4ae26be99523d04f2cd2c8e882ba04a.jpg", - "response": "In the image there is a construction site with multiple stacks of steel bars and a worker in a red hat and black clothes standing on the top of a platform. The worker is working on the steel bars with tools in their hands.", - "id": 28170 - }, - { - "image_path": "G:\\images\\combined\\002152_jpg.rf.b8494d0327c386be95d107c6425c9bf6.jpg", - "response": "A group of three construction workers looking at blueprints on a jobsite.", - "id": 28171 - }, - { - "image_path": "G:\\images\\combined\\002153_jpg.rf.6f055d814d1c08099eb63b7c44016d18.jpg", - "response": "The image shows two men sitting at a table with a red tablecloth. The man on the left is wearing a black jacket and white shirt, and the man on the right is wearing a grey jacket and white shirt. Both men are wearing ties. The room has several chairs, some of which are placed against the wall, which has a red frame. On the wall, there is a large piece of paper with blue characters. The table has two cups and two small packages.", - "id": 28172 - }, - { - "image_path": "G:\\images\\combined\\002154_jpg.rf.224c8d7f08be292e5de5f223dc87d868.jpg", - "response": "A man in a hard hat standing in front of pipes and machinery.", - "id": 28173 - }, - { - "image_path": "G:\\images\\combined\\002155_jpg.rf.60ef5d1071381ec5aaab3722371b1f7b.jpg", - "response": "In the image there are three people working on a rock wall. They are wearing hard hats and orange work suits. The person in the foreground is crouching down and is holding a pick ax. They are digging into the rock wall. There is a net to the left of the person in the foreground. The person working on the right side of the image is holding a large tool with a wooden handle. The rock wall is a mustard yellow color with brown stains running down it. There is a wire strung up on the right side of the image.", - "id": 28174 - }, - { - "image_path": "G:\\images\\combined\\002156_jpg.rf.d5b56330220fa2e3f32db10ac09a04f8.jpg", - "response": "A group of people standing in front of a large sign that says ''\u6837\u677f\u5c55\u793a\u533a\u8d28\u91cf\u610f\u8bc6\u300d\u300c\u63d0\u5347\u8d28\u91cf\u610f\u8bc6\u6837\u677f\u5c55\u793a\u533a\u300d in both English and Chinese. They are all wearing yellow hard hats, which is an item you would wear while construction.", - "id": 28175 - }, - { - "image_path": "G:\\images\\combined\\002158_jpg.rf.48ecf33cf976ea748dba32d313d721f2.jpg", - "response": "A group of men in camouflage and hard hats are huddled around a metal cylinder that is sticking out of the ground. They are all working together to secure the cylinder in the ground.", - "id": 28176 - }, - { - "image_path": "G:\\images\\combined\\002159_jpg.rf.abd62349ffd51db07253644f4eb85527.jpg", - "response": "A group of men in business attire and hard hats are standing in a construction site. They are all wearing different colored hard hats. One man is wearing a blue hat, one is wearing a red hat, one is wearing a black hat, and one is wearing a red hat with a white chin strap. They are all looking off to the left. In the background, there is a wall with a window and a door. There is also a pipe running along the top of the wall.", - "id": 28177 - }, - { - "image_path": "G:\\images\\combined\\002160_jpg.rf.7675bafa5b3235e9a7baa4fa3ef24bf0.jpg", - "response": "A couple of men working on a construction site.", - "id": 28178 - }, - { - "image_path": "G:\\images\\combined\\002162_jpg.rf.a3249b555bf24b89b0fe14c51301101c.jpg", - "response": "A group of three men wearing blue hard hats are working on a large grey box.", - "id": 28179 - }, - { - "image_path": "G:\\images\\combined\\002163_jpg.rf.3ead86e733adfdaf3f6892264a601b6f.jpg", - "response": "The image shows two workers in blue uniforms and white helmets repairing a transformer. They are standing on a small platform and seem to be working on the transformer which is mounted on a tall pole. The transformer is grey and black and has a sign on it warning of no entry. The workers are accompanied by a co-worker who is holding a tool. The background is a mix of green palm trees and a blue sky.", - "id": 28180 - }, - { - "image_path": "G:\\images\\combined\\002164_jpg.rf.b99f596b80575758a01a5301ed972b1d.jpg", - "response": "In the image, three people are standing in a construction site wearing red helmets. The person on the left is a woman with a brown coat and a pink helmet. She is writing something in a notebook. The person in the middle is also a woman, she is wearing a red suit and a red helmet with yellow letters on it. She is holding a pencil. The person on the right is a man, he is wearing a black coat and a helmet. He is smiling at the woman on the left. There is a yellow tripod next to him. On the right side of the image, there are two yellow surveying instruments.", - "id": 28181 - }, - { - "image_path": "G:\\images\\combined\\002165_jpg.rf.018aa94c20a120ef8d82671707c7a1a1.jpg", - "response": "a group of people standing in a field", - "id": 28182 - }, - { - "image_path": "G:\\images\\combined\\002166_jpg.rf.2b87281eb23e8291a4baecf80bd8836e.jpg", - "response": "The image shows three workers in orange jumpsuits and yellow hard hats standing in a small pit in a lush green field. They are looking down at something in the pit. One of the workers is holding a large metal pole.", - "id": 28183 - }, - { - "image_path": "G:\\images\\combined\\002167_jpg.rf.a8452ce483f5bd9d8f25e02b78365a39.jpg", - "response": "In the image two workers are standing under an electrical tower. They are both wearing red helmets and the worker on the right is also wearing a yellow vest. The electrical equipment is grey and the workers are standing on a grey concrete pad. There is a red electrical box to the left of the workers and a yellow and black sticker on the grey electrical tower they are standing next to.", - "id": 28184 - }, - { - "image_path": "G:\\images\\combined\\002168_jpg.rf.555625b4d962f7b72ae775944de77835.jpg", - "response": "The image shows a construction site with a large piece of pipe on the ground and two men in the foreground. The men are wearing hard hats and one is holding a long stick. In the background, there is a red and orange piece of heavy equipment, possibly a backhoe, digging up the ground. There are also two smaller pieces of equipment further back. The sky is grey and overcast.", - "id": 28185 - }, - { - "image_path": "G:\\images\\combined\\002169_jpg.rf.fc6f9f0a9b579aa2d2e6f86cfb6648b7.jpg", - "response": "A group of people working on a construction site.", - "id": 28186 - }, - { - "image_path": "G:\\images\\combined\\002170_jpg.rf.ee27f15f22c59e9d493c4456d710acdf.jpg", - "response": "The image shows a large, long tunnel with a concrete interior. The tunnel is double barrel in shape, with two circular tunnels set side by side. The tunnel is currently under construction, with two workers in blue hard hats inspecting the\u96a7\u9053. The workers are standing in the tunnel, with one on the left and one on the right. They are both holding blue pipes.", - "id": 28187 - }, - { - "image_path": "G:\\images\\combined\\002171_jpg.rf.83e44a8aa8e02c76269741a5ce5873da.jpg", - "response": "A group of workers in blue work on a railway.", - "id": 28188 - }, - { - "image_path": "G:\\images\\combined\\002172_jpg.rf.c77a42c737f4dc43529950d9712b1422.jpg", - "response": "A man wearing an orange hard hat and an orange and yellow vest standing in front of a fence and power generators.", - "id": 28189 - }, - { - "image_path": "G:\\images\\combined\\002173_jpg.rf.1341bad946e36548c61782a80a089583.jpg", - "response": "A man wearing a yellow hat and green pants working on a building.", - "id": 28190 - }, - { - "image_path": "G:\\images\\combined\\002174_jpg.rf.76b076b9e5e39ef8493bc374e42cd8a7.jpg", - "response": "a group of people walking down a sidewalk", - "id": 28191 - }, - { - "image_path": "G:\\images\\combined\\002175_jpg.rf.aef0a198d6610cdfe1585a02493076c0.jpg", - "response": " Two men(156,169),(388,829)(257,10),(764,996) in hard hats(289,9),(513,237)(138,169),(338,318) and high visibility vests(399,286),(763,997)(157,415),(386,818) standing in front of a building", - "id": 28192 - }, - { - "image_path": "G:\\images\\combined\\002176_jpg.rf.e029ff8d73b0091c462cee087365743b.jpg", - "response": "A group of four men standing in front of a long row of cement walls.", - "id": 28193 - }, - { - "image_path": "G:\\images\\combined\\002178_jpg.rf.74668f5ddf2be1d86f751fe9db819b23.jpg", - "response": "a group of men wearing hard hats", - "id": 28194 - }, - { - "image_path": "G:\\images\\combined\\002179_jpg.rf.8b58743fb37af41f915180c8c57d407b.jpg", - "response": " A worker(367,302),(521,904) walks through a section of the tunnel.", - "id": 28195 - }, - { - "image_path": "G:\\images\\combined\\0021804a9f9d5db6.jpg", - "response": "A black car parked on a brick road.", - "id": 28196 - }, - { - "image_path": "G:\\images\\combined\\002180_jpg.rf.dc1edd1143f5efa2e07b67a272f6bc3a.jpg", - "response": "Men walking through a construction site wearing hard hats", - "id": 28197 - }, - { - "image_path": "G:\\images\\combined\\002181_jpg.rf.deec617afb35372b73b19857ce6c80ad.jpg", - "response": "A group of workers in red uniforms and blue helmets are standing on yellow scaffolding on a green bridge that is being built over a river. The bridge is made of bamboo and the river is green. There is a boat in the river.", - "id": 28198 - }, - { - "image_path": "G:\\images\\combined\\002182_jpg.rf.b9caf1bdc4f5fd0191985cfa78113bfa.jpg", - "response": "The image shows two people hiking up a steep, rocky trail. They are both dressed in bright orange and green coveralls and orange helmets. The person on the left is wearing a green coverall and carrying a pick ax. The person on the right is wearing an orange coverall. They are both wearing orange helmets. The sky in the background is overcast.", - "id": 28199 - }, - { - "image_path": "G:\\images\\combined\\002183_jpg.rf.9d84b89fcbc34d23b44fc8dab6886737.jpg", - "response": "A group of people working on a construction site.", - "id": 28200 - }, - { - "image_path": "G:\\images\\combined\\002184_jpg.rf.a64630d87f9bd629691871ccca21d7b7.jpg", - "response": "A construction worker in an orange vest and yellow hard hat stands on the side of a road. He is directing a yellow machine, possibly a steamroller, which is working on the road. The road is a two lane highway with a yellow line painted down the center. There are two orange and white traffic cones on the side of the road. The sky is overcast and there are trees in the background.", - "id": 28201 - }, - { - "image_path": "G:\\images\\combined\\002185_jpg.rf.fcc9ccdbb7b37d288232c1fce8ac7359.jpg", - "response": "a group of people standing around in a field", - "id": 28202 - }, - { - "image_path": "G:\\images\\combined\\002186_jpg.rf.ee2fc0dd9d56d11d2abdca785cc96598.jpg", - "response": "In the image two workers are climbing a telephone pole. One of the workers is on the bottom and the other one is on the top of the pole. They are wearing blue uniforms and blue helmets. The telephone pole is grey and it is located in front of a green hill. In the background a town with red houses is visible below the hill. The sky is blue with some clouds.", - "id": 28203 - }, - { - "image_path": "G:\\images\\combined\\002187_jpg.rf.bd02fe891d112b97291b4c8edc64a3b4.jpg", - "response": "In the image there is a building under construction in the background. In the foreground, two people are having a conversation. The person on the left is a man with gray hair and is wearing a blue helmet and a blue shirt with a tie. The person on the right is a woman with blonde hair and is wearing a yellow vest and a blue helmet.", - "id": 28204 - }, - { - "image_path": "G:\\images\\combined\\002188_jpg.rf.02b29f58cf502c7c632047c45ba3c153.jpg", - "response": "A construction crew works on a bridge.", - "id": 28205 - }, - { - "image_path": "G:\\images\\combined\\002189_jpg.rf.b156f6b26758b1f5e1e2b68204cfe5ff.jpg", - "response": "A group of men standing around a building.", - "id": 28206 - }, - { - "image_path": "G:\\images\\combined\\002190_jpg.rf.c1e9c91471ab229f464265768b0de9f9.jpg", - "response": "A group of people wearing hard hats and life vests.", - "id": 28207 - }, - { - "image_path": "G:\\images\\combined\\002192_jpg.rf.a51bd75b2d9c1d4d148458b183c19e9d.jpg", - "response": "A man wearing a hard hat and a red vest stands in front of a blue metal structure. He is also wearing a grey and red jacket. There is a mountain visible in the background. In the foreground, there is a backpack and a red and black handled tool.", - "id": 28208 - }, - { - "image_path": "G:\\images\\combined\\002193_jpg.rf.4a1aaee881e0624b9a1012e41956c1f5.jpg", - "response": "A group of workers in orange shirts and blue hats are pulling on a barbed wire fence. Some of the workers are also wearing red shirts. They are all holding onto the fence with one hand while pulling with the other. The fence is located in a grassy area with trees in the background.", - "id": 28209 - }, - { - "image_path": "G:\\images\\combined\\002194_jpg.rf.472cc92e2d67cc009710bde42465a586.jpg", - "response": "a group of people standing around each other", - "id": 28210 - }, - { - "image_path": "G:\\images\\combined\\002195_jpg.rf.c60e735dcbf5a100efc8f58ca1e1dce3.jpg", - "response": "The image shows a group of workers on a scaffolding system on a building under construction. They are wearing blue uniforms and white helmets. The workers are of Chinese ethnicity. One of the workers is holding a large wrench. The building is yellow in colour and has many windows. The sky is blue and there are a few clouds.", - "id": 28211 - }, - { - "image_path": "G:\\images\\combined\\002196_jpg.rf.5ae38c8c40187c619c0eb24cc3939d9b.jpg", - "response": "A worker in a blue shirt and blue hat with a flashlight in a bush", - "id": 28212 - }, - { - "image_path": "G:\\images\\combined\\002197_jpg.rf.233ba871420196b5bf9a78a28211c51a.jpg", - "response": "A drilling team in red coveralls and yellow hard hats work on a drilling head in the desert.", - "id": 28213 - }, - { - "image_path": "G:\\images\\combined\\002198_jpg.rf.faba6471220a895e6067d08fc3fb0958.jpg", - "response": "A group of men in red work clothes are working on a large electrical transformer. They are standing on ladders and using tools to work on the transformer. The transformer is large and grey and is sitting on the ground. There are power lines above the transformer and the sky is overcast.", - "id": 28214 - }, - { - "image_path": "G:\\images\\combined\\002199_jpg.rf.ef632a9489d7984106a6db023f6b5074.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint on a construction site.", - "id": 28215 - }, - { - "image_path": "G:\\images\\combined\\0021af0b921af690.jpg", - "response": "A police van is parked in front of a building with a sign that says \"POLICE\" on the side of it. There are three people standing behind the police van. One of them is wearing a white shirt and a tie.", - "id": 28216 - }, - { - "image_path": "G:\\images\\combined\\002200_jpg.rf.17cdb29bea4af5e6c27802354d5e382d.jpg", - "response": "A group of three people standing on a construction site.", - "id": 28217 - }, - { - "image_path": "G:\\images\\combined\\002202_jpg.rf.dfe98c06f4cece3ced36d015699c91b2.jpg", - "response": "A man in a grey shirt and blue hard hat is holding a large orange and white pole. He is wearing a black bag and has a black strap across his chest. He is standing in a construction area with a large field behind him. There is a forest of trees in the background to the right. The sky is full of clouds and the field has a layer of dirt on the ground.", - "id": 28218 - }, - { - "image_path": "G:\\images\\combined\\002203_jpg.rf.bdcfeaee8231a145b440061028d38f86.jpg", - "response": "In the image there are three workers dressed in red with one wearing a yellow hard hat and the other two wearing red hard hats. They are standing in front of a building under construction with scaffolding around it. In the foreground there is a piece of wood that looks like it has been cut out and a pile of lumber.", - "id": 28219 - }, - { - "image_path": "G:\\images\\combined\\002204_jpg.rf.c32bfb7158a5c4bc9ed0bdbd1e6d4c1c.jpg", - "response": "A group of workers are working on a building.", - "id": 28220 - }, - { - "image_path": "G:\\images\\combined\\002205_jpg.rf.6bb3db1f525f03a799b4f535dc5c5e8f.jpg", - "response": "A group of people standing in a room that is under construction.", - "id": 28221 - }, - { - "image_path": "G:\\images\\combined\\002206_jpg.rf.7dc502706e2d660a996d602f84cdef25.jpg", - "response": "A construction worker is using a large piece of machinery to twist a large black wire into a circular shape. The wire is on the ground next to the worker and a large spool of wire is to the right of the worker. There are also several stacks of rebar scattered around the ground.", - "id": 28222 - }, - { - "image_path": "G:\\images\\combined\\002207_jpg.rf.f067c82c964b7110b968ade7e6572b30.jpg", - "response": "A group of men in hard hats stand in front of a large orange tarp. Some of the men are pointing at the tarp. One man is wearing a white shirt and glasses. Another man is wearing a white shirt and a red tie. A third man is wearing a white shirt and a blue tie. A fourth man is wearing a white shirt and a black tie. A fifth man is wearing a white shirt and glasses. A sixth man is wearing a white shirt and a black hat. A seventh man is wearing a white shirt and a red hat. A eighth man is wearing a white shirt and a black hat.", - "id": 28223 - }, - { - "image_path": "G:\\images\\combined\\002208_jpg.rf.9535a37b5b29c73c02e804d9ec88f260.jpg", - "response": "In the image there is a person wearing a yellow hard hat and red goggles, a plaid shirt and work gloves, working on a large piece of equipment. They are using a tool to make adjustments to the equipment.", - "id": 28224 - }, - { - "image_path": "G:\\images\\combined\\002209_jpg.rf.a2fb4ccad6ae750bc3886f75e1d2d66c.jpg", - "response": "A picture of two people working on power lines in front of a building.", - "id": 28225 - }, - { - "image_path": "G:\\images\\combined\\002210_jpg.rf.8589d3ab741f4915b62b2584f8ad046a.jpg", - "response": "In the image, a person is working at a construction site. The person is wearing a yellow hard hat, a black shirt, and grey pants. The person is holding a shovel and is standing next to a pile of grey rocks and a pile of grey rubble. In the background, there is a yellow crane.", - "id": 28226 - }, - { - "image_path": "G:\\images\\combined\\002211_jpg.rf.7c3f7421fe605bafe90d9bae85498104.jpg", - "response": "A worker in a red hard hat stands next to a wooden railing.", - "id": 28227 - }, - { - "image_path": "G:\\images\\combined\\002212_jpg.rf.bb00f8a21aa01e3722d809514cf7cb79.jpg", - "response": "a man in a blue uniform walking through a factory", - "id": 28228 - }, - { - "image_path": "G:\\images\\combined\\002213_jpg.rf.8fb71b5fa93962ac163a6a9026a45e0b.jpg", - "response": "A man in a yellow hard hat is driving a tractor in a warehouse.", - "id": 28229 - }, - { - "image_path": "G:\\images\\combined\\002214_jpg.rf.4ff500c4d1b99259a484ee8771767968.jpg", - "response": "A man wearing a red jumpsuit and a red hard hat is welding a piece of metal with a torch. He is hunched over and the flame from the torch is visible. There are other pieces of metal visible in the background.", - "id": 28230 - }, - { - "image_path": "G:\\images\\combined\\002215_jpg.rf.5027575ee531a22b13e4d920c993e21d.jpg", - "response": "A group of men in hard hats stand in the foreground, looking up at a tall\u70df\u56f1. The men are wearing yellow hard hats and some are wearing black jackets. One of the men is holding a cell phone. The background shows a tall white chimney stack surrounded by a metal scaffolding. The sky is overcast.", - "id": 28231 - }, - { - "image_path": "G:\\images\\combined\\002216_jpg.rf.9bb0870b71145367b5475e113779f1b7.jpg", - "response": "A group of men working on a construction site.", - "id": 28232 - }, - { - "image_path": "G:\\images\\combined\\002217_jpg.rf.ea960f25f6b2af6273c3d21f3db21ef3.jpg", - "response": "In the picture there are two workers wearing red work clothes and yellow helmets. They are in a room with brick walls and black iron pipes on the wall. They are working on a machine with two wheels and a pipe in the middle.", - "id": 28233 - }, - { - "image_path": "G:\\images\\combined\\002218_jpg.rf.907fd7c0229463ec702524a727a1e143.jpg", - "response": "Men working on a construction site.", - "id": 28234 - }, - { - "image_path": "G:\\images\\combined\\002219_jpg.rf.d6da5b693c183a627294f1e7c96469a6.jpg", - "response": "Four workers in yellow work uniforms and hard hats. One worker in the front is carrying a wooden beam on his shoulder. Another worker in the back is carrying two wooden planks. The workers are walking through a construction site. There are pieces of wood scattered around them and rubble on the ground. In the background, there is a building under construction.", - "id": 28235 - }, - { - "image_path": "G:\\images\\combined\\002220_jpg.rf.325a33167204853b4be376e502376816.jpg", - "response": "a group of men standing on a construction site", - "id": 28236 - }, - { - "image_path": "G:\\images\\combined\\002221_jpg.rf.02be3bd9f404d82c24dba3226538b962.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, he is pushing a wheelbarrow filled with red bricks. The worker is standing next to a tall stack of red bricks and a pile of bricks is also seen on the ground. The construction site is not finished yet and there are some wooden planks around.", - "id": 28237 - }, - { - "image_path": "G:\\images\\combined\\002222_jpg.rf.2db65edefc098b74075c5050b19f4b4e.jpg", - "response": "A man in a blue boiler suit and a yellow hard hat is holding a clipboard and making notes on it while he is standing in front of a boiler.", - "id": 28238 - }, - { - "image_path": "G:\\images\\combined\\002223_jpg.rf.bd5a2dd5cc294820a6207b2265829ccb.jpg", - "response": "a line of people wearing hard hats and carrying wooden planks", - "id": 28239 - }, - { - "image_path": "G:\\images\\combined\\002224_jpg.rf.5e6c586eac951bc9f2004291465ece70.jpg", - "response": "A group of six people standing in a parking lot in front of a housing complex.", - "id": 28240 - }, - { - "image_path": "G:\\images\\combined\\002225_jpg.rf.e9115837d9a047d0a864f7d4a846d67c.jpg", - "response": "The image shows two workers in blue hard hats and white protective clothing, climbing a metal staircase. They are both holding shovels and appear to be working on a large industrial machine. The machine has a blue and grey color scheme and is covered in white dust. There is a yellow step ladder leaning against the machine. The background shows a wall with a blue pipe running along it. The pipe is connected to the machine. The image is taken on a construction site.", - "id": 28241 - }, - { - "image_path": "G:\\images\\combined\\002226_jpg.rf.ec8bc2163d846e192717cf34e7f9ca9c.jpg", - "response": "The image shows a group of workers dressed in orange safety jumpsuits and hard hats. They are in the process of setting up a ladder, which is placed diagonally with one end on the ground and the other end resting on a building. The workers are in the process of securing the ladder to the building.", - "id": 28242 - }, - { - "image_path": "G:\\images\\combined\\002227_jpg.rf.4469f97e1d13431b370dba6651e00749.jpg", - "response": "A worker is seen here in a scene from the June 2012 issue of \u7ecd\u5174\u7f51\u4e8b magazine. The photo shows the worker, who is wearing a blue helmet and a black vest, suspended in the air while holding onto a rope. He is wearing a harness and appears to be in the process of climbing a steep slope. The background shows a road and a hillside.", - "id": 28243 - }, - { - "image_path": "G:\\images\\combined\\002228_jpg.rf.8224f373836afd4aec60844e43654e59.jpg", - "response": "The image shows a woman in a red shirt standing in the middle of a circle of men, all of them wearing hard hats. They are standing on a concrete pad in front of a building. The woman is holding a white hard hat and appears to be explaining something to the men.", - "id": 28244 - }, - { - "image_path": "G:\\images\\combined\\002229_jpg.rf.c4a28df800a005fd0d87b4dbc2bf4f25.jpg", - "response": "A construction worker in a green uniform is handing a tool to another construction worker in a red vest. They are both wearing yellow hard hats and are standing next to a third construction worker who is wearing a red vest and a gray hard hat. They are all standing on a road with a white sky background.", - "id": 28245 - }, - { - "image_path": "G:\\images\\combined\\002230_jpg.rf.9b9eb8a5c0f03a68410b3351c972cef2.jpg", - "response": "In the image two workers are seen working on an electricity post. One of them is wearing a blue uniform and yellow hat, both of them are wearing yellow hats. They are working on an electricity post which has many electric wires and electric bulbs. The sky is blue and clear.", - "id": 28246 - }, - { - "image_path": "G:\\images\\combined\\002231_jpg.rf.3d11dd13932b80beca5bafbbd94f5799.jpg", - "response": "A group of men working on a construction site.", - "id": 28247 - }, - { - "image_path": "G:\\images\\combined\\002232_jpg.rf.28bc6accd37e0beba30aee833b5304d8.jpg", - "response": "A man with a yellow hard hat and a goatee beard.", - "id": 28248 - }, - { - "image_path": "G:\\images\\combined\\002233_jpg.rf.e954a9be419074bed0af29dbb7b5d6c6.jpg", - "response": "A man wearing a grey shirt and a yellow helmet is welding two steel bars together in front of a pile of wooden planks.", - "id": 28249 - }, - { - "image_path": "G:\\images\\combined\\002235_jpg.rf.6e1f862e298b778651ff89b4293e335a.jpg", - "response": "A worker in a grey shirt and a man in a blue shirt and white hat stand on a roof. The worker in the grey shirt points to a gold box with white circles on it. In the background there are buildings under construction.", - "id": 28250 - }, - { - "image_path": "G:\\images\\combined\\002236_jpg.rf.2e885c90fc1009cecef85479354cfea5.jpg", - "response": "An electrician working on a electrical panel.", - "id": 28251 - }, - { - "image_path": "G:\\images\\combined\\002238_jpg.rf.425ecc8bbe21b5e1b1f08e0d101f3ec2.jpg", - "response": "The image shows a group of people standing inside a large warehouse that is under construction. They are wearing hard hats and some of them are wearing orange vests. In the foreground, a number of metal bars or steel rebar are stacked together. The word \"\u8d28\u91cf\" is written in red on the wall, and there are several other Chinese characters on the wall as well. The scene appears to be a construction site, with the workers possibly discussing or planning for the next step in the construction process.", - "id": 28252 - }, - { - "image_path": "G:\\images\\combined\\002239_jpg.rf.5c84535ac9365d286e8f3cf7b1dcd907.jpg", - "response": " Construction workers(499,404),(608,946)(353,511),(428,781) walk past a construction site", - "id": 28253 - }, - { - "image_path": "G:\\images\\combined\\002240_jpg.rf.85e2ed843f4de611835f320f2e1749ce.jpg", - "response": "A man wearing a blue hard hat and a white shirt is working on a large piece of equipment. He is wearing a blue hard hat and has a tool in his hand. He is also wearing a blue shirt and has a tool belt around his waist. He is standing in front of a large black and grey box with red buttons on it.", - "id": 28254 - }, - { - "image_path": "G:\\images\\combined\\002241_jpg.rf.c504d8488e0235661936f8f571633107.jpg", - "response": "a man(657,338),(777,812) working in a cave", - "id": 28255 - }, - { - "image_path": "G:\\images\\combined\\002242_jpg.rf.b8afc0357d9a69ce6e8374508ce7c339.jpg", - "response": "A man in an orange uniform is on a yellow piece of equipment in a tunnel.", - "id": 28256 - }, - { - "image_path": "G:\\images\\combined\\002243_jpg.rf.5956f5226020d72441b7f96bace4693e.jpg", - "response": "A group of men working on a construction site with a yellow crane behind them.", - "id": 28257 - }, - { - "image_path": "G:\\images\\combined\\002244_jpg.rf.606636bb1d5246463cd5aee28f690cc9.jpg", - "response": "A man in a red vest and yellow hard hat is fixing a power box on the side of a building. Another man in a blue hard hat is standing behind him. There are power lines above them and a few cars in the background.", - "id": 28258 - }, - { - "image_path": "G:\\images\\combined\\002245_jpg.rf.6b49693510a290e3c46a09a8dde34575.jpg", - "response": "The image shows a group of people walking in a courtyard. They are all dressed in business attire. There is a man on the left wearing a white shirt and beige pants, and a man in the center wearing a black suit and white shirt. A woman on the right is wearing a black pants and a blue top. She is also holding a black purse. The rest of the people are wearing a mix of business and casual attire. Some are wearing jeans, some are wearing suits. They are all walking in the same direction. On the right side of the image, there is a building under construction. It has scaffolding around it and the walls are a mix of red and green.", - "id": 28259 - }, - { - "image_path": "G:\\images\\combined\\002246_jpg.rf.2ec5a7b2b3aaccf7c7f5b9f9728ef35a.jpg", - "response": "A city street with several buildings on either side. There are two workers in red uniforms and blue helmets working on a transformer on the side of the street. They are standing on a ladder and working on the transformer. There is a white car parked on the street and a few people walking around. There is also a sign that says \"fazhan road\" and a traffic light.", - "id": 28260 - }, - { - "image_path": "G:\\images\\combined\\002247_jpg.rf.daaa2dddd626de97064cac1ffeb59659.jpg", - "response": "The image shows a group of men standing on a construction site. They are wearing hard hats and one of them is pointing to something. There is a flag on the left side of the image and a pole with a red flag on it. In the background, there are some buildings.", - "id": 28261 - }, - { - "image_path": "G:\\images\\combined\\002248_jpg.rf.9635e96f0193765bce2792dcf083aabc.jpg", - "response": "A man wearing a yellow hard hat, blue gloves and a yellow vest is carrying a large piece of metal on his shoulder. He is standing in front of a construction site.", - "id": 28262 - }, - { - "image_path": "G:\\images\\combined\\002249_jpg.rf.3b6a93931c340681f84f9e251fd8962d.jpg", - "response": "A construction site with three workers.", - "id": 28263 - }, - { - "image_path": "G:\\images\\combined\\002251_jpg.rf.64d3cc6b84f991c351b05592c6e3304d.jpg", - "response": "A construction site with three men working on a building. The men are working on a red metal beam and a white column. They are wearing hard hats and one man is holding a drill.", - "id": 28264 - }, - { - "image_path": "G:\\images\\combined\\002252_jpg.rf.f8792c990b1cf931d383bad8fb6b473e.jpg", - "response": "An image of two men working on a construction site.", - "id": 28265 - }, - { - "image_path": "G:\\images\\combined\\002253_jpg.rf.58c1f2ea9f0d6e2aa3a930efebc4b3d6.jpg", - "response": "The image shows a group of men in white shirts and some wearing hard hats, walking in a line across a construction site. The men are walking past a large blue construction site fence that has Chinese writing on it. In the background, there is a building under construction with a large white tower crane next to it. The sky is a light blue color and there are a few clouds.", - "id": 28266 - }, - { - "image_path": "G:\\images\\combined\\002254_jpg.rf.1743a3eee1ab34da8bc11c766570d81a.jpg", - "response": "The image shows five people standing in a circle in front of a pile of rubble. All of the people are wearing suits. To the far left is a man wearing a black helmet and dark blue suit. To his right is a man wearing a dark suit. In front of him is a man wearing a light blue shirt and dark suit. To the far right is a woman wearing a dark yellow coat and dark blue suit. In front of her is a man wearing a dark suit and a light blue shirt.", - "id": 28267 - }, - { - "image_path": "G:\\images\\combined\\002255_jpg.rf.fd9f8210ea78054feb820f3a1aeb28a0.jpg", - "response": "In the image there is a construction site with multiple workers. The main focus is on a man who is standing on a platform wearing a yellow helmet and a brown uniform. He is looking down at the construction site. There are several other people scattered around the site, some are further away and some are closer to the camera. They are all wearing yellow helmets and some are wearing backpacks. The platform is made of wood and metal and it is supported by many metal bars. The whole construction site is surrounded by many metal bars and there are several red signs on the site.", - "id": 28268 - }, - { - "image_path": "G:\\images\\combined\\002256_jpg.rf.a8253f3bc4e0287d71edfa08b45cd353.jpg", - "response": "A group of workers wearing hard hats are working on a brick wall.", - "id": 28269 - }, - { - "image_path": "G:\\images\\combined\\002257_jpg.rf.6b04111155bf811d0ce2cc48a2251265.jpg", - "response": "An electrician is working on power lines.", - "id": 28270 - }, - { - "image_path": "G:\\images\\combined\\002258_jpg.rf.2e03b865bb117c53160e9293f9187814.jpg", - "response": "In the image there are two people wearing orange protective vests, one of them is a woman holding a tablet, and the other one is a man measuring something on the ground. They seem to be working in a construction site.", - "id": 28271 - }, - { - "image_path": "G:\\images\\combined\\002259_jpg.rf.0bf54c7c66cc678eb02ddff758779df2.jpg", - "response": "A man and woman wearing hard hats stand in a construction site. They are standing near a table with wood on it. There are two cups on the table, one closer to the man and one closer to the woman. There are also two bowls on the table, one closer to the man and one closer to the woman. In the background, there is a truck and a forklift.", - "id": 28272 - }, - { - "image_path": "G:\\images\\combined\\002260_jpg.rf.17aa6db3845550582588967a49bd9636.jpg", - "response": "A man in a blue shirt is talking to a group of men in front of a van.", - "id": 28273 - }, - { - "image_path": "G:\\images\\combined\\002261_jpg.rf.97b405ccbd2e3e9327d51613b58fb756.jpg", - "response": "A construction crew works on a damaged guardrail in a tunnel.", - "id": 28274 - }, - { - "image_path": "G:\\images\\combined\\002262_jpg.rf.c1823a72e8bfe3501d5e77431c968e9d.jpg", - "response": "The image shows a group of rescuers from a fire station climbing up a steep,\u96ea\u5c71\u822c\u7684\u5c71\u5761. They are wearing yellow, blue, and red uniforms and hard hats. The terrain is rocky and covered in frost, and the rescuers are carrying equipment on their backs. The sky is overcast, and the rescuers are spread out along the slope, with some closer to the top and others in the middle of the scene. The rescuers are determined to reach the top, despite the challenging conditions.", - "id": 28275 - }, - { - "image_path": "G:\\images\\combined\\002263_jpg.rf.141410279069f689ce2af108b40f2f5d.jpg", - "response": "A line of people walking down a sidewalk.", - "id": 28276 - }, - { - "image_path": "G:\\images\\combined\\002264_jpg.rf.02744268640fd0256d3b54e14366eb80.jpg", - "response": "A group of workers wearing orange helmets are working on a construction site. They are wearing white and orange uniforms. In front of them, there is a pile of grey concrete wire mesh. To the left of the workers, there is a green container. In the distance, there are two green and white containers and a white sky.", - "id": 28277 - }, - { - "image_path": "G:\\images\\combined\\002265_jpg.rf.b22ec78cce15aee50497062ba544c3aa.jpg", - "response": "An electrician working on power lines.", - "id": 28278 - }, - { - "image_path": "G:\\images\\combined\\002266_jpg.rf.1c69ce2fe8173b1845b065d631e045f6.jpg", - "response": "A couple of men working on some power lines in the snow.", - "id": 28279 - }, - { - "image_path": "G:\\images\\combined\\002267_jpg.rf.ff6a695ccfbf0e6b9fba5426a518ad40.jpg", - "response": "In the image there is a factory worker dressed in orange standing next to a large metal container with a stick in his hand. He is standing in front of a large fire and there is sparks flying. He is wearing a hard hat and orange safety suit.", - "id": 28280 - }, - { - "image_path": "G:\\images\\combined\\002268_jpg.rf.b861392b1437fdc3c0535834d301e8d2.jpg", - "response": "A group of construction workers are working on a building site. They are all wearing blue and yellow hi vis shirts and yellow hard hats. They are standing on a platform which has scaffolding around it. In the background there is a concrete pillar and a building.", - "id": 28281 - }, - { - "image_path": "G:\\images\\combined\\002269_jpg.rf.5fd0028e1d6210406b3dee9e4e34f3d0.jpg", - "response": "The image shows a group of men in neon yellow vests and white helmets carrying a man on a stretcher. The men are wearing the same neon yellow vests, and the man they are carrying is also wearing a neon yellow vest. The men are walking across a construction site, and there is a large white clock in the background. The photo is taken on a construction site, and there are some buildings in the background.", - "id": 28282 - }, - { - "image_path": "G:\\images\\combined\\002270_jpg.rf.d32f9a0b3a910c2ba2d07b76386bf216.jpg", - "response": "A group of firefighters are putting out a fire in a factory.", - "id": 28283 - }, - { - "image_path": "G:\\images\\combined\\002272_jpg.rf.987f826c7d998d989113bfc8882f1006.jpg", - "response": "A group of men sitting around a table.", - "id": 28284 - }, - { - "image_path": "G:\\images\\combined\\002273_jpg.rf.8c2997f52ba6230673ba4fb3f2f96c39.jpg", - "response": "The image shows a group of men standing in front of a banner. They are all wearing hard hats and some are wearing suits. In the background there is a cliff. To the far right there is a person wearing a grey jacket. In the middle there is a man wearing a black jacket and a red hard hat. To the far left there is a person wearing a red hard hat and a grey jacket.", - "id": 28285 - }, - { - "image_path": "G:\\images\\combined\\002274_jpg.rf.a408f78ee6445c0fa2695c658d5d54bc.jpg", - "response": "a group of men standing in front of a building", - "id": 28286 - }, - { - "image_path": "G:\\images\\combined\\002275_jpg.rf.6ec746580fb53609730b43da1972cde7.jpg", - "response": "A couple of workers on a yellow machine working on power lines.", - "id": 28287 - }, - { - "image_path": "G:\\images\\combined\\002276_jpg.rf.59938972d2a8b2f88568c49a862e52f0.jpg", - "response": "A man in a hard hat and a suit holds a set of blueprints in front of a house that is under construction. There are two other men standing beside the house, both also wearing hard hats.", - "id": 28288 - }, - { - "image_path": "G:\\images\\combined\\002277_jpg.rf.279e5eff49fb017927ad6f924d8c15f3.jpg", - "response": "A group of men working on a construction site.", - "id": 28289 - }, - { - "image_path": "G:\\images\\combined\\002278_jpg.rf.0b0249090e51ed7bd9980e328a2ba4bb.jpg", - "response": "A worker wearing a yellow helmet is seen through the metal grid. He is wearing a green camouflage shirt and is holding a tool in his hand. The background shows a blue sky and a building under construction with a red frame.", - "id": 28290 - }, - { - "image_path": "G:\\images\\combined\\002279_jpg.rf.adfb753e2e39f38135df986c2e4aadd8.jpg", - "response": "A man in an orange hard hat and blue coveralls standing in front of an oil pump.", - "id": 28291 - }, - { - "image_path": "G:\\images\\combined\\002280_jpg.rf.11cbe55b6f2db9591d636508814e28e9.jpg", - "response": "A group of five construction workers wearing yellow hard hats are working on a construction site. They are working on a framework of a building with rebar in front of them. In the background there is a cityscape with buildings and trees.", - "id": 28292 - }, - { - "image_path": "G:\\images\\combined\\002281_jpg.rf.6f6abfe2cb808c76d7dbd0afbec0edb6.jpg", - "response": "A man in a blue hard hat standing on a scaffold.", - "id": 28293 - }, - { - "image_path": "G:\\images\\combined\\002282_jpg.rf.906438b2b8048fb52fb1e002087d8ce2.jpg", - "response": "A worker in green camouflage pants and a blue hard hat is sitting on yellow scaffolding. The worker is on a yellow pipe and is holding a yellow ball. The building behind the worker is brown and the sky is blue.", - "id": 28294 - }, - { - "image_path": "G:\\images\\combined\\002283_jpg.rf.1d5ada0634785c03c3533f372b08538f.jpg", - "response": "A group of people working on a building site.", - "id": 28295 - }, - { - "image_path": "G:\\images\\combined\\002284_jpg.rf.339a5c6469d52263b52918f57080236a.jpg", - "response": "The image shows a group of people standing around a construction site. They are all wearing hard hats and high visibility vests. In the foreground, a man in a blue shirt and red hard hat is showing another man in a yellow hard hat something on a piece of paper. To the left of the man in the blue shirt, a man in a blue helmet and orange vest is looking at the paper as well. Another man in a yellow hard hat is standing to the right of the man in the blue shirt. Behind him, a man in a white hard hat is standing to the right of the man in the blue helmet. To the far right of the image, a man in a white hard hat and an orange vest is standing with his hands behind his back.", - "id": 28296 - }, - { - "image_path": "G:\\images\\combined\\002285_jpg.rf.3136445bb8d7771bbf0a7b6014ceafe2.jpg", - "response": "A group of men in suits and hard hats are walking down a dirt road. Some men are carrying a cell phone. In the background there are buildings and construction equipment.", - "id": 28297 - }, - { - "image_path": "G:\\images\\combined\\002286_jpg.rf.05c1f7666ac80696c0b4d1faaf43e86e.jpg", - "response": "A pair of legs wearing jeans and work boots are standing in a concrete tunnel. They are covered in blue wires. Another person is standing in the background, wearing an orange safety vest with a white shirt and blue pants. They are holding a blue device with two blue wires coming out of it.", - "id": 28298 - }, - { - "image_path": "G:\\images\\combined\\002287_jpg.rf.c7c20943498297628578ff2059fe851a.jpg", - "response": "In the image there are two men wearing orange work suits and hard hats. They are standing in a large open pit mine with rocks and dirt all around them. There are two yellow and black earth moving machines working in the background. One is on the left and the other is on the right. There are also clouds in the sky.", - "id": 28299 - }, - { - "image_path": "G:\\images\\combined\\002288_jpg.rf.1b43bd14e548c2fb278961baf416688e.jpg", - "response": "The photo shows a concrete tube that has been dug out in the ground. In the tube, there are three people working. The one in the middle front is wearing a yellow helmet and black shorts. He is kicking a chair with his right foot. The person to the left of the middle man is wearing a red helmet and holding a long iron bar. The person at the back is wearing a\u5b89\u5168\u5e3d and is sitting on the left side of the concrete tube. There are several chairs placed in the tube, and a iron bar and a piece of wood are placed on the left side of the tube.", - "id": 28300 - }, - { - "image_path": "G:\\images\\combined\\002289_jpg.rf.8397254ae1ba399c52d9a11e421365fb.jpg", - "response": "The image shows two workers, one wearing a white shirt and a yellow safety vest, and the other wearing a red safety vest, cleaning the road inside a tunnel. They are pulling a small cart filled with rocks. The cart has two yellow plastic bags on either side. The left worker is pushing the cart while the right worker is following behind. They are wearing red helmets. The tunnel is dimly lit with orange lights. The road outside the tunnel is empty. The cart has two yellow plastic bags on either side.", - "id": 28301 - }, - { - "image_path": "G:\\images\\combined\\002290_jpg.rf.e12f39d700557c12f2233389c5b184d1.jpg", - "response": "A large group of workers wearing hard hats and work clothes are standing in a group.", - "id": 28302 - }, - { - "image_path": "G:\\images\\combined\\002291_jpg.rf.b4b6f8d0dcac668bc7583b02a0408682.jpg", - "response": "A man wearing a hard hat and holding a rolled up blueprint is standing in a construction site.", - "id": 28303 - }, - { - "image_path": "G:\\images\\combined\\002292_jpg.rf.0231e287bb805f00bdd2354fd117076c.jpg", - "response": "A group of people sitting around a table.", - "id": 28304 - }, - { - "image_path": "G:\\images\\combined\\0022933cdceee189.jpg", - "response": "A car dashboard with the needle pointing at 33.3 mph.", - "id": 28305 - }, - { - "image_path": "G:\\images\\combined\\002293_jpg.rf.a8086fd874ac9e312d9cd04fb4acfaa8.jpg", - "response": " Two men(148,322),(363,783)(339,335),(566,786) walking on a construction site", - "id": 28306 - }, - { - "image_path": "G:\\images\\combined\\002294_jpg.rf.67e381042655a18da8219a57e2b16e60.jpg", - "response": "A team of five workers is fixing a power pole. One worker is on top of the pole, while the others are on the ground, fixing the wires. They are all wearing blue helmets.", - "id": 28307 - }, - { - "image_path": "G:\\images\\combined\\002295_jpg.rf.f5d227b77330e8ddd394b8e8de467dcc.jpg", - "response": "A group of people standing around an electrical box wearing hard hats.", - "id": 28308 - }, - { - "image_path": "G:\\images\\combined\\002296_jpg.rf.fd15e38dfd97a37366cd37f45e9ff023.jpg", - "response": "A group of men in red uniforms are working on an electrical box. They are standing on ladders and have tools in their hands. The electrical box is attached to a metal pole and is located next to a wooded area.", - "id": 28309 - }, - { - "image_path": "G:\\images\\combined\\002297_jpg.rf.05b4ee9d1d8e28b2ee0e65417f2cecf9.jpg", - "response": "In the image two men are working with a drone. The drone is a quad copter style drone with a camera mounted on it. The men are standing in a wooded area and one of them is holding a rope connected to the drone.", - "id": 28310 - }, - { - "image_path": "G:\\images\\combined\\002298_jpg.rf.55dc88005c8d5b9f15a6216f48d72c2d.jpg", - "response": "In the image, a construction worker is working on a building site. The worker is wearing a grey shirt and a orange hard hat. In front of the worker, there is a yellow crane and a pile of steel rods. To the right of the worker, there are several people standing among the steel rods and the crane. In the background, there are some buildings and a forest.", - "id": 28311 - }, - { - "image_path": "G:\\images\\combined\\002300_jpg.rf.535e8af17e069382845e5c0cb7813361.jpg", - "response": "A construction worker is holding a ladder over his shoulder.", - "id": 28312 - }, - { - "image_path": "G:\\images\\combined\\002301_jpg.rf.90c1eb6dd1b0da23479428a2c5a92212.jpg", - "response": "A group of workers in red and blue hard hats.", - "id": 28313 - }, - { - "image_path": "G:\\images\\combined\\002302_jpg.rf.fad6d77b9f3282a70300e60c24d5ddb2.jpg", - "response": "A man wearing a hard hat and safety vest is holding a metal grate in a warehouse.", - "id": 28314 - }, - { - "image_path": "G:\\images\\combined\\002303_jpg.rf.51e73b06dd8fdd674fb0319689e270de.jpg", - "response": "The image shows a smiling construction worker in a yellow hard hat, working on a brick wall. The worker is holding a trowel in his hand and appears to be focused on his task. The wall is made of red bricks and is being built vertically, with the worker sitting on the bottom row. The background shows a partially constructed building with a similar brick wall. There are a few other people in the image, but the main focus is on the smiling worker.", - "id": 28315 - }, - { - "image_path": "G:\\images\\combined\\002305_jpg.rf.ade7a35835cf8aab3315371518b7e4a1.jpg", - "response": "A man in an orange work shirt and a yellow hard hat is looking at something on the ground. He is leaning over and looking down at it. He is wearing a white shirt underneath his work shirt. He is also wearing a pair of glasses on his forehead. He is wearing a ring on his left hand. The man is also wearing a pair of orange work pants. He is wearing a pair of brown work boots.", - "id": 28316 - }, - { - "image_path": "G:\\images\\combined\\002306_jpg.rf.465902ca4e220ab53888456f63e47e08.jpg", - "response": "A worker is seen here checking power equipment. He is wearing a white shirt, a grey-green vest and a yellow helmet. He is holding a black and blue glove in one hand and is on the phone with a yellow and black cord. In front of him is a grey box with four black buttons on it. To the right of the grey box, there's a grey box with a red button. All these equipment are installed on a grey pole. The background shows a snow-covered mountain.", - "id": 28317 - }, - { - "image_path": "G:\\images\\combined\\002308_jpg.rf.528aa2036ac256cef6726cffd17110bd.jpg", - "response": "In the image, a woman is wearing a yellow hard hat and a blue jacket. She is smiling at the camera while standing in front of a control panel with a whiteboard on the wall behind her. The control panel has various switches and lights. There is a computer monitor to her left with data displayed on it. A notepad and pen are placed on the control panel in front of her. A cell phone is visible on the control panel with a cord attached to it. A keyboard and a mouse are also present on the control panel. To the left of the control panel, there is a drawer with a green box in it.", - "id": 28318 - }, - { - "image_path": "G:\\images\\combined\\002309_jpg.rf.976c1e48387abeaf91844d04559a8616.jpg", - "response": "Builder wearing safety helmet and high visibility vest using drill to fit window frame in roof space of a house in construction.", - "id": 28319 - }, - { - "image_path": "G:\\images\\combined\\002310_jpg.rf.da39de89324d313eb251ec60934a1305.jpg", - "response": "In the image two workers are on a telephone pole in orange jumpsuits and blue hats. They are fixing the wires on the telephone pole.", - "id": 28320 - }, - { - "image_path": "G:\\images\\combined\\002311_jpg.rf.a4b2ce63c11b7b348ee0fb4150042134.jpg", - "response": "A group of men in blue work uniforms and yellow helmets are working on a power line. They are on a metal platform on top of a utility pole. The pole is made of wood and has many wires attached to it. The men are wearing safety ropes and are working on the wires.", - "id": 28321 - }, - { - "image_path": "G:\\images\\combined\\002313_jpg.rf.27764fe9e8397a3b8c0e49ffe5ad402c.jpg", - "response": "An electrician in a blue uniform and blue hard hat, climbing a ladder to work on power lines.", - "id": 28322 - }, - { - "image_path": "G:\\images\\combined\\002314_jpg.rf.955f29c4c1e308c2f3e590963c9e62ab.jpg", - "response": "A man in a blue hat and white shirt is on a light post, touching wires.", - "id": 28323 - }, - { - "image_path": "G:\\images\\combined\\002316_jpg.rf.d943ecf072c99952147472e47fcbcea1.jpg", - "response": "A group of people standing on a unfinished bridge.", - "id": 28324 - }, - { - "image_path": "G:\\images\\combined\\002317_jpg.rf.25afd79c69ff4bb6450b7de818ed3466.jpg", - "response": "A man is cutting a large blue pipe with a circular saw.", - "id": 28325 - }, - { - "image_path": "G:\\images\\combined\\002318_jpg.rf.5b43915864e9698513bd942cec2d3562.jpg", - "response": " Firefighters(258,446),(493,933)(408,558),(719,997)(798,105),(997,996)(3,133),(257,995) work to free a man trapped in a trench after a wall collapsed in the early hours of the morning.", - "id": 28326 - }, - { - "image_path": "G:\\images\\combined\\0023199523656671.jpg", - "response": "A bottle of pink liquid, a pink box and a red box with the word CASTELBEL on it.", - "id": 28327 - }, - { - "image_path": "G:\\images\\combined\\002319_jpg.rf.c1ec88cee7f7946917184733f20dd38f.jpg", - "response": "A man wearing a tie die shirt, black helmet and white safety shoes is on a blue metal platform. He is holding a rope and wearing a tool belt. The sky is clear blue behind him.", - "id": 28328 - }, - { - "image_path": "G:\\images\\combined\\002321_jpg.rf.370a2c4f66a813b64f74ccb414c49710.jpg", - "response": "A man in a yellow hard hat is kneeling down in the center of a large circular structure made of steel rebar. The rebar is stacked in a circular pattern around him, with some of it bent into a circular shape. There are other people working in the background, with one person on the left and two more on the right. They are also wearing yellow hard hats.", - "id": 28329 - }, - { - "image_path": "G:\\images\\combined\\002322_jpg.rf.609469e61d77cbd6d1aab32b91479fc0.jpg", - "response": "In the image two people are working on a large pipe. The person on the left is wearing a red shirt and yellow hard hat and is using a tool to work on the pipe. The person on the right is wearing a pink shirt and yellow hard hat and is holding the pipe while the other person works on it. There is a second person in the background wearing blue pants and a yellow hard hat. They are both standing on the dirt near the pipe. There is a bucket in the background on the left and a forklift in the background on the right.", - "id": 28330 - }, - { - "image_path": "G:\\images\\combined\\002323_jpg.rf.4e471ccaa361e601e4b54ea305ba01be.jpg", - "response": "A group of people working on a building site with scaffolding and smoke stacks in the background.", - "id": 28331 - }, - { - "image_path": "G:\\images\\combined\\002324_jpg.rf.d63752e2dcea893e880a49b80ee2855f.jpg", - "response": "A group of five men sitting on wood.", - "id": 28332 - }, - { - "image_path": "G:\\images\\combined\\002325_jpg.rf.2b590fa8f814070f3d3689073a1e0f1c.jpg", - "response": "A construction site with multiple people working on it. There is a man on the left side of the image and another on the right side. They are both wearing white hard hats. In the center of the image, there is a large area of concrete that has been built but not finished. There are rebar sticking up out of the ground in a grid pattern. There are also several tools scattered around the site including a green hard hat, a white rope, and a blue hose.", - "id": 28333 - }, - { - "image_path": "G:\\images\\combined\\002326_jpg.rf.3aab0427986ff91d6f8037dfa375db4f.jpg", - "response": "A group of men walking across a construction site.", - "id": 28334 - }, - { - "image_path": "G:\\images\\combined\\002327_jpg.rf.38d765155d575ac777d24766349ea1e8.jpg", - "response": "A group of construction workers are standing on a sidewalk. They are all wearing hard hats and drinking coffee. One of the workers is drinking from a red cup. In the background, there is a yellow construction vehicle parked on the street.", - "id": 28335 - }, - { - "image_path": "G:\\images\\combined\\002328_jpg.rf.70d40f1ef55aa079fabee75d0c7ebb27.jpg", - "response": "Rescue workers carry an injured worker from the site of a cave-in at a construction site in Kunming, Yunnan province, China, 24 October 2014. According to local media, at least 19 construction workers were buried alive in the cave-in, and 15 of them were rescued after a 14-hour operation. The rescue operation is still ongoing.", - "id": 28336 - }, - { - "image_path": "G:\\images\\combined\\002329_jpg.rf.9baea2dec8582a2cf22413a10e7406b7.jpg", - "response": "A scene of a building under construction with a scaffolding around it. There are two workers wearing white hats and blue shirts, one is in the center of the image and the other one is on the right side of the image, climbing the scaffolding.", - "id": 28337 - }, - { - "image_path": "G:\\images\\combined\\002331_jpg.rf.327bfc86498be5af3f1dc753746ec62f.jpg", - "response": "A couple of men in hard hats and work clothes are in a factory, standing near a table with bricks on it. They are looking at the camera and one of them is pointing to a brick on the table.", - "id": 28338 - }, - { - "image_path": "G:\\images\\combined\\002332_jpg.rf.936b7a914951acf96de9b3387134d2ff.jpg", - "response": "A group of men working on a construction site.", - "id": 28339 - }, - { - "image_path": "G:\\images\\combined\\002333_jpg.rf.10563a5b8065b721ff7646a0ba8f6b22.jpg", - "response": "A construction worker standing in the middle of a construction site. The worker is facing away from the camera and is wearing a yellow hard hat. The construction site is dark and there are many wooden planks and debris scattered around. There are also some metal bars visible in the scene.", - "id": 28340 - }, - { - "image_path": "G:\\images\\combined\\002335_jpg.rf.b819e1a608c5c2236351f528f7655e63.jpg", - "response": "The image shows a group of four men standing in a parking lot. They are all wearing orange hard hats, and the man on the left is also wearing a black jacket. In the background, there is a light blue building on the left, and a yellow building on the right. There are two cars parked in the lot, one in the middle and the other on the right. There is also a white truck parked in the middle of the lot, and a couple of other vehicles parked or driving in the background.", - "id": 28341 - }, - { - "image_path": "G:\\images\\combined\\002336_jpg.rf.b4fe72e374a8838a9735ab0d89291506.jpg", - "response": "A group of men working in a museum display of a glacier.", - "id": 28342 - }, - { - "image_path": "G:\\images\\combined\\002337_jpg.rf.f212f2dbced9e15da2719ef656e823b4.jpg", - "response": "A man in a green shirt and black pants is on a power line.", - "id": 28343 - }, - { - "image_path": "G:\\images\\combined\\002338_jpg.rf.d03545bac38abcab91f83576514f7b0a.jpg", - "response": "A man in a yellow hard hat is pointing to a blueprint while another man in a white hard hat looks at the blueprint.", - "id": 28344 - }, - { - "image_path": "G:\\images\\combined\\002339_jpg.rf.23a85a0eba6753fd3664d2fb5b80b290.jpg", - "response": "A group of workers are clearing a fallen tree from a road. There are two construction trucks and two cherry pickers in the scene. One of the trucks is yellow and positioned on the left side of the image, while the other is red and positioned on the right side of the image. The yellow truck is also lifting a fallen tree onto a trailer. The cherry pickers are positioned in the middle of the scene, one on the left side and one on the right side. The workers are holding umbrellas to protect themselves from the rain.", - "id": 28345 - }, - { - "image_path": "G:\\images\\combined\\002340_jpg.rf.c9cf21b267fe6133cb93e3fb9a26ac59.jpg", - "response": "a man in a white shirt(161,268),(386,986)", - "id": 28346 - }, - { - "image_path": "G:\\images\\combined\\002341_jpg.rf.410e830e4464e7d1a934f48b537d56e1.jpg", - "response": "A group of construction workers in hi vis vests and hard hats are sitting on a bench in a construction site. They are wearing safety gear and one of them is checking a phone.", - "id": 28347 - }, - { - "image_path": "G:\\images\\combined\\002342_jpg.rf.5f7c451908a1f3fe3c0c710ce5ee5eba.jpg", - "response": "The picture shows a group of people standing around and talking. Among them, there are three men in the focus of the picture. One man on the left is wearing a white shirt and a black watch. The man in the middle is wearing a black suit. The man on the right is wearing a black overcoat and a black shirt. He is also talking with his hands.", - "id": 28348 - }, - { - "image_path": "G:\\images\\combined\\002343_jpg.rf.e1a1c8cd63a242a45343f4a8e7697425.jpg", - "response": "A man wearing a fire hat and protective gear with sweat on his face and under his hat.", - "id": 28349 - }, - { - "image_path": "G:\\images\\combined\\002345_jpg.rf.eadb164e3e0f147303fd97d3585d6f81.jpg", - "response": "A group of men in blue tops and hats are working on a tower.", - "id": 28350 - }, - { - "image_path": "G:\\images\\combined\\002346_jpg.rf.dfad6eb33803e5b06031ac07e28413a6.jpg", - "response": "Men(237,175),(460,969)(673,158),(953,969)(613,53),(789,898) digging up the ground", - "id": 28351 - }, - { - "image_path": "G:\\images\\combined\\002347_jpg.rf.e0af7ef7e6e5181d3a2931199b53bf94.jpg", - "response": "The photo shows men in suits standing on a dirt field. There are 10 men in total, ranging from left to right: a man with black hair and a black jacket; a man with gray hair and a gray jacket; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit; a man with black hair and a black suit; a man with gray hair and a gray suit. In the background, there is a car parked.", - "id": 28352 - }, - { - "image_path": "G:\\images\\combined\\002348_jpg.rf.c3fecef56daa28ccaed42e8e98545abf.jpg", - "response": "A couple of men in yellow helmets are on top of power lines.", - "id": 28353 - }, - { - "image_path": "G:\\images\\combined\\002349_jpg.rf.894fb2cf56140add2b21313dd63c3601.jpg", - "response": "A group of people stand behind a table with a model city on it. They are all looking at the model closely. There is a blue dining table in the background. On the table, there are some papers and a laptop. There is a potted plant on the right side of the table. A curtain is covering the window behind the people. Some people are wearing black, some are wearing white, and one person is wearing a pink shirt.", - "id": 28354 - }, - { - "image_path": "G:\\images\\combined\\002351_jpg.rf.cf71548402429174d8649b78058b652b.jpg", - "response": "A man in a hard hat standing in front of an electrical substation.", - "id": 28355 - }, - { - "image_path": "G:\\images\\combined\\002353_jpg.rf.ed686a5eb9763053295f36e64d8437eb.jpg", - "response": "A construction site with a dump truck unloading dirt into a hole.", - "id": 28356 - }, - { - "image_path": "G:\\images\\combined\\002354_jpg.rf.1a6f491386981fce13f6347511a7acfc.jpg", - "response": "a group of people standing in a hallway", - "id": 28357 - }, - { - "image_path": "G:\\images\\combined\\002355_jpg.rf.4302322dc49142a963545632bcadc199.jpg", - "response": "The image shows a group of men standing inside a large cylindrical device that looks like a giant pipe. The pipe is orange in color and has many nozzles and tubes coming out of it. The men are standing at various positions around the device, with some on the left side, some in the middle, and some on the right side. They are all wearing hard hats, with some wearing orange and some wearing white. The background is a bit blurry, with a wall on the left side and a large machine on the right side.", - "id": 28358 - }, - { - "image_path": "G:\\images\\combined\\002356_jpg.rf.2dd86923a678e1d14f5fb3e37aa56bc5.jpg", - "response": "A group of men carrying a large metal pipe.", - "id": 28359 - }, - { - "image_path": "G:\\images\\combined\\002357_jpg.rf.4e7078b5460605942fcf4591b755cedc.jpg", - "response": "A group of men working on a construction site.", - "id": 28360 - }, - { - "image_path": "G:\\images\\combined\\002358_jpg.rf.d5a76d93ac6786080bc477984742bb9e.jpg", - "response": "In the image there are two people wearing hard hats, one of them is a woman and the other one is a man. They are both dressed in business attire. The woman is holding a tablet and showing it to the man. They are both looking at the tablet and seem to be in a warehouse. The walls of the warehouse are filled with stacks of wooden planks.", - "id": 28361 - }, - { - "image_path": "G:\\images\\combined\\002359_jpg.rf.a0ddd0b40a8c735b30efe85d155cadb8.jpg", - "response": "a group of men working on a power line", - "id": 28362 - }, - { - "image_path": "G:\\images\\combined\\002362_jpg.rf.505a2868ff010327ffcad38c67d8fcf8.jpg", - "response": "A group of four people standing around several tanks of gas.", - "id": 28363 - }, - { - "image_path": "G:\\images\\combined\\002363_jpg.rf.e9243f0cc2670772f12c2146aebafe03.jpg", - "response": "A group of people stand in front of a large model of a city. They are looking at a model of buildings and streets. Some of the people are wearing ties.", - "id": 28364 - }, - { - "image_path": "G:\\images\\combined\\002364_jpg.rf.e28cc60714418318ce045042b99e2ef9.jpg", - "response": "The image shows two workers at a construction site. They are wearing blue and white hard hats and are working on a large piece of metal. The metal is rusty and they are using a tool to make adjustments. There are many rusty metal pipes around them and several buckets in the background. Some of the buckets are green and some are white. They have a red star on them and are filled with paint.", - "id": 28365 - }, - { - "image_path": "G:\\images\\combined\\002365_jpg.rf.87bbf624ab440ce41c9a7d49b76d0458.jpg", - "response": "The image depicts a group of men dressed in green and yellow snowsuits and hard hats, working together to clear snow and ice off of power lines. They are standing in a snowy field, surrounded by snow-covered trees and power lines. The sky above them is filled with snowflakes.", - "id": 28366 - }, - { - "image_path": "G:\\images\\combined\\002366_jpg.rf.62c51faa6489f39445ab65549d9fe1cb.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 28367 - }, - { - "image_path": "G:\\images\\combined\\002367_jpg.rf.e817d1fbe84474376e756daefb26990e.jpg", - "response": "A construction site with multiple workers.", - "id": 28368 - }, - { - "image_path": "G:\\images\\combined\\002368_jpg.rf.36d4bb59d18d5436484da6675fb3a806.jpg", - "response": "A worker in a dangerous job setting.", - "id": 28369 - }, - { - "image_path": "G:\\images\\combined\\002370_jpg.rf.748308a6941c1f27916feae114b11218.jpg", - "response": "A group of people working on a construction site.", - "id": 28370 - }, - { - "image_path": "G:\\images\\combined\\002371_jpg.rf.42dc9b4ef430dd125e662f4b666c3169.jpg", - "response": "A man and woman are talking to a man in a construction hat while a third man looks on. They are all crouched down and the man in the orange vest and hat is holding a plan. They are in a large, empty room with white walls and concrete floors. There is a large window on the left wall and extension cords are on the floor.", - "id": 28371 - }, - { - "image_path": "G:\\images\\combined\\002373_jpg.rf.152a5a944d668aaa00f3bdbef4ab84c0.jpg", - "response": "A construction site with multiple workers.", - "id": 28372 - }, - { - "image_path": "G:\\images\\combined\\002374_jpg.rf.f6836987376242de896537aa0980d0e0.jpg", - "response": "A pair of workers in yellow jackets and hard hats are standing on a bridge, working on the train tracks below. They are wearing yellow jackets and hard hats. The sky is blue with a few clouds. To the left of the bridge is a hill with trees.", - "id": 28373 - }, - { - "image_path": "G:\\images\\combined\\002375_jpg.rf.c3990ab233ad0e075a61d9d6d7717e73.jpg", - "response": "In the image there is a man wearing a red helmet and work clothes standing in a room with a wall on his right and a large white cabinet on his left. The man is looking at a white screen which is part of the large cabinet. The cabinet has several knobs and buttons on it. In the background there are two other people, one in the middle of the room and the other on the left side of the image.", - "id": 28374 - }, - { - "image_path": "G:\\images\\combined\\002376_jpg.rf.796f9b04d642258d7c6852e841253b87.jpg", - "response": "A group of people walking across a construction site.", - "id": 28375 - }, - { - "image_path": "G:\\images\\combined\\002377_jpg.rf.703fb38eb289935838cdd7ac10378a54.jpg", - "response": "A man wearing a blue shirt and a blue hat is working on an electrical device outdoors. He is kneeling down and has his hands on the device. The device has many wires and metal bars.", - "id": 28376 - }, - { - "image_path": "G:\\images\\combined\\002378_jpg.rf.d104bd331efe1e1f4969400a4f276009.jpg", - "response": "A worker in a hard hat stands in front of a sign that reads \"\u79fb\u52a8\u5438\u6c27\u8f66\" (\u79fb\u52a8\u5438\u6c27\u8f66) at a construction site in Xi'an, Shaanxi province, China, 26 November 2015.", - "id": 28377 - }, - { - "image_path": "G:\\images\\combined\\002379_jpg.rf.1eb289f420c1444ad1a4b72e4c764bd3.jpg", - "response": "A group of men in uniforms working on power lines.", - "id": 28378 - }, - { - "image_path": "G:\\images\\combined\\002381_jpg.rf.7ab87f3479c9cdf9c17ccd28651ee788.jpg", - "response": "A group of people in blue work clothes and blue safety helmets are standing around a table full of metal bars.", - "id": 28379 - }, - { - "image_path": "G:\\images\\combined\\002383_jpg.rf.4cf938286bb92486e88e9c2a855ac80f.jpg", - "response": "A man sitting on a yellow table eating a sandwich.", - "id": 28380 - }, - { - "image_path": "G:\\images\\combined\\002385_jpg.rf.8d552b213122d61368134a182daea66b.jpg", - "response": "The image shows three men standing in front of a construction site. They are all dressed in green uniforms and red helmets. The man on the left is holding a green file folder. In front of the men is a red metal box with a white sign that says \"\"Waste oil tank\"\". To the right of the men is a brown building with a white roof, and a large green construction site.", - "id": 28381 - }, - { - "image_path": "G:\\images\\combined\\002386_jpg.rf.288ddd1442095c2f4932f518929ba01e.jpg", - "response": "An image of a construction worker in a orange vest and yellow hard hat standing in front of a unfinished wall.", - "id": 28382 - }, - { - "image_path": "G:\\images\\combined\\002387_jpg.rf.0519bb940b308293be0da5a27414e5c8.jpg", - "response": "In the image there are two workers wearing blue hats and work clothes. They are working on a wire on the ground. The background is a wall and some rocks.", - "id": 28383 - }, - { - "image_path": "G:\\images\\combined\\002388_jpg.rf.b60b378ad4c7c9ce2e8c12670850be4f.jpg", - "response": "A group of rescue workers in orange uniforms stand in a pile of rubble. They are wearing hard hats and some have helmets on. They are standing on a pile of debris and looking at the remains of a building that is mostly gone. There are also many pieces of wood and debris scattered around them.", - "id": 28384 - }, - { - "image_path": "G:\\images\\combined\\002389_jpg.rf.c86fa6236ec4f554716117c1fec1ae81.jpg", - "response": "The image shows a group of men working on a construction site in a tunnel. They are wearing hard hats and are working on a train track.", - "id": 28385 - }, - { - "image_path": "G:\\images\\combined\\002391_jpg.rf.53fa064cd56b7a0aa2e53143b2251519.jpg", - "response": "The image shows a group of six people carrying a bamboo crossbar with a large white container on it. They are walking through a river, with one person at the far left, two people in the middle, and three people on the right. All of them are wearing hard hats.", - "id": 28386 - }, - { - "image_path": "G:\\images\\combined\\002394_jpg.rf.a2ed2028f5e8d0929132f9f1138c0e1e.jpg", - "response": "A man wearing a yellow hard hat and work clothes is standing on a roof, installing solar panels.", - "id": 28387 - }, - { - "image_path": "G:\\images\\combined\\002395_jpg.rf.dc710397ac0bd1dec64bd9f2737524fa.jpg", - "response": "a group of men wearing hard hats", - "id": 28388 - }, - { - "image_path": "G:\\images\\combined\\002396_jpg.rf.a7a3a05854c9c166f49b138bea290c8b.jpg", - "response": " Workers(248,13),(467,995)(843,11),(997,994) are seen attempting to repair a power transformer at the Phnom Penh electricity substation on Monivong Boulevard in 2012.", - "id": 28389 - }, - { - "image_path": "G:\\images\\combined\\002397_jpg.rf.080c4b4c098df615f1d474d5b8187fb7.jpg", - "response": "a man is on a power pole", - "id": 28390 - }, - { - "image_path": "G:\\images\\combined\\002398_jpg.rf.48fa71e0ce43d6e26a39021c3c6983de.jpg", - "response": "a group of men standing around a construction site", - "id": 28391 - }, - { - "image_path": "G:\\images\\combined\\002399_jpg.rf.4438c671e11b861005497b2871d241ed.jpg", - "response": "A group of people walking in front of a construction site.", - "id": 28392 - }, - { - "image_path": "G:\\images\\combined\\002400_jpg.rf.dbb36aa851a4f3182f9e2a5fdd433c4b.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 28393 - }, - { - "image_path": "G:\\images\\combined\\002401_jpg.rf.3b47f6b0240a7d2e7c73871b84194e8e.jpg", - "response": "The image shows a group of construction workers working on a bridge that is currently under construction. The bridge is located near the ocean, and in the background, there is a lighthouse. The workers are engaged in various tasks, such as laying rebar, welding, and pouring concrete. Some of them are wearing hard hats and safety vests. The bridge appears to be made of steel, and the workers are working on different parts of it.", - "id": 28394 - }, - { - "image_path": "G:\\images\\combined\\002402_jpg.rf.f6b362e0698651ff5e7f79fc26ae5707.jpg", - "response": "A man wearing a blue hard hat and sunglasses stands in front of a building under construction. He is holding a long piece of wood and a level.", - "id": 28395 - }, - { - "image_path": "G:\\images\\combined\\002403_jpg.rf.1fca09011810c6d88e4f244eb4b57cb7.jpg", - "response": "A group of three workers in blue uniforms and hard hats are working on a large piece of equipment. They are all focused on the task at hand. One worker is using a large hammer to remove a piece of equipment. Another worker is using a large wrench to loosen a bolt. The third worker is holding the equipment in place.", - "id": 28396 - }, - { - "image_path": "G:\\images\\combined\\002405_jpg.rf.df7fc2b5cbe507585e6be8004ef06960.jpg", - "response": "A group of men in white t-shirts and grey slacks are walking through a construction site. Some of the men are wearing hard hats. The site is unfinished and has no walls and only a floor of dirt.", - "id": 28397 - }, - { - "image_path": "G:\\images\\combined\\002406_jpg.rf.292124b327771f51af605647b53c8910.jpg", - "response": "A man wearing a yellow hard hat and safety glasses is holding a clipboard and a device with a red and black wire. He is looking down and appears to be focused on what he is doing. He is wearing a yellow hard hat and safety glasses. The background is dark and there is a red light shining on the man and the object he is holding.", - "id": 28398 - }, - { - "image_path": "G:\\images\\combined\\002407_jpg.rf.a6d8af43ea48c35ebe9b2142eb6aee0b.jpg", - "response": "A man wearing a yellow hard hat and work clothes is sitting on a ladder. He is working on a piece of wood or metal with a drill. He is wearing white gloves and appears to be focused on his task. The wall behind him is white and there are other ladders in the background.", - "id": 28399 - }, - { - "image_path": "G:\\images\\combined\\002408_jpg.rf.9d3f65341b0e18a39207455f7a26f8ed.jpg", - "response": "The image shows two workers in blue hard hats and white gloves, one on the left and one on the right, carrying a large spool of wire in between them. They are walking up a snowy hillside with trees covered in snow behind them.", - "id": 28400 - }, - { - "image_path": "G:\\images\\combined\\002409_jpg.rf.3f4cbe7a97561fefd0e14164041fceee.jpg", - "response": "A construction worker is seen in the image pushing a handcart at a construction site. The sky is blue with clouds. In the background, there are some buildings.", - "id": 28401 - }, - { - "image_path": "G:\\images\\combined\\002410_jpg.rf.59e04a45e41f3317e7e8704cf5f1148f.jpg", - "response": "a group of people in orange jumpsuits", - "id": 28402 - }, - { - "image_path": "G:\\images\\combined\\002411_jpg.rf.a48a047896e39e014ab3b2b52ae25593.jpg", - "response": "A man wearing a yellow hard hat and carrying a red flag with the Chinese Communist Party logo on it.", - "id": 28403 - }, - { - "image_path": "G:\\images\\combined\\002412_jpg.rf.2f990be7a6a0c6397a8ebae1fa231e10.jpg", - "response": "The image shows a group of firefighters in orange uniforms working to rescue a person trapped under a large piece of concrete. The concrete is resting on the person, who is located near the bottom of the image. The firefighters are standing around the concrete and the person, with some of them working on removing the concrete while others look on. The scene has a sense of urgency and teamwork.", - "id": 28404 - }, - { - "image_path": "G:\\images\\combined\\002415_jpg.rf.5d49381b13bf1846acd3a0f8d7246eba.jpg", - "response": "In the image there is a person wearing a hard hat and coveralls, squatting down and working with some metal. They are creating a lot of sparks from the metal work they are doing. The sparks are flying all around them and there is a pile of them on the ground to the left of the person. The person are also holding a metal rod in their hand. The person is also casting a shadow on the ground.", - "id": 28405 - }, - { - "image_path": "G:\\images\\combined\\002416_jpg.rf.8d12f2e36ce1bd8bb34f651b6172f70e.jpg", - "response": "The image shows three workers in blue uniforms and safety gear working on a power line. They are standing on top of a metal structure, which appears to be a power pole or transformer. The workers are focused on their task, and one of them is holding a tool. The sky is blue and cloudless, and there are a few tree branches near the power line.", - "id": 28406 - }, - { - "image_path": "G:\\images\\combined\\002417_jpg.rf.6ff5d4af183e090b8f3692aea743d8e7.jpg", - "response": "A group of men working on a flooded area.", - "id": 28407 - }, - { - "image_path": "G:\\images\\combined\\002418_jpg.rf.bd966faff4de8c88afe174f0cb0469f9.jpg", - "response": "A man in a suit and construction worker point at a building under construction.", - "id": 28408 - }, - { - "image_path": "G:\\images\\combined\\002420_jpg.rf.b86aaf89153790bdbdcb50a8ff70a051.jpg", - "response": "Three people in suits and hard hats are talking to each other.", - "id": 28409 - }, - { - "image_path": "G:\\images\\combined\\002421_jpg.rf.1b01c908927a53ef7b96a21d4a587880.jpg", - "response": "a group of people working on a brick wall", - "id": 28410 - }, - { - "image_path": "G:\\images\\combined\\002422_jpg.rf.6cbb8006dbbc1d6ae9cb1e1fc99a09f5.jpg", - "response": "A group of construction workers are sitting on top of a brick wall that they are building. They are wearing yellow hard hats and are eating their lunches. One man is eating a bowl of food, while another man is eating a plate of food. A third man is eating a carton of food. They are all sitting on top of a brick wall that they are building.", - "id": 28411 - }, - { - "image_path": "G:\\images\\combined\\002423_jpg.rf.071cd16f7760d366298b6ab4d3b16526.jpg", - "response": "In the image there are two men standing in the desert wearing hard hats. They are standing next to a large metal cylinder that is filled with black sand. The sand is spilling out of the cylinder and there is a large shadow being cast by the cylinder. The sky is blue and there are no clouds in the sky.", - "id": 28412 - }, - { - "image_path": "G:\\images\\combined\\002424_jpg.rf.9876dd6ecb1b65cebc6db58b924321f8.jpg", - "response": "The image shows a group of four men dressed in blue and yellow hard hats standing outside a brick building. The men are dressed in different colored hard hats and are looking at papers in their hands. The building in the background is white and yellow and is located on the left side of the image. In front of the building, there is a pile of grey stones. To the right of the group of men, there is a large brown gate. The sky in the background is light blue with white clouds.", - "id": 28413 - }, - { - "image_path": "G:\\images\\combined\\002425_jpg.rf.3acbd7924e3625ff1afad25fc8bca3a1.jpg", - "response": "The image shows a nighttime construction scene of a worker on the right side of the image welding a large metal object to a concrete wall. The worker is wearing a yellow helmet and dark clothing. Another worker, who is crouching lower, is using a white substance to fill in a crack in the concrete. The road is visible in the background, with a car and a truck driving away. The sky is pitch black and there are no other people visible in the image.", - "id": 28414 - }, - { - "image_path": "G:\\images\\combined\\002426_jpg.rf.2884c4a70766179ff3132e98093fb455.jpg", - "response": "The image shows two workers in a dimly lit, brick\u96a7\u9053. They are wearing yellow hard hats and high visibility vests. One worker is on the left, and is focused on a task at hand, holding a yellow hose in his hand. The other worker is on the right, and is leaning over to operate a yellow control. The tunnel has a metal framework above them, and debris on the floor.", - "id": 28415 - }, - { - "image_path": "G:\\images\\combined\\002427_jpg.rf.49aaa638c56b605f60b2a784b2a976db.jpg", - "response": "A train is on the tracks and three men are working on a platform above the train.", - "id": 28416 - }, - { - "image_path": "G:\\images\\combined\\002428_jpg.rf.0a90dc91f33c4e23585aba6c39af10ce.jpg", - "response": " People(466,469),(658,697)(392,399),(493,611)(240,384),(323,554)(830,436),(965,821) climbing on a rock(1,5),(995,813)", - "id": 28417 - }, - { - "image_path": "G:\\images\\combined\\002429_jpg.rf.5ffb548f67e3b50a23992800561a2d41.jpg", - "response": "Three men in hard hats and safety vests talking in a room under construction.", - "id": 28418 - }, - { - "image_path": "G:\\images\\combined\\002430_jpg.rf.b4a5e73c9b770d4cd817f620cde24e80.jpg", - "response": "A couple of men working on a drilling machine.", - "id": 28419 - }, - { - "image_path": "G:\\images\\combined\\002431_jpg.rf.2d0b96a065dba8144124b36d29271146.jpg", - "response": "a group of men standing around a pile of rubble", - "id": 28420 - }, - { - "image_path": "G:\\images\\combined\\002432_jpg.rf.97806fd107c34b55daf9405a7bc200f0.jpg", - "response": "A construction worker wearing a bright orange shirt and a red hard hat smiles at the camera. He is wearing work gloves and has a tool in his hand. He is standing in front of a building under construction.", - "id": 28421 - }, - { - "image_path": "G:\\images\\combined\\002434_jpg.rf.faf100bbaf14bfddb44b5d0d220fd118.jpg", - "response": "In the image two workers are seen in a factory. One of them is wearing yellow helmet and is bending over to do some work. Another worker is wearing a red helmet. They are working on a large pipe. The factory has a white ceiling and the walls are white. There is a large window in the background. The factory floor is grey. There is a large gauge on the left and a piece of paper with writing on it on the right. There is a chair in the background. The factory looks under construction.", - "id": 28422 - }, - { - "image_path": "G:\\images\\combined\\002435_jpg.rf.f605522196d22b10fe723af4e2e2cdd3.jpg", - "response": " Miners(354,153),(501,619)(425,7),(567,338)(49,222),(338,995) work at night to extract coal from a mine in the city of Shenyang, Liaoning province, China.", - "id": 28423 - }, - { - "image_path": "G:\\images\\combined\\002436_jpg.rf.b0b525cc16f4c50b0a457cf31d0dbe4a.jpg", - "response": "A construction worker who fell into a manhole at a construction site in Xingtan, Nanning, was rescued by firefighters on the afternoon of June 10, 2015. The man was working at a construction site when he accidentally fell into a manhole. When he was rescued, he was still alive, with only minor injuries. He was taken to a hospital for treatment.", - "id": 28424 - }, - { - "image_path": "G:\\images\\combined\\002437_jpg.rf.7ae62037979b4136dce2499cd8322cc4.jpg", - "response": "In the image two workers are repairing a power line at night. They are wearing blue uniforms and are on a ladder. They are repairing a power line that is tangled. There are trees in the background.", - "id": 28425 - }, - { - "image_path": "G:\\images\\combined\\002439_jpg.rf.e09e896158a3f4aae50c0b2a8e36ad45.jpg", - "response": "In the image two electrical workers are examining an electrical power station. They are both wearing blue jackets and yellow hard hats. The power station has grey metal cases and grey wires.", - "id": 28426 - }, - { - "image_path": "G:\\images\\combined\\002440_jpg.rf.802149b35d40f68a2ab26e00cb597f95.jpg", - "response": "Some workers are on scaffolding putting together a large decorative piece.", - "id": 28427 - }, - { - "image_path": "G:\\images\\combined\\002441_jpg.rf.450bbd5c13220ba42112e6dc565b6758.jpg", - "response": "A man in a blue shirt and red hard hat is shaking hands with another man in a hard hat. Both men are in front of a group of other men, some of whom are also wearing hard hats. They are all standing in a construction site.", - "id": 28428 - }, - { - "image_path": "G:\\images\\combined\\002442_jpg.rf.b13735c98f61fae91e996c4c3c925e0c.jpg", - "response": "A man is working on a roof, he is on scaffolding.", - "id": 28429 - }, - { - "image_path": "G:\\images\\combined\\002443_jpg.rf.53f6a3550b58f24ed68b5611c314bf4f.jpg", - "response": " Crews(155,272),(458,997)(550,232),(751,931)(775,134),(953,923)(404,273),(572,997) work to clear snow from power lines.", - "id": 28430 - }, - { - "image_path": "G:\\images\\combined\\002444_jpg.rf.eab8d666bb34680ff258f8ae455213a8.jpg", - "response": "a man wearing a orange hard hat", - "id": 28431 - }, - { - "image_path": "G:\\images\\combined\\002445_jpg.rf.fe1e031f7fbb6d25439805b70346f7d5.jpg", - "response": "A group of men working on a large pipe.", - "id": 28432 - }, - { - "image_path": "G:\\images\\combined\\002446_jpg.rf.9d0dd5f23ad70ae945f64ae27ca66d88.jpg", - "response": "A construction worker sitting on a pile of metal rods.", - "id": 28433 - }, - { - "image_path": "G:\\images\\combined\\002447_jpg.rf.c5f5693c36d74f40c76c5b78108b9d0b.jpg", - "response": "A group of men standing around each other", - "id": 28434 - }, - { - "image_path": "G:\\images\\combined\\002448_jpg.rf.a1a5e88f6aa7996dec6d5243b9bce058.jpg", - "response": "An overhead view of a warehouse with two men in yellow vests and hard hats walking down stairs. One man is holding a cell phone to his ear. There is a forklift carrying several boxes in the background.", - "id": 28435 - }, - { - "image_path": "G:\\images\\combined\\002449_jpg.rf.353f21b187acb7fb50ed47b3a7a3f8a0.jpg", - "response": "The photo shows two workers in grey clothes and yellow helmets who are building a road. They are standing in a construction site which is located in a rural area. In the background, there is a yellow truck parked. The sky is covered by grey clouds.", - "id": 28436 - }, - { - "image_path": "G:\\images\\combined\\002450_jpg.rf.b317e3cf43d352395345425fe7964244.jpg", - "response": "A group of people climbing up a tall metal tower.", - "id": 28437 - }, - { - "image_path": "G:\\images\\combined\\002451_jpg.rf.aaa73f632242096780892a87db39aa1b.jpg", - "response": "In the image there are two men standing in front of a building under construction. They are both wearing yellow hard hats and reflective vests. The man on the left is holding a blueprint in his hand.", - "id": 28438 - }, - { - "image_path": "G:\\images\\combined\\002452a1969ae6a7.jpg", - "response": "In the image, there is a row of empty plastic cups with a logo on them that says \"Second Glass\". The cups are all clear and appear to be empty. They are lined up in a row on a blue table.", - "id": 28439 - }, - { - "image_path": "G:\\images\\combined\\002452_jpg.rf.9b88292ee6941c0e031ea4820835ded0.jpg", - "response": "In the image there are two men standing next to each other. They are both wearing hard hats. The man on the left is wearing a yellow hard hat and has a beard. The man on the right is wearing a blue hard hat and has a beard and a mustache. They are both smiling at each other. To the left of the image there is a concrete wall and behind the men there is a room that appears to be under construction.", - "id": 28440 - }, - { - "image_path": "G:\\images\\combined\\002453_jpg.rf.19f32016ab610be3b3325b8639fb0e0e.jpg", - "response": "In the image two workers are carrying a metal beam. They are both wearing blue hard hats and have their sleeves rolled up. The worker on the left has a tattoo of a dragon on his right arm. They are standing in front of a white fence that has red tape wrapped around it. There is also a pile of rope to the left of the workers.", - "id": 28441 - }, - { - "image_path": "G:\\images\\combined\\002454_jpg.rf.f89542f78dd6fd2ab49a9a82d7e3d67f.jpg", - "response": "A construction site with three men standing in the middle. Two of them are wearing red and yellow hats and black clothes. The man on the far right is wearing a yellow hat, a brown jacket and a white shirt. In the background, a grey building with a lot of pipes coming out of it. To the far right, a blue and white sign.", - "id": 28442 - }, - { - "image_path": "G:\\images\\combined\\002455_jpg.rf.2223e8018ea7928e44182b5faa0866cf.jpg", - "response": "A group of men working on fixing a tree that fell on a power line.", - "id": 28443 - }, - { - "image_path": "G:\\images\\combined\\002458_jpg.rf.09b521a0f3fe7bbf3203d1376eb7c0a6.jpg", - "response": "A man in a camo shirt and a hard hat is suspended in the air while holding onto a power line.", - "id": 28444 - }, - { - "image_path": "G:\\images\\combined\\002459_jpg.rf.8793523257447f40b1bfa5c6c90d81f6.jpg", - "response": "A group of workers are working on power lines.", - "id": 28445 - }, - { - "image_path": "G:\\images\\combined\\002460_jpg.rf.92db33fc2e900ddab36cc99fc1719efb.jpg", - "response": "A group of workers are using sledgehammers to break up a concrete surface.", - "id": 28446 - }, - { - "image_path": "G:\\images\\combined\\002461_jpg.rf.716e925e9a71ef1b09fc057655f729d2.jpg", - "response": "The image shows Kim Jong-un, the young and relatively unknown heir to the North Korean throne, laughing with a group of men standing around him. He is in the center of the group, wearing a black suit and tie. The men surrounding him are all wearing suits as well. They are standing in front of a building, which appears to be a factory, and there is a large pipe in the background. The photo is taken from a three-quarter angle, looking down at the group.", - "id": 28447 - }, - { - "image_path": "G:\\images\\combined\\002462_jpg.rf.7582fc55e36b166910518dd2518bef04.jpg", - "response": "In the image there are two people working at a construction site. They are wearing yellow and green vests for safety. The person on the left is crouching down and holding a white\u94f2. The person on the right is standing and holding a pink tool. There is a large grey pipe in the background. The ground is a mix of brown dirt and white sand.", - "id": 28448 - }, - { - "image_path": "G:\\images\\combined\\002463_jpg.rf.813c45f93fd5fcf6569f689689bfa07e.jpg", - "response": "Rescue workers in China are seen carrying a child in a picture provided by Xinhua News. The picture is taken in a construction site in Xi'an, Shaanxi Province, where a 3 year old boy was rescued after being trapped in a construction site for 18 hours. The boy, named Little Peng, was found alive under a pile of bricks and debris, and was taken to a hospital for treatment. The rescue operation involved over 100 rescue workers and took more than 12 hours to complete.", - "id": 28449 - }, - { - "image_path": "G:\\images\\combined\\0024646120c939de.jpg", - "response": "A poster for the Humphrey Bogart movie Deadline U.S.A.", - "id": 28450 - }, - { - "image_path": "G:\\images\\combined\\002464_jpg.rf.c52ce3ae9d2541e8a8e2747041856380.jpg", - "response": "A construction worker standing underneath a yellow crane at a building site.", - "id": 28451 - }, - { - "image_path": "G:\\images\\combined\\002465_jpg.rf.2d61ddbb206afcfa10736f541ebe9312.jpg", - "response": "The image shows a group of people standing around a stone structure that looks like a tomb. The tomb is located in a field and is covered in dirt. The tomb is shaped like a rectangular prism and is made of grey stone. The top of the tomb is covered with a large stone slab that is being removed by a group of people who are using shovels to dig around the sides of the tomb. The people are wearing hard hats and one of them is holding a shovel.", - "id": 28452 - }, - { - "image_path": "G:\\images\\combined\\002466_jpg.rf.878abae3dc118bb48ff4e4fa4966e2b6.jpg", - "response": "A group of men walking down a street.", - "id": 28453 - }, - { - "image_path": "G:\\images\\combined\\002467_jpg.rf.7d199de9506b8bd540545d92ba071a90.jpg", - "response": "In the image there is a group of men standing in front of a truck. Some of them are wearing ties and suits, while others are wearing hard hats and work clothes. The man in the far left is wearing a green hard hat, the man second to his left is wearing a yellow hard hat, the man third to his left is wearing a white hard hat, and the man in the far right is wearing a orange hard hat.", - "id": 28454 - }, - { - "image_path": "G:\\images\\combined\\002469_jpg.rf.53c2781e267160eb013a2a2711921525.jpg", - "response": "A group of people working on a building.", - "id": 28455 - }, - { - "image_path": "G:\\images\\combined\\002470_jpg.rf.f3cc78d38c4682c7ed47d22d419d0540.jpg", - "response": "The image shows a group of rescue workers standing next to a red fire truck. The fire truck is parked on the right side of the image, near the center, and appears to be a large vehicle with a ladder on the side. The workers are standing in front of the truck, facing the camera, and appear to be wearing uniforms. They are positioned close to the truck, with some of them standing directly in front of it. The workers are wearing uniforms, which may indicate that they are part of a professional rescue team.", - "id": 28456 - }, - { - "image_path": "G:\\images\\combined\\002472_jpg.rf.d716f5fb30f55c9c239cda53808d0e1b.jpg", - "response": "A group of men in business clothes are standing in a field. They are all wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a brown field and a body of water. There is also a forest in the distance.", - "id": 28457 - }, - { - "image_path": "G:\\images\\combined\\002473_jpg.rf.585d49c019ab2e50f3317e9e6139a04c.jpg", - "response": "a group of men standing around each other", - "id": 28458 - }, - { - "image_path": "G:\\images\\combined\\002474_jpg.rf.47e5682b15438f5f652ee41907c3d37b.jpg", - "response": "A construction site with a man standing in front of a yellow excavator.", - "id": 28459 - }, - { - "image_path": "G:\\images\\combined\\002475_jpg.rf.8cadf9e2fd088ef5080f6cfb22dde6a0.jpg", - "response": "A worker is on a ladder, fixing something on the wall. He is wearing a blue helmet and a black shirt. The sky is blue with clouds. There are two tall green trees in the background. Some ruins of a house can be seen in the picture, and debris on the ground.", - "id": 28460 - }, - { - "image_path": "G:\\images\\combined\\002476_jpg.rf.00b13076e297c757efea2b4e4957032c.jpg", - "response": "A man and a woman wearing hard hats and safety vests.", - "id": 28461 - }, - { - "image_path": "G:\\images\\combined\\002478_jpg.rf.882f0f8a5c3c2995422d4d6f65659e97.jpg", - "response": "Two construction workers(278,83),(703,721)(650,5),(996,996) in helmets(355,84),(518,257)(720,3),(996,274) and work clothes(657,263),(997,996)(278,216),(703,722) are shoveling dirt into a hole filled with water.", - "id": 28462 - }, - { - "image_path": "G:\\images\\combined\\002479_jpg.rf.831e99f8f193a7694a4036f7a4c5ec52.jpg", - "response": "A construction crew working on some piping.", - "id": 28463 - }, - { - "image_path": "G:\\images\\combined\\00247a79c7cb58a2.jpg", - "response": "The image features a young man wearing sunglasses and a backwards hat. He is staring directly at the camera with a serious expression. The sunglasses have a dark green frame and the man's lips are slightly parted. He has a small mole above his lip and a dimple in his chin. The man's skin is tan and he has a slight beard growth. The image is heavily edited with the words \"Trap Trap\" written in white at the bottom. The background is a collage of red and pink plant imagery.", - "id": 28464 - }, - { - "image_path": "G:\\images\\combined\\002480_jpg.rf.aa9306ad6dc86fdf326b9b87b9097b3b.jpg", - "response": "A construction site with two workers.", - "id": 28465 - }, - { - "image_path": "G:\\images\\combined\\002481_jpg.rf.78e3858100f0fdfe4a1f9d7b354aac7f.jpg", - "response": "An electrician fixing an electrical wire on the roof of a house.", - "id": 28466 - }, - { - "image_path": "G:\\images\\combined\\002482_jpg.rf.c6fa9191ed0dbbea5a859c5a5404f2e4.jpg", - "response": "In the image there are three people(253,413),(452,889)(712,228),(913,890)(505,199),(660,673) working on a project. They are in a room with white walls and floor. There is a large hole(418,776),(638,876) in the floor and several pipes sticking out of the ground. There is a orange hard hat(539,197),(599,259) on the left side of the image and a blue one on the right. There is also a green bucket(487,562),(566,693) on the left side of the image and a yellow rope(19,418),(173,965) on the right side.", - "id": 28467 - }, - { - "image_path": "G:\\images\\combined\\002484_jpg.rf.a7756723418f4cfc255dbc174401a9ac.jpg", - "response": "A group of people sitting around a table.", - "id": 28468 - }, - { - "image_path": "G:\\images\\combined\\002485_jpg.rf.3486eb6bf84ddfeda66e5c2a54b4eed8.jpg", - "response": "a group of people looking at boxes of food", - "id": 28469 - }, - { - "image_path": "G:\\images\\combined\\002486_jpg.rf.26ac81a72f4d98892d3ae5b201761763.jpg", - "response": "A man in a blue shirt and red hat is pointing to a banner hanging on a building. The banner reads \"\u8ba4\u771f\u8d2f\u5f7b'\u5b89\u5168\u7b2c\u4e00',\u9884\u9632\u4e3a\u4e3b'\u7684\u65b9\u9488,\u6cbb\u7406\u65bd\u5de5\u5b89\u5168\u9690\u60a3\" in black and red characters. The man is wearing a hard hat. Another man in a white shirt is holding a fire extinguisher. A third man is wearing a pink shirt. There is a white truck parked in front of the building.", - "id": 28470 - }, - { - "image_path": "G:\\images\\combined\\002487_jpg.rf.69f8db6f7cde286c5041baff4d156df4.jpg", - "response": "A construction worker wearing a yellow jacket and orange hat is working on a building site. The worker is standing on a ladder on the right hand side of the image, which is a red brick wall. The ladder is attached to a steel beam which is passing over the worker's head. The steel beam is being held in place by the worker. The cityscape of a city is visible in the background.", - "id": 28471 - }, - { - "image_path": "G:\\images\\combined\\002489_jpg.rf.ecd2b6ca7750aef9cc556a609d7646d7.jpg", - "response": "A construction worker driving a forklift with another worker sitting on the side.", - "id": 28472 - }, - { - "image_path": "G:\\images\\combined\\002490_jpg.rf.edd3a6bdd7ea4bcb45fb06b27212d9c1.jpg", - "response": "A man in a red hard hat is measuring a wall with a level. Another man in a black shirt is standing next to him. Both men are wearing hard hats.", - "id": 28473 - }, - { - "image_path": "G:\\images\\combined\\002491_jpg.rf.8a49e829e2434d6448b531cc114573af.jpg", - "response": "A group of men in hard hats stand in a construction site. There is a large building under construction with scaffolding all around it. There is also a pile of wood in the foreground.", - "id": 28474 - }, - { - "image_path": "G:\\images\\combined\\002492_jpg.rf.4ef178c3be64493b5947f891674c9b25.jpg", - "response": "A picture of a man working on power lines.", - "id": 28475 - }, - { - "image_path": "G:\\images\\combined\\002493_jpg.rf.cc127f71ec610634ef90f049a2635fa4.jpg", - "response": "The image shows a group of people walking through a tunnel. They are wearing hard hats and some are carrying tools. The tunnel is white and has a concrete wall. There is a yellow railing on the left side of the tunnel. On the right side, there is a red pipe. The tunnel is filled with light.", - "id": 28476 - }, - { - "image_path": "G:\\images\\combined\\002495_jpg.rf.6ebc615f7dffaf3554ea07a39a822afc.jpg", - "response": "A group of people standing around a table with a red table cloth.", - "id": 28477 - }, - { - "image_path": "G:\\images\\combined\\002496_jpg.rf.b614a7c38dcdb12f6e2c71c0cad4a86a.jpg", - "response": "A couple of men working on a ship or large metal structure.", - "id": 28478 - }, - { - "image_path": "G:\\images\\combined\\002498_jpg.rf.65ccb417ada758e3a3646ee5d5f7580c.jpg", - "response": "The image shows two construction workers on a roof, pouring concrete. One worker is holding a long tool with a wooden handle, and the other worker is holding a large tool with a metal handle. They are both wearing yellow helmets and grey uniforms. The sky is grey and overcast, and there is a building in the background with a black roof. There are also rebar grids on the ground.", - "id": 28479 - }, - { - "image_path": "G:\\images\\combined\\002499_jpg.rf.a0e4fb47fd187035fc9c48246b59bff8.jpg", - "response": "a group of men standing around a construction site", - "id": 28480 - }, - { - "image_path": "G:\\images\\combined\\0024fa464b466993.jpg", - "response": "a picture of a man with a mustache and a suit and tie", - "id": 28481 - }, - { - "image_path": "G:\\images\\combined\\002500_jpg.rf.cc35961ea8763cb41291f841d33fb66f.jpg", - "response": "A group of people standing around a construction site.", - "id": 28482 - }, - { - "image_path": "G:\\images\\combined\\002501_jpg.rf.ee90935d3c8e3a35479204912761d387.jpg", - "response": "An orange truck is driving through a dark tunnel.", - "id": 28483 - }, - { - "image_path": "G:\\images\\combined\\002503_jpg.rf.812bbc014c8e01f674f7d9a741fa087b.jpg", - "response": "A man in an orange shirt and a hard hat is standing in front of a sunset. He is looking into the distance, possibly contemplating or observing something. The sky is a mix of orange, red, and purple hues, and there are clouds in the sky. The man is wearing a pair of sunglasses, which are placed on top of his head. He is also wearing a helmet, which is common safety gear for workers in certain industries.", - "id": 28484 - }, - { - "image_path": "G:\\images\\combined\\002504_jpg.rf.4bfbd5a572fa8119b8c125e41d8bfc20.jpg", - "response": "A worker in a white Nike shirt and a red hard hat reads a piece of paper. The paper is yellow and titled \"\u5b89\u5168\u5e3d\u4f7f\u7528\u53ca\u4fdd\u517b\u624b\u518c\". The worker is standing in front of a pile of wood.", - "id": 28485 - }, - { - "image_path": "G:\\images\\combined\\002505_jpg.rf.b9e6cb7447fe6240ced8e42cf805db77.jpg", - "response": "In the image, there are two people dressed in orange, wearing hard hats and standing in front of a large excavator. The excavator is in front of a large rock and appears to be in the process of digging up some material. There is also a smaller excavator visible in the background on the left side of the image.", - "id": 28486 - }, - { - "image_path": "G:\\images\\combined\\002506_jpg.rf.a331113284784871bfd997152fdbcacd.jpg", - "response": "A group of men in grey and orange uniforms are standing on a field of golden grass and brown straw. They are working on an electrical box that is on a metal platform that is on a pole. The men are wearing hard hats and the uniforms have grey hats on their backs. Some of the men are also wearing black gloves. There are many power lines around the men and the platform they are standing on.", - "id": 28487 - }, - { - "image_path": "G:\\images\\combined\\002507_jpg.rf.01794c66cbbe270fcc37c30d5b78f5b1.jpg", - "response": "A man in a blue uniform and orange hard hat is working on a roof. He is laying red clay tiles and is holding a trowel. The sky is blue with a few clouds.", - "id": 28488 - }, - { - "image_path": "G:\\images\\combined\\002510_jpg.rf.6e010228503d632d09d85c0b6ad820c4.jpg", - "response": "The picture shows some workers in a construction site. They are building a large circular structure made of steel rebar. The workers are wearing yellow hats and uniforms. One of the workers is welding two pieces of steel together. On the left side of the picture, there is a red sign that says \"Proper use of the crane hook\". In the background, there are also two buildings.", - "id": 28489 - }, - { - "image_path": "G:\\images\\combined\\002513_jpg.rf.7b169b6524a042251a82ab58b3cf53bb.jpg", - "response": "A construction worker in a yellow hard hat and green safety vest is working on a wooden structure.", - "id": 28490 - }, - { - "image_path": "G:\\images\\combined\\002515_jpg.rf.2cb8eac381053b1983bb6f7b88886bda.jpg", - "response": "A construction worker wearing a yellow hard hat crouches down next to a large area of rebar. The worker is wearing a blue sweatshirt and blue jeans.", - "id": 28491 - }, - { - "image_path": "G:\\images\\combined\\002516_jpg.rf.cd6a60bf59fa7a0f13627d92574c45f6.jpg", - "response": "A soldier points to a sign above a door.", - "id": 28492 - }, - { - "image_path": "G:\\images\\combined\\002517_jpg.rf.c58954a1cddadf7e837d7ca219b23ee9.jpg", - "response": "A group of people standing around a red fire truck that is shooting out a stream of fire.", - "id": 28493 - }, - { - "image_path": "G:\\images\\combined\\002519_jpg.rf.d48b4505938b0bbffaf167450fb66fdf.jpg", - "response": "A group of people sitting at a table with a red table cloth.", - "id": 28494 - }, - { - "image_path": "G:\\images\\combined\\002520_jpg.rf.8b11a06c8ecc104545e1517cff5fe02f.jpg", - "response": "A group of men standing next to a building under construction", - "id": 28495 - }, - { - "image_path": "G:\\images\\combined\\002521_jpg.rf.691dc82f416caa834597740770c33fb2.jpg", - "response": "A man wearing a white hard hat and navy blue coveralls stands in a factory with his arms crossed. He is smiling at the camera. In the background, there is a large piece of machinery with sparks flying out of it.", - "id": 28496 - }, - { - "image_path": "G:\\images\\combined\\002523_jpg.rf.117b4ab991f4edc8b0a2dadebcbdd764.jpg", - "response": "a group of men standing around in a construction site", - "id": 28497 - }, - { - "image_path": "G:\\images\\combined\\002524_jpg.rf.69392bb9df7be7119d30e421eb16a3c6.jpg", - "response": "A man in a yellow hard hat and camouflage clothing working with a machine on a construction site.", - "id": 28498 - }, - { - "image_path": "G:\\images\\combined\\002526_jpg.rf.8e1c78685b890697a9044ed0006213f6.jpg", - "response": " A painter(12,152),(679,998) holding a roller(1,52),(193,328) in a construction site", - "id": 28499 - }, - { - "image_path": "G:\\images\\combined\\002527_jpg.rf.d09b73f4d5cedbf09035eea67e5beec4.jpg", - "response": "A group of men in grey and blue clothing stand in a room with white walls and a grey floor. They are wearing red helmets and some of them have ties. In the room, there are three red chairs, two gas cylinders, a bucket and a rope.", - "id": 28500 - }, - { - "image_path": "G:\\images\\combined\\0025288e6192dc18.jpg", - "response": "A toy train sitting on top of a table.", - "id": 28501 - }, - { - "image_path": "G:\\images\\combined\\002528_jpg.rf.e007ab701208b55d8ed13f6cd0324de5.jpg", - "response": "A man in a yellow hard hat is holding a green fire extinguisher. The extinguisher is spraying out white foam. The man is standing in front of a group of people. The group of people is standing behind a pile of wood. The pile of wood is on the ground. There are buildings in the background.", - "id": 28502 - }, - { - "image_path": "G:\\images\\combined\\002529_jpg.rf.4495a38af56671f14434a329bf053937.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 28503 - }, - { - "image_path": "G:\\images\\combined\\00252_jpg.rf.0e38b4d103bd291dbf3d6a6b8efa72c2.jpg", - "response": "An industrial worker in a hard hat and safety vest is checking inventory in a textile factory. The worker is holding a clipboard and pen. The worker is standing in front of a large stack of rolled fabric. Another worker is in the background, holding a clipboard and looking at it.", - "id": 28504 - }, - { - "image_path": "G:\\images\\combined\\002530_jpg.rf.528ba888cdd77a3fe44d9c9e7b02da27.jpg", - "response": "A man wearing a yellow hard hat and work gloves is holding a long piece of wood. He is smiling at the camera. He is wearing a blue jumpsuit and work boots. He has a yellow hard hat on and his hair is black. He is also wearing work gloves.", - "id": 28505 - }, - { - "image_path": "G:\\images\\combined\\002531_jpg.rf.4af257a77a1bb3e0e35b82005d43b8c3.jpg", - "response": "A man wearing a yellow safety helmet and a yellow vest is seen from behind. He is holding a large metal pole and is standing on a construction site. There are some buildings under construction in the background. The sky is blue with some clouds.", - "id": 28506 - }, - { - "image_path": "G:\\images\\combined\\002532_jpg.rf.989dbee4c7925e442a8970de96c4a962.jpg", - "response": "The image shows a group of people standing in front of a white bus. Some of them are wearing ties, and a few are wearing hard hats. The bus is parked on the side of the road, and in the background there is a forest.", - "id": 28507 - }, - { - "image_path": "G:\\images\\combined\\002533_jpg.rf.3383c3671db79d8c8cd13a1807819124.jpg", - "response": "A group of people working on a construction site.", - "id": 28508 - }, - { - "image_path": "G:\\images\\combined\\002534_jpg.rf.19dbb70155e3ff258dd9583dc677cf70.jpg", - "response": "In the image, three men are working on power lines. They are all wearing yellow hard hats, and the man in the center is wearing a white shirt and gray pants. The man on the left is wearing a black shirt and gray pants. The man on the right is wearing a white shirt and gray pants. In the foreground, there is a wooden pole with several wires attached to it.", - "id": 28509 - }, - { - "image_path": "G:\\images\\combined\\002535_jpg.rf.ad68b2406f361a08bc9149e6bae0735b.jpg", - "response": "A construction site with multiple people working on it.", - "id": 28510 - }, - { - "image_path": "G:\\images\\combined\\002536_jpg.rf.0c6b5f5070315e4e8a5e3ebc7dfb27d1.jpg", - "response": "A group of linemen dressed in army green with blue hard hats(545,209),(639,326)(778,312),(959,537)(175,3),(320,103) on.", - "id": 28511 - }, - { - "image_path": "G:\\images\\combined\\002537_jpg.rf.460171c2c0291b42993feafa5b485636.jpg", - "response": "A worker is on a power line in the snow.", - "id": 28512 - }, - { - "image_path": "G:\\images\\combined\\002538_jpg.rf.dbba91e2ccacd77745d888ed6ef1476f.jpg", - "response": "A worker is seen hanging from power lines in the snow.", - "id": 28513 - }, - { - "image_path": "G:\\images\\combined\\002539_jpg.rf.a87edfd700df7cd9bcb7ce0462636e42.jpg", - "response": "A construction site with two people working on it.", - "id": 28514 - }, - { - "image_path": "G:\\images\\combined\\002540_jpg.rf.75a6a218aac21ca0a682d368be32f37d.jpg", - "response": "A man wearing a hard hat and a yellow jacket stands on a construction site.", - "id": 28515 - }, - { - "image_path": "G:\\images\\combined\\002541_jpg.rf.8337cc3ffa841ecd7da0e87670a31521.jpg", - "response": "A man in a blue shirt and blue hat is working on a machine.", - "id": 28516 - }, - { - "image_path": "G:\\images\\combined\\002542_jpg.rf.432fdeb1601e56aba2535d857c7a6e4c.jpg", - "response": "A man in a red shirt and blue jeans is on the roof of a building. He is climbing over a wall. There is another man standing on the scaffolding. The sky is overcast.", - "id": 28517 - }, - { - "image_path": "G:\\images\\combined\\002543_jpg.rf.c358c8620f1b82b0217532517888f62c.jpg", - "response": "a group of people standing in a field", - "id": 28518 - }, - { - "image_path": "G:\\images\\combined\\002544_jpg.rf.be1fa16e6c0a9445b8fbadbd40791651.jpg", - "response": "A group of three people working on a construction site.", - "id": 28519 - }, - { - "image_path": "G:\\images\\combined\\002545_jpg.rf.a1cf44b3c6324961385019977acd4fc7.jpg", - "response": "The image shows a group of people standing around a large pipe that has been buried in the ground. The pipe is white and can be seen extending from the ground at the center of the image. Some people are standing on the left side of the pipe, while others are standing on the right side. Some people are also standing at the top of the image, and one person is wearing an orange vest. The ground around the pipe appears to be muddy, and there is a ladder leaning against the pipe on the right side.", - "id": 28520 - }, - { - "image_path": "G:\\images\\combined\\002546_jpg.rf.74eda60c8208d9e08d960e4566740781.jpg", - "response": "A group of three men standing in a room.", - "id": 28521 - }, - { - "image_path": "G:\\images\\combined\\002547_jpg.rf.b555d8327a52e8d2e2acc62d06c13306.jpg", - "response": "The image shows a group of people standing outside a building. There are several men in the group, some wearing ties and others wearing hard hats. The man in the center is wearing a tie and is talking on a cell phone. The other men are standing close by, listening or watching the man on the phone.", - "id": 28522 - }, - { - "image_path": "G:\\images\\combined\\002548_jpg.rf.b42a3633f04fb808df2e7d85914ce1a7.jpg", - "response": "A group of men working on a construction site.", - "id": 28523 - }, - { - "image_path": "G:\\images\\combined\\002549_jpg.rf.5a7357cdfd4647f666b4af8c7752691a.jpg", - "response": "A worker in a yellow hat and blue uniform is climbing a grey pole. The pole has a red and white sign on it. The worker is also wearing a black bag. There are green trees around the pole.", - "id": 28524 - }, - { - "image_path": "G:\\images\\combined\\00254_jpg.rf.7094f51fe3f963ac9673469c876e78d9.jpg", - "response": "In the image there are two construction workers wearing hard hats and one of them is holding a clipboard. They are standing in front of a building under construction with steel beams and scaffolding. The sky is blue and there are a few clouds.", - "id": 28525 - }, - { - "image_path": "G:\\images\\combined\\002550d790ed010c.jpg", - "response": "A fancy clock with roman numerals sits on a pole.", - "id": 28526 - }, - { - "image_path": "G:\\images\\combined\\002550_jpg.rf.c9573a66fd200c657af845387ffde7d4.jpg", - "response": "A group of people wearing hard hats are working together to move a large piece of pipe. They are all wearing different colored hard hats and some are also wearing backpacks. The pipe they are moving is white and can be seen stretching across the image. They are all working in a green rice field and there is a small house visible in the background.", - "id": 28527 - }, - { - "image_path": "G:\\images\\combined\\002551_jpg.rf.26d752a5686cb96a37f31f5f210e94a3.jpg", - "response": "A man in a yellow hard hat is using a shovel to spread concrete on a road that is being built on the side of a mountain.", - "id": 28528 - }, - { - "image_path": "G:\\images\\combined\\002552_jpg.rf.64d2eb2d1349c0c3e9f49ff4f274ede1.jpg", - "response": "A man in a blue shirt and tan pants kneeling down on a construction site.", - "id": 28529 - }, - { - "image_path": "G:\\images\\combined\\002553_jpg.rf.bbeed9fa136fd8fdb34e1a7108e30c83.jpg", - "response": "The picture shows a group of people wearing hard hats standing in a large, unfinished room. Some of the people are wearing suits and ties. A man in the center of the group is shaking hands with another man. There are a few people standing to the left of the group, and a few people standing to the right of the group. In the background, there is a door that is open. On the left side of the room, there is a yellow rope with a sign on it. On the right side of the room, there are several concrete walls. On the floor, there are some cables.", - "id": 28530 - }, - { - "image_path": "G:\\images\\combined\\002555_jpg.rf.0547036c1895b9023ac3782c87ae871a.jpg", - "response": "The image shows a group of men standing in a parking lot. They are all wearing hard hats. One man is on the left, and the man in the center is wearing a black jacket and gray pants. The man on the far right is wearing a black jacket and gray pants with a red tie. There is a fence in the background, and a car is parked behind them.", - "id": 28531 - }, - { - "image_path": "G:\\images\\combined\\002556_jpg.rf.a1e5d7b6fef30d11eaba544b89830c9e.jpg", - "response": "In the image there is a person wearing a white hard hat and white shirt standing in front of a large industrial furnace that is melting metal. The person is also wearing white overalls. There is another person in the background wearing a white hard hat and white shirt. They are both in a factory setting.", - "id": 28532 - }, - { - "image_path": "G:\\images\\combined\\002557_jpg.rf.aa8bf5b6ba335a46a13866172559dbb4.jpg", - "response": "The image shows two men standing outside in front of a large factory or construction site. Both men are wearing hard hats and are looking at a blueprint or plans. The plans are held by one of the men, who is on the left side of the image. The factory or construction site is in the background and takes up the entire right half of the image. The left half of the image is occupied by a man standing next to the other man.", - "id": 28533 - }, - { - "image_path": "G:\\images\\combined\\002558_jpg.rf.cd5ce7ec7177c97ed0540409708d7a5a.jpg", - "response": "A group of people wearing blue hard hats.", - "id": 28534 - }, - { - "image_path": "G:\\images\\combined\\002559_jpg.rf.d197e8eb416b304ca3c9afd0e6ac5f86.jpg", - "response": " Two men(64,150),(538,989)(490,98),(890,994) wearing hard hats(291,150),(448,307)(510,100),(705,283) and safety vests(578,346),(889,996)(248,402),(530,997) looking at a blueprint.", - "id": 28535 - }, - { - "image_path": "G:\\images\\combined\\002560_jpg.rf.d25f4bab6f467bdeed644576c088b0b4.jpg", - "response": "A man wearing a yellow shirt and a yellow hat with a red band around his neck.", - "id": 28536 - }, - { - "image_path": "G:\\images\\combined\\002561_jpg.rf.a9eee30ee69cc57635bfbf292718cb3a.jpg", - "response": "A pair of power workers in Guizhou, China, are seen here braving the elements to maintain power lines in a snowy mountainous area.", - "id": 28537 - }, - { - "image_path": "G:\\images\\combined\\002562_jpg.rf.e0f66efa34c25e6909b6ea850ebebde2.jpg", - "response": "In the image, two men are wearing white safety helmets and are inspecting a brick wall. The man on the left is wearing a grey shirt and is turned slightly to the left, while the man on the right is wearing a white shirt with a blue logo on the chest and is looking at the wall. The wall is made of red bricks and is visible from the waist up. There is a concrete support beam to the right of the wall and a doorway to the left of the wall.", - "id": 28538 - }, - { - "image_path": "G:\\images\\combined\\002563_jpg.rf.ecaeca7e8c7e6c3649a8761c90b48b26.jpg", - "response": "A group of three men working on a train track.", - "id": 28539 - }, - { - "image_path": "G:\\images\\combined\\002564_jpg.rf.78c6cb1d1e93670b1d0a79403d4389b1.jpg", - "response": "a group of men standing next to each other", - "id": 28540 - }, - { - "image_path": "G:\\images\\combined\\002565_jpg.rf.339a288b7948e5a423b277f19c72432a.jpg", - "response": "The image shows three men standing on scaffolding at a construction site. They are all wearing yellow safety vests and hard hats. The men are positioned at the center of the scene, and the scaffolding extends to the left and right of them. The background shows a large, unfinished building with a concrete structure.", - "id": 28541 - }, - { - "image_path": "G:\\images\\combined\\002566_jpg.rf.8407f82ca6a6c8aee99fd9cedbd61f87.jpg", - "response": "A construction worker is drinking water from a plastic bottle. He is wearing a blue hard hat and a brown uniform. He is standing in front of a building under construction. There are other workers in the background. There is a yellow ladder behind the worker drinking water. There is a crane operating in the distance.", - "id": 28542 - }, - { - "image_path": "G:\\images\\combined\\002567_jpg.rf.c0d99157763fb5b6a2608e1a2d62ddec.jpg", - "response": "A worker in a blue hard hat is looking at a laptop and a binder of papers.", - "id": 28543 - }, - { - "image_path": "G:\\images\\combined\\002568_jpg.rf.10022fc09106f06aafbfca232394c0eb.jpg", - "response": "The image shows two people standing on a construction site. They are both dressed in business attire and are wearing red hard hats. The man is on the left and the woman is on the right. They are both holding a blueprint and smiling. The blueprint is rolled up and is held in the woman's hand. The man is holding the other end of the blueprint. In the background, there is a building under construction. The sky is overcast and there are construction cranes in the distance.", - "id": 28544 - }, - { - "image_path": "G:\\images\\combined\\002569_jpg.rf.e7d5210a80eca7b367e2f48a521eff5a.jpg", - "response": "A worker at the China National Nuclear Corporation's (CNNC) Dayawan plant demonstrates the use of a high-temperature resistant glove in a dining hall on the plant site in Dayawan, south China's Hainan Province, Oct. 26, 2017. The CNNC Dayawan plant is the first nuclear power plant in China to adopt the pressurized water reactor (PWR) technology. The plant's first nuclear power unit went into commercial operation on Aug. 26, 2014, and the second unit will be put into commercial operation in 2017. The Dayawan nuclear power plant is designed with a power output of 1,350 megawatts, and it will meet the electricity demand of 30 million Chinese people. (Xinhua/Li Ziheng)", - "id": 28545 - }, - { - "image_path": "G:\\images\\combined\\002570_jpg.rf.ef0a394bec51a231d48eaf771c2de379.jpg", - "response": "The photo shows some workers in a construction site. They are all dressed in black work clothes and yellow hats. The ground is wet. In the foreground, on the left, a worker is using a tool to operate a pump, which is connected to a pipe. Another worker is standing to the right of the first one. Further back, on the left, there is a worker operating a machine that sprays liquid on the wall. Another worker is standing behind the first one. In the background, on the right, there is a wall with many square holes in it. The workers seem to be busy and focused on their tasks.", - "id": 28546 - }, - { - "image_path": "G:\\images\\combined\\002571_jpg.rf.ac0501cc4aafe1bb58ce1d28008aad96.jpg", - "response": "A group of workers in blue uniforms are working on a power line in an alleyway between two buildings. They are using ladders and pipes to access the power line.", - "id": 28547 - }, - { - "image_path": "G:\\images\\combined\\002572_jpg.rf.f5b94c47edba4bb8f6dec66926c969d4.jpg", - "response": "The image shows a construction site with several workers. There is a large concrete pipe on the ground, and a yellow crane is lifting a large piece of metal. The workers are wearing yellow helmets and are standing on a platform. In the background, there is a forest with many green trees.", - "id": 28548 - }, - { - "image_path": "G:\\images\\combined\\002573_jpg.rf.bc2ad75851c6edf97de94336a102b6d8.jpg", - "response": "The image shows a construction site with several workers. There is a large metal structure in the foreground, and a tower-like structure under construction in the background. The workers are standing on a platform, and one of them is holding a blue and pink flag. The sky is blue with clouds.", - "id": 28549 - }, - { - "image_path": "G:\\images\\combined\\002574_jpg.rf.5d764a06bf8304cc4d972c4517737643.jpg", - "response": "A group of men in suits and hard hats are walking through a dark tunnel. Some of the men are also wearing red shirts.", - "id": 28550 - }, - { - "image_path": "G:\\images\\combined\\002575_jpg.rf.67784c2171881ada890d227ae4477c83.jpg", - "response": "A group of people standing in front of a white van.", - "id": 28551 - }, - { - "image_path": "G:\\images\\combined\\002576_jpg.rf.ff3361f5174e8bb2f549831ea13d1ee7.jpg", - "response": "A construction site with two workers. One worker is on the left and is wearing camouflage pants and a white shirt. He is holding a tool in his right hand and has a white hat on. The other worker is on the right and is wearing a red hat, gray shirt, and dark gray pants. He is holding a tool in his left hand. They are on a scaffold and there is a white building behind them.", - "id": 28552 - }, - { - "image_path": "G:\\images\\combined\\002577_jpg.rf.10393a91c5a32cefe108b59332b06ce4.jpg", - "response": "In the image there is a person working on a large pipe. The person is wearing a yellow hard hat, safety glasses, and a blue work suit. They are crouching down and appear to be fixing or working on the pipe. The pipe is grey and can be seen running horizontally across the image. It is located on the right side of the image and is connected to a large brown pipe running vertically up the right side of the image. There is also a large chain attached to a hook that is hanging down. The chain can be seen running down the middle of the image. Finally, there is a large circular pipe on the left side of the image, which is also connected to the horizontal pipe.", - "id": 28553 - }, - { - "image_path": "G:\\images\\combined\\002578_jpg.rf.a4294f963ba931c3bc997f54173c0871.jpg", - "response": "Men(510,427),(636,889)(410,413),(535,958)(328,416),(423,840) standing in front of a large red crane(5,164),(662,679)", - "id": 28554 - }, - { - "image_path": "G:\\images\\combined\\002579_jpg.rf.edf8136cf6f2b826b9fdc9ac89e09d95.jpg", - "response": "Two workers in yellow helmets are repairing an power transmission line.", - "id": 28555 - }, - { - "image_path": "G:\\images\\combined\\002580_jpg.rf.dd576fad49d00ce50d7a7549d5de6a3f.jpg", - "response": "A tree has fallen across the street, and two men in blue hard hats are cutting it up with a chainsaw. One man is on the left side of the tree and the other is on the right side. They appear to be wearing black clothing and the man on the right has a beard. There is a bucket in the background on the left side of the image.", - "id": 28556 - }, - { - "image_path": "G:\\images\\combined\\002581_jpg.rf.9b1de550484c0c2fd37b7bccd7acd333.jpg", - "response": "A group of four men standing on a construction site wearing hard hats.", - "id": 28557 - }, - { - "image_path": "G:\\images\\combined\\002582_jpg.rf.c38dc4a1ea27ce10544dd03781d24929.jpg", - "response": "A construction worker in a yellow hard hat crouches on a rooftop. He is wearing a brown jumpsuit and has a hammer in his hand. He is working on a roof, which has wooden beams running across it. In the background, there are other buildings and cranes.", - "id": 28558 - }, - { - "image_path": "G:\\images\\combined\\002583_jpg.rf.e809a6fc3bdf5d8a2d580164c099034f.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is grey and white in color and has a concrete wall. In the foreground, there are two workers wearing yellow hard hats. One of the workers is on the left side of the image and is standing next to a piece of equipment. Another worker is further back in the tunnel, closer to the right side of the image.", - "id": 28559 - }, - { - "image_path": "G:\\images\\combined\\002585_jpg.rf.936e61b82a8855eb4870c80c0daac7b4.jpg", - "response": "A group of 13 people, some wearing hard hats, are posing for a photo. They are all sitting on a bench, which is made of wood and appears to be outdoors. Some people are holding small dogs, and all of the people are wearing clothing that suggests it's a cool day.", - "id": 28560 - }, - { - "image_path": "G:\\images\\combined\\002587_jpg.rf.dbeba8577eabb9893ac87cf8367919b3.jpg", - "response": "A man in a yellow hard hat is sweeping the floor of a construction site.", - "id": 28561 - }, - { - "image_path": "G:\\images\\combined\\002588_jpg.rf.9abb6f1969ec152a44da149357ba9ac4.jpg", - "response": "A group of three men in blue jump suits and hard hats are working on power lines. They are on top of a wooden power pole with several other power poles around them.", - "id": 28562 - }, - { - "image_path": "G:\\images\\combined\\002589_jpg.rf.360f5aca26c6dd44812a99bd4b1b3612.jpg", - "response": "A man wearing a hard hat and overalls is looking at a blueprint.", - "id": 28563 - }, - { - "image_path": "G:\\images\\combined\\00258c26da641378.jpg", - "response": "A large blue banner reading \"Design 2013\" is hanging on the side of a tall brick building. The building has many windows and features decorative elements such as circular stone plaques. There is a street lamp attached to the building and a few trees visible in the background.", - "id": 28564 - }, - { - "image_path": "G:\\images\\combined\\002590_jpg.rf.b84e42791346fcade66d8da782c766d1.jpg", - "response": "In the image there are three people working on a construction site. They are wearing yellow hats and are standing near a large machine. The sky is overcast.", - "id": 28565 - }, - { - "image_path": "G:\\images\\combined\\00259130671bd32b.jpg", - "response": "A large clock tower with roman numerals sits in front of a store.", - "id": 28566 - }, - { - "image_path": "G:\\images\\combined\\002591_jpg.rf.2b2d9ff0d9311d6cc8378d2ae234a175.jpg", - "response": "a group of people standing in a street", - "id": 28567 - }, - { - "image_path": "G:\\images\\combined\\002593_jpg.rf.27b04bef7e1b2fbb7d9c8a4332b54d9f.jpg", - "response": "In the image, two workers are seen wearing orange and yellow vests and helmets. They are climbing up a cliff using a rope. The cliff is above a river and the workers are wearing gloves for better grip. There is a truck visible in the background.", - "id": 28568 - }, - { - "image_path": "G:\\images\\combined\\002594_jpg.rf.0df3d2edd6d6f0b6ad55bd117e215f53.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left and is wearing a blue shirt and is holding a large rock. The other worker is on the right and is wearing a yellow helmet. They are both standing in a pit filled with dark brown mud. There are two yellow pipes running across the top of the pit and a white pipe running across the top of the pit on the left. A yellow hose is running across the top of the pit on the right. In the background, there is a white truck with a yellow stripe on the far left.", - "id": 28569 - }, - { - "image_path": "G:\\images\\combined\\002595_jpg.rf.4a4cb89e9f5271a42c87c114c54a5e0b.jpg", - "response": "The image shows a group of workers in orange and yellow uniforms and hard hats, working on a power pole or transformer in an outdoor setting. There are several workers in the scene, with some standing on ladders or the power pole itself, and others working on the equipment. The workers are spread out around the pole or transformer, with some working on the top, middle, and bottom sections. The equipment they are working on is electrical in nature, with many wires and connections visible. The scene is set in an open area with grass and power lines in the background.", - "id": 28570 - }, - { - "image_path": "G:\\images\\combined\\002596_jpg.rf.6f5d5cbd5b5c9114ce26692343abc8e2.jpg", - "response": "A group of people working on a construction site.", - "id": 28571 - }, - { - "image_path": "G:\\images\\combined\\002597_jpg.rf.ddb3f66d11e2c3fb7f8c51f7eacc4668.jpg", - "response": "Three men in construction gear are looking at a blueprint. One man is holding the blueprint and is wearing a yellow safety vest and a yellow hard hat. Another man is wearing a green safety vest and a blue hard hat. The third man is on the right and is wearing a yellow safety vest and a yellow hard hat. He is holding a phone and appears to be talking. The men are standing in front of a window and there are construction beams visible in the background.", - "id": 28572 - }, - { - "image_path": "G:\\images\\combined\\002598_jpg.rf.e0b3fcbb02ac319b96e910c1b823869d.jpg", - "response": "a man in a suit is handing a red and white cardboard sign to another man", - "id": 28573 - }, - { - "image_path": "G:\\images\\combined\\002599_jpg.rf.69c147bdb52cac401cb7e487fc248e9c.jpg", - "response": "A man wearing a blue shirt and a white helmet is holding a walkie-talkie. He is standing next to a large anchor.", - "id": 28574 - }, - { - "image_path": "G:\\images\\combined\\002600_jpg.rf.a5f49e731e9463e3042f976c8eae2fac.jpg", - "response": "A group of workers are working on a construction site. They are all wearing yellow hard hats and are working on a wire fence. They are also wearing gloves and some have tools in their hands. In the background, there are more workers and a pile of rocks. There are also some buildings and trees in the distance.", - "id": 28575 - }, - { - "image_path": "G:\\images\\combined\\002601_jpg.rf.86717d3344db892e9a7d1089de7e6488.jpg", - "response": "A group of workers are fixing a blue pipe in the ground. The pipe is located in the middle of the scene and is connected to a red valve on the left. The workers are all wearing black clothing and one of them is wearing a yellow hat. The background shows a large arch-shaped structure built into the ground.", - "id": 28576 - }, - { - "image_path": "G:\\images\\combined\\002603_jpg.rf.d8d97a4006c0ac2ed2949688318fe61b.jpg", - "response": "The image shows a man in a red hard hat holding a fire extinguisher and using it to put out a fire in a large bin. The fire extinguisher is located on the left side of the image and the fire is located towards the right. The fire appears to be contained to the large bin and is not spreading to nearby objects. The fire extinguisher is being used to put out the fire and the man is standing in front of the fire.", - "id": 28577 - }, - { - "image_path": "G:\\images\\combined\\002604_jpg.rf.d3830cc949547aa8af368b38d8843a06.jpg", - "response": "In the image there is a construction site with multiple steel beams and rods being constructed. There is a worker in a red helmet working on the steel bars. There are also two other people in the image, one on the far left and another near the center, both of which are wearing hard hats.", - "id": 28578 - }, - { - "image_path": "G:\\images\\combined\\002605_jpg.rf.a420d228f5a9c81a8b6e0fc98f0231d0.jpg", - "response": "A group of three men standing in a factory.", - "id": 28579 - }, - { - "image_path": "G:\\images\\combined\\002607_jpg.rf.0815e38daf516660a9d4879409b0f4b2.jpg", - "response": "A group of people standing in front of a building.", - "id": 28580 - }, - { - "image_path": "G:\\images\\combined\\002608_jpg.rf.827b029d7f1a674be053667f17448cf4.jpg", - "response": "A man wearing a yellow hard hat and carrying a cement filled wheelbarrow.", - "id": 28581 - }, - { - "image_path": "G:\\images\\combined\\002609_jpg.rf.4df360b10fd0814f57e722ad380aa585.jpg", - "response": "In the image there is a group of rescue workers dressed in yellow and grey. They are all wearing hard hats and some are wearing gloves. They are standing in front of a large rock or stone wall. Some of them are crouching or bending over while one of them is shouting.", - "id": 28582 - }, - { - "image_path": "G:\\images\\combined\\002610_jpg.rf.e961d193267d2212551335b22bad35f1.jpg", - "response": "The image shows two workers from the China Southern Power Grid Corporation, one holding a red tool and the other holding a clipboard. They are both wearing blue hard hats and red safety gloves. The worker on the left is also wearing a red and white safety belt. They are standing next to a grey electric box.", - "id": 28583 - }, - { - "image_path": "G:\\images\\combined\\002611_jpg.rf.e8149f797fb3c9434a54e07112e8590f.jpg", - "response": "A worker on a lift repairs a power line covered with snow in this file photo.", - "id": 28584 - }, - { - "image_path": "G:\\images\\combined\\002612_jpg.rf.7b166a28692ae1ea8c9e1e24a50bacdb.jpg", - "response": "A miner(668,128),(918,996) is using a drilling machine to drill a hole in the wall of a coal mine.", - "id": 28585 - }, - { - "image_path": "G:\\images\\combined\\002613_jpg.rf.6d1ca9249a32dcda0b4630f43dc17df0.jpg", - "response": "A group of workers in orange vests and grey pants are working on a train track. They are standing on the tracks and working on the rail. There are a few people in the background wearing green and orange vests. The sky is dark and there are a few clouds. In the background, there is a mountain covered in green trees. To the right of the workers, there is a blue wall.", - "id": 28586 - }, - { - "image_path": "G:\\images\\combined\\002614_jpg.rf.3c1c5e121c8d35c4fc235d3aaf6072a0.jpg", - "response": "A group of men in green uniforms and blue hats are working on an electricity pole in a foggy area.", - "id": 28587 - }, - { - "image_path": "G:\\images\\combined\\002615_jpg.rf.84a38a40e22f95d5f43679033ae2f075.jpg", - "response": " Workers(676,40),(962,913)(108,99),(249,758)(228,73),(372,451)(117,433),(531,957)(1,251),(100,767) in hard hats and orange jackets(229,158),(371,449)(1,253),(79,758)(712,224),(938,627)(287,162),(368,441) are working on a construction site.", - "id": 28588 - }, - { - "image_path": "G:\\images\\combined\\002616_jpg.rf.50e1f50746d2c26e1ac5c4147d540fa0.jpg", - "response": "a group of men standing in a room that has a ladder, a window, and a table in it", - "id": 28589 - }, - { - "image_path": "G:\\images\\combined\\002617_jpg.rf.f29f869a66017834a6caaae6d8d6aed8.jpg", - "response": "a group of people walking across a bridge", - "id": 28590 - }, - { - "image_path": "G:\\images\\combined\\002618_jpg.rf.9586e219d1474de9ef426911c79ef4d7.jpg", - "response": "A lineworker is suspended from a power line, making repairs to a power pole. He is wearing a gray shirt, gray pants, and a blue hat with yellow reflective tape. He is also wearing safety ropes and a tool belt.", - "id": 28591 - }, - { - "image_path": "G:\\images\\combined\\002619_jpg.rf.939434efb87caa731f438d43e625e697.jpg", - "response": "A man in a red shirt and a yellow hard hat stands in front of a construction site.", - "id": 28592 - }, - { - "image_path": "G:\\images\\combined\\002620_jpg.rf.08d5300f02ea657a1aaa69200e9eeb2a.jpg", - "response": "The image shows two workers in a construction site setting up a yellow scaffolding. Both workers are wearing red helmets and green and brown camouflage uniforms. The left worker is a middle-aged male with a mustache and beard, and the right worker is a young male with a red helmet and a white T-shirt under the camouflage uniform. The two workers are interacting with the scaffolding, with the left worker holding a yellow pipe and the right worker reaching for a yellow pipe. In the background, there is a pink building and a few other workers.", - "id": 28593 - }, - { - "image_path": "G:\\images\\combined\\002621_jpg.rf.5702a9caec96f8f5c12c67d74c219663.jpg", - "response": "The image shows a group of rescue workers in orange uniforms carrying a snow shovel. They are walking up a snow-covered slope, which appears to be quite steep. The workers are wearing red helmets and some of them are carrying rope. The sky in the background is grey and overcast. The rescue workers are heading towards something, but it is not clear what their exact task is.", - "id": 28594 - }, - { - "image_path": "G:\\images\\combined\\002622_jpg.rf.469897280128f1ed206592d2c2f52277.jpg", - "response": "a group of men standing on a dirt and grass field", - "id": 28595 - }, - { - "image_path": "G:\\images\\combined\\002623_jpg.rf.ba695d275c71d74988a0a92efde61be2.jpg", - "response": "a group of men standing next to each other", - "id": 28596 - }, - { - "image_path": "G:\\images\\combined\\002624_jpg.rf.5afc461be31ee33c6b6419f65e442e25.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 28597 - }, - { - "image_path": "G:\\images\\combined\\002625_jpg.rf.a8316d727bd1707c3732c6015e74d696.jpg", - "response": "A construction worker in a white shirt and green pants is on the left, attaching a piece of rebar to a frame of rebar. A second construction worker in a red hard hat and light blue shirt is on the right, holding a piece of rebar that the first worker is attaching.", - "id": 28598 - }, - { - "image_path": "G:\\images\\combined\\002626_jpg.rf.433edd242b9778a86e4cf43a6648efde.jpg", - "response": "A group of five men working on a scaffolding.", - "id": 28599 - }, - { - "image_path": "G:\\images\\combined\\002627_jpg.rf.0865df6f43a2598be768efce0efdc347.jpg", - "response": "A few linemen are working on power lines in a blue sky.", - "id": 28600 - }, - { - "image_path": "G:\\images\\combined\\002628_jpg.rf.90f8e32ad48c2db07836e3df80e17d77.jpg", - "response": "Some men in orange jumpsuits and white hardhats are working on a stretch of railroad track. They are in various poses, kneeling or crouching as they focus on different parts of the track. One man is holding a small device while another man inspects the track beside him.", - "id": 28601 - }, - { - "image_path": "G:\\images\\combined\\002629_jpg.rf.7db44ff48b15336c3e65fb4c6c2498a5.jpg", - "response": "A man in a red hard hat is squatting down in front of a red and yellow bulldozer. He is wearing a white shirt and has a pen in his pocket. He is in front of a pile of rubble and there is a second pile of rubble to his right. In the background, there is a street and a pile of dirt.", - "id": 28602 - }, - { - "image_path": "G:\\images\\combined\\002630_jpg.rf.7f9583170625a87fd3236346b04f6234.jpg", - "response": "In the image two workers are standing in a factory. They are both wearing safety hats and the one on the left is holding a long tool and the one on the right is holding a torch. The factory has a large grey\u7089 with two white pipes sticking out of it and a large grey\u7f50. There is a small black pipe coming out of the grey\u7089 and another black pipe further to the left. There is a white pipe sticking out of the grey\u7f50. The workers are casting something into a mould which is sitting on the floor.", - "id": 28603 - }, - { - "image_path": "G:\\images\\combined\\002631_jpg.rf.3f7e4a8cedb15ecbde655f2066627d6b.jpg", - "response": "A man in a yellow jacket and red hard hat is sitting on a pile of bricks.", - "id": 28604 - }, - { - "image_path": "G:\\images\\combined\\002632_jpg.rf.efb1423e159090ffed213b04ea627c36.jpg", - "response": "The image shows three people in a room wearing hard hats and checking a grey box with a meter. One person is holding a meter and checking the output, while another person is holding a smartphone. A third person is standing in the background.", - "id": 28605 - }, - { - "image_path": "G:\\images\\combined\\002633_jpg.rf.8f7026337789233193e5c2607c61d0d4.jpg", - "response": "A group of people standing on a road.", - "id": 28606 - }, - { - "image_path": "G:\\images\\combined\\002634_jpg.rf.73c795fbcb44e48a540de0049ed411c2.jpg", - "response": " A worker(237,547),(543,997) in a hard hat(322,547),(438,711) stands in front of a cement factory(4,7),(995,996)", - "id": 28607 - }, - { - "image_path": "G:\\images\\combined\\002635_jpg.rf.399c88041390ae93f4c5b2ce5bbb62d5.jpg", - "response": " Men(583,3),(995,719)(384,20),(636,690)(4,50),(299,997) loading a dead pig(227,347),(933,948) into the back of a truck(495,550),(996,997)", - "id": 28608 - }, - { - "image_path": "G:\\images\\combined\\002636_jpg.rf.223238ab25c15411a9f3bdc6f8d0006c.jpg", - "response": "A couple of men in grey work uniforms and blue hard hats.", - "id": 28609 - }, - { - "image_path": "G:\\images\\combined\\002637_jpg.rf.5c17d83877342692031da64b850f0d31.jpg", - "response": "A group of men wearing hard hats and raincoats are working in the snow. They are wearing blue and green hard hats and are holding a large wooden pole. There is a rope attached to the pole and some men are holding it. There is a man in a red hard hat and a man in a grey sweatshirt in the background. The snow is knee deep in some places and the ground is covered in snow.", - "id": 28610 - }, - { - "image_path": "G:\\images\\combined\\00263823ccb13e72.jpg", - "response": "A large screen that says \"Devilishly charming bots\" on it.", - "id": 28611 - }, - { - "image_path": "G:\\images\\combined\\002639_jpg.rf.23284ab055f1ed2631773d75e4e043e3.jpg", - "response": "A construction worker is working on a building.", - "id": 28612 - }, - { - "image_path": "G:\\images\\combined\\002640_jpg.rf.b929f16dfae865372a577fc192f628d3.jpg", - "response": "A group of people standing around a blue box on a bridge.", - "id": 28613 - }, - { - "image_path": "G:\\images\\combined\\002641_jpg.rf.609f8b97b97e4cf299fce3078dfea2a0.jpg", - "response": "A construction site with multiple cranes working on a building.", - "id": 28614 - }, - { - "image_path": "G:\\images\\combined\\002642_jpg.rf.e106e46daf51c856fa81a3352fbc4e03.jpg", - "response": " Four people(268,388),(393,803)(413,436),(518,851)(557,360),(692,919)(203,419),(318,744) standing on a platform(2,583),(997,997)", - "id": 28615 - }, - { - "image_path": "G:\\images\\combined\\002643_jpg.rf.0fcd694624b1a14beb4603701efc15cd.jpg", - "response": "A group of three men working on a construction site.", - "id": 28616 - }, - { - "image_path": "G:\\images\\combined\\002644_jpg.rf.a640b5620095748caf6dd7d3813f9de2.jpg", - "response": "A man wearing a hard hat and safety glasses standing next to a large metal beam on a construction site.", - "id": 28617 - }, - { - "image_path": "G:\\images\\combined\\002645_jpg.rf.c92fc10c98fd7945fabe1a42342373db.jpg", - "response": "A man wearing a white shirt and a green hat is using a tool to dig into a pile of black coal.", - "id": 28618 - }, - { - "image_path": "G:\\images\\combined\\002646_jpg.rf.b72ffbcdaea432f3552e2ab8bb786a5d.jpg", - "response": "A group of men in front of a large pile of dirt.", - "id": 28619 - }, - { - "image_path": "G:\\images\\combined\\002647_jpg.rf.d374508f6827d37fb1c9a9aeae776408.jpg", - "response": "The three men in the image are wearing blue hard hats. They are dressed in green camouflage clothing. The man on the left is pulling on a brown rope. The man in the middle is holding the rope with his left hand while the man on the right has his right hand on the rope. There is a black iron fence behind the men. There are also two cars parked behind the fence. The ground is covered in green grass and small trees.", - "id": 28620 - }, - { - "image_path": "G:\\images\\combined\\002648_jpg.rf.9274f769523916c26ca424302a013fc6.jpg", - "response": "The image shows two workers in a large tunnel. They are standing on a platform and appear to be working on a construction project. The workers are wearing hard hats and one of them is holding a light. The light illuminates the area around them and the workers are focused on their task. The tunnel is filled with dirt and the workers are surrounded by equipment.", - "id": 28621 - }, - { - "image_path": "G:\\images\\combined\\002649_jpg.rf.a80a5fd5f744be8791a88f2468febda3.jpg", - "response": "A man(369,46),(838,692) in a suit and tie looking down at a man in a hole.", - "id": 28622 - }, - { - "image_path": "G:\\images\\combined\\00264fb0bf48ff9a.jpg", - "response": "A man and a woman pose in front of a sports arena.", - "id": 28623 - }, - { - "image_path": "G:\\images\\combined\\002650_jpg.rf.766c53b65f8a2aa03c1cd7afc01f4ece.jpg", - "response": "A construction site with three men working on a building.", - "id": 28624 - }, - { - "image_path": "G:\\images\\combined\\002652_jpg.rf.5dc1363a3f025b26866fe2e331ccc8ca.jpg", - "response": "The image shows a group of men in blue overalls and yellow hard hats standing in a large room with several metal cabinets. The men are wearing similar blue overalls and holding tools. One of the men is holding a clipboard and a drill. The room has a red brick floor and walls that are a mix of red and white brick. There is a large metal circular device on the right side of the room.", - "id": 28625 - }, - { - "image_path": "G:\\images\\combined\\002653_jpg.rf.83d6f445e2d17b3e77515cc25ff173f8.jpg", - "response": "A man wearing a red helmet and work clothes is on a telephone pole.", - "id": 28626 - }, - { - "image_path": "G:\\images\\combined\\002654_jpg.rf.76da509c588ef5d621a5484db912c71b.jpg", - "response": "A group of three men working on a large electrical box.", - "id": 28627 - }, - { - "image_path": "G:\\images\\combined\\002655_jpg.rf.030e5f248a13ae700880c8ee59ea9af7.jpg", - "response": "A man in a red hard hat is standing on a metal platform working on a large white water tower. The platform is elevated and is in front of a brick wall. The man has a tool belt around his waist and is wearing a white shirt.", - "id": 28628 - }, - { - "image_path": "G:\\images\\combined\\002656_jpg.rf.4d44a06d548009f5a238af55463069d3.jpg", - "response": "A man in a yellow hard hat and blue shirt is handing a tool to another man in a yellow hard hat and orange vest.", - "id": 28629 - }, - { - "image_path": "G:\\images\\combined\\002657_jpg.rf.f8f86007637df2df1472fe9267a4edfa.jpg", - "response": " Men(680,5),(996,997)(3,39),(610,996) in green and blue shirts(683,285),(997,999)(3,463),(354,997) and red helmets(24,39),(281,286)(719,3),(943,157) standing in a field", - "id": 28630 - }, - { - "image_path": "G:\\images\\combined\\002658_jpg.rf.88bc0d63161e60103e424060ce55c0d7.jpg", - "response": "The image shows a construction site with a group of workers present. There are multiple people in the image, some of them are wearing yellow helmets and white working clothes. They are working on a large yellow machine with a concrete bucket on the front. The bucket is filled with concrete and a large tube is connected to it. The workers are standing around the machine, some of them are closer to the front, and some are standing further back. There are also a few people standing further to the right of the machine. In the background, there is a white building visible in the distance.", - "id": 28631 - }, - { - "image_path": "G:\\images\\combined\\002659_jpg.rf.6154c51cb9ae8070c78d2e100bfc8836.jpg", - "response": "Four people with yellow hard hats on a construction site.", - "id": 28632 - }, - { - "image_path": "G:\\images\\combined\\002660_jpg.rf.424404df1570136a1c72567c2fd23c29.jpg", - "response": "A group of people in hard hats stand in front of a fence with a poster on it. They are looking at the poster and talking to each other.", - "id": 28633 - }, - { - "image_path": "G:\\images\\combined\\002662_jpg.rf.3265619692e7a894934d21a00fc3e7de.jpg", - "response": "A man in a red jumpsuit and a hard hat is working on a large pipe.", - "id": 28634 - }, - { - "image_path": "G:\\images\\combined\\002663_jpg.rf.0678608e9a5d60d09992edc8033c2fbd.jpg", - "response": "An electrician is working on power lines.", - "id": 28635 - }, - { - "image_path": "G:\\images\\combined\\002664_jpg.rf.85d5bd563a270831c1916e8c057ba38e.jpg", - "response": "In the image there are three miners working in a cave. They are all wearing hard hats and using pickaxes to break apart a large boulder. The first miner is on the left side of the image and is crouching down with their pickaxe. The second miner is behind the first one and is also crouching down. The third miner is behind the second one and is also crouching down. They are all wearing yellow hard hats and have their pickaxes stuck into the rock.", - "id": 28636 - }, - { - "image_path": "G:\\images\\combined\\0026652e5ce138ff.jpg", - "response": "A collage of photos of Sinful Colors nail polish in pink. The polish is in a bottle and on a nail. The bottle has a black cap and the nail has a bar code on it. There is also a No Top Coat label on the nail polish bottle.", - "id": 28637 - }, - { - "image_path": "G:\\images\\combined\\002666_jpg.rf.066ae80cdba7325b6266023f0b73e0c4.jpg", - "response": "a group of people standing in front of a bus", - "id": 28638 - }, - { - "image_path": "G:\\images\\combined\\002667_jpg.rf.1679d404c85fd0c2e24b2569a37f08db.jpg", - "response": "Some workers are building a house. Some grey bricks are stacked in front of a building. Some workers are wearing yellow helmets.", - "id": 28639 - }, - { - "image_path": "G:\\images\\combined\\002668_jpg.rf.6cba07fdc4883fa3b6f142a81c131604.jpg", - "response": "A group of construction workers wearing yellow hard hats are standing on top of a building. They are working on a metal framework and a concrete slab.", - "id": 28640 - }, - { - "image_path": "G:\\images\\combined\\002669_jpg.rf.f77b5c9fd0761b7500e96ff547ae2719.jpg", - "response": "A man in a grey jumpsuit and blue hard hat is in the process of cutting a tree with a chainsaw. The tree is blocking a power line.", - "id": 28641 - }, - { - "image_path": "G:\\images\\combined\\00266_jpg.rf.568ebcc4c15d821afc75da7d338d6373.jpg", - "response": "In the image, there are two men sitting on a bench in a warehouse. One man is wearing a suit and a hard hat, and is holding a coffee cup. The other man is wearing a yellow vest and is also holding a coffee cup. They are both looking at each other and talking. The warehouse has racks of shelves on the walls, and there are several other racks of shelves in the background. The floor is covered with large cardboard boxes.", - "id": 28642 - }, - { - "image_path": "G:\\images\\combined\\00266_jpg.rf.d3c3caa2ae80faa9b7db47bdaf6e88cf.jpg", - "response": "In the image, there are two men wearing hard hats. They are both holding cups of coffee. One man is wearing a suit and is sitting on a pallet in a warehouse. The other man is wearing a safety vest and is sitting next to him. They are both looking at each other and talking. The background is filled with shelves and racks of goods in the warehouse.", - "id": 28643 - }, - { - "image_path": "G:\\images\\combined\\002671_jpg.rf.42a39211baa3d498d39cf8fc9dab9a3a.jpg", - "response": "In the image there is a person wearing a blue shirt and a blue hat who is working in an underground pit filled with water. The person is holding two hoses that are connected to a pump that is removing the water from the pit. The pit is filled with water up to the person's knees.", - "id": 28644 - }, - { - "image_path": "G:\\images\\combined\\002672_jpg.rf.30622efc1ef6b5685df498181a869c73.jpg", - "response": "A group of people walking through a warehouse", - "id": 28645 - }, - { - "image_path": "G:\\images\\combined\\002673_jpg.rf.8236a661f7e6de925f0f4d971b091b98.jpg", - "response": "A group of men standing around each other.", - "id": 28646 - }, - { - "image_path": "G:\\images\\combined\\002675_jpg.rf.93404c78e262d56e0886a50e66ddf20d.jpg", - "response": "A man working on a construction site.", - "id": 28647 - }, - { - "image_path": "G:\\images\\combined\\002676_jpg.rf.6c2dfe727ccd15dce407e12cc0d3ad24.jpg", - "response": "In the image there is a group of five people working on a construction site. They are all wearing yellow hard hats and are focused on their task. They are building some steel frameworks and one of the frames has blue pipes running through it.", - "id": 28648 - }, - { - "image_path": "G:\\images\\combined\\002677_jpg.rf.de7344ef674553f97603616d5ee94404.jpg", - "response": "Four people standing in a factory, three men and one woman. The man in the middle is holding a clipboard. The man on the right is wearing a hard hat and a yellow vest. The woman on the left is crossing her arms.", - "id": 28649 - }, - { - "image_path": "G:\\images\\combined\\002678_jpg.rf.be5736b3966b8c967ac32ab4a1bc41f9.jpg", - "response": "A worker from the city's Department of Urban and Rural Development removes illegal\u5e7f\u544a", - "id": 28650 - }, - { - "image_path": "G:\\images\\combined\\002679_jpg.rf.9a09b47782b2eac9e953f381371ad9d9.jpg", - "response": "The image shows a group of rescue workers in camouflage uniforms and white hard hats standing around a hole in the ground. They are holding shovels and other tools. Some of them are near a large piece of equipment with a long arm and a bucket on the end. In the background, there is a large pile of dirt and debris. Some of the workers are wearing backpacks.", - "id": 28651 - }, - { - "image_path": "G:\\images\\combined\\002681_jpg.rf.6e5d568679eb19de4a7380e4d8219a05.jpg", - "response": "A group of workers are working on a bridge.", - "id": 28652 - }, - { - "image_path": "G:\\images\\combined\\002682_jpg.rf.2a7c0fbe2936312d6d0f311d3b7bb978.jpg", - "response": "A group of men standing in front of a map.", - "id": 28653 - }, - { - "image_path": "G:\\images\\combined\\002683_jpg.rf.e958525127d58c58e670f8456870ad3b.jpg", - "response": "A group of workers in red and white hard hats working on a drilling machine in a construction site.", - "id": 28654 - }, - { - "image_path": "G:\\images\\combined\\002684_jpg.rf.9851ea42d670952a556cbb0f9c0d2ab8.jpg", - "response": " Men(325,263),(458,779)(77,215),(295,996)(238,274),(339,747) standing in a dark tunnel with a bright light(439,293),(517,397) shining on them", - "id": 28655 - }, - { - "image_path": "G:\\images\\combined\\002685_jpg.rf.fb58124ee92a79c0aea01474fc714453.jpg", - "response": "The image shows a group of people standing in a construction site. They are wearing hard hats and some of them are holding a long stick. The people are of different ages and are standing next to a large window. The window frame is white and some of the people are wearing white. In the background, there is a wall that is in the process of being painted green. The image also shows a ladder against the wall.", - "id": 28656 - }, - { - "image_path": "G:\\images\\combined\\002686_jpg.rf.ab3a9d96ece52f2596fd0d3259a7d468.jpg", - "response": "A group of men standing in a room that is under construction.", - "id": 28657 - }, - { - "image_path": "G:\\images\\combined\\002687_jpg.rf.ace81774f1cfb7c7061dd4235a0524ef.jpg", - "response": "A worker checks equipment at a power plant.", - "id": 28658 - }, - { - "image_path": "G:\\images\\combined\\002688_jpg.rf.15c5fb6f3ffeae37e0e9466a5aace36e.jpg", - "response": "A group of construction workers working on a building site with one man down on the ground.", - "id": 28659 - }, - { - "image_path": "G:\\images\\combined\\002689_jpg.rf.81f6f7850242adfcc4e3438542a6039e.jpg", - "response": "A group of people standing in front of a building under construction. The people are standing in a semi-circle and some of them are wearing hard hats. There is a blue and white sign in the foreground that says \"\u5b89\u5168\u901a\u9053 18#\" and has a picture of a person wearing a hard hat. In the background, there is a yellow crane operating near the building.", - "id": 28660 - }, - { - "image_path": "G:\\images\\combined\\002690_jpg.rf.f68ecbbc41297a7403a308421b6a108f.jpg", - "response": "A worker(251,137),(838,996) points to something in the distance", - "id": 28661 - }, - { - "image_path": "G:\\images\\combined\\002693_jpg.rf.4292cc19ff5f114781e464d208536177.jpg", - "response": "A couple of people on bikes on a road.", - "id": 28662 - }, - { - "image_path": "G:\\images\\combined\\002694_jpg.rf.1c3a44dd98b02f2165ad549acc6804d1.jpg", - "response": "A man in a blue hard hat and work clothes is working on a large wooden wheel. He is pulling on a chain that is attached to a large wooden spool. The man has a beard and is wearing work gloves.", - "id": 28663 - }, - { - "image_path": "G:\\images\\combined\\002695_jpg.rf.5dbcf625c0df17e60862ac3941c07a0d.jpg", - "response": "A man in an orange hard hat and orange coveralls is working on a red valve on a ship.", - "id": 28664 - }, - { - "image_path": "G:\\images\\combined\\002696_jpg.rf.97b8ac75cb3769bd883c7aac55b971dd.jpg", - "response": "A construction worker in a white hard hat is sitting on scaffolding. He is wearing brown work clothes and has a white beard. The sky is blue with a few clouds.", - "id": 28665 - }, - { - "image_path": "G:\\images\\combined\\002698_jpg.rf.2485c1ffae3e30b2839f3e9d1f38b512.jpg", - "response": "A group of men wearing blue hats and carrying a rope.", - "id": 28666 - }, - { - "image_path": "G:\\images\\combined\\002699_jpg.rf.98bf6384955ba26837c3994d552880c9.jpg", - "response": "A group of men wearing yellow vests and hard hats are looking at blueprints in a construction site.", - "id": 28667 - }, - { - "image_path": "G:\\images\\combined\\0026f46000c19b0a.jpg", - "response": "A book with the title The Trouble with Tribbles signed by David Gerrold and dedicated to his friend Bill.", - "id": 28668 - }, - { - "image_path": "G:\\images\\combined\\002700_jpg.rf.446dd8a6e6355812a43cad6fff96273a.jpg", - "response": "A group of men in uniforms carrying a man on a stretcher.", - "id": 28669 - }, - { - "image_path": "G:\\images\\combined\\002701_jpg.rf.8aea00afba2171480fcdaf4ad360680e.jpg", - "response": "a group of men standing in a field", - "id": 28670 - }, - { - "image_path": "G:\\images\\combined\\002702_jpg.rf.f2e735a1575c60bc56157e17284da1c5.jpg", - "response": "a group of people standing in a room with a brick wall and white ceiling", - "id": 28671 - }, - { - "image_path": "G:\\images\\combined\\002704_jpg.rf.f66ee64779ea0aa1c7ae6442bfbc454e.jpg", - "response": "A worker wearing a white shirt and blue pants is operating a machine in a factory. The worker is wearing a white shirt and blue pants. The background is black.", - "id": 28672 - }, - { - "image_path": "G:\\images\\combined\\002706_jpg.rf.599ccaee75203efce1b02ac82c77d24a.jpg", - "response": "a man standing in a field", - "id": 28673 - }, - { - "image_path": "G:\\images\\combined\\002707_jpg.rf.1e7bbbb5a12c22a41a881b6e487492bc.jpg", - "response": "A group of people standing next to a guardrail that has been damaged.", - "id": 28674 - }, - { - "image_path": "G:\\images\\combined\\002708_jpg.rf.86cc7c55ebf8696b286b049dcb9d47fe.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 28675 - }, - { - "image_path": "G:\\images\\combined\\002709_jpg.rf.6be1b4fae4f4c2d324a2b00a24082c25.jpg", - "response": "a group of people wearing hard hats(859,222),(925,285)(109,296),(181,369)(376,526),(435,588)(588,233),(675,319)(367,327),(429,388)(298,334),(369,402)", - "id": 28676 - }, - { - "image_path": "G:\\images\\combined\\00270_jpg.rf.8c8f0dd3c0c4dc3439ab3617a2ce72c6.jpg", - "response": "A row of four children all wearing yellow hard hats and white gloves.", - "id": 28677 - }, - { - "image_path": "G:\\images\\combined\\00270_jpg.rf.ba11bcc231ad430af73d6c6f759ab597.jpg", - "response": "A row of four children all wearing yellow hard hats and white gloves.", - "id": 28678 - }, - { - "image_path": "G:\\images\\combined\\002710_jpg.rf.9897e45cd118d821fd29247cd1c8a79a.jpg", - "response": "A group of three men standing in front of a building under construction. They are all wearing yellow hard hats. The man on the left is wearing a white shirt and has a mustache. The man in the middle has a yellow hard hat and is wearing a blue shirt. The man on the right is wearing a white shirt and has a goatee. He is also wearing work gloves. They are all smiling at the camera.", - "id": 28679 - }, - { - "image_path": "G:\\images\\combined\\002712_jpg.rf.30898b4ae735460487744e51575b4291.jpg", - "response": " Two workers(376,292),(593,935)(649,108),(835,528) in a construction site", - "id": 28680 - }, - { - "image_path": "G:\\images\\combined\\002713_jpg.rf.44254c58a6e7ace147ccdf72f2dda5c6.jpg", - "response": "A group of men working on a road.", - "id": 28681 - }, - { - "image_path": "G:\\images\\combined\\002714_jpg.rf.82f3653f4260fcc762f43c07201fa2f8.jpg", - "response": "A worker is seen on a power tower in this undated photo. The photo(11,7),(989,994) shows a worker in a white uniform and blue helmet working on a power tower. The sky is a clear blue and the worker is seen from the waist up.", - "id": 28682 - }, - { - "image_path": "G:\\images\\combined\\002716_jpg.rf.d6b76e7ed10b2fe41d02cd0e4fc29f59.jpg", - "response": "A man wearing a red hard hat and a green camouflage jacket sits on a curb and uses a grinding wheel to cut something. There are sparks flying from the wheel.", - "id": 28683 - }, - { - "image_path": "G:\\images\\combined\\002717_jpg.rf.2478028c607bd2d91dd716faa095a19f.jpg", - "response": "A man and a woman wearing white hard hats are looking at blueprints. The woman is wearing a navy shirt and khaki pants. The man is wearing a brown shirt and an orange safety vest. They are standing in a room that is under construction. There are wood beams on the wall and a ladder leaning against the wall.", - "id": 28684 - }, - { - "image_path": "G:\\images\\combined\\002719_jpg.rf.11a921e2fa0a61b6fce3fc766dace72d.jpg", - "response": "a man sitting in a chair inside of a plane", - "id": 28685 - }, - { - "image_path": "G:\\images\\combined\\002720_jpg.rf.af630caec2cb8e80e2d0a3a91bed0472.jpg", - "response": "A worker in a yellow hard hat is using a long red tool to work on a power line. The power line is attached to a wooden pole. The sky is grey and snowy.", - "id": 28686 - }, - { - "image_path": "G:\\images\\combined\\002721_jpg.rf.0a001f2789a506576c13ef21f39bffed.jpg", - "response": "The image shows a group of rescue workers in a construction site that has collapsed. The workers are wearing helmets and uniforms. Some of them are standing, while others are crouching or bending over. They are holding tools such as shovels and axes. In the background, there are scaffolding and debris. The workers are focused on their task, and some of them are talking to each other. The scene is quite chaotic, with the workers scattered around the site.", - "id": 28687 - }, - { - "image_path": "G:\\images\\combined\\002722_jpg.rf.8a9342afa86075418c4614f70655efec.jpg", - "response": "The image shows two construction workers at a building site. They are wearing hard hats and working clothes. One worker is carrying a large white bag filled with concrete, while the other worker is using a mobile phone. They are standing on a pile of grey rubble in the foreground. In the background, there is a large building under construction. There are several steel beams and rebar visible. The sky is grey and overcast.", - "id": 28688 - }, - { - "image_path": "G:\\images\\combined\\002723_jpg.rf.54642b5008fb9d59e51cf78db6ef6071.jpg", - "response": "In the image there is a group of people wearing hard hats and coveralls inside a factory. They are working on a project that involves cutting metal with a welding torch. There are sparks flying all around and some people are kneeling on the ground. There are also some people in the background, some of them are holding tools.", - "id": 28689 - }, - { - "image_path": "G:\\images\\combined\\002724_jpg.rf.f70998bf20bcef8c5bc846b212e35af5.jpg", - "response": "A construction site with three men working on a building.", - "id": 28690 - }, - { - "image_path": "G:\\images\\combined\\002727_jpg.rf.5a18d2487050c088097da9948572f457.jpg", - "response": "A group of people working on a construction site.", - "id": 28691 - }, - { - "image_path": "G:\\images\\combined\\002729_jpg.rf.e6aa4eb86066ebad6b83d6c964812495.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 28692 - }, - { - "image_path": "G:\\images\\combined\\002730_jpg.rf.614a6a95028c52a19df1fd99a7dac0ea.jpg", - "response": "A man in a hard hat sits at a desk in front of a wall of clocks and control panels.", - "id": 28693 - }, - { - "image_path": "G:\\images\\combined\\002731_jpg.rf.c3254eda3fd8feffca25c9b0627e89d0.jpg", - "response": "A group of men standing next to a brick wall.", - "id": 28694 - }, - { - "image_path": "G:\\images\\combined\\002732_jpg.rf.534520b0f11abd55d824233324f536eb.jpg", - "response": "A worker is seen here putting finishing touches to the ceiling of the train tunnel. The worker is wearing a yellow shirt, a white hard hat, and a gas mask. He is kneeling on a metal platform and is holding a tool in his hands. The tunnel is grey and the worker is the only person in the image.", - "id": 28695 - }, - { - "image_path": "G:\\images\\combined\\002733_jpg.rf.e38597d85474dcfb514fd709ff8acc7d.jpg", - "response": "In the image, a factory worker is seen in a hard hat and work clothes, working with a large spool of wire. The worker is bending over and appears to be focused on the task at hand. The background is a bit blurry, but there are a few other spools of wire visible in the scene.", - "id": 28696 - }, - { - "image_path": "G:\\images\\combined\\002734_jpg.rf.92196ad40b627eb69ec7353985813739.jpg", - "response": "A man wearing a hard hat and work clothes is welding on the side of a blue boat. He is standing on the boat and is focused on his work. There are several other boats visible in the background, docked at a pier.", - "id": 28697 - }, - { - "image_path": "G:\\images\\combined\\002735_jpg.rf.ba45c66eaf42af657ebc044db04634d0.jpg", - "response": "In the image there are two construction workers, one is on the left and the other is on the right. They are both wearing hard hats and one of them is also wearing an orange safety jacket. They are working on a construction site that has a large pile of grey rocks and some of the rocks have metal bars sticking out of them. In front of the workers there is a large pile of grey rocks and on top of the rocks there is a metal framework that looks like a tree.", - "id": 28698 - }, - { - "image_path": "G:\\images\\combined\\002736_jpg.rf.3e8d7dace284181c83fedc023cacaacf.jpg", - "response": "A group of four workers are working on a construction site. They are all wearing hard hats and are focused on their tasks. One worker is standing and holding a large metal pipe while another worker is squatting down and welding two pieces of metal together. The third worker is also squatting down and holding a large metal pipe. The fourth worker is crouching down at the far right of the image. The entire group of workers are wearing grey uniforms.", - "id": 28699 - }, - { - "image_path": "G:\\images\\combined\\002737_jpg.rf.29c9b8196f087b5dc9a4d6606c444b67.jpg", - "response": "A group of men working on a power line in the snow.", - "id": 28700 - }, - { - "image_path": "G:\\images\\combined\\002738_jpg.rf.614faac8b5ef9324d71857048be31642.jpg", - "response": "A man in a red hard hat is looking at a machine.", - "id": 28701 - }, - { - "image_path": "G:\\images\\combined\\002739_jpg.rf.cdc631cc20e3a4ed1ebcc9b761edd081.jpg", - "response": "A gas company worker in a blue uniform and hard hat kneeling down next to a gas meter. He is connecting a device to the meter.", - "id": 28702 - }, - { - "image_path": "G:\\images\\combined\\002741_jpg.rf.f0e54cc3edae31cbecb796e222c55337.jpg", - "response": "A construction site with three workers visible. They are working on a large structure made of metal. One of the workers is holding a large metal funnel. There are buildings in the background.", - "id": 28703 - }, - { - "image_path": "G:\\images\\combined\\002742_jpg.rf.6c48dcf3fd93631bad399394613aecb3.jpg", - "response": " Two engineers(42,229),(378,997)(379,212),(732,997) looking at a blueprint(307,549),(456,723) in a tunnel", - "id": 28704 - }, - { - "image_path": "G:\\images\\combined\\002743_jpg.rf.470d5d46ff98d1e5d4a0e2a40fa1c572.jpg", - "response": "A worker in a yellow hard hat is working on some steel.", - "id": 28705 - }, - { - "image_path": "G:\\images\\combined\\002744_jpg.rf.afe0c141c540520fbfcd815623f41e00.jpg", - "response": "Men(619,442),(829,997)(68,485),(464,997)(699,498),(995,997) standing in a kitchen under construction", - "id": 28706 - }, - { - "image_path": "G:\\images\\combined\\002745_jpg.rf.e3c5c1fa0a1ad7a9776eba977bf666a6.jpg", - "response": "The men are walking through the unfinished building.", - "id": 28707 - }, - { - "image_path": "G:\\images\\combined\\002747_jpg.rf.88723b6e0328936670254c135846eaa6.jpg", - "response": " Five men(259,99),(449,436)(618,140),(910,780)(464,152),(631,466)(622,141),(995,997)(3,98),(314,833) sitting around a table(218,419),(602,723)", - "id": 28708 - }, - { - "image_path": "G:\\images\\combined\\002748_jpg.rf.8d00e863b7df2f0527cab4b14194c19b.jpg", - "response": "A group of three men in red hard hats and coveralls are working on a red metal frame with metal pipes and red tarps around it. They are holding and operating various equipment.", - "id": 28709 - }, - { - "image_path": "G:\\images\\combined\\00274_jpg.rf.2479c797a712e3a695d0fad8d9b15820.jpg", - "response": "In the image there are two construction workers wearing yellow vests and hard hats. They are standing in a construction site that has a large building under construction. The building has a concrete framework and rebar visible in the foreground. There is a large tower block visible in the background on the left hand side. The sky is blue and there are no clouds in the sky.", - "id": 28710 - }, - { - "image_path": "G:\\images\\combined\\002750_jpg.rf.d6710f5ae26606ccac3ee8d5b215ce64.jpg", - "response": "In the image two men are seen holding a drone i.e. a quadcopter between them. Both the men are dressed in green and brown color uniforms. One of the men is seen wearing a brown color helmet. Both the men are seen holding the drone in front of an electricity tower which is seen in the background. The electricity tower is grey in color and is surrounded by green trees in the background. The trees are of different sizes and are green in color. The sky is blue in color and it appears to be a bright sunny day.", - "id": 28711 - }, - { - "image_path": "G:\\images\\combined\\002751_jpg.rf.74b99fbfd07bc388600aee232370740f.jpg", - "response": "A group of three men wearing hard hats are walking through a construction site. They are wearing yellow pants and jackets.", - "id": 28712 - }, - { - "image_path": "G:\\images\\combined\\002752_jpg.rf.b25842e4ffeb9a44a89faa18591a4e87.jpg", - "response": "A group of people standing around pointing at things.", - "id": 28713 - }, - { - "image_path": "G:\\images\\combined\\002753_jpg.rf.08440158dbf3fb050ecc9ef6f2e351cf.jpg", - "response": "A worker in a red uniform and yellow hard hat is standing in front of a tunnel. They are holding a yellow hard hat and giving a thumbs up. In front of them is a large tunneling machine with a big drill on the front. To the right of the tunnel is a building.", - "id": 28714 - }, - { - "image_path": "G:\\images\\combined\\002754_jpg.rf.c8c8390ccc0898de35945f3eac53fd44.jpg", - "response": "A worker in a white mask and blue hard hat(323,107),(458,316) is kneeling down in a dark room. They are scooping a white powder out of a bag with a metal scoop and transferring it to another bag. There is a white bag and a black bag on the floor next to them. In the background, there is a wooden platform and a concrete wall.", - "id": 28715 - }, - { - "image_path": "G:\\images\\combined\\002755_jpg.rf.2a19b15554521d89b8c48b2725d19759.jpg", - "response": "The image shows two men wearing blue helmets and yellow reflective vests, discussing blueprints at a construction site. The men are standing near a table with the blueprints on it, and there is a brick building under construction in the background. The men are wearing blue helmets and yellow reflective vests.", - "id": 28716 - }, - { - "image_path": "G:\\images\\combined\\002756_jpg.rf.7e21dd597e77e411ed5da3b5cef52ff3.jpg", - "response": "An electrician repairs power lines from a boom lift.", - "id": 28717 - }, - { - "image_path": "G:\\images\\combined\\002757_jpg.rf.4e0b7e6723f019939e1cc002477bf47d.jpg", - "response": "In the image, there are three people standing in a room with a sloping ceiling. Two of the people are male, one on the left is wearing a white helmet and an orange vest, while the one in the middle is wearing a dark shirt. The other person is a female, she is wearing a light blue top and a dark jacket. They are looking at a plan in the hands of the person on the left.", - "id": 28718 - }, - { - "image_path": "G:\\images\\combined\\002758_jpg.rf.3dc242712400fe8047058f71d1150da0.jpg", - "response": "A group of workers in white coveralls and yellow hard hats are working on a construction site in the mud. They are standing on wooden beams and ladders, and there is a large black box on a wooden structure behind them. There is also a pile of wooden planks on the ground. The workers are wearing clear safety glasses and the sky is blue.", - "id": 28719 - }, - { - "image_path": "G:\\images\\combined\\002759_jpg.rf.26612aaaff02c0f32e65f0780aac3ab3.jpg", - "response": " Workers(601,638),(934,909)(19,719),(421,997)(788,284),(850,412) are seen in a tunnel", - "id": 28720 - }, - { - "image_path": "G:\\images\\combined\\002760_jpg.rf.dcc563945f5a61b2a43c40e644cde9d0.jpg", - "response": "Three men in high visibility vests and hard hats looking at a building plan on a construction site.", - "id": 28721 - }, - { - "image_path": "G:\\images\\combined\\002761_jpg.rf.66fe8332433d402bdfea31f8531ad8e8.jpg", - "response": "a group of people standing in the snow holding umbrellas", - "id": 28722 - }, - { - "image_path": "G:\\images\\combined\\002762_jpg.rf.eacf2c6db89be8acc9472c3c891a9a23.jpg", - "response": "A group of workers in blue uniforms and white helmets are working in a hole in the ground. They are holding a black hose and there is a concrete slab over the hole. The workers are wearing white gloves and the ground is wet around the hole.", - "id": 28723 - }, - { - "image_path": "G:\\images\\combined\\002763_jpg.rf.c16e435a23120f86baa320bf830f1d82.jpg", - "response": "The image features two men dressed in business suits and wearing hard hats. They are standing on a construction site, and one man is pointing towards something in the distance. The man holding the plans is looking at the plans while the other man looks in the direction the first man is pointing. They both appear to be discussing the plans or the construction site.", - "id": 28724 - }, - { - "image_path": "G:\\images\\combined\\002764_jpg.rf.7bd21f63dc92a508d17d91eb7488ec5e.jpg", - "response": "A worker is working on a construction site.", - "id": 28725 - }, - { - "image_path": "G:\\images\\combined\\002766_jpg.rf.ca2fdb415d12d9931d99b7e97f0c6850.jpg", - "response": "Rescuers are trying to save a worker who fell into a construction site well. The worker is in a blue construction uniform. There are several firemen and police officers trying to save the worker. There are two ladders placed against the walls of the construction site well.", - "id": 28726 - }, - { - "image_path": "G:\\images\\combined\\002767_jpg.rf.43410b9a35b534774502a661e56c4146.jpg", - "response": "In the image, a group of people are seen holding a banner that says, \"\u5b89\u5168\u7b2c\u4e00\" (safety first). The photo appears to have been taken in front of a building with a sign that says \"\u5b89\u5168\u627f\u8bfa\u7b7e\u540d\u6d3b\u52a8\" (safety commitment signature activity). The people in the photo are wearing what appears to be construction gear, including hard hats and possibly safety vests. Some of them are also holding a large blue banner.", - "id": 28727 - }, - { - "image_path": "G:\\images\\combined\\002769_jpg.rf.36d0013395ba814a66b41747d1fab9eb.jpg", - "response": "A group of people standing in front of a blue banner.", - "id": 28728 - }, - { - "image_path": "G:\\images\\combined\\00276_jpg.rf.7105b525928c0b38852dacb1d0593851.jpg", - "response": "A man standing next to a car filled with many construction hats.", - "id": 28729 - }, - { - "image_path": "G:\\images\\combined\\00276_jpg.rf.b48b82fdc6ae18c7c409192c35ce40c5.jpg", - "response": "A man standing next to a car filled with many construction hats.", - "id": 28730 - }, - { - "image_path": "G:\\images\\combined\\002770_jpg.rf.1abe10043fc255a41b4944007b2579ec.jpg", - "response": "A group of people working on a construction site.", - "id": 28731 - }, - { - "image_path": "G:\\images\\combined\\002771_jpg.rf.423062bc6a27f1f412ae80a4c823c392.jpg", - "response": "A group of men standing next to a yellow truck.", - "id": 28732 - }, - { - "image_path": "G:\\images\\combined\\002772_jpg.rf.59c381262e210885a3ea2bfaba1a8048.jpg", - "response": "A lineworker for the City of San Diego is seen here in a 2013 file photo.", - "id": 28733 - }, - { - "image_path": "G:\\images\\combined\\002773_jpg.rf.886b2249316d233b76b957e8ee59f46f.jpg", - "response": "A construction crew works on the underside of the bridge.", - "id": 28734 - }, - { - "image_path": "G:\\images\\combined\\002774_jpg.rf.ffcb349d79610827d7ab61af0680751a.jpg", - "response": "The image shows a group of men working inside a dark tunnel. They are wearing hard hats and some of them are holding blowtorches. In the tunnel, there is a bulldozer and a person on a motorbike. The workers are standing around the tunnel and one of them is holding a light.", - "id": 28735 - }, - { - "image_path": "G:\\images\\combined\\002776_jpg.rf.2ae8ec15358de3a40f764c5fd441ed54.jpg", - "response": "The image features two men, one in the foreground and one in the background, both wearing white helmets and orange safety vests. The man in the foreground is using a walkie-talkie, holding it up to his ear, while the other man is looking off into the distance. They are standing in front of a large red shipping container.", - "id": 28736 - }, - { - "image_path": "G:\\images\\combined\\002777_jpg.rf.1f966f3c797e9ab5b84b401af2fd9b8e.jpg", - "response": "The image shows a group of rescue workers standing around a man who is being lowered into a bucket by a crane. The man in the bucket is being held by two rescuers, while others look on. The scene takes place outdoors and there are several people present, some wearing hard hats. The bucket is gray and is located towards the center of the image, while the man in the bucket is towards the right side of the image. The crane is not visible in this view, but it is the means by which the man in the bucket is being lowered.", - "id": 28737 - }, - { - "image_path": "G:\\images\\combined\\002778_jpg.rf.98fff69d1d15adb76ecaa7ce82bedf4f.jpg", - "response": "A worker is using a long tool to bend a long piece of orange glowing metal. Another worker is bending over and looking at the first worker. They are both wearing blue work clothes and red helmets. The background is very dark.", - "id": 28738 - }, - { - "image_path": "G:\\images\\combined\\002779_jpg.rf.2e684d7e87c3974f953d2f73cd479625.jpg", - "response": "In the image there is a person wearing a blue hard hat and a black jacket. They are holding a device in their right hand and are inspecting a red piece of metal. The person is standing in a warehouse-like room with a lot of tools around.", - "id": 28739 - }, - { - "image_path": "G:\\images\\combined\\002780_jpg.rf.ffecdc5b9ada0a1fdf73f217512f320e.jpg", - "response": "a man in a red hat and orange coveralls looks into a large eye piece of a machine. The machine is on a tripod and has a large button on top.", - "id": 28740 - }, - { - "image_path": "G:\\images\\combined\\002781_jpg.rf.13c9e68ba12d71d6be650e032c83d333.jpg", - "response": " A worker(688,467),(775,838) stands in the middle of a long tunnel.", - "id": 28741 - }, - { - "image_path": "G:\\images\\combined\\002782_jpg.rf.0d8b674f2f103e5232cb78e208950d8e.jpg", - "response": "A man and a woman in hard hats looking at a building site.", - "id": 28742 - }, - { - "image_path": "G:\\images\\combined\\002783_jpg.rf.3bdaaecfcd1a513d5046fe7ff6247f6a.jpg", - "response": "In this image two workers are fixing the ceiling of a tunnel. They are both wearing yellow helmets and orange vests. The man on the left is holding a long tool in his right hand while the man on the right is leaning over and looking at something. There are some wires coming down from the ceiling and a red box on the left side of the image.", - "id": 28743 - }, - { - "image_path": "G:\\images\\combined\\002784_jpg.rf.552b0e68271b682315f26d7c2c9da662.jpg", - "response": "Two workers in blue uniforms and white helmets are discussing a blueprint. One worker is standing on a ladder in a yellow bathroom, showing the plan to the other worker.", - "id": 28744 - }, - { - "image_path": "G:\\images\\combined\\002785_jpg.rf.ab5b7acc4012beff27ab566d96fd2634.jpg", - "response": "a group of people walking through the snow", - "id": 28745 - }, - { - "image_path": "G:\\images\\combined\\002786_jpg.rf.34858ed2cad51d9c08db2f8e99becb07.jpg", - "response": "A group of men in hard hats walking together.", - "id": 28746 - }, - { - "image_path": "G:\\images\\combined\\002787_jpg.rf.633d70a97aa6b64ab8c0b11cbd0256c0.jpg", - "response": "A building with a sign that reads \"\u56db\u5ddd\u534e\u897f\u6587\u5316\u9986\" is being renovated with bamboo scaffolding. In front of the building, three workers are digging up debris from the ground. One of them is holding a shovel and a broom, while another is carrying a large piece of wood. A fourth worker is on the right side of the image, leaning against the scaffolding.", - "id": 28747 - }, - { - "image_path": "G:\\images\\combined\\002788_jpg.rf.0f90bcb282533c2ea6c03b7e79ec3d9b.jpg", - "response": "A group of linemen are running through a grassy field carrying equipment. They are all wearing green, yellow, and gray uniforms and yellow helmets. One of the linemen is carrying a black pole and another has his hand on a black pole. Another linemen is carrying a bag. In the background, there are several utility poles and power lines.", - "id": 28748 - }, - { - "image_path": "G:\\images\\combined\\002789_jpg.rf.14487eb5dfe31fa82063f0168df360b8.jpg", - "response": "A construction crew working on a steep hillside. They are building a metal structure on the side of the hill. There are several people working on the structure, some are standing on ladders and some are working on the structure itself. They are wearing safety harnesses and helmets.", - "id": 28749 - }, - { - "image_path": "G:\\images\\combined\\002790511b9920a5.jpg", - "response": "A group of people standing around a large sculpture.", - "id": 28750 - }, - { - "image_path": "G:\\images\\combined\\002790_jpg.rf.30b2290de30405966db6dee08d7944ab.jpg", - "response": "In the image there is a worker wearing a white helmet and orange work clothes. The worker is standing on some train tracks and is using a cutting tool to cut some steel. The tool is making a bright orange flame as it cuts through the steel. In the background there is a large red and yellow construction vehicle.", - "id": 28751 - }, - { - "image_path": "G:\\images\\combined\\002791_jpg.rf.23e1e5fcd45692023e649b8cfbc1134c.jpg", - "response": "The image shows a group of people dressed in work clothes and wearing hard hats. They are holding a large red flag with Chinese characters on it. Some of the people are also holding a large black ring. In the background, there are a few cars and a person with a red umbrella.", - "id": 28752 - }, - { - "image_path": "G:\\images\\combined\\002792_jpg.rf.ae9970a6cc9bf40ecd287c98db8d3dbd.jpg", - "response": "A man in a white shirt and a yellow hard hat is working on a power box.", - "id": 28753 - }, - { - "image_path": "G:\\images\\combined\\002793_jpg.rf.b2ee986622ea07d7c85136e0afccb51e.jpg", - "response": "A worker(610,170),(996,996) rides a bicycle(398,699),(995,996) past a cargo ship(1,146),(626,837) at a port in Lianyungang, east China's Jiangsu province.", - "id": 28754 - }, - { - "image_path": "G:\\images\\combined\\002794_jpg.rf.a54b2fb1afab521c711d12f2fc55c9dc.jpg", - "response": "a man in a yellow helmet and black jumpsuit is on a wire with a blue sky background", - "id": 28755 - }, - { - "image_path": "G:\\images\\combined\\002795_jpg.rf.69b106173d71c4444f409cdc0771f2bd.jpg", - "response": "A man wearing a hard hat and coveralls standing in a room filled with pipes.", - "id": 28756 - }, - { - "image_path": "G:\\images\\combined\\002796_jpg.rf.91bc625b455b4088756a02ddab583115.jpg", - "response": "A man in a yellow hard hat is working on a red piece of material. He is crouching down and using a tool.", - "id": 28757 - }, - { - "image_path": "G:\\images\\combined\\002797_jpg.rf.4cc15219631d7e4fb6fefe0740951c4b.jpg", - "response": "A worker in a white hard hat shines a flashlight at a blueprint.", - "id": 28758 - }, - { - "image_path": "G:\\images\\combined\\002798_jpg.rf.28e317f90f65e7a85ac27082a0c8abf9.jpg", - "response": "A worker(370,239),(693,996) in a hard hat climbing into a manhole.", - "id": 28759 - }, - { - "image_path": "G:\\images\\combined\\002799_jpg.rf.845d1987ff8276de042656c08b902c7e.jpg", - "response": "The image shows three workers in blue uniforms and hard hats installing a large pipe into the ground. They are all crouched down and appear to be focused on the task at hand. In the background, there is a building with a yellow wall and a chimney. The sky appears to be overcast.", - "id": 28760 - }, - { - "image_path": "G:\\images\\combined\\0027b41fcd4fa63d.jpg", - "response": "A group of people standing around a table with a white divider wall in the middle. There are several bottles on the table, including two blue ones and one green one. There are also several cups on the table, including two green ones. In the background, there is a microwave and a TV.", - "id": 28761 - }, - { - "image_path": "G:\\images\\combined\\0027bf6a5d8c382d.jpg", - "response": "A car with the trunk open showing a blue and white interior.", - "id": 28762 - }, - { - "image_path": "G:\\images\\combined\\0027c1c20a989257.jpg", - "response": "A casino marquee that says \"BLOH-TONIGHT\" is lit up at night.", - "id": 28763 - }, - { - "image_path": "G:\\images\\combined\\0027c29d6d10d65a.jpg", - "response": "A group of people walking down a street.", - "id": 28764 - }, - { - "image_path": "G:\\images\\combined\\0027cc0afe9b2a05.jpg", - "response": "A store front with a red and white wall.", - "id": 28765 - }, - { - "image_path": "G:\\images\\combined\\002800_jpg.rf.e50750d9209d2bdbe262bbe8642f5cae.jpg", - "response": "In the image there are two people standing around a pile of cement rubble. The man on the left is wearing an orange hard hat, a black jacket with yellow reflective strips, and black pants. The man on the right is wearing a black jacket and blue jeans. Both men are looking down at the pile of rubble.", - "id": 28766 - }, - { - "image_path": "G:\\images\\combined\\002801_jpg.rf.f94646bf326d816e9e97f5811c2a47a8.jpg", - "response": "a group of men in blue coveralls and hard hats are working on a large pipe", - "id": 28767 - }, - { - "image_path": "G:\\images\\combined\\002802_jpg.rf.040a12309b84ef96f7e3093a8259a050.jpg", - "response": "A group of people standing around a construction site that has scaffolding around it.", - "id": 28768 - }, - { - "image_path": "G:\\images\\combined\\002803_jpg.rf.5eb28d86d71ce47512444dc58e2e1393.jpg", - "response": "Two men in business suits and wearing hard hats shake hands in front of a construction site.", - "id": 28769 - }, - { - "image_path": "G:\\images\\combined\\002805_jpg.rf.9c0e06e2b0b793eac4df404e35089acc.jpg", - "response": "two engineers in front of a large shipping container", - "id": 28770 - }, - { - "image_path": "G:\\images\\combined\\002806_jpg.rf.e741136cfe905fddb86b4fee695a1b9b.jpg", - "response": "The image shows two construction workers near a yellow machine. They are wearing yellow helmets and work clothes in green and blue. They are holding a steel bar with both hands and discussing.", - "id": 28771 - }, - { - "image_path": "G:\\images\\combined\\002807_jpg.rf.595d5983f3e180e340df36c400800128.jpg", - "response": "A group of men in blue uniforms are working on a power pole. They are repairing a power line. There is a yellow vehicle behind the pole. There are two red gates in the background. One gate is on the right side and the other is on the left side. There is a black and yellow sign on the left side of the gate. The word \"prohibited\" is written in yellow on the sign.", - "id": 28772 - }, - { - "image_path": "G:\\images\\combined\\002808_jpg.rf.3ddc65c442718f415de44fa3fb3b8273.jpg", - "response": "A worker in a green uniform and yellow helmet standing in front of a grey box with a sticker that says danger.", - "id": 28773 - }, - { - "image_path": "G:\\images\\combined\\002810_jpg.rf.dad47f6e28722615919904d65f2f8963.jpg", - "response": "A group of people working on a construction site.", - "id": 28774 - }, - { - "image_path": "G:\\images\\combined\\002811_jpg.rf.1710c8c3b29ecbb3e68494b88db3e472.jpg", - "response": " Several men(120,165),(319,803)(298,220),(489,767)(561,326),(678,573)(237,254),(340,641) in blue hard hats(367,220),(443,283)(158,163),(258,241) are standing in a river(0,332),(997,999) with a rope(0,439),(959,999) and buoys(657,332),(711,435).", - "id": 28775 - }, - { - "image_path": "G:\\images\\combined\\002813_jpg.rf.927c5b43a983112fef8a9fa39e8d6430.jpg", - "response": "A worker is standing in a pool of red liquid. He is wearing a black shirt, a helmet, and safety goggles. He is holding a long stick that is almost as long as he is tall. The helmet and goggles are all black. The worker is also standing in a cloud of red sparks. The helmet and goggles are also protecting his face from the intense heat.", - "id": 28776 - }, - { - "image_path": "G:\\images\\combined\\002814_jpg.rf.7918fabeefac65c0b6cfa320d49ff837.jpg", - "response": "A group of men working on electricity poles in the middle of a river.", - "id": 28777 - }, - { - "image_path": "G:\\images\\combined\\002815_jpg.rf.6bf5b794a0cdce9d24906b775bdf615c.jpg", - "response": "A worker(473,566),(690,848) trapped in a manhole", - "id": 28778 - }, - { - "image_path": "G:\\images\\combined\\002816_jpg.rf.c5c1be2b7b45753298bd628704140210.jpg", - "response": "\u5de5\u7a0b\u5e08\u5728\u9ad8\u538b\u7ebf\u4e0a\u5de5\u4f5c\u3002\u5de5\u7a0b\u5e08\u5728\u767d\u96ea\u8986\u76d6\u7684\u9ad8\u538b\u7ebf\u4e0a\u5de5\u4f5c\u3002\u7535\u529b\u5de5\u4eba\u5728\u51b0\u51bb\u7684\u6811\u68a2\u4e0a\u4f5c\u4e1a\u3002\u7535\u529b\u5de5\u4eba\u5728\u79ef\u96ea\u7684\u7535\u5854\u4e0a\u5b89\u88c5\u8bbe\u5907\u3002", - "id": 28779 - }, - { - "image_path": "G:\\images\\combined\\002817_jpg.rf.d527d9c39828a22d46ec5ec17441347d.jpg", - "response": "A construction worker wearing a blue shirt and a red helmet is working with concrete bricks. Some bricks are stacked neatly on the ground while others are placed on a yellow table. In the background, another worker is working on a scaffolding. There are also a few other people in the scene but they are not working with concrete. A yellow table is placed in the middle of the scene and a yellow box is placed on the right side of the table. The worker is looking at the bricks and seems to be organizing them.", - "id": 28780 - }, - { - "image_path": "G:\\images\\combined\\002818_jpg.rf.5cf313640814d01ba10ada03d7ebc1b1.jpg", - "response": "A group of men working on a pole.", - "id": 28781 - }, - { - "image_path": "G:\\images\\combined\\002819_jpg.rf.f49ed169454cc05fb8e67908e2bddc41.jpg", - "response": "A group of men in hard hats walking on a construction site.", - "id": 28782 - }, - { - "image_path": "G:\\images\\combined\\002820_jpg.rf.f334cfc1503489d5cee11abcd000b9f1.jpg", - "response": "A group of people working on a construction site.", - "id": 28783 - }, - { - "image_path": "G:\\images\\combined\\002821_jpg.rf.8ab00df119a1659a39476d050d825ba7.jpg", - "response": "A group of men standing next to a blue wall.", - "id": 28784 - }, - { - "image_path": "G:\\images\\combined\\002822_jpg.rf.c2af7c84273c8fb4d8b01a2247bdf6a2.jpg", - "response": "A woman wearing a green coat and a red helmet is seen in the image holding a fire extinguisher. She is in the process of using the extinguisher on a fire. The fire extinguisher is red and white in color. There are several other people in the image, some of them are wearing red helmets and coats. They are all standing around the woman and the fire. The background shows a building under construction.", - "id": 28785 - }, - { - "image_path": "G:\\images\\combined\\002823_jpg.rf.da8414d78c58ef2788ba29e3fa7205f3.jpg", - "response": "A group of men looking at a map or blueprint.", - "id": 28786 - }, - { - "image_path": "G:\\images\\combined\\002824_jpg.rf.ffc93e2f72f932be0c5d9c71d4192aa4.jpg", - "response": "A group of three men standing on a construction site.", - "id": 28787 - }, - { - "image_path": "G:\\images\\combined\\002825_jpg.rf.9332487a3c351440e68cd9fa49618d3d.jpg", - "response": "A group of three construction workers are working on a building. One worker is sitting on a ladder, another worker is standing on a platform and the third worker is working on a metal beam. They are all wearing yellow and orange hard hats and safety vests.", - "id": 28788 - }, - { - "image_path": "G:\\images\\combined\\002826_jpg.rf.cb2264dbe30646f75e20bbec2a204f05.jpg", - "response": "A group of men in blue uniforms and hard hats are working on a power pole. They are all wearing blue uniforms and hard hats. One man is sitting on the ground and holding a tool, while the others are standing around him. There is a large transformer in the background.", - "id": 28789 - }, - { - "image_path": "G:\\images\\combined\\002827_jpg.rf.fd914ee18d01448bebbffe4290364009.jpg", - "response": "In the image there is a group of people standing in a factory. They are all wearing hard hats and some are wearing grey and yellow clothing. They are standing in front of a large industrial machine that has a red and black crate in front of it. There are two sets of stairs leading up to the left of the image and a pile of dirt and debris to the far left. In the background behind the group there is a large industrial machine with a door that is open and a fire burning in the distance.", - "id": 28790 - }, - { - "image_path": "G:\\images\\combined\\002828_jpg.rf.9c705bfc6b312145c02f4f6f2764f4ca.jpg", - "response": "A man wearing a yellow hard hat and a black jacket is holding a blueprint in front of a construction site. There are several other people scattered around the site, some of them are standing on scaffolding, and one is wearing a white hard hat. There are three cranes operating in the background.", - "id": 28791 - }, - { - "image_path": "G:\\images\\combined\\002829_jpg.rf.92e57119d91423a2f4dcf60384981d63.jpg", - "response": "A man wearing a yellow hard hat is holding a piece of paper with a building plan on it. He is looking at the construction site where several large cranes are working.", - "id": 28792 - }, - { - "image_path": "G:\\images\\combined\\002830_jpg.rf.6a0797759655e29fb4e8f948b998dae7.jpg", - "response": "The photo shows a group of people standing under a sign that reads \"Sichuan Pengxi Foreign Language School\". The people are standing in front of a building with a large gate and a sign that reads \"Welcome\". Some of the people are wearing ties and the whole scene has a very official feel to it.", - "id": 28793 - }, - { - "image_path": "G:\\images\\combined\\002831_jpg.rf.8d7dce692374ba2d15e74143fea302d6.jpg", - "response": "A worker wearing a yellow helmet is welding a pipe in a construction site. The worker is squatting on the ground and the welding torch is emitting sparks. In the background, there is a blue and white building and a yellow excavator is parked on the left. The ground is covered with brown soil and some rocks are scattered around.", - "id": 28794 - }, - { - "image_path": "G:\\images\\combined\\002832_jpg.rf.4bf509662675e63ac1404b9acef7dc2c.jpg", - "response": "A group of men working on a piece of equipment.", - "id": 28795 - }, - { - "image_path": "G:\\images\\combined\\002833_jpg.rf.db6aa5deeafbb8ffe9e9635768c02aa0.jpg", - "response": "Four construction workers in safety gear standing in a construction site.", - "id": 28796 - }, - { - "image_path": "G:\\images\\combined\\002834_jpg.rf.ee0351b231bb8b0284d3ad3e0955bd06.jpg", - "response": "In the image two workers are repairing a power line. They are wearing yellow helmets and black uniforms. The workers are on a tower and one of them is holding a tool in his hand.", - "id": 28797 - }, - { - "image_path": "G:\\images\\combined\\002836_jpg.rf.ce25ea276fe694ea680c446366605dbb.jpg", - "response": "A man in a yellow shirt and red hat is working on a large red pipe. The pipe is on the ground and the man is leaning over it. There are also four other red pipes on the wall next to the man.", - "id": 28798 - }, - { - "image_path": "G:\\images\\combined\\002837_jpg.rf.372eb1b6435909451e005b0c196c5b1b.jpg", - "response": "A young man wearing a high visibility vest and a hard hat is standing in front of a wheelbarrow. He is smiling at the camera.", - "id": 28799 - }, - { - "image_path": "G:\\images\\combined\\002838_jpg.rf.11db65218681db0e026fb02d0d10383e.jpg", - "response": "A group of men in red work uniforms and yellow hard hats are working on a large piece of equipment. They are all holding different tools and are focused on the task at hand.", - "id": 28800 - }, - { - "image_path": "G:\\images\\combined\\002839_jpg.rf.4958a1d0c24ae6b7a75b6c9dc49407b1.jpg", - "response": "The image shows a group of workers working on a streetlight. The streetlight is a tall, grey pole with a white, rectangular base. The workers are wearing blue uniforms and helmets. They are installing a metal frame on the streetlight. In the background, there are buildings and a truck.", - "id": 28801 - }, - { - "image_path": "G:\\images\\combined\\002840_jpg.rf.44a9fb20330b60ca4652e9aceb61ba97.jpg", - "response": "A group of men standing around a construction site wearing hard hats.", - "id": 28802 - }, - { - "image_path": "G:\\images\\combined\\002842_jpg.rf.2d54cdea82646642f99863885008b7f5.jpg", - "response": "The image shows a construction site with a large truck unloading concrete. There are several workers standing around the truck and the concrete. Some of them are using shovels to scoop the concrete out of the truck. In the background, there is a mountain of concrete.", - "id": 28803 - }, - { - "image_path": "G:\\images\\combined\\002843_jpg.rf.09f943b7d76c457a70b58003b46a5848.jpg", - "response": "A group of linemen from the electric company are working on a power line in the rain. They are all wearing safety gear and are standing on and around a pole. One of the linemen is using a tool to work on the power line.", - "id": 28804 - }, - { - "image_path": "G:\\images\\combined\\002844_jpg.rf.d17f745be4290fe534ee6f33671b7a8e.jpg", - "response": "A couple of men in the air fixing a power line in the snow.", - "id": 28805 - }, - { - "image_path": "G:\\images\\combined\\002845_jpg.rf.02d763549e444b03c6880169a9635607.jpg", - "response": "a group of men standing around a construction site", - "id": 28806 - }, - { - "image_path": "G:\\images\\combined\\002846_jpg.rf.42563795e1145b62ee45e75a7706b5e9.jpg", - "response": "A group of men are working on a power box in a green field. They are wearing blue hard hats and work clothes. There are many power lines around them and the sky is clear.", - "id": 28807 - }, - { - "image_path": "G:\\images\\combined\\002847_jpg.rf.373295b432722687b3de24cb1ad8883a.jpg", - "response": "A group of people standing around a scaffolding.", - "id": 28808 - }, - { - "image_path": "G:\\images\\combined\\002848_jpg.rf.d522c7a9057f97efa40bb8f59337442c.jpg", - "response": "The image shows three men working on an electricity pylon. They are wearing white and grey tops and are suspended from harnesses. They are on a red ladder which is attached to the pylon. There are several buckets hanging from the pylon and the sky is blue.", - "id": 28809 - }, - { - "image_path": "G:\\images\\combined\\002849_jpg.rf.f908aaec83345b79c492d349902891df.jpg", - "response": "A group of men in yellow safety jackets are on a power line.", - "id": 28810 - }, - { - "image_path": "G:\\images\\combined\\002850_jpg.rf.7d9b172739ddf35c373e3aa3aafb3356.jpg", - "response": "A woman is cleaning the floor with a broom in a room with white walls and a window.", - "id": 28811 - }, - { - "image_path": "G:\\images\\combined\\002851_jpg.rf.447e6e1e54e98085dc5f953dcf610746.jpg", - "response": "a group of men standing around each other", - "id": 28812 - }, - { - "image_path": "G:\\images\\combined\\002852_jpg.rf.555dcabecd2a0d47a4f7266c965665c6.jpg", - "response": "a group of men standing in front of a bulldozer", - "id": 28813 - }, - { - "image_path": "G:\\images\\combined\\002854_jpg.rf.991989eb76020d6a998d4a5f1dce8033.jpg", - "response": "In the image two workers in red are working on an oil rig. They are both wearing red helmets and the worker on the left is also wearing a red shirt. They are working on a valve that is yellow and red. In the background there is a blue sky with some clouds.", - "id": 28814 - }, - { - "image_path": "G:\\images\\combined\\002855_jpg.rf.2aff06d6283343ce5f133ac2855019c4.jpg", - "response": "A group of people working on a building.", - "id": 28815 - }, - { - "image_path": "G:\\images\\combined\\002856_jpg.rf.9f0a0b1c1e788f7dc2c2e881e27da0b2.jpg", - "response": "a group of people wearing hard hats", - "id": 28816 - }, - { - "image_path": "G:\\images\\combined\\002857_jpg.rf.a2b0f5621bc8d574cf280802201060b1.jpg", - "response": "A group of men working on a pipe at night.", - "id": 28817 - }, - { - "image_path": "G:\\images\\combined\\002858_jpg.rf.a6f51c5303070841342dd157ce7b376f.jpg", - "response": "The Changde Industrial Park is located in the high-tech zone of Changde, and is the largest industrial park in the Changde area. The park covers an area of 1000 acres, with planned investment of 10 billion yuan. The park is divided into seven areas: electronic information, new materials, new energy, biological medicine, modern service, modern agriculture, and logistics.", - "id": 28818 - }, - { - "image_path": "G:\\images\\combined\\002859_jpg.rf.b38ce7b84a4984e9f94bfdee41348b1c.jpg", - "response": "In the image two men are wearing yellow hard hats and standing in a room filled with metal pipes. They are looking at a clipboard and discussing something.", - "id": 28819 - }, - { - "image_path": "G:\\images\\combined\\002860_jpg.rf.5b1b59b6be6fabeb7bc8ee097400e308.jpg", - "response": "A group of people working on a bridge", - "id": 28820 - }, - { - "image_path": "G:\\images\\combined\\002861_jpg.rf.9267969035ecd40c978c7cb8c14a176a.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are building a large building with many floors. In the background, there are other workers and a crane. The sky is blue and there are no clouds.", - "id": 28821 - }, - { - "image_path": "G:\\images\\combined\\002862_jpg.rf.e9327da0d0c47ed3a163eb7b4beba0db.jpg", - "response": "The image shows the scene of the April 11, 2009, Wenzhou bridge collapse in Wenzhou, Zhejiang Province, China. The photo shows the bridge's shattered remains in the water. In the foreground, three workers in yellow hard hats are using some equipment. One of them is sitting on the ground, another one is standing to the left, and the third one is standing to the right. They seem to be in the process of repairing something.", - "id": 28822 - }, - { - "image_path": "G:\\images\\combined\\002863_jpg.rf.8743cbc363452e3e1a23de724316f1b4.jpg", - "response": "A man is leaning on a metal ladder. He is wearing a blue shirt, a hard hat, and has a yellow hard hat on his head. He is also wearing a yellow uniform. He has his hand under his chin and is smiling at the camera. The background is white.", - "id": 28823 - }, - { - "image_path": "G:\\images\\combined\\002864_jpg.rf.bef1279b39c2386d1e4f07d7da062126.jpg", - "response": "In the image there is a man wearing a red jacket and a red hat, likely a hard hat, working on a power line. The man is on a ladder and appears to be focused on his work. The sky above the man is covered in clouds and it appears to be a cold day. The power line that the man is working on is covered in ice and snow, indicating that it has been snowing recently.", - "id": 28824 - }, - { - "image_path": "G:\\images\\combined\\002865_jpg.rf.8aabd543dc24a063dd158a35685e9824.jpg", - "response": "A dozer is pushing snow in a parking lot.", - "id": 28825 - }, - { - "image_path": "G:\\images\\combined\\002866_jpg.rf.ba705df3dbe5e7f8a911fab292c05f6e.jpg", - "response": "A group of workers in orange jumpsuits and white hard hats are working on a bridge. They are standing on a lift and working on a metal frame.", - "id": 28826 - }, - { - "image_path": "G:\\images\\combined\\002867_jpg.rf.05b0bb90eb795d1fbeb0bd25633185cc.jpg", - "response": "a group of people standing around a red table", - "id": 28827 - }, - { - "image_path": "G:\\images\\combined\\002868_jpg.rf.335bd9bb4d4334fa361e7917c9bd91f9.jpg", - "response": "A group of men standing around a field.", - "id": 28828 - }, - { - "image_path": "G:\\images\\combined\\002870_jpg.rf.9a7f22eda5d5a47bd888923de594c238.jpg", - "response": "In the image there is a person wearing a black shirt with a yellow hard hat, kneeling on the ground next to a large metal cutting machine. They are operating the machine and cutting through a metal bar. There is a pile of steel rods in the background.", - "id": 28829 - }, - { - "image_path": "G:\\images\\combined\\002871_jpg.rf.52309e1683dc9f61c6c50f50edcff869.jpg", - "response": "The image shows a construction site with two workers visible. They are wearing red shirts and white hats. In the background, there is a fence, a building under construction, and several large steel pipes. There are also many deformed steel bars in the foreground. The photo is accompanied by a\u62cd\u6444\u8bf4\u660e:\u5de5\u4eba\u4eec\u6b63\u5728\u5207\u5272\u94a2\u7b4b and a\u62cd\u6444\u65f6\u95f4:2014.08.08.", - "id": 28830 - }, - { - "image_path": "G:\\images\\combined\\002872_jpg.rf.5af2dc4dc07cd9b04d5f5563b2300deb.jpg", - "response": "A group of workers fixing a black water pipe in the ground.", - "id": 28831 - }, - { - "image_path": "G:\\images\\combined\\002873_jpg.rf.1f63bdad5beb085397ca7cb2e3db6a81.jpg", - "response": "A worker is seen in a blue jumpsuit and a blue hat, working on a power line. He is standing on a metal platform, installing or fixing the line. He is wearing a tool belt with various tools in it. The sky is grey and overcast.", - "id": 28832 - }, - { - "image_path": "G:\\images\\combined\\002874_jpg.rf.d119626b914324b03c54d23ebda8e8e9.jpg", - "response": "A group of workers are working on a construction site.", - "id": 28833 - }, - { - "image_path": "G:\\images\\combined\\002875_jpg.rf.30b31ff28fb2dc5570523d08b060752f.jpg", - "response": "a group of people standing in front of a unfinished building", - "id": 28834 - }, - { - "image_path": "G:\\images\\combined\\002876_jpg.rf.1939bf8f0dfca9025fb3c489d23bf801.jpg", - "response": "A group of three men working on a project in a dark room. They are all wearing hard hats and one man is kneeling down. They are working on a project that involves pipes and a light is shining on the man kneeling down.", - "id": 28835 - }, - { - "image_path": "G:\\images\\combined\\002877_jpg.rf.9b1422f9907357f7d24d1e0822ab6d58.jpg", - "response": "A worker in a green shirt and blue hat is holding three different colored wires and is working on an electrical box.", - "id": 28836 - }, - { - "image_path": "G:\\images\\combined\\002878_jpg.rf.5256359df9ca2c628751694651d6f3b5.jpg", - "response": " A worker(297,227),(687,966) is seen in a large metal cylinder.", - "id": 28837 - }, - { - "image_path": "G:\\images\\combined\\002880_jpg.rf.b9dc1b1371bd1725b2c8e45f941aaa6e.jpg", - "response": "In the image there are two people working on a brick wall. They are both wearing blue hard hats and are constructing a brick wall. The wall is made of many different colored bricks and is being built on a concrete foundation. The two workers are using a level to make sure the bricks are straight.", - "id": 28838 - }, - { - "image_path": "G:\\images\\combined\\002881_jpg.rf.6fb3ce1aa39d6ab53ddbf5aa96dc6188.jpg", - "response": "Three construction workers(277,149),(513,609)(546,217),(862,916)(498,231),(693,649) sitting on a building site.", - "id": 28839 - }, - { - "image_path": "G:\\images\\combined\\002882_jpg.rf.49025b361d25870c2b59584e0e3fbed0.jpg", - "response": "A worker in a grey jacket and red helmet is working on a large piece of steel. They are holding a large circular piece of steel and using a tool to work on it.", - "id": 28840 - }, - { - "image_path": "G:\\images\\combined\\002883_jpg.rf.e965e228cff31543b3324021e88e6140.jpg", - "response": "A group of men walking across a dirt field.", - "id": 28841 - }, - { - "image_path": "G:\\images\\combined\\002885_jpg.rf.1a522b4db6f9b7108a29367fbb6d4718.jpg", - "response": "A construction worker in a red hard hat is looking up at a large metal structure. He is holding a device in his hand.", - "id": 28842 - }, - { - "image_path": "G:\\images\\combined\\002886_jpg.rf.d1251a506797e44c2e7cd895029df0fd.jpg", - "response": "An engineer in a blue uniform and a red helmet sits on the ground in front of a dry grass field and a mountain. He is holding a tool in each hand.", - "id": 28843 - }, - { - "image_path": "G:\\images\\combined\\002887_jpg.rf.c96f5d9eb88402307737d2d87db2f112.jpg", - "response": "The photo shows a group of workers in yellow and orange vests standing on the right side of the image, facing a tunnel that is under construction. In the foreground, there is a truck on the left side of the image, and a few people walking on the right side of the image. In the background, there is a mountain.", - "id": 28844 - }, - { - "image_path": "G:\\images\\combined\\002888_jpg.rf.7de20730bdea8e7bbb893eb71f3863bd.jpg", - "response": "In the image, a worker is seen wearing a white helmet and is in the process of climbing a ladder that is placed against a large power pole. The power pole has many electrical components attached to it. The background shows a wall painted red and white.", - "id": 28845 - }, - { - "image_path": "G:\\images\\combined\\002889_jpg.rf.1fee2af19c2f80dcf9b9a76bf2c283bb.jpg", - "response": "A group of workers fixing a power box in a field.", - "id": 28846 - }, - { - "image_path": "G:\\images\\combined\\002890_jpg.rf.3a29db4240f0335f5ad5119ebc2ddf4c.jpg", - "response": "A construction worker in a red hard hat and yellow safety vest stands in front of a building under construction. The worker is wearing a red bracelet with the words \"\u96c4\u5b89\u7279\u52e4\" in yellow. The worker is also wearing a blue short-sleeved shirt and a white apron. The worker is gesturing with his thumbs up.", - "id": 28847 - }, - { - "image_path": "G:\\images\\combined\\002891_jpg.rf.baf5299bf136c8534079e877cf53697f.jpg", - "response": "An electrician in a red uniform and white hard hat is working on a power line next to a river.", - "id": 28848 - }, - { - "image_path": "G:\\images\\combined\\002892_jpg.rf.967a0f1e1e1ee54285f00895b7b6faa7.jpg", - "response": "A group of four engineers in a factory setting. One engineer is a woman and she is holding some blueprints. Another engineer is holding a clipboard. They are all wearing hard hats.", - "id": 28849 - }, - { - "image_path": "G:\\images\\combined\\002894_jpg.rf.22aa6a2cff2eccd76a524ed99f904dad.jpg", - "response": "A group of three people walking down a street.", - "id": 28850 - }, - { - "image_path": "G:\\images\\combined\\002895_jpg.rf.62fd373b20433bfa4fe0fba4a9b78e59.jpg", - "response": "A group of men in blue work clothes and white hard hats stand around a large pipe. Some of them are wearing suits and ties.", - "id": 28851 - }, - { - "image_path": "G:\\images\\combined\\002896_jpg.rf.3dedc0b302f2e7a93f75adfc6c270073.jpg", - "response": "In the image there are two workers wearing yellow helmets and work clothes. They are working in a construction site filled with debris and white bags. One worker is using a yellow helmet and a yellow tool while the other worker is using a blue helmet and a purple tool. There is also a white steam coming from the debris.", - "id": 28852 - }, - { - "image_path": "G:\\images\\combined\\002897_jpg.rf.714d5ed222c08f2a89f6db83fcb8796f.jpg", - "response": "In the image two workers are seen repairing an electricity tower. They are wearing blue and yellow color uniforms. The sky is blue and there are a few clouds. The workers are holding safety equipment like belts and are wearing helmets.", - "id": 28853 - }, - { - "image_path": "G:\\images\\combined\\002898_jpg.rf.1c3c75d44dd876c779f38da050a72727.jpg", - "response": "A group of men working on a brick wall.", - "id": 28854 - }, - { - "image_path": "G:\\images\\combined\\002899_jpg.rf.ef6067a54e43c3b6bae8563bd7f38e90.jpg", - "response": "Men working on a construction site with large buildings in the background.", - "id": 28855 - }, - { - "image_path": "G:\\images\\combined\\0028a855a27cf5ce.jpg", - "response": "A bathroom with a roll of toilet paper on a silver holder.", - "id": 28856 - }, - { - "image_path": "G:\\images\\combined\\0028cfeb1d0ec7ce.jpg", - "response": "Two children standing on the side of the road holding small umbrellas.", - "id": 28857 - }, - { - "image_path": "G:\\images\\combined\\0028f4e42f29ff21.jpg", - "response": "A white and red long sleeve rugby shirt with the letter O2 on the front.", - "id": 28858 - }, - { - "image_path": "G:\\images\\combined\\002900_jpg.rf.5c6b3284df898d2662d67c2d819d954e.jpg", - "response": "A group of workers in a tunnel.", - "id": 28859 - }, - { - "image_path": "G:\\images\\combined\\002901d9d194c4fb.jpg", - "response": "A blue and white car with a British flag on the back.", - "id": 28860 - }, - { - "image_path": "G:\\images\\combined\\002901_jpg.rf.28489669190813140e524998718ca035.jpg", - "response": "The image shows a snowy scene with three men working on a power line. They are all dressed in black and yellow winter gear and are standing on a ladder and on the ground. The ladder they are standing on is positioned next to a large metal pole and a power box. The ground around them is covered in snow.", - "id": 28861 - }, - { - "image_path": "G:\\images\\combined\\002903_jpg.rf.9a90efe85a432529dc2e155e33834184.jpg", - "response": "A man on a ladder working on power lines.", - "id": 28862 - }, - { - "image_path": "G:\\images\\combined\\002904_jpg.rf.6408f1936e42565726d4f955e874d257.jpg", - "response": "People(22,334),(109,663)(372,310),(438,676)(433,319),(520,677)(220,322),(286,659)(279,319),(348,665)(546,323),(609,673)(327,343),(386,673)(516,323),(569,671)(395,319),(446,674) standing on a bridge(1,397),(997,997)", - "id": 28863 - }, - { - "image_path": "G:\\images\\combined\\002905_jpg.rf.04a8aa7bc7c5d92d8e30bb6b96041f64.jpg", - "response": "A man in a hard hat and coveralls stands on a metal beam in a warehouse.", - "id": 28864 - }, - { - "image_path": "G:\\images\\combined\\002906_jpg.rf.a6a7bb6e60781f9bcad7cd0a48a1c45f.jpg", - "response": "A man in a red hard hat is using a machine to take measurements in a field.", - "id": 28865 - }, - { - "image_path": "G:\\images\\combined\\002907_jpg.rf.3ba230c882bc4a701444e5487cc59319.jpg", - "response": "The image shows two workers in blue uniforms and white helmets, one of them is on the left and the other one is on the right, they are repairing the power supply equipment on a high place.", - "id": 28866 - }, - { - "image_path": "G:\\images\\combined\\002908_jpg.rf.faf09a7732705e9912a5d958d3e2e37b.jpg", - "response": "A group of four men in a construction site wearing white and yellow helmets. They are standing on the concrete ground with a lot of steel bars in front of them. There are also two cranes in the background.", - "id": 28867 - }, - { - "image_path": "G:\\images\\combined\\002909_jpg.rf.e90887239fea22fa310d05987e0e2f4f.jpg", - "response": "In the image a man is working on some power lines. He is wearing a white helmet and green work clothes. He is holding a tool in his hand and there is a power line support in the middle of the picture. The sky is a clear blue and the whole scene has a sense of danger about it.", - "id": 28868 - }, - { - "image_path": "G:\\images\\combined\\00290_jpg.rf.12551c9b70f0bc9b52d73cbdb54130bc.jpg", - "response": "A man in a white hard hat holding rolled up plans in front of a graffitied wall.", - "id": 28869 - }, - { - "image_path": "G:\\images\\combined\\00290_jpg.rf.86b32aed7071360e2752e1545b585991.jpg", - "response": "A man wearing a white hard hat and a black coat standing in front of a concrete wall with graffiti on it. The man is holding a rolled up piece of white paper.", - "id": 28870 - }, - { - "image_path": "G:\\images\\combined\\002911_jpg.rf.0b1d0a14fe4c4ca64b61cdd923b03616.jpg", - "response": "a group of men standing around each other", - "id": 28871 - }, - { - "image_path": "G:\\images\\combined\\002912_jpg.rf.a7e879879ba7d4db31d143da3c48429a.jpg", - "response": "Two men in red\u5b89\u5168\u5e3d are standing on some stairs.", - "id": 28872 - }, - { - "image_path": "G:\\images\\combined\\002913_jpg.rf.7dc07c0e4dcb5a067071d13abc23b0a9.jpg", - "response": "A large bridge structure under construction with a group of people working on it. They are standing on various ladders and scaffolding around the structure.", - "id": 28873 - }, - { - "image_path": "G:\\images\\combined\\002914_jpg.rf.a31f8da3be802dba3a9dd42a1b49ba7c.jpg", - "response": "A group of workers in protective gear are standing under a large tree. They are working together to move the tree which is wrapped in a green tarp. There are two ladders leaning against the wall and a tire on the ground. The workers are wearing hard hats and one of them is wearing a yellow vest.", - "id": 28874 - }, - { - "image_path": "G:\\images\\combined\\002915_jpg.rf.0543e72aff5e1b52fd93b03d7183e250.jpg", - "response": "A group of people standing on a construction site wearing high vis vests and hard hats.", - "id": 28875 - }, - { - "image_path": "G:\\images\\combined\\002916_jpg.rf.c398a26ae9a0b90c22b7db446bd58e12.jpg", - "response": "A train is passing over a railway bridge that is under construction. Some workers are standing on the rails and one of them is wearing a yellow helmet. Another worker is holding a yellow helmet in his hand. There are some cranes on the left side of the image.", - "id": 28876 - }, - { - "image_path": "G:\\images\\combined\\002917_jpg.rf.cb3bcdfa3f9f73ea01fff7858d5d0ab7.jpg", - "response": "A man in a hard hat(244,265),(384,433) and white gloves(482,376),(581,498) is using a crowbar(428,455),(564,724) to pry open a brick wall(348,5),(996,999).", - "id": 28877 - }, - { - "image_path": "G:\\images\\combined\\002918_jpg.rf.315c38192622c0d12590e0aa75ac48d2.jpg", - "response": "In the image there is a person wearing a hard hat and orange and white safety jacket standing inside a factory. The factory worker is operating heavy machinery that is spitting out sparks. The sparks are coming from the machinery and are covering the entire right half of the image. There is also a large metal cylinder to the left of the person that is covered in sparks.", - "id": 28878 - }, - { - "image_path": "G:\\images\\combined\\002919_jpg.rf.eca18c346f68e9bcf2ea93ce68e446b1.jpg", - "response": "A worker in a red uniform and a hardhat stands in a large tunnel. The tunnel is dirty and has a large circular opening at the far end, which looks like a well. The worker is standing on the right side of the image, wearing a red shirt with a white logo on the left side and a yellow stripe on the right side. He is also wearing a red hardhat. The worker is looking into the tunnel, which is filled with light.", - "id": 28879 - }, - { - "image_path": "G:\\images\\combined\\00291_jpg.rf.432f15a9aba4b29f362084b15b9a60c3.jpg", - "response": "In the image there is a person wearing a white helmet and a yellow vest. They is standing in front of a laptop that is placed on a suitcase. The person seems to be working on a construction site.", - "id": 28880 - }, - { - "image_path": "G:\\images\\combined\\002920_jpg.rf.4e48719a999ed198b5a1bc2849102706.jpg", - "response": "a group of men standing around talking", - "id": 28881 - }, - { - "image_path": "G:\\images\\combined\\002921_jpg.rf.82ff54f9f5a693185fdbf74234486e25.jpg", - "response": "A man in a yellow hard hat is working on a power box.", - "id": 28882 - }, - { - "image_path": "G:\\images\\combined\\002922_jpg.rf.2d9a431cb2f2ec2f92f5d64e256e009f.jpg", - "response": "A worker stands in the debris of a partially collapsed pedestrian bridge in China.", - "id": 28883 - }, - { - "image_path": "G:\\images\\combined\\002923_jpg.rf.602c94f6c129f415a2ceafdc6341e93a.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing yellow and orange safety vests and hard hats. One man is taller and has a beard, the other man is shorter. They are shaking hands, and the taller man is looking at the shorter man. The shorter man is also holding a set of plans. They are standing in front of a fence and in the background, there is a shipping container and a red crane.", - "id": 28884 - }, - { - "image_path": "G:\\images\\combined\\002924_jpg.rf.5f7fb7560d6239c1166bcc12345c9b77.jpg", - "response": "The image shows two men wearing hard hats, one red and one yellow, sitting on the ground. They are both wearing orange shirts. One of the men is holding a walkie talkie in his right hand. They are in a construction area with metal bars in the background.", - "id": 28885 - }, - { - "image_path": "G:\\images\\combined\\002925_jpg.rf.e29993124785d4e65dbab2d303c27080.jpg", - "response": "Four men working on a construction site.", - "id": 28886 - }, - { - "image_path": "G:\\images\\combined\\002926_jpg.rf.52248416623d7600c2566447eb2ca048.jpg", - "response": "A group of men standing next to each other wearing hard hats and work clothes.", - "id": 28887 - }, - { - "image_path": "G:\\images\\combined\\002927_jpg.rf.b497a26ffa470ec1e3ac0c7011204bb6.jpg", - "response": "A worker in an orange jumpsuit and blue hard hat is kneeling down next to a tree covered in ice.", - "id": 28888 - }, - { - "image_path": "G:\\images\\combined\\002928_jpg.rf.c330e47d66962e8ca1d5d916724c4cb5.jpg", - "response": "A group of four men in hard hats stand on a construction site looking at blueprints. In the background there is a ship being built and a mountain.", - "id": 28889 - }, - { - "image_path": "G:\\images\\combined\\002929_jpg.rf.1bdc671f0c3c836348fe8be233f45fee.jpg", - "response": "The image shows three men working on a construction site. They are all wearing orange hard hats and are focused on their tasks. The man in the foreground is crouched down and is working on a piece of wood. The man in the middle is standing and is working on something in the background. The man on the far right is also standing and is working on something. There are several other people in the background, some of them are further away and some are partially obscured. The sky is blue and there are no clouds in the sky.", - "id": 28890 - }, - { - "image_path": "G:\\images\\combined\\002931_jpg.rf.bd3679bcad2979d9531b97cd44b26933.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow helmets and reflective vests. Some of them are using tools such as shovels and hammers. In the background, there is a partially constructed building with a red structure on top. There are also a few people in the distance wearing blue and white clothes.", - "id": 28891 - }, - { - "image_path": "G:\\images\\combined\\002932_jpg.rf.788a1d5f5fc56658cbdd7eba6c906b4f.jpg", - "response": "A group of workers are working on a construction site. They are wearing hard hats and uniforms. Some of them are using tools such as crowbars and hammers. They are building a structure that resembles a wall or a bridge support. The sky is grey and overcast.", - "id": 28892 - }, - { - "image_path": "G:\\images\\combined\\002933_jpg.rf.9e8661473aa16e99ea318480912859cc.jpg", - "response": "A man in a yellow vest standing next to a wall.", - "id": 28893 - }, - { - "image_path": "G:\\images\\combined\\002934_jpg.rf.24de25c1ce2a32c94be45ed2ee21f11b.jpg", - "response": "A man is being lowered by a crane with a man holding the end of the crane. The man being lowered is wearing a black shirt and has a stick in his hand.", - "id": 28894 - }, - { - "image_path": "G:\\images\\combined\\002935_jpg.rf.8bdd414e2d51573cee8cf654fc6740c4.jpg", - "response": "A group of firefighters are standing outside a factory. They are wearing yellow helmets and black uniforms. In the background, there is a large building with a white wall and a brown roof. There is smoke coming out of the building and a ladder is placed against it. To the left of the building, there is a large white tank. In the foreground, there are green plants and a tree.", - "id": 28895 - }, - { - "image_path": "G:\\images\\combined\\002936_jpg.rf.eadb881e6a405e9b7a352bbdfc581ed5.jpg", - "response": "In the image there is a group of people wearing hard hats and blue or yellow work clothes. Some of them are holding a green bag of fruit, possibly watermelons. A man in a white shirt and black pants is handing out these bags of fruit to the workers. The background is a blue sky with some white clouds.", - "id": 28896 - }, - { - "image_path": "G:\\images\\combined\\002937_jpg.rf.38576e85402e85702c819f858e50918e.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 28897 - }, - { - "image_path": "G:\\images\\combined\\002938_jpg.rf.f997c255c133f1e9133ca3def60b626c.jpg", - "response": "Some people are working on a construction site. There is a yellow tower with drills on the bottom. A man is working on a large drill that is stuck in the ground. Another man is wearing a red hat and holding a yellow stick. There is a blue fence in the background. A yellow building is also visible in the background.", - "id": 28898 - }, - { - "image_path": "G:\\images\\combined\\002939_jpg.rf.dc1f7e806bfd9ecf773280b18b9d09c8.jpg", - "response": "A worker is spraying water inside a tunnel.", - "id": 28899 - }, - { - "image_path": "G:\\images\\combined\\002940_jpg.rf.954d113912280b23eced13dc0963b69a.jpg", - "response": "A group of people standing around each other", - "id": 28900 - }, - { - "image_path": "G:\\images\\combined\\002941_jpg.rf.eebb1ca01d2e14082bcd5b0f15bcc9cf.jpg", - "response": "A man pushing a cart of bricks", - "id": 28901 - }, - { - "image_path": "G:\\images\\combined\\002942_jpg.rf.5a39406addc8323be6700e4734a8165a.jpg", - "response": " A worker(400,233),(938,997) is using a machine to drill into a wall of rock(3,4),(999,995)", - "id": 28902 - }, - { - "image_path": "G:\\images\\combined\\002943_jpg.rf.d5f5e4c19606ee3e2cd42d251a09ef3c.jpg", - "response": "In the image there are three men(140,421),(329,775)(850,292),(967,613)(27,366),(182,702) working in a factory. They are standing in front of a large metal door with a fire inside. The fire is orange and they are using long handled tools to move the fire. The floor is covered in dirt and there is a large pipe above the fire.", - "id": 28903 - }, - { - "image_path": "G:\\images\\combined\\002944_jpg.rf.a55b73329632fb89aa8797ee8f62e81c.jpg", - "response": " Men(229,168),(433,877)(499,408),(682,883) working on a tower", - "id": 28904 - }, - { - "image_path": "G:\\images\\combined\\002945_jpg.rf.a7a2e1cc6c451c82628b48d8e92700f0.jpg", - "response": "A man in a red work suit is working on a pipe with steam coming out of it. He is wearing a red work suit and a tan hat. He is kneeling down and appears to be focused on his task. There is a yellow and black triangle shaped sign in the background. There is also a blue and white machine in the background and a pile of dirt and debris on the ground.", - "id": 28905 - }, - { - "image_path": "G:\\images\\combined\\002946_jpg.rf.34243810fa8edd3724d7bf79d43a12d0.jpg", - "response": "A man wearing a yellow vest and a yellow helmet is holding a blueprint in his left hand while talking on a cell phone. He is standing on a construction site.", - "id": 28906 - }, - { - "image_path": "G:\\images\\combined\\002947_jpg.rf.98126960612b05df424e83fdf840c72f.jpg", - "response": "Two workers in yellow vests and white helmets are checking the solar panels. They are holding a clipboard and a pen. The solar panels are installed on the roof and cover the entire background.", - "id": 28907 - }, - { - "image_path": "G:\\images\\combined\\002948_jpg.rf.beb251b14f413ea73c617193aebe436b.jpg", - "response": "Men in a factory with one of them welding some metal.", - "id": 28908 - }, - { - "image_path": "G:\\images\\combined\\002949_jpg.rf.91909806ddba9671dea2a6e164c1a198.jpg", - "response": "A group of men working on power lines.", - "id": 28909 - }, - { - "image_path": "G:\\images\\combined\\002950_jpg.rf.e3676edcd813a1a659c5d0b8898939c1.jpg", - "response": "A construction site with three men in red hard hats standing in front of a wall of blue fencing. One of the men is holding a grey gas cylinder.", - "id": 28910 - }, - { - "image_path": "G:\\images\\combined\\002951_jpg.rf.6a7b00cd96a582a2cf4764932f1b20ea.jpg", - "response": "A construction site with two men standing next to a large hole in the ground. The men are wearing hard hats and one of them is holding a flashlight.", - "id": 28911 - }, - { - "image_path": "G:\\images\\combined\\002952_jpg.rf.4732fe076cb7d44ad87b4aad4b56404b.jpg", - "response": "The image shows a tunnel that is under construction. The tunnel is long and has a brown color. In the foreground, two workers are working on the right side of the tunnel. One worker is squatting and the other is standing. They are both wearing green work suits and yellow helmets. In front of them, there is a metal pipe. To the right of the pipe, there are several drain holes in a row. In the distance, there is a yellow excavator parked in the tunnel. The tunnel has a brown color and looks very long.", - "id": 28912 - }, - { - "image_path": "G:\\images\\combined\\002953_jpg.rf.58802b59e487fd96e786d78ce03276fd.jpg", - "response": "A group of people stand on the street corner.", - "id": 28913 - }, - { - "image_path": "G:\\images\\combined\\002955_jpg.rf.81d62bbcfcb8cc7b25192c3d4089c512.jpg", - "response": "Three men in blue uniforms and hard hats are posing for the camera. They are all smiling and crossing their arms in front of them. The man in the middle is wearing a white shirt and has his hands crossed in front of him. The man on the far left is wearing a blue uniform and has his hands in his pockets. The man on the far right is wearing a blue uniform and has his hands in his pockets as well. They are all standing in front of a building that is under construction.", - "id": 28914 - }, - { - "image_path": "G:\\images\\combined\\00295689562e67a7.jpg", - "response": "a little girl(593,153),(829,996) sitting at a table(0,389),(751,998) with a game(79,587),(689,997)", - "id": 28915 - }, - { - "image_path": "G:\\images\\combined\\002956_jpg.rf.b345a1c7fb7dfff052217f71ad91e13e.jpg", - "response": "a man in a pink shirt and a hard hat holding a metal object", - "id": 28916 - }, - { - "image_path": "G:\\images\\combined\\002958_jpg.rf.dbff57d918c97ca51075eeb15dfa008b.jpg", - "response": "The image shows a large tunnel under construction. The tunnel is circular and has a blue steel frame supporting it. The tunnel is wide and has a sign on it that says \"\u4e13\u9879\u6cbb\u7406\u884c\u52a8\". There are three workers in the image, two on the left and one on the right. They are wearing orange work suits and yellow helmets. The ground around the tunnel is bare and dusty. There are also two white tanks on the left and a pile of grey rocks on the right.", - "id": 28917 - }, - { - "image_path": "G:\\images\\combined\\002959_jpg.rf.4eb9ada87efccf34666fdf6037e23929.jpg", - "response": "In the image there are several people standing on a construction site, several of them are wearing hard hats. There are several cranes in the background, one is on the far left and another one is on the far right. In the middle there is a white building and a yellow crane. There are several buildings in the background, some of them are tall and white, some are tall and brown. In the foreground there is a blue and white sign, it says \"\u62a4\u5bc6\u5de5\u7a0b\".", - "id": 28918 - }, - { - "image_path": "G:\\images\\combined\\00295fe2b9988a90.jpg", - "response": "A boy in a black shirt and red shorts looking at a fountain.", - "id": 28919 - }, - { - "image_path": "G:\\images\\combined\\002960_jpg.rf.b0517698b6189a1bd0ee193b12e6d707.jpg", - "response": "A man in a high visibility jacket and blue hard hat stands in front of a large pile of concrete blocks. The blocks are arranged in two neat stacks behind the man. He is standing in front of the left-hand stack and appears to be looking at the camera.", - "id": 28920 - }, - { - "image_path": "G:\\images\\combined\\002961_jpg.rf.7e53995d9a94ec7f1f39b22c8697c05d.jpg", - "response": "The image shows two men wearing yellow reflective vests and yellow hard hats standing in a construction site. They are both holding tools and are wearing work boots. The man on the left is pointing towards something, possibly discussing the progress of the construction work. The men are standing in a large room with concrete walls and floors, and there are scaffolding and a pile of sand visible in the background.", - "id": 28921 - }, - { - "image_path": "G:\\images\\combined\\002962_jpg.rf.d9b446959346d9c129523087a6ee8280.jpg", - "response": " Kim Jong Un(462,282),(702,989) inspects the construction site of a new ice rink in Pyongyang (Photo: KCNA).", - "id": 28922 - }, - { - "image_path": "G:\\images\\combined\\002963_jpg.rf.44c8ac8d6b900e52ebc726c5d6a09e7e.jpg", - "response": "A man in a blue shirt and a hard hat is pointing at a green wire. Another man in a blue shirt and a hard hat is looking at the first man. A man in a white shirt and a red hard hat is standing behind the two men in hard hats.", - "id": 28923 - }, - { - "image_path": "G:\\images\\combined\\002965_jpg.rf.6dee5b1e8d631f2bc049c3db57e6fb83.jpg", - "response": "a group of men standing around each other", - "id": 28924 - }, - { - "image_path": "G:\\images\\combined\\002968_jpg.rf.9fd65ff45011cf506fd5b4548c6e0c74.jpg", - "response": "A construction site with three workers in front of a power pole.", - "id": 28925 - }, - { - "image_path": "G:\\images\\combined\\002969_jpg.rf.c80c2fc4aad5cf8ace98e4dd89696f34.jpg", - "response": "A man in a snowy field is working on power lines.", - "id": 28926 - }, - { - "image_path": "G:\\images\\combined\\002970_jpg.rf.dc9ea486bc69848e5c746ab3f5db19a4.jpg", - "response": "The image shows two construction workers wearing yellow helmets and working on a construction site. They are both kneeling on the floor and are focused on their work. One of them is holding a large square metal and the other one is holding a small rectangular metal. They are surrounded by wooden planks and metal rods. In the background, there is a blue sky and a few green hills.", - "id": 28927 - }, - { - "image_path": "G:\\images\\combined\\002971_jpg.rf.79e7f84b14df6df3028301d34efc9b5e.jpg", - "response": "A group of three people standing in front of a house that is under construction. They are all wearing hard hats and are looking at a blueprint.", - "id": 28928 - }, - { - "image_path": "G:\\images\\combined\\002972_jpg.rf.33a391f80a5fac01fee1aa01c2864865.jpg", - "response": "The image shows two construction workers wearing hard hats and carrying a large piece of metal. They are standing on a construction site, which is filled with dirt and debris. In the background, there is a building that has a sign that says \"AECOM\". There are also some wooden planks and a pile of them on the left side of the image.", - "id": 28929 - }, - { - "image_path": "G:\\images\\combined\\002973_jpg.rf.58e715fb37663a44f58289f0577f4aed.jpg", - "response": "The image shows two workers wearing white helmets and grey clothes who are standing in front of a brown dock and a large rusty platform. The workers are holding blue and white sprayers in their hands. The rusty platform is next to a red tower and a black car is parked under the tower. The workers and the car are on a grey concrete ground.", - "id": 28930 - }, - { - "image_path": "G:\\images\\combined\\002974_jpg.rf.56b58f85bbcab90e9f156066c67c54f2.jpg", - "response": "In the image there are two workers wearing red helmets and black uniforms, they are using surveying equipment. In the background there is a building under construction with a metal framework of a large building. There is also a car in the background.", - "id": 28931 - }, - { - "image_path": "G:\\images\\combined\\002975_jpg.rf.5ed5186899cbc0ae23e356db75c5fde2.jpg", - "response": "A group of people sitting around a table.", - "id": 28932 - }, - { - "image_path": "G:\\images\\combined\\002976_jpg.rf.c94b0abeea2524950ab5d7113ee9a90b.jpg", - "response": "A man wearing a hard hat and work clothes sitting on a beam with a tool in his hand.", - "id": 28933 - }, - { - "image_path": "G:\\images\\combined\\002978_jpg.rf.a2c618561485cea609bcb2a3490073a3.jpg", - "response": "In the image there is a male construction worker wearing a grey and yellow helmet. He is crouching down between iron rods that are part of a construction site. He is smiling at the camera.", - "id": 28934 - }, - { - "image_path": "G:\\images\\combined\\002979_jpg.rf.ac67b583e8959cad4207ab42015c1fdb.jpg", - "response": "Rescue workers and bystanders try to free a construction worker trapped in a trench at a construction site in Tainan, Taiwan, Wednesday, Aug. 27, 2014. The worker was buried up to his waist when a wall collapsed at the construction site in Tainan, Taiwan's largest city, police said. The worker was eventually freed by rescue workers and taken to a hospital, where he was listed in stable condition. (AP Photo/Taiwan News, Chen Chih-kuo) TAIWAN OUT, MANDATORY CREDIT", - "id": 28935 - }, - { - "image_path": "G:\\images\\combined\\002980_jpg.rf.0e8bca514df47a69f1c0439d6a3b0b1a.jpg", - "response": "The image shows four people in white working clothes are working at night, clearing the drainage of the water. The ground is wet, with water flowing through a metal grating. On the left is a fence, and in the background is a building with a sign that says \"Sam's Club\".", - "id": 28936 - }, - { - "image_path": "G:\\images\\combined\\002982_jpg.rf.5e3d9de61bef33032bee21419fe149ca.jpg", - "response": "A Cummins employee in China works on an engine.", - "id": 28937 - }, - { - "image_path": "G:\\images\\combined\\002983_jpg.rf.285e684b76c9ea027fc3fcfa9d72e547.jpg", - "response": "a group of men walking down a dirt road", - "id": 28938 - }, - { - "image_path": "G:\\images\\combined\\002984_jpg.rf.293a2762ba0ed08d77e14727fa8965ee.jpg", - "response": "A construction worker in a yellow hard hat hammers on rebar.", - "id": 28939 - }, - { - "image_path": "G:\\images\\combined\\002985_jpg.rf.84db61d601a2dd30059bef48781b335a.jpg", - "response": "In the image, a group of rescue workers are working together to remove debris and rescue a person who is trapped. They are using various tools and equipment, including a chainsaw and a jackhammer, to remove the debris and reach the trapped person. Some of the workers are wearing orange and yellow safety jackets, while others are wearing hard hats and helmets. The scene is filled with various tools and equipment, such as a chainsaw, a jackhammer, and other rescue gear. The workers are focused and determined, working together to rescue the trapped person.", - "id": 28940 - }, - { - "image_path": "G:\\images\\combined\\002986_jpg.rf.6fe3c92ee197906a92a6f5413cf3a040.jpg", - "response": "In the image there is a large group of people dressed in hard hats and orange or blue work clothes. They are gathered in a tunnel and are clapping. In the foreground on the right, a man is proposing marriage to a woman, who is holding a small box in her hand. The man is wearing a suit and is also holding a small box.", - "id": 28941 - }, - { - "image_path": "G:\\images\\combined\\002987_jpg.rf.588ba04a6455475c1aec953a1c1ee6d2.jpg", - "response": "Men(658,331),(756,738)(542,343),(617,769)(338,533),(436,858)(63,539),(148,768) standing on a construction site", - "id": 28942 - }, - { - "image_path": "G:\\images\\combined\\002989_jpg.rf.4a84268cc886182a1475cbdb421257ac.jpg", - "response": "a group of people standing outside in the rain.", - "id": 28943 - }, - { - "image_path": "G:\\images\\combined\\002990_jpg.rf.3f246a1cab48f590f7351f50c5fcd6db.jpg", - "response": "A group of men in hard hats are standing next to a building under construction. They are all wearing different colored hard hats. One man is pointing to something on the building and another man is looking at his cell phone. There is a red and white sign on the building that says \"\u5b89\u5168\u7f51\".", - "id": 28944 - }, - { - "image_path": "G:\\images\\combined\\002992_jpg.rf.cbaa8d4b8c13938b661987d17784e960.jpg", - "response": "In the image two workers are working on a wall. They are both wearing orange work suits and yellow helmets. The wall they are working on is white and they are fixing something on it. There is a light on the left side of the wall and the ceiling is brown.", - "id": 28945 - }, - { - "image_path": "G:\\images\\combined\\002993_jpg.rf.8481c88adce3ce6da7a69781594de5e0.jpg", - "response": "The photo shows a group of workers in a tunnel. They are working on a construction site. In front of them, there is a large pile of yellow sand. To the left of the workers, there is a large machine. The workers are wearing red hats and uniforms. One of the workers is holding a large blue pipe in his hand.", - "id": 28946 - }, - { - "image_path": "G:\\images\\combined\\002994_jpg.rf.72886662a2139ba58ff9641e02394f39.jpg", - "response": "A group of people stand in a field of dirt. They are all wearing business clothes. In the background are a few buildings.", - "id": 28947 - }, - { - "image_path": "G:\\images\\combined\\0029951a71460d1c.jpg", - "response": "Two grave stones side by side with ivy growing over them.", - "id": 28948 - }, - { - "image_path": "G:\\images\\combined\\002995_jpg.rf.6b3faed815afecae2e38b7c91fdf7fc0.jpg", - "response": " Two firemen(401,778),(568,998)(400,339),(823,998) in white helmets(559,426),(700,610)(427,778),(568,938) are digging a hole in the ground.", - "id": 28949 - }, - { - "image_path": "G:\\images\\combined\\00299661bf57253d.jpg", - "response": "A clock sitting on a table with a stuffed animal next to it.", - "id": 28950 - }, - { - "image_path": "G:\\images\\combined\\002996_jpg.rf.685bc2c499d89d33a40fe2090db3603c.jpg", - "response": "A man wearing a yellow hat and work clothes is standing on a construction site.", - "id": 28951 - }, - { - "image_path": "G:\\images\\combined\\002997_jpg.rf.e56d1437b981811611127935e9bc691f.jpg", - "response": "A worker is climbing a ladder and smiling.", - "id": 28952 - }, - { - "image_path": "G:\\images\\combined\\002998_jpg.rf.29eb4f3e99df50218c2b70db49a41c22.jpg", - "response": "The image shows a construction site with three workers present. They are working on a building that is in the process of being constructed. The building has a green netting on it, and some of the workers are wearing yellow and red helmets. There are also some wood and metal rods scattered around the site.", - "id": 28953 - }, - { - "image_path": "G:\\images\\combined\\002999_jpg.rf.8191a160969717c51ccf2f5e2a87414b.jpg", - "response": "Two men in hard hats standing next to each other looking at a mobile device.", - "id": 28954 - }, - { - "image_path": "G:\\images\\combined\\0029cb5bf907f89e.jpg", - "response": "A police car with the words \"Police\" on the hood is parked in front of a building.", - "id": 28955 - }, - { - "image_path": "G:\\images\\combined\\0029d81d0f4ac3d0.jpg", - "response": "a person holding a white shirt that says no flash pictures please on it", - "id": 28956 - }, - { - "image_path": "G:\\images\\combined\\002a1fb97133ae95.jpg", - "response": "A wooden table with a laptop on it and a sign that says \"I'm a musician and I support file sharing\" on the laptop.", - "id": 28957 - }, - { - "image_path": "G:\\images\\combined\\002a41de49c574f5.jpg", - "response": "A vintage postcard image of the Lenawee County Fair in Adrian, Michigan. The fair is held in a field with several tents set up around the area. There is a large crowd of people walking around the tents and the fair grounds. Some of the people are wearing ties and hats, suggesting a more formal occasion. In the background, there are trees and a few houses scattered around the fairgrounds.", - "id": 28958 - }, - { - "image_path": "G:\\images\\combined\\002a76c5142a4b1c.jpg", - "response": "A run down building with broken windows and bullet holes.", - "id": 28959 - }, - { - "image_path": "G:\\images\\combined\\002a7f5f38b19e2f.jpg", - "response": "A man standing at a podium with a screen behind him.", - "id": 28960 - }, - { - "image_path": "G:\\images\\combined\\002a8796056e1bf5.jpg", - "response": "The image features a large red box sitting on a table. The box is square and has the words \"THE OFFICIAL MICHAEL JACKSON OPUS\" written on the front in black ink. There is also a black silhouette of a man on the cover of the box. The man is in a crouched position and appears to be jumping. The box is open and there is a small amount of black text visible on the inside cover. The image is set in a living room with a Christmas tree in the background. The tree has lights on it and is located in the top right corner of the image. The floor is carpeted and the box is sitting on a wooden table.", - "id": 28961 - }, - { - "image_path": "G:\\images\\combined\\002b62079277c846.jpg", - "response": "A Casio G-Shock watch in black and white with a green light up logo.", - "id": 28962 - }, - { - "image_path": "G:\\images\\combined\\002b637b560edcc3.jpg", - "response": "The image shows three cans of beer sitting on a couch. The couch is a deep purple color with gold stripes. The cans are lying on their sides and are slightly crushed.", - "id": 28963 - }, - { - "image_path": "G:\\images\\combined\\002b6c5e434980df.jpg", - "response": "The image shows a close-up view of a smart device, most likely a phone, with several app icons visible on its screen. The device is running several messaging apps, including Telegram, BBM, and Hangouts. The Telegram app icon is located in the center of the screen, with the BBM app icon to its right and the Hangouts app icon below it. The device is running on Android and has a resolution of 1080 x 1920 pixels.", - "id": 28964 - }, - { - "image_path": "G:\\images\\combined\\002c889f155ecfeb.jpg", - "response": "A white building with a red and white BJs Wholesale Club sign on the side.", - "id": 28965 - }, - { - "image_path": "G:\\images\\combined\\002cc8bb1d50cde0.jpg", - "response": "A postcard of a large white house with a green roof and a garage. The house is set in a forest with many trees around it.", - "id": 28966 - }, - { - "image_path": "G:\\images\\combined\\002ce32086fb7258.jpg", - "response": "A white sign with black lettering in front of a shop.", - "id": 28967 - }, - { - "image_path": "G:\\images\\combined\\002d7d220a042075.jpg", - "response": "A brick wall with a sign advertising a restaurant called Thorns Showcase Lounge. The sign features a picture of a beer bottle and reads \"Home of the World Renowned Bucket of Butt.\"", - "id": 28968 - }, - { - "image_path": "G:\\images\\combined\\002dd4662cbb4ba2.jpg", - "response": "A bike turn out sign on a wooden pole.", - "id": 28969 - }, - { - "image_path": "G:\\images\\combined\\002e3dbb6a9cb03c.jpg", - "response": "A group of people in a large auditorium playing a game of Judo.", - "id": 28970 - }, - { - "image_path": "G:\\images\\combined\\002ed4b2e22b51e6.jpg", - "response": "A bus is parked on the side of the street.", - "id": 28971 - }, - { - "image_path": "G:\\images\\combined\\002f860e692757f7.jpg", - "response": "a boy standing in front of a car", - "id": 28972 - }, - { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.1fbd35fcde5c777bdcbf2a30531b7ff9.jpg", - "response": "A woman in a red shirt is holding a picture.", - "id": 28973 - }, - { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.814f757444106b3e2db79fd2944b186a.jpg", - "response": "A woman in a red shirt is holding a picture. She is wearing a black mask. Next to her is a woman in a blue and white shirt. They are both wearing glasses. In front of them is a bottle of water. To the right of the bottle is a cup. Behind them is a yellow poster with Chinese writing on it.", - "id": 28974 - }, - { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.d9763069fd90dce4855d594387ab4520.jpg", - "response": "A woman in a red shirt is holding a picture.", - "id": 28975 - }, - { - "image_path": "G:\\images\\combined\\002_1024_jpeg_jpg.rf.df3a5c6455dc9f8026bf3e44819b18b4.jpg", - "response": "A woman in a red shirt is holding a picture. Another woman in a blue shirt is wearing a hat. They are sitting at a table with a bottle of water on it. They are in front of a sign that says \" Hong Kong Subdivided Flats\"", - "id": 28976 - }, - { - "image_path": "G:\\images\\combined\\003001_jpg.rf.ea1cb42c342bf0956f6530f86f886c11.jpg", - "response": "An electrician in a blue uniform and yellow hard hat is working on an electrical transformer.", - "id": 28977 - }, - { - "image_path": "G:\\images\\combined\\003002_jpg.rf.3b59ecbc6f7304689866c7ad0bff1bfe.jpg", - "response": "A man is working on some power lines.", - "id": 28978 - }, - { - "image_path": "G:\\images\\combined\\003003_jpg.rf.dfcbc6bc3f9f0d18f4f46e92b69ff765.jpg", - "response": "A collage of construction workers building a bridge over a river.", - "id": 28979 - }, - { - "image_path": "G:\\images\\combined\\003004_jpg.rf.24d24760ab7e55bf8839ce7157bbad77.jpg", - "response": "A miner with a flashlight in a dark tunnel.", - "id": 28980 - }, - { - "image_path": "G:\\images\\combined\\003005_jpg.rf.f590d6ff79bd1de3eb55dc85798b4600.jpg", - "response": "A man in a red jacket and white shoes sitting on a ledge of a building.", - "id": 28981 - }, - { - "image_path": "G:\\images\\combined\\003006_jpg.rf.d88e2e158507545cb168fd7a2f9845de.jpg", - "response": "An engineer in a blue helmet is talking on his cell phone.", - "id": 28982 - }, - { - "image_path": "G:\\images\\combined\\003007_jpg.rf.077a9d630ad8f0630cf0db17f806b4fc.jpg", - "response": "A group of men wearing hard hats are standing in a large room under construction. Some of the men are holding handrails. The room has unfinished walls and floor. There are several boxes in the room.", - "id": 28983 - }, - { - "image_path": "G:\\images\\combined\\003008_jpg.rf.ac098dcfa9605a65c04b9137536efb0d.jpg", - "response": "A group of people stand inside a tunnel. They are wearing hard hats and some are wearing light blue shirts. One person is using a tool to chip away at a rock.", - "id": 28984 - }, - { - "image_path": "G:\\images\\combined\\003009_jpg.rf.82adcc710d002a05a5b7f6c5f7e26ee5.jpg", - "response": "A construction site with two workers on it.", - "id": 28985 - }, - { - "image_path": "G:\\images\\combined\\003010_jpg.rf.80fac143926a5d4c0ae739bf33615a67.jpg", - "response": "A worker is walking through a shop filled with machinery. The sun is shining through a window and a fan is on the wall. There are many pieces of machinery in the shop, including a large piece of equipment with a red handle. The machinery is on the ground and on tables.", - "id": 28986 - }, - { - "image_path": "G:\\images\\combined\\003011_jpg.rf.cf137b4f7e5d555ec38009dfd859b5f2.jpg", - "response": "The image shows a construction site in a city. There are two people visible, both wearing green construction gear and helmets. One of the people is standing on a black and white checkered mat, which is placed on the ground. A large red crane is operating in the background, lifting a red object. There are some buildings visible in the background, but the main focus is on the construction site.", - "id": 28987 - }, - { - "image_path": "G:\\images\\combined\\003012_jpg.rf.7159d7aee312287ca6093f8db1a40c93.jpg", - "response": "The image shows a group of people working on a large piece of metal, which is either a ship or a large metal structure. The people are wearing hard hats and masks, and are focused on their tasks. Some of them are using tools such as drills and hammers. The background shows a blue sky with clouds.", - "id": 28988 - }, - { - "image_path": "G:\\images\\combined\\003013_jpg.rf.86086842e9420dbfea87e5f4775373e0.jpg", - "response": "A man in a yellow hard hat is building a brick wall. He is wearing a black jacket and has a yellow hard hat on. He is holding a hammer and has a brick in his hand. He is building a wall with red bricks.", - "id": 28989 - }, - { - "image_path": "G:\\images\\combined\\003014_jpg.rf.e3b2da9f3508dfcc7389e7bffd2a5acf.jpg", - "response": "Two engineers discussing over a blueprint in a factory setting", - "id": 28990 - }, - { - "image_path": "G:\\images\\combined\\003015_jpg.rf.446b35f433b0e0fca7f4ddc449ba7da0.jpg", - "response": "A worker in a yellow hard hat is on a metal platform, holding a thick rope with a metal hook at the end of it. The worker is also wearing a black jacket, yellow hard hat, and has a tool belt around their waist. They are standing on a blue metal platform and there is a white and blue wall behind them. The wall has several metal brackets on it and the worker is reaching for one with the rope.", - "id": 28991 - }, - { - "image_path": "G:\\images\\combined\\003016_jpg.rf.43c6083142fb1233664a0bfa4c08699f.jpg", - "response": "The image shows a construction site with several people working on a building that is still in the early stages of construction. The building is surrounded by a fence and there is a sign on it that says \"\u4e2d\u56fd\u6842\u67f3\u9ad8\u901f\u516c\u8def\u6709\u9650\u516c\u53f8\". In the foreground, there is a man kneeling down next to some rebar. Another man is standing to the left of the man who is kneeling, and two more men are standing further back. A yellow and white construction vehicle is parked in the background on the right side of the image.", - "id": 28992 - }, - { - "image_path": "G:\\images\\combined\\003017_jpg.rf.724aec52adcd6645303e2dadcd80caab.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 28993 - }, - { - "image_path": "G:\\images\\combined\\003019_jpg.rf.c44a65eb46758b06b3a1bb8d02458642.jpg", - "response": "A group of men standing on a construction site wearing hard hats.", - "id": 28994 - }, - { - "image_path": "G:\\images\\combined\\003020_jpg.rf.d85e243e1cee2a6fceb49dea5fa482aa.jpg", - "response": "The image shows two female workers posing with brooms in a\u96a7\u9053. They are both wearing yellow hard hats and yellow and gray work clothes. The left worker is a Chinese woman with her hair tied back in a ponytail, while the right worker is an Asian woman with her hair tied in a bun. They both appear to be in their 30s.", - "id": 28995 - }, - { - "image_path": "G:\\images\\combined\\003021_jpg.rf.e2ce910eaf354f885476cd86f73da9b7.jpg", - "response": "In the image two men are in the water wearing hard hats. One man is on the left and is wearing a red hard hat and is holding a silver helmet in his hands. The other man is on the right and is wearing a blue hard hat. They are in the water up to their knees. In the foreground there is a brown pole and a rope. In the background there is a forest of grass.", - "id": 28996 - }, - { - "image_path": "G:\\images\\combined\\003022_jpg.rf.e6b8bbe72dab2d3b211d68ffda0b2a83.jpg", - "response": "3 workers(668,188),(860,610)(523,174),(713,647)(206,225),(473,840) riding motorcycles(132,372),(483,995)(504,310),(693,701)(676,316),(831,629) on a muddy road", - "id": 28997 - }, - { - "image_path": "G:\\images\\combined\\003023_jpg.rf.d7800df57120b403a2d9e59b44c6815f.jpg", - "response": "A couple of linemen are working on fixing a power line that is down in a rural area.", - "id": 28998 - }, - { - "image_path": "G:\\images\\combined\\003024_jpg.rf.87321ada772dc5427c0f1dd4fbe843e9.jpg", - "response": "In the image there are three people standing on a pile of rubble. The person on the left is wearing a black and orange uniform and a blue hat. The person in the middle is wearing an orange and blue uniform and a blue hat. The person on the right is also wearing an orange and blue uniform and a blue hat. They are all holding a plan in front of them. In the background there is a yellow and black bulldozer moving rubble.", - "id": 28999 - }, - { - "image_path": "G:\\images\\combined\\003025_jpg.rf.bccbb5e4e68210ad168ac77d3f19e051.jpg", - "response": "A worker in a snowy field repairs a power line.", - "id": 29000 - }, - { - "image_path": "G:\\images\\combined\\003026_jpg.rf.293b7bc07e4b99b7b342f2942725858a.jpg", - "response": "A group of men working on a construction site.", - "id": 29001 - }, - { - "image_path": "G:\\images\\combined\\003027_jpg.rf.da34f7f4debd3e8ab84d5100d8b0e96b.jpg", - "response": "In the image there are three men working on an electrical box. Two of the men are wearing grey jumpsuits and blue helmets. The third man is wearing a grey suit and a blue helmet. They are all wearing the same brand of blue gloves. In the background there is a pile of grey rocks and debris. There is a brown brick building that is half built and has no roof. The building is made of brown bricks and is to the left of the men. There is a green tree in the top left corner of the image.", - "id": 29002 - }, - { - "image_path": "G:\\images\\combined\\003029_jpg.rf.f167d42609c03705e85f1d186a2cd393.jpg", - "response": " A miner(368,127),(825,996) in a hard hat is talking on a cell phone.", - "id": 29003 - }, - { - "image_path": "G:\\images\\combined\\003030_jpg.rf.199fadecc403a905cce6cf25c929e623.jpg", - "response": "In the image two men are working on a power line that is on the side of a road. The men are wearing grey jumpsuits and blue helmets. The left most man is wearing a yellow helmet. They are standing on the side of the road and one of them is holding a tool in his right hand. In the background there is a truck. The power line is attached to a wooden post.", - "id": 29004 - }, - { - "image_path": "G:\\images\\combined\\003031_jpg.rf.a009865ebc4c0064491c67e5148f4bfa.jpg", - "response": "A worker in a grey shirt and yellow hat is standing on a ladder next to a brick wall. He is holding a plastic bag in his hand. There is a grey brick wall to the right of him and another behind him. There is a yellow hat on the ground in front of him. In the background, there is a motorcycle to the left and two people to the right. There is a red flag hanging from a building in the background on the left.", - "id": 29005 - }, - { - "image_path": "G:\\images\\combined\\003032_jpg.rf.3fc16d354e27a8d59c6cebafd47a6e18.jpg", - "response": "A worker in a blue uniform and a green hard hat stands on a platform with a yellow top. The worker is looking down at the ground. To the right of the worker are two other workers, one in the background and one closer to the middle of the image. All three workers are wearing safety gear. In the background to the left, there are two other people wearing red and yellow safety gear. In front of the three workers, there is a pile of metal parts. To the right of the image, there is a large metal cylinder with a red top.", - "id": 29006 - }, - { - "image_path": "G:\\images\\combined\\003033_jpg.rf.c95de522cc3e053894617996a7c1bf0f.jpg", - "response": " Construction workers(23,140),(429,988)(243,44),(352,294) in a tunnel, drilling into the rock with a large drill(258,363),(548,522).", - "id": 29007 - }, - { - "image_path": "G:\\images\\combined\\003034_jpg.rf.a110342be9e44b24192128cfe4205446.jpg", - "response": "A group of men in suits and hard hats stand in a construction site. They are looking at a concrete structure.", - "id": 29008 - }, - { - "image_path": "G:\\images\\combined\\003035_jpg.rf.b4d2225bfb214793662c995ae40abce5.jpg", - "response": "A man standing next to a large yellow machine.", - "id": 29009 - }, - { - "image_path": "G:\\images\\combined\\003036_jpg.rf.a7e2175fe0ee2037c5a1d2a3360a8ec9.jpg", - "response": "A man in an orange vest and orange helmet standing in front of a pile of grey gravel.", - "id": 29010 - }, - { - "image_path": "G:\\images\\combined\\003037_jpg.rf.ca666e47bbad0fbfd22233096f5ba118.jpg", - "response": "A man wearing a yellow hard hat and grey work suit standing in front of a pile of dirt with a radio in his hand.", - "id": 29011 - }, - { - "image_path": "G:\\images\\combined\\003038_jpg.rf.529629d67b6edfedf2b49feedfe6237a.jpg", - "response": "A worker is standing in a room filled with smoke and red light. They are wearing a red jacket, a hat, and orange goggles. They are walking towards a large circular machine that is spewing out flames.", - "id": 29012 - }, - { - "image_path": "G:\\images\\combined\\003039_jpg.rf.a59a7ee960313e83bc500905f78b2f14.jpg", - "response": "A group of workers are repairing a transformer on a power pole. They are wearing blue uniforms and hard hats. The sky is blue with clouds.", - "id": 29013 - }, - { - "image_path": "G:\\images\\combined\\003040_jpg.rf.029e76cd2b0a561690e29a8089fb57af.jpg", - "response": "A man in a blue shirt and yellow hat is working in a field. He is pulling on a cable while wearing a yellow hat and glasses. He is also wearing a watch on his left wrist.", - "id": 29014 - }, - { - "image_path": "G:\\images\\combined\\003042_jpg.rf.8732f8c20e1eeaedfee7012a101bc89c.jpg", - "response": "a man in a blue shirt and yellow helmet", - "id": 29015 - }, - { - "image_path": "G:\\images\\combined\\003043_jpg.rf.713c046c27fa44bd32f31adfcd00046d.jpg", - "response": "The image shows three workers on a ladder, repairing a transformer at night. The workers are wearing blue work clothes and yellow reflective vests. They are standing on a metal ladder, with two of them at the top of the ladder and one at the bottom. The ladder is positioned against a tall building. In the foreground, a sign that says \" Danger, Keep Out\" is visible.", - "id": 29016 - }, - { - "image_path": "G:\\images\\combined\\003044_jpg.rf.965662c49025bd50fe2770409b471035.jpg", - "response": "A construction site with a few men standing around. There is a truck on the right side of the image and a few people in the background. One man is wearing a red helmet and pointing to the right. Another man is wearing a pink shirt and a red helmet. There is a green fence in the foreground and a few buildings under construction in the background.", - "id": 29017 - }, - { - "image_path": "G:\\images\\combined\\003045_jpg.rf.4471c90c8b8891c9a01703973910ae4d.jpg", - "response": "A group of men in hard hats stand in a circle in a construction area. Some of the men are wearing ties. One man is wearing a red hard hat.", - "id": 29018 - }, - { - "image_path": "G:\\images\\combined\\003046_jpg.rf.00fe81c72cb3bc82fa3de10025799279.jpg", - "response": "The image shows a group of workers inside a large\u96a7\u9053. They are standing on some stairs at the bottom of the tunnel, which is lit up blue. The workers are wearing hard hats and some of them are wearing yellow hard hats. One worker is on the left, another is in the middle, and the third is on the right. The first worker is holding a tool in their right hand. The second worker is holding a tool in their left hand. The third worker is also holding a tool in their right hand. The workers are looking forward into the tunnel, which is grey and white in color. The walls of the tunnel are lined with bricks and there are pipes on the right side of the tunnel. The floor of the tunnel is brown and has some wooden planks. The stairs are made of metal and are leading upwards.", - "id": 29019 - }, - { - "image_path": "G:\\images\\combined\\003047_jpg.rf.5aea32dc1edd42d637c69041b508aeb4.jpg", - "response": "a group of people standing in front of some cars", - "id": 29020 - }, - { - "image_path": "G:\\images\\combined\\003048_jpg.rf.c056e174cc3ce33122b506ce979b315e.jpg", - "response": "a worker in a blue shirt and red helmet is checking the temperature of a machine with a gauge and a device with a screen.", - "id": 29021 - }, - { - "image_path": "G:\\images\\combined\\003049_jpg.rf.48bf2bd9fe101149832c23776534df52.jpg", - "response": "A worker in a purple sweatshirt and a red hard hat smiles while holding a piece of red pipe.", - "id": 29022 - }, - { - "image_path": "G:\\images\\combined\\003050_jpg.rf.db5685ff86af0c4398a583f754db9e4f.jpg", - "response": "A man sitting at a table with a grey and black checkered shirt on.", - "id": 29023 - }, - { - "image_path": "G:\\images\\combined\\003051_jpg.rf.8d4cee13b75b744dce9ec9941d01330b.jpg", - "response": "A group of construction workers wearing yellow and orange vests and hard hats are working on a construction site.", - "id": 29024 - }, - { - "image_path": "G:\\images\\combined\\003052_jpg.rf.8b9c7f01a113d314954cd9fcee1eae51.jpg", - "response": "A group of workers in blue shirts and hard hats are using a long piece of wood to heave on a red wall.", - "id": 29025 - }, - { - "image_path": "G:\\images\\combined\\003054_jpg.rf.32e47285007f6db35b86cd5aafd958f7.jpg", - "response": "The image shows a large bridge with a train track going across it. The bridge has a very long arch and it is painted white. There are two workers on the bridge, one on the left and one on the right. They are both wearing yellow jackets and white helmets. One of them is holding a red tool. In front of the workers, there is a red train on the track. To the left of the train, there is a red bag on the ground.", - "id": 29026 - }, - { - "image_path": "G:\\images\\combined\\003055_jpg.rf.150580ac0acd7bb309f3aa2fc2a4ed38.jpg", - "response": "a group of men standing in front of a van", - "id": 29027 - }, - { - "image_path": "G:\\images\\combined\\003056_jpg.rf.cc14366fa2437a7dc33fddafea5b88a4.jpg", - "response": "A group of workers are working on a construction site.", - "id": 29028 - }, - { - "image_path": "G:\\images\\combined\\003057_jpg.rf.7837d1ca09470e208339805dd5f5f1fa.jpg", - "response": "A group of men working on a large green piece of machinery.", - "id": 29029 - }, - { - "image_path": "G:\\images\\combined\\003058_jpg.rf.b5fab60f89b6c3663bfdc1c226629a37.jpg", - "response": "In the image there are three people working on a building construction site. Two of them are wearing yellow and orange helmets and are working on a structure made of blue, red and white bars. They are also wearing blue and white shirts. The third person is sitting on a small ladder wearing a grey helmet and a blue shirt. They are looking at the two other workers. On the left side of the image there is a blue metal bar and a wooden pole.", - "id": 29030 - }, - { - "image_path": "G:\\images\\combined\\003059_jpg.rf.44ebf02b444d401d4c5c8cf450870a67.jpg", - "response": "In the image there is a group of workers at a construction site. They are working on a road that has large rocks and debris on it. Some of the workers are standing near a large rock that is being moved by a yellow digger. Some of the workers are also standing near a pile of rocks. In the background there is a mountain.", - "id": 29031 - }, - { - "image_path": "G:\\images\\combined\\003060_jpg.rf.8ac65c3f7c688a550eab6c61c27ca994.jpg", - "response": "A group of people standing around a pile of rubble.", - "id": 29032 - }, - { - "image_path": "G:\\images\\combined\\003061_jpg.rf.7a3c03dae266e49fe6db97b9cf132a9a.jpg", - "response": "A man in an orange jacket and red hat is using a large blue tool to cut through a frozen branch.", - "id": 29033 - }, - { - "image_path": "G:\\images\\combined\\003062_jpg.rf.563decb4fc1e252cf7cd34f096aba7b8.jpg", - "response": "A man in a red jacket and orange helmet is holding a walkie talkie. He is standing in front of a truck and some large metal containers.", - "id": 29034 - }, - { - "image_path": "G:\\images\\combined\\003063_jpg.rf.717d26e119c2536536f50778de647e43.jpg", - "response": "The image shows a construction site with several people standing around a man who is lying on the ground. The man appears to be injured and is being attended to by another man who is holding a first aid kit. The scene is set on a construction site with a large piece of equipment visible in the background.", - "id": 29035 - }, - { - "image_path": "G:\\images\\combined\\003064_jpg.rf.561902c102e9598f3de67197071361b5.jpg", - "response": "A construction site with a building under construction.", - "id": 29036 - }, - { - "image_path": "G:\\images\\combined\\003065_jpg.rf.cf4f7d02a292e0fc9ee3a3aa2199fbec.jpg", - "response": "A man in a blue hard hat is sitting on a suspension bridge, working on a power line. He is wearing a blue uniform and has a tool belt around his waist. The bridge is made of metal and is suspended over a large body of water. The water is a dark green and is filled with islands. In the distance, there is a small town that is surrounded by water. The sky is blue and clear.", - "id": 29037 - }, - { - "image_path": "G:\\images\\combined\\003068_jpg.rf.d97d0cc86e84fe195ebd6cdf93faff18.jpg", - "response": "A man(526,75),(783,999) wearing a yellow helmet(538,75),(643,182) and black jacket(549,242),(758,688) walking on a rocky trail(0,488),(999,997)", - "id": 29038 - }, - { - "image_path": "G:\\images\\combined\\003069_jpg.rf.3b75ecde5b2bb5870c4bcd0b8b0e1be0.jpg", - "response": "A worker in a yellow hard hat is standing in a large room filled with equipment. He is looking at a machine with a red and white sticker that says OEF. He is standing in front of a machine with a yellow label that says Emergency stop. He is wearing a blue shirt and glasses.", - "id": 29039 - }, - { - "image_path": "G:\\images\\combined\\00306_jpg.rf.67fe0f9b4705a655784a2d11ab57c344.jpg", - "response": "An engineer wearing an orange safety vest and orange hard hat is sitting on some rocks.", - "id": 29040 - }, - { - "image_path": "G:\\images\\combined\\003070_jpg.rf.496d2bd8bbf840a3a33aebc88ec1e197.jpg", - "response": "The image shows a large construction site with two workers. One worker is on the left, wearing a red hard hat and grey shirt, and is sitting on a red metal scaffold. Another worker is on the right, wearing a black shirt and is climbing up a red metal scaffold. They are both in front of a large wall of red metal scaffolding.", - "id": 29041 - }, - { - "image_path": "G:\\images\\combined\\003072_jpg.rf.c6c05e50956afe16497084d2dfe5db28.jpg", - "response": "A group of men standing around a construction site.", - "id": 29042 - }, - { - "image_path": "G:\\images\\combined\\003073_jpg.rf.4409630d553fd3c4f78e9290914e6447.jpg", - "response": "A steel worker in a green hat is looking at a crucible on a steel works production line.", - "id": 29043 - }, - { - "image_path": "G:\\images\\combined\\003074_jpg.rf.e8636d6665a9196929ffd3086ab76834.jpg", - "response": "A couple of men working on a pipe together.", - "id": 29044 - }, - { - "image_path": "G:\\images\\combined\\003076_jpg.rf.11343697c760ffefc8a2ef7a5b5c0786.jpg", - "response": "A group of people standing around a bike.", - "id": 29045 - }, - { - "image_path": "G:\\images\\combined\\003077_jpg.rf.38c8db3f3dd07270a70b19bb356c6ead.jpg", - "response": "a group of men standing around in front of a building", - "id": 29046 - }, - { - "image_path": "G:\\images\\combined\\003079_jpg.rf.08ce6eb3f0a7a2f934cf670822c51eb7.jpg", - "response": "A man in a grey shirt is in a small grey box.", - "id": 29047 - }, - { - "image_path": "G:\\images\\combined\\003080_jpg.rf.a074a324412c72969aef29489d9086f9.jpg", - "response": "A man wearing a yellow hard hat and blue shirt is working on a brick wall in the sun. He is crouching down and is holding a trowel.", - "id": 29048 - }, - { - "image_path": "G:\\images\\combined\\003081_jpg.rf.6fb8deb4efd41e730fa3ff0766caf57f.jpg", - "response": "A group of workers are working on an electrical station.", - "id": 29049 - }, - { - "image_path": "G:\\images\\combined\\003082_jpg.rf.0df9a704766e318f7a4b8237c6283130.jpg", - "response": "A collage of two pictures, both showing workers in blue uniforms. In the left picture, a worker is on a ladder installing equipment on a power pole. In the right picture, several workers are standing in a construction area, also near power poles.", - "id": 29050 - }, - { - "image_path": "G:\\images\\combined\\003083_jpg.rf.79ed1fd8adef684274f7e0a57cffdc44.jpg", - "response": "A construction worker in a yellow hard hat and grey jacket is putting up a brick wall.", - "id": 29051 - }, - { - "image_path": "G:\\images\\combined\\003084a19c441534.jpg", - "response": "A small metal tin with a metal lid and a paper label around the middle. The label shows the tin was found in Drayton, New South Wales, Australia. The tin is open and contains a white powder. The powder is spilling out of the tin onto a table.", - "id": 29052 - }, - { - "image_path": "G:\\images\\combined\\003084_jpg.rf.f361656f69cd37c239bd11794ced9249.jpg", - "response": "A group of six men standing around each other in a construction site.", - "id": 29053 - }, - { - "image_path": "G:\\images\\combined\\003085_jpg.rf.cdbfb0d4e9ea9e6ab601dcf278e7e7f1.jpg", - "response": "The image shows a group of workers at a construction site. They are working on a building that is under construction. The building has a wooden framework and is surrounded by wooden supports. The workers are standing on the ground, and one of them is holding a large grey rock. The sky is blue and clear.", - "id": 29054 - }, - { - "image_path": "G:\\images\\combined\\003086_jpg.rf.9c62a63bd7897c32b0e69ff54ab72050.jpg", - "response": "The image shows three workers in blue and red uniforms, wearing grey helmets, setting up a grey and red pole in a snowy forest. The pole is labeled \"Jingmei Water Supply\". The workers are in the foreground, and the pole they are working on is in the middle ground. The background is a snowy forest.", - "id": 29055 - }, - { - "image_path": "G:\\images\\combined\\003087_jpg.rf.83dbba850541b3468bdbb54fb1d33329.jpg", - "response": "The image shows two workers in black uniforms and blue hats repairing a power line in a forest. They are standing on the power line and one of them is using a tool to make repairs. The power line is attached to a wooden pole and there are several other poles in the background. The workers are surrounded by falling raindrops and the forest in the background is lush and green.", - "id": 29056 - }, - { - "image_path": "G:\\images\\combined\\003088_jpg.rf.e9d9682d4b077b67de0f06753938bc23.jpg", - "response": "A man and woman wearing hard hats and safety vests looking at a blueprint in a warehouse.", - "id": 29057 - }, - { - "image_path": "G:\\images\\combined\\003089_jpg.rf.3e44e57ad6c2c33f61e95d461cf9d4d1.jpg", - "response": "A construction worker is pouring concrete onto a metal grid.", - "id": 29058 - }, - { - "image_path": "G:\\images\\combined\\003090_jpg.rf.9a915ec4446ed28578e6952fa831be7c.jpg", - "response": "In the image there are several people wearing hard hats and orange or yellow work vests. They are in a tunnel or pit. One person is kneeling down and holding a large pipe. Another person is kneeling down and holding a large carrot. There are two people in the background, one is wearing a white helmet and a blue vest, the other is wearing a white helmet and a black vest. There is a red curtain on the right side of the image.", - "id": 29059 - }, - { - "image_path": "G:\\images\\combined\\003091_jpg.rf.bb70a7067aafcefa8b7a80fd8e4bb6ef.jpg", - "response": "A factory worker in an orange jumpsuit and yellow hard hat is welding something together while sitting on a step.", - "id": 29060 - }, - { - "image_path": "G:\\images\\combined\\003092_jpg.rf.340f23da9d138294839c65bd2fb56c35.jpg", - "response": "A worker talks on his mobile phone as he stands in front of steel coils at a steel market in Wuxi, Jiangsu province, China.", - "id": 29061 - }, - { - "image_path": "G:\\images\\combined\\003093_jpg.rf.6b64f55d3635534a478ceccbbe24da39.jpg", - "response": "A man is working on fixing a power line.", - "id": 29062 - }, - { - "image_path": "G:\\images\\combined\\003094_jpg.rf.e4e97e8f725c917702d8d5f10715a20c.jpg", - "response": "In the image, two workers are seen working on electrical wires and equipment at a power station. One worker is standing on a ladder and the other one is standing in front of him. Both the workers are wearing blue color helmets and black color uniform. The power station has white color wires and thick wooden poles. The sky appears to be blue with no clouds.", - "id": 29063 - }, - { - "image_path": "G:\\images\\combined\\003095_jpg.rf.a2f710421d7e6a8ce6a0948c631c92f4.jpg", - "response": "A group of people standing around a construction site.", - "id": 29064 - }, - { - "image_path": "G:\\images\\combined\\003096_jpg.rf.c62c6a2221e503eff5fc694860f2ba16.jpg", - "response": "A group of men in white jumpsuits and hard hats are holding onto a wire in a river.", - "id": 29065 - }, - { - "image_path": "G:\\images\\combined\\003097_jpg.rf.4daef428d30fe3fd675f9a25ee44fd8c.jpg", - "response": "A worker is in a confined space, wearing a hard hat and holding a rope.", - "id": 29066 - }, - { - "image_path": "G:\\images\\combined\\003098_jpg.rf.a8f755080e69d5a04fdeda385c655272.jpg", - "response": "A construction site with a large building under construction. The building is mostly green and has a red sign on the front. There are several construction workers in the foreground, some standing and some riding a cement mixer.", - "id": 29067 - }, - { - "image_path": "G:\\images\\combined\\003101_jpg.rf.085a461ab8ca17671682542c8b348431.jpg", - "response": "A worker in a white hard hat and wearing a green shirt is working on a machine. The worker is wearing a white glove on their left hand and is looking at a red box with a white screen. The worker is also wearing a pair of safety glasses. The background is a grey wall with many red and black switches.", - "id": 29068 - }, - { - "image_path": "G:\\images\\combined\\003102_jpg.rf.b4a68c26f2aa0506caaebcfe854c2edb.jpg", - "response": "A couple of workers in red uniforms and white helmets are working on a power line tower.", - "id": 29069 - }, - { - "image_path": "G:\\images\\combined\\003103_jpg.rf.37a65d72d8c610fb20cfcd28f04f785e.jpg", - "response": "An engineer in a red hard hat crouches down next to a large piece of machinery. He is wearing a navy blue jumpsuit and has a white corded ear bud in his right ear. He has a black pen in his left hand and is looking at the camera. The background is a green and white machine.", - "id": 29070 - }, - { - "image_path": "G:\\images\\combined\\003105_jpg.rf.a4f3cb9a7dd76855f2871fc4a8f16e69.jpg", - "response": "A man wearing a yellow helmet stands in front of a blue wall with the word TATA STEEL on it. The man has a red bag over his shoulder and his hand is on his chest. He is wearing a green shirt.", - "id": 29071 - }, - { - "image_path": "G:\\images\\combined\\003106_jpg.rf.de78935f7c1c6fe3676fd39312d14da3.jpg", - "response": "a group of men standing in front of a green and white building", - "id": 29072 - }, - { - "image_path": "G:\\images\\combined\\003107_jpg.rf.d38bd26c2015ec39cc9a0da161002769.jpg", - "response": "a group of men walking in a line", - "id": 29073 - }, - { - "image_path": "G:\\images\\combined\\003108_jpg.rf.d676b3b02a00885e9bff26542e794c1f.jpg", - "response": "A line of workers in blue uniforms and yellow hard hats are pulling a black cable through the snow. There are a few cars and a bus in the background. There is also a person in a red jacket in the background.", - "id": 29074 - }, - { - "image_path": "G:\\images\\combined\\003109_jpg.rf.4065982449551d6da8ea9b81f3722b72.jpg", - "response": "A man in a yellow hard hat stands on a building under construction. He is wearing a tan jacket and grey pants. He is also wearing green work boots. He is standing on a wooden beam holding a tool in his hand. In the background, there is a river and a city.", - "id": 29075 - }, - { - "image_path": "G:\\images\\combined\\003110_jpg.rf.897832662c5892532baf8c18564fe316.jpg", - "response": "A worker in camouflage pants and a yellow hard hat is sitting on a metal platform. They are holding a large metal pipe and are in the process of lowering it onto a large metal structure. The sky is blue and there are a few clouds in the distance. There is a body of water visible in the background.", - "id": 29076 - }, - { - "image_path": "G:\\images\\combined\\003111_jpg.rf.c5bebafc2b8ab810ac7eab6daa3c1715.jpg", - "response": "The picture shows a group of people gathered around a long row of pipes. Some of the people are wearing suits and one is wearing a blue jacket. In their hands, they are holding items such as a camera, a yellow box, and a pen. Under the pipe, there is a sign that says \" Hangang \". To the right side of the picture, there is a row of four air conditioning units.", - "id": 29077 - }, - { - "image_path": "G:\\images\\combined\\003112_jpg.rf.56f7b163b848908f5a6eb47598184d4e.jpg", - "response": "In the image there are two workers wearing brown uniforms and safety harnesses. They are working on a construction site that is mostly under them. They are standing on a red metal framework and appear to be building or repairing it. There are a few cars around the site, one on the left, two in the center, and one on the right. In the background, there is a white van and a bus. The sky is a clear blue color.", - "id": 29078 - }, - { - "image_path": "G:\\images\\combined\\003113_jpg.rf.0ea85b4464f61c9b0b8fc7caf9a674b7.jpg", - "response": "A group of workers are working on a dark tunnel. They are all wearing hard hats and work clothes. One worker is holding a tool in his right hand, and the other workers are standing around him.", - "id": 29079 - }, - { - "image_path": "G:\\images\\combined\\003114_jpg.rf.0ff5c2ad3050889d36c5fb97349cb054.jpg", - "response": "A construction worker is using a theodolite to take a measurement on a construction site. He is wearing a yellow shirt and a red hard hat. There are other workers in the background.", - "id": 29080 - }, - { - "image_path": "G:\\images\\combined\\003115_jpg.rf.5f04339187069131123f642a2d5c9460.jpg", - "response": "A worker in a blue helmet is up on a power pole, working on the wires.", - "id": 29081 - }, - { - "image_path": "G:\\images\\combined\\003116_jpg.rf.04a35367f8c13f6bd282c9803250a664.jpg", - "response": "A group of workers wearing hard hats are standing on a construction site. They are wearing grey, yellow and orange jackets and pants. Some of them are holding yellow and red sticks. In the distance, there are a few buildings under construction.", - "id": 29082 - }, - { - "image_path": "G:\\images\\combined\\003117_jpg.rf.db758907e468f99a05879174c7bcd234.jpg", - "response": "In the image there are two workers wearing blue overalls and white helmets. They are working on a yellow tower. One worker is on the left of the tower and is holding a yellow drill. The other worker is on the right of the tower and is holding a blue tool. There is a white bucket on the floor and a black and white helmet on the left side of the tower. In the background, there is a white and green truck.", - "id": 29083 - }, - { - "image_path": "G:\\images\\combined\\003118_jpg.rf.bc0c68ecc89009eaef2809057df3f550.jpg", - "response": "A man wearing a yellow hard hat with a white light on top is holding a flashlight in a tunnel. He is wearing a yellow vest and red headphones around his neck.", - "id": 29084 - }, - { - "image_path": "G:\\images\\combined\\003119_jpg.rf.28c62eebfe9dc480b0144fc80f21e328.jpg", - "response": "In the image there is a construction worker wearing a white shirt and a white hard hat. They are working on a construction site that appears to be a house being built. The worker is on a wooden platform and is working on a structure that appears to be a large rebar cage for a concrete beam. The sky is a clear, bright blue.", - "id": 29085 - }, - { - "image_path": "G:\\images\\combined\\00311da3fafdc55a.jpg", - "response": "A vintage stereoview card showing a crowd of people on a street, possibly at the St. Louis World's Fair.", - "id": 29086 - }, - { - "image_path": "G:\\images\\combined\\003120_jpg.rf.7019f13cada78582acd11860b62162a3.jpg", - "response": "The image shows two construction workers inside a tunnel. They are working on a steel beam that is propped up with wooden planks. The left worker is standing on some planks and is directing the other worker who is using a tool on the steel beam. The workers are wearing yellow and orange vests for safety. The tunnel is filled with smoke and the workers are wearing hard hats and masks.", - "id": 29087 - }, - { - "image_path": "G:\\images\\combined\\003121_jpg.rf.a8e8d2948185d7cd9f425d8b8ffbf801.jpg", - "response": "In the image two workers are seen wearing orange helmets and work clothes. They are seen working on a power line in the mountains. The mountains are green and have some buildings in between. The sky is blue with clouds.", - "id": 29088 - }, - { - "image_path": "G:\\images\\combined\\003122_jpg.rf.58d9d8cf567b8aea4d814c3bbd50de31.jpg", - "response": "A man wearing a hard hat and holding a set of plans in front of a bulldozer.", - "id": 29089 - }, - { - "image_path": "G:\\images\\combined\\003123_jpg.rf.e30653f596890259be7382c68f409157.jpg", - "response": "A worker is seen in a grey top and a blue helmet, working on a power line in the snow.", - "id": 29090 - }, - { - "image_path": "G:\\images\\combined\\003125_jpg.rf.f504e2c80ed40c5f448d0768fb44eb01.jpg", - "response": "A group of men in business attire are standing in front of a large construction site. They are all wearing hard hats. One man is holding a cell phone. To the right of the group, there is a large green and white sign that says \"\u5b89\u5168\u901a\u9053\" in yellow font. Behind the group, there is a large wall with a painting of an expressway. The wall also has a blue and white banner that says \"\u5b89\u5eb7\u5927\u9053\" in yellow font. The whole scene is taking place in front of a large construction site.", - "id": 29091 - }, - { - "image_path": "G:\\images\\combined\\003126_jpg.rf.dff8747e8795edfdac1a127f64edb8ba.jpg", - "response": "A group of people standing around a blueprint.", - "id": 29092 - }, - { - "image_path": "G:\\images\\combined\\003127_jpg.rf.0f8e165c410e0a0224d12e3913dda91e.jpg", - "response": "a group of men walking down a street", - "id": 29093 - }, - { - "image_path": "G:\\images\\combined\\003128_jpg.rf.702577135e5925c6b92559d832794341.jpg", - "response": "The image shows a group of workers standing on a large concrete structure, removing a section of it. The workers are wearing safety gear, including hard hats and safety vests. Some of them are using tools to remove the concrete, while others are holding onto the structure to ensure its stability. A crane is also visible in the background, lifting a large piece of concrete.", - "id": 29094 - }, - { - "image_path": "G:\\images\\combined\\003129_jpg.rf.bc1246186318506658c533e6e283d247.jpg", - "response": "a man(545,239),(944,996) is working on a construction site", - "id": 29095 - }, - { - "image_path": "G:\\images\\combined\\003130_jpg.rf.f8d8eb73f5ecdb832a0a6f70aeffe036.jpg", - "response": "In the image two workers are seen wearing blue and yellow helmets. One of them is holding a blue helmet in his hand and other is wearing it on his head. They are working in a village with two white residential houses on the left and right side of the image. A black cable is seen on a wooden table in the middle of the image. A man is seen standing on the right side of the table with a black cable in his hand. Another worker is seen on the left side of the table.", - "id": 29096 - }, - { - "image_path": "G:\\images\\combined\\003132_jpg.rf.7dde890a74fdede11edccfcc9e59fe42.jpg", - "response": "In the picture two workers are seen wearing blue and red color uniforms and helmet. They are repairing the pipes of a big machine which is grey in color. The machine is seen in a room with grey color walls and floor. The room is also having some iron color pipes and fans. The workers are also seen carrying some tools in their hands.", - "id": 29097 - }, - { - "image_path": "G:\\images\\combined\\003135_jpg.rf.fbd5b843b680549696a5de31adf36722.jpg", - "response": "In the image there are two construction workers wearing yellow helmets and safety gear. They are working on a construction site that has a large white building in the background. They are standing on wooden boards and are in the process of drilling into a large black pole. There are other workers visible in the background.", - "id": 29098 - }, - { - "image_path": "G:\\images\\combined\\003136_jpg.rf.5d1e2a8e2d042414e53c7a592e9db514.jpg", - "response": " A worker(318,414),(459,887) walks through the tunnel of the Crossrail project, which is currently under construction in central London.", - "id": 29099 - }, - { - "image_path": "G:\\images\\combined\\003137_jpg.rf.29fbb670d44abb8fb9913bf107b232a2.jpg", - "response": "A group of people standing on top of a building site.", - "id": 29100 - }, - { - "image_path": "G:\\images\\combined\\003138_jpg.rf.5e4888bc570e396e3d81f8316c15eac6.jpg", - "response": "A group of workers are working on a scaffold on a large metal cylinder. They are wearing blue uniforms and red hats. The metal cylinder is grey and it is located outdoors. The sky is blue and there are no clouds.", - "id": 29101 - }, - { - "image_path": "G:\\images\\combined\\003139_jpg.rf.d1d4725f6c2a74962f610d38b718c7fa.jpg", - "response": "A group of people working on a construction site.", - "id": 29102 - }, - { - "image_path": "G:\\images\\combined\\003141_jpg.rf.8a3f937ef1513b13509433f3a89c70ca.jpg", - "response": "A group of men standing in front of a large map.", - "id": 29103 - }, - { - "image_path": "G:\\images\\combined\\003143_jpg.rf.24577ce5c2ed97d2384b1ff0bae7390e.jpg", - "response": "A man in coveralls and a yellow hard hat stands on a wooden walkway between stacks of wooden planks and disassembled scaffolding. The ground is covered in scattered wooden planks and debris. The scene is very dark.", - "id": 29104 - }, - { - "image_path": "G:\\images\\combined\\003144_jpg.rf.3db7298fb09a87a2f659087f64523334.jpg", - "response": "A group of men standing around a construction site.", - "id": 29105 - }, - { - "image_path": "G:\\images\\combined\\003145_jpg.rf.f75415915aa0463909fe70a63634bd70.jpg", - "response": "A group of men working on a roof of a building.", - "id": 29106 - }, - { - "image_path": "G:\\images\\combined\\003146_jpg.rf.a52bd884a3c470931c3aed98c91550f4.jpg", - "response": "a group of people standing in a room that has no walls, only wooden beams", - "id": 29107 - }, - { - "image_path": "G:\\images\\combined\\003148_jpg.rf.61084272d880718132ece6ce0569394f.jpg", - "response": "A group of people working on a ship, two of them are wearing yellow hard hats and brown and blue coveralls, the other one is wearing a blue hat and a white helmet and a uniform with a blue bag. They are pulling on a black rope that is tied around a metal bar.", - "id": 29108 - }, - { - "image_path": "G:\\images\\combined\\003149_jpg.rf.3d14ec561dbee6d28ee3e854663419dd.jpg", - "response": "A man in a white hard hat is standing in front of a blue and yellow bulldozer. The bulldozer is in the process of demolishing a brick building. There is rubble and debris scattered around the bulldozer and building. The sky is blue with white clouds and the sun is shining brightly.", - "id": 29109 - }, - { - "image_path": "G:\\images\\combined\\003150_jpg.rf.0036a868bbd41d212e9a101f3eab7612.jpg", - "response": "A worker in a yellow hard hat crouches on the ground, holding a large orange hose. He is working on a construction site, and there is a pile of red metal rebar next to him. He is wearing a black jacket and blue jeans, and has a orange hard hat on.", - "id": 29110 - }, - { - "image_path": "G:\\images\\combined\\003151_jpg.rf.bc1809fd80d8a429cc951ab6b00ae01b.jpg", - "response": "A man in a white shirt and yellow hat working on power lines.", - "id": 29111 - }, - { - "image_path": "G:\\images\\combined\\003152_jpg.rf.16a54c041a5596c714e53981becca4b5.jpg", - "response": "The image shows a group of three men in hard hats standing in a large underground cavern. The cavern has a curved ceiling and walls, and is filled with rubble and debris on the floor. The men are standing near the center of the cavern, looking at something.", - "id": 29112 - }, - { - "image_path": "G:\\images\\combined\\003153_jpg.rf.32cf6af667a8c5a022be265e8aff7221.jpg", - "response": "A group of people standing around pointing at something.", - "id": 29113 - }, - { - "image_path": "G:\\images\\combined\\003154_jpg.rf.756862e34c309645ba35245fa3e4d1f2.jpg", - "response": "A large tree is being built into a brick structure.", - "id": 29114 - }, - { - "image_path": "G:\\images\\combined\\003155_jpg.rf.3d89ab176f5ee5ff8afc32043538968c.jpg", - "response": "A woman points to a posterboard with Chinese characters on it. It is standing on a patch of dirt.", - "id": 29115 - }, - { - "image_path": "G:\\images\\combined\\003156_jpg.rf.0b25613792fc859f365386d4bea8c25d.jpg", - "response": "In the image two workers are talking to each other. They are both wearing white helmets and blue overalls. In the background, on the left, there is a red tower crane and on the right a yellow tower crane. Above the workers there are some power lines.", - "id": 29116 - }, - { - "image_path": "G:\\images\\combined\\003157_jpg.rf.20861fe18a77094788183cff59a3b802.jpg", - "response": "In the image there are three workers wearing safety harnesses and hard hats. They are standing on a scaffolding that is placed against a white wall. The scaffolding is made of metal and is in the process of being built. The workers are focused on their task and are dressed in blue work clothes with red and yellow accents. They are also wearing safety boots.", - "id": 29117 - }, - { - "image_path": "G:\\images\\combined\\003158_jpg.rf.b5fdcbac47c98db952bd3157f90c69cb.jpg", - "response": "Four workers in hi-vis vests and hard hats pose for a photo on a construction site.", - "id": 29118 - }, - { - "image_path": "G:\\images\\combined\\003159_jpg.rf.1f62f641e4b6419089265ac9e906c83a.jpg", - "response": "In the image two men are working on a construction site. They are both wearing yellow hard hats and the man on the left is holding a shovel and has a red and white checkered shirt. The man on the right is wearing a green shirt and is holding a shovel as well. They are both working on digging up the ground. In the background there is a building under construction with several floors and columns.", - "id": 29119 - }, - { - "image_path": "G:\\images\\combined\\003160_jpg.rf.95fa6b7ce7b71d219f0e6abaa8014ea3.jpg", - "response": "A construction worker in a yellow helmet and orange vest is working on a construction site. He is bent over and looking at something on the ground. There is a bird on the ledge of the construction site.", - "id": 29120 - }, - { - "image_path": "G:\\images\\combined\\003161_jpg.rf.2c7bf941a76625dfc64a160854449dfb.jpg", - "response": "The image shows a large construction vehicle, a blue Kobelco SK210LC-10 excavator, parked on dirt in the foreground. It is\u6316\u571f\u673a, with a red arrow on the top of the vehicle pointing to the right. In the background, there is a forest of green trees. In front of the forest, there is a blue and white construction sign with yellow and red characters. The sign is placed on a blue wall. The wall is in turn, placed on a white curved wall. The curved wall is part of a tunnel. There are several workers in orange vests standing in the tunnel, working on the wall.", - "id": 29121 - }, - { - "image_path": "G:\\images\\combined\\003162_jpg.rf.f5cf0186388ffb3cb1ea2c16a6b45522.jpg", - "response": "A man in a black jacket and yellow helmet is holding a stick with a hook on the end. He is looking up at a power line.", - "id": 29122 - }, - { - "image_path": "G:\\images\\combined\\003163_jpg.rf.5be6a44ee53df0af31832a0af92e12a6.jpg", - "response": "a group of men standing around a hole in the ground", - "id": 29123 - }, - { - "image_path": "G:\\images\\combined\\003168_jpg.rf.d6963f8e58c3e4be14d6fccf1aece556.jpg", - "response": "a group of men(231,183),(766,935) walking", - "id": 29124 - }, - { - "image_path": "G:\\images\\combined\\003169_jpg.rf.e4bcd8c55c6d99e00a79d763e1064867.jpg", - "response": "A line of people stand on a construction site, wearing red hard hats. They are all facing away from the camera. In the background, there are several buildings under construction.", - "id": 29125 - }, - { - "image_path": "G:\\images\\combined\\003171_jpg.rf.a4431d7c65aba9f6f4b7fcab1c7ce85d.jpg", - "response": "In the image there is a group of people dressed in orange wearing hard hats. They are walking across a bridge that is yellow and made of wood. There is a person on the right side of the image who is walking towards the camera wearing a helmet and carrying a yellow tool bag. There is a red and yellow tower in the background on the right side of the image. In front of the people there is a white fence. On the right side of the image there is a person who is not dressed in work clothes.", - "id": 29126 - }, - { - "image_path": "G:\\images\\combined\\003172_jpg.rf.23eb538c5cf8ea0910289030f2b9259a.jpg", - "response": "a group of people standing around a large piece of machinery", - "id": 29127 - }, - { - "image_path": "G:\\images\\combined\\003173_jpg.rf.523ca025882382e8ca2e61ee88a723cb.jpg", - "response": "a group of people standing in front of a bus", - "id": 29128 - }, - { - "image_path": "G:\\images\\combined\\003174_jpg.rf.4e9b3e94ac260afcddb83d1496c641d7.jpg", - "response": " several people(676,220),(828,958)(79,153),(293,995)(300,222),(418,821)(469,259),(610,955)(802,260),(912,915)(918,253),(1000,936) holding umbrellas(2,3),(177,249)(609,135),(850,303)(203,85),(417,229)(381,162),(605,325)(413,268),(561,378)(615,237),(759,347)", - "id": 29129 - }, - { - "image_path": "G:\\images\\combined\\003175_jpg.rf.e3fc7e50bb8f3c581f59dcd6b7ebdf18.jpg", - "response": "a group of men in hard hats", - "id": 29130 - }, - { - "image_path": "G:\\images\\combined\\003180_jpg.rf.d4bf0dca00b066d6570b75b2d5f3e08d.jpg", - "response": "A group of men working on a building construction site.", - "id": 29131 - }, - { - "image_path": "G:\\images\\combined\\003181_jpg.rf.10d06c7bfb4147626b1d5437890c4101.jpg", - "response": "The image is a black and white photograph of three men working on a water pipe. The man in the center is holding a pipe wrench and is in the process of connecting a pipe to the water main. The man on the left is crouched down and appears to be digging in the dirt. The man on the right is also crouched down and is wearing a camouflage uniform.", - "id": 29132 - }, - { - "image_path": "G:\\images\\combined\\003182_jpg.rf.80955c779230e30ee4749214fae2c801.jpg", - "response": "In the image there is a construction worker wearing a grey uniform and a white helmet. The construction worker is in the process of pulling on a thick rope which is attached to a metal rebar. The background shows a tall yellow building under construction and another building in the distance that has been completed. There is also a blue shirted man standing below the construction worker and a black and yellow construction vehicle parked further back.", - "id": 29133 - }, - { - "image_path": "G:\\images\\combined\\003184_jpg.rf.f7e4964bcfc6b18611977a67b04410a3.jpg", - "response": "A group of construction workers standing in front of a car.", - "id": 29134 - }, - { - "image_path": "G:\\images\\combined\\003185_jpg.rf.ad47201f9b17ad031382ca9de5468539.jpg", - "response": "A man in a yellow hard hat is lifting a piece of wood over a truck.", - "id": 29135 - }, - { - "image_path": "G:\\images\\combined\\003186_jpg.rf.e784f9e23096985d70a90025cd9547de.jpg", - "response": "An older man wearing a hard hat and a yellow safety vest stands in front of a large building under construction. He is wearing a suit and tie and appears to be the head of the construction site.", - "id": 29136 - }, - { - "image_path": "G:\\images\\combined\\003187_jpg.rf.a1b5858e0765dc3ca8595aa9350e69d3.jpg", - "response": "A group of people standing around a ladder.", - "id": 29137 - }, - { - "image_path": "G:\\images\\combined\\003190_jpg.rf.d6b38a68ff4a730abe60bca9ee1907ae.jpg", - "response": "In the image there is a construction site with a worker in a yellow helmet and a yellow crane in the background. The worker is sitting on some scaffolding and there are some wooden planks around him. The sky is blue and the sun is shining.", - "id": 29138 - }, - { - "image_path": "G:\\images\\combined\\003193_jpg.rf.c62281717c1058f2dc28fe403f9a40dc.jpg", - "response": "In the image there are two construction workers wearing yellow jackets and red helmets. They are standing in the mud in front of a construction site. There is a large crane operating in the background. In front of the crane is a truck. Further down the road there are two cars.", - "id": 29139 - }, - { - "image_path": "G:\\images\\combined\\003195_jpg.rf.7b0e5fb96e02fd48d0a30872dc86e9fd.jpg", - "response": "A train on a track with workers on a yellow platform above it.", - "id": 29140 - }, - { - "image_path": "G:\\images\\combined\\003197_jpg.rf.b8b1a2f370789cf49400b812376ed5b3.jpg", - "response": "A group of people standing around a construction site.", - "id": 29141 - }, - { - "image_path": "G:\\images\\combined\\003198_jpg.rf.eafc5a8e447d4b6eefd4727276ff1a85.jpg", - "response": "The image shows a group of people standing in front of a white and blue building with a sign that reads \"Caizhong\". The people are wearing hard hats and some are wearing suits. The background features a hill with trees.", - "id": 29142 - }, - { - "image_path": "G:\\images\\combined\\003199_jpg.rf.9678a1f8fe46c35448b1398737565f16.jpg", - "response": "A group of men working on a building site.", - "id": 29143 - }, - { - "image_path": "G:\\images\\combined\\0031abbb357b6fa1.jpg", - "response": "A wooden boardwalk with the words supercruise written on it.", - "id": 29144 - }, - { - "image_path": "G:\\images\\combined\\0031bff54b02c9c1.jpg", - "response": "A table with a pink and white table cloth and a pink and white table runner.", - "id": 29145 - }, - { - "image_path": "G:\\images\\combined\\003200_jpg.rf.967b68905ffe5c26bbdfda160fad177f.jpg", - "response": "In the image there are two people standing in front of a large white tank. The tank has a grey metal structure on top of it. The people are both wearing yellow and orange helmets. The man on the left is wearing a yellow shirt and the man on the right is wearing a yellow and orange shirt.", - "id": 29146 - }, - { - "image_path": "G:\\images\\combined\\003201_jpg.rf.6eb3f1c572d72f1fceedfd82571ebf12.jpg", - "response": "A room with a large open doorway. On the left is a large white box with the words '\u76d1\u7406\u67dc' on it. To the right of the cabinet is a woman wearing a black shirt and purple shorts. She is holding a piece of white paper. On the wall behind her is blue text.", - "id": 29147 - }, - { - "image_path": "G:\\images\\combined\\003202_jpg.rf.4ac41458b3073e3a4b9d186e67835751.jpg", - "response": "The image shows two men in blue hard hats and work clothes, looking at an electrical panel. They are both holding a clipboard. The man on the left is taller and is partially visible, only his profile and shoulders are visible. The man on the right is shorter and is looking at the electrical panel. The panel has many wires and knobs.", - "id": 29148 - }, - { - "image_path": "G:\\images\\combined\\003203_jpg.rf.d1f294fc8f6fa4ddd7953595ef68df96.jpg", - "response": "A construction site with a few people working. There are yellow metal poles on the ground and a pile of wooden materials. Some people are wearing yellow helmets.", - "id": 29149 - }, - { - "image_path": "G:\\images\\combined\\003204_jpg.rf.e0153e7ef15030b75ccb22943332275d.jpg", - "response": "A man in a blue hard hat is kneeling down next to a white pole. The man is wearing a grey jumpsuit and is holding a blue glove. There is another person behind him, dressed in black and wearing a blue hat. They are both crouched down and looking at the pole. The sky is blue and clear in the background. There is snow on the ground around the pole and some grass is visible in the foreground.", - "id": 29150 - }, - { - "image_path": "G:\\images\\combined\\003205_jpg.rf.c4347931ab993cccd8a010b2767ba5b5.jpg", - "response": "A group of people standing around a pile of dirt.", - "id": 29151 - }, - { - "image_path": "G:\\images\\combined\\003206_jpg.rf.bff906150917c2d048f00d2c877a663d.jpg", - "response": "The image shows a group of rescue workers in red uniforms working together to rescue a person trapped in a cave. The person is located on the right side of the image, and there are several rescue workers surrounding them. Some of the workers are kneeling on the ground, while others are standing. They are all wearing white helmets and appear to be focused on the task at hand. In the background, there are some rocks and a piece of machinery that appears to be used for rescue operations. The photo is taken at night, as indicated by the dark background.", - "id": 29152 - }, - { - "image_path": "G:\\images\\combined\\003208_jpg.rf.64735861379b81547b6a29ac2596a271.jpg", - "response": "A group of people working on a construction site.", - "id": 29153 - }, - { - "image_path": "G:\\images\\combined\\003210_jpg.rf.283e2346263bcdb08c0338a840acd41d.jpg", - "response": "A man wearing a yellow hard hat and work clothes is working on a construction site. He is laying bricks or cinder blocks on the ground. In the background, there is a bulldozer and a yellow truck. There are also some buildings under construction. The sky is blue with white clouds.", - "id": 29154 - }, - { - "image_path": "G:\\images\\combined\\003211_jpg.rf.4722b94e653d08e9db5a6c5c3899099c.jpg", - "response": " An engineer(83,189),(854,998) poses for a photo in front of a large metal door.", - "id": 29155 - }, - { - "image_path": "G:\\images\\combined\\003212_jpg.rf.445b2bcc322a1a14b09d66bfaeef3ccb.jpg", - "response": "The image shows a construction site in China. There are two workers on the green metal scaffolding, one on the left and one on the right. They are wearing white T-shirts and grey pants. There is a red banner with white writing on the scaffolding. It says \"Time to\u6ce8\u610f safety,\u5904\u7406\u9884 \u9632\u4e8b\u6545\". The banner is placed horizontally and spans the width of the scaffolding. The background is a construction of concrete pillars and beams.", - "id": 29156 - }, - { - "image_path": "G:\\images\\combined\\003213_jpg.rf.b97ce480f6627989557e2e02488c1aba.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats, adjusting wires on a metal frame. They are both working on the same task and are focused on their work.", - "id": 29157 - }, - { - "image_path": "G:\\images\\combined\\003214_jpg.rf.5c9a4c71ca1f447dc33bfad42cc05f89.jpg", - "response": "A couple of workers are on a cherry picker working on some power lines.", - "id": 29158 - }, - { - "image_path": "G:\\images\\combined\\003215_jpg.rf.62069d2ba54e81906a3b9b6d838f79b3.jpg", - "response": "A group of four people standing in front of a yellow machine with red stripes.", - "id": 29159 - }, - { - "image_path": "G:\\images\\combined\\003216_jpg.rf.7ed7e1dbdfb8e055ff10aeb0b2fa904a.jpg", - "response": "A man in a white hard hat is sitting on a ladder. Another man is standing on the ladder and a third man is standing on the ground. They are working on a large building with many pillars.", - "id": 29160 - }, - { - "image_path": "G:\\images\\combined\\003217_jpg.rf.e0d9e249cc66b16b08f3862dbf374b2e.jpg", - "response": "a group of men standing around a board", - "id": 29161 - }, - { - "image_path": "G:\\images\\combined\\003219_jpg.rf.985309e33aab014c2ce831d66b6c9cab.jpg", - "response": "In the image there are two men wearing orange protective clothing and white hard hats. They are crouched down next to train tracks. In the background there is a yellow tractor. To the left of the tractor there is a large black container.", - "id": 29162 - }, - { - "image_path": "G:\\images\\combined\\003220_jpg.rf.07feaa27f5c9a747677d6b825fb3f14a.jpg", - "response": "A group of three men working on a red piece of machinery.", - "id": 29163 - }, - { - "image_path": "G:\\images\\combined\\003221_jpg.rf.70abd545193cbce692b0fd9457980827.jpg", - "response": "A man and a woman wearing red helmets stand in front of a construction site. The woman is holding a cell phone to her ear. The man is holding a red bucket filled with various tools.", - "id": 29164 - }, - { - "image_path": "G:\\images\\combined\\003223_jpg.rf.be7168cb80e12a91c0d9d0d26ad8fc16.jpg", - "response": "A construction site with a worker operating a machine that is cutting metal.", - "id": 29165 - }, - { - "image_path": "G:\\images\\combined\\003224_jpg.rf.0f0d7e2493ad96883a9ed9eecff35b58.jpg", - "response": "An electrician is working on a power line.", - "id": 29166 - }, - { - "image_path": "G:\\images\\combined\\003225_jpg.rf.ff972478f1bb35668a2d38c89ee7983a.jpg", - "response": "In the image, a worker is using a demolition hammer to perform maintenance on a bridge. The worker is wearing a yellow helmet and a mask to protect themselves from debris and dust. They are standing on a ladder and are in the process of drilling into the concrete of the bridge. The bridge itself is grey in color and has a concrete support column on the right side of the image.", - "id": 29167 - }, - { - "image_path": "G:\\images\\combined\\003226_jpg.rf.ebbd67f8eea9302cebaee29a91c46789.jpg", - "response": "The image shows two men standing next to a large roll of what appears to be metal. Both men are wearing hard hats, and one of them is wearing a red hard hat while the other is wearing a yellow one. They seem to be discussing something related to the metal.", - "id": 29168 - }, - { - "image_path": "G:\\images\\combined\\003227_jpg.rf.55c7c13460e5f352449d48e1a53232f4.jpg", - "response": "man(419,188),(684,980)", - "id": 29169 - }, - { - "image_path": "G:\\images\\combined\\003228_jpg.rf.9aa0b7d75272185e12165eafcd28e18c.jpg", - "response": "A man in orange standing in front of a bulldozer on a construction site.", - "id": 29170 - }, - { - "image_path": "G:\\images\\combined\\003229_jpg.rf.e1ebd46e8d9002e599cb61b8e1d17c9d.jpg", - "response": "A group of construction workers wearing safety gear stand on a platform.", - "id": 29171 - }, - { - "image_path": "G:\\images\\combined\\003230_jpg.rf.da0c1a41877ca5eac85065c7d556d28b.jpg", - "response": "A group of four workers are seen working on an electrical station with tools in their hands. They are wearing blue overalls.", - "id": 29172 - }, - { - "image_path": "G:\\images\\combined\\003231_jpg.rf.b77223bce637bd04f7a344155024726f.jpg", - "response": "A group of men are holding a rope and pulling it.", - "id": 29173 - }, - { - "image_path": "G:\\images\\combined\\003232_jpg.rf.2cc122f2d234b19a648f88f78aae378b.jpg", - "response": "Two men in high visibility vests and hard hats, one holding a clipboard and the other with his back turned, standing in front of a white wall.", - "id": 29174 - }, - { - "image_path": "G:\\images\\combined\\003234_jpg.rf.37e434fdb615aedb3722aa3bb1e44b04.jpg", - "response": "A construction worker and a supervisor looking at a blueprint on a job site.", - "id": 29175 - }, - { - "image_path": "G:\\images\\combined\\003235_jpg.rf.94e4c82aaf2b64b9ffebf3f75e4c333f.jpg", - "response": "In the image there is a man wearing a red helmet and a mask, goggles and green and gray clothes. The man is on a red bridge and is working on a red wall. The bridge has a metal red railing.", - "id": 29176 - }, - { - "image_path": "G:\\images\\combined\\003236_jpg.rf.985a01eb4818ec4cf82aea9751ec2563.jpg", - "response": "In the image two workers are seen repairing an electricity post. One of the worker is wearing a helmet and is standing on a metal ladder. Another worker is wearing a white uniform and is seen holding a tool. Both the workers are wearing yellow and red color helmets. There are two electric wires coming from the post and a blue color sky is seen in the background.", - "id": 29177 - }, - { - "image_path": "G:\\images\\combined\\003237_jpg.rf.fbcdb3ffba1160899e4fac4e25620624.jpg", - "response": "A man in a blue shirt and red helmet is pointing to a white building. Another man in a green shirt and red helmet is standing to the left of the man in the blue shirt. They are both standing in front of a white building. There is a ladder propped up against the building.", - "id": 29178 - }, - { - "image_path": "G:\\images\\combined\\003238_jpg.rf.7a7fb4d192301d12fc5923bd59ffab62.jpg", - "response": "A man wearing a blue jacket and a red hard hat is pointing to a glass insulator on a power transmission line. He is wearing work gloves and has a backpack on. The sky is light blue in the background.", - "id": 29179 - }, - { - "image_path": "G:\\images\\combined\\003239_jpg.rf.5f1317fe8ce357b0b265e70ee13d406b.jpg", - "response": "In the image there is a construction site with multiple workers. There is a man pushing a wheelbarrow full of bricks. Another man is working on a scaffold. There are multiple bricks and a red umbrella in the scene. A building with many floors is under construction in the background.", - "id": 29180 - }, - { - "image_path": "G:\\images\\combined\\003240_jpg.rf.bfa014c602fabd220b54e3a8138f2197.jpg", - "response": "a person wearing a yellow hard hat", - "id": 29181 - }, - { - "image_path": "G:\\images\\combined\\003241_jpg.rf.fb7d859635053f9cf52fad07ad4e44c8.jpg", - "response": "A group of men in orange work clothes and red hats are walking down a set of train tracks. They are all wearing red work clothes and red hats. One man is walking in front of the others. The man in the middle is wearing a white hard hat. The man on the far right is carrying a tool bag. The men are all wearing gloves.", - "id": 29182 - }, - { - "image_path": "G:\\images\\combined\\003242_jpg.rf.2df58e8ff67a6fe7c83d5e8209beec19.jpg", - "response": "A group of rescue workers in yellow helmets are standing on a construction site.", - "id": 29183 - }, - { - "image_path": "G:\\images\\combined\\003243_jpg.rf.41e69eddc0accedf67b3ef72bb463f57.jpg", - "response": "A man in a blue helmet and orange vest is working on a power line. He is standing on a wooden ladder and has a tool in his hand. He is repairing a wire on a wooden electrical pole.", - "id": 29184 - }, - { - "image_path": "G:\\images\\combined\\003245_jpg.rf.3612d3e750448a5a208b0c21890dd8f1.jpg", - "response": "A worker is pointing at a wall while another worker is holding a gun with a yellow and red liquid. Both of them are wearing safety helmets and the worker holding the gun is also wearing a vest. They are standing in a room that has wooden walls and the floor is being constructed. There is a blueprint in the worker's hand who is pointing at the wall.", - "id": 29185 - }, - { - "image_path": "G:\\images\\combined\\003246_jpg.rf.726fe6cf2713b12ec42ee8faf2c6fed4.jpg", - "response": "a group of people standing around talking", - "id": 29186 - }, - { - "image_path": "G:\\images\\combined\\003247_jpg.rf.21f411b5751d64cf27bf68e9565f0ff9.jpg", - "response": "a group of people standing in front of a building", - "id": 29187 - }, - { - "image_path": "G:\\images\\combined\\003248_jpg.rf.f0d499cbaf1328e203fca4b0541fcb38.jpg", - "response": "Four men in red work clothes and red helmets are pulling a red pipe.", - "id": 29188 - }, - { - "image_path": "G:\\images\\combined\\003249_jpg.rf.337265202686049fc7a1622da082dee2.jpg", - "response": "A couple of men working on a power line.", - "id": 29189 - }, - { - "image_path": "G:\\images\\combined\\003251_jpg.rf.30304a26dce210915d3a846fb53a3956.jpg", - "response": "a group of men standing under umbrellas", - "id": 29190 - }, - { - "image_path": "G:\\images\\combined\\003252_jpg.rf.644232f4230c6afaf41d2d27bb3514e4.jpg", - "response": "The image shows two workers repairing a power line. They are both wearing blue jeans and white helmets. One worker is sitting on the power pole, and the other one is standing beside him. They are both holding tools in their hands. The sky is white in the background.", - "id": 29191 - }, - { - "image_path": "G:\\images\\combined\\003253_jpg.rf.6ba2860761cb46ac4817cf34c0eb7337.jpg", - "response": "A man wearing a hard hat and work clothes is using a power drill to attach a metal bar to a concrete wall. He is wearing a yellow safety vest and black gloves. There is a yellow ladder in the background.", - "id": 29192 - }, - { - "image_path": "G:\\images\\combined\\003255_jpg.rf.28c782b54ac1f24e50a4b40a331ffffb.jpg", - "response": "two workers in yellow vests and orange hard hats standing on a construction site looking at blueprints", - "id": 29193 - }, - { - "image_path": "G:\\images\\combined\\003256_jpg.rf.81d20bdfa4d37ab2c314c14ac08716eb.jpg", - "response": "A construction worker in a orange outfit and yellow hat points to the right. Two yellow and grey excavators are to the left of the worker. One of the excavators has a grey bucket on the front. In the background there is a mountain.", - "id": 29194 - }, - { - "image_path": "G:\\images\\combined\\003258_jpg.rf.4580f2576004d8d068de7cd9f46d1c72.jpg", - "response": "A man in a yellow vest and white helmet is looking at solar panels in a field. The sun is shining brightly and there are blue skies with a few clouds.", - "id": 29195 - }, - { - "image_path": "G:\\images\\combined\\003259_jpg.rf.530226d6989dadf8314b523b7d382ead.jpg", - "response": "A group of workers are working on a large metal structure.", - "id": 29196 - }, - { - "image_path": "G:\\images\\combined\\00325fc8496cde98.jpg", - "response": "A black and white image of a newspaper advertisement for Barcroco, a board game. The text is in English and is set in a serif font. The advertisement features soldiers and a tank.", - "id": 29197 - }, - { - "image_path": "G:\\images\\combined\\003260_jpg.rf.e1972e1ecf0ade2c5e510193f601816e.jpg", - "response": " Firefighters(587,481),(701,655)(494,472),(596,606)(729,459),(839,656) in boats(433,570),(954,743) inside the flooded tunnel", - "id": 29198 - }, - { - "image_path": "G:\\images\\combined\\003261_jpg.rf.2c157b80404d8dd836b6d8a42286a7e9.jpg", - "response": "A bus is on its side in a field, and rescue workers are standing around it.", - "id": 29199 - }, - { - "image_path": "G:\\images\\combined\\003262_jpg.rf.18057ad003fe9fa8648410c4db9dfd04.jpg", - "response": "A group of people standing around a yellow pipe.", - "id": 29200 - }, - { - "image_path": "G:\\images\\combined\\003264_jpg.rf.418aba4b508b9752dfbc4d08d0f76a4a.jpg", - "response": "An electrician wearing a blue hat and grey protective suit is working on fixing a power line.", - "id": 29201 - }, - { - "image_path": "G:\\images\\combined\\00326537f57449d0.jpg", - "response": "A close up of a bottle of Rockando Single Malt Scotch Whisky. The label is yellow and brown and has a bar code and nutrition facts.", - "id": 29202 - }, - { - "image_path": "G:\\images\\combined\\003265_jpg.rf.469d9d115ecc3e3e4ed6c264f24ed4fd.jpg", - "response": "A man in a uniform and blue helmet is working on a power line attached to a tall wooden pole. The building behind him has many windows and is painted blue and white. There are many electrical boxes and wires attached to the building.", - "id": 29203 - }, - { - "image_path": "G:\\images\\combined\\003266_jpg.rf.e9f31f7594160bc7ff9b19eef3b8f314.jpg", - "response": "A man wearing a yellow hard hat standing in front of a blue dumpster.", - "id": 29204 - }, - { - "image_path": "G:\\images\\combined\\003267_jpg.rf.d5a8be41772470d4d8b518da617d445b.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 29205 - }, - { - "image_path": "G:\\images\\combined\\003268_jpg.rf.9ce067eeb87e61248bb787c660e115ff.jpg", - "response": "A construction worker wearing a yellow shirt and a hard hat is pouring concrete into a large yellow bin. The worker is standing on a platform and using a large yellow funnel to pour the concrete. The concrete is being poured into a large structure that is under construction. The sky is blue and there are no other people in the image.", - "id": 29206 - }, - { - "image_path": "G:\\images\\combined\\003269_jpg.rf.baae8dd5cdb60e43123de0346f6f33e8.jpg", - "response": "A man in a blue hard hat standing in front of a construction site.", - "id": 29207 - }, - { - "image_path": "G:\\images\\combined\\003270_jpg.rf.e505cad6b8610d10d6c99e85bd3b61a6.jpg", - "response": "a group of men working on a snowy hill", - "id": 29208 - }, - { - "image_path": "G:\\images\\combined\\003271_jpg.rf.8969b0391c0fc64e12a50be8d844e1f7.jpg", - "response": "The picture shows a group of people walking on a pedestrian road. Most of the people are dressed in white and blue, and some are carrying briefcases. Among them, there are two men in white shirts and black suits who seem to be in the front. There are also two women walking on the right side. The road is flanked by green trees and a building on the left.", - "id": 29209 - }, - { - "image_path": "G:\\images\\combined\\003272_jpg.rf.a469c8b40f100d3a3eef67580dae383b.jpg", - "response": "A group of men walking through a construction site.", - "id": 29210 - }, - { - "image_path": "G:\\images\\combined\\003273_jpg.rf.a9ebcc5086f1116e95e134a5cc8dc2c5.jpg", - "response": "The image shows a construction site with two men working on a large pipe. The pipe is situated in the center of the image and runs from the bottom to the top. It is wrapped in a black material and is connected to another pipe running horizontally to the left. The men are sitting on the ground and working on the pipe. They are wearing black jackets and there is a yellow machine in the background. The scene is filled with various objects including a bench, a backpack, a handbag and a bottle. The whole scene is surrounded by a wire fence.", - "id": 29211 - }, - { - "image_path": "G:\\images\\combined\\003274_jpg.rf.19a4f9112138d721a3af774920b47679.jpg", - "response": "a group of men standing in front of a tunnel", - "id": 29212 - }, - { - "image_path": "G:\\images\\combined\\003275_jpg.rf.9e9d5cf7b62214fe7b636b74aac4f98d.jpg", - "response": "A group of people working on a construction site.", - "id": 29213 - }, - { - "image_path": "G:\\images\\combined\\003276_jpg.rf.060db21e5d39bd83022439986f8f70cb.jpg", - "response": "The image shows two men in yellow hats and grey jumpers working on a ladder next to a pink shop front with a sign above it saying 'Opening Soon'. The men are standing on a white ladder and appear to be working on a grey air conditioning unit. There is a red and white Chinese lantern hanging from the pink shop front.", - "id": 29214 - }, - { - "image_path": "G:\\images\\combined\\003277_jpg.rf.76ad07815e79882d76279fab7e7e1adf.jpg", - "response": "A group of men standing around each other.", - "id": 29215 - }, - { - "image_path": "G:\\images\\combined\\003278_jpg.rf.c81e93a1f41cdc884c13a7c6a4f6c5fe.jpg", - "response": "The image shows two men in work clothes, one red and one blue, working on an electrical wire in a wooded area. They are using equipment to work on the wire.", - "id": 29216 - }, - { - "image_path": "G:\\images\\combined\\003280_jpg.rf.15d72c30670068bb79ff43faa41f6a42.jpg", - "response": "A construction worker wearing a grey shirt and blue jeans is welding a large piece of metal while squatting down on a concrete platform. The worker is wearing a grey hard hat and orange safety vest. There is a large cinder block next to them and another worker in the background, wearing a yellow safety vest and grey pants. They are standing on a concrete platform and there is a large piece of metal next to them. There is also a yellow pipe sticking out of the ground. The background is a grey sky.", - "id": 29217 - }, - { - "image_path": "G:\\images\\combined\\003281_jpg.rf.e0808bf329e38964857d49ed324c34db.jpg", - "response": "A man in a small mechanical\u81c2\u91cc", - "id": 29218 - }, - { - "image_path": "G:\\images\\combined\\003283_jpg.rf.23d8fd60c418e73b9a85b904feaef528.jpg", - "response": "a snowy street with two men wearing hard hats and jackets", - "id": 29219 - }, - { - "image_path": "G:\\images\\combined\\003284_jpg.rf.0dabdbd18e54e505f69b50badb2f0aa6.jpg", - "response": "A worker in an orange jacket and blue hat is holding a large spool of grey wire in a field.", - "id": 29220 - }, - { - "image_path": "G:\\images\\combined\\003285_jpg.rf.c3452f3e240a452c7cb64d94fec3b5df.jpg", - "response": "A couple of men in green uniforms and orange helmets are working on power lines.", - "id": 29221 - }, - { - "image_path": "G:\\images\\combined\\003286_jpg.rf.b7d14fe6bb17853873fdcd407308c9bf.jpg", - "response": "A group of people sitting around a table looking at papers.", - "id": 29222 - }, - { - "image_path": "G:\\images\\combined\\003287_jpg.rf.96b62523b09ff953d32bd543295b0b18.jpg", - "response": "a group of men standing around each other", - "id": 29223 - }, - { - "image_path": "G:\\images\\combined\\003288_jpg.rf.4d90f3badb2a31f42bb9390b1be9e38c.jpg", - "response": "In the image there is a person wearing a red helmet and a black jacket. The person is reading a book. There is a yellow construction vehicle in the background. The person is standing in front of a grey fence.", - "id": 29224 - }, - { - "image_path": "G:\\images\\combined\\003289_jpg.rf.36f1658ebe5fc1df33e53909e579596a.jpg", - "response": "The image shows two workers in gray uniforms and black hats standing on a roof near power lines. They are working on an electrical box.", - "id": 29225 - }, - { - "image_path": "G:\\images\\combined\\003290_jpg.rf.ada5ac7d6b7de953dbf7cd661e10ecc7.jpg", - "response": "The image shows two construction workers on a building construction site. They are wearing safety helmets and standing near some scaffolding. In front of them is a yellow and white generator and a concrete cutter. There are several wires on the ground and a pile of bricks to the left. The whole scene is framed by a grey sky.", - "id": 29226 - }, - { - "image_path": "G:\\images\\combined\\003291_jpg.rf.9bb69ba19fbe3210cb7e18fe6c3432e1.jpg", - "response": "man in blue(578,278),(732,933)", - "id": 29227 - }, - { - "image_path": "G:\\images\\combined\\003292_jpg.rf.2ac4bc8701ff474a6875ec372cb4c552.jpg", - "response": "A group of workers are working on a power station.", - "id": 29228 - }, - { - "image_path": "G:\\images\\combined\\003293_jpg.rf.bee49802212929fbb4332eef6824249e.jpg", - "response": "A group of construction workers in hard hats and orange vests are standing around a large hole in the ground. Some of them are in the hole, and others are standing on the ground around the hole. They are all wearing hard hats.", - "id": 29229 - }, - { - "image_path": "G:\\images\\combined\\003294_jpg.rf.7d9b33b013106e7e242eb86bd2ed4038.jpg", - "response": "The image shows a large room filled with pipes and valves of various sizes. The room has a yellow floor and is filled with equipment. There are two people in the room, both dressed in black and wearing hats and protective gear. One of the people is standing near the middle-left of the image, while the other is further to the right. They are both holding equipment and looking at something.", - "id": 29230 - }, - { - "image_path": "G:\\images\\combined\\003295_jpg.rf.35cf2e7d2f5051c442cccaba5f6ca405.jpg", - "response": "A picture of workers fixing a power line against a blue and white sky with clouds.", - "id": 29231 - }, - { - "image_path": "G:\\images\\combined\\003296_jpg.rf.d7cc79c1cced4ef7069923e276b0c454.jpg", - "response": "In the image there are two men dressed in red overalls, one of which is wearing a helmet. They are standing on a ladder next to a large metal pole with power lines above them. They are working on a transformer which is on top of the pole. The transformer is square in shape and is dark grey in color. The men are wearing red helmets and red overalls. The pole is made of wood and the transformer is attached to it.", - "id": 29232 - }, - { - "image_path": "G:\\images\\combined\\003297_jpg.rf.f5f527baaf6895ecc2d789547fae6546.jpg", - "response": "A couple of men wearing hard hats are working on a power box.", - "id": 29233 - }, - { - "image_path": "G:\\images\\combined\\003298_jpg.rf.b27a9e39f2da1c3fe4348e050273457b.jpg", - "response": "An electrician repairs a power line.", - "id": 29234 - }, - { - "image_path": "G:\\images\\combined\\003299_jpg.rf.4d774ab9fc9082e5e62c3e86c28ad767.jpg", - "response": "Two men in yellow vests and hard hats are walking through a large warehouse. They are both holding clipboards and looking at them. The man on the left is also holding a laptop. The room has metal racks filled with boxes on the shelves.", - "id": 29235 - }, - { - "image_path": "G:\\images\\combined\\0032a741dee9449b.jpg", - "response": "A collage of three photos, one of a person on a cell phone, one of a Jack Daniels bottle, and one of a man lighting a cigarette.", - "id": 29236 - }, - { - "image_path": "G:\\images\\combined\\0032d6fe69014669.jpg", - "response": "A bottle of Mitteix Challenger on a white counter.", - "id": 29237 - }, - { - "image_path": "G:\\images\\combined\\003300_jpg.rf.44f4a53c08762f2913df77ffac83c6b7.jpg", - "response": "A group of people working on a construction site.", - "id": 29238 - }, - { - "image_path": "G:\\images\\combined\\003301_jpg.rf.a989285b34a488755eb86ce7b4fe7074.jpg", - "response": "The image shows three construction workers on scaffolding. They are all wearing yellow hard hats and there is a fourth worker, who is not on scaffolding, visible in the bottom right corner of the image. The scaffolding is made of yellow pipes and the sky is blue.", - "id": 29239 - }, - { - "image_path": "G:\\images\\combined\\003302_jpg.rf.5a0555bddb202cb8bf51859f1205cc4b.jpg", - "response": "A man in a red jumpsuit and a hard hat is leaning against a red shipping container. He is holding onto a metal bar and appears to be trying to close the door of the container. The container has several written instructions on it, including one that says \"DOOR FIRST OPEN CLOSE\" and another that says \"UNLATCH TO CLOSE DOOR\". The man is also wearing brown work boots.", - "id": 29240 - }, - { - "image_path": "G:\\images\\combined\\003303_jpg.rf.c3244136307ef102696af3eed843d6fa.jpg", - "response": "a group of people standing in front of a small white building", - "id": 29241 - }, - { - "image_path": "G:\\images\\combined\\003304_jpg.rf.a77536249c7883c7b57e4fbfb45ea3fa.jpg", - "response": "In the image there are three people standing in a field. They are all wearing hard hats and yellow and green vests. The person on the left is the shortest and is holding a blue clipboard. The person in the middle is of medium height and is holding a yellow hard hat. The person on the right is the tallest and is holding a tablet. In front of them is a yellow tripod with a device on top. To the right of the people is a red rope fence. In the background are green trees and a mountain range. To the far right is a blue sky with white clouds.", - "id": 29242 - }, - { - "image_path": "G:\\images\\combined\\003305_jpg.rf.49d2a935820d4f56f7eba78da8d1100e.jpg", - "response": "The image depicts two workers posing for a photo in a workshop. Both are wearing yellow hard hats and tool belts. The worker on the left is a bit taller and has a goatee. They are both smiling at the camera. The worker on the right has a mustache and is looking to the side. The background consists of a white bathtub and a pile of wrapped packages.", - "id": 29243 - }, - { - "image_path": "G:\\images\\combined\\003307_jpg.rf.27236c9c5409927d54881d3a214c7180.jpg", - "response": "The image shows a group of men in a room wearing hard hats. They are gathered around a table, looking at a piece of glass. One man is holding a tape measure. The room has a lot of windows and is painted white.", - "id": 29244 - }, - { - "image_path": "G:\\images\\combined\\003308_jpg.rf.295fb90e0b79480a399ba6f269f29dc4.jpg", - "response": "The image shows two workers in blue uniforms and hard hats repairing a piece of machinery. They are standing side by side, with one worker holding a large metal rod and the other holding a pair of pliers. The workers are focused on the task at hand, and there is a close-up view of the machinery they are working on, which includes a wheel and some gears.", - "id": 29245 - }, - { - "image_path": "G:\\images\\combined\\003309_jpg.rf.78d715e5010e7faf8a863ae3a3c17f0c.jpg", - "response": "In the image two construction workers are working on the railroad tracks. They are wearing orange vests and hard hats. One of the workers is sitting on the tracks and the other one is kneeling next to him. They have tools with them and there are railroad spikes around them. The ground is made of gravel and there are some railroad ties in the foreground.", - "id": 29246 - }, - { - "image_path": "G:\\images\\combined\\003310_jpg.rf.0cf207b3b1fd960b16acddc157b28c84.jpg", - "response": "In the image, a group of people are walking together. They are all wearing suits and appear to be Chinese. Some of them are wearing ties. In the background, there is a partially constructed concrete building. The ground is dirt, and there are a few rocks visible. The overall lighting appears to be overcast.", - "id": 29247 - }, - { - "image_path": "G:\\images\\combined\\003311_jpg.rf.41b6b8e9839d2ee102afd25e7986f71f.jpg", - "response": "The image shows two men wearing hard hats standing together at a table. One man is wearing a purple shirt and the other is wearing a green shirt. They are both looking at a blueprint that is spread out on the table. The table also has various tools on it, including a pair of pliers, a hammer, and a screwdriver. There is a cup on the table as well.", - "id": 29248 - }, - { - "image_path": "G:\\images\\combined\\003312_jpg.rf.9f9ac1ec1b4e72b8acaa3714140aa89c.jpg", - "response": "An electrician repairs a power line.", - "id": 29249 - }, - { - "image_path": "G:\\images\\combined\\003313_jpg.rf.5589fc75e1e24a1cdf7328ff8d9f2ae6.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is using a jack hammer. The jack hammer is corded and is embedded in a concrete floor. The worker is standing between two orange cones.", - "id": 29250 - }, - { - "image_path": "G:\\images\\combined\\003315_jpg.rf.bc57814e78a5ad59efa4c5d43f70aa8f.jpg", - "response": "A construction worker and a man in a hard hat look at a blueprint.", - "id": 29251 - }, - { - "image_path": "G:\\images\\combined\\003316_jpg.rf.d2cc65d384792fa251c4e03a84b99773.jpg", - "response": "A group of workers in orange jumpsuits and hard hats are on a blue boat.", - "id": 29252 - }, - { - "image_path": "G:\\images\\combined\\003317_jpg.rf.e910940beb755442aac47a38d14976f5.jpg", - "response": "A worker in a dark room is handling a glowing piece of metal with tongs.", - "id": 29253 - }, - { - "image_path": "G:\\images\\combined\\003318_jpg.rf.ad0befd82c0d503b77991b2e8ae891bc.jpg", - "response": "A group of people working on a construction site.", - "id": 29254 - }, - { - "image_path": "G:\\images\\combined\\003320_jpg.rf.fbf10b63768fcef0d154e933a8177da7.jpg", - "response": "A man in a red helmet and white gloves is on a power line.", - "id": 29255 - }, - { - "image_path": "G:\\images\\combined\\003321_jpg.rf.8610d63b8854f12ba51695e8169b518e.jpg", - "response": "In the image there are two men wearing yellow hard hats and work clothes. They are walking side by side. One man has a white glove on and is holding a tool. They are walking in front of a brick building with a sign that says \"Railway Labor School\".", - "id": 29256 - }, - { - "image_path": "G:\\images\\combined\\003322_jpg.rf.f1fbeb561662e3b445d4e9b90821b34f.jpg", - "response": "A construction worker standing next to a metal framework.", - "id": 29257 - }, - { - "image_path": "G:\\images\\combined\\003323_jpg.rf.9e8db74af0456b13eee66e3c0fb1680b.jpg", - "response": "A group of men standing around each other.", - "id": 29258 - }, - { - "image_path": "G:\\images\\combined\\003324_jpg.rf.50727e608b4107eaaccd1dc09a1162ad.jpg", - "response": "a group of men sitting in a room", - "id": 29259 - }, - { - "image_path": "G:\\images\\combined\\003325_jpg.rf.c1a04fd188a0d0c842cccc815960970c.jpg", - "response": "A group of people sitting around a table.", - "id": 29260 - }, - { - "image_path": "G:\\images\\combined\\003326_jpg.rf.5c76e8aa5a0b62a88bd5c5987610a37d.jpg", - "response": "The image shows two workers from a cable company installing cables on the exterior wall of a white building. One worker is standing on a ladder and appears to be reaching for a cable while the other worker is on the ground holding the ladder. They are both wearing uniforms and the one on the ladder is also wearing a white hard hat. The building to the right of the workers is a two-story white building with a small balcony on the second floor. The sky is overcast and there are several other buildings in the background.", - "id": 29261 - }, - { - "image_path": "G:\\images\\combined\\003327_jpg.rf.2d44b6937868e91612b42a7d4323c75e.jpg", - "response": "A group of people standing on a boat.", - "id": 29262 - }, - { - "image_path": "G:\\images\\combined\\003328_jpg.rf.0a7aba76d1a6443b842f072929e600ef.jpg", - "response": " Two men(622,160),(996,989)(2,159),(577,988) in hard hats(268,160),(456,405)(716,161),(921,367) looking at a paper(482,633),(642,792)", - "id": 29263 - }, - { - "image_path": "G:\\images\\combined\\003329_jpg.rf.789cc91f140e0a9065a193810216b6e9.jpg", - "response": "A construction site with heavy machinery and workers.", - "id": 29264 - }, - { - "image_path": "G:\\images\\combined\\003330_jpg.rf.aa277d2fef2f33976aa99e0066d97298.jpg", - "response": "In the image there are several workers at a construction site. They are working on a large grid of steel rebar. There are three workers in the image, one near the top left, one in the middle and one on the bottom right. The workers are wearing helmets and the one in the middle is wearing yellow gloves. The steel rebar is in various states of construction, some of it is laid out, some of it is being worked on and some of it is being supported by wooden poles. In the background, there is a cityscape with many buildings.", - "id": 29265 - }, - { - "image_path": "G:\\images\\combined\\003332_jpg.rf.cce64f027cda1f246a367aea02c7117a.jpg", - "response": "A group of people working on a construction site.", - "id": 29266 - }, - { - "image_path": "G:\\images\\combined\\003333_jpg.rf.bbe60d3f51756a9d2a6ec0adb4f7202f.jpg", - "response": "A group of rescue workers in orange and black uniforms and red helmets are working to remove a large piece of concrete from a hole in the brick wall. The workers are hunched over and focused on their task.", - "id": 29267 - }, - { - "image_path": "G:\\images\\combined\\003334_jpg.rf.0c374010dde4386f3c475d4cc5d58cb8.jpg", - "response": "A group of men walking down a hallway.", - "id": 29268 - }, - { - "image_path": "G:\\images\\combined\\003335_jpg.rf.c9eaf5e42e3a9eff07243ed5582d5bd6.jpg", - "response": "A worker is suspended from a wire, working on a power line.", - "id": 29269 - }, - { - "image_path": "G:\\images\\combined\\003336_jpg.rf.c6c9fef88ea85e86861089859632f3f9.jpg", - "response": "A group of men are standing in a field. They are all wearing suits. One man is wearing a yellow hard hat and is looking at a piece of equipment.", - "id": 29270 - }, - { - "image_path": "G:\\images\\combined\\003337_jpg.rf.5eeb9a4e2fda7d2c32e9fd78e18fd720.jpg", - "response": "In the image there are two people wearing orange work clothes and orange helmets. They are standing next to each other and smiling. The person on the left is a bit taller and is looking to the right. The person on the right is looking to the left. In the background, there is a dirt field and a factory building.", - "id": 29271 - }, - { - "image_path": "G:\\images\\combined\\003338_jpg.rf.82836d2384cfb4ea1efdf6f6e9c48e62.jpg", - "response": "A man wearing a hard hat and work clothes is using a device to pump water from a hole in the ground. The man is standing on a ladder in the hole. The water is being funneled into a bucket. There is a fence around the hole to keep people out. In the background, there are yellow trucks.", - "id": 29272 - }, - { - "image_path": "G:\\images\\combined\\003339_jpg.rf.623740d57c31ad7119849e95de00d9f3.jpg", - "response": " Two workers(269,369),(433,997)(398,412),(488,926) are seen using a rock drill to drill holes into the rock face of a cliff.", - "id": 29273 - }, - { - "image_path": "G:\\images\\combined\\003340_jpg.rf.5a40e8f41825304f1e504506f0c3e2ca.jpg", - "response": "A man in a plaid shirt and a man in a yellow hard hat are standing on a concrete structure. They are both holding a blueprint and looking at it. The man in the plaid shirt is also wearing a yellow hard hat. They are both on a construction site.", - "id": 29274 - }, - { - "image_path": "G:\\images\\combined\\003341_jpg.rf.096522ea2053ddaf6caaf81489e5eb88.jpg", - "response": "A construction site with two workers standing on scaffolding. They are wearing yellow hard hats and work clothes. The site is under construction with many metal bars in the background.", - "id": 29275 - }, - { - "image_path": "G:\\images\\combined\\003342_jpg.rf.cc2aa3df79ba0941879636733d945bfa.jpg", - "response": "A man in a blue hard hat is working on a large metal structure.", - "id": 29276 - }, - { - "image_path": "G:\\images\\combined\\003343_jpg.rf.ceab14245552c7aa98a37c2c938d1fd8.jpg", - "response": "Two men wearing yellow hard hats and safety goggles, one older with a goatee and one younger standing in front of a metal garage door.", - "id": 29277 - }, - { - "image_path": "G:\\images\\combined\\003344_jpg.rf.79563606bba4f2a2dd4fc8991b35766c.jpg", - "response": "A group of people standing in front of a building.", - "id": 29278 - }, - { - "image_path": "G:\\images\\combined\\003345_jpg.rf.adb1832149fb84e320af964152e31a3c.jpg", - "response": "A black and white photo of a group of men standing next to each other. In the foreground, there is a man wearing a striped polo shirt and glasses, pointing towards something off camera. He is flanked by another man wearing a white shirt and glasses, and another man wearing a black shirt. In the background, there is a mountain.", - "id": 29279 - }, - { - "image_path": "G:\\images\\combined\\003346_jpg.rf.5bae7657bad74e35a16c48c6d94515de.jpg", - "response": "A group of people standing around a table in a factory. They are all wearing yellow hard hats. One person is showing another person a piece of paper. There are two other people standing behind them. To the far right, there is a person in a grey jacket and black pants. In the background, there is a yellow metal pole. To the far left, there are two other people standing. One is wearing a grey sweatshirt and black pants, the other is wearing a yellow hard hat.", - "id": 29280 - }, - { - "image_path": "G:\\images\\combined\\003347_jpg.rf.4d786a0c0d3483779168cce064651021.jpg", - "response": "A man wearing a purple shirt and a yellow hard hat sits in the driver seat of a blue construction vehicle.", - "id": 29281 - }, - { - "image_path": "G:\\images\\combined\\003349_jpg.rf.0f4891578ffd0e3fc38aa81392c01742.jpg", - "response": "A worker scans a QR code on a wall at a construction site in Xinjiang. The QR code links to a database of the building's structural information.", - "id": 29282 - }, - { - "image_path": "G:\\images\\combined\\003351_jpg.rf.1cb8e734adf91cd6f79d9010cbaeb79f.jpg", - "response": "In the image, two construction workers are standing in front of a building under construction. The man on the left is wearing a grey shirt and a yellow hard hat. The man on the right is wearing a white shirt and a red hard hat. They are both smiling at the camera.", - "id": 29283 - }, - { - "image_path": "G:\\images\\combined\\003352_jpg.rf.bc9eb025f30f1dc2ecfac7fbc9a99422.jpg", - "response": "A group of three men are talking about a blueprint in a construction site. The man in the middle is wearing a yellow hard hat and a blue shirt. The man on the far left is wearing a red hard hat and a red shirt. The man on the right is wearing a yellow hard hat and a blue shirt. They all look serious and focused on the blueprint.", - "id": 29284 - }, - { - "image_path": "G:\\images\\combined\\003353_jpg.rf.918d503608d213617ef4e784e109047d.jpg", - "response": "A group of construction workers are working on a building site. They are wearing yellow hard hats and work clothes. In the background there is a red crane and a city skyline.", - "id": 29285 - }, - { - "image_path": "G:\\images\\combined\\003354_jpg.rf.7eb4b497038bcc7513142f1d697e865a.jpg", - "response": "A group of three men in yellow safety gear work on fixing a power line. They are standing on a metal ladder and are focused on the line. The building behind them is white and has a window.", - "id": 29286 - }, - { - "image_path": "G:\\images\\combined\\003355_jpg.rf.c368185266988543af921a026520ef10.jpg", - "response": "A group of workers wearing yellow and orange safety vests and hard hats are shoveling concrete into a large tube.", - "id": 29287 - }, - { - "image_path": "G:\\images\\combined\\003356_jpg.rf.5f1b6f35edce06ebe4859800ba9bd15c.jpg", - "response": "The image shows a group of rescuers, including firemen and doctors, walking towards a construction site. The rescuers are holding a rope and walking single file. In the background, there are a few buildings, including a partially constructed building with scaffolding. There are also several people standing around the site, some of them wearing hard hats. In the foreground, there is a person crouching down, holding a shovel.", - "id": 29288 - }, - { - "image_path": "G:\\images\\combined\\003357_jpg.rf.d6e7e9dac3ab5dad216380f157f4aaa9.jpg", - "response": "A worker is holding a large device that is connected to a large power line.", - "id": 29289 - }, - { - "image_path": "G:\\images\\combined\\003358_jpg.rf.e477fa43b24e580a2646eaaa553b0fe2.jpg", - "response": " A worker(359,197),(767,988) in an orange jumpsuit(449,406),(767,986) with a white hard hat(519,770),(691,987) is standing in a hole in the ground.", - "id": 29290 - }, - { - "image_path": "G:\\images\\combined\\003359_jpg.rf.b34902a7abab2189201a1c5d96cb891a.jpg", - "response": "A man in a blue jacket and yellow hard hat is holding his hand in front of a fire in a large metal oven.", - "id": 29291 - }, - { - "image_path": "G:\\images\\combined\\003360_jpg.rf.09a5f5a8f5037e70750b3b6d3481e1ad.jpg", - "response": "A man wearing a hard hat and orange vest standing in a windowed room with a large crane visible through the window.", - "id": 29292 - }, - { - "image_path": "G:\\images\\combined\\003361_jpg.rf.adcbdb1dd9cbb11c45ca753fab8936ae.jpg", - "response": "A construction site with three people working on it. Two of them are in blue uniforms and white helmets. One of them is drilling a concrete wall while the other one and the supervisor are watching. There are a lot of yellow and red poles arranged in a square in the fore ground.", - "id": 29293 - }, - { - "image_path": "G:\\images\\combined\\003362_jpg.rf.34d12ca57ceea1cb90063374b4626dca.jpg", - "response": "A group of people dressed in blue overalls and yellow hard hats are sitting in a mine shaft. They are all holding picks and smiling at the camera. The person in the front on the right is a young African man who is smiling and pointing at the camera.", - "id": 29294 - }, - { - "image_path": "G:\\images\\combined\\003365_jpg.rf.44b19c91a74c0fe5901fea42db519263.jpg", - "response": "In the image, there is a man wearing a grey work suit and a yellow hard hat, standing on top of a large metal platform. He is working on some electrical wires that are above him. There are some other people in the image, but they are not the main focus. In the background, there is a large building with many windows.", - "id": 29295 - }, - { - "image_path": "G:\\images\\combined\\003366_jpg.rf.96845c6da564655654e9b57aecd853ca.jpg", - "response": " Construction workers(487,649),(548,883)(794,662),(879,935)(752,645),(798,823) inside a mine", - "id": 29296 - }, - { - "image_path": "G:\\images\\combined\\003367_jpg.rf.1566cd8ccd152de77966e595b612f420.jpg", - "response": " The tunnel(10,10),(994,727) is being widened.", - "id": 29297 - }, - { - "image_path": "G:\\images\\combined\\003368_jpg.rf.f5f856608a5b5a88d06bf24cd5fcafb0.jpg", - "response": "A construction worker is\u4e4b\u591c\u52e4\u5728\u5efa\u7b51\u5de5\u5730\u4e0a,\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5934\u76d4,\u7a7f\u7740\u7070\u8272\u7684\u9632\u62a4\u670d,\u6b63\u5f2f\u7740\u8170\u505a\u7740\u4ec0\u4e48\u3002\u4ed6\u7684\u811a\u4e0b\u662f\u94a2\u7b4b,\u624b\u4e0a\u62ff\u7740\u4e00\u4e2a\u9ed1\u8272\u7684\u8bbe\u5907,\u8fd8\u6709\u4e00\u6839\u8f6f\u7ba1\u3002\u5728\u4ed6\u7684\u8eab\u540e,\u662f\u4e24\u680b\u9ad8\u697c\u548c\u4e00\u4e9b\u6811\u6728\u3002", - "id": 29298 - }, - { - "image_path": "G:\\images\\combined\\003369_jpg.rf.715f8ce9998c67b5b9846b2d0b096077.jpg", - "response": "A group of men working on power lines.", - "id": 29299 - }, - { - "image_path": "G:\\images\\combined\\003370_jpg.rf.79d11913638fc8ba6f36facdc46b66fc.jpg", - "response": "A group of workers are walking up a dirt and rock hillside that is eroded. They are wearing hard hats and work clothes. One worker is carrying a large stick. In the background, a body of water can be seen.", - "id": 29300 - }, - { - "image_path": "G:\\images\\combined\\003372_jpg.rf.9f4cdf08416c8ff843b7db988fc0b108.jpg", - "response": "A man in a white shirt and khaki pants holding a clipboard and wearing a blue helmet stands on a balcony with another man in a blue uniform and blue helmet. The man in blue uniform is pointing to something outside the frame of the picture. The balcony has a metal railing and the roof of the building is silver. There are two large silver pipes on the right side of the balcony and two smaller silver pipes on the left side.", - "id": 29301 - }, - { - "image_path": "G:\\images\\combined\\003373_jpg.rf.782118867d288a2b39bc00e1acd9d4ec.jpg", - "response": "In the image two workers are\u4fee\u7f2e\u94c1\u8def\u7ebf\u4e0a\u7684\u7535\u7ebf, they are wearing blue helmets and uniforms. The left worker is holding a tool in his right hand and the other worker is holding a tool with both hands. The blue helmets they are wearing have red stripes. The left worker is standing on the tracks and the right worker is standing on a white box.", - "id": 29302 - }, - { - "image_path": "G:\\images\\combined\\003374_jpg.rf.8a1dfd51716476c683451f2a34a284d5.jpg", - "response": "a group of people standing behind a fence", - "id": 29303 - }, - { - "image_path": "G:\\images\\combined\\003375_jpg.rf.383c76fcc458970582637e18a0fb8995.jpg", - "response": "A man wearing a yellow hard hat and a striped shirt is painting the outside of a building. He is holding a paint roller in his right hand and painting a white stripe on the side of the building. There is a ladder against the building and a construction tower in the background.", - "id": 29304 - }, - { - "image_path": "G:\\images\\combined\\003376_jpg.rf.77a9659f51da8c58433bb39fb679c545.jpg", - "response": "a group of people standing around a construction site", - "id": 29305 - }, - { - "image_path": "G:\\images\\combined\\003377_jpg.rf.a20b1721a56be1df6510e5893551af71.jpg", - "response": "A group of men walking down a walkway.", - "id": 29306 - }, - { - "image_path": "G:\\images\\combined\\003378_jpg.rf.f2794947d01dac2d8d37516fa7b7dc3a.jpg", - "response": "In the image two men in high visibility vests and yellow hard hats are looking at a large yellow construction vehicle that is\u6316\u8d77\u4e00\u5757\u77f3\u5934.", - "id": 29307 - }, - { - "image_path": "G:\\images\\combined\\003379_jpg.rf.8570e654973dc2968e0104ec69638b0b.jpg", - "response": "The image shows a group of people wearing hard hats standing in a room under construction. They are all dressed in coats and some are carrying handbags. In the background, there are a few other rooms that appear to be unfinished.", - "id": 29308 - }, - { - "image_path": "G:\\images\\combined\\003380_jpg.rf.60796092b3d961d91e7a53a93c8f7d90.jpg", - "response": "The image shows three construction workers in a\u96a7\u9053. They are all wearing hard hats and one of them is wearing a yellow hard hat. One worker is sitting on a yellow machine with a red drum on it, and another worker is standing to the right of the machine. The third worker is sitting on the ground on the left side of the image. There are cables and a metal rail in the foreground. The workers are wearing gloves and one of them is wearing a blue jacket. The wall of the tunnel is grey and there are two white cans against it.", - "id": 29309 - }, - { - "image_path": "G:\\images\\combined\\003381_jpg.rf.635ca330bc05b70398be906cec4538b2.jpg", - "response": "A group of people standing in a parking lot in front of a van.", - "id": 29310 - }, - { - "image_path": "G:\\images\\combined\\003382_jpg.rf.55e8d36a4dfb68b791c51301269ead1e.jpg", - "response": "A group of men standing in front of a yellow and green construction site.", - "id": 29311 - }, - { - "image_path": "G:\\images\\combined\\003383_jpg.rf.f923248fd6454040b656a8ee0929ffb8.jpg", - "response": "In the image there is a person wearing a yellow helmet and a dark jacket. They are standing in front of a large fire with sparks flying. The person is also wearing gloves. In the background there is a large metal container and a tower.", - "id": 29312 - }, - { - "image_path": "G:\\images\\combined\\003385_jpg.rf.3c47840de0fecea3fd22bdf99f5d9e73.jpg", - "response": "A group of men standing around pointing at something. They are all wearing hard hats.", - "id": 29313 - }, - { - "image_path": "G:\\images\\combined\\003386_jpg.rf.d240deba940d3566e203d2024e551e78.jpg", - "response": "The image shows a group of workers wearing yellow hats and uniforms, working on a construction site. They are handling tools such as a spade and a sledgehammer. The workers are standing on a rocky ground and some rocks are scattered around. The sky is grey and it seems to be an overcast day.", - "id": 29314 - }, - { - "image_path": "G:\\images\\combined\\003387_jpg.rf.d143954636f7341706804783a415620e.jpg", - "response": "A man in a blue helmet and black jacket is working on power lines in the rain. He is wearing a tool belt and has on white gloves.", - "id": 29315 - }, - { - "image_path": "G:\\images\\combined\\003388_jpg.rf.7b47569867936cd34879b43d76a7dbdf.jpg", - "response": "A man in a hard hat and white lab coat is working on a piece of machinery. He is wearing a yellow hard hat and has a beard. He is sitting in a small room with a blue and black welding machine next to him. There is a large metal wheel in front of him that he is working on. The wall to his right has yellow paint on it.", - "id": 29316 - }, - { - "image_path": "G:\\images\\combined\\003390_jpg.rf.5bc63b8491dc4c1daa633350b9765b07.jpg", - "response": "A woman in a white shirt is holding a clipboard and a pen. She is standing on a street between two men. The man on the left is wearing a white helmet and a black shirt. The man on the right is wearing a beige jacket and a white helmet. He is also holding a clipboard. The woman is also wearing a white helmet. There is a bicycle next to the man on the right. In the background, there is a building under construction.", - "id": 29317 - }, - { - "image_path": "G:\\images\\combined\\003391_jpg.rf.3d101931da2fc2dc207595b6a1693278.jpg", - "response": "The photo shows a large group of people standing on a patch of dirt in a construction site. There are several men in business suits and several cameras. In the background, there is a city skyline.", - "id": 29318 - }, - { - "image_path": "G:\\images\\combined\\003392_jpg.rf.0b292a2fe8c20701d06eb9a977bbe044.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 29319 - }, - { - "image_path": "G:\\images\\combined\\003393_jpg.rf.4aac2ebd049e4371f8bb4ff50d11242b.jpg", - "response": "A man is climbing a telephone pole. He is wearing a black jacket, a blue hat, and black pants. He is not wearing any shoes. The telephone pole is made of wood. He is in a mountainous area with a mountain in the background. The sky is overcast.", - "id": 29320 - }, - { - "image_path": "G:\\images\\combined\\003395_jpg.rf.314c78e424c43dfc99652efd1a55c610.jpg", - "response": "a group of people standing around a hole in the ground", - "id": 29321 - }, - { - "image_path": "G:\\images\\combined\\003396_jpg.rf.da0e62876826fe558b14605524e8d75a.jpg", - "response": "A man wearing a yellow vest and a hard hat standing on a construction site.", - "id": 29322 - }, - { - "image_path": "G:\\images\\combined\\003397_jpg.rf.558cd9f5cb68359c62073b2f1cbc2782.jpg", - "response": "A group of people standing in front of a building.", - "id": 29323 - }, - { - "image_path": "G:\\images\\combined\\003398_jpg.rf.56b12bdef6afaaa2b0361ff0e2879e88.jpg", - "response": "A man in a red hard hat is on a power line, climbing a metal structure.", - "id": 29324 - }, - { - "image_path": "G:\\images\\combined\\003399_jpg.rf.44a7d337296fd07a5d54af1db4573a1a.jpg", - "response": "A crane lifting a large metal object.", - "id": 29325 - }, - { - "image_path": "G:\\images\\combined\\003400_jpg.rf.04784932f1a5bb9617235f8fa0485a4a.jpg", - "response": "In the image there is a group of people working on a construction site. They are wearing hard hats and are working with rocks and debris. Some of the people are standing, while others are crouching or kneeling as they work. Some of them are wearing backpacks. In the background, there is a forest of trees.", - "id": 29326 - }, - { - "image_path": "G:\\images\\combined\\003401_jpg.rf.c5722ba01b78e4d6094d190bd59cb70e.jpg", - "response": "An oil drilling rig in the middle of a desert with a worker walking by.", - "id": 29327 - }, - { - "image_path": "G:\\images\\combined\\003402_jpg.rf.d5ce853d51f4d8a93a1da7027e391140.jpg", - "response": "In the image, there are two construction workers on a building site. One worker is in the foreground, wearing a grey hard hat, orange high visibility vest, and drinking from a black bottle. The second worker is in the background, wearing a similar outfit. The workers are talking to each other.", - "id": 29328 - }, - { - "image_path": "G:\\images\\combined\\003403_jpg.rf.053ac88e1f8013645d2d764417422294.jpg", - "response": "A construction worker is working on a building.", - "id": 29329 - }, - { - "image_path": "G:\\images\\combined\\003404_jpg.rf.141581cea674a75a7e64e27aa1c815d5.jpg", - "response": "The image shows a group of workers in protective gear, including hard hats and safety vests, working on a large metal structure that resembles a power box or transformer. The workers are standing on ladders and are connected to safety ropes. They are working on the structure, which is located outdoors and appears to be part of an electrical system. The sky is cloudy and there are some buildings visible in the background.", - "id": 29330 - }, - { - "image_path": "G:\\images\\combined\\003405_jpg.rf.8a20fe0813dae4fd3562231ab2e3ad03.jpg", - "response": "In the image two construction workers are seen in the forefront wearing blue and yellow uniforms and using yellow and red tools. They are working on a scaffolding. In the background, there are several other workers wearing different colored uniforms. Some of them are working on a scaffolding, while others are working on the floor of the construction site. There is a blue and yellow helmet on the scaffolding and a yellow rope tied around a metal bar. The workers are building a structure made of scaffolding and lumber.", - "id": 29331 - }, - { - "image_path": "G:\\images\\combined\\003406_jpg.rf.41f9c7d54b9774c364a2c3d9b089fe94.jpg", - "response": " Two workers(430,635),(568,879)(269,548),(426,885) in a shaft, one wearing a yellow helmet(468,635),(536,688) and the other a hard hat, are standing with their backs to the camera. They are holding a rope and a post.", - "id": 29332 - }, - { - "image_path": "G:\\images\\combined\\003407_jpg.rf.4fb824ab521f5636623078433b6990c6.jpg", - "response": "In the image two men are repairing an electricity pole. They are wearing grey and blue jackets. The pole is grey and has ice on it. The sky is overcast and it's snowing.", - "id": 29333 - }, - { - "image_path": "G:\\images\\combined\\003408_jpg.rf.0c5e0b0741ac6cecff976ee7b277e706.jpg", - "response": "In the image two men are working on some equipment. They are both wearing grey suits and red hard hats. The man on the left is crouching down and looking into a box. The man on the right is standing and looking at the equipment. They are both holding tools.", - "id": 29334 - }, - { - "image_path": "G:\\images\\combined\\003409_jpg.rf.3ddf25f3fe03bf6cfbb42c485595f341.jpg", - "response": "4 men(647,303),(970,988)(626,295),(787,528)(102,300),(379,968) sitting around a table(285,492),(788,995)", - "id": 29335 - }, - { - "image_path": "G:\\images\\combined\\00340_jpg.rf.499f62e130b0f27a02d4dd18d008ea68.jpg", - "response": "A man and two women are walking under a blue umbrella. They are wearing hard hats. They are walking in front of a construction site. There are three cranes working on the site. The sky is blue with clouds.", - "id": 29336 - }, - { - "image_path": "G:\\images\\combined\\00340_jpg.rf.8c822528cc2fef6f7c9e50aea14db13c.jpg", - "response": "A man and two women walking in front of a building site.", - "id": 29337 - }, - { - "image_path": "G:\\images\\combined\\003410_jpg.rf.154e92362253a648bd5f1b1430e87052.jpg", - "response": "a group of men standing in a construction site", - "id": 29338 - }, - { - "image_path": "G:\\images\\combined\\003411_jpg.rf.79fbb4ff987f992155a0158861cf34d0.jpg", - "response": "A man and a woman construction workers standing next to a brick wall.", - "id": 29339 - }, - { - "image_path": "G:\\images\\combined\\003412_jpg.rf.1bfea3494edaaeeac3bf829a1b0854b4.jpg", - "response": "The image shows a group of men dressed in green camouflage clothing and yellow hard hats. They are participating in a training exercise.", - "id": 29340 - }, - { - "image_path": "G:\\images\\combined\\003413_jpg.rf.d261de2d83d00dc4d702acecd71b2d85.jpg", - "response": "An old black and white photo of two men working on a bridge.", - "id": 29341 - }, - { - "image_path": "G:\\images\\combined\\003414_jpg.rf.6886d60316f40b8f97af40332fd2718b.jpg", - "response": "a man in a green uniform and red helmet sitting on scaffolding", - "id": 29342 - }, - { - "image_path": "G:\\images\\combined\\003415_jpg.rf.4e7f95d325b58fa15d0faabd25e80ef9.jpg", - "response": "The photo shows a construction site with a number of workers visible. They are working on a large concrete structure, which is the foundation for a bridge. The bridge itself is not yet visible, as it is further back in the picture and partially obscured by the construction workers. The workers are spread out across the construction site, with some working on the foundation and others engaged in other tasks.", - "id": 29343 - }, - { - "image_path": "G:\\images\\combined\\003416_jpg.rf.5f5984b737a27b42cd71a4f5f26d298d.jpg", - "response": "The image shows a large building under construction. The building has a blue wall and a red banner across the middle. The banner reads \"11.27 Wenchang Airport Construction Site\". There are several workers in the foreground, some standing and some appear to be working on the building. One worker is wearing a white hard hat and a red scarf, another is wearing a white hard hat and a yellow vest, and the third worker is wearing a red hard hat. There is also a person in the background wearing a white hard hat.", - "id": 29344 - }, - { - "image_path": "G:\\images\\combined\\003417_jpg.rf.d3d42004aa9d74189dd6929bcfbe73fc.jpg", - "response": "A group of men in blue hard hats are working on an electrical box.", - "id": 29345 - }, - { - "image_path": "G:\\images\\combined\\003418_jpg.rf.196e96d42b9c0fa9a470fe4de55a79c3.jpg", - "response": "A large crane is lifting a piece of concrete into place on an overpass.", - "id": 29346 - }, - { - "image_path": "G:\\images\\combined\\003419_jpg.rf.e4c568324ada0406a7bbcad30e9ad2fc.jpg", - "response": "A man in a red hard hat is pointing to a piece of equipment. Next to him are two other men, one on the left and one on the right. They are all wearing hard hats. In the background, there is a large crane and a mountain.", - "id": 29347 - }, - { - "image_path": "G:\\images\\combined\\00341_jpg.rf.0601e3f2132c456be50ab68302e6d059.jpg", - "response": "Two engineers in yellow and orange safety jackets and yellow hard hats are talking in a construction site. One man is holding a rolled up paper.", - "id": 29348 - }, - { - "image_path": "G:\\images\\combined\\00341_jpg.rf.679f58885585a1fde9b6f30d6bae8273.jpg", - "response": "Two engineers in yellow and orange safety jackets and yellow hard hats are talking in a construction site. One man is holding a rolled up paper.", - "id": 29349 - }, - { - "image_path": "G:\\images\\combined\\003420_jpg.rf.edfe3684a47659e51175c85051f302c9.jpg", - "response": "A group of rescue workers in orange jumpsuits and blue hard hats(156,2),(289,139)(512,85),(629,253)(17,69),(106,158) stand around a man in a grey shirt(3,636),(308,997) who is lying on the ground. They are holding a large green and silver object.", - "id": 29350 - }, - { - "image_path": "G:\\images\\combined\\003421_jpg.rf.8774545f0ef6243da2bb26a8b54977e0.jpg", - "response": "A man with a beard wearing a yellow hard hat and safety goggles.", - "id": 29351 - }, - { - "image_path": "G:\\images\\combined\\003423_jpg.rf.50bf07665e5f183b2a968085b90b4c67.jpg", - "response": "The image shows three men carrying ice covered brush and rope. They are all wearing hard hats and one man has a backpack. The men are walking through a field covered in frost and ice.", - "id": 29352 - }, - { - "image_path": "G:\\images\\combined\\003424_jpg.rf.e6275bf6bca7e9b672e663de3c914997.jpg", - "response": "A group of people sitting around a table looking at papers.", - "id": 29353 - }, - { - "image_path": "G:\\images\\combined\\003425_jpg.rf.62ba9208d63d2fa8027406b509ec580f.jpg", - "response": "A group of three workers are on a building site.", - "id": 29354 - }, - { - "image_path": "G:\\images\\combined\\003426_jpg.rf.32c304bc101375d0407b171a81fc1da5.jpg", - "response": "In the image there are two workers wearing red and orange hard hats. They are standing on a platform under a tower that has a yellow and black drill. The workers are wearing orange and red coveralls. In the background there are two metal towers with wires strung between them.", - "id": 29355 - }, - { - "image_path": "G:\\images\\combined\\003427_jpg.rf.cb4f0678865d651f97dd1cd053970775.jpg", - "response": "A group of men standing on top of a dirt mound.", - "id": 29356 - }, - { - "image_path": "G:\\images\\combined\\003428_jpg.rf.5c42d92f741ce23b848b12ce5a7d55c6.jpg", - "response": "A group of people standing around a construction site.", - "id": 29357 - }, - { - "image_path": "G:\\images\\combined\\003429_jpg.rf.bcdba6ecdc92a96f375f797aaf8ef4db.jpg", - "response": "A group of men in suits and hard hats are walking down a tree lined street.", - "id": 29358 - }, - { - "image_path": "G:\\images\\combined\\00342_jpg.rf.9f67bbcc5d52f2223e0ce281c38bb5b4.jpg", - "response": "A man wearing a yellow hard hat, blue coveralls, and yellow gloves is standing in front of a red metal structure with his arms crossed.", - "id": 29359 - }, - { - "image_path": "G:\\images\\combined\\00342_jpg.rf.d1aafda9b6cbb8205e3f202ec1057d52.jpg", - "response": "A man wearing a yellow hard hat, yellow gloves, and blue work clothes stands in front of a red metal structure with his arms crossed.", - "id": 29360 - }, - { - "image_path": "G:\\images\\combined\\003430_jpg.rf.ee6d236ae046ee373a4d3e7c81d72971.jpg", - "response": "In the image, rescue workers in orange are seen lifting a man in blue clothing who is injured and lying on a stretcher. The man is being pulled out from a damaged building. The scene takes place on a staircase with wooden railings. The injured man is being pulled up with the help of a metal bar. The workers are wearing helmets and uniforms. The photo is taken from the perspective of someone looking down at the scene.", - "id": 29361 - }, - { - "image_path": "G:\\images\\combined\\003431_jpg.rf.08580dd32eba6e6f29cc187936fdd3fe.jpg", - "response": "Two men in high visibility vests and hard hats, standing in a tunnel.", - "id": 29362 - }, - { - "image_path": "G:\\images\\combined\\003432_jpg.rf.5e04ae500405ed19f013cd4f4916f637.jpg", - "response": "In the image there are three construction workers wearing yellow helmets. They are working on a building site that is in the mountains. The mountains have a lot of green vegetation. One of the workers is working on a metal rod with a drill, another worker is cutting a metal rod with a saw and the third worker is working on a brick.", - "id": 29363 - }, - { - "image_path": "G:\\images\\combined\\003433_jpg.rf.a657a3d87358b1cb6c57d759eaad687b.jpg", - "response": "The image shows a group of people dressed in snow gear and hard hats, working together to pull a large wooden pole through the snow. They are all standing in the snow, which is knee-deep in places. Some of the people are holding onto the pole with ropes. In the background, there are power lines and a few trees.", - "id": 29364 - }, - { - "image_path": "G:\\images\\combined\\003434_jpg.rf.ea48d4bd2e9e397fd00aae8ac4aaba80.jpg", - "response": "In the image there is a construction site with a man wearing a yellow helmet standing next to a cannon. The cannon is Shoots out sand to clear the air pollution.", - "id": 29365 - }, - { - "image_path": "G:\\images\\combined\\003435_jpg.rf.a0a5f21283e4521082f009f556cb983e.jpg", - "response": "A group of men in business attire wearing red helmets are walking down a sidewalk. They are all carrying black bags. In the background, there is a city skyline with tall buildings. To the far left, there is a construction site with a red crane.", - "id": 29366 - }, - { - "image_path": "G:\\images\\combined\\003436_jpg.rf.8078dc9861370ad26ce2caf60ef9c8e2.jpg", - "response": "The photo shows three workers in a tunnel. They are all wearing yellow hats and camouflage shirts. The one in the middle is pulling a wooden board with both hands, the one on the left is wearing white gloves and the one on the right is crouching down. The wooden board is covered with dust. On the right side of the photo, you can see a yellow wall and two iron rails on the left side.", - "id": 29367 - }, - { - "image_path": "G:\\images\\combined\\003437_jpg.rf.30b03b6aee583d8509fd0a69abc0fb30.jpg", - "response": "A man in a suit is speaking to a group of people in front of a white bus.", - "id": 29368 - }, - { - "image_path": "G:\\images\\combined\\003439_jpg.rf.36cb128f837c894672b5e5ca80097e24.jpg", - "response": "In the image there are several construction workers wearing hard hats, one of them is carrying a shovel and there are two of them working inside a large pipe or tunnel.", - "id": 29369 - }, - { - "image_path": "G:\\images\\combined\\00343_jpg.rf.0836445b196ebe904098630afbf3fbcc.jpg", - "response": " Two men(304,143),(683,996)(619,43),(981,996) wearing hard hats(719,42),(905,197)(336,142),(491,269) and orange safety vests(309,334),(537,712)(719,232),(981,727) standing in front of a Caterpillar Excavator(143,3),(749,785)", - "id": 29370 - }, - { - "image_path": "G:\\images\\combined\\00343_jpg.rf.5b83df079a1b4151092853de5f0b21f2.jpg", - "response": " Two men(302,142),(683,997)(616,43),(981,997) wearing hard hats(717,42),(906,197)(336,141),(493,269) and orange safety vests(309,332),(535,713)(718,236),(981,729) standing in front of a Caterpillar Excavator(142,3),(748,781)", - "id": 29371 - }, - { - "image_path": "G:\\images\\combined\\003441_jpg.rf.11117d0263b21820c696b1edfc423827.jpg", - "response": "A group of men are gathered around a large board. They are looking at a map of a city.", - "id": 29372 - }, - { - "image_path": "G:\\images\\combined\\003442_jpg.rf.773c9e57f29f5d69a300f76cfd89e3ca.jpg", - "response": "A worker clears snow from a power line in Harbin, capital of Heilongjiang province, Feb. 13, 2009. A new snowfall hit the province, causing some trouble in transportation.", - "id": 29373 - }, - { - "image_path": "G:\\images\\combined\\003443_jpg.rf.02852581ac60f6d302ad0cdbc70dab94.jpg", - "response": "A group of people standing around a piece of paper.", - "id": 29374 - }, - { - "image_path": "G:\\images\\combined\\003444_jpg.rf.af8b41d148d3ff962d7333a901c722d7.jpg", - "response": "A group of workers in blue uniforms and hard hats are standing in front of a large ship that is being built. They are all wearing white safety glasses in addition to their hard hats. One of the workers is wearing a white shirt and a blue jacket, while another worker is wearing a blue hat with the word STS on it. A third worker is wearing a blue hat with the word Hyundai on it. The fourth worker is wearing a blue hat with the word JM on it. They are all standing on a yellow floor. In front of the workers is a silver ladder that is leaning against a large metal pole. Next to the workers is a large red ship that is being built.", - "id": 29375 - }, - { - "image_path": "G:\\images\\combined\\003445_jpg.rf.48ca86b7a23c5401a9a324998ae9db05.jpg", - "response": "In the image two workers are repairing an electrical transformer. The transformer is grey and is located on the side of a pole. The workers are wearing blue and yellow helmets and are wearing blue and yellow jackets. They are also wearing black pants.", - "id": 29376 - }, - { - "image_path": "G:\\images\\combined\\003446_jpg.rf.271355b5e431af0bcceaeb8eebb48164.jpg", - "response": "A group of workers are working on a hole in the street.", - "id": 29377 - }, - { - "image_path": "G:\\images\\combined\\003447_jpg.rf.3d818dfacc5f116444959c1b21a9cb45.jpg", - "response": "A worker in a blue helmet is standing on a yellow truck with a crane. The truck is parked in a forest with a large tree in front of it. The worker is looking up at a tree that has fallen on a blue bus. The bus is parked on the side of the road and the tree is covering part of it. The scene is dark and there are some red lights on the truck.", - "id": 29378 - }, - { - "image_path": "G:\\images\\combined\\003448_jpg.rf.ab0dce3e9bf3780856a88fefe3e3c92c.jpg", - "response": "In the image two Asian men are working on a piece of machinery. They are both wearing blue coveralls and red hard hats. The man on the left is taking notes on a clipboard and the man on the right is talking on a phone. The machinery they are working on is grey and yellow in color.", - "id": 29379 - }, - { - "image_path": "G:\\images\\combined\\003449_jpg.rf.5186b2bcd8cdbb49a8d128b2538fcd3f.jpg", - "response": "The image shows a group of people sitting around a large dining table. The table has several bottles, a bowl of fruit, and a few oranges on it. The people are wearing jackets and sweaters, and some have their hands in their pockets. They seem to be having a meeting or a discussion. There are also a few chairs around the table. In the background, there are a few more people standing, watching the meeting.", - "id": 29380 - }, - { - "image_path": "G:\\images\\combined\\003450_jpg.rf.e868132bdeac0e8395e1b5dd1e144e4f.jpg", - "response": "A man(528,292),(624,723) standing in front of a blue object", - "id": 29381 - }, - { - "image_path": "G:\\images\\combined\\003451_jpg.rf.256de7f79cd063572fae293fe1cbe187.jpg", - "response": "A construction site with three workers visible. They are working on a large blue structure with red scaffolding. The sky is blue and there are buildings in the background.", - "id": 29382 - }, - { - "image_path": "G:\\images\\combined\\003452_jpg.rf.2b6f7abefea5714f943da152e0c75d6b.jpg", - "response": "A group of rescue workers in a room.", - "id": 29383 - }, - { - "image_path": "G:\\images\\combined\\003454_jpg.rf.e400cbe4d02242c5e7f14210cf6e3691.jpg", - "response": "A group of men standing around talking to each other.", - "id": 29384 - }, - { - "image_path": "G:\\images\\combined\\003455_jpg.rf.2676c0a54e9eabdafa7417fb3aaaee40.jpg", - "response": "A group of people in hard hats are in a cave.", - "id": 29385 - }, - { - "image_path": "G:\\images\\combined\\003456_jpg.rf.3721558065a8bfdd510fa15b9472a8a7.jpg", - "response": "A construction site with several people working on it. They are working on a large metal structure that appears to be a bridge or some sort of large support structure. The people are wearing hard hats and are focused on their work. Some of them are welding or cutting metal. There is a river or large body of water visible in the background.", - "id": 29386 - }, - { - "image_path": "G:\\images\\combined\\003457_jpg.rf.da474dd5fed91ae51b79cec900dc1fed.jpg", - "response": "Three men in yellow vests and hard hats are talking in an unfinished building.", - "id": 29387 - }, - { - "image_path": "G:\\images\\combined\\003459_jpg.rf.dc7a2e35946ee0fd3ed7c7a3123d5075.jpg", - "response": "A man(306,369),(919,996) wearing a hard hat(581,367),(734,493) and safety vest(529,585),(835,997) is holding a blue light(218,439),(383,659) in a tunnel.", - "id": 29388 - }, - { - "image_path": "G:\\images\\combined\\00345_jpg.rf.57838a0f8f073bec393efc79e34d451e.jpg", - "response": "two engineers, one holding a clipboard and pen, the other holding rolled up plans, standing in a half finished room", - "id": 29389 - }, - { - "image_path": "G:\\images\\combined\\00345_jpg.rf.94da8bb232863c8a22410ec6e6e02449.jpg", - "response": "two engineers, one holding a clipboard and pen, the other holding blueprints, standing in a half finished room", - "id": 29390 - }, - { - "image_path": "G:\\images\\combined\\003460_jpg.rf.c84980ce20c4c02a052d12bb006fbaa0.jpg", - "response": " Firefighters(425,268),(803,997)(406,19),(620,623) cut through a bamboo structure(2,12),(999,999)", - "id": 29391 - }, - { - "image_path": "G:\\images\\combined\\003461_jpg.rf.2c0fb469c46a880ac976fdd749ac0718.jpg", - "response": "A man in a blue hard hat is holding a sheet of paper and talking to a group of men in front of a yellow and red truck. They are standing on a dirt field with a small hill in the background.", - "id": 29392 - }, - { - "image_path": "G:\\images\\combined\\003462_jpg.rf.ba6410507f04db7baec52a9fe1317854.jpg", - "response": "A rescue team is seen hiking through the snow", - "id": 29393 - }, - { - "image_path": "G:\\images\\combined\\003463_jpg.rf.7f652748bf2ced95d72134e5f43d156e.jpg", - "response": "A worker stands in front of a wall of pipes at the Intermountain Power Plant in Delta, Utah.", - "id": 29394 - }, - { - "image_path": "G:\\images\\combined\\003464_jpg.rf.088f0e217f5f77c68a3ed6d2a808164a.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 29395 - }, - { - "image_path": "G:\\images\\combined\\003465_jpg.rf.51a1c2fe4ab515cf1489d5e38425b6b3.jpg", - "response": "a group of men standing around each other", - "id": 29396 - }, - { - "image_path": "G:\\images\\combined\\003466_jpg.rf.c64bb2e22c79f3c3937549682d97cbd2.jpg", - "response": "The three men in the front are walking. The one on the left is wearing a black suit and is closest to the camera. The man in the middle is also wearing a black suit but is slightly further away from the camera. The man on the right is wearing a grey suit. The man in the middle is waving at the camera. In the background there are several other men walking in the same direction. There is a bus parked in the background on the right side of the image. There is a building under construction in the background on the right side of the image.", - "id": 29397 - }, - { - "image_path": "G:\\images\\combined\\003467_jpg.rf.e555b1cccb4ef8529799e5f63ee8c575.jpg", - "response": "A man wearing a yellow hard hat stands on a construction site. He is wearing a blue shirt and khaki pants. In the background, there is a large yellow crane. There are several wooden planks scattered around the area. A pile of rusty metal pipes is in the foreground.", - "id": 29398 - }, - { - "image_path": "G:\\images\\combined\\003468_jpg.rf.611180ae2fc1785d75dba9cf5371bf0c.jpg", - "response": "A man holding a black umbrella in front of a building.", - "id": 29399 - }, - { - "image_path": "G:\\images\\combined\\003469_jpg.rf.aa44cb8aa2a3855bd60d0d2dc6d334bf.jpg", - "response": "A concrete pump is used to pour concrete into a post.", - "id": 29400 - }, - { - "image_path": "G:\\images\\combined\\003470_jpg.rf.7a1cfb365901c4373bbd18c6738f436e.jpg", - "response": "A group of three men working on a piece of mining equipment.", - "id": 29401 - }, - { - "image_path": "G:\\images\\combined\\003471_jpg.rf.39606dd5bb3e10faa81c4659cb736ce2.jpg", - "response": "A couple of men in orange hard hats are standing next to a tall metal structure. They are both wearing brown work clothes. One of the men is reaching for a valve on a large metal cylinder. The sky above them is blue.", - "id": 29402 - }, - { - "image_path": "G:\\images\\combined\\003472_jpg.rf.b59428ccc060b0fe8b45306faf490a33.jpg", - "response": "a group of men standing around talking to each other", - "id": 29403 - }, - { - "image_path": "G:\\images\\combined\\003473_jpg.rf.d911f3ecd574db5a80270206f933420c.jpg", - "response": "A man sitting on a step wearing a hard hat and drinking from a bottle.", - "id": 29404 - }, - { - "image_path": "G:\\images\\combined\\003475_jpg.rf.8035607128cdd6fc50b4c57dca3be855.jpg", - "response": "a group of people standing in front of a building", - "id": 29405 - }, - { - "image_path": "G:\\images\\combined\\003476_jpg.rf.743d40de3f3fb81653c2b3237b410fcd.jpg", - "response": "A worker is seen here working on the unfinished overpass.", - "id": 29406 - }, - { - "image_path": "G:\\images\\combined\\003477_jpg.rf.e088ea708862bb15a75e5b2c5ae47176.jpg", - "response": "A group of men standing around a large cement block.", - "id": 29407 - }, - { - "image_path": "G:\\images\\combined\\003478_jpg.rf.441730b526d618de6d1e3d52fb629407.jpg", - "response": "A group of people standing in a unfinished building.", - "id": 29408 - }, - { - "image_path": "G:\\images\\combined\\003479_jpg.rf.deda8c1f413845f2f48dcbac6909ace2.jpg", - "response": "a group of men in uniforms", - "id": 29409 - }, - { - "image_path": "G:\\images\\combined\\003480_jpg.rf.c93e9b1c888f5a8f5f9792fbd599fc97.jpg", - "response": "A man in a red hat and plaid shirt sits on a ladder in front of a brick wall. The wall is covered in scaffolding and the man appears to be working on it.", - "id": 29410 - }, - { - "image_path": "G:\\images\\combined\\003481_jpg.rf.cda9a2e30476c436e47d7c0ffc775eec.jpg", - "response": "In the image there is a person working on a construction site. The person is wearing a green shirt, grey pants and a red hard hat. The person is crouched down and is holding a large piece of material that is wrapped in plastic. The plastic appears to be clear. The person is also wearing a yellow tool belt. The construction site has scaffolding around the area where the person is working. There are also several other people working in the background. Some of them are further away and appear as small dots. There is also a white animal, that is either a dog or a cat, in the background. It is sitting on the ground and looking towards the right.", - "id": 29411 - }, - { - "image_path": "G:\\images\\combined\\003482_jpg.rf.e2179be28cf3dca063b99d3d7e29e8dd.jpg", - "response": "A group of men working on a bridge.", - "id": 29412 - }, - { - "image_path": "G:\\images\\combined\\003483_jpg.rf.fd3581edafe24b82a10ae2728a650798.jpg", - "response": "A group of men in blue work uniforms and blue hard hats are gathered around a piece of equipment. The men are looking at the controls and are focused on their task.", - "id": 29413 - }, - { - "image_path": "G:\\images\\combined\\003484_jpg.rf.0bd81b00ec45a33ea3b88cae8e18473b.jpg", - "response": "In the image, a man is working on a piece of farm equipment. He is wearing a black and yellow shirt, a yellow hat, and has a tool in his hand. The man appears to be happy and smiling. He is working on a piece of farm equipment that has two wheels and a large metal piece with a handle that the man is holding. The background shows a field of bright green grass.", - "id": 29414 - }, - { - "image_path": "G:\\images\\combined\\003485_jpg.rf.7ad29618de6fc972987ebc4316d2f412.jpg", - "response": "a group of people sitting around a table", - "id": 29415 - }, - { - "image_path": "G:\\images\\combined\\003487_jpg.rf.5baa59b85dd9c3f11b33489632d7a72a.jpg", - "response": "Two construction workers in hard hats standing next to a pile of steel beams on a construction site.", - "id": 29416 - }, - { - "image_path": "G:\\images\\combined\\003488_jpg.rf.e713991a9247ece1a08d61ed4061cfbc.jpg", - "response": "A construction site with two workers in blue shirts and yellow hats. They are standing on a platform near a large concrete pillar and a red metal structure. There is a green fence in the foreground and a yellow and white safety sign. A pile of wooden boards is visible in the background.", - "id": 29417 - }, - { - "image_path": "G:\\images\\combined\\003489_jpg.rf.faf37d81a6ecb205707094d05da87308.jpg", - "response": "In the image there is a worker wearing a blue hard hat and an orange vest who is welding a large piece of metal that makes up part of a large metal structure. The worker is on a ladder and the metal being welded is a bright red color. The background is a bit blurry and there are some metal bars in the foreground that appear to be part of a safety barrier.", - "id": 29418 - }, - { - "image_path": "G:\\images\\combined\\003491_jpg.rf.381140e87102e332f6227943ba3557db.jpg", - "response": "The image shows a group of men standing in a large, unfinished building. They are all wearing white hard hats. Some of the men are also wearing blue or white shirts. One man is wearing a watch on his left wrist. The floor of the building is covered in light brown dirt. There are also two doors in the background, one on the left and one on the right. The walls of the building are made of concrete and have not been finished.", - "id": 29419 - }, - { - "image_path": "G:\\images\\combined\\003492_jpg.rf.10fb96968f9c91b8aa07586d8568c9f0.jpg", - "response": "A group of men are carrying a large pole.", - "id": 29420 - }, - { - "image_path": "G:\\images\\combined\\003493_jpg.rf.e84ff66edc0d6f941420e2c7a7333b2f.jpg", - "response": "The image shows two workers standing on a sidewalk near a street. They are both wearing blue helmets and uniforms. The man on the left is holding a cell phone and appears to be looking at it. The street is dark, but a vehicle with its headlights on is traveling in the background. There are also a few trees and a light pole in the scene.", - "id": 29421 - }, - { - "image_path": "G:\\images\\combined\\003495_jpg.rf.d1d10d097f8d9d9992643facfec2ad07.jpg", - "response": "Men(653,215),(819,804)(284,204),(419,789)(452,210),(598,898)(38,183),(191,844) standing on a construction site", - "id": 29422 - }, - { - "image_path": "G:\\images\\combined\\003496_jpg.rf.54420695df0ae274d18b1de3e43b6a68.jpg", - "response": "A construction worker in a red hard hat is sitting on the ground and looking at another worker who is standing on a platform and fixing some metal rods. They are both wearing red hard hats and the worker on the ground has a pen in his shirt pocket. They are working on a building construction site with unfinished concrete floors and walls and a lot of metal rods and frameworks.", - "id": 29423 - }, - { - "image_path": "G:\\images\\combined\\003497_jpg.rf.8eee19ca84ec647bb6f1ee6f948c4bff.jpg", - "response": "The image shows men in blue and white shirts and red safety helmets standing in front of a building under construction. The building has a lattice structure and there are several large cranes visible in the background. Some people are wearing ties and the whole scene has a sense of purpose and coordination.", - "id": 29424 - }, - { - "image_path": "G:\\images\\combined\\003498_jpg.rf.9f35e6612c8ffa14ad5a30ebf4616fa5.jpg", - "response": "A man in a hard hat is pointing to a sign on a wall. The wall is concrete and has a sign on it that says, \u201cUnderground Exit\u697c\u68af\u201d\u3002 There is a group of people standing around the man, also wearing hard hats. Some of the people are partially visible and are wearing yellow hard hats.", - "id": 29425 - }, - { - "image_path": "G:\\images\\combined\\003499_jpg.rf.c1177a65d8db53aa01aece1462f6c70a.jpg", - "response": "A worker is on a power line in the snow.", - "id": 29426 - }, - { - "image_path": "G:\\images\\combined\\0034b21c3eae565d.jpg", - "response": "A silver trash can with a bag in it.", - "id": 29427 - }, - { - "image_path": "G:\\images\\combined\\0034d9db4b18a474.jpg", - "response": "a poster of a kid with his hands up and the words \"what if the hokey pokey really is what it's all about\" above him", - "id": 29428 - }, - { - "image_path": "G:\\images\\combined\\0034f52bcd0a54be.jpg", - "response": "A caliper is measuring a piece of equipment.", - "id": 29429 - }, - { - "image_path": "G:\\images\\combined\\0034f7f4d1a6f9e2.jpg", - "response": "A group of people are sitting at a round table in a large room. There is a man standing at a podium giving a presentation. The room has a projector screen displaying slides.", - "id": 29430 - }, - { - "image_path": "G:\\images\\combined\\003500_jpg.rf.5b349107919083a80c93bb6559b90e67.jpg", - "response": "A group of people standing around a large circular structure that is under construction. The structure is made of metal and has wooden beams around it. The people are wearing hard hats and are standing at various spots on the beams. In the distance there are mountains.", - "id": 29431 - }, - { - "image_path": "G:\\images\\combined\\003501_jpg.rf.9d84ebfdb8e1ba4a1dffcb48e4a86aef.jpg", - "response": "A construction worker in a yellow hard hat and grey jumpsuit is on a red ladder. He is reaching for a metal bar with a tool in his hand. There are several people in the background, one of them is wearing a white shirt and white hat. They are standing on the ground. The construction worker is also wearing a yellow helmet. The background is a yellow wall and a red ladder.", - "id": 29432 - }, - { - "image_path": "G:\\images\\combined\\003502_jpg.rf.dfef26421db972ef444e5c80cf9bc5b1.jpg", - "response": "The image shows two workers in a factory that produces roof tiles. They are standing in front of a large machine that is placing roof tiles onto a conveyor belt. The workers are both wearing yellow hard hats and work clothes.", - "id": 29433 - }, - { - "image_path": "G:\\images\\combined\\003503_jpg.rf.c684c51567fe8cdfba908b65a2c9ac0f.jpg", - "response": "a group of men standing around a table", - "id": 29434 - }, - { - "image_path": "G:\\images\\combined\\003504_jpg.rf.c34edacc1e93533e5c837586e3071979.jpg", - "response": "A man wearing a yellow hard hat and a plaid shirt is working on a construction site. He is holding a saw and sawing through a piece of wood. The sky is blue and there are no clouds. He is wearing a watch on his left wrist.", - "id": 29435 - }, - { - "image_path": "G:\\images\\combined\\003505_jpg.rf.05efea5d2a7115bd27d895cbe1cc5cef.jpg", - "response": "A group of people standing around a building site.", - "id": 29436 - }, - { - "image_path": "G:\\images\\combined\\003507_jpg.rf.91a8c167149fc2ed1ed3ce7b8d66eb0c.jpg", - "response": "A man wearing a yellow hard hat is kneeling down on a rooftop. He is wearing a yellow vest, grey sweater, yellow gloves, and dark grey pants. He is holding a pair of pliers in his left hand and there is a wall of concrete blocks behind him. The sky is clear and blue.", - "id": 29437 - }, - { - "image_path": "G:\\images\\combined\\003508_jpg.rf.59a146f8c08902169529c7dc43937c52.jpg", - "response": "A building that has been wrapped in scaffolding.", - "id": 29438 - }, - { - "image_path": "G:\\images\\combined\\003509_jpg.rf.33a96e095be15321b62ddd255c43213c.jpg", - "response": "The image shows three construction workers in red uniforms at a construction site. They are standing in front of a large piece of concrete that is being lowered from a crane. The concrete appears to be a segment of a bridge. The workers are standing on the ground and one of them is holding a long tool while the other two are holding a metal plate that is being lowered from the crane. In the background, there is a red crane and a large white crane.", - "id": 29439 - }, - { - "image_path": "G:\\images\\combined\\003510_jpg.rf.204205ced59dcf73ae979d52c56831b8.jpg", - "response": "A group of men standing next to each other.", - "id": 29440 - }, - { - "image_path": "G:\\images\\combined\\003511_jpg.rf.0dd9d4d89e76077ae50beefc981e70d2.jpg", - "response": "A group of men standing around each other.", - "id": 29441 - }, - { - "image_path": "G:\\images\\combined\\003512_jpg.rf.abd6809f4e14a4b7a0276fc56cc5e549.jpg", - "response": "A man in a red hard hat is pushing a large rock out of the way. Another man is lying on the ground behind him. They are both wearing orange shirts. In the background, a river is flowing to the right. To the left, there is a yellow construction vehicle with Chinese writing on it.", - "id": 29442 - }, - { - "image_path": "G:\\images\\combined\\003513_jpg.rf.ca665aba80c5f23af25a9ea2268fea44.jpg", - "response": "A man in a blue shirt and blue hat is up on a power line, working on it.", - "id": 29443 - }, - { - "image_path": "G:\\images\\combined\\003514_jpg.rf.54fea6c667b03f791cb4b4ba47976587.jpg", - "response": "In the image two men wearing orange work suits and hard hats are talking to each other. They are both holding something, possibly a tablet, and looking at it. They are standing in front of a factory or power plant with a conveyor belt behind them.", - "id": 29444 - }, - { - "image_path": "G:\\images\\combined\\003515_jpg.rf.049a6fe63d1f34d356f6cdcc2a263940.jpg", - "response": "The picture shows a group of people standing in front of a building. They are all wearing hard hats. In the foreground on the left, the man is wearing a light blue shirt and a dark blue cap. To the right of him, the man is wearing a white shirt and a dark blue cap. To the right of him, the man is wearing a white shirt and a grey cap. To the right of him, the man is wearing a white shirt and a red cap. To the right of him, the man is wearing a white shirt and a black cap. In the background, a yellow and blue flag is flying. In the background, a brown mountain can be seen.", - "id": 29445 - }, - { - "image_path": "G:\\images\\combined\\003516_jpg.rf.f3c44a2561ffee2d398e8504bb843948.jpg", - "response": "Men in white and black clothes and red hats are walking through a large cement room with steel beams on the ceiling.", - "id": 29446 - }, - { - "image_path": "G:\\images\\combined\\003517_jpg.rf.b4728f0ad2e687e920e9f98a1eb283b7.jpg", - "response": "A group of men in hard hats and blue coveralls are gathered around a red fence. They are standing on a concrete slab with a number 36 on it. The men are wearing yellow, orange, white, and red hard hats. In the background, there is a large white building with many electrical components visible through a window.", - "id": 29447 - }, - { - "image_path": "G:\\images\\combined\\003518_jpg.rf.fe69ecfba06d669c1cd185332f7eea8d.jpg", - "response": "A construction worker sitting on a pile of steel rods at a construction site. The worker is wearing a yellow hard hat, a grey shirt, and camouflage pants. The steel rods are in various sizes and are piled up in front of a concrete structure that is under construction. There are other workers visible in the background.", - "id": 29448 - }, - { - "image_path": "G:\\images\\combined\\003519_jpg.rf.fc25c85caf5c3ac35487393596df58ee.jpg", - "response": "A couple of men in white helmets are standing in front of a building under construction. The building has a green and yellow striped scaffold around it. One of the men is holding a clipboard and checking the building.", - "id": 29449 - }, - { - "image_path": "G:\\images\\combined\\00351a1451e059a5.jpg", - "response": "A grey headstone with the word Famille Privat on it.", - "id": 29450 - }, - { - "image_path": "G:\\images\\combined\\003520_jpg.rf.b2a8573a6f7e16166bbf3326de37b2f7.jpg", - "response": "The image shows a group of workers in green camouflage uniforms and blue hardhats standing around a white pipe. The pipe is suspended on a chain, and is being lowered onto a waiting truck. The workers are standing around the pipe, some of them holding onto the chain that is lowering the pipe. One worker is on the left, another is on the right, and the third is further back. One of the workers on the right is also holding a large metal tool.", - "id": 29451 - }, - { - "image_path": "G:\\images\\combined\\003521_jpg.rf.6c363a1dc9c6a74775aad4714cc6e136.jpg", - "response": "a group of men wearing hard hats and orange jumpsuits", - "id": 29452 - }, - { - "image_path": "G:\\images\\combined\\003522_jpg.rf.8d5b7d5a015894bccb4f46675446374a.jpg", - "response": "A man wearing a yellow hard hat and work gloves walking on a construction site.", - "id": 29453 - }, - { - "image_path": "G:\\images\\combined\\003523_jpg.rf.368aee4273b7d04a13249715d44287c6.jpg", - "response": "A worker measures a steel rebar cage at the construction site of the Beipanjiang B\u51fdgk Bridge, which is the world's highest bridge, in southwest China's Guizhou Province. The bridge, with a height of 1,800 meters above sea level, is expected to be completed next year.", - "id": 29454 - }, - { - "image_path": "G:\\images\\combined\\003524_jpg.rf.852536c1e14452fd38a7a87f97e1969b.jpg", - "response": "A man in a hard hat and a woman in a dress and hard hat are talking to another man in a street.", - "id": 29455 - }, - { - "image_path": "G:\\images\\combined\\003526_jpg.rf.9ebf382dac5feb0a5cdf72cf79d64086.jpg", - "response": "The image shows a group of three men working in a tunnel. They are all wearing hard hats and one man is wearing a black t-shirt and grey pants, another man is wearing a red shirt and grey pants, and the third man is wearing a blue shirt and grey pants. The man on the far left is crouching down and is working on a piece of metal with a tool in his hand. The man in the middle is standing and looking at something. The man on the far right is also standing and looking at something. They are all in a tunnel with a rocky floor and the walls are made of concrete. There is a bright light coming from somewhere in the tunnel and a steel beam in the foreground.", - "id": 29456 - }, - { - "image_path": "G:\\images\\combined\\003527_jpg.rf.e7d8778f0d9c6bffa3bdf55c35d7cb79.jpg", - "response": "A group of men standing in front of a building.", - "id": 29457 - }, - { - "image_path": "G:\\images\\combined\\003528_jpg.rf.2915f526b7b76b000baaa8c73663bd68.jpg", - "response": "A group of men standing around a computer screen.", - "id": 29458 - }, - { - "image_path": "G:\\images\\combined\\003530_jpg.rf.c06dba81c087766729c3ea6a97177954.jpg", - "response": "In the image there are two workers wearing white coveralls and yellow hard hats. They are on a platform working on a large metal structure. One of the workers is holding a blower and pointing it at the other worker. There is a hose running from a blue tank to the workers. There is a backpack vacuum behind the workers. The metal structure they are working on is black.", - "id": 29459 - }, - { - "image_path": "G:\\images\\combined\\003531_jpg.rf.b7b7ff8a9bf2cb9799a85cfb13a5c91f.jpg", - "response": "In the image there are two main subjects, a man wearing a suit and a man wearing a yellow safety vest. They are both wearing hard hats. The man wearing the suit is on the left side of the image and the man wearing the safety vest is on the right side. They are both looking at a blueprint which is either on a book or a piece of paper. The book or paper is located at the bottom of the image. In the background, there are some pipes.", - "id": 29460 - }, - { - "image_path": "G:\\images\\combined\\003532_jpg.rf.3a8e5ea3f127757c0d0bdcb64bfdbf7f.jpg", - "response": "A man in a blue shirt and a red helmet is talking to a man in a brown shirt and a yellow helmet. They are both standing in front of a street.", - "id": 29461 - }, - { - "image_path": "G:\\images\\combined\\003533_jpg.rf.78f340ca3092bca36ec0d98ccedc9611.jpg", - "response": "The image shows a group of workers inside a large tunnel. They are working on a construction project and are standing on a walkway that is built inside the tunnel. The workers are wearing hard hats and some of them are carrying tools.", - "id": 29462 - }, - { - "image_path": "G:\\images\\combined\\003535_jpg.rf.ec73091b3a943596d28c75b3de1a5371.jpg", - "response": "The leader of North Korea, Kim Jong-un, waves to the crowd. He is wearing a black suit and a hat. He is standing on a red carpet in front of a large crowd. There are other people around him, including some in military uniform. The room is filled with people sitting in chairs and standing around. There are also some people in the background wearing suits and ties.", - "id": 29463 - }, - { - "image_path": "G:\\images\\combined\\003536_jpg.rf.3e107eb0074881e266ea01dfed2c0ca6.jpg", - "response": "A worker in a cherry picker repairs power lines.", - "id": 29464 - }, - { - "image_path": "G:\\images\\combined\\003537_jpg.rf.d6ff33da5f134e16e25495b3dbf4a654.jpg", - "response": "A construction worker in front of a building site with a small orange excavator.", - "id": 29465 - }, - { - "image_path": "G:\\images\\combined\\003539_jpg.rf.5364a2ed78dde7960ad213bcb81179b0.jpg", - "response": "In the image two workers are wearing blue uniforms and red helmets. They are looking at a large metal cylinder that is a part of a blue machine. There are many other metal parts around them and a ruler is placed near the metal cylinder. The background is blurred out and there is a light green machine in the left top corner of the image.", - "id": 29466 - }, - { - "image_path": "G:\\images\\combined\\003540_jpg.rf.054d35490b418282ca63cb779422a325.jpg", - "response": "A group of seven men and one woman are standing in a construction site. They are all wearing red hard hats. In the background, there are trees.", - "id": 29467 - }, - { - "image_path": "G:\\images\\combined\\003541_jpg.rf.399b3ed73273ef9ab9834b6ae4b99a1c.jpg", - "response": "A worker in a yellow hat working on a machine.", - "id": 29468 - }, - { - "image_path": "G:\\images\\combined\\003542_jpg.rf.230261dd73cc2dcaf5c1592d9ac59602.jpg", - "response": "A large bridge under construction with many large metal beams and pipes on the ground in front of it.", - "id": 29469 - }, - { - "image_path": "G:\\images\\combined\\003543_jpg.rf.1bd62cba13dcc4fe482a883674c1ddf1.jpg", - "response": "The image shows two workers in blue shirts and yellow reflective vests standing in front of a grey box with the word \"Electrical\" written on it. Both of them are wearing blue helmets. One of them is opening the grey box with his left hand while the other is watching. The box has some writing and a red lightning bolt on it.", - "id": 29470 - }, - { - "image_path": "G:\\images\\combined\\003544_jpg.rf.1d90c1bddcbf679531a34f431abe67cc.jpg", - "response": "A group of people standing around each other.", - "id": 29471 - }, - { - "image_path": "G:\\images\\combined\\003545_jpg.rf.f84a56c9087ec499adac7c0202793f7f.jpg", - "response": "The photo shows several construction workers working on a site at night. They are wearing yellow hard hats and are focused on their tasks. In the foreground, there is a yellow piece of machinery with a large drill on it. To the right of the machinery, there are two men working on a rock. In the background, there are several other workers scattered around the site.", - "id": 29472 - }, - { - "image_path": "G:\\images\\combined\\003546_jpg.rf.b7e6cdd62d797ccbae07f75ed24e2406.jpg", - "response": "The image shows a group of workers standing on a stretch of railway track. They are all wearing yellow hard hats and some are holding red and yellow shovels. The railway track is a mix of brown sleepers and silver metal rails. To the left of the image, there are red and yellow flags fluttering in the wind. In the background, there is a green hill and a grey sky.", - "id": 29473 - }, - { - "image_path": "G:\\images\\combined\\003547_jpg.rf.201700d51c32145de13bf451da9cf98c.jpg", - "response": "A construction site with several workers visible. There are at least four workers, all wearing some form of hard hat. One worker is standing on the left, wearing a grey shirt and blue jeans, and is holding a tool. Another worker is standing in the center, wearing a black shirt and grey pants, and is holding a tool. The third worker is standing on the right, wearing a white shirt and yellow pants, and is also holding a tool. The fourth worker is standing on a platform made of metal rods, wearing a red hat and a grey shirt. There are many metal rods sticking up from the platform, which appears to be a support structure for a building.", - "id": 29474 - }, - { - "image_path": "G:\\images\\combined\\003548_jpg.rf.f5469ddea09c9b8a48c519f8ebad0d80.jpg", - "response": "A worker in China is seen moving a large sculpture of a woman with a kite in her mouth. The sculpture is grey in color and the woman is laying on the ground. In the background, there is a truck.", - "id": 29475 - }, - { - "image_path": "G:\\images\\combined\\003549_jpg.rf.36e7b0e211f0cb8ee735a3a260cf3dfc.jpg", - "response": "Two men in construction hats looking at a blueprint.", - "id": 29476 - }, - { - "image_path": "G:\\images\\combined\\00354_jpg.rf.4220394e1e4dbca859218f36cd6b0307.jpg", - "response": "In the image, a man is wearing a yellow safety vest and a yellow helmet. He is also wearing a white shirt and black pants. The man appears to be standing in front of a building with an ornate fence. The man is also holding a smartphone in his right hand, with his thumb on the screen.", - "id": 29477 - }, - { - "image_path": "G:\\images\\combined\\00354_jpg.rf.a51b15095d3745bac18f228cbb2d0b74.jpg", - "response": "In the image, a man is wearing a yellow safety vest and a yellow helmet. He is also wearing a white shirt and black pants. The man appears to be standing in front of a building with an ornate fence. The man is also holding a smartphone in his right hand, with his thumb on the screen.", - "id": 29478 - }, - { - "image_path": "G:\\images\\combined\\003550_jpg.rf.683cc47c249e737dba2920a3668fc13c.jpg", - "response": "A man in a blue jumpsuit and orange hard hat is sitting on a metal bar attached to a telephone pole. He is holding a pair of pliers in one hand and a cell phone in the other. The sky is white.", - "id": 29479 - }, - { - "image_path": "G:\\images\\combined\\003552_jpg.rf.979b190dc936af1189f997fe9f5f5427.jpg", - "response": "A group of men in red work uniforms are on top of power lines.", - "id": 29480 - }, - { - "image_path": "G:\\images\\combined\\003553_jpg.rf.3ea6884c44f76af6a97d01278ca2d4cb.jpg", - "response": "A group of men walking across a parking lot.", - "id": 29481 - }, - { - "image_path": "G:\\images\\combined\\003554_jpg.rf.87e7040f4c3a056cb7cb587191f12ed8.jpg", - "response": "A man is using a rock drilling machine in a dusty construction site.", - "id": 29482 - }, - { - "image_path": "G:\\images\\combined\\003555_jpg.rf.b6154d0b387ba2bdcc5b56546bf8cf55.jpg", - "response": "A construction site with two workers in yellow and green vests and yellow and orange hard hats.", - "id": 29483 - }, - { - "image_path": "G:\\images\\combined\\003556_jpg.rf.68d66fdf5ac559fb0a5b0d75c2d23a10.jpg", - "response": "A group of workers in blue work uniforms and white protective hats are working on an electricity substation. They are standing on a platform that is built around the top of a tall metal structure. They are working on a transformer with a bright flash of white light coming from it. The sky is overcast.", - "id": 29484 - }, - { - "image_path": "G:\\images\\combined\\003557_jpg.rf.db8c5bd00e701dddc6f32b98564afe13.jpg", - "response": "In the image two workers are seen. One is wearing a yellow helmet and is crouching down on the ground. Another worker is standing on the right side of the image. On the ground there are several things like a red and white striped cloth, a yellow helmet, a toothbrush and a book. There are also several long iron pipes and some signs on the wall.", - "id": 29485 - }, - { - "image_path": "G:\\images\\combined\\003558_jpg.rf.036375d5d9d2e554bbb45c1814de6a10.jpg", - "response": "A construction site with multiple workers. There is a large crane in the background and a few men working on the ground. The workers are wearing hard hats and the crane is lifting a large object.", - "id": 29486 - }, - { - "image_path": "G:\\images\\combined\\003559_jpg.rf.6bbb1deca2463f8ff961d22863021680.jpg", - "response": "A group of three men wearing hard hats are crouched down looking at something on the ground. They are all wearing blue jackets and the man on the right is also wearing a red hard hat. They appear to be looking at some pipes on the ground.", - "id": 29487 - }, - { - "image_path": "G:\\images\\combined\\003560_jpg.rf.10e6f8f8404fa5f1cd9f116a19c3896d.jpg", - "response": "A worker stands on a bridge that is under construction.", - "id": 29488 - }, - { - "image_path": "G:\\images\\combined\\003561_jpg.rf.dd9b00241e3f5104ad76dde42ab32905.jpg", - "response": "A man wearing a blue shirt and a yellow hard hat is pushing a wheelbarrow of bricks. He is standing on a construction site and is the only person in the image.", - "id": 29489 - }, - { - "image_path": "G:\\images\\combined\\003563_jpg.rf.7f3a8605ae7e814486b818b7dd904f1c.jpg", - "response": "A group of men walking across a muddy field.", - "id": 29490 - }, - { - "image_path": "G:\\images\\combined\\003564_jpg.rf.76c40aa4db4bd4831b1b3a52b842397f.jpg", - "response": "The image shows a snow-covered field with a large, damaged transmission tower in the middle of it. The tower appears to be partially destroyed, with wires and other debris scattered around it. There are several people in the field, with some standing near the tower and others further away. Some of the people are wearing hard hats and jackets, suggesting that they are workers or rescuers. There is also a dog in the field, standing near the tower. The sky above the field is overcast, adding to the wintry atmosphere.", - "id": 29491 - }, - { - "image_path": "G:\\images\\combined\\003565_jpg.rf.4b5fa2267744bd87430ee01a2e0cd4c5.jpg", - "response": "In the image two workers are seen repairing the wires of a\u53d1\u7535\u673a. One worker is seen wearing a helmet and gloves and the other one is wearing a helmet. They are both wearing blue and white color helmets. They are holding different tools in their hands. One of the worker is holding a pair of pliers and the other one is holding a screwdriver. They are wearing black color dress. There are many wires and cables seen in the image. Some of the wires are white and some are red and black. There is a yellow color pipe seen in the image. The background of the image is filled with many boxes.", - "id": 29492 - }, - { - "image_path": "G:\\images\\combined\\003566_jpg.rf.3aa1641c877d959c4e8103beaaf8e2fc.jpg", - "response": "A group of men standing under a large umbrella.", - "id": 29493 - }, - { - "image_path": "G:\\images\\combined\\003567_jpg.rf.929515b4f40ee5c77773b6fc0e2f4ed1.jpg", - "response": "A group of people working on a construction site.", - "id": 29494 - }, - { - "image_path": "G:\\images\\combined\\003568_jpg.rf.c48779f687616b9cdf9b0e2a1009c402.jpg", - "response": "This image shows a man standing in front of a building under construction. The man has black hair and is wearing a white shirt with a red emblem on the left side. He is smiling and has his hands behind his back. In the background, there is a car parked near the building. The sky is blue and there are a few clouds in the distance. The man's hair is styled in a high and tight style, which is a popular hairstyle among men in North Korea.", - "id": 29495 - }, - { - "image_path": "G:\\images\\combined\\003570_jpg.rf.5f243740d35237874e7714820f0559d7.jpg", - "response": "A man in a yellow hard hat is working outside, standing next to a large stack of wooden pallets. He is also standing next to a large stack of what look like roof tiles, wrapped in plastic. They are piled up in front of him and to his right. The sky above him is blue with a few thin clouds.", - "id": 29496 - }, - { - "image_path": "G:\\images\\combined\\003571_jpg.rf.3e294f0d046cfaaf42bed7a61ea4ea77.jpg", - "response": "A construction worker in a yellow jacket and orange shirt, holding a large metal pole.", - "id": 29497 - }, - { - "image_path": "G:\\images\\combined\\003572_jpg.rf.55f9237cd2c642bb2f82f92490204adc.jpg", - "response": "In the image there are two men wearing hard hats. One man is on the left and he is holding a clipboard with a paper on it and a stick in his hand. The other man is on the right and he is holding a hard hat. They are standing in front of a yellow construction vehicle and they are talking. They are both wearing long sleeved shirts.", - "id": 29498 - }, - { - "image_path": "G:\\images\\combined\\003574_jpg.rf.083018ce074e1acb4649f3db79fa470d.jpg", - "response": "a group of people standing on a road", - "id": 29499 - }, - { - "image_path": "G:\\images\\combined\\003576_jpg.rf.bfadee11652322ac6041ebed43e43c93.jpg", - "response": "A worker in a blue jacket and yellow hard hat stands on a red bridge. He is holding a lunchbox and appears to be taking a break. In the background, a portion of the Olympic stadium can be seen.", - "id": 29500 - }, - { - "image_path": "G:\\images\\combined\\003577_jpg.rf.7d07c13a9350abab00f9676a269518c0.jpg", - "response": "The image features a group of people sitting around a large brown table. They are all wearing black clothing. On the table, there are several red hard hats, a cup, a bowl, and a book. There are two chairs, one on the left side of the table and another on the right side. In the background, there are three framed pictures hanging on the wall. The middle picture is larger and is accompanied by two smaller pictures on either side. The room also features several signs on the wall, possibly indicating safety precautions or rules.", - "id": 29501 - }, - { - "image_path": "G:\\images\\combined\\003578_jpg.rf.8e5565eb96f0d9732a3d141bd2159b9c.jpg", - "response": "A group of workers wearing yellow hats are building a brick wall.", - "id": 29502 - }, - { - "image_path": "G:\\images\\combined\\003579_jpg.rf.17496461c7be29ec8e75bf9507c4b54f.jpg", - "response": "A group of men standing around a hole in the ground.", - "id": 29503 - }, - { - "image_path": "G:\\images\\combined\\003580_jpg.rf.f1db5f6a0babb99266b65d1ce33d23e3.jpg", - "response": "In the image two men in orange suits are standing next to a conveyor belt. The belt is black and runs along a rail. The men are both wearing orange helmets. One of the men is also wearing an orange jacket. They are standing on a field with a sky in the background that is filled with clouds. The field is surrounded by green hills.", - "id": 29504 - }, - { - "image_path": "G:\\images\\combined\\003581_jpg.rf.b3e82b54173b095e6d12b895e32c3013.jpg", - "response": "A city that has been destroyed by a disaster.", - "id": 29505 - }, - { - "image_path": "G:\\images\\combined\\003582_jpg.rf.c7ba942176f27fc9d7f33ff8c1c2b581.jpg", - "response": "A group of people standing around a car.", - "id": 29506 - }, - { - "image_path": "G:\\images\\combined\\003583_jpg.rf.f14e73d90a4372830a6edcd9d5ba6c88.jpg", - "response": "A group of men in hard hats and black uniforms are working in a snowy forest. They are standing around a small sapling and one of them is holding a large tool. The ground is covered in a thick layer of snow.", - "id": 29507 - }, - { - "image_path": "G:\\images\\combined\\003584_jpg.rf.72577044b1ecbfdb9de7e49c40ca3a01.jpg", - "response": "In the image there is a group of six people posing for a photo in a construction site. Three of them are wearing yellow vests and construction hats, and three of them are wearing business suits. The woman in the middle is also wearing a construction hat. They are all smiling at the camera.", - "id": 29508 - }, - { - "image_path": "G:\\images\\combined\\003585_jpg.rf.66c116879c04d68086fd4ed358a7b9a5.jpg", - "response": "A man wearing an orange hard hat and carrying a broom stands in front of a wire fence. He is wearing a grey shirt with thin blue stripes and grey pants. The man's back is turned to the camera. The fence is grey and made of wire. There is a house in the background with a red roof and white walls. The image is slightly blurred.", - "id": 29509 - }, - { - "image_path": "G:\\images\\combined\\003586_jpg.rf.b43aa65eaf77285ed0c3671eea20b8c7.jpg", - "response": "The image shows a group of workers standing on a construction site. They are wearing yellow helmets and are digging a ditch. In the foreground, a man is using a shovel to dig into the ground, while another man is holding a shovel and looking at something. A few more men are standing in the background, with one of them holding a shovel.", - "id": 29510 - }, - { - "image_path": "G:\\images\\combined\\003587_jpg.rf.b6f5882b8155bebe3899428b73d62c21.jpg", - "response": "A group of people standing around a construction site.", - "id": 29511 - }, - { - "image_path": "G:\\images\\combined\\003590_jpg.rf.0d2f05c85c86d05f97141b1513745451.jpg", - "response": "A man in a yellow hard hat is driving a forklift.", - "id": 29512 - }, - { - "image_path": "G:\\images\\combined\\003592_jpg.rf.61972b72d52846ce356d472088c53b05.jpg", - "response": "A worker is seen on the roof of the Anan\u8d77\u5bfa, working on restoring the roof. The roof is made of dark green tiles and there are several yellow and orange balls decorating the roof. The worker is wearing a yellow helmet and grey clothes.", - "id": 29513 - }, - { - "image_path": "G:\\images\\combined\\003593_jpg.rf.a7cec43ab3d645f5e29e048b3b463689.jpg", - "response": "A group of men in grey and yellow uniforms and hard hats are working on power lines in a green field.", - "id": 29514 - }, - { - "image_path": "G:\\images\\combined\\003594_jpg.rf.d8d1cb7df1f8bfd1f3213e7c472b3519.jpg", - "response": " linemen(323,523),(541,997)(214,498),(333,997) in the forest looking at a fallen tree blocking the power line", - "id": 29515 - }, - { - "image_path": "G:\\images\\combined\\003595_jpg.rf.9f09570fc49b4d1e1f197c6e51b470d4.jpg", - "response": "A man in a yellow shirt stands in front of a white wall with the words \"\u51fa\u552e\u65fa\u94fa\" (For Sale) written in red. He is speaking into a microphone. There are three other people standing to his right. To his left are two men, one standing closer to the front and one further back. To the far right are two women, one standing closer to the front and one further back.", - "id": 29516 - }, - { - "image_path": "G:\\images\\combined\\003596_jpg.rf.9379951f3d59d92cce38c001dd8fe724.jpg", - "response": "A man in a white shirt is pointing to a wall. Two men in striped shirts are standing next to him and looking at the wall. They are all wearing red helmets.", - "id": 29517 - }, - { - "image_path": "G:\\images\\combined\\003597_jpg.rf.896b62f069484941278c02f4467a03d3.jpg", - "response": "The image shows a group of rescue workers in orange jumpsuits and white hard hats standing around a green net. They are in a construction area with a large pile of dirt in the background. Some of the workers are standing on ladders. One worker is lying on a stretcher, and another worker is holding a yellow helmet.", - "id": 29518 - }, - { - "image_path": "G:\\images\\combined\\003599_jpg.rf.9feaf145c808852c3d1617511403299e.jpg", - "response": "The image shows four workers in yellow and orange vests and yellow helmets who are working on a bridge. They are all focused on a task, with two of them on the left and two on the right, wearing the same uniform. The bridge is a grey concrete structure with a concrete support in the middle, and two workers are fixing a metal part of the support.", - "id": 29519 - }, - { - "image_path": "G:\\images\\combined\\0035c3d72f2715d3.jpg", - "response": "The image features a group of seven young men standing in front of a black banner with a white writing. Three of the men are wearing white shirts, while the other four are wearing blue shirts. They are all posing for a picture, with some of them standing closer to the camera and others a bit farther back.", - "id": 29520 - }, - { - "image_path": "G:\\images\\combined\\003600_jpg.rf.882d2ed8298740bfe0df1f70e094f216.jpg", - "response": "A construction site with two men working on a roof.", - "id": 29521 - }, - { - "image_path": "G:\\images\\combined\\003601_jpg.rf.4fdbb9d0ae581cd6215044cb72f4dec3.jpg", - "response": "A man in a yellow hard hat holding a rolled up blueprint and looking up.", - "id": 29522 - }, - { - "image_path": "G:\\images\\combined\\003602_jpg.rf.57fc6edda29d5090f6ab07f3dcf71820.jpg", - "response": "a group of men standing around each other", - "id": 29523 - }, - { - "image_path": "G:\\images\\combined\\003603_jpg.rf.bf88e884147382297db8309e0fa3c1c3.jpg", - "response": "A crew of three men are working on a scaffolding outside a red brick building. They are in the process of installing windows on the second floor of the building.", - "id": 29524 - }, - { - "image_path": "G:\\images\\combined\\003604_jpg.rf.0704357388bab2075af004e74c7d334d.jpg", - "response": "In the image, there is a construction site with a few workers. There are two cranes working in the background, one on the left and the other on the right. A yellow hard hat is placed on the ground in the foreground. A man is crouched down on the left side of the image, working on a project. In the far distance, there is a city skyline visible.", - "id": 29525 - }, - { - "image_path": "G:\\images\\combined\\003605_jpg.rf.d2470a6656991240f0862e81fa92d8ed.jpg", - "response": "a group of people walking across a mining site", - "id": 29526 - }, - { - "image_path": "G:\\images\\combined\\003607_jpg.rf.118875e410f4f4b82def3e6fca0b2687.jpg", - "response": "A group of men in front of a yellow and white construction site.", - "id": 29527 - }, - { - "image_path": "G:\\images\\combined\\003609_jpg.rf.e2cc064f6d7b007a0ec810f77178ba69.jpg", - "response": "A man wearing a red hard hat and a white shirt is working on a construction site. He is holding a tool in his right hand and there is a green building under construction in the background.", - "id": 29528 - }, - { - "image_path": "G:\\images\\combined\\00360_jpg.rf.c0669b658b27a0078e65fc95cee03c1e.jpg", - "response": "In the image two men are wearing yellow helmets and reflective vests. They are both holding rolled up blueprints in front of a large stack of materials.", - "id": 29529 - }, - { - "image_path": "G:\\images\\combined\\003610_jpg.rf.98fc33dedf3ab106623dfe8eafae4d56.jpg", - "response": "A man in a red shirt and orange hat is working on a power line.", - "id": 29530 - }, - { - "image_path": "G:\\images\\combined\\003612_jpg.rf.6b46fa03eff0df8b60a3e95e26e457b4.jpg", - "response": "The image shows a group of five men wearing hard hats and orange safety jackets standing in front of a white building with a sign on the wall. The sign has two parts, one says ' Danger' in black bold letters and the other part is a poster with more details. The men are standing in two groups, one group of three and another group of two. The man on the far right in the blue outfit is wearing a yellow hard hat. In the background, there is a fire hydrant.", - "id": 29531 - }, - { - "image_path": "G:\\images\\combined\\003613_jpg.rf.e480b6ab9c113dab9d9ad80aa0fbfab2.jpg", - "response": "In the image two men are working on a battery. One man is on the left and he is wearing a grey shirt with a blue logo on the front, a black hat and glasses. He is holding a blue helmet and a small device with a light on it. The other man is on the right and he is wearing a red shirt with a yellow logo on the front, a yellow hat and glasses. He is holding black helmet and a black and grey cable. In front of the men is a grey battery with the word YUASA on it.", - "id": 29532 - }, - { - "image_path": "G:\\images\\combined\\003615_jpg.rf.298b867ef2c3dc926fe14d625060f50a.jpg", - "response": "The photo shows men in white and pink shirts standing in two rows. In front of them is a table with several bottles on it. They are all standing in a room with a blue wall.", - "id": 29533 - }, - { - "image_path": "G:\\images\\combined\\003616_jpg.rf.8e352503bb911db5b0bbb82c5948eb95.jpg", - "response": "A man in a white shirt and red helmet is standing in the middle of a construction site with two other men. They are all wearing hard hats. In the background, there is a patch of blue sky and some greenery.", - "id": 29534 - }, - { - "image_path": "G:\\images\\combined\\003617_jpg.rf.79d41882beae40c60de935f4dd34dc54.jpg", - "response": "The image shows a room with a white ceiling and a shiny black table. There are several people standing around the table, dressed in business attire. Some of the people are wearing ties. There are chairs around the table, and a few bottles are placed on the table. In the background, there is a map hanging on the wall.", - "id": 29535 - }, - { - "image_path": "G:\\images\\combined\\003618_jpg.rf.479c8737d3b018c352c7c127de236ecf.jpg", - "response": "A group of men sitting around a table in a room.", - "id": 29536 - }, - { - "image_path": "G:\\images\\combined\\003620_jpg.rf.e8392a88cacac326b6c0d2e98e78f9c4.jpg", - "response": "The image shows a group of people standing around a man who is laying on the ground. The man appears to be injured, as he is being attended to by several people around him. Some of these people are holding a large metal object, possibly a piece of debris from a building that has collapsed. The man is lying on the ground with his head near the yellow helmet of one of the people attending to him. The scene appears to be taking place in a construction area.", - "id": 29537 - }, - { - "image_path": "G:\\images\\combined\\003621_jpg.rf.f5082987681672a7c69ffd07d7759282.jpg", - "response": "A group of four men in hard hats stand on a unfinished walkway.", - "id": 29538 - }, - { - "image_path": "G:\\images\\combined\\003622_jpg.rf.97f49b0d82ed4726a9908f1ade532701.jpg", - "response": "In the image two workers are seen repairing an electricity transformer. Both of them are wearing white clothes and blue color helmets. One of them is holding a tool in his right hand while the other one is on the ladder. Both of them are in white color clothes. There is a building near them and a crane is also visible in the image.", - "id": 29539 - }, - { - "image_path": "G:\\images\\combined\\003624_jpg.rf.0950268e33a006a7b7ff261650a3d025.jpg", - "response": "A man in a black jacket and black pants is pointing towards a large pile of dirt. Another man in a black jacket and pants is walking towards the first man. In the background, there are buildings.", - "id": 29540 - }, - { - "image_path": "G:\\images\\combined\\003625_jpg.rf.cd6584230c1a22011e1b398889f90acd.jpg", - "response": "A group of men in green work clothes and hard hats are working on a mountain side. They are using shovels and working on a rock.", - "id": 29541 - }, - { - "image_path": "G:\\images\\combined\\003626_jpg.rf.335127278a9b7edf7aaf1803db663f4e.jpg", - "response": "A group of three people in red work clothes and hard hats are looking into a large metal circular device. They are all focused on the task at hand.", - "id": 29542 - }, - { - "image_path": "G:\\images\\combined\\003627_jpg.rf.ffa5571c32b6107e2dd7631c86df2ff4.jpg", - "response": "An electrician fixing an electrical panel.", - "id": 29543 - }, - { - "image_path": "G:\\images\\combined\\003628_jpg.rf.de6cd188aaf752662132601591dd6cdf.jpg", - "response": "In the image there are multiple people working on a construction site. They are all wearing orange helmets, some are wearing bright orange vests as well. On the ground, there are several metal pipes and tubes, some are arranged in a grid, and some are\u5f2f\u66f2\u6210\u5706\u5f27\u5f62\u72b6. There is a lot of dirt on the ground, and a couple of trees in the background. On the right bottom corner, there's a logo and some text, but only a small part of it is visible.", - "id": 29544 - }, - { - "image_path": "G:\\images\\combined\\003629_jpg.rf.59dd833123f45e1c9346b4b51208511e.jpg", - "response": "A construction worker wearing a yellow hard hat and blue gloves is pouring concrete into a large tube.", - "id": 29545 - }, - { - "image_path": "G:\\images\\combined\\00362_jpg.rf.ea6e9e5050aec4df8f7590c47dee9112.jpg", - "response": " Two men(191,82),(421,997)(469,221),(713,996) wearing hard hats(295,82),(416,252)(534,221),(628,368) and yellow vests(498,428),(712,838)(200,287),(395,797) standing on a construction site", - "id": 29546 - }, - { - "image_path": "G:\\images\\combined\\003631_jpg.rf.f7f6a2b6f21682839be49932a094c895.jpg", - "response": "A pair of workers stand on a ladder, one of them reaches up to the side of a brick wall with a long tool.", - "id": 29547 - }, - { - "image_path": "G:\\images\\combined\\003632_jpg.rf.fd3bcbfc9cf0c5f844f3d08341bff81d.jpg", - "response": "A group of people on a boat in the ocean.", - "id": 29548 - }, - { - "image_path": "G:\\images\\combined\\003633_jpg.rf.1b39410b808878472c1a8b99f0b61951.jpg", - "response": " Rescuers(508,313),(804,996)(287,236),(577,996) carry a rescued miner from a flooded coal mine in China's Henan province.", - "id": 29549 - }, - { - "image_path": "G:\\images\\combined\\003634_jpg.rf.ffb992585b9ee6c1f6211ee0ddeaae09.jpg", - "response": "A group of workers are working on a building. The building is not yet fully constructed and is grey in color. There are four workers in total, each working at different levels of the building. One worker is on the second floor, one is on the third floor, one is on the fifth floor, and one is on the sixth floor. They are each wearing orange vests. There is also a yellow hard hat on the fifth floor. The workers are attached to the building through a suspended metal structure that also has a orange safety net. The net is attached to the building through a metal cable.", - "id": 29550 - }, - { - "image_path": "G:\\images\\combined\\003635_jpg.rf.313141cb5dfcc2108b2ae83b20ded5ee.jpg", - "response": "A man is walking up a staircase that is surrounded by scaffolding. He is wearing a yellow hard hat and grey coveralls.", - "id": 29551 - }, - { - "image_path": "G:\\images\\combined\\003636_jpg.rf.fe33397ccec2de0918a38fc899beade5.jpg", - "response": "a group of men(376,388),(536,758)(547,376),(754,805)(2,289),(338,998)(257,367),(390,910) in hard hats(124,289),(283,373)(548,386),(624,435)(630,375),(718,428) standing in a construction site", - "id": 29552 - }, - { - "image_path": "G:\\images\\combined\\003637_jpg.rf.dff0e28188332665ac4b74cb59dfba1c.jpg", - "response": "A group of people working on a construction site.", - "id": 29553 - }, - { - "image_path": "G:\\images\\combined\\003639_jpg.rf.504e97edba7470e98e4b0a1b633c22b7.jpg", - "response": "A group of men standing on top of a building working on a transformer at night.", - "id": 29554 - }, - { - "image_path": "G:\\images\\combined\\003640_jpg.rf.52a77eda361cbb6f9cad3ffeeadaa455.jpg", - "response": "A train on a track with three people in orange vests working on the top of a yellow train car.", - "id": 29555 - }, - { - "image_path": "G:\\images\\combined\\003641_jpg.rf.6119660964ca9f5871626a5f14c140c7.jpg", - "response": "In the image there are three construction workers at a building site. One worker is in the center of the image, he is a white man wearing a yellow vest and a white hard hat. He is holding a long aluminum rod and looking up. Another worker is on the left side of the image, he is a black man wearing a yellow vest and a white hard hat. He is holding a long aluminum rod as well and looking up. The third worker is on the right side of the image, he is a blonde haired man wearing a yellow vest and a yellow hard hat. He is holding a long aluminum rod as well and looking up.", - "id": 29556 - }, - { - "image_path": "G:\\images\\combined\\003643_jpg.rf.9d115ea67cf2803fafb8768e13b8861b.jpg", - "response": "The picture is in black and white. Five people are in the picture. Three of them are wearing hard hats. One man is showing something to another man. They are both in uniform. Another man is wearing a white helmet. He is looking at the thing the two men are looking at. The last man is wearing a white helmet and a white hard hat. He is wearing a black jacket and a backpack. He is looking up at the other four men.", - "id": 29557 - }, - { - "image_path": "G:\\images\\combined\\003644_jpg.rf.1c03d2aa8b7ae9ac6d61a49e6e254268.jpg", - "response": "A group of men standing around each other wearing hard hats.", - "id": 29558 - }, - { - "image_path": "G:\\images\\combined\\003645_jpg.rf.7a2655df63e43f0f630016fa7aa3bd82.jpg", - "response": "The image shows a group of people standing around a construction site. There are several men wearing hard hats and coats, and one man is wearing a black coat and a blue hat. A large machine is in the background, and there are some rocks on the ground. In the distance, there are also several cars parked.", - "id": 29559 - }, - { - "image_path": "G:\\images\\combined\\003646_jpg.rf.47cccf7b4191c4aa173374311d46299b.jpg", - "response": "A group of men walking across a construction site.", - "id": 29560 - }, - { - "image_path": "G:\\images\\combined\\003647_jpg.rf.77f4d370a61577385791d3502f957a05.jpg", - "response": "A worker is standing on a yellow vehicle while fixing a power line.", - "id": 29561 - }, - { - "image_path": "G:\\images\\combined\\003651_jpg.rf.327d5979faa6f8cc5411e5536a0c4324.jpg", - "response": "In the image, there is a construction site with multiple workers. One worker is in the foreground, wearing a green jumpsuit and a yellow hard hat. They are working on a construction project that involves building a large structure out of steel rebar. The rebar is being built in a cage-like structure and is attached to a blue steel beam. The workers are wearing yellow hard hats and are focused on their tasks. In the background, there is a blue staircase and a pile of steel rods.", - "id": 29562 - }, - { - "image_path": "G:\\images\\combined\\003654_jpg.rf.80e7b77d03f04233816171b20fe919db.jpg", - "response": "The image shows a construction site where several workers are busy. In the center of the scene, three workers are wearing yellow helmets and are working on a red brick wall. They are surrounded by a large number of steel bars, steel plates, and other construction materials. Some workers are also wearing red and yellow safety belts. In the upper left corner of the image, a worker is holding a blue umbrella, and another worker is sitting on the ground with his back to the camera. The entire scene is surrounded by a large number of steel rebar, making the site look like a complex network.", - "id": 29563 - }, - { - "image_path": "G:\\images\\combined\\003655_jpg.rf.9543a88be1e0b9bccc6178e7431a5a38.jpg", - "response": "A group of workers wearing yellow hard hats are working on a construction site. They are all bent over, some of them are standing on wooden planks and the others are working on a concrete wall. There are several pieces of wood and a metal rod visible in the image. The workers are all focused on their tasks.", - "id": 29564 - }, - { - "image_path": "G:\\images\\combined\\003657_jpg.rf.22490d4794194f5a5ea95e8920ce040f.jpg", - "response": "A group of men in blue hard hats looking at a blueprint.", - "id": 29565 - }, - { - "image_path": "G:\\images\\combined\\003658_jpg.rf.89036ed0be3b1eb452477a09dfa3140e.jpg", - "response": "A cement truck is parked on the street next to a group of men. The men are working on a construction site that has a large amount of concrete being poured. The concrete is being poured into place and is still liquid. The workers are standing on the wet concrete and are using long tools to level it out.", - "id": 29566 - }, - { - "image_path": "G:\\images\\combined\\003659_jpg.rf.4d86de99ea47fc54c85dfa29f601f54a.jpg", - "response": "An architect and a construction worker looking at blueprints in front of a construction site.", - "id": 29567 - }, - { - "image_path": "G:\\images\\combined\\003660_jpg.rf.0dd1d972b6f8ceeb382805c16e4539e5.jpg", - "response": "The image shows two workers in blue shirts and blue hats, working on a power line. They are standing in front of a building and there are other workers in the background. The sky is blue and there are trees in the background.", - "id": 29568 - }, - { - "image_path": "G:\\images\\combined\\003661_jpg.rf.136fc23f74196da1ba2f8dd38eb03332.jpg", - "response": "A group of men standing around a construction site", - "id": 29569 - }, - { - "image_path": "G:\\images\\combined\\003662_jpg.rf.9e5b1aabb5ec1ceb404c7910ffea9f5f.jpg", - "response": "A group of men in green and white uniforms are standing in a room. Some of them are wearing ties. One man is wearing a white shirt and grey pants. Another man is wearing a white shirt and black pants. One man is wearing a white shirt and grey shorts. One man is wearing a white shirt and grey pants. One man is wearing a white shirt and grey shorts. One man is wearing a white shirt and grey pants.", - "id": 29570 - }, - { - "image_path": "G:\\images\\combined\\003663_jpg.rf.400197f26f69666a691bf7467b402751.jpg", - "response": "a group of men in suits and hard hats", - "id": 29571 - }, - { - "image_path": "G:\\images\\combined\\003664_jpg.rf.5b8940510e374ab51c3e4b40a684b17c.jpg", - "response": "A window washer suspended from ropes on the outside of a skyscraper.", - "id": 29572 - }, - { - "image_path": "G:\\images\\combined\\003665_jpg.rf.a600e1994d665b019ae2036bd44a8cba.jpg", - "response": "In the image, there are several workers in yellow and orange vests standing on a mountain road. They are working together to remove debris and restore the road after a mountain slide. The workers are wearing helmets for safety. In the background, there are several cars parked on the right side of the road. The workers are using shovels and other tools to clear the debris.", - "id": 29573 - }, - { - "image_path": "G:\\images\\combined\\003667_jpg.rf.40f5b1513dbd52e71729fb9e2e723ed5.jpg", - "response": "A man and a woman are standing outdoors, looking at a blueprint. The man is wearing a yellow hard hat and looking at the woman, who is holding the blueprint. They are both standing in front of a white cloud in a blue sky.", - "id": 29574 - }, - { - "image_path": "G:\\images\\combined\\003668_jpg.rf.e6f94623fb06fdd5c44851a1b61eb8bf.jpg", - "response": "A group of men standing in a doorway.", - "id": 29575 - }, - { - "image_path": "G:\\images\\combined\\003670_jpg.rf.b01c301ffffc4ccb7416567ed71105b8.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 29576 - }, - { - "image_path": "G:\\images\\combined\\003671_jpg.rf.3c74e724efca0e53c324bb27d4ee926e.jpg", - "response": "In the image there is a large excavator or drilling machine with a large bucket at the front, a caterpillar track at the bottom and a long, vertical post sticking out of the ground beside it. The excavator is located in the desert, in front of a sand dune. In the background, to the left, there is a man wearing a yellow hard hat and orange vest, walking towards the excavator.", - "id": 29577 - }, - { - "image_path": "G:\\images\\combined\\003673_jpg.rf.a3227b6dc47c09feb7ce7aaaca17205d.jpg", - "response": "An older man and a younger man in blue work clothes, the older man is wearing a yellow hard hat and the younger man is pointing at something. They are both smiling at the camera. In the background there is a forklift.", - "id": 29578 - }, - { - "image_path": "G:\\images\\combined\\003674_jpg.rf.0d1add84f3c5151a9241f4f53078a1a0.jpg", - "response": "A group of people standing around each other.", - "id": 29579 - }, - { - "image_path": "G:\\images\\combined\\003675_jpg.rf.38b78d09d3d6700ff80117aa849012c6.jpg", - "response": "The image shows two men in a room with a large machine. The men are standing on the left side of the image, both wearing white shirts and hats. They are both looking at the large machine, which is on the right side of the image. The machine has many pipes and valves of different sizes. Some of the pipes are silver and shiny, while others are black and dull. The machine also has a control panel with many buttons and switches. The control panel is white and has a small screen. The men are standing close to the control panel, with one of them holding a clipboard.", - "id": 29580 - }, - { - "image_path": "G:\\images\\combined\\003678_jpg.rf.48c1bf3aca49f083cdb6a8c6e4467235.jpg", - "response": "A group of three workers are working on a building. They are on scaffolding, one is on a ladder and two are on the scaffolding. They are all wearing yellow and grey construction gear.", - "id": 29581 - }, - { - "image_path": "G:\\images\\combined\\003679d4dc2e6856.jpg", - "response": "A baseball game is being played on a grass and dirt field. Players are wearing white uniforms and one player is holding a bat.", - "id": 29582 - }, - { - "image_path": "G:\\images\\combined\\003679_jpg.rf.a07afb6936c89e0fc5f3827e637fdc7a.jpg", - "response": "A man(329,4),(893,684) is in a pit of water", - "id": 29583 - }, - { - "image_path": "G:\\images\\combined\\003680_jpg.rf.a26194cbb35089f4931f27f9fd98bfb9.jpg", - "response": "A man in a suit and tie standing in front of a building under construction.", - "id": 29584 - }, - { - "image_path": "G:\\images\\combined\\003681_jpg.rf.6f9a15e843d609fce8608518c7e9b5b1.jpg", - "response": "A group of people sitting around a table.", - "id": 29585 - }, - { - "image_path": "G:\\images\\combined\\003682_jpg.rf.886b1789981f1d8d8e6aa19c74f6204f.jpg", - "response": "A blue train pulling into a mountain side tunnel.", - "id": 29586 - }, - { - "image_path": "G:\\images\\combined\\003683_jpg.rf.ea2c64da9ec1b2e943ce862b8e0bace2.jpg", - "response": "An electrician wearing a blue hard hat is working on some wires in a field. He is holding a tool in his right hand and a wire in his left hand. Another electrician is in the background, wearing a blue hard hat and holding a tool. They are both in the middle of a green field.", - "id": 29587 - }, - { - "image_path": "G:\\images\\combined\\003684_jpg.rf.f6881e5ae5ee671d328a728081e0a92f.jpg", - "response": "The image shows three construction workers working on a project. They are all wearing hard hats and are focused on their task. In the foreground, a man is pouring concrete into a wooden form while another man looks on. A third man is kneeling down and working on something else. In the background, a cement truck is visible.", - "id": 29588 - }, - { - "image_path": "G:\\images\\combined\\003686_jpg.rf.10e9a27ac0ea3709d6ee51b52d0703ac.jpg", - "response": "The image shows a group of three men standing in a pile of rubble. The man in the center is wearing a white hard hat, a blue shirt, and gray pants. The man on the left is wearing a white shirt with black stripes, a black backpack, and dark gray pants. The man on the right is wearing a white shirt with a black logo on the left chest, dark gray pants, and a blue backpack. They all appear to be looking at something in the rubble.", - "id": 29589 - }, - { - "image_path": "G:\\images\\combined\\003687_jpg.rf.78993238b6b27e35aef7ede85f1c160d.jpg", - "response": "A man wearing a white hard hat and an orange safety vest looking at blueprints on a table. The man is wearing a watch on his left wrist and a white hard hat on his head. He is bent over the table with his hands on the table. There is a yellow tape measure on the table and a white hard hat next to it. The man is standing in a room that is under construction. There are wooden beams in the background and a wall that is only partially framed in.", - "id": 29590 - }, - { - "image_path": "G:\\images\\combined\\003688_jpg.rf.bd984fb9c9dcc71d19c5212cd3ae4e94.jpg", - "response": "In the image two technicians are working on a power box. One is holding a flashlight and the other a multi meter. They are wearing blue helmets and white shirts.", - "id": 29591 - }, - { - "image_path": "G:\\images\\combined\\003690_jpg.rf.a75d341d4483903a7010d0cc10a90baf.jpg", - "response": "A man in a dark coal mine is using a pick axe to chip away at a large rock.", - "id": 29592 - }, - { - "image_path": "G:\\images\\combined\\003691_jpg.rf.55d64e650708cce29672d953c4507e40.jpg", - "response": "In the image there is a man wearing a blue helmet and a green shirt, he is working on a construction site. The site is in an alleyway between two buildings. There is a wheelbarrow on the left side of the image and a pile of grey stones on the ground. The stones are scattered around the man and the wheelbarrow. The ground is wet in this area.", - "id": 29593 - }, - { - "image_path": "G:\\images\\combined\\003692_jpg.rf.84ccb7ed91d28a121d9af34f69570a11.jpg", - "response": "In the image, a worker is welding a large anchor chain in a warehouse. The worker is wearing a red helmet and protective glasses. They are squatting down and holding a welding tool in their right hand. The chain is on the ground and the worker is working on a section of it that is lying horizontally in front of them. The chain is made of iron and is in various shades of brown. It is scattered across the floor of the warehouse.", - "id": 29594 - }, - { - "image_path": "G:\\images\\combined\\003693_jpg.rf.de7bfd8713b1e7d171a388a43ffc7664.jpg", - "response": "The image shows a construction site with several construction workers visible. There are three excavators present, one on the left, one in the middle, and one on the right. A large yellow one is visible towards the left side of the image. There is a brown one towards the right side of the image. In total, there are nine construction workers visible. Seven of them are wearing yellow hard hats and are working on the site. Two workers are visible towards the left side of the image, and the other two are visible towards the right side of the image. The workers are engaged in various tasks, such as working with metal rods and using shovels.", - "id": 29595 - }, - { - "image_path": "G:\\images\\combined\\003694_jpg.rf.66f886b8bcfb85cf65be88ddceee0359.jpg", - "response": "The image shows an electrician wearing a red uniform and a blue helmet. The electrician is working on some wires and equipment, with a flashlight shining on the wires. The electrician is also holding a screwdriver. The background shows another person wearing a red shirt and a blue cap, with their back to the camera. There is also a wall-mounted white box containing wires and switches. The electrician is working on this box as well.", - "id": 29596 - }, - { - "image_path": "G:\\images\\combined\\003695_jpg.rf.e7237b1b4abb54f34900a19d9a3a4d45.jpg", - "response": "A man wearing a hard hat and holding a set of blueprints, standing in front of a building under construction.", - "id": 29597 - }, - { - "image_path": "G:\\images\\combined\\003696_jpg.rf.5e9b1fb5409d74059506f5dd35aacdbd.jpg", - "response": "Three men(363,236),(487,520)(35,285),(139,629)(450,207),(593,417) standing on a stone bridge(2,287),(996,998)", - "id": 29598 - }, - { - "image_path": "G:\\images\\combined\\003697_jpg.rf.ee17919a8fc41655ec082158d71b6381.jpg", - "response": "A construction site with two workers in yellow and blue uniforms and yellow helmets. They are working on a piece of metal scaffolding.", - "id": 29599 - }, - { - "image_path": "G:\\images\\combined\\003698_jpg.rf.2a336065d097ae5533e7e35c9f18a15e.jpg", - "response": "In the image there are two workers wearing yellow and green jackets and red and yellow hard hats. They are working on a construction site that has a large concrete structure with many metal bars and rebar. They are standing on a ladder and using a long tool to make adjustments to the metal bars.", - "id": 29600 - }, - { - "image_path": "G:\\images\\combined\\003699_jpg.rf.e3a793d9174ac139c49c656c27110d39.jpg", - "response": "A group of workers are standing on a snowy mountain top. They are all wearing hard hats and are eating lunch.", - "id": 29601 - }, - { - "image_path": "G:\\images\\combined\\0036b3607d3b7358.jpg", - "response": "A bottle of Marston's Oyster Stout sits on a wooden table next to a plastic bottle of water. The Oyster Stout bottle has a gold and white label.", - "id": 29602 - }, - { - "image_path": "G:\\images\\combined\\003700_jpg.rf.92eded73dfb46066a14491a43a9b1755.jpg", - "response": "A construction worker wearing a yellow hard hat is standing on a ladder.", - "id": 29603 - }, - { - "image_path": "G:\\images\\combined\\003702_jpg.rf.994a85efa305cccf17d56d26e0b0327f.jpg", - "response": "A group of workers(523,368),(740,865)(428,396),(557,893) are using a long tool(488,620),(978,808) to chip away at the side of a building.", - "id": 29604 - }, - { - "image_path": "G:\\images\\combined\\003703_jpg.rf.89bcc8c141854b0b655304ee100893a5.jpg", - "response": "A man in a blue uniform and climbing gear is hanging from a telephone pole, repairing wires.", - "id": 29605 - }, - { - "image_path": "G:\\images\\combined\\003704_jpg.rf.2dc808e5a53374bb8626012033128bd5.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt holding a large wooden stick over his shoulder.", - "id": 29606 - }, - { - "image_path": "G:\\images\\combined\\003705_jpg.rf.bca05ef252f3cf75a5f0499a0b65c6c3.jpg", - "response": "The image shows two construction workers wearing blue and yellow work clothes. They are both holding a plan or blueprint and looking at it. The worker on the left is also wearing a white helmet and a pair of red headphones around his neck. They are both wearing white helmets.", - "id": 29607 - }, - { - "image_path": "G:\\images\\combined\\003707_jpg.rf.4f178c14efc651eb780c1b13d22d90b5.jpg", - "response": "A man in a blue shirt and blue hat is standing in a construction site. He is giving a thumbs up. There are other people in the background. There are many steel rods stacked on the ground. There are other machines and equipment around. There are buildings in the background.", - "id": 29608 - }, - { - "image_path": "G:\\images\\combined\\003708_jpg.rf.3d1bed801eb080c1553547b7635c2259.jpg", - "response": "In the image, a group of workers are standing on a large dock. They are wearing orange construction suits. In the background, there is a large body of water and a crane is lifting a long wooden plank.", - "id": 29609 - }, - { - "image_path": "G:\\images\\combined\\003709_jpg.rf.48f2cd4c89c83b9537af7a8fe9c287aa.jpg", - "response": "A man and woman standing in a room that is under construction. They are both wearing white helmets and looking at blueprints. The woman is also holding a cell phone.", - "id": 29610 - }, - { - "image_path": "G:\\images\\combined\\003710_jpg.rf.23690be19e65c76d67939be81a5b55e8.jpg", - "response": "The image shows two men working on a transmission tower. They are wearing green and brown camouflage uniforms and yellow helmets. The man in the foreground is kneeling on a metal ladder and fixing a metal bar on the left side of the tower. The man on the right is climbing the tower, wearing a tool belt with a drill and other tools. They are both in the process of installing a metal bar on the tower.", - "id": 29611 - }, - { - "image_path": "G:\\images\\combined\\003712_jpg.rf.07d79113714afa6742ea9c90c6a1c5ee.jpg", - "response": "A worker in a blue uniform and a hard hat is working on a piece of equipment. They are holding a large wrench and are standing on a ladder. They are making adjustments to the equipment.", - "id": 29612 - }, - { - "image_path": "G:\\images\\combined\\003713_jpg.rf.b810d696fc9c784fd6348a30b257b913.jpg", - "response": "a group of people standing around talking", - "id": 29613 - }, - { - "image_path": "G:\\images\\combined\\003714_jpg.rf.5fee9432173e499ae4f068aacb6160c9.jpg", - "response": "A group of men in hard hats eat a meal on the ground.", - "id": 29614 - }, - { - "image_path": "G:\\images\\combined\\003715_jpg.rf.7f2de1dee16a203d49e5a0f30ce7911d.jpg", - "response": "A man in a green shirt and yellow hard hat is operating a machine with a large drill on it. The man is standing in front of a white tarp and there are other workers in the background. The man is also wearing a yellow hard hat.", - "id": 29615 - }, - { - "image_path": "G:\\images\\combined\\003716_jpg.rf.80392b8a10793b8d08dfb7089fcadb24.jpg", - "response": "A group of four people working on a construction site.", - "id": 29616 - }, - { - "image_path": "G:\\images\\combined\\003717_jpg.rf.daaf2b2b41024fe9d5829f80092de763.jpg", - "response": "In the image two workers are wearing yellow and orange hard hats. They are standing in front of a white board with a blue frame. The worker on the left is writing something on the board. They are writing in Chinese. The white board has two signs on it. One says \"CAUTI\" at the top and has a red circle around it. The other sign is blue and says \"0\" in a green circle. The workers are standing in front of a yellow and orange scaffolding.", - "id": 29617 - }, - { - "image_path": "G:\\images\\combined\\003718_jpg.rf.eacb5d008614fa73dc9bc1bebcb5bbce.jpg", - "response": "In the image two men are seen wearing hard hats and life jackets while standing in flood waters. They are holding bamboo poles. The water is up to their knees.", - "id": 29618 - }, - { - "image_path": "G:\\images\\combined\\003719_jpg.rf.c06339ff3255ec01d7fec9a7f5e6155b.jpg", - "response": "A group of five people are working on a brick wall together. They are all wearing hard hats and are standing on the ground. Some of them are holding tools such as a shovel and a trowel. The sky is blue and there are a few clouds in the sky.", - "id": 29619 - }, - { - "image_path": "G:\\images\\combined\\003720_jpg.rf.607dc0e25d64195cd40196f6794e0658.jpg", - "response": "A construction worker wearing an orange hard hat is working on a piece of metal on a construction site. The worker is wearing a camouflage shirt and coveralls. They are sitting on a wooden platform and are cutting into a metal beam with a pair of pliers. There is a pile of grey rocks next to the worker.", - "id": 29620 - }, - { - "image_path": "G:\\images\\combined\\003721_jpg.rf.89bb97593febe517a94c57dfda15bf5a.jpg", - "response": "A group of men working on a large metal box on a ladder.", - "id": 29621 - }, - { - "image_path": "G:\\images\\combined\\003722_jpg.rf.021b65406c39b03ecea2544521b34da1.jpg", - "response": "A group of people standing on a dirt road", - "id": 29622 - }, - { - "image_path": "G:\\images\\combined\\003723_jpg.rf.3746d752de427411312cd13c0009e762.jpg", - "response": "A construction worker crouches next to a large metal grate, smiling at the camera. Another worker is visible in the background, crouching to the left of the first worker. They are both wearing hard hats. In front of them is a large concrete structure with rebar sticking out of it. The rebar has been bent into a grid pattern. Next to the workers is a white bucket and several pieces of wood.", - "id": 29623 - }, - { - "image_path": "G:\\images\\combined\\003724_jpg.rf.3cfe6148c9a95658621b4704c98e066a.jpg", - "response": "A group of construction workers are working on a large project. They are standing in a construction site that has large pipes and machinery. Some of the workers are wearing yellow hard hats and red vests. In the background, there is a large pile of rubble and debris.", - "id": 29624 - }, - { - "image_path": "G:\\images\\combined\\003725_jpg.rf.ae9536c68b291bc2f3ef44929f46ae55.jpg", - "response": " Two mining industry workers(450,133),(730,996)(2,136),(411,996) discussing their day's work in front of a dump truck(343,3),(997,571)", - "id": 29625 - }, - { - "image_path": "G:\\images\\combined\\003727_jpg.rf.a16ebabf4aa74393c61d1fd4f656478e.jpg", - "response": "A group of people sitting around a table.", - "id": 29626 - }, - { - "image_path": "G:\\images\\combined\\003729_jpg.rf.dbbbaec105efc91fe3f39432c8a90f50.jpg", - "response": "A man standing in front of a yellow and orange sign that says LDXC-100T.", - "id": 29627 - }, - { - "image_path": "G:\\images\\combined\\00372_jpg.rf.5a34f3e4a097ecf93494abd7dc582770.jpg", - "response": "The image shows a group of five men posing for a photo in front of a construction site. They are all wearing yellow or orange high visibility jackets and white or yellow hard hats. The man on the far left is wearing a white hard hat and a black vest with a yellow reflective stripe. The man to his right, who is wearing a yellow hard hat and a white hat, is wearing a white shirt with a red cross on it. The man standing in front of him is wearing a black shirt with a yellow star on it and has a white star painted on his helmet. The man on the right, who is wearing a black shirt and a yellow hard hat, is wearing a black vest with five white stars on it. The man on the far right, who is wearing a black shirt and a yellow hard hat, is wearing a black vest with five yellow stars on it. The background of the photo is a yellow construction site.", - "id": 29628 - }, - { - "image_path": "G:\\images\\combined\\00372_jpg.rf.9c16d062487566bcb3cd3553e0323270.jpg", - "response": "The image shows a group of five men posing for a photo in front of a construction site. They are all wearing yellow or orange high visibility jackets and white or yellow hard hats. The man on the far left is wearing a white hard hat and a white shirt with a blue or grey chest pocket. The man second from the left is wearing a yellow hard hat and a yellow safety vest with a red star on it. The man in the middle is wearing a white hard hat and a white shirt with a blue or grey chest pocket. The man on the right is wearing a black hard hat and a black shirt with a yellow star on it. The man in the bottom is wearing a white hard hat and a black shirt with red letters.", - "id": 29629 - }, - { - "image_path": "G:\\images\\combined\\003730_jpg.rf.0052ba39abb15cd0973afc3e41c90d49.jpg", - "response": "A group of people working on a construction site.", - "id": 29630 - }, - { - "image_path": "G:\\images\\combined\\003731_jpg.rf.2b79b75ee06bd82fd5e36558c5e0dc1e.jpg", - "response": "A man is working on a roof with solar panels. He is wearing a red shirt and has a tool in his hand. The roof is blue and has many solar panels on it. The sky is blue and clear.", - "id": 29631 - }, - { - "image_path": "G:\\images\\combined\\003732_jpg.rf.4a4d59d9f4f400dfbf7f2f16cde8a41d.jpg", - "response": "A worker wearing a yellow hard hat and camouflage jacket is working on a construction site. They are cutting through a red metal pipe with a yellow grinder. There are sparks flying all around.", - "id": 29632 - }, - { - "image_path": "G:\\images\\combined\\003733_jpg.rf.a8eb8c4ba636368c3c3be6fbb1e163ef.jpg", - "response": "A woman wearing a hard hat and holding a cordless drill.", - "id": 29633 - }, - { - "image_path": "G:\\images\\combined\\003734_jpg.rf.b39c00a81539b43b0cb72ad06c55ba90.jpg", - "response": "A group of workers are working on a construction site.", - "id": 29634 - }, - { - "image_path": "G:\\images\\combined\\003735_jpg.rf.d04a5551370ecef2da9bc430f136e2ff.jpg", - "response": "A group of people standing in front of a building.", - "id": 29635 - }, - { - "image_path": "G:\\images\\combined\\003737_jpg.rf.10512bbf8864564c71477283a58420b1.jpg", - "response": "A man wearing a hard hat, orange ear muffs, and work gloves.", - "id": 29636 - }, - { - "image_path": "G:\\images\\combined\\003738_jpg.rf.f8b6af26a7107a68456a61a0229282ac.jpg", - "response": "A worker on a cherry picker repairs power lines.", - "id": 29637 - }, - { - "image_path": "G:\\images\\combined\\003739_jpg.rf.2819ebdaec3019af662d2c14fc0af25a.jpg", - "response": "A man in a suit and a yellow hard hat is talking on a cell phone.", - "id": 29638 - }, - { - "image_path": "G:\\images\\combined\\003740_jpg.rf.67b97e194f4479197e7990285e9e85a6.jpg", - "response": "A group of three multi-ethnic construction workers wearing hard hats and safety vests standing over a set of plans at a construction site", - "id": 29639 - }, - { - "image_path": "G:\\images\\combined\\003742_jpg.rf.12cb443530a070c630799868085bc4a0.jpg", - "response": "A construction worker in a yellow hard hat and orange safety vest points out something to a colleague in a white shirt and hard hat. They are standing on a bridge overlooking a construction site with a large pile of coal visible in the background. There are yellow and white construction vehicles parked near the site.", - "id": 29640 - }, - { - "image_path": "G:\\images\\combined\\003744_jpg.rf.7b87bc8e1f71be46589987f8476f3d1a.jpg", - "response": "A group of men standing around each other", - "id": 29641 - }, - { - "image_path": "G:\\images\\combined\\003746_jpg.rf.e3876f24f5853f666b55b02fa7f855ad.jpg", - "response": "A man in a green shirt and red helmet is working on an electrical line.", - "id": 29642 - }, - { - "image_path": "G:\\images\\combined\\003747_jpg.rf.cdbcd94d28bb0eeee400af80f9d69e20.jpg", - "response": " Men(587,328),(936,996)(393,319),(611,997) in hard hats(452,318),(570,445)(685,282),(786,406)(758,296),(910,422)(890,116),(997,310) standing in a cave", - "id": 29643 - }, - { - "image_path": "G:\\images\\combined\\003748_jpg.rf.a64edea18462a109ba9c46d0f51a9abb.jpg", - "response": "An electrician is working on a power station.", - "id": 29644 - }, - { - "image_path": "G:\\images\\combined\\003749_jpg.rf.85b5a88c0af33305abae4a0d737218f0.jpg", - "response": "A group of rescue workers in a pile of rubble.", - "id": 29645 - }, - { - "image_path": "G:\\images\\combined\\003750_jpg.rf.798b07a7e5b3a6c0fe3f8a7f0d8ae365.jpg", - "response": "A group of three men working on a power line.", - "id": 29646 - }, - { - "image_path": "G:\\images\\combined\\003752_jpg.rf.1f8c7cd2cd5798fa23038e1bf39efb8f.jpg", - "response": "A group of men working on a construction site.", - "id": 29647 - }, - { - "image_path": "G:\\images\\combined\\003753_jpg.rf.ddc984a6d50a057699314bd6e5bbbf16.jpg", - "response": "A group of workers in a factory.", - "id": 29648 - }, - { - "image_path": "G:\\images\\combined\\003754_jpg.rf.b59acb74c0505d03c5558423e3a048d0.jpg", - "response": "In the image there are two construction workers. They are both wearing orange work vests and helmets. One of the workers is holding a walkie-talkie and a clipboard, the other one is pointing at something in the distance. They are standing in a construction site with a big pile of rubble in the background.", - "id": 29649 - }, - { - "image_path": "G:\\images\\combined\\003755_jpg.rf.4c1a48424c75b1b6d5b3c375816449b8.jpg", - "response": "The image shows a group of workers in the mountains, carrying a large metal pole. They are wearing hard hats and the sky is blue with a few clouds. There is a mountain in the background.", - "id": 29650 - }, - { - "image_path": "G:\\images\\combined\\003756_jpg.rf.b9b7eb22e023d3a64ea4d00fc902eae8.jpg", - "response": "A man in an orange shirt is working on a large piece of machinery. The machinery is a dark grey color and has many pipes and tubes. The man is standing in a large pit and is working on a large pipe that is laying on top of the machinery. The pipe is a dark grey color and has some rust on it. The man is holding a tool in his hand.", - "id": 29651 - }, - { - "image_path": "G:\\images\\combined\\003759_jpg.rf.897d7e043a924bf010e62f326e5089a2.jpg", - "response": "In the image there is a man wearing a red helmet standing in front of a large pile of dirt. There are two yellow and black bulldozers in the background, one on the left and one on the right. They are both digging dirt and spreading it to the left. There is also a white truck in the background on the left.", - "id": 29652 - }, - { - "image_path": "G:\\images\\combined\\003760_jpg.rf.658d3a8e286c93352e7036ad42854663.jpg", - "response": "In the image, three workers are seen in a crane, fixing the power lines. They are wearing orange jumpsuits. One of the workers is on the left side of the image, another one is in the middle and the third one is on the right side of the image. They are holding different tools in their hands. One of the workers is holding a tool in his left hand and another one is holding a tool in his right hand. One of the workers is also seen wearing a helmet. The sky above them is blue.", - "id": 29653 - }, - { - "image_path": "G:\\images\\combined\\003761_jpg.rf.78d5d909c8933884b07a1cb03cd1b9b3.jpg", - "response": "The image shows a construction site for a railway. There are two workers visible, both wearing yellow hard hats and working on a section of track. They are both crouched down, one on the left and one on the right, both wearing grey and yellow hard hats.", - "id": 29654 - }, - { - "image_path": "G:\\images\\combined\\003762_jpg.rf.d9b71f2d4c5aa877007bb0e8decce4bf.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left, wearing a red hard hat and a grey top. He is looking at a large concrete pipe that is being lowered into a large pit in the ground. The pit is filled with dark grey concrete. The pipe is white and has a large red pipe at the end. Another worker is on the right, wearing a blue top and a red hard hat. He is looking up at the pipe and talking to the worker on the left.", - "id": 29655 - }, - { - "image_path": "G:\\images\\combined\\003763_jpg.rf.b9135cbeed54edd4d2883da4d52d3b84.jpg", - "response": "A group of men working on a building that is not finished.", - "id": 29656 - }, - { - "image_path": "G:\\images\\combined\\003764_jpg.rf.f6e882476c918c2789aad56a29d4cc99.jpg", - "response": "A construction worker is working on a building.", - "id": 29657 - }, - { - "image_path": "G:\\images\\combined\\003765_jpg.rf.ac92ce2fa60b169edb6f9c76d7510604.jpg", - "response": "In the image there are several people working on machinery. They are working on a large piece of equipment that is on a set of train tracks. The equipment is mostly grey in color and has a large white cabinet with a lot of buttons and knobs on the front. The people are working on the equipment with tools and are focused on their task.", - "id": 29658 - }, - { - "image_path": "G:\\images\\combined\\003766_jpg.rf.8d1c6e66fe5a1de61bb9492338efc1b1.jpg", - "response": "a group of men standing around a pile of wood", - "id": 29659 - }, - { - "image_path": "G:\\images\\combined\\003767_jpg.rf.c2b51716f2a830c805b7258b43366bed.jpg", - "response": "A group of workers are working on a construction site.", - "id": 29660 - }, - { - "image_path": "G:\\images\\combined\\003768_jpg.rf.1b8a78aab8b5a7ff5072ed5a36f9cd31.jpg", - "response": "US President Barack Obama (R) talks with workers as he tours the DTE Energy\u7ba1\u7406\u4e2d\u5fc3 on May 8, 2014 in Detroit, Michigan. Obama is in Michigan to highlight the importance of the auto industry in the state's economy.", - "id": 29661 - }, - { - "image_path": "G:\\images\\combined\\00376_jpg.rf.252c8d6b870de4120efd5a35352cecac.jpg", - "response": "A group of three men standing in a construction site wearing safety gear such as yellow hard hats, orange safety jackets and high visibility clothing. The man on the left is holding a set of plans and a pencil. The man in the middle is holding a tape measure. The man on the right is holding a device that is a mix of a laser level and a scanner.", - "id": 29662 - }, - { - "image_path": "G:\\images\\combined\\00376_jpg.rf.dfada58a04d3cd78c605c2e4d478d56d.jpg", - "response": "A group of three men dressed in construction gear.", - "id": 29663 - }, - { - "image_path": "G:\\images\\combined\\003771_jpg.rf.e468b47e72ea3761cd6dbc7d82f59f80.jpg", - "response": "A group of people standing in a tunnel.", - "id": 29664 - }, - { - "image_path": "G:\\images\\combined\\003772_jpg.rf.6532a4df8fee0aa06124a74eb37338aa.jpg", - "response": "The picture shows a group of men standing around and talking. Among them, there are three men in suits, one in a dark blue suit, one in a black suit, and one in a gray suit. These three men are surrounded by other people, some of whom are shaking hands. In the background, there are a few cars and a red tower. The sky is overcast.", - "id": 29665 - }, - { - "image_path": "G:\\images\\combined\\003773_jpg.rf.68fa1ff2db5d97331e677356aa97dc15.jpg", - "response": "a group of men wearing hard hats", - "id": 29666 - }, - { - "image_path": "G:\\images\\combined\\003774_jpg.rf.87bf9a6e958e7360c984a6a314d6b168.jpg", - "response": "In the image two workers are wearing blue and white clothes and blue and white helmets. They are working on a power distribution cabinet. There are many switches and relays in the cabinet. One worker is holding a screwdriver in his right hand and is pointing to a relay, the other worker is watching him. There is a sign with the character \u7535 (\u7535\u529b) on the cabinet.", - "id": 29667 - }, - { - "image_path": "G:\\images\\combined\\003775_jpg.rf.3ebaa1e5abe84f94b479a116824e570a.jpg", - "response": "A group of men working on a train track", - "id": 29668 - }, - { - "image_path": "G:\\images\\combined\\003776_jpg.rf.a21ac358c0e625b4f4cad059ea186499.jpg", - "response": "A group of people are walking on a green surface.", - "id": 29669 - }, - { - "image_path": "G:\\images\\combined\\003777_jpg.rf.6cba00dd337f21a5b71b9f2367651af3.jpg", - "response": "A man in a blue shirt and a man in a white shirt are standing in front of a yellow truck. They are both wearing safety gear.", - "id": 29670 - }, - { - "image_path": "G:\\images\\combined\\003780_jpg.rf.b2c8e3bcd2fad5127418d92aa2255812.jpg", - "response": "A group of five people standing in front of a building that is under construction. They are all wearing hard hats and looking at a blueprint.", - "id": 29671 - }, - { - "image_path": "G:\\images\\combined\\003781_jpg.rf.bf9eff0d1d926e3ff68ffbcc8c93b323.jpg", - "response": "In the image there are two construction workers wearing blue and orange helmets. They are working on a construction site that has a lot of concrete and bricks. One of the workers is using a tool to cut through some bricks and a hose is attached to it. There is a blue barrel and a white barrel on the ground and a person with a white shirt and red hat is working in the background. The sky is blue and clear.", - "id": 29672 - }, - { - "image_path": "G:\\images\\combined\\003782_jpg.rf.14671023cdfbc5b9a8a01d6f32f1a4e5.jpg", - "response": "A group of men standing around each other.", - "id": 29673 - }, - { - "image_path": "G:\\images\\combined\\003783_jpg.rf.78b1120f3c94385573e060869e7f9a5f.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 29674 - }, - { - "image_path": "G:\\images\\combined\\003784_jpg.rf.ca0d1b588eefd601942b4c10107009a0.jpg", - "response": "In the image there are several people standing next to a large construction site. They are all wearing yellow hard hats. In the foreground, there is a concrete circle that is being constructed with a metal grid on the bottom. A metal structure is being built on top of the grid. There is a orange pipe running up the side of the metal structure. In the background, there is a brown fence and a blue sky with no clouds.", - "id": 29675 - }, - { - "image_path": "G:\\images\\combined\\003785_jpg.rf.2e6fbd203eac6754d91e2d34510f64d0.jpg", - "response": "A couple of men in orange jumpsuits and hard hats are working on a power line. They are standing on a metal platform that is connected to the power line tower. The tower is silver and has many wires attached to it. There are also some more wires in the sky above the platform.", - "id": 29676 - }, - { - "image_path": "G:\\images\\combined\\003786_jpg.rf.144488cf63419ebe0d64ddc395470662.jpg", - "response": "A group of three men working on a construction site.", - "id": 29677 - }, - { - "image_path": "G:\\images\\combined\\003787_jpg.rf.f4b9e44bd4b80dac7c57e51e91f3a3a0.jpg", - "response": "A man wearing a white hard hat is climbing a ladder. He is wearing brown clothes and has a white shirt. He has a white helmet on. Behind him is a building that is in the process of being built. There are many wooden beams in the background. To the far left of the image is a yellow ladder. In the foreground there is a green ladder.", - "id": 29678 - }, - { - "image_path": "G:\\images\\combined\\003788_jpg.rf.5877a9cc76c42927c95540a978988e04.jpg", - "response": "In the image two people are standing next to a back hoe. They are both wearing blue uniforms and white helmets. One of the people is writing something down in a book.", - "id": 29679 - }, - { - "image_path": "G:\\images\\combined\\003789_jpg.rf.70fd43136643bbc2d0bfe6769a89ba06.jpg", - "response": "A man in a blue uniform and blue hat is working on an electrical pole.", - "id": 29680 - }, - { - "image_path": "G:\\images\\combined\\003790_jpg.rf.699df3d9bf24d24107ec699e14059961.jpg", - "response": "a man in a blue shirt and a red hard hat standing in front of a stairway", - "id": 29681 - }, - { - "image_path": "G:\\images\\combined\\003791_jpg.rf.306896bf597c15e12aaeeb1bcfa9b5b6.jpg", - "response": "A man in a black shirt and dark pants is standing in front of a blue barrier. He is talking to another man who is wearing a yellow hat and black pants. There are several other people standing behind the barrier, which is set up like a gate. Some of the people are holding cell phones and one is wearing a hard hat. The sky is white and it appears to be a cloudy day.", - "id": 29682 - }, - { - "image_path": "G:\\images\\combined\\003792_jpg.rf.52eecb71b527ea60cf33763375ba1a89.jpg", - "response": "The image shows two men standing in a construction area. Both men are wearing orange hard hats and orange safety vests. One man is smiling and looking at a clipboard. In the background, there is a bulldozer.", - "id": 29683 - }, - { - "image_path": "G:\\images\\combined\\003793_jpg.rf.2213c5b36dabdf9d7b27a298bdcce410.jpg", - "response": "A man with a red cloth over his mouth holding a yellow hard hat.", - "id": 29684 - }, - { - "image_path": "G:\\images\\combined\\003794_jpg.rf.775e79336789db803a0cd07ed6056461.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is working on a construction site. He is using a handsaw to cut through a wooden beam. The wooden beams are made of wood and are in different sizes. The worker is standing on a wooden platform. The background is blurred and there are other workers visible in the distance. The worker is the main focus of the image.", - "id": 29685 - }, - { - "image_path": "G:\\images\\combined\\003796_jpg.rf.30612a796bf439b93a0c2b98a71184d8.jpg", - "response": "In the image, two people are working at a construction site. One person is wearing a yellow hard hat and is smiling while pulling on a wire. They are also wearing a pair of yellow gloves and have a yellow tool belt around their waist. They are standing on a metal platform and there is a puddle of water to their left. The person behind them is wearing an orange and yellow plaid shirt and is working further back on the platform. In the background, there is a large building under construction.", - "id": 29686 - }, - { - "image_path": "G:\\images\\combined\\003797_jpg.rf.b92eed213ec1785bd4733ae90361eb71.jpg", - "response": "A group of people looking at a model train set.", - "id": 29687 - }, - { - "image_path": "G:\\images\\combined\\003798_jpg.rf.7503d763bc7246f01f97724cd78c88a4.jpg", - "response": "A sinkhole in the middle of a sidewalk has caused the city to close off the area.", - "id": 29688 - }, - { - "image_path": "G:\\images\\combined\\003799_jpg.rf.5417f8ccace8b34231068c821a21ed9a.jpg", - "response": "a construction worker in a red shirt and black pants standing on a bridge", - "id": 29689 - }, - { - "image_path": "G:\\images\\combined\\00379_jpg.rf.b6ac530ebafa6772d1870dd6b1bd2517.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a blueprint. The man on the left is holding the blueprint and the man on the right is talking on a cell phone. They are all standing in a construction site.", - "id": 29690 - }, - { - "image_path": "G:\\images\\combined\\0037aba41ecc724d.jpg", - "response": "a man in a suit speaking into a microphone", - "id": 29691 - }, - { - "image_path": "G:\\images\\combined\\0037d767f56bf167.jpg", - "response": "A woman with glasses and a pink sweater stands in front of a wooden paneling wall. She is smiling and holding a certificate of appreciation. Another woman stands next to her, both of them looking at the camera.", - "id": 29692 - }, - { - "image_path": "G:\\images\\combined\\0037ff28a4dfff25.jpg", - "response": "A red Pontiac GTO is parked on the side of the street. The hood of the car is up and the engine is visible. There is a green trash can next to the car. A store called \"The Common's Market\" is across the street and a restaurant called \"Asia Cup\" is next door. There are several signs on the buildings and a bench is visible in front of the restaurant.", - "id": 29693 - }, - { - "image_path": "G:\\images\\combined\\003801_jpg.rf.28037efe7afd3a26f863d9000039a099.jpg", - "response": "The image shows three men in climbing gear and hard hats, climbing up a white metal tower. The tower is white and has three levels, with the three men climbing up the third level. The men are spread out, with one on the left side of the tower, one in the middle, and one on the right. They are all wearing blue helmets and some of them are also wearing gray jackets. The background is blue sky.", - "id": 29694 - }, - { - "image_path": "G:\\images\\combined\\003802_jpg.rf.1cee61ec5eb0dd26948a74d42bbd743e.jpg", - "response": "A group of workers in hard hats and safety vests working on a large electrical transformer.", - "id": 29695 - }, - { - "image_path": "G:\\images\\combined\\003803_jpg.rf.6724e7bcc5ba05e9f83b4b62cc6068d2.jpg", - "response": "A man wearing a hard hat and a red helmet stands in front of a cement mixer. He holds a sign that says \"\u65b0\u9020\u5927\u6865\u670984\u5e74\u6842\u9f8430\u8f7d\" which I believe translates to \"The new bridge has been built for 84 years.\"", - "id": 29696 - }, - { - "image_path": "G:\\images\\combined\\003804_jpg.rf.d1a23deab9724e5999e55fc805a7ed07.jpg", - "response": "The image shows a construction site with several workers. There is a large crane operating in the background and several smaller cranes are also visible. The workers are wearing yellow helmets and can be seen working on the construction site. There are also several other people in the image, some of them are standing and some are walking around the site. The construction site is located next to a field with a blue sky above.", - "id": 29697 - }, - { - "image_path": "G:\\images\\combined\\003805_jpg.rf.fa85c6855d446ec8279c95d809364ee6.jpg", - "response": "A group of people looking at a map of a city.", - "id": 29698 - }, - { - "image_path": "G:\\images\\combined\\003806_jpg.rf.52ed4c437f822caccbd77b8a292892af.jpg", - "response": "A man wearing a yellow hard hat is standing on some rocks, he is reaching up to grab a large bundle of steel rods that are being lowered to him by a crane. The steel rods are black and they are piled up on the ground next to the man. He is wearing brown pants and a grey shirt. In the background, there is a building under construction with a grey roof and several cranes working on it. There are also some white clouds in the blue sky.", - "id": 29699 - }, - { - "image_path": "G:\\images\\combined\\003807_jpg.rf.1cc8042df17ec83c2593d59116f3a65e.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats repairing a black box mounted on the side of a building. The box appears to be an electrical panel. The workers are focused on the task at hand, with one of them using a tool to make adjustments. The scene is set outdoors, with a few wires and cables visible in the background. The photo is accompanied by a Weibo post, indicating that it was taken in Wenzhou, China.", - "id": 29700 - }, - { - "image_path": "G:\\images\\combined\\003812_jpg.rf.5068d7a41f3e22afe94130b33a014f4f.jpg", - "response": "The image shows rescue workers in yellow vests and helmets standing on debris of a collapsed bridge. The bridge appears to be made of wood and has a structure that looks like a large A-frame. The debris is scattered across the ground and some of it is piled up on the left side of the image. The workers are standing on a long wooden beam that is placed on the debris. The photo was taken at night and the workers are wearing headlamps.", - "id": 29701 - }, - { - "image_path": "G:\\images\\combined\\003813_jpg.rf.616bc00dbc01d53f35534e9593941d81.jpg", - "response": "A man in grey coveralls and a red hard hat is on a ladder working on power lines.", - "id": 29702 - }, - { - "image_path": "G:\\images\\combined\\003814_jpg.rf.9cf067faa842d58b08c69cbda2c24f75.jpg", - "response": "In the image there are two workers wearing red and yellow hard hats. They are standing next to a large piece of machinery. The machinery is a yellow and black machine with a long black tube. The workers are standing on a dirt patch and there is a stone wall in the background. There is also a pile of grey rocks to the right of the workers.", - "id": 29703 - }, - { - "image_path": "G:\\images\\combined\\0038158cb6a95317.jpg", - "response": "On a table, there are four bottles of different types of rum from the brand Brugal. The one on the left is the black rum, the one in the middle is the 1844, the one on the right is the 1888, and the last one is the 1938. Next to the bottles, there is a wooden box with the brand name on it. On the left side of the table, there is a gold-framed certificate with the word Brugal on it. On the right side of the table, there is a potted palm plant.", - "id": 29704 - }, - { - "image_path": "G:\\images\\combined\\003815_jpg.rf.b1294c1c3dce45b344b5e5e9d5027f98.jpg", - "response": "A worker in a safety uniform and yellow hat is seen from the waist up, holding a device and taking a reading from a power line. They are standing on a red and grey brick path, with a large white building and multiple grey power lines in the background.", - "id": 29705 - }, - { - "image_path": "G:\\images\\combined\\003816_jpg.rf.0fc1065ca88a543f98fabc6c6c7356cd.jpg", - "response": "A man wearing a red hard hat standing in front of a construction site.", - "id": 29706 - }, - { - "image_path": "G:\\images\\combined\\003817_jpg.rf.ed60dcec39765aa72b91be62b0401f4f.jpg", - "response": "The image shows a group of construction workers gathered around a large crack in the concrete. There are seven people in the image, all wearing hard hats and safety vests. Some of the workers are standing, while one is kneeling down to inspect the crack. The workers are gathered around the crack, which is running diagonally across the concrete surface. There is a large building visible in the background, as well as a few cars parked nearby. The workers appear to be discussing the crack and planning how to repair it.", - "id": 29707 - }, - { - "image_path": "G:\\images\\combined\\003818_jpg.rf.47bf0dbc4b914dd428e3893337afba70.jpg", - "response": "A worker in a red hard hat is using a large drill to bore into a red pipe. The pipe is located on the floor and the worker is standing over it. There is a red dolly located to the left of the pipe and a pile of red pipes located to the right of the pipe. The wall in the background is made of concrete.", - "id": 29708 - }, - { - "image_path": "G:\\images\\combined\\003819_jpg.rf.51f9e737f7e5d328377185fb0cdb46d1.jpg", - "response": "A man in grey shirt and gray pants with blue helmet on is working on a power line.", - "id": 29709 - }, - { - "image_path": "G:\\images\\combined\\003820_jpg.rf.1f09d554afcd9de245f359643634f207.jpg", - "response": "A group of men standing in front of a building.", - "id": 29710 - }, - { - "image_path": "G:\\images\\combined\\003821_jpg.rf.ee00de6e4f54dfa9def2cc713b29820e.jpg", - "response": "A man wearing a yellow shirt and a yellow hard hat is working on a construction site. He is building a structure of metal rods and is holding a tool in his hand. There are other metal rods stacked around the structure and a large crane is visible in the background. The sky is blue and the building in the background is yellow and blue.", - "id": 29711 - }, - { - "image_path": "G:\\images\\combined\\003823_jpg.rf.ae4ce2afdc6b604199377c4abe822a31.jpg", - "response": "a group of men walking down a dirt road", - "id": 29712 - }, - { - "image_path": "G:\\images\\combined\\003824_jpg.rf.66742a557434f134a71767db3da89673.jpg", - "response": "a yellow dump truck(11,205),(895,767)", - "id": 29713 - }, - { - "image_path": "G:\\images\\combined\\003825_jpg.rf.fc8466272f90e5ae3b9a7b40d2ed303c.jpg", - "response": "Two workers(148,452),(650,995)(328,221),(600,647) in a mine shaft, one of them is holding a large pickaxe.", - "id": 29714 - }, - { - "image_path": "G:\\images\\combined\\003826_jpg.rf.8ca49f80a59c1d146820e682191d57ed.jpg", - "response": "A man in a blue hat and orange vest is working on a power line. Another man in a blue hat and orange vest is watching him. There are two power poles with wires attached to them. There are also two other power poles in the background. The sky is overcast and there are trees in the foreground.", - "id": 29715 - }, - { - "image_path": "G:\\images\\combined\\003827_jpg.rf.5a9204f782c17f0c83301cbcd55a4502.jpg", - "response": "A man wearing a yellow hard hat and a orange and yellow safety vest.", - "id": 29716 - }, - { - "image_path": "G:\\images\\combined\\003828_jpg.rf.251c89375e50b517897057b62078f8ed.jpg", - "response": "An electrician wearing a red jumpsuit and a yellow hard hat is working on a power line. He is kneeling down and looking at the equipment.", - "id": 29717 - }, - { - "image_path": "G:\\images\\combined\\003829_jpg.rf.8efc88dc208ca5744fe3c90db39b2e8d.jpg", - "response": "A man in a construction vest and hard hat is on a construction site. He is near a yellow piece of heavy machinery and is lifting a black cylinder or barrel. There is a second yellow piece of heavy machinery in the background. There are trees in the distance and a car is parked on the site.", - "id": 29718 - }, - { - "image_path": "G:\\images\\combined\\003831_jpg.rf.9fe4c42a120153acb16fb5b186e2a0e6.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 29719 - }, - { - "image_path": "G:\\images\\combined\\003832_jpg.rf.6d8a3b1ec3b4d4d92aed3fac129b1808.jpg", - "response": "A group of three men in blue hats and grey jumpsuits are working on a power line in a green, hilly area. They are digging up the ground with a shovel and fixing the power line.", - "id": 29720 - }, - { - "image_path": "G:\\images\\combined\\003834_jpg.rf.d356d06959305bf5536e6b6f14f1214c.jpg", - "response": "The image shows a large ship docked in a shipyard. The ship is green and red, and is labeled \"Jia Li Li 22\" on the side. There are several people in the foreground, with one person holding a rope and pulling on it. The other people are spread out, with some walking and some standing. There is a large red tower in the background, and another ship is visible in the far distance. The sky is white and overcast.", - "id": 29721 - }, - { - "image_path": "G:\\images\\combined\\003835_jpg.rf.a36daf1365375e4f824ca1191b5ecf4d.jpg", - "response": " Construction worker(78,366),(518,802) in a white hard hat(133,403),(281,598) with a red helmet(792,359),(997,629) on", - "id": 29722 - }, - { - "image_path": "G:\\images\\combined\\003836_jpg.rf.5057783a36db17be5bc58a1f55979ddc.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing yellow hard hats and are focused on their tasks. One of the workers is kneeling on the ground and is holding a long piece of wood with a vice grip, possibly preparing to cut it. The other worker is standing and is swinging a tool over the long piece of wood. In the background, there is a building under construction with many metal bars visible. The sky is grey and overcast.", - "id": 29723 - }, - { - "image_path": "G:\\images\\combined\\003837_jpg.rf.e1291d0be7c4030d53f1163913bd80a5.jpg", - "response": "In the image there is a group of rescue workers dressed in red and white hard hats standing around a rescued worker. The rescued worker is being held up by the rescue team and has a white helmet on. The background is blurry and there are more workers in the background dressed in different colored hard hats.", - "id": 29724 - }, - { - "image_path": "G:\\images\\combined\\003838_jpg.rf.5661d1dfd1864d14204514b6e000e912.jpg", - "response": "A worker in a red hard hat and blue coveralls is standing next to a large piece of equipment. The worker is looking at a control panel on the machine. There is a yellow hand rail next to the machine and a large metal cylinder on top of the machine. There are also several hoses and pipes connected to the machine.", - "id": 29725 - }, - { - "image_path": "G:\\images\\combined\\003839_jpg.rf.67cdbf6b98304cee39a71c31a64e93c4.jpg", - "response": "A group of men standing underneath a bent over power line.", - "id": 29726 - }, - { - "image_path": "G:\\images\\combined\\003840_jpg.rf.2f3dcfd5fdd6340909e67a32b0048ae3.jpg", - "response": "A construction worker working on a large pipe in the ground.", - "id": 29727 - }, - { - "image_path": "G:\\images\\combined\\003841_jpg.rf.4ea5c18e12ff2048c05744a8d3905510.jpg", - "response": "A construction site with two workers standing on a frame made of steel rods.", - "id": 29728 - }, - { - "image_path": "G:\\images\\combined\\003843_jpg.rf.507d7c71fc534929cbfbd250673d3c56.jpg", - "response": "In the image, workers are seen in a factory environment. They are wearing blue uniforms and protective gear. One worker is seen welding a large metal cylinder, while another worker is seen checking a machine. A third worker is seen in the background. There are two other workers visible in the image. The factory floor is filled with various machinery and equipment. A red light is seen emanating from the welding work.", - "id": 29729 - }, - { - "image_path": "G:\\images\\combined\\003845_jpg.rf.92540a282a1abe243da00a5ca7752e91.jpg", - "response": "A woman with short black hair and a blue jacket standing next to a man with black hair and a brown jacket. They are both looking at a wall with signs on it.", - "id": 29730 - }, - { - "image_path": "G:\\images\\combined\\003847_jpg.rf.707e9bcd41df4ec8a0dd9870474710b6.jpg", - "response": "A man in a black shirt and white gloves is using a trowel to level some bricks. He is wearing a yellow hard hat and has a toothbrush moustache.", - "id": 29731 - }, - { - "image_path": "G:\\images\\combined\\003848_jpg.rf.61413f741a5b04cc77081b5015562b05.jpg", - "response": "A group of workers are working on a construction site.", - "id": 29732 - }, - { - "image_path": "G:\\images\\combined\\003849_jpg.rf.8b70bd8b9d0d34ed0f618993cdc05341.jpg", - "response": "A group of three men working on a large ship in the water. They are all wearing hard hats and are crouched down working on the ship. There are many pipes in the foreground of the image and the ship is still under construction.", - "id": 29733 - }, - { - "image_path": "G:\\images\\combined\\003850_jpg.rf.eca02e9369b9e02bc20f05814d2cfcd2.jpg", - "response": "A worker is seen on a ladder in the foreground, working on the left wall of the photo. The wall is grey and the worker is wearing a yellow jacket. In the distance, another worker is seen on the right wall, wearing a white helmet and a yellow vest. They are standing on a ladder. In the middle of the photo, a long stretch of train tracks is seen, running from the foreground to the middle of the photo. The tracks are brown and made of steel.", - "id": 29734 - }, - { - "image_path": "G:\\images\\combined\\003851_jpg.rf.240b36f409493998c78b6612e0e3a546.jpg", - "response": "A worker is seen in a factory, standing in front of a large metal machine that looks like a square oven with a large opening in the middle, with flames coming out from it. The worker is wearing a blue uniform and a red helmet, and is holding a long metal rod. The background shows other workers and machines in the factory.", - "id": 29735 - }, - { - "image_path": "G:\\images\\combined\\003852_jpg.rf.664b060565fedfb11ffcc9e43422b0e7.jpg", - "response": "A woman wearing a helmet and harness, walking across a tightrope over a rocky cliff.", - "id": 29736 - }, - { - "image_path": "G:\\images\\combined\\003853_jpg.rf.dab2bc8f02c3fc1420494d4662722bd0.jpg", - "response": "a group of men standing on a building", - "id": 29737 - }, - { - "image_path": "G:\\images\\combined\\003854_jpg.rf.b9603c583c58de709eec5010054b5ff0.jpg", - "response": "The image shows two men standing in front of a construction site. They are both wearing yellow hard hats and black vests. The man on the left is holding a clipboard and pen, and both men are looking at the clipboard. In the background, there is a large excavator digging the ground. To the right of the men, there is a blue fence. On the fence, there are several posters. In the upper right corner, there are several advertising boards. The ground is covered with debris.", - "id": 29738 - }, - { - "image_path": "G:\\images\\combined\\003855_jpg.rf.8875013d2579c323f056fa54aa61277a.jpg", - "response": "a group of people sitting around a table", - "id": 29739 - }, - { - "image_path": "G:\\images\\combined\\003856_jpg.rf.9420c890bded4490231cc13f5c6eb953.jpg", - "response": "A man in a yellow helmet is working on a power line in the snow.", - "id": 29740 - }, - { - "image_path": "G:\\images\\combined\\003857_jpg.rf.b1c8432b82267298100351f779f41980.jpg", - "response": "In the image there are two workers wearing orange and blue uniforms and hard hats. They are on a construction site with a city skyline in the background. The workers are standing on a platform and appear to be working on a large piece of machinery. There are also train tracks and a crane in the background.", - "id": 29741 - }, - { - "image_path": "G:\\images\\combined\\003859_jpg.rf.a155a01292578b406d7bfa7164e6abc6.jpg", - "response": "A group of four men looking at blueprints in front of a building that says \"\"And\u7530\u5f00\u5143\u5efa\u7b51\u5b89\u88c5\u5de5\u7a0b\u6709\u9650\u516c\u53f8\"\" on it.", - "id": 29742 - }, - { - "image_path": "G:\\images\\combined\\003860_jpg.rf.4a1a3baf4cdc1748fe9f6caefe19e45e.jpg", - "response": "A group of men in hard hats are walking together. They are all wearing different colored shirts and pants. One man is wearing a red hard hat, one man is wearing a blue shirt, one man is wearing a white shirt, one man is wearing a white shirt and khaki pants, one man is wearing a white shirt and black pants, one man is wearing a white shirt and grey pants, one man is wearing a black shirt and grey pants, one man is wearing a black shirt and grey pants, one man is wearing a white shirt and khaki pants, one man is wearing a blue shirt and khaki pants, and one man is wearing a white shirt and khaki pants. They are all walking in front of a blue wall and a building that is under construction with scaffolding.", - "id": 29743 - }, - { - "image_path": "G:\\images\\combined\\003861_jpg.rf.d527076e7a58735e0ea59541dea69740.jpg", - "response": "A woman in a hard hat and grey jumpsuit is pointing to a large white and grey transformer. Another woman in a hard hat is standing behind her. The transformer is on a trailer and is located in front of a building. There are two large grey columns next to the transformer.", - "id": 29744 - }, - { - "image_path": "G:\\images\\combined\\003862_jpg.rf.86c3ef685d6b82286b86b623536d7b5f.jpg", - "response": "A worker on a roof in the process of building a house.", - "id": 29745 - }, - { - "image_path": "G:\\images\\combined\\003863_jpg.rf.953430bb018d1f5f8b8b50c4921459da.jpg", - "response": "An electrician in a blue shirt and orange hard hat working on a red and black machine with a pressure gauge and a pump.", - "id": 29746 - }, - { - "image_path": "G:\\images\\combined\\003864_jpg.rf.470b5f22155414505620027b40678e58.jpg", - "response": "A group of three workers are working on a ship. One is working on the left side of the ship, one is in the center, and one is on the right side. They are all wearing hard hats and the person in the center is wearing a white shirt. The person on the right is wearing a blue shirt. The person on the left is holding a tool and the person in the center is welding. There is a large ship in the background.", - "id": 29747 - }, - { - "image_path": "G:\\images\\combined\\003865_jpg.rf.122e6bc76612c382ebc1bea551024c12.jpg", - "response": "a woman(353,237),(470,999) wearing a black skirt", - "id": 29748 - }, - { - "image_path": "G:\\images\\combined\\003866_jpg.rf.9161c148d55dea6f15ba408aa18f0f8d.jpg", - "response": "A rescue team of 16 people from the fire station in the city of Shangri-La went missing in the mountains of Yunnan Province, China. The rescue team was last seen on a mountain trail at 11:30 a.m. on July 14. The mountainous area where the rescue team went missing is known for its dangerous trails and extreme weather conditions. The rescue team had planned to search for a missing person in the area. The missing rescue team included 6 experienced mountaineers, 2 local guides, and 8 other members. The rescue team had all the necessary equipment and supplies for a multi-day mission. The rescue team had also informed the local police and rescue center about their mission and planned route. The rescue center has deployed additional rescue teams and rescue equipment to search for the missing rescue team. The rescue center is also in touch with the missing rescue team's communication device to track their location and status. The rescue center is working round-the-clock to ensure the safety and successful rescue of the missing rescue team.", - "id": 29749 - }, - { - "image_path": "G:\\images\\combined\\003867_jpg.rf.65ecdd11ff96819df1ca6f912d1eccfe.jpg", - "response": "An oil worker in camouflage and a red helmet is operating an oil drilling rig in the desert.", - "id": 29750 - }, - { - "image_path": "G:\\images\\combined\\003868_jpg.rf.7e23a441fbc2f3a3df2ab8a11905de3e.jpg", - "response": "The image shows a large building under construction. The building has a metal framework on the outside, and two workers can be seen in the foreground, wearing hard hats and looking up at the structure. The sky is grey and overcast.", - "id": 29751 - }, - { - "image_path": "G:\\images\\combined\\003869_jpg.rf.415d06b56e74fa7e4e087c53b6eb1995.jpg", - "response": "A group of people standing around a construction site looking at a blueprint.", - "id": 29752 - }, - { - "image_path": "G:\\images\\combined\\003871_jpg.rf.bab5f752db9d5cfd55a408e2e756abc0.jpg", - "response": "In the image, two workers are constructing a footpath on the side of a cliff. The footpath is made of dirt and rock, and the cliff is high. The workers are wearing yellow helmets and uniforms. One of the workers is holding a hose, and there is a backpack on the ground. The background shows a mountain range.", - "id": 29753 - }, - { - "image_path": "G:\\images\\combined\\003872_jpg.rf.4242e00673cdb78c9067e6ea4dc107de.jpg", - "response": "A group of people standing around a bulldozer at a construction site.", - "id": 29754 - }, - { - "image_path": "G:\\images\\combined\\003873_jpg.rf.8098043422187b030d02e9a70feea26a.jpg", - "response": "The image shows several construction workers wearing hard hats and high visibility vests, working on a building site. They are constructing a large metal framework, with some of them pulling on a rope to secure a section of rebar.", - "id": 29755 - }, - { - "image_path": "G:\\images\\combined\\003874_jpg.rf.d9573e2dac6b93344c80851e20f4487f.jpg", - "response": "A man in a green uniform and yellow hat is climbing a metal tower.", - "id": 29756 - }, - { - "image_path": "G:\\images\\combined\\003875_jpg.rf.a0e9673e38a61dbff32c219a4c0a9942.jpg", - "response": "A group of men in hard hats walking down a street.", - "id": 29757 - }, - { - "image_path": "G:\\images\\combined\\003876_jpg.rf.f7941bd0d64ba3cafbe7547bbdaa9083.jpg", - "response": "A group of men standing on the shore of a body of water.", - "id": 29758 - }, - { - "image_path": "G:\\images\\combined\\003877_jpg.rf.e49ed05793388ae16c7cf7e3de55e7dc.jpg", - "response": "a group of people standing together holding boxes of food and water", - "id": 29759 - }, - { - "image_path": "G:\\images\\combined\\003878_jpg.rf.0f2c06591d8c60483b9c1f4d8aa3fb74.jpg", - "response": "A group of linemen in orange jumpsuits and blue hardhats are in a field, holding onto power lines.", - "id": 29760 - }, - { - "image_path": "G:\\images\\combined\\003879_jpg.rf.34de44fa77f0deec712825afcc8ca8bc.jpg", - "response": "A man wearing a yellow hard hat is working with a cutting tool that is creating sparks. He is wearing a white shirt and is working on a construction site.", - "id": 29761 - }, - { - "image_path": "G:\\images\\combined\\00387_jpg.rf.02d3e58848f307e050328ef88000ae0f.jpg", - "response": "A woman in a suit and hard hat talking to two men in orange vests in a warehouse.", - "id": 29762 - }, - { - "image_path": "G:\\images\\combined\\00387_jpg.rf.f98a36c6e1de71b1deeccd57c15206fc.jpg", - "response": "A woman in a suit and hard hat talking to two men in orange vests in a warehouse.", - "id": 29763 - }, - { - "image_path": "G:\\images\\combined\\003880_jpg.rf.8806e67412d33c766c12a43dafa42d2b.jpg", - "response": "A man in a yellow hard hat is on a construction site. He is using a power tool and standing on a ladder. The man is also wearing a grey jacket and green pants. In the background, there is a city and a mountain.", - "id": 29764 - }, - { - "image_path": "G:\\images\\combined\\003881_jpg.rf.e251fd07b68f138f769a3fc9db9b5555.jpg", - "response": "A group of four people walking down a street.", - "id": 29765 - }, - { - "image_path": "G:\\images\\combined\\003882_jpg.rf.6f6524f56f8bd7abc3a93e67fd9375d3.jpg", - "response": "An electrician is working on a telephone pole.", - "id": 29766 - }, - { - "image_path": "G:\\images\\combined\\003883_jpg.rf.22bb074116729fda17888fe56f0d4508.jpg", - "response": "A man and a woman wearing orange and yellow vests and hard hats are looking at a clipboard the woman is holding. They are standing in front of a large construction site with a crane and rusted metal structures in the background.", - "id": 29767 - }, - { - "image_path": "G:\\images\\combined\\003884_jpg.rf.f05c4796c0e04f291357f2dc2942dbd9.jpg", - "response": "The image shows a group of firefighters in blue uniforms and yellow helmets digging a hole in the ground with shovels. The firefighters are wearing black uniforms with yellow helmets and yellow reflective stripes on their shoulders. They are standing in a pit that they have dug with their shovels. The ground is covered in dirt and there are trees visible in the background.", - "id": 29768 - }, - { - "image_path": "G:\\images\\combined\\003885_jpg.rf.fce4f2644cce44f3d6f47925386dc7cd.jpg", - "response": "a group of men walking down a street", - "id": 29769 - }, - { - "image_path": "G:\\images\\combined\\003886_jpg.rf.165583d71a3140f49b84797ab72b34cd.jpg", - "response": "An electrician repairs a power line.", - "id": 29770 - }, - { - "image_path": "G:\\images\\combined\\003887_jpg.rf.40f1f7ef54c8bfabe0f27d4e40c78c53.jpg", - "response": "A group of men in suits and hard hats are gathered around a man who is pointing to a posterboard that says \"\u57ce\u5efa\u676f\u9879\u76ee\u89c2\u6469\u4f1a\". The man pointing is wearing a suit and a red hard hat.", - "id": 29771 - }, - { - "image_path": "G:\\images\\combined\\003888_jpg.rf.0399babb7864f30c0525adb605548191.jpg", - "response": "A group of workers standing in front of a large ship.", - "id": 29772 - }, - { - "image_path": "G:\\images\\combined\\003889_jpg.rf.47990fd74db0f081174f21c331f48856.jpg", - "response": "A worker wearing a yellow helmet is using a green machine with two yellow handles and a black cord with yellow cables to cut through a concrete road.", - "id": 29773 - }, - { - "image_path": "G:\\images\\combined\\003890_jpg.rf.a3b2ef189ba81f928fabf8bf29eaddc1.jpg", - "response": "a group of men standing on the street", - "id": 29774 - }, - { - "image_path": "G:\\images\\combined\\003891_jpg.rf.2e4ce2144e96617444fd973ad61c630a.jpg", - "response": "In the image there are two engineers in blue and yellow work wear with blue helmets. They are talking in front of a building under construction. The building is brown and grey and made of bricks. There are also red scaffolding around the building and a blue sky.", - "id": 29775 - }, - { - "image_path": "G:\\images\\combined\\003892_jpg.rf.0f948cd949868af274220421481e8512.jpg", - "response": "A group of men working on a large black metal object.", - "id": 29776 - }, - { - "image_path": "G:\\images\\combined\\003893_jpg.rf.d27dac61e5e64ac4f12ce515db92b654.jpg", - "response": "A group of men walking down a street.", - "id": 29777 - }, - { - "image_path": "G:\\images\\combined\\003894_jpg.rf.c1e1c25f08685d43c57be97215385a96.jpg", - "response": "The three workers in front of the electricity transmission tower.", - "id": 29778 - }, - { - "image_path": "G:\\images\\combined\\003895_jpg.rf.b5e363199ac0daa4a3fc88bc6d36f7c6.jpg", - "response": "The image shows four men working in a stone cave. They are wearing yellow helmets and uniforms. The men are removing soil and rock from a cart.", - "id": 29779 - }, - { - "image_path": "G:\\images\\combined\\003896_jpg.rf.1ea5f4755d573fc3efbd65aa1087f6ec.jpg", - "response": "In the image, several men wearing hard hats are walking through a lush green forest at night. They are carrying shovels and backpacks. The forest is full of lush green plants and there are some fallen branches on the ground.", - "id": 29780 - }, - { - "image_path": "G:\\images\\combined\\003897_jpg.rf.d3bd00a11f67c82ef0c9aeeab63232e7.jpg", - "response": "A man in a yellow hard hat is using a shovel to dig a hole in the ground. He is wearing a black jacket and white gloves. The ground is covered in dirt and there is a small wooden post sticking out of the ground next to the hole. There is a pile of grey rocks to the left of the hole and a pile of dirt to the right. In the background, there is a roof of a house covered in snow.", - "id": 29781 - }, - { - "image_path": "G:\\images\\combined\\003898_jpg.rf.bc5a97caf93bfa20f57a382f87977ee5.jpg", - "response": "a group of men standing on a basketball court", - "id": 29782 - }, - { - "image_path": "G:\\images\\combined\\003899_jpg.rf.3a161b8d48b64b3bc29041b4f8124eb5.jpg", - "response": "A man wearing a blue, red and white striped shirt and a yellow hard hat is sitting on the arm of a yellow and orange bulldozer. The man is holding blueprints in his hand.", - "id": 29783 - }, - { - "image_path": "G:\\images\\combined\\0038c797a3708652.jpg", - "response": "A group of four people standing together in front of a black backdrop.", - "id": 29784 - }, - { - "image_path": "G:\\images\\combined\\003900_jpg.rf.6b668035e80aa92877719382dd08218b.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 29785 - }, - { - "image_path": "G:\\images\\combined\\003901_jpg.rf.f624299281730343d3173248b510f446.jpg", - "response": "The image shows two workers repairing a power pole. They are wearing safety gear, including hard hats and safety belts. One worker is standing on the ground, while the other worker is standing on a ladder. The workers are repairing the insulators on the power pole.", - "id": 29786 - }, - { - "image_path": "G:\\images\\combined\\003902_jpg.rf.cf2eff57413e67a3cc123f0b5d8a0f18.jpg", - "response": "A couple of men working on power lines.", - "id": 29787 - }, - { - "image_path": "G:\\images\\combined\\003903_jpg.rf.b9cc7352c85439722fae3e69a3055f17.jpg", - "response": " Miners(357,379),(561,997)(788,350),(997,997)(614,429),(686,740)(527,441),(600,860) working in a mine", - "id": 29788 - }, - { - "image_path": "G:\\images\\combined\\003904_jpg.rf.2d9b019215418236fc31e798e7a93efd.jpg", - "response": "a group of men in suits and hard hats are walking", - "id": 29789 - }, - { - "image_path": "G:\\images\\combined\\003905_jpg.rf.afe7e4d7d4424627a34fb6c532830d65.jpg", - "response": "An elderly Chinese man wearing a yellow hard hat and camouflage jacket sits on a construction site. He is wearing a yellow hard hat and camouflage jacket. His hands are resting on a\u7b3c, a mesh construction material. In the background, there are other construction sites and a blue sky.", - "id": 29790 - }, - { - "image_path": "G:\\images\\combined\\003907512c0624c9.jpg", - "response": "A framed picture of a man and his name is Ke Pualok.", - "id": 29791 - }, - { - "image_path": "G:\\images\\combined\\003907_jpg.rf.692e29c1c0f48c4e927f233902f489ec.jpg", - "response": "A construction site with a man wearing a yellow hard hat and a blue shirt crouching down and welding two steel beams together. He is wearing a black tool belt and has a yellow hard hat on. There is a yellow and grey crane operating in the background and a mountain in the distance. There are several other people scattered around the site some are further away and some are closer. There are piles of steel beams and rebar in various sizes around the site. The sky is blue with white clouds.", - "id": 29792 - }, - { - "image_path": "G:\\images\\combined\\003908_jpg.rf.bbd87416e15e338831e23ab3320b4a65.jpg", - "response": "A man on a ladder pointing to a ceiling.", - "id": 29793 - }, - { - "image_path": "G:\\images\\combined\\003909_jpg.rf.69caac442333c840087a75d659a156b0.jpg", - "response": "Men walking down a sidewalk next to a large building under construction.", - "id": 29794 - }, - { - "image_path": "G:\\images\\combined\\00390_jpg.rf.0185c7818217e54c0a2c5f00edf4d930.jpg", - "response": "Two men in a room with various pieces of equipment. One of the men is holding a doll.", - "id": 29795 - }, - { - "image_path": "G:\\images\\combined\\00390_jpg.rf.43d9d93729c03c736466a0c2f0c13fe0.jpg", - "response": "Two men in a room with a hard hat on.", - "id": 29796 - }, - { - "image_path": "G:\\images\\combined\\003910_jpg.rf.e13cdd45cc0c4baa7b5b79d81971ad98.jpg", - "response": "A group of people working in a hole in the ground.", - "id": 29797 - }, - { - "image_path": "G:\\images\\combined\\003913_jpg.rf.3368f7db02a38626cb891ada48c335ec.jpg", - "response": "The image shows a group of 12 men standing on a platform at a construction site. They are wearing hard hats and appear to be posing for a photo. The platform they are standing on is a deep red color, and there is a banner above them that reads \"\u6c5f\u897f\u4e30\u57ce\u7535\u5382\u4e09\u91cc\u5468\u6269\u5efa\u5de5\u7a0b100\u5929\u52a8\u5458\u5927\u4f1a\". There is also a red and white banner to the far left that reads \"\u79d1\u6280\u662f\u7b2c\u4e00\u751f\u4ea7\u529b\".", - "id": 29798 - }, - { - "image_path": "G:\\images\\combined\\003914_jpg.rf.4b684705bf39d13f8ab7bd52c9c93d46.jpg", - "response": "The photo shows a group of men standing on a red carpet. The men are wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a building. The sky is white.", - "id": 29799 - }, - { - "image_path": "G:\\images\\combined\\003915_jpg.rf.8ea067b991ffa8996259e44d6ac71778.jpg", - "response": "The image shows a group of people working on a road. There are two people in the foreground, both wearing green camouflage clothing and red hats, and they are breaking up large rocks with sledgehammers. Another six people are visible in the background, working on the road in the mountain.", - "id": 29800 - }, - { - "image_path": "G:\\images\\combined\\003916_jpg.rf.4566ed8618b647b856680cc48fdca05e.jpg", - "response": "A construction worker in an orange uniform and yellow hard hat is using a hose to pour concrete onto a grid of rebar.", - "id": 29801 - }, - { - "image_path": "G:\\images\\combined\\003917_jpg.rf.c7ee7c783b5e8095d45d9a95c7801b34.jpg", - "response": "The image shows three Chinese workers in front of a large ship. They are all wearing yellow hard hats and work clothes. The man on the left is wearing a white shirt and beige pants. The man in the middle is wearing a brown shirt and grey pants. The man on the right is wearing a blue shirt and blue jeans. They are all wearing black belts. In the background, there is a large black and orange ship. To the right of the ship, there is a white yacht. In front of the ships, there is a yellow and green striped curb. The sky is a light blue color.", - "id": 29802 - }, - { - "image_path": "G:\\images\\combined\\003918_jpg.rf.7d01d4e7cd17068b214a2fd1d990cc68.jpg", - "response": "A man in a red suit and red hat working on an oil well.", - "id": 29803 - }, - { - "image_path": "G:\\images\\combined\\003919_jpg.rf.cb6706b43e80ce976aa5f616a521c00f.jpg", - "response": "A man in a blue shirt and blue hat working on a power line.", - "id": 29804 - }, - { - "image_path": "G:\\images\\combined\\003920_jpg.rf.059ccfcc264aa3dc8403a5074324054e.jpg", - "response": "In the image there are several people standing around a large sign that says \u201cChina Southern Power Grid\u201d. Under the sign there is a hole in the ground where two men are working. They are wearing blue and orange work clothes and are using a large tool to fix something in the ground. There is also a traffic cone placed near the hole.", - "id": 29805 - }, - { - "image_path": "G:\\images\\combined\\003921_jpg.rf.b176ad6bcb6ddf92cc52f5298310a2ed.jpg", - "response": " Construction workers(460,334),(685,925)(457,7),(650,466)(3,73),(210,685) in China have been spotted using a rather unconventional method of laying pipes.", - "id": 29806 - }, - { - "image_path": "G:\\images\\combined\\003922_jpg.rf.e7b1f1bd7e2fb5ef53ffb9e510020fd3.jpg", - "response": "A worker in a white suit and hard hat is using a long stick to stir a large pool of glowing yellow liquid. The liquid is spewing out of a large pipe and is spreading across the floor. There is a large piece of equipment behind the worker and another person can be seen in the background. The room is filled with an orange glow from the liquid metal.", - "id": 29807 - }, - { - "image_path": "G:\\images\\combined\\003923_jpg.rf.d8c79edffc77259a7842ffa2d45d0309.jpg", - "response": "In the image two men are working on a construction site building a house. The men are both wearing yellow hard hats and yellow and grey safety vests. The man on the left is also wearing light blue jeans. They are standing next to each other and smiling. In front of them is a blue sky and a house that is still in the process of being built.", - "id": 29808 - }, - { - "image_path": "G:\\images\\combined\\003924_jpg.rf.1ed911eae89e4f6ddd10fa2bf4e61d71.jpg", - "response": "A worker is welding some steel in a factory. He is wearing a grey top, a brown hat, and a white mask over his face to protect himself from the sparks and smoke. He is standing on a brown stool and leaning over some steel, which is lying on the floor in front of him. He is holding a welding tool in his right hand and there is a bright orange glow coming from the welding and sparks are flying in all directions. The sparks are also visible on the steel and some smoke is rising from it. The background is blurry and there is a person in the far left corner of the image.", - "id": 29809 - }, - { - "image_path": "G:\\images\\combined\\003925_jpg.rf.77876e8511476acef73a1b43341bd2a4.jpg", - "response": "a wall on the side of a building", - "id": 29810 - }, - { - "image_path": "G:\\images\\combined\\003926_jpg.rf.b76af67721f55903c094c7a18d7f1173.jpg", - "response": "In the image two men are standing next to a yellow building. They are wearing construction gear. One man is wearing a black leather jacket and the other is wearing a grey jacket. The man on the left is also wearing a white glove. They are standing in front of a white trailer. To the right of the men there is a pile of wooden planks. In front of the building there is a large square hole in the ground.", - "id": 29811 - }, - { - "image_path": "G:\\images\\combined\\003927_jpg.rf.68a4d83df0db8e3f3be8c5605ee627bd.jpg", - "response": "A man in a red hard hat is measuring the ceiling with a tape measure while another man watches.", - "id": 29812 - }, - { - "image_path": "G:\\images\\combined\\003928_jpg.rf.a2ababec01df5388e4bc217012b9d107.jpg", - "response": "In the image there are two workers wearing yellow helmets and work clothes. They are working on a construction site with a large pile of steel parts next to them. The background is a large mountain and a white tunnel.", - "id": 29813 - }, - { - "image_path": "G:\\images\\combined\\003929_jpg.rf.4232c5b915ca395121e96d7f8eb15faf.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and safety helmets. The machinery they are working on is covered in oil and mud. There are several oil pipes in the foreground.", - "id": 29814 - }, - { - "image_path": "G:\\images\\combined\\00392_jpg.rf.7d7aead6344f3a2afa09a0e2dc24ee7b.jpg", - "response": "A man wearing a hard hat and high visibility vest, standing with his arms crossed in front of a construction site.", - "id": 29815 - }, - { - "image_path": "G:\\images\\combined\\003930_jpg.rf.de3b67242f522c41723ed9bba18352e3.jpg", - "response": "Four workers in front of a red storage container.", - "id": 29816 - }, - { - "image_path": "G:\\images\\combined\\003931_jpg.rf.876ca7f92e8146e11edd9601177a61c8.jpg", - "response": "A man in a harness is high up in the air, hanging from a wire by a pole.", - "id": 29817 - }, - { - "image_path": "G:\\images\\combined\\003932_jpg.rf.5aa2a607a72d4c7eb24fd2cc0380f8be.jpg", - "response": "A worker wearing a orange jacket and a yellow helmet is welding two steel bars together. The sparks from the welding are flying in all directions. There are more steel bars stacked in the background.", - "id": 29818 - }, - { - "image_path": "G:\\images\\combined\\003933_jpg.rf.9261aa65d1aaf9f391b9282947cbc7e4.jpg", - "response": "The image shows three workers in blue and orange work clothes and yellow helmets. They are holding large hoses that are connected to a yellow truck. The truck is in the background, and the workers are in the foreground. The workers are crouching down, possibly preparing to use the truck. The ground around them is wet.", - "id": 29819 - }, - { - "image_path": "G:\\images\\combined\\003934_jpg.rf.2a6d31a7442c1198735791093fbbe5ca.jpg", - "response": "A man in a black shirt and orange hard hat is using a shovel to dig into the ground. He is standing in a pile of dirt and there is a large stick with a stone embedded in it next to him. He is also holding a hose in his other hand. There is a large rock in the pile of dirt and a small shovel is sticking out of it.", - "id": 29820 - }, - { - "image_path": "G:\\images\\combined\\003935_jpg.rf.dd7bf8cd31d7d98763a87df2d5790c48.jpg", - "response": "The image depicts two men dressed in business suits and yellow hard hats, standing in front of a construction site. Both men are holding a rolled-up blueprint, and one of them is pointing at it. The man pointing is wearing a watch on his left wrist. They are both wearing sunglasses, with the man on the left wearing black shades and the man on the right wearing silver shades. The left man is also holding a smartphone with a black case. The construction site is fenced off and currently under scaffolding.", - "id": 29821 - }, - { - "image_path": "G:\\images\\combined\\003936_jpg.rf.62bcc57b8b4cb1bf612fe182701f9795.jpg", - "response": "A worker in a yellow hard hat is using a tool to make adjustments to a concrete wall. The wall is grey and has various markings on it. To the left of the worker is a yellow pole. In the background, there is a ladder and a pipe.", - "id": 29822 - }, - { - "image_path": "G:\\images\\combined\\003937_jpg.rf.fafaa6619984c973e310408c88aa64cb.jpg", - "response": "The picture shows two workers in a large pipe. The pipe is grey and white, and is circular. The workers are both wearing yellow hard hats, with one on the left holding a long tool and the other on the right. The one on the right is also wearing a white coat. The pipe is dirty, with some dark grey patches. The workers are at the bottom of the pipe, which is dark grey.", - "id": 29823 - }, - { - "image_path": "G:\\images\\combined\\003938_jpg.rf.77c443425606987ed305577e3c233dfe.jpg", - "response": "Three workers in orange protective clothing and orange hard hats, standing in front of a large metal\u8f6e\u6bc2.", - "id": 29824 - }, - { - "image_path": "G:\\images\\combined\\003939_jpg.rf.cbd6a5ac634cbe3577a8840993cf69a4.jpg", - "response": "A construction worker is working on a scaffolding above a busy city street. He is wearing a yellow hard hat and a green shirt. He is standing on a green net and is wearing a safety harness. He is working on a white pipe. The city street is busy with traffic. There are many cars on the street, some driving and some parked. There is also a bus on the street. In the background, there are tall buildings.", - "id": 29825 - }, - { - "image_path": "G:\\images\\combined\\003940_jpg.rf.82c3e4f3980aaec1353c9a0f802f6202.jpg", - "response": "A group of three people working on a building that is still under construction.", - "id": 29826 - }, - { - "image_path": "G:\\images\\combined\\003942_jpg.rf.0ae4092287402f025cca51e6328260dd.jpg", - "response": "A couple of men standing on a stairwell in a factory.", - "id": 29827 - }, - { - "image_path": "G:\\images\\combined\\003943_jpg.rf.92bc710734a5d5f92ce46417e01aafe0.jpg", - "response": "A group of people standing in a tunnel.", - "id": 29828 - }, - { - "image_path": "G:\\images\\combined\\003944_jpg.rf.1a14c019a587e19134f14726c3788d06.jpg", - "response": "A couple of men in orange jumpsuits and red hard hats are working on pipes at a construction site.", - "id": 29829 - }, - { - "image_path": "G:\\images\\combined\\003945_jpg.rf.2cc6ba7e3d15917f4c8ab7ad8b02862e.jpg", - "response": "The image shows three workers from the power company standing in a lush green forest. They are all dressed in blue uniforms and are wearing blue helmets. One of them is holding a large pole. The workers are standing under a fallen tree which has been cut off at the top. The tree is green and has a thick trunk. The workers are all focused on their task of removing the fallen tree.", - "id": 29830 - }, - { - "image_path": "G:\\images\\combined\\003946_jpg.rf.d620eac5afc3beefb139ae0009e974a1.jpg", - "response": "a group of people standing around each other", - "id": 29831 - }, - { - "image_path": "G:\\images\\combined\\003947_jpg.rf.81d04bd5d418ba269e9a3470823aac08.jpg", - "response": "The image features a group of people standing in the street. There is a woman wearing a grey suit and a tie standing to the left of the image. She is talking to a group of men. One of the men is wearing a green shirt and a black tie. Another man is wearing a brown shirt and a black tie. There is a man wearing a black suit and a tie standing to the right of the image. In the background, there are a few cars and buildings.", - "id": 29832 - }, - { - "image_path": "G:\\images\\combined\\003948_jpg.rf.d900ede2fc994ec013cd2f45e9032cf8.jpg", - "response": "a group of men working on a power line", - "id": 29833 - }, - { - "image_path": "G:\\images\\combined\\003949_jpg.rf.24907fd5b77e00f0c4eec0708139646d.jpg", - "response": "In the image there are two workers in green and white uniforms and white helmets. They are working on power lines and repairing a transformer. The transformer is white and says '\u78d0\u77f3\u6709\u6a5f\u8fb2\u6cd5' on it. There are many power lines around them and they are on a lift.", - "id": 29834 - }, - { - "image_path": "G:\\images\\combined\\003950_jpg.rf.e47944c01980c3fa15dd4eed2320d084.jpg", - "response": "A group of men in suits and hard hats stand on a construction site.", - "id": 29835 - }, - { - "image_path": "G:\\images\\combined\\003951_jpg.rf.a31a7164bf053330e34fa266238b9f94.jpg", - "response": "The image shows two construction workers wearing yellow helmets and gray shirts, who are working on a construction site in the sun. They are standing on a pile of sand and concrete, and one of them is holding a large metal bar. In the background, there is a pile of yellow sandbags, a large piece of rusty metal, and a yellow and orange excavator. There are also several people in the distance, some of them wearing white or light-colored clothes. The sky is a clear blue color, and the sun is shining brightly.", - "id": 29836 - }, - { - "image_path": "G:\\images\\combined\\003952_jpg.rf.8a4b5432941fdd527617fe6dc21b8935.jpg", - "response": "A group of men and women wearing hard hats are climbing up a hill. They are wearing blue and black clothing and carrying tools. They are walking up a path next to a tower.", - "id": 29837 - }, - { - "image_path": "G:\\images\\combined\\003953_jpg.rf.f351b7f973073776d3e39d1f6bdfc5e6.jpg", - "response": "a group of people walking on a dirt road", - "id": 29838 - }, - { - "image_path": "G:\\images\\combined\\003954_jpg.rf.2d67370999b6068002cf70fbc208cbe3.jpg", - "response": "A group of four men standing in front of a construction site.", - "id": 29839 - }, - { - "image_path": "G:\\images\\combined\\003955_jpg.rf.9dc46c254571f986fddaba0274045ce8.jpg", - "response": "In the image two workers are fixing a part of a power plant. They are wearing blue uniforms and helmets. The power plant is grey and has many black wires coming out of it. The sky is clear and blue.", - "id": 29840 - }, - { - "image_path": "G:\\images\\combined\\003956_jpg.rf.9b8e826c1b90b71943071ee25cff1fe9.jpg", - "response": "The image shows a group of construction workers standing in front of a red and white banner. They are all wearing hard hats and some are also wearing yellow and blue shirts. In front of the workers, there are several red fire extinguishers arranged in a row. In the background, there is a forest and a white building. On the right side of the scene, there are three people wearing red hats and yellow and blue clothes.", - "id": 29841 - }, - { - "image_path": "G:\\images\\combined\\003957_jpg.rf.ac5a79b76796196a56441cd861e0c708.jpg", - "response": "A group of people standing around a wheel barrel filled with dirt.", - "id": 29842 - }, - { - "image_path": "G:\\images\\combined\\003958_jpg.rf.408590b41df13d55f38a44c999b6f13f.jpg", - "response": "A man wearing a yellow vest and a red helmet is using a drill to make holes in a wall. He is in the process of renovating a room with a ladder placed against the wall.", - "id": 29843 - }, - { - "image_path": "G:\\images\\combined\\003959_jpg.rf.7b3557d30484754c0a0b13a3ed5d2278.jpg", - "response": "A man in a hard hat is standing in a narrow passage between two rows of what appear to be pipes or wooden sticks. The man is looking up and to the left, as if he has just realized that he is not alone. There is a light on in the narrow passage, which illuminates the man's face.", - "id": 29844 - }, - { - "image_path": "G:\\images\\combined\\003961_jpg.rf.3f669edd30cb2056ffc70bd71a996a6d.jpg", - "response": "A construction site with two workers.", - "id": 29845 - }, - { - "image_path": "G:\\images\\combined\\003963_jpg.rf.08bc1ca2ae630b7ccbcc01f61b91e661.jpg", - "response": "In the image there are two men both wearing yellow hard hats. The man on the left is holding a clipboard and looking down at it. The man on the right is smiling at the camera. They are both wearing green and red clothing. In the background there are some windows and machinery.", - "id": 29846 - }, - { - "image_path": "G:\\images\\combined\\003964_jpg.rf.562cf55ff03dff4aa96ce12845be7ae4.jpg", - "response": "In the image there is a man standing next to a wall. The man is wearing a white hard hat, a red and white striped shirt, and blue jeans. He is also wearing a tool belt. The man appears to be of African American descent. He is looking off into the distance, possibly examining the wall or planning something. The wall the man is standing next to is made of metal framing.", - "id": 29847 - }, - { - "image_path": "G:\\images\\combined\\003965_jpg.rf.0bc6f862fc1ca2a037aea4dd93a74fa2.jpg", - "response": "A group of four men standing in front of a building under construction.", - "id": 29848 - }, - { - "image_path": "G:\\images\\combined\\003966_jpg.rf.0bd7d17b982271943ee1be8c932fa315.jpg", - "response": "A city street with a yellow police tape across it.", - "id": 29849 - }, - { - "image_path": "G:\\images\\combined\\003967_jpg.rf.9477a5980e5eca645356629fb980b7aa.jpg", - "response": "A group of people are standing on a stone path near a body of water. Some of them are carrying handbags and a camera. There is a man in a white shirt and black pants, a man in a blue shirt and jeans, a woman in a white shirt and black pants, and another woman in a pink shirt and black pants. There is a man in a white shirt and black pants standing near the water.", - "id": 29850 - }, - { - "image_path": "G:\\images\\combined\\003968_jpg.rf.82fa7d26a35c46c2ec475f5e1a6120b9.jpg", - "response": " Two construction workers(409,326),(527,891)(498,339),(601,855) in a tunnel", - "id": 29851 - }, - { - "image_path": "G:\\images\\combined\\003969_jpg.rf.57f3c94c642088466d88723e3dc0b3ac.jpg", - "response": "In the image two workers are in a factory. One worker is dressed in orange and is using a grinder to create sparks. The sparks are flying everywhere and are covering the other worker. The factory has a lot of metal and steel objects and equipment. The workers are wearing helmets and safety gear. The factory is quite dark and the workers are the only things that are in focus.", - "id": 29852 - }, - { - "image_path": "G:\\images\\combined\\003970_jpg.rf.b3d953e62e468eccf6baff84093297ab.jpg", - "response": "The image shows two workers in safety gear, climbing on a set of power lines. They are wearing harnesses and one has a tool belt. The sky is blue and cloudless.", - "id": 29853 - }, - { - "image_path": "G:\\images\\combined\\003971_jpg.rf.bb237271a21eb466300689def6c0b1aa.jpg", - "response": "A man(733,386),(888,996) standing in front of a fence(2,261),(997,759)", - "id": 29854 - }, - { - "image_path": "G:\\images\\combined\\003972_jpg.rf.534468aec57349571207d51ddaea6398.jpg", - "response": "In the image there are four people wearing white and yellow hard hats. They are working in a large room with white walls and concrete floors. The room has a lot of pipes and machinery in it. The three people in the middle of the photo are working together; the one on the left is holding a large blue pipe and the one in the middle is holding a long white pipe while the one on the right is holding a small pipe. The fourth person is on the far right of the image. Outside of the room, there are three pieces of white cloth on the floor.", - "id": 29855 - }, - { - "image_path": "G:\\images\\combined\\003973_jpg.rf.56df6cdf6324ec5b1bf032fd5d36d946.jpg", - "response": "A group of workers are standing on a yellow crane.", - "id": 29856 - }, - { - "image_path": "G:\\images\\combined\\003974_jpg.rf.74504eca6174e5c9445ea7fbec794150.jpg", - "response": "A group of people standing inside a large tunnel.", - "id": 29857 - }, - { - "image_path": "G:\\images\\combined\\003975_jpg.rf.2872af20b7fd47bcfc66d99b0e378f04.jpg", - "response": "A group of three men in orange and white work clothes are working on a power line. They are standing underneath a large metal pole that is holding up a power line. They are all holding onto the pole and working on the wires. There is a yellow and black crane next to the pole. In the background, there are two other men, one on the left and one on the right, who are not working on the power line.", - "id": 29858 - }, - { - "image_path": "G:\\images\\combined\\003977_jpg.rf.2d826e29bdf650d75ae7835ed617f7ae.jpg", - "response": "Some construction workers are working on a building.", - "id": 29859 - }, - { - "image_path": "G:\\images\\combined\\003979_jpg.rf.90b796ee803c4c7c771944357e9a0138.jpg", - "response": "A group of four men in business-casual attire and hard hats stand on a flooded street. The street is covered in trash and debris, and the water is knee-deep. In the background, there are trees and a streetlight.", - "id": 29860 - }, - { - "image_path": "G:\\images\\combined\\003980_jpg.rf.ca88d1edb40449fad5a990fa7fab81a9.jpg", - "response": "Two workers in yellow shirts and yellow helmets are working on a power line.", - "id": 29861 - }, - { - "image_path": "G:\\images\\combined\\003981_jpg.rf.7e2ba492411dfae096787a2aaa195e41.jpg", - "response": "The image shows a group of seven men standing on a construction site. They are all wearing hard hats, with some also wearing suits and ties. The men are standing on a patch of unfinished concrete, and looking around. In the background, there are a few buildings under construction, as well as some trees and a city skyline.", - "id": 29862 - }, - { - "image_path": "G:\\images\\combined\\003983_jpg.rf.c04b659d1936a0c08d4a86e38b1ee0cc.jpg", - "response": "In the image two people are working on a large piece of metal. They are standing on a platform that is raised above the ground. They are wearing hard hats and one of them is wearing a blue hat and a mask. They are both working on the metal with one of them using a welding tool. There are sparks flying from the welding tool. The ground can be seen below them and to the left of the platform.", - "id": 29863 - }, - { - "image_path": "G:\\images\\combined\\003985_jpg.rf.09a417c118952cbd60d208d7017dcf36.jpg", - "response": "In the image, a person wearing a white shirt and a blue helmet is working on an electrical box. They are holding a black and red cable in their hands and are in the process of plugging it into the box. The person is focused on their task and there are several other cables visible in the scene. The background is a bit blurry and there is a white structure behind the person.", - "id": 29864 - }, - { - "image_path": "G:\\images\\combined\\003986_jpg.rf.13d428315a0d9e3c3e892cffcd6e07ef.jpg", - "response": "An image of two men working on power lines in a field.", - "id": 29865 - }, - { - "image_path": "G:\\images\\combined\\003987_jpg.rf.0805a47fe2c994f73597283dcca161c2.jpg", - "response": "A group of men standing around a unfinished building.", - "id": 29866 - }, - { - "image_path": "G:\\images\\combined\\003988_jpg.rf.19061de401a77dc706e4a90548fda1c6.jpg", - "response": "a group of men working on a project", - "id": 29867 - }, - { - "image_path": "G:\\images\\combined\\003989_jpg.rf.4c5787aae9d9b9d9b92be9f8fb9b73ed.jpg", - "response": "A man in a red hard hat is standing in front of a large metal boiler. The boiler is grey and silver, and has a lot of pipes and valves. The man is holding a clipboard and looking at the boiler.", - "id": 29868 - }, - { - "image_path": "G:\\images\\combined\\00398_jpg.rf.4cb1da33d8b077db00e15d9406a58b94.jpg", - "response": "A man in a yellow vest and red helmet is walking down the street. He is smiling and appears to be in a good mood.", - "id": 29869 - }, - { - "image_path": "G:\\images\\combined\\003991_jpg.rf.2746e6c05a1c7b5a53ffc666bd37993b.jpg", - "response": "A group of people wearing yellow vests and red helmets are gathered in a white hallway. Some of the people are wearing red helmets, and many are wearing yellow vests. A few people are also wearing white helmets. The group is standing around and appears to be looking at something.", - "id": 29870 - }, - { - "image_path": "G:\\images\\combined\\003992_jpg.rf.b83465b7f80a9f3bdb8ab5d1fd5ebd5f.jpg", - "response": "A construction worker in a yellow hard hat and orange jacket is kneeling down on a street. They are applying a grey substance with a trowel to the street.", - "id": 29871 - }, - { - "image_path": "G:\\images\\combined\\003993_jpg.rf.4c8d9f5828415da5b6af8bed3ba46818.jpg", - "response": "The photo shows a group of people standing in a construction area. They are wearing hard hats and one of the men is holding a cell phone. There is a wall in the background and a sign that says \"no entry\".", - "id": 29872 - }, - { - "image_path": "G:\\images\\combined\\003995_jpg.rf.f8980c68b0a7c100d41ce1b3e5088901.jpg", - "response": "Four people standing in a construction site, three of them wearing yellow vests.", - "id": 29873 - }, - { - "image_path": "G:\\images\\combined\\003996_jpg.rf.1f1caccabea5f6387bdb5a7eb463d00e.jpg", - "response": "In the image there are two people sitting next to each other, both are wearing hard hats and work clothes. They appear to be taking a break as they are sitting on cinder blocks and one of them has their feet up on a metal surface.", - "id": 29874 - }, - { - "image_path": "G:\\images\\combined\\003997_jpg.rf.869faf04aca733dfe295299ba4d9d51c.jpg", - "response": "a group of men standing around talking to each other", - "id": 29875 - }, - { - "image_path": "G:\\images\\combined\\003998_jpg.rf.c36399ca9a7df0b0ad4afcd4d596a524.jpg", - "response": "The image shows a construction site with several workers digging holes for the foundation of a building. There are at least three workers visible, all wearing yellow hard hats and working with shovels and other tools. The ground is dirt and there are several large rocks scattered around the site. In the background, there are trees and a sky that is a mix of blue and white.", - "id": 29876 - }, - { - "image_path": "G:\\images\\combined\\003999_jpg.rf.13b50e70172303e46f473f99a949f66f.jpg", - "response": "A woman in a green uniform is putting something on a mans head.", - "id": 29877 - }, - { - "image_path": "G:\\images\\combined\\003a2b5030034d00.jpg", - "response": "A building with a number 39 on it.", - "id": 29878 - }, - { - "image_path": "G:\\images\\combined\\003a8ae2ef43b901.jpg", - "response": "A Dakota Digital single-use camera with a silver and blue color scheme.", - "id": 29879 - }, - { - "image_path": "G:\\images\\combined\\003a9640bb92c0c9.jpg", - "response": "A collage of three photos. The top left photo is of a street view with a building on the left and a tree in the middle. The top right photo is of a street with rain. The bottom photo is of a white cup with the BibCamp logo on it.", - "id": 29880 - }, - { - "image_path": "G:\\images\\combined\\003aed6b07578bf1.jpg", - "response": "a bunch of people standing in line outside of a restaurant called Ben's Chili Bowl.", - "id": 29881 - }, - { - "image_path": "G:\\images\\combined\\003af0ec415e7b9a.jpg", - "response": "A pink and red poster advertising a concert with a schedule of events.", - "id": 29882 - }, - { - "image_path": "G:\\images\\combined\\003b73b07cfb6d58.jpg", - "response": "A man sitting behind a counter at a Rizgin Products booth.", - "id": 29883 - }, - { - "image_path": "G:\\images\\combined\\003bed7fa4de9fd9.jpg", - "response": "A woman walking down a street next to a yellow van.", - "id": 29884 - }, - { - "image_path": "G:\\images\\combined\\003c0cac1ea19d3e.jpg", - "response": "A man sitting at a poker table with a woman standing behind him.", - "id": 29885 - }, - { - "image_path": "G:\\images\\combined\\003c79998bb42640.jpg", - "response": "A sepia photograph of a town square in Saigon. There are several people in the square, some riding bicycles and others walking. There are also a few cars in the square. In the background, there are a few buildings, including a large one on the left and another on the right. A street light is located in the middle of the square.", - "id": 29886 - }, - { - "image_path": "G:\\images\\combined\\003ceac72cb29c12.jpg", - "response": "A man sitting at a table with a beer in front of him.", - "id": 29887 - }, - { - "image_path": "G:\\images\\combined\\003d25460307a847.jpg", - "response": "a person standing in a room", - "id": 29888 - }, - { - "image_path": "G:\\images\\combined\\003d7090ca7e9fc9.jpg", - "response": "A bucket filled with ice and several bottles of beer. The beer bottles are placed on top of the ice and some of them are visible at the bottom of the bucket. There is also a white sticker with a logo on it placed on top of the ice and bottles.", - "id": 29889 - }, - { - "image_path": "G:\\images\\combined\\003df657f0316e11.jpg", - "response": "A pole with several signs attached to it.", - "id": 29890 - }, - { - "image_path": "G:\\images\\combined\\003df8cf2effae50.jpg", - "response": "A van with the words Blue Sheep on the side of it.", - "id": 29891 - }, - { - "image_path": "G:\\images\\combined\\003e8ba237cc7842.jpg", - "response": "A busy city street at night with a woman riding a bike down the street. There are many people walking around and cars parked on the side of the street. There is a Vietnamese flag hanging from a building.", - "id": 29892 - }, - { - "image_path": "G:\\images\\combined\\003edf91acea710b.jpg", - "response": "An orange Lego crab is sitting on a desk next to a phone. The crab has two white Lego eyes and a smiley face.", - "id": 29893 - }, - { - "image_path": "G:\\images\\combined\\003ef1b57db7ce3d.jpg", - "response": "A cartoon of two men standing on the cover of a magazine. The word \"Luck\" is written in the center of the cover. One of the men is labeled \"Self-Supporter Samm\" and is leaning on a barrel. The other man is labeled \"Tilden\" and is holding a newspaper with the headline \"Mr. Tilden will not accept nor canvass candidates to be on his personal ticket.\"", - "id": 29894 - }, - { - "image_path": "G:\\images\\combined\\003ef4b48082cec9.jpg", - "response": "A book cover with a greenish background and a feather on it.", - "id": 29895 - }, - { - "image_path": "G:\\images\\combined\\003f3bfa30c1a41c.jpg", - "response": "The image features a purple flower on a branch.", - "id": 29896 - }, - { - "image_path": "G:\\images\\combined\\003f4abfabbfe188.jpg", - "response": "A gas station with multiple cars and a drive through service sign.", - "id": 29897 - }, - { - "image_path": "G:\\images\\combined\\003faed0bbb2129e.jpg", - "response": "a soccer player(318,106),(699,996)", - "id": 29898 - }, - { - "image_path": "G:\\images\\combined\\003_1024_jpeg_jpg.rf.065707f06eace34777348645b59f6ddc.jpg", - "response": "A man in a black shirt and wearing a face mask is pointing to a piece of paper. The paper has a graph on it and the man is standing in front of a laptop. There is a person to the right of the man and another person to the right of that person. There is a microphone in front of the man on the right.", - "id": 29899 - }, - { - "image_path": "G:\\images\\combined\\003_1024_jpeg_jpg.rf.fdf8fe0f18e4d54d44ca607a3d6f905f.jpg", - "response": "In the image, a man in a black shirt is pointing to a chart on a piece of paper. The man is wearing a black shirt and a face mask. Next to him, there is another man wearing a mask. They are both standing in front of a screen that says \"\u9999\u6e2f\u500b\u5225\u623f\u5e02\u8857\u574a\u9632\u7bc4\".", - "id": 29900 - }, - { - "image_path": "G:\\images\\combined\\004000_jpg.rf.9b432381f2065981c95d57b9a91dc919.jpg", - "response": "A worker in a yellow hard hat is on a metal beam.", - "id": 29901 - }, - { - "image_path": "G:\\images\\combined\\004002_jpg.rf.9ffd04e07565d5e510f2607936091165.jpg", - "response": "A construction worker is seen in front of a highway under construction in this undated photo. The photo was taken by photographer Liang Xiaowen, who won the first prize in the singles category of the News Photo award for his work.", - "id": 29902 - }, - { - "image_path": "G:\\images\\combined\\004003_jpg.rf.5cd158694bade1e704f90383dde247ae.jpg", - "response": "In the image there are two people wearing white and blue hard hats, looking at a clipboard with building plans on it. They are standing in a tunnel or underpass.", - "id": 29903 - }, - { - "image_path": "G:\\images\\combined\\004004_jpg.rf.70c28c5d160deca96c244278fa4a58ef.jpg", - "response": "A worker in front of a large building under construction.", - "id": 29904 - }, - { - "image_path": "G:\\images\\combined\\004005_jpg.rf.1441dbcd5313f867907974d1bd8a37ce.jpg", - "response": "In the image there is a construction site with several construction workers. They are working on a wooden structure, which is supported by many wooden pillars. The workers are wearing yellow hats and red uniforms. Some tools are placed around the site, including a ruler and a bucket. In the distance, there are some mountains and houses.", - "id": 29905 - }, - { - "image_path": "G:\\images\\combined\\004007_jpg.rf.5c3a1f82d40d4ae0c890371acb3d88bd.jpg", - "response": "Three engineers in yellow and green vests, and hard hats, are looking at a blueprint in a construction site.", - "id": 29906 - }, - { - "image_path": "G:\\images\\combined\\004008_jpg.rf.1a66a9954477e02da9801fc70e0f4ce6.jpg", - "response": "A group of four men in orange jumpsuits are working on a power line.", - "id": 29907 - }, - { - "image_path": "G:\\images\\combined\\004009_jpg.rf.932b84ba39643534635ad0935316a269.jpg", - "response": "A man wearing a yellow hard hat is working on a construction site. He is standing on a platform and is in the process of cutting a metal bar with a pair of pliers. There is another person visible behind him, wearing a yellow hard hat and a white shirt. They are both working on a construction project.", - "id": 29908 - }, - { - "image_path": "G:\\images\\combined\\004010_jpg.rf.f2598155f3902a50077e763b254bea8c.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing yellow hard hats and gray uniforms. Some of them are using tools, such as shovels and long handled hammers, to work in the tunnel. The workers are standing in a group in the lower right corner of the image, with one worker on the far left and another worker standing next to him. Another worker is standing to the right of the first two workers, and the third worker is standing to the right of the second two workers. There is a hose being used by the workers in the lower right corner of the image. The tunnel is filled with debris, including what looks like charred debris on the left side of the tunnel.", - "id": 29909 - }, - { - "image_path": "G:\\images\\combined\\004011_jpg.rf.88e5273a1808e9a9c6560166bfb1b4b5.jpg", - "response": "A man in a suit and hard hat looking up at a unfinished building.", - "id": 29910 - }, - { - "image_path": "G:\\images\\combined\\004012_jpg.rf.fb4c031e231eb933573428b9ffbf4c25.jpg", - "response": "A man wearing a white helmet and an orange vest is smiling while holding a cell phone to his ear. He is also holding a plan in his other hand. The man is standing in front of a pile of lumber.", - "id": 29911 - }, - { - "image_path": "G:\\images\\combined\\004013_jpg.rf.bc8b1b7738cb3831010a1f132f6b7410.jpg", - "response": "In the image, two construction workers are working on a construction site. They are wearing yellow and orange vests and are standing on a large grid of rebar. In the background, there are a few buildings under construction.", - "id": 29912 - }, - { - "image_path": "G:\\images\\combined\\004014_jpg.rf.c90660e600f07269b7b8ebab89426b90.jpg", - "response": "An employee of China's state-owned power grid company, China Power Grid Corporation, is seen here working on a power transmission line in this undated photo. The photo was taken in Anhui province, eastern China.", - "id": 29913 - }, - { - "image_path": "G:\\images\\combined\\004015_jpg.rf.a21333205fa6e1cd1e14ab12fc689065.jpg", - "response": "a group of men standing in a sandy construction site", - "id": 29914 - }, - { - "image_path": "G:\\images\\combined\\004016_jpg.rf.15c7345db64e805d5c93f7d02b2214a1.jpg", - "response": "In the image there are two people, both wearing hard hats, one on the left and one on the right. They are crouched down looking at a piece of paper. The paper is on the ground in front of them. Behind the people are buildings under construction. There are at least three cranes working on the buildings. The sky is blue with clouds.", - "id": 29915 - }, - { - "image_path": "G:\\images\\combined\\004017_jpg.rf.0689272e602773ba1be55ca16e4e945f.jpg", - "response": "A worker in a white uniform and a yellow hard hat is on a ladder, working on a power pole at night. The pole is grey and the worker is wearing a red harness. There are several wires attached to the pole and a transformer at the base of the pole. The worker is standing on a metal platform and is looking down. The sky is pitch black and there are no other people or objects in the image.", - "id": 29916 - }, - { - "image_path": "G:\\images\\combined\\004018_jpg.rf.0b898ed87dfb647252ef1947575d24b4.jpg", - "response": "A worker is seen in a darkened room, working on a large metal box. The worker is wearing a white helmet and a neon green vest. The metal box the worker is working on is large and silver. There is a sign on the wall next to the worker that says \"Caution: High Voltage Keep Away 5\u7c73\"", - "id": 29917 - }, - { - "image_path": "G:\\images\\combined\\004021_jpg.rf.0c439c9cccef25addd24091c6b19f403.jpg", - "response": "A construction worker in a yellow helmet is crouched down working on a grey wall. The worker is wearing a grey shirt and green shoes. They are using a tool with a blue handle to work on the wall. The wall is made of concrete and is grey in color. The worker is squatting down and appears to be focused on their task.", - "id": 29918 - }, - { - "image_path": "G:\\images\\combined\\004022_jpg.rf.77a50283f44cc031111fbc6b09c41c26.jpg", - "response": "A man standing in front of a forklift that is parked next to a shipping container. The forklift has the word TOYOTA on the door.", - "id": 29919 - }, - { - "image_path": "G:\\images\\combined\\004023_jpg.rf.d5217bd539f3964db5038df7436c9cc0.jpg", - "response": "The image shows two women standing in a\u96a7\u9053. They are both dressed in yellow and grey construction worker uniforms and yellow safety helmets. They are both holding brooms. To the right of the women, there are two white and black air-coolers. To the left of the women, there is a yellow truck. The tunnel they are in is grey and white in color. The right wall of the tunnel is full of grey rocks. The left wall of the tunnel has a brown layer at the top and a grey layer at the bottom, with a white layer in the middle. The floor of the tunnel is also grey.", - "id": 29920 - }, - { - "image_path": "G:\\images\\combined\\004024_jpg.rf.42ade4d6eca6eab20d55597a2654e73c.jpg", - "response": " several men(12,21),(237,568)(756,577),(926,997)(138,76),(356,852)(888,638),(997,997) working on a rock tunnel", - "id": 29921 - }, - { - "image_path": "G:\\images\\combined\\004025_jpg.rf.ad802d1294d1b56e45c1015f3ec1efce.jpg", - "response": "A group of men in suits and hard hats are walking through a construction site. One man is pointing towards a building in the background.", - "id": 29922 - }, - { - "image_path": "G:\\images\\combined\\004026_jpg.rf.40ca4362a9df78248bba595049ae5cf9.jpg", - "response": "The image shows a group of four men standing in front of a building with a sign that reads \"Jiemin North Bridge\". The men are dressed in orange life jackets. A boat is visible in the foreground, and there are patches of ice on the water. The sky is overcast.", - "id": 29923 - }, - { - "image_path": "G:\\images\\combined\\004028_jpg.rf.ea614e36d3dd4193d0170d14780fde25.jpg", - "response": "A group of three men in red jumpsuits and hard hats are working on a power line. They are standing on a metal platform that is attached to a telephone pole. They are in the process of fixing a part of the power line.", - "id": 29924 - }, - { - "image_path": "G:\\images\\combined\\004029_jpg.rf.d5fd59adf4cd9d88266c00db21479d65.jpg", - "response": "The image shows two construction workers wearing yellow hard hats standing on a yellow scaffold. They are both dressed in red and grey clothing. One of the workers is on the left, and the other is on the right. They are both looking down at something. In the background, there is a red wall with wooden planks. To the far left, there is a yellow crane.", - "id": 29925 - }, - { - "image_path": "G:\\images\\combined\\004030_jpg.rf.940927feb102c30ef2d8947f6af3263b.jpg", - "response": "A group of workers are working on a building site.", - "id": 29926 - }, - { - "image_path": "G:\\images\\combined\\004031_jpg.rf.b7e7c6caeab5d554d9fb533d7f4fec4c.jpg", - "response": "A group of five smiling industrial workers standing in a warehouse wearing white hard hats and yellow hi-vis vests.", - "id": 29927 - }, - { - "image_path": "G:\\images\\combined\\004032_jpg.rf.b0f00cd6d051376ff84878c8965a63a3.jpg", - "response": "A woman in a hard hat and safety vest is holding a clipboard and smiling while standing in front of a large piece of machinery.", - "id": 29928 - }, - { - "image_path": "G:\\images\\combined\\004033_jpg.rf.4ee094089a591a21c3709e42cd9eb0f6.jpg", - "response": "The image shows a tunnel with a train traveling through it. Two workers can be seen on the right side of the tunnel, dressed in yellow vests and blue hard hats. The tunnel is made of concrete and steel, and there is a clock mounted above the train tracks. The train is silver and has two cars. It is traveling away from the camera. There are also two large pipes on the left side of the tunnel.", - "id": 29929 - }, - { - "image_path": "G:\\images\\combined\\004034_jpg.rf.75a92fd8cfbed6f35887c8e610e47fd5.jpg", - "response": "a group of men standing inside a building", - "id": 29930 - }, - { - "image_path": "G:\\images\\combined\\004035_jpg.rf.e94d1718fba1a2daaa2eeac1e34316da.jpg", - "response": "A man in a hard hat and yellow safety vest, smiling and leaning on a wooden board. He is standing in front of a building under construction.", - "id": 29931 - }, - { - "image_path": "G:\\images\\combined\\004036_jpg.rf.7e8e7f21f07d3b59fd836617cd4f8809.jpg", - "response": "A crane is lifting a large concrete mixer into place.", - "id": 29932 - }, - { - "image_path": "G:\\images\\combined\\004037_jpg.rf.a72c8440e071ccc69771c62999ead95a.jpg", - "response": "An elderly power supply technician is wearing a yellow hat and glasses, with his mouth slightly open as if he is about to say something. He is smiling and has a hook on his left hand.", - "id": 29933 - }, - { - "image_path": "G:\\images\\combined\\004038_jpg.rf.9cb721de5050d1023d856944afdecb2c.jpg", - "response": "An electrician in a red helmet is working on a power line.", - "id": 29934 - }, - { - "image_path": "G:\\images\\combined\\004039_jpg.rf.bb0bdafbfa59fe98270abb35c2936a64.jpg", - "response": "a group of men standing on a red carpet", - "id": 29935 - }, - { - "image_path": "G:\\images\\combined\\004041_jpg.rf.1856a7480c55748a253cf0efc9f6d10a.jpg", - "response": "A group of men looking at blueprints.", - "id": 29936 - }, - { - "image_path": "G:\\images\\combined\\004042_jpg.rf.d3d1167f42c7a1fc9dda4786659ab3ee.jpg", - "response": "In the image there is a man wearing a red hard hat and a blue tie. He is standing in a warehouse with his arms crossed in front of him. The background is blurred and there are metal rods stacked on the right.", - "id": 29937 - }, - { - "image_path": "G:\\images\\combined\\004043_jpg.rf.1187f16a2fb6d23591283d7cf26e3e64.jpg", - "response": "A worker in a hard hat and face shield is standing in front of a large circular metal manufacturing machine that is creating long orange metal coils. The metal is very hot and is being controlled by the worker. The background is blurry and there is a mat with Chinese characters on the floor.", - "id": 29938 - }, - { - "image_path": "G:\\images\\combined\\004044_jpg.rf.8735db51b94cc1bb2902b8109156838d.jpg", - "response": "A picture of two workers wearing hard hats and backpacks, using blowers to clear debris off an asphalt road.", - "id": 29939 - }, - { - "image_path": "G:\\images\\combined\\004045_jpg.rf.3a1696e3c5663b3c9878d61b8631809f.jpg", - "response": "In the image two men are working on a construction site. They are wearing red helmets and holding a fishing net. The net is stretched between them and they seem to be preparing to work with it. The construction site is located in an urban area with buildings in the background.", - "id": 29940 - }, - { - "image_path": "G:\\images\\combined\\004046_jpg.rf.729a8a0da72cc4bc03a7d5637e126c8e.jpg", - "response": "In the image, there is a construction worker wearing a yellow hard hat and blue work clothes. The worker is standing on a sidewalk and is looking over his shoulder. The worker has a walkie-talkie attached to his belt. There are two cars on the street, one is a mini Cooper and the other is a brown sedan. There are two other people on the street, one is a woman in a white shirt and black pants and the other is a man in a red shirt and white pants. There is also a motorcycle parked on the street.", - "id": 29941 - }, - { - "image_path": "G:\\images\\combined\\004048_jpg.rf.ccdb095457c0a06bb63c295c6aea8c16.jpg", - "response": "The image shows two workers in orange jumpsuits and blue helmets, climbing on a tower to work on the power lines. The tower is made of metal and is grey in color. There are several power lines coming off the tower in different directions.", - "id": 29942 - }, - { - "image_path": "G:\\images\\combined\\004049_jpg.rf.5b19a24a7e62fd6d7e3a17f235ec8248.jpg", - "response": "The image shows four Chinese workers posing for a photo in front of a large pipe. They are all wearing hard hats and one is holding a pipe. They seem to be in a factory setting.", - "id": 29943 - }, - { - "image_path": "G:\\images\\combined\\004050_jpg.rf.7d95daf84ea7838eebea47447276a53a.jpg", - "response": "a group of people standing in front of a bridge", - "id": 29944 - }, - { - "image_path": "G:\\images\\combined\\004051_jpg.rf.ec61c81b8a9712fcb3c5c4c3dbf52542.jpg", - "response": "a group of men walking across a parking lot", - "id": 29945 - }, - { - "image_path": "G:\\images\\combined\\004052_jpg.rf.4827d129cacca8af0da60212b47e6617.jpg", - "response": "In the image there is a man wearing a yellow hard hat and work clothes, possibly blue, standing in front of a power line. He is holding onto a tool and appears to be working on the power line.", - "id": 29946 - }, - { - "image_path": "G:\\images\\combined\\004053_jpg.rf.ae5d594a8ec0720d26160dad253eb083.jpg", - "response": "A group of three men working on a street.", - "id": 29947 - }, - { - "image_path": "G:\\images\\combined\\004054_jpg.rf.156426d1266ff0a676c198420b8664ea.jpg", - "response": "In the image there are three men dressed in construction gear. One man is sitting on a step and is wearing a hard hat and a clipboard. Another man is standing next to him and is wearing a yellow and orange safety vest and a hard hat. They are all talking.", - "id": 29948 - }, - { - "image_path": "G:\\images\\combined\\004055_jpg.rf.e7530bd719fc372bd9b327907ff58a1f.jpg", - "response": "The Chinese characters at the bottom of the image read \"tielu.com\".", - "id": 29949 - }, - { - "image_path": "G:\\images\\combined\\004056_jpg.rf.5bccd185f179f1e7fd81c4183e596f13.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is using a yellow measuring tape to measure something. He is standing in a unfinished room with wooden beams on the ceiling. There are white pipes on the right side of the room and blueprints are on the ground.", - "id": 29950 - }, - { - "image_path": "G:\\images\\combined\\004057_jpg.rf.a750b87f665de7c8d07fde9733d7d24b.jpg", - "response": "A row of construction workers wearing yellow hats and orange vests are lined up on a bridge. They are all holding a long pipe in one hand and a rope in the other. They are all looking in the same direction.", - "id": 29951 - }, - { - "image_path": "G:\\images\\combined\\004058_jpg.rf.9aa56513b2d1375db83c9d143a50ca1b.jpg", - "response": "The image shows a group of people, most of them wearing yellow hard hats, standing around a man in green camouflage uniform who is using a shovel. The man in the green uniform is kneeling on the ground and appears to be digging a hole. The group of people is standing around the man and the hole, watching what he is doing. Some of the people are wearing ties. In the background, there is a pile of grey rocks. The image also shows a camera, with a person holding it, pointed at the group of people.", - "id": 29952 - }, - { - "image_path": "G:\\images\\combined\\004059_jpg.rf.a404687bfeceaf9cd5526b64aabb5eeb.jpg", - "response": "A group of three men walking down a sidewalk in front of a building under construction. They are all wearing white construction hats.", - "id": 29953 - }, - { - "image_path": "G:\\images\\combined\\004060_jpg.rf.6a1acd54f90cf200682821be62dfcce1.jpg", - "response": "a group of men standing in front of a building", - "id": 29954 - }, - { - "image_path": "G:\\images\\combined\\004061_jpg.rf.12860d7a4abfc0fc3c6e3ef2fa871d1d.jpg", - "response": "The image shows a bridge construction site. A large yellow crane is on the left, and two construction workers are visible, one on the left and one on the right. The bridge appears to be in the middle of construction.", - "id": 29955 - }, - { - "image_path": "G:\\images\\combined\\004062_jpg.rf.45115c54e00a5ce3be88a21a6a1da939.jpg", - "response": "A man is working on a piece of metal with a level.", - "id": 29956 - }, - { - "image_path": "G:\\images\\combined\\004063_jpg.rf.6c37250f06b81942d84fd59c8a36798d.jpg", - "response": "The image shows a group of men working on an electrical line in a rural area. There are five men in the picture, all wearing backpacks and working on the line. One man is standing on a ladder, while the others are holding the line or working on the wires.", - "id": 29957 - }, - { - "image_path": "G:\\images\\combined\\004064_jpg.rf.43d27dc5886994b4aaf10f0dca1a3348.jpg", - "response": "A couple of women wearing hard hats and glasses looking at a blueprint.", - "id": 29958 - }, - { - "image_path": "G:\\images\\combined\\004065_jpg.rf.19bc5b9ea09b560e3894cd36dd55a844.jpg", - "response": "A worker in a white mask and hard hat is kneeling down in a dark room. They are holding a scoop and filling a bag with a grey powder. There is a white bag on the floor next to them and another one further to the right. To the left of the worker, there is a large bag that is mostly out of the frame. The room has a concrete wall and the floor is covered with grey powder.", - "id": 29959 - }, - { - "image_path": "G:\\images\\combined\\004066_jpg.rf.510951e443dece6638ff9435b24541e0.jpg", - "response": "A worker is standing on a scaffold.", - "id": 29960 - }, - { - "image_path": "G:\\images\\combined\\004067_jpg.rf.c8b0a02cae0bef04225eb742d7218b37.jpg", - "response": "A group of three men in hard hats and work clothes.", - "id": 29961 - }, - { - "image_path": "G:\\images\\combined\\004068_jpg.rf.64aa82877e917fd788a1e48b80baef27.jpg", - "response": "A group of men working on a building.", - "id": 29962 - }, - { - "image_path": "G:\\images\\combined\\004069_jpg.rf.2f81526d3f9dc8dafc20f22d4c747d7e.jpg", - "response": "A woman wearing a blue hard hat and a yellow safety vest is holding a clipboard.", - "id": 29963 - }, - { - "image_path": "G:\\images\\combined\\00406d1a5405c5a6.jpg", - "response": "The image features two women standing in front of a large mural on the ground. They are both wearing green shirts and have their hands on their heads. The mural depicts a large machine digging into the ground, pulling up coal. The women are looking at the mural, which covers the entire width of the image and about half the height.", - "id": 29964 - }, - { - "image_path": "G:\\images\\combined\\004071_jpg.rf.4eac60fc97093ddc7d97cecbb5c62be0.jpg", - "response": "A man in a blue shirt and red hard hat is pointing to a wall. He is standing in front of a building with a lot of scaffolding on it. There are several other people standing behind him, all wearing hard hats. Some of them are wearing red shirts. In the background, there is a road with a car on it.", - "id": 29965 - }, - { - "image_path": "G:\\images\\combined\\004072_jpg.rf.de287879e98000648beb48d9c74aa821.jpg", - "response": "The image shows a large tunnel with a circular tunnel boring machine in the center. The tunnel is grey and white in color and has a concrete wall. There are workers in the tunnel, some are standing on a platform at the bottom of the tunnel and some are standing on a crane operating the tunnel boring machine. They are wearing yellow helmets and work clothes. In the foreground, a worker is holding a rope.", - "id": 29966 - }, - { - "image_path": "G:\\images\\combined\\004073_jpg.rf.b5263ccd5292ac2f82098088b445bccd.jpg", - "response": "a man standing in a field", - "id": 29967 - }, - { - "image_path": "G:\\images\\combined\\004074_jpg.rf.bb6933d99898089d7a494a054217647d.jpg", - "response": "A worker is standing on a scaffolding with a large blue metal gate in the foreground. The gate has two large white characters on it, possibly the gate to a park. The worker is wearing a red helmet and a blue jacket.", - "id": 29968 - }, - { - "image_path": "G:\\images\\combined\\004075_jpg.rf.bad312d7f420bda6dc3e6aa4db9e7913.jpg", - "response": "A construction site with steel beams and concrete pillars in the process of being built.", - "id": 29969 - }, - { - "image_path": "G:\\images\\combined\\004076_jpg.rf.7537593ae62e3c5c79d0eca575ffe266.jpg", - "response": "A coal miner is operating heavy machinery in a coal mine.", - "id": 29970 - }, - { - "image_path": "G:\\images\\combined\\004078_jpg.rf.dadaa470c15bb86c0e210d883cf3a30a.jpg", - "response": "A man in a red helmet stands in front of a grey tower. There are a few other people around the tower, some of them are near the tower base and some are near the top of the tower. The tower has many wires coming from it. In the background, there are a few buildings and a blue sky with some clouds.", - "id": 29971 - }, - { - "image_path": "G:\\images\\combined\\00407_jpg.rf.71b45c2b24fb08cab12ee36290210aef.jpg", - "response": "In the image, two men are wearing orange vests and hard hats. They are standing in a factory setting, with one man holding a blue vial. They are wearing gloves and one man is holding a pair of goggles. There is a saw in the background.", - "id": 29972 - }, - { - "image_path": "G:\\images\\combined\\004080_jpg.rf.e1eca613efcea53cb55a32310ce46828.jpg", - "response": "A group of men in blue hats are working on a fallen power line.", - "id": 29973 - }, - { - "image_path": "G:\\images\\combined\\004081_jpg.rf.d623aa4579d5e027d6318247d172e35c.jpg", - "response": "In the image there is a man wearing a hard hat and holding a chainsaw. He is standing in a forest that has been heavily logged. The trees around him are mostly dead and many have been cut down. The ground is covered in debris and tree stumps. The sky above the forest is grey and overcast.", - "id": 29974 - }, - { - "image_path": "G:\\images\\combined\\004082_jpg.rf.a6a8f338114e31993e9e1d05765882ce.jpg", - "response": "The image shows two smiling construction workers wearing orange safety vests and white helmets. They are crouching on a construction site, looking at a blueprint. The man on the left is pointing at the blueprint, and the other man is laughing. The background shows wooden beams and debris.", - "id": 29975 - }, - { - "image_path": "G:\\images\\combined\\004083_jpg.rf.afb888dfb288b2cd9df5c9b4173767d0.jpg", - "response": "a group of people walking across a construction site", - "id": 29976 - }, - { - "image_path": "G:\\images\\combined\\004084_jpg.rf.0ce2137fd120ac64c2649eed97867005.jpg", - "response": "In the image two construction workers are working on building a bridge. They are wearing yellow helmets and grey uniforms. The bridge is still under construction and has a lot of metal rods and frameworks.", - "id": 29977 - }, - { - "image_path": "G:\\images\\combined\\004085_jpg.rf.a4e0266d9db3df69405e44cddf67a9b8.jpg", - "response": "A man in a yellow hard hat is working on a power line.", - "id": 29978 - }, - { - "image_path": "G:\\images\\combined\\004086_jpg.rf.a8ddd957f2961d4a721d2c89ae7fa836.jpg", - "response": "A man in a suit and red helmet is pointing at something in front of him. Next to him are two men in blue work shirts and red helmets. In the background are trees.", - "id": 29979 - }, - { - "image_path": "G:\\images\\combined\\004087_jpg.rf.ffc184a4aa50d6c7f8e09bf27535090b.jpg", - "response": "The image shows a group of workers inside a large tunnel. They are all wearing hard hats and some are wearing orange hard hats while others are wearing blue. One of the workers is holding a large tool in his hands while the others are holding onto a large pipe.", - "id": 29980 - }, - { - "image_path": "G:\\images\\combined\\004088_jpg.rf.d9debd62de10d12bbf320c9893b61e17.jpg", - "response": "In the image there is a large group of people wearing hard hats and sitting around tables with food and bowls. Some people are wearing orange hard hats and some are wearing white hard hats. There are many cars parked around the area and a few umbrellas set up. Some people are standing around and eating while others are sitting and eating.", - "id": 29981 - }, - { - "image_path": "G:\\images\\combined\\004089_jpg.rf.a231bc5949437670664c5e034232c831.jpg", - "response": "The picture shows a snowy mountain with trees and a blue sky. In the foreground, there are three men shaking hands. Two of them are wearing black suits and red helmets, while the other one is wearing a black suit and a blue helmet. The man on the left is also wearing a black suit, but he is only wearing a red helmet. They are all shaking hands.", - "id": 29982 - }, - { - "image_path": "G:\\images\\combined\\004090_jpg.rf.827425ea0752ecdd804a54b207e40faf.jpg", - "response": "A worker in a hard hat and orange overalls sprays down the side of a large ship with a red and black hose. The ship is grey and has a white streak down the middle of it. In the background there is a large ship with a white superstructure and a dark grey hull. There are several people visible on the ship and a large crane is visible on the left hand side.", - "id": 29983 - }, - { - "image_path": "G:\\images\\combined\\004091_jpg.rf.92038644253b790c632815644916adc2.jpg", - "response": "A group of four people working at a construction site.", - "id": 29984 - }, - { - "image_path": "G:\\images\\combined\\004092_jpg.rf.557c8f4f581d82e15be832288f596d35.jpg", - "response": "A group of men standing around a map.", - "id": 29985 - }, - { - "image_path": "G:\\images\\combined\\004093_jpg.rf.538b8e147d9cf28585819cb59579eb8a.jpg", - "response": "In the image there are two people standing in a construction site. The woman on the right is wearing a yellow safety vest and a blue helmet. She is holding a plan in her hands and is smiling. The man on the left is wearing a red helmet and a yellow safety vest. They are both looking at the plan. The floor around them is wet and there are large pools of water. There are also some cranes working in the background.", - "id": 29986 - }, - { - "image_path": "G:\\images\\combined\\004095_jpg.rf.838ac52c8fc37b8ab37833900b2638db.jpg", - "response": "A man in a white hard hat is holding a device while two other men watch.", - "id": 29987 - }, - { - "image_path": "G:\\images\\combined\\004096_jpg.rf.01f7d6d197b468b730d7a34aba40032c.jpg", - "response": "The image shows two workers wearing orange vests standing on a railway. They are holding a long wooden beam above their heads and are in the process of placing it on the tracks. The sky is overcast and there are a few clouds in the sky. The workers are in the foreground and the railway tracks are in the middle ground with some gravel scattered around. In the background, there is a building with a red roof and a church steeple in the far distance.", - "id": 29988 - }, - { - "image_path": "G:\\images\\combined\\004097_jpg.rf.035c1de7087c438de4422052afd0b3c0.jpg", - "response": "An electrician is working on power lines in a white sky. He is wearing a blue helmet and is sitting on a power box. There are many wires and cables in the scene.", - "id": 29989 - }, - { - "image_path": "G:\\images\\combined\\004098_jpg.rf.1ac9c9d3ad579071617daad58018f724.jpg", - "response": "The photo shows a group of men walking together. They are all wearing white safety helmets. Some of them are wearing suits, and one of them is wearing a white shirt and grey shorts. They are walking on a walkway between two buildings that are under construction. To the right of the walkway, there is a yellow and red advertisement.", - "id": 29990 - }, - { - "image_path": "G:\\images\\combined\\004099_jpg.rf.dc073cb4e9eb3dfe2218e5123932762d.jpg", - "response": "A man in a blue hard hat is sitting on a concrete slab atop a utility pole. He is wearing a blue shirt and blue pants. There is a yellow ladder leaning against the pole and a sign on the side of the pole. The sky is overcast.", - "id": 29991 - }, - { - "image_path": "G:\\images\\combined\\00409_jpg.rf.b76a0d2e3ea56b1565a005d7146e3941.jpg", - "response": "A man in a grey shirt and grey pants is standing in front of a construction site. He is wearing a grey hat and a grey shirt. He is holding a cell phone in his right hand and a small object in his left hand.", - "id": 29992 - }, - { - "image_path": "G:\\images\\combined\\0040a7bee9e9acf0.jpg", - "response": "A close up of a book on a wooden table. The book is a large hardcover book with a bright red cover. The title of the book is \"New Machina\" and it is written in black. There is a large red flower on the cover with two green dots in the center of it. The flower has a stem that goes through the center of the book. The book has a band running along the top with pictures of people. The book is sitting on a wooden table.", - "id": 29993 - }, - { - "image_path": "G:\\images\\combined\\0040aa9c1660068e.jpg", - "response": "A blue and yellow train engine is on the tracks in front of a brick building.", - "id": 29994 - }, - { - "image_path": "G:\\images\\combined\\0040f82025f05b6c.jpg", - "response": "A book is open and displayed on a shelf.", - "id": 29995 - }, - { - "image_path": "G:\\images\\combined\\004100_jpg.rf.66216cf1eb048e0947a031a6030d1d72.jpg", - "response": "The image shows a group of men standing in a large, unfinished room. The men are wearing hard hats and some are wearing light-colored, short-sleeved shirts. One man is holding a cell phone to his ear. The floor is white and the walls are bare. There are a few people in the background and a sign on the wall reads \"Luyuan Energy Group\".", - "id": 29996 - }, - { - "image_path": "G:\\images\\combined\\004101_jpg.rf.34bcf81a3619da0c8c24706e47e7877d.jpg", - "response": "A man wearing a blue hard hat and work gloves is using a jack-hammer to cut through a concrete step. Another person is visible in the background, standing on the concrete step. The jack-hammer is being used on the ground, with a pile of concrete dust visible around it. The photo is taken from a side angle, with the man's legs visible below the image frame.", - "id": 29997 - }, - { - "image_path": "G:\\images\\combined\\004102_jpg.rf.e74442729a026b69b2e5615494f4dd00.jpg", - "response": "In the image there are two men dressed in orange jumpsuits and white hard hats. They are standing on a staircase in a large building. One of the men is holding a clipboard.", - "id": 29998 - }, - { - "image_path": "G:\\images\\combined\\004104_jpg.rf.9f69bf9ad0516dcc13340b62ced45f0b.jpg", - "response": "A man wearing a red helmet and a tool belt is working on a construction site. He is climbing a ladder and has a rope attached to his waist. He is wearing a blue shirt and jeans.", - "id": 29999 - }, - { - "image_path": "G:\\images\\combined\\004105_jpg.rf.39f44bed8bea71113ad85054831b1609.jpg", - "response": "A group of men in hard hats are walking through a room. Some of the men are wearing white hard hats, some are wearing blue and some are wearing white. They are all wearing badges around their necks. In the background there is a table with a whiteboard on it.", - "id": 30000 - }, - { - "image_path": "G:\\images\\combined\\004106_jpg.rf.9b8efdbd7f115bfe2faf5d4b67753849.jpg", - "response": "The image shows three workers in yellow jackets and orange helmets working on power lines. They are on cherry pickers, and one of the workers is handing another worker a tool. The sky is overcast.", - "id": 30001 - }, - { - "image_path": "G:\\images\\combined\\004108_jpg.rf.c0f04ade34981ff9bc333c8efe188ca6.jpg", - "response": "A couple of men in orange suits standing in a mine.", - "id": 30002 - }, - { - "image_path": "G:\\images\\combined\\004109_jpg.rf.fcb516d3734fa078d57e4e5683e9f014.jpg", - "response": "A group of people standing around a man wearing a hard hat and a tie.", - "id": 30003 - }, - { - "image_path": "G:\\images\\combined\\004110_jpg.rf.4aa5ed338f40f0a4e5d95040e2b887a5.jpg", - "response": "In the image two workers are seen working on an electricity tower. They are wearing yellow helmets and are seen wearing white uniforms. The tower has many electric wires and electric current transformer.", - "id": 30004 - }, - { - "image_path": "G:\\images\\combined\\004111_jpg.rf.c4be485c091fdb2e3791bfa486b6cf64.jpg", - "response": "A construction worker(371,363),(606,781) digging in the ground", - "id": 30005 - }, - { - "image_path": "G:\\images\\combined\\004112_jpg.rf.731bc8b61c060d2de059998225ed0087.jpg", - "response": "A group of men in white protective clothing and hard hats are cutting a tree with a chainsaw. They are all holding the tree together with their hands. The tree is being held up by two men at the bottom and one man at the top. The men are standing on a steep slope with the tree.", - "id": 30006 - }, - { - "image_path": "G:\\images\\combined\\004113_jpg.rf.138df23714e696485cc5a7cace276e04.jpg", - "response": "A man and a woman construction workers sitting on cinder blocks having a drink in hard hats and work clothes.", - "id": 30007 - }, - { - "image_path": "G:\\images\\combined\\004114_jpg.rf.68b5fb26b0417484b695454d96f6da0f.jpg", - "response": "In the image a man is working in a narrow passage, he is standing on a ladder and holding a tool in his hand. He is wearing a green uniform and a yellow helmet. The wall to his left is a stone wall and the wall to his right is a concrete wall. The passage he is in is a very narrow and low passage.", - "id": 30008 - }, - { - "image_path": "G:\\images\\combined\\004115_jpg.rf.087152d0320d444576235ec9fe39f1fe.jpg", - "response": "The photo shows workers repairing a water main on the corner of a street. There are two workers, one on the left and one on the right, and both are wearing orange safety vests. In the middle of the street, there is a machine with two wheels and a long arm with a circular blade at the end, which appears to be cutting through the pavement. There is also a person on the right side of the photo, wearing all black and facing away from the camera. The photo is taken at night, as evidenced by the darkness of the street.", - "id": 30009 - }, - { - "image_path": "G:\\images\\combined\\004117_jpg.rf.3c6360083dc19c6b1ff5757f6b8f9c6b.jpg", - "response": " Two men(474,234),(529,331)(662,714),(746,958) on a platform(450,267),(592,345) in the air surrounded by trees(2,6),(995,999)", - "id": 30010 - }, - { - "image_path": "G:\\images\\combined\\004118_jpg.rf.7d2db01b81e8fd3bc5fdf0f62a880f69.jpg", - "response": "A group of people wearing hard hats are gathered around a man in a white shirt and brown jacket. The man in the white shirt is pointing to something in the distance. In the background, there are green trees.", - "id": 30011 - }, - { - "image_path": "G:\\images\\combined\\00411_jpg.rf.83b425f98ab56d593457d585db6e9bc2.jpg", - "response": "The image shows three men in safety gear walking together. They are all wearing hard hats and reflective vests. The man on the left is taller and has his hands in his pockets. The man in the middle has a beard and is wearing a yellow vest. The man on the right is shorter and is wearing a black suit. They are all walking on a bridge that is under construction. The sky is grey and overcast.", - "id": 30012 - }, - { - "image_path": "G:\\images\\combined\\00411_jpg.rf.b7421e855f216ea021b9cdebf838b460.jpg", - "response": "Three men in safety gear walking in front of a bridge.", - "id": 30013 - }, - { - "image_path": "G:\\images\\combined\\004120_jpg.rf.60d2324d84bdad04ce255fda81442929.jpg", - "response": "A group of men standing around a large piece of machinery.", - "id": 30014 - }, - { - "image_path": "G:\\images\\combined\\004123_jpg.rf.339135c19e7bbd2c893066d8996791fb.jpg", - "response": "The image shows two workers in white and blue uniforms and blue helmets, who are repairing power lines. They are wearing safety harnesses and are focused on their task. One worker is standing on a ladder and is repairing a power line, while the other worker is helping him and is also holding a tool. The sky is blue and there are some leaves of a tree in the foreground.", - "id": 30015 - }, - { - "image_path": "G:\\images\\combined\\004124_jpg.rf.cf44d50578d1ec478a111403126dba95.jpg", - "response": "A group of three men sitting in front of a red wall.", - "id": 30016 - }, - { - "image_path": "G:\\images\\combined\\004125_jpg.rf.1b5a92687b32c85ac9e369d2500c142f.jpg", - "response": "A man in a suit is speaking to a crowd of people. They are all wearing suits and standing on a wooden platform. In the background, there are several red buildings.", - "id": 30017 - }, - { - "image_path": "G:\\images\\combined\\004126_jpg.rf.1ed25156827e03b2eae2e05c533bc6bb.jpg", - "response": "A man in an orange shirt and blue hat is on a telephone pole. He is wearing a tool belt and is in the process of climbing the pole. There are multiple wires attached to the pole and the man is reaching for one of them. The sky is blue and clear in the background.", - "id": 30018 - }, - { - "image_path": "G:\\images\\combined\\004127_jpg.rf.4f524da6897ee8fd06b8d6b4c0b9a2de.jpg", - "response": "The image shows two men standing in front of a large, red, metal wall, which appears to be a part of a factory. The men are looking at a blueprint together, and both are wearing white helmets. The man on the left is holding the blueprint, and the one on the right is slightly behind him. Both men are dressed in a workman's uniform of dark clothing.", - "id": 30019 - }, - { - "image_path": "G:\\images\\combined\\004128_jpg.rf.ed61994ec5a5e8912951cf41c73038e0.jpg", - "response": "In the image there is a worker standing in front of a foundry with a large amount of fire and smoke. The worker is wearing a white shirt, a grey vest, black pants and a yellow helmet. The worker is also holding a water gun. The background shows a red hot metal furnace with a bright yellow flame and smoke.", - "id": 30020 - }, - { - "image_path": "G:\\images\\combined\\004129_jpg.rf.84fd795ff1306c246ac39d206b72b6b5.jpg", - "response": "The image shows two workers in grey winter gear clearing ice and snow from power lines. They are standing on a ladder and using ice axes to cut and remove the frozen ice. The ice has formed on the power lines and is also covering the nearby trees.", - "id": 30021 - }, - { - "image_path": "G:\\images\\combined\\004130_jpg.rf.c66a756e4341863a70283afcdd718cc3.jpg", - "response": "A group of four people standing in a unfinished building wearing hard hats.", - "id": 30022 - }, - { - "image_path": "G:\\images\\combined\\004131_jpg.rf.43a8db99d08538e2bfbfb1d286901358.jpg", - "response": "The image shows two men standing together on a construction site, looking at blueprints. They are both wearing hard hats. One man is on the left side of the image, and he is wearing a plaid shirt and blue jeans. The other man is standing to his right and is wearing a red hard hat and a light blue shirt. They are both closely examining the blueprints, which are placed on a table in front of them.", - "id": 30023 - }, - { - "image_path": "G:\\images\\combined\\004132_jpg.rf.e721dff3be0d00a107df2f8a2f4822ba.jpg", - "response": "A group of men standing in front of a building under construction.", - "id": 30024 - }, - { - "image_path": "G:\\images\\combined\\004133_jpg.rf.5a1862710670813c4bf73ded53665329.jpg", - "response": "Two men in orange shirts and hard hats are standing on a roof with solar panels. One man is looking at the solar panels while the other man is looking to the right.", - "id": 30025 - }, - { - "image_path": "G:\\images\\combined\\004134_jpg.rf.901f37b4c60cb0093efa0a189c3fe28b.jpg", - "response": "A construction site with two men working on it.", - "id": 30026 - }, - { - "image_path": "G:\\images\\combined\\004136_jpg.rf.70ade99d07cb2ceea2492adb538fdf45.jpg", - "response": "A man in a red hard hat holding a stack of wood.", - "id": 30027 - }, - { - "image_path": "G:\\images\\combined\\004137_jpg.rf.7cd8c8d3dde58d32cbe96f2fdab2a9d6.jpg", - "response": "A worker in a yellow hat and jacket is on a yellow ladder, working on a power box in a dark room. The worker is using a small flashlight to illuminate the work area. There are several wires and cables visible in the room, both near the worker and extending from the power box. The wall next to the power box is made of concrete blocks and has a white sheet covering it.", - "id": 30028 - }, - { - "image_path": "G:\\images\\combined\\004138_jpg.rf.65f8ac7f13f7e1432728a3d243b0e038.jpg", - "response": "A group of people standing around talking.", - "id": 30029 - }, - { - "image_path": "G:\\images\\combined\\004139_jpg.rf.0db49c308255f976119e777ffae58543.jpg", - "response": "A man in a yellow jacket and orange hard hat is standing in front of a large metal structure. He is holding a tablet and looking into the camera.", - "id": 30030 - }, - { - "image_path": "G:\\images\\combined\\004140_jpg.rf.98998dc43256a32ecef6ad0db58e22ce.jpg", - "response": "A group of men standing around a construction site.", - "id": 30031 - }, - { - "image_path": "G:\\images\\combined\\004141_jpg.rf.e577fd7eef830c0d6e53a7c6fa8186ab.jpg", - "response": "The image shows a construction site where workers are busy. There are three workers in the image, all wearing yellow and green reflective jackets. They are working on a building that has wooden beams and metal rebar. The workers are positioned at different points on the building, with one on the left side, one in the middle, and one on the right side of the image. The workers are wearing helmets, with two of them wearing yellow helmets and one wearing a white helmet. The workers are also wearing boots, with two of them wearing yellow boots and one wearing black boots.", - "id": 30032 - }, - { - "image_path": "G:\\images\\combined\\004142_jpg.rf.a11e18ca0b522bf42554786fd231660c.jpg", - "response": "A worker is welding a steel bar on the construction site. (Photo/\u5357\u56fd\u4eca\u62a5)", - "id": 30033 - }, - { - "image_path": "G:\\images\\combined\\004144_jpg.rf.490656ccb71f71a58c54be3222e8fe95.jpg", - "response": "A worker in a yellow hard hat and blue uniform is working on an electrical component.", - "id": 30034 - }, - { - "image_path": "G:\\images\\combined\\004145_jpg.rf.4523b4c788d96d73cd351505ec4fd1ef.jpg", - "response": "A man in a suit and hard hat talking to a man in a construction vest and hard hat. They are standing in front of a shipping yard with a red trailer and a large crane in the background.", - "id": 30035 - }, - { - "image_path": "G:\\images\\combined\\004146_jpg.rf.884d56c10d7c6bbe75519cbb8d18dc5d.jpg", - "response": "The image shows two men sitting on beige armchairs in a room with a red and black dragon patterned wallpaper. The two men are dressed in black suits. One man is sitting on the left side of the image and the other on the right side of the image. They are both looking at each other and smiling. There is a low table between them with two cups and two red and white vases on it. The background also features a large red and black dragon painting.", - "id": 30036 - }, - { - "image_path": "G:\\images\\combined\\004147_jpg.rf.b3b20a7ce25df36546e9a539690c1da6.jpg", - "response": "A couple of workers in orange and white are working on a transformer. They are both wearing blue helmets. The sky is grey and overcast.", - "id": 30037 - }, - { - "image_path": "G:\\images\\combined\\004148_jpg.rf.a87881810afec6750d2fb415f53fafb5.jpg", - "response": "The image shows two construction workers sitting on a metal structure, which appears to be a part of a bridge under construction. Both of them are wearing yellow hard hats and gray shirts. The man on the left is holding a cell phone in his hands. They are both looking to their right, towards the right side of the image. In the background, there is a red tower crane operating in the construction site. The sky is blue with clouds.", - "id": 30038 - }, - { - "image_path": "G:\\images\\combined\\004149_jpg.rf.cd0c2b9c7315bb71b811cc34eaf8b770.jpg", - "response": "A worker stands next to a tunnel boring machine (TBM) at the construction site of the", - "id": 30039 - }, - { - "image_path": "G:\\images\\combined\\004150_jpg.rf.d880403ca357ca68dda17908106fe596.jpg", - "response": "A group of men in white shirts and hard hats are gathered around a computer screen. They are all wearing ties.", - "id": 30040 - }, - { - "image_path": "G:\\images\\combined\\004151_jpg.rf.0c877c88d29694f9f52e1ac1ab59c51a.jpg", - "response": "A group of men in work clothes and hard hats are working on an electricity pylon in a wooded area. They are all wearing blue hard hats.", - "id": 30041 - }, - { - "image_path": "G:\\images\\combined\\004152_jpg.rf.3a0695e1fe58093a13cc5c79dd7b6292.jpg", - "response": "Some construction workers are working on a large pile of dirt. In the background there is a large building under construction.", - "id": 30042 - }, - { - "image_path": "G:\\images\\combined\\004153_jpg.rf.ca2b861f26687249cee718f81098b7ea.jpg", - "response": "In the image there is a worker wearing a hard hat and blue coveralls. The worker is in a factory setting and is looking at a piece of machinery. The machinery is a large piece of equipment with a rounded top and a middle section that is open and has a large circular piece of machinery inside. The worker is standing in front of the machinery and is holding a tool. The factory floor is yellow and the walls are green. There are also some other workers in the background.", - "id": 30043 - }, - { - "image_path": "G:\\images\\combined\\004154_jpg.rf.d0d603e7eda6c77a15004f44c22e76ae.jpg", - "response": "A group of workers in blue uniforms and safety gear are working on an oil or water well. They are standing around the well, which is a metal structure with a red truck in the background. There are also some tools around the well, such as a shovel and a broom.", - "id": 30044 - }, - { - "image_path": "G:\\images\\combined\\004155_jpg.rf.85592f20a3d477cc6e8bf270aef80411.jpg", - "response": "A group of linemen are working on power lines.", - "id": 30045 - }, - { - "image_path": "G:\\images\\combined\\004156_jpg.rf.be8502f763b805f371142f2c3278b332.jpg", - "response": "A worker in a red hat and white outfit is standing next to a large green and yellow machine. They are holding a red tool and appear to be making adjustments to the machine. The worker are in a room with a concrete floor and walls painted a dark grey. There is a red tool that the worker is holding.", - "id": 30046 - }, - { - "image_path": "G:\\images\\combined\\004157_jpg.rf.9cf16e33b51d37ad1ad3fd15b17bcecc.jpg", - "response": "In the image two men are talking about the blueprints in front of a yellow bulldozer. Both men are wearing hard hats. One man is wearing a red hard hat and a white shirt and is on the right side of the image. The other man is wearing a yellow hard hat and a striped red and blue shirt and is in the center of the image. The bulldozer is in the background on the left side of the image.", - "id": 30047 - }, - { - "image_path": "G:\\images\\combined\\004158_jpg.rf.b1e700e6d6263c8b82e1a666b4be12e9.jpg", - "response": "A construction worker operating a piece of machinery on a city street.", - "id": 30048 - }, - { - "image_path": "G:\\images\\combined\\004159_jpg.rf.622180a10a58333d827a9d92b9c08af9.jpg", - "response": "A pair of workers are installing glass on a skyscraper.", - "id": 30049 - }, - { - "image_path": "G:\\images\\combined\\00415a985d812ecd.jpg", - "response": "A black, scuffed manual for a Super Nintendo game called Dog Squadron. The cover features a pilot in a jet with the words \"Dog Squadron\" in red above them.", - "id": 30050 - }, - { - "image_path": "G:\\images\\combined\\004160_jpg.rf.6982babcdb646caf0470ba3832caa504.jpg", - "response": "a group of men standing in front of a building", - "id": 30051 - }, - { - "image_path": "G:\\images\\combined\\004161_jpg.rf.5b2038a94d1570d14ff149db883c30ca.jpg", - "response": " two men(458,40),(740,480)(374,478),(788,793) in a hole in the ground", - "id": 30052 - }, - { - "image_path": "G:\\images\\combined\\004162_jpg.rf.7f3febf7d54c398fab3607b90cf9bf94.jpg", - "response": "A man and woman in safety gear look at a clipboard while a third person watches.", - "id": 30053 - }, - { - "image_path": "G:\\images\\combined\\004163_jpg.rf.8d017067572292b37b1514a59e5a7775.jpg", - "response": "A worker in a blue uniform and red helmet is hugging a light pole.", - "id": 30054 - }, - { - "image_path": "G:\\images\\combined\\004164_jpg.rf.b358fb1be4e643a3b89b7a8eada635b2.jpg", - "response": "A man wearing a safety helmet and orange vest is using a chainsaw to cut through a tree trunk. The man is standing in a clearing with trees in the background. There is saw dust in the air and tree branches on the ground.", - "id": 30055 - }, - { - "image_path": "G:\\images\\combined\\004165_jpg.rf.be47457507f29421104029ff453b78ac.jpg", - "response": "A group of men in suits and hard hats stand in front of a construction site. In the background, there are several cranes and piles of concrete.", - "id": 30056 - }, - { - "image_path": "G:\\images\\combined\\004166_jpg.rf.6be1c3c9577d4e5211ede1937d0bfcb9.jpg", - "response": "The image shows three workers in yellow helmets who are carrying a large piece of metal on their shoulders and walking up a hill. The workers are all wearing blue overalls. One is on the left, the other on the right, and the third in the middle. In the background, there is a mountain in the distance with a white cloud in the sky. On the right side of the image, there is a red fence with a white border.", - "id": 30057 - }, - { - "image_path": "G:\\images\\combined\\004167_jpg.rf.610836a73b27cd86ca88ac02f412bdbd.jpg", - "response": "A group of men standing around and talking.", - "id": 30058 - }, - { - "image_path": "G:\\images\\combined\\004168_jpg.rf.4dfe2bc6fa1102b1087629db2664171a.jpg", - "response": "The image shows two men in suits and hard hats standing on a construction site. The man on the left is pointing to something to the left of the frame, and the man on the right is holding a large sheet of plans in his hands. Both men are wearing yellow and red hard hats. The background contains a partially constructed building and some scaffolding.", - "id": 30059 - }, - { - "image_path": "G:\\images\\combined\\004169_jpg.rf.f7ab7c852a53d2ca18c169c3969ad298.jpg", - "response": "In the image there are two workers in the foreground, both wearing orange. They are working on a large metal object, which is most likely a piece of machinery. The metal object is bolted to a concrete foundation. In the background, there is an oil well with a large red pump. The sky is overcast and there are some mountains in the distance.", - "id": 30060 - }, - { - "image_path": "G:\\images\\combined\\004170_jpg.rf.d6da2dcddbddaf32dd283b46cb8a7bd2.jpg", - "response": "A group of people working on a ship in the water.", - "id": 30061 - }, - { - "image_path": "G:\\images\\combined\\004171_jpg.rf.8fa19a7eb14c7916f926e8e3743bbefd.jpg", - "response": "A group of workers in blue uniforms and hard hats are sitting on the ground, some have their feet up and are chatting. They are sitting on the ground, and there is a bottle of water on the ground in front of them. There is a cup on the ground to the left of the group and a bottle of beer to the right of the group. In the background, there is a banner with Chinese characters on it.", - "id": 30062 - }, - { - "image_path": "G:\\images\\combined\\004173_jpg.rf.a59d11aba80cdbe94d4d0b88d80d5b5f.jpg", - "response": "A crane is lifting a large metal bird into the air. The bird is in the process of being installed.", - "id": 30063 - }, - { - "image_path": "G:\\images\\combined\\004174_jpg.rf.1d9b60f90518db24791850e0fe141f2b.jpg", - "response": "In the image there are two construction workers in yellow helmets who seem to be working on a construction site. They are surrounded by iron rods and concrete. On the left side of the image, a yellow ladder is placed against a wall and a piece of iron is sawed off. On the right side of the image, a concrete mixer is placed and a hose is connected to it. The wall next to the workers is in a poor condition and seems to be ready to collapse.", - "id": 30064 - }, - { - "image_path": "G:\\images\\combined\\004175_jpg.rf.c10776e64a963450811fb011282b2436.jpg", - "response": "An engineer in a hard hat crouches down next to a large piece of machinery. He is holding a small device in his right hand and is looking at it. The background is a greyish-blue color.", - "id": 30065 - }, - { - "image_path": "G:\\images\\combined\\0041761f98d08f66.jpg", - "response": "A blurry image of a pepsi cup sitting on a table.", - "id": 30066 - }, - { - "image_path": "G:\\images\\combined\\004176_jpg.rf.b4a543aaaf16a26dbd6ad60fa9848eae.jpg", - "response": "A group of three men working on an oil pump.", - "id": 30067 - }, - { - "image_path": "G:\\images\\combined\\004177_jpg.rf.f7ab1eda6d6be2b0a60f3b38c03f5050.jpg", - "response": "A miner is seen working at a coal mine in China's Shanxi province.", - "id": 30068 - }, - { - "image_path": "G:\\images\\combined\\004178_jpg.rf.0e206e1bb6d7f4f0e2bb44440d563f57.jpg", - "response": "A group of three men working on a boat in the water.", - "id": 30069 - }, - { - "image_path": "G:\\images\\combined\\004179_jpg.rf.7941b1308ece34de75aa768ad4e9f58b.jpg", - "response": "The image shows a group of workers in orange vests and helmets working on clearing bags of soil and other materials next to a dirt road. They are standing near a pile of bags and appear to be in the process of clearing them. In the background, there is a tunnel and a pile of construction materials.", - "id": 30070 - }, - { - "image_path": "G:\\images\\combined\\00417_jpg.rf.6bf661bdf568677a72662b14d862be60.jpg", - "response": "A man wearing a white hard hat and a blue shirt is speaking to a reporter. The man is wearing a white hard hat and has a mustache. He is standing in front of a yellow construction site with a sign that says \"\u5927\u6e7e\u94c1\u8def\". There is a yellow tower in the background.", - "id": 30071 - }, - { - "image_path": "G:\\images\\combined\\00417_jpg.rf.b207fa843335bd5914b3c954a70b9cfd.jpg", - "response": "A man wearing a white hard hat and a blue shirt is speaking to a reporter. The man is wearing a white hard hat and has a mustache. He is standing in front of a yellow construction site with a sign that says \"\u5927\u6e7e\u94c1\u8def\". There is a yellow tower in the background.", - "id": 30072 - }, - { - "image_path": "G:\\images\\combined\\004180_jpg.rf.d0ecc5caeac470ec41a659960ccec2eb.jpg", - "response": "A group of men working on a building site on a cliff side.", - "id": 30073 - }, - { - "image_path": "G:\\images\\combined\\004181_jpg.rf.480440bb407ad3d7e64aedf377e41e99.jpg", - "response": "A group of workers are seen carrying a large metal beam up a steep hill. They are all wearing hard hats and work clothes. In the background, there is a city visible.", - "id": 30074 - }, - { - "image_path": "G:\\images\\combined\\004182_jpg.rf.b6823ce715f21f2e850336673b3c5245.jpg", - "response": "A man in a red hard hat is working on a counter in a room that is under construction. There is another person in the background. The walls are bare and the floor is unfinished. There are several tools on the floor, including a hammer, a level, and a bucket. There is also a piece of wood sitting on the counter.", - "id": 30075 - }, - { - "image_path": "G:\\images\\combined\\004183_jpg.rf.6233ac30a59c981b4343ef7617aebc8e.jpg", - "response": "A group of rescue workers in orange uniforms and white helmets are working on a construction site. There are several workers in the scene, some are working on the rubble of a building, and others are standing on the site. The workers are wearing orange uniforms and white helmets. They are using tools such as crowbars and shovels to clear debris and search for survivors. The site is surrounded by barbed wire fencing to keep people away.", - "id": 30076 - }, - { - "image_path": "G:\\images\\combined\\004184_jpg.rf.da0c2dc8be870112760332127baa0bfd.jpg", - "response": "In the image there are two people working on a machine. The people are wearing yellow hard hats, grey jumpsuits and orange safety shoes. The machine they are working on is silver and grey and is located in a room with pipes on the ceiling.", - "id": 30077 - }, - { - "image_path": "G:\\images\\combined\\004185_jpg.rf.5dff2c945314abb2d225371399206a98.jpg", - "response": "A couple of men working on a large transformer.", - "id": 30078 - }, - { - "image_path": "G:\\images\\combined\\004186_jpg.rf.fa0c7d3e97a85d7f0e02671b5e8b3df6.jpg", - "response": "A group of men standing around a construction site.", - "id": 30079 - }, - { - "image_path": "G:\\images\\combined\\004187_jpg.rf.e4fc602df26f365bd83cfaa58c8d615b.jpg", - "response": "A construction site with a tall building under construction. The building is made of concrete and has a cage-like structure on the outside. There is a worker in a yellow helmet standing in front of the building, and a few more workers are in the site. There are also a few trucks and a crane.", - "id": 30080 - }, - { - "image_path": "G:\\images\\combined\\004188_jpg.rf.3f8b3e0b4395bce2f755ef329ecdb4b6.jpg", - "response": "A man in a red and blue striped shirt and yellow hard hat smoking a cigarette.", - "id": 30081 - }, - { - "image_path": "G:\\images\\combined\\004189_jpg.rf.1133c7400ede57b857b474a1fa0707ba.jpg", - "response": "A man in a grey shirt is standing in front of a group of other men. They are all standing in front of a blue fence and a red and white barricade. In the background there is a mountain. The man in the grey shirt has his hands behind his back and is looking to the left.", - "id": 30082 - }, - { - "image_path": "G:\\images\\combined\\004190_jpg.rf.1522f0b149ba141f9f5e4cdaaa33da77.jpg", - "response": "A group of four men dressed in high visibility vests and hard hats are standing on a construction site. They are all holding a clipboard and looking at the paper on it.", - "id": 30083 - }, - { - "image_path": "G:\\images\\combined\\004191_jpg.rf.3c8d4b9ab90bf78f679df4b7211fa165.jpg", - "response": "A group of men are working on power lines in the snow.", - "id": 30084 - }, - { - "image_path": "G:\\images\\combined\\004192_jpg.rf.0a56443d5bda5945ca267be041af4658.jpg", - "response": "In the image two workers are seen working on a railway line. The railway is seen from the middle and is grey in color. It has railway tracks on both sides. The workers are seen wearing orange uniforms and are wearing blue helmets. One worker is seen on the left and the other on the right. They are holding tools in their hands. There is a truck visible at the far end of the railway line.", - "id": 30085 - }, - { - "image_path": "G:\\images\\combined\\004193_jpg.rf.eaa338051c2d1abeb275e9bccd4da019.jpg", - "response": "A group of men in suits standing in front of a gate that says, \\\"\u7cbe\u81f4\u9c81\u8fdb,\u6210\u5c31\u4eba\u624d\u68a6\u60f3,\u52c7\u6500\u897f\u5317\u5fb7\u8005\u897f\u5357\u5317\\\".", - "id": 30086 - }, - { - "image_path": "G:\\images\\combined\\004194_jpg.rf.77ee73c17fc0bb52080f7859cc9470c6.jpg", - "response": "A man wearing a red hat and no shirt is using a shovel to dig into the ground. He is standing in a construction area with a pile of dirt next to him. In the background, there is a tall building.", - "id": 30087 - }, - { - "image_path": "G:\\images\\combined\\004195_jpg.rf.31f6a8ebbd24277fabcc899288a896b0.jpg", - "response": "A construction worker digging up the ground with a shovel.", - "id": 30088 - }, - { - "image_path": "G:\\images\\combined\\004196_jpg.rf.48a2265528af30d12dda26f5d7dcfb08.jpg", - "response": "The image shows two men working on an oil drilling rig. They are wearing orange work suits and red helmets. One man is on the left and is pulling on a cable while the other man is on the right and is holding a large metal pipe. They are both looking at the pipe. In the background, there is a white building with a wooden frame. The ground is covered in dirt and mud.", - "id": 30089 - }, - { - "image_path": "G:\\images\\combined\\004197_jpg.rf.ea9ef77dda716ef0964e7ade3fc794b3.jpg", - "response": "A close-up of a piece of equipment is shown with a mountain in the background.", - "id": 30090 - }, - { - "image_path": "G:\\images\\combined\\004198_jpg.rf.f65bdf915227a20766e0dcd55b0577cd.jpg", - "response": "A man wearing a hard hat and work clothes is working on a street light. He is leaning over and appears to be adjusting a metal piece on the side of the pole. The sky is blue behind him.", - "id": 30091 - }, - { - "image_path": "G:\\images\\combined\\004199_jpg.rf.524648ae5a421923cdeeb16a23d16252.jpg", - "response": "A group of people walking across a construction site.", - "id": 30092 - }, - { - "image_path": "G:\\images\\combined\\00419_jpg.rf.75ea982fa8fd31ffede8caa505a69f5c.jpg", - "response": "A man and woman are standing with a construction worker. They are all holding a blueprint and smiling. The walls are bare and the room is full of furniture.", - "id": 30093 - }, - { - "image_path": "G:\\images\\combined\\00419_jpg.rf.899934c254f1d35c80481fff7a7f3619.jpg", - "response": "A man and woman are standing with a construction worker who is holding a rolled up blueprint. They are all smiling at the camera. The walls are bare and the room is in the process of being built.", - "id": 30094 - }, - { - "image_path": "G:\\images\\combined\\004200_jpg.rf.23a41bc335e6a598680eeaa8fbb153e3.jpg", - "response": "A group of people standing in front of a mountain.", - "id": 30095 - }, - { - "image_path": "G:\\images\\combined\\004201_jpg.rf.0c55671a82cca4c3f21a264a7af664e9.jpg", - "response": "The image shows a construction site with several people working. There is a large building in the background and a concrete floor with steel rebar in the foreground. Some of the steel rebar is laid out in a grid pattern, while other sections are tangled together. A few people are standing in the concrete floor area, with one person wearing a yellow hard hat and another person wearing a white hard hat. There is a person on the far left wearing a red helmet and another person wearing a yellow shirt further back in the scene. In the background, there is a large building that looks like it's in the middle of construction.", - "id": 30096 - }, - { - "image_path": "G:\\images\\combined\\004202_jpg.rf.168607e684653e55ae2cab5529bafad6.jpg", - "response": "A man in an orange vest and blue hat is on a telephone pole at night.", - "id": 30097 - }, - { - "image_path": "G:\\images\\combined\\004203_jpg.rf.9a5c24dc58be027f330de48e3056d3d7.jpg", - "response": "A construction worker in a red jacket and hat is working on a building. There are several buckets and a large spool of wire on the ground. The worker is kneeling down and working on something. The sun is shining on the building and the worker.", - "id": 30098 - }, - { - "image_path": "G:\\images\\combined\\004205_jpg.rf.444d7847551eb34a2e5124fd901e6a3e.jpg", - "response": "A man in a yellow hard hat is measuring a wall.", - "id": 30099 - }, - { - "image_path": "G:\\images\\combined\\004206_jpg.rf.20f7b87f905bb7c2f1d200fbd04dfd0c.jpg", - "response": "A construction site with two workers wearing yellow vests and hard hats.", - "id": 30100 - }, - { - "image_path": "G:\\images\\combined\\004208_jpg.rf.bcb11cd1946d8d6d31ace847697fe1d5.jpg", - "response": "An electrician and an apprentice work on a circuit board.", - "id": 30101 - }, - { - "image_path": "G:\\images\\combined\\004209_jpg.rf.94325401ac4d8a97a21fd9f5266c6dc5.jpg", - "response": "A construction site with three men in yellow and green jackets and one man in a blue jacket. They are wearing hard hats and the men in the middle and the one on the right are holding papers. There is a drill in the middle man's hand. The room they are in has a concrete floor and walls and a window in the background.", - "id": 30102 - }, - { - "image_path": "G:\\images\\combined\\00420_jpg.rf.3d4a0194e425b83c1be1bda72d624fda.jpg", - "response": "The image shows three men standing in front of a blackboard. The two men on the left are standing closer to the left side of the blackboard, while the man on the right is standing closer to the right side of the blackboard. They are all wearing white shirts. The man on the left is holding a microphone and speaking. The man on the right is also holding a microphone but has his hand by his chest.", - "id": 30103 - }, - { - "image_path": "G:\\images\\combined\\00420_jpg.rf.68b32bbf37ac3e3daca1c86ae1920c09.jpg", - "response": "The image shows three men standing in front of a blackboard. The two men on the left are both wearing white shirts and are standing closer to the left side of the blackboard. The man on the right is also wearing a white shirt and is standing closer to the right side of the blackboard. They all appear to be looking at a screen that is mounted on the wall above the blackboard. The screen is showing an image and there is an mp3 player mounted on top of it. The three men are looking in the same direction, probably at the screen on the wall.", - "id": 30104 - }, - { - "image_path": "G:\\images\\combined\\004210_jpg.rf.eca7ba00a934e619920b1f0a5c44a41a.jpg", - "response": "A group of workers wearing red vests and helmets are working in a park. One worker is pointing to the left while another worker is pointing to the right. A man in a blue vest is kneeling down in the background.", - "id": 30105 - }, - { - "image_path": "G:\\images\\combined\\004211_jpg.rf.d3e62947f3e2fc006fbd74586e800b94.jpg", - "response": "The image shows a construction site with several workers wearing blue uniforms and yellow helmets. They are working on a building that is still in the early stages of construction. The building has a metal framework, and some workers are standing on it. One worker is using a tool on a large metal rod, while another worker is operating a crane in the background. There are also some workers standing near the metal framework of the building.", - "id": 30106 - }, - { - "image_path": "G:\\images\\combined\\004212_jpg.rf.2a48758a92083ba472df5e0ccbbdaf90.jpg", - "response": "In the image, several people are performing first aid on a person who is lying on the ground. The person lying on the ground is wearing a white shirt and is in the process of being given chest compressions. There are two other people wearing yellow and red who are also giving first aid. One of the people giving first aid is holding a walkie-talkie. In the background, there is a large truck parked on the right side of the image.", - "id": 30107 - }, - { - "image_path": "G:\\images\\combined\\004213_jpg.rf.d31b43e63d544f504e22dd4dabc6201e.jpg", - "response": "Man(246,330),(389,861) in a cave filled with debris(2,632),(993,997)", - "id": 30108 - }, - { - "image_path": "G:\\images\\combined\\004214_jpg.rf.059de090f6c8ce09954f90c3c834aec4.jpg", - "response": "The image shows four workers in blue uniforms and red hardhats walking and talking in front of a large under-construction factory. The factory is in the background and is surrounded by several cranes. In the foreground, the workers are holding blueprints and there is a red and white sign that says \"Power China\". The sign is to the left of the workers and the ground is grey. There are also two red oil cans in the image, one on the right and one on the left.", - "id": 30109 - }, - { - "image_path": "G:\\images\\combined\\004215_jpg.rf.362b9a83d56258554b24a52ad8085e5c.jpg", - "response": "A woman in a black coat is standing in a room with several other people. There is a set of stairs in the background on the right side of the room. On the left side of the room, there is a window with the sun shining through it. In front of the window, there is a table with several bottles on it. On the right side of the room, there are several other bottles.", - "id": 30110 - }, - { - "image_path": "G:\\images\\combined\\004216_jpg.rf.207b930ebad69505e8cd93d82eabd995.jpg", - "response": "A lineworker is suspended from a safety line while working on a power pole. He is wearing a harness and has a tool belt. He is repairing a damaged power line.", - "id": 30111 - }, - { - "image_path": "G:\\images\\combined\\004217_jpg.rf.8d8708df171d84030503f7fe1156c7b4.jpg", - "response": "The image shows a construction site with a building under construction in the background. The building has a sign that says \"7\u697c\" (7th floor). There are several people standing in the foreground, some of them wearing hard hats. A few people are also wearing orange vests. In the distance, there is a red truck parked next to the building. The sky is blue with some clouds.", - "id": 30112 - }, - { - "image_path": "G:\\images\\combined\\004218_jpg.rf.f01c5cb87d55ed9a8276f0412df47ecc.jpg", - "response": "A woman in a pink helmet and a white shirt is pointing to something on a yellow fence. The fence is in front of a yellow building.", - "id": 30113 - }, - { - "image_path": "G:\\images\\combined\\004219_jpg.rf.1cca73cf236590ae6dc1e3974880a398.jpg", - "response": "A man in a white shirt and a hard hat points to something in the distance while another man in a yellow hard hat looks up at him. They are standing in front of a large solar panel installation.", - "id": 30114 - }, - { - "image_path": "G:\\images\\combined\\004221_jpg.rf.f60ae21d9da3ad63a07685b4f914c127.jpg", - "response": "A worker in a yellow vest stands on a track at a construction site.", - "id": 30115 - }, - { - "image_path": "G:\\images\\combined\\004222_jpg.rf.f83bd1c23d84c017d2a43922f4f4b3ba.jpg", - "response": "A construction worker wearing a white shirt and yellow apron is using a hose to spray concrete into a hole. He is standing on a wooden platform and wearing a white hard hat.", - "id": 30116 - }, - { - "image_path": "G:\\images\\combined\\004223_jpg.rf.5edf4410f10f18e665e1cfa82eb92a47.jpg", - "response": " Two construction workers(388,136),(798,996)(722,213),(970,996) standing in front of a bulldozer(17,456),(362,996)", - "id": 30117 - }, - { - "image_path": "G:\\images\\combined\\004225_jpg.rf.8ec01feac294047f8167cfb2f94f4814.jpg", - "response": "A group of men standing in front of a building.", - "id": 30118 - }, - { - "image_path": "G:\\images\\combined\\004226_jpg.rf.31dd75939bd766c6339073f151aca292.jpg", - "response": "An electrician in camouflage clothing and a yellow helmet is in the process of climbing a telephone pole. They are wearing climbing gear and have a tool belt around their waist. They are gripping the pole with one hand and have another hand on a rope that is attached to their tool belt. In the background, there are power lines and a green field.", - "id": 30119 - }, - { - "image_path": "G:\\images\\combined\\004227_jpg.rf.fa717eb7eed2b754dcdf2880fecd6125.jpg", - "response": "A worker with the city's electric department inspects a power box on a street corner in the city of Xinjiang, China.", - "id": 30120 - }, - { - "image_path": "G:\\images\\combined\\004228_jpg.rf.20dc8045f7af3785a600dc66210463d4.jpg", - "response": "A man in a white shirt and blue jeans is wearing a yellow construction hat and holding a white tablet. He is smiling at the camera. Behind him is a building under construction with a crane working in the background.", - "id": 30121 - }, - { - "image_path": "G:\\images\\combined\\004229_jpg.rf.e66fa5238300ab209c37e81d8018dfff.jpg", - "response": "A man in a hard hat and camouflage clothing is on a scaffolding working on the side of a red building.", - "id": 30122 - }, - { - "image_path": "G:\\images\\combined\\004230_jpg.rf.b9f44d5b70cb6f4b7505ca2af68b383e.jpg", - "response": "In the image there is a construction worker in a orange safety helmet and blue work clothes crouched down looking at a set of plans. The worker also has a white hard hat in his pocket and a orange safety vest. The plans the worker is looking at are held in his left hand and are covered with a white plastic bag. The worker is on a construction site which has several metal girders on the ground and a white building in the background. There is also a red and white construction sign in the background on the left side of the image.", - "id": 30123 - }, - { - "image_path": "G:\\images\\combined\\004231_jpg.rf.bab678ded3e902ccdc0441aae5269a07.jpg", - "response": "A group of four people standing on a construction site with two of the people wearing red hard hats.", - "id": 30124 - }, - { - "image_path": "G:\\images\\combined\\004232_jpg.rf.4d628841cfd94ba5e3731c2b84cb950c.jpg", - "response": "The image shows two workers at a construction site, pouring concrete for a building's foundation. They are wearing yellow hard hats and are focused on their task. The ground is covered in a network of steel rebar, which is being poured with concrete. The workers are in the center of the frame, with the rebar extending out to the edges of the image.", - "id": 30125 - }, - { - "image_path": "G:\\images\\combined\\004233_jpg.rf.0ead2387bf6f992263b6fa19864442fd.jpg", - "response": "A group of men working on a construction site.", - "id": 30126 - }, - { - "image_path": "G:\\images\\combined\\004234_jpg.rf.4202fa082d3206dcd4b8fbe6da3a208a.jpg", - "response": "The picture shows a scene of a city street. On the left side of the picture, there are several people wearing white shirts and black suits. Some of them are wearing red ties. In the middle of the picture, there is a group of people standing in front of a white building. One person in the middle is wearing a white shirt and a black suit. Another person on the right side of the picture is wearing a grey shirt and a black suit. In the background, there are many high-rise buildings. On the right side of the picture, there is a person wearing a red scarf and a yellow hat.", - "id": 30127 - }, - { - "image_path": "G:\\images\\combined\\004236_jpg.rf.c9923cee0895caa412a51e7433b26c4d.jpg", - "response": "Two men in high visibility vests and hard hats stand in front of a bulldozer. One man is smiling at the camera and is holding a rolled up piece of paper.", - "id": 30128 - }, - { - "image_path": "G:\\images\\combined\\004237_jpg.rf.083fc1c2331c90d4f934c933450e0f98.jpg", - "response": " People(263,508),(828,996) wearing helmets(428,532),(546,663)(589,582),(799,881)(293,577),(430,706)(538,550),(638,662) and protective gear are standing in a dark cave.", - "id": 30129 - }, - { - "image_path": "G:\\images\\combined\\004238_jpg.rf.53969e0e0addb4963a8a4214c2c9d456.jpg", - "response": "The image shows a construction site with a yellow excavator digging a hole in the ground. The excavator is in the center of the image, with a small blue shed visible to the left. There are two construction workers standing in the foreground, both wearing yellow hard hats. One of the workers is on the left, and the other is in the center of the image. A car is parked on the left side of the image, partially obscured by a person. The ground is bare and covered in dirt, with a few trees visible in the background. The sky is blue, and the sun is shining.", - "id": 30130 - }, - { - "image_path": "G:\\images\\combined\\004239_jpg.rf.4f13f2455ef266a5b00600e3c4653df3.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints at a construction site.", - "id": 30131 - }, - { - "image_path": "G:\\images\\combined\\004240_jpg.rf.a20a79182130c27d8c0ac3d640a7e917.jpg", - "response": "A group of men in hard hats and safety gear are working on an electrical grid. They are sitting on top of the grid, which is made of metal and has many electrical components attached to it. Some of the men are holding tools and appear to be focused on their work. The sky above them is overcast.", - "id": 30132 - }, - { - "image_path": "G:\\images\\combined\\004241_jpg.rf.5a18823f7117145a8d675ff805feece2.jpg", - "response": "In the image two workers are seen\u4fee\u7406ing an electricity transformer. They are wearing blue uniforms and are in a field of yellow flowers.", - "id": 30133 - }, - { - "image_path": "G:\\images\\combined\\004242_jpg.rf.0860f52e48c4b33cfdf94a4df597f1c4.jpg", - "response": " Three men(352,497),(402,713)(268,473),(344,694)(400,474),(456,720) in hard hats(386,473),(426,517)(275,472),(314,513)(318,473),(356,513) standing on a construction site", - "id": 30134 - }, - { - "image_path": "G:\\images\\combined\\004243_jpg.rf.efd620dcae74740aaddde946b2fe7db7.jpg", - "response": "In the image there are two people working on a construction site building a structure. The two people are wearing yellow hats and the person on the left is also wearing a green shirt. They are working on a grid of steel rebar.", - "id": 30135 - }, - { - "image_path": "G:\\images\\combined\\004244_jpg.rf.9b41f269a8163ceab2ae0bb71a6b1452.jpg", - "response": "A man and a woman standing in an unfinished brick building.", - "id": 30136 - }, - { - "image_path": "G:\\images\\combined\\004245_jpg.rf.ed1b76ee7aae6ad3ed2d4c8cb6b5973d.jpg", - "response": "The image shows a group of workers in a large tunnel. They are working on a large piece of equipment that resembles a train, but with a large circular saw blade on the front. The workers are standing on both sides of the machine, which is located in the center of the room. They are wearing hard hats and the room is filled with debris, including many bags of it. The walls of the tunnel are white and the floor is a dirty grey.", - "id": 30137 - }, - { - "image_path": "G:\\images\\combined\\004246_jpg.rf.a80a7168f1e07ab5c7fb3c266b915a2d.jpg", - "response": "A group of men in blue work uniforms are working on power lines. They are standing on a cherry picker and a ladder. They are wearing hard hats and safety gear.", - "id": 30138 - }, - { - "image_path": "G:\\images\\combined\\004247_jpg.rf.7288af6f821aad2deb97b3e613e4ec1e.jpg", - "response": "In the image there are two men wearing blue helmets and white work clothes. They are both working on a large piece of equipment that is open and plugged in. The equipment is grey and black and has red and yellow wires attached to it. The men are standing in front of the equipment and one of them is holding a yellow and black screwdriver.", - "id": 30139 - }, - { - "image_path": "G:\\images\\combined\\004248_jpg.rf.846fd3bccd9f294c31c6b4d5e20a680b.jpg", - "response": "A man standing in a large concrete tunnel.", - "id": 30140 - }, - { - "image_path": "G:\\images\\combined\\004249_jpg.rf.323b8a12e853862e464153f75738bc0d.jpg", - "response": "A worker repairs a power line covered with ice in the town of Xuanen, northwest China's Gansu province, January 23, 2011. REUTERS/China Daily", - "id": 30141 - }, - { - "image_path": "G:\\images\\combined\\004250_jpg.rf.9b20395306bc38b56f32ad2bb6ac0d03.jpg", - "response": " Two workers(689,270),(879,996)(15,125),(583,988) are working in a mine.", - "id": 30142 - }, - { - "image_path": "G:\\images\\combined\\004251_jpg.rf.f6cda4cc7016c83a4fa93fa4aad50220.jpg", - "response": "A worker in a yellow hard hat stands next to a large pipeline. The pipeline is black and yellow and runs through a lush green valley. The worker is looking over the top of the pipeline and is wearing a blue shirt with a white logo on the left chest. There is a truck parked in the background on the left side of the pipeline and a road cutting through the valley. The worker is standing on a bridge that runs over the pipeline.", - "id": 30143 - }, - { - "image_path": "G:\\images\\combined\\004252_jpg.rf.40ffc33103e7e6f8a97df6d2b190c717.jpg", - "response": "In the image there is a construction site with a worker wearing blue overalls and a yellow hard hat. The worker is holding a long piece of metal with both hands and appears to be working on a yellow and red piece of machinery. There are other workers in the background and a white building under construction can be seen in the distance.", - "id": 30144 - }, - { - "image_path": "G:\\images\\combined\\004253_jpg.rf.58f42d57eb6f08e44d0606f789f6ada6.jpg", - "response": "A group of men wearing hard hats.", - "id": 30145 - }, - { - "image_path": "G:\\images\\combined\\004254_jpg.rf.899696ab1e72c14c7a0904cf6023f36a.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest standing in a room that is under construction. The walls are green and the man is standing in front of a large window. He is holding a cell phone in his hand.", - "id": 30146 - }, - { - "image_path": "G:\\images\\combined\\004255_jpg.rf.84eaf860d226389de4b185ea68165d5f.jpg", - "response": "The image shows a large vehicle, possibly a truck, in a tunnel. There are three workers in the tunnel, one on the left, one in the center, and one on the right. The workers are wearing orange and blue uniforms and yellow hard hats. The vehicle has a large drill on the front of it. The tunnel walls are white and grey stone.", - "id": 30147 - }, - { - "image_path": "G:\\images\\combined\\004256_jpg.rf.288f6421b53df50cb96b95bd7e91edde.jpg", - "response": "The picture shows the chief secretary of Xinxiang, Zhen silin, to investigate the work . In the picture, Zhen silin is on the right side, wearing a black suit, a white shirt and black trousers. Xinxiang is in the lower right corner of the picture.", - "id": 30148 - }, - { - "image_path": "G:\\images\\combined\\004257_jpg.rf.467431bfda9839057a8557b975a52285.jpg", - "response": "a man wearing a green hard hat and yellow overalls standing in a tunnel", - "id": 30149 - }, - { - "image_path": "G:\\images\\combined\\004258_jpg.rf.a730c6f7585bff632063c84be69ff5a4.jpg", - "response": "A construction worker walking towards a yellow tractor with a large scoop on the front.", - "id": 30150 - }, - { - "image_path": "G:\\images\\combined\\004259_jpg.rf.566c5f2c9ceefd60e28fe4c391dd8419.jpg", - "response": "A group of three people standing on a construction site with blue prints in front of them.", - "id": 30151 - }, - { - "image_path": "G:\\images\\combined\\004260_jpg.rf.37a40ac68dc53b325288c6b4a4c91922.jpg", - "response": "A group of workers are carrying a gurney with a body on it. They are wearing hard hats and uniforms. The room they are in has scaffolding and construction materials all around.", - "id": 30152 - }, - { - "image_path": "G:\\images\\combined\\004262_jpg.rf.40b8a69466cb780aa3218358e80c2404.jpg", - "response": "A group of men standing next to each other near a construction site.", - "id": 30153 - }, - { - "image_path": "G:\\images\\combined\\004263_jpg.rf.b309f7a35ae8e86d94a5cd175709abc2.jpg", - "response": "Men in white and red shirts standing on a sidewalk", - "id": 30154 - }, - { - "image_path": "G:\\images\\combined\\004265_jpg.rf.1d28a40b6964a8c6676550b4ac433d64.jpg", - "response": "The image shows three workers in orange jumpsuits and hard hats on a snowy mountain. They are working together to use a large chain and a tool with an orange handle to attach something to a rope.", - "id": 30155 - }, - { - "image_path": "G:\\images\\combined\\004266_jpg.rf.700378f3dbc656371a89732cc753d222.jpg", - "response": "A group of workers in orange and yellow work wear with helmets.", - "id": 30156 - }, - { - "image_path": "G:\\images\\combined\\004267_jpg.rf.0019400faaf2a8fa98078d4b04044b23.jpg", - "response": "A man in a white lab coat and red helmet sitting at a desk using a machine.", - "id": 30157 - }, - { - "image_path": "G:\\images\\combined\\004268_jpg.rf.3ec83bd10a97ae6ae37dee8ed21de5e1.jpg", - "response": "A man and a woman wearing hard hats and safety vests standing in a unfinished room.", - "id": 30158 - }, - { - "image_path": "G:\\images\\combined\\004269_jpg.rf.2548b44f49c05d543d307e5a2842a8dc.jpg", - "response": "The image shows a group of six men standing in a mine shaft. They are all wearing orange coveralls and red hard hats. The men are holding flashlights and looking into the distance. The leftmost man is holding a flashlight in his right hand, and the second man from the left is holding a flashlight in his left hand. The third man is holding a flashlight in his right hand, and the fourth man is also holding a flashlight in his left hand. The fifth man is holding a flashlight in his right hand, and the man on the right is holding a flashlight in his right hand. The men are standing in front of a large cave entrance.", - "id": 30159 - }, - { - "image_path": "G:\\images\\combined\\004270_jpg.rf.c7d1ce1a7c8891616bdef33b7f5c0e5e.jpg", - "response": "A group of workers are working on a construction site.", - "id": 30160 - }, - { - "image_path": "G:\\images\\combined\\004271_jpg.rf.8e5e5fc0bce5b31b7dcfe5013be2d62b.jpg", - "response": "A worker in a yellow hard hat and black jacket and pants crouches down to work on a section of track.", - "id": 30161 - }, - { - "image_path": "G:\\images\\combined\\004272_jpg.rf.2760ef47202d8cc4b95d3aa03d777089.jpg", - "response": "The image shows a smiling man wearing a red hard hat and an orange work vest standing in a room. The room has a shelf with various items on it, including a yellow roll of tape, a brown box, and a red box. There is also a white and black coffee mug on the shelf. The man is wearing a red and white helmet and has a mustache. The background is white.", - "id": 30162 - }, - { - "image_path": "G:\\images\\combined\\004273_jpg.rf.4a68c5292db404235c1e124cb59c0995.jpg", - "response": "A man wearing a yellow hard hat standing in front of a brick wall with scaffolding.", - "id": 30163 - }, - { - "image_path": "G:\\images\\combined\\004274_jpg.rf.0221f06e5303f2e958c6f22e3b93c3fb.jpg", - "response": "Two construction workers wearing helmets are working on a building. The worker on the left is wearing a grey top and blue pants, while the worker on the right is wearing a brown top and black pants. The worker on the right is also wearing a yellow helmet. They are working on a building that has scaffolding around it. The building itself is grey and has a white pillar in the middle of it.", - "id": 30164 - }, - { - "image_path": "G:\\images\\combined\\004275_jpg.rf.a659abb1c9d66efb4218bcf6606ae5a8.jpg", - "response": "The image shows a man trapped under a large piece of construction equipment. He is lying on the ground, with the equipment on top of him. Several rescue workers are working to free him. One worker is kneeling over him, while another worker is standing to the side. There is a third worker standing further to the side, and a fourth worker is kneeling closer to the man. There is also a police officer standing further to the side. The workers and police officer are all wearing orange or yellow shirts.", - "id": 30165 - }, - { - "image_path": "G:\\images\\combined\\004276_jpg.rf.bc2f700a66a2919de8c14136715bd92c.jpg", - "response": "In the image there are two construction workers. They are wearing orange hard hats and are both wearing black shirts. One of the workers has a mustache and is holding a yellow tool. The background is a building under construction with scaffolding and wooden beams. There are also street lights in the distance.", - "id": 30166 - }, - { - "image_path": "G:\\images\\combined\\00427709-156Booooox_jpg.rf.48fa213765bf3c877e348abd89602815.jpg", - "response": "A cardboard box with the word Asics on it.", - "id": 30167 - }, - { - "image_path": "G:\\images\\combined\\00427709-156Booooox_jpg.rf.7b445d20df44d1905a20dee0b8b25afd.jpg", - "response": "A large cardboard box is on the floor. The box is made by Asics. There is a smaller box with the Asics logo on it next to the larger box. There is a plastic bag with a white object inside it on the floor next to the smaller box. The floor is made of wood.", - "id": 30168 - }, - { - "image_path": "G:\\images\\combined\\004277_jpg.rf.690a23fef0d171ba58ea814966ef5667.jpg", - "response": "A group of people wearing hard hats and carrying a yellow object.", - "id": 30169 - }, - { - "image_path": "G:\\images\\combined\\004278_jpg.rf.d368f0b8ad84e386235b7b73b5245b1b.jpg", - "response": "The image shows a construction site with a number of workers. There is a man in the center of the image who is wearing a yellow shirt and has his arm raised, holding a long tool. Another man is visible, wearing a white shirt and blue jeans, he is on the left of the image. A third man is visible, wearing a red hard hat and blue jeans, he is on the far right of the image. The fourth man is visible, wearing a white shirt and blue jeans, he is on the far left of the image. The fifth man is visible, wearing a white shirt and blue jeans, he is on the far right of the image. The sixth man is visible, wearing a white shirt and blue jeans, he is on the far left of the image.", - "id": 30170 - }, - { - "image_path": "G:\\images\\combined\\004279_jpg.rf.b0f7699ea2083d7748a80f0c6b383fb4.jpg", - "response": "A man working at a factory, using a tool to manipulate a large piece of metal that is on fire. The metal is glowing orange and\u5ef6\u4f38\u5230 other parts of the factory.", - "id": 30171 - }, - { - "image_path": "G:\\images\\combined\\004280_jpg.rf.1f6a8245c97ba664a3d6ee0c9f8b3de9.jpg", - "response": "The image shows two men shaking hands on a construction site. Both men are wearing yellow vests and helmets. The man on the left is smiling and has a beard. The man on the right has gray hair and is wearing a blue helmet. They are shaking hands in front of a wooden structure. The sky is blue with clouds in the background.", - "id": 30172 - }, - { - "image_path": "G:\\images\\combined\\004281_jpg.rf.f19f289e8ee0a3f3ba1c09c316c79749.jpg", - "response": "A man working in a construction site", - "id": 30173 - }, - { - "image_path": "G:\\images\\combined\\004282_jpg.rf.fb54767669f3e3879178db557f692a42.jpg", - "response": "A group of people walking through a tunnel.", - "id": 30174 - }, - { - "image_path": "G:\\images\\combined\\004283_jpg.rf.5712dac80b362ab730091a64966834df.jpg", - "response": "A group of men in hard hats are working on a machine.", - "id": 30175 - }, - { - "image_path": "G:\\images\\combined\\004284_jpg.rf.faeb8b6019b56b2db9602e6dfda3575d.jpg", - "response": "In the image there is a group of people working on a construction site. They are wearing hard hats and working with large spools of wire. Some of the people are also working with a large hose. The construction site is located next to a building and a street.", - "id": 30176 - }, - { - "image_path": "G:\\images\\combined\\004285_jpg.rf.a4cb28b0eb7c9aa0c4252f6b9a59462c.jpg", - "response": "In the image, there is a construction worker wearing a yellow hard hat and a red safety jacket. The worker is holding a large object with both hands, which is resting on their shoulder. The worker is looking into the distance, seemingly contemplating. The background shows a wooden structure, possibly a part of a building under construction. The sky is clear and blue, indicating a sunny day.", - "id": 30177 - }, - { - "image_path": "G:\\images\\combined\\004286_jpg.rf.e907422727530bab3818d6d976598b20.jpg", - "response": "a man wearing a white hard hat and a orange safety vest is measuring a wooden beam with a yellow tape measure", - "id": 30178 - }, - { - "image_path": "G:\\images\\combined\\004287_jpg.rf.cd8bc4e223ea69806897be6cd6e58a86.jpg", - "response": "A couple of men standing on a construction site looking at a blueprint.", - "id": 30179 - }, - { - "image_path": "G:\\images\\combined\\004288_jpg.rf.e076ab6354cc225df078564865650a97.jpg", - "response": "The image shows a group of six workers in green work clothes and yellow hard hats, standing on a rusty railway track. They are working on the track, which is made of steel and has a series of concrete sleepers. Some tools, including a small red tool box and a yellow level, are placed on the track in front of the workers. The background shows a mountain road.", - "id": 30180 - }, - { - "image_path": "G:\\images\\combined\\004289_jpg.rf.f7146c62ca9f0095474d566575bb1abd.jpg", - "response": "A man in a red work suit and yellow hard hat is cutting into a large orange hose with a pair of shears. He is standing next to a tree and there are other people in the background, one of which is wearing a yellow hard hat. There are also two other men in yellow hard hats standing behind the man cutting the hose.", - "id": 30181 - }, - { - "image_path": "G:\\images\\combined\\004290_jpg.rf.6084dd22e7df1aeb27b4b81e9985861c.jpg", - "response": "In the image, there is a worker dressed in orange, wearing a helmet and gloves. They are standing in front of a wall of different colored steel bars stacked vertically. The wall has multiple rows of steel bars, each row a different color and size. The worker is reaching up to the top left of the image, touching the topmost bar of a stack.", - "id": 30182 - }, - { - "image_path": "G:\\images\\combined\\004291_jpg.rf.6cf87f39cdcba9ce3ca87d5038be9217.jpg", - "response": "A construction site with several people working on it.", - "id": 30183 - }, - { - "image_path": "G:\\images\\combined\\004292_jpg.rf.87a106d15ccc6b27f40cb3cc1867ae59.jpg", - "response": "In the image two workers are seen repairing an transformer. The transformer is grey in color and has a red triangle with an arrow pointing downwards. There is a text written on the transformer which says \"\u9ad8\u538b\u5371\u9669\u7981\u6b62\u6500\u767b!\" which is in black color. Both the workers are wearing blue hard hats and are wearing dark blue uniforms. One worker is on the left and the other one is on the right. The worker on the right is holding a black pipe with both his hands.", - "id": 30184 - }, - { - "image_path": "G:\\images\\combined\\004294_jpg.rf.32a36ff309f4d20173e89f3c8afd1033.jpg", - "response": "A group of four men in white lab coats and yellow hard hats are working on a large piece of equipment. The equipment is silver and grey and has many pipes and valves. They are all working on the same piece of equipment and are focused on their tasks.", - "id": 30185 - }, - { - "image_path": "G:\\images\\combined\\004295_jpg.rf.d68286d1b733eab93fd081c14e630d06.jpg", - "response": "A group of people(93,427),(270,998)(191,398),(435,998)(758,400),(984,988)(648,443),(810,928)(423,425),(627,998) standing in front of a sign", - "id": 30186 - }, - { - "image_path": "G:\\images\\combined\\004296_jpg.rf.69672b4bb7acb47cfd134156484cc512.jpg", - "response": "A conference room with a large table and many chairs. On the wall there is a poster and a sign that says\u300c\u540c\u5fc3\u540c\u5fb7 \u5171\u5546\u5171\u8d62\u300d. In the room there are also many bottles, cups, and flowers on the table.", - "id": 30187 - }, - { - "image_path": "G:\\images\\combined\\004298_jpg.rf.0e1572965186fcf1c593221d0f8975ee.jpg", - "response": "A construction site with three men working on a scaffold. They are all wearing hard hats and the man in the middle is also wearing a green shirt. The men are working on a concrete building and there are pipes visible in the image.", - "id": 30188 - }, - { - "image_path": "G:\\images\\combined\\004299_jpg.rf.dc0e0bdd25f79bcf4cceea1ac590fb92.jpg", - "response": "A group of people working on a construction site.", - "id": 30189 - }, - { - "image_path": "G:\\images\\combined\\0042e31fe2bbe16f.jpg", - "response": "a group of people standing in a room.", - "id": 30190 - }, - { - "image_path": "G:\\images\\combined\\004300_jpg.rf.7a0387201cebf2396c8b087d58589116.jpg", - "response": "A group of workers are working on a tall metal structure.", - "id": 30191 - }, - { - "image_path": "G:\\images\\combined\\004301_jpg.rf.d3c79d1d9072710a319c27c60a2377c8.jpg", - "response": " Workers(268,141),(512,439)(519,135),(831,827) at the scene of the cave-in", - "id": 30192 - }, - { - "image_path": "G:\\images\\combined\\004303_jpg.rf.d2def9d0059d7e88f429904c7f46b66b.jpg", - "response": "A\u96a7\u9053\u5185\u7684\u5efa\u7b51\u5de5\u4eba\uff0c\u80a9\u4e0a\u625b\u7740\u4e00\u6839\u7070\u8272\u7684\u7ba1\u5b50\uff0c\u53e6\u4e00\u4e2a\u5de5\u4eba\u5728\u5bf9\u7740\u706f\u5149\u68c0\u67e5\u5730\u9762\u3002", - "id": 30193 - }, - { - "image_path": "G:\\images\\combined\\004304_jpg.rf.ef6a0047c63120c9181882a6fc3411a9.jpg", - "response": "A group of men in red doing work on a metal tower.", - "id": 30194 - }, - { - "image_path": "G:\\images\\combined\\004306_jpg.rf.cb9d854e0283240db9afc0bbb6ba4541.jpg", - "response": "A man wearing a hard hat, white t-shirt, grey and red overalls, and green and red gloves, standing in front of a yellow and white building, smiling and holding a clipboard. There is a pile of grey bricks to the man's left and a pile of grey bricks and some yellow bricks to his right.", - "id": 30195 - }, - { - "image_path": "G:\\images\\combined\\004307_jpg.rf.0e407d8176fbcaf5441f15807d22ea0e.jpg", - "response": "The image shows a group of men standing in a unfinished building. They are all wearing hard hats. One man is holding a set of plans and talking to another man. The men are wearing a variety of shirts, including blue, red, and white. Some men are also wearing ties. The building appears to be made of concrete and has no walls yet.", - "id": 30196 - }, - { - "image_path": "G:\\images\\combined\\004308_jpg.rf.3663f06000596345bc667c831895be79.jpg", - "response": "A group of men in green uniforms and hard hats are working on an electrical line in a grassy field.", - "id": 30197 - }, - { - "image_path": "G:\\images\\combined\\004310_jpg.rf.271ff5452978b1d1be15793ecb716486.jpg", - "response": "A group of men wearing hard hats standing in a yard with a tree.", - "id": 30198 - }, - { - "image_path": "G:\\images\\combined\\004311_jpg.rf.f1dbee348194f6aa299b495d32b72b3a.jpg", - "response": "In the image two men are carrying wooden boards on a construction site. The man in front is smiling and looking at the camera. Both the men are wearing yellow helmets. The sky is clear and the\u592a\u9633\u5f88\u4eae.", - "id": 30199 - }, - { - "image_path": "G:\\images\\combined\\004312_jpg.rf.0d84f3a8982e5c2790cc549379f35bb5.jpg", - "response": " Two workers(213,419),(411,997)(377,443),(523,997) in a tunnel", - "id": 30200 - }, - { - "image_path": "G:\\images\\combined\\004313_jpg.rf.9b79b3e1838882145c396f8df7b6c1f3.jpg", - "response": "Two construction workers, one wearing a green shirt and one wearing a black shirt, are working on a building site. They are standing on a metal grid and are wearing harnesses. The one on the left is holding a cell phone.", - "id": 30201 - }, - { - "image_path": "G:\\images\\combined\\004314_jpg.rf.165a988db50f9cd616af15de96e536db.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing hard hats and some are wearing suits. In the background, there is a partially constructed building with scaffolding.", - "id": 30202 - }, - { - "image_path": "G:\\images\\combined\\004315_jpg.rf.03c565dd8765b97dcb82772f7ec4e513.jpg", - "response": "A construction site with workers(432,448),(563,941)(204,10),(357,663) in Ethiopia", - "id": 30203 - }, - { - "image_path": "G:\\images\\combined\\004316_jpg.rf.292e5326637f892554b457e4b9358bb8.jpg", - "response": "The image shows a group of five men dressed in work clothes and hard hats, pulling on a rope together. They are all in various states of action, with some crouching and some standing on the grass. The man in the far left is in the process of letting go of the rope, the man second from the left is pulling hard, the man in the center is crouching and pulling with both hands on the rope, the man second from the right is also crouching and pulling and the man on the far right is in the process of starting to pull. In the background, there is a cityscape with tall buildings in the middle and a smaller one on the far right.", - "id": 30204 - }, - { - "image_path": "G:\\images\\combined\\004318_jpg.rf.5e5fe4386d401d3afe865c11cf8055d1.jpg", - "response": "The image shows a scene of two workers in blue overalls and yellow safety helmets, high up on a metal tower. They are working on a power line, with one worker holding a tool and the other one pulling on a rope. The sky is overcast and there are clouds in the background. The tower is surrounded by a mountain range.", - "id": 30205 - }, - { - "image_path": "G:\\images\\combined\\004319_jpg.rf.4acc5461295ae895a2b4133493ad0a3a.jpg", - "response": "A construction worker wearing a black shirt and a red hard hat is operating a large piece of machinery. He is standing on a construction site with a city skyline visible in the background. There are many stacks of steel rods scattered around the site.", - "id": 30206 - }, - { - "image_path": "G:\\images\\combined\\004320_jpg.rf.2a86fa9d0c0af6e3cb4d1ff3660267d2.jpg", - "response": "Four women in red jackets and hard hats pose in front of a construction site.", - "id": 30207 - }, - { - "image_path": "G:\\images\\combined\\004321_jpg.rf.1587be3cd7a2f897a166bd20248c5115.jpg", - "response": "The image shows a large construction site with several workers visible. They are working on a large, open area that has been prepared for the construction of a building. The ground is covered in red wire mesh, and several rebar cages have been set up in preparation for pouring concrete. In the background, a few buildings can be seen, as well as a large white cloud formation in the sky. The workers are wearing blue uniforms and are scattered across the construction site.", - "id": 30208 - }, - { - "image_path": "G:\\images\\combined\\004322_jpg.rf.5e3060159da24872ab6e56bc012ad736.jpg", - "response": "In the image two workers are seen wearing blue helmets and are working on a pipeline. The pipeline is grey in color and is situated in the center of the image. One of the workers is seen using a machine to fix the pipeline. Another worker is seen in the background. The pipeline is connected to a metal box which is brown in color. The workers are wearing gloves which are white in color. One of the workers is also wearing a black jacket. The background is blurred out and the workers are in focus.", - "id": 30209 - }, - { - "image_path": "G:\\images\\combined\\004323_jpg.rf.e94c35a4e30f6fea6688a03c46e097fa.jpg", - "response": "a group of people standing in front of a van", - "id": 30210 - }, - { - "image_path": "G:\\images\\combined\\004324_jpg.rf.4e7ae261bef0647ff394edde912f7a3c.jpg", - "response": "A group of workers are working on a construction site.", - "id": 30211 - }, - { - "image_path": "G:\\images\\combined\\004325_jpg.rf.291e64d54887c84745d41356d70b2837.jpg", - "response": "A construction worker is rescued by firefighters after he fell into a concrete mixer at a construction site in Xiamen, Fujian Province, China. The worker, named Zhang, was working at the construction site when he accidentally fell into the concrete mixer. He was trapped inside the mixer and was unable to get out. Firefighters arrived at the scene and used hydraulic rescue tools to carefully cut open the mixer and finally rescued Zhang. He was taken to a nearby hospital and is currently in a stable condition.", - "id": 30212 - }, - { - "image_path": "G:\\images\\combined\\004326_jpg.rf.d645f3401a49a83e80b342b1e5644103.jpg", - "response": "A group of workers are working on a train track.", - "id": 30213 - }, - { - "image_path": "G:\\images\\combined\\004327_jpg.rf.7b1cea23a88665ed4abe735d771ed8c3.jpg", - "response": "A group of people sitting around a table.", - "id": 30214 - }, - { - "image_path": "G:\\images\\combined\\004330_jpg.rf.7a356a8b5f75d3ab4a376605933f078d.jpg", - "response": "In the image there are two workers in orange jumpsuits and blue helmets on a boat. They are handling a black pipe and one of them is pulling the pipe while the other one is holding it. They are located on the right side of the boat.", - "id": 30215 - }, - { - "image_path": "G:\\images\\combined\\004331_jpg.rf.7a659e600db181055703173a3349e670.jpg", - "response": "The picture shows some men in a room. On the right wall, there is a white box with some papers in it. The men are standing around the box and talking. Some of them are wearing blue or black clothes. One of them is wearing a black top and black\u88e4\u5b50. Another man is wearing a dark blue top and dark blue\u88e4\u5b50. They are talking about something.", - "id": 30216 - }, - { - "image_path": "G:\\images\\combined\\004332_jpg.rf.9c62654424231c173074ed4c6bf1fa8b.jpg", - "response": "An electrician is working on power lines.", - "id": 30217 - }, - { - "image_path": "G:\\images\\combined\\004335_jpg.rf.e678c3fbb71d708fa3005eb0ed727384.jpg", - "response": "a man that is on a power line", - "id": 30218 - }, - { - "image_path": "G:\\images\\combined\\004336_jpg.rf.1208bdd0324b656c5b33a9cb9a463ee2.jpg", - "response": "A man is on a telephone pole with wires and equipment.", - "id": 30219 - }, - { - "image_path": "G:\\images\\combined\\004337_jpg.rf.d294a00db657265b3f800bf08451a549.jpg", - "response": "The image shows a group of six people dressed in orange snow suits and hard hats walking across a snow-covered slope. They are pulling a large spool of wire behind them. The snow is white and appears to be deep.", - "id": 30220 - }, - { - "image_path": "G:\\images\\combined\\004339_jpg.rf.effb482226dfe5ae4df89c32ef41a584.jpg", - "response": "The image shows four men standing in front of a large green net. They are all dressed in business attire.", - "id": 30221 - }, - { - "image_path": "G:\\images\\combined\\00433_jpg.rf.4cbc6a61504507319e5553016baff10c.jpg", - "response": "A group of men in high visibility jackets and hard hats stand in a line holding spades.", - "id": 30222 - }, - { - "image_path": "G:\\images\\combined\\004340_jpg.rf.e2feaea4aa0bb55493d6720f155f65ed.jpg", - "response": "A worker digging a hole in the ground.", - "id": 30223 - }, - { - "image_path": "G:\\images\\combined\\004341_jpg.rf.38da50d9dbe349a3ff0c9be0d76c7a9a.jpg", - "response": "The image shows a group of men standing outside a concrete structure. The men are wearing blue or black uniforms and white hard hats. They are gathered in front of a large, open-air concrete structure that resembles a tunnel or a large, open-air basement. The structure is made of concrete and is located in a desert-like setting. The sky is blue and cloudless.", - "id": 30224 - }, - { - "image_path": "G:\\images\\combined\\004342_jpg.rf.3724b1e8799d569c8386f35fe8168113.jpg", - "response": "A group of men in hard hats stand on a construction site holding a rolled up blueprint.", - "id": 30225 - }, - { - "image_path": "G:\\images\\combined\\004343_jpg.rf.b4b0487792cb94eecb114b5f124d6215.jpg", - "response": "A construction worker welding steel at a construction site.", - "id": 30226 - }, - { - "image_path": "G:\\images\\combined\\004344_jpg.rf.b136a2ea643bb2aceb221a7296f43070.jpg", - "response": "A man and a woman wearing helmets and harnesses are standing on a wooden platform in a forest. They are on a ropes course and the woman is smiling.", - "id": 30227 - }, - { - "image_path": "G:\\images\\combined\\004345_jpg.rf.a1b4731b5a46b553a6e28073e30f63c3.jpg", - "response": "A worker in a hard hat and tan coveralls is working on a large blue metal structure.", - "id": 30228 - }, - { - "image_path": "G:\\images\\combined\\004346_jpg.rf.675a3dc70b39e6aa0de06088e9bcdfe0.jpg", - "response": "A group of men standing around each other.", - "id": 30229 - }, - { - "image_path": "G:\\images\\combined\\004347_jpg.rf.2a4cb68b0a0fffb6ea10174cad7f056f.jpg", - "response": "The image shows a construction site with several workers wearing hard hats and blue work clothes. They are working on digging up a large pipe.", - "id": 30230 - }, - { - "image_path": "G:\\images\\combined\\004348_jpg.rf.e16c78c26723a5f68395fc6e95a50d7d.jpg", - "response": "A forklift is used to move a large piece of concrete.", - "id": 30231 - }, - { - "image_path": "G:\\images\\combined\\004350_jpg.rf.1b61597d21b95e088f6682d3c5f13ed8.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and one of the men is welding some steel while the other man is watching. There is also some wood in the background.", - "id": 30232 - }, - { - "image_path": "G:\\images\\combined\\004351_jpg.rf.baf7cbe4843666a8949b74c790b66293.jpg", - "response": "A group of men working on a roof.", - "id": 30233 - }, - { - "image_path": "G:\\images\\combined\\004353_jpg.rf.9247103482d8908dad82e976c3633c0c.jpg", - "response": "The image shows Kim Jong-un, the young and relatively unknown heir to his father's North Korean leadership, smiling and laughing as he tours the construction site of a building. He is dressed in a black suit and is holding a cigarette. Surrounding him are several other men, some of whom are wearing ties. The background shows the roof of the building, which appears to be under construction. The image is accompanied by a watermark that reads \"www.dfcn.com\u7248\u6743\u4f5c\u54c1\u8bf7\u52ff\u8f6c\u8f7d\".", - "id": 30234 - }, - { - "image_path": "G:\\images\\combined\\004354_jpg.rf.2df5a8176dd5e7972fe55b56c52ed6d9.jpg", - "response": "In the image two men are wearing hard hats and one of them is pointing at a screen. They are in a warehouse with a shelf of rolled fabric to the right of them.", - "id": 30235 - }, - { - "image_path": "G:\\images\\combined\\004355_jpg.rf.998e3659802097f461b01a154a2bb941.jpg", - "response": "The image shows a group of workers wearing hard hats and working on a large construction site. They are crouched down over a large grid of steel rebar, which is laid out in a large grid on the ground. The workers are focused on their task, and some of them are standing in the middle of the rebar grid while others are working on the edges. The scene is set in a large warehouse-like structure, with the workers' activity taking place under a series of signs written in Chinese characters.", - "id": 30236 - }, - { - "image_path": "G:\\images\\combined\\004357_jpg.rf.c8ad1bf6c922ca50bf5afb29bd4f9bbf.jpg", - "response": "In the image, two men are working on a building site. One man is working on the left, wearing a black jacket and a helmet with the word \"Police\" written on it. He is bending over and looking at something. The other man is working on the right, wearing a red helmet and a black and yellow jacket. He is crouching down and looking at something as well. They are both working on a building site that has scaffolding around it.", - "id": 30237 - }, - { - "image_path": "G:\\images\\combined\\004358_jpg.rf.fc1d73b9a5b57b4989717f392da7d19e.jpg", - "response": "A woman in a grey shirt is adjusting the chin strap of a man's red helmet. They are standing on a unfinished floor with a few other people in the background. They are all wearing red helmets.", - "id": 30238 - }, - { - "image_path": "G:\\images\\combined\\004359_jpg.rf.e76f195b488d41fb1b13a296dcddd8e2.jpg", - "response": "The image shows two workers on a construction site. One worker is on the left, wearing a white hard hat, grey shirt, and black pants. He is holding a yellow helmet. The other worker is in the center of the image, wearing a white hat, grey shirt, and black pants. He is reaching up to the roof of a building. The building in the background has a glass facade. There is a car visible through the glass. The workers are standing on a wooden platform.", - "id": 30239 - }, - { - "image_path": "G:\\images\\combined\\004360_jpg.rf.8f7be06f4a29a002ce0d975542c417e1.jpg", - "response": "A construction site with two men in hard hats looking at blueprints.", - "id": 30240 - }, - { - "image_path": "G:\\images\\combined\\004362_jpg.rf.ed7c6c66c2b641e0a3ca398b6b10e9fa.jpg", - "response": "A group of three people standing in front of a tunnel.", - "id": 30241 - }, - { - "image_path": "G:\\images\\combined\\004363_jpg.rf.bd82fb12e24720fa9a76efcc5162db00.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow helmets and work clothes. In front of them, there is a large object wrapped in netting and covered with a black plastic bag. Next to this object, there is a yellow forklift. In the background, there are a few cars and a truck. The sky is overcast and there are mountains in the distance.", - "id": 30242 - }, - { - "image_path": "G:\\images\\combined\\004364_jpg.rf.a2ef094999c42a0821ad4e95febbdb70.jpg", - "response": "A man in a yellow safety helmet is kneeling down and looking at the underside of a bridge. Another man in a yellow safety helmet and a reflective vest is standing next to him. He is also holding a clipboard.", - "id": 30243 - }, - { - "image_path": "G:\\images\\combined\\004365_jpg.rf.6de5e0faebc6ba12d0271eb350b7970f.jpg", - "response": "A group of five people are standing in a large room. They are all wearing yellow hard hats and safety glasses. In the center of the room, there is a large circular pit with a black cover in the middle of it. The ground is covered in fine black dust.", - "id": 30244 - }, - { - "image_path": "G:\\images\\combined\\004366_jpg.rf.8182d2cc0de6e170b2b70566d9c90f7e.jpg", - "response": " Men(413,150),(716,988)(251,264),(432,727)(143,364),(262,699) walking through a muddy field(2,329),(999,997)", - "id": 30245 - }, - { - "image_path": "G:\\images\\combined\\004367_jpg.rf.4c27b970656f4c34ebfcaae59f12c80d.jpg", - "response": "A man and a woman standing in front of a building under construction.", - "id": 30246 - }, - { - "image_path": "G:\\images\\combined\\004368_jpg.rf.57657e3b9be940640825ac286bc02908.jpg", - "response": "A man in a blue shirt and hard hat working on a valve.", - "id": 30247 - }, - { - "image_path": "G:\\images\\combined\\004371_jpg.rf.783eec10814e8ee6324db6812d95add0.jpg", - "response": "A construction site with two men standing on it.", - "id": 30248 - }, - { - "image_path": "G:\\images\\combined\\004373_jpg.rf.3e7c901152182b9d8e132ef05518babe.jpg", - "response": "The image shows two workers crouching in front of a large piece of equipment. They are both wearing yellow hard hats and work clothes. The machine they are working on is a grey metal pipe with a red and white tip. The pipe is mounted on a wooden platform and is surrounded by various tools and equipment. The workers are smiling at the camera and appear to be in a good mood.", - "id": 30249 - }, - { - "image_path": "G:\\images\\combined\\004374_jpg.rf.fa32f2dbd75f48875097d94f03d40125.jpg", - "response": "A group of workers are working on a construction site. They are working on a grid of steel. One worker is crouching down and is wearing a white hard hat. Another worker is sitting on the steel grid and is wearing a blue and white shirt. Another worker is wearing a blue and white shirt and is crouching down. There is a person in the background wearing a black shirt and grey pants. They are holding a white cup. There is a person in the background wearing a black shirt and grey pants. They are holding a white cup.", - "id": 30250 - }, - { - "image_path": "G:\\images\\combined\\004375_jpg.rf.47325033df04a3c6818b97afe703f7e7.jpg", - "response": "A man in a hard hat and a woman standing in front of a unfinished house.", - "id": 30251 - }, - { - "image_path": "G:\\images\\combined\\004376_jpg.rf.9666a4476b94fe2ea059303611c1e243.jpg", - "response": "The image shows a snowy road in a forest. There are two people in the picture. One person is in the middle of the picture, wearing a black top and blue pants, with their left hand on a power pole and their right hand is holding a rope. Another person is at the bottom right of the picture, wearing a black and yellow jacket and a black hat. There are also two power poles in the picture, one is in the middle of the picture and the other is on the right side of the picture.", - "id": 30252 - }, - { - "image_path": "G:\\images\\combined\\004377_jpg.rf.05950bd82cd107a09149ca5f5075d49d.jpg", - "response": "A group of people wearing hard hats stand on a rocky hillside.", - "id": 30253 - }, - { - "image_path": "G:\\images\\combined\\004378_jpg.rf.df87cf8850fe6f98c93680484f4b23cf.jpg", - "response": "a man in a blue hard hat is working on a power line", - "id": 30254 - }, - { - "image_path": "G:\\images\\combined\\004380_jpg.rf.e0d6b65ed4dad6e76c52ee818d0afc81.jpg", - "response": "A man in a white hard hat is looking at a blueprint. He is wearing a black jacket and glasses. He is standing in front of a yellow fence.", - "id": 30255 - }, - { - "image_path": "G:\\images\\combined\\004381_jpg.rf.c8c959afd51fd7edec7c55e6e6a1c4b3.jpg", - "response": " Two men(268,570),(423,905)(399,607),(545,863) in hard hats(444,606),(508,682)(300,570),(369,652) and work clothes(271,659),(422,904)(399,676),(544,857) in a snowy forest", - "id": 30256 - }, - { - "image_path": "G:\\images\\combined\\004382_jpg.rf.de5cc100e6171a9049586b4346381a3d.jpg", - "response": "A pair of workers can be seen on a bamboo scaffolding. The scaffolding is located in front of a three-storey building. The building has a white upper floor and a lower floor with glass windows. There is a signboard on the left side of the building. The sky is overcast.", - "id": 30257 - }, - { - "image_path": "G:\\images\\combined\\004383_jpg.rf.6c9b254e2c1ee826da97023ade1da06d.jpg", - "response": "A group of men standing on a fire escape.", - "id": 30258 - }, - { - "image_path": "G:\\images\\combined\\004384_jpg.rf.dc080a4678722169dad9d90d69d0ed30.jpg", - "response": "A man wearing a yellow hard hat and orange safety vest stands in front of a red backhoe with its arm raised. The man has his arms crossed in front of him.", - "id": 30259 - }, - { - "image_path": "G:\\images\\combined\\004385_jpg.rf.14366c40f5a2a64098076ace7486a554.jpg", - "response": "A group of people standing under a bridge.", - "id": 30260 - }, - { - "image_path": "G:\\images\\combined\\004386_jpg.rf.32f766ff17975961422f55a8f9979f53.jpg", - "response": "There are four construction workers in the image. They are all wearing yellow safety vests and hard hats. They are working on a construction site that has a web of steel rebar laid out on the ground. There is a white crane operating in the background. There are also two other people in the image, one on the far left and one on the far right. The person on the far left is wearing a blue shirt and grey pants, while the person on the far right is wearing a white shirt and grey pants.", - "id": 30261 - }, - { - "image_path": "G:\\images\\combined\\004387_jpg.rf.b2d6c37fc6ff41e3e6cc0f3e3aefd634.jpg", - "response": "a group of people walking down a sidewalk", - "id": 30262 - }, - { - "image_path": "G:\\images\\combined\\004388_jpg.rf.6aed72c06fd800cca41147e6eb61b0e5.jpg", - "response": "The image shows two workers in a dark room. They are wearing orange work suits and blue helmets. One worker is on the left, and the other is on the right. They are both engaged in welding. A blue light is shining on the spot where they are welding. There are also sparks flying.", - "id": 30263 - }, - { - "image_path": "G:\\images\\combined\\004389_jpg.rf.89ee94151825d0ea63a59fe75ffeacdd.jpg", - "response": "a group of men standing on a train track", - "id": 30264 - }, - { - "image_path": "G:\\images\\combined\\00438_jpg.rf.1b72a85d317f10877c4e9a64c3170980.jpg", - "response": "In the image, two workers are standing on a precarious-looking walkway that has been carved into the side of a mountain. They are both wearing hard hats and masks, and are focused on the camera. The walkway is made of wooden planks and leads to a ladder that disappears over a cliff. The workers are looking up at the camera, and one of them is holding a tool. The background shows a mountainous landscape with a river far below.", - "id": 30265 - }, - { - "image_path": "G:\\images\\combined\\00438_jpg.rf.a466fa450b0fe68762b240cfbf1b1581.jpg", - "response": "The image shows two men standing on a narrow mountain path. They are wearing hard hats and masks. The man on the left is wearing a yellow hard hat and has a beard. The man on the right is wearing a green hard hat with a yellow helmet. They are both wearing uniforms. In front of them is a ladder made of wood. To the right of the men, there is a large cliff with a white stone column embedded in it. The sky above them is grey and cloudy. The mountain path is very narrow and there are steep cliffs on both sides.", - "id": 30266 - }, - { - "image_path": "G:\\images\\combined\\004391_jpg.rf.0697d3ce32f04a03f7e46cf20c6fed5b.jpg", - "response": "[ centrally managed state-owned enterprise ] party secretary and chairman of the board of directors liu yong visited the construction site of the zhengzhou bozhou railway freight station to\u68c0\u67e5\u5de5\u4f5c", - "id": 30267 - }, - { - "image_path": "G:\\images\\combined\\004392_jpg.rf.b74125882e5df22de0d17fb156c5265a.jpg", - "response": "A group of men in hard hats are standing in a construction site. They are standing on a mesh platform and looking at something on the ground.", - "id": 30268 - }, - { - "image_path": "G:\\images\\combined\\004393_jpg.rf.b25d77a0194ebd926af20e85b74ea4ea.jpg", - "response": "In the image two men wearing hard hats are standing in front of a snowy power line.", - "id": 30269 - }, - { - "image_path": "G:\\images\\combined\\004394_jpg.rf.66bdb117d9be4057d16124e21cb06859.jpg", - "response": "A worker in an orange jumpsuit and blue hard hat repairs a power line.", - "id": 30270 - }, - { - "image_path": "G:\\images\\combined\\004395_jpg.rf.0d9ecfb50444f210b92619f1b8776b47.jpg", - "response": "a group of people standing in front of a sign that says KVOT2", - "id": 30271 - }, - { - "image_path": "G:\\images\\combined\\004396_jpg.rf.54c4c1d110818ee7f68e386797c7a2e9.jpg", - "response": "A group of five men working on a construction site.", - "id": 30272 - }, - { - "image_path": "G:\\images\\combined\\004397_jpg.rf.976043fe098746a88bb877a98ddc9061.jpg", - "response": "A man in a green coat and yellow hard hat is using a large yellow tool to chip away at ice on a power box.", - "id": 30273 - }, - { - "image_path": "G:\\images\\combined\\004398_jpg.rf.428321009854a5f84e2f526f31f3f5e9.jpg", - "response": "A group of three men standing next to a wall with two of them wearing hard hats.", - "id": 30274 - }, - { - "image_path": "G:\\images\\combined\\004399_jpg.rf.931b995be831dcfc2ce280be93994a5a.jpg", - "response": "The image shows a large, open construction site with a group of people working inside. The site appears to be made of wood and metal frameworks, and the workers are wearing hard hats and clothes. Some of the workers are engaged in various tasks, such as standing or squatting, while others appear to be taking a break. The image is taken from a perspective looking down onto the construction site.", - "id": 30275 - }, - { - "image_path": "G:\\images\\combined\\0043d22a2fda508c.jpg", - "response": "A group of people are standing close together and posing for a picture. They are all smiling and seem to be enjoying themselves. Some of them are holding drinks, and there is a cup visible in the scene. The group is made up of people of various heights and they are all close to one another.", - "id": 30276 - }, - { - "image_path": "G:\\images\\combined\\004400_jpg.rf.6a5a15cfff0f2bba1dc98ac3607a0ec5.jpg", - "response": "In the image two workers are seen wearing yellow helmets and grey uniforms, they are working on a metal tower. The tower is grey in color and has wires all around it. The workers are on it and it also has some glass like materials on it. The background of the image has mountains and a town visible.", - "id": 30277 - }, - { - "image_path": "G:\\images\\combined\\004401_jpg.rf.1373ba31188765a607d0beda9ed0c3e4.jpg", - "response": "A group of men in blue uniforms lowering a man down a well.", - "id": 30278 - }, - { - "image_path": "G:\\images\\combined\\004403_jpg.rf.c0bc87ffe43ad4676ac3e79083d038c0.jpg", - "response": "A construction site with two people working. There is a large roll of steel in the background and two cranes in the distance. There is a yellow crane in the middle of the scene and a green one on the right. There is a wooden post being carried by a man in the foreground and a pile of bamboo in the middle of the scene. The ground is dirt and there are several pieces of wood scattered around.", - "id": 30279 - }, - { - "image_path": "G:\\images\\combined\\004405_jpg.rf.474e43a53c9a438526c7789199aaa346.jpg", - "response": "A worker is seen in a factory in this undated file photo. VCG", - "id": 30280 - }, - { - "image_path": "G:\\images\\combined\\004407_jpg.rf.db27a9da3d312b04b635aa1907bc6d9b.jpg", - "response": "two men walking side by side", - "id": 30281 - }, - { - "image_path": "G:\\images\\combined\\004409_jpg.rf.9c3c0832db26a221bd64e29b8129278e.jpg", - "response": "A group of people sitting around a table with water bottles on it.", - "id": 30282 - }, - { - "image_path": "G:\\images\\combined\\004410_jpg.rf.effe04e22da3f813384c032e82d00222.jpg", - "response": "A worker is using a large tool to work on a large piece of equipment. The equipment is a large, industrial machine with a long, cylindrical shape. The machine is painted yellow and grey and is located in a large, open warehouse. There are several other workers in the warehouse, although they are not visible in the image. The walls of the warehouse are lined with large windows and there are several pieces of machinery and equipment scattered around the floor.", - "id": 30283 - }, - { - "image_path": "G:\\images\\combined\\004411_jpg.rf.ed4d867d6ba38f2de9d8284c14b948a8.jpg", - "response": "There are six people in the image, all wearing hard hats and work clothes. They are standing on a set of stairs that are made of metal. The stairs lead up to a structure that has metal beams and scaffolding. The people are all looking in the same direction, possibly at the camera.", - "id": 30284 - }, - { - "image_path": "G:\\images\\combined\\004412_jpg.rf.21eb7f8ecc68efc473e91d6cc556839c.jpg", - "response": "A man wearing a red jumpsuit, a red hard hat, and white gloves sits on a cinder block on a construction site. He is smiling at the camera. He has a trowel in his hand. To the left of the frame are several white cinder blocks stacked in a column. To the right of the frame are the legs of a building that has several windows. In the background, outside the frame, are several trees.", - "id": 30285 - }, - { - "image_path": "G:\\images\\combined\\004413_jpg.rf.e43c17351c117762828ec7f43cf7a646.jpg", - "response": "An oil rig worker in a red jumpsuit, white hard hat, and white gloves is holding a tool in front of a drilling rig.", - "id": 30286 - }, - { - "image_path": "G:\\images\\combined\\004414_jpg.rf.b40c75fb55ae9eeaf45aefde57caff33.jpg", - "response": "A man and woman standing in front of a construction site with blueprints and a hard hat.", - "id": 30287 - }, - { - "image_path": "G:\\images\\combined\\004415_jpg.rf.51ce0638acba70c3e03b8765cb156332.jpg", - "response": "A construction site with two men working on a scaffolding platform below a bridge. The bridge has a sign on it that says \"no vehicles, pedestrians, or animals allowed\". There are also several other signs on the bridge, including a speed limit sign that says \"20t\" and a height limit sign that says \"4m\".", - "id": 30288 - }, - { - "image_path": "G:\\images\\combined\\004416_jpg.rf.2fcb9b13dedc6c87c086d47895f26833.jpg", - "response": "The image shows a person in a yellow jacket standing in a tunnel. The tunnel is under construction and has a large drill in it. The drill is yellow and white and is located towards the right side of the image. The person is standing near the middle of the image and is looking at a control panel in front of them. The control panel has many buttons and levers on it. The person is wearing a yellow hard hat and is positioned slightly above the control panel. The tunnel appears to be large and has a concrete archway above the person. There are also two birds visible in the tunnel, one on the left and one on the right.", - "id": 30289 - }, - { - "image_path": "G:\\images\\combined\\004418_jpg.rf.1c7d76ce622a5ad3a6f91260cd212326.jpg", - "response": "A group of men working on a construction site.", - "id": 30290 - }, - { - "image_path": "G:\\images\\combined\\004419_jpg.rf.3c220a81f62a0967c37c16cdfdd25dae.jpg", - "response": "A construction worker wearing a hard hat and orange vest stands on a construction site.", - "id": 30291 - }, - { - "image_path": "G:\\images\\combined\\004420_jpg.rf.e2f715ad2c5f8ca368cc726c0382cc7c.jpg", - "response": "A group of workers in hard hats are gathered around a small device. They are all wearing construction gear, including yellow and orange vests. Some of the workers are holding the device, while others are looking at it with interest. The device appears to be a small, blue and silver object.", - "id": 30292 - }, - { - "image_path": "G:\\images\\combined\\004421_jpg.rf.446cf89d89cadfd795f194d86604ad90.jpg", - "response": "Men working on a construction site to make a road.", - "id": 30293 - }, - { - "image_path": "G:\\images\\combined\\004422_jpg.rf.d3dcbc9ab1483b18e07c4e445d091d73.jpg", - "response": "A group of people walking in front of a building under construction.", - "id": 30294 - }, - { - "image_path": "G:\\images\\combined\\004423_jpg.rf.d6ffa10d0c5197e565e50cfefb28dfdf.jpg", - "response": "A group of men in blue work uniforms are working on a power tower. They are wearing yellow hard hats and some have on red and white striped safety vests. They are working on the metal framework of the tower.", - "id": 30295 - }, - { - "image_path": "G:\\images\\combined\\004424_jpg.rf.899703d355a18bf03cac637bfeaf2265.jpg", - "response": "A man in a camouflage jacket and orange hard hat is on a ladder, climbing up to the top of a white metal tower. He is wearing a tool belt and has a tool in his hand. The ladder is secured to the tower with a strap.", - "id": 30296 - }, - { - "image_path": "G:\\images\\combined\\004425_jpg.rf.b3a4994bb993d32580a824b7cdd76509.jpg", - "response": "a group of men wearing hard hats", - "id": 30297 - }, - { - "image_path": "G:\\images\\combined\\004427_jpg.rf.ddb7cf4eb3373eee6bba90c3437f6620.jpg", - "response": "A man wearing a white hard hat with the words\u6cf0\u5c71\u8def\u6865.", - "id": 30298 - }, - { - "image_path": "G:\\images\\combined\\004429_jpg.rf.dce8d537fc33ed1feee731b3ca15aea0.jpg", - "response": "A man wearing a white shirt and a red helmet is holding a walkie talkie and looking at a total station.", - "id": 30299 - }, - { - "image_path": "G:\\images\\combined\\004431_jpg.rf.110403e2fb079560bcfdd61ed9ec7763.jpg", - "response": "The image shows a group of people working on a construction site. They are all wearing blue hard hats and some are also wearing white T-shirts. The people are standing around a large pipe, which is lying on the ground, and some of them are holding tools. There are two red flags on the right side of the image. In the background, there are several other people wearing yellow vests. On the left side of the image, there is a yellow truck.", - "id": 30300 - }, - { - "image_path": "G:\\images\\combined\\004434_jpg.rf.8528ae5bb3b18c3a544ae34c6a3bcd73.jpg", - "response": "The picture shows a group of people(647,454),(744,893)(346,452),(437,915)(570,427),(666,893)(424,445),(508,902)(490,454),(587,897)(737,443),(848,892)(76,411),(191,972)(269,455),(358,929) standing in front of a building.", - "id": 30301 - }, - { - "image_path": "G:\\images\\combined\\004435_jpg.rf.590c4c994f17ee4e334116e9fc0cd2db.jpg", - "response": "A construction site with a building under construction. The building is white and has many windows. There is scaffolding around the building. In the foreground, two workers are visible, one is wearing a red helmet and a red vest, and is walking towards the camera, the other is further back and is wearing a blue helmet. There is a pile of sandbags in front of the building, and a yellow hand truck.", - "id": 30302 - }, - { - "image_path": "G:\\images\\combined\\004436_jpg.rf.db0e1b0ce9fcb31957adfec1a5397c5a.jpg", - "response": "A man wearing a yellow safety helmet and a yellow vest is standing in a room filled with construction materials and tools. He is smiling at the camera and has his hand on a yellow tool box. There are several red ladders in the room and a pile of copper pipes on a metal table. Another metal table is covered with more tools and a bucket is placed on the floor.", - "id": 30303 - }, - { - "image_path": "G:\\images\\combined\\004439_jpg.rf.a370229c52e9b48c47f207cff0ba2f81.jpg", - "response": "An electrician wearing a high visibility vest and a hard hat stands in the middle of a construction site. He is holding a large angle grinder on his shoulder.", - "id": 30304 - }, - { - "image_path": "G:\\images\\combined\\004440_jpg.rf.adbf76f138b50101c62dc6253b214334.jpg", - "response": "A group of people working on a construction site.", - "id": 30305 - }, - { - "image_path": "G:\\images\\combined\\004441_jpg.rf.6995a12e27d8d7bda70f5ec894effaa8.jpg", - "response": "A group of construction workers sitting on the ground.", - "id": 30306 - }, - { - "image_path": "G:\\images\\combined\\004442_jpg.rf.cc5af31cb90e3f4a60c0c1f3d58db967.jpg", - "response": "A man and a woman in yellow jackets and hard hats are in a bucket above a power line.", - "id": 30307 - }, - { - "image_path": "G:\\images\\combined\\004443_jpg.rf.14b1cbe63fe496979c91e29d616e89fb.jpg", - "response": "The image shows a construction site with two workers visible. One worker is on the left, crouching down and appears to be a woman. She is wearing a green shirt and a yellow hard hat. The other worker is on the right, standing and wearing a white shirt and a yellow hard hat. They are both working near the foreground of the image.", - "id": 30308 - }, - { - "image_path": "G:\\images\\combined\\004444_jpg.rf.b9ca8455aa30865e1e768abec9281f4e.jpg", - "response": "A man in a green shirt and white hard hat is checking lumber at a construction site. He is smiling and looking up at a stack of lumber. The lumber is yellow and brown and is made of wood. There are several stacks of lumber in the scene and a blue sky in the background. The man is wearing a white hard hat and has a pen in his pocket.", - "id": 30309 - }, - { - "image_path": "G:\\images\\combined\\004445_jpg.rf.db7c712ae66cecbf44c2c8833b663f9d.jpg", - "response": "The image shows three men standing in front of a building. The man on the left is wearing a black jacket and a red hard hat. The man in the middle is wearing a blue hard hat and a light blue jacket. The man on the right is wearing a grey hard hat and a grey jacket. They are all looking at a white piece of paper the man in the middle is holding.", - "id": 30310 - }, - { - "image_path": "G:\\images\\combined\\004446_jpg.rf.e29612a70c1a06d86ffbddb0f80bf0f5.jpg", - "response": "The image shows three workers in yellow helmets who are repairing a black pipeline on the ground. The pipeline is located in the middle of an empty construction site with yellow earth and some construction vehicles, including a yellow truck and a yellow loader, in the background. The workers are focused on their task, and one of them is holding a blowtorch to repair the pipeline. The photo is accompanied by a caption in Chinese that reads \"China Times\".", - "id": 30311 - }, - { - "image_path": "G:\\images\\combined\\004447_jpg.rf.ef0b941ec30a4feeef120c67681d4a5d.jpg", - "response": "A group of three men working on a construction site wearing blue and yellow hard hats.", - "id": 30312 - }, - { - "image_path": "G:\\images\\combined\\004448_jpg.rf.e272ba58daacf8865b183a9bb9ca6fc0.jpg", - "response": "A group of people standing in front of a construction site.", - "id": 30313 - }, - { - "image_path": "G:\\images\\combined\\004449_jpg.rf.f257b2a2668160e53a069e163b965564.jpg", - "response": "A large group of workers in yellow vests and hard hats are huddled together, holding a large black hose and operating a yellow machine with a long arm on a city street.", - "id": 30314 - }, - { - "image_path": "G:\\images\\combined\\004450_jpg.rf.54c8e7ceac78e7a27cce14ed5d01959e.jpg", - "response": "A man is standing in front of a pile of gravel with a red hard hat on. He is wearing a blue jacket and a red hard hat.", - "id": 30315 - }, - { - "image_path": "G:\\images\\combined\\004451_jpg.rf.e63add1801bf45174965c002e86d1a18.jpg", - "response": "In the image, there is a construction worker wearing an orange hard hat and jacket. He is smiling and scratching his head with his hand. In the background, there is a large construction site with a crane and trucks. The sky is overcast.", - "id": 30316 - }, - { - "image_path": "G:\\images\\combined\\004452_jpg.rf.b7dd2846db2b793959d6c07709a406ec.jpg", - "response": "A group of men standing around a table.", - "id": 30317 - }, - { - "image_path": "G:\\images\\combined\\004453_jpg.rf.4245548be881440107eeea68c65b17f0.jpg", - "response": "In the image there is a worker wearing a red helmet who is pulling on a wire. The wire is connected to a wooden post. The worker is standing next to a wooden cage made of rods. The background shows a concrete floor and a wooden construction site.", - "id": 30318 - }, - { - "image_path": "G:\\images\\combined\\004454_jpg.rf.e8ebf172d93241b4ee3f521463e5fe3b.jpg", - "response": "A man in a yellow hard hat is pushing a large wooden cart with two wheels. He is standing on a construction site with a pile of dirt and debris in the background. There are also two other people on the site, one in the far distance and another near the right edge of the image. There is a large yellow crane operating in the far distance. There are also two buildings visible, one on the left and one on the right. In the background, there is a city skyline visible on the horizon.", - "id": 30319 - }, - { - "image_path": "G:\\images\\combined\\004455_jpg.rf.6e7160ebc5d521069a41d9e9f928baa7.jpg", - "response": "A worker in a red jumpsuit stands in front of a piece of machinery.", - "id": 30320 - }, - { - "image_path": "G:\\images\\combined\\004456_jpg.rf.5e9f993ef720c7825292f022d2892ad3.jpg", - "response": "A group of people working on a hole in the ground with a orange tractor behind them.", - "id": 30321 - }, - { - "image_path": "G:\\images\\combined\\004457_jpg.rf.473d15fbe0e24df23705cf1136885e8a.jpg", - "response": "A group of men standing in front of a building.", - "id": 30322 - }, - { - "image_path": "G:\\images\\combined\\004458_jpg.rf.9b37abe6d1bcc970482a192a3be4ca22.jpg", - "response": "A construction site with multiple workers.", - "id": 30323 - }, - { - "image_path": "G:\\images\\combined\\004459_jpg.rf.f9148febcb153790daceef99ae14f247.jpg", - "response": "A group of men working on a scaffolding.", - "id": 30324 - }, - { - "image_path": "G:\\images\\combined\\004461_jpg.rf.47195b373f9236f68ac946ec5a8d8be8.jpg", - "response": "The image shows a construction site with several people working. There is a large area of red soil with wooden beams and metal rebar laid out in a grid pattern. The workers are wearing grey uniforms and blue or red helmets. Some of them are standing on the beams, while others are working on them. In the background, there are more people standing and some trees.", - "id": 30325 - }, - { - "image_path": "G:\\images\\combined\\004462_jpg.rf.79fba98f886907f885c601741e7e00c2.jpg", - "response": "In the image there is a man kneeling down next to a red box. He is wearing a blue shirt, a white helmet, and white gloves. In the background, there is a bridge under construction. To the left of the man, there is a field with a dirt path going through it.", - "id": 30326 - }, - { - "image_path": "G:\\images\\combined\\004463_jpg.rf.5b0072c46af596b569776e7733ae2008.jpg", - "response": "A construction worker is using a power trowel to smooth concrete at a construction site. In the background, there are several buildings under construction. There are also several other workers at the site, with one of them wearing a yellow hard hat. There are several other people scattered around the site, some of them carrying tools. There are also several orange and white construction barrels placed around the site.", - "id": 30327 - }, - { - "image_path": "G:\\images\\combined\\004464_jpg.rf.862bbb50fe14519f825466b5705aaef4.jpg", - "response": "In the image there is a construction worker wearing an orange jacket and a yellow helmet. The worker is in the middle of a construction site, bending over a grid of metal rods. There are also orange safety barriers visible on the right side of the image.", - "id": 30328 - }, - { - "image_path": "G:\\images\\combined\\004465_jpg.rf.f466fa86d521d6bd598a2e4e851e7706.jpg", - "response": "A man(383,282),(487,707) in a red suit(385,352),(485,696) and blue helmet(393,280),(443,338) walking down a stairwell", - "id": 30329 - }, - { - "image_path": "G:\\images\\combined\\004466_jpg.rf.f651b012b4d67ec99efa907a0cc81127.jpg", - "response": "A group of men are working on a power line.", - "id": 30330 - }, - { - "image_path": "G:\\images\\combined\\004467_jpg.rf.138a291a7fdb2323facd43a350e48008.jpg", - "response": "A group of people standing around looking at a paper.", - "id": 30331 - }, - { - "image_path": "G:\\images\\combined\\004468_jpg.rf.cb4d7df3b1063d2164801e7674addee2.jpg", - "response": "The image shows a group of workers wearing hard hats and eating lunch on the side of a mountain. They are sitting on the ground, surrounded by trees and snow. There are five people in the picture, each with a container of food in front of them. One person is holding a spoon in their hand. The containers are labeled \"KFC\", \"M\", and \"S\". The workers are engaged in their meal, with two people looking down at their food and three others looking at the camera. The snow on the ground adds to the wintry atmosphere of the scene.", - "id": 30332 - }, - { - "image_path": "G:\\images\\combined\\004469_jpg.rf.747ca6bca6bf440dbb6162e9ebd015d2.jpg", - "response": "A group of people standing around a construction site.", - "id": 30333 - }, - { - "image_path": "G:\\images\\combined\\00446_jpg.rf.1c5201ccffaa9c028e681f3bbbe41c10.jpg", - "response": "a group of people standing in front of a tunnel", - "id": 30334 - }, - { - "image_path": "G:\\images\\combined\\00446_jpg.rf.74db43f7f519149ccb516799aef18125.jpg", - "response": "a group of people standing in front of a tunnel", - "id": 30335 - }, - { - "image_path": "G:\\images\\combined\\004470_jpg.rf.fa2227137d122f7c72bb798f90697762.jpg", - "response": "A man in a red and white shirt is shaking hands with another man.", - "id": 30336 - }, - { - "image_path": "G:\\images\\combined\\004471_jpg.rf.fbbeae3094993ea768e671bbd6130aaf.jpg", - "response": "a group of people walking on a street", - "id": 30337 - }, - { - "image_path": "G:\\images\\combined\\004472_jpg.rf.0c425efaed6d4f763c94c812925913ca.jpg", - "response": "The image shows two workers in white shirts and grey pants, one of them is on the left and the other one is on the right, they are climbing a grey pole.", - "id": 30338 - }, - { - "image_path": "G:\\images\\combined\\004474_jpg.rf.2c8bbc838b557dd56b56e6a4311dbaa8.jpg", - "response": "An employee of a clean energy company repairs an electrical component.", - "id": 30339 - }, - { - "image_path": "G:\\images\\combined\\004476_jpg.rf.061b3c97541a3635f86a4aca3996bdbc.jpg", - "response": "In the image there is a worker wearing a blue uniform and a white mask who is working with some machinery. The worker is on the left side of the image and the machinery they are working on is on the right. The worker is grinding a large metal cylinder and sparks are flying from the grinding wheel. The metal cylinder is grey and has some red writing on it. The worker is also wearing a grey helmet for safety. The background of the image is a bit blurry and there is a green machine behind the worker.", - "id": 30340 - }, - { - "image_path": "G:\\images\\combined\\004477_jpg.rf.1275285cf12f52c1c658912d327b06fe.jpg", - "response": "A man in a blue shirt and a red hard hat is standing in front of a large cement mixer. The mixer is a large, cement-colored cylinder with a large metal platform and machinery attached to it. There is a yellow and red crane next to the mixer. The man is looking at the crane and the mixer. There are several other people in the background, some of them are wearing hard hats. The sky is overcast and there is a building in the background.", - "id": 30341 - }, - { - "image_path": "G:\\images\\combined\\004479_jpg.rf.d754a54871477d6fc549acef8b7ee5e8.jpg", - "response": "A worker wearing a yellow hat and work clothes is fixing a power line.", - "id": 30342 - }, - { - "image_path": "G:\\images\\combined\\004480_jpg.rf.ad9411247b3e4994557a440b12a097ab.jpg", - "response": "A woman wearing a white hard hat and a yellow safety vest is looking at a blueprint. She is smiling and wearing a white shirt.", - "id": 30343 - }, - { - "image_path": "G:\\images\\combined\\004481_jpg.rf.db45e0a29099413c82f554bd0acbffe6.jpg", - "response": "In the image, three men wearing hard hats are carrying a metal beam up a snowy slope. They are all dressed in black. One man is on the left, carrying the beam above his head, another man is in the middle, and the third man is on the right. They are walking up a steep, snowy hill. In the background, there are some trees covered with snow.", - "id": 30344 - }, - { - "image_path": "G:\\images\\combined\\004482_jpg.rf.603dd2e1fbaaf47146c89b9c791449cd.jpg", - "response": "Four men in blue hard hats are working on a construction site. They are wearing work clothes and are using a tool. Some pipes are visible in the scene.", - "id": 30345 - }, - { - "image_path": "G:\\images\\combined\\004483_jpg.rf.aae6b8d6f665717aeec019dd8196b823.jpg", - "response": "The photo shows a group of men standing on a wet road near a structure. They are dressed in business suits and hard hats. In the foreground, a camera man is holding a camera and microphone, and a person is holding a cable. In the background, there are several other people standing at a distance. The sky is overcast, and there are some power lines in the background.", - "id": 30346 - }, - { - "image_path": "G:\\images\\combined\\004484_jpg.rf.e823b3ffc2aea15e357c451301d4e931.jpg", - "response": "In the image there is a construction worker wearing a white hard hat who is working on a construction site. The worker is sitting on a red and white structure which appears to be a foundation or a frame for a building. The worker is holding a square tool and appears to be measuring or marking something on the structure. The background of the image is blurred and there are a few other people working in the distance.", - "id": 30347 - }, - { - "image_path": "G:\\images\\combined\\004485_jpg.rf.1ab212d94cc49eb0ac412a7eda02cd4c.jpg", - "response": "Men(426,297),(648,996)(635,392),(742,895)(201,350),(396,997)(395,325),(495,996) walking in front of construction trucks(105,122),(648,578)(899,223),(998,546) in a dirt lot", - "id": 30348 - }, - { - "image_path": "G:\\images\\combined\\004486_jpg.rf.0706c06b6ae6c208ee44e60b76bb0c26.jpg", - "response": "An engineer in a hard hat stands in front of a crane that is lifting a shipping container. The shipping container is being lifted by a crane and is in the process of being placed on a truck. The engineer is standing on a dock and is looking at the action. The sky above is blue and cloudless.", - "id": 30349 - }, - { - "image_path": "G:\\images\\combined\\004487_jpg.rf.8ec027bb364538113b9bd5196e37d955.jpg", - "response": "A worker is seen in the image wearing a blue jumpsuit and a white helmet. He is standing on a large metal box with electrical wiring and equipment around him. He is holding a tool in his hand and appears to be working on the electrical components. The background shows a lush green forest.", - "id": 30350 - }, - { - "image_path": "G:\\images\\combined\\004489_jpg.rf.45fb6a68fc0df921c5f99660f38bf4e8.jpg", - "response": "The image shows a group of people standing around a flatbed trailer full of stainless steel pots. There are at least five people in the scene, all wearing hard hats. Some people are closer to the left side of the trailer, while others are closer to the right side. A few people are also standing near the front of the trailer, and one person is at the far right edge of the image.", - "id": 30351 - }, - { - "image_path": "G:\\images\\combined\\004490_jpg.rf.9d90250d4deb1d3fe945a7fe0e590b16.jpg", - "response": "In the image there are two men wearing hard hats and blue coveralls. They are standing on a balcony overlooking a large industrial space with a walkway and pipes. There is a yellow tank in the room below them. They are both holding on to a metal railing.", - "id": 30352 - }, - { - "image_path": "G:\\images\\combined\\004491_jpg.rf.1ae716bdb65cc3ae82c56d006517370b.jpg", - "response": "The picture shows a group of people standing in front of a large construction site. There are several men in the picture, all dressed in business attire. One man is speaking into a microphone, which is held in his right hand. The man second from the left is wearing a tie and has his hands crossed in front of him. The man third from the left is wearing glasses and has his hands in his pockets. The man on the far right is wearing a suit and is looking to the right. In the background, there are several tall buildings under construction. The ground around the people is covered in dirt and there are several construction vehicles parked to the right of the picture.", - "id": 30353 - }, - { - "image_path": "G:\\images\\combined\\004493_jpg.rf.cbb2dc134cca77967c5d8344c24904ab.jpg", - "response": " Rescuers(588,373),(693,793)(415,618),(547,997)(213,645),(352,997)(475,446),(579,787)(92,534),(183,802)(568,149),(643,378)(669,510),(758,777)(407,588),(478,997) work to free a man who fell 20 feet into a crevasse while ice climbing in the Cascades.", - "id": 30354 - }, - { - "image_path": "G:\\images\\combined\\004494_jpg.rf.7a013d1e27e14ee801d66caa89874a88.jpg", - "response": "Three men in yellow vests and hard hats are talking about a construction site. They are all holding white papers and one of them is holding a red book. They are standing in front of a building under construction with wooden beams and steel bars. The building has only a few floors built and is located next to a street.", - "id": 30355 - }, - { - "image_path": "G:\\images\\combined\\004495_jpg.rf.6bc40d081ff068a4532c3ad2fce218f6.jpg", - "response": "The image shows a group of construction workers at a construction site. They are working on a building that is still under construction. The building has not yet been completed, and it is a large building with many floors. The workers are wearing hard hats and uniforms, and some of them are using tools such as hammers and drills. The scene is set on a construction site, and there are steel bars visible in the foreground.", - "id": 30356 - }, - { - "image_path": "G:\\images\\combined\\004496_jpg.rf.53aab25992a679d0d3475cb9b289ebac.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is working on a metal scaffolding.", - "id": 30357 - }, - { - "image_path": "G:\\images\\combined\\004497_jpg.rf.c8e08da53ebe4da945625e30e22295b7.jpg", - "response": "a man(199,144),(536,986) in a white shirt(199,377),(532,983)", - "id": 30358 - }, - { - "image_path": "G:\\images\\combined\\004498_jpg.rf.e8cecdeff014e0e2a816366c6e6893d2.jpg", - "response": "A group of men standing around talking.", - "id": 30359 - }, - { - "image_path": "G:\\images\\combined\\004499_jpg.rf.eeb903d25a8917a8906a4f18d32a4f13.jpg", - "response": "A group of people working on a construction site.", - "id": 30360 - }, - { - "image_path": "G:\\images\\combined\\0044daa150229eea.jpg", - "response": "A man standing at a podium in front of a large screen.", - "id": 30361 - }, - { - "image_path": "G:\\images\\combined\\004500_jpg.rf.8c29331f7e48df4257e40ec713bf7581.jpg", - "response": "A group of men in orange vests standing on a road.", - "id": 30362 - }, - { - "image_path": "G:\\images\\combined\\004501_jpg.rf.f596cc1bc624bc84f4a88604c3b35369.jpg", - "response": "A man in a red hard hat is putting a yellow hard hat on a woman's head.", - "id": 30363 - }, - { - "image_path": "G:\\images\\combined\\004502_jpg.rf.d65f95506e86d09b72ac16fcda95b574.jpg", - "response": "A group of men standing in front of a building under construction.", - "id": 30364 - }, - { - "image_path": "G:\\images\\combined\\004504_jpg.rf.66b62df7f5cd526d1f4fb818293ff6e0.jpg", - "response": "A group of people working on a construction site.", - "id": 30365 - }, - { - "image_path": "G:\\images\\combined\\004505_jpg.rf.eb706d0a401c43474d2d79f9941517c2.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left and the other is on the right. They are both wearing yellow hard hats and are\u94bb\u4e95\u7684\u5de5\u4eba\u3002", - "id": 30366 - }, - { - "image_path": "G:\\images\\combined\\004506_jpg.rf.5ce992a2a4bd43cdce5dfca8c9696069.jpg", - "response": "A group of men are walking up a snowy hill carrying large metal cables. They are all wearing orange hats and some are wearing orange vests. The snow around them is knee deep and the trees behind them are covered in snow.", - "id": 30367 - }, - { - "image_path": "G:\\images\\combined\\004507_jpg.rf.1a10ee701e507a624774e249729dc8f8.jpg", - "response": "a group of men sitting in a living room", - "id": 30368 - }, - { - "image_path": "G:\\images\\combined\\004508_jpg.rf.07e214d8ea7b1195083755ad20c69a40.jpg", - "response": "A group of three men working in a warehouse.", - "id": 30369 - }, - { - "image_path": "G:\\images\\combined\\004509_jpg.rf.439785efda810c812bc02fe1333e6cbb.jpg", - "response": "A construction worker is using a power trowel to smooth concrete at a construction site. In the background, there is a large building under construction. There are also several cranes working in the area.", - "id": 30370 - }, - { - "image_path": "G:\\images\\combined\\004510_jpg.rf.bb9dc31d3f19a1118c31e0249dbaaa56.jpg", - "response": "The image shows a construction site where a building is being built. The building is in the middle of the picture and is grey in colour. It is a multistoried building and appears to be made of concrete. There is a man standing in front of the building, facing away from the camera. Another man is standing further back in the picture, also facing the building. There is a pile of dirt in the foreground of the picture, and a pile of bricks to the right of the man. There is also a pile of sand to the left of the man. The sky above the building is grey.", - "id": 30371 - }, - { - "image_path": "G:\\images\\combined\\004511_jpg.rf.07f100a3992916c9f504911e4daf309c.jpg", - "response": "The image shows a group of people standing in a large, unfinished room. They are all wearing hard hats, and some of them are also wearing suits. The room has a bare concrete floor and ceiling, and there are several pieces of construction equipment visible in the background. The people are standing in a rough circle, with some of them looking at the camera and others looking in different directions.", - "id": 30372 - }, - { - "image_path": "G:\\images\\combined\\004512_jpg.rf.5b48f32e2b4c72f1d7094f85f7861841.jpg", - "response": "A group of people walking down a walkway.", - "id": 30373 - }, - { - "image_path": "G:\\images\\combined\\004513_jpg.rf.ccd8c43723d2a25c8913b4709589f71a.jpg", - "response": "The rescue team is working on extracting the miners.", - "id": 30374 - }, - { - "image_path": "G:\\images\\combined\\004514_jpg.rf.962f4768b11d1192f6b4e5d0e5087234.jpg", - "response": "A man in a hard hat is standing in front of a construction site. There are other people standing around him, also wearing hard hats. The man is pointing at something on a wall of iron bars. In the background, there is a red and white building and a few cranes.", - "id": 30375 - }, - { - "image_path": "G:\\images\\combined\\004515_jpg.rf.a34c78dd420994cdcb8494ed86890cdb.jpg", - "response": "In the image two workers are seen working on an electricity cable. They are wearing green and brown camouflage uniforms. The workers are at work on a sunny day and are wearing caps to protect themselves from the sun. The background has a tall building under construction.", - "id": 30376 - }, - { - "image_path": "G:\\images\\combined\\004516_jpg.rf.791d46fe5e82a0546c1123c583e7550b.jpg", - "response": "A group of men working on a construction site.", - "id": 30377 - }, - { - "image_path": "G:\\images\\combined\\004517_jpg.rf.3b92696754763af65fa817f24ec43946.jpg", - "response": "A construction worker is using a tool to measure the depth of a hole in the ground. Another worker is kneeling down in front of a large pipe. They are both wearing yellow vests and hard hats. In the background, there is a pile of sand and a pile of red and white striped caution tape.", - "id": 30378 - }, - { - "image_path": "G:\\images\\combined\\004518_jpg.rf.a4911082dbd78724b54f3ce9ca103b00.jpg", - "response": "A man wearing a blue hard hat is using a yellow ruler to measure a wooden wall. He is wearing a white shirt and blue pants. He is standing on a ladder. There is a house in the background.", - "id": 30379 - }, - { - "image_path": "G:\\images\\combined\\004521_jpg.rf.d8db86a809d7b074ae0d5de32f542659.jpg", - "response": " Dilma Rousseff(698,165),(960,995), Brazil's president, center, holds a hard hat(534,681),(633,853) as she tours the construction site of the Olympic Park in Rio de Janeiro, Brazil, on Tuesday, April 15, 2014. Rousseff visited the site to see the progress of the construction of the Olympic Park, which is scheduled to be completed in 2015.", - "id": 30380 - }, - { - "image_path": "G:\\images\\combined\\004522_jpg.rf.0013554991310aaa9640c0eee2a7866d.jpg", - "response": "A construction worker in orange coveralls and a hard hat is pulling on a large pipe. Another worker is in the background, and they are both standing in a large pit.", - "id": 30381 - }, - { - "image_path": "G:\\images\\combined\\004523_jpg.rf.9d721d11cce5f619dc7b6c85856e5561.jpg", - "response": "a group of people standing in a construction site", - "id": 30382 - }, - { - "image_path": "G:\\images\\combined\\004524_jpg.rf.215f238ae940a2a61caafc76c70c5d0c.jpg", - "response": "A man in a hard hat and sunglasses sits on a yellow vehicle.", - "id": 30383 - }, - { - "image_path": "G:\\images\\combined\\004525_jpg.rf.4a6ba11d84e525d86207eb5e4aecad32.jpg", - "response": "A group of workers stand in front of a yellow and orange construction vehicle. Some of them are wearing hard hats and one is wearing a white helmet. They are standing on a bridge that is under construction.", - "id": 30384 - }, - { - "image_path": "G:\\images\\combined\\004526_jpg.rf.9e659e9a922f18a694386d9bca93450f.jpg", - "response": "A group of rescue workers in orange uniforms and yellow hard hats are working to free a trapped worker. The workers are standing on a pile of rubble and debris. Some of the workers are using large tools to cut through the debris. There is a fire coming from the rubble.", - "id": 30385 - }, - { - "image_path": "G:\\images\\combined\\004527_jpg.rf.0343a2533293fcf98608c8cbd80005b8.jpg", - "response": "A man in a white shirt and hard hat looking at a building under construction.", - "id": 30386 - }, - { - "image_path": "G:\\images\\combined\\004528_jpg.rf.673e0538331d7606ce307e797ceeebd4.jpg", - "response": "a man(218,135),(693,996) wearing a blue hat(348,135),(645,427)", - "id": 30387 - }, - { - "image_path": "G:\\images\\combined\\004531_jpg.rf.659e5b5c3f7b7a12641b5fefe6f60a10.jpg", - "response": "In the image, a group of railway workers in orange jumpsuits and yellow helmets are working on a section of train tracks. They are standing on the tracks, with one person on each side of the tracks and two in the middle. They appear to be focused on their work.", - "id": 30388 - }, - { - "image_path": "G:\\images\\combined\\004532_jpg.rf.3d024daae531a60751d6f789fd5e26a5.jpg", - "response": "A group of workers are working on a building that is not yet fully constructed. They are standing on scaffolding that is attached to the building. The building is made of concrete and has a greenish color. The workers are wearing yellow helmets and red shirts. One of them is pointing towards something on the second floor of the building. There are also two people standing outside the scaffolding, one of them is wearing a white shirt. The sky is overcast and there are no other people in the image.", - "id": 30389 - }, - { - "image_path": "G:\\images\\combined\\004533_jpg.rf.dab4d20b05e2a4e65c3fbafe185d30ae.jpg", - "response": "In the image two workers are\u4fee\u7406ing electrical components. They are wearing hard hats and work clothes. One worker is in the front of the image and is focused on the task at hand. The second worker is in the background and is also working on the components. There are multiple electrical components in the foreground that the workers are working on.", - "id": 30390 - }, - { - "image_path": "G:\\images\\combined\\004534_jpg.rf.e81b9b16fd2e30393f644600947f04c6.jpg", - "response": "The image shows two workers standing in a large warehouse-like space, surrounded by large blocks of ice. The blocks are piled up in the foreground, and there are bags of ice in the background. The workers are standing near the pile of ice, which is spread out in front of them. They are both wearing yellow hard hats and safety vests.", - "id": 30391 - }, - { - "image_path": "G:\\images\\combined\\004535_jpg.rf.96dff44b6521f4bbf76f23516d670ad4.jpg", - "response": "a group of men standing in front of a van", - "id": 30392 - }, - { - "image_path": "G:\\images\\combined\\004536_jpg.rf.e20c5d9c9148244e80b9e87e6c916d0d.jpg", - "response": " a man(237,131),(371,658) in a red suit", - "id": 30393 - }, - { - "image_path": "G:\\images\\combined\\004537_jpg.rf.5925c2bdb31912ea5805764a4510012b.jpg", - "response": "\u5c71\u4e1c\u8363\u6210\u5e02\u6c14\u8c61\u5c40\u5e72\u90e8\u804c\u5de5(524,383),(798,830)\u8fde\u7eed\u594b\u6218\u5728\u6297\u51fb\u53f0\u98ce\u4e00\u7ebf\u3002\u53f0\u98ce\u201c\u6d77\u71d5\u201d\u7ed9\u8363\u6210\u5e02\u9020\u6210\u4e25\u91cd\u635f\u5931\uff0c\u622a\u81f33\u670812\u65e518\u65f6\uff0c\u5171\u9020\u62101\u4eba\u6b7b\u4ea1\uff0c2\u4eba\u5931\u8e2a\uff0c\u76f4\u63a5\u7ecf\u6d4e\u635f\u5931\u8fbe1.5\u4ebf\u5143\u3002\u76ee\u524d\uff0c\u5168\u5e02\u5df2\u6062\u590d\u4f9b\u753511\u4e07\u6237\uff0c\u6062\u590d\u4f9b\u6c346\u4e07\u6237\uff0c\u6062\u590d\u901a\u4fe110\u4e07\u6237\uff0c\u9053\u8def\u57fa\u672c\u6062\u590d\u7545\u901a\u3002", - "id": 30394 - }, - { - "image_path": "G:\\images\\combined\\004538_jpg.rf.263433e4be783c28a37300d533bda3a8.jpg", - "response": "The image shows a group of men standing in a large underground cavern. They are all wearing hard hats and some are also wearing suits. The cavern has a gravel floor and there are large boulders and mining equipment scattered around. The men are standing in the center of the cavern, facing each other, and appear to be engaged in a discussion or tour.", - "id": 30395 - }, - { - "image_path": "G:\\images\\combined\\004539_jpg.rf.e132895f544f3d194be574c1db7c1915.jpg", - "response": "The picture shows a group of people walking on a yellow dirt road. There are four people in the picture, two men and two women. The two men are wearing white and blue striped shirts, and the two women are wearing summer dresses. The man on the left is wearing glasses and a black watch. The woman on the left is holding a phone in her hand and looking at it. The two men walking behind are both wearing suits. The background is a construction site with several multi-story buildings under construction. There are several red and yellow construction cranes in the background. On the right side of the picture, there is a green grassy area with some yellow plants.", - "id": 30396 - }, - { - "image_path": "G:\\images\\combined\\00453fcb4e869350.jpg", - "response": "A man and a woman standing in a room.", - "id": 30397 - }, - { - "image_path": "G:\\images\\combined\\004540_jpg.rf.048b1181bb6624da37c66aab2fab7fed.jpg", - "response": "The image shows a group of men standing in a circle in a construction area. They are all wearing red hard hats. Some of the men are wearing white shirts and grey pants, while others are wearing light blue or white shirts and dark blue or dark grey pants. One man on the right is wearing a dark grey shirt and dark grey pants. The men are standing on a light brown concrete area with several construction materials around them. To the far left, there are several stacks of light brown wood planks. To the right, there is a pile of dark grey stones. In the background, there is a large mountain range covered in green trees. To the far left, there is a white building with red stripes. On the right side of the image, there is a tall green building with several red flags flying from it.", - "id": 30398 - }, - { - "image_path": "G:\\images\\combined\\004541_jpg.rf.a6daffdc41ad6307e820cfbab67569c3.jpg", - "response": "A man in a grey shirt and orange vest with a white hard hat on.", - "id": 30399 - }, - { - "image_path": "G:\\images\\combined\\004542_jpg.rf.3ef7c6ef0f6c319f1bef8f58a8ebfe55.jpg", - "response": "In the image two workers wearing yellow hard hats are standing in front of a large electrical box. The electrical box is grey with a control panel on the front. The workers are both holding yellow and grey check lists. One worker is on the left side of the image and is pointing to a control on the electrical box. The other worker is on the right side of the image and is looking at the first worker.", - "id": 30400 - }, - { - "image_path": "G:\\images\\combined\\004543_jpg.rf.0138dfc7fa3f96c4c22052eee5645706.jpg", - "response": "A group of three people standing together in front of a building that is under construction. They are all dressed in different colored work clothes and are holding a blueprint.", - "id": 30401 - }, - { - "image_path": "G:\\images\\combined\\004544_jpg.rf.8d2cda682555074008477eab14ad761b.jpg", - "response": "The image shows two workers clearing snow from power lines in a snowstorm. They are wearing black uniforms and blue helmets. One worker is on the left, pulling on a rope while the other is on the right, pulling on a cable. They are surrounded by snow, with a snow-covered hill in the background. There are also several trees covered in ice in the background.", - "id": 30402 - }, - { - "image_path": "G:\\images\\combined\\004545_jpg.rf.87252350de6e21b62949bc0d8a9b8f7c.jpg", - "response": "a man(437,227),(824,996) working on pipes in a dark tunnel", - "id": 30403 - }, - { - "image_path": "G:\\images\\combined\\004546_jpg.rf.9c05ce03da94ea2c03a27e0b993a2b66.jpg", - "response": "The image shows two construction workers in yellow reflective vests and orange hard hats, walking away from the viewer down a sidewalk. They are pulling a small orange and black generator on a cart behind them. The sidewalk is cluttered with several large sandbags, and there is a pile of sandbags to their left. In the background, there are a few trees and a row of buildings with glass windows. A few cars are parked or driving on the street.", - "id": 30404 - }, - { - "image_path": "G:\\images\\combined\\004547_jpg.rf.e0827650398b70670b7c44c4652347d3.jpg", - "response": "a group of men walking across a road", - "id": 30405 - }, - { - "image_path": "G:\\images\\combined\\004548_jpg.rf.132ec2365938905517a999792b1ca869.jpg", - "response": "A worker in a red shirt and blue hat is working on a power line. They are hanging from a thick black wire and are wearing a yellow tool belt. They have a pair of black gloves and are wearing a pair of grey pants.", - "id": 30406 - }, - { - "image_path": "G:\\images\\combined\\004549_jpg.rf.129714df07e8515ed4fae9296c6b7023.jpg", - "response": "A group of men in suits and hard hats are gathered around a cement block wall. One of the men is holding a cell phone. They appear to be in a construction site.", - "id": 30407 - }, - { - "image_path": "G:\\images\\combined\\004550_jpg.rf.904b5b2ac8a80929f169c12f0e3be28e.jpg", - "response": "A man in a hard hat standing on scaffolding.", - "id": 30408 - }, - { - "image_path": "G:\\images\\combined\\004552_jpg.rf.cbe7356a89e2aa93ca856ac65125f44d.jpg", - "response": "A man wearing a hard hat and an apron is sitting down and eating a sandwich.", - "id": 30409 - }, - { - "image_path": "G:\\images\\combined\\004553_jpg.rf.f396bdce6e17c74fbe71bf85e43d5861.jpg", - "response": "A construction worker is trapped beneath a pile of steel rebar. He is wearing an orange construction uniform and is kneeling on the ground. There are several people around him, including a woman in a blue shirt and a man in a pink shirt. Some of the people are kneeling on the ground while others are standing. There are also several pairs of shoes in the scene.", - "id": 30410 - }, - { - "image_path": "G:\\images\\combined\\004554_jpg.rf.7ab920fc51aa52fe09c7ea10da9f5f83.jpg", - "response": "A group of people standing around a machine.", - "id": 30411 - }, - { - "image_path": "G:\\images\\combined\\004555_jpg.rf.384506fce0701ad872af634ab0363c62.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing hard hats and are working on a construction project. The project involves pouring concrete, and several workers are actively involved in the process.", - "id": 30412 - }, - { - "image_path": "G:\\images\\combined\\004556_jpg.rf.f259216499f42d40ed08e10f4c21732a.jpg", - "response": "A group of five men working on a building construction site.", - "id": 30413 - }, - { - "image_path": "G:\\images\\combined\\004557_jpg.rf.1f2f480df113ca04dd5d27d06d7f02e7.jpg", - "response": "The image shows two workers in a green rice field. One worker is on the left side of the image and is wearing a blue helmet, blue work clothes with a white apron, and is working on an electrical component. The other worker is on the right side of the image and is wearing a blue helmet, blue work clothes, and is connecting wires to the electrical component. They are both in the middle of the field and there are power lines above them.", - "id": 30414 - }, - { - "image_path": "G:\\images\\combined\\004558_jpg.rf.3b87872e5e6cf1ab345b980d7d521c7e.jpg", - "response": "In the image there is a construction site with two workers. One worker is wearing a red jacket and blue pants, and is using a tool with a long handle to break up grey concrete. The other worker is wearing a yellow hat and grey suit, and is using a white mask to protect themselves from the concrete dust. There is a large pile of brown dirt to the right of the workers. In the background, there are a few buildings under construction that have red frameworks and white walls. There is a long grey pipe on the left side of the image, and a few smaller pipes running horizontally in the foreground.", - "id": 30415 - }, - { - "image_path": "G:\\images\\combined\\004560_jpg.rf.05fb30faa8adfb9aa0816b9dc7aebb3a.jpg", - "response": "The picture shows a scene of men gathered together in front of a large blue metal structure. The men are wearing everything from suits to jeans and sneakers. In the background, there are two trucks parked. One is white and has a large windshield and two large headlights on the front. The other is larger and is mostly covered in a blue tarp.", - "id": 30416 - }, - { - "image_path": "G:\\images\\combined\\004561_jpg.rf.2d093290ac4c3f9d35a36624945c5332.jpg", - "response": "The image shows a construction site with several workers. There is a large pipe on the ground, and two workers are handling it. One worker is on the left, holding the pipe while the other is on the right, standing behind him. They are both wearing yellow vests and hard hats. In the background, there are power lines and a blue sky.", - "id": 30417 - }, - { - "image_path": "G:\\images\\combined\\004564_jpg.rf.34060b6cd161f45679265a95fd4472be.jpg", - "response": "A group of men standing around each other.", - "id": 30418 - }, - { - "image_path": "G:\\images\\combined\\004565_jpg.rf.dcbd6b00445366075df111993e6f7cf3.jpg", - "response": "A group of men working on a construction site.", - "id": 30419 - }, - { - "image_path": "G:\\images\\combined\\004566_jpg.rf.2406bdd5183963e259b8ecd16d1410cf.jpg", - "response": "A group of men standing around each other.", - "id": 30420 - }, - { - "image_path": "G:\\images\\combined\\004567_jpg.rf.13ea5d4103cb83b214b2c9104ddac10a.jpg", - "response": " An excavator(339,123),(661,705) is being used to try and free the trapped workers", - "id": 30421 - }, - { - "image_path": "G:\\images\\combined\\004568_jpg.rf.95385858fa34a6af66d9b7a52318e5c0.jpg", - "response": "A man wearing a red helmet and a yellow vest is holding a blueprint in a construction site.", - "id": 30422 - }, - { - "image_path": "G:\\images\\combined\\004569_jpg.rf.c908bc1c01cd904d219a6fad01146ef3.jpg", - "response": "A group of men in hard hats stand on a construction site. They are wearing white, beige, and blue hard hats. In the background, there is a yellow and white crane. To the far right, there are two concrete pillars. In the far background, there is a building under construction.", - "id": 30423 - }, - { - "image_path": "G:\\images\\combined\\004570_jpg.rf.5c40638f1144de27cafcfa4b2f58b165.jpg", - "response": "In the image there are two people wearing neon green jackets and blue hats. They are both looking at a building under construction. The building has red scaffolding around it and a red crane is in the background. The sky is blue with some clouds.", - "id": 30424 - }, - { - "image_path": "G:\\images\\combined\\004571_jpg.rf.ca440fb01d4367f13b1b34321a58932e.jpg", - "response": "A group of people standing around a fire at night.", - "id": 30425 - }, - { - "image_path": "G:\\images\\combined\\004573_jpg.rf.bbbf0717a5cfbd45d0e0e5ae64448bc9.jpg", - "response": "a group of men standing inside a building under construction", - "id": 30426 - }, - { - "image_path": "G:\\images\\combined\\004574_jpg.rf.babb687dbd0621092fc4762e48d3cc35.jpg", - "response": "The photo shows two men in white shirts and red and white hard hats standing in a large hole in the ground. The walls of the hole are mud and the roof is a tunnel arch. The ground around the hole is filled with mud.", - "id": 30427 - }, - { - "image_path": "G:\\images\\combined\\004575_jpg.rf.6500d68c3ddd4d20dce935ada76d6fc9.jpg", - "response": "The image shows firefighters working to rescue a trapped worker in a construction site in Changsha. The worker is trapped beneath a pile of debris, including wood and metal. The firefighters are using tools to carefully remove the debris and reach the trapped worker.", - "id": 30428 - }, - { - "image_path": "G:\\images\\combined\\004576_jpg.rf.09af8e7afc725ed11c7f6f828dc34919.jpg", - "response": "A man in a blue shirt and yellow hat standing in front of a large boat.", - "id": 30429 - }, - { - "image_path": "G:\\images\\combined\\004577_jpg.rf.cb0d0ae888afdaffe6c3960528b52489.jpg", - "response": "a group of people standing inside a building under construction", - "id": 30430 - }, - { - "image_path": "G:\\images\\combined\\004578_jpg.rf.5a1c7cd4f8f4d2de3b45d1ac2ed2fc40.jpg", - "response": " a man(343,202),(742,995) working on a construction site", - "id": 30431 - }, - { - "image_path": "G:\\images\\combined\\004579_jpg.rf.5c90c7c6b4e0720b12be098f405c1ad9.jpg", - "response": "a man climbing a telephone pole with wires attached to his body", - "id": 30432 - }, - { - "image_path": "G:\\images\\combined\\004581_jpg.rf.9e4cf899552f0e3f62a01bc0bb452818.jpg", - "response": "a couple of men wearing orange hard hats", - "id": 30433 - }, - { - "image_path": "G:\\images\\combined\\004582_jpg.rf.6f899bd07c0173d9146e66349e1405f3.jpg", - "response": "A man in a hard hat and blue coveralls is using a device to inspect a large metal cylinder. The cylinder is located on a rooftop and is made of metal. The man is standing next to the cylinder and is holding a device in his hand. The device appears to be a meter or a gauge of some sort. The man is wearing a white hard hat and appears to be focused on his work.", - "id": 30434 - }, - { - "image_path": "G:\\images\\combined\\00458395ec2ae964.jpg", - "response": "A person walking a bike down a sidewalk next to a building.", - "id": 30435 - }, - { - "image_path": "G:\\images\\combined\\004584_jpg.rf.6bfa428542b8e3850cc7065ecf55d37c.jpg", - "response": "A group of men wearing hard hats stand around a control box.", - "id": 30436 - }, - { - "image_path": "G:\\images\\combined\\004585_jpg.rf.c8771aba5f2cc5677a1d3c5bc3735ec8.jpg", - "response": "In the image, a factory worker is directing a crane operator to move a large piece of metal. The worker is wearing a red hard hat and blue coveralls and is standing on the factory floor. The factory is filled with metal beams, steel pipes, and other metal parts. There are several other people in the factory, some of them are standing, and some are operating machinery. The factory is well lit with bright lights hanging from the ceiling.", - "id": 30437 - }, - { - "image_path": "G:\\images\\combined\\004587_jpg.rf.c4d6fd4b4c5d6326fc89935d72fac849.jpg", - "response": "A group of three people in a factory setting. Two of the people are wearing yellow safety jackets and hard hats, while the third person is wearing a green safety vest and a red hard hat. The person in the green vest is holding a laptop.", - "id": 30438 - }, - { - "image_path": "G:\\images\\combined\\004588_jpg.rf.cf7a994d7dadda2548675d9921edc9fb.jpg", - "response": "In the image there are two workers wearing orange helmets. They are working on a construction site that has not yet been built upon. The site is filled with wooden scaffolding and rebar. In the background there are houses with red roofs.", - "id": 30439 - }, - { - "image_path": "G:\\images\\combined\\004589_jpg.rf.86f0d0de99c4f415921c2c81e4efe3dd.jpg", - "response": "A worker installs glass railings on the balconies of a new apartment building in Hubei's provincial capital, Wuhan, on May 20, 2013. The building, with 1,048 apartments, is expected to be completed by the end of this year. (Photo/China News Service)", - "id": 30440 - }, - { - "image_path": "G:\\images\\combined\\004590_jpg.rf.340ebefb5914aed1e9ce0610e9b956f0.jpg", - "response": "The image shows two workers repairing the roof of a wooden building. The building has a curved roof made of wooden beams, and the workers are working on the right side of the roof. One worker is standing on the roof and is holding a hammer, while the other worker is below him, kneeling on the ground. They are both wearing yellow helmets to ensure their safety.", - "id": 30441 - }, - { - "image_path": "G:\\images\\combined\\004591_jpg.rf.c04389026636d67adcd55b0fdf61ba62.jpg", - "response": "The man is standing in front of a screen.", - "id": 30442 - }, - { - "image_path": "G:\\images\\combined\\004592_jpg.rf.fed13e0d35fb72619bd4aec201d0636f.jpg", - "response": "An electrician wearing a blue hard hat is sitting on a ladder in a residential street. He is holding a digital multimeter and appears to be measuring something. There is a red and black wire in front of him and he is adjusting a dial on the multimeter. The background shows a residential street with buildings on both sides. There is a traffic light in the distance and a car parked further back.", - "id": 30443 - }, - { - "image_path": "G:\\images\\combined\\004593_jpg.rf.560e58708a33328601f66fb668f834f0.jpg", - "response": "The image shows a man and a woman standing side by side, both dressed in work clothes and wearing hard hats. The woman is taller and has her hair in a bun. They are both looking straight ahead. In the background, there is a building with a tower in the distance.", - "id": 30444 - }, - { - "image_path": "G:\\images\\combined\\004594_jpg.rf.c40544565ee7d6367524f33b2c6da06d.jpg", - "response": " Two workers(624,523),(734,830)(80,534),(198,907) in orange snowsuits stand in a snowy field.", - "id": 30445 - }, - { - "image_path": "G:\\images\\combined\\004595_jpg.rf.7615fca2dfd49a9145d78435fe85f6d1.jpg", - "response": "An electrician is working on telephone wires. He is wearing a blue shirt and grey pants. He has a tool belt around his waist. He is repairing a damaged insulator on a telephone pole. There is a Chinese flag on the left side of the pole.", - "id": 30446 - }, - { - "image_path": "G:\\images\\combined\\004596_jpg.rf.84d2ed1ae5560eab55e5cf4748e0856c.jpg", - "response": "A group of people standing in a muddy field.", - "id": 30447 - }, - { - "image_path": "G:\\images\\combined\\004598_jpg.rf.18af182ebc46217bb16d91a835a63079.jpg", - "response": "The image shows four construction workers in hard hats working on a construction site. They are all holding tools and working on a foundation.", - "id": 30448 - }, - { - "image_path": "G:\\images\\combined\\00459f3bf70283d3.jpg", - "response": "A large knife with a black handle and a sheath and a smaller knife with a tan handle and a sheath.", - "id": 30449 - }, - { - "image_path": "G:\\images\\combined\\0045f0e526dcf63b.jpg", - "response": "A man standing in front of a large screen giving a presentation.", - "id": 30450 - }, - { - "image_path": "G:\\images\\combined\\004600_jpg.rf.800171cc67af8d2e05ed6a407d3c738d.jpg", - "response": "A worker is repairing a power line in the snow. He is wearing a blue jacket, a yellow hard hat, and white gloves. There are several wires coming out of the top of a power pole and the worker is reaching up to one of them with his tool. The ground is covered in a light snow.", - "id": 30451 - }, - { - "image_path": "G:\\images\\combined\\004601_jpg.rf.0f68dbf272ebf6cd75bfa7bc2137e34a.jpg", - "response": "In the image two workers are seen wearing blue and yellow color jacket and yellow color helmet. They are seen standing on the snow. They are wearing harness and one of them is holding a tool in his right hand. The tool is white in color with red and white color wire at the end. The workers are seen wearing white color shoe. The background is of snow and sky.", - "id": 30452 - }, - { - "image_path": "G:\\images\\combined\\004602_jpg.rf.06ce827d061d1ab141949a7baa6fe736.jpg", - "response": "The image shows a group of people standing on a wall, holding bamboo poles and wearing red jackets with yellow helmets. The wall is made of grey bricks and the scene looks like a historical one, with a red Chinese flag placed on the wall. The people are engaged in some kind of activity, possibly cleaning the moat. The water in the moat is dirty and muddy, and there are some debris floating in it. The sky is overcast and it seems to be an overcast day.", - "id": 30453 - }, - { - "image_path": "G:\\images\\combined\\004603_jpg.rf.c697874b825f1aa9e511248108bd1bfa.jpg", - "response": "A group of five men posing for a picture.", - "id": 30454 - }, - { - "image_path": "G:\\images\\combined\\004604_jpg.rf.2cc236987fc6de5e2e74eb2911bcc23a.jpg", - "response": "A group of people stand under a few umbrellas as they look at a few pictures on an easel.", - "id": 30455 - }, - { - "image_path": "G:\\images\\combined\\004605_jpg.rf.e3edd4ecdba15276bb95e0acae8386a2.jpg", - "response": "A group of men in hard hats and work clothes are standing in a room. They are standing around a large metal door that is open. They are all wearing gloves and some have blue hard hats.", - "id": 30456 - }, - { - "image_path": "G:\\images\\combined\\004606_jpg.rf.7b2a325772b43bcde60efd571990eff4.jpg", - "response": "A worker is seen working on a power transformer in this undated photo. A new power plant(4,6),(995,993) in the Xinjiang region is expected to start operating soon.", - "id": 30457 - }, - { - "image_path": "G:\\images\\combined\\004607_jpg.rf.26729b9c80062b7b1dbdaa415f6f2bd2.jpg", - "response": "A man wearing a blue hard hat and a grey jacket is repairing a machine. He is holding a screwdriver and has a blue glove on his left hand. There are many wires connected to the machine and some are disconnected. The wires are purple, yellow, blue, red, and green. The screwdriver is grey and has a yellow handle.", - "id": 30458 - }, - { - "image_path": "G:\\images\\combined\\004608_jpg.rf.23a526f1dae5091f36c55916bd5e5ff8.jpg", - "response": "A group of people standing in front of a building that is under construction. The building has scaffolding around it and there is debris on the ground.", - "id": 30459 - }, - { - "image_path": "G:\\images\\combined\\004609_jpg.rf.207ebccfc8dc85ad32bd8de14dce1643.jpg", - "response": "A man in a blue jumpsuit and yellow helmet is on a power pole, working on wires.", - "id": 30460 - }, - { - "image_path": "G:\\images\\combined\\004610_jpg.rf.8c943fe4e3983651ef3ab652e3a8c5e3.jpg", - "response": "In the image two workers are standing in a factory. They are both wearing blue shirts, grey pants, and red helmets. The worker on the left is holding a long tool and the worker on the right is holding a walkie talkie. In front of them is a large metal door with a square hole in the middle. Through the hole you can see a bright orange flame. To the left of the workers is a large metal cylinder and to the right is a larger grey cylinder.", - "id": 30461 - }, - { - "image_path": "G:\\images\\combined\\004611_jpg.rf.299f8f7f5fef6ebc3f90ae67b8ee5950.jpg", - "response": "In the image, there are two workers wearing brown and orange hardhats. They are working together to operate a piece of machinery. The sky is blue and cloudless in the background. One of the workers is grabbing a large pipe with two hands while the other worker is holding a control panel. There is water splashing out of the pipe and flying in all directions.", - "id": 30462 - }, - { - "image_path": "G:\\images\\combined\\004612_jpg.rf.22304be3ea5f45f8fac4823ec7e545ee.jpg", - "response": "A man in a yellow uniform and white gloves is sitting on a metal bar, working on a power line. He is wearing safety gear, including a helmet and safety shoes. The man appears to be focused on his work, which involves connecting wires to the power line.", - "id": 30463 - }, - { - "image_path": "G:\\images\\combined\\004613_jpg.rf.cb2d706eecf0c207114656f944cfaae2.jpg", - "response": "The photo shows two workers at a construction site. They are wearing yellow hard hats and camouflage uniforms. They are working on a large metal structure that will likely become a support for a building. The sky is blue and cloudless. In the background, there are two large orange gantries. To the left of the workers, there is a large pile of wooden planks.", - "id": 30464 - }, - { - "image_path": "G:\\images\\combined\\004614_jpg.rf.70a2001ac3e9014253f15830b75428cc.jpg", - "response": "A group of three men dressed in blue and yellow work clothes with helmets on their heads. They are standing in a field with a body of water behind them.", - "id": 30465 - }, - { - "image_path": "G:\\images\\combined\\004615_jpg.rf.fdbd41ac2296987161436318d094cba4.jpg", - "response": "A group of men working on a construction site.", - "id": 30466 - }, - { - "image_path": "G:\\images\\combined\\004616_jpg.rf.4ef5e3460aea720a11e60cb55c115c5c.jpg", - "response": "The image shows a group of men wearing hard hats and work clothes, with some of them holding tools. They are standing in a construction site, which appears to be a forest. There are several people in the picture, with some of them holding ropes and others holding tools like axes and drills. The men are all focused on their work, which appears to be clearing vegetation and preparing the site for construction.", - "id": 30467 - }, - { - "image_path": "G:\\images\\combined\\004617_jpg.rf.736f143fd995cc9026292e2ca4cfe509.jpg", - "response": "The image shows two workers inside a large tunnel. They are both wearing yellow hard hats and appear to be working on a drainage system. One worker is on the left side of the image and is holding a long tool with a wooden handle. The other worker is on the right side of the image and is crouching down to work on the drainage system. There is a large pipe running along the left wall of the tunnel. In front of the workers is a large puddle of water and a scoop. To the right of the workers is a bag of white sand. The background of the image is a concrete wall of the tunnel.", - "id": 30468 - }, - { - "image_path": "G:\\images\\combined\\004618_jpg.rf.b44e963387f5a69c04d738e56dfbd6d8.jpg", - "response": "A group of men in black suits and purple hats stand in a line in a dirt field.", - "id": 30469 - }, - { - "image_path": "G:\\images\\combined\\004619_jpg.rf.8e7c4de32ca376833cdf8ea1abc569ca.jpg", - "response": "A group of people sitting around a table.", - "id": 30470 - }, - { - "image_path": "G:\\images\\combined\\004621_jpg.rf.e35687735cd2f0c6d07e8a01468ef17f.jpg", - "response": "A group of four people standing in a warehouse.", - "id": 30471 - }, - { - "image_path": "G:\\images\\combined\\004623_jpg.rf.3b4a4c32bed914c30af2e7e7146edf3d.jpg", - "response": "A group of people working on a construction site.", - "id": 30472 - }, - { - "image_path": "G:\\images\\combined\\004626_jpg.rf.ccf162284da66c34db7810e6e5976e72.jpg", - "response": "A man wearing a red hard hat stands on a sidewalk. He is holding a device on a tripod. He is standing in front of a pile of dirt and a construction site.", - "id": 30473 - }, - { - "image_path": "G:\\images\\combined\\004627_jpg.rf.e789d9880fc03bc12ed536f00722f05f.jpg", - "response": "A group of workers are working on power lines.", - "id": 30474 - }, - { - "image_path": "G:\\images\\combined\\004628_jpg.rf.fb6ceb71e9b753b3b02463c6244acd33.jpg", - "response": "A woman in tight jeans is handing a card to a man in a white shirt.", - "id": 30475 - }, - { - "image_path": "G:\\images\\combined\\004629d0dcad55df.jpg", - "response": "A coffee machine with a large window and the word \"coex\" on it.", - "id": 30476 - }, - { - "image_path": "G:\\images\\combined\\004629_jpg.rf.26a42d7ee24312e084df079a1bc825d6.jpg", - "response": "An electrician repairs a power box while standing on a ladder.", - "id": 30477 - }, - { - "image_path": "G:\\images\\combined\\00462a09546c3df2.jpg", - "response": "In the image, a man wearing glasses and a red shirt is running on a track. The man is wearing a red shirt with a yellow M on it. He is running on a red track with white stripes. There are other people in the background, but they are not the main focus of the image.", - "id": 30478 - }, - { - "image_path": "G:\\images\\combined\\004630_jpg.rf.d096a68a4af45d450d59e948ea0db312.jpg", - "response": "A group of men in business attire standing in front of a brick building.", - "id": 30479 - }, - { - "image_path": "G:\\images\\combined\\004631_jpg.rf.fb1299385529e553cfa1173066de9be5.jpg", - "response": "A man in a yellow hard hat and camouflage jacket is on a construction site, climbing a ladder. He is smiling at the camera.", - "id": 30480 - }, - { - "image_path": "G:\\images\\combined\\004632_jpg.rf.f0bfaee1058ecc3604cc0a52609f7649.jpg", - "response": "A worker in a blue shirt and blue hard hat is working on a large yellow piece of equipment. The worker is standing in front of the equipment and is focused on what he is doing. There are two wires behind the worker and a yellow pipe to the right of the worker. The background is a yellow wall and a gray wall behind the worker.", - "id": 30481 - }, - { - "image_path": "G:\\images\\combined\\004633_jpg.rf.9c35e46f52593718fd1891d490f9ffc4.jpg", - "response": "The image shows three workers in a mountainous region pulling a wire along a path. The workers are all wearing yellow hard hats and grey jumpers. One worker is on the left, another is in the middle and the third is on the right. There are two coiled wires on the ground in the foreground. The background shows a hilly landscape with trees and bushes. The sky is white.", - "id": 30482 - }, - { - "image_path": "G:\\images\\combined\\004634_jpg.rf.d482e601e2bfe1047634044966664d98.jpg", - "response": "A man in a red hat is kneeling on a mat in front of a group of workers.", - "id": 30483 - }, - { - "image_path": "G:\\images\\combined\\004635_jpg.rf.8839b8f75937cf0cd69a05eb8aca98ba.jpg", - "response": "A group of construction workers wearing orange vests are working on a large tree branch that has fallen on a street. The workers are standing around the tree branch and appear to be cutting it up with large tools. There are also a few cars and motorcycles parked on the street.", - "id": 30484 - }, - { - "image_path": "G:\\images\\combined\\004636433aa3ef48.jpg", - "response": "A variety of beer bottles and a can of beer are lined up on a carpet.", - "id": 30485 - }, - { - "image_path": "G:\\images\\combined\\004637_jpg.rf.76866918aabf6e9e18e645491f9a8a1c.jpg", - "response": "A man in a hard hat is standing in front of a large container ship. He is talking on a cell phone. In the background there are large cranes and many containers stacked on the dock.", - "id": 30486 - }, - { - "image_path": "G:\\images\\combined\\004638_jpg.rf.aceeed73d64484d11e8dd3a6f90d2842.jpg", - "response": "a group of men standing under umbrellas", - "id": 30487 - }, - { - "image_path": "G:\\images\\combined\\004639_jpg.rf.17f20467bfa566839c1c7813ef8602c7.jpg", - "response": "A group of men working on an oil well.", - "id": 30488 - }, - { - "image_path": "G:\\images\\combined\\004640_jpg.rf.5b6fa4b05f61b953c61581b046e1d784.jpg", - "response": "An electrician in blue overalls and a blue hat is sitting on a brown electrical tower. They are working on the tower, which has many wires and components.", - "id": 30489 - }, - { - "image_path": "G:\\images\\combined\\004641_jpg.rf.3b0d99acd0ba4ef3238a8fd60b741d87.jpg", - "response": "A group of men in hard hats are lifting a white pole.", - "id": 30490 - }, - { - "image_path": "G:\\images\\combined\\004642_jpg.rf.eb851247cedc50ef2479b699538a014a.jpg", - "response": "Men in hard hats and overalls work on a large tower.", - "id": 30491 - }, - { - "image_path": "G:\\images\\combined\\004643_jpg.rf.f0c9827a8ef1b6185955fae490d58a78.jpg", - "response": "A construction site with a pile of rubble and a building under construction. A group of men are standing around, wearing hard hats and looking off to the side. One of the men is wearing a blue shirt and holding a water bottle. Another man is wearing a black shirt and glasses. A third man is wearing a brown shirt and has a pen in his pocket. A fourth man is wearing a pink shirt and a blue hat.", - "id": 30492 - }, - { - "image_path": "G:\\images\\combined\\004646_jpg.rf.896edd6c196e52dbe7d396420753afe2.jpg", - "response": "The picture shows a middle-aged man with black hair and a beard, wearing a black and grey coat with a fur collar. He is holding a microphone and appears to be speaking. To the left of the man, there is a man wearing a black coat with a white collar. Behind the man with the microphone, there is a bus. To the right of the man, there is a group of motorbike riders. In the background, there are some buildings under construction.", - "id": 30493 - }, - { - "image_path": "G:\\images\\combined\\004647_jpg.rf.22025cfbb862621086238b08ee715985.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt is looking up while holding onto a rope. He is wearing a white headband and has a white bumper sticker on his helmet. He is also wearing a yellow shirt and a pair of grey pants.", - "id": 30494 - }, - { - "image_path": "G:\\images\\combined\\004648_jpg.rf.7fa2fc5813643b1dc259a2e7b6cfd6c2.jpg", - "response": "a man(423,142),(778,986) in a red shirt.", - "id": 30495 - }, - { - "image_path": "G:\\images\\combined\\004650_jpg.rf.ed40cd1a602e0d98422f9719d23b34c9.jpg", - "response": "Two workers are pouring concrete on the construction site.", - "id": 30496 - }, - { - "image_path": "G:\\images\\combined\\004651_jpg.rf.bf004f91db3df89e5f7c8906a604c59c.jpg", - "response": "The image shows a group of three men working at a factory. They are standing around a large piece of equipment that looks like a metal forge or perhaps a steam engine. Two of the men are wearing hard hats and one is wearing a red shirt. They are all standing quite close to the machine, which is spewing out large amounts of heat.", - "id": 30497 - }, - { - "image_path": "G:\\images\\combined\\004652_jpg.rf.6185a65c010c912d7e39aec90596c889.jpg", - "response": "A group of men standing on top of a rock filled hillside.", - "id": 30498 - }, - { - "image_path": "G:\\images\\combined\\004653_jpg.rf.c32216d52141a66e82ae26227bdc2704.jpg", - "response": "A woman wearing a blue jacket and a yellow hard hat is working in a factory. She is holding a claw hammer and is working on a piece of metal.", - "id": 30499 - }, - { - "image_path": "G:\\images\\combined\\004654_jpg.rf.25d8bcfe746b2ef6c8e38469edc07d37.jpg", - "response": "A group of men working on a construction site with piles of dirt and gravel in the background. They are wearing hard hats and some are wearing backpacks.", - "id": 30500 - }, - { - "image_path": "G:\\images\\combined\\004656_jpg.rf.a836b72d1ae6698111919f7273d69f85.jpg", - "response": "A group of people working in a scrap metal yard.", - "id": 30501 - }, - { - "image_path": "G:\\images\\combined\\004657_jpg.rf.d104baec0f809bc71f3bc656adde7883.jpg", - "response": "A construction worker digging a hole in the ground.", - "id": 30502 - }, - { - "image_path": "G:\\images\\combined\\004659_jpg.rf.ef5f8d1440b8578d684e1b178e48ab86.jpg", - "response": "The image shows two workers in black uniforms and yellow helmets who are repairing a power pole. They are on a wooden platform that is attached to the pole. The sky is overcast.", - "id": 30503 - }, - { - "image_path": "G:\\images\\combined\\004661_jpg.rf.42123b3178c55c29c43aa2c9a6764680.jpg", - "response": "In the image two men are wearing blue shirts and red overalls. They are both wearing blue helmets and are looking at an electrical panel. The electrical panel is made of metal and is brown in color. There are many wires coming out of it.", - "id": 30504 - }, - { - "image_path": "G:\\images\\combined\\004662_jpg.rf.4245066b1f42020111ae7a98816eff15.jpg", - "response": "A couple of men in business suits and safety vests looking at a stack of red shipping containers.", - "id": 30505 - }, - { - "image_path": "G:\\images\\combined\\004663_jpg.rf.10759fe3499a486c05ff1ff3a5529df0.jpg", - "response": "A group of men standing in front of a pile of bricks and debris.", - "id": 30506 - }, - { - "image_path": "G:\\images\\combined\\004664_jpg.rf.85b9a79390e40f9b4097c5bc2ac63e25.jpg", - "response": "An electrician working on power lines in the pouring rain.", - "id": 30507 - }, - { - "image_path": "G:\\images\\combined\\004665_jpg.rf.5187747dde38cb247e3c7dcfb45cc2da.jpg", - "response": "In the image two people are sitting on a red beam. They are wearing uniforms. The person on the left is wearing green and has a hat. The person on the right is wearing red and has a helmet. They are both looking at the camera. Under them there is a red stone platform. To the right of the platform there is a large red tower made of 4 red poles. Between the two first poles there is a hook hanging. Above the hook and between the two poles there is a chain. In the distance to the left there is a white wall and a brown pole.", - "id": 30508 - }, - { - "image_path": "G:\\images\\combined\\004666_jpg.rf.9633a89fcf76cd8de0ee353edd0ca835.jpg", - "response": "The image shows a large underground cave with a circular opening at the top. The cave is made of brick and has a metal staircase leading up to it. There are three people in the cave, two of them are wearing hard hats and one is wearing a blue jacket. The cave is dimly lit with a few lights on.", - "id": 30509 - }, - { - "image_path": "G:\\images\\combined\\004667_jpg.rf.820845f8fa0b91723a1ffd8436fce506.jpg", - "response": "In the image there is a man wearing a white mask and a red helmet. He is working on a construction site wearing grey clothes. He is using a machine with a red handle to cut through a metal beam. The metal is being cut on a concrete platform. There is a yellow tower to the left of the man and a web address at the bottom of the image.", - "id": 30510 - }, - { - "image_path": "G:\\images\\combined\\004668_jpg.rf.3bffe547011a41c87d26b65218f588f4.jpg", - "response": "A man wearing a grey shirt and a hard hat is holding wooden beams on a construction site.", - "id": 30511 - }, - { - "image_path": "G:\\images\\combined\\00466f2d1b617884.jpg", - "response": "A page from a magazine, with an article about Burman Gearboxes.", - "id": 30512 - }, - { - "image_path": "G:\\images\\combined\\004670_jpg.rf.9657df574b2692f5869f6473b09410cc.jpg", - "response": "A close up of a man wearing a yellow hard hat and a blue and white striped shirt. He is pulling on a steel cable with both hands. To the right of the man, another man is pulling on a steel cable as well. In the background, there are white and grey metal scaffolding.", - "id": 30513 - }, - { - "image_path": "G:\\images\\combined\\004671_jpg.rf.e75efbdc18886440fede9393ae70eb26.jpg", - "response": "Three workers in yellow vests and hard hats are looking at a clipboard.", - "id": 30514 - }, - { - "image_path": "G:\\images\\combined\\004672_jpg.rf.f60c1aad5ac1f2efa0b7514f86a8a169.jpg", - "response": "A man in a hard hat stands in front of a building under construction.", - "id": 30515 - }, - { - "image_path": "G:\\images\\combined\\004674_jpg.rf.0ac2026984d1e98fde16164c3a2c7a3e.jpg", - "response": "A pair of workers wearing hard hats crouch down and use a tool to cut through a thick rope that is on the ground.", - "id": 30516 - }, - { - "image_path": "G:\\images\\combined\\004675_jpg.rf.f16b25f67ce9922e4f79be5509cf6bf0.jpg", - "response": "A man in white overalls and a red harness is working on an electrical tower. He is standing on a metal platform that is suspended from the tower. He is holding a tool in his right hand and there is a second man in the background. The sky is blue and there are several power lines in the air.", - "id": 30517 - }, - { - "image_path": "G:\\images\\combined\\004681_jpg.rf.3d9ac7a476ac57ac5b842fc34499cafd.jpg", - "response": "A man wearing a red hard hat, a black jacket, and a white mask is welding two pieces of steel together while standing in a warehouse. He is on a platform and there is another platform to his left. The floor is a dark grey and there are sparks flying. There are two red columns to his right and two brown racks to his left.", - "id": 30518 - }, - { - "image_path": "G:\\images\\combined\\004682_jpg.rf.5fbc803af31ab1709693ce7a22054391.jpg", - "response": "a group of men standing around in front of a building under construction", - "id": 30519 - }, - { - "image_path": "G:\\images\\combined\\004683_jpg.rf.ebe8ddb43e8a5cc32359a460f64c6bb8.jpg", - "response": "A man wearing a hard hat and white uniform is using a tool to touch a hot piece of metal.", - "id": 30520 - }, - { - "image_path": "G:\\images\\combined\\004684_jpg.rf.82c6668116189566d75c8d66ae48dc27.jpg", - "response": "The image shows a group of people standing in front of a yellow wall with Chinese characters on it. Some of the people are wearing suits and hard hats. In the background, there are mountains.", - "id": 30521 - }, - { - "image_path": "G:\\images\\combined\\004685_jpg.rf.5f462b4b7f3d41ecab5e9475812a96db.jpg", - "response": "The image shows two men standing in a dark room, working on something. They are wearing hard hats and the room has a brick wall and floor. In the room, there is a small orange machine with two wheels, a steering wheel and a control panel. The control panel has several buttons and a screen. There is also a cable connected to the machine. The room has a clock on the wall and a window on the right side. The wall is partially painted white.", - "id": 30522 - }, - { - "image_path": "G:\\images\\combined\\004686_jpg.rf.a4ce88c38f146783b4687dc7d38d4706.jpg", - "response": "The image shows two workers in a yard filled with tree branches and debris. They are both wearing yellow hard hats and work clothes. One worker is on the left and is holding a tree branch with a green vine growing on it. The other worker is on the right and is pulling a white wire through a red pipe.", - "id": 30523 - }, - { - "image_path": "G:\\images\\combined\\004687_jpg.rf.ad4bbdd1a04e3e2cd4a92cb8f2aaa630.jpg", - "response": "A group of people stand in front of a fence. The fence has a picture of a building on it. In the background there is a large building under construction.", - "id": 30524 - }, - { - "image_path": "G:\\images\\combined\\004688_jpg.rf.530fb614d573ee4ff6b14524061e6741.jpg", - "response": "The image shows a group of workers standing near a large circular pipe. There are several people in the scene, some are wearing yellow hard hats and work clothes. The pipe is the main focus of the image, it is large and grey and has a red stripe. It is located on the right side of the image and appears to be made of metal. The workers are standing behind the pipe and appear to be working on it. There are also several other pipes in the scene, some are large and grey and others are large and blue.", - "id": 30525 - }, - { - "image_path": "G:\\images\\combined\\004689_jpg.rf.216d9803a2c674f47aaf8f69db54b250.jpg", - "response": "This image shows Kim Jong-un, the leader of North Korea, pointing to a building in the background. He is wearing a black coat and has his hair styled in a\u7279\u5b9a way, with the top of his hair raised up. He is standing in front of a wall painted with a cityscape, which includes a large body of water and several buildings. Some of the buildings have red or blue roofs. Kim Jong-un appears to be giving an interview, as a microphone is visible in the foreground.", - "id": 30526 - }, - { - "image_path": "G:\\images\\combined\\004690_jpg.rf.6b62f4ab2301ad15474afd3bce6302da.jpg", - "response": "The image shows a group of workers inside a building that appears to be under construction. The workers are standing on scaffolding, which is surrounding the building. Some of the workers are wearing hard hats and are focused on a task at hand. There are also pipes visible in the image, running along the walls of the building.", - "id": 30527 - }, - { - "image_path": "G:\\images\\combined\\004692_jpg.rf.9c3710c49fd15410979935532566ef33.jpg", - "response": "A group of people in white and yellow hard hats are gathered around a large electrical panel. They are all holding clipboards and appear to be examining the panel. One person is shining a flashlight into an electrical box.", - "id": 30528 - }, - { - "image_path": "G:\\images\\combined\\004693_jpg.rf.fb20c65e39a4740097cedae0053e50c2.jpg", - "response": "A group of three workers wearing blue uniforms and hard hats are building a scaffold.", - "id": 30529 - }, - { - "image_path": "G:\\images\\combined\\004694_jpg.rf.c3d607ecae04ef259e6810720e655375.jpg", - "response": "\u5de5\u7a0b\u5e08\u548c\u5de5\u4eba\u5728\u5b89\u88c5\u6c34\u5904\u7406\u8bbe\u5907.", - "id": 30530 - }, - { - "image_path": "G:\\images\\combined\\004695_jpg.rf.efbf7b7f64ebf2fb83a8bfe9ef162664.jpg", - "response": "A worker is seen wearing a blue shirt and a red helmet, he is working on a steel structure.", - "id": 30531 - }, - { - "image_path": "G:\\images\\combined\\004696_jpg.rf.986b206378fe34b13ee01d15f0079d43.jpg", - "response": "A man in a hard hat and blue overalls is using a device to measure something.", - "id": 30532 - }, - { - "image_path": "G:\\images\\combined\\004697_jpg.rf.a15f7313a7294816c557295058a5ea41.jpg", - "response": "A man wearing a blue hard hat and an orange jumpsuit is working on a power line.", - "id": 30533 - }, - { - "image_path": "G:\\images\\combined\\004698_jpg.rf.4020ba8f3f3230e0a726e77116511566.jpg", - "response": "A man standing next to a dog in front of a building under construction. The building is made of brick and has scaffolding around it. There is a grey concrete mixer on the right side of the image and a pile of sand on the left. There are two workers in the image, one on the left and one on the right. They are both wearing hard hats.", - "id": 30534 - }, - { - "image_path": "G:\\images\\combined\\004699_jpg.rf.495d2935c5c63c980541afe24619b374.jpg", - "response": "In the image there are two people working on a construction site. They are wearing yellow hard hats and are building a steel structure. The background is blurry and there are sparks flying in the air. There is a yellow crane in the background and a yellow net in the foreground. The people are standing on a yellow platform and the text \"\u6cb3\u5317\u7db2\" is written in white at the bottom right corner of the image.", - "id": 30535 - }, - { - "image_path": "G:\\images\\combined\\0046c3d8bf9d64fd.jpg", - "response": "a black sony camera on a table", - "id": 30536 - }, - { - "image_path": "G:\\images\\combined\\0046c69cb87e655c.jpg", - "response": "The image depicts a large office with many people working at computers. There are at least 12 people visible in the scene, all sitting at their respective desks and working on computers. The office has multiple rows of desks, each equipped with a computer and a keyboard. Additionally, there are several cups placed on the desks, and a few bottles can be seen as well. A few books are also present on the desks, indicating that some people might be working on research or reading materials while at their computers.", - "id": 30537 - }, - { - "image_path": "G:\\images\\combined\\004700_jpg.rf.2ba792eff5ce50be3d1d474f7f523c5f.jpg", - "response": "A man wearing a hard hat is looking at a blueprint in a construction area.", - "id": 30538 - }, - { - "image_path": "G:\\images\\combined\\004701_jpg.rf.af5ddd5ca0234b2823c95a1460882331.jpg", - "response": "A group of workers in orange and blue uniforms and helmets are working on an electricity pylon. They are in different positions on the structure, with some on the top and others in the middle and bottom. The sky is blue and clear behind them.", - "id": 30539 - }, - { - "image_path": "G:\\images\\combined\\004703_jpg.rf.db0f31af251d69c49cfc8db982da9ba1.jpg", - "response": "An oil well worker in camouflage and a red hard hat is operating machinery.", - "id": 30540 - }, - { - "image_path": "G:\\images\\combined\\004705_jpg.rf.84ac6d862f08c6ad55fb1c7705381603.jpg", - "response": "A group of people standing in front of a building under construction", - "id": 30541 - }, - { - "image_path": "G:\\images\\combined\\004706_jpg.rf.35c68cf2a787f83fc8b02f7cd7ffa488.jpg", - "response": "People(559,355),(734,985)(435,348),(572,995)(242,392),(353,997)(869,312),(998,985)(371,255),(441,418) standing in front of a van(0,87),(882,863)", - "id": 30542 - }, - { - "image_path": "G:\\images\\combined\\004707_jpg.rf.6b7e601a6a249430f344278e4d8b9e41.jpg", - "response": "A worker in a yellow hard hat is using a device to inspect the inside of a\u96a7\u9053. They are dressed in orange safety gear and are standing on a platform in the tunnel. There are cables and wires visible in the scene.", - "id": 30543 - }, - { - "image_path": "G:\\images\\combined\\004708_jpg.rf.77c702f358f3c8ff39d98d3ebd251c68.jpg", - "response": "An employee of the state-owned China Power Grid Corporation checks equipment at a substation in Fuyuan County, east China's Jiangsu Province, Jan. 12, 2017. Despite the cold weather and snow, the power supply to the area remained stable and secure.", - "id": 30544 - }, - { - "image_path": "G:\\images\\combined\\004709_jpg.rf.9d5b457492ab16b656fc63a89c7d085b.jpg", - "response": " A worker(109,4),(731,997) is drenched in water as he works on the construction site of the world's longest high-speed rail link in China.", - "id": 30545 - }, - { - "image_path": "G:\\images\\combined\\004710_jpg.rf.58dcbdacbcb64a1f0849a01674da7428.jpg", - "response": "A group of workers in orange jumpsuits and yellow hard hats are sitting on a metal frame on a beach.", - "id": 30546 - }, - { - "image_path": "G:\\images\\combined\\004711_jpg.rf.e6e352d5b0287af1f0c2ea3a2a945fe0.jpg", - "response": "A group of workers in hard hats and safety vests stand in a dimly lit tunnel. There are several workers visible, with some standing closer to the left side of the image and others further to the right. In the middle of the scene, there is a long row of grey metal pipes, some of which are lying horizontally and others are standing vertically. The pipes appear to be covered in dirt. In the background, there is a large rectangular opening in the wall of the tunnel, and the floor of the tunnel is covered in dark grey rocks that have been excavated. There is also a spotlight shining on the ground to the right of the pipes.", - "id": 30547 - }, - { - "image_path": "G:\\images\\combined\\004712_jpg.rf.53ca46e052e0c56121b53fa3ab3bb017.jpg", - "response": "A man and a boy wearing hard hats and work clothes are on a metal scaffolding. The man is holding a drill and the boy is sitting on the scaffolding.", - "id": 30548 - }, - { - "image_path": "G:\\images\\combined\\004714_jpg.rf.6a0131217346b9168f1c53ee3f286257.jpg", - "response": "The image shows a group of people working together to install a large pipe into the ground. The pipe is a brown color and is located in the center of the frame. It is being held in place by several people who are standing around it. Some of the people are using what look like large wooden tools to dig into the ground around the pipe. The foggy hillside is a dark red color and the sky is a light gray color. The website address for the image is written in the lower left corner.", - "id": 30549 - }, - { - "image_path": "G:\\images\\combined\\004715_jpg.rf.8dc034d5fca6a9f73a7eb6d6abec437b.jpg", - "response": "A group of men working on a bamboo structure.", - "id": 30550 - }, - { - "image_path": "G:\\images\\combined\\004716_jpg.rf.0746c78d9050ae3519b7a2837dba62f7.jpg", - "response": "A group of four people standing in front of a building under construction", - "id": 30551 - }, - { - "image_path": "G:\\images\\combined\\004717_jpg.rf.6006584af9baaf5e7375442716a23916.jpg", - "response": "A couple of workers in red uniforms are on a street light.", - "id": 30552 - }, - { - "image_path": "G:\\images\\combined\\004718_jpg.rf.11615611969b46af1c87ebb1bf66b0b0.jpg", - "response": "a group of men standing around a large hole in the ground", - "id": 30553 - }, - { - "image_path": "G:\\images\\combined\\004719_jpg.rf.f93fd16b0f02d7e19dc0acb0eb19478b.jpg", - "response": "A man in a hard hat and orange jacket is working on a machine in a factory.", - "id": 30554 - }, - { - "image_path": "G:\\images\\combined\\004720f5d7bd7edf.jpg", - "response": "a sign with a stick figure holding a fishing pole in the water", - "id": 30555 - }, - { - "image_path": "G:\\images\\combined\\004720_jpg.rf.8b7d62943dbff4ee82d895810367a46c.jpg", - "response": "A group of men working on a construction site.", - "id": 30556 - }, - { - "image_path": "G:\\images\\combined\\004721_jpg.rf.2066f1e0d219b057c957764682ccaa5b.jpg", - "response": "A group of people in front of a power box with red flags on each side.", - "id": 30557 - }, - { - "image_path": "G:\\images\\combined\\004722_jpg.rf.b9d3b2ade99e2aedca28a049a9ceae0f.jpg", - "response": "In the image there is a man wearing a white mask and a red helmet. He is standing in front of a long conveyor belt on which there are a lot of round black objects. The man is also holding a digital device in his hand. The background is quite dark.", - "id": 30558 - }, - { - "image_path": "G:\\images\\combined\\004723_jpg.rf.4f61dd436cd43e1babd77d3f9f5a3cc5.jpg", - "response": "A group of people standing around a construction site.", - "id": 30559 - }, - { - "image_path": "G:\\images\\combined\\004724_jpg.rf.6ed4ad63c19e36dc1d229b1c9cf1c4aa.jpg", - "response": "The image shows a group of workers standing in a large, dark tunnel. The tunnel is made of concrete and has a curved ceiling. The workers are wearing hard hats and some of them are carrying tools. In the background, there is a truck parked in the tunnel.", - "id": 30560 - }, - { - "image_path": "G:\\images\\combined\\004725_jpg.rf.a6a7dcbe4d67d0f0c23bf6e84e8d3470.jpg", - "response": "A group of people standing around a building site.", - "id": 30561 - }, - { - "image_path": "G:\\images\\combined\\004726_jpg.rf.9b6db6f85caf0539ddb48d48dd00612f.jpg", - "response": "The image shows a group of people standing around a large piece of construction equipment, which appears to be a crane or some other type of machinery. The scene is set at night, with the city skyline visible in the background. The people are standing in various positions around the equipment, and some of them are wearing hard hats. The ground around the equipment is covered with debris, including what appears to be wooden planks and other materials.", - "id": 30562 - }, - { - "image_path": "G:\\images\\combined\\004727_jpg.rf.898cbe0fcdb600e8d2a5234a847aeb70.jpg", - "response": "A group of people standing around a table with blueprints spread out on it.", - "id": 30563 - }, - { - "image_path": "G:\\images\\combined\\004728_jpg.rf.4ef47c110d34a9bce5f5ca61fd2a4203.jpg", - "response": "A man is using a pressure washer on a deck.", - "id": 30564 - }, - { - "image_path": "G:\\images\\combined\\004729_jpg.rf.ba5371fa7da2a0f3db7a99a75c72e9f2.jpg", - "response": "The image shows a group of rescue workers standing around a hole in the ground. The workers are wearing camouflage and white helmets. Some of them are holding shovels and a large rock. In the background, a yellow and black helmeted worker is operating an earth-moving machine. To the left of the workers, a ladder is propped up against a large rock.", - "id": 30565 - }, - { - "image_path": "G:\\images\\combined\\004730_jpg.rf.27e9a957f0491a4a72242ce1754f8cb5.jpg", - "response": "A group of people in hard hats and work clothes are walking in a row. They are all carrying orange hard hats under their arms. They are all carrying orange hard hats under their arms. The people are all young men. They are all wearing the same thing. They are all wearing the same thing. They are all wearing hard hats and work clothes. They are all wearing hard hats and work clothes. They are all wearing work clothes that are a light tan color. They are all wearing work clothes that are a light tan color. The work clothes have a pocket on the chest. The work clothes have a pocket on the chest. The pockets are closed with a zipper. The pockets are closed with a zipper. The men are all walking in a line. The men are all walking in a line. They are all walking in front of a large building. They are all walking in front of a large building. The building is made of grey metal. The building is made of grey metal. The men are all smiling at the camera. The men are all smiling at the camera.", - "id": 30566 - }, - { - "image_path": "G:\\images\\combined\\004731_jpg.rf.33c685393dbb8f612fffaf1c554b3354.jpg", - "response": "A worker is seen at a construction site of the subway line 14 in Shanghai, east China, April 25, 2017. The 33.98-kilometer-long line 14, the first fully underground line in Shanghai, is expected to be put into operation this year. (Xinhua/Li Ziheng)", - "id": 30567 - }, - { - "image_path": "G:\\images\\combined\\004733_jpg.rf.05e3c924975f6657072c982cb18872a1.jpg", - "response": "An African American construction engineer holding blueprints and a walkie-talkie.", - "id": 30568 - }, - { - "image_path": "G:\\images\\combined\\004734_jpg.rf.306642f1e33c51759b71629e059b5958.jpg", - "response": "A man wearing a green shirt and khaki pants with a yellow hard hat on his head. He is holding a hammer and is sitting on a tire.", - "id": 30569 - }, - { - "image_path": "G:\\images\\combined\\004735_jpg.rf.676c76533fb22a400c0d1759925a4747.jpg", - "response": " A lineworker(214,283),(837,997) for an electric company repairs a power line.", - "id": 30570 - }, - { - "image_path": "G:\\images\\combined\\004736_jpg.rf.e88db4ee6f250197410b40f72b05ef42.jpg", - "response": "two people standing next to a stairwell while looking at a blueprint", - "id": 30571 - }, - { - "image_path": "G:\\images\\combined\\004737_jpg.rf.4267b515505078c8301037ffc587737c.jpg", - "response": "A man(196,1),(978,995) in a brown suit and red hard hat(393,3),(598,147) is holding a light in a dark cave.", - "id": 30572 - }, - { - "image_path": "G:\\images\\combined\\004738_jpg.rf.3f34d150caca4feb5eab0f350261714b.jpg", - "response": "A group of workers are working on a construction site.", - "id": 30573 - }, - { - "image_path": "G:\\images\\combined\\004740_jpg.rf.360c9db12847794e642bfb5c0f05ae84.jpg", - "response": "An electrician repairs a power line.", - "id": 30574 - }, - { - "image_path": "G:\\images\\combined\\004741_jpg.rf.d057e0efcfc7a780aad554b6e1aa5803.jpg", - "response": "A construction worker is injured and\u88ab\u56f0 in a large concrete mixer at a building site. He is wearing a white helmet and blue overalls. There are other workers around him, some are wearing hard hats, and one is wearing a white helmet. They are all trying to help the injured worker. There is a large blue hose attached to a red pump, and several people are holding it steady. The mixer is surrounded by scaffolding and wooden poles. In the background, there are several other people, some of them are wearing white t-shirts and blue jeans, and one of them is wearing a white helmet and orange overalls.", - "id": 30575 - }, - { - "image_path": "G:\\images\\combined\\004743_jpg.rf.67590ea019ff529b0544ea5790f122c6.jpg", - "response": "A group of men standing around a pipe in the ground.", - "id": 30576 - }, - { - "image_path": "G:\\images\\combined\\004744_jpg.rf.4fb6641b0fd50382ab5879efe58775eb.jpg", - "response": "A group of men working on a construction site.", - "id": 30577 - }, - { - "image_path": "G:\\images\\combined\\004745_jpg.rf.10c7d9dd4a71cb2d17b6bdfbe2238501.jpg", - "response": "The picture shows a group of men walking in front of a building under construction. The building is mostly made of concrete and has scaffolding in front and around it. The men are walking in a line and the leader is on the left. The farthest right man is carrying a blue bag. In front of the group, on the ground, there is a blue trash bin. The sky is grey and overcast.", - "id": 30578 - }, - { - "image_path": "G:\\images\\combined\\004747_jpg.rf.57e0a925dbbead861a54ed0567a57d19.jpg", - "response": "A construction worker in a yellow hard hat and work clothes is kneeling on a construction site. They are working with yellow bricks and there is a large beam in the background.", - "id": 30579 - }, - { - "image_path": "G:\\images\\combined\\004748_jpg.rf.926cbd69846f2b3725ebf60b8d842e3a.jpg", - "response": "A construction worker in a yellow and orange safety vest and yellow and orange hard hat, standing in a large circular\u5751 surrounded by wooden boards and large concrete barriers.", - "id": 30580 - }, - { - "image_path": "G:\\images\\combined\\004750_jpg.rf.8ece984d9589123d0473322f8186ad3e.jpg", - "response": "The image shows a group of seven men standing in front of a building with a sign that reads \\\"\u539f\u73e0\u6fb3\\\" (Yuan Zhu Wo). Some of the men are wearing hard hats, and all of them are wearing shirts. One man on the far left is wearing a white shirt with a yellow stripe, and another man on the far right is wearing a white shirt with blue stripes. The man second from the left is wearing a white shirt with black stripes. The man third from the left is wearing a black shirt and a blue hat. The man fourth from the left is wearing a white shirt and a black hat. The man fifth from the left is wearing a white shirt and a red hat. The man sixth from the left is wearing a white shirt and a black hat. The man on the far right is wearing a white shirt with a blue logo on the left chest. There are two flags in the background, one on the far left and one on the far right.", - "id": 30581 - }, - { - "image_path": "G:\\images\\combined\\004751_jpg.rf.c96e55288ee8f2cb710cf803ba7eae26.jpg", - "response": "A worker in a orange jumpsuit and yellow helmet is using a sledge hammer to break up a piece of concrete.", - "id": 30582 - }, - { - "image_path": "G:\\images\\combined\\004752_jpg.rf.ffa16a3db46f795f4afeec034870590d.jpg", - "response": "The image shows a Chinese worker in a blue hard hat, standing in front of a large metal structure that resembles the frame of a giant metal tent. The worker is holding a long, thick cable in his hand. The ground around the worker is covered in snow. In the background, there is a mountain of snow. To the right, there is a person wearing a blue hat and a black jacket.", - "id": 30583 - }, - { - "image_path": "G:\\images\\combined\\004754_jpg.rf.1f3c9c188d4bc63d5f007a13458a49c3.jpg", - "response": "In the image two workers are seen working on a large building. One of the worker is seen wearing yellow color uniform and is working on a large pipe. Another worker is seen working on a lift. Both the workers are seen wearing helmet. A large building is seen in the background.", - "id": 30584 - }, - { - "image_path": "G:\\images\\combined\\004757_jpg.rf.584d42b0814b38372601910511a547da.jpg", - "response": "A group of people standing around a construction site looking at the ground.", - "id": 30585 - }, - { - "image_path": "G:\\images\\combined\\004758_jpg.rf.d7c191ae347dffb657fb01a20e6d292e.jpg", - "response": "A worker is seen on a cherry picker, fixing power lines. He is wearing a green uniform.", - "id": 30586 - }, - { - "image_path": "G:\\images\\combined\\004760_jpg.rf.4dad438e9b215bc8af8374b556b7b3f0.jpg", - "response": "The image shows two men standing at a table, looking over blueprints. Both men are wearing white helmets on their heads. One man is wearing a white helmet and glasses, while the other man is wearing a yellow helmet. They are both dressed in business attire. One man is wearing a black shirt and the other is wearing a white shirt. They are both holding pencils in their hands, and the man on the right is holding a ruler. The table has a blueprint spread out in front of them, and there is a cell phone on the table as well.", - "id": 30587 - }, - { - "image_path": "G:\\images\\combined\\004761_jpg.rf.94c8062043d67a72c8e3db30aab32599.jpg", - "response": "In the image there are several power lines, some of them are yellow and others are black. Below the power lines, there is a group of workers wearing blue uniforms and yellow hats. One of the workers is holding a blue helmet with both hands and looking at it, two other workers are standing next to him. In the background, there is a yellow crane operating in the construction site.", - "id": 30588 - }, - { - "image_path": "G:\\images\\combined\\004762_jpg.rf.54672473042f6a7ab38c6f668c662508.jpg", - "response": "The image shows a construction site with many workers. There is a yellow steamroller in the foreground, and a red truck in the background. Some workers are standing around the site, and others are working with shovels and other tools. There is also a man in a white shirt and black pants standing on the left side of the image.", - "id": 30589 - }, - { - "image_path": "G:\\images\\combined\\004763_jpg.rf.9158755edbfebe1c8693adc860ed2c16.jpg", - "response": "The image features a factory setting with President Obama wearing a white shirt and a tie. He is wearing a hard hat and safety goggles. To his left, there are two men also wearing yellow hard hats and safety goggles. They appear to be workers at the factory. The factory floor is filled with various pieces of machinery and equipment, including a large blue machine towards the right side of the image. The factory has a yellow railing system in place to keep workers safe.", - "id": 30590 - }, - { - "image_path": "G:\\images\\combined\\004764_jpg.rf.2942affdf7f0fa55eedf01639b0f4980.jpg", - "response": "A group of men standing around pointing at something. They are all wearing hard hats.", - "id": 30591 - }, - { - "image_path": "G:\\images\\combined\\004765_jpg.rf.8add3e0f8cbf5ca9854bc0061823b1ef.jpg", - "response": "In the image there are four people working on power lines. Three of them are in the middle of the photo wearing blue uniforms and white helmets. The fourth person is at the bottom left of the image wearing a blue uniform. They are all working on power lines and equipment.", - "id": 30592 - }, - { - "image_path": "G:\\images\\combined\\004766_jpg.rf.132b0dda00fc04abdbd7eb4918c96aea.jpg", - "response": "A group of men standing in front of a building that has scaffolding on it.", - "id": 30593 - }, - { - "image_path": "G:\\images\\combined\\004767_jpg.rf.54dae94e37d29626bed5b4ef97f43985.jpg", - "response": "A worker in a red hard hat and blue coveralls is working on a large piece of industrial equipment. They are adjusting a valve on a large pipe. The pipe is silver and runs along the top of the equipment. The worker is also working on a machine that has a lot of dials and machinery. The background is a grey wall with more machinery.", - "id": 30594 - }, - { - "image_path": "G:\\images\\combined\\004768_jpg.rf.a13059e5e617f0645cb1351c39491871.jpg", - "response": "The image shows two workers in yellow hard hats and orange work vests, working on a piece of heavy machinery. They are both crouched down, with the worker on the left holding a red tool box. The machine they are working on has two large drills with brown knobs on them. They are standing on a yellow platform and there is a red crane visible to the right of the frame. The sky is a clear blue color.", - "id": 30595 - }, - { - "image_path": "G:\\images\\combined\\004769_jpg.rf.84280bda8d990e0af097b9d97f531e9a.jpg", - "response": "A group of men working on a construction site.", - "id": 30596 - }, - { - "image_path": "G:\\images\\combined\\004770_jpg.rf.d469accef9f2d8d14fa69dd76ee8b889.jpg", - "response": "A man in a brown suit talking to another man in a black suit.", - "id": 30597 - }, - { - "image_path": "G:\\images\\combined\\004771_jpg.rf.950d49fc683a6907b802a7c1c0be06ae.jpg", - "response": "In the image, a group of railway workers in orange vests and safety gear are working on a railroad. They are standing on and around train tracks, with some of them focused on a piece of train track that is lying on the ground. The sun is shining brightly in the sky.", - "id": 30598 - }, - { - "image_path": "G:\\images\\combined\\004772_jpg.rf.48a884b92c89eb379d0a9f379b815d06.jpg", - "response": "The image shows a group of workers in a cave. They are all wearing red and blue helmets, and the one on the far right is wearing a yellow helmet. The worker on the far left is holding a pickaxe and wearing a red shirt and blue pants. The worker in the middle is wearing a red shirt and holding a flashlight. The worker on the far right is wearing a yellow helmet and holding a tool. The cave has a stone wall on the left and the workers are standing in front of it. There is also a fire burning in the cave, illuminating the area.", - "id": 30599 - }, - { - "image_path": "G:\\images\\combined\\0047736a8da735f0.jpg", - "response": "A man in a red and black boxing outfit stands in a boxing ring.", - "id": 30600 - }, - { - "image_path": "G:\\images\\combined\\004773_jpg.rf.92014927bbeabc597b2faae1acf5b16a.jpg", - "response": "A group of men sitting around a table with food and drinks in front of them.", - "id": 30601 - }, - { - "image_path": "G:\\images\\combined\\004774_jpg.rf.a94b30d0115e174d9e88d2a2cde1baa8.jpg", - "response": "A group of people standing in front of a sign.", - "id": 30602 - }, - { - "image_path": "G:\\images\\combined\\004775_jpg.rf.d301d45337b6c6f8aef5edef5422d2e7.jpg", - "response": "A power worker in blue uniform repairs a power pole in a residential area in Fuzhou, southeast China's Fujian Province, May 29, 2013. A total of 18,000 residents in the area were affected by a power cut after a strong storm hit the city on Wednesday night. The power worker is from the local power company. He said they were working hard to restore power supply as soon as possible.", - "id": 30603 - }, - { - "image_path": "G:\\images\\combined\\004776_jpg.rf.62feae00d711f2d055ca3e03b1d5abe7.jpg", - "response": "The image shows a snowy field with a man sitting in the middle of it. He appears to be wearing a blue shirt and grey pants, and is being held captive by ropes tied to his arms and legs. The ropes are held by three people, who are dressed in black jackets and hats and are standing in the snow. One person is on the left, holding the ropes with both hands, and the other is on the right, pulling the ropes with one hand. The background shows power lines running from left to right, with the man being held captive near them.", - "id": 30604 - }, - { - "image_path": "G:\\images\\combined\\004777_jpg.rf.f7cf711138ab3ad34e787d2f07b2a8cc.jpg", - "response": "A group of rescue workers in orange jumpsuits and white helmets are sitting on the ground.", - "id": 30605 - }, - { - "image_path": "G:\\images\\combined\\004778_jpg.rf.66c25495dd16f1a9f6a59ca233db76a0.jpg", - "response": "The image shows a group of six men standing in a room that is in the process of renovation. They are all wearing casual clothing and are focused on a white wall that is covered with red and white tape. There are two men on the left side of the room and four men on the right side. The room also has a window on the far right side and a sink in the middle of the floor. The date \"2016-06-06\" is written at the bottom right corner of the image.", - "id": 30606 - }, - { - "image_path": "G:\\images\\combined\\004779_jpg.rf.05f2b76ffe77af919561d691a931223a.jpg", - "response": "A man wearing a yellow hard hat and a white shirt is laying bricks on a street. He is crouching down and is building a brick wall.", - "id": 30607 - }, - { - "image_path": "G:\\images\\combined\\004780_jpg.rf.fd4ab306af7acd2c9bb6e9a667456540.jpg", - "response": " Men(618,239),(748,833)(295,261),(426,835)(407,247),(535,820)(165,254),(257,740)(63,278),(179,822) standing in a construction site", - "id": 30608 - }, - { - "image_path": "G:\\images\\combined\\004781_jpg.rf.7af5726b045f687ec11fe3107ca67ad2.jpg", - "response": "A worker inspects the debris of a collapsed bridge in Hefei, capital of east China's Anhui province, July 10, 2009. A bridge under construction here collapsed on Thursday afternoon, causing no casualties, local authorities said. The bridge, which was planned to be 120 meters long, was about 40 meters long when it collapsed, local media reported. The reason for the collapse is still under investigation. (Xinhua/Chen Yichen)", - "id": 30609 - }, - { - "image_path": "G:\\images\\combined\\004782_jpg.rf.1737da48409717fc17ce237deea1fb67.jpg", - "response": "A man wearing a white hard hat, gloves and a tool belt is working on a wooden structure. He is using a level to check the wood and is standing on a ladder. The sky is blue with white clouds.", - "id": 30610 - }, - { - "image_path": "G:\\images\\combined\\004783_jpg.rf.4e26aced3674af72b9de185a26d719d8.jpg", - "response": "A woman wearing a white hard hat is smiling and talking on her cell phone. She is wearing a brown suit jacket and a pearl necklace.", - "id": 30611 - }, - { - "image_path": "G:\\images\\combined\\004784_jpg.rf.8c67a69bb8069daa170b65ffc4bc3088.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left, wearing green and yellow fatigues and a yellow helmet, and is standing on a pile of black pipes. Another worker is on the right, wearing a green uniform and a red helmet. In the background, a yellow truck with a large crane is parked on the right side of the image. The truck is yellow and has a red flag on the front. There is a pile of black pipes on the ground in front of the worker on the right. The pipes are of various sizes and are stacked in two rows. The worker on the left is standing on top of a pipe. The ground around the pipes is grey and there is a white wall to the left. The workers are the only people in the image.", - "id": 30612 - }, - { - "image_path": "G:\\images\\combined\\004785_jpg.rf.11efb89e95def252cf9fd76333047ede.jpg", - "response": "In the image there are two construction workers wearing yellow helmets, they are working on a construction site. One worker is standing in a hole and the other one is placing a large pipe. There is a concrete wall on the left side of the image and a large concrete pipe on the right side of the image. The workers are wearing black clothes and there is a yellow helmet on the ground in front of the hole.", - "id": 30613 - }, - { - "image_path": "G:\\images\\combined\\004788_jpg.rf.5f35712d026990671668b8df67434f55.jpg", - "response": "A group of three men in blue uniforms and hard hats crouching down near a large box.", - "id": 30614 - }, - { - "image_path": "G:\\images\\combined\\004791_jpg.rf.6b5067e6ddfc07c2a48063906326b3e9.jpg", - "response": "A man in a red hard hat and yellow safety vest crouches down next to a large group of pipes and valves. He is wearing a red hard hat and yellow safety vest.", - "id": 30615 - }, - { - "image_path": "G:\\images\\combined\\004792_jpg.rf.ba24ae91c33dd06f20bdac3d9d3cdeea.jpg", - "response": "In the image, a large group of railway workers in red uniform and yellow safety helmets are working on a bridge. They are installing or fixing the railway tracks. Some of them are using tools like spanners, drills and others. The bridge is grey and made of cement. The railway tracks are placed on the bridge and some workers are working on the tracks. The sky is covered by clouds and there are some mountains in the background.", - "id": 30616 - }, - { - "image_path": "G:\\images\\combined\\004793_jpg.rf.d4fc42c79333b6f3f5bc785109384c51.jpg", - "response": "A worker is seen in a cave, he is wearing a yellow hard hat and a green vest. The cave has a muddy floor and the worker is climbing down a ladder. There are bamboo shoots in the foreground.", - "id": 30617 - }, - { - "image_path": "G:\\images\\combined\\004794_jpg.rf.ec24fbbd42168ab151804272df45d688.jpg", - "response": "A group of men are working on a metal tower.", - "id": 30618 - }, - { - "image_path": "G:\\images\\combined\\004795_jpg.rf.e1f20731ce119469643a211bf720c4e9.jpg", - "response": "A man in a yellow jumpsuit and a hard hat is sitting on a step and reading a newspaper. He is wearing a hard hat and has a walkie talkie on his belt. He is in a tunnel-like room with various equipment around him.", - "id": 30619 - }, - { - "image_path": "G:\\images\\combined\\004796_jpg.rf.27c50b5235104223c46cc3f0ad3b86a2.jpg", - "response": "The picture shows a group of men standing in a construction site. They are all dressed in black suits and most of them are wearing white safety helmets. The wall behind them is half-assembled, with green metal sheets on the outside and white inside. The floor is concrete, and there are some cranes and construction workers in the background.", - "id": 30620 - }, - { - "image_path": "G:\\images\\combined\\004797_jpg.rf.930bbc989e89d7b6e01d3f53917a142c.jpg", - "response": "In the image two men are working on power lines. They are both wearing safety gear which includes white hard hats, orange safety vests, and grey shirts. The man in the front is wearing orange gloves and is working on a silver ladder. The man behind him is working on a silver pole. They are both standing on a metal platform.", - "id": 30621 - }, - { - "image_path": "G:\\images\\combined\\004798_jpg.rf.b3a39057b75a3259d8bb2d7b8a3c0bd0.jpg", - "response": "In the image there are two people working on a construction site. One person is on the left and is wearing camo pants, a camo jacket, a yellow hard hat, and is holding a blue cable. The second person is on the right and is wearing red hard hat, brown jacket, and is holding the other end of the blue cable. They are both standing on a ladder with the background being a grey wall.", - "id": 30622 - }, - { - "image_path": "G:\\images\\combined\\004799_jpg.rf.cb16a734458e0d59303578101eb87c2a.jpg", - "response": "In the image two workers are seen working on a construction site. They are wearing yellow helmets and one of them is holding a large pipe in his hand. Another pipe is seen on the left side of the image. The sky is blue with some clouds.", - "id": 30623 - }, - { - "image_path": "G:\\images\\combined\\0047fb2e2908c12d.jpg", - "response": "A man is sitting at a table with a laptop. He is holding a microphone and appears to be giving a presentation.", - "id": 30624 - }, - { - "image_path": "G:\\images\\combined\\004801_jpg.rf.0d7b535fa49285f7135742a7ceabd6ae.jpg", - "response": "An engineer in a suit and tie, wearing a hard hat and holding a pair of binoculars, smiles as he looks up at a power station.", - "id": 30625 - }, - { - "image_path": "G:\\images\\combined\\004802_jpg.rf.5d2ed5eeabb0ef69d67b73812351487d.jpg", - "response": "A construction worker wearing a hard hat and holding a sign.", - "id": 30626 - }, - { - "image_path": "G:\\images\\combined\\004803_jpg.rf.8def9ccf32a0cfcf55776f1152481677.jpg", - "response": "The image shows a group of workers in the process of removing an old wooden power pole. The pole is located on the side of a road and is being carried out of the picture by a large spool of wire. The workers are wearing safety gear, including hard hats and safety vests. One worker is on the left, another is in the center of the scene, and the third is on the right. The fourth worker is behind the truck in the background. The workers are all focused on the task at hand, and the scene captures a moment of teamwork and hard work.", - "id": 30627 - }, - { - "image_path": "G:\\images\\combined\\004804_jpg.rf.34d145b523bb89feab5c193b4fea9d87.jpg", - "response": "A construction worker in a yellow hard hat is measuring a brick wall with a measuring tape while another worker in a blue shirt looks on. They are both wearing yellow hard hats and the worker measuring the wall is also wearing a white t-shirt and jeans. They are standing on a construction site with a blue sky in the background.", - "id": 30628 - }, - { - "image_path": "G:\\images\\combined\\004805_jpg.rf.0e83e294841f0fc656a9ce7b06a64f53.jpg", - "response": "This image shows a man with black hair standing in the sun. He is wearing a dark suit and has his mouth open as if he is laughing. He is also holding a cigarette. The man is standing outside in front of a building. There are several other people around him, some of them are dressed in dark suits too. In the background, there is a building under construction with a large crane next to it. The building has glass windows and is painted in light blue color.", - "id": 30629 - }, - { - "image_path": "G:\\images\\combined\\004806_jpg.rf.87d9e6650725025c802ade3701fbe775.jpg", - "response": "a group of people walking across a field", - "id": 30630 - }, - { - "image_path": "G:\\images\\combined\\004807_jpg.rf.62089d1dc7066e2f52624225fdf0cb10.jpg", - "response": "A group of men wearing hard hats are standing in a room under construction. Some of the men are wearing black and yellow hard hats, while others are wearing red and yellow hard hats. They are all wearing black coats and are looking down at something. There are windows on the walls and a lot of rebar sticking out of the concrete floor.", - "id": 30631 - }, - { - "image_path": "G:\\images\\combined\\004808_jpg.rf.08c44d3f1caa6bf218704f208614cad2.jpg", - "response": "In the image several workers are seen constructing a building. The workers are wearing yellow helmets and are working on a building site. The site has several metal rods and the workers are tying wires to them. There are also several pipes seen in the background. The workers are wearing red and white t-shirt and are of asian ethnicity.", - "id": 30632 - }, - { - "image_path": "G:\\images\\combined\\004809_jpg.rf.28a6802590e9a67d5979c05536d96c74.jpg", - "response": "A group of four workers in red and yellow work uniforms and yellow helmets are constructing a large green cylindrical tank. They are crouched down over a rectangular pit with rebar being woven into a structure in the bottom of the pit.", - "id": 30633 - }, - { - "image_path": "G:\\images\\combined\\004810_jpg.rf.be6c613d55b1769965ec6c53d2e4fe45.jpg", - "response": "A group of workers are working on a building site. They are all wearing yellow hard hats. One man is bending over, concentrating on his task. Another man is sitting down, working on a metal bar. A third man is standing in the background, watching the others. A fourth man is standing further back, also watching the work. A fifth man is standing to the far right of the image, also working on the building site.", - "id": 30634 - }, - { - "image_path": "G:\\images\\combined\\004812_jpg.rf.c1799104df16fe5fea44183b69faea67.jpg", - "response": "The image shows a group of workers in yellow vests and orange hats standing on a barge in a harbor. The barge is filled with steel rods and there are several large boats visible in the background. A yellow crane is operating in the background on the right side of the image. The sky is overcast and there are a few people in the background who are not part of the main group.", - "id": 30635 - }, - { - "image_path": "G:\\images\\combined\\004813_jpg.rf.a9c5335434f5263e5e1a5a657c835cbe.jpg", - "response": "A construction site with a bulldozer and some construction workers.", - "id": 30636 - }, - { - "image_path": "G:\\images\\combined\\004816_jpg.rf.ffa2ec36e07df41c90e3ac79bbb86f48.jpg", - "response": "In the image there are two people working on a construction site. They are both wearing hard hats and the person in the foreground is pushing a cart of bricks while the person in the background is shoveling bricks. There is a pile of bricks to the right of the people and a cart of bricks to the left of the people. In the background there is a yellow metal gate and a red and white sign that says \"Caution, Keep Out\".", - "id": 30637 - }, - { - "image_path": "G:\\images\\combined\\004817_jpg.rf.16596a60cbe0fe4a7567a3b56d6a5a87.jpg", - "response": "A worker in a yellow hard hat and grey coveralls is working on a large black piece of equipment. He is holding a pair of pliers and has a knife in his hand. He is in front of a large black transformer.", - "id": 30638 - }, - { - "image_path": "G:\\images\\combined\\004819_jpg.rf.939658e1dd794f613803e65002a3d1ed.jpg", - "response": "A group of people wearing hard hats are standing in a underground tunnel.", - "id": 30639 - }, - { - "image_path": "G:\\images\\combined\\004820_jpg.rf.ff70e3cf9a8885503ca93a312a450cc5.jpg", - "response": "An industrial harbor with a large red cargo ship docked. Two men in yellow vests and hard hats are standing in front of the ship, one holding a clipboard and the other pointing to the ship. In the background is a factory or oil rig.", - "id": 30640 - }, - { - "image_path": "G:\\images\\combined\\004821_jpg.rf.042c9d97ed15666a20cf125d5d4895c6.jpg", - "response": "In the image there is a worker wearing a yellow hard hat and a green jacket, who is working on a construction site. The worker is focused on their task, which involves connecting steel bars together. They are standing in a large warehouse-like building, which is filled with steel bars of various sizes and shapes. Some steel bars are stacked together, while others are arranged in a circle around the worker. The worker is standing in the center of this circle of steel bars, and they are holding a long piece of steel.", - "id": 30641 - }, - { - "image_path": "G:\\images\\combined\\004822_jpg.rf.9782e1b3e6f3a5b2b98e43090635030e.jpg", - "response": "A worker is standing in front of a large metal furnace with a shovel. The worker is wearing a yellow helmet and grey uniform. The background is blurred and there is text on the right bottom corner that says \"\u5317\u4eac\u7db2\".", - "id": 30642 - }, - { - "image_path": "G:\\images\\combined\\004823_jpg.rf.6ae4bedc41a78a79cb043e84182a4315.jpg", - "response": "A group of three construction workers working on a building site.", - "id": 30643 - }, - { - "image_path": "G:\\images\\combined\\004824_jpg.rf.f3a945037b9f3bf2efee86769d77ca1d.jpg", - "response": "An electrician fixing an electricity cable on a pole", - "id": 30644 - }, - { - "image_path": "G:\\images\\combined\\004825_jpg.rf.c0798973a9d475dddc2d6c01294d82e5.jpg", - "response": "A worker in an orange jumpsuit and yellow hard hat is on a ladder, climbing up to the top of a tower. The tower is made of metal and is set against a foggy, tree-filled background.", - "id": 30645 - }, - { - "image_path": "G:\\images\\combined\\004826_jpg.rf.a9ba9543b337cb183d67cd82407abb3b.jpg", - "response": "The image shows two workers on a bridge, with one on the left and one on the right, both wearing red helmets and grey uniforms. They are standing on the black asphalt of the bridge, which has a fine gravel surface. The bridge has a red railing on the left side and a tall concrete pylon on the right. In the background, there are some buildings and a car on the road.", - "id": 30646 - }, - { - "image_path": "G:\\images\\combined\\004827_jpg.rf.1c2da2ad35763c5651f91d8ab5c2d059.jpg", - "response": " Kim Jong Un(284,305),(715,997) looking at a model of the Ryomyong Street residential area", - "id": 30647 - }, - { - "image_path": "G:\\images\\combined\\004828_jpg.rf.c7ec0c249ed48d33193c76b409938b4e.jpg", - "response": "The image shows a construction site with a large concrete circular structure under construction. The structure, which is surrounded by wooden scaffolding, is about three stories tall and has a diameter of about 30 meters. The walls of the structure are smooth and white, and there is a yellow walkway inside.", - "id": 30648 - }, - { - "image_path": "G:\\images\\combined\\004829b39a65de73.jpg", - "response": "A man standing in front of a large screen with the words \"Make more time to be creative\" on it.", - "id": 30649 - }, - { - "image_path": "G:\\images\\combined\\004829_jpg.rf.4f3daceac0a35369cc4940d2f3a167ff.jpg", - "response": "The image shows two workers in yellow helmets and green camouflage uniforms repairing power lines on a city street. They are standing on ladders and using tools. In the background, there is a building with signs in Chinese.", - "id": 30650 - }, - { - "image_path": "G:\\images\\combined\\004831_jpg.rf.189dea0918147e189ef6ec16c6e3bd3c.jpg", - "response": "In the image there is a worker wearing a yellow hard hat and a black shirt. They are working with a large spool of wire that is wrapped in silver. The worker is also holding a smaller spool of wire. The background is a large industrial machine.", - "id": 30651 - }, - { - "image_path": "G:\\images\\combined\\004832_jpg.rf.c4945e43210164b1fa4a19b2dee8a9c8.jpg", - "response": "a group of people standing in front of a car", - "id": 30652 - }, - { - "image_path": "G:\\images\\combined\\004833_jpg.rf.ccf25818f022788a27c3c32dfd1deb19.jpg", - "response": "A group of men working on an electricity pylon.", - "id": 30653 - }, - { - "image_path": "G:\\images\\combined\\004834_jpg.rf.79c0a6301508120b703d4b55ba65826a.jpg", - "response": "A worker repairs a wall of the former residence of late Chinese leader Mao Zedong in Shaoshan, China, 2008.", - "id": 30654 - }, - { - "image_path": "G:\\images\\combined\\004836_jpg.rf.d491b9e576f44ea74617b131db86cda8.jpg", - "response": "The image shows two workers suspended in the air while working on a large metal structure. They are both wearing white shirts, beige pants, and blue hard hats. One worker is on the left side of the image and is holding a tool in each hand, one of which appears to be a drill. The other worker is on the right side of the image and is hooking a tool to their belt. They are also holding a tool in each hand. The workers are wearing harnesses to secure them to the structure while they work. The sky behind them is blue and cloudless.", - "id": 30655 - }, - { - "image_path": "G:\\images\\combined\\004837_jpg.rf.2e112cc89bbfef6404934445ec086961.jpg", - "response": "A group of people wearing hard hats and posing for a picture in front of a building.", - "id": 30656 - }, - { - "image_path": "G:\\images\\combined\\004838_jpg.rf.f69bfcab8e99d60c3e8170208c68c3b0.jpg", - "response": "A man wearing a yellow hard hat and work clothes is working on a construction site. He is standing under a metal grid and holding a long blue rod. There are several other people working on the site as well. The man is wearing a watch on his left wrist.", - "id": 30657 - }, - { - "image_path": "G:\\images\\combined\\004839_jpg.rf.ed477b0e4069abe33814dc332d901282.jpg", - "response": "A worker in a yellow hat and grey jumper repairs power lines.", - "id": 30658 - }, - { - "image_path": "G:\\images\\combined\\004840_jpg.rf.0a90886b5cd916d5879fb76762348c87.jpg", - "response": "A group of men in yellow jackets are working on a train track. They are all wearing hard hats and some have on yellow jackets. They are working on a train track and one man is holding a large metal pipe.", - "id": 30659 - }, - { - "image_path": "G:\\images\\combined\\004841_jpg.rf.f0df22904132449151fba100f0bee109.jpg", - "response": "Several firemen(63,757),(245,997)(218,599),(400,997)(410,658),(723,987)(279,333),(488,779)(627,366),(830,995) inred helmets(279,332),(401,433)(453,253),(546,350)(427,659),(562,812)(287,821),(388,959)(498,453),(601,591)(87,758),(188,865) andblack uniforms(64,833),(244,997)(219,717),(400,997)(639,468),(829,995)(408,799),(722,997) are huddled together", - "id": 30660 - }, - { - "image_path": "G:\\images\\combined\\004842_jpg.rf.848d56519f08de754736063c0f46e045.jpg", - "response": "The image shows two workers in orange hardhats and grey shirts, one worker is on the left and the other is on the right. They are in the process of cutting through a steel cable with a large grey industrial cutting tool. The sky is blue with clouds.", - "id": 30661 - }, - { - "image_path": "G:\\images\\combined\\004843_jpg.rf.69dc282fe0c9bcb4ea70d0f898044d52.jpg", - "response": "A construction site with multiple workers in red shirts.", - "id": 30662 - }, - { - "image_path": "G:\\images\\combined\\004844_jpg.rf.d25b9500c188ff1a63040e6f3796bf77.jpg", - "response": "A group of men working on a construction site.", - "id": 30663 - }, - { - "image_path": "G:\\images\\combined\\004845_jpg.rf.dba1f43bdd1bdb82bb9e4254a9dbc356.jpg", - "response": "A construction site with a yellow and black sign that says \u201c\u5b89\u5168\u7b2c\u4e00 \u9884\u9632\u4e3a\u4e3b\u201d in Simplified Chinese.", - "id": 30664 - }, - { - "image_path": "G:\\images\\combined\\004846_jpg.rf.750ca77171427e706e8cd1dd1707de27.jpg", - "response": "The image shows two workers at a shipyard. One worker is on the left, wearing a yellow hard hat and has his left hand on a hook, holding a large piece of metal that is being lowered by a crane. The other worker is on the right, wearing a white hard hat and is looking up at the first worker. They are both wearing safety vests. In the background, there is a large ship with a red exterior and white interior, with a crane lifting a large piece of metal towards the ship. The ship is sitting on land, and there is a concrete platform in front of it. The workers are surrounded by other equipment, including a large metal cylinder on the left and a metal platform on the right. The sky is blue, and there are no other people in the image.", - "id": 30665 - }, - { - "image_path": "G:\\images\\combined\\004847_jpg.rf.177353932a9814b62f041fa7438ebb4a.jpg", - "response": "In the image there is a person wearing a yellow construction hat and a grey shirt. The person is holding a cell phone in their right hand and is covering their face with their left arm. The person is standing in an unfinished building with bare walls and a concrete floor. In the foreground, there are two small sticks planted in the ground and a white board.", - "id": 30666 - }, - { - "image_path": "G:\\images\\combined\\004848_jpg.rf.2bbbed7ca169712ba6d7bc0f51db29d4.jpg", - "response": "In the image two workers are building a structure. In the left side of the image a man is wearing a yellow helmet and a yellow vest. He is holding a yellow helmet in his left hand and a shovel in his right hand. He is walking up some stairs. In the right side of the image a man is wearing a yellow helmet and green gloves. He is holding a white tube in his left hand and a green tool in his right hand. He is in the process of climbing a metal structure. The workers are building a structure that is in the process of construction.", - "id": 30667 - }, - { - "image_path": "G:\\images\\combined\\004849_jpg.rf.0b4205abe7e9bd732cbac5ba9b87adca.jpg", - "response": "In the foreground two workers are fixing a power line. In the background on the left a large rock and a small forest. On the right a building under construction with four large columns.", - "id": 30668 - }, - { - "image_path": "G:\\images\\combined\\004850_jpg.rf.e880b1caf198209f104d41b459bbbbca.jpg", - "response": "A man in a red hard hat and grey coveralls is working on a metal sheet at a construction site.", - "id": 30669 - }, - { - "image_path": "G:\\images\\combined\\004851_jpg.rf.23b7630b9ff1ca0acba910d3966a0bfd.jpg", - "response": "A group of people stand on the side of the road as a man in a cherry picker works on a tree.", - "id": 30670 - }, - { - "image_path": "G:\\images\\combined\\004852_jpg.rf.1cf472a95dd86ebf20f5fd7b8b156337.jpg", - "response": "A group of five men standing outside.", - "id": 30671 - }, - { - "image_path": "G:\\images\\combined\\004853_jpg.rf.fd134dd47f65edc4c5522d57ffca0670.jpg", - "response": "In the image, two electrical workers are seen wearing blue and white uniforms and helmets. They are working on a large white and blue electric cabinet. One of them is holding a blue screwdriver and is fixing a part of the electric board. Another worker is seen in the left side of the image.", - "id": 30672 - }, - { - "image_path": "G:\\images\\combined\\004855_jpg.rf.79ba4e7351494fdbc3b31292659ee332.jpg", - "response": "A man in a suit and hard hat is looking at blueprints with another man. The man in the suit is wearing a white hard hat and the man in the yellow hard hat is wearing a yellow vest. They are standing in front of a bulldozer.", - "id": 30673 - }, - { - "image_path": "G:\\images\\combined\\004856_jpg.rf.b4c2833783c58c13d572f57a89aaa53a.jpg", - "response": "A worker in a hard hat and blue coveralls is using a long tool to stir something that is on fire in a large metal container. The container is black and has two doors. The worker is on the right side of the image and is looking down at the task at hand.", - "id": 30674 - }, - { - "image_path": "G:\\images\\combined\\004857_jpg.rf.53d77a10dec454c539e5b61a2f398cda.jpg", - "response": " Construction workers(569,207),(683,721)(786,180),(842,414) are seen working on a construction site", - "id": 30675 - }, - { - "image_path": "G:\\images\\combined\\004858_jpg.rf.2869da641606a2af9ed1bf4a2ebc6fa4.jpg", - "response": "Men(249,305),(401,759)(550,273),(690,752)(369,298),(488,711)(681,343),(808,702) walking on a dirt road", - "id": 30676 - }, - { - "image_path": "G:\\images\\combined\\004859_jpg.rf.d1dd5dd979d209f962bb7431e6d8b6b8.jpg", - "response": "The image shows two workers on a roof. They are wearing yellow hard hats and work clothes. The man on the left is sitting on the roof and is holding a drill. The man on the right is kneeling down and is holding a ladder. They are both working on a structure made of concrete.", - "id": 30677 - }, - { - "image_path": "G:\\images\\combined\\004860_jpg.rf.907f348cc4a82f6a860c360fb1d25669.jpg", - "response": "A worker in a hard hat and mask is using a shovel to scrape the side of a large metal cylinder. The worker is wearing a brown uniform and is standing in a dark room. There is a large metal cylinder to the right of the worker and another one behind them. A second worker is partially visible on the left, they are holding a tool.", - "id": 30678 - }, - { - "image_path": "G:\\images\\combined\\004861_jpg.rf.4cd95608b4b7dc3d139ca6e96286d218.jpg", - "response": "a group of men working on a cement wall", - "id": 30679 - }, - { - "image_path": "G:\\images\\combined\\004862_jpg.rf.9090e8a1ecadd7009351ae474c3ae143.jpg", - "response": "A man and a woman wearing red helmets are looking at a yellow device. The woman is wearing a white T-shirt and a red helmet. The man is also wearing a red helmet. The woman has black hair and is looking at the man. The man is wearing a white shirt with the left chest bearing the words \"\u4e2d\u56fd\u4e2d\u94c1\" and below it, the word \"\u96a7\u9053\u5c40\". The woman is wearing a white T-shirt with a black pattern on the right sleeve. The man is holding a yellow device in his hand. The woman is holding a cell phone in her hand. The background is a construction site with a rock in the upper left corner.", - "id": 30680 - }, - { - "image_path": "G:\\images\\combined\\004863_jpg.rf.9a96ec454a96e9d9c0f8e10312fd4cbf.jpg", - "response": "A couple of men working at a construction site.", - "id": 30681 - }, - { - "image_path": "G:\\images\\combined\\004864_jpg.rf.068c86545cce9bb29bfe3d9de2ec5d74.jpg", - "response": "A construction site with multiple workers and construction vehicles.", - "id": 30682 - }, - { - "image_path": "G:\\images\\combined\\004865_jpg.rf.6d03455efb079c81d3027a9d486ebda9.jpg", - "response": "A man in a yellow and blue uniform looking at a large piece of equipment.", - "id": 30683 - }, - { - "image_path": "G:\\images\\combined\\004866_jpg.rf.1eefc656823710ddd7e06ab005268d23.jpg", - "response": "In the image, a worker is standing in a dark tunnel with a large yellow machine with wheels in the background. The worker is wearing a yellow helmet and orange vest. The worker is also holding a shovel. In the foreground, there is a pile of rubble on the right side of the image. The photo is credited to China News Service.", - "id": 30684 - }, - { - "image_path": "G:\\images\\combined\\004867_jpg.rf.ac0a820c1f89e781be23b3cb7e436505.jpg", - "response": "A man and a woman in business attire are standing in front of a man in a grey suit and a man in a black suit. They are standing in front of a mountain and a village that has been destroyed. There are piles of grey rocks and a pile of grey gravel. There is a black SUV parked on the left side of the image and a white truck parked on the right side of the image.", - "id": 30685 - }, - { - "image_path": "G:\\images\\combined\\004868_jpg.rf.96412258077a5e7a31748503e0bac92e.jpg", - "response": "A construction site with a few people working. There is a large red metal structure in the middle of the site and a few people are working under it. Some of them are wearing hard hats. In the background, there is a blue metal structure and a few cranes. The ground is wet and there are several cables and rebar scattered around.", - "id": 30686 - }, - { - "image_path": "G:\\images\\combined\\004869_jpg.rf.3ab8031e8aed92e7248afa9acbb5f259.jpg", - "response": "A group of three men in orange hats and blue overalls are painting the inside of a house. They are each holding a pole with a brush on the end. One man is painting the ceiling, one man is painting the wall, and one man is painting the window frame.", - "id": 30687 - }, - { - "image_path": "G:\\images\\combined\\004870_jpg.rf.877c19b93d7a8bd8beebf1b28dd355ee.jpg", - "response": "A photo of Kim Jong-un, leader of North Korea, talking to a group of men in front of a building under construction. They are standing in front of a large building with a banner in the background. The men are wearing suits and the photo is taken from the front.", - "id": 30688 - }, - { - "image_path": "G:\\images\\combined\\004871_jpg.rf.f1a8bf930ea10d26f8c658ae15d6dd6c.jpg", - "response": "A man in a blue shirt and yellow hat working on a piece of wood.", - "id": 30689 - }, - { - "image_path": "G:\\images\\combined\\004872_jpg.rf.d33491258af2de83d874e78d69a83636.jpg", - "response": "A man in a shirt and tie talking to a man in a hard hat and safety glasses.", - "id": 30690 - }, - { - "image_path": "G:\\images\\combined\\004873_jpg.rf.e9bbc51cf54e3672ac57baf0b5cf439d.jpg", - "response": "A woman in a blue shirt is talking on a cell phone. She is smiling and holding a blueprint. In the background, there are two men wearing orange vests and hard hats. One of the men is looking at a white car. There is also a building under construction with a white roof.", - "id": 30691 - }, - { - "image_path": "G:\\images\\combined\\004874_jpg.rf.fb6035aa1c172990a1c50d690224bf52.jpg", - "response": "The image shows a group of construction workers working on a project in a tunnel. They are wearing hard hats and work clothes. The workers are standing in a large pit, surrounded by wooden posts. Some of the workers are using shovels and other tools to complete the project.", - "id": 30692 - }, - { - "image_path": "G:\\images\\combined\\004875_jpg.rf.de2237945a6cfcab43379f3c5fe14374.jpg", - "response": "In the image there is a woman standing in a mechanical room wearing a yellow hard hat and holding a clipboard. She is wearing a red and black flannel shirt and a yellow tool belt. She is checking pipes and looking at a clipboard.", - "id": 30693 - }, - { - "image_path": "G:\\images\\combined\\004876_jpg.rf.20eaab036c2919f20e797b831bc01164.jpg", - "response": "The image shows two workers in yellow hard hats on a construction site. They are standing in a lift, working on a power line. The power line is attached to a yellow pole.", - "id": 30694 - }, - { - "image_path": "G:\\images\\combined\\004877_jpg.rf.d94ac03f7b4dac804ff1472f9eb5d38f.jpg", - "response": "A man fixing another mans hard hat.", - "id": 30695 - }, - { - "image_path": "G:\\images\\combined\\004878_jpg.rf.038ba510ea768af22b3c2ccfb29aa837.jpg", - "response": "The image shows a construction site with two workers standing in the foreground. The workers are wearing hard hats and are looking in the same direction. In the background, there are several other people scattered around the site. There are two cranes operating in the far background. The sky is overcast.", - "id": 30696 - }, - { - "image_path": "G:\\images\\combined\\004879_jpg.rf.c8d7bea0f127356d70ef48e3415aa176.jpg", - "response": "A group of workers carry an injured comrade away from the construction site.", - "id": 30697 - }, - { - "image_path": "G:\\images\\combined\\004880_jpg.rf.3b21fae1d859bc14b7399b9a1b9bf839.jpg", - "response": "The image shows two construction workers on a building site. They are both wearing yellow hard hats and holding a sign that says 'Rabbits get 2 weeks off, we get 1 month'. The sign is held in front of them and they are both smiling. They are standing in front of a large construction site with several tall buildings under construction.", - "id": 30698 - }, - { - "image_path": "G:\\images\\combined\\004882_jpg.rf.0c52bdda64eeab418a945af3985c6963.jpg", - "response": "The image shows four construction workers on a building site. They are all wearing white hard hats and two of them are wearing green and brown camouflage shirts. The three workers standing on the left are all holding grey pipes while the worker on the right is holding an orange tool. They are all working on a large area of concrete with many metal bars.", - "id": 30699 - }, - { - "image_path": "G:\\images\\combined\\004883_jpg.rf.84da924ebd3d77f06b8095a3410cd333.jpg", - "response": "A man wearing a yellow hard hat and yellow vest standing in front of a yellow Caterpillar tractor with a white cab at a construction site.", - "id": 30700 - }, - { - "image_path": "G:\\images\\combined\\004884_jpg.rf.e9061a9d45e02d1bdf049991889cf666.jpg", - "response": "A group of workers are working on a building.", - "id": 30701 - }, - { - "image_path": "G:\\images\\combined\\004885_jpg.rf.0513c5ee468c3ff078470207faa258b9.jpg", - "response": "A group of firefighters huddle around a fire hose and spray water from a fire extinguisher at a construction site.", - "id": 30702 - }, - { - "image_path": "G:\\images\\combined\\004886_jpg.rf.fc140f0413c5d45b9056674163401f82.jpg", - "response": "The image shows two rescue workers in orange snow suits and blue hard hats hiking up a snowy trail. They are carrying snow tools and walking through the woods. The trail is covered in a light snow and the trees on either side are covered in snow as well.", - "id": 30703 - }, - { - "image_path": "G:\\images\\combined\\004887_jpg.rf.3793c891b07f5062b816eae287e72a30.jpg", - "response": "The image shows a group of people standing inside a large tunnel. The tunnel is made of concrete and has a curved ceiling. The group consists of between 6 and 9 people, most of them wearing white hard hats. Some of the people are also wearing red hard hats. One person on the right is wearing a blue hard hat. The people are standing on a concrete platform that runs along the left wall of the tunnel.", - "id": 30704 - }, - { - "image_path": "G:\\images\\combined\\004888_jpg.rf.1dabd85eea09a731fbeddb2337293556.jpg", - "response": "The image shows a construction site with several workers. There is a large pile of grey gravel on the left side of the image. In the center of the image, there is a man in a white hard hat and black jacket using a tool to pour concrete onto a grid of metal rebar. Another man in a yellow hard hat and brown jacket is holding a hose, and a man in a blue jacket is pouring concrete from a bucket. A man in a white hard hat is on the far right of the image, and another man in a black jacket is on the far left.", - "id": 30705 - }, - { - "image_path": "G:\\images\\combined\\004891_jpg.rf.4e020ca0d70767680aa74bc47878d2c3.jpg", - "response": "A couple of workers in orange jumpsuits and hard hats are working on a large metal pipe. One of the workers is using a large wrench on the pipe while the other is cutting the pipe with a saw. There are some cut pieces of the pipe lying on the ground.", - "id": 30706 - }, - { - "image_path": "G:\\images\\combined\\004892_jpg.rf.1ca4cd05ac0f2d1bcb509e206128fda0.jpg", - "response": "A group of men walking across a dirt field.", - "id": 30707 - }, - { - "image_path": "G:\\images\\combined\\004894_jpg.rf.fbdb173fb2f295f5d742c47ae1c3ac51.jpg", - "response": "The image shows a group of people standing in a parking lot next to a building. They are all wearing hard hats. In the foreground on the left, there is a man who is talking to another man. To the right of the first man, there is a man holding a briefcase. Further to the right, there is a woman wearing a dress and a hard hat. In the background, there is a building with a sign that says \"China\". There is also a mountain in the background.", - "id": 30708 - }, - { - "image_path": "G:\\images\\combined\\004895_jpg.rf.25b67281663cb4d94048848f059f7f9e.jpg", - "response": "In the image there is a person wearing a blue uniform and a yellow hard hat. They are sitting on a red metal scaffold and holding a clear plastic bottle. The person are drinking from the bottle. There are several rungs of a metal ladder around the person and the background is white.", - "id": 30709 - }, - { - "image_path": "G:\\images\\combined\\004896_jpg.rf.5ac13826aa2450e3359f706315796cda.jpg", - "response": "a person in a red shirt and white helmet is holding a red valve and turning it. there is a red valve with a sign on it that says '\u4e39\u9633' and a white crane behind the person", - "id": 30710 - }, - { - "image_path": "G:\\images\\combined\\004897_jpg.rf.ffa1bdefa2078ab44510e1c6d42d44cf.jpg", - "response": "\u96a7\u9053\u5185\u7684\u5de5\u4eba\u7a7f\u7740\u5b89\u5168\u88c5\u5907\uff0c\u5934\u6234\u9ec4\u8272\u5b89\u5168\u5e3d\uff0c\u80a9\u4e0a\u625b\u7740\u4e00\u628a\u5927\u9524\uff0c\u96a7\u9053\u5185\u58c1\u6709\u6df7\u51dd\u571f\u548c\u91d1\u5c5e\u7ba1\uff0c\u5de5\u4eba\u9762\u5e26\u5fae\u7b11\u7684\u770b\u7740\u955c\u5934\u3002", - "id": 30711 - }, - { - "image_path": "G:\\images\\combined\\004898_jpg.rf.c6c0b792e3e68499962ad13ffb5e2790.jpg", - "response": "4 men(577,236),(738,914)(207,53),(556,955)(667,105),(995,877) in green uniforms(208,186),(555,952)(668,258),(996,878) and blue helmets(779,104),(902,283)(401,53),(521,218)(603,237),(693,421) working on a pipe", - "id": 30712 - }, - { - "image_path": "G:\\images\\combined\\004899_jpg.rf.eac87810b8b7dd69978fe66315ab0b79.jpg", - "response": "a group of men walking across a muddy field", - "id": 30713 - }, - { - "image_path": "G:\\images\\combined\\0048ed25da02e036.jpg", - "response": "A Goodyear sign is shown in front of a cloudy sky.", - "id": 30714 - }, - { - "image_path": "G:\\images\\combined\\004900_jpg.rf.72ce85df06b49211856cea77f1879b42.jpg", - "response": "The photo shows a group of people working in a tunnel. They are wearing hard hats and some are pushing wheelbarrows filled with sand. There are also some ladders and other construction equipment in the tunnel. The walls of the tunnel are concrete and it appears to be an unfinished construction project.", - "id": 30715 - }, - { - "image_path": "G:\\images\\combined\\004901_jpg.rf.a5520caeac6bab9b3e205dcacf44929d.jpg", - "response": "A group of men standing on a dirt road.", - "id": 30716 - }, - { - "image_path": "G:\\images\\combined\\004902_jpg.rf.85a6bf252ca1f4fce67b9dc24d7f2492.jpg", - "response": "a group of people standing around a map", - "id": 30717 - }, - { - "image_path": "G:\\images\\combined\\004904_jpg.rf.1a0d708bac06109c61fb395255e50137.jpg", - "response": "a group of people walking across a dirt field", - "id": 30718 - }, - { - "image_path": "G:\\images\\combined\\004905_jpg.rf.e05223946e50b37957818a3c42d82845.jpg", - "response": "A man in a blue jumpsuit and orange hard hat is working at a factory. He is standing at a large metal machine with a red wall behind him and a control panel to his right. The man is wearing gloves and is making adjustments to the metal machine.", - "id": 30719 - }, - { - "image_path": "G:\\images\\combined\\004906_jpg.rf.4575a52844481dfcbbef10fc4533c0f6.jpg", - "response": "A worker wearing a white hat and a blue shirt is on a scaffolding. The scaffolding is made of orange metal tubes and it is located in front of a building. The worker is wearing grey pants and a white hat. He is using a tool that looks like a blow torch with a long black hose. There are several other workers in the image, but this one is the main focus.", - "id": 30720 - }, - { - "image_path": "G:\\images\\combined\\004908_jpg.rf.1a5761645d7f5a174b42276efbe6fd57.jpg", - "response": "The image shows a group of men in blue work clothes and yellow hard hats, some with their sleeves rolled up, working on a sidewalk at night. They are using a long rope and a metal pole.", - "id": 30721 - }, - { - "image_path": "G:\\images\\combined\\004909_jpg.rf.e384cbb933c275fc75a6bedc5025e055.jpg", - "response": "A man in a red hard hat is sitting in a control room.", - "id": 30722 - }, - { - "image_path": "G:\\images\\combined\\00490f30dfd43495.jpg", - "response": "A Babylon police car is parked on the street.", - "id": 30723 - }, - { - "image_path": "G:\\images\\combined\\004910_jpg.rf.66251dc77c0471c8638f6b02838df8f1.jpg", - "response": "In the image, a construction worker is working on a construction site. The worker is crouched down and is wearing a red hard hat. The sky is blue and there are no clouds in the sky.", - "id": 30724 - }, - { - "image_path": "G:\\images\\combined\\004911_jpg.rf.42655d4dd11b4b5aaf096706c9b927e3.jpg", - "response": "A group of people working on a construction site.", - "id": 30725 - }, - { - "image_path": "G:\\images\\combined\\004912_jpg.rf.5e084ae919ae6a26bd96e24821340988.jpg", - "response": "a group of people wearing red hats(359,216),(467,332)(132,213),(243,326)(474,282),(547,368)(683,307),(738,367)(594,303),(648,361)", - "id": 30726 - }, - { - "image_path": "G:\\images\\combined\\004914_jpg.rf.f2ba50c890ddc962bfc47c28190f2274.jpg", - "response": "A worker is repairing a power pole in the image. He is wearing a white helmet and grey clothes. He is standing on the grey pole with his left hand on the red hook and his right hand holding tools. There are many wires in front of him and behind him. To his right is a black power transformer and a white wire. To his left is a black insulator. Below him is a black insulator and a wire. The sky is white in the background.", - "id": 30727 - }, - { - "image_path": "G:\\images\\combined\\004915_jpg.rf.630539b1796466340fa504a7d9461eb1.jpg", - "response": "The image shows a group of people standing on a construction site. They are all wearing hard hats, and some of them are wearing red ones. There is a man in the center who is wearing a white shirt and a red hard hat. Another man is wearing a blue shirt and a red hard hat. The people are standing around and talking. There is a pile of wood in the foreground on the left side of the image. In the background, there is a building under construction with scaffolding around it. There is also a yellow crane in the background.", - "id": 30728 - }, - { - "image_path": "G:\\images\\combined\\004916_jpg.rf.8f2f151e11d57c362f450e0880f0fbf6.jpg", - "response": "The image shows a group of workers on a ladder. They are working on a large metal structure that resembles a bridge or a walkway. The structure is made of metal poles and appears to be supported by some wooden pillars. The workers are wearing yellow helmets and uniforms. The sky is blue with some clouds.", - "id": 30729 - }, - { - "image_path": "G:\\images\\combined\\004919_jpg.rf.90581d7fcb583eb71e9054980bb9967d.jpg", - "response": "In the image there are two people crouched down looking at a white radiator. The man in front of the radiator is wearing a brown shirt and has black hair. The man behind the first man is wearing a blue shirt and has short dark hair. They are both looking at the radiator and the man in front has his left hand on the white radiator while his right hand is holding a red and grey box. There are two pipes coming out of the top of the radiator.", - "id": 30730 - }, - { - "image_path": "G:\\images\\combined\\004920_jpg.rf.d6a79cb02bb08f9fc984865c233edd96.jpg", - "response": "A group of men in business suits stand in a construction site. They are looking at a large pit in the ground. There is a pile of bricks to the left of the pit. The men are standing on dirt. In the background there is a body of water.", - "id": 30731 - }, - { - "image_path": "G:\\images\\combined\\004921_jpg.rf.70b26d9bd5c480b2cb516cc6c77617fd.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing winter coats and some of them are wearing hard hats. In the background, there are a few buildings under construction and a few cars parked nearby. The sky is blue and there are a few clouds. In the middle of the construction site, there is a bulldozer working.", - "id": 30732 - }, - { - "image_path": "G:\\images\\combined\\004922_jpg.rf.c1584f9239bacfeeaaab9b6b42121e7a.jpg", - "response": "A group of workers in grey jumpsuits and blue safety helmets are up on a ladder, working on a power line. One of the workers is holding a camera and appears to be filming the others. They are wearing safety gear and are up against a tall building.", - "id": 30733 - }, - { - "image_path": "G:\\images\\combined\\004923_jpg.rf.b44dce750d08c1e15620842c53716f15.jpg", - "response": "A construction site with several men working on it. There are several pieces of wood and steel rods scattered around the area. In the background, there are mountains and a white sky.", - "id": 30734 - }, - { - "image_path": "G:\\images\\combined\\004924_jpg.rf.5002cfd8afb225a6c63b624166e5bcb6.jpg", - "response": "a group of people walking in front of a building that is being demolished", - "id": 30735 - }, - { - "image_path": "G:\\images\\combined\\004925_jpg.rf.396b8bb08d98ffef65698c87cc29410d.jpg", - "response": "In the image there are two men standing on a platform. Both men are wearing work clothes and safety gear which includes hard hats, reflective vests, and gloves. The man on the left is pointing towards the top of a white and blue structure. The man on the right is looking at the camera.", - "id": 30736 - }, - { - "image_path": "G:\\images\\combined\\004928_jpg.rf.a7d187103ef6302c540087f263b832a1.jpg", - "response": "A group of people working on a construction site.", - "id": 30737 - }, - { - "image_path": "G:\\images\\combined\\004929_jpg.rf.d3655f4e7f0667054c30127cd81e480d.jpg", - "response": "A couple of men are working on power lines.", - "id": 30738 - }, - { - "image_path": "G:\\images\\combined\\004930_jpg.rf.7de2b8186d500af4550e3526f94adb9d.jpg", - "response": "In the image there are two workers in a factory. They are both wearing yellow safety vests and helmets. One worker is on the left and is bending over to look at a blue and silver machine. The other worker is on the right and is looking at a red and white machine. There are several pipes and cables in the scene. One worker is also holding a helmet in their left hand.", - "id": 30739 - }, - { - "image_path": "G:\\images\\combined\\004931_jpg.rf.e42fb13193404db4ebe40e5dfbb869bb.jpg", - "response": "The image shows two workers from the left who are using a pickaxe to cut a tree. The tree is covered with white frost. The workers are in a mountainous area with snow on the ground. They are both dressed in blue work clothes and yellow helmets.", - "id": 30740 - }, - { - "image_path": "G:\\images\\combined\\004932_jpg.rf.ff40905f09fa1be41f41f9f1e2ad281c.jpg", - "response": "In the image there are several construction workers working on a house. They are digging a hole in the ground and one man is using a tool to dig. The house has a white exterior and is in the process of being renovated. The workers are wearing hard hats and there is a yellow one, a red one, and a blue one. The date of the picture is 2013/04/13 and it was taken at 05:12.", - "id": 30741 - }, - { - "image_path": "G:\\images\\combined\\004935_jpg.rf.6fd3c4bef2775658fc8db24cca1fc43c.jpg", - "response": "The image shows two workers wearing yellow and red helmets who are walking away from the camera. They are carrying a piece of equipment on a trolley, and there is a building in the background. The ground is covered with a green net, and there are several lines on the ground.", - "id": 30742 - }, - { - "image_path": "G:\\images\\combined\\004936_jpg.rf.cd6f622eb5cfbc746d0272d9a2d31ec2.jpg", - "response": "In the image there are two workers wearing green and yellow hard hats. They are building a round structure made of metal rods. The sky is blue and there are a few clouds.", - "id": 30743 - }, - { - "image_path": "G:\\images\\combined\\004937_jpg.rf.355a7df44edf58e24a65ecc82d4d1c20.jpg", - "response": "The image shows a construction site in a city. Several workers are working on a large construction project, building a new road. The workers are wearing yellow hats and uniforms. The city has many tall buildings around the construction site. A part of a billboard advertising a car is also visible.", - "id": 30744 - }, - { - "image_path": "G:\\images\\combined\\004938_jpg.rf.4ff4967b65d453a57e8599109c2383f3.jpg", - "response": "A group of men in grey and yellow uniforms and white helmets are working on power lines. They are standing on ladders and tools are scattered around them.", - "id": 30745 - }, - { - "image_path": "G:\\images\\combined\\004939_jpg.rf.31b0fa6e20076038d2c010a935822422.jpg", - "response": "A pair of workers in yellow suits and orange safety gear work on a large metal box on a pole.", - "id": 30746 - }, - { - "image_path": "G:\\images\\combined\\00493f6c61b373d3.jpg", - "response": "A red car with the license plate P404 EUJ is parked on the grass.", - "id": 30747 - }, - { - "image_path": "G:\\images\\combined\\004940_jpg.rf.6764da3754f8a5c12dce35de43845be7.jpg", - "response": "In the image two workers are talking at a construction site. They are both wearing yellow and orange safety vests and yellow helmets. They are walking on a dusty road in the construction site. In the background a digger is working and throwing earth.", - "id": 30748 - }, - { - "image_path": "G:\\images\\combined\\004941_jpg.rf.fe3a10979caca6b45361b8a483e5dc31.jpg", - "response": "A large group of workers are working on a construction site. They are wearing yellow helmets and are working on a steel grid. Some of them are sitting on the grid while others are standing. There are also a few people walking around the site.", - "id": 30749 - }, - { - "image_path": "G:\\images\\combined\\004942_jpg.rf.0ce9ef778e29a30770a338d9bc2fb924.jpg", - "response": " Construction workers(544,486),(609,689)(499,678),(577,836) are seen at the site of the new high school in Hefei, Anhui province, China.", - "id": 30750 - }, - { - "image_path": "G:\\images\\combined\\004943_jpg.rf.7387167f106f8c53ef352405a6e2359a.jpg", - "response": "A group of people sitting around a table.", - "id": 30751 - }, - { - "image_path": "G:\\images\\combined\\004944_jpg.rf.a6c2c3390e9c69c9c01f36c0eef12959.jpg", - "response": "a group of people wearing hard hats", - "id": 30752 - }, - { - "image_path": "G:\\images\\combined\\004945_jpg.rf.10eaea30ac2c1e5344044d3a1a91fc9b.jpg", - "response": "A group of four construction workers are sitting on a pile of rubble. They are all wearing hard hats and work clothes. One worker is holding a helmet in his hand. The ground around them is filled with concrete rubble and debris.", - "id": 30753 - }, - { - "image_path": "G:\\images\\combined\\004946_jpg.rf.1ce0b275b9f6efec7ee0654208b98bc1.jpg", - "response": "A worker wipes sweat from his forehead.", - "id": 30754 - }, - { - "image_path": "G:\\images\\combined\\004947_jpg.rf.fec4c45cd9fa1c2c4552c56de5a92523.jpg", - "response": "The image shows two men in a field, one wearing a green camouflage shirt and a yellow hard hat and the other wearing a red hard hat. They are working together to fix an electrical component in the field.", - "id": 30755 - }, - { - "image_path": "G:\\images\\combined\\004948_jpg.rf.73ebca60ad8b1637fbc7ed70fe4eda60.jpg", - "response": " An electrician(215,279),(995,997) working on a fuse box", - "id": 30756 - }, - { - "image_path": "G:\\images\\combined\\004949_jpg.rf.ca31068a889ab692f032d09f871a6626.jpg", - "response": "A worker in a red jumpsuit and yellow hard hat stands next to an oil well. The worker is checking the pressure gauge on a pipe. In the background, there is an oil derrick. The sky is orange and there are a few clouds. There is a city visible in the far distance.", - "id": 30757 - }, - { - "image_path": "G:\\images\\combined\\004950_jpg.rf.09aa0ecb30a5a883d294ed95f842729e.jpg", - "response": "A man in blue coveralls and a blue hard hat stands in front of a red and white ship hull that is partially painted. The ship is on a platform and there is a red light shining on the hull. The man is looking up at the ship.", - "id": 30758 - }, - { - "image_path": "G:\\images\\combined\\004951_jpg.rf.bb29b28b6c4582ef32916dac040e26b8.jpg", - "response": "A group of people are standing around a man who is on a ladder working on an electrical box. The electrical box is grey and is located in the middle of a lush green forest. The man on the ladder is wearing a yellow helmet and a yellow safety vest. There is another man wearing a yellow helmet and vest standing behind him. Another man is standing to the left of the man on the ladder and is wearing a blue helmet and vest. To the right of this man is a person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants. Another person is standing behind this person wearing a white shirt and tan pants.", - "id": 30759 - }, - { - "image_path": "G:\\images\\combined\\004952_jpg.rf.729f0ac0fff02b865d0c6ab7dc839e14.jpg", - "response": "The image shows a group of people standing in a room under construction. They are all wearing yellow hard hats, and some of them are holding a blueprint. The room has a ladder on the right side and a wooden table in the middle. The walls are bare, and the floor appears to be unfinished.", - "id": 30760 - }, - { - "image_path": "G:\\images\\combined\\004953_jpg.rf.cc70df9f8effd264c902dc1d435f0015.jpg", - "response": " Workers(496,254),(935,996)(4,266),(581,996) are working at night in a darkened room.", - "id": 30761 - }, - { - "image_path": "G:\\images\\combined\\004954_jpg.rf.50085874f4d14dcad2e0b9512ef9ed63.jpg", - "response": "a couple of people that are in a cave", - "id": 30762 - }, - { - "image_path": "G:\\images\\combined\\004955_jpg.rf.b6dc518010e40231d28df52cd53679d4.jpg", - "response": "The image shows two men working on a power line in a snowy field. They are wearing hard hats and one of them is holding a tool. The sky is grey and overcast. In the background, there is a residential area with a few houses.", - "id": 30763 - }, - { - "image_path": "G:\\images\\combined\\004956_jpg.rf.3ad9900be75579b2eaab2ec669f67b1a.jpg", - "response": "Men in white shirts and red hats are standing in a construction site.", - "id": 30764 - }, - { - "image_path": "G:\\images\\combined\\004957_jpg.rf.50d60300229d51d3b51fa9a66bcd07ba.jpg", - "response": "Two men in a mine wearing hard hats and blue coveralls.", - "id": 30765 - }, - { - "image_path": "G:\\images\\combined\\004959_jpg.rf.fb5a6c0f9b26543b0b65ede33c2c43ea.jpg", - "response": "a group of people sitting around a table", - "id": 30766 - }, - { - "image_path": "G:\\images\\combined\\004960_jpg.rf.a719c1b57c3cb9886d65c3fa14ef277a.jpg", - "response": "A construction worker in a yellow hard hat and camouflage shirt stands in front of a sign.", - "id": 30767 - }, - { - "image_path": "G:\\images\\combined\\004963_jpg.rf.e8ae319aefb97b2eb15fb30442e81b13.jpg", - "response": "In the picture there are two workers wearing blue work clothes and red hats. They are in a workshop, in front of them is a brown wooden beam, and next to it are many other wooden beams of the same size, but in different positions. Some wooden blocks are also placed on the ground and some are on a yellow shelf.", - "id": 30768 - }, - { - "image_path": "G:\\images\\combined\\004964_jpg.rf.33add841dbde0c037717a0e13d5d8cf0.jpg", - "response": "A group of workers in yellow and orange shirts and blue pants are working on a pile of rubble. They are wearing hard hats and some have their sleeves rolled up. In the background there are a few tall buildings.", - "id": 30769 - }, - { - "image_path": "G:\\images\\combined\\004965_jpg.rf.61e832968f679fe0c35bc1794328a86f.jpg", - "response": "In this image a worker is cutting steel with a saw at a construction site. The sparks from the saw are flying all around. The worker is squatting down and the saw is on the right side of the image. In the background there is a building.", - "id": 30770 - }, - { - "image_path": "G:\\images\\combined\\004966_jpg.rf.980d832fcc391a4c5a6f189d0a4e8b7a.jpg", - "response": "A group of men standing in front of a yellow and white construction site.", - "id": 30771 - }, - { - "image_path": "G:\\images\\combined\\004967_jpg.rf.c609cad555035746e7735a6f5e2ac1df.jpg", - "response": "The image shows a group of men working on a large spool of black\u7535\u7f06. They are in a field with grass and a few trees.", - "id": 30772 - }, - { - "image_path": "G:\\images\\combined\\004968_jpg.rf.cb3e8ef9695be920e9646a00ec4b02d3.jpg", - "response": "A group of men in red jackets are working together to pull a rope. They are all wearing hard hats and some are wearing backpacks. They are in the snow and in front of them is a tower.", - "id": 30773 - }, - { - "image_path": "G:\\images\\combined\\004969_jpg.rf.08a9ac12c8ce5f47c4472665f67f9be9.jpg", - "response": "A man is harnessed up and working on a power line with a fire burning next to him.", - "id": 30774 - }, - { - "image_path": "G:\\images\\combined\\004970_jpg.rf.5dfe606ab311e7700dc998b8214dd1bc.jpg", - "response": "In the image, three workers are seen wearing blue helmets and raincoats. They are working on an outdoor construction site with a mountain in the background. The two men on the right are pulling on a rope, and one of them is holding a stick. The man in the middle is looking up at the rope.", - "id": 30775 - }, - { - "image_path": "G:\\images\\combined\\004971_jpg.rf.9056602fb3e54f446f66e267425c7fff.jpg", - "response": "The image shows two Chinese workers sitting on the floor of a large\u96a7\u9053. They are both wearing orange work uniforms and white helmets. The man on the left is sitting on the left side of the tunnel, he is wearing grey gloves and has a white beard. The man on the right is sitting on the right side of the tunnel, he is wearing yellow gloves. In front of them is a large rock, and to the right of the rock is a pipe. Behind the workers, on the right wall of the tunnel, is a large pipe.", - "id": 30776 - }, - { - "image_path": "G:\\images\\combined\\004972_jpg.rf.5058ae52783d08ee423cb136eda6ff50.jpg", - "response": "A man sitting on a block of cement in front of a building under construction.", - "id": 30777 - }, - { - "image_path": "G:\\images\\combined\\004973_jpg.rf.d4145286980fcca8b915f9d2b55e431f.jpg", - "response": "A large pipe is being laid in the ground by a construction crew.", - "id": 30778 - }, - { - "image_path": "G:\\images\\combined\\004974_jpg.rf.ef7424532195fad757cc4e1a74ae6431.jpg", - "response": "A construction worker in a red jumpsuit and yellow hard hat is using a hose to drain water from a hole in the ground. Another worker is using a backhoe to dig deeper into the hole. A third worker is standing at the edge of the hole, arms raised, as if directing the work.", - "id": 30779 - }, - { - "image_path": "G:\\images\\combined\\004975_jpg.rf.27219c926beb432511917316802aa131.jpg", - "response": "The picture shows three workers in the right side of the image, all of them are wearing red hats. In the background, there are four-story buildings under construction. In the foreground, a yellow tractor-like machine is in the middle of construction site.", - "id": 30780 - }, - { - "image_path": "G:\\images\\combined\\004976_jpg.rf.8e58318917de6fe9ad2a40dee6bca202.jpg", - "response": "The image shows four people walking in front of a building under construction. The man on the far left is wearing a black shirt and black shorts. The second person from the left is wearing a brown shirt and khaki pants. The third person, a woman, is wearing a navy blue shirt and black pants. The fourth person, also a woman, is wearing a black and white shirt with white pants. In the background, a yellow dump truck is parked near the building.", - "id": 30781 - }, - { - "image_path": "G:\\images\\combined\\004977_jpg.rf.ad9f4c7623ee3bff4f9977454742c5f1.jpg", - "response": "In the image two men are working on power lines in the snow. They are wearing helmets and coats to protect themselves from the cold and the snow. The men are hanging from the power lines and working on the wires.", - "id": 30782 - }, - { - "image_path": "G:\\images\\combined\\004979_jpg.rf.0bf9bba84b940893486d887e6d3b7edb.jpg", - "response": "A man pushing a cart with a box on it.", - "id": 30783 - }, - { - "image_path": "G:\\images\\combined\\004980443377ed4c.jpg", - "response": "On a green and white checkered tablecloth, there are two bottles of beer. One is labeled Bortso and the other is labeled Gorkhi. Both bottles have blue labels.", - "id": 30784 - }, - { - "image_path": "G:\\images\\combined\\004980_jpg.rf.05c360fc6c263d95474f418ddcbafafb.jpg", - "response": "A worker in a factory in Yangon, Myanmar.", - "id": 30785 - }, - { - "image_path": "G:\\images\\combined\\004982_jpg.rf.6748efc60e513fdaa9ee9d2509500c64.jpg", - "response": "A construction worker in an orange uniform, grey gloves and a yellow hard hat is using a jackhammer to break up rock.", - "id": 30786 - }, - { - "image_path": "G:\\images\\combined\\004983_jpg.rf.2c5542ff7dacb2219810d5672b076a7c.jpg", - "response": "A group of men working on power lines with a large crane.", - "id": 30787 - }, - { - "image_path": "G:\\images\\combined\\004984_jpg.rf.3b7660642d7f1c4d4d1ff5eebe43ba1e.jpg", - "response": "A construction worker in a yellow vest and blue hard hat is pointing and talking to another construction worker in a red hard hat who is sitting to the left of the first worker. They are both standing in front of a building that appears to be under construction.", - "id": 30788 - }, - { - "image_path": "G:\\images\\combined\\004985_jpg.rf.111a399ee7f330352acf5f531544ff75.jpg", - "response": "A group of men in white shirts and construction hats stand on a construction site. Some of them are pointing towards the left. In the background, a cloudy sky can be seen.", - "id": 30789 - }, - { - "image_path": "G:\\images\\combined\\004986_jpg.rf.d0bfc65300dac117a92d9d8c397c3c47.jpg", - "response": "In the image, a worker is suspended from a bucket truck and is working on a power line. The worker is wearing a yellow safety vest and is focused on their task. The sky is a clear blue and the sun is shining.", - "id": 30790 - }, - { - "image_path": "G:\\images\\combined\\004987_jpg.rf.fc9ae6a1f11d8e23a39f2472f0173bed.jpg", - "response": "A construction worker is using a hose to pump concrete onto a steel grid.", - "id": 30791 - }, - { - "image_path": "G:\\images\\combined\\004988_jpg.rf.38153aadd7746d231105f18fcb89b758.jpg", - "response": "A man in a green shirt and red hat is holding a piece of paper and writing on it while standing next to a brick wall. Another man in a white shirt is standing behind him. They are both wearing ties. In the background, there is a building under construction with scaffolding.", - "id": 30792 - }, - { - "image_path": "G:\\images\\combined\\004989_jpg.rf.cc31cb7331bc21af39dd0bd4ae2f2d04.jpg", - "response": "A man in a hard hat standing in a wooden framed house structure.", - "id": 30793 - }, - { - "image_path": "G:\\images\\combined\\00498_jpg.rf.112b21245ed43ef8268231dcec850991.jpg", - "response": "a group of people standing in a factory", - "id": 30794 - }, - { - "image_path": "G:\\images\\combined\\00498_jpg.rf.b38b7aab983e70096d7065c2e2e0d124.jpg", - "response": "A group of people standing in a factory.", - "id": 30795 - }, - { - "image_path": "G:\\images\\combined\\004990_jpg.rf.1970497805714cc12831d9a354c23bdf.jpg", - "response": "A group of workers are working on a construction site.", - "id": 30796 - }, - { - "image_path": "G:\\images\\combined\\004991_jpg.rf.dbf11c8bfeb7ff0a4dd6beb944e4afec.jpg", - "response": "A man in a black coat and red hard hat is holding a clipboard and talking to a woman in a blue coat and red hard hat. They are standing in a field with a man operating a piece of equipment with a large drill bit. Another man is standing behind them watching.", - "id": 30797 - }, - { - "image_path": "G:\\images\\combined\\004992_jpg.rf.5a3a92d558a55c479fc08482a16531d8.jpg", - "response": "A worker in a white jacket and yellow hard hat is standing in a dark room with a flashlight. They are looking at a pipe with a hose connected to it. The room has multiple pipes and hoses scattered around and a black liquid on the floor.", - "id": 30798 - }, - { - "image_path": "G:\\images\\combined\\004993_jpg.rf.0b400f125f915cd3f0b4d35fcae492ff.jpg", - "response": "A couple of men standing on a construction site.", - "id": 30799 - }, - { - "image_path": "G:\\images\\combined\\004994_jpg.rf.f141c095b40a7a152d1b41ebc0553f3a.jpg", - "response": "In the image there are two workers in a construction site, both of them are wearing red helmets and holding a laptop. The laptop is open and one of the workers is typing on it. They are both looking at the laptop screen while sitting on a construction platform. The laptop is open on the left worker's lap and the right worker is holding it. The background is full of blue pipes and the workers are the main focus of the image.", - "id": 30800 - }, - { - "image_path": "G:\\images\\combined\\004995_jpg.rf.47a20b218420f9e71b731682981a8003.jpg", - "response": "A group of three people standing in front of a large factory.", - "id": 30801 - }, - { - "image_path": "G:\\images\\combined\\004996_jpg.rf.6fdb15817c11e712b2f6932ce759b2ac.jpg", - "response": "A man and a woman are standing in a kitchen. The woman is holding a cell phone and appears to be showing the man something on the screen. The man is looking at a spot on the wall where there is a chip in the paint.", - "id": 30802 - }, - { - "image_path": "G:\\images\\combined\\004997_jpg.rf.f2b62117b0da571f125482919ba34d24.jpg", - "response": "A man wearing a white hard hat and carrying a brick on his shoulder.", - "id": 30803 - }, - { - "image_path": "G:\\images\\combined\\004998_jpg.rf.40155956542f8e3c0bc59a0d4e7082d0.jpg", - "response": "a group of men standing around a plot of land", - "id": 30804 - }, - { - "image_path": "G:\\images\\combined\\004999_jpg.rf.68bf4481f904361223d7e7e5065e48d7.jpg", - "response": "A group of three workers wearing yellow hard hats are working on a bridge. They are all crouched down and appear to be focused on their task. There is a red crane visible in the background.", - "id": 30805 - }, - { - "image_path": "G:\\images\\combined\\0049c1a1fe79f581.jpg", - "response": " foil(222,345),(824,995) on the grill", - "id": 30806 - }, - { - "image_path": "G:\\images\\combined\\004a50da6f30492e.jpg", - "response": "A poster on a window for a musician named LinQ Yim.", - "id": 30807 - }, - { - "image_path": "G:\\images\\combined\\004a6f5dd8925a23.jpg", - "response": "a man wearing a black shirt with a white skull on it", - "id": 30808 - }, - { - "image_path": "G:\\images\\combined\\004abd1e49165b1c.jpg", - "response": "A red Opel Kadett C 3-door parked on the side of the street.", - "id": 30809 - }, - { - "image_path": "G:\\images\\combined\\004b1e697e3ffdf9.jpg", - "response": "A blue and white bus is on the street.", - "id": 30810 - }, - { - "image_path": "G:\\images\\combined\\004b75d1299e653c.jpg", - "response": "A black and white police car with the word SHERIFF on the door.", - "id": 30811 - }, - { - "image_path": "G:\\images\\combined\\004c0c8daa5eebda.jpg", - "response": "A book with a green cover that says The Original Preppy Cookbook on it.", - "id": 30812 - }, - { - "image_path": "G:\\images\\combined\\004c1766c10578cd.jpg", - "response": "A baseball player in a red shirt and white pants holding a baseball and a catcher's mitt.", - "id": 30813 - }, - { - "image_path": "G:\\images\\combined\\004c316ee7c0a3fc.jpg", - "response": "a man in a red shirt holding a surfboard", - "id": 30814 - }, - { - "image_path": "G:\\images\\combined\\004c5108977ac0d8.jpg", - "response": "Detail of Portrait of Johann Friedrich Schenider (1686-1743) by unknown artist", - "id": 30815 - }, - { - "image_path": "G:\\images\\combined\\004cada0dea66c27.jpg", - "response": "A vintage advertisement for White Rock soap.", - "id": 30816 - }, - { - "image_path": "G:\\images\\combined\\004d0744b999e29e.jpg", - "response": "A woman is laying on the floor next to two LG robots. The one on the left is black and has the word LG on the top. The one on the right is red and has the word LG on the top as well. The woman is smiling and has her hand near her ear.", - "id": 30817 - }, - { - "image_path": "G:\\images\\combined\\004de6286016d7fa.jpg", - "response": "A poster for Spin Doctors concert in Spain in 2013.", - "id": 30818 - }, - { - "image_path": "G:\\images\\combined\\004e59f30392a1cc.jpg", - "response": "A man wearing a black shirt with the words Game Design Expo on the back of it.", - "id": 30819 - }, - { - "image_path": "G:\\images\\combined\\004e627c688b6000.jpg", - "response": "A building with graffiti on it and a bush in front of it.", - "id": 30820 - }, - { - "image_path": "G:\\images\\combined\\004ee60e0f1dc6f2.jpg", - "response": "A young boy in a red shirt and grey pants is pitching a baseball on a baseball field.", - "id": 30821 - }, - { - "image_path": "G:\\images\\combined\\004f1ec7d27bb12d.jpg", - "response": "A group of men standing around a large stack of boxes.", - "id": 30822 - }, - { - "image_path": "G:\\images\\combined\\004f345ce26e9d2e.jpg", - "response": "A red convertible car with the top down.", - "id": 30823 - }, - { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.1dbc1e3c87fb3ffe5c738782ac3107bd.jpg", - "response": "The photo shows a woman in a mask holding two photos in front of her face. She is wearing a hat and a leopard print top. She is speaking into a microphone. In one of the photos, there is a man in a white shirt and black pants. In the other photo, there is a sink full of dirty dishes. There are several people in the background, some holding signs. The woman is standing in front of a yellow wall with Chinese writing on it.", - "id": 30824 - }, - { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.c9384350352989339f6ae3f8a4503243.jpg", - "response": "A woman wearing a black and white hat and a leopard print scarf is holding two photos. She is wearing a mask and a blue hat. She is holding a microphone in her right hand. In the background there is a banner with Chinese characters. On the right side of the banner, there is a picture of a toilet.", - "id": 30825 - }, - { - "image_path": "G:\\images\\combined\\004_1024_jpeg_jpg.rf.ce32224fcc15c7aad77b1952a94c1569.jpg", - "response": "A woman wearing a hat and a mask is holding two posters. She is standing in front of a microphone.", - "id": 30826 - }, - { - "image_path": "G:\\images\\combined\\005000_jpg.rf.0662110d19148c638132b057dd9c41a5.jpg", - "response": "A group of people in suits and hard hats stand in a circle in front of a building under construction.", - "id": 30827 - }, - { - "image_path": "G:\\images\\combined\\005001_jpg.rf.a92fc1deea7c7d28ecb3b3cfa04dfe6e.jpg", - "response": "A woman wearing a yellow hard hat and holding a rolled-up blueprint is standing in a room with a man wearing a red hard hat in the background. The woman is wearing a yellow hard hat, a red bracelet, and a red and white checkered shirt. She is holding a rolled-up blueprint in her left hand. The man is wearing a white shirt and jeans. He is wearing a red hard hat and has a tool belt around his waist. There is a brick wall in the background with a wooden support beam running through it. There is a pile of construction materials on the floor in front of the woman.", - "id": 30828 - }, - { - "image_path": "G:\\images\\combined\\005002_jpg.rf.ed0003a00fcbf5e7a64216026e16588a.jpg", - "response": "A man sitting on a ladder and on the floor with a drill.", - "id": 30829 - }, - { - "image_path": "G:\\images\\combined\\005004_jpg.rf.d876e26f2c868f8411360883c090a91c.jpg", - "response": "The image shows a dry dock with a large ship being worked on by several workers. The ship is a reddish-brown color and is in the process of being painted. There are three cranes visible in the background, two of which are in the process of lifting something. The third crane is on the left side of the image. There are two ladders leading up to the dock, one on the left side of the image and one on the right side. The workers are wearing hard hats and are visible at various points along the dock.", - "id": 30830 - }, - { - "image_path": "G:\\images\\combined\\005005_jpg.rf.158177d045c8a8fefe3555e30c7f5f90.jpg", - "response": "A man is working on a construction site.", - "id": 30831 - }, - { - "image_path": "G:\\images\\combined\\005006_jpg.rf.fea8249288260866b3f744ece4bf222b.jpg", - "response": "A group of people standing around a computer screen.", - "id": 30832 - }, - { - "image_path": "G:\\images\\combined\\005007_jpg.rf.6035e7450e7a471feb7c4c1152697b49.jpg", - "response": "A worker in a white shirt and a white helmet(328,198),(438,328) is working on a construction site.", - "id": 30833 - }, - { - "image_path": "G:\\images\\combined\\005008_jpg.rf.9378d311b0e685a74039c372b45b4aa8.jpg", - "response": "A construction worker is working on a building site, he is standing on a ladder and is wearing a blue hard hat. He is working on a structure made of scaffolding and steel.", - "id": 30834 - }, - { - "image_path": "G:\\images\\combined\\005009_jpg.rf.b0538e7c5553cab354d5f96d3952f106.jpg", - "response": "A worker in a red uniform and hard hat is standing in the street holding a gas tank. He is in front of a building and there are people walking around him.", - "id": 30835 - }, - { - "image_path": "G:\\images\\combined\\005010_jpg.rf.bd72d43299aec954b08b5eacbb509f65.jpg", - "response": "A group of six men in hard hats are standing in a construction site. One man is pointing to the ceiling. The man on the far left is wearing a red hard hat and has his arms crossed. The man on the far right is wearing a white shirt and a red hard hat. The man in the center is wearing a green and black striped shirt. The man second from the left is wearing a striped shirt and a white hard hat. The man third from the right is wearing a white shirt and a blue hard hat. The man second from the right is wearing a white shirt and a red hard hat.", - "id": 30836 - }, - { - "image_path": "G:\\images\\combined\\005011_jpg.rf.977c1bf328d18d179794185debca1cd8.jpg", - "response": "A group of three men working on a brick structure while wearing yellow helmets(578,548),(733,806)(645,178),(827,490)(51,302),(295,641).", - "id": 30837 - }, - { - "image_path": "G:\\images\\combined\\005012_jpg.rf.574f07676e11312fa5ac385ba3fdb352.jpg", - "response": "A couple of workers are operating a machine.", - "id": 30838 - }, - { - "image_path": "G:\\images\\combined\\005013_jpg.rf.ee957f9991eba9961748d8591769ef97.jpg", - "response": " Two men(137,166),(405,787)(461,227),(809,943) in hard hats(212,165),(324,280)(501,226),(631,360) and camouflage(139,270),(404,763) crouch down to examine debris(4,426),(999,997) on the ground", - "id": 30839 - }, - { - "image_path": "G:\\images\\combined\\005015_jpg.rf.f09bb55cb9fbc5f9d4ecfaa96c027092.jpg", - "response": "A group of workers are working on a construction site.", - "id": 30840 - }, - { - "image_path": "G:\\images\\combined\\005016_jpg.rf.4d3d8fcbed705b4c04bddc0da1c278d1.jpg", - "response": "A group of five men wearing mining gear stand in a mine tunnel. They are all dirty and have helmets on.", - "id": 30841 - }, - { - "image_path": "G:\\images\\combined\\005017_jpg.rf.12e0e1d335a25d108db8b365418354ea.jpg", - "response": "A worker in a grey shirt and blue hat is on a construction site.", - "id": 30842 - }, - { - "image_path": "G:\\images\\combined\\005018_jpg.rf.9d6d45cea90744bcc5dacf7ffdd295d2.jpg", - "response": "A pair of workers wearing hard hats stand on a platform.", - "id": 30843 - }, - { - "image_path": "G:\\images\\combined\\005019_jpg.rf.492682cd43a8b4ddd90b16f9e0a8826f.jpg", - "response": "This is a picture of a group of people. The man in front is wearing a black suit and a tie. He is holding a black pen. Next to him on the left is a man in a white shirt and black vest. To the right of him is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a yellow hard hat. To the right of the man in the yellow hard hat is a man in a red hard hat. Behind the man in the red hard hat is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a white shirt and black pants. Behind the man in the white shirt and black pants is a man in a white shirt and black pants. To the right of the man in the white shirt and black pants is a man in a black shirt and black pants. To the right of the man in the black shirt and black pants is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie. To the right of the man in the suit and tie is a man in a suit and tie.", - "id": 30844 - }, - { - "image_path": "G:\\images\\combined\\00501_jpg.rf.7082d8b4202e37fe0fe805d9f6d20a49.jpg", - "response": "A group of three men looking at a rolled up piece of blueprints in front of a body of water", - "id": 30845 - }, - { - "image_path": "G:\\images\\combined\\005021_jpg.rf.d0060c1ef4000d14d1eb5726c173a3f3.jpg", - "response": "A man in a white shirt and blue hat is standing in a bucket of a white truck. He is wearing a grey suit and an orange and white safety vest. The man is holding a grey and orange tool in his right hand. He is looking down at the ground. There are two power lines behind the man. The sky is blue with clouds. There is a white truck to the right of the man.", - "id": 30846 - }, - { - "image_path": "G:\\images\\combined\\005022_jpg.rf.ce7c454467d7f9e0d540beeb35fce8e6.jpg", - "response": "A couple of men in a field with one of them pointing at something.", - "id": 30847 - }, - { - "image_path": "G:\\images\\combined\\005024_jpg.rf.4778ae37dff9387ac890beceebe57487.jpg", - "response": " A worker(443,528),(708,997) stands in front of a crane(1,4),(468,997) at a construction site in China.", - "id": 30848 - }, - { - "image_path": "G:\\images\\combined\\005025_jpg.rf.898cdc02a7fd53c85bef1664bafe9823.jpg", - "response": "A couple of men working on a cement wall.", - "id": 30849 - }, - { - "image_path": "G:\\images\\combined\\005026_jpg.rf.a6a01b0601363c2006049f3471c8edb5.jpg", - "response": "A group of rescue workers walking through a flooded alley.", - "id": 30850 - }, - { - "image_path": "G:\\images\\combined\\005028_jpg.rf.ea0164cff6afff960bb09578a3bad0e6.jpg", - "response": "Men(314,13),(497,873)(382,118),(641,996) standing in front of a construction site", - "id": 30851 - }, - { - "image_path": "G:\\images\\combined\\005029_jpg.rf.2621ce3bee7096ebf8a89f7f261dfde5.jpg", - "response": "The image shows a construction site in China. There are several buildings under construction, with the one on the left being the smallest and the one on the right being the largest. In the middle, there is a red sign that says \"Xiangtan Government Office Building\". There are also several people working on the site, with some standing on the wooden framework of the buildings and others near the red sign. Some of the people are wearing hard hats.", - "id": 30852 - }, - { - "image_path": "G:\\images\\combined\\005032_jpg.rf.4618eb4bb4fcb946edfbad3b6052900e.jpg", - "response": "In the image there is a man sitting on a large metal pile of rebar. The man is wearing a red hard hat, a green shirt, and grey pants. He is also wearing white gloves. He is using a tool with a green handle to work with the rebar. The rebar is wrapped in black wire. The man is in the middle of the pile of rebar and there is a yellow and white truck in the background on the left side of the image.", - "id": 30853 - }, - { - "image_path": "G:\\images\\combined\\005033_jpg.rf.c172b9e34c03dd9e834fd00437fcd2d6.jpg", - "response": "A group of people standing around a bus.", - "id": 30854 - }, - { - "image_path": "G:\\images\\combined\\005034_jpg.rf.4853ff323592222bc82b594c2ba2c035.jpg", - "response": "A group of three people standing in a warehouse.", - "id": 30855 - }, - { - "image_path": "G:\\images\\combined\\005035_jpg.rf.5cd88f409d10ea7f0ef8a5255bd22052.jpg", - "response": "A bridge with train tracks going across it.", - "id": 30856 - }, - { - "image_path": "G:\\images\\combined\\005036_jpg.rf.efdb94d5e474dbde631feb7b682d22e5.jpg", - "response": "A group of men standing in front of a pile of rubble.", - "id": 30857 - }, - { - "image_path": "G:\\images\\combined\\005037_jpg.rf.00355a34443a91a4cf56c9b894bf0224.jpg", - "response": "A group of workers inside a tunnel.", - "id": 30858 - }, - { - "image_path": "G:\\images\\combined\\005038_jpg.rf.bcc177feb570716019a08a17bd9c8f4f.jpg", - "response": "An electrician in a blue uniform and hard hat looking at a control panel with many wires and switches.", - "id": 30859 - }, - { - "image_path": "G:\\images\\combined\\005039_jpg.rf.813d7d505673851979ff69f444816df1.jpg", - "response": "a group of men standing around a construction site", - "id": 30860 - }, - { - "image_path": "G:\\images\\combined\\00503_jpg.rf.9dc548583ccbcc057b87340d621c0f2e.jpg", - "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", - "id": 30861 - }, - { - "image_path": "G:\\images\\combined\\00503_jpg.rf.b563b06667e3c3759a2b17381351b80f.jpg", - "response": "Two men in blue helmets and yellow vests standing on a construction site discussing building plans.", - "id": 30862 - }, - { - "image_path": "G:\\images\\combined\\005040_jpg.rf.5344775bef4daebcc7de1e7efe31c3d4.jpg", - "response": "A construction site with multiple workers.", - "id": 30863 - }, - { - "image_path": "G:\\images\\combined\\005042_jpg.rf.cbc4d0b74b784722823f5f0690fea384.jpg", - "response": "The image shows a man in a blue shirt and blue hat, wearing black boots, kneeling in a large pit filled with water. The man is using some kind of device with two hoses and a handle with two knobs on it, which he is holding above his head. There is a large pipe on the right side of the pit, and the man is leaning towards it. The background shows a wall on the left side of the pit and a wall on the right side of the pit, with only the top part visible.", - "id": 30864 - }, - { - "image_path": "G:\\images\\combined\\005043_jpg.rf.1578328150f66ff3affc470e60b494bb.jpg", - "response": "The image shows a city street scene with a few people and buildings. In the foreground, three men are carrying a ladder down the street. They are wearing blue uniforms and yellow hard hats. Another man is walking behind them. To the left of the scene, a person is walking in the opposite direction. The buildings on both sides of the street have air conditioners hanging from their windows.", - "id": 30865 - }, - { - "image_path": "G:\\images\\combined\\005044_jpg.rf.b76fb784ba054772ee776c5ed447a0ed.jpg", - "response": "A man and a woman wearing hard hats are standing on a construction site. They are standing on a red ladder. The woman is pointing towards the ceiling of the building. The man is holding a walkie talkie.", - "id": 30866 - }, - { - "image_path": "G:\\images\\combined\\005046_jpg.rf.95851205442dba7695fc3e1868dafc5a.jpg", - "response": " Two workers(417,363),(628,997)(559,368),(652,997) in a tunnel with metal bars(647,622),(997,820)", - "id": 30867 - }, - { - "image_path": "G:\\images\\combined\\005047_jpg.rf.270dcb6b065c545831d26f7a3ef1cb71.jpg", - "response": "A man and a woman wearing green safety helmets are looking at a tablet.", - "id": 30868 - }, - { - "image_path": "G:\\images\\combined\\005048_jpg.rf.d17d354aa70ce07babe6eabdf892f97c.jpg", - "response": "A group of men standing next to each other.", - "id": 30869 - }, - { - "image_path": "G:\\images\\combined\\005049_jpg.rf.3ca201934eb495d1941b233713880ebc.jpg", - "response": "An engineer in an orange uniform giving directions to two excavators.", - "id": 30870 - }, - { - "image_path": "G:\\images\\combined\\00504_jpg.rf.2781cbcc2a1db29ff9c548664cb7de51.jpg", - "response": "A group of men in yellow vests and hard hats are standing on a construction site. Some of the men are holding a white and black sign. There is a car parked to the left of the group and a building to the right. In the background, there is a white sky and some trees.", - "id": 30871 - }, - { - "image_path": "G:\\images\\combined\\00504_jpg.rf.de90e4d13102938eba575ee30831ebb8.jpg", - "response": "A group of men standing in front of a construction site.", - "id": 30872 - }, - { - "image_path": "G:\\images\\combined\\005050_jpg.rf.fb432f309c7a25acb22e8f3f947eac77.jpg", - "response": "A construction worker is on a ladder and is working on a large pipe.", - "id": 30873 - }, - { - "image_path": "G:\\images\\combined\\005051_jpg.rf.b760f03c528b5d87310483f0c0191616.jpg", - "response": "A group of three people working in a factory. They are standing in front of a large metal machine and are wearing hard hats and masks. There is smoke rising from somewhere in the factory and a pile of coal on the ground.", - "id": 30874 - }, - { - "image_path": "G:\\images\\combined\\005052_jpg.rf.f4c346e11907f377c9e8232f5baf0983.jpg", - "response": "A group of men in blue uniforms and hard hats are working on an electrical box. They are all hunched over and focused on the task at hand. One man is kneeling on the ground and reaching up to work on the electrical box. Another man is standing behind him, helping with the process. The third man is standing to the right of the other two, also helping with the work. They are all wearing different colored hard hats and their uniforms are a dark blue.", - "id": 30875 - }, - { - "image_path": "G:\\images\\combined\\005053_jpg.rf.b7e56b8d6bd948ba5a40d075c05f61f6.jpg", - "response": "A group of workers in blue uniforms and yellow hard hats are working on a large construction site. They are standing on a mesh of wire that is laid out on the ground. In the background, there are several large cranes working on the site.", - "id": 30876 - }, - { - "image_path": "G:\\images\\combined\\005054_jpg.rf.f360351a50b250aeea7e695a47d91513.jpg", - "response": "A man in a white uniform and blue helmet is suspended between two power lines while climbing a transmission tower. He is wearing a tool belt and has a tool in each hand. The sky is blue and cloudless.", - "id": 30877 - }, - { - "image_path": "G:\\images\\combined\\005055_jpg.rf.0419233b4748e259dc5c8dc4adabd9ab.jpg", - "response": "The image shows a group of workers wearing hard hats and safety vests working on a train track at night. They are using flashlights to illuminate the area and are focused on repairing a section of the track.", - "id": 30878 - }, - { - "image_path": "G:\\images\\combined\\005056_jpg.rf.e0de373f96d813ed4d75cc51b1237fa8.jpg", - "response": "An electrician wearing a white uniform and a red helmet is working on a power pole. He is holding onto a metal rail and has a tool belt around his waist. There is a yellow rag in the tool belt. He is wearing white gloves and has orange safety straps around his waist and legs. There are black electrical wires behind him and a grey power box to his left.", - "id": 30879 - }, - { - "image_path": "G:\\images\\combined\\005057_jpg.rf.d96ed4494b85966a55dd6c703f67104b.jpg", - "response": "A group of men in uniforms and hard hats are working on a bridge.", - "id": 30880 - }, - { - "image_path": "G:\\images\\combined\\005059_jpg.rf.280396c8cea15556395befe50b43b102.jpg", - "response": "a group of men standing inside a tunnel", - "id": 30881 - }, - { - "image_path": "G:\\images\\combined\\00505_jpg.rf.533b2d249371138c4ea02d5ec0d4c523.jpg", - "response": "A woman with a red helmet and a white dress is standing in front of a group of men. The men are also wearing red helmets. They are all wearing white. The woman is holding a white fan. They are standing in front of a construction site.", - "id": 30882 - }, - { - "image_path": "G:\\images\\combined\\005061_jpg.rf.2e0516ba572f2544956d34f14d80cb2f.jpg", - "response": "The photo shows Premier Li Keqiang visiting the construction site of the Hong Kong-Zhuhai-Macau Bridge in Zhuhai, south China's Guangdong Province, April 11, 2017. He was accompanied by Pan Yiyi, governor of Guangdong Province, and Hong Kong-Zhuhai-Macau Bridge Project Director Li Xinchuang. The premier was informed of the progress of the construction work and the safety measures being taken. He also talked with workers and staff about their work and living conditions.", - "id": 30883 - }, - { - "image_path": "G:\\images\\combined\\005062_jpg.rf.f84bb2e7fb58589654eca74d21b03a90.jpg", - "response": "A group of men working on a construction site.", - "id": 30884 - }, - { - "image_path": "G:\\images\\combined\\005063_jpg.rf.420ea3127578b788a411320ace7ecd9f.jpg", - "response": "The image shows a large battleship on a dry dock. The battleship is painted grey and gold and is docked in a large body of water. There are several people in the image, including one person walking in front of the battleship and another person wearing a hard hat. Some people are wearing uniforms and there are several pairs of shoes in the image. The battleship has many nooks and crannies and is surrounded by several other boats.", - "id": 30885 - }, - { - "image_path": "G:\\images\\combined\\005064_jpg.rf.32547212bbeecd2485fcd78d5c376895.jpg", - "response": "In the image two workers wearing yellow helmets are seen. They are wearing blue color overalls. One worker is seen carrying a glass material on his shoulder. Another worker is seen carrying a coiled up material on his shoulder. There are two electric poles in the background. One of the electric poles is made of metal and it is painted grey. Another electric pole is made of wood and it is painted brown. The sky is blue with clouds. There are two birds flying in the sky. One bird is flying towards the left side of the image and another bird is flying towards the top right side of the image.", - "id": 30886 - }, - { - "image_path": "G:\\images\\combined\\005065_jpg.rf.ad99bc292548ac63312fbb96db3e82c6.jpg", - "response": "a man(349,296),(619,996) in a mine", - "id": 30887 - }, - { - "image_path": "G:\\images\\combined\\005066_jpg.rf.2a7f2a06168d5e588e9b7a7e107c731a.jpg", - "response": "In the image there are three people standing in a field of dirt. They are all wearing hard hats. The person on the left is holding a rolled up blueprint.", - "id": 30888 - }, - { - "image_path": "G:\\images\\combined\\005067_jpg.rf.2ca444a08ea155c38b2b5697efbd32f2.jpg", - "response": "A group of men in suits and hard hats stand in a construction site.", - "id": 30889 - }, - { - "image_path": "G:\\images\\combined\\005068_jpg.rf.b220b64d7cdbee3d4b28bea89a9b4bd3.jpg", - "response": "A man in a blue shirt and blue hat working on power lines at night.", - "id": 30890 - }, - { - "image_path": "G:\\images\\combined\\005069_jpg.rf.0f01d3b46f2d5ecae66dfda00bd8f6be.jpg", - "response": "A man working on some power lines", - "id": 30891 - }, - { - "image_path": "G:\\images\\combined\\00506_jpg.rf.7c3966575bb94853eceb91569c66901b.jpg", - "response": "A group of workers walking on a bridge with a sign that says in Chinese \u65bd\u5de5\u91cd\u5730 \u9605\u4eba\u514d\u8fdb.", - "id": 30892 - }, - { - "image_path": "G:\\images\\combined\\00506_jpg.rf.848a7d637448985b3507cfa7944f3887.jpg", - "response": "A group of workers walking on a bridge.", - "id": 30893 - }, - { - "image_path": "G:\\images\\combined\\005071_jpg.rf.8d0996c026b32875ce5d59daec4e2234.jpg", - "response": "A group of men are gathered around a white board. One man is pointing at a map while the others are watching. In the background, there is a bridge and a car.", - "id": 30894 - }, - { - "image_path": "G:\\images\\combined\\005072_jpg.rf.4c48b9c26d82465cf1489d32ebc3096b.jpg", - "response": " Men(699,671),(912,890)(457,571),(631,769) carrying a large tire(637,697),(938,938) up a steep hill", - "id": 30895 - }, - { - "image_path": "G:\\images\\combined\\005073_jpg.rf.f038ac193a7cf5b6144b6faab7932f63.jpg", - "response": "A construction site with three workers visible. They are working on a scaffold.", - "id": 30896 - }, - { - "image_path": "G:\\images\\combined\\005074_jpg.rf.1a30a7a9501957fec30cda6463482b40.jpg", - "response": "A man in an orange hard hat is working on a piece of machinery. He is wearing a red shirt and has a tool belt around his waist. He is standing on a muddy patch and there is a drop of water on the end of a tool he is holding. There is a second man in the background, wearing a white shirt and a black jacket. He is also wearing a hard hat. In the background, there is a red object that looks like a triangle with a point.", - "id": 30897 - }, - { - "image_path": "G:\\images\\combined\\005075_jpg.rf.fd3ae6bf73072f530738d3c2c846708e.jpg", - "response": "A worker in a blue hard hat and grey winter jacket is holding a device with a screen in front of a large power station.", - "id": 30898 - }, - { - "image_path": "G:\\images\\combined\\005076_jpg.rf.73387e410adad93d27e9be4c506ebe49.jpg", - "response": "In the image, two technicians are working on an electrical cable. They are both dressed in work clothes and are wearing hard hats. One of the technicians is on the left side of the image, while the other is on the right. The technician on the left is kneeling on the ground and is working on the cable. The technician on the right is standing and is also working on the cable. The scene is set outdoors, with green plants in the background.", - "id": 30899 - }, - { - "image_path": "G:\\images\\combined\\005077_jpg.rf.ef0880927b2f81df8db62c0193e22ad1.jpg", - "response": "Three men in a construction site, two of them are wearing yellow and orange safety vests and white helmets, the one on the right is an old man with grey hair and blue shirt, he is holding a set of blueprints.", - "id": 30900 - }, - { - "image_path": "G:\\images\\combined\\005078_jpg.rf.ce7d9b6eea8de6223129be536239ff06.jpg", - "response": "A worker in a factory is looking at a monitor.", - "id": 30901 - }, - { - "image_path": "G:\\images\\combined\\00507b5d6fdd6468.jpg", - "response": "An iPhone sitting on a wooden table.", - "id": 30902 - }, - { - "image_path": "G:\\images\\combined\\00507_jpg.rf.ffd9413ea6941479b8bbe53a31052040.jpg", - "response": "The image shows a group of men standing on a construction site, wearing hard hats and coats. They are standing in front of a pile of dirt and a partially constructed building. Some of the men are also wearing ties. In the background, there is a mountain.", - "id": 30903 - }, - { - "image_path": "G:\\images\\combined\\005080_jpg.rf.97db274e81b3059e0d9e3179b66129b4.jpg", - "response": "In the image there are two construction workers wearing blue and red hard hats standing on the right hand side. In front of them is a large metal object on the ground. To the left of the workers is a large metal pipe. In the background there is a forest of trees. In the middle ground there is a dirt road. To the far left of the image there is a yellow flowering plant.", - "id": 30904 - }, - { - "image_path": "G:\\images\\combined\\005081_jpg.rf.69164b700991365983d3cde2c25d6146.jpg", - "response": "a group of people standing around each other", - "id": 30905 - }, - { - "image_path": "G:\\images\\combined\\005082_jpg.rf.6d68baf028da3a359faad5089e45191d.jpg", - "response": "Four men in front of a construction site", - "id": 30906 - }, - { - "image_path": "G:\\images\\combined\\005083_jpg.rf.5dc4450d59dfdca49b7c3b911a995b0f.jpg", - "response": "A group of three people standing in front of a substation.", - "id": 30907 - }, - { - "image_path": "G:\\images\\combined\\005084_jpg.rf.e446b6a9da9634c8fda627844315a753.jpg", - "response": "A man wearing a blue and red striped shirt and a yellow hard hat sits on the front of a yellow bulldozer. The bulldozer is on a dirt field. The man is holding a set of blueprints.", - "id": 30908 - }, - { - "image_path": "G:\\images\\combined\\005085_jpg.rf.851d042d958a3c0f8f6beb7f1e37f7d5.jpg", - "response": "A group of people standing in a construction site wearing high visibility vests and hard hats, looking at a blueprint.", - "id": 30909 - }, - { - "image_path": "G:\\images\\combined\\005086_jpg.rf.501efdef9d2cf2d312ba21f3be077db5.jpg", - "response": "The image shows two workers in a large tunnel. They are standing inside a circular tunnel, which appears to be a pipeline. The tunnel is grey in color. The left worker is wearing a yellow helmet and a blue shirt with his arm raised, he is holding a large wrench over the right worker who is wearing a blue shirt and a yellow helmet, he is holding a small wrench. There is a white arrow on the left side of the tunnel pointing to the right. The tunnel is surrounded by concrete.", - "id": 30910 - }, - { - "image_path": "G:\\images\\combined\\005087_jpg.rf.d220d37dacf4c96c9dd4d8b97f069a43.jpg", - "response": "The image shows a group of men working in a cave. They are standing on a wooden platform and are working on a large rock formation. The men are wearing helmets and the one on the left is holding a large pick ax.", - "id": 30911 - }, - { - "image_path": "G:\\images\\combined\\005089_jpg.rf.2e97996311ef30c115f5d185caf91be2.jpg", - "response": "A man wearing a grey shirt and orange vest is driving a bulldozer. He is wearing a grey hard hat and glasses. The bulldozer is driving on a construction site and there is a building in the background. There is a yellow pole on the right side of the image.", - "id": 30912 - }, - { - "image_path": "G:\\images\\combined\\00508_jpg.rf.67e2bd8d11f27853c9fb303defc76b9e.jpg", - "response": "In the image there are several construction workers wearing orange vests who are working on a construction site. In the foreground, three workers are working on a structure made of concrete and steel rebar. A yellow excavator is parked on the right side of the image. In the background, another excavator is visible. A part of a white building is visible at the top left corner of the image.", - "id": 30913 - }, - { - "image_path": "G:\\images\\combined\\00508_jpg.rf.a579c6ea9ebe31fe1fbb979e67aeb34f.jpg", - "response": "In the image there are several construction workers at a construction site. They are working on a structure that appears to be a foundation for a building. There is a bulldozer parked on the right side of the image. The workers are wearing safety gear including hard hats and are standing on a wooden platform.", - "id": 30914 - }, - { - "image_path": "G:\\images\\combined\\005090_jpg.rf.f4e5297be7d1ba5c5e5b735ae70368cf.jpg", - "response": "a group of men wearing hard hats standing in a unfinished room", - "id": 30915 - }, - { - "image_path": "G:\\images\\combined\\005091_jpg.rf.6bb71349e075a67c97deb247515537ad.jpg", - "response": "A group of men standing in a hallway.", - "id": 30916 - }, - { - "image_path": "G:\\images\\combined\\005092_jpg.rf.f8f94a90ea72fcb73b69544d2451e042.jpg", - "response": "Two men(305,168),(518,892)(568,150),(713,900) wearing yellow vests(582,269),(698,537)(341,275),(460,511) and red helmets(587,149),(665,226)(369,169),(443,236) standing in front of a construction site", - "id": 30917 - }, - { - "image_path": "G:\\images\\combined\\005093_jpg.rf.859832742e20857bc4b348808221cbb1.jpg", - "response": "A man(671,256),(975,996) standing in front of a construction site", - "id": 30918 - }, - { - "image_path": "G:\\images\\combined\\005094_jpg.rf.a1dba20d6e8debea22f28ee3ec7fb8dd.jpg", - "response": "A group of four men standing next to each other wearing hard hats.", - "id": 30919 - }, - { - "image_path": "G:\\images\\combined\\005095_jpg.rf.bfb70a4c05dd823a4d30124025c209e5.jpg", - "response": "In the image, there are three people visible, all wearing safety gear. They are working on a power line that is located over a river and a bridge. The two people in the foreground are wearing green and tan uniforms and are focused on their task. The third person, who is further back, is also wearing green and tan but is looking up at the power line. The image was taken in a location with mountains in the background.", - "id": 30920 - }, - { - "image_path": "G:\\images\\combined\\005096_jpg.rf.f18b4589008c9b859ab552fdf5f2d665.jpg", - "response": "A group of people wearing hard hats are standing in front of a yellow and red banner. Some of the people are wearing red or blue jackets. In the background, there is a building and a forest.", - "id": 30921 - }, - { - "image_path": "G:\\images\\combined\\005097_jpg.rf.9693e694c4faee6a4628016b991e3bd0.jpg", - "response": "A man in a suit holding a rolled up paper and wearing a hard hat points to something in the distance. He is surrounded by several other people, some wearing hard hats as well. They are all standing in a construction area with several buildings under construction. One of the buildings has a large red and white sign on it. There are also several people in the background wearing orange vests.", - "id": 30922 - }, - { - "image_path": "G:\\images\\combined\\005098_jpg.rf.e417c7d30c2f21121c9b781fe7e5a5a9.jpg", - "response": "A group of people in uniforms and hard hats are standing around a man who is kneeling down in front of a large pipe. They appear to be working on some kind of construction or repair project.", - "id": 30923 - }, - { - "image_path": "G:\\images\\combined\\005099_jpg.rf.3ff561fd8f50075b7d02317c63b8d886.jpg", - "response": "A group of four men wearing hard hats stand in front of a tall metal structure. They are looking at plans in a book.", - "id": 30924 - }, - { - "image_path": "G:\\images\\combined\\00509_jpg.rf.befec09821f0f2640765bf3f0d22366f.jpg", - "response": "A man in a white shirt and tan pants is talking to a group of people in front of a construction site. They are all wearing white or yellow hard hats. In the background, there is a large yellow and white crane and a hill with trees.", - "id": 30925 - }, - { - "image_path": "G:\\images\\combined\\0050b38009326935.jpg", - "response": "A busy street at night with many people walking around. There are many signs in the background, including a red sign that says \"Wild One\" in white and red.", - "id": 30926 - }, - { - "image_path": "G:\\images\\combined\\0050f1943a5a1a89.jpg", - "response": "A table with a red table cloth on it with a sign that says TDLTC.", - "id": 30927 - }, - { - "image_path": "G:\\images\\combined\\005100_jpg.rf.8192e459343b86c750f4b702ae78cfdc.jpg", - "response": "A group of people working on a foundation for a building.", - "id": 30928 - }, - { - "image_path": "G:\\images\\combined\\005101_jpg.rf.0064d4f6086da16cb1e26c404a6b6285.jpg", - "response": "A group of people standing in a parking lot.", - "id": 30929 - }, - { - "image_path": "G:\\images\\combined\\005102_jpg.rf.f4240e46f927c4b97fbad842f094b95d.jpg", - "response": "a group of men standing under red umbrellas", - "id": 30930 - }, - { - "image_path": "G:\\images\\combined\\005103_jpg.rf.d2985650b8c44548ec910fe675bc9c14.jpg", - "response": "In the image there are two men wearing blue jeans and yellow hard hats. They are standing in front of a building under construction. The man on the left is wearing a white shirt and a tool belt. The man on the right is wearing a plaid shirt and a blue t-shirt. He is also wearing a watch on his left wrist. Both men are holding their hands in a conversational pose.", - "id": 30931 - }, - { - "image_path": "G:\\images\\combined\\005105_jpg.rf.5eca12dc13aab71bf7f6acfee843f306.jpg", - "response": "The image shows a man working on a construction site. He is wearing a red hard hat, blue shorts, a white shirt with blue stripes, and grey shoes. The man is holding a large pipe in his right hand and appears to be working on it. There are several other pipes lying on the ground around him. The ground is muddy and there is a puddle of water to the left of the man. The background shows a pile of brown dirt and debris.", - "id": 30932 - }, - { - "image_path": "G:\\images\\combined\\005106_jpg.rf.c674a68a5415883bcb84b99f00aa84fe.jpg", - "response": "There are two people in the image, a man and a woman, both of them are wearing hard hats. The woman is sitting on the floor and looking at a laptop, which is placed in front of her. The man is standing next to her, looking at the laptop screen as well. They are both in a large, unfinished building with a lot of construction materials around them.", - "id": 30933 - }, - { - "image_path": "G:\\images\\combined\\005107_jpg.rf.4b4ce9a61a746ce831812d777498f040.jpg", - "response": "A group of six men standing in front of a machine.", - "id": 30934 - }, - { - "image_path": "G:\\images\\combined\\005108_jpg.rf.9c0a5e771e861bb502e0ae3b683870e8.jpg", - "response": "An electrician wearing a hard hat and safety glasses is working on a large piece of equipment. He is holding a tool in his hand and is looking at it while standing in front of the equipment. The electrician is wearing a blue shirt and has a beard.", - "id": 30935 - }, - { - "image_path": "G:\\images\\combined\\005109_jpg.rf.93d3e9d4b8f7b1501db2803ba8e54438.jpg", - "response": "In the image there is a group of workers working on a bridge. The bridge is grey and made of cement. There is a truck on the left side of the image, next to the workers, that is pouring concrete. There are four people in the image, three of them are working on the bridge and the fourth one is standing next to the truck. One of the workers is holding a shovel and there are two hoses coming from the truck. The sky is blue with some clouds and there is greenery in the background.", - "id": 30936 - }, - { - "image_path": "G:\\images\\combined\\00510a8d1b746d21.jpg", - "response": "The image shows a street scene with a focus on a car and an ambulance. The car is painted in yellow, green, and blue stripes and is parked next to the ambulance. The ambulance is white with green and blue stripes. The car has a yellow circle with a black line through it on the driver's side door.", - "id": 30937 - }, - { - "image_path": "G:\\images\\combined\\00510_jpg.rf.d0203944fb25b9fcbd7fc01e9f64e693.jpg", - "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and standing under a large object.", - "id": 30938 - }, - { - "image_path": "G:\\images\\combined\\00510_jpg.rf.f9a2d489c6000262a825e6c6a3820375.jpg", - "response": "The picture shows a group of people in some kind of industrial setting. They are all wearing hard hats and some are wearing green jackets. They are all holding flashlights and are standing in a semi-circle. They are all looking in the same direction.", - "id": 30939 - }, - { - "image_path": "G:\\images\\combined\\005110_jpg.rf.317c3200f32cb67c53fca61282bb8c68.jpg", - "response": "A worker in a red hard hat and camouflage jacket is sitting on a yellow metal platform and holding a large metal hook with a thick rope attached to it. He is looking off to the right of the camera. In the background, there is a forest and a foggy sky.", - "id": 30940 - }, - { - "image_path": "G:\\images\\combined\\005111_jpg.rf.936c406f9097bf09897d5243474de703.jpg", - "response": "The image shows two workers in the water, standing in the middle of a river and fixing a power line. They are wearing blue helmets and are in the river up to their waist. The river is green and has a current.", - "id": 30941 - }, - { - "image_path": "G:\\images\\combined\\005112_jpg.rf.0522539d8bfeb0111c4d9b04c36c8c3e.jpg", - "response": "A firefighter in full gear holding a hose.", - "id": 30942 - }, - { - "image_path": "G:\\images\\combined\\005113_jpg.rf.522036351f1198575dea44ccdd125a2e.jpg", - "response": "a group of people standing around a table", - "id": 30943 - }, - { - "image_path": "G:\\images\\combined\\005114_jpg.rf.7728003b6d6dc96e6f69385cbf255509.jpg", - "response": "In the image there is a man standing in front of a bulldozer and a white helmeted worker looking at the machine. The bulldozer is blue and it is next to a red bin. The sky is full of clouds and the sun is shining through them. On the ground there are many stones and debris from the demolition.", - "id": 30944 - }, - { - "image_path": "G:\\images\\combined\\005115_jpg.rf.9895cc09b0182c8b2b0306226883ef14.jpg", - "response": "A group of six people standing next to each other.", - "id": 30945 - }, - { - "image_path": "G:\\images\\combined\\005116_jpg.rf.d2f2dad61d6415f43683ecbc3b8a8805.jpg", - "response": "In the image there are two coils of steel wire, one on the left and one on the right. The steel wire on the left is a bit further left and is darker in color than the one on the right. Both are located in a warehouse like room with a yellow iron pipe in the middle of the scene and a metal beam to the right. Above the room is a bridge-like structure with a yellow iron pipe running along the top. The words '\u9541\u6986\u533a\u65b0\u95fb\u4e2d\u5fc3' are written in white text on the bottom right of the image.", - "id": 30946 - }, - { - "image_path": "G:\\images\\combined\\005118_jpg.rf.e5021dcc6ac14dc4b55d6ecc34a7963a.jpg", - "response": "A man in a green shirt and red helmet is working on a piece of equipment.", - "id": 30947 - }, - { - "image_path": "G:\\images\\combined\\005119_jpg.rf.edb02118e75e9d65f6fba917e56a2ac9.jpg", - "response": "The image shows a group of workers in a tunnel. They are all wearing orange tops and yellow hard hats. The workers are working on a steel beam in the foreground. There are two sets of train tracks in the tunnel, one on the left and one on the right. The tunnel is grey and white in color. The workers are all focused on their tasks.", - "id": 30948 - }, - { - "image_path": "G:\\images\\combined\\00511_jpg.rf.15005b572ed325c843d0edb79794836d.jpg", - "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", - "id": 30949 - }, - { - "image_path": "G:\\images\\combined\\00511_jpg.rf.a163590b30cccb8e923c2b5bd274624c.jpg", - "response": "A man in a yellow hard hat looking at blueprints while sitting on a step. He is wearing a checkered shirt and has a yellow hard hat on. There are two yellow pipes in the foreground and a concrete wall behind the man.", - "id": 30950 - }, - { - "image_path": "G:\\images\\combined\\005120_jpg.rf.67f0bdd8896330577d53b5415239ebdd.jpg", - "response": "A group of men standing around each other.", - "id": 30951 - }, - { - "image_path": "G:\\images\\combined\\005121_jpg.rf.94049498285e0310387bb7024dda72b3.jpg", - "response": "a group of men standing in front of a construction site", - "id": 30952 - }, - { - "image_path": "G:\\images\\combined\\005122_jpg.rf.5c45ab93b622821507d34538d2b031f2.jpg", - "response": "The image shows a construction site with a number of workers. There is a man in the center of the image who is wearing a yellow hard hat and a gray shirt. He is standing next to a pile of steel bars. Another worker is visible in the background, wearing a white shirt and a red helmet. The construction site is filled with steel bars, some stacked on a table, and some on the ground. There are also a few other people visible in the image, although they are less prominent.", - "id": 30953 - }, - { - "image_path": "G:\\images\\combined\\005125_jpg.rf.a3d55e3ffbc20d18933351c109f21166.jpg", - "response": "A shirtless man wearing a yellow hard hat is working in a pit. He is wearing a yellow hard hat, green gloves, and white shorts. He is holding a large rusty pipe with both hands and is climbing out of the pit. The ground around the pit is covered in small wooden posts.", - "id": 30954 - }, - { - "image_path": "G:\\images\\combined\\005126_jpg.rf.089e3646a623210575de2f978e637f26.jpg", - "response": "A group of four men wearing hard hats and safety vests.", - "id": 30955 - }, - { - "image_path": "G:\\images\\combined\\005127_jpg.rf.d409bddc9de6cfb8dba2466d8c79e4dc.jpg", - "response": "The image shows a tunnel with two workers inside. They are working on the ground, and one of them is holding a hose. The tunnel is dark, and the workers are wearing hard hats and clothes. The left worker is holding a long tool with a wooden handle, and there is a bucket in the middle of the scene. The workers are wearing black shoes, and one of them has a beard. The ground is wet, and there is a puddle of water on the right side of the image.", - "id": 30956 - }, - { - "image_path": "G:\\images\\combined\\005129_jpg.rf.8e791ede6d98089107220cef6d3bd0d0.jpg", - "response": "The image shows a group of people walking in front of a bus. The bus is yellow and white, and is parked in what appears to be a parking lot. The people in the foreground are wearing business attire. One man is wearing a suit and tie, and another man is wearing a black jacket and white shirt. A woman is wearing a black suit. The group is walking in a line, with the man in the suit leading the way. The woman to the far right is wearing a black suit and a red shirt. There are several other people in the background, some of whom are wearing hard hats. The ground appears to be wet.", - "id": 30957 - }, - { - "image_path": "G:\\images\\combined\\00512_jpg.rf.b209e6f0f21ea322cb6c72621f476787.jpg", - "response": "a group of men standing around each other", - "id": 30958 - }, - { - "image_path": "G:\\images\\combined\\005130_jpg.rf.8d1e95cd72cf91a28f54225910650f0c.jpg", - "response": "A worker is laying bricks to build a wall.", - "id": 30959 - }, - { - "image_path": "G:\\images\\combined\\005131_jpg.rf.d63220b673aced7d4ea534dd2f7e4cf2.jpg", - "response": "a group of men walking across a unfinished building", - "id": 30960 - }, - { - "image_path": "G:\\images\\combined\\005133_jpg.rf.3f44f18ea22ea87fce6ba608b1d308a0.jpg", - "response": "The image shows a large ship docked at a pier. Several workers in orange and blue uniforms are pulling ropes to secure the ship to the dock. The ship is black and red and has the words \"Xing Hua\" written on the side. The sky is blue with a few clouds. The workers are wearing orange helmets and the ground is covered with dirt and grass.", - "id": 30961 - }, - { - "image_path": "G:\\images\\combined\\005134_jpg.rf.f0b07016cf508b22cd139928b9b73845.jpg", - "response": "A group of people walking in front of a building with a banner that reads \"\u5b9e\u540d\u5236\u901a\u9053\". Some people are wearing white helmets.", - "id": 30962 - }, - { - "image_path": "G:\\images\\combined\\005135_jpg.rf.6c01f98d36a0959f5c27cd19a7bf3a94.jpg", - "response": "The image shows two workers in red doing maintenance on a power box. They are wearing safety gear, including hard hats and safety vests. The worker on the left is Climbing a pole to work on the power box, while the worker on the right is inspecting the box. The sky is overcast and there are trees in the background.", - "id": 30963 - }, - { - "image_path": "G:\\images\\combined\\005136_jpg.rf.478152ad65fb41005322920d22bf02ad.jpg", - "response": "A group of men working in a mine with one standing and three sitting in the background all wearing hard hats", - "id": 30964 - }, - { - "image_path": "G:\\images\\combined\\005137_jpg.rf.750b0cceb768dec4b96a10a4e4857e6c.jpg", - "response": "A team of workers is seen installing power cables. There are 5 workers in total, 3 of them are installing the cables on a large power cable reel, one is installing cables on a smaller cable reel, and another one is installing cables on the ground. They are all wearing blue work suits with yellow helmets. The sky is a clear blue and there are no other people or objects in the image.", - "id": 30965 - }, - { - "image_path": "G:\\images\\combined\\005138_jpg.rf.9aac67f9a6c2a595446f26c11874401d.jpg", - "response": "A construction site with multiple workers wearing blue and yellow vests and safety gear.", - "id": 30966 - }, - { - "image_path": "G:\\images\\combined\\005139_jpg.rf.31befde4cedf30934bfabf6b5777c9b6.jpg", - "response": "An old worker in an orange work suit and a red helmet is posing for the camera with a smile. He is in a construction site with a pile of rubble on his right and a large yellow\u6876 on his left. In the background, there is a residential building on the left and a tower on the right.", - "id": 30967 - }, - { - "image_path": "G:\\images\\combined\\00513_jpg.rf.3b8ca29c3832dbf78adcd8145fca5419.jpg", - "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", - "id": 30968 - }, - { - "image_path": "G:\\images\\combined\\00513_jpg.rf.3d85c07160d0fd920f92ed453f2f384e.jpg", - "response": "A man wearing a grey shirt and a blue helmet is holding a construction plan in a site.", - "id": 30969 - }, - { - "image_path": "G:\\images\\combined\\005140_jpg.rf.572da64c4fd88130a3ff9800b67f795d.jpg", - "response": " Men(524,455),(672,997)(298,445),(496,997)(769,386),(972,997)(698,516),(807,997)(99,509),(262,997) in hard hats(560,453),(630,523)(143,509),(199,573)(369,445),(446,520)(702,521),(756,582)(242,494),(305,566)(478,496),(536,561)(818,386),(902,467) walking in a row", - "id": 30970 - }, - { - "image_path": "G:\\images\\combined\\005141_jpg.rf.c7cee36ca5fbf6370114689bee29540a.jpg", - "response": "A group of three workers are building a house. Two of them are wearing blue clothes and red hats, the one on the left is crouching lower than the other two and is holding a blue object in their hands. The two workers on the right are wearing yellow hats and red hats, the one on the right is holding a yellow object in their hands. They are all working on a building site with a brown wooden scaffolding. The building site is in front of a blue sky and behind it, there are some buildings.", - "id": 30971 - }, - { - "image_path": "G:\\images\\combined\\005142_jpg.rf.fb69d3cbdbcd336cb4effe48e42edde4.jpg", - "response": "A group of workers in blue uniforms and hard hats are working on a street. They are repairing a broken road and working with large spools of wire.", - "id": 30972 - }, - { - "image_path": "G:\\images\\combined\\005143_jpg.rf.cdd0444fe64c26d81a7fb8cdb2c8e83d.jpg", - "response": "A construction site with two workers on scaffolding.", - "id": 30973 - }, - { - "image_path": "G:\\images\\combined\\005144_jpg.rf.d9be7cbff422fb3bd9281b1c8746e757.jpg", - "response": "A group of seven men wearing hard hats are working on a construction site. They are all wearing yellow hard hats and are wearing blue shirts. They are all holding shovels and are digging into a large concrete area. There is a large metal pipe on the right side of the image and a smaller metal pipe on the left.", - "id": 30974 - }, - { - "image_path": "G:\\images\\combined\\005145_jpg.rf.97cf721e14220ee8c02d58a522ae20b4.jpg", - "response": "In the image there are three people all wearing yellow construction hats and yellow vests. They are all holding a large pair of scissors cutting a red rope. The person on the left is a woman with a leg tattoo and is cutting the rope. The person in the middle is a man with a mustache and the person on the right is a man with a yellow hard hat and a red beard.", - "id": 30975 - }, - { - "image_path": "G:\\images\\combined\\005146_jpg.rf.44f00c7b2a35238f9643510a7a4edcd6.jpg", - "response": "A group of five men working on electricity poles in a city street.", - "id": 30976 - }, - { - "image_path": "G:\\images\\combined\\005147_jpg.rf.8e167492a697cdaefaea3cdfdb8a6c25.jpg", - "response": "A worker is welding inside a ship under construction at a shipyard in Rizhao, east China's Shandong province.", - "id": 30977 - }, - { - "image_path": "G:\\images\\combined\\005149_jpg.rf.2c559284d62effbbc8df7375412b6ae7.jpg", - "response": "The image shows two workers in yellow suits and blue helmets on an oil rig. They are standing on the rig, which has a yellow cover over the floor. One worker is on the left, and the other is on the right. They are both holding pipes and appear to be working together. In the background, there is a desert landscape with a sky that is a mix of blue and orange. There is a red fence in the middle of the rig, and a yellow ladder on the left side of the image.", - "id": 30978 - }, - { - "image_path": "G:\\images\\combined\\005150_jpg.rf.cef4be4b611e68c6ca47d2efd1e9cbbc.jpg", - "response": "A man is being loaded into an ambulance after a fall from a ladder.", - "id": 30979 - }, - { - "image_path": "G:\\images\\combined\\00515166eb5254d4.jpg", - "response": "A large sign advertising an Elvis, Thomas, and Nicholas band.", - "id": 30980 - }, - { - "image_path": "G:\\images\\combined\\005151_jpg.rf.fd66d76a0ad921821290c9df72cd1fab.jpg", - "response": "A group of two men in orange work outfits and hard hats are looking at a solar panel.", - "id": 30981 - }, - { - "image_path": "G:\\images\\combined\\005152_jpg.rf.df19b4f57e2d33a07694b5fd3654cb45.jpg", - "response": "A construction site with multiple workers wearing hard hats. There are large pieces of metal being worked on and a building under construction in the background.", - "id": 30982 - }, - { - "image_path": "G:\\images\\combined\\005153_jpg.rf.fc34975a40027403bebe78989dbc06eb.jpg", - "response": "A worker in a blue uniform and yellow hat is pouring concrete into a yellow concrete mixer.", - "id": 30983 - }, - { - "image_path": "G:\\images\\combined\\005154_jpg.rf.ecad917d2a045a9e977b22599cf6db2a.jpg", - "response": "The image shows a group of rescue workers in white protective suits and yellow hard hats working in a construction site at night. The workers are surrounded by scattered wooden poles and wooden boards on the ground. Some workers are holding wooden poles, and one of them is carrying a red box. A few workers are standing on the wooden poles, and one of them is lifting a red box. The scene is quite busy, with the rescue workers working diligently to save the trapped people.", - "id": 30984 - }, - { - "image_path": "G:\\images\\combined\\005155_jpg.rf.df6eb5fd76c18d8eaeaef885a169c606.jpg", - "response": "A group of people standing around each other.", - "id": 30985 - }, - { - "image_path": "G:\\images\\combined\\005156_jpg.rf.234fe8aa3acc2ac6ca873a711e4c75bb.jpg", - "response": "A group of people in hard hats and work clothes stand around, smiling and holding up children's books. Some of the people are of African descent. One person on the left is wearing a yellow helmet and holding a book with a white cover with a red heart on it. Another person in the center is wearing a yellow helmet and holding a book with a white cover with a red heart and yellow sun on it. A person on the right wearing a red helmet is holding a book with a white cover with a blue square on it. A person in the center is wearing a yellow helmet and holding a book with a white cover with a yellow sun on it. Another person on the right is wearing a red helmet and holding a book with a white cover with a yellow square on it. The background shows a blue sky and a tall white tower.", - "id": 30986 - }, - { - "image_path": "G:\\images\\combined\\005157_jpg.rf.757acf2a82167267dbb6d482af70cac2.jpg", - "response": "In the image, two men are standing in front of a red house. They are both wearing orange work vests and yellow hard hats. One man is on the left and the other is on the right. They are both holding onto a solar panel. The solar panel is black and is located in the center of the image. The men are smiling at the camera. In front of the house, there is a garden with some plants. The sky is blue with some clouds.", - "id": 30987 - }, - { - "image_path": "G:\\images\\combined\\005159_jpg.rf.7334da2032ccc6e22a4545ead0c9d030.jpg", - "response": "A group of men in hard hats stand around a cement beam. They are all wearing different colored hard hats. Some of the men are wearing blue and one is wearing yellow. They are all wearing different colored shirts. Some of them are wearing blue and some are wearing white. They are all wearing pants with different colored work pants. The ground around them is covered in dirt and debris. There are also some cement pillars in the background.", - "id": 30988 - }, - { - "image_path": "G:\\images\\combined\\005160_jpg.rf.46d3fa83d7b1ebd2c556332ff1872fc4.jpg", - "response": "A group of men working on a ship in the water.", - "id": 30989 - }, - { - "image_path": "G:\\images\\combined\\005162_jpg.rf.16bec0db8d016efba6d8f101dd8fda25.jpg", - "response": "A man wearing a yellow hard hat stands in front of a large pile of steel rods. He is wearing a black shirt and jeans. There are several other people in the background, some of them are wearing hard hats as well. The sky is blue and there are no clouds in sight. There are several construction cranes in the distance, on the right side of the image. In the foreground, there is a red and white construction vehicle.", - "id": 30990 - }, - { - "image_path": "G:\\images\\combined\\005163_jpg.rf.80d452eed20cb843674b2d54cd3da380.jpg", - "response": "A construction site with two men working on it.", - "id": 30991 - }, - { - "image_path": "G:\\images\\combined\\005164_jpg.rf.77caefff83d68c788dd955b45f812fd7.jpg", - "response": "The image shows a construction site with several people working. There are two yellow excavators and a large pile driver on the site. The excavators are positioned on the left and right sides of the image, with the pile driver in the center. The people are scattered around the site, with some standing near the excavators and some further back. The sky is grey and overcast, and there is a building in the background.", - "id": 30992 - }, - { - "image_path": "G:\\images\\combined\\005165_jpg.rf.b84bd8c6ef13158de8b6a6015e49c172.jpg", - "response": "The image shows a construction worker who has been injured at a building site. He is lying on the ground and is being attended to by emergency services. The worker is fully clothed and appears to be Chinese.", - "id": 30993 - }, - { - "image_path": "G:\\images\\combined\\005167_jpg.rf.29044ba7d12ff7d744a77279909f1bd0.jpg", - "response": "A group of four people standing around a table in a warehouse. Three of the people are wearing construction type clothing, one man is wearing a yellow and orange safety vest, another man is wearing a blue suit and tie, and the third person is wearing a blue shirt. They are all gathered around a white board with writing on it. There are also several stacks of boxes in the background.", - "id": 30994 - }, - { - "image_path": "G:\\images\\combined\\005169_jpg.rf.44d972f54c5e921173ca153ff7f2739b.jpg", - "response": "The image shows two workers in red uniforms and yellow helmets on a ladder against a blue sky, repairing a power line. They are on a ladder, which is against a power pole. The workers are wearing red uniforms and yellow helmets. The left worker is holding a tool in his right hand and the right worker is holding the other end of the tool. There are several other power poles in the vicinity, with some of them having wires attached to them.", - "id": 30995 - }, - { - "image_path": "G:\\images\\combined\\00516bf08cf0cdeb.jpg", - "response": "a blurry photo of a car driving down a street", - "id": 30996 - }, - { - "image_path": "G:\\images\\combined\\00516_jpg.rf.2eb87c6118e62f3984cc1758bf2f3122.jpg", - "response": "A group of four men dressed in blue uniforms and hard hats are working on an electrical device. They are all kneeling down and appear to be focused on the task at hand.", - "id": 30997 - }, - { - "image_path": "G:\\images\\combined\\005170_jpg.rf.52a475197a65c26bbefc0d723034d7db.jpg", - "response": "A group of men standing in a room that is still under construction.", - "id": 30998 - }, - { - "image_path": "G:\\images\\combined\\005171_jpg.rf.362c4df046737a3e64eced8a4d1c2a75.jpg", - "response": "A man in a hard hat and overalls is on a ladder, working on a traffic light.", - "id": 30999 - }, - { - "image_path": "G:\\images\\combined\\005172_jpg.rf.b80c460cc07613955c190f293c1b2e12.jpg", - "response": "A construction worker wearing a yellow vest and a white helmet is working on a building site. The worker is on a platform and is looking at some rebar.", - "id": 31000 - }, - { - "image_path": "G:\\images\\combined\\005173_jpg.rf.e5009340c282a9bb7aaffdca76e679cf.jpg", - "response": "The image depicts a\u63e1\u624b between two\u4e2d\u5e74\u7537\u5973\u3002 The man on the left is wearing a\u767d\u8272\u88e4\u5b50\u548c\u4e00\u4ef6\u84dd\u8272\u4e0a\u8863\uff0c\u5934\u53d1\u67d3\u6210\u4e86\u7070\u8272\u3002\u4ed6\u6234\u7740\u4e00\u4e2a\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e9b\u767d\u8272\u7684\u8bbe\u8ba1\u56fe\u3002 The man on the right is a\u5efa\u7b51\u5de5\u4eba\uff0c\u7a7f\u7740\u9ed1\u8272\u7684T\u6064\u548c\u725b\u4ed4\u88e4\uff0c\u5934\u53d1\u9ed1\u8272\u3002\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u91cc\u548c\u521a\u521a\u63e1\u624b\u7684\u5973\u58eb\u63e1\u7740\u4e00\u53ea\u63e1\u624b\u3002\u80cc\u666f\u662f\u4e00\u4e2a\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u5176\u4e2d\u6709\u7740\u767d\u4e91\u3002\u5728\u80cc\u666f\u7684\u53f3\u4e0b\u65b9\uff0c\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u6b63\u5728\u65bd\u5de5\u7684\u811a\u624b\u67b6\u3002", - "id": 31001 - }, - { - "image_path": "G:\\images\\combined\\005174_jpg.rf.b05a09392672e913e69cb37bdf710edb.jpg", - "response": "A group of three men in red hard hats crouching down next to a metal box on a sidewalk.", - "id": 31002 - }, - { - "image_path": "G:\\images\\combined\\005177_jpg.rf.29bcd0a154426193dfa1514a20ada65f.jpg", - "response": "A woman in a black coat is holding a clipboard and talking to three men. One man is wearing a black coat and holding a pen. Another man is wearing a white hat and a gray jacket. The fourth man is wearing a black jacket and hat. They are standing in front of a building that is covered in green netting.", - "id": 31003 - }, - { - "image_path": "G:\\images\\combined\\005179_jpg.rf.30d96913a6a21d6dd475ed54f47cc184.jpg", - "response": "An electrician in a blue hard hat and safety glasses is working on an electrical box.", - "id": 31004 - }, - { - "image_path": "G:\\images\\combined\\005180_jpg.rf.0145a7ba610d2af3a6df6f05d17fa7c0.jpg", - "response": "A man in a yellow hard hat and a man in a green shirt are standing in a unfinished room.", - "id": 31005 - }, - { - "image_path": "G:\\images\\combined\\005181_jpg.rf.68f336dc5e2d2cdf73919ab09205be6d.jpg", - "response": "The image shows two workers in green uniforms and yellow helmets, climbing on a power pole. They are repairing a power line.", - "id": 31006 - }, - { - "image_path": "G:\\images\\combined\\005182_jpg.rf.86947e7a47909dcb889448399b9b94bc.jpg", - "response": "The image shows a man in a blue hard hat and work clothes crouched down and working on a piece of equipment. He is holding a screwdriver and appears to be focused on the task at hand. The background is dark and there are a few other details that are hard to make out.", - "id": 31007 - }, - { - "image_path": "G:\\images\\combined\\005183_jpg.rf.67b0979aad41ea2cb2e9574814dacb19.jpg", - "response": "A construction worker in a yellow hard hat is working on a scaffold.", - "id": 31008 - }, - { - "image_path": "G:\\images\\combined\\005184_jpg.rf.96d471c3d859a92a38a3be1303136fc9.jpg", - "response": "A worker is welding a steel pipe at a factory in Hefei, Anhui province, China. The worker is wearing a grey shirt, a grey hat, and white gloves. He is focused on his work, which is illuminated by a bright light. The background is filled with steel sparks.", - "id": 31009 - }, - { - "image_path": "G:\\images\\combined\\005185_jpg.rf.4d46a073a76855384a04053f5a663a12.jpg", - "response": "A group of workers in grey, blue and yellow uniforms, yellow helmets and red, blue and yellow shoes are standing in a parking lot.", - "id": 31010 - }, - { - "image_path": "G:\\images\\combined\\005187_jpg.rf.557fb56cbcabe7aa85de3c854f241ea1.jpg", - "response": "a man in a yellow suit and yellow hat hanging from a rope and painting a white building", - "id": 31011 - }, - { - "image_path": "G:\\images\\combined\\005188_jpg.rf.f477436f7e41c0e7f5804b7fa1e130d9.jpg", - "response": "A group of men standing around a machine.", - "id": 31012 - }, - { - "image_path": "G:\\images\\combined\\005189_jpg.rf.61471a3e66ec003d833dd3e96ce500fc.jpg", - "response": "A worker is seen here attempting to climb a ladder that has been propped up against a wall. The ladder is positioned near a telephone pole and wires. The worker is positioned on the left side of the image, wearing a blue shirt and hat. They are holding the ladder near the top. The wall the ladder is propped up against is grey and made of concrete. It is located near a house with a red roof. The telephone pole is located behind the ladder and the wires are attached to it. The image is taken outside.", - "id": 31013 - }, - { - "image_path": "G:\\images\\combined\\005190_jpg.rf.bd55dd40f06ce5a8622c0b2ec2fb663b.jpg", - "response": "A crane is lifting a large piece of metal.", - "id": 31014 - }, - { - "image_path": "G:\\images\\combined\\005191_jpg.rf.5aacb64189f28fcb4f6edd99bf6a9f44.jpg", - "response": "A group of three men standing next to a piece of machinery.", - "id": 31015 - }, - { - "image_path": "G:\\images\\combined\\005192_jpg.rf.b65106362498844fcb54a19c90ceabcc.jpg", - "response": "A man wearing a red helmet is using a circular saw to cut through a metal pipe. The circular saw is on the ground and the man is kneeling down to reach the pipe. The man is also wearing work gloves and camouflage clothing. There is a pile of metal rods in the background.", - "id": 31016 - }, - { - "image_path": "G:\\images\\combined\\005193_jpg.rf.b7b7580a58161d5551a10dbf4217947a.jpg", - "response": "A worker walking through the rubble of a demolition site.", - "id": 31017 - }, - { - "image_path": "G:\\images\\combined\\005194_jpg.rf.3db46b8ca038575c679191704dac0d86.jpg", - "response": "In the image there is a construction site with three people working. The person in the foreground is wearing a yellow hard hat, a yellow vest, and is holding a brick. Another person in the background is wearing a yellow hard hat and a white vest. There is a cup on the ground in the middle of the scene and a yellow tool box at the bottom right corner of the image. The sky is covered by clouds in the background.", - "id": 31018 - }, - { - "image_path": "G:\\images\\combined\\005195_jpg.rf.d97ecc787745ed94c0d2dc6bba49211f.jpg", - "response": "A group of three men working on a electrical box in the rain.", - "id": 31019 - }, - { - "image_path": "G:\\images\\combined\\005196_jpg.rf.9423b3fd2047ad05ec7792ed9bb13eb5.jpg", - "response": "A man wearing a white hard hat and orange vest standing in a unfinished room.", - "id": 31020 - }, - { - "image_path": "G:\\images\\combined\\005197_jpg.rf.e96ad2465b7227c0cd0e5c0429052082.jpg", - "response": "The image shows three workers in a factory. They are all wearing yellow hard hats and are working with metal. One worker is on the left, crouching down to work on a red piece of metal with a yellow handle, the second worker is in the middle, wearing blue pants and a blue shirt, and is operating a piece of metal bending equipment, and the third worker is on the right, wearing camo pants and a blue shirt, he is reaching into a red piece of metal with a yellow handle. The word \"WORKER\" is in red at the bottom of the image, and there is a white box with the letters \"\u4e2d\u56fd\u7f51\" in black inside it, all centered on the right side of the image.", - "id": 31021 - }, - { - "image_path": "G:\\images\\combined\\005198_jpg.rf.91a2fcbc4c72f0466418855c4447f0bf.jpg", - "response": "A group of three men working on a construction site, two of them are on a scaffolding that is placed against a brick wall and the other one is on a ladder against a concrete wall.", - "id": 31022 - }, - { - "image_path": "G:\\images\\combined\\005199_jpg.rf.bf63849d67e9e5267de5c366e563a860.jpg", - "response": "The image shows North Korean leader Kim Jong-un in a small office inside a plane. He is sitting at a desk, which has a folder and a book on it. There is a pen and a cup on the desk as well. Kim Jong-un is talking on a cell phone, which is held close to his ear. He is looking downwards at the phone. The office has a lamp on the left side of the desk and a chair on the right side. The walls of the office are made of wood and there is a picture frame on the wall to the right.", - "id": 31023 - }, - { - "image_path": "G:\\images\\combined\\00519_jpg.rf.4829fbb5349abb0ebda935d83d343aaf.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and protective gear. The workers are pouring concrete into place, using a long tool to smooth out the surface. The concrete is being poured between two steel rails.", - "id": 31024 - }, - { - "image_path": "G:\\images\\combined\\00519_jpg.rf.a70403fb30fc6fc1ed0baafdfe085cab.jpg", - "response": "A group of men working on a construction site.", - "id": 31025 - }, - { - "image_path": "G:\\images\\combined\\0051a014205dd1f6.jpg", - "response": "A book with the title \"Jimi Hendrix\" on the cover.", - "id": 31026 - }, - { - "image_path": "G:\\images\\combined\\0051b21e3959ff77.jpg", - "response": "A framed picture with a glass front is sitting on a wooden table. The picture is a rectangle and the frame is brown. The glass front has several stickers on it.", - "id": 31027 - }, - { - "image_path": "G:\\images\\combined\\005200_jpg.rf.e527e9cdaeb562a33ef687006ef2ab1b.jpg", - "response": "A group of men wearing hard hats are standing in a construction site. One man is gesturing towards a concrete pillar while the others listen to him.", - "id": 31028 - }, - { - "image_path": "G:\\images\\combined\\005201_jpg.rf.431c13f7df709b14d767096900a933dd.jpg", - "response": "A worker is seen at the top of a tower in a green field.", - "id": 31029 - }, - { - "image_path": "G:\\images\\combined\\005202_jpg.rf.f0f2b560b7850bd4a08fec8559ea626e.jpg", - "response": "A worker in a blue uniform shows a pen to another worker in yellow safety helmet. They are both standing in front of a large pipe.", - "id": 31030 - }, - { - "image_path": "G:\\images\\combined\\005203_jpg.rf.9a7913c0f345069d54f1bada35feafa3.jpg", - "response": "A man wearing a blue jacket and a red hard hat is standing in front of a large piece of machinery. He is also wearing gloves and jeans. There is a yellow circle of light beneath him and another man wearing a red hard hat is visible to the right of him. There is also another man wearing a blue jacket and a red hard hat visible to the left of him.", - "id": 31031 - }, - { - "image_path": "G:\\images\\combined\\005204_jpg.rf.e5e31eb2750bfc43a1179f051063cd6d.jpg", - "response": "A man and woman wearing hard hats are standing in front of a building under construction. The woman is handing the man a piece of paper.", - "id": 31032 - }, - { - "image_path": "G:\\images\\combined\\005205_jpg.rf.f1e05f91a555b7837f6474389af1c58b.jpg", - "response": "A man kneeling down on the ground using a level.", - "id": 31033 - }, - { - "image_path": "G:\\images\\combined\\005206_jpg.rf.263cfe3a364c99fedb16c9058c2bc984.jpg", - "response": "A group of people standing in front of a van.", - "id": 31034 - }, - { - "image_path": "G:\\images\\combined\\005207_jpg.rf.d6107344dd3bf66c29b3a9243ea46e4d.jpg", - "response": "In the image there are two workers in a factory. They are standing in front of a large metal door with a sign above it that reads International Alloy Group. The workers are both wearing blue shirts and red hats. One of the workers is holding a device in his hand. There is a large amount of machinery around them. To the far left there is a large metal cylinder and a machine with many pipes and valves. To the right there is another large metal cylinder and a machine with a large circular metal door.", - "id": 31035 - }, - { - "image_path": "G:\\images\\combined\\005208_jpg.rf.eb1ff1b8c514dc14edff3a52f2ad2aa5.jpg", - "response": "a group of men standing around talking in a construction area", - "id": 31036 - }, - { - "image_path": "G:\\images\\combined\\005209_jpg.rf.eda41a6bb1ea78cb271cdbfa5643cad7.jpg", - "response": "A worker in a large warehouse is working with a pile of scrap metal. The worker is wearing a blue shirt and a yellow hat. They are crouching down and appear to be sorting through the pile of metal. The metal is piled up in a large heap and takes up most of the image. There are large metal girders on the walls and ceiling of the warehouse.", - "id": 31037 - }, - { - "image_path": "G:\\images\\combined\\005210_jpg.rf.3e76bcfbeb83ce663045c267550a4455.jpg", - "response": "A man in a white hard hat is kneeling down and using a blue scoop to pour a black liquid into a black hole in the ground. Another man is standing nearby, watching. They are both wearing blue jeans. In the background, there is a person wearing a red shirt and a yellow hard hat. There is also a yellow hard hat on the ground and a person holding a white sign with black letters.", - "id": 31038 - }, - { - "image_path": "G:\\images\\combined\\005211_jpg.rf.db1151bd0111b2024f3042d96a628e78.jpg", - "response": "The image shows a group of workers inside a tunnel. They are working on the right side of the tunnel, which has been excavated. Some of them are standing, while others are crouching. They are wearing hard hats and several of them are wearing yellow hard hats. In the right background, there is a large excavator. The tunnel has a white ceiling and walls that are a mix of white and grey. The floor of the tunnel is a mix of brown dirt and some grey rocks. There is a small stream of water running down the middle of the tunnel on the right side.", - "id": 31039 - }, - { - "image_path": "G:\\images\\combined\\005212_jpg.rf.d41fcb1db931d2c5bf376313254a101f.jpg", - "response": "A container terminal with two port workers in the foreground. They are wearing yellow reflective vests and hard hats. The woman is looking up and has her hand to her forehead. The man is looking up and holding a walkie talkie. In the background a blue container is stacked up. The sky is a clear blue.", - "id": 31040 - }, - { - "image_path": "G:\\images\\combined\\005213_jpg.rf.24351d98ce83b57b3d40f3ce51d7f700.jpg", - "response": "The photo shows six men standing in front of a large yellow machine. The men are wearing dark suits and the machine has a red banner with white characters on it. The characters say \"China Railway No. \u4e00\u662f\". The background is a pale blue sky with faint clouds.", - "id": 31041 - }, - { - "image_path": "G:\\images\\combined\\005214_jpg.rf.42104f263db0ca776a93e70201a40fa3.jpg", - "response": "A man kneeling down with a hard hat on and another man standing over him.", - "id": 31042 - }, - { - "image_path": "G:\\images\\combined\\005215_jpg.rf.0b8223225999a9dd584dae6f7e21d489.jpg", - "response": "A group of men standing in front of a mountain side.", - "id": 31043 - }, - { - "image_path": "G:\\images\\combined\\005216_jpg.rf.9d8ca57cd57a8b1d7cece2ee66e82765.jpg", - "response": "A group of men standing around each other.", - "id": 31044 - }, - { - "image_path": "G:\\images\\combined\\005217_jpg.rf.c306a621afe65b09591ad6e0fce36140.jpg", - "response": "In the image, a worker is seen crouching down in a pit surrounded by wooden sticks and branches. The worker is wearing a yellow hard hat, green gloves, and a blue jacket. The background is a dark grey wall and the scene is bathed in a warm orange light.", - "id": 31045 - }, - { - "image_path": "G:\\images\\combined\\005218_jpg.rf.dfcde98ab8efff3d4801dda2e3d792f3.jpg", - "response": "A city street with two workers on a yellow truck.", - "id": 31046 - }, - { - "image_path": "G:\\images\\combined\\005219_jpg.rf.c9b10a04211a7293165db309d3151106.jpg", - "response": "Men(758,426),(869,997)(570,515),(643,683)(829,406),(963,996) working on a construction site", - "id": 31047 - }, - { - "image_path": "G:\\images\\combined\\00521_jpg.rf.1cdcd875955b2653e3daf76938062657.jpg", - "response": "A group of people stand in a field with buildings in the background. They are all wearing yellow hard hats.", - "id": 31048 - }, - { - "image_path": "G:\\images\\combined\\005220_jpg.rf.9971ebc74f629ccaba57e1fdf19ec59c.jpg", - "response": "A group of people walking up a snowy hill.", - "id": 31049 - }, - { - "image_path": "G:\\images\\combined\\005222_jpg.rf.da5fc932ce820d6f2e9f8db17df58572.jpg", - "response": "a man standing in front of a unfinished house wearing a yellow hard hat", - "id": 31050 - }, - { - "image_path": "G:\\images\\combined\\005223_jpg.rf.e0be8a5cbe482ef581d4766d14f76e02.jpg", - "response": "a group of men in hard hats", - "id": 31051 - }, - { - "image_path": "G:\\images\\combined\\005224_jpg.rf.6a5aa3f677fb10e6eae00cf4943813e7.jpg", - "response": "A man wearing a yellow hard hat and work clothes is using a circular saw to cut through a long piece of lumber. The saw is on top of the lumber and the man is behind it, guiding it as it cuts through the wood. There are other pieces of lumber stacked nearby and a cup is placed near the saw.", - "id": 31052 - }, - { - "image_path": "G:\\images\\combined\\005225_jpg.rf.f3195e5e5952b16f63d69130e7b09a3d.jpg", - "response": "a person wearing a blue shirt and a red helmet is working on an electrical tower.", - "id": 31053 - }, - { - "image_path": "G:\\images\\combined\\005226_jpg.rf.d1c564ec6752d7bc93a20ea7ce33053c.jpg", - "response": "A man in a yellow hard hat and reflective vest stands in front of a large silo. The silo is silver and is made of metal. The man is standing with his back to the camera. He is wearing blue jeans and a yellow hard hat. He is also wearing a reflective vest. The vest is yellow and has black stripes on it.", - "id": 31054 - }, - { - "image_path": "G:\\images\\combined\\005227_jpg.rf.e0e40223b089dea999bfe83031dc3e1e.jpg", - "response": "A man in a blue shirt and grey pants is hanging from a wire with a harness. He is wearing a grey hat and has a beard.", - "id": 31055 - }, - { - "image_path": "G:\\images\\combined\\005229_jpg.rf.d99eb9a87fc200d88dfa6dab287e1a24.jpg", - "response": "The image shows a group of men standing in the street. They are all wearing hard hats. Some of them are wearing suits. In the background, there is a car and a construction site with a yellow excavator.", - "id": 31056 - }, - { - "image_path": "G:\\images\\combined\\00522_jpg.rf.2aa334ceb6521ed88b8bcc40b15fd19c.jpg", - "response": "In the image, two people are standing next to each other, shaking hands. The person on the left is wearing a white shirt and has long blonde hair. The person on the right is wearing a yellow hard hat, black t-shirt, and is holding a white plan in his hand. They seem to be having a conversation.", - "id": 31057 - }, - { - "image_path": "G:\\images\\combined\\00522_jpg.rf.7afc8ea00dc75c37006153a1b83aa065.jpg", - "response": "In the image, two people are standing outside, shaking hands. The person on the left, who is wearing a white shirt, is slightly overlapping the person on the right, who is wearing a yellow hard hat and black shirt. The man in the hard hat is holding a blueprint, which is visible at his lower right. They are both facing each other, and the man in the hard hat is looking slightly towards the left of the camera. They are standing in front of a building under construction. The building has a framework of metal poles and wooden beams, and it appears to be in an advanced state of disrepair. There are several large holes in the side of the building, and it appears to be missing many of its windows. The sky above them is blue with large white clouds.", - "id": 31058 - }, - { - "image_path": "G:\\images\\combined\\005230_jpg.rf.0323485b54a5bf57a785169f20453243.jpg", - "response": "The image shows two men in a cave. They are wearing yellow helmets and red safety vests. The men are standing in front of a waterfall. One of the men is holding a rope with a hook on the end. The man on the left is also holding a hose. The cave walls are covered in a white substance. The image is by Visual China.", - "id": 31059 - }, - { - "image_path": "G:\\images\\combined\\005231_jpg.rf.3508f6235177e8bfeb0bcba07805254c.jpg", - "response": "A man in a hard hat and grey shirt is using a tool to apply cement to a grey wall.", - "id": 31060 - }, - { - "image_path": "G:\\images\\combined\\005233_jpg.rf.7984572fdd0dda41c235dacc31dbddc8.jpg", - "response": "An employee works at a coal mine in Datong city, Shanxi province, China, 20 February 2017. The picture shows an employee at a coal mine in Datong city, Shanxi province, China. The picture shows the employee wearing a blue outfit, a red helmet and glasses. The employee is holding a long steel bar with both hands. The background is blurred and the picture is focused on the employee.", - "id": 31061 - }, - { - "image_path": "G:\\images\\combined\\005234_jpg.rf.c99b3677a369094516e899c2b9b222ea.jpg", - "response": "In the image, two workers are standing on a metal platform wearing yellow helmets and work clothes. They are working on a large metal structure with power lines and cables behind them. The sky is blue and clear.", - "id": 31062 - }, - { - "image_path": "G:\\images\\combined\\005235_jpg.rf.cc77021326208327a7136f15c29f4f94.jpg", - "response": "A man wearing a yellow vest and a hard hat standing in a warehouse.", - "id": 31063 - }, - { - "image_path": "G:\\images\\combined\\005236_jpg.rf.ad1bf23e9687b12d4121558c693adfd6.jpg", - "response": "In the image two workers are seen fixing an electricity transformer. They are wearing safety gear and are in the process of fixing a part of the transformer. The sky is blue in color and the workers are wearing white and blue color helmets.", - "id": 31064 - }, - { - "image_path": "G:\\images\\combined\\005237_jpg.rf.da4cf92cc88a497aa3cc956a048dd269.jpg", - "response": "a group of people standing around talking", - "id": 31065 - }, - { - "image_path": "G:\\images\\combined\\005238_jpg.rf.3919fd15e825c549524f6312061b81cc.jpg", - "response": "A man wearing a red hard hat standing in front of a blue truck filled with wood.", - "id": 31066 - }, - { - "image_path": "G:\\images\\combined\\005239_jpg.rf.bb8662c8121ff53544dce1fa3514cd87.jpg", - "response": "A group of men standing around a white van.", - "id": 31067 - }, - { - "image_path": "G:\\images\\combined\\00523_jpg.rf.08869fd21ee190bda45c23e83c993c27.jpg", - "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", - "id": 31068 - }, - { - "image_path": "G:\\images\\combined\\00523_jpg.rf.e2f2261e42b21b3a58b865f1959663d6.jpg", - "response": "A group of workers wearing hard hats and work clothes are working on a construction site. They are all focused on their tasks.", - "id": 31069 - }, - { - "image_path": "G:\\images\\combined\\005240_jpg.rf.c2f1b775f26d1df9c7f05aa49fe46de3.jpg", - "response": "a group of men standing around a bus", - "id": 31070 - }, - { - "image_path": "G:\\images\\combined\\005241_jpg.rf.fe8ff728c5da1af05cba7301632798e2.jpg", - "response": "The construction site is located in the city of Xiamen, in the southeastern part of China. In the image, three construction workers are busy working on the site. They are wearing blue helmets and uniforms, indicating that they are construction workers. One of the workers is holding a long white pole, possibly a pole for measuring or supporting. Another worker is standing on the upper level of the site, while the third worker is on the lower level. The workers are focused on their tasks and appear to be engaged in various activities related to the construction of the site.", - "id": 31071 - }, - { - "image_path": "G:\\images\\combined\\005242_jpg.rf.2e4f8594daf1f2f5f1072c1b9633fa6c.jpg", - "response": "A man in a dark suit and red hard hat points to a crane operating in the sky. He is standing next to a man in a yellow hard hat who is also looking at the crane. Both men are in front of a large building under construction.", - "id": 31072 - }, - { - "image_path": "G:\\images\\combined\\005243_jpg.rf.8d1be97cdb296a107f83e45ef1ae8b3d.jpg", - "response": "a group of people standing in front of some cars", - "id": 31073 - }, - { - "image_path": "G:\\images\\combined\\005244_jpg.rf.628fb4e38b252fdcddc91c3c85e54183.jpg", - "response": "a person wearing a silver helmet and a blue jacket", - "id": 31074 - }, - { - "image_path": "G:\\images\\combined\\005246_jpg.rf.5b2c751a1940210894e03ace7da4d6cf.jpg", - "response": "A worker in a red jumpsuit and blue hard hat stands on a metal platform working on a transformer. The transformer is large and metal and is located on a metal pole. There are two other workers visible in the image, one on the right side of the pole and one on the left side. The sky is blue and clear.", - "id": 31075 - }, - { - "image_path": "G:\\images\\combined\\005247_jpg.rf.df92ffac70d61ef62328e3da7adad77a.jpg", - "response": "A man in a white shirt and yellow hard hat watches as a building is torn down.", - "id": 31076 - }, - { - "image_path": "G:\\images\\combined\\005249_jpg.rf.289abe20e369a441277263cb8789a787.jpg", - "response": "In the image, a tree is shown falling across power lines. Below the tree, two men are working to remove it. One man is standing on the ground holding a pole and pulling on a tree branch while the other man is standing on a ladder and cutting the tree with a chainsaw. They are both wearing blue shirts and hard hats.", - "id": 31077 - }, - { - "image_path": "G:\\images\\combined\\00524_jpg.rf.a24c0b3f1e7a201802f33393cf96d8d1.jpg", - "response": "The image shows two men wearing red helmets and blue work clothes. They are checking a power line. One man is crouching down and looking at something on the power line, while the other man is watching him. They both seem to be focused on their task.", - "id": 31078 - }, - { - "image_path": "G:\\images\\combined\\00524_jpg.rf.ef82488a584843650f84a5144b3fadda.jpg", - "response": "The image shows two men wearing red helmets and orange safety harnesses, with one standing on a ladder and the other on the ground, both working on a metal structure. They are both wearing blue denim shirts and are focused on their task.", - "id": 31079 - }, - { - "image_path": "G:\\images\\combined\\005250_jpg.rf.3e73c963b513e0950ee24aae0397dffa.jpg", - "response": "The image shows a group of men standing in a circle in front of a construction site. They are all wearing hard hats, with some wearing blue and others wearing orange. The men are standing in front of a street that has been dug up by a yellow and black backhoe. In the background, there are several buildings, some of which are in the process of being demolished. The image is taken in a city.", - "id": 31080 - }, - { - "image_path": "G:\\images\\combined\\005251_jpg.rf.462f8a55bfcd42c08f32ba4466ee60f7.jpg", - "response": "A group of men working on oil drills.", - "id": 31081 - }, - { - "image_path": "G:\\images\\combined\\005252_jpg.rf.b73662bc7cc0085ceb7bc380b21f4abd.jpg", - "response": "The image shows several construction workers at a construction site. They are wearing yellow hard hats and work clothes. They are working on a large concrete structure, pouring concrete onto rebar. There are several hoses and tools scattered around the area. In the background, there is a crane and a building under construction.", - "id": 31082 - }, - { - "image_path": "G:\\images\\combined\\005253_jpg.rf.a97317b9400248a2591e7240f493759b.jpg", - "response": " Miners(568,469),(728,912)(382,472),(503,788) at work in a mine", - "id": 31083 - }, - { - "image_path": "G:\\images\\combined\\005254_jpg.rf.d996e6a7ea943da315a7bbb63a2e60f8.jpg", - "response": "A group of rescue workers in protective gear stand around a red piece of mining equipment. They are wearing helmets and some have breathing tubes. They are looking at the equipment and talking to each other. In the background, there is a brick wall and a pipe. There is also a man in an orange jumpsuit standing on a ladder.", - "id": 31084 - }, - { - "image_path": "G:\\images\\combined\\005255_jpg.rf.d185a239986297307fbf44619b28658b.jpg", - "response": "A group of workers are on a scaffolding that is built around a large tower. They are working on the tower, which is in the mountains. The tower is yellow and red, and is located near a green mountain range. The sky is grey, and the workers are wearing hard hats and safety gear.", - "id": 31085 - }, - { - "image_path": "G:\\images\\combined\\005258_jpg.rf.d49eac23edc94c201b053aaf33f203e0.jpg", - "response": " Men(437,164),(603,976)(649,136),(838,948)(114,249),(300,997)(348,199),(431,502)(821,169),(960,872)(2,196),(177,931) in suits(651,255),(835,894)(439,286),(602,938)(116,368),(298,967) and hard hats(482,162),(571,251)(176,249),(268,332)(697,135),(783,217)(367,199),(410,249)(69,196),(171,281) walking in a construction site", - "id": 31086 - }, - { - "image_path": "G:\\images\\combined\\005259_jpg.rf.9740885ec29e00c0b840f689ee23098b.jpg", - "response": "A group of men in hard hats and work clothes are holding a large pipe.", - "id": 31087 - }, - { - "image_path": "G:\\images\\combined\\005260_jpg.rf.c1c62c416761fcea039a726dd4c218b0.jpg", - "response": "In the image, a man is working at a factory that produces hot rolled steel. The factory has a large machine that is melting steel and spitting out large red hot pieces of steel. The man is wearing a hard hat and blue overalls and is working with a large metal rod. He is also standing on a platform near the machine. The factory is quite industrial and has a lot of steel equipment and machinery.", - "id": 31088 - }, - { - "image_path": "G:\\images\\combined\\005261_jpg.rf.134dc3f6201e0218c49425fd330b4545.jpg", - "response": "A group of men in white shirts and red hard hats stand in front of a construction site. In the background there is a hill.", - "id": 31089 - }, - { - "image_path": "G:\\images\\combined\\005262_jpg.rf.760a562929cf719ece82814d7ac7eedc.jpg", - "response": "In the image there are two men working on an electrical panel. One man is on the left and he is wearing a blue helmet and a grey shirt. He is also wearing a watch on his left wrist. The second man is on the right and he is wearing a white helmet and a grey shirt. He is also wearing a watch on his right wrist. They are both working on the electrical panel.", - "id": 31090 - }, - { - "image_path": "G:\\images\\combined\\005264_jpg.rf.6fe1d038d39a45d57a0e873d74cda539.jpg", - "response": "The image shows a group of men in green and yellow work clothes carrying a large metal ladder over their shoulders. They are in a forested area with a few trees visible in the background. In the foreground, there is a large pipe and a yellow digger.", - "id": 31091 - }, - { - "image_path": "G:\\images\\combined\\005265_jpg.rf.c7e746861d1577031bf2ff9c483033ba.jpg", - "response": "In the image there is a female construction worker wearing a blue shirt and a red scarf. She is standing on a construction site holding a black belt with a hook on it. There are several rolls of steel cables next to her. In the background there is a building under construction with several floors built and some scaffolding.", - "id": 31092 - }, - { - "image_path": "G:\\images\\combined\\005266_jpg.rf.0f371e76393ad515677c7378ba5ba58d.jpg", - "response": "A construction site with multiple workers and equipment.", - "id": 31093 - }, - { - "image_path": "G:\\images\\combined\\005267_jpg.rf.b255620abd1f24b8634abc83747887cd.jpg", - "response": "A woman wearing a pink and white shirt is talking to a group of four men wearing green and yellow hard hats. They are all holding papers and one of the men is holding a pen. They are standing in front of a white truck and a building. There is also a banner in the background that says in red Chinese characters, \"safety first\".", - "id": 31094 - }, - { - "image_path": "G:\\images\\combined\\005269_jpg.rf.823eed31e8feb4498986965058804a78.jpg", - "response": "The photo shows a group of men walking down a red carpet. The men are wearing suits and the carpet is located in front of a building. Some of the men are wearing ties.", - "id": 31095 - }, - { - "image_path": "G:\\images\\combined\\00526_jpg.rf.1132fb5c61d374a6cef4c1d0cc790ae4.jpg", - "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", - "id": 31096 - }, - { - "image_path": "G:\\images\\combined\\00526_jpg.rf.5d22d0dc6bf6ea8eae18674d41627f1e.jpg", - "response": "A man wearing a yellow hard hat sitting at a table with another man wearing a black shirt and a yellow hard hat.", - "id": 31097 - }, - { - "image_path": "G:\\images\\combined\\005270c5d6e6b6d6.jpg", - "response": "A black car is parked on the street in front of a building. The building has a Christmas tree inside of it. There is a Fat Head's Saloon on the street corner.", - "id": 31098 - }, - { - "image_path": "G:\\images\\combined\\005270_jpg.rf.3f14bfb99dabc6a3bcb204ba77cf3aeb.jpg", - "response": "A group of people walking down a street.", - "id": 31099 - }, - { - "image_path": "G:\\images\\combined\\005271_jpg.rf.7598c216f65bf87d5835c5b68d617e70.jpg", - "response": "A man in a blue shirt and blue hat fixing an electrical box on the side of a building.", - "id": 31100 - }, - { - "image_path": "G:\\images\\combined\\005272_jpg.rf.d988e346b8dd77d768c8339776a4dbf5.jpg", - "response": "A group of men standing around a table with a laptop and projector on it.", - "id": 31101 - }, - { - "image_path": "G:\\images\\combined\\005274_jpg.rf.7a3e2abde6dc057bd8bdce2abe910e6c.jpg", - "response": "A group of workers are working on a construction site. They are wearing yellow hard hats and t-shirts and are standing on a walkway. One worker is on the left holding a tool, one worker is in the middle raising their right arm, and another worker is on the right. In the background, there is a pile of sand.", - "id": 31102 - }, - { - "image_path": "G:\\images\\combined\\005275_jpg.rf.1c1fcc7873ec51a53f41ac1a080df3e4.jpg", - "response": "a group of people standing around a model city", - "id": 31103 - }, - { - "image_path": "G:\\images\\combined\\005276_jpg.rf.e6c9ac062281623fc7b1e64bf09285b7.jpg", - "response": "A couple of men in blue work clothes are on a ladder working on power lines.", - "id": 31104 - }, - { - "image_path": "G:\\images\\combined\\005277_jpg.rf.fea6d2282fde83b3592bbf69acc8cbe8.jpg", - "response": "A construction worker wearing a yellow shirt and blue pants is on a scaffolding. He is wearing a yellow helmet and holding a blue tool in his right hand. He is in the process of climbing down the scaffolding. The sky is a clear blue and the sun is shining.", - "id": 31105 - }, - { - "image_path": "G:\\images\\combined\\005278_jpg.rf.f9b7b7890fb1f09034a483a602957af0.jpg", - "response": "In the image, there is a person wearing a yellow and white safety vest and a white hat standing on a construction site. The person is holding a small device and is inspecting something. There are several other people in the background, some wearing red and yellow hats, and one person is carrying a large bag. The whole scene is set in an unfinished building with lots of steel bars.", - "id": 31106 - }, - { - "image_path": "G:\\images\\combined\\005279_jpg.rf.ab9c0746159b810e27955c89e02ea73b.jpg", - "response": "In the image there are three people working on the right side of the image. They are wearing yellow helmets and are standing next to a large\u7b3c\u5b50\u7ed3\u6784. The\u7b3c\u5b50 is made of steel and is gray in color. It is being built in front of a blue warehouse. On the right side of the warehouse, there is a red container. In the background, there is a yellow machine. On the floor, there are several wires. The image is taken outside.", - "id": 31107 - }, - { - "image_path": "G:\\images\\combined\\00527_jpg.rf.d3aaec57e3ddb1b0f5cfa5a5a1cbc9b2.jpg", - "response": "A group of people wearing hard hats are looking at a blueprint together outside a construction site.", - "id": 31108 - }, - { - "image_path": "G:\\images\\combined\\005280_jpg.rf.de839fe65ff0c2f60e8cb3f60475bf84.jpg", - "response": "A group of men in blue work uniforms are standing on a ladder and climbing on a large metal structure that is part of a power pole. They are all reaching up to work on the metal structure.", - "id": 31109 - }, - { - "image_path": "G:\\images\\combined\\005281_jpg.rf.24e8ab22d968f4be2d6d52e9c9ed2163.jpg", - "response": "An electrician is working on power lines.", - "id": 31110 - }, - { - "image_path": "G:\\images\\combined\\005282_jpg.rf.97d75d4ddc826373748053d7cf98da10.jpg", - "response": "A man wearing a yellow vest and a yellow hard hat is holding a cell phone to his ear. He is standing on a construction site holding a plan.", - "id": 31111 - }, - { - "image_path": "G:\\images\\combined\\005283_jpg.rf.cf80559bc187d4e8ddcc370761b69e3b.jpg", - "response": "A group of men are working on a power box.", - "id": 31112 - }, - { - "image_path": "G:\\images\\combined\\005285_jpg.rf.059c35afb0e14ff0645ee1260514dd63.jpg", - "response": "A worker wearing a yellow hat that says \"30\" on it.", - "id": 31113 - }, - { - "image_path": "G:\\images\\combined\\005286_jpg.rf.4360ec7bf2bd7bd0aaf23b07b1333061.jpg", - "response": "A group of men sitting around a table.", - "id": 31114 - }, - { - "image_path": "G:\\images\\combined\\005287_jpg.rf.67eedf6be6d37dacded6115cbfc7eecd.jpg", - "response": "In the image there is a large tunnel that is unfinished on the right side. In the center of the tunnel there are two workers wearing orange jackets and red hats, one is using a pick and the other is using a shovel. They are working on the ground which is wet and some parts are flooded. There are some yellow barriers on the left side of the workers and a yellow crane in the background. The tunnel walls are gray and white and the ceiling is gray.", - "id": 31115 - }, - { - "image_path": "G:\\images\\combined\\005288_jpg.rf.880707e9e94b6047ffe0d6123c31136b.jpg", - "response": "A man and a woman wearing hard hats looking at blueprints in a construction site.", - "id": 31116 - }, - { - "image_path": "G:\\images\\combined\\00528_jpg.rf.94829cc4ee87f1f983d8441c93a71bce.jpg", - "response": "a group of men standing in front of a building", - "id": 31117 - }, - { - "image_path": "G:\\images\\combined\\005290_jpg.rf.57c7035a779f09856151d941ec5c605e.jpg", - "response": "A worker in a white shirt and wearing a blue hat is sitting on the ground. They are wearing a white mask and are working with a bag of white stuff. There are two other workers in the background. One is in the far background on the left and the other is in the far background on the right. They are both wearing blue hats and one is wearing a white shirt and the other is wearing a blue shirt.", - "id": 31118 - }, - { - "image_path": "G:\\images\\combined\\005292_jpg.rf.8ea8d1263a716e26db8c4f0560bbc59a.jpg", - "response": "An elderly worker wearing a red helmet is operating a circular saw at a construction site. He is wearing a grey shirt, a grey vest and a brown apron. There are several other workers at the site, some are standing around, some are working with metal rods and some are standing near a building that is under construction. The sky is dark and it seems to be an overcast day.", - "id": 31119 - }, - { - "image_path": "G:\\images\\combined\\005294_jpg.rf.89f8b4143b3d7f49dafbd1f824f274a8.jpg", - "response": "In the image there are three people working on a construction site. Two of them are wearing white helmets and are carrying a wooden beam on their shoulders. They are located on a wooden platform that is supported by a metal scaffolding. Another person, wearing a white helmet, is standing below them. Another person, wearing a yellow helmet, is standing below the platform, also working on the construction. The background is blurry, and the image is captured in black and white.", - "id": 31120 - }, - { - "image_path": "G:\\images\\combined\\005295_jpg.rf.d93fd5bd30bdd91ca6ea31ce88a73e86.jpg", - "response": " Two engineers(411,420),(586,997)(216,311),(421,757) standing in front of a pile(0,578),(997,997) of pipes", - "id": 31121 - }, - { - "image_path": "G:\\images\\combined\\005296_jpg.rf.dda8589ee2c798da7280d14556e142f0.jpg", - "response": "a group of people standing in front of a sign", - "id": 31122 - }, - { - "image_path": "G:\\images\\combined\\005297_jpg.rf.ee15b6f937098a4149818b185e7c0e38.jpg", - "response": "In the image there is a worker wearing a white uniform and a yellow helmet, who is operating a machine that controls the steel refining process. The worker is surrounded by sparks flying in all directions, some of which are bright yellow and some are white. There are also some red hot steel bars in the scene.", - "id": 31123 - }, - { - "image_path": "G:\\images\\combined\\005298_jpg.rf.40be6ba37593027b88c104000bfa97cb.jpg", - "response": "Men working on a train in a tunnel.", - "id": 31124 - }, - { - "image_path": "G:\\images\\combined\\005298_jpg.rf.e55dc25c5d9460a29beae55f257dfa78.jpg", - "response": "The image shows a group of workers inside a large tunnel. The tunnel is white and grey in color and has a concrete wall. The workers are wearing blue uniforms and yellow helmets. Some of them are working on a rail system inside the tunnel. There are also some white boxes and a red pipe in the foreground.", - "id": 31125 - }, - { - "image_path": "G:\\images\\combined\\005299_jpg.rf.3afc600ae068b257160bd4a39052689b.jpg", - "response": "A man is climbing down a mountain using a rope. He is wearing yellow shorts and a yellow hat. He is also barefoot.", - "id": 31126 - }, - { - "image_path": "G:\\images\\combined\\005299_jpg.rf.5c997c11c980a267db4d0375413724cc.jpg", - "response": "A child(456,269),(680,800) climbing a steep mountain path using a long stick(77,233),(999,428)", - "id": 31127 - }, - { - "image_path": "G:\\images\\combined\\00529_jpg.rf.32f1fbbe75af7666f6fd63fc33712f28.jpg", - "response": "In the image there are two engineers in safety jackets and blue helmets, one man and one woman, they are talking about the project in front of the brick building.", - "id": 31128 - }, - { - "image_path": "G:\\images\\combined\\0052c92026c934e5.jpg", - "response": "The image shows a group of people standing around a track, with a few athletes wearing green and yellow uniforms. There are several other people standing and sitting around the track, and a few camera equipment items are visible in the scene. Some backpacks and other personal items are scattered around the area, indicating that this may be a training or competition setting. The track itself has a red surface and is surrounded by a fence.", - "id": 31129 - }, - { - "image_path": "G:\\images\\combined\\005300_jpg.rf.749639f9b4fecd3a762597bdcfd1677e.jpg", - "response": "A construction vehicle with a large front loader.", - "id": 31130 - }, - { - "image_path": "G:\\images\\combined\\005300_jpg.rf.d0fbafaaac086f0a5a3b90fa919f1dd2.jpg", - "response": "A man in orange standing in front of a yellow bulldozer.", - "id": 31131 - }, - { - "image_path": "G:\\images\\combined\\005301_jpg.rf.76f27e5611ab711cb6c516a371fa37ff.jpg", - "response": "A group of people sitting around a table.", - "id": 31132 - }, - { - "image_path": "G:\\images\\combined\\005301_jpg.rf.eebc01f2cf37b818a3cf7851a17beee5.jpg", - "response": "A group of people sitting around a table.", - "id": 31133 - }, - { - "image_path": "G:\\images\\combined\\005302_jpg.rf.299dfbf20c7baf71ae1b8adfadf21767.jpg", - "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a metal railing and appears to be focused on his work. He is holding a tool in his hand and appears to be working on a power line. The background is hazy and there are some mountains visible in the distance.", - "id": 31134 - }, - { - "image_path": "G:\\images\\combined\\005302_jpg.rf.edcea69a36e0d95683d906d8543f7bed.jpg", - "response": "In the image, there is a man wearing a blue helmet and white overalls. He is sitting on a ladder and appears to be working on a power line. He is holding a tool in his hand and appears to be focused on his task.", - "id": 31135 - }, - { - "image_path": "G:\\images\\combined\\005303_jpg.rf.2744d56ca67d509837d0308386410c3d.jpg", - "response": "The image shows a construction site where several workers are working. In the foreground, two workers are crouched down working on a square hole in the ground. Another worker is standing in the background, and two more are in the far background. In the middle ground, there is a long white building with Chinese characters on the second floor. The characters say \"\u5f3a\u5316\u5b89\u5168\u6587\u5316\". There is a red roof on the white building. On the right side of the image, there is a long sidewalk.", - "id": 31136 - }, - { - "image_path": "G:\\images\\combined\\005303_jpg.rf.54be7c16f2ddd8094e4a2fa3bb5e1c82.jpg", - "response": "The image shows a construction site where several workers are working. There are three workers in the foreground, all wearing blue shirts and pants, with the one on the left crouching down and the other two standing further back. They are working on a square hole in the ground. In the background, there are three other workers, one near the left side of the image, one in the center, and one on the right side. There is also a white and red sign on a building in the background.", - "id": 31137 - }, - { - "image_path": "G:\\images\\combined\\005304_jpg.rf.503db9e2b279bb8ac286d27e61aac098.jpg", - "response": "A group of people standing next to each other wearing hard hats.", - "id": 31138 - }, - { - "image_path": "G:\\images\\combined\\005304_jpg.rf.c6f7a615401fecde737ba67da3cb0441.jpg", - "response": "A group of people wearing hard hats standing in front of a wall of wood.", - "id": 31139 - }, - { - "image_path": "G:\\images\\combined\\005305_jpg.rf.0f5e9815eeec8247989af2c312f9cd3c.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, who is working on a yellow and orange construction site. The worker is in the process of cutting a red pipe with a hand saw, which is located on a ladder. The sky in the background is a clear blue and the sun is shining.", - "id": 31140 - }, - { - "image_path": "G:\\images\\combined\\005305_jpg.rf.fa63e400c407fe9118f913e47721b7eb.jpg", - "response": "In the image there is a construction worker wearing a yellow hard hat, standing next to a yellow building. The worker is holding a hammer and is working on a red pipe. The sky is blue with a few clouds.", - "id": 31141 - }, - { - "image_path": "G:\\images\\combined\\005306_jpg.rf.dede82be4b4f46a2a5ce57c1cd9db487.jpg", - "response": "A man is using a sledge hammer to drive a large spool of wire into the ground. The man is wearing a yellow hard hat and black overalls. Next to him are two large spools of wire, one on the left and one on the right. In the background, there are two more spools of wire, one on the left and one on the right.", - "id": 31142 - }, - { - "image_path": "G:\\images\\combined\\005306_jpg.rf.eb011f3d7414440d61a4699c44fd1b96.jpg", - "response": "A man with a hammer is working on a tower.", - "id": 31143 - }, - { - "image_path": "G:\\images\\combined\\005307_jpg.rf.933bd765b94764b4de3c76100dee3f6b.jpg", - "response": "A man carrying a bag on his shoulder walks past a construction site. In the background, there are buildings and a crane.", - "id": 31144 - }, - { - "image_path": "G:\\images\\combined\\005307_jpg.rf.d6fce62326eb7ee772c3c0bae2dc8f85.jpg", - "response": "The photo shows a demolition site in the city of Xuzhou, East China's Jiangsu province. A large yellow crane is seen on the right, with a man carrying a large bag of sand on his back in the middle of the photo. The background shows a row of houses being demolished.", - "id": 31145 - }, - { - "image_path": "G:\\images\\combined\\005308_jpg.rf.69527bb7b4977b88ed1bf2d0f13625aa.jpg", - "response": "Three men in hard hats are looking at a set of plans on the ground. They are all holding notebooks and one man is holding a measuring tape. They appear to be in the process of planning a construction project.", - "id": 31146 - }, - { - "image_path": "G:\\images\\combined\\005308_jpg.rf.8952a0c38b9a0d877ce7f8cd8b1318e8.jpg", - "response": "Three men looking at a blueprint on the ground. One man is wearing a yellow hard hat, a yellow and gray vest, and a orange safety vest. Another man is wearing a white hard hat and a gray shirt. The third man is wearing a white shirt and gray pants.", - "id": 31147 - }, - { - "image_path": "G:\\images\\combined\\005309_jpg.rf.43cf3df41da5d490a1e826bd6347dfac.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and orange helmets. The men are standing side by side and seem to be working on the same task. One of the men is on the left side of the image and the other one is on the right side. The machinery they are working on is black and is connected to a yellow hose. The men are standing on the ground and the sky above them is blue.", - "id": 31148 - }, - { - "image_path": "G:\\images\\combined\\005309_jpg.rf.6f90ae388763043bb0d2e387b7b9a48b.jpg", - "response": "In the image two men are working on a piece of machinery. They are both wearing orange work clothes and hard hats. The men are standing next to each other and seem to be working on the same task.", - "id": 31149 - }, - { - "image_path": "G:\\images\\combined\\005310_jpg.rf.17f8d053e5d61387e064fde061c28c92.jpg", - "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow tractor. The man is holding a large rock in his left hand. There is a bucket on the front of the tractor. The tractor is on top of a pile of dirt.", - "id": 31150 - }, - { - "image_path": "G:\\images\\combined\\005310_jpg.rf.e5225e4620dbcb6efdf19d27e7cb58fb.jpg", - "response": "A man in a yellow vest and white hard hat is standing in front of a large blue and yellow piece of machinery. The man is holding a large rock in his left hand. The sky is blue and there are no other people or animals visible in the image.", - "id": 31151 - }, - { - "image_path": "G:\\images\\combined\\005311_jpg.rf.0c49375e7458652c18d5c237e2796923.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", - "id": 31152 - }, - { - "image_path": "G:\\images\\combined\\005311_jpg.rf.a89d0ac0226ea5e861b957fc5657de16.jpg", - "response": "A man and woman wearing hard hats are looking at blueprints with a construction worker.", - "id": 31153 - }, - { - "image_path": "G:\\images\\combined\\005312_jpg.rf.6ebfc77757c6b070d42d01c1a888daed.jpg", - "response": "A construction site with many tall buildings in the background.", - "id": 31154 - }, - { - "image_path": "G:\\images\\combined\\005312_jpg.rf.fc5547d2f0bab5f1b59429098dd1355a.jpg", - "response": "A construction site with a man walking on a grate.", - "id": 31155 - }, - { - "image_path": "G:\\images\\combined\\005313_jpg.rf.744a580cf6a0f68b8a6523c5ee3b2ffe.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt.", - "id": 31156 - }, - { - "image_path": "G:\\images\\combined\\005313_jpg.rf.a2534ae67b7f5de2cb18976033ae3ced.jpg", - "response": "A man wearing a yellow hard hat and a blue shirt looks off into the distance. He has a mustache and is wearing a yellow hard hat. He is also wearing a black cord around his neck. He is in front of a building.", - "id": 31157 - }, - { - "image_path": "G:\\images\\combined\\005314_jpg.rf.131cf9b7559a559f57bec50dd1b73160.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a large metal rod, and one of them is using a tool on the end of it. The bridge is a steel arch bridge with a yellow railing. The workers are on the side of the bridge, and there is a steep drop below them. There is also a road next to the bridge, with a car driving on it.", - "id": 31158 - }, - { - "image_path": "G:\\images\\combined\\005314_jpg.rf.bcc21e0849b1331dbddbea574cfe9c1b.jpg", - "response": "A group of workers in blue uniforms and yellow hats are working on a bridge. They are all holding onto a bar with one of them using a tool.", - "id": 31159 - }, - { - "image_path": "G:\\images\\combined\\005315_jpg.rf.25180a61e04ab7fb308eca6aad036e15.jpg", - "response": "A construction site with two workers on ladders.", - "id": 31160 - }, - { - "image_path": "G:\\images\\combined\\005315_jpg.rf.80373adda96a6fa50075740416f6376f.jpg", - "response": "A construction site with two workers on ladders.", - "id": 31161 - }, - { - "image_path": "G:\\images\\combined\\005316_jpg.rf.191ac10bbedd415f18b70c5971667b87.jpg", - "response": "A group of men standing around a construction site.", - "id": 31162 - }, - { - "image_path": "G:\\images\\combined\\005316_jpg.rf.7818fadb96e3d2f77daee5282e6b6c10.jpg", - "response": "A group of men standing around a construction site.", - "id": 31163 - }, - { - "image_path": "G:\\images\\combined\\005317_jpg.rf.4723d1fcdc32c6fd0ffef86141789ece.jpg", - "response": "The image shows a group of workers in blue uniforms and yellow hard hats gathered around a manhole. The workers are wearing blue uniforms and yellow hard hats. There are several bottles and a bowl on the ground around the manhole.", - "id": 31164 - }, - { - "image_path": "G:\\images\\combined\\005317_jpg.rf.adc7d5b53fb1ef66f2e4a8a4f7f59359.jpg", - "response": "The image shows a group of workers in blue uniforms and hard hats working together to remove a manhole cover. The workers are huddled around the open manhole, with some standing on the cover and others leaning over the edge. There are several bottles and a cup on the ground near the workers, possibly containing tools or drinks. The scene is set outdoors, with trees and a bench visible in the background.", - "id": 31165 - }, - { - "image_path": "G:\\images\\combined\\005318_jpg.rf.2a4bc11dd908fc7b02b2d0bba51d8b1d.jpg", - "response": "a group of men walking in front of a building under construction", - "id": 31166 - }, - { - "image_path": "G:\\images\\combined\\005319_jpg.rf.5f4f7a39dcceb947c1425e6accf211ba.jpg", - "response": "A worker is working on a construction site with a tunnel in the background.", - "id": 31167 - }, - { - "image_path": "G:\\images\\combined\\005319_jpg.rf.a6c69ea3e955dae3048d9d1f7ec55356.jpg", - "response": "A worker is seen here working on the construction of the Jia Bahe Line. The tunnel is situated in the mountains and is being worked on.", - "id": 31168 - }, - { - "image_path": "G:\\images\\combined\\005320_jpg.rf.cf81d5abb817495e03ae00aa2382916a.jpg", - "response": "A man wearing a yellow hard hat and an orange vest is using a tool to lay bricks.", - "id": 31169 - }, - { - "image_path": "G:\\images\\combined\\005321_jpg.rf.045d7cf963d2abc04a2d85234e3fda28.jpg", - "response": "A couple of men in blue overalls and yellow hard hats are working on a large piece of equipment.", - "id": 31170 - }, - { - "image_path": "G:\\images\\combined\\005322_jpg.rf.1b99b1dea9224153a015716851c25321.jpg", - "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", - "id": 31171 - }, - { - "image_path": "G:\\images\\combined\\005322_jpg.rf.bf864eadb04eb98b0ca7eb41427568e8.jpg", - "response": "A man wearing a hard hat and orange high visibility vest stands in front of a wall with pipes. He has his arms crossed and is looking at the camera.", - "id": 31172 - }, - { - "image_path": "G:\\images\\combined\\005323_jpg.rf.4c2b1aa33a79c60307ca5bee4769f598.jpg", - "response": "A group of three workers are working on a construction site. They are all wearing hard hats and are working on a yellow piece of machinery. The man on the left is sitting down and operating a red and yellow machine. The man in the middle is working on the yellow machine and the man on the right is standing behind the red drum. There is a ladder in the bottom right corner of the image.", - "id": 31173 - }, - { - "image_path": "G:\\images\\combined\\005323_jpg.rf.f515d3a3e2dae60567494781accf7924.jpg", - "response": "A group of three men working on a construction site.", - "id": 31174 - }, - { - "image_path": "G:\\images\\combined\\00532432aafd3fb7.jpg", - "response": "A large black building with a sign that says Coach and Horses.", - "id": 31175 - }, - { - "image_path": "G:\\images\\combined\\005324_jpg.rf.7445a1847a4e8edec964e3ecfe3959b6.jpg", - "response": "An electrician is working on power lines high up in the air.", - "id": 31176 - }, - { - "image_path": "G:\\images\\combined\\005325_jpg.rf.24725e4737d81b6a257e5106cf48eabf.jpg", - "response": "The image shows a group of men gathered around a model of a city. They are standing behind a glass model of the city, which includes buildings, a river, and a soccer field. The men are looking down at the model, which is displayed on a table. Some of the men are wearing ties.", - "id": 31177 - }, - { - "image_path": "G:\\images\\combined\\005325_jpg.rf.8ffaf76a6c3691e1686d06af2dc26e8f.jpg", - "response": "A group of men standing around a model of a city.", - "id": 31178 - }, - { - "image_path": "G:\\images\\combined\\005326_jpg.rf.fd44647274d5619ac283f1956f46a3bd.jpg", - "response": "A construction worker is working on some steel bars.", - "id": 31179 - }, - { - "image_path": "G:\\images\\combined\\005327_jpg.rf.0f8d06865d518459828cf8b17db1d738.jpg", - "response": "A group of people working on a building construction site.", - "id": 31180 - }, - { - "image_path": "G:\\images\\combined\\005327_jpg.rf.4e678ef10ad605affa040323c8f6ef62.jpg", - "response": "The image shows a construction site with several workers present. There are a few buildings in the background, one on the left and another on the right. In the foreground, there is a large structure that appears to be a foundation or a framework for a building. The workers are engaged in various tasks, with one using a tool to make some adjustments to the framework, another holding a hose, and the third working on something on the ground. The fourth worker is further back, almost hidden by the framework. The fifth worker is on the right side of the image, closer to the right edge of the frame.", - "id": 31181 - }, - { - "image_path": "G:\\images\\combined\\005328_jpg.rf.71ab03611dda8a9e2a3a49996679bbea.jpg", - "response": "A man in a red hard hat is kneeling on the ground next to a long white pipe. He is wearing a grey jacket and brown work boots. There is a yellow tool belt around his waist. He is working on a construction site that has metal framing for walls. The ground is wet and there is a large patch of concrete next to him. There is also a small amount of yellow flowers growing in the concrete.", - "id": 31182 - }, - { - "image_path": "G:\\images\\combined\\005329_jpg.rf.eacdba8c9558ea8da4830580c71611b7.jpg", - "response": "A man wearing an orange shirt and a red hard hat stands in front of a construction site.", - "id": 31183 - }, - { - "image_path": "G:\\images\\combined\\005330_jpg.rf.7279bf0bc35125d12f79a05af8b6bdff.jpg", - "response": "A man in a white shirt and orange hard hat is talking to a worker in a white shirt and red hard hat who is sitting on a yellow forklift. The man in the red hard hat has a white rag on his head and a bandage on his left leg, which is wrapped tightly. The man standing is holding a blue bottle in his hand. The background shows a pile of bricks and a white car.", - "id": 31184 - }, - { - "image_path": "G:\\images\\combined\\005330_jpg.rf.c614f25a2f56017701b01f16cfc87ca4.jpg", - "response": "A man is sitting on a construction site with a bandaged foot. Another man is holding a water bottle in his hand. They are both wearing yellow and red helmets.", - "id": 31185 - }, - { - "image_path": "G:\\images\\combined\\005331_jpg.rf.45e006a73cfb5ddaf53acfea587baf5d.jpg", - "response": "a group of men wearing hard hats", - "id": 31186 - }, - { - "image_path": "G:\\images\\combined\\005331_jpg.rf.75963ede3722576112dc4688142a3f55.jpg", - "response": "a group of men wearing hard hats", - "id": 31187 - }, - { - "image_path": "G:\\images\\combined\\005332_jpg.rf.fe2a60c5a1c166aa29d4a3c8a9725995.jpg", - "response": "A group of men working in a mine.", - "id": 31188 - }, - { - "image_path": "G:\\images\\combined\\005333_jpg.rf.04725ccb43a3336655a878f13bc28ff1.jpg", - "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with metal rods and other materials. There is a yellow crane in the background.", - "id": 31189 - }, - { - "image_path": "G:\\images\\combined\\005333_jpg.rf.14ffd35b1c6abf7a78ed9dcee58d12ec.jpg", - "response": "In the image there are two construction workers wearing red shirts and safety gear. They are working on a bridge that appears to be incomplete. They are building the bridge with red and silver metal bars. There is a yellow crane in the background.", - "id": 31190 - }, - { - "image_path": "G:\\images\\combined\\005334_jpg.rf.43614ae79560b15f5e8f77bf6c129f41.jpg", - "response": "The image shows a group of men wearing blue shirts and red helmets working on a construction site. They are building a structure out of concrete blocks and mixing cement in a black bucket. The scene is outdoors and there is a banner in the background.", - "id": 31191 - }, - { - "image_path": "G:\\images\\combined\\005334_jpg.rf.e0fd9cc2ae3b3b2fbaaa64becff3298e.jpg", - "response": "The image shows a construction site with several workers. Some of them are wearing blue shirts and red helmets. They are working on a project that involves laying bricks. There are bricks laid out in a grid pattern on the ground, and workers are mixing concrete in buckets and spreading it on the bricks. In the background, there is a large banner advertising a construction company.", - "id": 31192 - }, - { - "image_path": "G:\\images\\combined\\005335_jpg.rf.2aec75b9c98802c65b8997fb6f0696c2.jpg", - "response": "An aerial view of a worker in a blue uniform and blue hard hat, climbing on a metal tower to work on the power lines. The tower is silver and is located in a forest. There are power lines running to the tower from both sides. There is a building visible at the bottom left of the image and a mountain in the background.", - "id": 31193 - }, - { - "image_path": "G:\\images\\combined\\005336_jpg.rf.35d6bfe163ddb1cacbf8b0194a87371f.jpg", - "response": "A man holding a blueprint standing next to another man in front of a building under construction.", - "id": 31194 - }, - { - "image_path": "G:\\images\\combined\\005336_jpg.rf.3cb3a1a96589e515978816e01ccd2775.jpg", - "response": "A construction worker standing in front of a building under construction holding a blueprint.", - "id": 31195 - }, - { - "image_path": "G:\\images\\combined\\005337_jpg.rf.a27c7631ce3982a243a656823e5da07c.jpg", - "response": "The image shows a large construction site with several workers. In the foreground, three workers are wearing orange jumpsuits and yellow helmets, with one on the left, another in the center, and the third further to the right. They are standing in front of a large piece of equipment, a bright blue backhoe with a red bow on it. The workers appear to be engaged in digging or moving dirt.", - "id": 31196 - }, - { - "image_path": "G:\\images\\combined\\005337_jpg.rf.cecc40647b3daff6ba0a2376eda380a4.jpg", - "response": "The image shows a large construction site with a big digger in the middle. The digger is turquoise and grey and is parked on a dirt patch. There are three workers visible, one on the left, one in the middle, and one on the right. They are all dressed in orange suits and yellow helmets. The leftmost worker is also carrying a long wooden board. The workers are surrounded by a lot of dirt and rocks.", - "id": 31197 - }, - { - "image_path": "G:\\images\\combined\\005338_jpg.rf.42f7c24d475a3010d97afd21d3042f0b.jpg", - "response": "The image shows two men wearing red hard hats, one standing to the left of the other. They are in front of a building with a sign that says \"\u4e2d\u56fd\u5341\u4e03\u51b6\u96c6\u56e2\". The man on the left is putting a hard hat on the other man's head.", - "id": 31198 - }, - { - "image_path": "G:\\images\\combined\\005338_jpg.rf.99869826a89cfd40fb7bb6f99c1e5964.jpg", - "response": "The image shows two men wearing red hard hats, one orange and one white, standing in front of a building. The men are both wearing black clothing. One of the men is putting a red hard hat on the other man's head.", - "id": 31199 - }, - { - "image_path": "G:\\images\\combined\\005339_jpg.rf.88451ee34e29ad88332635f99e6f97cf.jpg", - "response": "A worker in a blue shirt and yellow hard hat stands in a room with debris on the floor. The room has white walls and debris is scattered across the floor. There is a pile of debris in the center of the room and a large hole in the wall on the right. A man is visible in the background on the left side of the room.", - "id": 31200 - }, - { - "image_path": "G:\\images\\combined\\005340_jpg.rf.738fc3f780e8292821fc631146d693da.jpg", - "response": "A man walking in front of a construction site with a green building under construction. There are several cars parked in front of the building and a few people standing around. There are also several flags in the scene.", - "id": 31201 - }, - { - "image_path": "G:\\images\\combined\\005340_jpg.rf.acaa72a8d37c98303ca4af7720fe8695.jpg", - "response": "A man walking in front of a construction site with a few cranes working on a building in the background.", - "id": 31202 - }, - { - "image_path": "G:\\images\\combined\\005341_jpg.rf.68fd142bfc21b547f86415d3603f8739.jpg", - "response": "Two men in red\u5b89\u5168\u5e3d, looking at a paper.", - "id": 31203 - }, - { - "image_path": "G:\\images\\combined\\005341_jpg.rf.e18e7a9ad9e32952d1d7022d417675f2.jpg", - "response": "The image shows two men wearing red\u5b89\u5168\u5e3d, looking at a sheet of paper. They are both dressed in brown, seemingly industrial work clothes. One man is on the left side of the image, and is slightly larger and closer to the left edge of the frame. He is wearing a red safety helmet and holding the paper. The other man is on the right side of the image, closer to the center. He is also wearing a red safety helmet, and is looking at the paper with the first man. He is slightly shorter and appears to be slightly older.", - "id": 31204 - }, - { - "image_path": "G:\\images\\combined\\005342_jpg.rf.4c587c8c7eef2c666721cbe614023bfd.jpg", - "response": "A group of men working on a construction site.", - "id": 31205 - }, - { - "image_path": "G:\\images\\combined\\005342_jpg.rf.fb85f925cf2e9522009747461ce9ebe1.jpg", - "response": "A group of men working on a construction site.", - "id": 31206 - }, - { - "image_path": "G:\\images\\combined\\005343_jpg.rf.8d8ee011c1172e9173621ad74b600dcf.jpg", - "response": "A group of five construction workers wearing hard hats are working on a construction site. They are working on a large area of metal rebar that is laid out in a grid pattern. In the background there are several buildings under construction.", - "id": 31207 - }, - { - "image_path": "G:\\images\\combined\\005343_jpg.rf.df787511981e2d0bbdb20756c4b5805b.jpg", - "response": "A group of five construction workers wearing red hats are working on a building.", - "id": 31208 - }, - { - "image_path": "G:\\images\\combined\\005344_jpg.rf.0202f9bf0d4f40ea7b157eaab68cbbe1.jpg", - "response": "A couple of men standing in a doorway of a blue structure.", - "id": 31209 - }, - { - "image_path": "G:\\images\\combined\\005344_jpg.rf.1aa92da4f326a16e15455b84a44c1533.jpg", - "response": "A large blue metal box with the number 1028 on the side of it.", - "id": 31210 - }, - { - "image_path": "G:\\images\\combined\\005345_jpg.rf.8661b1a175917170321480f4a8ffaee2.jpg", - "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is working on a construction site, the wall is made of bricks and the person is working on a piece of wood.", - "id": 31211 - }, - { - "image_path": "G:\\images\\combined\\005345_jpg.rf.e7044f6e7fe3ccdf2716659059a38217.jpg", - "response": "In the image there is a person wearing a yellow helmet and a blue shirt, the person is building a brick wall and is currently working on the second floor of a building that is not yet complete. The person is also wearing a yellow helmet and blue jeans.", - "id": 31212 - }, - { - "image_path": "G:\\images\\combined\\005346_jpg.rf.6bbe44db9553dd9962f9dd3c4548cb58.jpg", - "response": "A group of people standing around in a circle. Some of them are wearing hard hats. In the background there is a street with cars. To the far left there is a yellow sign with Chinese characters on it. There is also a blue sign with Chinese characters on it in the background.", - "id": 31213 - }, - { - "image_path": "G:\\images\\combined\\005347_jpg.rf.22f0b22db051ee350c3b581d20bf66d3.jpg", - "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a cage. The worker on the left is using a tool to cut rebar, while the worker on the right is operating a jackhammer. The concrete surface is wet and there are several pipes visible in the background.", - "id": 31214 - }, - { - "image_path": "G:\\images\\combined\\005347_jpg.rf.4bf6321e3df3b648839a6f38129b65b1.jpg", - "response": "The image shows two construction workers at a construction site. They are working on a concrete structure that resembles a wall, with rebar sticking out of it. The worker on the left is using a tool to cut through the concrete, while the worker on the right is operating some machinery. The wall is painted brown and is located inside a large room. There are several pipes on the wall to the left of the workers and a large pipe on the right. The floor of the room is covered in concrete dust.", - "id": 31215 - }, - { - "image_path": "G:\\images\\combined\\005348_jpg.rf.68a154812d426cf0a30282fa8104efec.jpg", - "response": "A train track being worked on by some people.", - "id": 31216 - }, - { - "image_path": "G:\\images\\combined\\005348_jpg.rf.b2ed12539b4d5d17b42bf824036ae9b0.jpg", - "response": "A group of workers in yellow vests and hard hats are standing on a railway track. They are working on a machine with a box on it.", - "id": 31217 - }, - { - "image_path": "G:\\images\\combined\\005349_jpg.rf.01a9509534794d88f3d9dc9ff2e14d78.jpg", - "response": "A construction worker in a yellow helmet is standing on a scaffold.", - "id": 31218 - }, - { - "image_path": "G:\\images\\combined\\00534_jpg.rf.0aff2c1f6b059df0940f239cb0a130e8.jpg", - "response": "A group of men standing around each other.", - "id": 31219 - }, - { - "image_path": "G:\\images\\combined\\005350_jpg.rf.b9f92ad5c2cb941710d48bf56bc65f7c.jpg", - "response": "A man wearing a white and red jacket and a hard hat.", - "id": 31220 - }, - { - "image_path": "G:\\images\\combined\\005350_jpg.rf.f86527858349a447a83607f3ff90f8da.jpg", - "response": "A man wearing a white and red jacket and a hard hat.", - "id": 31221 - }, - { - "image_path": "G:\\images\\combined\\005351_jpg.rf.ea6c031da03945b7f740b292937f5cf6.jpg", - "response": "A blue crane is lifting a yellow and white object.", - "id": 31222 - }, - { - "image_path": "G:\\images\\combined\\005351_jpg.rf.ff9383020b3250764d9daa616094019e.jpg", - "response": "A construction worker in a yellow safety vest and hard hat is standing under a large blue bridge. He is looking up at the bridge, which is suspended over a body of water. The bridge has a yellow crane on it, and there is a small boat nearby. The worker is holding a tool in his hand. The background is very dark, with only a few lights visible in the distance.", - "id": 31223 - }, - { - "image_path": "G:\\images\\combined\\005352_jpg.rf.735ced7bac5a2226be9cca07b792bd8a.jpg", - "response": "A group of three men in yellow hard hats and work clothes are standing in a factory. They are standing behind a large machine that has many pipes and knobs.", - "id": 31224 - }, - { - "image_path": "G:\\images\\combined\\005352_jpg.rf.74f2cc7a7f7c5ce5b958407e63a345e0.jpg", - "response": "A group of three men in yellow hard hats are working on a large machine. The machine is silver and has many pipes and knobs.", - "id": 31225 - }, - { - "image_path": "G:\\images\\combined\\005353_jpg.rf.501f143e61e19d17fedf6c7f89e6e21e.jpg", - "response": "In the image there is a construction site with multiple cranes working on building a new city. There is a man working on the construction site wearing a red helmet and gloves. He is working on a roof and is in the foreground of the image. In the background there are buildings under construction and a blue sky with some clouds.", - "id": 31226 - }, - { - "image_path": "G:\\images\\combined\\005353_jpg.rf.6ea1fba180c63a8cb8ffc9deca577e5a.jpg", - "response": "In the image there is a construction site with multiple cranes working on building a new city skyline. In the foreground, a worker is working on a roof with a red helmet, safety gloves, and a tool in his hand. The sky is blue with some clouds.", - "id": 31227 - }, - { - "image_path": "G:\\images\\combined\\005354_jpg.rf.2087fb0ebb905e8c0b1ea8b1cee0bbf3.jpg", - "response": "A man on a lift working on power lines.", - "id": 31228 - }, - { - "image_path": "G:\\images\\combined\\005354_jpg.rf.357432b5ef6fc3ccc528071a1041f4ae.jpg", - "response": "A man on a lift working on power lines.", - "id": 31229 - }, - { - "image_path": "G:\\images\\combined\\005355_jpg.rf.708eecd7e9c81c5651ea79bc14dd6054.jpg", - "response": "A group of people working on a construction site.", - "id": 31230 - }, - { - "image_path": "G:\\images\\combined\\005355_jpg.rf.fe520fc5b7196012525517b298922a43.jpg", - "response": "A group of people working on a construction site.", - "id": 31231 - }, - { - "image_path": "G:\\images\\combined\\005356_jpg.rf.4c4cb8b52ecf2f8b9faf7470c0492841.jpg", - "response": "A man in a red hard hat is holding a black trash bag with something in it. He is smiling and looking at the camera. To the left of him is another man also wearing a red hard hat and a black jacket. They are both in front of a mountain.", - "id": 31232 - }, - { - "image_path": "G:\\images\\combined\\005357_jpg.rf.2d9aefe77b22d3541f9c687db9042744.jpg", - "response": "An electrician is pointing to something on a circuit board while another electrician looks at it. They are both wearing blue and white hard hats.", - "id": 31233 - }, - { - "image_path": "G:\\images\\combined\\005358_jpg.rf.224bbd320d726768b5c083945cbc5694.jpg", - "response": "a group of people walking across a bridge", - "id": 31234 - }, - { - "image_path": "G:\\images\\combined\\005358_jpg.rf.836636834423c5de0e0e273f1e1ba062.jpg", - "response": "a group of people walking through a construction site", - "id": 31235 - }, - { - "image_path": "G:\\images\\combined\\005359_jpg.rf.83282f05c397ce00532edaec2e275adf.jpg", - "response": "A man in a red shirt and white helmet is pointing at a device. Another man in a red shirt and white helmet is standing next to him. They are both in a factory.", - "id": 31236 - }, - { - "image_path": "G:\\images\\combined\\005360_jpg.rf.5e79e9a1df76dcc3017738d56575f331.jpg", - "response": "The group of people are standing in a room with high, arched ceilings. They are all wearing ties and some of them are wearing hard hats.", - "id": 31237 - }, - { - "image_path": "G:\\images\\combined\\005360_jpg.rf.95dd2562a77c6cc989147e3bb399bbae.jpg", - "response": "A group of men standing in a room with hard hats on.", - "id": 31238 - }, - { - "image_path": "G:\\images\\combined\\005361_jpg.rf.7976fb0d2c0d8681cfa1bf62612b93e5.jpg", - "response": "Two men in red helmets are talking in a construction site.", - "id": 31239 - }, - { - "image_path": "G:\\images\\combined\\005361_jpg.rf.e817502af4c97c033cc094297f880666.jpg", - "response": "Two men in striped shirts and hard hats are talking in a construction site.", - "id": 31240 - }, - { - "image_path": "G:\\images\\combined\\005362_jpg.rf.1866ee3407aa04c78f3625b09459d9e2.jpg", - "response": "A group of students wearing orange vests and white helmets are talking to a worker in an orange vest and yellow helmet who is drinking water. The students are standing next to a large pipe.", - "id": 31241 - }, - { - "image_path": "G:\\images\\combined\\005362_jpg.rf.84b66168cb95ce9c559a8a6d7931af67.jpg", - "response": "A group of students wearing orange vests and white hats are standing in front of a large pipe. Some students are sitting on the ground next to the pipe. A man in a yellow hat and orange vest is standing to the right of the students, holding a cup. Another man in a yellow hat and orange vest is sitting on the ground to the right of the students. In the background, there is a large piece of construction equipment.", - "id": 31242 - }, - { - "image_path": "G:\\images\\combined\\005363_jpg.rf.0df21d3f78bd7492336e56558056cb90.jpg", - "response": "A group of men standing in front of a mining site", - "id": 31243 - }, - { - "image_path": "G:\\images\\combined\\005363_jpg.rf.dfa4667cd769ff2bfb4e4958124d23a8.jpg", - "response": " Miners(581,377),(699,827)(674,374),(777,848)(757,388),(915,893) standing in a quarry", - "id": 31244 - }, - { - "image_path": "G:\\images\\combined\\005364_jpg.rf.411c4ed689340ab8afdc6bc4b5f5dcf3.jpg", - "response": "A construction site with multiple workers.", - "id": 31245 - }, - { - "image_path": "G:\\images\\combined\\005364_jpg.rf.96c00ef68fc69650c53a78659b3087e7.jpg", - "response": "A construction site with multiple workers visible.", - "id": 31246 - }, - { - "image_path": "G:\\images\\combined\\005365_jpg.rf.a0b82283d36605fd4a561bc9df0289da.jpg", - "response": "A group of men in red hats looking at a clipboard.", - "id": 31247 - }, - { - "image_path": "G:\\images\\combined\\005365_jpg.rf.f3d197738847bc75667b4785ab65bf61.jpg", - "response": "A group of men standing around a construction site.", - "id": 31248 - }, - { - "image_path": "G:\\images\\combined\\005366_jpg.rf.76b0ea482fa125e465803633939d2ede.jpg", - "response": "An electrician is checking the power box.", - "id": 31249 - }, - { - "image_path": "G:\\images\\combined\\005366_jpg.rf.8d545f8e4b44dfdda533e962a8235a11.jpg", - "response": "An electrician in blue hard hat and grey work shirt looking at an electrical panel.", - "id": 31250 - }, - { - "image_path": "G:\\images\\combined\\005367_jpg.rf.78ee14110537f333417260ab05a4602c.jpg", - "response": "A meeting room with several people in it. Two men are sitting at a table and talking. One of the men is wearing a watch. There are a few cups on the table and a pen is on the table. In the background there are other people and a camera.", - "id": 31251 - }, - { - "image_path": "G:\\images\\combined\\005368_jpg.rf.f42f385623be860404ec2c9f0b542509.jpg", - "response": "A group of men in orange jumpsuits and hard hats are carrying a log over their shoulders. They are walking through tall grass and over a dirt road. In the background, there are power lines and a hill.", - "id": 31252 - }, - { - "image_path": "G:\\images\\combined\\005369_jpg.rf.5633199705194cc8b3e378499bd7ae76.jpg", - "response": "In the image there is a group of people wearing hard hats standing in front of a construction site. A man is holding a camera and taking a picture of the construction site. In the construction site there is a large piece of machinery.", - "id": 31253 - }, - { - "image_path": "G:\\images\\combined\\005369_jpg.rf.8b358eeeaab74c10317492e855f17a8b.jpg", - "response": "In the image there is a group of people standing around a construction site. Some of the people are wearing blue jackets and red hats. In front of the people, there is a pile of red hoses on the ground. To the right of the people, there is a large construction vehicle. Behind the construction vehicle, there is a large wooden pole. Under the wooden pole, there is a pile of yellow bricks. In front of the pile of bricks, there is a large cloud of grey smoke. The sky above the construction site is full of clouds.", - "id": 31254 - }, - { - "image_path": "G:\\images\\combined\\00536_jpg.rf.1389bad3d1baa9a43404b2084eb02144.jpg", - "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", - "id": 31255 - }, - { - "image_path": "G:\\images\\combined\\00536_jpg.rf.6bbce0903dc7fd685c5276a956c633e9.jpg", - "response": "A group of seven men standing on a construction site. They are all wearing hard hats. In front of them, there is a large amount of red bricks laid out on the ground. On the far right, there is a man wearing a white shirt and a brown belt. To the far left, there is a man wearing a grey shirt and black pants.", - "id": 31256 - }, - { - "image_path": "G:\\images\\combined\\005370_jpg.rf.63349612a3e3ec56532b588c16fb40d6.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a long narrow tool in their right hand. The sky is blue with a few thin clouds. In the background, there is a bridge under construction. The wooden beams of the bridge extend out in the background. There are also a few metal railings in the background.", - "id": 31257 - }, - { - "image_path": "G:\\images\\combined\\005370_jpg.rf.eae864da74165cb41bc5edebe17d390c.jpg", - "response": "A construction worker in a yellow hard hat and orange vest is kneeling down and working on a wooden beam. The worker is holding a hammer in his right hand and there is a small pile of nails next to him. The worker is also wearing a blue shirt and blue pants. The sky is blue and clear in the background.", - "id": 31258 - }, - { - "image_path": "G:\\images\\combined\\005371_jpg.rf.c93e573c75d74aa968ae4aac618f5e36.jpg", - "response": "The image shows a group of men standing in front of a construction site. They are wearing hard hats and one of them is holding a red fire extinguisher. The men are standing on a sidewalk and one of them is pointing towards the right. In the background, there are trees and a blue and white building. The word \"\u4e2d\u56fd\u753b\u753b\u7f51\" is written in the bottom right corner of the image.", - "id": 31259 - }, - { - "image_path": "G:\\images\\combined\\005371_jpg.rf.d70315f5d792615d1e2e0f6637f26e08.jpg", - "response": "a group of men standing around each other", - "id": 31260 - }, - { - "image_path": "G:\\images\\combined\\005372_jpg.rf.097a4590163e207b172375a35e96f02c.jpg", - "response": "A group of men wearing hard hats are walking down a street.", - "id": 31261 - }, - { - "image_path": "G:\\images\\combined\\005372_jpg.rf.a786792e006e4ade77cbce3f7253f6b9.jpg", - "response": "A group of men walking down a street.", - "id": 31262 - }, - { - "image_path": "G:\\images\\combined\\005373_jpg.rf.3708fb1829cab2068ca44a96e05f8fa7.jpg", - "response": "The image features a group of people sitting on a bench made of ice. They are all dressed in cold weather gear, including jackets, hats, and gloves. Some of the people are wearing red, yellow, blue, and green hats. The group is surrounded by ice formations and snow. They are all holding food items, including bottles and a bowl. The ground is covered in a layer of ice.", - "id": 31263 - }, - { - "image_path": "G:\\images\\combined\\005373_jpg.rf.e4e9e6be73e287c4ad5c902e09ceaef2.jpg", - "response": "A group of men sitting on ice formations.", - "id": 31264 - }, - { - "image_path": "G:\\images\\combined\\005374_jpg.rf.5d6d1add386c11247bf0bcf07f4e3832.jpg", - "response": "A pair of workers wearing hard hats and grey and black jackets work on a piece of equipment.", - "id": 31265 - }, - { - "image_path": "G:\\images\\combined\\005374_jpg.rf.88decaa8fca3ccc4c6fb2579707e18f9.jpg", - "response": "A pair of workers from China Railway No. 2 Engineering Group work on the overhead line at the Beijing South Railway Station.", - "id": 31266 - }, - { - "image_path": "G:\\images\\combined\\005375_jpg.rf.39ae73a6199146306212ea1bac7bb911.jpg", - "response": "A worker is working on fixing some wires on the side of a building. The worker is wearing a blue jacket and a red helmet. There are many wires in different colors hanging from the building. Some are blue, some are white, and some are yellow. The worker is holding a tool in his hand.", - "id": 31267 - }, - { - "image_path": "G:\\images\\combined\\005375_jpg.rf.4ac9a18b79a47a950405ab6f74e7bd92.jpg", - "response": "A worker is working on some power lines.", - "id": 31268 - }, - { - "image_path": "G:\\images\\combined\\005376_jpg.rf.c64a81911e7ede0fb4df069427805224.jpg", - "response": "A group of people standing around a blueprint.", - "id": 31269 - }, - { - "image_path": "G:\\images\\combined\\005376_jpg.rf.c93aad6d4aaf12de230f5208c4a16584.jpg", - "response": "A group of people standing around a blueprint.", - "id": 31270 - }, - { - "image_path": "G:\\images\\combined\\005377_jpg.rf.333144cbe08744bd0bbecfcc5b547da8.jpg", - "response": "In the image there is a person wearing a red helmet and a black suit, this person is standing on a concrete platform. There are some buildings in the background, one in the left side, three in the right side and another in the middle. Also in the image there is a yellow metal fence, a couple of signs, one in the left side and the other in the right side of the image, and finally there is a white and blue theodolite on the concrete platform.", - "id": 31271 - }, - { - "image_path": "G:\\images\\combined\\005377_jpg.rf.9f5962fe3e322ecb2af8dba77d557f99.jpg", - "response": "In the image there is a person wearing a red helmet and a black suit. They are standing on a construction site holding a ruler. The ruler is being used to measure something. In the background there are buildings.", - "id": 31272 - }, - { - "image_path": "G:\\images\\combined\\005378_jpg.rf.9990025a2637a769001d580bd063988c.jpg", - "response": "A group of workers wearing blue and yellow helmets are seen in this image. They are working together to place a large white pipe on the ground. Some of them are kneeling on the ground while others are standing. They are all wearing white working clothes.", - "id": 31273 - }, - { - "image_path": "G:\\images\\combined\\005378_jpg.rf.afd29d637b2ec4da0dc87db7b8ea4cbb.jpg", - "response": "A group of workers in blue and yellow shirts, some wearing white and red helmets, are working on a white pipeline in a field.", - "id": 31274 - }, - { - "image_path": "G:\\images\\combined\\005379_jpg.rf.8b1e65780a316ea27a945b63faf384bb.jpg", - "response": "A group of people are sitting around a table. On the wall behind them is a large screen. On the screen is a presentation.", - "id": 31275 - }, - { - "image_path": "G:\\images\\combined\\005379_jpg.rf.e578cc23dbee046ade4c22f2513a3452.jpg", - "response": "A group of people are sitting around a table. On the wall behind them is a screen displaying the words \\\"\u57ce\u6295\u96c6\u56e2\u96c4\u695a\u5927\u8857\u9879\u76ee\u89c2\u6613\u534f\u8c03\u4f1a\\\". There are several potted plants on the table.", - "id": 31276 - }, - { - "image_path": "G:\\images\\combined\\00537_jpg.rf.dd66e1e5333dc8af8bd04d65dbbd9965.jpg", - "response": "A man and a woman are holding a little girl who is wearing a construction hat. The man is wearing a black shirt and glasses. The woman is wearing a red helmet and has long hair. They are all standing in a construction area.", - "id": 31277 - }, - { - "image_path": "G:\\images\\combined\\005380_jpg.rf.1216898f2d52ed9cad2744422e47a4dd.jpg", - "response": "A man wearing a hard hat looking at a construction site.", - "id": 31278 - }, - { - "image_path": "G:\\images\\combined\\005380_jpg.rf.46446b31ff48c739f3f2c7f68ea81789.jpg", - "response": "A man wearing a hard hat is looking at a construction site. He is wearing a black jacket and the collar is turned up. In the background there is a blue crane and a white truck. There are piles of wood on the ground and a building is under construction. The sky is blue with a few clouds.", - "id": 31279 - }, - { - "image_path": "G:\\images\\combined\\005381_jpg.rf.3cd22f0e5d0c80496a189eab5a639760.jpg", - "response": " Firefighters(393,307),(749,814)(1,728),(359,997)(2,2),(468,488)(507,610),(992,985) rescue a man who fell into a well.", - "id": 31280 - }, - { - "image_path": "G:\\images\\combined\\005381_jpg.rf.570d0b8bb55f2e4224519e666db05ccf.jpg", - "response": "A man is trapped in a hole and firefighters are trying to rescue him.", - "id": 31281 - }, - { - "image_path": "G:\\images\\combined\\005382_jpg.rf.d1c7c01fc10d07e8eb805d6d6d371a89.jpg", - "response": "A group of people standing around a construction site.", - "id": 31282 - }, - { - "image_path": "G:\\images\\combined\\005383_jpg.rf.0df16fc1d1a4bb2f740dc7c5033eda3e.jpg", - "response": "A group of men walking down a street.", - "id": 31283 - }, - { - "image_path": "G:\\images\\combined\\005383_jpg.rf.6d91b3b9bc8fcd6d9c0245b35dc4e8c8.jpg", - "response": "A group of men walking down a street.", - "id": 31284 - }, - { - "image_path": "G:\\images\\combined\\005384_jpg.rf.17bd8789fa92dce1bc4e0e039d979b0c.jpg", - "response": "The image shows a construction site with several workers. There are at least five workers visible, with some standing on the left side of the image and others on the right side. They are all wearing orange vests, with some also wearing yellow vests. The workers are standing on a large grid of metal rods, which are laid out in rows in front of them. The metal rods are connected to form a large grid, and some of the workers are also handling wires. The scene takes place outdoors, with a building visible in the background on the left side of the image. The workers are working on a large construction project, and the metal rods and wires they are handling are likely part of the framework for a new building or other structure.", - "id": 31285 - }, - { - "image_path": "G:\\images\\combined\\005384_jpg.rf.2f93bf590f681157ada6d20ce29554f1.jpg", - "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large amount of steel rods and mesh, which are laid out in a large grid pattern. The steel rods are in various sizes and are connected together using the mesh. The workers are wearing safety gear, including hard hats, safety vests, and gloves. They are focused on their work and appear to be in the middle of a construction project.", - "id": 31286 - }, - { - "image_path": "G:\\images\\combined\\005385_jpg.rf.dae77d5d624e8403241e84029cf812a4.jpg", - "response": "A group of people standing in a parking lot with a van in the background.", - "id": 31287 - }, - { - "image_path": "G:\\images\\combined\\005385_jpg.rf.e5208a9dfa237956c7ea6854a8ea524a.jpg", - "response": "A group of people standing in a parking lot with a van in the background.", - "id": 31288 - }, - { - "image_path": "G:\\images\\combined\\0053860714da4340.jpg", - "response": "The image shows two white ambulances parked next to each other in a garage. The ambulances have red and yellow stripes on them and are labeled \"ambulance service nsw.\" There is a chair in the garage as well. The garage is located inside a brick building.", - "id": 31289 - }, - { - "image_path": "G:\\images\\combined\\005386_jpg.rf.d9853d7252d23216eb53c6eeafc1a71f.jpg", - "response": "The image shows a group of six men standing in a circle talking. They are all dressed in business attire, with the man on the far left wearing a grey suit. The man second from the left is wearing a black suit. The man third from the left is wearing a black suit with a white shirt and tie. The man fourth from the left is wearing a black leather jacket. The man fifth from the left is wearing a black suit. The man on the far right is wearing a black suit. All of the men are standing on a sidewalk in front of a building. The building has several stories and is made of concrete. It also has a sign on the side that says \"\u4e2d\u56fd\u6c5f\u897f\u7f51\".", - "id": 31290 - }, - { - "image_path": "G:\\images\\combined\\005387_jpg.rf.03725efd2460dc0bf20ef5ffeaacad0a.jpg", - "response": "A group of men in hard hats stand in a circle. One of the men is pointing towards the right. The man on the far right is wearing a yellow and black vest.", - "id": 31291 - }, - { - "image_path": "G:\\images\\combined\\005387_jpg.rf.58703eb5d05e3c58c6e4fd3dd67f05c9.jpg", - "response": "In the image, a group of men are standing together on a worksite. They are all wearing hard hats. In the background, there is a pile of dirt. To the far left, there is a person's feet wearing black shoes and carrying a backpack. In the far right, there is a person wearing a yellow vest.", - "id": 31292 - }, - { - "image_path": "G:\\images\\combined\\005388_jpg.rf.4887de7e8f04e0caaaa033d1cb103ce7.jpg", - "response": "A woman in a black leather jacket and red hard hat is pointing to a blueprint. Two men, one wearing a yellow hard hat and one wearing a brown hard hat, are standing next to her and looking at the blueprint. They are all standing in front of a long table with several pieces of metal on it. In the background, there is a large building under construction with several metal frameworks visible.", - "id": 31293 - }, - { - "image_path": "G:\\images\\combined\\005388_jpg.rf.7c7c764c709510f51e84322c469d81bd.jpg", - "response": "A woman in a red hard hat is showing a man in a yellow hard hat a piece of paper. They are both looking at the paper and the man on the right is holding a pen. They are standing in front of a long table with a white cup on it. There are several pieces of wood on the table and even more wood stacked in the background. There is a building under construction in the background with scaffolding and steel beams.", - "id": 31294 - }, - { - "image_path": "G:\\images\\combined\\005389_jpg.rf.b46b73a0b6ad9ba677b8f1abccea3f48.jpg", - "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground who appear to be sitting on the ground, possibly taking a break. They are wearing hard hats and reflective vests. Another worker is visible in the background, wearing a hard hat as well.", - "id": 31295 - }, - { - "image_path": "G:\\images\\combined\\005389_jpg.rf.e41cc0ea2e2cc7f18c92748af18e181f.jpg", - "response": "The image shows a construction site with multiple workers present. There are two workers in the foreground, both wearing orange vests and white helmets. They are working on a brick wall or foundation, with bricks scattered around them. In the background, there are other workers and construction equipment, including a yellow and black tractor. The scene is set outdoors, with the ground made of dirt and there are traffic cones placed around the area.", - "id": 31296 - }, - { - "image_path": "G:\\images\\combined\\00538_jpg.rf.5c313dff90f65c2cce5a9a4c7c4e859c.jpg", - "response": "A group of men in hard hats stand in a large, open building that has been gutted. They are all wearing yellow hard hats and work clothes. In front of them on the ground are two large, round, white objects and a silver and black object. The men are looking at these objects, which appear to be some kind of machinery.", - "id": 31297 - }, - { - "image_path": "G:\\images\\combined\\00538_jpg.rf.ec5299f93fd5cb4ad1b3a2ad4f6d0455.jpg", - "response": "A group of four people stand in a large, open building that has been gutted. They are all wearing hard hats and work clothes. In front of them is a pile of rubble and debris.", - "id": 31298 - }, - { - "image_path": "G:\\images\\combined\\005390_jpg.rf.3f068f6fa5785520025005e795b4b277.jpg", - "response": "A man in a yellow hard hat and blue jeans is standing in a house that is under construction. He is wearing a brown shirt and has a tool belt around his waist. He is holding a level in his right hand and a nail gun in his left hand. The walls are made of wood and the roof is made of wood as well. There are blue sky and clouds in the background.", - "id": 31299 - }, - { - "image_path": "G:\\images\\combined\\005390_jpg.rf.ffac842bca70c4ef8b7f2a3c0246ba4a.jpg", - "response": "A man in a yellow hard hat standing in a unfinished room.", - "id": 31300 - }, - { - "image_path": "G:\\images\\combined\\005391_jpg.rf.c15026328f6546fd63a3814c807d5928.jpg", - "response": "8 people(291,104),(460,775)(117,200),(270,833)(437,169),(578,733)(562,102),(728,768)(821,153),(980,765)(17,183),(147,713)(700,127),(836,755) standing on a rocky hillside", - "id": 31301 - }, - { - "image_path": "G:\\images\\combined\\005391_jpg.rf.ed087a2e9d77583713b2ac5dcd86018d.jpg", - "response": " Several people(18,184),(153,713)(118,201),(270,832)(291,105),(462,775)(437,169),(577,729)(563,102),(728,767)(701,128),(838,755)(818,153),(982,766) standing on a rocky hillside", - "id": 31302 - }, - { - "image_path": "G:\\images\\combined\\005392_jpg.rf.075674708f9a8309752c8795d4ce1de7.jpg", - "response": "A group of men standing around each other.", - "id": 31303 - }, - { - "image_path": "G:\\images\\combined\\005392_jpg.rf.11b5bf870c407cb820d77ed5a3aa6c8a.jpg", - "response": "A group of men wearing hard hats", - "id": 31304 - }, - { - "image_path": "G:\\images\\combined\\005393_jpg.rf.6e6f60b00e91917f01f5740b55d9b472.jpg", - "response": "A group of people wearing hard hats(760,774),(896,960)(141,559),(254,677)(645,622),(731,723)(310,537),(382,618)(509,503),(579,583)(610,553),(691,632)(408,479),(483,558)(333,364),(376,413)(619,622),(731,724)(487,593),(564,673)(343,757),(420,851)(610,812),(764,997) are working together to clear snow from a power line.", - "id": 31305 - }, - { - "image_path": "G:\\images\\combined\\005393_jpg.rf.c7c8d6a7e9dc50973b262a8f70ecdbad.jpg", - "response": "A group of people wearing hard hats and working clothes are on a snowy mountain side. They are working together to move a large metal pipe.", - "id": 31306 - }, - { - "image_path": "G:\\images\\combined\\005394_jpg.rf.2c3e4449075947d14748b5a3622fed8a.jpg", - "response": "The image shows two men wearing yellow hard hats and green safety vests. They are working on a construction site, which can be identified by the presence of wooden beams and trusses in the background. One of the men is holding a drill, which is located on the left side of the image. The men appear to be focused on a task, possibly installing or repairing something.", - "id": 31307 - }, - { - "image_path": "G:\\images\\combined\\005394_jpg.rf.3ed559ff044acaf7c69c9ddbd3dc7022.jpg", - "response": "The image shows two men working on a construction site, wearing yellow hard hats and green safety vests. One man is holding a power drill and the other man is holding a saw. They are both working on a wooden structure, possibly a roof or a frame. The sky is blue and clear.", - "id": 31308 - }, - { - "image_path": "G:\\images\\combined\\005395_jpg.rf.52e2e254db40de3ec7a701b910e94dc1.jpg", - "response": "A couple of men in a bucket truck working on power lines.", - "id": 31309 - }, - { - "image_path": "G:\\images\\combined\\005395_jpg.rf.893f01c837c44d383c79af58cf80434d.jpg", - "response": "A city street with many cars parked on the side.", - "id": 31310 - }, - { - "image_path": "G:\\images\\combined\\005396_jpg.rf.122b630593b14b14f9931452440e77bd.jpg", - "response": "A fireman wearing a hard hat is standing in a dark room filled with smoke. He is holding a fire hose and there is rubble in the background.", - "id": 31311 - }, - { - "image_path": "G:\\images\\combined\\005396_jpg.rf.f177692eda1d035d8afe7358b921f174.jpg", - "response": "A firefighter is seen in silhouette as he walks through smoke and debris", - "id": 31312 - }, - { - "image_path": "G:\\images\\combined\\005397_jpg.rf.296091edb53268506709fd4214fba77b.jpg", - "response": "A group of men in hard hats stand on a construction site, looking at blueprints.", - "id": 31313 - }, - { - "image_path": "G:\\images\\combined\\005397_jpg.rf.a1a2b657de005348e73c67d597921efe.jpg", - "response": "A group of men standing on a construction site holding a rolled up blueprint.", - "id": 31314 - }, - { - "image_path": "G:\\images\\combined\\005398_jpg.rf.22dc95f199a4a4aff1ceff53342e4912.jpg", - "response": "a group of men walking down a street", - "id": 31315 - }, - { - "image_path": "G:\\images\\combined\\005398_jpg.rf.e62bf347c68a6ff14f84f334ef1bce11.jpg", - "response": "a group of men walking down a street", - "id": 31316 - }, - { - "image_path": "G:\\images\\combined\\005399_jpg.rf.6a3b6c480cdd75c5eb6634e8d4980d54.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and the background features a green fence. In the foreground, there is a roof that is under construction with wooden beams and wooden struts.", - "id": 31317 - }, - { - "image_path": "G:\\images\\combined\\005399_jpg.rf.ee410e6748b7772ff2819a7ed639745a.jpg", - "response": "In the image there are two people working on a construction site. They are wearing hard hats and are standing on a roof. The roof is made of wooden beams and they are working on it.", - "id": 31318 - }, - { - "image_path": "G:\\images\\combined\\00539_jpg.rf.08a5e47fa27ec30b11415341882f9b16.jpg", - "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", - "id": 31319 - }, - { - "image_path": "G:\\images\\combined\\00539_jpg.rf.827dbdeb126a73dc017aafd9a4bfe96c.jpg", - "response": "A woman in a grey shirt is adjusting a man's red helmet. They are both wearing red helmets and standing on a construction site. There are a few other people standing around them.", - "id": 31320 - }, - { - "image_path": "G:\\images\\combined\\0053a650ec50c21f.jpg", - "response": "The image depicts a busy city street with a Dominos Italian sausage food truck parked on the side of the road. There are several people walking around, some of which are carrying handbags and suitcases. A few cars are also parked or driving on the street.", - "id": 31321 - }, - { - "image_path": "G:\\images\\combined\\005400_jpg.rf.8740e2f6a781e40c131d867fb3430f3f.jpg", - "response": "In the image two workers are in a flooded room. They are wearing blue helmets and are holding flashlights. The floor is knee deep in water and the walls are white. There is a sign on the wall that says \"CAUTION DANGEROUS VOLTAGE\" and another sign that says \"DO NOT TOUCH\".", - "id": 31322 - }, - { - "image_path": "G:\\images\\combined\\005400_jpg.rf.c1b94d94aa572d974723848fd56b6a1f.jpg", - "response": "In the image two workers are working in an area that is flooded with water. They are standing in the water and appear to be working on something. They are both wearing blue helmets and the man on the left is also wearing a yellow jacket. The wall to the right has several stickers on it. The room they are in has a bright light on the wall and the floor is visible through the water.", - "id": 31323 - }, - { - "image_path": "G:\\images\\combined\\005401_jpg.rf.27d9da50f53cdc103fc8d7fc6ed1870f.jpg", - "response": "A group of men in orange work overalls and hard hats are gathered around a large metal valve. They are all wearing the same orange hard hats and some are wearing matching orange shirts. The men are standing in a field with a dirt road behind them and a concrete structure to their left. In the foreground, they are working on a large metal valve that is part of a gas or oil well.", - "id": 31324 - }, - { - "image_path": "G:\\images\\combined\\005401_jpg.rf.851d2ffd7a38a9fbc1dabfd12791504e.jpg", - "response": "A group of men in orange work overalls and orange hard hats are gathered around a large metal valve.", - "id": 31325 - }, - { - "image_path": "G:\\images\\combined\\005402_jpg.rf.054cb39d4d4b175f6dede9938cdb03a6.jpg", - "response": " Firefighters(433,326),(597,602)(436,49),(557,448)(367,588),(629,949) working in a confined space", - "id": 31326 - }, - { - "image_path": "G:\\images\\combined\\005403_jpg.rf.05d2beb6c676f7ad4c66a7890163b4cd.jpg", - "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", - "id": 31327 - }, - { - "image_path": "G:\\images\\combined\\005403_jpg.rf.2f9b5ce355db14fc30f35b804c8694cb.jpg", - "response": "A man with a microphone is talking to a group of people in front of a white board. They are all wearing yellow hard hats.", - "id": 31328 - }, - { - "image_path": "G:\\images\\combined\\005404_jpg.rf.1d32b962984c526944d51c07b8989502.jpg", - "response": "A group of people standing around a table looking at items on it.", - "id": 31329 - }, - { - "image_path": "G:\\images\\combined\\005404_jpg.rf.52a32d74ed41c23529a0eedce1817be9.jpg", - "response": "The image shows a group of people gathered around a table with several books and binders on it. The table has a blue cover and is filled with various materials. There is also a laptop on the table. In front of the table, there is a chair. On the wall behind the table, there is a poster with the words \"Let's do it\" written on it. The room has a Chinese flag hanging on the left side of the wall.", - "id": 31330 - }, - { - "image_path": "G:\\images\\combined\\005405_jpg.rf.13b9aeb665fb2d0a9e074c68a44f0b3b.jpg", - "response": "A construction worker wearing a hard hat and a pair of jeans is using a hose at a construction site.", - "id": 31331 - }, - { - "image_path": "G:\\images\\combined\\005405_jpg.rf.d2736965da2e639304d4e5f058389a2e.jpg", - "response": "A construction worker is using a hose at a construction site.", - "id": 31332 - }, - { - "image_path": "G:\\images\\combined\\005406_jpg.rf.db3739ae94d1815056ab7da9ccd3e8b3.jpg", - "response": "A man and a woman in orange vests and hard hats standing on a construction site.", - "id": 31333 - }, - { - "image_path": "G:\\images\\combined\\005406_jpg.rf.e7661961c09c84deea87c36063a1b934.jpg", - "response": "A man and woman in orange vests and hard hats standing on a construction site.", - "id": 31334 - }, - { - "image_path": "G:\\images\\combined\\005407_jpg.rf.22aaa351638841711b9a2d82068318ce.jpg", - "response": "A group of men standing in a unfinished building.", - "id": 31335 - }, - { - "image_path": "G:\\images\\combined\\005407_jpg.rf.b09fc18de1cd1961f29eb796c9d14809.jpg", - "response": " Men(129,250),(370,997)(626,284),(857,997)(442,197),(658,997) in hard hats(202,250),(302,358)(549,196),(629,278) looking at a wall", - "id": 31336 - }, - { - "image_path": "G:\\images\\combined\\005408_jpg.rf.766b1e5ae104191c7d6d74cb0e091678.jpg", - "response": "A group of three workers in red doing some work in a factory.", - "id": 31337 - }, - { - "image_path": "G:\\images\\combined\\005408_jpg.rf.a7a4986c748c40adf8a406d4d32ac564.jpg", - "response": "A group of three workers in red doing some work in a factory.", - "id": 31338 - }, - { - "image_path": "G:\\images\\combined\\005409_jpg.rf.88499a2c1333c23a7ceab6a36886ea44.jpg", - "response": "A group of workers wearing hard hats are shoveling and moving dirt and rocks.", - "id": 31339 - }, - { - "image_path": "G:\\images\\combined\\005410_jpg.rf.209e0bf5132c11441f157b5c1294b209.jpg", - "response": "A pair of workers, one on a ladder and one on the wall, are repairing a brick wall.", - "id": 31340 - }, - { - "image_path": "G:\\images\\combined\\005411_jpg.rf.2a0f3fc5581055ef7a025ddf64f8f906.jpg", - "response": "In the image there are three construction workers at a construction site. They are all wearing yellow vests and hard hats. Two of the workers are in the foreground, one on the left and one on the right, and the third worker is in the background on the left. There are two cranes in the background, one on the left and one on the right. The sky is blue with clouds.", - "id": 31341 - }, - { - "image_path": "G:\\images\\combined\\005412_jpg.rf.a10f0e80d207ee20d963a374088959e2.jpg", - "response": "A group of four people standing on a dirt road.", - "id": 31342 - }, - { - "image_path": "G:\\images\\combined\\005412_jpg.rf.f997eaaff81b8f2d574292d18ca9989c.jpg", - "response": "A group of four people standing on a dirt road.", - "id": 31343 - }, - { - "image_path": "G:\\images\\combined\\005413_jpg.rf.0da0f610bbe4925412e6f8b9a3367adf.jpg", - "response": "In the image two men wearing orange vests and white hard hats are talking to each other. One man is holding a clipboard. They are standing in front of a large ship that is docked at a large terminal. In front of the men and the ship there is a forklift.", - "id": 31344 - }, - { - "image_path": "G:\\images\\combined\\005413_jpg.rf.5dceab994e735c5d4ad75af85a667df8.jpg", - "response": "In the foreground, two men in high visibility vests and white hard hats stand next to a forklift. The man on the left is holding a clipboard. In the background, a large ship is docked at a terminal. The ship is white and blue and is much taller than the men and the forklift.", - "id": 31345 - }, - { - "image_path": "G:\\images\\combined\\005414_jpg.rf.99f800ed4f0e7d7575b7d04b0b7ea458.jpg", - "response": "a group of men standing in a driveway", - "id": 31346 - }, - { - "image_path": "G:\\images\\combined\\005415_jpg.rf.851e17b934e70d1060470bcf81438e2d.jpg", - "response": "A construction site with multiple people working on it.", - "id": 31347 - }, - { - "image_path": "G:\\images\\combined\\005415_jpg.rf.b50c060a9a0cb6d3a234e0b5dc85cc9a.jpg", - "response": "A construction site with multiple cranes and several people working on different tasks.", - "id": 31348 - }, - { - "image_path": "G:\\images\\combined\\005416_jpg.rf.26403633c61e55ff010b800609b3195b.jpg", - "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and camouflage uniforms. One of the linemen is climbing a pole to work on the power lines, and the other is holding onto the pole to provide support. They are both wearing safety harnesses, which are attached to the pole to ensure their safety during the climb.", - "id": 31349 - }, - { - "image_path": "G:\\images\\combined\\005416_jpg.rf.4caa0659c28347d3f7a6a49f3538265f.jpg", - "response": "The image shows two linemen working on power lines in a small town. They are wearing safety gear, including yellow hard hats and green camouflage shirts. One of the linemen is climbing a pole to work on the power lines, and the other man is securing the pole. They are both holding onto the pole with their hands. In the background, there is a building with Chinese characters on the sign.", - "id": 31350 - }, - { - "image_path": "G:\\images\\combined\\005417_jpg.rf.257b7fdd02e0243945b5bffe67bcb60d.jpg", - "response": "A group of men standing around a construction site", - "id": 31351 - }, - { - "image_path": "G:\\images\\combined\\005417_jpg.rf.2c4d375770c6d3c0b8d3df245507b1f8.jpg", - "response": "A group of men standing around a construction site", - "id": 31352 - }, - { - "image_path": "G:\\images\\combined\\005418_jpg.rf.2e5a1eff04f2bba4a6634188b462edbd.jpg", - "response": " Firefighters(439,21),(872,996)(33,52),(387,996) rescue a man who fell into a manhole", - "id": 31353 - }, - { - "image_path": "G:\\images\\combined\\005418_jpg.rf.714a8c512e4f808b5ea5934bf5deb61d.jpg", - "response": " Firefighters(33,50),(388,996)(437,16),(872,997) in China rescued a 22-year-old man who had been trapped in a pit for 15 hours after a cave-in.", - "id": 31354 - }, - { - "image_path": "G:\\images\\combined\\005419_jpg.rf.1c3cba4b79efc02dd0976cf25391acf6.jpg", - "response": "In the image there is a large construction site with multiple workers wearing hard hats and safety gear. They are working on a large building that has not yet been constructed. The building is surrounded by wooden scaffolding and metal poles. In the background there is a mountain range.", - "id": 31355 - }, - { - "image_path": "G:\\images\\combined\\005419_jpg.rf.5bc57848d26ba65cc402dcb50768fa7b.jpg", - "response": "In the image there is a large group of people working at a construction site. They are wearing blue or red hard hats and are standing on a yellow scaffolding. Some of them are also wearing blue or red shirts. There are many wooden poles in the scene, some are arranged in a square shape while others are placed in a row. There are also many steel bars in the scene, some are arranged in a vertical manner while others are placed on the right side of the image. In the background, there is a large crane operating in the distance.", - "id": 31356 - }, - { - "image_path": "G:\\images\\combined\\00541_jpg.rf.2cb58b3df11e614a2a1e66648e7738eb.jpg", - "response": "A construction worker in a yellow jacket and blue hard hat is pointing to a wooden beam that another construction worker is holding. They are both wearing yellow jackets and blue hard hats.", - "id": 31357 - }, - { - "image_path": "G:\\images\\combined\\00541_jpg.rf.f8bde4311d7010c62f2a9b1459f44228.jpg", - "response": "In the image there are two people wearing blue and yellow work wear. They are working on a construction site and are wearing blue hard hats. They are working on a wooden structure.", - "id": 31358 - }, - { - "image_path": "G:\\images\\combined\\005420_jpg.rf.00a27a6a8330f7f665994c9c02f18336.jpg", - "response": "A man in a white shirt is pointing at something.", - "id": 31359 - }, - { - "image_path": "G:\\images\\combined\\005420_jpg.rf.f803b85686ca4c76ed0cf06dab311bef.jpg", - "response": "A man in a white shirt is pointing at something.", - "id": 31360 - }, - { - "image_path": "G:\\images\\combined\\005421_jpg.rf.5f71f3ec9e8ea4a3d895d688e376c4cb.jpg", - "response": "A couple of men working on a wall.", - "id": 31361 - }, - { - "image_path": "G:\\images\\combined\\005422_jpg.rf.12503de8d361b81079b0b96f0f844881.jpg", - "response": "In the image there is a factory in which a worker is wearing a hard hat and looking at a blueprint. The factory has several large metal objects and the worker is standing next to a metal object. There are also two other people in the factory, one in the background on the right and the other in the far background on the left.", - "id": 31362 - }, - { - "image_path": "G:\\images\\combined\\005423_jpg.rf.061378b6306f26e3f55feb002afff685.jpg", - "response": "A group of workers in orange are working on a large pipe.", - "id": 31363 - }, - { - "image_path": "G:\\images\\combined\\005423_jpg.rf.abd008e43e127c42c9594ec0fcde2f4f.jpg", - "response": "A crew of three men in orange work uniforms and yellow hard hats are working on a large metal pipe. They are all holding tools and one man is cutting into the pipe with a saw. They are wearing gloves and the man in the foreground is also wearing a pair of safety glasses. The pipe is on the ground and the men are standing around it.", - "id": 31364 - }, - { - "image_path": "G:\\images\\combined\\005424_jpg.rf.06e22ae9ec20942093e959b17cb68eae.jpg", - "response": "A group of men standing in front of a building.", - "id": 31365 - }, - { - "image_path": "G:\\images\\combined\\005424_jpg.rf.7c2a46dbe4f2fda5b298ee040cec56e3.jpg", - "response": "A group of men standing in front of a building.", - "id": 31366 - }, - { - "image_path": "G:\\images\\combined\\005425_jpg.rf.4cb76cf93f7680c766abfab72f69c2dd.jpg", - "response": "A group of men working on a construction site.", - "id": 31367 - }, - { - "image_path": "G:\\images\\combined\\005425_jpg.rf.8e2dde395c855159643a7c744690d2db.jpg", - "response": "a group of men working on a construction site", - "id": 31368 - }, - { - "image_path": "G:\\images\\combined\\005426_jpg.rf.3037ad6dff4903c1fbfde510bdcb14e3.jpg", - "response": "A group of men in suits walking across a yard.", - "id": 31369 - }, - { - "image_path": "G:\\images\\combined\\005426_jpg.rf.f96b66b427fc5a5c707798aa11a76011.jpg", - "response": "A group of men in suits walking across a yard.", - "id": 31370 - }, - { - "image_path": "G:\\images\\combined\\005427_jpg.rf.7612f871864baa7c85f07dc3e55eca0a.jpg", - "response": "A man in a hard hat and safety vest is standing on a ladder next to a large red piece of equipment. He is wearing a helmet and looking down at the ground.", - "id": 31371 - }, - { - "image_path": "G:\\images\\combined\\005427_jpg.rf.9248e80a1434dfd85036f391fa9ec823.jpg", - "response": "A man in a suit and hard hat climbing a ladder.", - "id": 31372 - }, - { - "image_path": "G:\\images\\combined\\005428_jpg.rf.9247bb3a7312220ef513974c386cce3e.jpg", - "response": "A woman in a flowered shirt is being handed a hard hat.", - "id": 31373 - }, - { - "image_path": "G:\\images\\combined\\005428_jpg.rf.f059430796904f79af8011fc80941014.jpg", - "response": "A woman in a floral dress is holding a white helmet.", - "id": 31374 - }, - { - "image_path": "G:\\images\\combined\\005429_jpg.rf.24f85476514a1c86a120d9a5929204e5.jpg", - "response": "A group of construction workers are standing around in a circle.", - "id": 31375 - }, - { - "image_path": "G:\\images\\combined\\005429_jpg.rf.4c6c09fcd3551ce084ab3b7a2f69f909.jpg", - "response": "A group of people wearing hard hats are sitting on the ground.", - "id": 31376 - }, - { - "image_path": "G:\\images\\combined\\00542_jpg.rf.1d5daac9d4fd989df9ce92c0915cf250.jpg", - "response": "The image shows a group of men in blue shirts and white shorts standing on a bridge that is under construction. They are wearing hard hats and looking over the unfinished bridge. The bridge is a brown color and is located in China.", - "id": 31377 - }, - { - "image_path": "G:\\images\\combined\\005430_jpg.rf.67e530da1d3f4e8de26f442900cc14af.jpg", - "response": "An electrician in a yellow shirt and yellow hat is showing a woman in a white shirt how to use a grey digital meter. They are both standing in a stairwell.", - "id": 31378 - }, - { - "image_path": "G:\\images\\combined\\005430_jpg.rf.8897a7e3b17656a931991ebeed9a5c6a.jpg", - "response": "In the image, a man is wearing a yellow shirt and a yellow helmet. He is standing next to a woman and is touching the wires of an electrical panel. The woman is holding a cell phone in her hand. They are both in front of a staircase.", - "id": 31379 - }, - { - "image_path": "G:\\images\\combined\\005431_jpg.rf.061ebe895ede4505f6400d5afef48b13.jpg", - "response": "In the image, several workers are\u4fee\u590d\u8457\u88ab\u6d2a\u6c34\u51b2\u6bc1\u7684\u516c\u8def\u3002 They are wearing white hard hats and yellow reflective vests. One worker is holding a rope, another is holding a large spool of wire, and the third worker is carrying a tool bag. The sky is overcast and there is a mountain in the background. The ground is wet and muddy from the flood waters.", - "id": 31380 - }, - { - "image_path": "G:\\images\\combined\\005431_jpg.rf.d07e2b571c583558c1ec398614446c33.jpg", - "response": "In the image, several workers are seen standing on a muddy road. Some of them are wearing green and yellow uniforms, and yellow helmets are also visible. Some workers are holding sticks, and there are two black cables visible on the left side of the image. The background shows a mountain and a green field. The workers are wearing yellow helmets and white shirts.", - "id": 31381 - }, - { - "image_path": "G:\\images\\combined\\005432_jpg.rf.4015b32bc3339df9eb0195b03cc3e4de.jpg", - "response": "A group of men in suits and construction hats are walking across a bridge. One of the men is wearing a red construction hat and a white shirt. Another man is wearing a blue construction hat. They are all walking together.", - "id": 31382 - }, - { - "image_path": "G:\\images\\combined\\005432_jpg.rf.e46ad2694baab552d7e9ac8bd42b4dd4.jpg", - "response": "A group of men in suits and construction hats are walking down a sidewalk. Some of the men are holding pink papers. In the background, there are buildings and a city skyline.", - "id": 31383 - }, - { - "image_path": "G:\\images\\combined\\005433_jpg.rf.6a31f90591cae4f649e7d551ce6f8532.jpg", - "response": "The image shows three men working on a piece of equipment in a factory. One man is using a cutting torch, which is producing a bright flame, while the other two are standing nearby. They are all wearing hard hats.", - "id": 31384 - }, - { - "image_path": "G:\\images\\combined\\005433_jpg.rf.c4681467429201c3e7999c630574e703.jpg", - "response": "The image shows three men working in a room. One man is on the left, wearing a black shirt and a red helmet and is using a cutting torch on a piece of metal. Another man is in the middle, wearing a white and brown checkered shirt and a red helmet. He is standing closer to the right side of the room. The third man is on a platform on the right side of the room, wearing a white shirt and a black hat. He is using a tool to hold a large metal pipe in place. The room is dimly lit and has a concrete floor. There is a large metal pipe running across the middle of the room and a second metal pipe on the right side of the room.", - "id": 31385 - }, - { - "image_path": "G:\\images\\combined\\005434409d2a7602.jpg", - "response": "a man wearing a black shirt with the words \"they've left it with no choice, be to start a revolution\" written on it.", - "id": 31386 - }, - { - "image_path": "G:\\images\\combined\\005434_jpg.rf.cec8a1243d32a27a46accc92ccf17995.jpg", - "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching down and appears to be working on a large construction site. There are many steel rods scattered around the worker and the site appears to be a large grid of steel rebar.", - "id": 31387 - }, - { - "image_path": "G:\\images\\combined\\005434_jpg.rf.dc6386c967adb653cdbaf907ef87c248.jpg", - "response": "In the image there is a worker wearing a red helmet and orange work clothes. The worker is crouching on a construction site surrounded by iron rods. The iron rods extend out in all directions and some of them are connected together.", - "id": 31388 - }, - { - "image_path": "G:\\images\\combined\\005435_jpg.rf.532943f088b2e45948c722cd93d6ecf6.jpg", - "response": "A group of people standing in front of a building site with a white and red sign that says '\u4e2d\u570b\u5efa\u7bc9' (Zg\u00f9ch\u00e1 J\u00ecsh\u00f9) which is the Chinese characters for 'China Building'. They are all wearing red hats.", - "id": 31389 - }, - { - "image_path": "G:\\images\\combined\\005435_jpg.rf.e24725565bacd98395c2449ee3d538d6.jpg", - "response": "A group of people standing in front of a building site wearing high visibility jackets and hard hats.", - "id": 31390 - }, - { - "image_path": "G:\\images\\combined\\005436_jpg.rf.878b0dcda5dc5a0add260f27c7609c70.jpg", - "response": "A man in a uniform and hard hat is welding two pieces of metal together. He is wearing a yellow hard hat, safety goggles, and work gloves. He is crouching down over the metal and holding a welding rod. The background shows a construction site with a metal structure and other metal frameworks in the distance.", - "id": 31391 - }, - { - "image_path": "G:\\images\\combined\\005436_jpg.rf.ce866001c85649d4d376e2a60fad605f.jpg", - "response": "A man in a uniform and hard hat is welding a metal bar on a construction site. He is wearing a yellow hard hat and dark sunglasses. There are several other metal bars visible in the scene. In the background, there is a large structure under construction. The sky is overcast and there are no other people visible in the image.", - "id": 31392 - }, - { - "image_path": "G:\\images\\combined\\005437_jpg.rf.4fff0b3a7c7e723465f1c7a85d183d9a.jpg", - "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is sitting on the structure while others are standing on the ground and on a ladder. They are working on a metal frame that is white and silver. The sky is blue and there are no clouds in the sky.", - "id": 31393 - }, - { - "image_path": "G:\\images\\combined\\005437_jpg.rf.d4f4a6fef01f793c459ab64cd759ff55.jpg", - "response": "A group of men in red coats and yellow hard hats are working on a metal structure. They are wearing helmets and one man is on a ladder working on the metal structure.", - "id": 31394 - }, - { - "image_path": "G:\\images\\combined\\005438_jpg.rf.2012689ebd602b4adc60603afb563cdc.jpg", - "response": "The image shows a group of technicians working on a power line in a small village. There are five technicians in the picture, four of them are wearing yellow hard hats and white T-shirts, and the fifth one is wearing a blue T-shirt. They are standing in a line on the right side of the image, with one technician in the middle holding a tool. In the background, there is a tall house with a grey roof and walls, and a few other technicians are working on the power line in front of the house. The sky is blue, and the ground is covered with green grass and red bricks.", - "id": 31395 - }, - { - "image_path": "G:\\images\\combined\\005438_jpg.rf.a43a70cb45ad640acc833bd561d9f235.jpg", - "response": "A few men in blue jumpsuits and yellow hard hats are working on a power line on the side of a road. There is a house in the background.", - "id": 31396 - }, - { - "image_path": "G:\\images\\combined\\005439_jpg.rf.184bb558a77ed9452b7916d425dbed34.jpg", - "response": "A group of workers in red uniforms and yellow helmets are working on a power tower and a transformer. The sky is covered with white clouds.", - "id": 31397 - }, - { - "image_path": "G:\\images\\combined\\005439_jpg.rf.1d4c0c25d467c0d62d55d78183c24279.jpg", - "response": "A group of workers in red uniforms and yellow helmets are working on a power pole. They are installing equipment on the transformer.", - "id": 31398 - }, - { - "image_path": "G:\\images\\combined\\00543_jpg.rf.3346a3821f7b61542a0ea50856b9b143.jpg", - "response": "Two business men in suits looking at a blueprint of a construction site.", - "id": 31399 - }, - { - "image_path": "G:\\images\\combined\\00543_jpg.rf.4477718389bb08cab03046ac81019bdf.jpg", - "response": "Two business men in suits looking at a blueprint of a construction site.", - "id": 31400 - }, - { - "image_path": "G:\\images\\combined\\005440_jpg.rf.36e216fac2682ef7885c0c964f0f7240.jpg", - "response": "A man in a suit and a red hard hat is walking with a group of people. They are all wearing hard hats. The man in front is also wearing a black suit. To the left of the group is a red and white sign. Behind the group is a building under construction. There is also a tree to the left of the group.", - "id": 31401 - }, - { - "image_path": "G:\\images\\combined\\005440_jpg.rf.b7000595508c88f31397a8a2a9d37570.jpg", - "response": "A group of people walking down a street.", - "id": 31402 - }, - { - "image_path": "G:\\images\\combined\\005441_jpg.rf.c1bc2837fc2ad7176a434b7b6294fe51.jpg", - "response": "The image shows a construction site in a city. A red and white crane is operating in the background, and two workers are pouring concrete on the ground. The workers are wearing yellow helmets, and one of them is holding a hose. In the foreground, there is a large mass of red rebar mesh, and the workers are standing on it. The sky is overcast, and there are a few buildings in the vicinity, including one on the far left and another on the far right.", - "id": 31403 - }, - { - "image_path": "G:\\images\\combined\\005441_jpg.rf.c37ded12f012eab4816bacebe2c7b5c9.jpg", - "response": "A construction site with a crane and workers.", - "id": 31404 - }, - { - "image_path": "G:\\images\\combined\\005442_jpg.rf.669e8059f855b0f6e9b9526afe6aaefa.jpg", - "response": "A group of people in red and grey hard hats are gathered in a large hole in the ground. The people are wearing a variety of different colored hard hats, with some wearing red, some wearing grey, and one person wearing yellow. They are standing in ankle-deep mud and water.", - "id": 31405 - }, - { - "image_path": "G:\\images\\combined\\005442_jpg.rf.a713136990a33365665911426887c31f.jpg", - "response": "A group of people in red and grey clothes and yellow helmets are standing in a pit in the ground. The pit is filled with water and mud and there are rocks and boulders around. Some people are holding tools.", - "id": 31406 - }, - { - "image_path": "G:\\images\\combined\\005443_jpg.rf.d146ff235f39f3ad6383624da367abcf.jpg", - "response": "A construction worker with a big smile on his face.", - "id": 31407 - }, - { - "image_path": "G:\\images\\combined\\005443_jpg.rf.fb3b5212b89584861580ce02a6f2450f.jpg", - "response": "A construction worker with a yellow hard hat and orange jacket.", - "id": 31408 - }, - { - "image_path": "G:\\images\\combined\\005444_jpg.rf.7cc394b2b3c91b27e59eabfb6bfb5d4d.jpg", - "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform and appear to be focused on their tasks. In the background, there is a truck and another piece of machinery. The sky is dark and there are a few stars visible.", - "id": 31409 - }, - { - "image_path": "G:\\images\\combined\\005444_jpg.rf.ce22776effddce6fe2a9c006cfc0959a.jpg", - "response": "The image shows a group of workers in red uniforms working on an oil rig at night. The workers are standing on a platform above the ground, and there is a large drill bit attached to a piece of machinery. The workers are wearing orange safety gear, including hard hats and safety boots. There is a large storage tank visible in the background. The image is taken at a distance and the workers are small in relation to the large machinery.", - "id": 31410 - }, - { - "image_path": "G:\\images\\combined\\005445_jpg.rf.6ad2883451b523ea87155d686df53943.jpg", - "response": "a group of people standing in a construction site", - "id": 31411 - }, - { - "image_path": "G:\\images\\combined\\005445_jpg.rf.f216afc93c49631004a29b3432bc3e4c.jpg", - "response": "a group of people standing in front of a large construction site", - "id": 31412 - }, - { - "image_path": "G:\\images\\combined\\005446_jpg.rf.ab2363a04a14adc1f446098ad56d7742.jpg", - "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the power box. The man on the right is also looking at the power box. There is a crowd of people in the background.", - "id": 31413 - }, - { - "image_path": "G:\\images\\combined\\005446_jpg.rf.d2edcf998e2b4dffda505d4b4a3d2b74.jpg", - "response": "A group of three men are standing in front of a power box. They are all wearing yellow hard hats. The man on the left is reaching into the power box and adjusting something. The man in the middle is holding a tablet and looking at the box. The man on the right is also looking at the box. There is a crowd of people in the background. The power box says MNS on it.", - "id": 31414 - }, - { - "image_path": "G:\\images\\combined\\005447_jpg.rf.e14102efda2bf83fdfa9263c9cdaf066.jpg", - "response": "A construction crew working on a large construction site.", - "id": 31415 - }, - { - "image_path": "G:\\images\\combined\\005447_jpg.rf.e9d932b77cc3a1a698d78b50826dc94c.jpg", - "response": "A construction crew is working on a construction site. There is a man operating a large piece of machinery, and three other men standing near the machinery. One of the men is holding a large ruler. There is a shovel on the ground near the men.", - "id": 31416 - }, - { - "image_path": "G:\\images\\combined\\005448_jpg.rf.acd1619e0925a5336cac854549ca2f8a.jpg", - "response": "A group of men in camouflage uniforms and hard hats are working on a construction site. They are climbing down a steep set of stairs and one man is holding a large metal bar. The men are also wearing gloves and some have backpacks.", - "id": 31417 - }, - { - "image_path": "G:\\images\\combined\\005449_jpg.rf.6604212736c75e7eb57e39909bbffdb9.jpg", - "response": "The image shows a worker in a yellow and white jacket and blue hard hat welding two metal pipes together with a torch. The worker is on a concrete floor and there is a bucket to the right of the pipe on the left. There are also sparks flying from the welding.", - "id": 31418 - }, - { - "image_path": "G:\\images\\combined\\005449_jpg.rf.c3c0f1c26ce6dbf3f5b55f9ff9bbd96b.jpg", - "response": "In the image, a worker is welding steel in an industrial setting. They are wearing a yellow and white jacket, a blue hard hat, and grey pants. They are focused on their work, which involves using a yellow tool with sparks flying. The background is a bit blurry, but there is a wooden pole on the left and a black container on the right.", - "id": 31419 - }, - { - "image_path": "G:\\images\\combined\\005450_jpg.rf.039dda471357548a38c52a7b2282de05.jpg", - "response": "The photo shows men in suits standing in front of a white and red building. There is a red banner on the right with white characters.", - "id": 31420 - }, - { - "image_path": "G:\\images\\combined\\005450_jpg.rf.c8547097f7bb5e7197470fd366f4083b.jpg", - "response": "A group of men in suits standing in front of a white building.", - "id": 31421 - }, - { - "image_path": "G:\\images\\combined\\005451_jpg.rf.14b7e759f76ff92a165efd0c31e2e073.jpg", - "response": "The photo shows a group of people wearing black, yellow and orange helmets. They are dressed in clothes and some of them are wearing gloves. In their hands, they are holding a newspaper, a card and a magazine. The background shows a power pole and a road.", - "id": 31422 - }, - { - "image_path": "G:\\images\\combined\\005451_jpg.rf.cf19151ea18e4e8a2737cad8510958df.jpg", - "response": "A group of people standing around each other.", - "id": 31423 - }, - { - "image_path": "G:\\images\\combined\\005452_jpg.rf.549d572aa245e1048fcb301332964873.jpg", - "response": "In the picture there are workers in a tunnel. Some writing on the wall is not clear, but there seems to be a signature on the right. The ground is covered with coal\u6e23, and some large steel pipes are placed on the right side of the picture. Some workers in yellow and orange protective clothing are standing or crouching in the tunnel, watching something.", - "id": 31424 - }, - { - "image_path": "G:\\images\\combined\\005452_jpg.rf.c26a89355ac0a6e5aabf73b32342fe8f.jpg", - "response": "The image shows a group of workers in a tunnel. They are wearing yellow, orange, and gray vests and hard hats of various colors. Some workers are standing in the foreground, while others are in the background. The tunnel has a white ceiling and walls that are a mix of white and gray. There is a large piece of equipment in the middle of the floor, and several long pipes are laid out next to it. The floor is covered in small rocks and debris. The image is taken in a construction site.", - "id": 31425 - }, - { - "image_path": "G:\\images\\combined\\005453_jpg.rf.9aa928af9b6711ce76a66bf401c84e2d.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a black shirt. They are holding a metal rod with a purple torch on the end of it. The person is also standing next to a large metal girder. In the background there is a large factory with yellow and blue machinery.", - "id": 31426 - }, - { - "image_path": "G:\\images\\combined\\005454_jpg.rf.90c55d93e1eac8819eeaee8a1b58ccbc.jpg", - "response": "A group of men standing around each other.", - "id": 31427 - }, - { - "image_path": "G:\\images\\combined\\005454_jpg.rf.f2759c5b1c2afe2d638ce673d86ae5f9.jpg", - "response": "A group of men standing around each other", - "id": 31428 - }, - { - "image_path": "G:\\images\\combined\\005455_jpg.rf.289046515cf9f6a2b19efcb53f1010f2.jpg", - "response": "A group of people working on a construction site.", - "id": 31429 - }, - { - "image_path": "G:\\images\\combined\\005455_jpg.rf.2ee46feea7d17f58b9ade2d97414c20d.jpg", - "response": "In the image, there are several people working in a construction site. They are wearing uniforms and helmets. Some of them are welding steel bars, while others are doing other tasks. In the background, there is a large banner with Chinese characters written on it.", - "id": 31430 - }, - { - "image_path": "G:\\images\\combined\\005456_jpg.rf.1c54bf80d90c94709ea5c0122f3892ef.jpg", - "response": "A group of men standing next to each other.", - "id": 31431 - }, - { - "image_path": "G:\\images\\combined\\005457_jpg.rf.bca13d6b988714fd15bf7ca41290a73a.jpg", - "response": "a group of people standing around each other", - "id": 31432 - }, - { - "image_path": "G:\\images\\combined\\005457_jpg.rf.f13c6a06399d44b9a24f5cf8503b01d9.jpg", - "response": "a group of men standing around talking to each other", - "id": 31433 - }, - { - "image_path": "G:\\images\\combined\\005458_jpg.rf.a919b51362776eaeb310eef7f962d990.jpg", - "response": "A group of men are working on fixing a power line that is covered in ice. They are standing on a snowy hillside and are dressed in black. One man is wearing a red hard hat. Another man is using a tool to help remove the ice from the power line. There is a pile of snow and ice to the left of the men. In the background, there are trees covered in ice.", - "id": 31434 - }, - { - "image_path": "G:\\images\\combined\\005458_jpg.rf.b86703b6ed51d39bca57092094f866f7.jpg", - "response": "A group of men are working on fixing a power line that is leaning over. They are standing on a snowy hillside and there is a large tree covered in ice nearby.", - "id": 31435 - }, - { - "image_path": "G:\\images\\combined\\005459_jpg.rf.506d414be02cf4b00d50c18cddcaccc3.jpg", - "response": "In the image there are five men(107,618),(469,988)(409,537),(538,928)(608,567),(996,997)(459,552),(686,938) working on a snowy mountain side. They are wearing hard hats(437,535),(515,582)(797,566),(978,687)(293,618),(408,695) and orange jumpsuits(410,589),(537,919)(696,670),(996,941)(461,601),(684,927). They are standing on a rocky cliff and appear to be working on a large metal structure.", - "id": 31436 - }, - { - "image_path": "G:\\images\\combined\\005459_jpg.rf.6b18961fb36ae776d6000b614d5e26ab.jpg", - "response": "A group of people working on a power line in the snow.", - "id": 31437 - }, - { - "image_path": "G:\\images\\combined\\00545ded62f5d8e0.jpg", - "response": "A street sign that says \"Ministry of Birthdays\" on it with an arrow pointing up.", - "id": 31438 - }, - { - "image_path": "G:\\images\\combined\\00545_jpg.rf.25a3f0d888c2494b178109029a378a20.jpg", - "response": "A construction worker crouches down and uses a tool to make adjustments to a metal beam. The metal is painted silver and the worker is wearing a grey shirt, dark grey pants, a blue hat, and brown shoes. He is working on a construction site that has large pieces of concrete.", - "id": 31439 - }, - { - "image_path": "G:\\images\\combined\\005460_jpg.rf.364f17513aa24fbd573f92628992dc69.jpg", - "response": "In the image there are three people, two of them are wearing yellow and white safety vests and yellow and white hard hats. They are standing on a construction site which has scaffolding and lumber stacked around. They are looking at blueprints which are placed on a wooden table.", - "id": 31440 - }, - { - "image_path": "G:\\images\\combined\\005460_jpg.rf.c192e4210b0271c87b0c88ad0c170c42.jpg", - "response": "In the image there are three people, all of them are wearing yellow vests and helmets. They are on a construction site, two of them are looking at a blueprint that is placed on a wooden table. The table is located in the foreground, left of the people. The people are standing on a platform that is made of wood, it is located in the background, center of the image. There are several wooden planks around the platform, some of them are cut in size. In the background, there are scaffolding and a wooden structure.", - "id": 31441 - }, - { - "image_path": "G:\\images\\combined\\005461_jpg.rf.579e36a711b457b3d078d56a28567025.jpg", - "response": " A man(392,109),(804,996) wearing a yellow hard hat(495,109),(670,273) and blue shirt(505,388),(805,997) with yellow writing(532,494),(629,629) on it is carrying a long rod(273,449),(566,567) over his shoulder while standing in a cave.", - "id": 31442 - }, - { - "image_path": "G:\\images\\combined\\005461_jpg.rf.b2019668a08ab2890d2d5b26c86866ff.jpg", - "response": "A man wearing a yellow hard hat and work clothes, carrying a long rod over his shoulder. He is standing in a large tunnel with a shovel leaning against the wall behind him.", - "id": 31443 - }, - { - "image_path": "G:\\images\\combined\\005462_jpg.rf.63b248d6dbe9c84f2a9175dc6c4001d3.jpg", - "response": "The image shows three people standing next to a dark SUV with an open trunk. The people are loading bags, specifically red ones, into the trunk. There are two bags visible, one on the left and one on the right, and another bag in the trunk in the middle. The people are all wearing winter coats, with one person on the left wearing a dark gray one, the person in the middle wearing a dark brown one, and the person on the right wearing a light blue one. The person on the left is also wearing glasses. The background includes a building with a red and white facade, and a white rectangular structure with a row of four white squares on it.", - "id": 31444 - }, - { - "image_path": "G:\\images\\combined\\005462_jpg.rf.e33fc4dd0c555697ed68e4f8722975d3.jpg", - "response": "The image shows three people standing next to a dark SUV with its hatchback open. The person on the left, who is wearing a brown jacket and glasses, is handing an orange bag to the person in the middle, who is wearing a dark grey jacket. The person in the middle is in turn handing an orange bag to the person on the right, who is wearing a light blue jacket. The person on the right is also holding an orange bag. The three people are standing quite close to one another, with the person on the left being on the left side of the car and the person on the right being on the right side of the car. The person in the middle is standing between the two other people.", - "id": 31445 - }, - { - "image_path": "G:\\images\\combined\\005463_jpg.rf.ac05402581957d7f85676195cc02ddcb.jpg", - "response": "A large pipe is being worked on by several men. The pipe is brown and is in the ground, with a large section of it dug out and being worked on by men wearing hard hats. There is a yellow and gray bulldozer next to the pipe, and a man in a black jacket is watching the work. The background is filled with dirt and rocks.", - "id": 31446 - }, - { - "image_path": "G:\\images\\combined\\005463_jpg.rf.e29ebad6f6b497f5924abc4db9158f80.jpg", - "response": "A large pipe is being worked on by several men. The pipe is located in a large pit in the ground and is surrounded by construction equipment. Some men are standing on the pipe itself, while others are standing around the pit.", - "id": 31447 - }, - { - "image_path": "G:\\images\\combined\\005464_jpg.rf.d3fb1b8851c85730c631c85840d662a7.jpg", - "response": "An image of a construction site with two workers in yellow hats. There is a pile of sand in the middle of the site and a pile of gravel on the right side. There are hoses on the ground and a few wooden boards.", - "id": 31448 - }, - { - "image_path": "G:\\images\\combined\\005465_jpg.rf.09f3b242ea4bb1f02859b4d3eda721d8.jpg", - "response": "A worker(0,442),(487,999) is fixing a pipe", - "id": 31449 - }, - { - "image_path": "G:\\images\\combined\\005466_jpg.rf.4f4842e15be4a7d05852271ef3d1e784.jpg", - "response": "The image shows three men in yellow hard hats and orange work vests, standing in front of a yellow piece of heavy machinery. The men are all wearing similar clothing, with their hair cut short. The middle man has a faint mustache and is looking straight ahead. The man on the left is smiling slightly and has a small amount of hair on his forehead. The man on the right has a double chin and his hair is sticking up.", - "id": 31450 - }, - { - "image_path": "G:\\images\\combined\\005467_jpg.rf.3df6f13e41e3918b9a553dab593a9a1f.jpg", - "response": "Men(478,517),(696,997)(169,426),(414,997) in front of a building", - "id": 31451 - }, - { - "image_path": "G:\\images\\combined\\005467_jpg.rf.8cf6246344f473d62b0c2daec1ee0087.jpg", - "response": "Men(478,516),(698,997)(169,425),(414,997) in front of a building", - "id": 31452 - }, - { - "image_path": "G:\\images\\combined\\005468_jpg.rf.02d77db2759a78afad73655aaeafb7ad.jpg", - "response": "An older man wearing a grey shirt and a orange hard hat.", - "id": 31453 - }, - { - "image_path": "G:\\images\\combined\\005468_jpg.rf.693b7ed32e953a7fbbe02a2760ecf6ea.jpg", - "response": "An older man wearing a grey work shirt and a orange hard hat is sitting on a concrete form with a trowel in his hand.", - "id": 31454 - }, - { - "image_path": "G:\\images\\combined\\005469_jpg.rf.19263bbc983120caa2973bb341a4d2ee.jpg", - "response": "An electrician is standing on a ladder next to a large transformer. He is wearing a gray shirt, a blue hat, and a tool belt around his waist. He is holding a red tool in his hand. The sky above him is overcast.", - "id": 31455 - }, - { - "image_path": "G:\\images\\combined\\005469_jpg.rf.d2ceb255c93d7534033a9fa62585910a.jpg", - "response": "An electrician is on a ladder working on an electrical box.", - "id": 31456 - }, - { - "image_path": "G:\\images\\combined\\00546_jpg.rf.cf45c094fb087ce80d7c5db82923bc0b.jpg", - "response": "A group of men in hard hats and work clothes are standing in a large room. Some men are wearing orange and blue work clothes, while others are wearing navy blue work clothes. They are standing in front of a large concrete wall and a metal beam. There is a large metal pipe on the left side of the room and a door on the right side. There is also a large screen on the wall behind the men.", - "id": 31457 - }, - { - "image_path": "G:\\images\\combined\\005470_jpg.rf.5561cb7e1cbef3146c1daf68c4ce125a.jpg", - "response": "two construction engineers observing a construction site with cranes in the background", - "id": 31458 - }, - { - "image_path": "G:\\images\\combined\\005470_jpg.rf.b89bf3e697d7f2e81f267e43b7d545e1.jpg", - "response": "In the image there are two men wearing orange safety helmets and one of them is wearing a high visibility vest. They are both standing in front of a construction site with three cranes working.", - "id": 31459 - }, - { - "image_path": "G:\\images\\combined\\005471_jpg.rf.2a355fa3e89ca30faf6cbc9dbdb8c4c0.jpg", - "response": "A group of three men standing in a room that is under construction. They are all wearing hard hats and masks. The room has a wooden beam on the ceiling and walls that are being torn down. There are also two ladders in the room.", - "id": 31460 - }, - { - "image_path": "G:\\images\\combined\\005471_jpg.rf.cf1ce46d2ebaf9dfdae2791586ba1860.jpg", - "response": "A group of three men in hard hats and masks stand in a room with exposed brick walls and debris on the ground. The room has a wooden roof that has been partially removed. There are ladders on the left side of the room.", - "id": 31461 - }, - { - "image_path": "G:\\images\\combined\\005472_jpg.rf.52b80aed4d419933c814a86d1a4b296d.jpg", - "response": "A group of men in suits standing around a table with a model city on it.", - "id": 31462 - }, - { - "image_path": "G:\\images\\combined\\005473_jpg.rf.479354716aa3a983418ac23648e7fcac.jpg", - "response": "A construction worker in a yellow hard hat and orange uniform sits on the ground next to a pile of rebar. They are holding a large flat shovel and appear to be working on the rebar.", - "id": 31463 - }, - { - "image_path": "G:\\images\\combined\\005473_jpg.rf.76468b7a8922cd67142fc1dd0513462a.jpg", - "response": "A construction worker in a red uniform and yellow hard hat is kneeling down and holding a long wooden stick. They are in a construction area with a concrete floor and many metal bars. There is a bucket behind the worker and some writing on the floor.", - "id": 31464 - }, - { - "image_path": "G:\\images\\combined\\005474_jpg.rf.f5d94c4da0884a262cf0d64e9726d53d.jpg", - "response": "A man in a black jacket and a hard hat is hosing off the deck of a ship.", - "id": 31465 - }, - { - "image_path": "G:\\images\\combined\\005475_jpg.rf.a04fd7b7cd6d9a57cf415ff4a2f048d8.jpg", - "response": "A man in a white shirt and red hard hat is talking to another man in a white shirt and red hard hat. They are standing in front of a wall of pipes and scaffolding.", - "id": 31466 - }, - { - "image_path": "G:\\images\\combined\\005475_jpg.rf.b3fd836975a1616480646ff62198c554.jpg", - "response": "A construction worker in a red hard hat is showing another construction worker something on the wall.", - "id": 31467 - }, - { - "image_path": "G:\\images\\combined\\005476_jpg.rf.547d2d1d9f3bca79caf2e1adacf14762.jpg", - "response": "A construction worker is using a long tool to smooth out the concrete.", - "id": 31468 - }, - { - "image_path": "G:\\images\\combined\\005476_jpg.rf.a812d4120c5f1a819c3f8b267fe7033b.jpg", - "response": "A construction worker is using a long tool with a wooden handle to smooth out concrete.", - "id": 31469 - }, - { - "image_path": "G:\\images\\combined\\005477_jpg.rf.05dbd77854ecacd57337fc9cc70b1466.jpg", - "response": "A group of people standing around a van.", - "id": 31470 - }, - { - "image_path": "G:\\images\\combined\\005477_jpg.rf.700d15bcb6b81ee570873797e69b96b7.jpg", - "response": "a group of people standing in front of a van", - "id": 31471 - }, - { - "image_path": "G:\\images\\combined\\005478_jpg.rf.1d18aec7eaa05d5122af0e370e61fdae.jpg", - "response": "A man wearing a yellow hard hat and holding a power drill stands in front of a building under construction. The building is a large structure with many tall cranes around it. The man is standing on a construction site and is wearing a blue shirt and blue jeans. He is also holding a yellow and black power drill.", - "id": 31472 - }, - { - "image_path": "G:\\images\\combined\\005478_jpg.rf.28abad5a60147ef9cd54bd2c57978f63.jpg", - "response": "A man in a blue shirt and yellow hard hat stands in front of a construction site. He is holding a power tool.", - "id": 31473 - }, - { - "image_path": "G:\\images\\combined\\005479_jpg.rf.9903a767a49137e4119b6c0923b3eb75.jpg", - "response": "The image shows five men in red\u5b89\u5168\u5e3d\u7ad9\u5728\u5de5\u5730\u524d\u9762\u3002 They are most likely construction workers or managers. In the background, there are several buildings under construction. There are also several red and white pipes placed on the right. On the left, there are several people who are working at the construction site.", - "id": 31474 - }, - { - "image_path": "G:\\images\\combined\\005479_jpg.rf.df7d3b7554bf977fb8baf99d0e0bcd8a.jpg", - "response": "A group of men standing in front of a construction site", - "id": 31475 - }, - { - "image_path": "G:\\images\\combined\\00547_jpg.rf.1ccef08a34a9dcb3f030438e81adc31a.jpg", - "response": "A group of people standing around a construction site", - "id": 31476 - }, - { - "image_path": "G:\\images\\combined\\00547_jpg.rf.c87789e413aa6777d28df6cb89b2166c.jpg", - "response": "The image shows a group of four people standing in a construction site. They are all wearing red helmets. One man on the left is holding a blue folder and appears to be explaining something to another man on the right. A woman in the middle is watching the two men speak. In the background, there is a building under construction. To the far right, there are also two other men wearing red helmets. In the middle of the construction site, there is a pile of yellow sand.", - "id": 31477 - }, - { - "image_path": "G:\\images\\combined\\005480_jpg.rf.b04c8bc62fbf7e411105e83227e3fa6f.jpg", - "response": "An electrician wearing a blue uniform and a yellow hard hat is working on a power line. He is holding a pair of pliers and is in the process of installing a new piece of equipment. The sky is blue with a few clouds and the electrician is high up on a metal structure. In the background, there is a lush green forest.", - "id": 31478 - }, - { - "image_path": "G:\\images\\combined\\005480_jpg.rf.f0ac14398d2dd74f5d9ffb84bb1f1d06.jpg", - "response": "An electrician is working on a power line.", - "id": 31479 - }, - { - "image_path": "G:\\images\\combined\\005481_jpg.rf.8ce3d0b29fb1b2c1af8629ba9d09143c.jpg", - "response": "The image shows two workers at a construction site. They are building a brick wall and laying bricks. The wall is high and takes up most of the image. The workers are wearing yellow helmets and are at different positions on the wall. One is on the left side and the other is on the right side. The workers are also wearing grey uniforms. In the background, there is a building with scaffolding. The sky is grey and overcast.", - "id": 31480 - }, - { - "image_path": "G:\\images\\combined\\005482_jpg.rf.118b9feb4f9063fbbaa453f18c50ef0d.jpg", - "response": "A worker is seen in the image, he is wearing a blue jumpsuit and a blue hat with a yellow stripe. He is holding a box and is working on a large spool of black cable. The sky is a clear blue and there are no clouds in sight. The worker is in an open field with some power lines in the background.", - "id": 31481 - }, - { - "image_path": "G:\\images\\combined\\005482_jpg.rf.231c97924377d7c5288ecf6bddcd80fd.jpg", - "response": "In the image there is a worker wearing blue overalls and a blue hat, who is pulling a large spool of black cable. The worker is located on a patch of grass, and there are several power poles visible in the background. The sky is a clear blue and the sun is shining.", - "id": 31482 - }, - { - "image_path": "G:\\images\\combined\\005483_jpg.rf.20fece88ffd679854add67f255b53869.jpg", - "response": "A group of people working on a bridge that is orange in color.", - "id": 31483 - }, - { - "image_path": "G:\\images\\combined\\005483_jpg.rf.82daeed76d164994b6f4e112252243c6.jpg", - "response": "A group of workers are working on a bridge.", - "id": 31484 - }, - { - "image_path": "G:\\images\\combined\\005484_jpg.rf.95c97d748602b5e6ba937593f425b8be.jpg", - "response": "A group of people standing in front of a yellow machine.", - "id": 31485 - }, - { - "image_path": "G:\\images\\combined\\005484_jpg.rf.c5749bd20babcd50b9cf806461970c32.jpg", - "response": "A group of people standing in front of a yellow machine.", - "id": 31486 - }, - { - "image_path": "G:\\images\\combined\\005485_jpg.rf.454c7a7813f76cb2db61960b3bfe4e5b.jpg", - "response": "A man wearing a red helmet is on a scaffolding. He is standing on a black platform and is working on a building. There are several other people on the scaffolding working on the building as well. The building has many windows and one of them has an air conditioner in it. There is a bamboo ladder on the right side of the scaffolding and a yellow and red flag on the left side.", - "id": 31487 - }, - { - "image_path": "G:\\images\\combined\\005485_jpg.rf.f4e6ed59a19c7c22cf61e0d92a32e2af.jpg", - "response": "A man wearing a red helmet is on a scaffolding.", - "id": 31488 - }, - { - "image_path": "G:\\images\\combined\\005486_jpg.rf.7bbc1bc0c303be01ee9b259dc5af5f75.jpg", - "response": "The image shows a group of workers in front of a large building under construction. There are two main groups of workers, one on the left and one on the right. Some workers are standing, while others are sitting on a truck. The workers are wearing uniforms and yellow hats. There are also a few workers inside the large building. In the foreground, there is a fence with a metal railing. On the right side of the image, there is a yellow truck with a cage on the back. The truck is filled with drilling machines.", - "id": 31489 - }, - { - "image_path": "G:\\images\\combined\\005487_jpg.rf.66c9d3a1c420ce10cedcc1738ee496ac.jpg", - "response": "At a construction site, two engineers are standing next to a cement wall. They are both holding rolled up blueprints. The man is wearing a white hard hat and a blue shirt. The woman is wearing a white helmet and a beige suit.", - "id": 31490 - }, - { - "image_path": "G:\\images\\combined\\005487_jpg.rf.7fe694f0f63a2f863aca08d477daf917.jpg", - "response": "At a construction site, two engineers wearing hard hats stand next to a concrete wall. They are holding blueprints and talking.", - "id": 31491 - }, - { - "image_path": "G:\\images\\combined\\005488_jpg.rf.4397feca727f497c29b3ee43e7a37a85.jpg", - "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", - "id": 31492 - }, - { - "image_path": "G:\\images\\combined\\005488_jpg.rf.fc35f81fbb922931866ebf7c93462eca.jpg", - "response": "The picture shows a group of men standing in a circle talking. They are all dressed in black or white suits and most of them are wearing ties. In the background, there is a bridge and a few cars.", - "id": 31493 - }, - { - "image_path": "G:\\images\\combined\\005489_jpg.rf.c3eaf0c8f7367d166fb10a7e2378ab00.jpg", - "response": "A man in a white shirt and grey pants is carrying a large cement block. He is wearing a yellow hat and has a orange band around his arm. He is standing in a construction area with a wheel barrel to his right and a pile of cement to his left. In the background there is a forest of trees and a building.", - "id": 31494 - }, - { - "image_path": "G:\\images\\combined\\005489_jpg.rf.fa69009d4ded498fbec42099afd0438c.jpg", - "response": "A man wearing a white shirt and a yellow hat is holding a concrete block in a construction area. He is standing next to a wheelbarrow and there are piles of grey concrete to his left. In the background there is a forest of trees and a white building.", - "id": 31495 - }, - { - "image_path": "G:\\images\\combined\\00548dfc8ec76f5d.jpg", - "response": "A city bus is stopped at a bus stop.", - "id": 31496 - }, - { - "image_path": "G:\\images\\combined\\00548_jpg.rf.2b0292f5551e8770e1aaf658d2529bac.jpg", - "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", - "id": 31497 - }, - { - "image_path": "G:\\images\\combined\\00548_jpg.rf.95dfeb5fea89230e4a983124a218aaec.jpg", - "response": "A worker in a blue helmet and jacket is pointing to a machine in a factory. Another worker in a green helmet and blue jacket is looking at the machine. The machine has a red and blue color. The factory has a steel pipe on the left and a brick wall on the right.", - "id": 31498 - }, - { - "image_path": "G:\\images\\combined\\005490_jpg.rf.dc826ed9b0158c49ac1c5d17f049cfe0.jpg", - "response": "In the image, a group of people is standing in front of a construction site. Among them, there are three men in suits, two of them closer to the left, one in the center and another one to their right. A woman is standing between them, closer to the left. To their right, there is a man in a brown suit. In front of the group, there is a blackboard with some writing on it. The background shows a large building under construction. In the far distance, there are two cranes working.", - "id": 31499 - }, - { - "image_path": "G:\\images\\combined\\005491_jpg.rf.4dd1053153eb227b44d9c0d95b17869b.jpg", - "response": "A man and woman wearing hard hats and looking at blueprints.", - "id": 31500 - }, - { - "image_path": "G:\\images\\combined\\005491_jpg.rf.cbead6e91577890213361d6a3af6541f.jpg", - "response": "A man and woman wearing hard hats and looking at blueprints.", - "id": 31501 - }, - { - "image_path": "G:\\images\\combined\\005492_jpg.rf.2af08370a561e8a7fe61a5d182f04ba8.jpg", - "response": "A group of workers are at a construction site. They are all wearing hard hats. One man is in the foreground, he is wearing a blue shirt and a red hard hat. Another man is behind him, he is wearing a white shirt and a white hard hat. The third man is further back, he is wearing a yellow shirt and a red hard hat. They are all working on a construction project. In the background, there are other buildings and construction equipment.", - "id": 31502 - }, - { - "image_path": "G:\\images\\combined\\005492_jpg.rf.6487cb1803389b4ca006134df137203f.jpg", - "response": "A group of workers are working on a construction site. They are building a bamboo scaffolding. One of the workers is wearing a red helmet. There are three workers in total. One is wearing a blue shirt and holding a red bar. Another worker is wearing a white shirt and holding a bamboo stick. The third worker is wearing a white shirt and holding a bamboo stick as well. In the background, there are some buildings and a crane.", - "id": 31503 - }, - { - "image_path": "G:\\images\\combined\\005493_jpg.rf.af365ad4dfeee44fea7fd30b08adf001.jpg", - "response": "A group of men are in a field with some sticks. They are standing near a pile of smoke. The men are wearing blue shirts and yellow hard hats.", - "id": 31504 - }, - { - "image_path": "G:\\images\\combined\\005493_jpg.rf.fa9380890197aa1a14a7e480685d1250.jpg", - "response": "A group of men in a field with one of them holding a stick.", - "id": 31505 - }, - { - "image_path": "G:\\images\\combined\\005494_jpg.rf.83e91c1a8b323196556dcae56d67e3d9.jpg", - "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a saw to cut through a large piece of grey plastic. The plastic is located on the ground and there are several saw horses around the man and the plastic. In the background, there is a red wall and a door. The floor of the construction site is covered with various tools such as a yellow level, a hammer, a screwdriver and a tape measure.", - "id": 31506 - }, - { - "image_path": "G:\\images\\combined\\005494_jpg.rf.a108140b71190ef48d7443d9f7e5cdba.jpg", - "response": "In the image there is a man wearing a helmet and work clothes who is working on a construction site. He is using a tool to cut through a large sheet of plastic. The sheet of plastic is on the ground and there are two saw horses supporting it. There are also several other tools on the ground around the sheet of plastic. The background is a red wall and a grey floor.", - "id": 31507 - }, - { - "image_path": "G:\\images\\combined\\005495_jpg.rf.219ba17547ea8b8bcc4dbbad681099b7.jpg", - "response": "a group of men standing around", - "id": 31508 - }, - { - "image_path": "G:\\images\\combined\\005495_jpg.rf.c15b2f95a5427f8dea196d15e7898d23.jpg", - "response": "a group of men standing next to each other", - "id": 31509 - }, - { - "image_path": "G:\\images\\combined\\005496_jpg.rf.171f36a0163807708e4d4a9a84480ff8.jpg", - "response": "The image shows three men standing in front of a construction site. The man on the left is wearing a beige jacket and a beige shirt with dark grey pants. The man in the middle is wearing a black jacket over a dark green shirt and dark grey pants. The man on the right is wearing a beige suit and a dark green shirt. They are all standing on a construction site with a brown dirt ground and a blue and white building in the background. There are also some construction materials on the ground. In the background, there is a brown mountain.", - "id": 31510 - }, - { - "image_path": "G:\\images\\combined\\005497_jpg.rf.706f8e5079e2c0bb162b30d818b61e0b.jpg", - "response": "A woman(2,6),(401,997) in a pink shirt and yellow hard hat(64,3),(345,177) is holding a long tool and pointing it at something.", - "id": 31511 - }, - { - "image_path": "G:\\images\\combined\\005497_jpg.rf.71244db396bd9ab18bfc1c5591418827.jpg", - "response": "A woman(2,4),(400,997) in a pink shirt and yellow hard hat(63,3),(319,173) is working with two men(312,282),(567,996)(424,446),(794,997) in a cave.", - "id": 31512 - }, - { - "image_path": "G:\\images\\combined\\005498_jpg.rf.8dd70d7a696f9c8f12c2669e01f76b47.jpg", - "response": "The image shows three men sitting on the ground in the dark. They are wearing hard hats and masks, and are holding tools. One of the men is holding a light source in his hand.", - "id": 31513 - }, - { - "image_path": "G:\\images\\combined\\005498_jpg.rf.ff556fc304a968412bca9cd79270e405.jpg", - "response": "In the image there are three people sitting in a tent. They are all wearing black and have something in their mouth. Two of them are wearing all black and one is wearing light colored pants. They are all holding something in their hand, it could be a stick, a torch or a phone. The picture is so dark that it's hard to tell the details.", - "id": 31514 - }, - { - "image_path": "G:\\images\\combined\\005499_jpg.rf.d6f7a5b87fd38a9b01556cc9d9d27fa3.jpg", - "response": "A man in a grey shirt is holding a yellow folder and pointing towards a building. There are three men in blue shirts and yellow hard hats walking behind him. There is a car parked on the left side of the frame and a brown building with many windows in the background.", - "id": 31515 - }, - { - "image_path": "G:\\images\\combined\\00549_jpg.rf.becf138dc0661629cce80b6e89021316.jpg", - "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", - "id": 31516 - }, - { - "image_path": "G:\\images\\combined\\00549_jpg.rf.d828056bffad354b4b793573046c8a8d.jpg", - "response": "The image depicts two construction workers on a building site. They are both wearing high visibility jackets and hard hats. The man on the left is holding several sheets of paper, possibly blueprints, and is smiling at the camera. The man on the right is also smiling, although he is looking straight ahead. In the background, there is a yellow tractor parked.", - "id": 31517 - }, - { - "image_path": "G:\\images\\combined\\0054b16219469dd7.jpg", - "response": "The image shows a group of men standing on a soccer field. They are all wearing different colored uniforms, with some wearing red and black striped shirts and others wearing yellow. The men are standing in a huddle near the center of the field.", - "id": 31518 - }, - { - "image_path": "G:\\images\\combined\\0054c91397f2fe05.jpg", - "response": "In the image there is a rectangular black and brown cell phone from the early 2000s. It has a small screen and a few buttons. The phone is turned off and placed on a white surface.", - "id": 31519 - }, - { - "image_path": "G:\\images\\combined\\0054d8bdd83c2537.jpg", - "response": "A lit up theater sign that says Prince Charles Cinema on it.", - "id": 31520 - }, - { - "image_path": "G:\\images\\combined\\0054eaf0da3320f6.jpg", - "response": "The image features a red and white soda bottle with the name Nestlitts of California on it. The soda is orange flavored and sweetened with cane sugar. The bottle is 12 fluid ounces in size.", - "id": 31521 - }, - { - "image_path": "G:\\images\\combined\\005500_jpg.rf.0f7c2c0e7809913eebd66e45c5cecaf4.jpg", - "response": "A man in a yellow hard hat is reaching up to a wooden beam. He is wearing a blue uniform and is in the process of building a wooden structure. There is scaffolding in the background.", - "id": 31522 - }, - { - "image_path": "G:\\images\\combined\\005500_jpg.rf.4e8aab4daa4506f99492dede797de8cf.jpg", - "response": "A man in a yellow hard hat is working on a wooden structure. He is wearing a blue shirt and has a yellow hard hat with a red, white, and blue brim. He is also wearing a yellow safety vest. The man is looking up at a wooden beam and appears to be in the process of building something. There is a ladder in the background and the sky is blue with a few clouds.", - "id": 31523 - }, - { - "image_path": "G:\\images\\combined\\005501_jpg.rf.2152a981b8ec8d10180f8bcd35d67b6f.jpg", - "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all wearing blue work clothes and hard hats. Some of them are kneeling down and digging with shovels. In front of them is a large hole filled with dirt and some bamboo shoots. To the far left of the image is a red bin and a small pile of dirt. To the far right of the image is a large rock. In the background, there is a green hill.", - "id": 31524 - }, - { - "image_path": "G:\\images\\combined\\005501_jpg.rf.f00e56190aaa23b6ae8148f3ac0138c8.jpg", - "response": "A group of men in blue work clothes and hard hats are working on a construction site. They are all holding shovels and are digging in a muddy area. Some of them are also pulling on a rope. In the background, there is a small hill with grass on it.", - "id": 31525 - }, - { - "image_path": "G:\\images\\combined\\005502_jpg.rf.58b51747e68fe6912916d459e87c1cc2.jpg", - "response": "The image shows a group of people standing in a snow covered field. They are all wearing hard hats and some are wearing orange vests. In the background, snow covered trees can be seen. A power line is visible, with some of the wires down. A few people are working on fixing the power line.", - "id": 31526 - }, - { - "image_path": "G:\\images\\combined\\005503_jpg.rf.29d2aa343d28c7887a0a3fdc8a03f875.jpg", - "response": "A factory worker in a blue jumpsuit and white apron is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal barrel into the large metal cylinder. There are other workers in the background, one on the left and two on the right. There are also two large metal vats in the foreground, one on the left and one on the right. The room is filled with metal shavings and there are large metal objects in the background.", - "id": 31527 - }, - { - "image_path": "G:\\images\\combined\\005503_jpg.rf.35701808fd97adf1c9e03c9e7972fccf.jpg", - "response": "A factory worker in a blue jumpsuit and hard hat is standing in front of a large metal cylinder that is on fire. The worker is pouring liquid metal from a large metal cylinder into a large metal bin. There are other workers in the background, one on the left and two on the right. There are also two large metal cylinders in the background. The factory floor is covered in metal shavings.", - "id": 31528 - }, - { - "image_path": "G:\\images\\combined\\005504_jpg.rf.37a465c62f60f9f5744a7c90a7440c34.jpg", - "response": "Three men are standing in front of a blue wall. They are all wearing hard hats. The man in the middle has his arms crossed. The man on the far left is wearing a red vest and looking straight ahead. The man on the far right is wearing a yellow vest with his arms behind his back.", - "id": 31529 - }, - { - "image_path": "G:\\images\\combined\\005504_jpg.rf.41dd1221f6433c80182d3c880e46d0b9.jpg", - "response": "Three men are standing in front of a construction site. They are all wearing hard hats and reflective vests. The man in the middle has a mustache. The man on the far left is also wearing a white helmet. The man on the far right is wearing a yellow helmet.", - "id": 31530 - }, - { - "image_path": "G:\\images\\combined\\005505_jpg.rf.35bdf9216bc5125d03186dd1a9c5c3b8.jpg", - "response": "A group of people working on a construction site.", - "id": 31531 - }, - { - "image_path": "G:\\images\\combined\\005505_jpg.rf.e41c1b8177d8e3125bccd404cf629144.jpg", - "response": "The image shows a group of construction workers inside a building that is under construction. They are working on the fifth floor of the building, which has wooden beams and scaffolding. Some workers are wearing yellow hard hats, and there is a red hard hat on the floor. A cup is also visible in the scene.", - "id": 31532 - }, - { - "image_path": "G:\\images\\combined\\005506_jpg.rf.55a7caae0f8b8d524e1f11931ef09c65.jpg", - "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both bearded and one of them has a beard of orange color. The one on the left is holding a tablet in his hand and the one on the right a pen. In the background, behind them, there is a construction site with many metal bars.", - "id": 31533 - }, - { - "image_path": "G:\\images\\combined\\005506_jpg.rf.5e259788198ba2d53e120adedf2d8d59.jpg", - "response": "In the image there are two construction workers wearing orange protective vests and white helmets. They are both holding white blueprints and looking at a construction site. The man on the left is bearded and has a beard, the man on the right has a mustache.", - "id": 31534 - }, - { - "image_path": "G:\\images\\combined\\005507_jpg.rf.6e254b223b80c42b43174e78152c3148.jpg", - "response": "A man on a ladder repairs power lines in the snow", - "id": 31535 - }, - { - "image_path": "G:\\images\\combined\\005507_jpg.rf.823d3143b7fb1c1dcc03f9fbec406852.jpg", - "response": "A man on a ladder is fixing a power line.", - "id": 31536 - }, - { - "image_path": "G:\\images\\combined\\005508_jpg.rf.454ba8ec2ce546bb13503e27b7ff19c6.jpg", - "response": "A man in an orange shirt is on a scaffolding.", - "id": 31537 - }, - { - "image_path": "G:\\images\\combined\\005508_jpg.rf.c264f753bc3b21bc1b0af5b3922e08f3.jpg", - "response": "A man in an orange shirt is on a scaffolding.", - "id": 31538 - }, - { - "image_path": "G:\\images\\combined\\005509_jpg.rf.0813489ac7580eb4553b894012a0452b.jpg", - "response": "The image shows two workers in blue uniforms and yellow hard hats repairing a power box. They are kneeling on the ground, focused on the task at hand. The sky is blue and there are a few clouds in the sky. The workers are wearing safety goggles and there is a screwdriver on the ground.", - "id": 31539 - }, - { - "image_path": "G:\\images\\combined\\005509_jpg.rf.2a7465e6946db7db7a2ade814ef6f462.jpg", - "response": "An electrician is working on a power line", - "id": 31540 - }, - { - "image_path": "G:\\images\\combined\\00550_jpg.rf.048fe80a722b9520e2c0b1070acba211.jpg", - "response": "a group of men walking down a hallway", - "id": 31541 - }, - { - "image_path": "G:\\images\\combined\\00550_jpg.rf.239ea2ed4b2a2f3a15d2adeb9f009fda.jpg", - "response": "A group of men in white shirts and red hats are walking down a hallway. One man is carrying a black bag. The walls of the hallway are made of red brick.", - "id": 31542 - }, - { - "image_path": "G:\\images\\combined\\005510_jpg.rf.d421690025fa27af2cf1e9add2227d57.jpg", - "response": "two men(207,567),(449,996) standing in front of a building", - "id": 31543 - }, - { - "image_path": "G:\\images\\combined\\005511_jpg.rf.acf1a90d0b1880c128f48c8492aa8a13.jpg", - "response": "The image shows a large tunnel with a group of workers inside. There are large pipes in the foreground and construction equipment in the background. The tunnel is lit up by lights and the walls are concrete.", - "id": 31544 - }, - { - "image_path": "G:\\images\\combined\\005511_jpg.rf.d8260fc2fe394012d9d10aa5aabea7e9.jpg", - "response": "The image shows a large tunnel with a group of workers inside. There are two large pipes in the foreground, and a truck is visible on the left side of the tunnel. The tunnel is lit up by several lights, causing the walls to appear white. The workers are wearing hard hats and can be seen standing at various points inside the tunnel.", - "id": 31545 - }, - { - "image_path": "G:\\images\\combined\\005512_jpg.rf.2b81d2d50ff50d603b176d851517826a.jpg", - "response": "A group of men walking down a street.", - "id": 31546 - }, - { - "image_path": "G:\\images\\combined\\005512_jpg.rf.7d26f4b344875825538509a5ba38a3c2.jpg", - "response": "A group of men walking down a street.", - "id": 31547 - }, - { - "image_path": "G:\\images\\combined\\005513_jpg.rf.29f79676c519decffceca5d680f7ff37.jpg", - "response": "A group of people standing around a pole in the rain.", - "id": 31548 - }, - { - "image_path": "G:\\images\\combined\\005513_jpg.rf.9c4d4c63da1db9fdf383c5671d5e9a02.jpg", - "response": " Men(660,318),(780,745)(439,192),(615,835)(156,286),(269,813) working on a construction site at night.", - "id": 31549 - }, - { - "image_path": "G:\\images\\combined\\005514_jpg.rf.7a0fd0050bc9c98cb1c0beb6123adc55.jpg", - "response": "A group of workers wearing hard hats", - "id": 31550 - }, - { - "image_path": "G:\\images\\combined\\005514_jpg.rf.f6dcc558ad001b5bb3a2bbd65008118a.jpg", - "response": "A group of people wearing hard hats", - "id": 31551 - }, - { - "image_path": "G:\\images\\combined\\005515_jpg.rf.49e3019d5ed170efba4b2d142b83fb4c.jpg", - "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air repairing power lines.", - "id": 31552 - }, - { - "image_path": "G:\\images\\combined\\005515_jpg.rf.d02cd78fef4da42c6ff307ca72d9ddf4.jpg", - "response": "A group of three men in red work jumpsuits and hard hats are on a ladder and in the air, working on power lines.", - "id": 31553 - }, - { - "image_path": "G:\\images\\combined\\005516_jpg.rf.3a58f8a6ce73e27a1058e1fbebd79165.jpg", - "response": "The image shows Kim Jong-un, the leader of North Korea, standing in front of a dam. He is wearing a black uniform and is smiling. The sky above him is overcast, and there are trees and a body of water in the background. There are also several flags in the distance.", - "id": 31554 - }, - { - "image_path": "G:\\images\\combined\\005516_jpg.rf.b179ef0596d2a5bca9142ab37ad42f56.jpg", - "response": "This image is of a man standing in front of a dam. He is smiling and looking into the camera. He is wearing a black military uniform. There are green bushes behind him and a fence in front of him. There are also several signs in the background.", - "id": 31555 - }, - { - "image_path": "G:\\images\\combined\\005517_jpg.rf.dadff8cb1b0e648196a0f52b45a64964.jpg", - "response": "A construction worker is being rescued by firefighters after being trapped in a construction site.", - "id": 31556 - }, - { - "image_path": "G:\\images\\combined\\005518_jpg.rf.ec2cbed7f762e1b60c0bfd38eab739fd.jpg", - "response": "a group of men wearing white shirts and red hats", - "id": 31557 - }, - { - "image_path": "G:\\images\\combined\\005518_jpg.rf.f5f169ad13bdf7f1ca16d34d38eb72f9.jpg", - "response": "a group of men wearing white shirts and red helmets", - "id": 31558 - }, - { - "image_path": "G:\\images\\combined\\005519_jpg.rf.1fccb8b6a93f38b62e093897647b246e.jpg", - "response": " Rescuers(4,4),(700,998)(511,3),(798,840) work to free a person trapped in the rubble of a building that was destroyed in an earthquake in Lushan county, Ya'an, Sichuan province, China, April 20, 2013.", - "id": 31559 - }, - { - "image_path": "G:\\images\\combined\\005519_jpg.rf.cf968a28520e183191515b158ffcb0c3.jpg", - "response": " Rescuers(5,4),(797,995)(512,3),(799,848) are seen working at the site of a collapsed hotel in China's Yunnan province.", - "id": 31560 - }, - { - "image_path": "G:\\images\\combined\\00551_jpg.rf.7c4812e4305414519b298473bb072590.jpg", - "response": " A man(321,88),(540,536) is digging a hole in the ground with a shovel(384,260),(527,503).", - "id": 31561 - }, - { - "image_path": "G:\\images\\combined\\00551_jpg.rf.94e81b469373f178c36bdba6aefd5a13.jpg", - "response": " A man(321,88),(541,529) is digging a hole in the ground with a shovel(392,256),(536,506).", - "id": 31562 - }, - { - "image_path": "G:\\images\\combined\\005520_jpg.rf.370182c2dc79fa6e438bbfd37b144c01.jpg", - "response": "In the image there are two men standing on a platform inside a factory. They are both wearing yellow hard hats and grey and red uniforms. The man on the left is giving a thumbs up. They are standing in front of a large machine.", - "id": 31563 - }, - { - "image_path": "G:\\images\\combined\\005520_jpg.rf.6b50e0196122817cdffdb2b6f5630598.jpg", - "response": "A couple of men standing in front of a factory machine.", - "id": 31564 - }, - { - "image_path": "G:\\images\\combined\\005521_jpg.rf.08061171dc59d16d819262e8bbbfab76.jpg", - "response": "The photo shows a group of workers in the construction site. They are all dressed in red and yellow, wearing yellow helmets. They are working in the construction site underground. On the left side of the photo, there is a steel ladder, and in the middle and right side of the photo, there are two iron bars. There is a pile of sand in the upper left corner of the photo, and a pile of black stones in the lower left corner. In the upper middle of the photo, there is a yellow machine with two black wheels.", - "id": 31565 - }, - { - "image_path": "G:\\images\\combined\\005521_jpg.rf.6f1d0565841e9d966f0f315a29c76d3d.jpg", - "response": "The photo shows a group of workers in the foreground wearing red uniforms and yellow hard hats. They are working on a silver metal framework that covers the floor of a\u96a7\u9053. Behind the workers, the tunnel continues to the right, with a silver metal framework covering the floor on the left. In the background, on the right, a machine is digging into the ground. The photo is taken indoors, with the workers likely\u4fee\u5efa\u5730\u94c1.", - "id": 31566 - }, - { - "image_path": "G:\\images\\combined\\005522_jpg.rf.61055b7a6a2ca9233f4cb9f8daabb24b.jpg", - "response": "A worker is working on the construction site of the stadium. The stadium is under construction and is made of concrete. There are many steel beams and cables visible in the image. The sky is overcast and there are some clouds in the sky.", - "id": 31567 - }, - { - "image_path": "G:\\images\\combined\\005522_jpg.rf.6422817f3b594031c11ae98fd603fb3f.jpg", - "response": "A worker is working on the construction site of the stadium.", - "id": 31568 - }, - { - "image_path": "G:\\images\\combined\\005523_jpg.rf.2d4cac2c31e9219158e513039a460575.jpg", - "response": "A couple of men in hard hats are looking at a large white box. They are standing in a room with a brick wall. There is a yellow web address in the corner of the image.", - "id": 31569 - }, - { - "image_path": "G:\\images\\combined\\005524_jpg.rf.23a0c238f867e3dfb8a928d506668d49.jpg", - "response": "In the image two electrical workers are wearing blue hard hats and are checking the settings on a control box. They are both dressed in blue and yellow vests. In the background there is a large concrete structure with many metal electrical poles sticking out of it. The sky is blue with a few white clouds.", - "id": 31570 - }, - { - "image_path": "G:\\images\\combined\\005524_jpg.rf.c486963a53e06a8b91c9ca3cd3230c5e.jpg", - "response": "In the image two workers are wearing blue helmets and are checking the control cabinet of a power plant. The power plant is made of metal and has many high voltage poles in the background.", - "id": 31571 - }, - { - "image_path": "G:\\images\\combined\\005525_jpg.rf.3647f645fae7ab63bb1877aa2cee542a.jpg", - "response": "A group of men working on a construction site.", - "id": 31572 - }, - { - "image_path": "G:\\images\\combined\\005525_jpg.rf.f056f5e0916de5b1276386723903c7ca.jpg", - "response": "A group of workers wearing hard hats are working on a brick wall.", - "id": 31573 - }, - { - "image_path": "G:\\images\\combined\\005526b210837e4d.jpg", - "response": "A yellow and blue airplane with the numbers 5021 on the side.", - "id": 31574 - }, - { - "image_path": "G:\\images\\combined\\005526_jpg.rf.2c9c4610c88a67bb4f2c9c1042d88f46.jpg", - "response": "The image shows three workers in black uniforms and yellow helmets who are repairing an electricity pylon. They are on a suspension bridge, connecting to the pylon with tools.", - "id": 31575 - }, - { - "image_path": "G:\\images\\combined\\005527_jpg.rf.19bef1d0d988f4ec4e3410ed07867feb.jpg", - "response": "A worker in a factory wearing an orange jumpsuit and a yellow hard hat is standing over a large pile of steel. They are holding a large steel coil and looking at it. There are many more steel coils stacked around them, as well as a few stacks of steel in the background.", - "id": 31576 - }, - { - "image_path": "G:\\images\\combined\\005527_jpg.rf.60fb6001f245376a1851ee21b10f73f8.jpg", - "response": "A worker in a factory is checking some steel.", - "id": 31577 - }, - { - "image_path": "G:\\images\\combined\\005528_jpg.rf.a92066e5b8a0d5b3570ca5e50c8125e8.jpg", - "response": " Men(426,346),(737,996)(699,285),(997,995)(0,239),(441,996) in hard hats(232,239),(394,433)(543,344),(680,481)(94,340),(195,468)(690,423),(755,491)(937,297),(998,456) standing in front of a mountain", - "id": 31578 - }, - { - "image_path": "G:\\images\\combined\\005529_jpg.rf.681472f1cc65e4a781ec4ae885b56c67.jpg", - "response": "In the image there are two people working on a piece of equipment. The people are wearing orange work vests and the man on the right is wearing a yellow hard hat. They are working on an emergency mobile\u53d8\u7535\u7ad9 which is yellow and black. The word\u53d8\u6362 is written in black on the emergency mobile\u53d8\u7535\u7ad9.", - "id": 31579 - }, - { - "image_path": "G:\\images\\combined\\005529_jpg.rf.cab3bbced8dcd0a479274d569784b395.jpg", - "response": "In the image there are two people working on a piece of yellow equipment. They are both wearing orange work vests and yellow hard hats. The person on the left is holding a large grey cable while the person on the right is connecting a black plug to the cable. There is a yellow trailer in the background with the words \"\u5e94\u6025\u79fb\u52a8\u53d8\u7535\u7ad9\" written on it.", - "id": 31580 - }, - { - "image_path": "G:\\images\\combined\\00552_jpg.rf.604805fa5d5441a61d398cc9ace89f02.jpg", - "response": " Three men(277,268),(424,998)(441,337),(547,967)(1,189),(105,997) in yellow hard hats(312,266),(424,382)(458,335),(534,422)(1,189),(88,287) standing in front of a construction site", - "id": 31581 - }, - { - "image_path": "G:\\images\\combined\\005530_jpg.rf.237aaf00c33c92bce6ec9d9ce9d2d1f7.jpg", - "response": "The image shows a group of men working on a snowy mountain. They are wearing hard hats and are engaged in various tasks. Some men are climbing up the mountain, while others are working on a structure made of metal. The mountain is covered in snow and ice, and the weather appears to be cold and overcast. There are also some tools visible in the snow, including a hammer and a pair of pliers.", - "id": 31582 - }, - { - "image_path": "G:\\images\\combined\\005531_jpg.rf.747799ed9decfd77f0cd8c8d18b3eca0.jpg", - "response": "A construction worker is using a level to check the alignment of the train tracks.", - "id": 31583 - }, - { - "image_path": "G:\\images\\combined\\005532_jpg.rf.05d565f9586010556f198ce3d66862d3.jpg", - "response": "A man wearing a hard hat standing in front of a construction site.", - "id": 31584 - }, - { - "image_path": "G:\\images\\combined\\005532_jpg.rf.2cb8f82438da3966446945844bf655b2.jpg", - "response": "A man wearing a hard hat standing in front of a construction site.", - "id": 31585 - }, - { - "image_path": "G:\\images\\combined\\005533_jpg.rf.387912fa4a0ddde8bd3d1f070e290687.jpg", - "response": "A man in a blue hard hat, white shirt, yellow safety vest and a clear face mask.", - "id": 31586 - }, - { - "image_path": "G:\\images\\combined\\005533_jpg.rf.bd34aa62040827d636a279972bddc69a.jpg", - "response": "A man wearing a blue hard hat, a yellow safety vest, and a face mask.", - "id": 31587 - }, - { - "image_path": "G:\\images\\combined\\005534_jpg.rf.8dc04d4e0b228be4b4f9f990136567b3.jpg", - "response": "A man in a hard hat stands on a balcony overlooking a construction site. He is wearing a grey shirt and black pants. The construction site is in the background and there are several tall buildings there. There is also a yellow crane operating in the distance. The sky is overcast.", - "id": 31588 - }, - { - "image_path": "G:\\images\\combined\\005534_jpg.rf.8e9032a4dbb0e621b81946d85b17792c.jpg", - "response": "A man in a hard hat is standing on a balcony. He is wearing a grey shirt, black pants and is holding a white coffee cup. He is looking out over a construction site that has several buildings under construction. There are several cranes working on the buildings and a large amount of rebar and other construction materials visible. The sky is grey and overcast.", - "id": 31589 - }, - { - "image_path": "G:\\images\\combined\\005535_jpg.rf.40f270b3f4c062596228a37360deb571.jpg", - "response": " Several men(382,392),(526,821)(577,398),(709,689)(786,409),(886,610)(524,338),(591,495)(713,369),(787,597) carrying wood(207,311),(808,538) over their heads(394,392),(457,479)(622,398),(672,477)", - "id": 31590 - }, - { - "image_path": "G:\\images\\combined\\005535_jpg.rf.f74ad9b4313d9c4a0aad672465b2234e.jpg", - "response": "A group of men wearing hard hats are carrying a large metal bar through a field.", - "id": 31591 - }, - { - "image_path": "G:\\images\\combined\\005536_jpg.rf.2d576f050cc863dad8a9f0401e05943f.jpg", - "response": "Gansu provincial party secretary and provincial government chairman Liu Yandong, Gansu provincial vice party chairman and provincial government vice chairman Zhang Xiaoming, Gansu provincial government vice party chairman and provincial government vice chairman Zhang Yujun, and Gansu provincial department of housing and urban-rural development party branch secretary and director Zhang Jinping visited Tianshui to investigate the construction site of the new city.", - "id": 31592 - }, - { - "image_path": "G:\\images\\combined\\005537_jpg.rf.5dc8263d64b1944d77ab7086cba276d2.jpg", - "response": "A man in a red hard hat is working on a large piece of industrial equipment. The equipment is made of steel and has a brownish color. The man is sitting on the equipment and using a tool. There is a pile of red bricks next to the equipment. Another man is working further back in the scene. The room has white walls and brick floors. There are also two windows in the room.", - "id": 31593 - }, - { - "image_path": "G:\\images\\combined\\005537_jpg.rf.f8a383c4c41ed099a1c17861589180cb.jpg", - "response": "A man in a red hard hat is standing in front of a large brick building. He is next to a large piece of industrial equipment that is being used to destroy another piece of industrial equipment. The destroyed equipment is sitting on the ground and is being broken apart by the industrial machine. There is a pile of red bricks next to the man and the industrial equipment. There are also two other people in the background, one closer to the left and one closer to the right. The sky outside the building appears to be overcast.", - "id": 31594 - }, - { - "image_path": "G:\\images\\combined\\005538_jpg.rf.636cc94e166d89b2ec392aaf9e805916.jpg", - "response": "A man in a red hat and blue shirt is holding a white cloth. He is crouching down and looking at the camera. He is wearing red gloves. There is a yellow car parked in the background. There are some motorcycles and a bush. There is a red and white rope on the left side of the image.", - "id": 31595 - }, - { - "image_path": "G:\\images\\combined\\005538_jpg.rf.813b1e443210d4bc5186c2261d8fdd7c.jpg", - "response": "A man in a red hat and work clothes is on a porch holding a white pipe.", - "id": 31596 - }, - { - "image_path": "G:\\images\\combined\\005539_jpg.rf.6f72f7c973b4f72025ab0f303619f993.jpg", - "response": "A couple of men are working on a power line at night.", - "id": 31597 - }, - { - "image_path": "G:\\images\\combined\\00553_jpg.rf.3d757ab13432e69e78445f2497caf248.jpg", - "response": "In the image there is a man wearing a red hard hat sitting on a white barrel. The man is also wearing a navy blue jacket and camouflage pants. He is taking a drink from a can and has a white shirt underneath. In the background there is a truck and some wooden pallets.", - "id": 31598 - }, - { - "image_path": "G:\\images\\combined\\005540_jpg.rf.223da59113932f30ed93635fd958e409.jpg", - "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is made of clear glass. The building is made of concrete and has a brick wall visible outside the window. There are several other windows in the building, some of which are open. There is a ladder on the side of the building. The man's arms are crossed and he is looking out the window.", - "id": 31599 - }, - { - "image_path": "G:\\images\\combined\\005540_jpg.rf.f46693d4ade95592186904f0bcbbd20d.jpg", - "response": "A man is standing in a window of a building that is under construction. He is wearing a yellow hard hat and a red jacket. The window he is standing in is a small square cut out of a concrete wall. The wall is made of concrete and red bricks. The building is made of concrete and has a few windows. There is a ladder on the side of the building.", - "id": 31600 - }, - { - "image_path": "G:\\images\\combined\\005542_jpg.rf.3282d9eab479b02e66ce68cca0eb3952.jpg", - "response": "A group of three men working on an oil rig together.", - "id": 31601 - }, - { - "image_path": "G:\\images\\combined\\005542_jpg.rf.b7f2a98f5f9c20b23a4e1bcb2d02ec16.jpg", - "response": "A group of three men working on an oil rig.", - "id": 31602 - }, - { - "image_path": "G:\\images\\combined\\005543_jpg.rf.213f13eca61d2615897c3674a4658170.jpg", - "response": "The image shows two workers in a construction site, one of them is holding a hose and the other one is using some tool. They are working on a cement floor, the floor is grey and the whole scene appears to be in black and white. The workers are wearing red and yellow helmets and the background shows a building under construction. The date of the picture is November 12th, 2013.", - "id": 31603 - }, - { - "image_path": "G:\\images\\combined\\005543_jpg.rf.42706a0c11e4ea3cf4cea81e4028924a.jpg", - "response": "A construction worker is using a tool to clean the floor.", - "id": 31604 - }, - { - "image_path": "G:\\images\\combined\\005544_jpg.rf.71c37fabf82a4f988090654f1450a415.jpg", - "response": "A group of people sitting around a table.", - "id": 31605 - }, - { - "image_path": "G:\\images\\combined\\005544_jpg.rf.97766ad3b2be94c14824c89455695015.jpg", - "response": "A group of people sitting around a table with papers and water bottles in front of them.", - "id": 31606 - }, - { - "image_path": "G:\\images\\combined\\005545_jpg.rf.17320258f530eb6cf427bd13803416f7.jpg", - "response": "A male construction worker in an orange jumpsuit and yellow hard hat stands in front of a large construction site. He is holding a camera and looking off to the side.", - "id": 31607 - }, - { - "image_path": "G:\\images\\combined\\005545_jpg.rf.3edf6a4d2e1270522e4cfebad1885c2f.jpg", - "response": "A male construction worker in an orange jumpsuit and a yellow hard hat stands in front of a large red and yellow billboard. He is holding a camera and looking off to the side.", - "id": 31608 - }, - { - "image_path": "G:\\images\\combined\\005546_jpg.rf.17e53861de9c549781be4deb1f2c03e4.jpg", - "response": "The image shows a large tree that has been cut down in the middle of a street. The tree trunk is lying on its side in the street, and several workers in orange vests are standing around it. One of the workers is holding a large power tool, and another is holding a red and white traffic cone.", - "id": 31609 - }, - { - "image_path": "G:\\images\\combined\\005546_jpg.rf.3ecc2f75154258788ff802f1eb528c28.jpg", - "response": "The image shows a group of workers in orange vests and blue helmets standing around a large concrete pole on the side of a road. The workers seem to be in the process of setting up the pole. There are also other workers in the background, some of them are carrying tools. In the foreground, there is a traffic cone placed on the ground. There are also a few trucks in the background, one of them is a large white truck with a crane on its roof. Another truck is a red and white truck with a large concrete mixer. There is also a white van parked on the side of the road.", - "id": 31610 - }, - { - "image_path": "G:\\images\\combined\\005547_jpg.rf.0ef674801e0159b64550981cedffdec2.jpg", - "response": "a group of people working on a construction site", - "id": 31611 - }, - { - "image_path": "G:\\images\\combined\\005547_jpg.rf.54d69f8e0e275cba026f2b5e5d9476f0.jpg", - "response": "A group of people working on a construction site.", - "id": 31612 - }, - { - "image_path": "G:\\images\\combined\\005548_jpg.rf.9ef91735346142790ec4d4b2442bb813.jpg", - "response": "In the image there is a person wearing a blue shirt and a hard hat, this person is working with a large device of some sort. The device is grey in color and the person is holding it in their hands. The person is also wearing yellow work boots. There is some text on the image that says \"\u8bbe\u5907\u57fa\u7840\u704c\u6d46\" which is Chinese writing and it is in the bottom right corner of the image.", - "id": 31613 - }, - { - "image_path": "G:\\images\\combined\\005549_jpg.rf.0951867df212bce3d051d8b50a961e9a.jpg", - "response": "A worker in a blue shirt and orange safety belt is installing a street light.", - "id": 31614 - }, - { - "image_path": "G:\\images\\combined\\00554_jpg.rf.736f45f0935a1fc72edbc6dadb720d67.jpg", - "response": "A group of five workers in orange, yellow and red hard hats and matching shirts standing in front of two large shipping containers.", - "id": 31615 - }, - { - "image_path": "G:\\images\\combined\\00554_jpg.rf.9a804de75a8e160ad09cc2c31381009f.jpg", - "response": "A group of five workers in orange, wearing yellow helmets, standing in front of two large shipping containers.", - "id": 31616 - }, - { - "image_path": "G:\\images\\combined\\005550_jpg.rf.db87b9be20f28e07b3defad0cc14e494.jpg", - "response": "In the image there is a group of construction workers working on a construction site. They are all wearing orange and yellow vests and yellow hard hats. There is a large piece of machinery behind them, and they are all working on a large wooden structure. The sky is grey and overcast.", - "id": 31617 - }, - { - "image_path": "G:\\images\\combined\\005551_jpg.rf.1d719301fd83511e998673af013fbfa9.jpg", - "response": "The image shows a large tunneling machine that has carved out a large round hole in the ground. The tunneling machine is covered in rocks and has a series of large wheels on the top. The tunneling machine is standing in a large tunnel and there are four people standing around it, three of them are wearing yellow helmets and are working on the tunneling machine and the fourth one is standing further back. There is a red sign with white writing on the left side of the image and a large red ribbon on the right side of the image.", - "id": 31618 - }, - { - "image_path": "G:\\images\\combined\\005552_jpg.rf.954aee6149a739df214fea027f5ffa85.jpg", - "response": "The image shows a group of three construction workers at a site where a concrete bridge is being built. They are working on the bottom of a tall, circular metal structure, tying rebar together. The sky is blue and there are mountains in the background.", - "id": 31619 - }, - { - "image_path": "G:\\images\\combined\\005554_jpg.rf.d1fbe3919ff2263e564dd37b664c253b.jpg", - "response": "In the image there are two people wearing yellow hats and one of them is holding a clipboard. They are standing in front of a wall with a white pipe and three signs on the wall. The first sign is in the left top of the wall and it's a square sign with blue border and white writing saying Standard Practice. The second sign is in the right top of the wall and it's a square sign with red border and white writing saying Waterproof. The third sign is in the right bottom of the wall and it's a rectangle sign with white writing saying Attention, long pipe.", - "id": 31620 - }, - { - "image_path": "G:\\images\\combined\\005556_jpg.rf.0e7f9d307ed6495773c7e850b1150cd9.jpg", - "response": "A man wearing a hard hat and a yellow safety vest standing in front of a pile of rocks.", - "id": 31621 - }, - { - "image_path": "G:\\images\\combined\\005558_jpg.rf.1d1fb2f70a45441c52c3e7ba68b650fb.jpg", - "response": "A worker operates a drone to inspect a building site in Handan, Hebei province, China, 17 October 2017. Handan is one of the first groups of cities in China to use drones for building site safety inspections. The drones can cover a wider area and detect hazards more efficiently than human inspectors. The data collected by the drones is transmitted in real-time to a control center, where it is analyzed and used to improve safety. Handan has over 100 drones being used for building site safety inspections. According to the city's construction safety authority, the drones have detected over 2000 hazards and prevented 150 potential accidents. The drones have also reduced the time and cost of building site safety inspections by over 50%. The drones used in Handan are equipped with high-resolution cameras, LIDAR (Light Detection and Ranging) and other sensors to collect data on building site conditions. The data is then analyzed using artificial intelligence to identify hazards such as unsecured scaffolding, overloaded cranes and blocked emergency exits. The drones are also used to monitor construction workers' safety vests, hard hats and other protective gear to ensure they are being worn correctly. The drones are expected to be used in more Chinese cities for building site safety inspections in the future.", - "id": 31622 - }, - { - "image_path": "G:\\images\\combined\\005559_jpg.rf.f828773d78fc846258fa16e9587fc1d3.jpg", - "response": "An electrician in a yellow hard hat is working on top of a power pole.", - "id": 31623 - }, - { - "image_path": "G:\\images\\combined\\005560_jpg.rf.f9948f817d4008ce1851c3d331bc35f9.jpg", - "response": "In the image, there is a construction site with scaffolding and steel beams. In the center of the image, there is a female construction worker wearing a yellow hard hat and orange shirt, kneeling on the ground. She has a yellow hard hat on her head, her arms are crossed in front of her, and she is looking at the camera. There is a bottle on the ground next to her, and a backpack is placed to the left of her. The background shows a large construction site with steel beams and scaffolding in various shapes and sizes.", - "id": 31624 - }, - { - "image_path": "G:\\images\\combined\\005561_jpg.rf.a464051d3eb382069773a34d87ac855b.jpg", - "response": "Three men in high visibility vests and hard hats are standing on a construction site, looking at a blueprint. The man on the left is holding a tablet computer.", - "id": 31625 - }, - { - "image_path": "G:\\images\\combined\\005562_jpg.rf.faa9401b508994fd716ff1df134671cf.jpg", - "response": "A group of men in hard hats are standing around a large metal box. They are wearing work clothes and are standing on a construction site.", - "id": 31626 - }, - { - "image_path": "G:\\images\\combined\\005563_jpg.rf.9da54f7949ce449108b06baa47fb06e1.jpg", - "response": "A group of men in blue hard hats are holding a large wooden pole over their heads. They are standing in a lush green forest.", - "id": 31627 - }, - { - "image_path": "G:\\images\\combined\\005565_jpg.rf.65fc1b3598009561998d3bcb00e7196c.jpg", - "response": "The image shows two construction workers on a building site. They are wearing yellow and orange safety gear and are working on a large building. The building is made of concrete and has a grid-like structure. The workers are working on a red grid as well. One of the workers is kneeling down and appears to be working on the building. The other worker is further back, working on the red grid.", - "id": 31628 - }, - { - "image_path": "G:\\images\\combined\\005567_jpg.rf.d5a4fa2bf895c00c1a3259d513fc9844.jpg", - "response": "A large crane is lifting a large concrete beam into place over a dirt road. The beam is being held by several men in hard hats. The sky is overcast and there are a few clouds in the sky.", - "id": 31629 - }, - { - "image_path": "G:\\images\\combined\\005568_jpg.rf.e184f476de9d2b32517cac48370135e0.jpg", - "response": "A man in a grey suit and a man in a black coat and red hard hat stand in a room with a large blue and silver piece of machinery.", - "id": 31630 - }, - { - "image_path": "G:\\images\\combined\\00556_jpg.rf.2d91292ca003e4418ebb11010adc577c.jpg", - "response": "The picture shows a scene on the top of a building in Changsha. There are three people in the picture, all wearing red hard hats. In the middle, there is a man with glasses, a white shirt and grey trousers, he is likely the person being interviewed. To the far left of the image is a man in a white T-shirt and blue jeans. To the far right of the image is a man in a red hard hat. In front of the three people is a green fence. Behind the fence is a building that has been built but has not been finished. It is currently covered with grey corrugated iron sheets and red bricks. On the left side of the building, there is a tower with a black metal frame and a glass observation deck.", - "id": 31631 - }, - { - "image_path": "G:\\images\\combined\\00556_jpg.rf.ceb4e56300e873ab713857309471aee5.jpg", - "response": "The photo shows a group of people standing on a rooftop in the city. They are all wearing hard hats. In the foreground on the left, a man in a white shirt and grey pants is talking. He is wearing a red hard hat. To the right of him, a man in a blue shirt is also wearing a white hard hat. In the background, a man in a yellow shirt is wearing a yellow hard hat. The man in the middle is wearing a white shirt, a grey vest and a white helmet. He is talking to the man in the white shirt. In the far distance, you can see the skyline of the city.", - "id": 31632 - }, - { - "image_path": "G:\\images\\combined\\005570_jpg.rf.f3a77b4a690e0ff99e2144f3b765b8ae.jpg", - "response": "A group of men standing in the snow", - "id": 31633 - }, - { - "image_path": "G:\\images\\combined\\005571_jpg.rf.eff431f95573c3877bd44576f930b391.jpg", - "response": "A group of four men in red work clothes are working on a piece of equipment outdoors. They are all wearing red helmets and the ground is snowy. There are two red metal bars in the foreground and a red metal pipe in the background. A large red metal pipe has snow on it and is connected to a yellow piece of equipment. A man on the far left is using a tool to adjust a yellow and black valve on the pipe. Another man is pulling on a chain next to the first man. A third man is pulling on a rope attached to a yellow metal hook. The fourth man is pulling on a chain attached to the same hook.", - "id": 31634 - }, - { - "image_path": "G:\\images\\combined\\005572_jpg.rf.69ef8b13477fd49d881f30515294c4fc.jpg", - "response": "A group of workers are working on a construction site.", - "id": 31635 - }, - { - "image_path": "G:\\images\\combined\\005574_jpg.rf.310a5662fba9a23f394123853c5bdf07.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", - "id": 31636 - }, - { - "image_path": "G:\\images\\combined\\005575_jpg.rf.0c50dd4fa4d3541866756c9cdc846ade.jpg", - "response": "An electrician is working on power lines in a rural area. He is standing on a small shed or box, wearing a yellow helmet and overalls. There are two other people in the scene, one on the left and one on the right. They are both wearing yellow helmets. In the background, there is a road and a field of green grass.", - "id": 31637 - }, - { - "image_path": "G:\\images\\combined\\005576_jpg.rf.cad70e6730d17c73b4ca4462264d4f93.jpg", - "response": "A group of people working in a foundry. They are wearing hard hats and some are holding shovels. The ground is wet and there is a large piece of metal in the middle of the room that is glowing red.", - "id": 31638 - }, - { - "image_path": "G:\\images\\combined\\005577_jpg.rf.375ed9509e16cbca9d5e6c03578283c7.jpg", - "response": "A group of three men standing next to each other wearing hard hats.", - "id": 31639 - }, - { - "image_path": "G:\\images\\combined\\005578_jpg.rf.726b8088a182f97643867c22ff03ba24.jpg", - "response": "A group of people wearing blue hats are holding a large metal pole.", - "id": 31640 - }, - { - "image_path": "G:\\images\\combined\\005579186e95c20a.jpg", - "response": "A group of men are standing around a table with a laptop on it. There are two more tables in the room, one of which has a cup on it, and another that has a bowl on it. There are chairs around the tables, and a backpack is placed on the floor. There is also a bottle on one of the tables.", - "id": 31641 - }, - { - "image_path": "G:\\images\\combined\\005579_jpg.rf.f86a59cc2e33fe8f3b550f6144f0c828.jpg", - "response": "A group of men standing around each other.", - "id": 31642 - }, - { - "image_path": "G:\\images\\combined\\00557_jpg.rf.75fdd1abb0ef26b73a97a96f1ab82b9e.jpg", - "response": "A group of four men standing in front of a power station. They are all dressed in blue and white, and they are wearing hard hats. The power station is large and made of metal. There are many metal towers and wires in the background.", - "id": 31643 - }, - { - "image_path": "G:\\images\\combined\\005580_jpg.rf.88d54cfd0fa7771bd55c1dd547f2e9a0.jpg", - "response": "A group of three men standing in front of a tarp and a pile of rubble. They are all wearing hard hats.", - "id": 31644 - }, - { - "image_path": "G:\\images\\combined\\005582_jpg.rf.db007e79618be8ac8ad7f9bdb0b0b04b.jpg", - "response": "In the image, US President Barack Obama is speaking at a podium in front of a group of workers wearing hard hats. The workers are standing behind a large American flag that is draped over the podium. Obama is wearing a blue shirt and tie, and is holding a microphone. He appears to be speaking about manufacturing jobs.", - "id": 31645 - }, - { - "image_path": "G:\\images\\combined\\005583_jpg.rf.c8d1bef4b4e431bc5876463a10d0799f.jpg", - "response": "A worker in a steel factory in China.", - "id": 31646 - }, - { - "image_path": "G:\\images\\combined\\005584_jpg.rf.661dab718bf434041f5826d95d6f870f.jpg", - "response": "A worker in a red hard hat crouches in a corridor between two rows of large concrete pipes. He is holding a light and appears to be examining the pipes.", - "id": 31647 - }, - { - "image_path": "G:\\images\\combined\\005586_jpg.rf.f695cd388e9b78286729cd8ec2d12935.jpg", - "response": "A group of three workers are working on a building site. They are all wearing yellow hard hats. The man in the middle is wearing a white shirt and grey pants. The man on the left is wearing a white shirt and grey pants. The man on the right is wearing a yellow shirt and grey pants. They are all wearing yellow hard hats. The building site has several wooden poles and some wires running across them.", - "id": 31648 - }, - { - "image_path": "G:\\images\\combined\\005587_jpg.rf.5c9dcf837321cb2d114aea600aa7e8a6.jpg", - "response": "In the image there are three people wearing yellow and orange work clothes and helmets. They are walking around a large pile of red bricks.", - "id": 31649 - }, - { - "image_path": "G:\\images\\combined\\005589_jpg.rf.77f9b8d74eb57b6dbc028230770791e3.jpg", - "response": "A pair of workers are suspended from a bridge, working on power lines. They are wearing hard hats and camouflage clothing. The bridge is located in a mountainous area, and the river below is green and visible through the suspension cables. There are also two other people visible in the distance, further away from the workers.", - "id": 31650 - }, - { - "image_path": "G:\\images\\combined\\00558_jpg.rf.64a0c684acc3bf0016a5ba12c68f311f.jpg", - "response": "A man is working on a construction site. He is wearing a brown vest and a dark shirt. He is holding a tool in his hand. In front of him is a pile of bricks. To his right is a pile of wooden poles. In the background are a few buildings and a mountain.", - "id": 31651 - }, - { - "image_path": "G:\\images\\combined\\00558_jpg.rf.9faf5b041c42311b3fd30a71b7cdb4c6.jpg", - "response": "A man wearing a brown vest and a light blue shirt is building a brick wall. He is holding a long tool with a red handle and is working on a concrete slab. The sky is grey and overcast.", - "id": 31652 - }, - { - "image_path": "G:\\images\\combined\\005590_jpg.rf.a2af78c24c6e1dd8b1dc46b3f994e68d.jpg", - "response": "A man in a hard hat and high visibility jacket stands in front of a large cylindrical metal object, which is sitting on a steel work table. The man is smiling at the camera. There are three other people visible in the background, two of which are standing further to the right and the other one further to the left. The wall behind the large metal object is brown and there are two large metal support beams to the right and left of the object.", - "id": 31653 - }, - { - "image_path": "G:\\images\\combined\\005591_jpg.rf.0ef78e76559f5261ef8d00c828c5bdcb.jpg", - "response": "A group of men standing around a plot of land.", - "id": 31654 - }, - { - "image_path": "G:\\images\\combined\\005592_jpg.rf.d3f4d1a4eba3b030e8b477b06a032a17.jpg", - "response": "Stock Photography of Miner using a walkie talkie in a mine tunnel", - "id": 31655 - }, - { - "image_path": "G:\\images\\combined\\005593_jpg.rf.59469ff3b755ecd3810770dea83b2057.jpg", - "response": "a group of men standing in front of a model of a city", - "id": 31656 - }, - { - "image_path": "G:\\images\\combined\\005594_jpg.rf.e0175bf77d26ba00b6213259aef5cd89.jpg", - "response": "a group of people standing in front of a brick building", - "id": 31657 - }, - { - "image_path": "G:\\images\\combined\\005595_jpg.rf.5ab16a321c915da56553e0e34aa313df.jpg", - "response": "A man wearing a hard hat and a yellow safety vest is holding a large set of blueprints in front of a construction site. The man is standing next to a vehicle, possibly a truck, and there are two cranes in the background. The sky is blue and the sun is shining.", - "id": 31658 - }, - { - "image_path": "G:\\images\\combined\\005596_jpg.rf.0915be9121b119478faef5de29446710.jpg", - "response": "A worker wearing a blue hat is looking at a folder of papers while holding a device.", - "id": 31659 - }, - { - "image_path": "G:\\images\\combined\\005597_jpg.rf.cbca37eb2f947efc6296910465c76ec5.jpg", - "response": "A couple of men wearing hard hats sitting in front of a computer.", - "id": 31660 - }, - { - "image_path": "G:\\images\\combined\\00559_jpg.rf.0a6b45eeb924ab80be7bdb1b354ac2cc.jpg", - "response": "A group of men standing in a construction site", - "id": 31661 - }, - { - "image_path": "G:\\images\\combined\\00559_jpg.rf.8eb4587fd7efacde44789790de1906a1.jpg", - "response": "A group of men standing around a construction site", - "id": 31662 - }, - { - "image_path": "G:\\images\\combined\\0055f3b771d53fe2.jpg", - "response": "The image shows the front desk of Nutmeg State Federal Credit Union. The desk is brown and wooden and has a large sign above it that says \"Nutmeg State Federal Credit Union\" in black. The letters are arched and the sign is lit up with green lights. There are also two blue lights above the desk. The desk has several items on it including a keyboard, a mouse, a laptop, and a cup. There are also two TVs on the wall, one on the left and one on the right. The TVs are turned on and are displaying information.", - "id": 31663 - }, - { - "image_path": "G:\\images\\combined\\005600_jpg.rf.23f7f802ffdee132c75c1e36ff968618.jpg", - "response": "A group of men working on a ladder.", - "id": 31664 - }, - { - "image_path": "G:\\images\\combined\\005601_jpg.rf.ff9ff5dac9e10caaac410192ab51dd64.jpg", - "response": "A group of men standing around a covered object.", - "id": 31665 - }, - { - "image_path": "G:\\images\\combined\\005602_jpg.rf.9be8df78d620efa4415cd295f164ae65.jpg", - "response": "A group of men standing on a road in the mountains. Some of the men are wearing hard hats and one is wearing a red one. They are all wearing different colored jackets. In the background are mountains and a red flag.", - "id": 31666 - }, - { - "image_path": "G:\\images\\combined\\005603_jpg.rf.07966a38d9d588e756b5570bb280e184.jpg", - "response": "In the image, there are two people standing underneath a sign that reads \"\u660e\u5149\u8857\u9053\u5f20\u6e7e\u6751\u8d75\u5bb6\u6e7e\u6392\u6d9d\u5de5\u7a0b\" in black lettering. The sign is red and white and is located in front of a field. The two people are standing quite close to each other and are both wearing black.", - "id": 31667 - }, - { - "image_path": "G:\\images\\combined\\005604_jpg.rf.e6666a320fb5db1fb15c01fbac085e2e.jpg", - "response": "In the image, there is a worker wearing a blue hat and shirt, working on a piece of metal with a welding tool. The worker is focused on their task, and there is a bright\u95ea\u5149 coming from the welding tool. The background is blurred, with a chair and a TV visible in the distance. There are also several bottles and a cup in the scene.", - "id": 31668 - }, - { - "image_path": "G:\\images\\combined\\005605_jpg.rf.4990a8466547bae1895adf701a35b30e.jpg", - "response": "A man in a blue shirt and red hard hat is handing a blue bag to a man in a white shirt and white hard hat. Both men are on a construction site.", - "id": 31669 - }, - { - "image_path": "G:\\images\\combined\\005608_jpg.rf.f9d3a52f62ebb2754c5d63a6d870f2b6.jpg", - "response": "The image shows three workers in blue uniforms and white helmets who are repairing power lines. They are standing on ladders and using tools.", - "id": 31670 - }, - { - "image_path": "G:\\images\\combined\\00560c3045b4f1d5.jpg", - "response": "A book with a green cover and gold lettering. The title is \"Seaside Walks of a Naturalist\" and there is an illustration of a man raking the shore.", - "id": 31671 - }, - { - "image_path": "G:\\images\\combined\\005610_jpg.rf.524d9eb7729e14da5c2727049000ea10.jpg", - "response": "A man wearing a red hard hat is kneeling down and using a circular saw. Another man is standing behind him.", - "id": 31672 - }, - { - "image_path": "G:\\images\\combined\\005611_jpg.rf.dfbbf015698c0291caf3861970cfa77f.jpg", - "response": "A group of construction workers in hard hats and safety vests are working on a construction site.", - "id": 31673 - }, - { - "image_path": "G:\\images\\combined\\005612_jpg.rf.07e12ab4444eb6d83f7a176151a48612.jpg", - "response": "a group of people wearing hard hats(96,453),(243,669)(2,43),(159,329)(696,413),(771,492)(350,413),(433,491)(498,401),(595,501)(239,429),(349,547)(756,589),(851,749)", - "id": 31674 - }, - { - "image_path": "G:\\images\\combined\\005613_jpg.rf.f20e195ba77f5520d0f7d6da46bfc1de.jpg", - "response": "In the image there are two people standing in front of a pile of white pipes. They are both wearing red jackets and white helmets. The person on the left is holding a clipboard. On the right side of the image there is a table with several buckets on it. In the background there is a building under construction.", - "id": 31675 - }, - { - "image_path": "G:\\images\\combined\\005614_jpg.rf.91935374767b1fb7138d856137a077f8.jpg", - "response": "An electrical crew works on power lines in a field.", - "id": 31676 - }, - { - "image_path": "G:\\images\\combined\\005615_jpg.rf.c05288c4fa03a82cb101e8e13d334328.jpg", - "response": "A man in blue coveralls and a blue hat is sitting on some power lines.", - "id": 31677 - }, - { - "image_path": "G:\\images\\combined\\005616_jpg.rf.1db01b8d2ea24f749d34a1933ab176f6.jpg", - "response": "A construction site with three people working on a building frame. They are working on a blue and white structure with rebar. One person is wearing a yellow shirt and a white hard hat, another person is wearing a blue shirt and a white hard hat, and the third person is wearing a yellow shirt and a green hard hat. They are all working on a metal structure.", - "id": 31678 - }, - { - "image_path": "G:\\images\\combined\\005617_jpg.rf.51f7226d59f2c4cfb97edfdf6703fb0a.jpg", - "response": "The image shows a group of seven men wearing red hard hats, with one man on the left and the others in a line to his right. They are all dressed in dark clothes, and the man at the right end is also wearing a black suit. The men are walking on a dirt ground with a row of buildings under construction on their left and ahead. The leftmost building is brown and has four floors, while the others are still under construction and have scaffolding and blue netting. In the background, there are tall buildings of various heights and colors, including a few that are recognizably cranes.", - "id": 31679 - }, - { - "image_path": "G:\\images\\combined\\005618_jpg.rf.1e213c88d0b23fd4ca24a498c821e0ca.jpg", - "response": "The picture shows the party secretary, Chen Jinhua, in the middle, with his arm raised, indicating his leadership and management. He is accompanied by Cai Weiguo, the head of the party committee of the construction site, and other leaders of the party committee of the construction site. They are visiting the construction site to investigate and guide work.", - "id": 31680 - }, - { - "image_path": "G:\\images\\combined\\005619_jpg.rf.66a172c18d98ac3829e87b0f8953fc83.jpg", - "response": "A man in a red jacket is hanging from a power line.", - "id": 31681 - }, - { - "image_path": "G:\\images\\combined\\00561_jpg.rf.0e9ce7fb7fdcdbc48f128c397597a4ab.jpg", - "response": "A man wearing a yellow hard hat pushing a wheelbarrow filled with concrete.", - "id": 31682 - }, - { - "image_path": "G:\\images\\combined\\00561_jpg.rf.b8ef6d001d342b46d25ee0ded61052c1.jpg", - "response": "A man in a yellow hard hat pushing a wheel barrel.", - "id": 31683 - }, - { - "image_path": "G:\\images\\combined\\005620_jpg.rf.0ba9cf9c3f668df9eaad1065689feb61.jpg", - "response": "In the image there is a worker wearing a yellow hard hat, orange safety vest and white gloves. They are working on a pile of scrap metal which includes steel and aluminum. The worker is in front of a large pile of metal and is leaning over a piece of machinery.", - "id": 31684 - }, - { - "image_path": "G:\\images\\combined\\005621_jpg.rf.2f7833bb41680a2758bbdd47e470a03b.jpg", - "response": "a group of people standing around a construction site", - "id": 31685 - }, - { - "image_path": "G:\\images\\combined\\005622_jpg.rf.c1079ad832b8cec3758de1e2869053d2.jpg", - "response": "A group of people standing on top of a metal staircase.", - "id": 31686 - }, - { - "image_path": "G:\\images\\combined\\005623_jpg.rf.90ea82d7d9935ed497584d9b9714d8e2.jpg", - "response": "A construction site with a man in the center wearing a orange hard hat. He is standing in front of a unfinished brick building with a orange crane in the background. There is a unfinished black roof on the left with a black tower in the middle. There are wood planks and concrete everywhere.", - "id": 31687 - }, - { - "image_path": "G:\\images\\combined\\005625_jpg.rf.d0485b6954b124bade91853a4cad448e.jpg", - "response": "A worker wearing a yellow hat and black clothes is seen in front of power distribution equipment. The sky is clear and blue.", - "id": 31688 - }, - { - "image_path": "G:\\images\\combined\\005627_jpg.rf.ef00ae322cb37d7c61235299fd056913.jpg", - "response": "a man(293,356),(746,995) in an orange jumpsuit(291,423),(613,991) is working in a large hole", - "id": 31689 - }, - { - "image_path": "G:\\images\\combined\\005628_jpg.rf.b869934b6b014942850e8919a5982fd0.jpg", - "response": "In the image there are two workers installing solar panels on the roof of a building. The solar panels are dark blue in color and are installed on the roof of the building. The workers are wearing blue helmets and are in the process of installing the solar panels. One of the workers is kneeling on the roof while installing the panels and the other worker is in the background.", - "id": 31690 - }, - { - "image_path": "G:\\images\\combined\\005629_jpg.rf.e1b5d405d603a860c9f594f4970a6b2b.jpg", - "response": "A group of workers standing inside a large tunnel.", - "id": 31691 - }, - { - "image_path": "G:\\images\\combined\\00562_jpg.rf.4cbda13cda6c2ab742d53450d40a8264.jpg", - "response": "A pair of men wearing red helmets stand on a pile of rock.", - "id": 31692 - }, - { - "image_path": "G:\\images\\combined\\005630_jpg.rf.67266222285f5f7537729277b77302e4.jpg", - "response": "A worker in a red hard hat is working on a large concrete structure.", - "id": 31693 - }, - { - "image_path": "G:\\images\\combined\\005632_jpg.rf.011b91c5249aaf772408c7dac79c96ed.jpg", - "response": "A man in a red suit and a white helmet standing in front of a stack of wooden planks.", - "id": 31694 - }, - { - "image_path": "G:\\images\\combined\\005633_jpg.rf.df557ac413f987aa555a947c9058dce7.jpg", - "response": "A group of people walking in front of a tall building.", - "id": 31695 - }, - { - "image_path": "G:\\images\\combined\\005635e119b9f32f.jpg", - "response": "A small airplane sitting on a dirt field.", - "id": 31696 - }, - { - "image_path": "G:\\images\\combined\\005635_jpg.rf.12d792f7bf85922bfceee851555ec95e.jpg", - "response": "A construction crew of men in blue hard hats are working on a pole.", - "id": 31697 - }, - { - "image_path": "G:\\images\\combined\\005636_jpg.rf.4da856e52407a3b7d8a0e2a93fc43e77.jpg", - "response": "A couple of men working on a telephone pole with many power lines.", - "id": 31698 - }, - { - "image_path": "G:\\images\\combined\\005637_jpg.rf.338aaa9ab03aabde06d8322eea8f0c6f.jpg", - "response": "In the image there is a person wearing a yellow hard hat and a blue jacket, they are crouching down and working with some metal rods. There are several bundles of grey metal rods stacked on the ground around them, and they have a pair of pliers in their hand.", - "id": 31699 - }, - { - "image_path": "G:\\images\\combined\\005638_jpg.rf.a6334534e0c6b72b978b10bbd143e6b1.jpg", - "response": "The image shows two workers at a construction site, standing on a red concrete floor and surrounded by metal bars. They are wearing yellow hard hats and blue shirts. One of the workers is on the left, and the other is on the right. They are both focused on the task at hand.", - "id": 31700 - }, - { - "image_path": "G:\\images\\combined\\005639_jpg.rf.8f6f09e500e808cba41eae80577a8c37.jpg", - "response": "In the image, there is a group of people standing around a small SUV. Some of the people are wearing hard hats and one of them is wearing a red hat. There are also two other people wearing white hats. In the background, there is a car and a mountain. A few of the people are holding orange ribbons.", - "id": 31701 - }, - { - "image_path": "G:\\images\\combined\\00563_jpg.rf.0fe40558bb48b914b040284686ead382.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. They are all wearing hard hats, with four men on the left and three on the right. In the center of the group, three men are wearing blue shirts and standing closer together. The ground in front of the group is covered with wood debris.", - "id": 31702 - }, - { - "image_path": "G:\\images\\combined\\005640_jpg.rf.acd1a54e6fee2c7e41d0953cc9a929b1.jpg", - "response": "The image shows three workers in yellow and orange, wearing hard hats and working on a bridge. The bridge is made of concrete and has a brown color. In the background, there is a brown mountain. The sky is blue with clouds.", - "id": 31703 - }, - { - "image_path": "G:\\images\\combined\\005641_jpg.rf.419ed4d61a23a058781709be24bd0a95.jpg", - "response": "A group of three men standing and looking at a piece of paper.", - "id": 31704 - }, - { - "image_path": "G:\\images\\combined\\005642_jpg.rf.4e1932144ed26f0aa5272f81f97bf7cc.jpg", - "response": "A construction site with two workers visible in the image. One worker is sitting on a metal bar and the other worker is crouching down. They are both wearing orange hard hats. In the background, there is a city skyline.", - "id": 31705 - }, - { - "image_path": "G:\\images\\combined\\005643_jpg.rf.5443109369df4654fe0928c31e567214.jpg", - "response": "A construction site with two workers.", - "id": 31706 - }, - { - "image_path": "G:\\images\\combined\\005644_jpg.rf.4031602b996fb8a3b01343ac1750419a.jpg", - "response": "a group of men in white shirts and red hard hats", - "id": 31707 - }, - { - "image_path": "G:\\images\\combined\\005646_jpg.rf.1a863c08499311bc3d9fb8559e1db721.jpg", - "response": "A man wearing a yellow hard hat is carrying a large black tube over his shoulder. He is walking on a dirt road that is being built. There is a yellow piece of heavy machinery in the background. In the foreground, there is a large rock and a piece of rebar.", - "id": 31708 - }, - { - "image_path": "G:\\images\\combined\\005647_jpg.rf.4b6af2a3d103653b74f9b5f6b908c87d.jpg", - "response": "A group of men in suits standing together.", - "id": 31709 - }, - { - "image_path": "G:\\images\\combined\\005648_jpg.rf.16081b69fa71a2db099e37326e9236a7.jpg", - "response": "A man wearing a yellow helmet and a yellow and grey top is standing in a field. He is smiling at the camera. In the background there is another person wearing a yellow helmet and a yellow and grey top. They are standing in front of a building site with a crane in the background. There are also two other people in the image.", - "id": 31710 - }, - { - "image_path": "G:\\images\\combined\\005649_jpg.rf.72aa3d7642c435d7941bc3712e73ed57.jpg", - "response": "The image shows two men wearing hard hats standing on a construction site. They are both holding a blueprint, and one of them is pointing towards something.", - "id": 31711 - }, - { - "image_path": "G:\\images\\combined\\00564_jpg.rf.1ffccca0c6bf93871f58d3840cb1700a.jpg", - "response": "In the image two men wearing hard hats, one wearing a mask and both wearing blue jackets are looking at a piece of paper. The paper is yellow and black and has some writing on it. They are standing in a room with a yellow wall and some shelves on the wall. There is a truck in the background. They are also standing in front of a large metal structure.", - "id": 31712 - }, - { - "image_path": "G:\\images\\combined\\00564_jpg.rf.c062b602187943cddbe338a105de5872.jpg", - "response": "In the image two men wearing hard hats, one wearing a mask and one not, are looking at a paper. They are in a room with a yellow line on the floor. In the background there is a large factory with a lot of pipes and metal structures. On the right side of the image there is a blue box with two white dials.", - "id": 31713 - }, - { - "image_path": "G:\\images\\combined\\005650_jpg.rf.0d592ad43f7725264f25671134903032.jpg", - "response": "A man in a suit and tie standing next to a man in a construction uniform and hard hat. They are standing in front of a stack of stacked cargo containers.", - "id": 31714 - }, - { - "image_path": "G:\\images\\combined\\005652_jpg.rf.849dc1c1c7510b37030dce9946d7cf9f.jpg", - "response": "A construction worker is sitting in a small space, wearing a yellow hard hat, a green jacket, and an orange vest. They are holding a shovel and appear to be working on a construction site.", - "id": 31715 - }, - { - "image_path": "G:\\images\\combined\\005653_jpg.rf.fb1ac26c9ff1747d91dfff5df62c237b.jpg", - "response": "The image shows a construction site with several workers dressed in blue uniforms and red helmets. They are standing near a dump truck that is loaded with blue material. In the background, there is a large building under construction with a blue fence around it. There are also two chimneys in the distance. The ground is covered in dirt and there are a few bags lying around.", - "id": 31716 - }, - { - "image_path": "G:\\images\\combined\\005656_jpg.rf.edb698a273da0fa0d3fb08f134fb6a2f.jpg", - "response": "The image shows a group of construction workers wearing yellow vests and yellow hats working on a building site. The workers are standing on a concrete foundation and are working on a framework of steel rebar. They are building a structure that resembles a framework for a bridge.", - "id": 31717 - }, - { - "image_path": "G:\\images\\combined\\005657_jpg.rf.266bd62433fd17698cfa369611e506c1.jpg", - "response": "A man in a blue shirt is holding a white rolled up paper and pointing to the right. He is wearing a blue and white shirt and glasses.", - "id": 31718 - }, - { - "image_path": "G:\\images\\combined\\00565e236c7c8f5f.jpg", - "response": "A case of Coca Cola Life sits on a store shelf.", - "id": 31719 - }, - { - "image_path": "G:\\images\\combined\\00565_jpg.rf.1b584fb63cb0e02e80f3c6744fc12fb6.jpg", - "response": "A group of three people standing in a rocky area.", - "id": 31720 - }, - { - "image_path": "G:\\images\\combined\\00565_jpg.rf.732767cf7d09dcaf011172b848d1bf1c.jpg", - "response": "A group of three people standing in a mine.", - "id": 31721 - }, - { - "image_path": "G:\\images\\combined\\005660_jpg.rf.f94f89230ad9470acaf10f43e06c6bd9.jpg", - "response": "In the image there are two people, one is wearing a helmet and is dressed in a construction outfit and is holding a set of plans in his hand, the other person is wearing a suit and is also wearing a helmet. They are both pointing at something in the distance, towards the right. There are three construction cranes in the image, one on the left, one in the middle and one on the right. There is a building under construction in the background, it is a tall building that is mostly built and has a few windows in the middle floors.", - "id": 31722 - }, - { - "image_path": "G:\\images\\combined\\005661_jpg.rf.7eb48e4784d09b2514bad56aae2ad904.jpg", - "response": "An electrician repairs a power pole in this undated photo. A worker(224,258),(665,994) from the state-owned China Power Grid Corporation is seen here working on a power line in this undated photo.", - "id": 31723 - }, - { - "image_path": "G:\\images\\combined\\005662_jpg.rf.76e2d6c0e0afb14a0cd1bc5517c6e9b5.jpg", - "response": "The image shows two men dressed in business suits and yellow hard hats, standing in front of a construction site. One man is on a cell phone, while the other is holding a blueprint. They are both wearing sunglasses.", - "id": 31724 - }, - { - "image_path": "G:\\images\\combined\\005663_jpg.rf.fbf7ff7c01562c545cf8cf874ce9c52a.jpg", - "response": "The image shows two workers on a ladder, repairing a power line. They are wearing safety gear, including helmets and gloves. The ladder is placed against a large pole and the workers are standing on it. The city skyline is visible in the background.", - "id": 31725 - }, - { - "image_path": "G:\\images\\combined\\005664_jpg.rf.c28c57e905614edcbbb2d41f3770de9e.jpg", - "response": "A couple of men in blue uniforms trimming the green bushes around the power pole.", - "id": 31726 - }, - { - "image_path": "G:\\images\\combined\\005665_jpg.rf.33d94b898a0836c170807288a7686688.jpg", - "response": "A man in a wheelchair and a woman stand next to a fence. Both are wearing orange vests and white hard hats. The woman has her hand on a tripod and is looking at a clipboard the man is holding.", - "id": 31727 - }, - { - "image_path": "G:\\images\\combined\\005666_jpg.rf.123ddfb993182afe4ac433329f927d73.jpg", - "response": "The image shows a group of workers in blue uniforms and yellow hard hats working on a sidewalk at night. They are using tools such as a sledgehammer and a pickaxe.", - "id": 31728 - }, - { - "image_path": "G:\\images\\combined\\005667_jpg.rf.81fe6ee3ef4a4809a2097085f53b9920.jpg", - "response": "The image shows two men wearing yellow hard hats and green and orange work jackets, with their hands in their pockets. They are both holding trowels and are standing on a rooftop near a brick wall. In the background, there is a partially constructed building with a crane working on it. The sky is blue and there are no other people in the image.", - "id": 31729 - }, - { - "image_path": "G:\\images\\combined\\005668_jpg.rf.1dc29649b5ffc337a4d0c9c94dd79421.jpg", - "response": "A group of people working on a construction site.", - "id": 31730 - }, - { - "image_path": "G:\\images\\combined\\00566_jpg.rf.4d8ada94285647a5322cb6096efafc06.jpg", - "response": "A couple of men working on a building.", - "id": 31731 - }, - { - "image_path": "G:\\images\\combined\\00566_jpg.rf.961e9b754c42003b7bf82b3ed76f0573.jpg", - "response": "Two workers(286,149),(482,707)(382,257),(723,878) in red helmets(385,148),(482,245)(464,256),(571,359) are working on a pipe", - "id": 31732 - }, - { - "image_path": "G:\\images\\combined\\005670_jpg.rf.08a8984de8b6be4759f8dd4a855810c7.jpg", - "response": "The image shows two workers in a coal mine. They are standing in a passageway between two large rocks, wearing black coats and hats. The left worker is holding a large mining tool, while the right worker is holding a flashlight. The passageway is lit by a bright orange light from the right. The miners are wearing black gloves and are focused on their tasks.", - "id": 31733 - }, - { - "image_path": "G:\\images\\combined\\005671_jpg.rf.87ce6218ed91c14277cb26017dc3c2c0.jpg", - "response": "In the image there is a person wearing a helmet and a jacket, who is standing in front of a fire and a large amount of smoke. The person is also standing in front of a large amount of red hot coals.", - "id": 31734 - }, - { - "image_path": "G:\\images\\combined\\005672_jpg.rf.2ca4279bfeeed5d7e7f71eb9d51f4452.jpg", - "response": "A group of men in orange vests and red hats pose for a photo in front of a construction site.", - "id": 31735 - }, - { - "image_path": "G:\\images\\combined\\005674_jpg.rf.0d49a0b947139c761be1fb2858ac2aa1.jpg", - "response": "The image shows a snowy scene with three workers in front of a large metal box containing electrical equipment. The workers are dressed in blue uniforms and have safety gear on. They are standing on a snow-covered ground and appear to be working on the electrical equipment. There are also some trees and a tower in the background.", - "id": 31736 - }, - { - "image_path": "G:\\images\\combined\\005675_jpg.rf.ae4e713154dc11e4a1bab8d5c0cdbe96.jpg", - "response": "A man kneeling down with a camera", - "id": 31737 - }, - { - "image_path": "G:\\images\\combined\\005676_jpg.rf.bcf2638d1e5b0c06b457a97fcfa4e9e0.jpg", - "response": "In the picture a construction site is seen, with two men wearing green and orange vests. One man is pointing to a piece of paper, which is on the other man's hand. Both of them are wearing red helmets. On the right man's paper, there's a bar code and a black square with a photo and some words.", - "id": 31738 - }, - { - "image_path": "G:\\images\\combined\\005677_jpg.rf.0cf45c1245f5202707bf82be1db21b10.jpg", - "response": "The image shows a group of men working on a sidewalk at night. They are all wearing hard hats and some are carrying tools. The men are standing in a patch of grass next to a curb.", - "id": 31739 - }, - { - "image_path": "G:\\images\\combined\\005678cab46fcec5.jpg", - "response": "A hand pushing a row of dominoes on a wooden table. The words \"Supreme Court of the United States\" are at the bottom of the image. The dominoes are labeled with the names of past supreme court justices. There is a quarter next to the first domino.", - "id": 31740 - }, - { - "image_path": "G:\\images\\combined\\005678_jpg.rf.96597121b2a828ea94985829cd66326f.jpg", - "response": "A man in a hard hat and safety goggles is standing in front of a large fire. He is holding a long metal rod that is glowing orange. The fire is also glowing orange and is spewing out of a large metal pipe. The man is wearing a white shirt and a red hard hat. He also has a beard and is wearing work gloves. The fire is happening in a factory setting and there is a staircase in the background.", - "id": 31741 - }, - { - "image_path": "G:\\images\\combined\\005680_jpg.rf.92f0e84330edc63679adfdd8889c76df.jpg", - "response": "\u516d\u5b89\u6574\u4f53\u5bb6\u5c45\u603b\u7ecf\u7406\u674e\u6653\u660e\u5148\u751f(468,142),(866,996)\u81f4\u6b22\u8fce\u8bcd", - "id": 31742 - }, - { - "image_path": "G:\\images\\combined\\005681_jpg.rf.02204e7379a524249d2c7303ee6ed972.jpg", - "response": "A group of workers wearing hard hats and standing in a factory.", - "id": 31743 - }, - { - "image_path": "G:\\images\\combined\\005682_jpg.rf.a67a81a6feacba9d2c4d8bc57fbe69da.jpg", - "response": "A group of men standing next to each other.", - "id": 31744 - }, - { - "image_path": "G:\\images\\combined\\005683_jpg.rf.b1d395d3c411ca6464fc32aaa0a48d29.jpg", - "response": " Two workers(238,530),(446,997)(571,385),(718,997) are working on a construction site", - "id": 31745 - }, - { - "image_path": "G:\\images\\combined\\005684_jpg.rf.5a78391969dcdb703f5bc12d2f2285fc.jpg", - "response": "A construction worker in a yellow safety helmet is working on a large wall that is being built. The worker is standing on a walkway that is built on top of the wall they are working on. The wall is made of metal rods and the worker is securing it with a tool in their hand. There is a light on in the background that illuminates the area.", - "id": 31746 - }, - { - "image_path": "G:\\images\\combined\\005685_jpg.rf.cf8f9075d7326b703a010afa85ff3ad7.jpg", - "response": "The picture shows a group of seven men standing in front of a large brick building with lots of windows. They are all dressed in black suits. In front of the men is some grey steps and to their right is a patch of bare ground. To the far right of the group is a large tree.", - "id": 31747 - }, - { - "image_path": "G:\\images\\combined\\005686_jpg.rf.55ce6e8f247a23e2be58f4de0c841d54.jpg", - "response": "A man in a red hard hat is holding a tape measure and pointing to a spot on a ceiling. Two other men in yellow hard hats and orange safety vests are looking at the ceiling with him.", - "id": 31748 - }, - { - "image_path": "G:\\images\\combined\\005687_jpg.rf.d2fae54007959a3991b3836009ef2129.jpg", - "response": "In the image there are two people wearing red helmets and work clothes, standing next to a yellow car with the words \"\u53d1\u51fa\u660e\u5fb7\" on it. The two people are checking something with a multi-meter.", - "id": 31749 - }, - { - "image_path": "G:\\images\\combined\\005688_jpg.rf.5d492594899b0de132abb8d704e288e5.jpg", - "response": "A coal mine with two men in orange work suits standing in front of a pile of coal.", - "id": 31750 - }, - { - "image_path": "G:\\images\\combined\\005689_jpg.rf.2ebeee38edcd06f6217fe2cd04ec0a55.jpg", - "response": "In the image there is a group of people standing on a construction site. They are wearing hard hats and one of them is wearing a red helmet. The person in the foreground is wearing a black jacket with a yellow logo on the left chest and a backpack. The person in the middle is wearing a black jacket with a yellow logo on the left chest and a black hat. The person on the far left is wearing a grey sweatshirt and a black jacket with a yellow logo on the left chest. He is also wearing a white helmet. In the background there is a yellow and grey crane. The ground is made of steel rods and there are green netting in the background.", - "id": 31751 - }, - { - "image_path": "G:\\images\\combined\\005690_jpg.rf.6379a9bf21720b8ba149fb9afae3d21a.jpg", - "response": "A man in a white hard hat and orange safety vest is standing on a yellow ladder. He is looking at the back of a truck. Another man is sitting in the back of the truck.", - "id": 31752 - }, - { - "image_path": "G:\\images\\combined\\005691_jpg.rf.2fccd8f8de9bc9e66efb7f551747c84c.jpg", - "response": "A group of workers are standing around each other, all wearing hard hats. One man is signing a clipboard held by another man in front of him. A yellow hard hat is being held by a man on the left, who is wearing a red one. Another man on the right is wearing a black and white checkered hard hat. In the background, there is a construction site with a yellow tower and a white building.", - "id": 31753 - }, - { - "image_path": "G:\\images\\combined\\005692cba860a493.jpg", - "response": "a car with a steering wheel and a speedometer", - "id": 31754 - }, - { - "image_path": "G:\\images\\combined\\005692_jpg.rf.08f3279ec9dee37fb20d78a8b4c58a36.jpg", - "response": "In the image there are four workers in blue uniforms and white hard hats. They are all working on a power line with tools.", - "id": 31755 - }, - { - "image_path": "G:\\images\\combined\\005693_jpg.rf.31752c573a7eb4f9a660b8afba99a89e.jpg", - "response": "A man in a brown jacket and white helmet is holding a clipboard and talking to another man in a blue shirt. They are standing next to a white van. There are wind turbines in the background against a blue sky with clouds.", - "id": 31756 - }, - { - "image_path": "G:\\images\\combined\\005694_jpg.rf.292af2203cf861bd4ee7200bcff4f0aa.jpg", - "response": "The image shows two workers in a factory who are working on a large cylindrical object. The object is wrapped in green and white material and is sitting on a large white and blue cylinder. The workers are standing around the object, which appears to be some kind of pipe or tube. One of the workers is holding a large white object while the other is looking at the camera. The background is blurred out and there are several logos and text scattered throughout the image.", - "id": 31757 - }, - { - "image_path": "G:\\images\\combined\\005695_jpg.rf.e78463e3db4970e06cfbf2bc45786142.jpg", - "response": "A man standing in front of stacks of blue wood with his arms crossed.", - "id": 31758 - }, - { - "image_path": "G:\\images\\combined\\005696_jpg.rf.1dec24875221696cdc14b32041fe5a28.jpg", - "response": "A man in a blue jumpsuit and a blue hard hat is welding a large metal structure. He is wearing red safety gloves and is crouched down while doing so. There is another man in a blue hard hat and safety glasses watching the man welding. There are sparks flying from the welding.", - "id": 31759 - }, - { - "image_path": "G:\\images\\combined\\005697_jpg.rf.3faea38c2a49f2d33bd6faed390a625c.jpg", - "response": "a group of people walking down a street", - "id": 31760 - }, - { - "image_path": "G:\\images\\combined\\005698_jpg.rf.0964f4ddeafa7266e7a9bedefe98c307.jpg", - "response": "a person wearing a orange jacket and a helmet is holding a laptop and is checking the pressure gauge of an oil well.", - "id": 31761 - }, - { - "image_path": "G:\\images\\combined\\00569_jpg.rf.a98ca6fe27b41619a0374a7655169028.jpg", - "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several cupboards with glass doors. In the middle of the room, there is a whiteboard with a stand. On the right side of the room, there is a pile of cardboard boxes and on the left side, there is a large box.", - "id": 31762 - }, - { - "image_path": "G:\\images\\combined\\00569_jpg.rf.b51de4774ca76eea78b1586e782f8f37.jpg", - "response": "The image shows a group of men standing inside a room. The room is sparsely furnished with a chair and a dining table. On the walls, there are several windows with white frames. In the foreground, there is a brown wooden cabinet. On the right side of the room, there is a desk with a computer monitor and a keyboard on it. On the floor, there are several cardboard boxes.", - "id": 31763 - }, - { - "image_path": "G:\\images\\combined\\0056b6f30e44474e.jpg", - "response": "A page with three sections. The first section is titled Composites. The second section is titled Maps. The third section is titled Bounce Location.", - "id": 31764 - }, - { - "image_path": "G:\\images\\combined\\005700_jpg.rf.d6b897f32557dd87a5f4ee14a397226d.jpg", - "response": "In the image there are two people standing in front of a building under construction. The woman is wearing a yellow vest and a blue helmet and is pointing to something on the right. The man is wearing a blue helmet and a white safety vest and is looking at the woman. They are both holding tablet computers in their hands.", - "id": 31765 - }, - { - "image_path": "G:\\images\\combined\\005701_jpg.rf.b60f9fcdb7b3335b975e8ade3c658327.jpg", - "response": "A worker in a safety orange jumpsuit and yellow helmet is suspended in the air while working on a power line.", - "id": 31766 - }, - { - "image_path": "G:\\images\\combined\\005702_jpg.rf.feb468513b74b12c50e4805c85ba6c44.jpg", - "response": "In the image, there is a construction worker wearing a red hat and holding a walkie-talkie. The worker is standing in front of a yellow scaffolding and a white pole. In the background, there is another worker wearing a red hat and a green shirt. They are standing next to a white pole and a yellow tower. The sky is overcast and there are a few clouds in the sky.", - "id": 31767 - }, - { - "image_path": "G:\\images\\combined\\005703_jpg.rf.566d0f92d78a7bc687c7e7a79161e6d1.jpg", - "response": "The image shows a construction site with a number of workers. There are three workers standing in the middle of the picture, all wearing yellow hard hats. To the left of these workers, there is a man wearing a white helmet and blue overalls, holding a tool. To the right of this worker, there is a man wearing a blue helmet and grey overalls, also holding a tool. To the right of this man, there are two workers lying on the ground, one wearing a green helmet and green overalls, the other wearing a white helmet and grey overalls. The workers are building a structure of red steel rods and there are several bags of concrete scattered around the site.", - "id": 31768 - }, - { - "image_path": "G:\\images\\combined\\005704_jpg.rf.b48e87d3c706e067064f224f44294f62.jpg", - "response": "A construction site with two men in front of it.", - "id": 31769 - }, - { - "image_path": "G:\\images\\combined\\005706_jpg.rf.58270160575604ad2a6ef11e570d1886.jpg", - "response": "In the image there is a large construction site with three workers present. They are working on a large building that is under construction. The workers are positioned on a platform that is elevated and they are working on a beam. There are pipes and tubes attached to the beam and workers are pouring concrete into them. There is a blue and white hard hat on the ground in the bottom right corner of the image.", - "id": 31770 - }, - { - "image_path": "G:\\images\\combined\\005707_jpg.rf.b374786d62f510c0688d865cd221156f.jpg", - "response": "The image shows a group of five men in gray clothes and yellow hard hats, working on a power line. They are wearing gray pants, gray shirts, and yellow safety belts. Four of the men are wearing gray pants and gray shirts, but one man is wearing dark gray pants and a dark gray shirt. They are all wearing yellow hard hats. In the background, there is a building with a glass facade and a balcony. On the right side of the image, there are green plants.", - "id": 31771 - }, - { - "image_path": "G:\\images\\combined\\005708_jpg.rf.0af79dc0647457c8e5084e2ecbc4cffd.jpg", - "response": "A worker measures the wall of a room.", - "id": 31772 - }, - { - "image_path": "G:\\images\\combined\\00570_jpg.rf.04757bf1ffa405c99b06ea22a4284176.jpg", - "response": "A man works at a construction site in Handan, Hebei province, China.", - "id": 31773 - }, - { - "image_path": "G:\\images\\combined\\00570_jpg.rf.5d923276ffa3d40a72a30a464eebce8f.jpg", - "response": "A man works at a construction site in Huaibei, Anhui province, China.", - "id": 31774 - }, - { - "image_path": "G:\\images\\combined\\005710_jpg.rf.72a5ab7dc6387b3f60232471f35ecab2.jpg", - "response": "Three men are working on a project, two of them are wearing red shirts and are measuring and cutting a long piece of material while the third man is standing in the background, watching what they are doing.", - "id": 31775 - }, - { - "image_path": "G:\\images\\combined\\005711_jpg.rf.40bc59e585b52c8da288cda9d7e9d915.jpg", - "response": "A group of men wearing hard hats.", - "id": 31776 - }, - { - "image_path": "G:\\images\\combined\\005712_jpg.rf.ba5b5078bef1892dcd25852dcc0c19e6.jpg", - "response": "a long red bridge with mountains in the background.", - "id": 31777 - }, - { - "image_path": "G:\\images\\combined\\005714_jpg.rf.9e42cf63b96c2577bcb2bbe170e5a04e.jpg", - "response": "An electrician working on power lines.", - "id": 31778 - }, - { - "image_path": "G:\\images\\combined\\005715_jpg.rf.89a9b758e0bcd72185d3f58ff7e496dc.jpg", - "response": "A group of men are standing in a tunnel. They are all wearing hard hats. Some of them are holding cell phones. One man is pointing towards the ceiling. The tunnel is filled with construction materials.", - "id": 31779 - }, - { - "image_path": "G:\\images\\combined\\005716_jpg.rf.52bb7222a77c38c1b05308d66786fb3d.jpg", - "response": "A group of rescue workers stand in a large underground tunnel. The tunnel is filled with debris and there are rail tracks in the foreground.", - "id": 31780 - }, - { - "image_path": "G:\\images\\combined\\005717_jpg.rf.ce5c026d876d06211b842579d93928b8.jpg", - "response": "a group of people standing inside of a building", - "id": 31781 - }, - { - "image_path": "G:\\images\\combined\\005718_jpg.rf.0723246558fb010a101a9c2ec27fed85.jpg", - "response": "A construction worker in a yellow hard hat is standing in front of a construction vehicle. The worker is holding a long white object. There is another person visible through the window of the construction vehicle.", - "id": 31782 - }, - { - "image_path": "G:\\images\\combined\\005719_jpg.rf.87909b79c7ec5a93785bb9dba18ad789.jpg", - "response": "A man in grey jumpsuit and red helmet on a power line.", - "id": 31783 - }, - { - "image_path": "G:\\images\\combined\\00571_jpg.rf.78cfaa834f867557f4f8f1767d7a4402.jpg", - "response": "A construction worker in a grey shirt and grey pants is showing a tablet to a construction worker in a yellow hard hat and grey shirt. They are both holding a rolled up blueprint.", - "id": 31784 - }, - { - "image_path": "G:\\images\\combined\\00571_jpg.rf.9304c3d21b89aae92f950c7118ec5d71.jpg", - "response": "A construction worker in a grey shirt and grey pants is showing a man in a yellow hard hat something on a tablet. The man in the yellow hard hat is wearing a yellow hard hat and has a beard. They are both holding a rolled up blueprint.", - "id": 31785 - }, - { - "image_path": "G:\\images\\combined\\005720_jpg.rf.3b68a2e65b9c5d4a7cc291729f248cfd.jpg", - "response": " A worker(116,92),(882,838) is standing in a hole.", - "id": 31786 - }, - { - "image_path": "G:\\images\\combined\\005721_jpg.rf.681b7482ee6040c1d88d644efa497bdb.jpg", - "response": "The image shows three men in red uniforms and safety gear working on a utility pole. The man in the middle is hanging from the pole while the other two are climbing up to join him. They are all wearing hard hats and the man at the bottom of the pole is also wearing a safety harness. The pole is made of wood and is located near many power lines.", - "id": 31787 - }, - { - "image_path": "G:\\images\\combined\\005722_jpg.rf.a84e6a10185cd5897dd62e6c6712a766.jpg", - "response": "A worker wearing a yellow hat is using a tool to make adjustments to a metal grid. Another worker is in the background, bending over. They are both wearing blue pants.", - "id": 31788 - }, - { - "image_path": "G:\\images\\combined\\005723_jpg.rf.bcb35da39e569be01d5626617971984e.jpg", - "response": "The image shows a group of workers wearing yellow and grey hard hats and high visibility vests working on a construction site. They are standing on a dirt patch and there are several wooden poles nearby. Some of the workers are shoveling debris onto a pile. In the background, there is a person walking a dog. The image is taken in an urban setting and there are several people in the background going about their daily activities.", - "id": 31789 - }, - { - "image_path": "G:\\images\\combined\\005724_jpg.rf.05fe0645316e544521bbd51a89ed0614.jpg", - "response": "A man in a yellow hard hat and safety vest is kneeling down next to a tire on a forklift. He is looking at the tire and is in front of a stack of shipping containers.", - "id": 31790 - }, - { - "image_path": "G:\\images\\combined\\005725_jpg.rf.5277e68b127209ee748046eb443fccee.jpg", - "response": "A worker in a red shirt and a worker in a yellow shirt are working on a ship. The worker in the red shirt is standing on the side of the ship and holding a tool. The worker in the yellow shirt is in the background and is holding a tool as well. They are both wearing hard hats.", - "id": 31791 - }, - { - "image_path": "G:\\images\\combined\\005726_jpg.rf.a4eee9dc632260a456c3bc0add13dc00.jpg", - "response": "Some workers are building a large structure. They are wearing yellow helmets and are working on a structure that resembles a bridge. They are using metal rods and concrete to build the structure. The workers are crouching or kneeling on the ground as they work.", - "id": 31792 - }, - { - "image_path": "G:\\images\\combined\\005727_jpg.rf.6c3b9ac11a51e54f4950430404f30b5b.jpg", - "response": "The image shows a group of men standing next to each other. They are all wearing black suits and ties. Some of them are closer to the front, while others are further back. In the background, there is a bridge visible. A man on the far right is holding a camera, and has a camera strap around his neck.", - "id": 31793 - }, - { - "image_path": "G:\\images\\combined\\005728_jpg.rf.e0c639777e7ab7be30515f745e2e9589.jpg", - "response": "A worker wearing a yellow helmet is using a tool on a piece of wood.", - "id": 31794 - }, - { - "image_path": "G:\\images\\combined\\005729_jpg.rf.0858fb65e7a7b6e0b1ed15d559ad7724.jpg", - "response": "\u6d77\u53e3\u4e00\u7535\u7f06\u4e95\u5185\u53d1\u751f\u7535\u7f06\u71c3\u70e7\u4e8b\u6545 \u7535\u7f06\u70e7\u7126\u53ea\u5269\u7a7a\u58f3", - "id": 31795 - }, - { - "image_path": "G:\\images\\combined\\00572_jpg.rf.abd9d89364a55467bbdf02edb03bc7b6.jpg", - "response": "In the image there are two men wearing blue and yellow hard hats standing in front of a control panel. The control panel has many buttons and switches and two screens.", - "id": 31796 - }, - { - "image_path": "G:\\images\\combined\\005730_jpg.rf.79eca749fefcb803963f3f58e83e7c12.jpg", - "response": "A group of workers in hard hats are working on a building.", - "id": 31797 - }, - { - "image_path": "G:\\images\\combined\\005732_jpg.rf.be1328b7c4d090d6b380265aded3af51.jpg", - "response": "The image shows two workers wearing blue uniforms and white helmets who are installing steel roof trusses for a new building. The trusses are light blue in color. In the background, there is a forest of trees and a yellow truck with a white trailer parked on the right side of the image.", - "id": 31798 - }, - { - "image_path": "G:\\images\\combined\\005733_jpg.rf.78836023a5aad6ae59a045af5b2b7149.jpg", - "response": "In the image there are two workers in yellow reflective vests and yellow hard hats, one on the left and one on the right. They are standing on a small yellow crane which is placed in front of a building. The workers are high up, on the third floor of the building. In front of the building, there is a group of people, some are walking, some are standing, and some are talking. There is a white pipe sticking out from the building on the left.", - "id": 31799 - }, - { - "image_path": "G:\\images\\combined\\005734_jpg.rf.b6b7af1ec4307f13430493f846ee8cf1.jpg", - "response": "The photo shows workers in yellow uniform and blue cap. They are working on the train tracks. There are seven workers in total, some are installing the tracks, some are checking the tracks, and one is talking to a man in a grey suit. The workers are in a outdoor setting, and the sky is grey. There are also two benches in the scene, one is under a tree on the right side, and the other is on the far left side.", - "id": 31800 - }, - { - "image_path": "G:\\images\\combined\\005735_jpg.rf.5bb78bc4bb7bc4728ad81824edadb084.jpg", - "response": "The night operation to fix the damaged power line.", - "id": 31801 - }, - { - "image_path": "G:\\images\\combined\\005736_jpg.rf.e23d8f10b0dfcf820c569de86bdafeb2.jpg", - "response": "A man in a blue helmet and black jacket is on the back of a yellow truck working on a large transformer. He has a tool in his hand. The truck is parked in front of a tall building.", - "id": 31802 - }, - { - "image_path": "G:\\images\\combined\\005737_jpg.rf.06ac52b3835602a6a51174300ef4be7a.jpg", - "response": "A man wearing a white hard hat is holding a large set of architectural plans. He is standing in front of a building with a metal structure above his head.", - "id": 31803 - }, - { - "image_path": "G:\\images\\combined\\005738_jpg.rf.7ddc8db4eb8c712533aa9673aa8442a4.jpg", - "response": "A man wearing a hard hat is talking to two women who are also wearing hard hats. They are standing in front of a construction site.", - "id": 31804 - }, - { - "image_path": "G:\\images\\combined\\005740_jpg.rf.e27aad29419011d3ff23272e92214731.jpg", - "response": "A group of workers are working on a power line.", - "id": 31805 - }, - { - "image_path": "G:\\images\\combined\\005742_jpg.rf.b74268e4e62562505587bcf20bf7ddd1.jpg", - "response": "The image shows a construction site in a residential area. There are a few workers visible, one of whom is pulling on a long black hose while wearing a blue hat. Another worker is further back, wearing a yellow helmet and holding a long tool. In the background, there is a tall building with balconies on its side. The ground is dirt and there are a few large rocks visible. The sky is blue and there are a few clouds.", - "id": 31806 - }, - { - "image_path": "G:\\images\\combined\\005743_jpg.rf.7bb1d5f0fbba0473f908b7e19ea88d64.jpg", - "response": "A group of men standing in a field next to a sign.", - "id": 31807 - }, - { - "image_path": "G:\\images\\combined\\005744_jpg.rf.78ea8803bb25b257de844bbda99c5a68.jpg", - "response": "A group of people standing around talking.", - "id": 31808 - }, - { - "image_path": "G:\\images\\combined\\005745_jpg.rf.4918d48fc98532e4a55c2e59928dc8fd.jpg", - "response": "A group of workers are on top of a building. They are working on a scaffolding around the top of the building. The building has a green roof.", - "id": 31809 - }, - { - "image_path": "G:\\images\\combined\\005747_jpg.rf.2daf7f1238cf40b6c5ecd5ef0f63ef21.jpg", - "response": "A worker(493,367),(824,996) in a red hard hat(643,367),(802,493) is standing in a shaft of a building", - "id": 31810 - }, - { - "image_path": "G:\\images\\combined\\005748_jpg.rf.efcc27a3ac6655a9b33438eb567c94bb.jpg", - "response": "In the image there is a man and a woman wearing blue helmets. They are standing in front of a building which is under construction. The building is made of bricks and has a scaffolding around it. The woman has her arms crossed and is looking into the distance. The man has his hand on his chin and is talking to the woman.", - "id": 31811 - }, - { - "image_path": "G:\\images\\combined\\005749_jpg.rf.2219169f6f5448d72700bc1049f205c6.jpg", - "response": "A man wearing a white t-shirt and a white hard hat is holding a yellow tape measure and measuring a wooden structure. The man has short black hair and a faint beard. He is looking intently at the wooden frame he is measuring. The sky is blue and can be seen through the gaps in the wooden structure.", - "id": 31812 - }, - { - "image_path": "G:\\images\\combined\\005750_jpg.rf.5aa54d65dc51b24f5b016a5143521ff3.jpg", - "response": "A worker in a factory is using a hose to control the flow of molten metal. The metal is glowing orange and spewing out of a large door. The worker is wearing a white hard hat and a protective apron.", - "id": 31813 - }, - { - "image_path": "G:\\images\\combined\\005751_jpg.rf.fc25df520569cb48e46d02354787de65.jpg", - "response": "A man wearing a red hard hat stands on top of a green metal structure. He is holding a long stick and appears to be working on a building.", - "id": 31814 - }, - { - "image_path": "G:\\images\\combined\\005752_jpg.rf.a3bde25a3a9c6c9a5dbdb2ee2d2d560a.jpg", - "response": "A group of three men wearing yellow hard hats are working on a construction site. They are all wearing black shirts and orange or red pants. They are standing behind a long, large metal pipe or tube that has been bent into a circular shape. They are holding and working with the metal. In the background, there is a large building with lots of windows.", - "id": 31815 - }, - { - "image_path": "G:\\images\\combined\\005753_jpg.rf.99704ed61f6364b66114bcfc9bb77053.jpg", - "response": "Oil worker in red work clothes and helmet at the oil well. poster", - "id": 31816 - }, - { - "image_path": "G:\\images\\combined\\005754_jpg.rf.74305afa6ffe66560dda8041604cc0d6.jpg", - "response": "A group of three men standing in a room that is under construction. The man in the middle is wearing an orange safety vest and an orange hard hat. The man on the left is wearing a yellow hard hat and a yellow safety vest. The man on the right is wearing a blue hard hat and a gray long sleeve shirt. The man on the right is also holding a red hard hat.", - "id": 31817 - }, - { - "image_path": "G:\\images\\combined\\005755_jpg.rf.756ac38b3b1a169bea40e8337e58cdc4.jpg", - "response": "A construction worker(586,404),(687,898) standing in front of a blue fence(314,361),(997,916)", - "id": 31818 - }, - { - "image_path": "G:\\images\\combined\\005756_jpg.rf.23668590b36487b6bd9f7b122ea71b06.jpg", - "response": "An electrician is working on a power line.", - "id": 31819 - }, - { - "image_path": "G:\\images\\combined\\005759_jpg.rf.0c4db03428b098e00c4765640c93286a.jpg", - "response": "The image shows two men working on an electrical panel. One man is on the left and is wearing a blue shirt and a blue hat with a red logo on it. He is holding a blue drill with a yellow handle. The other man is on the right and is wearing a red helmet with a white logo on it. He is wearing a white shirt and is also wearing a blue hat. He is holding a blue cord with a yellow end. The men are standing in front of the electrical panel, which is a metal box filled with wires and other equipment.", - "id": 31820 - }, - { - "image_path": "G:\\images\\combined\\005760_jpg.rf.137a6500e4f6018c5ed7fbe004326e54.jpg", - "response": "A man wearing a yellow shirt and blue pants is working on a roof. He is holding a hammer and has his knee bent and hand on the wooden roof board.", - "id": 31821 - }, - { - "image_path": "G:\\images\\combined\\005761_jpg.rf.40ec8a4f74d5c5eeeccf58f17604a9c6.jpg", - "response": " A worker(298,172),(945,867) from the local power company stands on a snow-covered power pole(6,1),(996,999) in the town of Huangling, in China's central Anhui province.", - "id": 31822 - }, - { - "image_path": "G:\\images\\combined\\005762_jpg.rf.6587167b51faf01841244a65b60cbdea.jpg", - "response": "a group of men working on a large object", - "id": 31823 - }, - { - "image_path": "G:\\images\\combined\\005763_jpg.rf.3665870dc14e577c1cfe802bbc67973b.jpg", - "response": "A group of men standing around a construction site.", - "id": 31824 - }, - { - "image_path": "G:\\images\\combined\\005764_jpg.rf.ca17f909fdbc62ca736fcf5c9b76addb.jpg", - "response": "A man in a yellow helmet is on a boat.", - "id": 31825 - }, - { - "image_path": "G:\\images\\combined\\005765_jpg.rf.55005959e2e25b232ea0dabe3aacd725.jpg", - "response": "A couple of men are working on power lines.", - "id": 31826 - }, - { - "image_path": "G:\\images\\combined\\005766_jpg.rf.1753af082a9c4373872261237a7ee441.jpg", - "response": "a couple(418,527),(478,739)(469,520),(542,757) of people working in a construction site", - "id": 31827 - }, - { - "image_path": "G:\\images\\combined\\005767_jpg.rf.81804cbdad728533d10a99f2c7609a8f.jpg", - "response": "In the image there are several workers wearing hard hats and working on a construction site. They are building a large structure with lots of metal rods and rebar. There are also several large buildings visible in the background. One worker is using a tool to cut through some metal rods, creating a spray of white sparks. Another worker is standing nearby, and a third worker is further in the background. The workers are all wearing different colored hard hats, with some wearing yellow hats and others wearing red hats.", - "id": 31828 - }, - { - "image_path": "G:\\images\\combined\\005768_jpg.rf.cf8369b77ee24e8aea62c8b10b2b36e7.jpg", - "response": "A man and a woman wearing yellow and orange hard hats are standing on a construction site. They are both carrying wooden planks. In the background, there is a city skyline.", - "id": 31829 - }, - { - "image_path": "G:\\images\\combined\\005769_jpg.rf.a7672d6109f174e04e6e91928ac742bb.jpg", - "response": "A group of people working on a bridge.", - "id": 31830 - }, - { - "image_path": "G:\\images\\combined\\005770_jpg.rf.92bf8b1a0bcbb810af6087e3eb98d0d5.jpg", - "response": "An electrician repairs a power line in rural China. He is wearing a black t-shirt, grey pants, a red helmet and a tool belt. He is in the process of replacing a insulator on a power pole.", - "id": 31831 - }, - { - "image_path": "G:\\images\\combined\\005771_jpg.rf.cca2b0230f94f06b0654dab97afc5947.jpg", - "response": "A group of men in hard hats stand around a man who is gesturing.", - "id": 31832 - }, - { - "image_path": "G:\\images\\combined\\005773_jpg.rf.971331305db8125640128913f67e6d8f.jpg", - "response": "A man sitting on a swing made of rope.", - "id": 31833 - }, - { - "image_path": "G:\\images\\combined\\005775_jpg.rf.941a7aba17c7aeeb27276f16020897f2.jpg", - "response": "In the image, there is a worker in a factory working near a large pile of what looks like gray rocks. The worker is wearing a blue shirt, a hard hat, and orange shoes. The factory setting has a large machine on the left side of the worker and a large rock wall on the right side. The worker is actively working on the rocks with a tool in their hand.", - "id": 31834 - }, - { - "image_path": "G:\\images\\combined\\005776_jpg.rf.a0ad84a47826612bb6e1d8ff1a05def7.jpg", - "response": "The image shows a construction site in a rural area. There are a few buildings on the right side of the image, and a large hill in the background. In the foreground, a group of workers are standing around a pile of rubble and debris. Some of them are holding shovels and other tools. There is a small orange machine in the middle of the scene, and a few bags are scattered around the area. The sky is overcast, and the workers are wearing hard hats.", - "id": 31835 - }, - { - "image_path": "G:\\images\\combined\\005777_jpg.rf.682982999851df01ab83a81b5ff92d04.jpg", - "response": "A worker in an orange jacket and yellow hard hat is sitting on a metal ladder that is placed against a metal structure. The worker is holding a pair of pliers in their left hand and is wearing yellow gloves on their hands. The metal structure has several metal wires attached to it. The sky is overcast and the worker is the only person in the image.", - "id": 31836 - }, - { - "image_path": "G:\\images\\combined\\005778_jpg.rf.09fb341e9593b76dc6063338fd0009d6.jpg", - "response": "The image shows a group of men wearing hard hats standing in a large room. Some of the men are wearing yellow hard hats, some are wearing red hard hats, and others are wearing blue or white hard hats. They are gathered around a large piece of machinery, which is located on the left side of the room. The men are standing quite close to the machinery, and some of them are leaning on it. There are also a few men wearing yellow hard hats who are standing further back in the room.", - "id": 31837 - }, - { - "image_path": "G:\\images\\combined\\005779_jpg.rf.3e803213653d3185f477837d817a7988.jpg", - "response": "a group of people standing around a model of a plant", - "id": 31838 - }, - { - "image_path": "G:\\images\\combined\\00577aade86fc041.jpg", - "response": "In the image, there is a large passenger airplane on the runway. The airplane has a blue and white color scheme with gold designs on the tail. The words \"Vietnam Airlines\" are written on the side of the plane. The airplane is on the runway, and it appears to be preparing for takeoff.", - "id": 31839 - }, - { - "image_path": "G:\\images\\combined\\00577_jpg.rf.31b225e45d453547265cc70c81d90094.jpg", - "response": "A woman in a red construction hat and a red shirt with Chinese characters on it is showing a man in a grey suit and a red hard hat a grey door. Another man in a red hard hat is on the right side of the woman.", - "id": 31840 - }, - { - "image_path": "G:\\images\\combined\\00577_jpg.rf.a8074fcb58fe5149752e23fe978fce70.jpg", - "response": "A woman in a red construction hat and a red coat is showing a man in a blue suit how to use a fire door closer. Another man in a red construction hat is watching the two of them.", - "id": 31841 - }, - { - "image_path": "G:\\images\\combined\\005780_jpg.rf.1e858558c4f81838b950242c6288fe9e.jpg", - "response": "a group of men wearing hard hats", - "id": 31842 - }, - { - "image_path": "G:\\images\\combined\\005783_jpg.rf.f7a6c520b2cca4c9e203e559f14a39c2.jpg", - "response": "A power line tower under construction with workers on it.", - "id": 31843 - }, - { - "image_path": "G:\\images\\combined\\005784_jpg.rf.da0686735610e4d8f2dfd9f95b5a46e0.jpg", - "response": "A man in a blue uniform and a hard hat is leaning over the back of a yellow dump truck. He is wearing white gloves and is next to a pile of rope. There is a car parked in front of a house and another car parked behind the dump truck. There is a white and red fire hydrant next to the house and a stop sign on the left side of the street. There are two people standing in front of the house and another two people standing behind the dump truck.", - "id": 31844 - }, - { - "image_path": "G:\\images\\combined\\005785_jpg.rf.1d86599d9ffc76e9df07e322e546166a.jpg", - "response": "A group of people looking at a model of a city.", - "id": 31845 - }, - { - "image_path": "G:\\images\\combined\\005786_jpg.rf.f76b70c5a066a3e2d1a95e0eeeba7420.jpg", - "response": "a group of people standing in front of a building", - "id": 31846 - }, - { - "image_path": "G:\\images\\combined\\005787_jpg.rf.021b168687c6e3bc140c00b644f6dde2.jpg", - "response": "A man and a woman wearing hard hats are looking at blueprints.", - "id": 31847 - }, - { - "image_path": "G:\\images\\combined\\005789_jpg.rf.f7fe3408c7c10c7bf18a33be9f133fca.jpg", - "response": "A man in a white shirt is pointing to something in front of him.", - "id": 31848 - }, - { - "image_path": "G:\\images\\combined\\00578_jpg.rf.a0f44ab3af247ef8cd303eb9407eaa05.jpg", - "response": "A man wearing a white shirt and a red helmet is using a piece of surveying equipment in a construction area.", - "id": 31849 - }, - { - "image_path": "G:\\images\\combined\\005790_jpg.rf.cc5cdfd9036e67174895d356a5487c64.jpg", - "response": "A group of people standing around a hole in the ground.", - "id": 31850 - }, - { - "image_path": "G:\\images\\combined\\005791_jpg.rf.fe634d06aeea4ddac11504cb5fb129d3.jpg", - "response": "A man in a fire suit holding a hose in a dark room with smoke", - "id": 31851 - }, - { - "image_path": "G:\\images\\combined\\005792_jpg.rf.ce46fdabce04055113e3d89159aedd14.jpg", - "response": "A construction site with several people working on it. There are piles of wood and metal in the foreground and a small building in the background.", - "id": 31852 - }, - { - "image_path": "G:\\images\\combined\\005793_jpg.rf.3be64c1de8d0ecb4691e09948ead4b97.jpg", - "response": "A group of workers are working on a train track.", - "id": 31853 - }, - { - "image_path": "G:\\images\\combined\\005794_jpg.rf.9c561697aea719b71b4da274b5bf4d3c.jpg", - "response": "A group of people sitting around a table with papers, water, and a plant on it.", - "id": 31854 - }, - { - "image_path": "G:\\images\\combined\\005796_jpg.rf.c2e03239c28b583cee55668bda19004b.jpg", - "response": "Two workers in orange uniform and blue helmet are repairing the power transformer.", - "id": 31855 - }, - { - "image_path": "G:\\images\\combined\\005797_jpg.rf.fe9fa289f351bc9757e5e8cf9d10ec26.jpg", - "response": "A worker in a blue hard hat is using a tool to cut through a black cable. Another worker is standing in the background, wearing a white shirt and a yellow hard hat. They are both working under a cement ceiling and are focused on the task at hand.", - "id": 31856 - }, - { - "image_path": "G:\\images\\combined\\005798_jpg.rf.981601fbfb10a59da6d23398ee7b69b2.jpg", - "response": "A worker in an orange uniform and yellow hard hat is standing between two large wheels made of black rubber. The wheels are white metal frames with green pipes coming out of them. The worker is also holding a large black tube.", - "id": 31857 - }, - { - "image_path": "G:\\images\\combined\\005799_jpg.rf.9046cd38f2e4c6fea4a8ce96995877da.jpg", - "response": "Men(300,366),(397,786)(509,336),(612,791)(648,344),(751,769)(390,341),(487,783)(785,337),(887,828) in camouflage(301,427),(395,770)(651,407),(750,756)(511,399),(612,777)(391,410),(487,769) standing in front of a bulldozer(111,124),(468,558)", - "id": 31858 - }, - { - "image_path": "G:\\images\\combined\\00579_jpg.rf.70d04fd2c0b16e9765e972f1e8a497be.jpg", - "response": "A group of men in hard hats stand in front of a large concrete structure with power lines above them.", - "id": 31859 - }, - { - "image_path": "G:\\images\\combined\\00579_jpg.rf.af91debed4374397e17f668e9f7262d9.jpg", - "response": "A group of men in hard hats stand in front of a large concrete structure with a lot of wires and machinery attached to it. They are standing on the grass and some of them are carrying tools.", - "id": 31860 - }, - { - "image_path": "G:\\images\\combined\\0057a54eb95ccae6.jpg", - "response": "A street sign pointing to the Brooklyn Bridge in a city.", - "id": 31861 - }, - { - "image_path": "G:\\images\\combined\\0057ab1c0a3e8a8f.jpg", - "response": "a man in a black shirt reading a magazine", - "id": 31862 - }, - { - "image_path": "G:\\images\\combined\\0057ab2abc09c62f.jpg", - "response": "The image is a cover for a music album titled \"Cracker Barrel Old Country Store Presents J.D. Crowe and the New South\". The cover features a close-up of a banjo, which is the main focus of the image. The banjo is in the foreground and takes up most of the cover. The background is a sepia-toned picture of the banjo, giving the cover a vintage feel. The banjo has a string across the middle and four other strings on either side. The name \"J.D. Crowe and the New South\" is written in blue on the banjo, with \"Cracker Barrel Old Country Store Presents\" written in black above it. The word \"Heritage\" is written in blue below the banjo. The cover also includes the logo of Cracker Barrel and a circular logo that says \"Music Dialogue Heritage\".", - "id": 31863 - }, - { - "image_path": "G:\\images\\combined\\005800_jpg.rf.93c04e3253d196378932f07c93e7f138.jpg", - "response": "The image shows a group of men working on a large piece of equipment. They are all wearing blue uniforms and hard hats. In the foreground, a man is sitting on a large black tire while holding a rope wrapped around it. Another man is standing behind him, holding a large wooden pole. A third man is standing to the right of the man in the foreground. They are all working on the equipment together.", - "id": 31864 - }, - { - "image_path": "G:\\images\\combined\\005801_jpg.rf.5287faca6eacf4b343a5e98d60d5bd9a.jpg", - "response": "The image shows two men wearing yellow hard hats and looking at a blueprint. The man on the left is wearing a yellow hard hat and a plaid shirt, and is holding the blueprint in his right hand. The man on the right is wearing a yellow hard hat and a brown shirt, and is standing behind the first man. They are both looking at the blueprint, which is crumpled and held in the left hand of the man on the left.", - "id": 31865 - }, - { - "image_path": "G:\\images\\combined\\005802_jpg.rf.696cf226dd1025e8dbcfe93a7f58a557.jpg", - "response": "The image shows two construction workers wearing yellow helmets and orange work clothes, one is on the left and the other is on the right, they are working on a building site. The building site has a silver metal fence on the left and a white sky background. In the foreground, there are several steel bars that the two workers are working on, one of them is using a small tool to adjust the steel bar.", - "id": 31866 - }, - { - "image_path": "G:\\images\\combined\\005803_jpg.rf.6f0edc87668a7177935e75833542496d.jpg", - "response": "The image shows a construction site with three workers. One worker is in the center of the image, wearing a yellow hat and grey shirt. Another worker is in the top left of the image, wearing a white shirt and grey pants. The third worker is in the top right of the image, wearing a white shirt and grey pants. They are all working on the construction site. In front of the workers, there are several rusty metal bars on the ground. To the left of the workers, there is a large pile of wooden boards. On the right side of the image, there are several large containers filled with metal sheets. The whole scene is surrounded by a yellow fence.", - "id": 31867 - }, - { - "image_path": "G:\\images\\combined\\005805_jpg.rf.8e343731b5841800bbb0bc824498c99c.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 31868 - }, - { - "image_path": "G:\\images\\combined\\005806_jpg.rf.b16a1be28af9bb701f51acc490f5212f.jpg", - "response": "Men(557,119),(817,997)(338,100),(618,919)(847,113),(998,999) in a construction site", - "id": 31869 - }, - { - "image_path": "G:\\images\\combined\\005807_jpg.rf.f72d7c420e84733a5777d061f107ad47.jpg", - "response": "A man(448,593),(607,885) kneeling down in front of two trucks(103,307),(304,476)(604,273),(879,506)", - "id": 31870 - }, - { - "image_path": "G:\\images\\combined\\005809_jpg.rf.037b538f0780418dec8331db205d5d76.jpg", - "response": "A construction worker is on the ground, working on a metal beam while two other workers look over the metal structure they are building. They are all wearing orange vests and red hard hats.", - "id": 31871 - }, - { - "image_path": "G:\\images\\combined\\00580_jpg.rf.2288a2e22d4c8f1825b0cc2aada22c9a.jpg", - "response": "A group of people working on a construction site.", - "id": 31872 - }, - { - "image_path": "G:\\images\\combined\\00580_jpg.rf.bfc632dce88ce4d7adef2718fb10a564.jpg", - "response": "A group of people working on a construction site.", - "id": 31873 - }, - { - "image_path": "G:\\images\\combined\\005810_jpg.rf.60d46cc77185da5127fb457be70756c1.jpg", - "response": "The image shows a group of construction workers in blue and yellow work clothes and yellow hard hats, working on a building. The building is a large concrete structure with a roof supported by metal beams. The workers are standing on a walkway and working on the roof. There are several wooden planks on the right side of the image, and a pile of them in the background.", - "id": 31874 - }, - { - "image_path": "G:\\images\\combined\\005811_jpg.rf.516c1c537adb1e5f9b4fb23de061d218.jpg", - "response": "a group of people standing around talking to each other", - "id": 31875 - }, - { - "image_path": "G:\\images\\combined\\005812_jpg.rf.5d0f895e24754ba1ece3ff25c5cecfe5.jpg", - "response": "In the image, several construction workers are working on a construction site. They are wearing orange and yellow work clothes and helmets. Some of them are standing on the ground, while others are standing on a steel girder. In the foreground, a man is working on a large piece of concrete, and several people are working around him. Some of them are digging into the ground, while others are holding onto a large metal beam. In the background, there is a pile of sand and a pile of bricks.", - "id": 31876 - }, - { - "image_path": "G:\\images\\combined\\005813_jpg.rf.fa7fde02230278b19005847e3f2c0988.jpg", - "response": "A couple of men standing in front of a fence.", - "id": 31877 - }, - { - "image_path": "G:\\images\\combined\\005814_jpg.rf.e8547c186bc981e95ab4380123f1fcfe.jpg", - "response": "Two men(680,196),(896,943)(18,89),(587,999) working on a pipe in a cave", - "id": 31878 - }, - { - "image_path": "G:\\images\\combined\\005815_jpg.rf.f4a925d6c1c011e30371fc4954a7fbc9.jpg", - "response": "a group of men walking across a wooden floor", - "id": 31879 - }, - { - "image_path": "G:\\images\\combined\\005816_jpg.rf.d340fbc314d1706ad1caf94b607c723b.jpg", - "response": "In the image there is a person wearing a helmet and camouflage clothing, standing next to a concrete structure and cutting through a steel beam with a large grinder. The person is creating many sparks as they work.", - "id": 31880 - }, - { - "image_path": "G:\\images\\combined\\005817_jpg.rf.9d71fae899ed3e4538a80f8c9fdbfc06.jpg", - "response": "Some workers are building a structure in the image. There are four workers in total. They are building the structure using bamboo. The building in the background is tall with many windows. The sky is clear.", - "id": 31881 - }, - { - "image_path": "G:\\images\\combined\\005818_jpg.rf.3cc93ae9f43e133fd5ac52b5c12f9702.jpg", - "response": "a group of men walking down a sidewalk", - "id": 31882 - }, - { - "image_path": "G:\\images\\combined\\005819_jpg.rf.0ba27ee88a344d04cffa736f1511b843.jpg", - "response": "The image shows five people standing on a construction site. They are all wearing hard hats. One person on the left is holding a banner with the characters \"Fujian Police\". Another person on the left is holding a red piece of paper with the characters \"shou sui\". Two people on the right are holding books. The background shows a portion of the construction site with steel frameworks.", - "id": 31883 - }, - { - "image_path": "G:\\images\\combined\\00581_jpg.rf.799417445d31c0788b0e6da29b989c74.jpg", - "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", - "id": 31884 - }, - { - "image_path": "G:\\images\\combined\\00581_jpg.rf.853c199bcd73717fc05c2c7b02d097e3.jpg", - "response": "Three workers in yellow and green vests and hard hats are looking at a blueprint.", - "id": 31885 - }, - { - "image_path": "G:\\images\\combined\\005820_jpg.rf.397c0c5a6c215a84176d19621c500442.jpg", - "response": "In the image, two men are standing in the middle of a building under construction. The man on the left is wearing a red hard hat and neon yellow vest. The man on the right is wearing a yellow hard hat and a neon yellow vest. They are both holding tools. The man on the right is also holding a clipboard with papers on it. They are both looking at the camera. The walls of the building are made of wood and the floor is unfinished. There are also two bicycles in the background.", - "id": 31886 - }, - { - "image_path": "G:\\images\\combined\\005821_jpg.rf.4813594ae8826d6bd3151b0ae61ed6bb.jpg", - "response": "A construction worker on scaffolding working on a building.", - "id": 31887 - }, - { - "image_path": "G:\\images\\combined\\005823_jpg.rf.2ea57835f0f76fa04ea517fd1dfb1e50.jpg", - "response": "A Chinese steelworker is shown crying in this undated photo. The photo, taken by a photographer for the official China Daily newspaper, shows the worker wiping away tears as he operates a crane at a steel factory in Hebei province. The photo was published on the newspaper's website on September 28, 2009. The photo is said to have been taken to highlight the difficulties faced by Chinese workers, especially those in heavy industry.", - "id": 31888 - }, - { - "image_path": "G:\\images\\combined\\0058241de1f2e430.jpg", - "response": "A baseball player wearing a green jersey with the number twenty nine on the back.", - "id": 31889 - }, - { - "image_path": "G:\\images\\combined\\005825_jpg.rf.87aaa0707af47b1d749098b612404c45.jpg", - "response": "A man in a blue shirt and a yellow hat is carrying a ladder. A woman in a black and white striped shirt is carrying a box. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A woman in a black shirt is carrying a box as well. A", - "id": 31890 - }, - { - "image_path": "G:\\images\\combined\\005826_jpg.rf.891659dc3a9094ab5175d9f8db5370b0.jpg", - "response": "A construction site with several people working on it.", - "id": 31891 - }, - { - "image_path": "G:\\images\\combined\\005827_jpg.rf.90756cf4bcd48c2f068f4dc94d579d3b.jpg", - "response": "A group of men standing around each other.", - "id": 31892 - }, - { - "image_path": "G:\\images\\combined\\005828_jpg.rf.04412046f0b5dccf9831a213db24ac81.jpg", - "response": "The image shows two men standing on a wooden fence, going over blueprints in a field. The field has several solar panels in it. The men are both wearing white helmets and the man on the left is wearing a white shirt and a white helmet. The man on the right is wearing a blue shirt and a white helmet.", - "id": 31893 - }, - { - "image_path": "G:\\images\\combined\\005829_jpg.rf.54ae1f2dd9fcafee792881500026890d.jpg", - "response": "\u8003\u53e4\u4eba\u5458\u5728\u5bf9\u6c49\u664b\u5d16\u5893\u8fdb\u884c\u53d1\u6398\u3002\u8bb0\u8005\u6628\u65e5\u4ece\u5e02\u6587\u7269\u8003\u53e4\u7814\u7a76\u6240\u83b7\u6089,\u6211\u5e02\u53d1\u73b0\u7684\u6c49\u664b\u5d16\u5893\u7fa4,\u662f\u76ee\u524d\u6211\u5e02\u53d1\u73b0\u7684\u5e74\u4ee3\u6700\u65e9\u7684\u5d16\u5893\u3002", - "id": 31894 - }, - { - "image_path": "G:\\images\\combined\\00582_jpg.rf.7a724035aba6416ff9b461e6642960b7.jpg", - "response": "a group of men standing on a dirt road", - "id": 31895 - }, - { - "image_path": "G:\\images\\combined\\00582_jpg.rf.9f966489f23aedbab342470e506cd898.jpg", - "response": "A group of four men standing on a dirt road.", - "id": 31896 - }, - { - "image_path": "G:\\images\\combined\\005830_jpg.rf.fabc4cc4c77f111881d27943717eab5a.jpg", - "response": "In the image you can see a group of men standing in front of a construction site. They are all wearing hard hats. Some of them are wearing suits and ties. In the background you can see several cranes working on the construction. To the right of the group of men there is a small body of water, which is fenced off.", - "id": 31897 - }, - { - "image_path": "G:\\images\\combined\\005831_jpg.rf.6ae7efc78997992cf22b721167e9dddc.jpg", - "response": "A construction site with multiple workers wearing hard hats and working on a building that has not yet been completed.", - "id": 31898 - }, - { - "image_path": "G:\\images\\combined\\005832_jpg.rf.3509ec74a51b696fc05dfaacb158a305.jpg", - "response": "The image shows a group of men walking across a construction site. They are all dressed in business attire, with some wearing suits and others appearing more casual in button-down shirts and slacks. The men are walking across a large patch of dirt, with a few small buildings and a car visible in the background. The sky is overcast, with grey clouds filling the sky. The ground is covered in small rocks and dirt, and the overall atmosphere appears to be one of construction and development.", - "id": 31899 - }, - { - "image_path": "G:\\images\\combined\\005833_jpg.rf.9bd790de23f125872cc275b08bca8f3a.jpg", - "response": "In the image there are several construction workers at a construction site. They are working on a foundation for a building. Some of the workers are wearing yellow hard hats and there is a white hard hat on the ground. There is a person on the far left wearing a green shirt and grey pants. They are standing on a wooden platform. There is a person in the bottom right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top right corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well. There is a person in the top left corner wearing a yellow shirt and grey pants. They are standing on a wooden platform as well.", - "id": 31900 - }, - { - "image_path": "G:\\images\\combined\\005834_jpg.rf.4605f2876362137eb795205c109cc734.jpg", - "response": "a group of people standing around a dirt field", - "id": 31901 - }, - { - "image_path": "G:\\images\\combined\\005835_jpg.rf.3c98b527e77450b813afbcd988284fc1.jpg", - "response": "A group of people working on a construction site.", - "id": 31902 - }, - { - "image_path": "G:\\images\\combined\\005836_jpg.rf.c3112d161db67d2143215fe55edc5756.jpg", - "response": "A train is in the process of being worked on by several men. The train is yellow and black and is located on the tracks. The men are wearing hard hats and some are wearing yellow vests. They are working on the train tracks near the train.", - "id": 31903 - }, - { - "image_path": "G:\\images\\combined\\005837_jpg.rf.87e51bb8f8fde0c9c5d1d68e24d7a2d8.jpg", - "response": "A construction worker in an orange vest and hat is working on a project.", - "id": 31904 - }, - { - "image_path": "G:\\images\\combined\\005838_jpg.rf.c4b8d8caa0e1a9f156fb83aed56bc2c0.jpg", - "response": "Men are working on a construction site with wheelbarrows and shovels.", - "id": 31905 - }, - { - "image_path": "G:\\images\\combined\\005839_jpg.rf.d07e83861a0324d0b43d3dbe380778fd.jpg", - "response": " Two workers(140,179),(400,996)(427,285),(628,996) in a factory", - "id": 31906 - }, - { - "image_path": "G:\\images\\combined\\00583_jpg.rf.7a53563f6d0997d4bf250f97567e0825.jpg", - "response": "A group of people standing around talking.", - "id": 31907 - }, - { - "image_path": "G:\\images\\combined\\005840_jpg.rf.a98f757f66ae16ebc7fb2f2b986351ea.jpg", - "response": "In the image two workers are repairing an electricity pole. They are wearing blue and grey clothes and helmets. The background shows a part of a tall building.", - "id": 31908 - }, - { - "image_path": "G:\\images\\combined\\005841_jpg.rf.e0eeb2797d97e1410ac431757147c3f3.jpg", - "response": "Men in suits and hard hats stand around a large hole in the ground.", - "id": 31909 - }, - { - "image_path": "G:\\images\\combined\\005843_jpg.rf.9899e839ec7599e7d3583869af899db2.jpg", - "response": "A man and woman in front of a building under construction.", - "id": 31910 - }, - { - "image_path": "G:\\images\\combined\\005844_jpg.rf.7450035cfd5faf6c0c1ad03db7d84f05.jpg", - "response": "a group of men standing around each other", - "id": 31911 - }, - { - "image_path": "G:\\images\\combined\\005846_jpg.rf.c74ac84bf3b0eefa00715cf43e088b62.jpg", - "response": "The image shows two workers in the snow, working on a power transmission line. They are both wearing blue and yellow work clothes and have their hair covered in brown hair ties. One of the workers is on the left and is crouching down, while the other worker is on the right and is standing up. They are both working on the yellow part of the transmission line. In the background, there are many power lines made of black wires, hanging from a frame made of black metal. The sky is a mix of blue and white snow clouds.", - "id": 31912 - }, - { - "image_path": "G:\\images\\combined\\005847_jpg.rf.3e959fc8ca52503685b72d6a8312abaf.jpg", - "response": "a group of men walking down a hallway", - "id": 31913 - }, - { - "image_path": "G:\\images\\combined\\005848_jpg.rf.1a44503990bec040551b4d904bfcb2ab.jpg", - "response": " People(596,624),(683,845)(428,633),(538,863)(329,632),(426,848)(284,637),(353,793)(182,638),(273,778) walking in the snow in front of a house(3,115),(995,406)", - "id": 31914 - }, - { - "image_path": "G:\\images\\combined\\005849_jpg.rf.d2ca3401c9975324c8b19d3b0e40a7bb.jpg", - "response": "a man wearing a orange and black jacket(188,316),(329,882)", - "id": 31915 - }, - { - "image_path": "G:\\images\\combined\\005850_jpg.rf.584b10bfd2de86c3a4637c3ee2228cfe.jpg", - "response": "In the image there is a blue and white sign that says '\u8212\u57ce\u53bf\u91cd\u70b9\u5de5\u7a0b\u5efa\u7ba1\u5c40\u6c38\u5b89\u5b89\u7f6e\u5c0f\u533a\u5de5\u7a0b'. Underneath this sign there is a group of people walking towards a construction site. The construction site has several cranes working on it and the scaffolding is green. To the right of the construction site there is a tall building that is under construction.", - "id": 31916 - }, - { - "image_path": "G:\\images\\combined\\005851_jpg.rf.31ea7643295cdae5f37dd5daf8e78a18.jpg", - "response": "A worker in a yellow helmet is using a shovel to move a large rock in a small, dark and wet room. The room is filled with water and black sediment. The worker is standing on a ladder.", - "id": 31917 - }, - { - "image_path": "G:\\images\\combined\\005852_jpg.rf.b11d5248aec848c8a6a39054e3334478.jpg", - "response": "A group of three workers are working on a construction site. They are wearing hard hats and are standing on a scaffold. The man in the middle is working on something on the top of the scaffold. The man on the left is holding a red tool box. The man on the right is wearing a yellow hard hat and is holding a blue tool box. There are several other workers visible in the background.", - "id": 31918 - }, - { - "image_path": "G:\\images\\combined\\005853_jpg.rf.bd9e4a60cfc13b2dc9c1586002283cf8.jpg", - "response": " Several construction workers(549,216),(808,935)(124,365),(423,997)(2,582),(178,997)(798,6),(996,994) in blue uniforms and red helmets(261,363),(355,452)(656,214),(753,313)(828,3),(988,127)(53,582),(128,662) are working on a construction site.", - "id": 31919 - }, - { - "image_path": "G:\\images\\combined\\005854_jpg.rf.ef4e1529471af1e326d2373ec6a9d2b6.jpg", - "response": "A man in a yellow hard hat and grey work suit crouches on a construction site. He has a yellow hard hat, black work boots, and a yellow tool belt around his waist. He is holding a tool in his right hand and there is a second tool to his left. The background shows a city skyline with many tall buildings.", - "id": 31920 - }, - { - "image_path": "G:\\images\\combined\\005855_jpg.rf.eb49eccaa4e692f9f18cd831022d2c72.jpg", - "response": "A group of men working on a machine in the snow.", - "id": 31921 - }, - { - "image_path": "G:\\images\\combined\\005856_jpg.rf.9537d8f5b65c85b5f774b4c41fe3c20d.jpg", - "response": "Two men are wearing yellow hard hats and smiling at the camera. They are in front of a brick wall and one man has his arm around the other.", - "id": 31922 - }, - { - "image_path": "G:\\images\\combined\\005857_jpg.rf.151dec57573386fd67ce178b8d5f5a53.jpg", - "response": "A group of people looking at a model of a city.", - "id": 31923 - }, - { - "image_path": "G:\\images\\combined\\005858_jpg.rf.0be7658040191191ed1e7f5ba6dc5bed.jpg", - "response": "A few men are working on power lines.", - "id": 31924 - }, - { - "image_path": "G:\\images\\combined\\005859_jpg.rf.dc0096aee24e14b39b70bb6b38c8a89e.jpg", - "response": "In the image there is a man smiling and wearing a white helmet and an orange vest. He is holding a blueprint in front of a construction site. There are several houses under construction in the background. In the foreground, there are yellow piles of wooden planks and two yellow pipes.", - "id": 31925 - }, - { - "image_path": "G:\\images\\combined\\005861_jpg.rf.e3395f74c35b0e686fbbfb90a71ba2f0.jpg", - "response": "A construction worker wearing a red hard hat is shoveling sand behind a long grey wall.", - "id": 31926 - }, - { - "image_path": "G:\\images\\combined\\005862_jpg.rf.ea40ac6dc1de1fc18188456697601c38.jpg", - "response": "A group of men standing in front of a electrical box wearing hard hats.", - "id": 31927 - }, - { - "image_path": "G:\\images\\combined\\005863_jpg.rf.a6183e1198b2eac6c501c55ce463e82d.jpg", - "response": "A worker in a hard hat and blue coveralls is holding a tablet and looking away from the camera. Another worker is standing behind them and is also wearing a hard hat. They are both standing in front of a large concrete dam.", - "id": 31928 - }, - { - "image_path": "G:\\images\\combined\\005864_jpg.rf.9fd1ed919faf4b3f74750876679cfc57.jpg", - "response": "A construction site with two people and a yellow tractor.", - "id": 31929 - }, - { - "image_path": "G:\\images\\combined\\005865_jpg.rf.4cbf8904c04b0cca20833837289e492e.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 31930 - }, - { - "image_path": "G:\\images\\combined\\005866_jpg.rf.fc99df1f86f86f899e5cbf676d31253b.jpg", - "response": "Four men in hard hats are in a tunnel. One man is sitting on the ground, another is pouring a liquid from a bottle into a cup that the sitting man is holding. Another man is standing on the left side of the image, and the fourth man is standing on the right side of the image.", - "id": 31931 - }, - { - "image_path": "G:\\images\\combined\\005867_jpg.rf.78fbe6eec2ed55627049903d251a7cbf.jpg", - "response": "A man in orange is working on a brick wall.", - "id": 31932 - }, - { - "image_path": "G:\\images\\combined\\005868_jpg.rf.f91ef82fc2943d4ad935febfefb8abaf.jpg", - "response": "A man in an orange work suit and a red helmet(708,196),(861,350) is using a crowbar(428,456),(999,999) to remove debris from a muddy street. Another man is using a shovel to clear mud from the street. A few people are standing on the street, and a few people are standing on the sidewalk. A few cars are parked on the street. A few trucks are parked on the sidewalk. A few bags of what look like construction materials are scattered around the street. A few bags of what look like trash are scattered around the street. A few people are carrying brooms. A few people are carrying shovels. A few people are carrying axes. A few people are carrying ropes. A few people are carrying helmets. A few people are carrying other tools. A few people are carrying large bags. A few people are carrying large sticks. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are carrying large pieces of plastic. A few people are carrying large pieces of rope. A few people are carrying large pieces of wood. A few people are carrying large pieces of metal. A few people are", - "id": 31933 - }, - { - "image_path": "G:\\images\\combined\\005869_jpg.rf.287c130ccf5edb3a365a75c8cf6dfb12.jpg", - "response": "The image shows a pile of grey sand with three men working in the background. They are wearing blue, yellow, and orange work clothes and helmets. The man in the middle is using a shovel to dig into the pile of sand. There are also two hoses on the ground to the left of the sand pile. In the background, there is a street light and some trees.", - "id": 31934 - }, - { - "image_path": "G:\\images\\combined\\005870_jpg.rf.a77dad3807061ee6a42c2da8c0245a50.jpg", - "response": "A group of men standing next to each other wearing hard hats", - "id": 31935 - }, - { - "image_path": "G:\\images\\combined\\005871_jpg.rf.969ca9004064568463f7374aabc68f7c.jpg", - "response": "A man wearing a yellow hard hat, a white t-shirt and a pair of sunglasses on his head, standing in a construction site.", - "id": 31936 - }, - { - "image_path": "G:\\images\\combined\\005872_jpg.rf.537579d04f82bf29de2ce4307ca1a361.jpg", - "response": "A couple of men working on power lines.", - "id": 31937 - }, - { - "image_path": "G:\\images\\combined\\005873_jpg.rf.a8628de1d07eae402b4a1e4902356e34.jpg", - "response": "Three people standing in a construction site, two of them are men and one is a woman. They are all wearing yellow safety vests and hard hats. The man on the left is pointing at something on a set of plans he is holding, the man on the right is also holding plans and looking in the same direction. The woman is looking straight ahead.", - "id": 31938 - }, - { - "image_path": "G:\\images\\combined\\005874_jpg.rf.408f30e90c1e60bcdd6ef250df1bf94b.jpg", - "response": "A worker in a cherry picker repairs a power line.", - "id": 31939 - }, - { - "image_path": "G:\\images\\combined\\005875_jpg.rf.34a64498e5ad98faef8a81afc22dd387.jpg", - "response": "An engineer is seen in the picture wearing a yellow helmet and a mask. He is holding a black device with a antenna. Behind him, there are power poles and power cables.", - "id": 31940 - }, - { - "image_path": "G:\\images\\combined\\005876_jpg.rf.59527ab6fa7bc7ab8282b8247b21f54c.jpg", - "response": "Two construction workers(358,142),(500,478)(499,151),(729,629) in orange vests(365,226),(496,439)(613,249),(728,538) are working on a small engine on a trailer(213,457),(823,995).", - "id": 31941 - }, - { - "image_path": "G:\\images\\combined\\005877_jpg.rf.f3e4df688d8011c311a6da0b0a27bb48.jpg", - "response": "The picture shows a group of people standing in front of a construction site. Some of the people are wearing blue hats, and the ground in front of them has been excavated.", - "id": 31942 - }, - { - "image_path": "G:\\images\\combined\\005879_jpg.rf.8fc97d07e35caea46f5ed4cd5b6a55cf.jpg", - "response": "A construction worker wearing a yellow shirt and a pink hard hat is working on a scaffold.", - "id": 31943 - }, - { - "image_path": "G:\\images\\combined\\00587_jpg.rf.66b3f6db9f6aa93d21325942a1b3189e.jpg", - "response": "The image shows two women standing next to a railroad. They are both dressed in yellow vests and white helmets. The woman on the left is holding a pen and a clip board, while the woman on the right is operating a\u6d4b\u91cf\u4eea\u5668. Both women are looking at the clip board.", - "id": 31944 - }, - { - "image_path": "G:\\images\\combined\\00587_jpg.rf.c68bf84edb954b81a4aeecfa4ca2f8de.jpg", - "response": "In the image, two women are working on the railroad tracks. They are wearing yellow vests and white helmets. The woman on the left is holding a pen and a notebook, and she is looking at the camera. The woman on the right is operating a piece of\u6d4b\u91cf\u4eea\u5668. The background is a wall of railroad tracks and a forest.", - "id": 31945 - }, - { - "image_path": "G:\\images\\combined\\005880_jpg.rf.54ec4000f929bbeb770dffaa5efd648f.jpg", - "response": "A group of men in blue and white shirts and red hats are walking together. Some of the men are holding umbrellas. In the background there is a building under construction.", - "id": 31946 - }, - { - "image_path": "G:\\images\\combined\\005881_jpg.rf.370e921e46176ae45d31611b61efcd1b.jpg", - "response": "A man in a blue shirt and hard hat is working on an electricity pylon.", - "id": 31947 - }, - { - "image_path": "G:\\images\\combined\\005882_jpg.rf.d3ea4794dba4e192c902b4b9739aa507.jpg", - "response": "A construction site with multiple workers.", - "id": 31948 - }, - { - "image_path": "G:\\images\\combined\\005883_jpg.rf.ecb11202508ea1d9ba1880e9c51e36cb.jpg", - "response": "A group of men stand on a bridge holding umbrellas.", - "id": 31949 - }, - { - "image_path": "G:\\images\\combined\\005884_jpg.rf.44db0dc14a449777eeff40f05f3a80c2.jpg", - "response": "A man wearing a yellow hard hat with the words \u201c\u5e78\u798f\u5341\u4e00\u5c40\u201d (happiness eleventh division) printed on it.", - "id": 31950 - }, - { - "image_path": "G:\\images\\combined\\005885_jpg.rf.33b0200772d64e8c2e4e959609636ec1.jpg", - "response": "In the image, a worker is suspended in the air, fixing a traffic light. The worker is wearing a yellow uniform and is in the process of fixing a traffic light that is hanging from a red cable. The worker is also holding a yellow helmet in his hand. The sky is overcast and there are some power lines in the vicinity.", - "id": 31951 - }, - { - "image_path": "G:\\images\\combined\\005886_jpg.rf.666263e2e3628899f3e8c4e2dc3d2c01.jpg", - "response": "a group of men standing on a street", - "id": 31952 - }, - { - "image_path": "G:\\images\\combined\\005887_jpg.rf.367f784072f8b146d57db1e753dc5564.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 31953 - }, - { - "image_path": "G:\\images\\combined\\005888_jpg.rf.a8989ee6fb8b31bcde610c220f8506f1.jpg", - "response": "An elderly couple is climbing a steep mountain. The man is wearing a blue baseball cap, a brown coat, and a pair of black pants. He is also wearing a pair of grey shoes. The woman is wearing a yellow top and a grey jacket. She is carrying a blue bag on her back. They are both wearing blue hats. They are using a rope to climb the mountain.", - "id": 31954 - }, - { - "image_path": "G:\\images\\combined\\00588_jpg.rf.f4516e531bd7843ac3cc1beb35830cf4.jpg", - "response": "A group of workers standing around a small mirror looking at themselves. Each of them are wearing blue and orange work clothes and blue helmets. In front of the mirror there is a board with the words \"\u5b89\u5168\u8b66\u793a\u955c\" (Safety mirror) and a drawing of a person wearing a safety belt.", - "id": 31955 - }, - { - "image_path": "G:\\images\\combined\\005890_jpg.rf.b523cf71130fa211565c64c2c90b768e.jpg", - "response": "In the image two power line workers are in the process of changing a insulator on a telephone or power line tower. The two workers are wearing yellow hard hats and are in the process of replacing a insulator on the power tower.", - "id": 31956 - }, - { - "image_path": "G:\\images\\combined\\005891_jpg.rf.2345a56be628930d9d10177fa984f5ba.jpg", - "response": "A man wearing a blue shirt, orange hard hat, and white gloves is working on a construction site. He is measuring a metal bar with a measuring tape. He is standing next to a large metal grid structure. In the background, there is a green fence and a white building.", - "id": 31957 - }, - { - "image_path": "G:\\images\\combined\\0058928240fe1561.jpg", - "response": "A man in a suit and tie is holding a framed award.", - "id": 31958 - }, - { - "image_path": "G:\\images\\combined\\005893_jpg.rf.5fa66e145310c69b869a3bb6ca4d11af.jpg", - "response": "In the image two people are working in a cave. They are both wearing blue shirts, white and blue hard hats, and are holding tools. The person on the left is wearing glasses and has a beard. They are holding a device with a wire connected to it. The person on the right has black hair and is looking at the device the other person is holding. They are holding a large stick with a meter on the end.", - "id": 31959 - }, - { - "image_path": "G:\\images\\combined\\005894_jpg.rf.f1ec92cedb8d158f1e8778ed2916dafb.jpg", - "response": "A group of workers fixing some power lines.", - "id": 31960 - }, - { - "image_path": "G:\\images\\combined\\005895_jpg.rf.f21b293a2737dbe3afbaef2a60f6bc98.jpg", - "response": "A group of men wearing hard hats are working on a tree.", - "id": 31961 - }, - { - "image_path": "G:\\images\\combined\\005896_jpg.rf.b617c5cd89ad7d1cc45b8a5d62a25732.jpg", - "response": "A close up of a man wearing a orange hard hat.", - "id": 31962 - }, - { - "image_path": "G:\\images\\combined\\005899_jpg.rf.89ffc0f07bfb563cbe2a60254d7b6b03.jpg", - "response": "The image shows a group of people standing in front of a construction site. They are all wearing hard hats and some of them are also wearing red ties. In the background, there is a partially constructed building with scaffolding. There are also several cranes working in the background. The sky is overcast and the ground is dry.", - "id": 31963 - }, - { - "image_path": "G:\\images\\combined\\00589_jpg.rf.0920908376b2ad85d247813037229b6c.jpg", - "response": "A group of people standing around a construction site.", - "id": 31964 - }, - { - "image_path": "G:\\images\\combined\\00589_jpg.rf.8b2b2cbb9f68162fe11bf72acee71307.jpg", - "response": "A group of people standing around a construction site", - "id": 31965 - }, - { - "image_path": "G:\\images\\combined\\005900_jpg.rf.75d3f94189eb4f601ae357e73cfd889d.jpg", - "response": "A construction worker uses a jackhammer to break up concrete.", - "id": 31966 - }, - { - "image_path": "G:\\images\\combined\\005901_jpg.rf.b311b7363fce1817a87d7cb2dacd781b.jpg", - "response": "A group of three men dressed in yellow and grey safety vests, hard hats and one man has a beard. They are pointing at a blueprint that is posted on a wall.", - "id": 31967 - }, - { - "image_path": "G:\\images\\combined\\005902_jpg.rf.f4169193be63da8d234afc5aac99c89a.jpg", - "response": "A group of men standing on top of a mountain.", - "id": 31968 - }, - { - "image_path": "G:\\images\\combined\\005903_jpg.rf.03e03d6f3479c75adfc1712ef13d989a.jpg", - "response": "A man in a yellow helmet and blue shirt is operating a cement mixer.", - "id": 31969 - }, - { - "image_path": "G:\\images\\combined\\005904_jpg.rf.0da13579757a24a45bf3fc33e6f8a6aa.jpg", - "response": "The image shows two workers in blue uniforms and safety gear working on a power line. They are standing on a metal platform that is attached to the power pole, and they are repairing a damaged part of the line. The sky above them is overcast, with dark clouds visible.", - "id": 31970 - }, - { - "image_path": "G:\\images\\combined\\005905_jpg.rf.4530134d251bb4ed7e89f9e08369a4fb.jpg", - "response": "In the image two men are working on power lines. They are both wearing blue helmets and coveralls. The coveralls have yellow writing on the legs. The men are standing on a platform that is connected to the power lines. They are holding onto the power lines and wires and appear to be working on them. The sky is blue and clear.", - "id": 31971 - }, - { - "image_path": "G:\\images\\combined\\005907_jpg.rf.a0f0912a115e29f4f763d8f8320ccfcf.jpg", - "response": " Men(728,371),(899,946)(597,387),(767,899)(501,388),(633,828) in hard hats(736,369),(799,447)(505,386),(565,455)(629,387),(695,457) and rain gear(597,389),(767,898)(729,441),(899,942) stand on a muddy road in the rain.", - "id": 31972 - }, - { - "image_path": "G:\\images\\combined\\005909_jpg.rf.3ecd0d36d3833f183a35c5a62977c3dc.jpg", - "response": "An electrician scales a transmission tower to make repairs.", - "id": 31973 - }, - { - "image_path": "G:\\images\\combined\\005911_jpg.rf.d29999cd6d42569d65d62497aca28c99.jpg", - "response": "In the image there are two construction workers wearing yellow and white hard hats, one worker is sitting on the ground and the other worker is standing next to him. They are both wearing reflective vests. In front of them, there is a large pipe and a piece of paper with a plan on it is placed on the ground in front of them. In the background, there is a large building under construction and a red and white safety barrier.", - "id": 31974 - }, - { - "image_path": "G:\\images\\combined\\005912_jpg.rf.37e66257514c74d64c39444d9bc2c8cf.jpg", - "response": "A group of men standing around and talking.", - "id": 31975 - }, - { - "image_path": "G:\\images\\combined\\005913_jpg.rf.c0ddaaa53a16608dc61ae94d7e56064b.jpg", - "response": "In the image there is a construction site where a worker is building a structure made of iron and wood. The worker is dressed in a grey uniform and is wearing a helmet. He is putting up a iron structure, which is supported by a few iron pipes. The background shows a wall made of concret and wooden bars. The worker is standing in a pool of liquid.", - "id": 31976 - }, - { - "image_path": "G:\\images\\combined\\005914_jpg.rf.fbc1044d4cf76395073c9d1f5e7cdb0b.jpg", - "response": "A construction worker is shoveling concrete onto a unfinished road.", - "id": 31977 - }, - { - "image_path": "G:\\images\\combined\\005915_jpg.rf.5a81bfc0ddd6cbd717bc32c8d927ae5c.jpg", - "response": "A group of people in hard hats pulling a rope together in a large building.", - "id": 31978 - }, - { - "image_path": "G:\\images\\combined\\005916_jpg.rf.6396ed2c31343fd229b4626c28bb6807.jpg", - "response": "A man in a blue shirt and grey pants is sitting on a wooden ladder that is attached to a power pole. He is wearing a black helmet and grey gloves. There are many wires and cables attached to the pole and the man. There is a sky background with clouds.", - "id": 31979 - }, - { - "image_path": "G:\\images\\combined\\005918_jpg.rf.7d004e9e0946a870f7e997a37746a007.jpg", - "response": "The image shows two construction workers at a construction site, one of them is holding a large yellow concrete bucket and is about to pour concrete into a large wheelbarrow. The concrete is mixed in a large metal mixer. The workers are wearing yellow and red hard hats and grey uniforms. The ground is covered with snow.", - "id": 31980 - }, - { - "image_path": "G:\\images\\combined\\005919_jpg.rf.215a9e08d6c7f8de69e842ff44ec7f42.jpg", - "response": "A group of men standing around each other.", - "id": 31981 - }, - { - "image_path": "G:\\images\\combined\\00591_jpg.rf.7394d15002c6f71d138b1641ac6a3040.jpg", - "response": "The image shows a group of six people wearing hard hats sitting around a table in a patio setting. They all appear to be wearing the same outfit of dark clothing and hard hats. The table is surrounded by benches and there are several cups and a bottle on the table. In the background, there is a building with a white exterior and a patio area. There are also a few potted plants in the scene.", - "id": 31982 - }, - { - "image_path": "G:\\images\\combined\\005920_jpg.rf.9259b4068a4621c02d5d4d5a45b6808c.jpg", - "response": "A worker in white uniform and white hat is on a cherry picker fixing a power box on a pole.", - "id": 31983 - }, - { - "image_path": "G:\\images\\combined\\005922_jpg.rf.e33c63d88d1168d5021c043843701776.jpg", - "response": "The picture shows two Chinese workers in hard hats carrying a metal sheet. They are working on a construction site with a white metal building in the background. The sky is blue with clouds.", - "id": 31984 - }, - { - "image_path": "G:\\images\\combined\\005923_jpg.rf.0be973e6a746b5ece3c21a04f28b717f.jpg", - "response": "The image shows three men standing in front of a staircase. All three are wearing safety helmets. To the far left is a man in an orange jumpsuit and white helmet. To the right of him is a man in a navy blue jacket and red helmet. To the far right is a man in a brown jacket and white helmet.", - "id": 31985 - }, - { - "image_path": "G:\\images\\combined\\005924_jpg.rf.4f0def0010d310dae83ff221f95e9670.jpg", - "response": "The image shows three engineers or construction workers wearing white helmets, looking at a blueprint spread out on the ground. They are all smiling and seem to be having a good time on the job site.", - "id": 31986 - }, - { - "image_path": "G:\\images\\combined\\005925_jpg.rf.0d053f5d517e9ee355970f56c0768bf0.jpg", - "response": "An engineer in an orange uniform and yellow hard hat points to the right as two yellow excavators dig into a large pile of brown dirt.", - "id": 31987 - }, - { - "image_path": "G:\\images\\combined\\005926_jpg.rf.45e07524ec6b8823a401abc8c4473d07.jpg", - "response": "The image shows two workers in white protective clothing and blue helmets repairing a power pole. They are standing on the pole, which is made of grey wood and has several black wires. One worker is on the left side of the pole and is holding a tool in his right hand. The other worker is on the right side of the pole and is holding a tool in his left hand. They are both wearing white protective masks and have their legs wrapped in safety straps. The sky is white and cloudless.", - "id": 31988 - }, - { - "image_path": "G:\\images\\combined\\005927_jpg.rf.4a5c50466323085b90a22a4643d66f47.jpg", - "response": "Two workers in yellow hard hats and grey and yellow uniforms are working with machinery. They are standing in a large factory and there is a yellow machine to their left. They are working with a green and grey machine that has a brick pattern on it. There are many more machines like this in the background. The floor of the factory is grey and there are many bricks laid around the factory.", - "id": 31989 - }, - { - "image_path": "G:\\images\\combined\\005928_jpg.rf.5dbc11b63300e0009f14beb8fa2efe46.jpg", - "response": "An electrician working on an electrical transformer wearing a yellow hard hat and other safety gear.", - "id": 31990 - }, - { - "image_path": "G:\\images\\combined\\005929_jpg.rf.c3bd2521ed3b3674d099c2b4b4e91c5c.jpg", - "response": "a group of people standing in a construction site", - "id": 31991 - }, - { - "image_path": "G:\\images\\combined\\00592_jpg.rf.59077c38477aa6a881e0cf5a90296f72.jpg", - "response": "A group of people standing around a construction site", - "id": 31992 - }, - { - "image_path": "G:\\images\\combined\\005930_jpg.rf.b36a2fb0d06fc676922b6d62d898429e.jpg", - "response": "a group of people standing in a dirt road", - "id": 31993 - }, - { - "image_path": "G:\\images\\combined\\005931_jpg.rf.714c1832ea9a3e6fb260f363e1694b28.jpg", - "response": "A woman in a green dress is pointing towards something to a group of men. They are standing on a unfinished road next to a building under construction. There is a blue sky in the background.", - "id": 31994 - }, - { - "image_path": "G:\\images\\combined\\005932_jpg.rf.efcfd90716ef90281a252d026cffab1e.jpg", - "response": "A man in a blue jumpsuit and a yellow hard hat is working in a factory. He is pushing a dolly with a large metal cylinder on it. The background is a wall and a window. There is also a chair in the scene.", - "id": 31995 - }, - { - "image_path": "G:\\images\\combined\\005933_jpg.rf.7a820b10b70ece35a7899b6fe5ea1f29.jpg", - "response": "A man in a red vest and yellow hard hat standing next to a man in a red vest and orange hard hat. Both are wearing yellow safety vests and are standing in front of a large metal object. They are both wearing gloves and the man on the left is also wearing a blue hard hat.", - "id": 31996 - }, - { - "image_path": "G:\\images\\combined\\005934_jpg.rf.8ad52d678b4102974ccb19ddde80fc83.jpg", - "response": "a group of people standing outside of a van", - "id": 31997 - }, - { - "image_path": "G:\\images\\combined\\005935_jpg.rf.274e4cc823d01beb925fb29c4edcb730.jpg", - "response": "The image shows two workers in yellow jackets and blue hard hats, one yellow and one green, standing on a construction site with a building under construction in the background. They are both looking at a window frame on a building under construction.", - "id": 31998 - }, - { - "image_path": "G:\\images\\combined\\005936_jpg.rf.ce96cb7f39c92b0ad47da6382aa3ed2c.jpg", - "response": "A group of men standing around a white board looking at it. They are all wearing hard hats.", - "id": 31999 - }, - { - "image_path": "G:\\images\\combined\\005937_jpg.rf.43bbc5284de33aab8a1ee5e769ec52dc.jpg", - "response": "The workers are wearing yellow helmets. The workers are wearing black uniforms. The workers are wearing orange gloves. The workers are wearing red protective shoes. The workers are wearing white safety belts. The workers are wearing yellow hats. The workers are using red hammers.", - "id": 32000 - }, - { - "image_path": "G:\\images\\combined\\005938_jpg.rf.60bd21f5f1bac94b7f94ddd746e56d1f.jpg", - "response": "A group of people in camouflage and hard hats are sitting in a cave. They are wearing masks and have red helmets.", - "id": 32001 - }, - { - "image_path": "G:\\images\\combined\\00593_jpg.rf.18bf2353ef50d5f66a01c9339c2b6811.jpg", - "response": "Three women standing in front of a building site, all wearing red hard hats.", - "id": 32002 - }, - { - "image_path": "G:\\images\\combined\\00593_jpg.rf.ddbe4cfa86ed6da3ce1a3a9960b8226c.jpg", - "response": "Three women standing next to each other, all wearing red hard hats.", - "id": 32003 - }, - { - "image_path": "G:\\images\\combined\\005940_jpg.rf.16d821c9f7087cf0bb544ad22e248f22.jpg", - "response": "A group of men wearing red helmets are having a discussion in a room under construction. One of the men is pointing to the ceiling.", - "id": 32004 - }, - { - "image_path": "G:\\images\\combined\\005941_jpg.rf.ca3491d86befc485997530325d588993.jpg", - "response": "A construction worker wearing a yellow hard hat and a black jacket is in the middle of a construction site. The worker is in the process of lifting a metal beam over their head while standing on a wooden scaffolding. The sky is grey and overcast.", - "id": 32005 - }, - { - "image_path": "G:\\images\\combined\\005942_jpg.rf.cbb69231ed01822d0b441fe963636934.jpg", - "response": "Four men(33,180),(570,997)(438,271),(627,998)(700,268),(963,997) in hard hats(778,267),(953,430)(487,271),(605,398)(202,179),(371,407) standing in a construction site", - "id": 32006 - }, - { - "image_path": "G:\\images\\combined\\005943_jpg.rf.f9d795dadd5df2a0509db41aabde9118.jpg", - "response": "An elderly man wearing a red helmet and a brown jacket stands on a ladder on a steep mountain. He is holding a bamboo stick in each hand. Another man is behind him, wearing a red helmet and a black jacket. They are both wearing black pants. In the background, there is a mountain range with a valley between the mountains. There are also several trees in the valley. To the left of the image, there is a pile of rocks.", - "id": 32007 - }, - { - "image_path": "G:\\images\\combined\\005944_jpg.rf.5ad114f7b6d2857cab44e275b153f38c.jpg", - "response": "The image shows a group of workers dressed in yellow and orange vests and yellow helmets who are shoveling a white substance on the ground. The workers are in a tunnel and one of them is holding a large spoon. The spoon is filled with the white substance.", - "id": 32008 - }, - { - "image_path": "G:\\images\\combined\\005946_jpg.rf.33d2d3970d524e0fa73f0c71e4120199.jpg", - "response": "\u5730\u8d28\u5de5\u4f5c\u8005\u5728\u5c71\u6d1e\u5185\u8fdb\u884c\u5ca9\u82af\u94bb\u63a2\u3002", - "id": 32009 - }, - { - "image_path": "G:\\images\\combined\\005947_jpg.rf.89b88bbafcd77007253f47eb6fa3dac2.jpg", - "response": "A group of men in blue work uniforms and yellow hard hats are climbing a metal tower. They are each holding on to a rope while they ascend. The tower is metal and has a lattice structure. The sky is blue with a few white clouds.", - "id": 32010 - }, - { - "image_path": "G:\\images\\combined\\005948_jpg.rf.5fde493aaaa0d2bbaa764ce16b25f5bb.jpg", - "response": "A woman wearing a red hard hat and blue coveralls.", - "id": 32011 - }, - { - "image_path": "G:\\images\\combined\\00594e9c5e6d67b6.jpg", - "response": "A woman with red hair and a black shirt is drawing on a white board.", - "id": 32012 - }, - { - "image_path": "G:\\images\\combined\\00594_jpg.rf.9ff4ab82bf16edb27214b41ed51bb484.jpg", - "response": "The image shows a group of people standing outside a bus. Some of them are holding shopping bags and one of them is holding a camera. There are two handbags visible in the scene. A man in a tie is talking to the group. The bus is a double-decker red bus. In the background, there are some buildings and a tree.", - "id": 32013 - }, - { - "image_path": "G:\\images\\combined\\005950_jpg.rf.a60ef370698fdc80313dec6e14a7cc96.jpg", - "response": "A group of three people standing in a room wearing hard hats.", - "id": 32014 - }, - { - "image_path": "G:\\images\\combined\\005951_jpg.rf.3032f20eba39da39369a96db25285573.jpg", - "response": " Two workers(170,554),(273,905)(504,347),(646,582) inside a dark tunnel", - "id": 32015 - }, - { - "image_path": "G:\\images\\combined\\005952_jpg.rf.295fc51b18994ebe743e0674b4c0ea94.jpg", - "response": "Two men in a control room with a lot of buttons and switches.", - "id": 32016 - }, - { - "image_path": "G:\\images\\combined\\005953_jpg.rf.84eb5a35eadda7cfc7877522ad39d180.jpg", - "response": "The image shows a group of seven men standing on a construction site, wearing hard hats. The ground is bare and dusty, and there are a few steel bars and some wires visible. In the background, there are two yellow construction vehicles parked. The sky is overcast, and there are a few clouds visible.", - "id": 32017 - }, - { - "image_path": "G:\\images\\combined\\005954_jpg.rf.1b8c2732f82ee6d6afdd366c18645d6f.jpg", - "response": " Workers(312,127),(603,919)(41,358),(282,810)(520,192),(759,714) at a construction site in China.", - "id": 32018 - }, - { - "image_path": "G:\\images\\combined\\005955_jpg.rf.f7d380efcc24fa7eace007c5926d7ddb.jpg", - "response": "A couple of workers fixing a pipe on the street.", - "id": 32019 - }, - { - "image_path": "G:\\images\\combined\\005956_jpg.rf.0f1db0ffc23eac57c733941111b56db8.jpg", - "response": "A worker in a yellow hard hat and orange jacket is using a red power tool to fix a pipe in a concrete wall.", - "id": 32020 - }, - { - "image_path": "G:\\images\\combined\\005957_jpg.rf.8977b5f72963aefd7633822de7c6a9cb.jpg", - "response": "A man is standing in a tunnel with a suitcase.", - "id": 32021 - }, - { - "image_path": "G:\\images\\combined\\005958_jpg.rf.2938840d3cb1539c71e6de2c2876a938.jpg", - "response": "A man and two women wearing hard hats and working clothes are standing on a construction site. They are all holding baskets on a strap across their shoulders. The woman on the left is wearing a red shirt and has a pink hard hat. The man in the middle is wearing a blue shirt and a yellow hard hat. The woman on the right is wearing a blue shirt and a yellow hard hat. They are all standing on grey gravel.", - "id": 32022 - }, - { - "image_path": "G:\\images\\combined\\005959_jpg.rf.d9c1daac0852162e8122c6c1f0384617.jpg", - "response": "An engineer from China's state-owned energy company, the China National Offshore Oil Corporation (CNOOC), works at a construction site in the Nam Con oil field in the South China Sea, around 210 kilometers (130 miles) off the coast of Vietnam, in this undated photo. The South China Sea islands, including the Paracel Islands, are inherent in China's territory, and China is committed to maintaining its sovereignty and maritime rights and interests in the South China Sea islands. China is also committed to resolving disputes through peaceful negotiations and dialogue and firmly opposes any form of territorial expansion. It is actively promoting regional cooperation for common development and prosperity. (Xinhua/Liu Bin via Getty Images)", - "id": 32023 - }, - { - "image_path": "G:\\images\\combined\\005961_jpg.rf.5f1fe9321a0a8c663eb52157cd86b2a9.jpg", - "response": "A group of workers are working on a building.", - "id": 32024 - }, - { - "image_path": "G:\\images\\combined\\005963_jpg.rf.2953dfb9d0ce4d158181b79449820f75.jpg", - "response": "2 workers(313,393),(808,996)(141,79),(541,995) on a ladder working on a power line", - "id": 32025 - }, - { - "image_path": "G:\\images\\combined\\005964_jpg.rf.bf4eb8e83f3b4608f93f9051e893dbbf.jpg", - "response": "In the image two men in green camouflage and blue hard hats are working on a power line. They are wearing green camouflage and are focused on the task at hand.", - "id": 32026 - }, - { - "image_path": "G:\\images\\combined\\005965_jpg.rf.8ee3928e6efb432a305b3fd05086dd19.jpg", - "response": "A group of men in hard hats are standing in a room under construction. One of the men is pointing to a wall.", - "id": 32027 - }, - { - "image_path": "G:\\images\\combined\\005966_jpg.rf.5c948c24045a0d24cbcb38fe19145ede.jpg", - "response": "A couple of men are installing solar panels on the roof of a building. One man is standing on a red ladder and is holding a solar panel while the other man is standing on the roof and is guiding him. Both of them are wearing hard hats.", - "id": 32028 - }, - { - "image_path": "G:\\images\\combined\\005967_jpg.rf.06c067575a5b58857fd8fa7900b03d06.jpg", - "response": "The image shows two workers in a dark room. They are both wearing white shirts and blue helmets. One of them is on the left and is holding a flashlight to look at a machine on the right.", - "id": 32029 - }, - { - "image_path": "G:\\images\\combined\\005968_jpg.rf.0f0cac38c1ce9c4c4e8629228bbd8610.jpg", - "response": "A man in a red jacket and hard hat is standing on a bridge.", - "id": 32030 - }, - { - "image_path": "G:\\images\\combined\\005969_jpg.rf.68773fc98fb0779dd7653440d06de61f.jpg", - "response": "In the image there are two workers installing a solar panel system on a roof. The roof of the building is grey and the solar panel system being installed is also grey. The workers are wearing white long sleeves and grey pants. The man in the front is wearing a red hat and the man in the back is wearing a blue hat. The man in the front is also wearing green work boots and the man in the back is wearing yellow work boots. They are using tools such as drills and screwdrivers to install the solar panels.", - "id": 32031 - }, - { - "image_path": "G:\\images\\combined\\00596_jpg.rf.311062ffbf7d41ced2f75811e33a0804.jpg", - "response": "The image shows three men standing in front of a building under construction. The man on the left is wearing a light blue shirt and a dark blue jacket. The man in the middle is wearing a red hard hat, a black jacket with the word \"TEN\" written on it in white, and a white shirt with the letter \"E\" in black. The man on the right is wearing a white shirt with a large letter \"E\" in black on the front. He is also holding a white piece of paper. The background shows a pile of grey bricks to the left and a yellow and red construction vehicle to the right. There is also a person in the background wearing a white shirt and blue shorts.", - "id": 32032 - }, - { - "image_path": "G:\\images\\combined\\005971_jpg.rf.54294f5150cb7b710f67e72f19d4a777.jpg", - "response": "A yellow construction vehicle is digging up a muddy field.", - "id": 32033 - }, - { - "image_path": "G:\\images\\combined\\005973_jpg.rf.50453ef7cdaee55a460df14e57a3fc4d.jpg", - "response": "The image shows a group of rescue workers in a tunnel. They are wearing orange and yellow vests and hard hats. Some of them are holding tools. In front of them is a device that looks like a metal box with wires coming out of it. The workers are standing on a wooden platform in the tunnel. To the right of the platform is a pile of rocks. To the left of the platform is a pile of brown debris. The workers are focused on the device in front of them.", - "id": 32034 - }, - { - "image_path": "G:\\images\\combined\\005974_jpg.rf.fb048920af4b46440a025c7c75a9b621.jpg", - "response": "A group of men in white shirts and red or blue helmets are walking across a unfinished road.", - "id": 32035 - }, - { - "image_path": "G:\\images\\combined\\005975_jpg.rf.62130b04f9993eee4e592b443ee8276d.jpg", - "response": "Some people are looking at a construction site. They are standing in front of a large concrete structure that has metal rebar sticking out of it. The people are wearing dark clothing and one of them is wearing a cap. The man on the right is also holding a large stick. There is a pile of dark grey rocks to the right of the people.", - "id": 32036 - }, - { - "image_path": "G:\\images\\combined\\005976_jpg.rf.084c49937b93e2fe15cb2758a13ea2c6.jpg", - "response": "A person is wearing a jean jacket and a hard hat.", - "id": 32037 - }, - { - "image_path": "G:\\images\\combined\\005977_jpg.rf.e597e879139fbb66959b4612ca165cb5.jpg", - "response": " A worker(74,340),(409,997) installs solar panels at a solar farm in New York", - "id": 32038 - }, - { - "image_path": "G:\\images\\combined\\005978_jpg.rf.3b3a6234fe34fed047cf7a3677af4ca4.jpg", - "response": "A group of people standing around a construction site with buildings in the background.", - "id": 32039 - }, - { - "image_path": "G:\\images\\combined\\005979_jpg.rf.e694eec3631cfdc58cc1d82164f5a501.jpg", - "response": "The image shows three men standing on a construction site, wearing hard hats and looking at a blueprint. The men are standing on a concrete platform and there are a few pipes sticking out of the ground nearby. The ground is covered in a white material and there is a pile of dirt in the background.", - "id": 32040 - }, - { - "image_path": "G:\\images\\combined\\00597_jpg.rf.f257b3ebf3396e7ed5480c86b22b7b1f.jpg", - "response": "A group of people standing on the side of a road.", - "id": 32041 - }, - { - "image_path": "G:\\images\\combined\\00597_jpg.rf.fe6b3f83c348e0f5d19c8ed4a2f338b9.jpg", - "response": "A group of people standing on the side of a road.", - "id": 32042 - }, - { - "image_path": "G:\\images\\combined\\005980_jpg.rf.fb8e1ea4fdd1f3a443b84f98c7826771.jpg", - "response": "A couple of workers are on the side of a building. One is holding a long tool and the other is looking at something.", - "id": 32043 - }, - { - "image_path": "G:\\images\\combined\\005981_jpg.rf.c42fde42aac1cdd813a4d6b20a8b89c4.jpg", - "response": "The image shows a group of workers in red uniforms standing inside a large tunnel. The tunnel is carved into the side of a mountain and has a tall wooden structure built inside of it. The workers are standing underneath this structure, which appears to be a support system for the tunnel. Some of the workers are wearing hard hats and one of them is holding a tool. The ground around the workers is covered in debris and there are some tools scattered around. The workers are all looking in different directions and seem to be engaged in various tasks.", - "id": 32044 - }, - { - "image_path": "G:\\images\\combined\\005982_jpg.rf.9726babc89ad659370142d7ba8dbe8a3.jpg", - "response": "The image shows a group of workers inside a large building under construction. They are wearing yellow hard hats and orange or yellow vests. The workers are working on a large metal framework that forms the support structure of the building. The metal framework is made up of many intersecting bars and rods that form a grid-like pattern. Some of the workers are standing on the framework, while others are working on it from the ground. The workers are focused on their tasks and appear to be in the middle of a construction site.", - "id": 32045 - }, - { - "image_path": "G:\\images\\combined\\005984_jpg.rf.d993de90a458b3869ec16a2abffa8c08.jpg", - "response": "A group of three men walking away from a work site.", - "id": 32046 - }, - { - "image_path": "G:\\images\\combined\\005985_jpg.rf.d6967b810ec65b96f890dfd0b52c663b.jpg", - "response": "A couple of men working on a building construction site.", - "id": 32047 - }, - { - "image_path": "G:\\images\\combined\\005986_jpg.rf.b9a63bf0ea1613f1b0e6af09f9998980.jpg", - "response": "5 workers(593,172),(879,945)(367,218),(513,576)(527,20),(683,566)(3,125),(275,997) cutting a pole(469,1),(536,891)", - "id": 32048 - }, - { - "image_path": "G:\\images\\combined\\005987_jpg.rf.8dd202312f176b5095ecce42cf37f59b.jpg", - "response": "A group of people walking down a hallway.", - "id": 32049 - }, - { - "image_path": "G:\\images\\combined\\005988_jpg.rf.deadc3de7180f72943fb0eef0b586c4e.jpg", - "response": "The photo shows men walking in a line across the street. They are wearing white shirts and black pants. Some of them are wearing ties. In the background, there is a building under construction.", - "id": 32050 - }, - { - "image_path": "G:\\images\\combined\\005989_jpg.rf.cc2afa672407cec0249ecba8a2a26c10.jpg", - "response": "A group of men in red uniforms are working on a power line.", - "id": 32051 - }, - { - "image_path": "G:\\images\\combined\\00598_jpg.rf.35dbeaa6763659a30483902ece2e724b.jpg", - "response": "a group of men standing in front of a factory", - "id": 32052 - }, - { - "image_path": "G:\\images\\combined\\00598_jpg.rf.7c22f7503bc5d018a58960304a57927a.jpg", - "response": "A group of people are standing outside a factory. Some of them are wearing red hard hats. In the background, there is a construction site with a crane.", - "id": 32053 - }, - { - "image_path": "G:\\images\\combined\\005990_jpg.rf.3475a11366e147ff0318bfc64a02718d.jpg", - "response": "A construction site with several workers and a man being rescued.", - "id": 32054 - }, - { - "image_path": "G:\\images\\combined\\005991_jpg.rf.34b8aa4f925ef7d4942c346d2d3f19d9.jpg", - "response": "A man wearing a red hard hat and work gloves is holding a pipe wrench on a pipe.", - "id": 32055 - }, - { - "image_path": "G:\\images\\combined\\005992_jpg.rf.de4b53f365e5eec08c7c29280dfedc47.jpg", - "response": "A construction worker wearing a yellow hard hat, blue pants, and a yellow and orange safety vest is pulling on a metal rod. He is wearing a yellow hard hat and has a beard.", - "id": 32056 - }, - { - "image_path": "G:\\images\\combined\\005993_jpg.rf.905f5218dd1e2f9c5d43dc7d046ad66b.jpg", - "response": " Two construction workers(860,553),(963,981)(762,545),(829,850) standing in front of a bulldozer(70,338),(683,729)", - "id": 32057 - }, - { - "image_path": "G:\\images\\combined\\005994_jpg.rf.e9376eac8f43fb0ee953359c4806bd0f.jpg", - "response": " Workers(224,607),(297,997)(504,516),(658,955)(292,589),(366,997)(1,415),(61,637) at the construction site of the subway line 14 in Shanghai.", - "id": 32058 - }, - { - "image_path": "G:\\images\\combined\\005995_jpg.rf.8c0015045ca8b087cc33ca6fbe36ffd4.jpg", - "response": "A group of people standing around a blueprint on a construction site.", - "id": 32059 - }, - { - "image_path": "G:\\images\\combined\\005996_jpg.rf.db600f1754eb5b05225956fbb2a11ad0.jpg", - "response": "A construction site with multiple workers.", - "id": 32060 - }, - { - "image_path": "G:\\images\\combined\\005997_jpg.rf.9aebc48006f44ef488f8ccfbb7dab7c9.jpg", - "response": "A man in a yellow safety vest and red hard hat stands on a train track.", - "id": 32061 - }, - { - "image_path": "G:\\images\\combined\\005998_jpg.rf.1336712ad9e44010eb10177b01bb15a7.jpg", - "response": "In the image there are two workers in a construction site. They are both wearing hard hats and one of them is wearing a blue one and the other one is wearing a red one. They are both smiling at the camera. In the background, there are a lot of metal bars and tubes of different colors.", - "id": 32062 - }, - { - "image_path": "G:\\images\\combined\\005999_jpg.rf.e6512c41d88f6bff0789b37a54b0aaf8.jpg", - "response": "The image shows a group of men standing in a lobby. They are all wearing ties. Some of them are also wearing name tags. The men are standing in two rows. In front of them is a counter with a plant on it. To the right of the counter is a pillar. Behind the men is a large window. The lobby has a glass ceiling. The men are all wearing different colors and styles of clothing.", - "id": 32063 - }, - { - "image_path": "G:\\images\\combined\\00599_jpg.rf.218c56dc2a21b3638e0eab02c2c23837.jpg", - "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are dressed in work clothes. The woman is holding a tablet, and she is showing something on it to the man standing next to her. The man is also looking at the tablet. They are standing in front of a construction site.", - "id": 32064 - }, - { - "image_path": "G:\\images\\combined\\00599_jpg.rf.6ce9c63190ac67a1bbbdca7673bc6760.jpg", - "response": "In the image, there are two people wearing yellow vests and blue hard hats. They are standing in a construction area, and the woman is holding a tablet. The man is pointing at the tablet, and they are both looking at the screen.", - "id": 32065 - }, - { - "image_path": "G:\\images\\combined\\0059b3476be49c49.jpg", - "response": "A beer tap that says London Pilsner on it.", - "id": 32066 - }, - { - "image_path": "G:\\images\\combined\\0059b85f053a2e64.jpg", - "response": "A color illustration of three women in pastel colors on a cloud. They are holding a large hot air balloon.", - "id": 32067 - }, - { - "image_path": "G:\\images\\combined\\005a2a34b7a0e507.jpg", - "response": "A man and woman pose for a picture while holding their bowling balls. They are standing in front of a row of bowling lanes in a bowling alley.", - "id": 32068 - }, - { - "image_path": "G:\\images\\combined\\005a39553e6667f5.jpg", - "response": "A large yellow sign for the Green Acres Motel.", - "id": 32069 - }, - { - "image_path": "G:\\images\\combined\\005b47528e6a32cb.jpg", - "response": "The seal of the US Army is shown on a large metal surface. The Army logo is in the center of the seal and is surrounded by the words \"Department of the Army.\" The year 1775 is also shown on the seal.", - "id": 32070 - }, - { - "image_path": "G:\\images\\combined\\005b5a0dc34354c9.jpg", - "response": "A book is on display on a table. The book is written in Spanish and is titled \"Aleph\". The cover features a person swimming in a pool with their head above water. The person's hair is in a bun. The book is on a black surface.", - "id": 32071 - }, - { - "image_path": "G:\\images\\combined\\005b871dd8c27687.jpg", - "response": "A young boy up to bat in baseball game.", - "id": 32072 - }, - { - "image_path": "G:\\images\\combined\\005b92c904f041ae.jpg", - "response": "A sign on a sidewalk that says \"REFEREES ONLY\" in front of a tent with people in yellow shirts standing under it.", - "id": 32073 - }, - { - "image_path": "G:\\images\\combined\\005c21872cd3bb1d.jpg", - "response": "a blue and white ferry sign", - "id": 32074 - }, - { - "image_path": "G:\\images\\combined\\005c731182304792.jpg", - "response": "A street sign with two arrows on it, one pointing to the left and one pointing to the right.", - "id": 32075 - }, - { - "image_path": "G:\\images\\combined\\005c774042747f13.jpg", - "response": "A wall with writing on it that says \"Fasts Devlet\"", - "id": 32076 - }, - { - "image_path": "G:\\images\\combined\\005c9476aa2077c2.jpg", - "response": "A side by side shot of two computer screens. Each screen has a webpage that says Vimeo and The Stereoscopic 3D Channel. There is a keyboard in front of both screens and paper with 3D glasses on it.", - "id": 32077 - }, - { - "image_path": "G:\\images\\combined\\005cb9e795fa91de.jpg", - "response": "A person is holding a cell phone in their right hand. The cell phone is an iPhone and is open to the home screen. On the home screen there are several apps open, including the app called \"WLKR LOFT\". The person are pressing on the app called \"FRONT DOOR\". The background of the image is blurred and there are two candles burning in the background.", - "id": 32078 - }, - { - "image_path": "G:\\images\\combined\\005cdc41f47be514.jpg", - "response": "A city street at night with a large lit up billboard on the side of a building.", - "id": 32079 - }, - { - "image_path": "G:\\images\\combined\\005cfe0addc5fc40.jpg", - "response": "A group of people standing under a tent.", - "id": 32080 - }, - { - "image_path": "G:\\images\\combined\\005d6523f6f0aa2f.jpg", - "response": "A person is holding a Nokia mobile phone in their left hand. The phone is black and silver in color and has a slide up keyboard. The person is holding the phone in a closed position. The phone has a screen that is not visible in the image. The person is also holding the phone with three fingers.", - "id": 32081 - }, - { - "image_path": "G:\\images\\combined\\005d71de0834bd7e.jpg", - "response": "A toddler sitting on the floor with a box of Little Tikes farm yard animal toys.", - "id": 32082 - }, - { - "image_path": "G:\\images\\combined\\005d84edc1ceb560.jpg", - "response": "A dog wearing a jersey and holding a baseball hat in its mouth.", - "id": 32083 - }, - { - "image_path": "G:\\images\\combined\\005dcb144a2374c9.jpg", - "response": "A camera lens with a black cover on a white sheet.", - "id": 32084 - }, - { - "image_path": "G:\\images\\combined\\005e0e8e16d795b4.jpg", - "response": "a person holding a cell phone with a variety of apps on the screen.", - "id": 32085 - }, - { - "image_path": "G:\\images\\combined\\005ec5c4b32ca609.jpg", - "response": "A sign over a highway points to various destinations including Altrincham, Trafford Park, and Whalley Range.", - "id": 32086 - }, - { - "image_path": "G:\\images\\combined\\005ee32ead922002.jpg", - "response": "A model airplane is painted in red, white, and blue.", - "id": 32087 - }, - { - "image_path": "G:\\images\\combined\\005eedab56bc6981.jpg", - "response": "A large metal filing cabinet sitting on a wooden deck.", - "id": 32088 - }, - { - "image_path": "G:\\images\\combined\\005f1823c01ab91e.jpg", - "response": "A bottle of All Creatures Yorkshire Pale Ale from Black Sheep Brewery.", - "id": 32089 - }, - { - "image_path": "G:\\images\\combined\\005f5c5572d3f0cc.jpg", - "response": "A wooden table with a bunch of items on it.", - "id": 32090 - }, - { - "image_path": "G:\\images\\combined\\006000_jpg.rf.cd02765969e956a8fde64006c99fc692.jpg", - "response": "The workers are using drills to fix the tunnel.", - "id": 32091 - }, - { - "image_path": "G:\\images\\combined\\006001_jpg.rf.fd71379fa2fe5d44b0658ec8731cf34a.jpg", - "response": "A couple of men working on a red machine.", - "id": 32092 - }, - { - "image_path": "G:\\images\\combined\\006002_jpg.rf.5f34d1cfb6507ee78d505955688b8ad2.jpg", - "response": "The image shows two workers in a white room with hard hats and reflective clothing. They are in the process of changing a valve on a large machine. The valve is located on the left side of the machine and is in the process of being turned off. The workers are standing on a platform in order to reach the valve. The room has pipes and other machinery on the walls.", - "id": 32093 - }, - { - "image_path": "G:\\images\\combined\\006003_jpg.rf.227708c457d9c3b524fb07f72b4547ba.jpg", - "response": "a group of people standing around each other", - "id": 32094 - }, - { - "image_path": "G:\\images\\combined\\006004_jpg.rf.f1b74f86fa57b4fa8d4b7e5c88c3a045.jpg", - "response": "A group of people standing around each other.", - "id": 32095 - }, - { - "image_path": "G:\\images\\combined\\006005_jpg.rf.8c53ef06855925aa6c27f3612669379b.jpg", - "response": "A construction worker is working on site with a red drill.", - "id": 32096 - }, - { - "image_path": "G:\\images\\combined\\006006_jpg.rf.788fe0bcf070d2bd8826e621e508b06e.jpg", - "response": "A couple of workers wearing blue helmets are looking at a large metal object.", - "id": 32097 - }, - { - "image_path": "G:\\images\\combined\\006007_jpg.rf.40fb75882fbb29df8352f4f67b7c546a.jpg", - "response": "A group of men working on a power line in a residential area.", - "id": 32098 - }, - { - "image_path": "G:\\images\\combined\\006008_jpg.rf.f63f78c4a617557f4bcd1bb67ce56cf0.jpg", - "response": "The image shows a middle aged man wearing a white hardhat and blue coveralls standing in front of a large yellow crane that is digging in a field. The sky is blue with clouds.", - "id": 32099 - }, - { - "image_path": "G:\\images\\combined\\006009_jpg.rf.e8f9c83c06ec54ee883bee14603872fc.jpg", - "response": "A worker with his face painted like a clown is standing in a bridge.", - "id": 32100 - }, - { - "image_path": "G:\\images\\combined\\00600_jpg.rf.d3b026bb4c92549f2f52ee20ebd44e59.jpg", - "response": "The image shows a group of seven men standing on a construction site. They are all wearing hard hats, with some of them also wearing suits. The men are standing in a semi-circle, with two of them on the left side and three on the right side, and the remaining two on the left and center of the right side. They are all looking in the same direction, towards the left side of the image. In the background, there is a large building under construction with a blue and green construction fence in front of it. There are also two cranes operating in the distance.", - "id": 32101 - }, - { - "image_path": "G:\\images\\combined\\00600_jpg.rf.dba5174493ae055f1ae0223e63b11a01.jpg", - "response": "A group of men standing around each other.", - "id": 32102 - }, - { - "image_path": "G:\\images\\combined\\006010_jpg.rf.986788c45e6fa82863c4479a5af0afb9.jpg", - "response": "In the image, a worker is smiling while working on a large metal structure. The worker is wearing a yellow hard hat, a white shirt, and yellow work gloves. They are kneeling on the ground and appear to be working on the metal structure, which is a large, silver, metal pipe. The worker is the main focus of the image, and they appear to be the only person in the scene. The background is blurry, with a blue ceiling in the foreground and a white wall in the background. There are also several other metal structures in the background.", - "id": 32103 - }, - { - "image_path": "G:\\images\\combined\\006012_jpg.rf.eb875ec54f92cd4364cc18e3a2a6028e.jpg", - "response": "The image shows two workers at a construction site. They are wearing yellow hard hats and are working on a building. The building has a steel reinforcement cage on the side of it. There are several wooden planks leaning against the building, and a couple of them are in the foreground of the image. The workers are standing on the ground, and one of them is walking towards the left side of the image.", - "id": 32104 - }, - { - "image_path": "G:\\images\\combined\\006013_jpg.rf.11b17fa66323fb77ccf8afa93f7527ab.jpg", - "response": "A group of men in hard hats stand in front of a pile of rubble and a yellow back hoe.", - "id": 32105 - }, - { - "image_path": "G:\\images\\combined\\006014_jpg.rf.ab7ffc3141b8fa5395f67865b7f7ad16.jpg", - "response": "A man in a red hard hat hammers a large stone.", - "id": 32106 - }, - { - "image_path": "G:\\images\\combined\\006015_jpg.rf.7bb66bcb3d77605e1a6e8217e1e1fb3e.jpg", - "response": "A worker in a red hat is working on an electrical tower.", - "id": 32107 - }, - { - "image_path": "G:\\images\\combined\\006016_jpg.rf.b20e736512bd777032eea23346a8a130.jpg", - "response": "A man in a blue jacket and yellow hard hat is digging a hole in the ground with a shovel. He is wearing a red shirt and blue pants. The ground around him is a mix of brown dirt and green grass. There is a person's foot visible in the bottom right corner of the image.", - "id": 32108 - }, - { - "image_path": "G:\\images\\combined\\006017_jpg.rf.a2ac874185ffefab6fa211eb08c239a6.jpg", - "response": "A construction worker in a grey shirt and blue hat is using a tool to work on a large pole.", - "id": 32109 - }, - { - "image_path": "G:\\images\\combined\\006018_jpg.rf.262dbe728df851dcd870ebd337f1f7bd.jpg", - "response": "Four construction workers are working on a building site. They are all wearing hard hats and are working on a structure that is made up of steel rods and concrete. They are standing on a ledge and appear to be working on the bottom half of a large building.", - "id": 32110 - }, - { - "image_path": "G:\\images\\combined\\006019_jpg.rf.077296493d36e989bd0e39a7b3405d98.jpg", - "response": "A man is driving a small vehicle in a dark tunnel.", - "id": 32111 - }, - { - "image_path": "G:\\images\\combined\\00601_jpg.rf.ae9621c2f8c2fd2afb934509298ab5b3.jpg", - "response": "The image shows a group of seven people standing in a construction area. They are all wearing red hard hats, with one person on the left and another on the right. In the center, there is a woman holding a piece of paper and talking to a man in a black jacket. The man is also wearing a red hard hat. The woman is wearing a white jacket and a pink scarf. The other four people are wearing similar clothing, with red hard hats and black jackets. The background is a red wall and a drain in the ground.", - "id": 32112 - }, - { - "image_path": "G:\\images\\combined\\00601_jpg.rf.fe095aaf68af054060d4e28cea4bb06b.jpg", - "response": "A group of people in hard hats stand in a circle. They are all dressed in winter clothing. One person is holding a blue folder.", - "id": 32113 - }, - { - "image_path": "G:\\images\\combined\\006020_jpg.rf.73e082b69709cc785d24e62ed8138404.jpg", - "response": "Two workers in a warehouse, one holding a clipboard and the other pointing at it.", - "id": 32114 - }, - { - "image_path": "G:\\images\\combined\\006021_jpg.rf.bd0a4ab99723baa23d8776b2ecbfa254.jpg", - "response": "A group of people stand on a balcony wearing hard hats.", - "id": 32115 - }, - { - "image_path": "G:\\images\\combined\\006022_jpg.rf.18d557e2f95c8042458c72158f5901ee.jpg", - "response": "A group of men walking in front of a building under construction. They are all wearing hard hats.", - "id": 32116 - }, - { - "image_path": "G:\\images\\combined\\006023_jpg.rf.57696548fe9698567eeda4c33ac4d843.jpg", - "response": "A picture of three men in hard hats, with the middle man wearing a blue shirt and the two others wearing white shirts. They are standing in front of a building site.", - "id": 32117 - }, - { - "image_path": "G:\\images\\combined\\006026_jpg.rf.e5c724f1de14669d19a86c24a7ad4b7e.jpg", - "response": "A group of people posing for a photo in front of a stage.", - "id": 32118 - }, - { - "image_path": "G:\\images\\combined\\006027_jpg.rf.e547130bf3d91816c349eb966164dd8d.jpg", - "response": "A group of men working on a construction site.", - "id": 32119 - }, - { - "image_path": "G:\\images\\combined\\006028_jpg.rf.e7e9b2da407414f7638f2ec3ebc226ab.jpg", - "response": "A man wearing a yellow hard hat and carrying a long object on his shoulder walks through a muddy construction site. The ground is mostly dirt and mud, and there are a few steel beams scattered around. In the background, there is a partially constructed building with metal framing.", - "id": 32120 - }, - { - "image_path": "G:\\images\\combined\\006029_jpg.rf.a14ef5d1bb66f2f9723c9a9431255b3f.jpg", - "response": "A worker is seen here making adjustments to the control box of a container.", - "id": 32121 - }, - { - "image_path": "G:\\images\\combined\\00602_jpg.rf.82deac27d36b12db2ba2d232282d5404.jpg", - "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", - "id": 32122 - }, - { - "image_path": "G:\\images\\combined\\00602_jpg.rf.abfcd2fb6cb309e69e5f1173ffc90ed4.jpg", - "response": "A group of people in orange vests and hard hats standing in front of a blue platform with Chinese characters on it.", - "id": 32123 - }, - { - "image_path": "G:\\images\\combined\\006030_jpg.rf.4114187d335cc531651d4ce427db6e44.jpg", - "response": "In the image two workers are fixing an transformer. The transformer is green and is located in the middle of the picture. The workers are wearing blue helmets and are standing on either side of the transformer. One worker is on the left and is holding a tool in his right hand. The other worker is on the right and is looking at the first worker. There are two red lines coming from the transformer, one on the left and one on the right. There is a red and white sign on the right side of the transformer. The background shows two buildings.", - "id": 32124 - }, - { - "image_path": "G:\\images\\combined\\006031_jpg.rf.ff2d600fabeed50ef56504f0db5f4c33.jpg", - "response": "A group of construction workers in yellow uniforms and hard hats are working on a construction site. They are carrying a large rock and a shovel.", - "id": 32125 - }, - { - "image_path": "G:\\images\\combined\\006032_jpg.rf.9e2cafb05fe9fa81e9ddbfee7cd996f2.jpg", - "response": "The image shows a group of workers on a construction site at night. They are gathered around a large metal pole, which has a white sign attached to it. The sign has black writing on it and is readable. The workers seem to be discussing something, as some of them are pointing at the sign. The background is quite dark, with some lights from the city in the distance.", - "id": 32126 - }, - { - "image_path": "G:\\images\\combined\\006033_jpg.rf.0b98d118f66f573f0d8baf58c481e6af.jpg", - "response": "In the image there is a man wearing a blue hard hat and tan clothes, climbing on a snowy telephone pole. He is standing on a ladder and appears to be fixing the power lines. The pole is covered in snow and ice, as are the branches around it.", - "id": 32127 - }, - { - "image_path": "G:\\images\\combined\\006034_jpg.rf.d6effcc9eb7505d8bf74a69a15342dbf.jpg", - "response": "A carpenter wearing a hard hat and work gloves is holding a level against a wooden beam. The man is building a house and is standing in front of a partially constructed wooden frame. The sky is blue and clear.", - "id": 32128 - }, - { - "image_path": "G:\\images\\combined\\006035_jpg.rf.cca5043fa34d538bbab9266f175132fe.jpg", - "response": "A construction worker is seen here moving steel rods(353,322),(563,570) at a construction site in the city of Shenyang, capital of northeastern China's Liaoning Province.", - "id": 32129 - }, - { - "image_path": "G:\\images\\combined\\006036_jpg.rf.560a86b59c4af9e24f006aa353576cfb.jpg", - "response": "In the image there is a man standing in an unfinished building. He is wearing a yellow hard hat, a white shirt, and black pants. He is also wearing black shoes. He has his hands crossed in front of him and is looking to the side. He has a clipboard attached to his shirt. The building has a lot of concrete pillars and the floor is wet in some places. There is also graffiti on the wall in the background.", - "id": 32130 - }, - { - "image_path": "G:\\images\\combined\\006037_jpg.rf.764f2056744e14884a7d0888fb5dc364.jpg", - "response": " People(547,198),(699,837)(417,233),(517,676)(278,183),(436,733)(482,146),(586,657)(70,156),(342,898) stand in a field of dirt and weeds", - "id": 32131 - }, - { - "image_path": "G:\\images\\combined\\006038_jpg.rf.954c6a65278bed980d6c34e705a42553.jpg", - "response": "a group of people standing around each other", - "id": 32132 - }, - { - "image_path": "G:\\images\\combined\\006039_jpg.rf.51424f7befbb497c168101c36daac760.jpg", - "response": "A woman wearing a yellow hard hat and sunglasses is sitting in the driver seat of a truck. She is smiling and has her arm on the door frame.", - "id": 32133 - }, - { - "image_path": "G:\\images\\combined\\00603_jpg.rf.ecd4ecb0fb88052abed49b41b583e615.jpg", - "response": "A group of people stand in a unfinished room. They are all wearing hard hats. In the front of the group a man points to something on the left. To the right of the man is a woman and a child. Behind the woman is a man in a black shirt and red hat. Behind the man in the red hat is another man in a black shirt. Behind the man in the red hat is a woman in a black shirt. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man in a black shirt and blue shorts. Behind the man in the black shirt is a woman in a black shirt and blue shorts. Behind the woman is a man", - "id": 32134 - }, - { - "image_path": "G:\\images\\combined\\00603_jpg.rf.ff079f1c34072ffc31d780665eecdc0e.jpg", - "response": "A man wearing a white hard hat points to something in the distance while a group of people wearing hard hats stand around him.", - "id": 32135 - }, - { - "image_path": "G:\\images\\combined\\006040_jpg.rf.7d37eb04353914a7bede5418520bde68.jpg", - "response": "A man in a hard hat is kneeling down next to a gurney. There is a person on the gurney who is being attended to by paramedics. There is a crowd of people standing around the gurney and the man in the hard hat. There is a fire truck in the background.", - "id": 32136 - }, - { - "image_path": "G:\\images\\combined\\006041_jpg.rf.a6bbeea1033f6fe7b0b7fd2bdf4d683b.jpg", - "response": "A construction site with two workers in orange vests and hard hats. They are standing on a platform with a blue sky and clouds in the background. There is a crane lifting a large piece of steel above the platform.", - "id": 32137 - }, - { - "image_path": "G:\\images\\combined\\006042_jpg.rf.c682683a59a07af32ac5d3ca99099148.jpg", - "response": "a group of men standing around a blueprint in a field", - "id": 32138 - }, - { - "image_path": "G:\\images\\combined\\006043_jpg.rf.69779df0ccb9c47da242cd8cadd4dc8f.jpg", - "response": "In the image two men are using a theodolite to survey a site. The theodolite is a transit level and total station device used for measuring distances, angles and elevations. The men are standing in front of a tall brown earthen embankment that is part of a construction site. The sky is blue with some clouds.", - "id": 32139 - }, - { - "image_path": "G:\\images\\combined\\006044_jpg.rf.9ef65577698481ab2e03c798fa4c8906.jpg", - "response": "A group of people are sitting on a step.", - "id": 32140 - }, - { - "image_path": "G:\\images\\combined\\006045_jpg.rf.effc8fbd349fee0a99b5d110e2b1d272.jpg", - "response": "A worker is working on the wall.", - "id": 32141 - }, - { - "image_path": "G:\\images\\combined\\006047_jpg.rf.9244fe30951c95e152cb1fb08f75c311.jpg", - "response": "Firefighters and paramedics work to free a man who was trapped in a stairwell after a fire broke out at a home in the 100 block of 82nd Avenue in Northglenn on Tuesday, July 26, 2016. The fire was reported at 12:45 a.m. and was quickly extinguished. The man was taken to a local hospital with non-life-threatening injuries. (Kathleen Black/KUSA)", - "id": 32142 - }, - { - "image_path": "G:\\images\\combined\\006048_jpg.rf.63775497e2922cc98918f92ba75504ef.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 32143 - }, - { - "image_path": "G:\\images\\combined\\006049_jpg.rf.63d7f7d66987744f9693855cce5b851c.jpg", - "response": "In the image, multiple workers are seen working on a stretch of railroad tracks. They are using various tools like hammers and crowbars to work on the tracks. Some of the workers are wearing yellow hard hats and safety glasses. The tools they are using are also visible in the image.", - "id": 32144 - }, - { - "image_path": "G:\\images\\combined\\006050_jpg.rf.9b02f05f43b478baa946660a8e24d2b1.jpg", - "response": "a group of men walking down a street", - "id": 32145 - }, - { - "image_path": "G:\\images\\combined\\006051_jpg.rf.ae41556ef935cb7d9d91d656ffa4e983.jpg", - "response": "A group of people walking down a street some are wearing hard hats.", - "id": 32146 - }, - { - "image_path": "G:\\images\\combined\\006052_jpg.rf.3790f01ef98faf102f4919ee3873666f.jpg", - "response": "A group of construction workers(595,243),(995,996)(112,376),(636,997) in orange vests(113,649),(402,997)(656,563),(995,997) and yellow helmets(246,361),(423,583)(1,930),(78,1000) are working on a construction site.", - "id": 32147 - }, - { - "image_path": "G:\\images\\combined\\006053_jpg.rf.e2b3dfbf6c3161efb000d0714bdd2040.jpg", - "response": "A group of men standing in a unfinished building.", - "id": 32148 - }, - { - "image_path": "G:\\images\\combined\\006054_jpg.rf.b7b3c798ed1c456e0acafc117cf0531d.jpg", - "response": "a group of people standing in front of a car", - "id": 32149 - }, - { - "image_path": "G:\\images\\combined\\006055_jpg.rf.05ed585172a0618a468e806cda733d7b.jpg", - "response": "A man in a yellow hard hat and yellow safety vest is smiling and holding a thumbs up. He is standing in front of a large truck.", - "id": 32150 - }, - { - "image_path": "G:\\images\\combined\\006056_jpg.rf.12a92d130813b3a820d227a7f36d65e7.jpg", - "response": "a group of men standing in front of a large hill", - "id": 32151 - }, - { - "image_path": "G:\\images\\combined\\006057_jpg.rf.98bc42315e79491db36285dad55da656.jpg", - "response": "A group of people working on a construction site.", - "id": 32152 - }, - { - "image_path": "G:\\images\\combined\\006058_jpg.rf.031bfadb2eaa1d7f86006449f5134fb7.jpg", - "response": "The image shows a group of people walking in a line across a construction site. They are all wearing red hard hats, and some are also wearing suits. In the background, there are a few buildings, including one that has been partially constructed. There is also a pile of bricks on the right side of the image. A banner with Chinese writing can be seen above the group, and the writing is in blue. The people in the front are wearing ties.", - "id": 32153 - }, - { - "image_path": "G:\\images\\combined\\00605_jpg.rf.2544fce159f6f9578f8fb3a31beb7d76.jpg", - "response": "A construction site with three men in red hard hats standing in front of a blue wall. One of the men is holding a grey oxygen tank.", - "id": 32154 - }, - { - "image_path": "G:\\images\\combined\\006060_jpg.rf.2a7cfbfc57a01bed4543c274c29fa165.jpg", - "response": "A group of people working on a building site.", - "id": 32155 - }, - { - "image_path": "G:\\images\\combined\\006061_jpg.rf.28eb584f90b57fa1e8d3dee77ec31a9a.jpg", - "response": "a group of people walking", - "id": 32156 - }, - { - "image_path": "G:\\images\\combined\\006062_jpg.rf.eaeec3defd18f8350074ad7c8608474c.jpg", - "response": "A group of men sitting around a table.", - "id": 32157 - }, - { - "image_path": "G:\\images\\combined\\006063_jpg.rf.f63b9aa133b804c4ec1c1b1d8bd3b961.jpg", - "response": "The image shows three men in blue work clothes standing in a green forest. They are holding equipment and appear to be conducting an inspection or test.", - "id": 32158 - }, - { - "image_path": "G:\\images\\combined\\006065_jpg.rf.951e94e3e4da9505a081c80cbbfa3df5.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 32159 - }, - { - "image_path": "G:\\images\\combined\\006066_jpg.rf.14565f096e07e57f823bac5190bdadc8.jpg", - "response": "A woman in a hard hat and safety vest stands on a platform with metal railings, looking out over a city.", - "id": 32160 - }, - { - "image_path": "G:\\images\\combined\\006067_jpg.rf.41e592d5713fde18a777435f71e03b50.jpg", - "response": "A person in a blue jacket and yellow hard hat is leaning over a piece of metal railing. They are wearing a yellow hard hat and glasses. There is a person in a white and blue striped shirt and jeans standing on a red and white platform. There is a person in a white shirt and jeans standing on a green and white platform. There is a green and white platform behind them. There is a truck in the background.", - "id": 32161 - }, - { - "image_path": "G:\\images\\combined\\006068_jpg.rf.28611cbed5853be6474d0d8650b03f7c.jpg", - "response": "The picture shows two workers in a tunnel. They are both dressed in black uniforms and are wearing white hard hats. One worker is on the left and the other is on the right. The worker on the right is holding a cigarette and has a flashlight on his helmet. The light is shining on the left worker who is working with a tool in his hand. The left worker is blowing steam from his tool.", - "id": 32162 - }, - { - "image_path": "G:\\images\\combined\\006069_jpg.rf.6d3c91679d842ab85896221a5813dcbf.jpg", - "response": "The image shows two construction workers on a building site. They are wearing yellow hard hats and are working on the roof of a building. One of the workers is drinking water from a bottle. The sky is blue with some clouds.", - "id": 32163 - }, - { - "image_path": "G:\\images\\combined\\00606_jpg.rf.38e46e81d726bebe87ff3319fdcf83f4.jpg", - "response": "The image shows two workers wearing red helmets and carrying tools while working on a high-rise building. They are standing on the ledges of the building, one on the left and the other on the right. They are both holding onto ropes with red carabiners. The left worker is wearing a blue shirt, beige trousers, and white shoes. The right worker is wearing a blue shirt, dark blue trousers, and yellow shoes. The sky above them is yellow.", - "id": 32164 - }, - { - "image_path": "G:\\images\\combined\\00606_jpg.rf.baa5766cc2eb8768e09710691d815594.jpg", - "response": "The image shows two workers wearing red helmets and work clothes while hanging from ropes. They are in the process of cleaning windows on a tall building. One worker is on the left and the other is on the right. They are both holding ropes and tools. The left worker has a red helmet and is wearing a white shirt, dark blue pants, and white shoes. The right worker has a red helmet and is wearing a yellow shirt, dark blue pants, and brown shoes. The ropes they are hanging from are gray. The building they are working on is gray and has several floors. The sky above the building is yellow.", - "id": 32165 - }, - { - "image_path": "G:\\images\\combined\\006071_jpg.rf.1e70d5671f8b90cc8a30775ab2bae4f6.jpg", - "response": "A construction worker in an orange jacket and red hard hat stands in front of a large crane. The crane is lifting a large piece of metal and is in the process of building a large concrete structure. The sky is blue and there are no clouds in sight.", - "id": 32166 - }, - { - "image_path": "G:\\images\\combined\\006072_jpg.rf.149eab0d8d81ea72530fe7729ea675b9.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a large construction site. They are crouched down and wearing a yellow hard hat, blue jeans, and a grey shirt. The worker is working on a large grid of rebar, which is supported by a large concrete structure. The rebar is laid out in a grid pattern and is made up of many thin, long steel bars.", - "id": 32167 - }, - { - "image_path": "G:\\images\\combined\\006073_jpg.rf.1bd06c4539f0bc9dbc7377ebecdba263.jpg", - "response": "The picture shows a group of people in total 12 persons gathered in front of a construction site. They are all wearing red helmets. In the middle of the group, there is a man holding a small book. To the far left, there is a car with a bicycle on the back. To the far right, there are two buildings in the background.", - "id": 32168 - }, - { - "image_path": "G:\\images\\combined\\006074_jpg.rf.d29fa82f728c112b068325d2c0205b3b.jpg", - "response": "A pair of workers dangle from power lines in a city in China.", - "id": 32169 - }, - { - "image_path": "G:\\images\\combined\\006075_jpg.rf.b75834d5433b887cf92fcea1ab2e520e.jpg", - "response": "A group of people stand in a snowy field.", - "id": 32170 - }, - { - "image_path": "G:\\images\\combined\\006076_jpg.rf.5b47e7e6ef0bd7a5bf51472aac1117b1.jpg", - "response": "a group of people standing around a construction site", - "id": 32171 - }, - { - "image_path": "G:\\images\\combined\\006077_jpg.rf.19e4ad8a52c1238d182f0db1ba397fc9.jpg", - "response": "A group of men standing in front of a sign.", - "id": 32172 - }, - { - "image_path": "G:\\images\\combined\\006078_jpg.rf.84238145fe397ae44df9468fc763a887.jpg", - "response": "A man wearing a yellow hard hat and work gloves, holding a hammer and working on a wall made of wooden beams.", - "id": 32173 - }, - { - "image_path": "G:\\images\\combined\\006079_jpg.rf.44754316124767d3406362438d0ffb0d.jpg", - "response": "a group of people standing on a soccer field", - "id": 32174 - }, - { - "image_path": "G:\\images\\combined\\006080_jpg.rf.0a89cf6dda60d2ee2ef51c7de95f6ce6.jpg", - "response": " A worker(506,176),(602,436) repairs a power line in the aftermath of Super Typhoon Mangkhut in Tuguegarao city, Cagayan province, Philippines, September 17, 2018.", - "id": 32175 - }, - { - "image_path": "G:\\images\\combined\\006081_jpg.rf.db4e17219e65b92f5c8e7be4fefe01e4.jpg", - "response": "In the image two workers are seen wearing yellow helmets and working. In one tent which is seen in the image, one worker is holding a yellow container and another worker is coming out of the tent. In the other tent, one worker is holding a rope and the other worker is holding a machine. Both the tents are seen in a mountain area.", - "id": 32176 - }, - { - "image_path": "G:\\images\\combined\\006083_jpg.rf.f12a590cfb98d9769adde10ba303abe1.jpg", - "response": "5 men standing in front of a building site holding a flag with Chinese writing on it", - "id": 32177 - }, - { - "image_path": "G:\\images\\combined\\006084_jpg.rf.68c4745d5ebe0c776f03483f61a57e34.jpg", - "response": "In the image two workers are seen fixing the pillars of a building. The man on the left is wearing red helmet and has a beard. The man on the right is wearing yellow helmet and has a beard also. Both the workers are wearing blue color shirt. The man on the right is also wearing yellow color helmet. The wall of the building can be seen in the background which is under construction. The building has green color metal fencing. The floor of the building can be seen in the foreground.", - "id": 32178 - }, - { - "image_path": "G:\\images\\combined\\006085_jpg.rf.503e9049dba91396458785114bdbd8be.jpg", - "response": "A group of workers are working on a brick wall.", - "id": 32179 - }, - { - "image_path": "G:\\images\\combined\\006086_jpg.rf.1c84a846e6e18e21f7f37616eba08088.jpg", - "response": "A group of men in suits and hard hats stand on a construction site. One man points to a building in the distance.", - "id": 32180 - }, - { - "image_path": "G:\\images\\combined\\006087_jpg.rf.f65b14611f6212f81f812d9102cb8769.jpg", - "response": "In the image there is a person wearing a blue shirt and a yellow hard hat. They are holding a large metal bolt and are putting it into a metal square. The sky is blue and there are power lines in the background.", - "id": 32181 - }, - { - "image_path": "G:\\images\\combined\\006088_jpg.rf.e01708b4c81d4fd6c2b4eae5024c0e38.jpg", - "response": "The image shows two men standing in front of a building under construction. The man on the left is wearing a red cap and a green jacket. The man on the right is wearing a yellow shirt and a gray helmet. They are both holding yellow books and talking. The background is a white wall and a piece of yellow scaffolding.", - "id": 32182 - }, - { - "image_path": "G:\\images\\combined\\006089_jpg.rf.24141e34e66fd8de158d234032d7bbb5.jpg", - "response": "The image shows two construction workers wearing blue hard hats and reflective vests, with one of them holding a red tool. They are standing on a construction site with a building under construction in the background. The sky is blue and clear.", - "id": 32183 - }, - { - "image_path": "G:\\images\\combined\\00608_jpg.rf.62920c57775c1ce0e17bbb67babbc20b.jpg", - "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", - "id": 32184 - }, - { - "image_path": "G:\\images\\combined\\00608_jpg.rf.b9d87d952952b865e2dc517e10885a1a.jpg", - "response": "A man in a yellow hard hat is holding a set of plans and talking to a woman in a blue shirt. They are both standing in front of a building under construction. There is a yellow scaffolding in the background and a blue sky with clouds above them.", - "id": 32185 - }, - { - "image_path": "G:\\images\\combined\\006090_jpg.rf.a1d3c460d2ce02bc560b5183566e912c.jpg", - "response": " Workers(232,124),(452,797)(168,364),(306,720)(92,355),(202,756) in a tunnel.", - "id": 32186 - }, - { - "image_path": "G:\\images\\combined\\006091_jpg.rf.4a6486801218b66b6a12d807d7172ab1.jpg", - "response": "A group of people sitting around a table.", - "id": 32187 - }, - { - "image_path": "G:\\images\\combined\\006094_jpg.rf.c285788258a24ddc558d148deee3ca63.jpg", - "response": "A man in a hard hat looking up at a very tall industrial plant.", - "id": 32188 - }, - { - "image_path": "G:\\images\\combined\\006095_jpg.rf.a8dd7f011441ffb26d7a807fb6363084.jpg", - "response": "The image shows a large tunnel that is unfinished on the left side and is lined with white concrete on the right side. The tunnel has a white ceiling and white floor. The floor is covered with dark grey train tracks that go into the distance. There are two workers in the tunnel, one is in the middle of the left side and the other is on the right side of the image. They are both dressed in red and white safety gear.", - "id": 32189 - }, - { - "image_path": "G:\\images\\combined\\006096_jpg.rf.0594cc16a14178516095e5476875bc71.jpg", - "response": "A group of workers in hard hats and safety vests are standing on a bridge. They are holding and moving a large metal beam.", - "id": 32190 - }, - { - "image_path": "G:\\images\\combined\\006098_jpg.rf.68524e1d268593bf3e2bf8eba9854633.jpg", - "response": "The image shows three men dressed in orange work clothes and blue helmets sitting on a yellow and black machine. They are all looking at a small black box the man on the left is holding. The street is blocked off with orange and white barriers and there are many people in the background, some standing and some sitting on chairs. There is a crowd of people on the right hand side of the image and another smaller crowd further in the background. In the very background, there are red lanterns hanging.", - "id": 32191 - }, - { - "image_path": "G:\\images\\combined\\006099_jpg.rf.8f6be92a92955f7416d7a834327a2668.jpg", - "response": "A group of four men standing and looking at a blueprint.", - "id": 32192 - }, - { - "image_path": "G:\\images\\combined\\00609_jpg.rf.a8d9fd38b7c5646c00ff7fdc22b83efd.jpg", - "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a tablet and is wearing a black safety jacket with the hood on. The man second from the left is wearing a blue hard hat and is holding a walkie talkie. The man in the middle is wearing a white hard hat and a yellow safety jacket, he is also holding a walkie talkie. The woman on the far right is wearing a yellow safety jacket and a white hard hat, she is holding a rolled up piece of paper. On the table to the right of the group, there are several cups and a laptop.", - "id": 32193 - }, - { - "image_path": "G:\\images\\combined\\00609_jpg.rf.fc7ba35a54bbb72e41981b0979205de6.jpg", - "response": "A group of four men dressed in yellow safety jackets and white hard hats are having a discussion in a building site. The man on the far left is holding a walkie talkie and the man second from the left is scratching his head. The man in the middle is holding a blueprint. The woman on the right is wearing a yellow hard hat and holding the blueprint. There are two rooms in the background, one is almost finished and the other one is still under construction.", - "id": 32194 - }, - { - "image_path": "G:\\images\\combined\\0060bd3d509fba0f.jpg", - "response": "A sign for The House off Licenced is on the side of a building.", - "id": 32195 - }, - { - "image_path": "G:\\images\\combined\\006100_jpg.rf.8e14167538e51b6c5f1f5688d60a2a96.jpg", - "response": "a group of people in front of a building", - "id": 32196 - }, - { - "image_path": "G:\\images\\combined\\006101_jpg.rf.8797de2d4e19932f9c5eae5376aa1e68.jpg", - "response": "The image shows two workers in a room filled with industrial equipment. They are standing near a large pipe and a black valve. The pipe is on the left side of the image, and the valve is on the right side. Both workers are wearing red hard hats. One of the workers is holding a flashlight and is looking into the pipe. The other worker is standing behind them, and there is a chair in the room. The room also contains several other pipes and valves, some of which are connected to the large pipe and valve. The walls of the room are made of red brick, and there is a window in the background.", - "id": 32197 - }, - { - "image_path": "G:\\images\\combined\\006103_jpg.rf.c87eef4f53b2c2414d631f5da92b9eb7.jpg", - "response": "A group of men in blue uniforms and red hard hats are working on a ladder on a power line.", - "id": 32198 - }, - { - "image_path": "G:\\images\\combined\\006104_jpg.rf.1db0fb41129d0f6da1bd674fd93310b9.jpg", - "response": "The image shows two men standing on a construction site. They are wearing hard hats and one of them is holding a rolled-up blueprint. In the background, there are other people and a few vehicles, including a bulldozer and a car. The site is marked with a sign that says \"lot for sale.\"", - "id": 32199 - }, - { - "image_path": "G:\\images\\combined\\006105_jpg.rf.5b7b116e0c7eeba3b4c883abaf32fc04.jpg", - "response": "A couple of men in orange work clothes and yellow hard hats are working on a piece of machinery.", - "id": 32200 - }, - { - "image_path": "G:\\images\\combined\\006106_jpg.rf.2aca2de9a50c6db3d91c0d02703ac45b.jpg", - "response": "A worker in a yellow hard hat is working on a large pipe.", - "id": 32201 - }, - { - "image_path": "G:\\images\\combined\\006107_jpg.rf.7a7959bf2499962f2e20d58ac44ce2cd.jpg", - "response": "The image shows a group of four men standing in an unfinished room. They are all wearing hard hats. One man is pointing to the right, presumably showing something of interest. The man on the far left is holding a cell phone. The man second from the left is wearing a black suit and a white helmet. The man on the right is wearing a red helmet. The walls of the room are made of concrete blocks and the floor is bare.", - "id": 32202 - }, - { - "image_path": "G:\\images\\combined\\006108_jpg.rf.34052cb5c25d4de6cdbfdefcaf8bae96.jpg", - "response": "A construction worker using a machine to cut through a concrete wall.", - "id": 32203 - }, - { - "image_path": "G:\\images\\combined\\006110_jpg.rf.a812eae3c179d43d1eff20c719cdbb04.jpg", - "response": "A group of men standing around a building site wearing hard hats.", - "id": 32204 - }, - { - "image_path": "G:\\images\\combined\\006111_jpg.rf.3475659e93ff77746ff04a16b4740994.jpg", - "response": "A group of people standing in a room with two men looking at a computer screen.", - "id": 32205 - }, - { - "image_path": "G:\\images\\combined\\006113_jpg.rf.ed92f4239bcf6dfa87e110637a5c0ceb.jpg", - "response": "The image shows a group of workers in blue jumpsuits and yellow hard hats at a construction site. They are gathered around a large piece of equipment, which appears to be a large piece of electrical equipment. The workers are standing in front of a tall structure with power lines above them. One of the workers is holding a large tool and pointing towards something. The text at the top of the image reads \"People.com\" and \"Anhui\" and the bottom text reads \"\u4eba\u6c11\u7db2 \u5b89\u5fbd\u9891\u9053\".", - "id": 32206 - }, - { - "image_path": "G:\\images\\combined\\006114_jpg.rf.5f26a1e0a1e7bf7d308ceec91f904198.jpg", - "response": "In the image there is a group of men working in a factory. They are wearing hard hats and are working with metal. There are several metal beams and bars in the factory. Some of the metal is cut and ready to be put to use. There is also a truck visible in the background.", - "id": 32207 - }, - { - "image_path": "G:\\images\\combined\\006115_jpg.rf.5121fc4d7e368062e24b16e239a6d695.jpg", - "response": "A group of workers are working on a large pipeline.", - "id": 32208 - }, - { - "image_path": "G:\\images\\combined\\006116_jpg.rf.3b0a93ff015b8e90f96f799dfcee0cec.jpg", - "response": "In the image there are two people wearing blue work clothes and safety harnesses. They are working on an electrical box. One person is climbing a ladder and the other person is working on the electrical box. They are both wearing white gloves to be able to work safely.", - "id": 32209 - }, - { - "image_path": "G:\\images\\combined\\006117_jpg.rf.576f73fbddf3bfdc4e06788d42e289e5.jpg", - "response": " Workers(372,322),(557,916)(746,294),(988,997)(612,359),(672,598)(509,367),(585,680) in a tunnel, working on the construction of the railway tunnel.", - "id": 32210 - }, - { - "image_path": "G:\\images\\combined\\006118_jpg.rf.24a7ca8df1f49d47d83a89f07a78a2d0.jpg", - "response": "A man sitting on the ground in front of a pile of metal rods.", - "id": 32211 - }, - { - "image_path": "G:\\images\\combined\\006120_jpg.rf.e199e14c7b55a849b331c0c3dc4817dc.jpg", - "response": "A worker in a yellow hard hat is operating a piece of equipment.", - "id": 32212 - }, - { - "image_path": "G:\\images\\combined\\006121_jpg.rf.291bc736a335c2baead37c7f0c8574ac.jpg", - "response": "A group of men standing in front of a pile of rubble.", - "id": 32213 - }, - { - "image_path": "G:\\images\\combined\\006122_jpg.rf.b0c5a942a23ec461be1f113b400d6d84.jpg", - "response": "In the image two technicians are working on a roof. They are wearing orange work uniforms and yellow hard hats. They are standing on a roof and working on a piece of equipment.", - "id": 32214 - }, - { - "image_path": "G:\\images\\combined\\006123_jpg.rf.2183e9055eb8d44a733214c16e9b5c1e.jpg", - "response": "A man in a hard hat and orange safety jacket is working on a construction site. He is standing on a ladder, working on a concrete wall. There are yellow pipes running along the side of the wall. In the background, there are more buildings and a sky with clouds.", - "id": 32215 - }, - { - "image_path": "G:\\images\\combined\\006124_jpg.rf.84d67cbbdf32583278a301932c694261.jpg", - "response": "A man and woman wearing blue hard hats are standing in front of a building under construction. The man is wearing a blue shirt and has a tie. The woman is wearing a yellow vest. They are both holding cigarettes.", - "id": 32216 - }, - { - "image_path": "G:\\images\\combined\\006125_jpg.rf.ce11c146e4766360f97b0054f61afa56.jpg", - "response": "A man in a blue shirt and orange hard hat is working on a piece of machinery. He is wearing glasses and has a orange hard hat with a yellow sticker on it. He is also wearing a black glove on his left hand. He is looking at the camera while working on the machinery.", - "id": 32217 - }, - { - "image_path": "G:\\images\\combined\\006126_jpg.rf.b84e67e82b3b33f8194203b0009622bc.jpg", - "response": "An employee works on power lines covered with snow in Lhasa, capital of southwest China's Tibet Autonomous Region, Jan. 25, 2016. The heavy snowfall this week has affected electricity and telephone services in some areas of Tibet. However, the overall situation is under control and the power and telephone services have been gradually restored, the local authorities said. (Xinhua/Li Bin)", - "id": 32218 - }, - { - "image_path": "G:\\images\\combined\\006127_jpg.rf.5af12613b0a2a90184835ccf6a00dc44.jpg", - "response": "A group of people standing in front of a building under construction.", - "id": 32219 - }, - { - "image_path": "G:\\images\\combined\\006128_jpg.rf.5c7a4fd0c3c0f819b7aba94626754ae5.jpg", - "response": "An older Chinese man wearing a blue hat and a blue and red shirt smiles at the camera.", - "id": 32220 - }, - { - "image_path": "G:\\images\\combined\\006129_jpg.rf.219b274a8e0802c7c0350a0d3719145e.jpg", - "response": "In the image there is a construction site with two workers present. They are working on a building, possibly a hotel, and are in the process of laying bricks. The bricks are being laid on a wooden platform. There are also several other workers in the image, some of which are holding tools, while others are working on the building. The building is grey in color and the sky above it is white.", - "id": 32221 - }, - { - "image_path": "G:\\images\\combined\\00612_jpg.rf.175a0841ccb252e5cf869c814c6ac4a8.jpg", - "response": "A group of people working on a construction site, pouring concrete.", - "id": 32222 - }, - { - "image_path": "G:\\images\\combined\\00612_jpg.rf.a33554dbc7cd3e7832612770277d5930.jpg", - "response": "A group of people working on a construction site, pouring concrete.", - "id": 32223 - }, - { - "image_path": "G:\\images\\combined\\006130_jpg.rf.79a573a943f704029c6e693055c577fe.jpg", - "response": "The workers in the photo are dressed in green camouflage uniforms. In the background, there is a large sign that reads \"\u6709\u79cd\u660e\u4eae\u70ed\u529b \u7164\u6539\u6c14\" with a project launch ceremony held under it. The workers are carrying large copper buckets on their shoulders, which are connected to a large copper pipe.", - "id": 32224 - }, - { - "image_path": "G:\\images\\combined\\006131_jpg.rf.78274ad224e766a44c343a58d21c0412.jpg", - "response": "The scene of the accident in which a man was killed after a crane carrying a power transformer fell on a truck in Xingyi city, Guizhou province, Aug. 24, 2013. A crane carrying a power transformer fell on a truck in southwestern China's Guizhou province on Monday, killing a man and injuring three others, local media reported. The accident occurred in Xingyi city at around 11:30 a.m. (1:30 a.m. GMT), according to the official Weibo account of the local traffic police. The crane driver and two workers on the truck were injured, the report said, without saying where the accident happened.", - "id": 32225 - }, - { - "image_path": "G:\\images\\combined\\006132_jpg.rf.016d09a241af5f631aae842d09d94258.jpg", - "response": " People(657,196),(894,996)(862,277),(997,996)(307,271),(413,830)(514,307),(716,985)(123,273),(285,988)(55,293),(179,837) in hard hats and coats stand in a large, dark room with a concrete floor.", - "id": 32226 - }, - { - "image_path": "G:\\images\\combined\\006133_jpg.rf.f109773970d5c4033487e6d5a77e414e.jpg", - "response": "In the image two workers in orange safety jackets are handling steel wool on a construction site. They are standing behind a yellow container and in front of a ship with Chinese characters on it. The ship is carrying a large amount of steel wool on it's side.", - "id": 32227 - }, - { - "image_path": "G:\\images\\combined\\006134_jpg.rf.58174d4c72693b94375e38990bc4d6ec.jpg", - "response": "A man sitting down and another standing both wearing blue helmets and work clothes.", - "id": 32228 - }, - { - "image_path": "G:\\images\\combined\\006135_jpg.rf.3df08ce2be69190d5eeeeb7870854a20.jpg", - "response": "A city street with some trees and buildings on it. Some workers are on a cherry picker fixing a power line.", - "id": 32229 - }, - { - "image_path": "G:\\images\\combined\\006136_jpg.rf.b069bf552937476ac0d047366ccda4ea.jpg", - "response": "In the image two workers are seen repairing an electricity post. Both of them are wearing safety gear. One of them is wearing a yellow helmet and the other one is wearing a red helmet. Both of them are wearing white clothes. One of them is holding a tool in his right hand which he is using to repair the electricity post.", - "id": 32230 - }, - { - "image_path": "G:\\images\\combined\\006137_jpg.rf.8423f98c87ed3569ca3c56dd749ae9ff.jpg", - "response": "a man in an orange shirt and red hat is operating a piece of equipment", - "id": 32231 - }, - { - "image_path": "G:\\images\\combined\\006138_jpg.rf.e3092c2557a67d075c52f368b8e6732f.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 32232 - }, - { - "image_path": "G:\\images\\combined\\00613913be1b88d2.jpg", - "response": "The image shows a group of men wearing blue baseball uniforms with red and white caps. They are standing on a baseball field, and some of them are smiling. The men are standing close to each other, and some of them are shaking hands. One of the men is wearing a blue shirt and has a beard. Another man is wearing sunglasses and has a big smile on his face.", - "id": 32233 - }, - { - "image_path": "G:\\images\\combined\\006139_jpg.rf.cf58b6ba1cc0e0de20f60e56f94adcc1.jpg", - "response": "A group of men standing around each other", - "id": 32234 - }, - { - "image_path": "G:\\images\\combined\\006142_jpg.rf.bf5db353c153f4d0d8b8b99b00eb5279.jpg", - "response": "In the image there are two technicians working on a HVAC system. They are both dressed in blue work clothes and white helmets. The person on the left is leaning over a counter and looking at the pipe the person on the right is working on. There is a red pipe going across the image near the top. There is a white pipe going up the wall in the middle of the image and a black pipe going up the black in the upper right corner.", - "id": 32235 - }, - { - "image_path": "G:\\images\\combined\\006143_jpg.rf.17c9b41bcf57447c8e755a3f18453a00.jpg", - "response": "Men(510,223),(667,863)(649,105),(789,928)(727,62),(996,996) looking at a stadium(0,4),(997,999)", - "id": 32236 - }, - { - "image_path": "G:\\images\\combined\\006144_jpg.rf.7f4d654bbf0e1e68c7f0ebc38abc3463.jpg", - "response": "A group of people working on a ship docked at a port.", - "id": 32237 - }, - { - "image_path": "G:\\images\\combined\\006145_jpg.rf.b546365ee0f4fc0f5a456814847a5dd1.jpg", - "response": "A group of rescue workers in red jackets huddle around a silver pot in a snowy forest.", - "id": 32238 - }, - { - "image_path": "G:\\images\\combined\\006146_jpg.rf.e0a34ccf893dc0f1974407f57d5cb3f9.jpg", - "response": "An engineer in a white helmet and green vest points to a pipe in a white corridor.", - "id": 32239 - }, - { - "image_path": "G:\\images\\combined\\006147_jpg.rf.776dc9315508da30e524cd3cd0eb1584.jpg", - "response": "A man is using a machine to level concrete.", - "id": 32240 - }, - { - "image_path": "G:\\images\\combined\\006148_jpg.rf.a4521472c79be0b5e3ee0d4a55bc0d4b.jpg", - "response": "A group of men sitting around a table.", - "id": 32241 - }, - { - "image_path": "G:\\images\\combined\\00614_jpg.rf.50c987a424d84264c9412d23a90f0fc6.jpg", - "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", - "id": 32242 - }, - { - "image_path": "G:\\images\\combined\\00614_jpg.rf.85a31443e5160ea9685a27c8049cc41b.jpg", - "response": "A man in a suit and red hard hat standing in front of a yellow construction vehicle.", - "id": 32243 - }, - { - "image_path": "G:\\images\\combined\\006150_jpg.rf.6e6e35855aab73f13a302719bd5da8d1.jpg", - "response": "A group of people walking through a construction site.", - "id": 32244 - }, - { - "image_path": "G:\\images\\combined\\006151_jpg.rf.740b7dd0c79aef8b1a0d5a2d446b279a.jpg", - "response": "A group of men in blue uniforms working on power lines.", - "id": 32245 - }, - { - "image_path": "G:\\images\\combined\\006152_jpg.rf.fb77629cd8e9fa7a6bd347e988d813f4.jpg", - "response": "A group of men working on a large piece of equipment.", - "id": 32246 - }, - { - "image_path": "G:\\images\\combined\\006153_jpg.rf.8b156f8f1313bbadfcf2ec1f2a8d3f6e.jpg", - "response": "A worker in a blue uniform and yellow hat is standing in front of a machine that has several bags of a product on it. The bags are blue and have white writing on them. The worker is holding a blue hose and is standing next to a yellow machine.", - "id": 32247 - }, - { - "image_path": "G:\\images\\combined\\006154_jpg.rf.c5ba22a008375d22225eddd90cd892d2.jpg", - "response": "A construction worker pulling a cable across a construction site.", - "id": 32248 - }, - { - "image_path": "G:\\images\\combined\\006156_jpg.rf.e2805ad0c51db38c205f206205e256aa.jpg", - "response": " A man(488,142),(919,995) in a hard hat(568,141),(753,333) standing in front of a large building under construction.", - "id": 32249 - }, - { - "image_path": "G:\\images\\combined\\006157_jpg.rf.61b3e5fa82b2c5ed18e372b99d6268b5.jpg", - "response": "A group of workers are cutting a tree with a chainsaw. The tree is blocking a road and leaning on power lines. The workers are dressed in orange and blue work clothes and hard hats. It is snowing heavily while they work.", - "id": 32250 - }, - { - "image_path": "G:\\images\\combined\\006158_jpg.rf.4f0bb79f5f53bba6e18de613cce1604b.jpg", - "response": "Three men are talking next to an empty road. The man on the left is wearing a white shirt and grey pants. The man in the middle is wearing a white shirt and black pants. The man on the right is wearing a blue shirt and grey pants.", - "id": 32251 - }, - { - "image_path": "G:\\images\\combined\\006159_jpg.rf.aede2e2b1428caeac84b5b590c9dbb2d.jpg", - "response": "A worker is on a scaffolding, painting the eves of a building. He is wearing a grey suit, a blue hat, and a glove on his left hand. He is holding a brush in his right hand and a cell phone is in his left pocket. The sky is grey and overcast.", - "id": 32252 - }, - { - "image_path": "G:\\images\\combined\\006160_jpg.rf.6999479274a6ca768e580b88baf164e5.jpg", - "response": "In the image there is a group of workers wearing yellow helmets and green work clothes, they are working in a field. In the foreground, a worker in a green work clothes and yellow helmet is fixing a power pole, there is a power pole on the ground, and another one in the background.", - "id": 32253 - }, - { - "image_path": "G:\\images\\combined\\006164_jpg.rf.acdcd95a1cb3c6fc4d909dd632a914d7.jpg", - "response": "A man in a yellow hard hat and orange vest is working on a cement mixer. He is pouring cement into the mixer from a bag.", - "id": 32254 - }, - { - "image_path": "G:\\images\\combined\\006165_jpg.rf.6a6c0d15bc759b0e70b83f9ada1976e8.jpg", - "response": "The photo shows two workers in a dimly lit tunnel. They are wearing hard hats and standing on rubble near the entrance to the tunnel. In the background, there is a bright light coming from inside the tunnel.", - "id": 32255 - }, - { - "image_path": "G:\\images\\combined\\006166_jpg.rf.40f52eb941d5643b17f29f5b30057b59.jpg", - "response": "In the image, US President Barack Obama is wearing a white shirt and a purple tie, and is also wearing a white helmet. He is talking to a man in front of him, also wearing a white helmet. The man to the right of Obama is wearing a black jacket. On the wall behind them, there is a blue display. On the right lower corner, there is a blue word \"CHINA DAILY\".", - "id": 32256 - }, - { - "image_path": "G:\\images\\combined\\006167_jpg.rf.001c381ea07c53212bf51bb0110f4785.jpg", - "response": "A construction worker in a yellow hard hat and blue work jacket is using a tool to cut through a black pipe. Another worker in a brown jacket and blue jeans is bending over and holding the tool. They are both working on a construction site.", - "id": 32257 - }, - { - "image_path": "G:\\images\\combined\\006168_jpg.rf.605e77f484bfb8e2dbe1ea9d5435e7cb.jpg", - "response": "A man in a blue shirt and a red hard hat is holding a blueprint and talking to another man in a yellow hard hat. They are standing in front of a bulldozer.", - "id": 32258 - }, - { - "image_path": "G:\\images\\combined\\006169_jpg.rf.9be9a6f0423a0146df5924c3e690ec9e.jpg", - "response": "A couple of men working on an electrical tower.", - "id": 32259 - }, - { - "image_path": "G:\\images\\combined\\006170_jpg.rf.78a9ed5035d4e0c3aa7c6b747ba52a2f.jpg", - "response": "A group of workers in blue and orange uniforms and hard hats are lined up on the side of a train track. They are working on the track.", - "id": 32260 - }, - { - "image_path": "G:\\images\\combined\\006171_jpg.rf.6d97b6b5f25bb88857bbf7b5a712bc36.jpg", - "response": "A group of people standing around talking.", - "id": 32261 - }, - { - "image_path": "G:\\images\\combined\\006172_jpg.rf.93a7594efe07990cd70b679656fb3cac.jpg", - "response": "a group of people standing in front of a building under construction", - "id": 32262 - }, - { - "image_path": "G:\\images\\combined\\006173_jpg.rf.ea8cdeb4814e0c25a9cd476cab34edbe.jpg", - "response": "The image shows a group of men standing in front of a construction site. They are all wearing suits and appear to be businesspeople. In the background, there is a large building under construction. The building has a lot of pillars and appears to be quite tall. There are also some cranes visible in the background. The sky is overcast and there are a few birds flying in the sky.", - "id": 32263 - }, - { - "image_path": "G:\\images\\combined\\006174_jpg.rf.0bc96aada01b010d71d405c1c9741ed2.jpg", - "response": "The image shows three men standing in front of a factory. The man on the left is wearing a white lab coat, while the man in the middle is wearing a plaid shirt. The man on the right is wearing a black jacket and an orange safety vest. They are all wearing hard hats. The man in the middle and the man on the right are shaking hands.", - "id": 32264 - }, - { - "image_path": "G:\\images\\combined\\006176_jpg.rf.1d7fec4d46e7c5787ad2cb7ffd6c0637.jpg", - "response": "A worker in a blue shirt and hard hat is suspended in the air by a crane. He is working on a large blue sign that says \"\u4e2d\u91ab\u901f\u99a8\" on a building under construction. The building is made of glass and steel and has red and white barriers around it. The worker is standing on a red ladder and is hanging from a hook on the crane.", - "id": 32265 - }, - { - "image_path": "G:\\images\\combined\\006177_jpg.rf.df985f1b0c03ee0b1ff3e82232698c32.jpg", - "response": "In the image there is a man wearing a hard hat and a yellow vest. He is standing in a large warehouse filled with boxes and shelves. The man is smiling and seems to be in a happy mood. He is standing between two tall shelves that are filled with boxes. Some of the boxes are stacked three high and there are many different sized boxes. The man is wearing blue jeans and has a watch on his left wrist. The background is a bit blurry but it seems to be a bright sunny day.", - "id": 32266 - }, - { - "image_path": "G:\\images\\combined\\006178_jpg.rf.ff97754e9e0c0c3f834752da8556df1b.jpg", - "response": "A yellow and black wheel loader is parked next to a concrete archway. Two men in uniforms are standing next to the wheel loader. One of them is holding a large wrench.", - "id": 32267 - }, - { - "image_path": "G:\\images\\combined\\006179_jpg.rf.2c8ff31ba1c03b9ecb6889eddd01bcc3.jpg", - "response": "The image shows a group of rescue workers standing around a hole in the ground. The workers are wearing safety gear including hard hats, and some are wearing orange jumpsuits. They are standing on top of a dirt mound with a large rock visible in the hole. There are also two smaller rocks visible in the hole. The workers are engaged in the process of rescue, with some of them holding long sticks.", - "id": 32268 - }, - { - "image_path": "G:\\images\\combined\\00617_jpg.rf.871b7a38c75efac9e9d70b1c68cdc23e.jpg", - "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cellphone, and one of them is showing it to the other. The background is out of focus, but it appears to be a large warehouse-like room with metal structures and machinery. There are also several hanging metal objects, possibly parts or components.", - "id": 32269 - }, - { - "image_path": "G:\\images\\combined\\00617_jpg.rf.8f2cb550c0450d7302f2942e1c680e56.jpg", - "response": "The image shows two men wearing hard hats and work clothes, standing in a factory. They are both holding a cell phone, and one of them is showing it to the other. The background is a large industrial space with metal shelves and machinery.", - "id": 32270 - }, - { - "image_path": "G:\\images\\combined\\006180_jpg.rf.e68a88431395cbfcd2c6f4e9dd62021e.jpg", - "response": "In the image, several construction workers are working on a construction site. A man is working at the bottom of a hole and several other workers are standing around him. Some of them are wearing orange and yellow suits, and one of them is wearing a helmet. On the left side of the image, there are several people in black and white clothes, some of them are standing and some are sitting. In the middle of the image, there is a large shovel, and several ropes are connected to it. On the right side of the image, there are some green plants and a white and black sign.", - "id": 32271 - }, - { - "image_path": "G:\\images\\combined\\006181_jpg.rf.aa964cc056e0d058f3b60fdbe9a346c7.jpg", - "response": "a group of men standing next to a pile of dirt", - "id": 32272 - }, - { - "image_path": "G:\\images\\combined\\006182_jpg.rf.2b0592eb116e78f224f682f72b1c006e.jpg", - "response": "The image shows a residential area with a building on the left and another on the right. In the middle of the scene, there is a large pile of rubble in front of a building. A power pole is leaning against this building, with several wires attached to it. A few workers can be seen in the scene, with one on the ground and two others on the power pole.", - "id": 32273 - }, - { - "image_path": "G:\\images\\combined\\006183_jpg.rf.e078dde5895e2ab076dbe6f62d25e06e.jpg", - "response": "The image shows a group of men standing on a cement area with a bridge in the background. There are five men in the foreground, dressed in business attire. One man is wearing a blue shirt and black pants, another man is wearing a white shirt and khaki pants, and the third man is wearing a white shirt and dark pants. The fourth man is wearing a white shirt and black pants, and the fifth man is wearing a white shirt and dark pants. The man on the far right is wearing a blue shirt, a blue hat, and dark pants.", - "id": 32274 - }, - { - "image_path": "G:\\images\\combined\\006184_jpg.rf.c6c473e93cdcb9c4452eaaf68bf4f797.jpg", - "response": "A man in blue coveralls is on a ladder, working on a house. He is standing on top of a large pile of tree branches.", - "id": 32275 - }, - { - "image_path": "G:\\images\\combined\\00618561e219c7f8.jpg", - "response": "A shiny Christmas ornament hanging from a tree.", - "id": 32276 - }, - { - "image_path": "G:\\images\\combined\\006185_jpg.rf.fb5ef5342c78432ee2668fb56f989c4c.jpg", - "response": "A group of three men standing on a construction site looking at a blueprint.", - "id": 32277 - }, - { - "image_path": "G:\\images\\combined\\006186_jpg.rf.ddb75bd4c6f57f27e1a2f319cc6fbbcd.jpg", - "response": "A man in a hard hat and red overalls is using a piece of equipment to work on a ladder. He is wearing safety glasses and has a tool in his hand. There are other tools and equipment around him. The room he is in has a concrete floor and white walls. There is also a ladder leaning against a wall.", - "id": 32278 - }, - { - "image_path": "G:\\images\\combined\\006187_jpg.rf.6933c9ee3c54d360e9cf2ab7836a7b0c.jpg", - "response": "In the image, a worker is being carried away by workers after he was injured at a construction site in Xiamen, Fujian Province, China. The workers are using stretchers to carry the injured worker. The scene is quite chaotic, with several workers in the area, some carrying the injured worker, and others standing around. There are also several construction tools, such as shovels and a large bucket, scattered around the site. The sky above the site is overcast, and there are a few trees nearby.", - "id": 32279 - }, - { - "image_path": "G:\\images\\combined\\006188_jpg.rf.2ed16537013901d5daf807ee0a764121.jpg", - "response": "A group of men standing next to a pile of dirt.", - "id": 32280 - }, - { - "image_path": "G:\\images\\combined\\006189_jpg.rf.3fe68f697b0b91b6c747b2473857205b.jpg", - "response": "A painting of three men working on a railway.", - "id": 32281 - }, - { - "image_path": "G:\\images\\combined\\00618_jpg.rf.a4faff5f7fc19de9ec07411e21300427.jpg", - "response": "In the image there are two workers standing on a construction site wearing hard hats. One worker is wearing a grey top and the other is wearing a yellow top. They are both holding a piece of white material. The background shows the corner of a large building that has multiple floors and columns. There is a black fence in the foreground and the floor they are standing on is dark grey.", - "id": 32282 - }, - { - "image_path": "G:\\images\\combined\\00618_jpg.rf.fcb235b044a40cff72825fa53647c236.jpg", - "response": "In the image there are two workers, one on the left and one on the right, both are wearing yellow helmets. They are standing on a construction site wearing blue and yellow clothes. The ground is covered with black plastic and there are many steel bars sticking out of it. On the left side of the image, there is a white ladder and a black bag. In the background, you can see a building with several walls built but no roof.", - "id": 32283 - }, - { - "image_path": "G:\\images\\combined\\006190_jpg.rf.c62110eff55ceb7e80d5bb5f78a4a9aa.jpg", - "response": "A man wearing a blue shirt and a orange helmet is welding a large boat. The boat is rusty and is being worked on next to a stone wall. The man is standing on a small dock and is holding a welding torch. Another man is standing on the wall above him, and there is a third man standing further back near the wall. The sky is blue and cloudless.", - "id": 32284 - }, - { - "image_path": "G:\\images\\combined\\006191_jpg.rf.32be112f5cecddb0bf35cf08daafd81a.jpg", - "response": "A man in a white shirt and tan hat is sitting on a power line, hanging from a tower. He is wearing a black and yellow jacket and tan pants. Another man in a brown jacket and tan hat is standing on the ground holding the first man's harness.", - "id": 32285 - }, - { - "image_path": "G:\\images\\combined\\006193_jpg.rf.590f7d76b1532989d033bc8c6b3dec88.jpg", - "response": "The image shows a group of workers at a construction site for a railway. They are working on a bridge that is under construction. The bridge is located in a rural area with a forest in the background. The workers are standing on the side of the bridge, which is made of concrete. They are working on the bridge's railings. In the foreground, there is a pile of cinder blocks next to the railway tracks.", - "id": 32286 - }, - { - "image_path": "G:\\images\\combined\\006194_jpg.rf.73573ccaa13753d05fae9c925f9da0e9.jpg", - "response": "A group of men wearing hard hats are walking together. Some of them are wearing suits and ties. One man is wearing a red hard hat. In the background, there is a building with a blue roof.", - "id": 32287 - }, - { - "image_path": "G:\\images\\combined\\006195_jpg.rf.9e5b058ec134b32012ac331d1b240331.jpg", - "response": "A worker wearing a red helmet and blue uniform is welding in a factory. There is a red helmet and a blue uniform lying on the floor next to the worker. A chair is placed in the background. The worker is creating a lot of light and sparks are flying in all directions.", - "id": 32288 - }, - { - "image_path": "G:\\images\\combined\\006196_jpg.rf.d47319892a27017dd48adb80b20c2d62.jpg", - "response": "The image shows two men working on a construction site in the process of drilling a hole in the ground. They are wearing hard hats and the man on the right is wearing a black shirt. There are several pipes and wires on the ground in front of them and a red and white bag to the left of the men. The background shows a patch of dirt and some rocks.", - "id": 32289 - }, - { - "image_path": "G:\\images\\combined\\00619_jpg.rf.7e8131778c4c91078552cf8dd437dc51.jpg", - "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and is looking towards a new housing development.", - "id": 32290 - }, - { - "image_path": "G:\\images\\combined\\00619_jpg.rf.9939998a9ed179c2dd8c24c2947fde81.jpg", - "response": "A man in a white hard hat and high visibility vest stands on a building site. He is holding architectural plans and appears to be measuring something with a piece of surveying equipment.", - "id": 32291 - }, - { - "image_path": "G:\\images\\combined\\0061dd442c6d9467.jpg", - "response": "A baseball player for the Blue Jays runs across the field.", - "id": 32292 - }, - { - "image_path": "G:\\images\\combined\\006201_jpg.rf.0ca83c3f1c43b9bd625e28ce79305a1c.jpg", - "response": " Two miners(646,207),(810,971)(502,162),(675,997) standing in a mine shaft", - "id": 32293 - }, - { - "image_path": "G:\\images\\combined\\006202_jpg.rf.bec5da28029fff50d6bb1f0f67f355e9.jpg", - "response": "In the image two men are working on a roof. They are wearing hard hats and work clothes. The roof is brown and made of wood.", - "id": 32294 - }, - { - "image_path": "G:\\images\\combined\\006203_jpg.rf.64ae7b827bc3adda82e34b6e5965ba36.jpg", - "response": "A man wearing a white helmet and a green vest is kneeling down next to solar panels. He is holding a digital tablet and checking the solar panels. The solar panels are blue and are installed on a roof. The sky is a clear blue with no clouds.", - "id": 32295 - }, - { - "image_path": "G:\\images\\combined\\006204_jpg.rf.67b313bc22f7c9cc621a295427bea9ff.jpg", - "response": "A construction site with a yellow crane and a yellow truck.", - "id": 32296 - }, - { - "image_path": "G:\\images\\combined\\006206_jpg.rf.4471e596888d40457bc36e6768f767a2.jpg", - "response": "A group of workers wearing hard hats are working on a construction site.", - "id": 32297 - }, - { - "image_path": "G:\\images\\combined\\006207_jpg.rf.d90d8283f31209c03bb67f69d886257c.jpg", - "response": "A collage of two images, one of two construction workers looking at scaffolding and one of three hard hats on a table.", - "id": 32298 - }, - { - "image_path": "G:\\images\\combined\\006209_jpg.rf.8388fa7b75e3ffb5c0cfa9f796d4cb44.jpg", - "response": "In the image there is a construction site with multiple workers. The workers are wearing yellow helmets and are working on a building that has not yet been finished. They are working on a concrete structure and some of them are connected to wires that are likely for electric power. There is a bottle on the ground and a person in the background is holding a cellphone.", - "id": 32299 - }, - { - "image_path": "G:\\images\\combined\\00620_jpg.rf.ec09ed5a3b22f47784cc95fffd72527c.jpg", - "response": "The image depicts two men wearing yellow and white hard hats, looking at a blueprint in front of a construction site. The blueprint they are examining is rolled up and appears to be focused on a building under construction. The two men are standing together, with one on the left and the other on the right, both appear to be discussing the plans. The left most man has his left hand on the blueprint while the right most man has his right hand on top of the left most man's left hand. The background shows a partially constructed building with scaffolding in place.", - "id": 32300 - }, - { - "image_path": "G:\\images\\combined\\006210_jpg.rf.9f5f4cc2f06cbe0987d9b9705c516bd8.jpg", - "response": "The image shows two workers inside a large pipe. They are wearing hard hats and one of them is holding a smartphone. The pipe is dark and the workers are reflected in its shiny surface. The background is blurred and the pipe appears to be going off into the distance.", - "id": 32301 - }, - { - "image_path": "G:\\images\\combined\\006211_jpg.rf.600434c146a97a0be5aaf4e159d570fe.jpg", - "response": "A group of workers in a large warehouse.", - "id": 32302 - }, - { - "image_path": "G:\\images\\combined\\006212_jpg.rf.efb035c35008ba7a4bb2632a9a9d9369.jpg", - "response": "5 people standing in a construction site(23,135),(909,830)", - "id": 32303 - }, - { - "image_path": "G:\\images\\combined\\006213_jpg.rf.67a542251da19434fc6335d155b72492.jpg", - "response": "A man wearing a yellow hard hat and orange safety vest is driving a forklift.", - "id": 32304 - }, - { - "image_path": "G:\\images\\combined\\006214_jpg.rf.7d665eeb5123bb2c07490a38b8624c30.jpg", - "response": "A group of men standing around each other", - "id": 32305 - }, - { - "image_path": "G:\\images\\combined\\006215_jpg.rf.ee8012af21a52885afda48e04a9c896e.jpg", - "response": "In the image, there are several construction workers wearing orange work uniforms and safety helmets. They are working on a construction site that has wooden scaffolding and wooden roof trusses. The sky is blue with few clouds.", - "id": 32306 - }, - { - "image_path": "G:\\images\\combined\\006216_jpg.rf.6607f0f46734acdac03cecc2f4c0d582.jpg", - "response": "A group of people working on a construction site.", - "id": 32307 - }, - { - "image_path": "G:\\images\\combined\\006217_jpg.rf.1292234fa32a18bc00c32191940f1168.jpg", - "response": "The image shows two workers in blue work uniforms and green safety vests, with one worker wearing a helmet and the other one not. They are working on a large white pipe with black insulation and red wires connected to it, in front of a blue sky and power transmission tower.", - "id": 32308 - }, - { - "image_path": "G:\\images\\combined\\006218_jpg.rf.6aea02bcd54b1e833593b81dfc0a9a52.jpg", - "response": "The image shows Kim Jong-un, the leader of North Korea, in a bedroom. He is wearing a black suit and is crouched over a bed, which has a pink and brown floral patterned sheet. The bed has a wooden frame with a red headboard. To the left of the bed is a wooden chair. To the right of the bed is a wooden dresser with a door. The room is sparsely furnished, with no other chairs or furniture visible in the image. The walls are white, and the floor is grey.", - "id": 32309 - }, - { - "image_path": "G:\\images\\combined\\006219_jpg.rf.f0ccdca47ae546458d23d851ba143841.jpg", - "response": "In the image there are two men standing next to a white truck. Both men are wearing hard hats and blue coveralls. One man is leaning against the passenger side door of the truck while the other is standing behind him. They both appear to be looking at something in the distance.", - "id": 32310 - }, - { - "image_path": "G:\\images\\combined\\006220_jpg.rf.583b3262e20ef766309a5746df7d0bdf.jpg", - "response": "A group of three men working on a road.", - "id": 32311 - }, - { - "image_path": "G:\\images\\combined\\006222_jpg.rf.028acb3136429e25d3704de5aef681e2.jpg", - "response": "A man in a red hard hat is showing a group of people a wall.", - "id": 32312 - }, - { - "image_path": "G:\\images\\combined\\006223_jpg.rf.b22191e1bcbff6fce6d15166f9f9f024.jpg", - "response": "In the image there is a person wearing a blue uniform and a red helmet. They are standing in front of a wall with many dials and meters. The wall has a control panel with many different meters and dials of varying sizes. Some of the meters are round and have a white face and black numbers. Others are circular and have a white face with black markings. The person is reaching out to turn one of the dials on the wall.", - "id": 32313 - }, - { - "image_path": "G:\\images\\combined\\006224_jpg.rf.5de18dc94ced526d59a94237520642bc.jpg", - "response": "A group of men in suits and hard hats are standing in a construction site. Some of the men are wearing ties. One man is carrying a black bag. The sky is blue and clear. There are two signs on the left and right side of the image. One of the signs is for China National Offshore Oil Corporation.", - "id": 32314 - }, - { - "image_path": "G:\\images\\combined\\006225_jpg.rf.05ae09004f845b2dd050a53d3abfa0c1.jpg", - "response": "A man in a yellow hard hat and work clothes is kneeling in rubble. He is wearing work gloves and using a tool to cut through rebar. In the background, a yellow Caterpillar tractor is digging through the rubble. There are buildings in the distance, and a few trees in the foreground.", - "id": 32315 - }, - { - "image_path": "G:\\images\\combined\\006226_jpg.rf.41748d8beae264caa19f604b2f458fbd.jpg", - "response": "A man wearing a yellow hard hat is working on a construction site. He is standing on a ladder and is in the process of sawing a long piece of wood. He is wearing a red shirt and blue shorts. There is a green building under construction in the background.", - "id": 32316 - }, - { - "image_path": "G:\\images\\combined\\006227_jpg.rf.0fca3e73ad9566d163ac875b8b2386fe.jpg", - "response": "A man wearing a grey shirt, blue hat and orange gloves is working with a torch and some metal. He is sitting on a stool and the torch is on the ground in front of him. There are many metal objects stacked up behind him and sparks are flying from the torch.", - "id": 32317 - }, - { - "image_path": "G:\\images\\combined\\006228_jpg.rf.069e6869b863cabc63fe31df2af20ab6.jpg", - "response": "The image shows a group of people standing in a large hole in the ground. Some of them are wearing hard hats. In the background, a wall is visible. In front of the group of people, a large piece of wood is lying on the ground. To the left of the group, a large piece of metal is also lying on the ground.", - "id": 32318 - }, - { - "image_path": "G:\\images\\combined\\006229_jpg.rf.2058c36964ebc73b31d5ac04f8489ca5.jpg", - "response": "The image shows two workers in orange hard hats and blue uniforms, climbing on a metal structure. They are both holding onto the structure and appear to be in the process of installing or fixing something. The metal structure is silver and appears to be a part of a power line or transmission tower. In the background, there is a lush green hillside and a small town or city.", - "id": 32319 - }, - { - "image_path": "G:\\images\\combined\\00622_jpg.rf.5374c1326bf09e4ef3ba12fae4bb09e5.jpg", - "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", - "id": 32320 - }, - { - "image_path": "G:\\images\\combined\\00622_jpg.rf.658bd11258e1e48893e2c119bf214a40.jpg", - "response": "In the image there are two people standing on a construction site. They are both dressed in business attire and are wearing yellow hard hats. The man on the left is taller and has grey hair. They both have their hands on their hips. The woman on the right has her hair up in a tight bun. They are both holding a rolled up piece of paper.", - "id": 32321 - }, - { - "image_path": "G:\\images\\combined\\006230_jpg.rf.64e8006fea60d180110c8339e9df6b0b.jpg", - "response": " Three people(172,89),(447,996)(547,0),(803,999)(409,116),(613,999) in hard hats(289,93),(432,209)(432,115),(537,193) stand on a ship", - "id": 32322 - }, - { - "image_path": "G:\\images\\combined\\006231_jpg.rf.0f31e5604e5711347d30302caa0aadd5.jpg", - "response": "A group of people working on a large pipe in the ground.", - "id": 32323 - }, - { - "image_path": "G:\\images\\combined\\006232_jpg.rf.359307445c71bcce7d33b2ae15f549b3.jpg", - "response": "A man wearing a yellow hard hat and a yellow safety vest stands in front of a forklift. The man has his arms crossed in front of him.", - "id": 32324 - }, - { - "image_path": "G:\\images\\combined\\006234_jpg.rf.ae7da6e4f2c54d8c097e42f9bb520f90.jpg", - "response": "An engineer holding a blueprint in front of a construction site.", - "id": 32325 - }, - { - "image_path": "G:\\images\\combined\\006235_jpg.rf.a776030b6b96219423884fd87e95c299.jpg", - "response": "A man having his helmet adjusted by another man in front of a construction site sign.", - "id": 32326 - }, - { - "image_path": "G:\\images\\combined\\006236_jpg.rf.577ab39e72d744a2a074610beafc6b38.jpg", - "response": "The image shows two workers clearing snow from a path next to a snowy hillside. They are wearing hard hats and work clothes. One worker is on the left, holding a rope while the other is on the right, walking away. In the background, there are several trees covered in hoarfrost. To the right, there is a small building with a door and two windows. In the distance, there are two power poles.", - "id": 32327 - }, - { - "image_path": "G:\\images\\combined\\006237_jpg.rf.dc9e5ad103399bb55e4527a83af07653.jpg", - "response": "A construction worker in a white helmet stands in front of a section of blacktopped road. To the left of the worker is a yellow construction vehicle with a black wheel. To the right of the worker is a stand of trees.", - "id": 32328 - }, - { - "image_path": "G:\\images\\combined\\006238_jpg.rf.42e009ce4bde3e2cbadbd5a5087758af.jpg", - "response": "A worker in a red hard hat smiles as he works on a construction site. He is wearing a grey shirt and has a tool in his left hand. He is working on some metal bars that are in front of him and some are in the background. The sky is grey and overcast.", - "id": 32329 - }, - { - "image_path": "G:\\images\\combined\\006239_jpg.rf.161223804ef023d687f2546764895908.jpg", - "response": "A man wearing a white hard hat and an orange safety vest is smiling at the camera. He is standing in front of a large stack of wooden planks.", - "id": 32330 - }, - { - "image_path": "G:\\images\\combined\\00623_jpg.rf.3199245b9f3c7c1bed2aa05cb6fb2983.jpg", - "response": "A man in a white shirt and red helmet is pointing to a blue and white sign on a pole. He is wearing a watch on his left wrist. To the left of him are four other men, all wearing hard hats. One man is wearing a white shirt and grey shorts, another man is wearing a white shirt and grey pants, the third man is wearing a white shirt and black pants, and the fourth man is wearing a white shirt and blue pants.", - "id": 32331 - }, - { - "image_path": "G:\\images\\combined\\00623_jpg.rf.6cb005e2d39c6f28ea1d98cb76893ccc.jpg", - "response": "A man in a white shirt and red helmet is pointing to a piece of metal. He is wearing a white shirt and standing in front of a group of men in the same outfit. They are all standing under a large white structure and the man in the foreground is holding a white object. They are all wearing name tags.", - "id": 32332 - }, - { - "image_path": "G:\\images\\combined\\006241_jpg.rf.8621c69b7f43816326054e36809d507f.jpg", - "response": "In the image there is a worker wearing a black hat and orange jacket who is on a silver pole. The worker is also wearing a harness. Underneath the worker, there is a black wire leading to a black helmet. Next to the worker, there is a red crane lifting a metal beam. The sky is blue with some clouds. On the right side of the image, there are two grey metal bars connected by a black wire leading to the worker.", - "id": 32333 - }, - { - "image_path": "G:\\images\\combined\\006242_jpg.rf.0bd7a66dd368e909bbe606f86182237e.jpg", - "response": "The image shows a construction site with several workers. There is a large drilling machine in the foreground, and a man with a yellow hard hat is operating it. Another man with a yellow hard hat is standing nearby. There is a pile of wooden boards to the left of the drilling machine. In the background, there is a white building with a red door and a window. There is a black fence in front of the building. To the right of the building, there is a pile of grey rocks. The workers are wearing red and yellow hard hats, and they are wearing red and white shirts. The ground is dirt and there are two shovels lying on the ground.", - "id": 32334 - }, - { - "image_path": "G:\\images\\combined\\006245_jpg.rf.b2dce8eb83509ad0efd6b2d492009835.jpg", - "response": "A smiling worker standing with his arms crossed in a warehouse.", - "id": 32335 - }, - { - "image_path": "G:\\images\\combined\\006246_jpg.rf.d7d1e358db235035484e79cae7a411c1.jpg", - "response": "In the image there are three men working on a gas tank. Two of the men are wearing yellow hats and the other one is wearing a red hat. They are all wearing blue work clothes. One of the men is holding a blue rope while the other one is holding a red one. They are all working on a gas tank that is situated in the middle of a sidewalk. The tank is made of metal and is in the shape of a large cylinder.", - "id": 32336 - }, - { - "image_path": "G:\\images\\combined\\006247_jpg.rf.20f08053aa8205a59db3b73de790560e.jpg", - "response": "A construction site with two men standing in front of a yellow truck with a crane.", - "id": 32337 - }, - { - "image_path": "G:\\images\\combined\\006248_jpg.rf.32c586bbffeb38733c6ab199672e6686.jpg", - "response": "a group of men standing around outside", - "id": 32338 - }, - { - "image_path": "G:\\images\\combined\\006249_jpg.rf.574f725b08492d8b8e600eb0e1cad512.jpg", - "response": "A man wearing a hard hat and holding a large piece of wood in front of a house under construction.", - "id": 32339 - }, - { - "image_path": "G:\\images\\combined\\00624_jpg.rf.52539d9c7a413f8c6bc5102a158e8426.jpg", - "response": "The image features a group of men standing next to each other. They are all wearing hard hats, with some of them wearing bright yellow and orange vests as well. The men are standing in front of a body of water, which can be seen in the background. There are also two cars visible in the image, one on the right side and another further back. The men are posing for the camera, with one of them sitting in a chair that is placed among them.", - "id": 32340 - }, - { - "image_path": "G:\\images\\combined\\00624_jpg.rf.cf0e19d89d00feb603c0d73d87b1bdde.jpg", - "response": "A group of men standing next to each other.", - "id": 32341 - }, - { - "image_path": "G:\\images\\combined\\006250_jpg.rf.de0e6f6cefde3034f8628f82241f8115.jpg", - "response": "a group of men standing around each other", - "id": 32342 - }, - { - "image_path": "G:\\images\\combined\\006251_jpg.rf.8b7cd01736748af27c5830e9506cd91d.jpg", - "response": "A construction worker wearing a yellow vest and red helmet is working on a large construction site.", - "id": 32343 - }, - { - "image_path": "G:\\images\\combined\\006254_jpg.rf.9ba04ce1679bb6ce730c7a877c1c3182.jpg", - "response": "In the image two workers are seen\u4fee\u7406ing an electricity pole. They are wearing blue and black uniforms. The sky is white and it seems to be a winter day. There are many wires coming from the electricity pole and the workers are handling them.", - "id": 32344 - }, - { - "image_path": "G:\\images\\combined\\006255_jpg.rf.bbc90149f077d7bed9b301221af6e3ab.jpg", - "response": "A group of men in white shirts and red hard hats are standing on a dirt patch.", - "id": 32345 - }, - { - "image_path": "G:\\images\\combined\\006258_jpg.rf.90ee3ffa54789acdbac745c94454f55e.jpg", - "response": "The image shows a group of people gathered around a man holding a red hard hat. The man is on the left side of the image, while the group is standing around him. They are all wearing white shirts and red hard hats. In the background, there is a truck on the left side and a building on the right side. Some people are also carrying umbrellas.", - "id": 32346 - }, - { - "image_path": "G:\\images\\combined\\006259_jpg.rf.795d43e8cfb346ecfafa924e237a102e.jpg", - "response": "The image shows two workers in blue shirts and blue helmets who are repairing a pipe. They are crouched down in a large hole, and one of them is using a tool to work on the pipe. The pipe is painted red and black, and there is a large piece of red and black material wrapped around it. The workers seem to be focused on their task, and the scene gives a sense of the hard work and skill involved in this type of repair work.", - "id": 32347 - }, - { - "image_path": "G:\\images\\combined\\006260_jpg.rf.cf465933944ef2c39226d51101f23b94.jpg", - "response": "The photo shows a group of men standing in an unfinished building. They are all wearing red hard hats. The man in the foreground on the left is wearing a dark grey suit and has a beard. He is talking to the man to his left, who is also wearing a red hard hat. They are both talking and pointing towards the right. To their right, there are two men wearing black suits and red hard hats. They are both looking towards the camera. In the background, there are two men wearing yellow hard hats and black suits. One man is wearing a red tie and the other man is wearing a yellow hard hat. In the far background, there are two men wearing red hard hats and grey suits. They are both looking towards the right. There is a sign on the wall that says \"Caution, men at work\".", - "id": 32348 - }, - { - "image_path": "G:\\images\\combined\\006261_jpg.rf.718e27cefaae738f7299ce66b47f1381.jpg", - "response": "A group of people walking down a sidewalk.", - "id": 32349 - }, - { - "image_path": "G:\\images\\combined\\006262_jpg.rf.f0ad50f3ef93e3bade1bea90630d48e9.jpg", - "response": "A man in a yellow shirt and white hat is on a yellow lift. He is working on a power line.", - "id": 32350 - }, - { - "image_path": "G:\\images\\combined\\006263_jpg.rf.464c05063a3b91feeb310304981ef136.jpg", - "response": "A group of men in hard hats stand on a construction site.", - "id": 32351 - }, - { - "image_path": "G:\\images\\combined\\006264_jpg.rf.8a8b8951abe5787b50737a38c82b493d.jpg", - "response": "The image shows two men wearing hard hats and looking at a blueprint. The man on the left is holding the blueprint and smiling, while the man on the right is wearing a gray shirt and a white helmet. Both men are wearing yellow shirts, jeans, and orange and yellow hard hats. They appear to be construction workers.", - "id": 32352 - }, - { - "image_path": "G:\\images\\combined\\006265_jpg.rf.9a0f855a5e2dd6de907f067c556a1cc5.jpg", - "response": "In the image two people are seen wearing orange snowsuits and green life jackets. They are standing in the snow with one person pointing at a power line. The sky is covered with clouds and it appears to be snowing. The trees around them are covered in snow.", - "id": 32353 - }, - { - "image_path": "G:\\images\\combined\\006266_jpg.rf.c7b4a47bf235b7c18d8ed38f6aa99b2f.jpg", - "response": "A group of three workers in hard hats and coveralls are working on a yellow piece of machinery. They are standing on a step and appear to be working on a red barrel.", - "id": 32354 - }, - { - "image_path": "G:\\images\\combined\\006267_jpg.rf.d60ac3c0b0a2eb883a39d84d516c3114.jpg", - "response": "A group of men in blue work uniforms and yellow hard hats are on a platform working on power lines.", - "id": 32355 - }, - { - "image_path": "G:\\images\\combined\\006268_jpg.rf.17ac65e357072094b8b0c111b3633578.jpg", - "response": "A group of people are sitting around a large table. The wall behind the table has a banner that says \"\u83f2\u79d1\u5b66\u7ba1\u7406\u6253\u9020\u7cbe\u54c1\u5de5\u7a0b\" in red and yellow characters. Several people are wearing ties. There are several cups on the table, some are filled with a light yellow liquid. There are several books and papers on the table. A laptop is opened on the table. In the background, there is a whiteboard with some writing on it.", - "id": 32356 - }, - { - "image_path": "G:\\images\\combined\\006269_jpg.rf.0e60eb1a8844870d02b070971576fb61.jpg", - "response": "A construction worker wearing a yellow vest and red helmet working on a large construction site.", - "id": 32357 - }, - { - "image_path": "G:\\images\\combined\\00626_jpg.rf.00eb1f6552b6a9760fc7b5eb71be66ce.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a clipboard. The plans are for a building that is currently under construction.", - "id": 32358 - }, - { - "image_path": "G:\\images\\combined\\00626_jpg.rf.4ccbf0b2addd491e7265a588c343266f.jpg", - "response": "Three men in high visibility vests and hard hats are looking at a set of plans on the ground. They are discussing the plans and holding a set of blueprints. The man on the left is also holding a set of plans in a red binder. The man in the middle is wearing a white hard hat. The man on the right is wearing a yellow hard hat. The wall to the right is green and the wall to the left is being renovated with boxes stacked against it.", - "id": 32359 - }, - { - "image_path": "G:\\images\\combined\\006270_jpg.rf.57a458a15ede0808a88007c9174d748d.jpg", - "response": "A group of men standing next to each other wearing hard hats.", - "id": 32360 - }, - { - "image_path": "G:\\images\\combined\\006271_jpg.rf.c4f04430203925bb1fac0b625774b663.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 32361 - }, - { - "image_path": "G:\\images\\combined\\006272_jpg.rf.c8a5de0111c6bfe6e4b7c0bc17c57c70.jpg", - "response": "The image shows workers in a cement tunnel. They are wearing yellow and orange vests and white helmets. Some are standing on ladders or on the debris on the floor, and others are handling hoses. The workers are repairing the tunnel walls.", - "id": 32362 - }, - { - "image_path": "G:\\images\\combined\\006273_jpg.rf.cfea500cc2455107450cde8c0d7e3bd0.jpg", - "response": "A group of men standing around talking.", - "id": 32363 - }, - { - "image_path": "G:\\images\\combined\\006274_jpg.rf.1f3f699b3f0a3dee0e1edb76ede8fe20.jpg", - "response": "A worker in a hard hat and orange vest is standing on a bridge in front of a large metal pipe. They are looking at a tablet and holding a clipboard. There are two other people in the background, one near the left side and one near the right side of the image. There is a forest of trees in the distance.", - "id": 32364 - }, - { - "image_path": "G:\\images\\combined\\006275_jpg.rf.c0f8245e2547b1477b5e22bffb7f344e.jpg", - "response": "A construction site with a yellow scaffolding and two workers. One worker is on the right side of the image, wearing a red hat and shirt, and grey pants. He is operating a machine. Another worker is on the left side of the image, wearing a white helmet and grey pants. There are several yellow scaffolding in the image, some yellow pipes and some steel bars. Some of the steel bars are placed on the ground, and some are on the scaffolding. There is a yellow machine operated by the worker on the right side of the image. In the background, there is a tall building with a white wall on the left side of the image and a building under construction with green walls on the right side of the image.", - "id": 32365 - }, - { - "image_path": "G:\\images\\combined\\006276_jpg.rf.524a63fac533aedaaa986e4d1513e762.jpg", - "response": "A couple of men in hard hats are working on power lines. They are standing on ladders and have tools in their hands.", - "id": 32366 - }, - { - "image_path": "G:\\images\\combined\\006277_jpg.rf.e1e3df8381e1bc310bd8f7dc984aa45c.jpg", - "response": "The image shows a construction site with two workers. One worker is on the left wearing a grey uniform and a red hat and glasses. He is operating a yellow machine with a circular cutting wheel on a silver pole, which is cutting into a grey road. The worker is kicking up dust. To the right of the worker is a black wire running across the image. Further down the image, there is a green fence. In the background, there is a brown mountain. On the right side of the image, there are a few people standing behind a yellow fence. A person in a red vest is standing towards the right. In the background, there is a forest of green trees.", - "id": 32367 - }, - { - "image_path": "G:\\images\\combined\\006278_jpg.rf.12170c70f60f81e1eb754c1a6a3ffe59.jpg", - "response": "a worker in a grey suit and yellow hat", - "id": 32368 - }, - { - "image_path": "G:\\images\\combined\\006279_jpg.rf.862d01fb5c0b9eaaab253b9201123a70.jpg", - "response": "People(412,266),(996,787) standing in front of a building", - "id": 32369 - }, - { - "image_path": "G:\\images\\combined\\00627_jpg.rf.8e592a6a61856d100b070843e97271ac.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", - "id": 32370 - }, - { - "image_path": "G:\\images\\combined\\00627_jpg.rf.c5febab588e9a200024c72b1d43eefa1.jpg", - "response": "The image shows two men standing on a construction site. Both men are wearing black suits and ties, and the one on the left is also wearing a yellow hard hat. One of the men is holding a red hard hat and a rolled-up blueprint in his hand. They are both pointing to something in the distance, possibly discussing the plans for the construction site.", - "id": 32371 - }, - { - "image_path": "G:\\images\\combined\\006284_jpg.rf.da15721860a53aa3c0a5e0024a5270ac.jpg", - "response": " Rescue workers(473,329),(623,996)(268,356),(422,926)(593,301),(749,823)(436,291),(531,745)(82,281),(255,717) carry a wooden beam(374,513),(999,979) to be used as a support for the roof of the damaged tunnel.", - "id": 32372 - }, - { - "image_path": "G:\\images\\combined\\006285_jpg.rf.49fd7602be792f2e057f82e5468daf32.jpg", - "response": "A worker points to a crack in the wall of the 1300-year-old brick kiln in the city of Xi'an, capital of Shaanxi province. The crack is about 10 centimeters long and 1 centimeter wide.", - "id": 32373 - }, - { - "image_path": "G:\\images\\combined\\006286_jpg.rf.8da14e805a0ace0c1dd949717ce30a29.jpg", - "response": "A group of men standing on a construction site.", - "id": 32374 - }, - { - "image_path": "G:\\images\\combined\\006287_jpg.rf.f09342a0b9ac348d5f20831c7459b670.jpg", - "response": "A group of people standing in front of a wall with Chinese writing on it. Some of the people are wearing yellow jackets. One person is on a motorcycle.", - "id": 32375 - }, - { - "image_path": "G:\\images\\combined\\006288_jpg.rf.d09f1dcd3e0f88bcde954c9817dcd941.jpg", - "response": "A group of workers are working on a construction site. They are working on a building that has scaffolding around it. The building is in the process of being constructed.", - "id": 32376 - }, - { - "image_path": "G:\\images\\combined\\006289_jpg.rf.203585dec2254567dabfb34728e497f9.jpg", - "response": "A man with a microphone is speaking to a crowd of men.", - "id": 32377 - }, - { - "image_path": "G:\\images\\combined\\00629079b8556680.jpg", - "response": "A beige Mercury truck parked in front of a wooden fence.", - "id": 32378 - }, - { - "image_path": "G:\\images\\combined\\006290_jpg.rf.d248e74b7a040b036109d592872d3cb0.jpg", - "response": "In the image there is a worker in a blue uniform and a blue hat who is crouching down and working on a metal rail that is in a tunnel. The tunnel has a white and green light at the end of it. The worker is also holding a crow bar and a hammer.", - "id": 32379 - }, - { - "image_path": "G:\\images\\combined\\006291_jpg.rf.7bbeff9b57b148d9cb7c2b1096e07239.jpg", - "response": "A construction site with a man in a blue jumpsuit and a hard hat on a cell phone.", - "id": 32380 - }, - { - "image_path": "G:\\images\\combined\\006292_jpg.rf.f9100543c6fc93b30ea1c82e960fe862.jpg", - "response": "A couple of men in blue hard hats are standing in a stream.", - "id": 32381 - }, - { - "image_path": "G:\\images\\combined\\006293_jpg.rf.3c1b6e500021be4f184747bab2e2e32a.jpg", - "response": "The image shows a group of five men standing in front of a building under construction. They are all wearing hard hats, with one man holding a clipboard. To the left of the group, there is a car parked next to a building. In the background, there is a large pile of dirt and a pipe. The sky is overcast, and the image is taken in what appears to be a construction site.", - "id": 32382 - }, - { - "image_path": "G:\\images\\combined\\006294_jpg.rf.a9424f363ced7ffd2d3902c261c6872b.jpg", - "response": "People(245,319),(457,920)(490,328),(648,859)(3,322),(339,995)(755,254),(987,995)(387,353),(475,747) standing in a room", - "id": 32383 - }, - { - "image_path": "G:\\images\\combined\\006296_jpg.rf.d2fa5e1b0c47305dbeb73cab0ee05f60.jpg", - "response": "A group of people walking around a construction site.", - "id": 32384 - }, - { - "image_path": "G:\\images\\combined\\006297_jpg.rf.c0136a07ec51c427109dd1e1c3d72400.jpg", - "response": "An oil field with two pumpjacks in the background. In the foreground, two people are shaking hands. The person on the left is a woman with red hair and a red helmet. She is wearing a white shirt, red and yellow reflective vest, and a pink bandana tied around her neck. The person on the right is a man with a beard and orange helmet. He is wearing a blue shirt, orange and yellow reflective vest, and a black tool belt.", - "id": 32385 - }, - { - "image_path": "G:\\images\\combined\\006298_jpg.rf.21d06283df68a72fe6ca05dca5dee0b8.jpg", - "response": "A construction worker is working on some yellow beams.", - "id": 32386 - }, - { - "image_path": "G:\\images\\combined\\006299_jpg.rf.7e6023daadf1dc53b924e2820ccd99b1.jpg", - "response": "The image shows two workers wearing yellow hard hats, one on the left and one on the right, working on a piece of equipment. The equipment is a large, metal, white and red piece of machinery with many bolts and nuts. The workers are focused on their task, which involves using a wrench to adjust a part of the machinery. The sky is grey and overcast in the background.", - "id": 32387 - }, - { - "image_path": "G:\\images\\combined\\00629_jpg.rf.6b4670a1cd16ea4d6524dd8b6b805554.jpg", - "response": "A group of people standing around a wheelbarrow filled with bricks.", - "id": 32388 - }, - { - "image_path": "G:\\images\\combined\\00629_jpg.rf.e17736754eeafbd17fa2731839e8c643.jpg", - "response": "A group of people standing around a wheelbarrow filled with bricks.", - "id": 32389 - }, - { - "image_path": "G:\\images\\combined\\0062d9a5fb4913ce.jpg", - "response": "A street sign that says \"Jerusalem Plank Rd\" and another street sign that says \"Main Point Rd\" with a stop sign in the foreground.", - "id": 32390 - }, - { - "image_path": "G:\\images\\combined\\006300_jpg.rf.8b1340e60b8b7a92e3c6dbc86e1de382.jpg", - "response": "A man in a white shirt is pointing to a map.", - "id": 32391 - }, - { - "image_path": "G:\\images\\combined\\006301_jpg.rf.58ce9d4c28f27172df2a97e1394d3573.jpg", - "response": "A man in a yellow and blue shirt, a yellow and black hat, and safety goggles is drinking water from a clear plastic water bottle.", - "id": 32392 - }, - { - "image_path": "G:\\images\\combined\\006302_jpg.rf.8ea6c2e60a9920dba5bc4a6c9fcec433.jpg", - "response": "A group of men wearing hard hats are standing in a construction site. They are all wearing different outfits and the men on the left are wearing yellow and orange hard hats. The men in the center and on the right are wearing red hard hats. The men in the center are also wearing grey jackets. The man in the middle is wearing a grey jacket and a white helmet. The man on the right who is wearing a camo jacket and a red hard hat is also holding a clipboard.", - "id": 32393 - }, - { - "image_path": "G:\\images\\combined\\006303_jpg.rf.e2df00c2e4000da0b53c78bfc274aea7.jpg", - "response": "A group of people in blue and orange clothes with yellow and red helmets are standing in front of a large crane. Some of them are holding shovels and brooms.", - "id": 32394 - }, - { - "image_path": "G:\\images\\combined\\006304_jpg.rf.3f250b9d560a4d501f5a3acb430dc712.jpg", - "response": "A construction worker is working on a large hole in the ground. He is wearing a yellow hard hat and orange safety vest. He is sitting on the ground and welding a large pipe. He is surrounded by sparks flying in all directions. In the background, there is a yellow and orange construction fence. Behind it, there is a concrete road. On the right side of the fence, there is a yellow pillar. In the distance, there are also two green trees and a white bus.", - "id": 32395 - }, - { - "image_path": "G:\\images\\combined\\006305_jpg.rf.2f4f8343e54bb4539581eff162e3cda9.jpg", - "response": "a group of men standing around each other", - "id": 32396 - }, - { - "image_path": "G:\\images\\combined\\006306_jpg.rf.317fdecd5e0358824d45f3b921d77203.jpg", - "response": "a group of men standing around a blueprint", - "id": 32397 - }, - { - "image_path": "G:\\images\\combined\\006307_jpg.rf.b7918784435606b69b564e1756d0ef5c.jpg", - "response": "The image shows a nighttime scene with rescue workers in orange jumpsuits standing around a man lying on the ground. The man is wearing a black shirt and grey pants. There is a suitcase next to him. A green laser light is being shone at the man from above.", - "id": 32398 - }, - { - "image_path": "G:\\images\\combined\\006308_jpg.rf.011565c408f2d4c353d37c7e93f8ae79.jpg", - "response": "A lineworker on a power pole with his right arm raised in the air.", - "id": 32399 - }, - { - "image_path": "G:\\images\\combined\\006309_jpg.rf.c8bfe20da1080c699a72d50a6b761a4c.jpg", - "response": "A construction worker is being rescued after a fall at a construction site. Firefighters and other workers are working together to save the man.", - "id": 32400 - }, - { - "image_path": "G:\\images\\combined\\00630_jpg.rf.7b102cc17f3ecfa9de80a1bab5ca9efc.jpg", - "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue work uniforms. One of the people is holding a grey and black electrical wrench. They are standing in front of a large building with a sign that says \u201cState Grid\u201d.", - "id": 32401 - }, - { - "image_path": "G:\\images\\combined\\00630_jpg.rf.99b5b9d642720a26efc872728b8237de.jpg", - "response": "In the image there are two people working on a machine. The machine is grey and has a sign on it that says \u201cState Grid\u201d. The two people working on it are wearing blue shirts. One of the people is holding a white tool in their hand. They are both wearing blue hats. In the background, there is a large building that says \u201c\u56fd\u5bb6\u7535\u7f51\u201d on it.", - "id": 32402 - }, - { - "image_path": "G:\\images\\combined\\006311_jpg.rf.2e6e69790350e916a071c2a48a3e9bc4.jpg", - "response": "The image shows a group of six men standing on a construction site. They are all wearing hard hats, and some are holding a discussion. In the background, there are two completed buildings and a building under construction. The ground is bare and the sky is grey.", - "id": 32403 - }, - { - "image_path": "G:\\images\\combined\\006312_jpg.rf.59b17dae4e64aa733cfddda7878786c1.jpg", - "response": "A group of men in blue shirts are gathered in a room with a large pipe in the foreground. The men are wearing safety helmets and the floor is red.", - "id": 32404 - }, - { - "image_path": "G:\\images\\combined\\006313_jpg.rf.d48704ad924d3261475028ce9c774e66.jpg", - "response": "A group of people standing around each other.", - "id": 32405 - }, - { - "image_path": "G:\\images\\combined\\006314_jpg.rf.88a06533d1824ddacf7c32bbd2bd4f7c.jpg", - "response": "Three construction workers(2,294),(232,988)(216,324),(535,889)(458,225),(646,633) are shown using a fire hose(598,368),(726,560) to extinguish a fire.", - "id": 32406 - }, - { - "image_path": "G:\\images\\combined\\006315_jpg.rf.c554924038631afe19226e33c49f17b1.jpg", - "response": "A construction site with workers in white and yellow helmets.", - "id": 32407 - }, - { - "image_path": "G:\\images\\combined\\006316_jpg.rf.3283db83cf8ea8dbe69755a8c055e6cd.jpg", - "response": "The image shows two workers in a room that is under construction. They are wearing blue overalls and yellow helmets. One of them is holding a tool with a black cable, which is connected to a yellow helmet. The room has a stone wall and the floor is covered with debris.", - "id": 32408 - }, - { - "image_path": "G:\\images\\combined\\006318_jpg.rf.fa28d976d834b5b9bf30f2657fd19b3d.jpg", - "response": "In the image there are three workers wearing blue jumpsuits and yellow hard hats. They are working on a large grey metal pipe. There are several other grey metal pipes around them. In the background, there is a grey building and some trees.", - "id": 32409 - }, - { - "image_path": "G:\\images\\combined\\006319_jpg.rf.34862cf2c4c1affe1465f3288ce45d0c.jpg", - "response": "A group of men working on an electrical tower.", - "id": 32410 - }, - { - "image_path": "G:\\images\\combined\\006320_jpg.rf.d73839739fcc3e34dad52f406cb021c2.jpg", - "response": "A construction worker wearing a yellow hard hat is looking down at a piece of wood. The worker is wearing a yellow hard hat, a blue shirt, and a black bracelet. The worker is also wearing glasses. There are several wooden bars stacked next to the worker.", - "id": 32411 - }, - { - "image_path": "G:\\images\\combined\\006321_jpg.rf.0413e97cda9c4a8f7f3033f54c87b689.jpg", - "response": "A group of four men wearing yellow and white vests and blue hats are standing in front of a large white machine. The men are wearing yellow and white vests and blue hats. The machine has a screen on it and the words \"\u898f\u7bc4\u7528\u96fb\" (Standardize\u7528\u7535) are written on it. The men are touching some sort of device on the front of the machine.", - "id": 32412 - }, - { - "image_path": "G:\\images\\combined\\006323_jpg.rf.590b1409ad4bafab1ad5fdda352ae597.jpg", - "response": "A construction site with workers.", - "id": 32413 - }, - { - "image_path": "G:\\images\\combined\\006324_jpg.rf.77d19a51e8225c59992372e4432aea91.jpg", - "response": "A group of men standing around a large spool of wire.", - "id": 32414 - }, - { - "image_path": "G:\\images\\combined\\006326_jpg.rf.e620890d148586a5510c8c38ecfb1dbe.jpg", - "response": "A group of men standing in front of a white board.", - "id": 32415 - }, - { - "image_path": "G:\\images\\combined\\006327_jpg.rf.64557db467c649632c1fad233800a9d3.jpg", - "response": "In the image, a group of workers wearing white, blue or yellow helmets are working on a rocky hillside next to a bridge. Some of them are using shovels and there is a pile of wood in the foreground. The sky is overcast and there are some green trees in the background.", - "id": 32416 - }, - { - "image_path": "G:\\images\\combined\\006328_jpg.rf.07bcc1ea22078fc040cc59d30dff5755.jpg", - "response": "A man in a hard hat is on a ladder against a blue sky.", - "id": 32417 - }, - { - "image_path": "G:\\images\\combined\\006329_jpg.rf.3bfe34e9de2330426f2cc545e410c8ce.jpg", - "response": "A man wearing a yellow hard hat is standing next to a ladder.", - "id": 32418 - }, - { - "image_path": "G:\\images\\combined\\00632_jpg.rf.759be877c48022ef66d2ebeabd1c879d.jpg", - "response": "In the image there are four people, three of them are wearing construction hats and one is wearing a white hat. They are standing in front of a building that is under construction. The person on the right in the front is holding a yellow safety helmet and a phone in his hands. There's a red utility trailer with some tools on it on the left side of the image.", - "id": 32419 - }, - { - "image_path": "G:\\images\\combined\\006330_jpg.rf.4bcc6c2ff6a99f6cddc5ce2cab9189e5.jpg", - "response": "a person wearing a helmet and scarf standing in front of a building", - "id": 32420 - }, - { - "image_path": "G:\\images\\combined\\006331_jpg.rf.6fb403e79771378586ab4731e04ad9af.jpg", - "response": "The image shows four workers perched on a red bridge. They are wearing yellow helmets and work clothes. The bridge appears to be a red suspension bridge, with cables and metal frameworks visible. The workers are positioned at various points along the bridge, with two of them working on the left side and two more on the right. They seem to be engaged in maintenance or construction work. The sky is blue and cloudless in the background.", - "id": 32421 - }, - { - "image_path": "G:\\images\\combined\\006332_jpg.rf.9b08757a362df735a8a6e43d7c7877dd.jpg", - "response": "In the image there are three people working on a construction site. Two of the people are wearing yellow vests and two of them are wearing blue vests. They are working on a blue structure that has Chinese characters on it. The characters say \"udosu\" on the left and \"zhanshi hua\" on the right. The people are wearing yellow, blue, and white hard hats. One person is using a blue tool on the ground and another person is using a blue tool that is suspended in the air.", - "id": 32422 - }, - { - "image_path": "G:\\images\\combined\\006333_jpg.rf.03c3f457afdbbca686486d217804c738.jpg", - "response": "The image shows three men in blue shirts and yellow hats standing in front of a white building. They are wearing yellow helmets and red labor insurance helmets. The man on the left is holding a pen and paper, the man in the middle is wearing a watch, and the man on the right is standing next to a sign with a hand icon and the words \"\u7981\u6b62\u89e6\u6478\". There is also a red box next to the sign with the words \"\u5b89\u5168\u8b66\u544a\".", - "id": 32423 - }, - { - "image_path": "G:\\images\\combined\\006334_jpg.rf.0ae36caeeac3282248b318a8616d3b76.jpg", - "response": "The image shows two men wearing blue work clothes and yellow high visibility vests. The man on the left is wearing a red hard hat and is holding a piece of paper. The man on the right is wearing a helmet and has a QR code on the right side of his helmet. They are both standing in front of a construction site.", - "id": 32424 - }, - { - "image_path": "G:\\images\\combined\\006335_jpg.rf.5027b5de827f8c0198ea9187c0a76f26.jpg", - "response": "A worker in an orange uniform and yellow hard hat is working on a large spool of black wire outdoors. He is wearing a white glove on his left hand and is holding a knife in his right hand. He is standing next to a large wooden spool of wire. There are power lines in the background.", - "id": 32425 - }, - { - "image_path": "G:\\images\\combined\\006336_jpg.rf.8427f17630ffc3341e8d7add855bac89.jpg", - "response": "A group of men in hard hats and work clothes are working on an electricity pylon in the mountains.", - "id": 32426 - }, - { - "image_path": "G:\\images\\combined\\006337_jpg.rf.554e3fec9edb6dfde2e52950e4fcfe34.jpg", - "response": "A group of people working on machinery inside a factory.", - "id": 32427 - }, - { - "image_path": "G:\\images\\combined\\006338_jpg.rf.b0232d62e5c2f4bdfbfd3976fce78430.jpg", - "response": "A worker is on a ladder and is working on a wall.", - "id": 32428 - }, - { - "image_path": "G:\\images\\combined\\006339_jpg.rf.5e9fd5a9b817ec6372ef93c088bf7277.jpg", - "response": "A group of workers wearing yellow and blue helmets are building a steel structure. Some of them are kneeling on the structure and secure some wires with pliers. In the background, a city is visible.", - "id": 32429 - }, - { - "image_path": "G:\\images\\combined\\006340_jpg.rf.df43be812b79d1a712fe2ac29b859f8d.jpg", - "response": "In the image two men are standing on a hillside wearing orange jackets and white helmets. They are standing next to a large piece of equipment that looks like a drone. They are working on the equipment, one of them is adjusting a yellow cable.", - "id": 32430 - }, - { - "image_path": "G:\\images\\combined\\006341_jpg.rf.56e9263d2575c2b3ae2f00bba1f086a4.jpg", - "response": "The image shows a group of people standing in a room. There are two men on the left and three men in the center of the image. One of the men in the center is wearing a white shirt and a tie. Another man on the right is wearing a grey shirt and glasses. A woman on the right is wearing a grey shirt and black pants. A man in the center is wearing a white shirt and a tie. Another man on the right is wearing a white shirt and black pants. A third man on the right is wearing a white shirt and black pants. A fourth man on the right is wearing a white shirt and black pants. A fifth man on the right is wearing a white shirt and black pants. A sixth man on the right is wearing a white shirt and black pants. A seventh man on the right is wearing a white shirt and black pants. A eighth man on the right is wearing a white shirt and black pants. A ninth man on the right is wearing a white shirt and black pants. A tenth man on the right is wearing a white shirt and black pants. A eleventh man on the right is wearing a white shirt and black pants. A twelfth man on the right is wearing a white shirt and black pants. A thirteenth man on the right is wearing a white shirt and black pants. A fourteenth man on the right is wearing a white shirt and black pants. A fifteenth man on the right is wearing a white shirt and black pants. A sixteenth man on the right is wearing a white shirt and black pants.", - "id": 32431 - }, - { - "image_path": "G:\\images\\combined\\006342_jpg.rf.6a0dd1e014e22108ebcfb31b2b58b00c.jpg", - "response": "A construction worker in a grey t-shirt and white hard hat is showing a page of blueprints to another worker in a yellow hard hat. They are both standing in front of a construction site with a red and white fence.", - "id": 32432 - }, - { - "image_path": "G:\\images\\combined\\006343_jpg.rf.fe0fa1c987924871e009392136821b8e.jpg", - "response": "A worker in a red and grey jacket and a red helmet is handling some metal rods. He is in a construction site and there are some other metal rods around him.", - "id": 32433 - }, - { - "image_path": "G:\\images\\combined\\006345_jpg.rf.85d5060b744f66b97ada4072de8e8cae.jpg", - "response": "The image shows a man in a hard hat drinking water from a clear plastic bottle. He is wearing a red hard hat, a striped shirt, and has a mustache. He is also wearing a blue watch. In the background, there is a bridge that the man is working on. The sky is blue with some clouds.", - "id": 32434 - }, - { - "image_path": "G:\\images\\combined\\006346_jpg.rf.65b64089786a0a29a10183bc8b4969de.jpg", - "response": "The image shows a group of six men standing in front of a brick building. They are all wearing jackets and the men on the left and right are wearing dark colors, while the man in the center is wearing a red and black jacket. The men are all standing close together and are all looking in the same direction.", - "id": 32435 - }, - { - "image_path": "G:\\images\\combined\\006347_jpg.rf.daad684f56899bbd8f32a658391e784b.jpg", - "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a tunnel and looking into the distance. The man on the left is younger and has a concerned look on his face. The man on the right is older and also looks serious. They are both holding a blueprint in front of them.", - "id": 32436 - }, - { - "image_path": "G:\\images\\combined\\006348_jpg.rf.263f535d604485586be47b37ce9e1ed4.jpg", - "response": "A group of people working on a construction site with a yellow excavator.", - "id": 32437 - }, - { - "image_path": "G:\\images\\combined\\00634_jpg.rf.13c7f0103e08954306a49c8e43a508c7.jpg", - "response": "The photo shows a construction site in the city of Chongqing, with a pile of rubble in the foreground. In the background, a group of people are gathered, with one of them holding a yellow sign. There is also a large pipe in the scene.", - "id": 32438 - }, - { - "image_path": "G:\\images\\combined\\00634_jpg.rf.2dbaf1d8b57e0d804f09100dd06e2edb.jpg", - "response": "The image shows a group of men standing on a construction site. They are wearing yellow and white reflective vests. In the background, there is a large pipe. To the left of the image, there is a sign that says \"\u4e2d\u56fd\u4e2d\u9752\u5c40\u52a0\u7eb3\u7b2c\u4e00\" in blue and white. In the foreground, there is a piece of paper with a yellow stripe that says \"\u6ce8\u610f\" in black.", - "id": 32439 - }, - { - "image_path": "G:\\images\\combined\\006350_jpg.rf.7d3dd194bf91182b3da038471648878d.jpg", - "response": "The image shows two men wearing yellow and white safety helmets, discussing a construction site. The man on the left is darker-skinned and wearing a yellow helmet, while the man on the right is lighter-skinned and wearing a white helmet. The man on the right is pointing to something on the construction site, and the other man is holding a plan in his hand. The plan is rolled up and shows a blueprint of the site. In the background, there is a yellow excavator.", - "id": 32440 - }, - { - "image_path": "G:\\images\\combined\\006351_jpg.rf.1c7034cb39b4d0619a88f8e0b702bcef.jpg", - "response": "A group of men walking down a sidewalk.", - "id": 32441 - }, - { - "image_path": "G:\\images\\combined\\006352_jpg.rf.36ed04cebb036282f464d2f4101b24e1.jpg", - "response": "In the image two people are standing in a factory wearing hard hats. They are both holding notepads and are looking into a oven.", - "id": 32442 - }, - { - "image_path": "G:\\images\\combined\\006353_jpg.rf.be7b7c8a977deb8b5a0c2b23a768de29.jpg", - "response": "The image shows two miners working in a cave. They are both shirtless and wearing yellow helmets. One miner is on the left, holding a large wooden beam while the other is on the right, holding a metal mesh net. They are both in the process of installing a metal fence. The cave is dimly lit and the floor is covered with a layer of yellow sand. The wall on the right is white with black spots and the left wall is grey with black spots and a brown layer at the bottom. The left wall also has a square metal fence installed. The miners are very skinny and have strong muscles.", - "id": 32443 - }, - { - "image_path": "G:\\images\\combined\\006354_jpg.rf.6d14758f4e491f0210cde5cef6309960.jpg", - "response": "In the image there is a group of men working on a pole. The men are wearing orange jumpsuits. In the background there is a forest. There is a yellow truck parked next to the men.", - "id": 32444 - }, - { - "image_path": "G:\\images\\combined\\006355_jpg.rf.7bd8df350bb937a62a2468600f9d57b7.jpg", - "response": "A worker is using a tool to chip away at ice that has formed on a power line. The ice is a few inches long and is hanging from the power line. The worker is wearing a yellow jacket and a blue hat with a white stripe.", - "id": 32445 - }, - { - "image_path": "G:\\images\\combined\\006356_jpg.rf.1c8771bbe40e301202af45ca202e85c8.jpg", - "response": "In the image there is a man on the left wearing a black suit and a tie, he is shaking hands with a man on the right who is wearing a grey suit. They are both shaking hands. In the background there is a black car. To the left of the image there is a stack of news papers with the date 20141022. Underneath the image there is a logo that says \"zhong jin jia you shang hang ke\" and the characters \"\u4e2d\u6c5f\u56fd\u9645\u5546\u8d38\u57ce\"", - "id": 32446 - }, - { - "image_path": "G:\\images\\combined\\006357_jpg.rf.fdd49226966265a0beda45ac2e99814b.jpg", - "response": "A pair of linemen work together to remove a bamboo shoot from a power line.", - "id": 32447 - }, - { - "image_path": "G:\\images\\combined\\006359_jpg.rf.beeebce5500e9b99e3dac05205918e7d.jpg", - "response": "a man in a blue shirt is standing in a field", - "id": 32448 - }, - { - "image_path": "G:\\images\\combined\\00635_jpg.rf.28b76c1a0a237e58f3fe21be4dce7c16.jpg", - "response": "Three men in hard hats and safety vests are looking at a blueprint in a construction site.", - "id": 32449 - }, - { - "image_path": "G:\\images\\combined\\00635_jpg.rf.4948e3e2169cbab0c2b23888194f02a7.jpg", - "response": "Three men in high visibility vests and hard hats are discussing plans while on a building site. One man is holding a set of plans and a cup.", - "id": 32450 - }, - { - "image_path": "G:\\images\\combined\\006360_jpg.rf.2f660238b01d51f049e21fe605e0cc1f.jpg", - "response": "A group of men standing around a yellow truck.", - "id": 32451 - }, - { - "image_path": "G:\\images\\combined\\006361_jpg.rf.572be4627bb1433a202c68bbdc722745.jpg", - "response": "The image shows a group of men walking together. They are all wearing hard hats, and some of them are wearing suits. In the background, there are several buildings under construction. There is also a car parked on the right side of the image.", - "id": 32452 - }, - { - "image_path": "G:\\images\\combined\\006362_jpg.rf.5f99102b15b5525d6f0f2f8462facf2f.jpg", - "response": "A worker in a blue helmet is walking on the train tracks.", - "id": 32453 - }, - { - "image_path": "G:\\images\\combined\\006363_jpg.rf.6fdf3d88f2465bdd8f3c9a2d2af6ea76.jpg", - "response": "a man wearing a exoskeleton suit holding a hard hat", - "id": 32454 - }, - { - "image_path": "G:\\images\\combined\\006364_jpg.rf.ccadbea7e267bd8dc6c8f1c25c595bb0.jpg", - "response": "A group of people, mostly men, are wearing red hard hats. They are standing in a tunnel. One man is wearing a white shirt and has his hand out to another man who is wearing an orange outfit. There are also two people in the background wearing black.", - "id": 32455 - }, - { - "image_path": "G:\\images\\combined\\006365_jpg.rf.c91eeb9c4ab20ccbbcdf1e7d20471404.jpg", - "response": "A construction site with several people working on it. There are four people working on a grid of rebar, with two of them in the center and one on each side. Another person is working on the left side of the image. In the background, there are two people working on the right side of the image. There are also two white chairs in the bottom left corner of the image.", - "id": 32456 - }, - { - "image_path": "G:\\images\\combined\\006366_jpg.rf.0f98c13ec28f1188c68b97c8f5894b96.jpg", - "response": "A construction worker is working on a long white wall.", - "id": 32457 - }, - { - "image_path": "G:\\images\\combined\\006367_jpg.rf.8234a1a3b39fcf4e05b6a275f9eeca02.jpg", - "response": "A group of men standing in front of a building with one of them holding a whiteboard.", - "id": 32458 - }, - { - "image_path": "G:\\images\\combined\\006368_jpg.rf.8bf8e7445636723ecd06c795f3f5b58e.jpg", - "response": "The image shows two men standing at a construction site, both wearing yellow jackets and white helmets. They are both looking at a blueprint that is spread out on the ground in front of them. The blueprint is large and takes up most of the image. The two men are standing quite close together, with one man to the left and the other to the right. They both have their arms resting on the blueprint, and they seem to be discussing something.", - "id": 32459 - }, - { - "image_path": "G:\\images\\combined\\006369_jpg.rf.f5c499b1e6643038857901f355c9e358.jpg", - "response": "A man in a red shirt and yellow hat working on a power line.", - "id": 32460 - }, - { - "image_path": "G:\\images\\combined\\00636_jpg.rf.c465cd9e1e3da8643b43aff2f551bd99.jpg", - "response": "A man wearing a hard hat and holding a book and rolled up plans, standing in front of a pile of rocks and with buildings in the background", - "id": 32461 - }, - { - "image_path": "G:\\images\\combined\\006370_jpg.rf.dcc73f5e2326dc56dc70efe2b9097123.jpg", - "response": "A man in a red work suit and a yellow hard hat stands on a construction site. He is wearing a pair of work gloves on his hands. In the background, there is a mountain.", - "id": 32462 - }, - { - "image_path": "G:\\images\\combined\\006371ab5d547d81.jpg", - "response": "A living room with a black flat screen TV mounted on a wall. The TV is showing a video game with two characters on the screen. The room has a Wii console and a Wii game displayed on the TV. There are chairs and a bench in the room.", - "id": 32463 - }, - { - "image_path": "G:\\images\\combined\\006373_jpg.rf.a4a110c42cfdbcce49f3bb5f2d59d0fe.jpg", - "response": "A cement truck is unloading its load into a large ditch.", - "id": 32464 - }, - { - "image_path": "G:\\images\\combined\\006374_jpg.rf.c96b06a681cee6c11aec5308cf000205.jpg", - "response": "A man wearing a hard hat standing in front of a small building.", - "id": 32465 - }, - { - "image_path": "G:\\images\\combined\\006375_jpg.rf.9fbd652c6fd507c76236ce4f8f17c35f.jpg", - "response": "A construction worker wearing a white hard hat and work clothes is working on a construction site. He is standing next to a large concrete pillar and appears to be pulling on a metal rod that is sticking out of the pillar. There is a large amount of mud on the ground around the pillar and the worker.", - "id": 32466 - }, - { - "image_path": "G:\\images\\combined\\006377_jpg.rf.a24fc117a614c2b0a7530574f71dcaba.jpg", - "response": "A line of workers wearing yellow hard hats and orange safety harnesses.", - "id": 32467 - }, - { - "image_path": "G:\\images\\combined\\006378_jpg.rf.6ef15eeb86f163045d59c4bae2f5c05e.jpg", - "response": "A crane is lifting a large piece of metal over a city street.", - "id": 32468 - }, - { - "image_path": "G:\\images\\combined\\006380_jpg.rf.b0f8c91464148b49a1c3eb61f0c8d2ad.jpg", - "response": "An electrician is working on some power lines.", - "id": 32469 - }, - { - "image_path": "G:\\images\\combined\\006381_jpg.rf.7ed6e492d778f8227bd1ff9dafad046a.jpg", - "response": "A power line tower with two men working on it.", - "id": 32470 - }, - { - "image_path": "G:\\images\\combined\\006383_jpg.rf.bdafec43cb3e5b6a4a0083fedcee8765.jpg", - "response": "The image shows two workers in a tunnel, with one of them using a tool to break up rocks. The workers are wearing yellow helmets and the one using the tool is also wearing a white shirt. The tunnel is filled with rocks and debris on the floor.", - "id": 32471 - }, - { - "image_path": "G:\\images\\combined\\006384_jpg.rf.616e19b24f7a5f54e714354837156697.jpg", - "response": "In the image, two men are working on a pole in the ground. The men are wearing blue and orange hard hats. To the left of the men, there is a green cornfield. Behind the cornfield, there is a building with a sign on it. The sign has Chinese characters on it. To the right of the men, there are red chairs and a table.", - "id": 32472 - }, - { - "image_path": "G:\\images\\combined\\006385_jpg.rf.734abfa5951e5fe694919ccccceb3f6d.jpg", - "response": "A worker wearing a yellow hard hat and green work gear is suspended from a metal pole by a safety harness. He is wearing a yellow hard hat and has a hook in each hand. He is standing on a construction site with a building in the background.", - "id": 32473 - }, - { - "image_path": "G:\\images\\combined\\006386_jpg.rf.42757bcec6ec07e2c688a695a3c35be7.jpg", - "response": "A group of people standing around a man who is showing them something on a map.", - "id": 32474 - }, - { - "image_path": "G:\\images\\combined\\006387_jpg.rf.8513f8a332a37f5efc5f090a0b72324a.jpg", - "response": "The image shows two men standing on a scaffolding platform against a dark roof. The roof is made of grey tiles and has some wooden beams showing. The sky is white and there are no other people or objects in the image.", - "id": 32475 - }, - { - "image_path": "G:\\images\\combined\\006388_jpg.rf.ad48475749fa1aa196c3cbe36768584b.jpg", - "response": "A worker in a factory, surrounded by smoke.", - "id": 32476 - }, - { - "image_path": "G:\\images\\combined\\006389_jpg.rf.6692646b01df33481da015a6dcac69f9.jpg", - "response": " Miners(447,153),(905,886)(10,44),(458,952) in a cave", - "id": 32477 - }, - { - "image_path": "G:\\images\\combined\\00638b89f1c6c142.jpg", - "response": "A page from an anime show with the heading Scene 4 Attacking Ramsus' vessel.", - "id": 32478 - }, - { - "image_path": "G:\\images\\combined\\00638_jpg.rf.d97607aa4996bdeb93840c8cd485f2a3.jpg", - "response": "A construction worker wearing a blue hard hat and an orange safety vest.", - "id": 32479 - }, - { - "image_path": "G:\\images\\combined\\00638_jpg.rf.e2dc077fa164b6f345bd387590a281f6.jpg", - "response": "A construction worker wearing a blue hard hat and an orange safety vest.", - "id": 32480 - }, - { - "image_path": "G:\\images\\combined\\006390_jpg.rf.9cb8ece094310741fd51ebda0f50b707.jpg", - "response": "A man in a blue shirt and blue hat working on a power line.", - "id": 32481 - }, - { - "image_path": "G:\\images\\combined\\006391_jpg.rf.918d442021f13888d45e696d7dc7ebe6.jpg", - "response": "A woman in black and white is talking to a man with a microphone.", - "id": 32482 - }, - { - "image_path": "G:\\images\\combined\\006392_jpg.rf.4e97f36bd5eaffcbe10d9557342c47fe.jpg", - "response": "The image shows two workers in blue hard hats and white protective masks, with one worker carrying a large sledgehammer and the other worker holding a longhandled tool. They are both wearing yellow work vests and are on a steel staircase and platform.", - "id": 32483 - }, - { - "image_path": "G:\\images\\combined\\006394_jpg.rf.876c1b1575b9eb352538e793e1990702.jpg", - "response": "A busy street scene with a power pole with a traffic light on it. There are many people walking around and some are riding motorcycles. There are buildings on both sides of the street and a few cars are parked or driving.", - "id": 32484 - }, - { - "image_path": "G:\\images\\combined\\006395_jpg.rf.27e81814420057dc95181f6be512edcf.jpg", - "response": "In the image there are two construction workers on a building site. They are both smiling at the camera. The man on the left is wearing a yellow high visibility vest and a red hard hat. The man on the right is wearing a blue hard hat and a yellow high visibility vest. In the background there is a yellow tractor.", - "id": 32485 - }, - { - "image_path": "G:\\images\\combined\\006396_jpg.rf.534782629cd14f7f8f8ce80c02109be5.jpg", - "response": "In the image there are two people wearing yellow and orange safety vests and white helmets. They are talking about a blueprint that is lying on a construction site. The man on the left is wearing a blue helmet and his right hand is on the table, while his left hand is supporting the blueprint. The man on the right is wearing a white helmet and his left hand is on the table, while his right hand is holding a pen. They are both looking at the blueprint.", - "id": 32486 - }, - { - "image_path": "G:\\images\\combined\\006398_jpg.rf.c8c89b56c438920e3a6b64e012781ea5.jpg", - "response": "A construction site with two workers.", - "id": 32487 - }, - { - "image_path": "G:\\images\\combined\\006399_jpg.rf.a36a9744f1e095a0463135365e1222c7.jpg", - "response": "A construction worker wearing a grey shirt and grey jeans with a orange hard hat on.", - "id": 32488 - }, - { - "image_path": "G:\\images\\combined\\0063cc2c5f7d82ed.jpg", - "response": "A bright blue colored car is parked on the side of the road. The car has a pink sticker on the windshield. There is a yellow car parked next to the blue car. There are two people in the background. One person is wearing a blue shirt and has blonde hair. The other person is wearing a pink shirt. There is a tan building in the background. There is a sign on the building. There is a black and white sign on the building. There is a yellow and black sign on the building. There is a blue and white sign on the building. There is a red and white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the building. There is a white sign on the", - "id": 32489 - }, - { - "image_path": "G:\\images\\combined\\006400_jpg.rf.d4799cb344778a62837dc8afff57090f.jpg", - "response": "Three men in hard hats standing together with their arms around each other at a construction site", - "id": 32490 - }, - { - "image_path": "G:\\images\\combined\\006401_jpg.rf.ca7d00b767925caf5713336deee17d5b.jpg", - "response": "A firefighter(138,133),(584,867) wearing a white helmet(342,315),(473,490) and a yellow oxygen tank(437,555),(587,797) is climbing down into a hole in the ground.", - "id": 32491 - }, - { - "image_path": "G:\\images\\combined\\006402_jpg.rf.048946cc720eb3a6ff71f80105033725.jpg", - "response": "A group of men working on a yellow and black truck.", - "id": 32492 - }, - { - "image_path": "G:\\images\\combined\\006403_jpg.rf.a94a8ed5ecf98a3fbc5fd2f420384aec.jpg", - "response": "A worker wearing a yellow hat is working on a pipe with a red hose. He is sitting on a stool and holding a pair of pliers. There are several other workers in the background, some are wearing yellow hats and some are wearing blue. They are all working on pipes.", - "id": 32493 - }, - { - "image_path": "G:\\images\\combined\\006404_jpg.rf.0a1bc78ffc304afef68b0270716ce644.jpg", - "response": "A group of men standing around a construction site", - "id": 32494 - }, - { - "image_path": "G:\\images\\combined\\006405_jpg.rf.e350f4461f21535518f6a24f58e7f4c3.jpg", - "response": "In the image there is a person wearing a yellow hard hat, safety glasses, and work gloves. They are working on a construction site, using a saw to cut through a metal rod. The person are kneeling down on a brick surface and there is a lot of metal pieces and construction tools around.", - "id": 32495 - }, - { - "image_path": "G:\\images\\combined\\006406_jpg.rf.990c8f003508cf61e10f05354a4ba841.jpg", - "response": "An engineer in a red hat sitting on the ground next to a power pole.", - "id": 32496 - }, - { - "image_path": "G:\\images\\combined\\006408_jpg.rf.953c7a6e5ecb6e33f11e5bbefa8a94a3.jpg", - "response": "A group of men in suits and hard hats are walking in a line. They are on a construction site with a building under construction. There is a banner with Chinese characters on it hanging on the left side of the image. In the background there is a partially constructed building with several floors and a steel scaffolding. There are also some plants in the foreground.", - "id": 32497 - }, - { - "image_path": "G:\\images\\combined\\006409_jpg.rf.4a0eb67428bdc87f29da1bbddc5f1f0f.jpg", - "response": "The image shows a group of men standing in front of a bus, shaking hands. Some of the men are wearing ties and one is wearing a white helmet. The bus is a white color and is parked on the left side of the image. In the background, there is a blue sky with no clouds.", - "id": 32498 - }, - { - "image_path": "G:\\images\\combined\\00640_jpg.rf.1b496544d47573344bf674669004d563.jpg", - "response": "A group of men(380,337),(469,622)(128,480),(231,807)(339,396),(391,586)(688,328),(775,653)(2,483),(128,858) standing in front of a building under construction", - "id": 32499 - }, - { - "image_path": "G:\\images\\combined\\00640_jpg.rf.ccf1b031dc1d371dd4f961031d37eec0.jpg", - "response": "Men(127,480),(233,806)(380,337),(469,622)(337,397),(390,586)(686,328),(776,653)(2,482),(129,858) standing in front of a building that is under construction", - "id": 32500 - }, - { - "image_path": "G:\\images\\combined\\006410_jpg.rf.f5fe30f9357af57730a6d732842aba6d.jpg", - "response": "A group of men standing in a dirt lot.", - "id": 32501 - }, - { - "image_path": "G:\\images\\combined\\006411_jpg.rf.d6ef20627f49a11bc5cc900046635ca7.jpg", - "response": "The image shows a group of men gathered around a large metal door with a window. They are all wearing hard hats and one of them is holding a long, red rod with a flame on the end. The flame is being used to light the room, which has a few pieces of metal machinery in it. The background is a blue wall and a brick wall.", - "id": 32502 - }, - { - "image_path": "G:\\images\\combined\\006412_jpg.rf.201dff8f0c4b82efa566a1c1125ffc7e.jpg", - "response": "The image shows a tunnel with two workers inside. One worker is on the left and is wearing a white helmet and dark clothes. The other worker is on the right and is wearing a yellow helmet and coveralls. In the background, a yellow machine is working in the tunnel. It appears to be\u6316ing the ground.", - "id": 32503 - }, - { - "image_path": "G:\\images\\combined\\006414_jpg.rf.df4e566b8b9fa67bd2b207ac445dc8b1.jpg", - "response": "In the image, two men are standing in front of a construction site. The man on the left is wearing camouflage clothing and a red hard hat. The man on the right is wearing a black suit and a red hard hat. They are both holding hands. In the background, there is a green construction tent with a red sign that reads \"Safety First, People Always Come First\". There are also several other people in the background.", - "id": 32504 - }, - { - "image_path": "G:\\images\\combined\\006415_jpg.rf.1c258ecd01167aa459d5d1df8ee1425a.jpg", - "response": "Two construction workers dressed in hi vis vests and hard hats are talking in a building site.", - "id": 32505 - }, - { - "image_path": "G:\\images\\combined\\006416_jpg.rf.12e50a33b76f25fb1009e959ede29e92.jpg", - "response": "A group of people standing in front of a bridge holding a banner that says 'China Hong Kong Railway Institution' on it.", - "id": 32506 - }, - { - "image_path": "G:\\images\\combined\\006417_jpg.rf.eee22e42c120d6cfe477461e9117609d.jpg", - "response": "A large tunnel with a man standing in it.", - "id": 32507 - }, - { - "image_path": "G:\\images\\combined\\006418_jpg.rf.eea2e3efe8944087874ea0e5887c4986.jpg", - "response": "The image shows a train track with train tracks on both sides. In the middle of the image, there are four workers wearing blue helmets and clothes. They are working on the train tracks, with two of them holding tools and standing on the tracks, and the other two holding the other end of the tool. There is a car next to the workers, and a red object is placed on the ground near the workers.", - "id": 32508 - }, - { - "image_path": "G:\\images\\combined\\006419_jpg.rf.9142e9d696af5851536994222d001026.jpg", - "response": "In the image, a worker is seen crouching down in a factory. The factory is filled with steel pipes and machinery. The worker is wearing a blue shirt, a yellow helmet, and glasses. The background shows a yellow and white building.", - "id": 32509 - }, - { - "image_path": "G:\\images\\combined\\006421_jpg.rf.f4b3ce0ebe74b98c0b7feaa868ffe68d.jpg", - "response": "A group of police officers standing around.", - "id": 32510 - }, - { - "image_path": "G:\\images\\combined\\006422_jpg.rf.1c02d7feeca207c0774f0df5de616740.jpg", - "response": "a group of men walking across a bridge", - "id": 32511 - }, - { - "image_path": "G:\\images\\combined\\006423_jpg.rf.9d9026772fcf9bac1a9657ccabbc92d4.jpg", - "response": "A man in a high visibility vest and hard hat is standing in a quarry with two diggers working in the background. The man is pointing to the left and is on a cell phone.", - "id": 32512 - }, - { - "image_path": "G:\\images\\combined\\006424_jpg.rf.f94c1281a3cad627e3498c129df493bf.jpg", - "response": "The image shows two men crossing a river. They are wearing yellow hard hats and carrying backpacks. The men are barefooted and are walking on rocks and pebbles. The river is shallow and rocky, with snow on the ground around it. The sky is overcast and there are some trees in the background.", - "id": 32513 - }, - { - "image_path": "G:\\images\\combined\\006425_jpg.rf.741ca41620036fb791686e6b79fc1c3a.jpg", - "response": "The image shows three construction workers standing on a bridge at night. They are all wearing yellow hard hats and grey construction vests. The worker on the left is holding a large red pipe while the worker in the middle is pouring concrete into a bucket. The worker on the right is holding two buckets, one in his right hand and the other on the ground. The bridge appears to be made of steel and has wooden planks laid across it. The sky is dark and there are no other people or vehicles visible in the image.", - "id": 32514 - }, - { - "image_path": "G:\\images\\combined\\006426_jpg.rf.0633d38753d4bfe60f7a010c1fd84a2e.jpg", - "response": "A construction worker in a yellow hard hat and orange work vest.", - "id": 32515 - }, - { - "image_path": "G:\\images\\combined\\006427_jpg.rf.1330f7f3f1f4b72dbbbea2e8afbfd242.jpg", - "response": "A man wearing a white shirt and a red helmet stands in a construction area. He is holding a blue folder and looking through a piece of surveying equipment.", - "id": 32516 - }, - { - "image_path": "G:\\images\\combined\\006428_jpg.rf.abf2b11402333c71356f4be30884d807.jpg", - "response": "A group of people standing around each other", - "id": 32517 - }, - { - "image_path": "G:\\images\\combined\\006429_jpg.rf.c743baef08ca335eca77aa528c311622.jpg", - "response": "A group of rescue workers in orange jumpsuits and yellow helmets are in a flooded street. They are wearing orange jumpsuits and yellow helmets. Some of them are holding blue plastic pipes. In the background, there are buildings on both sides of the street. Some of the buildings have orange doors and windows. There is a white boat in the middle of the street. A man in a white shirt is standing in the background on the right side of the street. There is a black and yellow striped pole in the foreground on the right side of the street. There is a large silver object on the pole. There is a white sign on the side of a building in the background on the right side of the street.", - "id": 32518 - }, - { - "image_path": "G:\\images\\combined\\006430_jpg.rf.2ccdb4e1a99e9d0a7a93282d41f34d22.jpg", - "response": "The image shows a group of three Chinese miners in a dark coal mine. They are wearing hard hats and one of them is holding a long, thick steel beam. Another miner is using a drill to work on the steel beam. The miners are hunched over and appear to be focused on their task. The background is blurred, emphasizing the focus on the miners.", - "id": 32519 - }, - { - "image_path": "G:\\images\\combined\\006431_jpg.rf.892f36c8a627d458337f73d148bb91dd.jpg", - "response": "A large group of workers dressed in green camouflage clothing and red hard hats are lined up. Some of the workers are carrying shovels.", - "id": 32520 - }, - { - "image_path": "G:\\images\\combined\\006432_jpg.rf.68ebd7419b38ee2d797dd2c2f6cfda1f.jpg", - "response": "A group of people standing around a large orange and grey tunneling machine.", - "id": 32521 - }, - { - "image_path": "G:\\images\\combined\\006433_jpg.rf.75542d870000ab129dea38d0c6818f83.jpg", - "response": "A group of workers in yellow hard hats are working on a bridge.", - "id": 32522 - }, - { - "image_path": "G:\\images\\combined\\006436_jpg.rf.bd0919d4967f8e087b5a2b803f7cada0.jpg", - "response": " Rescuers(387,511),(483,996)(315,537),(397,996)(93,548),(209,996)(1,517),(83,996) at the scene of the gold mine collapse in Yantai, in eastern China's Shandong province", - "id": 32523 - }, - { - "image_path": "G:\\images\\combined\\006437_jpg.rf.27055e4e037c21c625ae466ba21a5b66.jpg", - "response": "A group of men in blue jackets and yellow hard hats are standing around a telephone pole. They are in front of a village and it is raining.", - "id": 32524 - }, - { - "image_path": "G:\\images\\combined\\006438_jpg.rf.135daf912ac0d56abf807da656ea4ebb.jpg", - "response": "The image shows a group of people standing on a metal staircase. Some of them are wearing yellow, blue, and red hard hats. The staircase is located inside a cave or an underground space. The people seem to be rescue workers or miners, as they are equipped with tools and wearing specialized headwear. The scene appears to be a rescue operation or an exploration in a challenging environment.", - "id": 32525 - }, - { - "image_path": "G:\\images\\combined\\006440_jpg.rf.4aaef3a419154819e6252742b7147c35.jpg", - "response": "The workers are working on the large metal structure.", - "id": 32526 - }, - { - "image_path": "G:\\images\\combined\\006441_jpg.rf.b9afd7aa98cb08e071ac346ab6ef819b.jpg", - "response": "The image shows an older man wearing a yellow hard hat and safety glasses, standing in front of a construction site. He is looking down at the ground, which has a small rectangular hole in it. The man is wearing a white shirt and has a mustache. He is standing on the right side of the frame.", - "id": 32527 - }, - { - "image_path": "G:\\images\\combined\\006442_jpg.rf.319dcd55b6f0d583ea1efb215e1d617a.jpg", - "response": "The image shows a group of construction workers on a building site. They are all wearing hard hats and high visibility clothing. Some of them are standing on a walkway, while others are working on a steel girder. There is a large concrete pipe on the left side of the image, and a smaller one on the right. In the background, there is a hill with some power lines on it.", - "id": 32528 - }, - { - "image_path": "G:\\images\\combined\\006443_jpg.rf.472179ccfb6702a5987ebaab0d3675fd.jpg", - "response": "A worker in a yellow hard hat is holding a clipboard and looking up at a power line. Another worker is on a ladder working on the power line.", - "id": 32529 - }, - { - "image_path": "G:\\images\\combined\\006445_jpg.rf.8d63c2cff95eb3bdd394593ccf6a5df7.jpg", - "response": "A man in a blue uniform is standing on a bridge. There are two other men standing next to him, one wearing a orange shirt and a blue hard hat, and the other wearing a grey shirt and a yellow hard hat. In front of them is a table covered in various items including multiple bottles and a cup.", - "id": 32530 - }, - { - "image_path": "G:\\images\\combined\\006447_jpg.rf.311e1fa04a8b918a2afe1076860efe7a.jpg", - "response": "A group of people standing in front of a building site.", - "id": 32531 - }, - { - "image_path": "G:\\images\\combined\\006448_jpg.rf.d3309a41b3166c3744542e92abce676e.jpg", - "response": "The image shows a group of workers in blue uniforms and red hats standing on a section of train tracks. They are all holding onto a long metal bar, which appears to be a piece of train track. The workers are in various positions, with some standing on the left side of the tracks and others on the right. Some are closer to the front, while others are further back. There is a crowd of people in the background, watching the workers from a safe distance. They are standing on both sides of the tracks, near the edge of the image.", - "id": 32532 - }, - { - "image_path": "G:\\images\\combined\\006449_jpg.rf.0cd701d0e226903d68b84ae58bdad2fe.jpg", - "response": "A worker is standing in a tunnel with two trucks.", - "id": 32533 - }, - { - "image_path": "G:\\images\\combined\\00644_jpg.rf.761f43734ec33b7b894b5bde6fe33ccc.jpg", - "response": "A group of three men walking down a street.", - "id": 32534 - }, - { - "image_path": "G:\\images\\combined\\00644_jpg.rf.cb2b501cdef6d001e432c414a1581bd9.jpg", - "response": "a group of men walking in front of a truck", - "id": 32535 - }, - { - "image_path": "G:\\images\\combined\\006450_jpg.rf.6cc21d2472b86a87e15cef74b4b71d8e.jpg", - "response": "The image shows a scene of a construction site with several people present. In the foreground, a worker is laying bricks while a woman is observing the process. Another worker is on the left side of the image. A few onlookers are also present, one of them is holding a cup. Everyone, including the workers are wearing yellow helmets. In the background, there are a few other people and a building.", - "id": 32536 - }, - { - "image_path": "G:\\images\\combined\\006451_jpg.rf.063b10e6d168e58ec882d41f77aad94f.jpg", - "response": " Men(762,307),(948,997)(359,306),(612,692)(576,299),(748,999)(101,300),(350,738)(0,303),(173,997)(297,363),(397,699)(0,300),(61,999) standing around a piece of glass(89,476),(957,999)", - "id": 32537 - }, - { - "image_path": "G:\\images\\combined\\006453_jpg.rf.a7b7fc722b0d4b2c11698db0c4602911.jpg", - "response": "A group(620,326),(844,996)(430,380),(617,997)(379,371),(526,997)(595,301),(710,996) of men standing in a tunnel", - "id": 32538 - }, - { - "image_path": "G:\\images\\combined\\006454_jpg.rf.9cde12fe407145189287cd96eec45f79.jpg", - "response": " Two men(396,346),(640,997)(588,273),(909,997) in hard hats(600,272),(744,423)(467,346),(599,469) and high visibility vests(420,555),(635,997)(128,616),(209,758) standing in front of a piece(0,358),(431,869) of construction equipment", - "id": 32539 - }, - { - "image_path": "G:\\images\\combined\\006456_jpg.rf.01a539193e375fdd7b37f3fef42f2921.jpg", - "response": "A construction site with several people working on it. They are working on a large grid of metal rebar. There is a man in a red hard hat holding a large tool. Another man is in the bottom right corner wearing a red hard hat. There is a person in the top left corner wearing a white shirt and a red hat. There is a person in the top right corner wearing a white shirt and a blue hat.", - "id": 32540 - }, - { - "image_path": "G:\\images\\combined\\006457_jpg.rf.a8e2cce7bb13f39f37eef1bf5566c6c8.jpg", - "response": "In the image there are two men walking through a mine tunnel. They are both wearing blue coveralls and white helmets. In front of them on the right side of the image there are several steel pipes. Some of them are orange and others are silver. In the background there are grey stone walls and the roof of the tunnel is white. There is also a ladder on the left side of the image.", - "id": 32541 - }, - { - "image_path": "G:\\images\\combined\\006458_jpg.rf.8f400640fcf005804a99099cc05e5ba6.jpg", - "response": "A construction site with a group of men working on a building.", - "id": 32542 - }, - { - "image_path": "G:\\images\\combined\\006459_jpg.rf.06651f2c7ba18b9d00afee3d4e699a66.jpg", - "response": "Two men in high visibility clothing and hard hats stand in front of a large white dome. They are both holding clipboards and talking.", - "id": 32543 - }, - { - "image_path": "G:\\images\\combined\\006460_jpg.rf.c6ba719539adbdae5d820e9e82003bce.jpg", - "response": "The image shows a group of men working on a snowy day. They are all dressed in safety gear, including hard hats and safety vests. The men are standing under a power line, and snow is falling around them. One of the men is pointing towards the right, possibly indicating something to his colleagues. The image focuses on the group of men, but it also shows a portion of the power line and the snowfall in the background.", - "id": 32544 - }, - { - "image_path": "G:\\images\\combined\\006461_jpg.rf.60737a2fbc9d5778df63e3bc69e9b9ab.jpg", - "response": "A group of three men standing in front of a bulldozer. They are all wearing hard hats and one man is wearing a yellow safety vest. They are all smiling at the camera.", - "id": 32545 - }, - { - "image_path": "G:\\images\\combined\\006462_jpg.rf.c8f92bcde3f6ff45990d1642b81e4003.jpg", - "response": "In the image there is a person wearing a white hard hat and work clothes. They are standing next to a large pipe with a wheel on it. The person is also wearing work gloves. The background shows a lot of pipes.", - "id": 32546 - }, - { - "image_path": "G:\\images\\combined\\006463_jpg.rf.b78293980a04e04789df3e1e1ac80863.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 32547 - }, - { - "image_path": "G:\\images\\combined\\006464_jpg.rf.39301aaff950f561b371daa91c428b16.jpg", - "response": "A group of men working on a scaffold.", - "id": 32548 - }, - { - "image_path": "G:\\images\\combined\\006465_jpg.rf.2c06617245a5739b3a88025635513fb0.jpg", - "response": "A man in a blue uniform and yellow hard hat is walking across a concrete floor carrying a metal framework. The metal is stacked up against a yellow support beam on the right side of the room. The man is walking with the metal framework towards the left side of the room. There is a yellow ladder against the wall on the left side of the room and another one on the right side. In the background, there is a building that is under construction.", - "id": 32549 - }, - { - "image_path": "G:\\images\\combined\\006466_jpg.rf.75d3c14efd3d7240341bfdec496842eb.jpg", - "response": "A group of three workers are working on a construction site. Two of the workers are on the ground and one is high up on a scaffolding. The worker at the top of the scaffolding is wearing a white hard hat and has a tool belt around their waist. The two workers on the ground are also wearing hard hats. One of the workers on the ground is holding a clipboard and a pencil and the other worker is pointing towards something on the building they are working on.", - "id": 32550 - }, - { - "image_path": "G:\\images\\combined\\006467_jpg.rf.28e3f2f1a79a20ea4bb09281b1f95cb9.jpg", - "response": " A worker(2,392),(190,996) surveys the damage after a 12-story building under construction in the eastern Chinese city of Wenzhou suddenly collapsed on Sunday night. The cause of the collapse is under investigation.", - "id": 32551 - }, - { - "image_path": "G:\\images\\combined\\006468_jpg.rf.eff4d979a4a4a39b285cbc22930441d4.jpg", - "response": "A group of four men standing around a large metal bin.", - "id": 32552 - }, - { - "image_path": "G:\\images\\combined\\006469_jpg.rf.6c9a7e47d9eb080356ab605fbf980d51.jpg", - "response": "A man and a woman carrying wood on a construction site.", - "id": 32553 - }, - { - "image_path": "G:\\images\\combined\\006470_jpg.rf.2755733dd1a760aa0117545c2ff756e2.jpg", - "response": "a group of people standing together", - "id": 32554 - }, - { - "image_path": "G:\\images\\combined\\006471_jpg.rf.42e61ddcbe612b7ebeb65ade348e01c2.jpg", - "response": "The image shows a group of men standing around a white car. Some of them are shaking hands. The car is parked in front of a building. The men are wearing different colored shirts and ties. Some of them are wearing blue, white, red, yellow and black. One of the men is wearing a blue shirt and a tie. Another man is wearing a white shirt and a tie. The background is a building with a white wall and a window. The image also shows a handbag on the ground near the men.", - "id": 32555 - }, - { - "image_path": "G:\\images\\combined\\006472_jpg.rf.42a3ec8a59b089ffecc6d4b39cb28049.jpg", - "response": "Three men in yellow safety vests and hard hats looking at a blueprint on a jobsite.", - "id": 32556 - }, - { - "image_path": "G:\\images\\combined\\006473_jpg.rf.946e6979e188e5d099822eef862b9cde.jpg", - "response": "A worker in a red uniform and red helmet is operating machinery at an oil well.", - "id": 32557 - }, - { - "image_path": "G:\\images\\combined\\006474_jpg.rf.df7de16bcde46d7eaba655855726b091.jpg", - "response": "A worker is looking at a glowing orange light.", - "id": 32558 - }, - { - "image_path": "G:\\images\\combined\\006475_jpg.rf.058e7dbd85742b7bdff7cdb916e2f8c2.jpg", - "response": "A worker in a red helmet is on a ladder and is reaching up to a machine. Another worker in a blue helmet is crouching under the machine. They are both wearing work clothes. The wall behind them is red and has many square holes in it. There is a table in front of the workers with some tools on it.", - "id": 32559 - }, - { - "image_path": "G:\\images\\combined\\006476_jpg.rf.306cbc4a5401f52921e5f57a407ef399.jpg", - "response": " Three men(171,183),(502,997)(428,153),(863,997)(329,183),(514,909) in hard hats(359,182),(456,255)(625,151),(761,258) shake hands(415,526),(521,615) on a construction site", - "id": 32560 - }, - { - "image_path": "G:\\images\\combined\\006477_jpg.rf.90bbd9edd7dfd47c0173765f93c1c1ca.jpg", - "response": "A group of people working on a construction site.", - "id": 32561 - }, - { - "image_path": "G:\\images\\combined\\006478_jpg.rf.a0f99a55affd9dad9b0bd4026382f664.jpg", - "response": "A construction worker wearing a yellow hard hat and a plaid shirt is working on a construction site. He is wearing a yellow hard hat and has a yellow tool belt around his waist. He is working on a piece of wood with a large saw. In the background, there are blue skies with white clouds.", - "id": 32562 - }, - { - "image_path": "G:\\images\\combined\\006479_jpg.rf.e443a56cc3505ef28c4a7bf5d478ee07.jpg", - "response": "A construction worker in a red jumpsuit and a yellow safety vest with a red hard hat on. They are on a construction site and are working on a building. They are on a concrete pillar holding a tool.", - "id": 32563 - }, - { - "image_path": "G:\\images\\combined\\006480_jpg.rf.1dc5d99defe76ac9a474c21645b92fef.jpg", - "response": "The image shows a group of people gathered around a model of a large building complex. The model is on a glass table and features a landscape garden with a river running through it. The people are standing in front of a large staircase that is curved and leads to the second floor. The wall behind the staircase features a painting hanging on it. The people are looking at the model attentively. At the bottom right of the image, there is a white rectangular logo forfang.com.", - "id": 32564 - }, - { - "image_path": "G:\\images\\combined\\006482_jpg.rf.886d2e2f55b1d0df3d07a6e33109c6e1.jpg", - "response": "A construction crew works on a large rock wall.", - "id": 32565 - }, - { - "image_path": "G:\\images\\combined\\006483_jpg.rf.7c39d692ca77202afce5dbe9fa8da965.jpg", - "response": "A man and woman in hard hats looking at a clipboard.", - "id": 32566 - }, - { - "image_path": "G:\\images\\combined\\006484_jpg.rf.786700d2c8219eed9489172aeb3688b0.jpg", - "response": "a group of people standing around each other", - "id": 32567 - }, - { - "image_path": "G:\\images\\combined\\006485_jpg.rf.b3db45e5801c4d6449c948efd7c92f9e.jpg", - "response": "The image shows two workers in yellow helmets who are repairing power lines. They are wearing white shirts and are currently focused on the task at hand. The background shows a grey sky and a tower.", - "id": 32568 - }, - { - "image_path": "G:\\images\\combined\\006486_jpg.rf.4065d7913fd89c99232754d040541a3b.jpg", - "response": "A man in a grey suit and yellow hard hat is using a saw to cut a brick. He is standing on a pile of bricks and there are other workers in the background. They are all wearing hard hats.", - "id": 32569 - }, - { - "image_path": "G:\\images\\combined\\006487_jpg.rf.5769379167a5c7b1ba5d2980fa11f7c8.jpg", - "response": "Some construction workers are on a construction site. They are working on a foundation that has rebar in it. There is a mountain in the background.", - "id": 32570 - }, - { - "image_path": "G:\\images\\combined\\0064880cfb7b82ac.jpg", - "response": "A large building with many windows is at an intersection. There are traffic lights at the intersection and on the corners. There are several signs and benches in the area.", - "id": 32571 - }, - { - "image_path": "G:\\images\\combined\\006488_jpg.rf.754038916d3319ff97d12ed4515f41c4.jpg", - "response": "A man wearing a hard hat and safety vest is working on a large machine.", - "id": 32572 - }, - { - "image_path": "G:\\images\\combined\\006489_jpg.rf.72564d46ce90894b548624dd46711a06.jpg", - "response": "In the image two men are working on a construction site. They are wearing white and green shirts and yellow helmets. They are welding two large pieces of metal together. There is a lot of steel in the picture, some of it is brown and some is white. There is also a large amount of sparks flying around. The background is a large wooden structure.", - "id": 32573 - }, - { - "image_path": "G:\\images\\combined\\006490_jpg.rf.a3df6c8ce1f85f3edf0616fa6f5966d9.jpg", - "response": "A fireman standing in front of a fire.", - "id": 32574 - }, - { - "image_path": "G:\\images\\combined\\006491_jpg.rf.9b725da4545de740dc74e9e9e18823ab.jpg", - "response": "A group of men in grey work clothes and blue hats are working on an electrical box.", - "id": 32575 - }, - { - "image_path": "G:\\images\\combined\\006492_jpg.rf.3ccc542a26831fe30b6946d485681240.jpg", - "response": "A female worker at the site of the China-Pakistan Economic Corridor's Gwadar Port.", - "id": 32576 - }, - { - "image_path": "G:\\images\\combined\\006493_jpg.rf.82e869c389971e30b97568a62a120bc4.jpg", - "response": "A couple of men work on power lines in a rural area. They are wearing blue shirts and gray pants. One man is on a tall power pole and the other is on the ground. They are repairing the power lines.", - "id": 32577 - }, - { - "image_path": "G:\\images\\combined\\006494_jpg.rf.de5cded1b6f71a0f7e480532466964e4.jpg", - "response": "A group of men standing around a red rope.", - "id": 32578 - }, - { - "image_path": "G:\\images\\combined\\006495_jpg.rf.cb3b58265173a0bb25f6ab61ff4bd079.jpg", - "response": "A man is laying on the ground with a yellow hat on.", - "id": 32579 - }, - { - "image_path": "G:\\images\\combined\\006497_jpg.rf.0c134d3905d873e56e5c51d8765d7e08.jpg", - "response": "In the image there are multiple people working on a construction site that is covered in concrete. They are all working on a large area of concrete that is being finished. There are several levels of concrete curing in different areas of the photo.", - "id": 32580 - }, - { - "image_path": "G:\\images\\combined\\006498_jpg.rf.a446add1b49f5525cec374f071f81f3c.jpg", - "response": "a group of people standing around a construction site", - "id": 32581 - }, - { - "image_path": "G:\\images\\combined\\006499_jpg.rf.733af0294b995becdb8864bf10be09d9.jpg", - "response": "A man in a red jacket and a white hard hat is using a device to test a brick wall.", - "id": 32582 - }, - { - "image_path": "G:\\images\\combined\\006500d2b983306e.jpg", - "response": "A large billboard for LG, featuring their TV's, is shown on a building.", - "id": 32583 - }, - { - "image_path": "G:\\images\\combined\\006500_jpg.rf.4deef8887a138ed791dd2e56244efb2f.jpg", - "response": "A construction worker wearing a red hard hat is operating a piece of machinery. He is standing on a construction site with a city skyline visible in the background. There are several stacks of steel beams and other construction materials on the ground around him.", - "id": 32584 - }, - { - "image_path": "G:\\images\\combined\\006501_jpg.rf.6c4fdb30acd895f8737736e36b0ff0d6.jpg", - "response": "A man wearing a yellow safety vest and a red helmet is holding a blueprint in a construction site.", - "id": 32585 - }, - { - "image_path": "G:\\images\\combined\\006502_jpg.rf.bae670705c628959b8389a1302391eb9.jpg", - "response": "A group of people standing around a white car that is parked on some construction site. The car is located in the middle of the site, and the people are standing around it on different positions. There are some bamboo sticks on the foreground, and a person is holding a cell phone. The photo is taken from above, and there are some rubble on the ground.", - "id": 32586 - }, - { - "image_path": "G:\\images\\combined\\006504_jpg.rf.59b6fde37b952de358d911487424e6f3.jpg", - "response": "A man standing in front of a train car with a sign on it that says \"China\".", - "id": 32587 - }, - { - "image_path": "G:\\images\\combined\\006505_jpg.rf.39a61e9c95bc4d981309fe1bb2260384.jpg", - "response": "A man in a black jacket is showing two other men something on a map. They are standing next to a white SUV. There is a hill in the background.", - "id": 32588 - }, - { - "image_path": "G:\\images\\combined\\006506_jpg.rf.acaf1c33a1c0daf35c1d6e91056e98c4.jpg", - "response": "A man and two women in safety gear look at blueprints in a construction site.", - "id": 32589 - }, - { - "image_path": "G:\\images\\combined\\006507_jpg.rf.c6b63341cd2eaf385ccb26671888918d.jpg", - "response": "A man with a camera is standing in front of a tall building. The building is under construction and there is a crane operating next to it. The man is holding a camera and appears to be taking a picture of the building.", - "id": 32590 - }, - { - "image_path": "G:\\images\\combined\\006508_jpg.rf.71debd82bec56ce5e1291782b533a80a.jpg", - "response": "A group of workers are working on a construction site. They are working on a large building that is under construction. The workers are wearing yellow hard hats and some of them are wearing blue jackets. They are working on a large concrete slab with a machine that looks like a cement mixer. There are several people in the picture and some of them are carrying tools. In the background, there is a large building with lots of windows.", - "id": 32591 - }, - { - "image_path": "G:\\images\\combined\\006509_jpg.rf.40e73d3cffc2b82baab4e2a8fb97b3bb.jpg", - "response": "An engineer in a yellow hard hat and orange safety vest points towards a large crane in the background.", - "id": 32592 - }, - { - "image_path": "G:\\images\\combined\\00650_jpg.rf.286ce9ab49662d1b6b2036b0993f1fe3.jpg", - "response": "A construction worker with a bowl on his head and a friend stand in front of the construction site.", - "id": 32593 - }, - { - "image_path": "G:\\images\\combined\\00650_jpg.rf.d50f9de873b78071865201b0d0b9901e.jpg", - "response": "Two workers standing in front of a construction site. One man is carrying a heavy bowl on his head.", - "id": 32594 - }, - { - "image_path": "G:\\images\\combined\\006510_jpg.rf.7b84a161373a2332a6628bb8455596f1.jpg", - "response": "A miner is working in a cave, holding a mining tool.", - "id": 32595 - }, - { - "image_path": "G:\\images\\combined\\006511_jpg.rf.a532cce8f07928bc02e0d8d40102d35a.jpg", - "response": "A worker is seen in a cage of steel. He is crouching down and looking up. He is wearing a yellow hard hat, a brown vest, and brown pants. He is holding a tool in his right hand. The background shows a blue sky with white clouds. To the right of the image is the logo of the website and the words \"\u5317\u7eac\u7f51\".", - "id": 32596 - }, - { - "image_path": "G:\\images\\combined\\006512_jpg.rf.aec17ff94f7d527d215495b4fec2d9c9.jpg", - "response": "A construction worker is lifting a large metal crate with a crane. The crate is filled with steel rebar and is suspended in the air. The worker is reaching up to grab the crate. The crate is located in the center of the image and the worker is on the right hand side of the image. There is a yellow crane in the background on the left side of the image. The sky is overcast and the building site is under construction.", - "id": 32597 - }, - { - "image_path": "G:\\images\\combined\\006513_jpg.rf.86adbdf89b3c33e23b147583aceaefea.jpg", - "response": "The image shows two workers in yellow hard hats and blue uniforms standing on the side of a road. They are holding a long white rope that is attached to a black box. The workers are looking at the rope and the box.", - "id": 32598 - }, - { - "image_path": "G:\\images\\combined\\006514_jpg.rf.2fe869bd674679d456f5194fdf1f15f2.jpg", - "response": "The image shows a group of workers in orange jumpsuits and yellow hard hats carrying a large piece of metal at a construction site. They are all holding the metal together, which is shaped rectangular with rounded corners. They are all wearing the hard hats and the worker on the far left is wearing a white helmet under his hard hat. The workers are standing on a rocky surface with a blue sky and some clouds in the background. There are power lines in the background on the left side of the image.", - "id": 32599 - }, - { - "image_path": "G:\\images\\combined\\006515_jpg.rf.759434fb8ccf4dae2bac20e13139c532.jpg", - "response": "The picture shows the interior of the new Jiangmen City People's Hospital. The hospital is located on the People's Road in the city, and is the main medical center for the city. The hospital has a very large number of medical staff and a variety of medical equipment. The hospital also has a very good transport system, with a large number of buses stopping at the door of the hospital, making it very convenient for patients to go to the hospital.", - "id": 32600 - }, - { - "image_path": "G:\\images\\combined\\006516_jpg.rf.e4d8f0972f878e641fcc91bad55aed76.jpg", - "response": "A couple of men standing in front of a building that is under construction.", - "id": 32601 - }, - { - "image_path": "G:\\images\\combined\\006518_jpg.rf.b4db4675166e3fd1de889edbbd5b82a3.jpg", - "response": "A construction worker is pouring concrete on a bridge that is being built over a river.", - "id": 32602 - }, - { - "image_path": "G:\\images\\combined\\006519_jpg.rf.aa182e03c81e597b01a062c6ad20dbc4.jpg", - "response": "A group of workers are working on a construction site. They are wearing yellow helmets and are focused on their task. The ground is white and the sky is grey. There are several pillars in the scene and some steel bars.", - "id": 32603 - }, - { - "image_path": "G:\\images\\combined\\006520_jpg.rf.6edb2bab9105482a5551f206f4df6820.jpg", - "response": "A group of men in uniforms and hard hats are working on a power line in a mountainous area. They are standing on a mountain trail and one man is holding a power box while another man is operating a crane to lift a metal beam. There is a man in a blue uniform and yellow hard hat on the right side of the scene and another man in a red uniform and yellow hard hat on the left side of the scene.", - "id": 32604 - }, - { - "image_path": "G:\\images\\combined\\006521_jpg.rf.8189158bfaad391aff11a9951e6806c8.jpg", - "response": "A man wearing a hard hat and a high visibility vest stands in the entrance of a large tunnel. There is a large pipe in the background on the right hand side of the image and two people in the background on the right wearing high visibility vests.", - "id": 32605 - }, - { - "image_path": "G:\\images\\combined\\006522_jpg.rf.5dc29b076a90927c04867249dc647f91.jpg", - "response": "a group of people standing in front of a bus", - "id": 32606 - }, - { - "image_path": "G:\\images\\combined\\006523_jpg.rf.0e9896192749d630b382d6e136b7abf0.jpg", - "response": "In the image there is a person wearing a blue hard hat and work clothes, who is welding some metal with a torch. The person is kneeling on the ground and the torch is producing bright sparks as it welds the metal. The welding is being done outside, in the dark. There are some bricks and a pipe nearby.", - "id": 32607 - }, - { - "image_path": "G:\\images\\combined\\006524_jpg.rf.86534acfcb3eb92c20623dca50762548.jpg", - "response": "A man wearing a yellow hard hat and an orange vest standing in a warehouse next to a large metal cylinder.", - "id": 32608 - }, - { - "image_path": "G:\\images\\combined\\006526_jpg.rf.c95ef6df21eb8aaeccfa4360da562251.jpg", - "response": "A man in a blue shirt and orange hard hat is working on a train track.", - "id": 32609 - }, - { - "image_path": "G:\\images\\combined\\006527_jpg.rf.132e03937ef8a1652024fa01521b137d.jpg", - "response": "In the image, there are three construction workers working on a large construction site. They are standing on top of a large pile of metal rods, which are used to reinforce concrete. The workers are wearing orange and yellow vests, and one of them is wearing a hat. The metal rods are arranged in a grid-like pattern, and the workers are focused on their task. In the background, there are some buildings and a street.", - "id": 32610 - }, - { - "image_path": "G:\\images\\combined\\006528_jpg.rf.a4a942662a3e6ef2858c65688fb1fc73.jpg", - "response": "A man and a woman in orange work vests and red helmets stand in front of an oil well. The woman is holding a clipboard and pen and both are looking at the clipboard.", - "id": 32611 - }, - { - "image_path": "G:\\images\\combined\\006529_jpg.rf.d516347d49ad03e26a48af0212073b3b.jpg", - "response": "A group of four men standing in an unfinished building.", - "id": 32612 - }, - { - "image_path": "G:\\images\\combined\\00652_jpg.rf.0347e1f23d26aa72cdda6f0e42f380f2.jpg", - "response": "A woman wearing a hard hat and safety glasses stands in a shop with other workers in the background.", - "id": 32613 - }, - { - "image_path": "G:\\images\\combined\\00652_jpg.rf.e37a9f3051bba15fbb104f5eef9f032c.jpg", - "response": "A woman wearing a hard hat and safety glasses stands in a shop with three other men wearing hard hats and safety glasses. They are all standing behind her.", - "id": 32614 - }, - { - "image_path": "G:\\images\\combined\\006531_jpg.rf.23f8f0d9bbfa2e91a2dde33e7b11f54c.jpg", - "response": "A man in a blue hard hat is on a cherry picker.", - "id": 32615 - }, - { - "image_path": "G:\\images\\combined\\006533_jpg.rf.b4a608c561d8c9fca4b0e18ad0a838e7.jpg", - "response": "In the image there are two men working in a mine. They are both wearing orange vests and yellow hard hats. One of the men is holding a large pick axe and is standing in front of a large wheel. The men are in a tunnel and there is a ladder on the wall to their left. The tunnel is filled with rocks and there is a lantern hanging in the foreground.", - "id": 32616 - }, - { - "image_path": "G:\\images\\combined\\006535_jpg.rf.cefb964800cb364facd307fe0226a63a.jpg", - "response": "In the image three people are working on a construction site. They are all squatting and appear to be welding or cutting metal. The person on the left is wearing a white helmet and a brown jacket, the person in the middle is wearing a yellow helmet and a yellow and white jacket, and the person on the right is wearing a black helmet and a dark blue jacket. There are sparks flying from the welding and cutting.", - "id": 32617 - }, - { - "image_path": "G:\\images\\combined\\006536_jpg.rf.3c15aeafcec3b5284680c7e9327b15b4.jpg", - "response": "A couple of men are working on power lines.", - "id": 32618 - }, - { - "image_path": "G:\\images\\combined\\006537_jpg.rf.12c50f2b1b7dd5798dada6600512c579.jpg", - "response": "The image shows a group of men walking together in a construction site. They are all wearing black suits and one of them is wearing a red hard hat. There are several construction cranes in the background and a yellow fence is visible on the right side of the image. The ground is bare and dusty and there are a few people in the distance.", - "id": 32619 - }, - { - "image_path": "G:\\images\\combined\\006539_jpg.rf.e5727c72e38a7db85b5bdb39f12315b1.jpg", - "response": "A worker is working on a construction site.", - "id": 32620 - }, - { - "image_path": "G:\\images\\combined\\006540_jpg.rf.265c5027da05aab15c0cf4abb4029e3d.jpg", - "response": "The image shows two men in camouflage and orange work gear, one wearing a yellow hard hat and the other wearing a green hard hat, working on a street light.", - "id": 32621 - }, - { - "image_path": "G:\\images\\combined\\006542_jpg.rf.713c2ff41cf3f1cbffee87c35c23700b.jpg", - "response": "The image shows a group of workers walking on train tracks. There are five people in the picture, four of them wearing yellow jackets and orange helmets, and the fifth one is holding a drone. The train tracks are in the foreground and extend to the back of the picture. In the background, there is a mountain. To the left of the picture, there is a tall white electric pole.", - "id": 32622 - }, - { - "image_path": "G:\\images\\combined\\006543_jpg.rf.845cb7b5eab49226eb81f7b6791cb144.jpg", - "response": "A construction worker in a yellow hard hat and a black jacket is using a tool to repair a concrete pillar in a building. The worker is on a ladder and there is a second worker in the bottom right corner of the image. The background is a dark grey sky and a yellow light on the right side of the image.", - "id": 32623 - }, - { - "image_path": "G:\\images\\combined\\006544_jpg.rf.cec7ae59e705f09b4cf28fcb7d68a683.jpg", - "response": "The image shows a train track under construction. There are two workers wearing yellow hard hats and safety vests, one on the left and one on the right, both welding steel bars on the tracks. The sky is dark and the mountains behind are green, but the rest of the scene is not very detailed.", - "id": 32624 - }, - { - "image_path": "G:\\images\\combined\\006545_jpg.rf.ebc7a8c8ad4a85117fb285d6f04bcb7a.jpg", - "response": "A man wearing a yellow hard hat and a white shirt with black writing on it.", - "id": 32625 - }, - { - "image_path": "G:\\images\\combined\\006546_jpg.rf.ae9826b92f1f4fba2a3c639eacb176f6.jpg", - "response": "The image shows a group of people standing on a partially completed bridge. Some of the people are wearing hard hats and one is holding a clipboard. There are several pairs of shoes in the scene, but the people's clothing is not visible. In the background, a truck is parked on the bridge.", - "id": 32626 - }, - { - "image_path": "G:\\images\\combined\\006548_jpg.rf.d925e055a44907f3b65a5db4d60da438.jpg", - "response": "A group of men in white shirts and some in red safety helmets are standing in a room that has concrete walls and floor. Some men are holding tools.", - "id": 32627 - }, - { - "image_path": "G:\\images\\combined\\006549_jpg.rf.de9a9395e826cfcf4b4f7d6e1562d263.jpg", - "response": "The image shows a group of men standing on a rooftop. They are all dressed in business suits and are standing in a semi-circle. Some of them are holding cell phones. In the background, there are mountains and a cloudy sky. On the right side of the image, there is a white tarp being held up by a rope. Underneath the tarp, there is a car parked.", - "id": 32628 - }, - { - "image_path": "G:\\images\\combined\\006551_jpg.rf.573d5e01c599ae55ca529d72838b89fc.jpg", - "response": "The image shows a construction site with several workers around a cement truck. The truck is pouring concrete into a large cylindrical container, which is filled about halfway. The workers are standing around the container, with some near the front and others near the side. They are all wearing yellow hard hats and orange vests. In the background, there is a fence and a blue wall. The ground is covered in dirt and small rocks.", - "id": 32629 - }, - { - "image_path": "G:\\images\\combined\\006552_jpg.rf.a8191b19e496e9ec063f4d997e65b443.jpg", - "response": "A group of workers wearing hard hats are working on a construction site. They are pouring concrete on the ground.", - "id": 32630 - }, - { - "image_path": "G:\\images\\combined\\006553_jpg.rf.19f87244aa154497b22dfc94c14ba9e0.jpg", - "response": "A worker is on a power line in China.", - "id": 32631 - }, - { - "image_path": "G:\\images\\combined\\006554_jpg.rf.ffe5125bc63d788f396e56f4ea263c78.jpg", - "response": "A group of men in blue shirts and hats are working on a power line. They are standing on a ladder and are working on the power line.", - "id": 32632 - }, - { - "image_path": "G:\\images\\combined\\006555_jpg.rf.02208b6c8cf4e2c8d0f8572b6816a1da.jpg", - "response": "A group of men working on a construction site.", - "id": 32633 - }, - { - "image_path": "G:\\images\\combined\\006556_jpg.rf.3b7f083820b23d619c8b3192e9fa0978.jpg", - "response": "A woman wearing a red hard hat with the words \"\u4e2d\u9a6c\u5efa\u8bbe\" on it, and a red nose mask.", - "id": 32634 - }, - { - "image_path": "G:\\images\\combined\\006557_jpg.rf.e527f0b08ee4c5a929158fca9a7c486b.jpg", - "response": "A man wearing a yellow hard hat and carrying a hammer stands in front of a large pile of wooden planks. He is lifting a long, wooden beam over his head. In the background, there are other workers and stacks of wooden planks.", - "id": 32635 - }, - { - "image_path": "G:\\images\\combined\\006558_jpg.rf.d8f470e74b6684bb2df9eb377a543ade.jpg", - "response": "A worker in a yellow hard hat working on a wall of rebar.", - "id": 32636 - }, - { - "image_path": "G:\\images\\combined\\006561_jpg.rf.8c424d4a96fabab8e065ffd8087ace54.jpg", - "response": "A group of people wearing SeaWorld hard hats stand in a construction area.", - "id": 32637 - }, - { - "image_path": "G:\\images\\combined\\006562_jpg.rf.da743047c9402a35591823d1581ea8f6.jpg", - "response": "A group of four men are walking together. They are all wearing red helmets. The man on the left is wearing a red and white shirt and khaki pants. The man second from the left is wearing a red and white shirt and grey pants. The man in the middle is wearing a blue and white shirt and grey pants. The man on the right is wearing a blue and white shirt, blue jeans, and white sneakers. They are all walking on a unfinished road. In the background, there are buildings under construction.", - "id": 32638 - }, - { - "image_path": "G:\\images\\combined\\006563_jpg.rf.f9b917443bb15dfa86f80456445c4996.jpg", - "response": "A group of three construction workers are standing in front of a building. They are all wearing hard hats and white shirts. The man in the middle is wearing a yellow hard hat with the number 5944 on the brim. The man on the far left is also wearing a yellow hard hat. The man on the far right is wearing a blue hard hat. They are all looking up at the building.", - "id": 32639 - }, - { - "image_path": "G:\\images\\combined\\006565_jpg.rf.f5e6d5349f379fb93d6767fa74adbe82.jpg", - "response": "In the image there are three workers wearing blue work clothes and yellow hats. They are working on a construction site which can be described as a grey concrete ground with a lot of steel bars sticking out of it. There is a red and white banner hanging on a metal bar which says \"\u4e2d\u94c1\u6e2f\u822a\u5c40\u845b\u6d32\u575d\u5730\u94c12\u53f7\u7ebf\u957f\u5cad\u8def\u8f66\u8f86\u6bb5\" in yellow font. There are also two red flags on the left and right sides of the image. On the ground, there is a single sandal which is facing the right side of the image.", - "id": 32640 - }, - { - "image_path": "G:\\images\\combined\\006566_jpg.rf.379f71a03eecc2f7b1876ae77dbcfe18.jpg", - "response": "The image shows a group of workers standing inside a large tunnel. They are wearing yellow and blue jackets and are working on the side of the tunnel. The tunnel is made of concrete and has a curved wall. The workers are standing at various points along the curved wall, with some closer to the foreground and others further back. There is also a large circular hole in the foreground, and the word \"people\" is written in bottom right corner.", - "id": 32641 - }, - { - "image_path": "G:\\images\\combined\\006568_jpg.rf.5887138a5110569b13316c548d7ace17.jpg", - "response": "The image shows two men standing behind a piece of blue machinery with the words GDCJ-40 on the side. The machine appears to be some sort of\u94a2\u7b4b\u52a0\u5de5\u8bbe\u5907. There are several wires scattered around the floor and a couple of people are holding steel bars.", - "id": 32642 - }, - { - "image_path": "G:\\images\\combined\\006569_jpg.rf.4e84d9850f0a1ec14a557eefb16e003b.jpg", - "response": "The image shows two men in orange work suits and red hard hats walking through a large pile of coal. The background shows more coal piles and machinery.", - "id": 32643 - }, - { - "image_path": "G:\\images\\combined\\006570_jpg.rf.bcd9c0fa39c23131cff5a959dc703517.jpg", - "response": "A worker in a safety harness and blue hard hat is working on a power line. He is climbing a ladder that is secured to a tall power pole. He is holding a tool in his mouth and working on the insulator of the power line. The power line is black and the insulator is white. The worker is wearing a green camouflage shirt and tan pants. There is a rope attached to the pole and a tool belt around his waist. The sky is blue with white clouds.", - "id": 32644 - }, - { - "image_path": "G:\\images\\combined\\006571_jpg.rf.bb8f6fee187bba6d4a97be11f64f9ed0.jpg", - "response": "The image shows a group of construction workers working on a road. They are building a concrete structure, possibly a guardrail, along the side of the road. There are five workers in the picture, all wearing yellow helmets. One worker is holding a large piece of wood, while another worker is operating a machine. The workers are located near the side of the road, which is visible at the top of the image. The background shows a field with crops, giving the impression that the construction work is taking place in a rural area.", - "id": 32645 - }, - { - "image_path": "G:\\images\\combined\\006572_jpg.rf.0945d3e58db0c5ec8425323a4b22b0bf.jpg", - "response": "a group of people standing around a table", - "id": 32646 - }, - { - "image_path": "G:\\images\\combined\\006573_jpg.rf.c55f5b2024df69384fa2679188e558d4.jpg", - "response": "A construction site with a Hitachi orange and black excavator digging up a pile of dirt and\u6e23\u571f. Two construction workers are operating the excavator.", - "id": 32647 - }, - { - "image_path": "G:\\images\\combined\\006574_jpg.rf.26bb09c7c1d564629a48e987d7a0dd73.jpg", - "response": "The image shows two workers in blue uniforms and yellow reflective vests, with one worker holding a long tool while the other worker is holding a rope. They are both smiling and looking up at a power line.", - "id": 32648 - }, - { - "image_path": "G:\\images\\combined\\006575_jpg.rf.66ed7e83d20718e22476661c43e17a77.jpg", - "response": "A group of men working on a construction site.", - "id": 32649 - }, - { - "image_path": "G:\\images\\combined\\006576_jpg.rf.a3be4975d79ee0e2613b64e25a7af080.jpg", - "response": "The image shows a group of people wearing yellow and orange vests and white helmets. They are standing in front of a building under construction. In the foreground, a man is handing another man a box of bricks. The scene is quite busy, with many people standing around and interacting with each other.", - "id": 32650 - }, - { - "image_path": "G:\\images\\combined\\006577_jpg.rf.0ab98b67d7c4effc47fff9f0e0545f8e.jpg", - "response": "a group of people standing in a room that is under construction", - "id": 32651 - }, - { - "image_path": "G:\\images\\combined\\006579_jpg.rf.db4f4fb4bea172c91b683d7f9141325c.jpg", - "response": "A group of men standing in a room.", - "id": 32652 - }, - { - "image_path": "G:\\images\\combined\\006580_jpg.rf.9707cd2862739ea4fa315eb7f336b87a.jpg", - "response": "A construction worker in a hard hat working on a building.", - "id": 32653 - }, - { - "image_path": "G:\\images\\combined\\006581_jpg.rf.a70bcfd9f67f00bbdba1927ffe170e2f.jpg", - "response": " Two construction workers(386,178),(549,979)(612,87),(795,962) walking towards a truck(563,55),(872,550) that is driving away", - "id": 32654 - }, - { - "image_path": "G:\\images\\combined\\006582_jpg.rf.c0f7821fbba36ae417eadb45862c07b4.jpg", - "response": "A construction site with several people working on it. There are many metal rods and red pipes scattered around the site. A man is working on the left side of the image, and another man is working on the right side. In the background, there are mountains and a cloudy sky. There are also a few buildings visible in the distance.", - "id": 32655 - }, - { - "image_path": "G:\\images\\combined\\006583_jpg.rf.da886c46dd79d721d72dbf040742bc26.jpg", - "response": "A man sitting on a stool on a construction site, talking on a cell phone. He is wearing a white helmet, a red jacket, a white shirt, and a tie. He is also wearing a watch and a pair of blue jeans.", - "id": 32656 - }, - { - "image_path": "G:\\images\\combined\\006584_jpg.rf.f7e32b51e40adcec4cbea7f003c2f691.jpg", - "response": "A group of men standing on a construction site.", - "id": 32657 - }, - { - "image_path": "G:\\images\\combined\\006585_jpg.rf.141ef1262fc041188367a02a5aed8f48.jpg", - "response": "The image shows a group of workers in orange vests and blue helmets who are installing a power cable on the sea. They are on a ship with a white superstructure. In front of the ship, there are two large wheels with red spokes. On the left side of the ship, there is a row of boxes with the characters \"WDG\".", - "id": 32658 - }, - { - "image_path": "G:\\images\\combined\\006586_jpg.rf.2d445a52d4508ac5a41bd41efda9bfbc.jpg", - "response": "The image shows a factory scene with two workers in the foreground, one on the left and one on the right, both wearing yellow hard hats. They are working on a large piece of equipment, a red boiler, which takes up most of the middle ground of the image. The boiler has a door in the middle and a pipe sticking out on each side. In the foreground, there is a pile of red bricks and some metal debris.", - "id": 32659 - }, - { - "image_path": "G:\\images\\combined\\006587_jpg.rf.5c6084b4a5e9c419172d9aefc98aeb54.jpg", - "response": "A group of three multi-racial engineers or construction workers looking at blueprints outside on a sandy beach or construction site.", - "id": 32660 - }, - { - "image_path": "G:\\images\\combined\\006588_jpg.rf.c05e518ea0df7630118d70d12ce70798.jpg", - "response": "A man in an orange hard hat is working on a construction site. He is holding a hammer and kneeling down next to a piece of wood. He appears to be the only person in the image. There are other people in the background, but they are too small and far away to make out any details. There are many wooden boards scattered around the floor, some of which are in the foreground and some of which are in the background. There are also many pipes on the floor, some of which are in the foreground and some of which are in the background. The room the man is working in has a high ceiling and appears to be under construction.", - "id": 32661 - }, - { - "image_path": "G:\\images\\combined\\006590_jpg.rf.49230ff1781b717dbffbc0ad3570da82.jpg", - "response": "Two workers in yellow and red hard hats, one with a goatee, are talking next to a building. One is holding a wooden plank and a pipe.", - "id": 32662 - }, - { - "image_path": "G:\\images\\combined\\006591_jpg.rf.b8463ade05d647cf93a0b99b711ff84b.jpg", - "response": "The image shows a group of people gathered around a man who is lying on the ground in the dirt. The man appears to be injured and is being attended to by the group of people. Some of the people are wearing hard hats, and there is a rope nearby. The scene likely takes place outdoors and during the day.", - "id": 32663 - }, - { - "image_path": "G:\\images\\combined\\006594_jpg.rf.d5edad3b3096d5a72412f8414c9403b4.jpg", - "response": "A construction worker in a blue uniform and orange hard hat is working on a construction site. He is wearing a blue uniform and has a tool in his hand. He is standing next to a wall and a road. In the background, there are trees.", - "id": 32664 - }, - { - "image_path": "G:\\images\\combined\\006595_jpg.rf.e9f2179011f3ffa4b4aead7fc98709e9.jpg", - "response": "a group of men standing around each other", - "id": 32665 - }, - { - "image_path": "G:\\images\\combined\\006596_jpg.rf.99c33bdd3ef44f3a961177f18c64ff90.jpg", - "response": "The image shows two men standing on a construction site, both of them dressed in business suits. One man is wearing a yellow hard hat and pointing towards the left, while the other man is wearing a yellow hard hat and looking in the same direction. Both men are wearing sunglasses.", - "id": 32666 - }, - { - "image_path": "G:\\images\\combined\\00659725b6fc87d5.jpg", - "response": "A group of women playing a game of indoor basketball.", - "id": 32667 - }, - { - "image_path": "G:\\images\\combined\\006597_jpg.rf.7fb4cea9c27b0fc6f0e9b18350bb25ef.jpg", - "response": "A worker walks past oil drums at a Pertamina fuel depot in Jakarta, Indonesia.", - "id": 32668 - }, - { - "image_path": "G:\\images\\combined\\006598_jpg.rf.fac4f5357ecf34f3cb57a089bfcca1dd.jpg", - "response": "A couple of men wearing hard hats are sitting on a curb eating food.", - "id": 32669 - }, - { - "image_path": "G:\\images\\combined\\006599_jpg.rf.379af078478c1d54e48d4a7feb829f22.jpg", - "response": "In the image you can see a group of people. Among them, there are men wearing blue suits and yellow helmets. Some of them are wearing ties. In the background, there is a train.", - "id": 32670 - }, - { - "image_path": "G:\\images\\combined\\0065bfca13dd4b6b.jpg", - "response": "The image shows a selection of soda bottles on a shelf. There are four bottles in total, arranged in a row. The first two bottles on the left are labeled \"Genuine Jamaican Kola Champagne\" and are orange in color. The second two bottles on the right are labeled \"Genuine Jamaican Ginger Beer\" and are green in color. The labels on the bottles feature the DG logo.", - "id": 32671 - }, - { - "image_path": "G:\\images\\combined\\006600_jpg.rf.6de4288d1a095b8786aaeb675dfffda1.jpg", - "response": "A group of men sitting around a table.", - "id": 32672 - }, - { - "image_path": "G:\\images\\combined\\006602_jpg.rf.931fc2f9ead4f4fcf5ce1cf808e97e1c.jpg", - "response": "In the image there are three men dressed in blue and yellow work clothes and yellow helmets. They are suspended on a wire, which is part of a power line. They are in the process of installing a power line. Below them, there is a large crowd of people watching the event. In the distance, there are also two excavators working.", - "id": 32673 - }, - { - "image_path": "G:\\images\\combined\\006603_jpg.rf.0a2d171576322597a508d7b38cfb1e8f.jpg", - "response": " a person(533,345),(962,997) wearing a hard hat(639,345),(781,496)", - "id": 32674 - }, - { - "image_path": "G:\\images\\combined\\006604_jpg.rf.028631cb408f94364cd521daf0fd2705.jpg", - "response": "A group of people standing around each other.", - "id": 32675 - }, - { - "image_path": "G:\\images\\combined\\006605_jpg.rf.cb09816774f18da80aab69794764278c.jpg", - "response": "In the image there are two men working in a factory. They are both wearing hard hats and green coveralls. The man on the left is bent over and appears to be sweeping up debris with a broom. The man on the right is standing in the background. In front of them is a pile of debris consisting of bricks and wood. To the far right of the image there is a large red cylinder.", - "id": 32676 - }, - { - "image_path": "G:\\images\\combined\\006606_jpg.rf.f915353ccc99a5f7f423d29b53e51cd2.jpg", - "response": "The image shows a man wearing a yellow hard hat sitting in a small, dark space. He is looking at a large pipe with a flashlight on his forehead. The space is dirty and the walls are concrete. The man has a pen in his pocket and there is a bottle on the ground. He is wearing a blue shirt with a small logo on the pocket and has a tattoo on his right arm. The background is blurry and the image is focused on the man.", - "id": 32677 - }, - { - "image_path": "G:\\images\\combined\\006607_jpg.rf.50c2f72b5d5ddeb46d474497f69a6d49.jpg", - "response": "In the image there is a construction site with a person working on it. The person is wearing a yellow helmet and is standing on a red metal framework. The metal framework consists of horizontal and vertical red pipes. The person is building the framework, possibly placing or adjusting a red pipe. The background is a light grey sky.", - "id": 32678 - }, - { - "image_path": "G:\\images\\combined\\006608_jpg.rf.f66b776f3b2051e8cbaf518818b4a7a1.jpg", - "response": "A group of men standing around a large metal container.", - "id": 32679 - }, - { - "image_path": "G:\\images\\combined\\006609_jpg.rf.ce9e2971e1c3e9ff6aaa979ad9db3a7a.jpg", - "response": "The two men are wearing yellow jackets.", - "id": 32680 - }, - { - "image_path": "G:\\images\\combined\\006610_jpg.rf.eb0ef62c3cd457abd0fdd4dccd6f0e10.jpg", - "response": "a group of people standing around a tree", - "id": 32681 - }, - { - "image_path": "G:\\images\\combined\\006611_jpg.rf.25802835457e02aaa8cdcddf01ad470c.jpg", - "response": "A worker is seen at a steel factory in China's Hebei province.", - "id": 32682 - }, - { - "image_path": "G:\\images\\combined\\006612_jpg.rf.8d7b791714235216127c23d1ef70c9bb.jpg", - "response": "A group of people walking through a tunnel under construction. The tunnel is under a blue and white sign that says \"\u5b89\u5168\u901a\u9053\" which translates to \"Safety Corridor\". There is a large sign above the tunnel that says \"\u8d28\u91cf\u662f\u4f01\u4e1a\u7684\u751f\u547d\" which translates to \"Quality is the life of the enterprise\". The people walking through the tunnel are wearing hard hats and the tunnel itself is a bright yellow color.", - "id": 32683 - }, - { - "image_path": "G:\\images\\combined\\006613_jpg.rf.5cec28fa9ff6d61b13880f57fd8471b3.jpg", - "response": "A man wearing a yellow safety vest and a orange hard hat is holding a blue paper while looking at the camera. He is standing underneath a scaffolding.", - "id": 32684 - }, - { - "image_path": "G:\\images\\combined\\006614_jpg.rf.78694838e91d09fba7945348810d0be0.jpg", - "response": "A group of three men are working on a house. Two of them are on a ladder, one of them is holding it and the other is either fixing something on the ceiling or painting. There is a bucket on the ground and a chair in the room.", - "id": 32685 - }, - { - "image_path": "G:\\images\\combined\\006615_jpg.rf.7b907977a28a58b45d33980050dfac6d.jpg", - "response": "The image shows a group of people working at a construction site. They are wearing hard hats and are focused on their tasks. The workers are standing on a large framework of metal rods and concrete, which appears to be the foundation of a building. Some of the workers are closer to the foreground, while others are further away. A few of them are engaged in conversations with each other. In the background, there is a crane operating in the distance.", - "id": 32686 - }, - { - "image_path": "G:\\images\\combined\\006617_jpg.rf.85746cbbb251ec333bcd1ab2e1b96c06.jpg", - "response": "A man wearing a blue shirt and blue shoes is on a zipline.", - "id": 32687 - }, - { - "image_path": "G:\\images\\combined\\006618_jpg.rf.5fc3b24deffe963131d06236e6419e2e.jpg", - "response": "The picture shows a group of people gathered in a room. They are standing behind a model of a building. On the wall, there is a large advertising board saying \"City King\". There are also some advertising boards showing the features of the project. A man in a suit is explaining something to a group of people. One of the people is taking photos with a smartphone.", - "id": 32688 - }, - { - "image_path": "G:\\images\\combined\\006619_jpg.rf.bdbc1c251b54502b7460bfec72b45861.jpg", - "response": "A group of people standing on a boat.", - "id": 32689 - }, - { - "image_path": "G:\\images\\combined\\006620_jpg.rf.5e5f1f3e0c605ca195cbe776a5f392f0.jpg", - "response": "The image shows a group of men standing in a large, unfinished warehouse. They are all dressed in business suits and are standing in a loose circle. Some of the men are holding cell phones, and one of them has a hand in his pocket. The warehouse has a bare concrete floor and large open beams on the walls. There are also some pieces of machinery visible in the background.", - "id": 32690 - }, - { - "image_path": "G:\\images\\combined\\006621_jpg.rf.6a48029f7366989fbfb14d75607e6a1f.jpg", - "response": "A group of men standing around a red flag.", - "id": 32691 - }, - { - "image_path": "G:\\images\\combined\\006624_jpg.rf.50602eac360c74f28320a406e715f344.jpg", - "response": "The image shows a construction site in a city. Several workers are working on a grid of steel bars, which are laid out in a grid on the ground. The workers are wearing yellow hard hats and are focused on their tasks. In the background, there are several buildings under construction, including one that has been completed and has a yellow sign on it. The sky is grey and overcast, and there is a street light on the left side of the image.", - "id": 32692 - }, - { - "image_path": "G:\\images\\combined\\006625_jpg.rf.513cf3a2157e6060f416dfc39f981871.jpg", - "response": "A construction site with several people working on the structure.", - "id": 32693 - }, - { - "image_path": "G:\\images\\combined\\006626_jpg.rf.1f46ea063bb0d881a20bb34cef39df89.jpg", - "response": " Two men(456,454),(602,997)(629,425),(770,997) standing in front of a sign that reads \" \u4e2d\u94c1\u4eba\u6c11\u91cd\u5efa\u7389\u6811\u4e8c\u4e00\u5de5\u7a0b\"", - "id": 32694 - }, - { - "image_path": "G:\\images\\combined\\006627_jpg.rf.ca677bfb3e769d11570dbb51c2312a51.jpg", - "response": "A group of men in suits standing in a circle in a lot.", - "id": 32695 - }, - { - "image_path": "G:\\images\\combined\\006628_jpg.rf.d733dd6ebe1dafe792ac5e344b8f4161.jpg", - "response": "In the image, a worker is seen wearing a blue shirt and a blue helmet. The worker is working on a large yellow valve, which is part of a large yellow pipeline. The pipeline is filled with a dark liquid. The worker is holding a green tool in his hand, and he is looking at the camera. The background is a concrete wall and a yellow pipeline.", - "id": 32696 - }, - { - "image_path": "G:\\images\\combined\\006630_jpg.rf.58507ab23bd00ceb4def78a1a30de324.jpg", - "response": "A worker in a yellow hard hat and blue coveralls is standing on a work platform. He is wearing a yellow hard hat and is looking down at a work surface. He is also wearing a blue glove on his left hand. In the background, there is a large red and white construction vehicle. To the far right, there is a red metal box. In the far distance, there is a mountain range.", - "id": 32697 - }, - { - "image_path": "G:\\images\\combined\\006631_jpg.rf.8e6a674f0e6eb2fc85600f461d37e008.jpg", - "response": "The image shows a construction crew working on a road project. The workers are wearing yellow hard hats and are installing\u8def\u8fb9\u77f3 along the road. The image is taken at a construction site with a red and yellow building in the background.", - "id": 32698 - }, - { - "image_path": "G:\\images\\combined\\006632_jpg.rf.389e6ec17516c553c80bb17b6e995887.jpg", - "response": "In the image there are two people standing next to a large piece of equipment. The equipment has many hoses and wires coming out of it. The people are wearing hard hats and one of them is holding a drill. They are also standing next to a truck.", - "id": 32699 - }, - { - "image_path": "G:\\images\\combined\\006633_jpg.rf.f013d495c1c5c7ad176f0a0de066b9b8.jpg", - "response": "The image shows a city street scene with a road on the left and a sidewalk on the right. A row of trees, some with yellow ribbons on them, are being worked on by a crew of four men wearing orange vests. One man is on the left, two others are in the middle, and the fourth is on the right. A truck is parked next to the sidewalk on the right. In the background, there are tall buildings and a hedge.", - "id": 32700 - }, - { - "image_path": "G:\\images\\combined\\006634_jpg.rf.05f5a9b0598e2eba17a3b04ce4246223.jpg", - "response": "Men in front of a large poster on the sidewalk.", - "id": 32701 - }, - { - "image_path": "G:\\images\\combined\\006635_jpg.rf.4d29dec068f1a2d20e014694cf758e2f.jpg", - "response": "The image shows two workers in a cave. They are wearing yellow and red hard hats, green raincoats and orange rain pants. One worker is on the left holding a drill while the other is on the right. They are both working in the rain. The word \"WORKER\" is in red on the bottom right of the image.", - "id": 32702 - }, - { - "image_path": "G:\\images\\combined\\006636_jpg.rf.1e3d0af4daa65816431954e1c64d86ab.jpg", - "response": "A worker in a red uniform and blue hard hat is standing on a platform in a substation, working on a transformer. The platform is surrounded by yellow caution tape. The worker is wearing white gloves and has a tool belt around his waist. The background shows a large transformer and many power lines.", - "id": 32703 - }, - { - "image_path": "G:\\images\\combined\\006637_jpg.rf.0089681bd14e0ec728506cc2bdd3da77.jpg", - "response": "In the image there are two workers wearing orange and red clothes and hardhats, one worker is on the left and the other is on the right. They are both crouching down and working on a piece of machinery. The worker on the left is holding a black pipe and the worker on the right is holding a black pipe with a red handle.", - "id": 32704 - }, - { - "image_path": "G:\\images\\combined\\006638_jpg.rf.1701bfa3ad274105f6501787485be4b6.jpg", - "response": "A man wearing a yellow hard hat and carrying two pieces of wood over his shoulder. He is standing in front of a building that is under construction.", - "id": 32705 - }, - { - "image_path": "G:\\images\\combined\\006639_jpg.rf.c753839d112bce7ff23586cc52b6d375.jpg", - "response": "a group of people standing around each other", - "id": 32706 - }, - { - "image_path": "G:\\images\\combined\\006640_jpg.rf.78312633ca8b6c9a032ae82ca31f08e8.jpg", - "response": "A group of people working on a bamboo structure.", - "id": 32707 - }, - { - "image_path": "G:\\images\\combined\\006642_jpg.rf.65d7ab5ea0bd473f638cf98ea57f0f8c.jpg", - "response": "A construction worker wearing a white helmet is working on a building.", - "id": 32708 - }, - { - "image_path": "G:\\images\\combined\\006643_jpg.rf.8c365ecb4b718563efc747bba6edd90a.jpg", - "response": "A construction site with three people working on it.", - "id": 32709 - }, - { - "image_path": "G:\\images\\combined\\006644_jpg.rf.4d6e9f55927ca361afa9f8685dbd6be6.jpg", - "response": "In the image there are two people working on a construction site, wearing hard hats and building a large structure of concrete.", - "id": 32710 - }, - { - "image_path": "G:\\images\\combined\\006645_jpg.rf.44c3815c98c32459d76666cd2de80ef1.jpg", - "response": "Two men in grey uniforms and yellow hard hats are looking at a large white and grey transformer. The man on the left is wearing a yellow hard hat with a red and grey sticker on the right side and a yellow hard hat with a red sticker on the left side. The man on the right is taking a picture of the transformer with a camera.", - "id": 32711 - }, - { - "image_path": "G:\\images\\combined\\006646_jpg.rf.d93a4b551bbb1e8a8a5e7279fe9f08b6.jpg", - "response": "A construction worker standing on a bridge with a yellow hard hat on.", - "id": 32712 - }, - { - "image_path": "G:\\images\\combined\\006647_jpg.rf.607aae3e65157cd8b346d389ddd15511.jpg", - "response": "In the image there is a group of people working on a construction site. They are working on a foundation for a building. Some of the people are wearing yellow vests for safety. In the background there is a blue sky with clouds. There is also a machine that looks like it is used for construction.", - "id": 32713 - }, - { - "image_path": "G:\\images\\combined\\006648_jpg.rf.538288f94538d47b4fcf31968163a72d.jpg", - "response": "The image shows two men in a room measuring a wall. They are wearing hard hats and one of the men is also wearing a white shirt. In front of them is a black tripod with a device on top, which appears to be a level or a measuring device. The wall they are measuring is grey and the room appears to be unfinished.", - "id": 32714 - }, - { - "image_path": "G:\\images\\combined\\006649_jpg.rf.c9ddc382e546760a246eaba0b2ae1f0e.jpg", - "response": "a group of men wearing hard hats", - "id": 32715 - }, - { - "image_path": "G:\\images\\combined\\006650_jpg.rf.02ca2d0df1782cf5d475fd20231edd20.jpg", - "response": "In the image there are two people wearing blue and white helmets, they are both dressed in work clothes. One person has a bag with yellow and orange stripes hanging on their shoulder. They are discussing a blueprint that is held by the other person. The person on the right is sitting on a white box. The background shows a wall that is only half built, it appears to be made of brick.", - "id": 32716 - }, - { - "image_path": "G:\\images\\combined\\0066511fff0f1419.jpg", - "response": "A black car is driving down the street next to a red double decker bus. There are multiple people walking on the sidewalk and crossing the street. One person is carrying a black bag and wearing a white shirt. There is a traffic light visible in the scene.", - "id": 32717 - }, - { - "image_path": "G:\\images\\combined\\006651_jpg.rf.801635a01e7461769eae62fea1b73f01.jpg", - "response": "A group of three men are hiking through the snow in a wooded area. They are all wearing hard hats and one of the men is carrying a large red and white pole. They appear to be wearing winter clothing and one of the men has a backpack on. The snow on the ground is knee deep in some places and the trees are covered in a light layer of snow.", - "id": 32718 - }, - { - "image_path": "G:\\images\\combined\\006652_jpg.rf.58fcfefaf1ea712e1713344c4a4d853d.jpg", - "response": "The image shows a street scene with two workers wearing orange uniforms and yellow helmets standing on the left side of the frame. They are standing in front of a row of white houses. There are four red lanterns hanging from a light pole in the middle of the frame. Each lantern has gold writing on it. The topmost lantern reads \"\u606d\u559c\u53d1\u8d22\", the second reads \"\u4e07\u4e8b\u5982\u610f\", the third reads \"\u798f\u661f\u9ad8\u7167\", and the bottom most lantern reads \"\u5e74\u5e74\u6709\u4f59\". The sky is blue and the street is empty.", - "id": 32719 - }, - { - "image_path": "G:\\images\\combined\\006653_jpg.rf.9202167813e108c0d96868637c3112e4.jpg", - "response": "The image shows a group of people walking in front of a grey building with a red sign that says \"\u5b89\u5168\u751f\u4ea7\". The people are wearing winter clothes and one of them is carrying a black bag. There is a large pile of dark grey rocks or soil to the left of the people and the building.", - "id": 32720 - }, - { - "image_path": "G:\\images\\combined\\006654_jpg.rf.63987beea1441399362adfd519977588.jpg", - "response": "A man in a red hard hat standing in a construction site.", - "id": 32721 - }, - { - "image_path": "G:\\images\\combined\\006655_jpg.rf.0d271df675d8f5ed84d6a94affad3296.jpg", - "response": "A construction worker is working on a construction site, placing a white mat on the ground.", - "id": 32722 - }, - { - "image_path": "G:\\images\\combined\\006656_jpg.rf.3f3bcdf1a5311ad9d0250deb38d02c79.jpg", - "response": "A man in a suit and a man in a hard hat are shaking hands in a house that is still under construction. The man in the suit is holding a clipboard.", - "id": 32723 - }, - { - "image_path": "G:\\images\\combined\\006657_jpg.rf.4a0f3db6c6906838c1e1b38ba1f7b0cd.jpg", - "response": "A group of men standing around talking in a room that has no walls and is being built. They are all wearing hard hats.", - "id": 32724 - }, - { - "image_path": "G:\\images\\combined\\006658_jpg.rf.2586208d9c7eb97e37858c4d5601d8ce.jpg", - "response": "a group of people standing in the snow", - "id": 32725 - }, - { - "image_path": "G:\\images\\combined\\006660_jpg.rf.e07673c29c0f9c41efc3015525a0491c.jpg", - "response": "The picture shows a group of people in a room. All the people in the picture wear black clothes and red hats. The room they are in is currently under construction. The walls have not been finished, only the white cement foundation was painted. In the far right corner of the room, there is a door with a red frame.", - "id": 32726 - }, - { - "image_path": "G:\\images\\combined\\006662_jpg.rf.303a1d8ad1d5e353636c93483547a558.jpg", - "response": "A construction worker wearing a yellow helmet and a yellow vest is sitting on the ground. He is surrounded by broken bricks and there are more bricks on the ground in different sizes. There are also some brooms in the scene.", - "id": 32727 - }, - { - "image_path": "G:\\images\\combined\\006663_jpg.rf.218f99bc6195d1c7a67474776d6bdaf6.jpg", - "response": "A man in a white shirt and blue hat crouching down in the sand and pulling on a string.", - "id": 32728 - }, - { - "image_path": "G:\\images\\combined\\006664_jpg.rf.d83956da4984b195df280dbde76e885c.jpg", - "response": "The image shows two workers standing on a yellow ladder, working on a grey wall. They are wearing yellow and white helmets, and the man in front is wearing a white shirt. The wall has several square holes in it, and the workers are applying cement with brushes. In the background, there are other workers and a yellow loader. The sky is light blue with clouds.", - "id": 32729 - }, - { - "image_path": "G:\\images\\combined\\006665_jpg.rf.c198de145c0148c0adba01ba6b086e94.jpg", - "response": "A group of people working on a large object in the ground.", - "id": 32730 - }, - { - "image_path": "G:\\images\\combined\\006666_jpg.rf.847afdd7e0d2939a3ff581ab2b96e4f4.jpg", - "response": "A construction site with several people working on it.", - "id": 32731 - }, - { - "image_path": "G:\\images\\combined\\006667_jpg.rf.dcca6537503792a362ff7c0622dff49b.jpg", - "response": "A group of men and women standing next to each other.", - "id": 32732 - }, - { - "image_path": "G:\\images\\combined\\006668_jpg.rf.373dd7be1dc7446f5470c600b824a300.jpg", - "response": "A man is using a chainsaw to cut through a large tree trunk. He is wearing an orange safety helmet and an orange safety vest. The vest has a yellow reflective stripe on it. He is also wearing brown pants. The man is standing in a clearing that is filled with tree trunks and branches. Some of the branches are on the ground, and some are still attached to the tree trunks. The ground is covered in leaves and small twigs.", - "id": 32733 - }, - { - "image_path": "G:\\images\\combined\\006669_jpg.rf.4f0970025cceec77f0f3705abd4678a3.jpg", - "response": "A man(457,494),(623,636) is working in a pit of sand", - "id": 32734 - }, - { - "image_path": "G:\\images\\combined\\006670be1d10e0b3.jpg", - "response": "a sign that has the number 11 on it", - "id": 32735 - }, - { - "image_path": "G:\\images\\combined\\006671_jpg.rf.a47f4a4f7b81d839db561c8dd6f4a3f8.jpg", - "response": "In the image there is a group of people standing in front of a pile of goods. The people are wearing hard hats and some of them are wearing backpacks. In front of the people, there are several stacks of goods, including several black boxes and several bags. The people and the goods are located on a construction site.", - "id": 32736 - }, - { - "image_path": "G:\\images\\combined\\006672_jpg.rf.ac06b9f545dfa7b481228e1c48911d05.jpg", - "response": "A group of people wearing yellow jackets and hard hats stand in front of a power substation.", - "id": 32737 - }, - { - "image_path": "G:\\images\\combined\\006673_jpg.rf.0a81b71d45bbdaf09790171a2e6ea55a.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 32738 - }, - { - "image_path": "G:\\images\\combined\\006674_jpg.rf.f736cfdba5baf010140877523b951ff0.jpg", - "response": "A group of men working on a train in a tunnel.", - "id": 32739 - }, - { - "image_path": "G:\\images\\combined\\006675_jpg.rf.77789af7aa52a8a2ecefd7297b501a1f.jpg", - "response": "a group of people standing around each other", - "id": 32740 - }, - { - "image_path": "G:\\images\\combined\\006676_jpg.rf.3f71b6ae75b83cd55b132c88e1f047e5.jpg", - "response": "In the image there is a group of men working in a mine. They are all wearing hard hats and some are also wearing backpacks. They are working together to move a large piece of mining equipment. The ground they are standing on is covered in coal.", - "id": 32741 - }, - { - "image_path": "G:\\images\\combined\\006677_jpg.rf.4383b3707bc836690cef4f5ceb91e75d.jpg", - "response": "An image of a man wearing a yellow hard hat in a unfinished wooden framed building.", - "id": 32742 - }, - { - "image_path": "G:\\images\\combined\\006678_jpg.rf.a718665ca9bd858efe9de264bc7869c2.jpg", - "response": "A group of four men standing next to each other.", - "id": 32743 - }, - { - "image_path": "G:\\images\\combined\\006679_jpg.rf.d63648a4b726e6a871876d396af4025c.jpg", - "response": "A man wearing a hard hat and gloves is using a jackhammer to chip away at a cement wall.", - "id": 32744 - }, - { - "image_path": "G:\\images\\combined\\006680_jpg.rf.4eb46738949bc514f0b0af7674b0759a.jpg", - "response": "A group of people working on a building construction site.", - "id": 32745 - }, - { - "image_path": "G:\\images\\combined\\006683_jpg.rf.b1fd3a507de9b22b5ce77387821c7925.jpg", - "response": "a group of men walking in front of a building", - "id": 32746 - }, - { - "image_path": "G:\\images\\combined\\006684_jpg.rf.db8733e39a3fd5489420b3a0949315d5.jpg", - "response": "A man working on a building site wearing a yellow helmet and high visibility vest.", - "id": 32747 - }, - { - "image_path": "G:\\images\\combined\\006685_jpg.rf.80f12f86806dacda0334e13c657f83f1.jpg", - "response": " Two linemen(473,809),(589,998)(727,572),(842,943) work on fixing a power line in the snow", - "id": 32748 - }, - { - "image_path": "G:\\images\\combined\\006686_jpg.rf.f299fb7f50a230a81299029f78094a4b.jpg", - "response": "The image shows a group of three men working in a large tunnel. They are all wearing hard hats and the\u96a7\u9053 is lit with green and purple lights. The floor of the tunnel is covered in a layer of earth.", - "id": 32749 - }, - { - "image_path": "G:\\images\\combined\\006687_jpg.rf.b6eabf6a4481be8b6a2635bd572001ab.jpg", - "response": "A worker on a building site wearing a hard hat and using a level to check the vertical plumb of a steel beam.", - "id": 32750 - }, - { - "image_path": "G:\\images\\combined\\006688_jpg.rf.d7bfac1f3a2af53ea130c610ea0b0d05.jpg", - "response": "A worker in a red jacket and yellow helmet is sitting on a black chair. They are surrounded by water and have their hands covered in red gloves. They are spraying water from a pipe with a black nozzle. The background is a concrete wall and a dark grey pipe.", - "id": 32751 - }, - { - "image_path": "G:\\images\\combined\\006690_jpg.rf.85fc20f7fbc4e5fa5c1745b22cbde5b2.jpg", - "response": "a man wearing a blue shirt and a yellow helmet", - "id": 32752 - }, - { - "image_path": "G:\\images\\combined\\006691_jpg.rf.9f8ef38ebca224db491640c92c585cbe.jpg", - "response": "a group of men standing on the sidewalk", - "id": 32753 - }, - { - "image_path": "G:\\images\\combined\\006692_jpg.rf.c4d388a1163840f1fdad4756927080e6.jpg", - "response": "In the image there are two people wearing construction gear. The person on the left is a man and is wearing a yellow vest and a blue helmet. The person on the right is a woman and she is wearing a white helmet. They are both holding a blueprint and looking at it. The blueprint is rolled up and is being held by the woman. They are both standing in a construction site.", - "id": 32754 - }, - { - "image_path": "G:\\images\\combined\\006693_jpg.rf.6c342f0aa8bdf594da62b0d94d325ce5.jpg", - "response": "a group of people standing around each other", - "id": 32755 - }, - { - "image_path": "G:\\images\\combined\\006694_jpg.rf.453343c49ff2523464b55a84c80f37c3.jpg", - "response": "a group of men standing around a table with a large piece of paper on it", - "id": 32756 - }, - { - "image_path": "G:\\images\\combined\\006695_jpg.rf.ce8496e22d46cc61b3ade571ab8dcc89.jpg", - "response": "A group of workers in orange vests and helmets are working in a construction site. They are removing debris and dismantling parts of the structure. In the foreground, a worker is carrying a large bag of concrete. To the right, another worker is using a tool to remove debris. In the background, another worker is using a broom to clear the area. The walls of the structure are grey concrete and the roof is open.", - "id": 32757 - }, - { - "image_path": "G:\\images\\combined\\006696_jpg.rf.de5e7f9d8b4b5ec86e5d32c3295ca191.jpg", - "response": "A train track being worked on by many workers.", - "id": 32758 - }, - { - "image_path": "G:\\images\\combined\\006697_jpg.rf.ab6ee7a33cd65c1f66b25c0f99a86dc5.jpg", - "response": "A construction worker wearing a red hard hat and carrying a red metal bar. He is wearing a grey jacket and yellow work gloves. He has a large scar on his face. There are two buildings under construction in the background, one on the left and one on the right. The one on the left is taller and has many glass windows. The one on the right is taller and covered with a green net. The sky is clear and blue.", - "id": 32759 - }, - { - "image_path": "G:\\images\\combined\\006698_jpg.rf.242285e3001222c9de9fe0e6e54a43a2.jpg", - "response": "The image shows a construction site with multiple cranes in operation. There are several construction workers visible, some of them wearing hard hats. The ground is covered in wooden supports and red mesh, and there are several unfinished concrete structures. The sky is blue with some white clouds.", - "id": 32760 - }, - { - "image_path": "G:\\images\\combined\\0066ea5c6b26c5e2.jpg", - "response": "A group of five men are standing on a stage. They are all wearing baseball caps and jeans. The man on the far left is wearing a black shirt with white writing on it. The man second from the left is wearing a white shirt with black writing on it. The third man from the left is wearing a black shirt with white writing on it. The man in the center is not wearing a shirt. The man on the far right is wearing a jean jacket with no shirt underneath. They are all holding their arms up in the air.", - "id": 32761 - }, - { - "image_path": "G:\\images\\combined\\006700_jpg.rf.49d50dd849a095fe2ebe8757b6568c33.jpg", - "response": "A group of five men working on a construction site. They are all wearing hard hats and the site is filled with wooden poles and steel bars.", - "id": 32762 - }, - { - "image_path": "G:\\images\\combined\\006701_jpg.rf.223343085f601ddbdc679827a7ca39af.jpg", - "response": "A construction site with three people present. One person is wearing a yellow vest and blue hard hat, standing in the center of the image, looking at a blueprint. Another person is standing in the background, wearing a yellow vest and a white hat. The third person is on the far left of the image, wearing a yellow vest and a white hat. There are two tables present in the scene, one in the foreground and one in the background. The tables have several items on them, including a cup, a book, a mouse, and a keyboard. There is also a backpack on the ground in the foreground.", - "id": 32763 - }, - { - "image_path": "G:\\images\\combined\\006702_jpg.rf.e54e8b6cdd9dadbb74a37b277799d239.jpg", - "response": "A group of three people looking at a blueprint.", - "id": 32764 - }, - { - "image_path": "G:\\images\\combined\\006703_jpg.rf.445f9a8efaaa81e7eaf1c429bacf8c30.jpg", - "response": "The image shows a group of construction workers wearing orange vests, working on a building site. The workers are on a scaffolding, and some of them are standing on it. They are working on a tall structure made of steel rebar. The sky is overcast, and there are a few clouds in the sky.", - "id": 32765 - }, - { - "image_path": "G:\\images\\combined\\006704_jpg.rf.6a7342de179fb7a1c7a39985b6e9410b.jpg", - "response": "A group of linemen working on power lines.", - "id": 32766 - }, - { - "image_path": "G:\\images\\combined\\006705_jpg.rf.77955e8b6beca0a6b722e480c8859c1c.jpg", - "response": "An electrician repairs a transformer on the side of a building.", - "id": 32767 - }, - { - "image_path": "G:\\images\\combined\\006706_jpg.rf.d24abc63d6a55add38fd9034a444e6cc.jpg", - "response": "A group of men standing in a room with one man pointing at a device on the wall.", - "id": 32768 - }, - { - "image_path": "G:\\images\\combined\\006707_jpg.rf.40ef8f3a6b6687c27d56b8f3d3c5e1ce.jpg", - "response": " A miner(235,124),(523,997) is working in a mine shaft.", - "id": 32769 - }, - { - "image_path": "G:\\images\\combined\\006708_jpg.rf.1b95c1212f23c1154485b5822b4edfe6.jpg", - "response": "A man with a yellow hard hat and a yellow hard hat are working on a house.", - "id": 32770 - }, - { - "image_path": "G:\\images\\combined\\006709_jpg.rf.7e65c985d0f0c4b88d8d8f156da4fcaf.jpg", - "response": "A train(4,77),(879,459) on the tracks", - "id": 32771 - }, - { - "image_path": "G:\\images\\combined\\006710_jpg.rf.b54a2da2d744984889d036922f2854c1.jpg", - "response": "The photo shows a group of workers at a construction site. They are all wearing yellow hard hats and some are wearing orange safety jackets. They are standing inside a large\u7b3c\u5b50 of iron rods, which forms the framework for a bridge. In the background, there is a pile of wooden planks.", - "id": 32772 - }, - { - "image_path": "G:\\images\\combined\\006711_jpg.rf.fc0428aeb162f5686d4f1e8e4cf491c9.jpg", - "response": "The image shows a group of construction workers working on a bridge. They are all wearing hard hats and are focused on their tasks. The bridge appears to be under construction, with some parts already completed and others still in the process of being built. The workers are spread out across the bridge, with some working on the left side and others on the right. The background shows a red truck parked on the right side of the image, and a river can be seen flowing below the bridge.", - "id": 32773 - }, - { - "image_path": "G:\\images\\combined\\006712_jpg.rf.a07944052add4de117948a70a0c1ccd9.jpg", - "response": "A group of people in hard hats stand in a large, unfinished room. Some of them are wearing suits and ties.", - "id": 32774 - }, - { - "image_path": "G:\\images\\combined\\006713_jpg.rf.55a72ebc355160e9bc5c5a380dd1e9ec.jpg", - "response": "A worker is on a telephone pole, fixing some wires. He is using a ladder to reach the top of the pole. There are two motorcycles parked next to the pole. One is parked on the left side and the other one is parked on the right side. Both motorcycles are of the same model. In front of the pole, there is a small car parked. On the right side of the scene, there is a building with a sign that says \"\u6d77\u5357\u7535\u7f51\". The building is made of concrete and has two doors.", - "id": 32775 - }, - { - "image_path": "G:\\images\\combined\\006714_jpg.rf.b17f1ffa24bf82e71f5e69ee3b3d3164.jpg", - "response": "The image shows three workers in a room with green pipes on the walls. They are all dressed in green work clothes. Two of them are wearing white helmets. One of them is holding a large drill, while the other two are standing nearby. One of them is holding a large rock. They are all looking at something on the ground.", - "id": 32776 - }, - { - "image_path": "G:\\images\\combined\\006715_jpg.rf.9f9def4534ce8b3a835ac9592abb6ab2.jpg", - "response": "A construction site with two workers in hard hats and blue and yellow work clothes. They are working on a large structure made of steel rebar.", - "id": 32777 - }, - { - "image_path": "G:\\images\\combined\\006716_jpg.rf.3e5f27091f0075af81ee2a1fd294313e.jpg", - "response": "The image shows two workers, one wearing blue helmet and dark green clothes, the other wearing a blue helmet and clothes with a little brown on it, pulling a black cable on the side of a road. The road is grey and there are some trees without leaves in the background. To the right of the scene, a blue truck is parked.", - "id": 32778 - }, - { - "image_path": "G:\\images\\combined\\006717_jpg.rf.95554395f85e7aa6cf97f4b01b87c420.jpg", - "response": "A couple of men in camouflage uniforms and hard hats working on a metal rod at night.", - "id": 32779 - }, - { - "image_path": "G:\\images\\combined\\006718_jpg.rf.56b53b798542eec0b216fb01db03c82a.jpg", - "response": "A man in a yellow hard hat and orange vest standing in front of a power line tower with his arms crossed.", - "id": 32780 - }, - { - "image_path": "G:\\images\\combined\\006720_jpg.rf.980bc7bcc62c79a9902abde0d08d1c78.jpg", - "response": "A worker is painting a wall with a roller. The wall is being painted with a green and blue color scheme. The worker is standing on a ladder and there are some wooden scaffolding nearby. The worker is wearing a red helmet and a pair of dark green overalls.", - "id": 32781 - }, - { - "image_path": "G:\\images\\combined\\006721_jpg.rf.cd29883ad454c77a384bafda44d74822.jpg", - "response": "The image shows three construction workers at a construction site. They are all wearing hard hats and one of them is wearing a green camouflage jacket. The middle worker is holding a large orange pipe and is pouring liquid concrete into a large metal rebar grid. The worker on the far left is holding a long tool and is wearing a blue hard hat. The worker on the far right is also holding a long tool and is wearing a yellow hard hat. The scene is set at a construction site with a yellow metal fence in the background.", - "id": 32782 - }, - { - "image_path": "G:\\images\\combined\\006722_jpg.rf.e2197ed113bcf9476f1d67cda40e1f32.jpg", - "response": "In the image there are three men wearing construction clothes and hard hats. They are working on a construction site which is in the mountains. There is a yellow and orange construction vehicle in the background. On the ground there is a black box and a yellow pipe.", - "id": 32783 - }, - { - "image_path": "G:\\images\\combined\\00672399e1e9e074.jpg", - "response": "A close up of a Detecto analog clock face with a red second hand. The numbers on the clock are dirty and the second hand is covered in dust. The second hand is red and has a circular silver bolt in the middle. The Detecto logo is visible on the clock face.", - "id": 32784 - }, - { - "image_path": "G:\\images\\combined\\006723_jpg.rf.a12a1d62d07eb9ccacfc21c56109de83.jpg", - "response": "A man in a grey shirt and a white helmet looking off into the distance.", - "id": 32785 - }, - { - "image_path": "G:\\images\\combined\\006724_jpg.rf.b0183f6c649c05607cce0cd56b1617f7.jpg", - "response": "A construction worker is seen in the image, wearing a yellow hard hat and a grey shirt. The worker is on a mountain side, standing on a ladder and using a shovel to pour concrete into a mold. The ladder is placed on the left side of the image and the mountain side is steep. The worker is positioned near the center of the image and the sky is filled with clouds in the background.", - "id": 32786 - }, - { - "image_path": "G:\\images\\combined\\006725_jpg.rf.9100ef8aa242e0a5b902295531533d6a.jpg", - "response": "a group of men standing in front of a building that is being built", - "id": 32787 - }, - { - "image_path": "G:\\images\\combined\\006726_jpg.rf.ae5c6a4a55a699b7bc4f3beddf7fe398.jpg", - "response": "The image shows a group of construction workers working on a building site. They are all wearing hard hats and are focused on their tasks. The workers are scattered around the site, with some sitting on a concrete block and others standing or crouching. They are all wearing blue jackets and red hard hats. In the foreground, a red hard hat is placed on a wooden plank.", - "id": 32788 - }, - { - "image_path": "G:\\images\\combined\\006727_jpg.rf.3d5dea93abbf618c549b678c3aeb7e55.jpg", - "response": "A group of men in hard hats walking in front of a large back hoe.", - "id": 32789 - }, - { - "image_path": "G:\\images\\combined\\006728_jpg.rf.1320e363db8b96e618b1d5e4bc1b8086.jpg", - "response": " Men(501,495),(697,997)(801,462),(997,997)(387,592),(460,723) working on a ship at night", - "id": 32790 - }, - { - "image_path": "G:\\images\\combined\\006729_jpg.rf.d52e436086905806d7262ea27f401261.jpg", - "response": "A group of men wearing hard hats stand in a construction site.", - "id": 32791 - }, - { - "image_path": "G:\\images\\combined\\006730_jpg.rf.eb20d91e80e49a8ba03bb7136a4ee29a.jpg", - "response": "A construction worker wearing a yellow hard hat is working on a construction site. He is wearing a yellow hard hat, a grey shirt, a brown belt and is holding a yellow tool. He is squatting down and working on a red structure. There are many orange and yellow rods in the foreground. In the background, there are a few other workers, some buildings and a blue sky.", - "id": 32792 - }, - { - "image_path": "G:\\images\\combined\\006731_jpg.rf.03d2acd1ff9faecd35138515d8c5eb86.jpg", - "response": "A group of three workers wearing orange jumpsuits and red helmets are working on a scaffold at a construction site. They are standing on the scaffold, which is built around a large concrete structure. The workers are focused on their tasks, and the one in the center of the group is climbing a ladder. The two others are engaged in other tasks. The sky is visible through the top of the image, and the sunlight is shining on the workers and the scaffold.", - "id": 32793 - }, - { - "image_path": "G:\\images\\combined\\006732_jpg.rf.765e7ff3b24c7aa41519d80781a409fd.jpg", - "response": "The image shows a group of men wearing hard hats and coats standing in a large, unfinished building. They are all wearing ties. Some of the men are pointing at something in the distance. In the foreground, one man is wearing a watch on his left wrist.", - "id": 32794 - }, - { - "image_path": "G:\\images\\combined\\006733_jpg.rf.0a3e4a9b53e765be65b2f0bddcde2cff.jpg", - "response": "A construction site with a large pile of wood and metal in the foreground. There is a bridge in the background.", - "id": 32795 - }, - { - "image_path": "G:\\images\\combined\\006735_jpg.rf.f26c23b585e7b871ccde89234027d71b.jpg", - "response": "A group of workers are working on an electricity pylon in a field. They are all wearing yellow hard hats and work clothes. One man is on the left, he is wearing a yellow hard hat and over the shoulder bag. He is holding a large tool in his hands. Another man is on the right, he is not wearing a hat but his sleeves are rolled up. A third man is in the middle, he is wearing a yellow hard hat and has a tool in his hands. He is looking at the pipe the men on the left and right are working on. The fourth man is behind the third, he is not wearing a hat but his sleeves are rolled up. He is holding a large tool as well.", - "id": 32796 - }, - { - "image_path": "G:\\images\\combined\\006736_jpg.rf.2967e29ab6758b25d6ba3d5bfb4e6797.jpg", - "response": "A worker is seen wearing a blue hard hat and standing in front of a bank of servers.", - "id": 32797 - }, - { - "image_path": "G:\\images\\combined\\006737_jpg.rf.cd6eaf51beec111224b3b67d58557b59.jpg", - "response": " A man(478,103),(689,935) leaning against a pillar(258,3),(493,837)", - "id": 32798 - }, - { - "image_path": "G:\\images\\combined\\006738_jpg.rf.f84132154ad3741d31711ac3bb807a6b.jpg", - "response": "A group of rescue workers stand under a waterfall of water.", - "id": 32799 - }, - { - "image_path": "G:\\images\\combined\\006739_jpg.rf.87c5753e4ccf9c4c91350afeedaac43d.jpg", - "response": "A man wearing a yellow hard hat is holding a rolled up blueprint in front of a house that is under construction. The man is wearing a plaid shirt and jeans.", - "id": 32800 - }, - { - "image_path": "G:\\images\\combined\\006740_jpg.rf.c57e1c72889a81777dfd4d349b7af044.jpg", - "response": " Workers(297,172),(618,910)(177,207),(363,998)(10,70),(257,997) in safety gear stand in a large underground tunnel", - "id": 32801 - }, - { - "image_path": "G:\\images\\combined\\006741_jpg.rf.15781a5f8982f63ba5b6eae524323e76.jpg", - "response": "a group of people standing under a wet parking lot", - "id": 32802 - }, - { - "image_path": "G:\\images\\combined\\006743_jpg.rf.ad81ef135985b1ee6d2a4ef845b74f0c.jpg", - "response": "A man(238,128),(372,642) in a red jumpsuit standing in a cave.", - "id": 32803 - }, - { - "image_path": "G:\\images\\combined\\006744_jpg.rf.6b6e697eb2616a4e9aa31b46838be3ce.jpg", - "response": " Two men(618,267),(997,770)(235,167),(645,821) working in a cave", - "id": 32804 - }, - { - "image_path": "G:\\images\\combined\\006745_jpg.rf.abdc7f18607f53a8f3617c4fe7372a48.jpg", - "response": "In the image, two workers are standing in a factory. They are both wearing yellow hard hats and blue work clothes. The worker on the left is holding a tablet and a pen, while the worker on the right is holding a clipboard. They are both looking up at a wall-mounted control panel. In front of them is a yellow control cabinet. To the left of the workers, there is a large orange pipe.", - "id": 32805 - }, - { - "image_path": "G:\\images\\combined\\006746_jpg.rf.8807cb17d31c21350d868ffede3c3518.jpg", - "response": "The image shows three construction workers in a construction site. They are all wearing blue work clothes and yellow helmets. The middle worker is pointing at something on a concrete column, and the other two workers are looking at it. There are several tools around them, including a shovel, a broom, and a bucket. The ground is covered with metal grating, and a piece of red rope is tied to a metal bar. The background shows a steel rebar structure of a building.", - "id": 32806 - }, - { - "image_path": "G:\\images\\combined\\006748_jpg.rf.faabaed98c74230a5fc98882af2107e4.jpg", - "response": "A construction site with multiple cranes and a large pile of grey pipes.", - "id": 32807 - }, - { - "image_path": "G:\\images\\combined\\006749_jpg.rf.1f5d33484454faddf35b21cc22a54bed.jpg", - "response": "A group of men working with a large spool of black cable.", - "id": 32808 - }, - { - "image_path": "G:\\images\\combined\\00674_jpg.rf.b842e9a799a4cdb5c4ee08ad298251d9.jpg", - "response": "In the image there is a woman wearing a yellow vest and a blue helmet. She is holding a tablet in her hands. In the background there is a building under construction. The building has a lot of scaffolding in front of it.", - "id": 32809 - }, - { - "image_path": "G:\\images\\combined\\006752_jpg.rf.8b2a135eb64ccd10f40b63966b604fc1.jpg", - "response": "In the image there are three workers wearing yellow helmets and overalls. They are installing a silver solar panel on a stand in a desert-like mountain area. The stand is made of metal and the solar panel is almost completely installed. In the background, there are several other solar panels installed on the ground and on the stand. There are also some buildings in the distance.", - "id": 32810 - }, - { - "image_path": "G:\\images\\combined\\006753_jpg.rf.6cf1c04a39a03d771119320e7f11a254.jpg", - "response": "A group of people walking in front of a building under construction", - "id": 32811 - }, - { - "image_path": "G:\\images\\combined\\006754_jpg.rf.f411f656e45de585d5781c5fd7695264.jpg", - "response": "A group of men standing around each other", - "id": 32812 - }, - { - "image_path": "G:\\images\\combined\\006755_jpg.rf.7b14f641da7c7cf715f78c7584c1b80c.jpg", - "response": "A group of three men standing in a room that is filled with rubble and debris. They are all wearing hard hats and one of them is holding a flashlight.", - "id": 32813 - }, - { - "image_path": "G:\\images\\combined\\006756_jpg.rf.cdebc0c73c286e257a056683b0e14b81.jpg", - "response": "Four men in high visibility vests and hard hats, standing in a construction site.", - "id": 32814 - }, - { - "image_path": "G:\\images\\combined\\006757_jpg.rf.c451ab8e8e78233bd99f9f0fc9a871c5.jpg", - "response": "a group of people standing around in a construction site", - "id": 32815 - }, - { - "image_path": "G:\\images\\combined\\006759_jpg.rf.ce0f72f1e46dea674d841c69e10e5d8e.jpg", - "response": "A group of three men in hard hats working on a power box.", - "id": 32816 - }, - { - "image_path": "G:\\images\\combined\\006760_jpg.rf.a783c562064d5d475a83030ebedc1564.jpg", - "response": "a group of people sitting around a large wooden dining table", - "id": 32817 - }, - { - "image_path": "G:\\images\\combined\\006761_jpg.rf.8c01bd1566d3d5ae2970d72621f11522.jpg", - "response": "A man in blue standing on a metal platform in front of a tall building under construction.", - "id": 32818 - }, - { - "image_path": "G:\\images\\combined\\006762_jpg.rf.c03dd414d7cb7084029a813a3969c435.jpg", - "response": "A group of men in hard hats are standing on a staircase in a factory. They are wearing dark blue clothing and some of them also have on white hard hats. One man is on the third step from the bottom of the staircase and is looking to the left. Another man is on the second step from the bottom and is looking to the right. The third man is on the bottom step and is looking to the right. The man at the top of the staircase is looking down. There is a large pipe on the left side of the image that is painted blue and has a yellow pipe attached to it. There is also a brown pipe attached to the blue pipe.", - "id": 32819 - }, - { - "image_path": "G:\\images\\combined\\006763_jpg.rf.c53024135d54f23bafa8d5a54d0c34b8.jpg", - "response": "A group of people working on a construction site.", - "id": 32820 - }, - { - "image_path": "G:\\images\\combined\\006764_jpg.rf.0b30c3ef50f83d1b1f62ed0ccdeea264.jpg", - "response": "The image shows three people standing in front of a small construction site. They are all wearing red helmets, with the person on the left wearing a white shirt and grey shorts. The person in the middle has long dark hair and is wearing a white top and blue jeans. The person on the right is taller and has short dark hair, he is wearing a black top and grey pants. They all seem to be deep in conversation. In the background, there is a small construction site with a yellow excavator parked on the left and a orange digger on the right. Behind the diggers, there is a white sign with black letters. The ground in front of the people is bare and dusty.", - "id": 32821 - }, - { - "image_path": "G:\\images\\combined\\006765_jpg.rf.be7d3466ef32fa8db705528180617137.jpg", - "response": "A large tunnel with two workers in orange safety jackets and hard hats looking at the camera.", - "id": 32822 - }, - { - "image_path": "G:\\images\\combined\\006766_jpg.rf.f44937d5c79fcd215d4c8560167524a3.jpg", - "response": "A group of people standing in a unfinished building.", - "id": 32823 - }, - { - "image_path": "G:\\images\\combined\\006768_jpg.rf.51dc5e3336361000992766480d9de67d.jpg", - "response": "The image shows a group of men walking in a line. They are all wearing white or blue shirts and are of varying heights and builds. They are all walking in the same direction, towards the right of the image. Most of the men are Chinese, and some are wearing ties. They are walking on a grey sidewalk in front of a large building under construction. The building has many tall grey pillars and a grey roof. It is currently being built and has scaffolding and construction materials scattered around it.", - "id": 32824 - }, - { - "image_path": "G:\\images\\combined\\006769_jpg.rf.bf53e9acbcf342137a643a6247fabc60.jpg", - "response": "A construction worker pouring concrete into a grid of rebar.", - "id": 32825 - }, - { - "image_path": "G:\\images\\combined\\006770_jpg.rf.af4a7e5269e8334ac289df07a4a79ca7.jpg", - "response": "A man is on a ladder, working on some wires. There are several other people around him, some standing and some crouching. They are all wearing hard hats. In front of them is a pile of equipment, including a box and some wires. There are also a few boxes on the ground. In the background, there is a building with many windows.", - "id": 32826 - }, - { - "image_path": "G:\\images\\combined\\006771_jpg.rf.218ff651582c8f0e1106c944604aad1e.jpg", - "response": "In the image there is a man who is working on a construction site. He is wearing a white shirt, a white helmet, and a red handkerchief around his neck. The man is holding a long tool in his right hand, which he is using to level out some concrete. The man is also wearing black pants. The whole scene seems to be taking place on a construction site.", - "id": 32827 - }, - { - "image_path": "G:\\images\\combined\\006772_jpg.rf.dbc02166907c297434f409aae3d3206c.jpg", - "response": "The image shows three men in red uniforms and orange helmets working on a power line. They are standing on a metal platform that is attached to a wooden pole. The man in the middle is pulling on a wire while the man on the left is holding a tool. The man on the right is reaching for a wire. The power box at the bottom of the pole has many wires and knobs. The sky is overcast.", - "id": 32828 - }, - { - "image_path": "G:\\images\\combined\\006773_jpg.rf.08b59b3b7cb47f5c1df9fe3f892623d8.jpg", - "response": "In the image there are three miners working in a coal mine. They are wearing yellow helmets and are dirty. In front of them is a large rock with a hole in it. They are using long tools to work on the rock.", - "id": 32829 - }, - { - "image_path": "G:\\images\\combined\\006774_jpg.rf.7b6e47ab0b24f8657969de188641195a.jpg", - "response": "The image shows a group of workers at a construction site. They are wearing hard hats and working on a large concrete structure. There are several workers spread out across the scene, with some standing on the ground and others on a small platform. They are all focused on their tasks, which include pouring concrete and connecting rebar. The sky is a clear blue color and the sun is shining brightly.", - "id": 32830 - }, - { - "image_path": "G:\\images\\combined\\006776_jpg.rf.2e83b6804487cf0f2f9ee6d0fa9c4fff.jpg", - "response": "A group of people walking out of a large tunnel.", - "id": 32831 - }, - { - "image_path": "G:\\images\\combined\\006777_jpg.rf.26c16da0739a90bb81b0f21e9cc152e3.jpg", - "response": "A group of three workers in yellow safety gear are standing in a field. They are dressed in blue work clothes and are looking into a piece of surveying equipment.", - "id": 32832 - }, - { - "image_path": "G:\\images\\combined\\006778_jpg.rf.0cffcd429591132541872d332cea66c4.jpg", - "response": "a group of people walking down a street", - "id": 32833 - }, - { - "image_path": "G:\\images\\combined\\006779_jpg.rf.6ecc672e6f23a9b12c5cd8b0c081af6f.jpg", - "response": "A man in a hard hat, red shirt and coveralls is holding a paint roller. He is smiling at the camera.", - "id": 32834 - }, - { - "image_path": "G:\\images\\combined\\006780_jpg.rf.5e7240a2393dfafcee20673240a1df6c.jpg", - "response": "A group of men standing around a table with laptops on it.", - "id": 32835 - }, - { - "image_path": "G:\\images\\combined\\006781_jpg.rf.75331f4b67d55948895a1f11fae6a3a5.jpg", - "response": "A worker is seen hanging from a power line in the image. He is wearing a blue shirt and blue pants. He is holding onto the power line with both hands. He is in the process of climbing a wooden power pole.", - "id": 32836 - }, - { - "image_path": "G:\\images\\combined\\006782_jpg.rf.e7a8f8cb2a82a07a111649bd411adfa9.jpg", - "response": "A group of men in white shirts and ties, some wearing hard hats, stand in a construction site. In the background there are two buildings under construction. To the right there is a yellow and black construction site fence. In the bottom right corner there is a website logo and the text Fang.com.", - "id": 32837 - }, - { - "image_path": "G:\\images\\combined\\006785_jpg.rf.49eec245c84dcb1bfe2dde1b7086c776.jpg", - "response": "In the image there are two workers wearing orange hard hats and safety vests, they are working on a construction site made of wood and metal. In the background there are tall buildings under construction. There is a blue sky with clouds in the upper part of the image.", - "id": 32838 - }, - { - "image_path": "G:\\images\\combined\\006786_jpg.rf.99f9458884296a54af63620162918009.jpg", - "response": "Two workers in blue uniforms and safety gear are working on an electrical panel. They are kneeling on the floor, one on the left and one on the right, with the electrical panel in front of them. The electrical panel is a metal box with several wires and cables coming out of it. The worker on the left is fixing a red and black cable that is tangled up, while the worker on the right is fixing a green and white cable. They both have blue helmets on and are wearing blue uniforms.", - "id": 32839 - }, - { - "image_path": "G:\\images\\combined\\006787_jpg.rf.4352fe682385ec2782fd2fcec8acc46d.jpg", - "response": "A group of workers wearing yellow helmets are huddled together, pulling on a large piece of concrete. They are all wearing yellow and grey jackets and have their hands protected by thick gloves. One worker has a white beard and is wearing blue jeans, while another worker is wearing a white hat and has a beard. They are all working on a construction site that has concrete pillars and ropes on the ground.", - "id": 32840 - }, - { - "image_path": "G:\\images\\combined\\006788_jpg.rf.da296db3b41ddcb83c2be929c1396061.jpg", - "response": "In the image two men are working on a large piece of equipment. One man is on top of the equipment and the other is on the bottom. They are both wearing hard hats and the man on the bottom is also wearing a red hard hat. The man on top is welding something on the equipment.", - "id": 32841 - }, - { - "image_path": "G:\\images\\combined\\006789_jpg.rf.da433e35347d48c6648f3d3bc5f4e9c1.jpg", - "response": "a group of men standing around a man in a suit", - "id": 32842 - }, - { - "image_path": "G:\\images\\combined\\006791_jpg.rf.32a45e763dc08ede5a797cf967006094.jpg", - "response": "A group of men standing around a bus.", - "id": 32843 - }, - { - "image_path": "G:\\images\\combined\\006792_jpg.rf.c6b6abd363d9d93a6b1f5762733e6758.jpg", - "response": "A construction worker in a yellow vest and a man in a white hard hat are standing on a construction site. The man in the white hard hat is holding a rolled up piece of paper.", - "id": 32844 - }, - { - "image_path": "G:\\images\\combined\\006794_jpg.rf.8e4a86ca39827469b50be3df420791f9.jpg", - "response": "A group of people sitting around a table.", - "id": 32845 - }, - { - "image_path": "G:\\images\\combined\\006795_jpg.rf.b948abd822ee604a81f03b709b468a9d.jpg", - "response": "The image shows a group of construction workers wearing yellow hard hats and safety vests, working on a large construction project in a desert setting. They are standing next to a massive sandbag that has been filled and is being held together by a large strap. The sandbag is filling with sand and appears to be almost fully constructed. The workers are standing in a line, with some closer to the foreground and others further back. The background is a barren desert landscape with no visible features.", - "id": 32846 - }, - { - "image_path": "G:\\images\\combined\\006796_jpg.rf.195a5457537566002fa65671c7ebe396.jpg", - "response": "A man in a blue jumpsuit and hat is climbing on a power pole. He is holding a tool in his hand.", - "id": 32847 - }, - { - "image_path": "G:\\images\\combined\\006797_jpg.rf.831f7acb8f6f62749f1b904bcd867ccd.jpg", - "response": "In the image there is a large pipe that is orange in color and has a metal structure around it. The pipe is connected to a valve that also has a metal structure around it. The whole scene is set in a factory with several people present, two of which are wearing yellow helmets and are working on the large pipe. The background is a bit blurry and there are several pipes and tubes in the scene.", - "id": 32848 - }, - { - "image_path": "G:\\images\\combined\\006798_jpg.rf.b223b5875afb18056d38a3cbfa91a3b2.jpg", - "response": "Men(673,209),(920,996)(544,209),(660,860)(124,164),(320,996)(10,241),(187,957) standing in a construction site", - "id": 32849 - }, - { - "image_path": "G:\\images\\combined\\006799_jpg.rf.22c87cf68a364f0c902a946c0f627daf.jpg", - "response": "An electrician is working on a power line.", - "id": 32850 - }, - { - "image_path": "G:\\images\\combined\\006800_jpg.rf.2556fcb5c849aaf2aceb8ff9aee30595.jpg", - "response": "A man wearing a white t-shirt and a yellow hard hat, holding a yellow drill. He is standing on a red ladder, which is placed on a wooden floor. He is smiling at the camera.", - "id": 32851 - }, - { - "image_path": "G:\\images\\combined\\006801_jpg.rf.dad078e1e46cafd1e670ddb62485fc37.jpg", - "response": "A man in a red hard hat is on a power line.", - "id": 32852 - }, - { - "image_path": "G:\\images\\combined\\006802_jpg.rf.e68eab85741536f27244ca4fd8c94706.jpg", - "response": "A group of people walking together, all wearing hard hats. They are in front of a construction site with a partially built building.", - "id": 32853 - }, - { - "image_path": "G:\\images\\combined\\006803_jpg.rf.47cfc9a7aea97a50b9c3a6767c8fdd24.jpg", - "response": "A man is working on some wires.", - "id": 32854 - }, - { - "image_path": "G:\\images\\combined\\006804_jpg.rf.f22b0afa7ab577873c9c9308d6f3abac.jpg", - "response": "The image shows a group of men standing next to each other. They are all wearing green hard hats, and some of them are also wearing suits. The men are standing in front of a construction site, which can be seen in the background.", - "id": 32855 - }, - { - "image_path": "G:\\images\\combined\\006805_jpg.rf.b8e94e91c88dc082733a5706da03a138.jpg", - "response": "A man wearing a hard hat standing in front of a large boat that is in the process of being built.", - "id": 32856 - }, - { - "image_path": "G:\\images\\combined\\006806_jpg.rf.549b9a45d5e4742f6f5d91f9fc614941.jpg", - "response": "In the image there are three men working on a construction site. They are all wearing orange protective clothing, including coveralls and hard hats. They are standing in front of a piece of machinery, possibly a digger, and there are several metal pipes in the foreground. The sky is light grey in color.", - "id": 32857 - }, - { - "image_path": "G:\\images\\combined\\006807670831da4d.jpg", - "response": "A black book cover with the title Tales from Underwood by David H Keller.", - "id": 32858 - }, - { - "image_path": "G:\\images\\combined\\006807_jpg.rf.c57c7c49a742bdda47360f5520491681.jpg", - "response": "A group of people working on a construction site.", - "id": 32859 - }, - { - "image_path": "G:\\images\\combined\\006809_jpg.rf.dbacf56d8fd5467005fe905c95840d6d.jpg", - "response": "The image shows three men wearing blue coveralls and white hard hats, walking in a field near a large white storage tank. The men are all holding white tablets and are positioned in front of the tank, which has a ladder on the right side of it. The middle man is holding a tablet in his right hand and looking to the left. The man on the left is also holding a tablet and looking to the right. The man in the back is also holding a tablet and looking to the left.", - "id": 32860 - }, - { - "image_path": "G:\\images\\combined\\006811_jpg.rf.9e3856de4cbbd9ae05fa4030fca2e6ce.jpg", - "response": "In the image there is a factory worker wearing a hard hat and orange safety goggles. They are working on a factory assembly line, cutting and welding metal. There is a bright orange hue to the sparks flying from the cutting tool. In the background, there is a yellow forklift and a few other people working.", - "id": 32861 - }, - { - "image_path": "G:\\images\\combined\\006812_jpg.rf.86fabe1785e8f09e103e2f2c09485c9a.jpg", - "response": "A group of four people, two men and two women, wearing hard hats are looking at blueprints on the ground. They are standing in a construction site with a building under construction in the background.", - "id": 32862 - }, - { - "image_path": "G:\\images\\combined\\006813_jpg.rf.5772812e46db7792dc9e7aba983041a0.jpg", - "response": "In the image two workers are seen carrying a large grey cable. They are both dressed in blue and are wearing blue helmets. The background shows a power tower and some transmission lines.", - "id": 32863 - }, - { - "image_path": "G:\\images\\combined\\006814_jpg.rf.587bd0c1c6e72cbaa1b77b35a4ab1986.jpg", - "response": "A construction worker wearing a red hat is sitting on scaffolding.", - "id": 32864 - }, - { - "image_path": "G:\\images\\combined\\006815_jpg.rf.5be2f7b19f646745efd07629652e0e28.jpg", - "response": "A man is working on a wooden beam while another man is working on a wooden beam. They are both wearing hard hats.", - "id": 32865 - }, - { - "image_path": "G:\\images\\combined\\006816_jpg.rf.11739e3be9b159390afd584b37f73c52.jpg", - "response": "The image shows a group of men wearing hard hats and business attire, walking down a narrow corridor. Some of the men are carrying white cords. The walls of the corridor are white and the ceiling has exposed pipes. The men are standing in a large open room with unfinished walls on the right side.", - "id": 32866 - }, - { - "image_path": "G:\\images\\combined\\006817_jpg.rf.45f98441159b54bd2441597bb227685e.jpg", - "response": "A group of people wearing hard hats are gathered around a cell phone. Some of the people are looking at the phone while others are looking at the camera. They are all dressed in work clothes.", - "id": 32867 - }, - { - "image_path": "G:\\images\\combined\\006818_jpg.rf.9e2bde6cc035141a001eec4167599515.jpg", - "response": "A group of men standing in front of a construction site", - "id": 32868 - }, - { - "image_path": "G:\\images\\combined\\006819_jpg.rf.893e8ced78f6eb311f90a3b2ed441209.jpg", - "response": "A group of men standing under a red and blue umbrella.", - "id": 32869 - }, - { - "image_path": "G:\\images\\combined\\006820_jpg.rf.49b802fa601f5f5a63f4f2b08c416cb7.jpg", - "response": "A construction worker wearing a yellow helmet and a blue shirt is working on a metal bar. He is holding a large wrench and is standing on a building. The background shows a cityscape with tall buildings.", - "id": 32870 - }, - { - "image_path": "G:\\images\\combined\\006821_jpg.rf.9ea9450cd47f017ffd258ce2cd17c69c.jpg", - "response": "The image shows a group of people walking through a large warehouse. The warehouse has a high ceiling and is filled with various machinery and equipment. There is a large machine on the left side of the image, and another machine on the right side. In the center of the room, there is a white box surrounded by people. The people are wearing jackets, with some of them wearing black and others wearing other colors. The room is also filled with various bags and boxes.", - "id": 32871 - }, - { - "image_path": "G:\\images\\combined\\006822_jpg.rf.4d4f7a3b44dc8ed486f3457733687630.jpg", - "response": "A man in a hard hat and orange work suit is pointing to something in the distance to a man in a hard hat, blue shirt and jeans. They are standing in a large, open building that appears to be in disrepair. There are several cinderblocks lying on the ground and debris scattered about. The two men are the only people in the image.", - "id": 32872 - }, - { - "image_path": "G:\\images\\combined\\006823_jpg.rf.a75b887abb4e9561ebc8baf68ae8e36e.jpg", - "response": "In the image there are three people working on a metal structure. Two of the people are wearing orange vests and yellow hats. The person on the left is wearing a red vest and hat, the person in the middle is wearing a camouflage vest and no hat. The third person is on the far right and is wearing a yellow hat but no other information can be ascertained about this person. The metal structure they are working on has many wires and pipes running through it.", - "id": 32873 - }, - { - "image_path": "G:\\images\\combined\\006824_jpg.rf.fbd4ba1b30624414bb9db6b3aff7acff.jpg", - "response": "An overhead view of a city street with a worker fixing a power line. The worker is wearing a blue helmet and clothes and is standing on a ladder. The street is filled with people and cars. There is a tree branch on the ground and a group of people standing on the sidewalk.", - "id": 32874 - }, - { - "image_path": "G:\\images\\combined\\006825_jpg.rf.c02f3a2e282cb30c985fc0150ed29d14.jpg", - "response": "The image shows three construction workers standing on a construction site. They are all wearing green hard hats and yellow jackets. The workers are positioned at different spots on the site, with one on the left, one in the center, and one on the right.", - "id": 32875 - }, - { - "image_path": "G:\\images\\combined\\006826_jpg.rf.bd4023bbb583aac0304aada540b1cbfc.jpg", - "response": "A worker wearing a yellow vest and a blue helmet is seen in this photo. He is working on an electricity meter that is installed on the wall of a wooden house. The worker is using a drill to fix the meter. There are also other workers in the background, but they are not in focus. In the foreground, there is a pile of grey rocks and a yellow rope.", - "id": 32876 - }, - { - "image_path": "G:\\images\\combined\\00682742582c3ae9.jpg", - "response": "A white board with a diagram of the Janzen-Connell model of plant community dynamics. The diagram is a simple line drawing of a forest with a tree labeled \"seedling recruitment\" and a line coming from it that branches into two lines, one labeled \"propability of survival\" and the other labeled \"seedling recruitment\". Below the diagram is a paragraph of text that explains the model.", - "id": 32877 - }, - { - "image_path": "G:\\images\\combined\\006827_jpg.rf.1cd705561b90cd33cc27a20436a3c008.jpg", - "response": "A group of men standing in front of a building.", - "id": 32878 - }, - { - "image_path": "G:\\images\\combined\\006828_jpg.rf.bf467e8bad4b864c5b0ac1353d888b06.jpg", - "response": "A group of people standing on a construction site.", - "id": 32879 - }, - { - "image_path": "G:\\images\\combined\\006829_jpg.rf.209df07d2632f1a1e6804bdba7ef18b5.jpg", - "response": "The image shows two workers in a cave. They are standing on a platform and are equipped with safety gear, including green and yellow jackets, yellow helmets, and green masks. The worker on the left is holding a yellow pipe, while the one on the right is holding a black pipe. The cave is filled with water, and there are tools and a pump on the platform. The background shows the cave's rough walls.", - "id": 32880 - }, - { - "image_path": "G:\\images\\combined\\006832_jpg.rf.09af7572253aef6b3038e3c928670249.jpg", - "response": "a man(237,258),(499,994) wearing a red shirt and a red hard hat(381,258),(491,377) is using a telescope on a tripod.", - "id": 32881 - }, - { - "image_path": "G:\\images\\combined\\006834_jpg.rf.2bd76d8b9c95a1fdda5f2a60d8a66c67.jpg", - "response": "A group of five men in yellow shirts and red helmets are standing on a construction site. They are wearing red helmets and yellow shirts. The site has many buildings in the background. One man is sitting on the ground and two others are standing behind him. They are all looking at a blueprint.", - "id": 32882 - }, - { - "image_path": "G:\\images\\combined\\006835_jpg.rf.f724a23a18e7c466366d4bd025e9fa88.jpg", - "response": "Two men wearing hard hats, one.", - "id": 32883 - }, - { - "image_path": "G:\\images\\combined\\006836_jpg.rf.a9218e019a30de90b1e5a06c347c767d.jpg", - "response": "In the image two workers dressed in orange jumpsuits and white helmets are crouched down inspecting a train track. They are holding a grey tablet in their hands. The sky is blue with some white clouds. In the background there is a yellow and grey building.", - "id": 32884 - }, - { - "image_path": "G:\\images\\combined\\006837_jpg.rf.c14c5434aa61b965c9599c1f55f20af4.jpg", - "response": "A worker welding inside a large circular metal structure.", - "id": 32885 - }, - { - "image_path": "G:\\images\\combined\\006838_jpg.rf.c5d9c2db4b377d12d2d7f67cd28710aa.jpg", - "response": "A group of men in suits and hard hats are standing in a large, unfinished building. The walls are bare and the floor is unfinished. In the background, there are a few other unfinished buildings.", - "id": 32886 - }, - { - "image_path": "G:\\images\\combined\\006839_jpg.rf.5b0af7f4507730539b64a3c597f8351a.jpg", - "response": "A construction worker wearing a yellow vest and blue hard hat is kneeling down on the street. He is holding a long tool and shining a light on the street. He is wearing a blue hard hat, a yellow vest, and black shoes. He is kneeling on the street next to a large metal beam.", - "id": 32887 - }, - { - "image_path": "G:\\images\\combined\\006840_jpg.rf.f7cefe20baf5fc4da4f930b566c931dc.jpg", - "response": "A group of six people standing next to each other in a dirt lot at night. They are all wearing hard hats and orange safety vests. The person on the far left is wearing a red safety hat and an orange safety vest. The person second from the left is wearing a blue hat and a blue coat. The third person from the left is wearing a red hat and a red coat. The person fourth from the left is wearing a blue hat and a blue coat. The person fifth from the left is wearing a white hat and a blue coat. The person on the far right is wearing a black coat and a black hat.", - "id": 32888 - }, - { - "image_path": "G:\\images\\combined\\006841_jpg.rf.804ef96777fa61db48e2959b8fdc87b4.jpg", - "response": "A group of three men in orange jumpsuits and blue hard hats are climbing a metal tower. They are wearing safety harnesses and are in the process of climbing a metal ladder attached to the tower. The sky is blue and clear behind them.", - "id": 32889 - }, - { - "image_path": "G:\\images\\combined\\006842_jpg.rf.35815d72d1987825d59a8a699800b414.jpg", - "response": "A man in blue overalls is hanging from a power line, working on a power box.", - "id": 32890 - }, - { - "image_path": "G:\\images\\combined\\006843_jpg.rf.c1abc72b44617d886f91625616d41318.jpg", - "response": "A group of three men standing next to each other wearing hard hats.", - "id": 32891 - }, - { - "image_path": "G:\\images\\combined\\006844_jpg.rf.b215de9c5242951032f48e4de51117f9.jpg", - "response": "A group of firefighters are gathered around a metal ladder. They are wearing yellow and black suits and red helmets. Some of them are holding hoses while one of them is pointing towards something. There is a car parked in the background.", - "id": 32892 - }, - { - "image_path": "G:\\images\\combined\\006845_jpg.rf.286910f52eb65e846470a257f856d2ee.jpg", - "response": "A man is working on a construction site with a large drill.", - "id": 32893 - }, - { - "image_path": "G:\\images\\combined\\006846_jpg.rf.13494396fa8b9cae8b97cd776ea3a8ad.jpg", - "response": "In the image two construction workers are standing underneath a sky. They are both wearing blue jackets and white helmets. In front of them is a large piece of machinery. To the left of the workers is a large grey pole. In the background there is a large building with brick walls. The sky is a clear blue.", - "id": 32894 - }, - { - "image_path": "G:\\images\\combined\\006847_jpg.rf.ddb2642e7c659f747c4a542b00b9b5aa.jpg", - "response": "A construction worker is receiving a box of food from a nurse.", - "id": 32895 - }, - { - "image_path": "G:\\images\\combined\\006848_jpg.rf.a3bced6b2e6c24bb8fd91289a8abb0ee.jpg", - "response": "Four men in hard hats looking at a blueprint in a construction area.", - "id": 32896 - }, - { - "image_path": "G:\\images\\combined\\006849_jpg.rf.a44ef80569e83a6b3899f2b57071abfa.jpg", - "response": "A construction site with multiple workers visible. There are multiple stacks of bamboo poles on the ground, and a few workers are standing around, one of them is carrying a bamboo pole. There are also a few workers further away near the buildings.", - "id": 32897 - }, - { - "image_path": "G:\\images\\combined\\006850_jpg.rf.cf32d66442e624e3a96223062c415ce0.jpg", - "response": "A man in a hard hat and coveralls is on a construction site. He is standing on a ladder and holding a trowel.", - "id": 32898 - }, - { - "image_path": "G:\\images\\combined\\006851_jpg.rf.6db0da686c4a4e223575c5ee6aaf1794.jpg", - "response": "In the image, three men are working on fixing a power line. They are all dressed in red safety jumpsuits and are wearing hard hats. The men are working on a metal platform that is attached to a utility pole. One of the men is working on the power line while the other two are holding the platform steady. The sky is overcast in the background.", - "id": 32899 - }, - { - "image_path": "G:\\images\\combined\\006852_jpg.rf.892253ce53e72ddfa06bd2f3542a7d48.jpg", - "response": "A man in a yellow vest and yellow hard hat stands in a tunnel. He is holding a sledge hammer.", - "id": 32900 - }, - { - "image_path": "G:\\images\\combined\\006853_jpg.rf.33a62484cd3bd09acac7600c139dcd82.jpg", - "response": "A roofer in a yellow vest and hard hat standing on a roof with a hammer in his hand.", - "id": 32901 - }, - { - "image_path": "G:\\images\\combined\\006854_jpg.rf.947f3d4f949e044d8486aa3539f10c5e.jpg", - "response": "The image shows two workers standing next to a large orange and grey piece of equipment. The machine has black wheels and is holding a large spool of grey wire. The workers are both dressed in blue and have hard hats on. One of the workers is holding a drill.", - "id": 32902 - }, - { - "image_path": "G:\\images\\combined\\006855_jpg.rf.133dc7d5bdb11c82217c51cd96266cc5.jpg", - "response": "A group of men in blue hard hats are standing in a muddy field. They are each holding a large metal pole. There is a pile of tree branches to the left of the men.", - "id": 32903 - }, - { - "image_path": "G:\\images\\combined\\006856_jpg.rf.7b442afa35ce3038ed48c163cb9a900d.jpg", - "response": "A man in a blue uniform and hard hat is working on an electrical box on a metal platform. He is wearing a tool belt and has a backpack. He is standing on the platform and appears to be working on the electrical box.", - "id": 32904 - }, - { - "image_path": "G:\\images\\combined\\006857_jpg.rf.cd55fb21553e99090ae1d9b6a442aff2.jpg", - "response": "In the image there are two construction workers observing a building site. They are both wearing orange helmets and green and orange work clothes. The man on the left is looking towards the right while the man on the right is looking towards the camera. They are both standing in front of a large white pillar. To the right of the workers there is a large crane lifting a grey object. Under the crane there is a patch of brown ground with a few tracks in it. In the background, to the left, there is a white building.", - "id": 32905 - }, - { - "image_path": "G:\\images\\combined\\006858_jpg.rf.356f90aa86bd475a5f0cd61113a65e15.jpg", - "response": "A group of people standing around each other.", - "id": 32906 - }, - { - "image_path": "G:\\images\\combined\\006859_jpg.rf.68eeb9258e67585917a5c13e5c3add2a.jpg", - "response": "A man in an orange helmet and yellow jacket is working on a red and white metal structure. He is standing on a platform that is part of the red and white metal structure. He is working on a metal beam that is part of the structure. The metal structure is located on top of a building. The man is wearing a tool belt and has a tool in his hand. The background shows a cityscape and a river.", - "id": 32907 - }, - { - "image_path": "G:\\images\\combined\\00685bc495504d61.jpg", - "response": "A Virgin plane sits on the tarmac next to a Qantas plane.", - "id": 32908 - }, - { - "image_path": "G:\\images\\combined\\00685d2d846c9052.jpg", - "response": "A tall red brick building with many windows.", - "id": 32909 - }, - { - "image_path": "G:\\images\\combined\\006860_jpg.rf.5dc6845c80aa151097d2dbce2be8b5a6.jpg", - "response": "The image shows a group of workers at a construction site. They are all wearing yellow hard hats and are working on a large construction project. The workers are of various heights and are positioned at different levels throughout the image. One worker is in the foreground and is leaning on a large tool, possibly a shovel or a large rod. Another worker is visible in the background, wearing a green shirt and a white helmet. They are crouching down and appear to be working on a large piece of metal. The construction site is filled with steel rebar, giving the scene an industrial feel.", - "id": 32910 - }, - { - "image_path": "G:\\images\\combined\\006861_jpg.rf.4cd6f947aa424c28ded14c1ad84688d5.jpg", - "response": "A group of workers in hard hats standing around looking at a clipboard.", - "id": 32911 - }, - { - "image_path": "G:\\images\\combined\\006864_jpg.rf.c4c4b0e01cdb5fc33090f13b8c596392.jpg", - "response": "A group of men standing around each other.", - "id": 32912 - }, - { - "image_path": "G:\\images\\combined\\006865_jpg.rf.194500d3ecbcf718565e1a336165e3b5.jpg", - "response": "A construction site with workers.", - "id": 32913 - }, - { - "image_path": "G:\\images\\combined\\006866_jpg.rf.1841a6bd4821e4ca5b9a34b7d9fd6d69.jpg", - "response": "In the image there is a man wearing a yellow hard hat who is walking through a large, unfinished building that has a lot of concrete and scaffolding. The man is wearing a plaid shirt and jeans. He is holding a cell phone in his hand. The building has a lot of windows and is not yet finished.", - "id": 32914 - }, - { - "image_path": "G:\\images\\combined\\006867_jpg.rf.9c89e864e87d619ea5559a79b4d449fc.jpg", - "response": "A group of railway workers wearing yellow vests and safety helmets are working on a railway. They are using different tools like spades and other railway tools. The railway is surrounded by some buildings and a city road.", - "id": 32915 - }, - { - "image_path": "G:\\images\\combined\\006868_jpg.rf.f1984118890bf53c67f5ea2dc44004d8.jpg", - "response": "The image features two men wearing helmets and harnesses, standing on a ropes course. They are smiling and appear to be enjoying themselves. The ropes course is set in a lush green forest.", - "id": 32916 - }, - { - "image_path": "G:\\images\\combined\\006869_jpg.rf.27c584befa0ae8e4e8b3d2ec8db9aae6.jpg", - "response": "The image shows a large room with a high, arched ceiling. The floor is covered in debris, and there are large, rusted metal coils stacked on the left side of the room. Several people are in the room, some wearing hard hats and some sitting on a bench against the back wall. A light is shining on the back wall, which has a sign that says \"14\" on it. The room is dark, with only the light shining on the back wall illuminating the space.", - "id": 32917 - }, - { - "image_path": "G:\\images\\combined\\006870_jpg.rf.9042a70de243d561b8bc3a51b4dda277.jpg", - "response": "Xiaogang, the first village of China's reform, today is a prosperous and modern village. The village has a history of 3,000 years, and was listed as a national AAA level tourist village in 2012. It is also the hometown of Xiaogang Declaration, the first rural contract that was signed in China.", - "id": 32918 - }, - { - "image_path": "G:\\images\\combined\\006871_jpg.rf.8a37afae6692a5de9715dbaede0eda4d.jpg", - "response": "A man and woman in hard hats and safety vests are shaking hands in front of a factory. The woman is holding a clipboard.", - "id": 32919 - }, - { - "image_path": "G:\\images\\combined\\006872_jpg.rf.8255a7a59bb2bcc772a1779a578878dd.jpg", - "response": "In the image two workers are crouched down working on a drain. One worker is on the left and is wearing a brown shirt and is in the process of lifting a metal cover over the drain. The other worker is on the right and is wearing a yellow shirt and is also working on the drain. Both workers are wearing white helmets.", - "id": 32920 - }, - { - "image_path": "G:\\images\\combined\\00687364c5c2f57e.jpg", - "response": "A yellow school bus with a red stop sign on the side.", - "id": 32921 - }, - { - "image_path": "G:\\images\\combined\\006873_jpg.rf.a137ccbbbc53c1352baac48256b842c1.jpg", - "response": "a group of people standing on a track", - "id": 32922 - }, - { - "image_path": "G:\\images\\combined\\0068742ad35c2586.jpg", - "response": "The image shows a city street scene with a crowd of people standing around a fire truck and a bus. There are several firemen in the scene, some of them wearing yellow jackets and safety helmets. The fire truck is parked on the street, and there is a ladder on top of it. A red and yellow striped cone is placed on the street near the fire truck. The crowd of people is standing behind a rope barrier, and there are two handbags visible among them. The street is lined with buildings, and a few cars are parked along the side of the road.", - "id": 32923 - }, - { - "image_path": "G:\\images\\combined\\006874_jpg.rf.d3d96c7e7a037e32a34c8eb8998fddb1.jpg", - "response": "In the image there is a group of people wearing hard hats and uniforms. They are working together to remove debris and clear a river of water. Some of the people are using shovels and some are using hoses to help with the cleanup. In the background there is a crane and a pile of rubble. The sky is overcast and there are a few trees visible in the background.", - "id": 32924 - }, - { - "image_path": "G:\\images\\combined\\006875_jpg.rf.fc89dc0fd095237793395fc7161d6b94.jpg", - "response": "An electrician working on a large electrical box.", - "id": 32925 - }, - { - "image_path": "G:\\images\\combined\\006876_jpg.rf.23be329bc5c356ba11daca0b0e8382c7.jpg", - "response": "The photo shows a group of men standing in a large room under construction. They are wearing orange vests and hard hats. In front of them is a table with several boxes on it. The boxes are labeled \"CRH\".", - "id": 32926 - }, - { - "image_path": "G:\\images\\combined\\006877_jpg.rf.38fec4899c8ab556513889182e89d052.jpg", - "response": "A man and a woman working on a construction site.", - "id": 32927 - }, - { - "image_path": "G:\\images\\combined\\006878_jpg.rf.f2f31fb267c05a6122392a33ffc76518.jpg", - "response": "In the image there are two men wearing safety gear, high visibility vests and hard hats. They are standing in a dark underground tunnel and looking at a plan or blueprint. The man on the left is younger and is wearing a safety vest with a yellow reflective stripe. The man on the right is older and is wearing a white hard hat with a blue and white safety vest. He has grey hair and is also wearing glasses.", - "id": 32928 - }, - { - "image_path": "G:\\images\\combined\\006879_jpg.rf.b45dae32b36a1c2bb4ea6c1212dc465b.jpg", - "response": "A group of workers in blue uniforms and orange helmets are working on a water main. They are standing in a hole in the street and there is a large pipe leading to the hole. They are working on a fire hydrant that is covered with orange and green hoses. There is a large truck behind them and a few cars parked on the street. The sky is overcast and there are a few trees in the background.", - "id": 32929 - }, - { - "image_path": "G:\\images\\combined\\006881240855f4a9.jpg", - "response": "Three women are holding up eight LG LTE smartphones in front of an LG booth at the Mobile World Congress.", - "id": 32930 - }, - { - "image_path": "G:\\images\\combined\\006881_jpg.rf.0110d1d7e5d1f81653e5b78b56baec39.jpg", - "response": "A group of men in gray uniforms are working on an electrical box on a pole.", - "id": 32931 - }, - { - "image_path": "G:\\images\\combined\\006883_jpg.rf.903e5d43474fe475d21b0ee088a36d17.jpg", - "response": "A large crane is working on a dock.", - "id": 32932 - }, - { - "image_path": "G:\\images\\combined\\006886_jpg.rf.f3fb8cfd055e6408c8d08b85ba09f769.jpg", - "response": "A worker in an orange jumpsuit and a blue hard hat is using a ladder to fix a wire on the side of a building. Another worker in an orange jumpsuit and a blue hard hat is standing on the ground next to the ladder.", - "id": 32933 - }, - { - "image_path": "G:\\images\\combined\\006887_jpg.rf.534837e1b0eaf864c29dfd68b6e65f29.jpg", - "response": "A construction worker in an orange uniform working on a scaffolding.", - "id": 32934 - }, - { - "image_path": "G:\\images\\combined\\006888_jpg.rf.8eba3756553e9b193d1dff1c1fd16d35.jpg", - "response": "A group of men working in a cave.", - "id": 32935 - }, - { - "image_path": "G:\\images\\combined\\006889_jpg.rf.3739f967d287934eca9d3fe985c5fddf.jpg", - "response": "A man wearing a hard hat and high visibility vest is smiling at the camera while holding a walkie talkie and a set of plans. He is standing in a tunnel.", - "id": 32936 - }, - { - "image_path": "G:\\images\\combined\\006892_jpg.rf.0a0e10d36c576824499943846e3e6078.jpg", - "response": "The image shows a construction site with several large, black, cylindrical oil tanks. The tanks are made of glass and are visible from the ground. In the foreground, there are four men working on the site. One man is wearing a yellow helmet and is standing near the left side of the image. Another man is wearing a blue helmet and is standing near the center of the image. A third man is wearing a yellow helmet and is standing near the right side of the image. The fourth man is kneeling on the ground and is wearing a blue helmet. There are pipes and other equipment on the site, and the sky is overcast.", - "id": 32937 - }, - { - "image_path": "G:\\images\\combined\\006894_jpg.rf.821ce238071a5bfaefcf91fddc297e51.jpg", - "response": "In the image there are two workers in a factory. One of them is on the left and the other one is on the right. They are both wearing blue and yellow helmets. The left worker is wearing a blue shirt and is bending over to look at some wires on the factory floor. The right worker is wearing a red helmet and a black jacket. They are crouching down to look at a green object on the floor. In front of them are many wires scattered on the floor. To the left of the workers are white metal shelves.", - "id": 32938 - }, - { - "image_path": "G:\\images\\combined\\006895_jpg.rf.0c2a379f00667d6891b1fd2dd8052e34.jpg", - "response": "a man wearing a black jacket(103,296),(513,995)", - "id": 32939 - }, - { - "image_path": "G:\\images\\combined\\006896_jpg.rf.7cda90eff0d54c08c2100336b8c08877.jpg", - "response": "The image shows a group of people standing in front of a construction site. There is a yellow excavator working in the background. The people are wearing hard hats and business attire. Some of them are pointing towards the construction site. In the foreground, there is a pile of dirt and a pile of rocks.", - "id": 32940 - }, - { - "image_path": "G:\\images\\combined\\006897_jpg.rf.7afebc6282124ff402c21290a9d9df18.jpg", - "response": "A man in a orange vest and helmet is talking on a cell phone.", - "id": 32941 - }, - { - "image_path": "G:\\images\\combined\\006899_jpg.rf.8a3305f0347dee7eaf8d7409c8c030ea.jpg", - "response": "A group of people working on a building.", - "id": 32942 - }, - { - "image_path": "G:\\images\\combined\\00689c649b17c484.jpg", - "response": "The image features a black computer keyboard with red LED lights. The keys on the keyboard are black and have red letters and symbols. The spacebar is also black and has a red border. The keyboard is sitting on a white surface. There is a black cord coming from the right side of the keyboard. The end of the cord is curled up. The keyboard is in focus and the background is blurred.", - "id": 32943 - }, - { - "image_path": "G:\\images\\combined\\006900_jpg.rf.46de56b801692e272438b7840626d545.jpg", - "response": "A construction worker in a yellow hard hat and uniform\u6500\u767b\u67b6\u3002", - "id": 32944 - }, - { - "image_path": "G:\\images\\combined\\006901_jpg.rf.ca4ded97861e30827357707620365123.jpg", - "response": "A group of men working on a construction site at night.", - "id": 32945 - }, - { - "image_path": "G:\\images\\combined\\006902_jpg.rf.0a1be89c981241318a7a24537d11045b.jpg", - "response": "The image shows a large unfinished bridge with a tall pylon. In the foreground, there are several workers, some of whom are wearing yellow vests. One worker is carrying a tool on his shoulder. In the background, there is a crane and a bulldozer. The sky is cloudy, and the ground is bare and dusty. There is a sign in the middle of the scene.", - "id": 32946 - }, - { - "image_path": "G:\\images\\combined\\006903_jpg.rf.e8c870a264bf67f846ca6dc27b283ab5.jpg", - "response": "A man wearing a hard hat is sitting on a pile of wood.", - "id": 32947 - }, - { - "image_path": "G:\\images\\combined\\006904_jpg.rf.6f8838caf95d77f2bdc80ed492deafac.jpg", - "response": "In the image, there are two workers wearing orange jumpsuits and yellow helmets who are installing a white net on a rocky hillside. The rocks in the hillside are brown and grey in color. There are also some white ropes and black arrows on the net. The workers seem to be in the middle of a steep slope.", - "id": 32948 - }, - { - "image_path": "G:\\images\\combined\\006906_jpg.rf.539949a0eee0f7f6c2256d009cc92012.jpg", - "response": "a group of men wearing hard hats", - "id": 32949 - }, - { - "image_path": "G:\\images\\combined\\006907_jpg.rf.8a9b7831b1781a3b65f91edac001ebc1.jpg", - "response": "A worker is seen standing on a power pole covered in ice, working on the power lines. The sky is overcast and snow is falling.", - "id": 32950 - }, - { - "image_path": "G:\\images\\combined\\006908_jpg.rf.ff154ac653013c8041ffa77fdcc5cbd5.jpg", - "response": "A man standing in a room with a yellow hat and a jacket.", - "id": 32951 - }, - { - "image_path": "G:\\images\\combined\\006909_jpg.rf.1f99b1ad2b3c580e4f3008ea985a2887.jpg", - "response": "A man is lying on a stretcher and is being carried away by firefighters. The man is covered in dirt and has a large gash on his head. There are several other people standing around the man, some of them in construction gear. In the background, there is a building under construction.", - "id": 32952 - }, - { - "image_path": "G:\\images\\combined\\006910_jpg.rf.8c4ceeb6a286e5e33878da96206d7f05.jpg", - "response": "A group of men in business attire and construction hats.", - "id": 32953 - }, - { - "image_path": "G:\\images\\combined\\006911_jpg.rf.f94f5c797537ebc11538829c0cebce50.jpg", - "response": "A man wearing a yellow hard hat and a brown tool belt.", - "id": 32954 - }, - { - "image_path": "G:\\images\\combined\\006912_jpg.rf.c5f7c528bbc9b12956bcf6cb731243d2.jpg", - "response": "In the image two workers are seen repairing an electricity tower. The sky is blue and there are a few clouds. The workers are wearing blue uniforms and are repairing the electricity tower. The tower is made of metal and has power cables and electrical components.", - "id": 32955 - }, - { - "image_path": "G:\\images\\combined\\006913_jpg.rf.2cc7e9be4451d7dfc859626967fea94c.jpg", - "response": "A group of workers in blue uniforms are on a bridge. They are working on a large white pipe that is either being lowered or raised. The pipe is in the process of being lowered and is bent at the middle. The workers are holding the pipe with a crane above them.", - "id": 32956 - }, - { - "image_path": "G:\\images\\combined\\006914_jpg.rf.39abbc969fe20774abf9bcc10c461e16.jpg", - "response": "A group of men standing in front of a dirt field", - "id": 32957 - }, - { - "image_path": "G:\\images\\combined\\006915_jpg.rf.96c9149afcee86ee30868e93b28d2110.jpg", - "response": "The image shows a large machine with yellow and white colors. The machine has a large circular piece that is being worked on by several people. The machine is surrounded by a metal net. In the background, there are three people, two of them are wearing orange safety jackets. The person on the left is holding a yellow helmet. The person in the center is wearing a blue safety jacket and a white helmet. The person on the right is also wearing an orange safety jacket.", - "id": 32958 - }, - { - "image_path": "G:\\images\\combined\\006917_jpg.rf.00d56a2b9343b17ab450c1eecaab12a4.jpg", - "response": "A worker in a blue uniform is talking to another worker in a yellow uniform. They are both standing in front of a large pipe.", - "id": 32959 - }, - { - "image_path": "G:\\images\\combined\\006918_jpg.rf.9393f2f67b17b9de165d5be4a15ffebe.jpg", - "response": "A group of workers in a\u96a7\u9053 working on a yellow piece of equipment.", - "id": 32960 - }, - { - "image_path": "G:\\images\\combined\\006919_jpg.rf.c40e340f4beace41d1545da1ed4536df.jpg", - "response": "A man wearing a hard hat and safety glasses is working on a structure made of pipes. He is climbing a ladder made of pipes and has a tool belt around his waist. He is wearing brown overalls and has a tool in his hand. The sky is bright white behind the man and pipes.", - "id": 32961 - }, - { - "image_path": "G:\\images\\combined\\006921_jpg.rf.bd7e0285555163741b0da877f76d712c.jpg", - "response": "A group of men standing in a field talking.", - "id": 32962 - }, - { - "image_path": "G:\\images\\combined\\006922_jpg.rf.20c5c0df5622c02ea05271937b836375.jpg", - "response": "A group of men working on a construction site.", - "id": 32963 - }, - { - "image_path": "G:\\images\\combined\\006923_jpg.rf.46802b252c4d95c7d38c7d0100224f80.jpg", - "response": "A group of people working on a bridge.", - "id": 32964 - }, - { - "image_path": "G:\\images\\combined\\006924_jpg.rf.f8ea2e451097ab3133c23311a23ceb5d.jpg", - "response": "The image shows two men standing in front of a house under construction. Both men are wearing hard hats, and one of them is holding a set of plans. They are smiling at the camera.", - "id": 32965 - }, - { - "image_path": "G:\\images\\combined\\006925_jpg.rf.5863ad418dd7a6de2f217c739852329c.jpg", - "response": "a group of men standing in front of a building", - "id": 32966 - }, - { - "image_path": "G:\\images\\combined\\006928_jpg.rf.ce68f295310c539224d3797f1e5605fa.jpg", - "response": "a group of men wearing hard hats", - "id": 32967 - }, - { - "image_path": "G:\\images\\combined\\006929_jpg.rf.958dd2b9a1aee9f10e439a974c7b86c2.jpg", - "response": "A snowy hillside with two people holding a large bamboo stick.", - "id": 32968 - }, - { - "image_path": "G:\\images\\combined\\006931_jpg.rf.9db4d586ada850f82d7f86249eeb1f31.jpg", - "response": "A group of men working on a bridge.", - "id": 32969 - }, - { - "image_path": "G:\\images\\combined\\006932_jpg.rf.c484c0e8b26812056fc60dabe4f17631.jpg", - "response": "A construction worker in a yellow hard hat points to a metal structure. Another construction worker in a blue hard hat stands next to him. They are both wearing grey coveralls.", - "id": 32970 - }, - { - "image_path": "G:\\images\\combined\\006933_jpg.rf.eff7d715ce07b7b9d2a05ff86b65d084.jpg", - "response": "A group of men standing around each other talking.", - "id": 32971 - }, - { - "image_path": "G:\\images\\combined\\006934_jpg.rf.0cb634650fc2d1189c39a2e612340e2e.jpg", - "response": "A group of five construction workers are working on a building site, four of them are wearing blue and yellow hard hats and are focused on the task at hand, tying rebar for a foundation.", - "id": 32972 - }, - { - "image_path": "G:\\images\\combined\\006936_jpg.rf.31450ce0cba0bad1ca8a6a37d3e8c043.jpg", - "response": "In the image there are two construction workers wearing yellow helmets. They are working on a building site wearing grey work clothes. The sky is grey and overcast.", - "id": 32973 - }, - { - "image_path": "G:\\images\\combined\\006937_jpg.rf.d21b5404f63ad171b11aadf8fab8659a.jpg", - "response": "A group of men wearing blue hard hats are working on a roof. They are wearing camouflage and blue hard hats.", - "id": 32974 - }, - { - "image_path": "G:\\images\\combined\\006938_jpg.rf.e31bf96223e5e078fcafad6ade2823e2.jpg", - "response": "A man wearing a hard hat and work clothes is standing on a ladder. He is looking upwards and holding a tool in his right hand. He appears to be working on a ceiling.", - "id": 32975 - }, - { - "image_path": "G:\\images\\combined\\006939_jpg.rf.374cb5fa9c3ce869a33c02c8deae7274.jpg", - "response": "A worker wearing a red hard hat is drinking water from a clear plastic bottle. The worker is also wearing a white shirt and gloves. The bottle is almost empty.", - "id": 32976 - }, - { - "image_path": "G:\\images\\combined\\006941_jpg.rf.e8b1db992a6d425533919b2cc279ffdb.jpg", - "response": "The image shows two workers sitting on a railing overlooking a river and a construction site. The river is brown and appears to be dirty. The sky is overcast and there are clouds in the distance. The workers are wearing yellow hard hats and orange vests. One of them is holding a tool. The construction site has several buildings of various sizes in the background. Some of the buildings have blue roofs. The workers are looking off to the right of the frame.", - "id": 32977 - }, - { - "image_path": "G:\\images\\combined\\006943_jpg.rf.426d4bfb1c4fc250e7e14ceb11cc8e04.jpg", - "response": "A train is passing by as two workers look at a machine.", - "id": 32978 - }, - { - "image_path": "G:\\images\\combined\\006946_jpg.rf.b989234f0047267edae18a18918f8edf.jpg", - "response": "An electrician working on an electrical panel.", - "id": 32979 - }, - { - "image_path": "G:\\images\\combined\\006947_jpg.rf.e4d29e54f5108136977c4209f49b5781.jpg", - "response": "A group of people standing in a parking lot next to a white car.", - "id": 32980 - }, - { - "image_path": "G:\\images\\combined\\006948_jpg.rf.61ee0446239dc03488bdd798b84dc020.jpg", - "response": "A group of three people looking at blueprints inside a building.", - "id": 32981 - }, - { - "image_path": "G:\\images\\combined\\006949_jpg.rf.685d7561332fff0805e7a26fd1ba174c.jpg", - "response": "In the image there is a group of three men working in a factory. They are all dressed in blue work clothes and one of them is wearing a yellow hard hat. The two men on the right are working on a large piece of machinery while the man in the middle is working on a conveyor belt. There are several large metal wheels and machinery parts visible in the factory scene.", - "id": 32982 - }, - { - "image_path": "G:\\images\\combined\\006950_jpg.rf.f81eba024fe4a22422fb3907e8cade6b.jpg", - "response": "A group of men standing next to a large crane.", - "id": 32983 - }, - { - "image_path": "G:\\images\\combined\\006951_jpg.rf.d0021dc1917217203c5348c566cb0083.jpg", - "response": "Two workers(357,274),(475,862)(500,270),(660,824) in blue uniforms(359,330),(469,829)(501,336),(629,815) and orange helmets(527,269),(593,336)(400,272),(469,339) stand next to a tree(619,4),(797,996) with a yellow and blue cord(329,259),(786,996).", - "id": 32984 - }, - { - "image_path": "G:\\images\\combined\\006952_jpg.rf.7702e4da6eba267528bb4879b164729c.jpg", - "response": "The image shows three workers in yellow safety vests and hard hats standing in a tunnel. They are working on the right side of the image, and there is a fourth worker on the left side of the image. The three workers on the right side are focused on a task, and one of them is holding a tool that has red liquid on it. The liquid appears to be dripping on the right side of the tunnel wall, which has a lot of etchings on it. The etchings are arranged in a grid pattern and include red lines and dots.", - "id": 32985 - }, - { - "image_path": "G:\\images\\combined\\006953_jpg.rf.2b30751cfb58f9d89795ff9d6d99125b.jpg", - "response": "A worker in a red hard hat is reaching into a yellow box filled with fire. Another worker in a yellow hard hat is watching the first worker. Both workers are wearing blue jeans.", - "id": 32986 - }, - { - "image_path": "G:\\images\\combined\\006954_jpg.rf.048ccf625a1c276bedfd524c888f2206.jpg", - "response": "In the image two construction workers are working on a project. They are wearing orange and yellow reflective vests. One worker is sitting on a large piece of equipment, and the other worker is directing water from a hose into a large pipe. The sky is blue, and there is a building in the background.", - "id": 32987 - }, - { - "image_path": "G:\\images\\combined\\006958_jpg.rf.ebb4edf53a75ba10d5a23bbf4b682668.jpg", - "response": "A worker wearing a yellow hard hat and a grey shirt is working on a piece of equipment. The equipment is grey and has two wheels. The worker is also wearing a yellow hard hat and grey pants. In the background there is a large blue tower with Chinese writing on it. There are also two other people in the background, one wearing a blue shirt and one wearing a white shirt. They are both standing further back. There are also several other people in the scene but they are all further back and blurred. There are also several other pieces of equipment in the scene.", - "id": 32988 - }, - { - "image_path": "G:\\images\\combined\\006959_jpg.rf.09302e124ef78b30dd5dfefed2a1eaef.jpg", - "response": "A group of men working on machinery outside.", - "id": 32989 - }, - { - "image_path": "G:\\images\\combined\\006960_jpg.rf.7103c7d7395710de8b2374aef2b84f3d.jpg", - "response": "a group of men standing on a street corner", - "id": 32990 - }, - { - "image_path": "G:\\images\\combined\\006961_jpg.rf.3bbca561a4079c816af6b3cfa4464d95.jpg", - "response": "The image shows a person standing in a small yellow room with some yellow machines. The person is wearing a yellow helmet and a red shirt. There are several yellow machines in the room, some placed on the left side and some on the right side. The person is holding a blue device with a red handle. The room has a yellow door and a yellow frame. The floor is covered with grey stones. The background is a dark tunnel.", - "id": 32991 - }, - { - "image_path": "G:\\images\\combined\\006962_jpg.rf.939c96b1ea6ee9b76dd28e87becc49c4.jpg", - "response": "A man in a yellow vest(277,636),(362,984) walking through a tunnel.", - "id": 32992 - }, - { - "image_path": "G:\\images\\combined\\006963_jpg.rf.15b7c21de9fc91670f92be59c3aafb79.jpg", - "response": "A group of workers are working on a building. The building is made of concrete and has many windows. The workers are wearing hard hats and are standing on a wooden platform. Some of them are working on a metal framework.", - "id": 32993 - }, - { - "image_path": "G:\\images\\combined\\006964_jpg.rf.25fc1accc50d014766c658d480dc3584.jpg", - "response": "A man in a yellow hard hat carrying a large piece of wood.", - "id": 32994 - }, - { - "image_path": "G:\\images\\combined\\006965_jpg.rf.17b5cf24c1cbcb903b09f647131b3462.jpg", - "response": "Four Chinese miners sit in a mine shaft, wearing hard hats and headlamps. They are covered in a layer of black soot.", - "id": 32995 - }, - { - "image_path": "G:\\images\\combined\\006966_jpg.rf.16df50ca02375cf46be4bf29da4ff9e7.jpg", - "response": "A group of people stand on a sidewalk in front of a building. Some of the people are wearing hard hats. In the background, there are several buildings and a crane.", - "id": 32996 - }, - { - "image_path": "G:\\images\\combined\\006967_jpg.rf.557335ba8e4655aa476532e0c2c0a87a.jpg", - "response": "A group of four people standing next to each other.", - "id": 32997 - }, - { - "image_path": "G:\\images\\combined\\006968_jpg.rf.b902d5c54799fa257ac1e51a95dface1.jpg", - "response": "In the image two workers are seen wearing blue helmets and carrying out some maintenance work. They are standing next to a tower and a power cable. The sky is blue and the workers are wearing blue uniforms.", - "id": 32998 - }, - { - "image_path": "G:\\images\\combined\\006969_jpg.rf.0f09259fa3f20f8c0e597d9d8f8e2ca3.jpg", - "response": "In the image there are two people wearing blue overalls and yellow helmets. They are working on a power box that has many wires and black boxes. They are sitting on a metal platform that is placed on a brick wall.", - "id": 32999 - }, - { - "image_path": "G:\\images\\combined\\006970_jpg.rf.9d9bdf82afe2d728f6b59bfdc83efdc6.jpg", - "response": "The image shows a scene of a meeting. There are 8 people sitting around a conference table. Each person is wearing a name tag. In front of the people, there is a TV. On the wall behind the people, there is a large sign that says \"Welcome to the 18th Beijing Railway Bureau\". The meeting seems to be about the construction of the 16th Beijing-Shanghai high-speed railway.", - "id": 33000 - }, - { - "image_path": "G:\\images\\combined\\006971_jpg.rf.2c1a79cbe68579821b55788c95093072.jpg", - "response": "In the image there are two engineers standing on a bridge in a factory. They are both wearing blue work clothes and white helmets. The left engineer is leaning on a railing and smiling at the camera, while the right engineer is looking forward. They both have a yellow safety belt around their waists.", - "id": 33001 - }, - { - "image_path": "G:\\images\\combined\\006972_jpg.rf.cd97bd4587f0cdcb8102ba0149cfacee.jpg", - "response": "A man is up a telephone pole, fixing a power line.", - "id": 33002 - }, - { - "image_path": "G:\\images\\combined\\006973_jpg.rf.90876914d40766b4a5954d2fa2278cb3.jpg", - "response": " A group(123,378),(245,809)(556,409),(657,778)(446,374),(562,787)(358,382),(453,796)(252,448),(338,793)(630,425),(768,790)(298,400),(370,775) of men standing outside a building", - "id": 33003 - }, - { - "image_path": "G:\\images\\combined\\006974_jpg.rf.622ee1bae80d3cbf37940ee4a9d08eb7.jpg", - "response": "The image shows a worker in a white shirt and grey pants standing on a platform holding a black and white solar panel. The worker is wearing a blue hat and grey pants. In the background, another worker is installing a solar panel on the roof of a building. The sky is overcast and the ground is covered in a light layer of snow.", - "id": 33004 - }, - { - "image_path": "G:\\images\\combined\\006975_jpg.rf.15d9e7c19ba33c21d513c67dfb6719d4.jpg", - "response": "In the image two workers are in a factory working on a large piece of equipment. The equipment is a red and green color and is sitting on a table. The workers are standing around the equipment with one on the left and one on the right. They are both wearing hard hats and blue jumpsuits. In front of the equipment on the table are several pipes. On the left side of the equipment there is a step ladder.", - "id": 33005 - }, - { - "image_path": "G:\\images\\combined\\006976_jpg.rf.76a005f956857ae2a9761b1f3d74eea1.jpg", - "response": "The image shows a group of workers on a red and yellow crane. There are three workers in total, with one on the left side of the crane, another on the right side, and the third in the middle. They are all wearing yellow hard hats and orange vests. The crane is lifting a large tire, which is attached to a cable. The tire is black with a white rim. The workers are all focused on the task at hand.", - "id": 33006 - }, - { - "image_path": "G:\\images\\combined\\006977_jpg.rf.b0024994a7d326bad5727356ec840022.jpg", - "response": "A man in a yellow safety vest and a yellow hard hat points at a wall with a group of people standing around him.", - "id": 33007 - }, - { - "image_path": "G:\\images\\combined\\006978_jpg.rf.1741e5efbc21f6946ca81f84e5a94650.jpg", - "response": "A worker(431,329),(546,800) walks on the railway tracks of the Standard Gauge Railway (SGR) line under construction between Nairobi and Naivasha, Kenya, in this file photo.", - "id": 33008 - }, - { - "image_path": "G:\\images\\combined\\006979_jpg.rf.c7c1ad7decf93954161611acaacd7a03.jpg", - "response": "A group of men in white shirts and safety gear are working on a power box on a pole.", - "id": 33009 - }, - { - "image_path": "G:\\images\\combined\\006980_jpg.rf.2707e42ca98423f4390be9cc1662881f.jpg", - "response": " Two people(454,294),(623,998)(598,337),(736,974) standing in front of a yellow construction vehicle(486,4),(997,858)", - "id": 33010 - }, - { - "image_path": "G:\\images\\combined\\006981_jpg.rf.e6be3e2af2a21c17521457ff11d999a1.jpg", - "response": "A construction worker wearing a white hard hat and a yellow safety vest is using a shovel to remove debris from a large hole in the ground. The worker is standing on a ladder and has a flashlight in his hand. He is looking down into the hole.", - "id": 33011 - }, - { - "image_path": "G:\\images\\combined\\006982_jpg.rf.d78ff4c0112beeb8f3b37e44ce1b9c3e.jpg", - "response": "In the image two workers are fixing a yellow and black truck. The man on the left is wearing a yellow safety vest and a blue hat, the man on the right is wearing a grey shirt and a blue hat. They are both working on the yellow and black truck.", - "id": 33012 - }, - { - "image_path": "G:\\images\\combined\\006983_jpg.rf.7a83258c62fe867a48b7508406e4b38e.jpg", - "response": "A man pushing a cart down a sidewalk.", - "id": 33013 - }, - { - "image_path": "G:\\images\\combined\\006984_jpg.rf.0a88ba1c6ca99dae800d343882dc6dda.jpg", - "response": "A group of men standing in front of a bulldozer", - "id": 33014 - }, - { - "image_path": "G:\\images\\combined\\006986_jpg.rf.af1e53992bbb53cbc9fd6470a2a4f396.jpg", - "response": "A group of workers working on a train track in a tunnel.", - "id": 33015 - }, - { - "image_path": "G:\\images\\combined\\006987_jpg.rf.8a4f3ee8f3526462b185304d347e1827.jpg", - "response": "A group of men standing around a construction site.", - "id": 33016 - }, - { - "image_path": "G:\\images\\combined\\006988_jpg.rf.2d39b9f1637c01042ef47d6b7dacfac0.jpg", - "response": "The photo shows a group of people walking in front of a building under construction. The people are wearing hard hats, and some of them are carrying a black bag. The building in the background is also visible. There are two benches in the scene, one on the left side and the other on the right side of the photo. The background also shows a close-up of a hand holding a flower.", - "id": 33017 - }, - { - "image_path": "G:\\images\\combined\\006989_jpg.rf.3da630a793c05027c0b196f8a1a6806d.jpg", - "response": "A group of people working on a construction site.", - "id": 33018 - }, - { - "image_path": "G:\\images\\combined\\006990_jpg.rf.2c24df37fa3b8c4f58b2c3b1690f0496.jpg", - "response": "A group of people wearing hard hats and orange or blue coveralls are working in the snow. They are pulling on a rope and some have backpacks.", - "id": 33019 - }, - { - "image_path": "G:\\images\\combined\\006991_jpg.rf.f2db345fd471ebf98db950d5082a43b5.jpg", - "response": "A worker is working on a large piece of equipment that resembles a giant metal gear or motor. The worker is in the center of the equipment, which is covered in metal pieces and has a circular shape. The worker is wearing a yellow hard hat and appears to be holding a flashlight. The background is out of focus and appears to be cluttered with more metal pieces.", - "id": 33020 - }, - { - "image_path": "G:\\images\\combined\\006992_jpg.rf.ca221397e54d13d877b6c2f98afcaf8a.jpg", - "response": "A man in a red jacket and a hardhat is holding a fire extinguisher and showing it to another man. Both men are wearing hard hats.", - "id": 33021 - }, - { - "image_path": "G:\\images\\combined\\006994_jpg.rf.719a6aee977dd16dda5757558827120f.jpg", - "response": "The image shows three men working in a factory. They are all shirtless and wearing yellow hard hats and green pants. The men are focused on a task, with one of them holding a large metal pipe. The pipe is covered in dirt and appears to be dirty. The men are standing in a large room with a metal structure above them.", - "id": 33022 - }, - { - "image_path": "G:\\images\\combined\\006995_jpg.rf.429e3679e3a3c7c0c83fe38e1ca7be1e.jpg", - "response": "A lineworker scales a telephone pole to repair a power line.", - "id": 33023 - }, - { - "image_path": "G:\\images\\combined\\006998_jpg.rf.5ef0a8d21b840b95ff9464f0c0d5f8c1.jpg", - "response": "The image shows a group of workers in blue uniforms and hard hats, working on a power pole in a forest. The pole is made of metal and has a red substance running down the side of it. The workers are standing around the pole, with one of them using a drill to work on the pole. There are also two other workers standing to the right of the first worker, and a fourth worker further back in the image. The workers appear to be focused on their task.", - "id": 33024 - }, - { - "image_path": "G:\\images\\combined\\006999_jpg.rf.e64cac9a20646303439032fb0375467f.jpg", - "response": "A worker is pulling a long piece of cable across a concrete floor. The worker is in the center of the image, wearing a red helmet and holding the cable in his hands. The concrete floor is in the background and the worker is casting a shadow on the floor.", - "id": 33025 - }, - { - "image_path": "G:\\images\\combined\\0069bac022daedf4.jpg", - "response": "A green city bus with the back door open and several men standing around it.", - "id": 33026 - }, - { - "image_path": "G:\\images\\combined\\0069ec40a8a43caa.jpg", - "response": "A black and white photograph of a woman smiling with her mouth open. She has dark hair and is looking towards the upper right corner of the image. The photograph is cut off at the bottom, showing hands holding flowers. To the right of the woman, starting from the top, there is a red rectangle with the words \"I Want You!\" written in white. The letters appear to be hand written and are not perfectly aligned.", - "id": 33027 - }, - { - "image_path": "G:\\images\\combined\\0069ee6a94eca6d8.jpg", - "response": "The image shows a group of athletes standing together on a court. They are all wearing red and white uniforms. In the background, there are several other people, some of whom are holding cameras. There is also a large eagle costume in the scene, and a mascot wearing a bird head is present as well.", - "id": 33028 - }, - { - "image_path": "G:\\images\\combined\\0069f56c0a0c1709.jpg", - "response": "A purple and black CD cover for a concert for Lidice.", - "id": 33029 - }, - { - "image_path": "G:\\images\\combined\\006aad90e11a5d73.jpg", - "response": "A person is holding a yellow smartphone in their left hand. The phone is a Nokia Lumia 1020. The person is using the phone to demonstrate the time and distance settings. The phone has a black screen with white text. The text on the screen says \"time 1 minute, time 2 minutes, time 5 minutes, time 10 minutes, distance 0.5 Km, distance 1 km.\" The person's hand is in the foreground of the image and the background is blurry.", - "id": 33030 - }, - { - "image_path": "G:\\images\\combined\\006af52d76f913db.jpg", - "response": "A black Samsung smart phone with a home screen that has several apps on it.", - "id": 33031 - }, - { - "image_path": "G:\\images\\combined\\006b842efa5ea895.jpg", - "response": "In the image there is a man standing in front of a large projector screen. The man has a beard and is wearing a black lanyard. He is wearing a grey shirt and has his hands clasped together in front of him. He is also wearing a red and white name tag. The projected slide behind him says \"patrocinado bbva\" in purple and white writing.", - "id": 33032 - }, - { - "image_path": "G:\\images\\combined\\006b9f2a7fd32e6b.jpg", - "response": "A young boy sitting at a table with three cups of coffee.", - "id": 33033 - }, - { - "image_path": "G:\\images\\combined\\006c36098228cd2c.jpg", - "response": "A large white sign advertising a berry farm and a brand called Sundance.", - "id": 33034 - }, - { - "image_path": "G:\\images\\combined\\006c3e319fe1880f.jpg", - "response": "A field of flowers with a mix of purple, white, yellow, and orange blossoms.", - "id": 33035 - }, - { - "image_path": "G:\\images\\combined\\006cd1e731a9f6be.jpg", - "response": "A person crossing the street at a red traffic light.", - "id": 33036 - }, - { - "image_path": "G:\\images\\combined\\006d10667d17b924.jpg", - "response": "A large crowd of people are sitting in front of a large screen. On the screen is a picture of a man with a cross around his neck. The event is called Meeting and has the year 2011 on it. The event is held on August 23rd.", - "id": 33037 - }, - { - "image_path": "G:\\images\\combined\\006d2faf17385144.jpg", - "response": "The image shows a large building with a billboard on the side of it. The billboard has a large Apple logo on it and the words \"Where a whole new World is developing.\" The building is next to a street with traffic lights and people walking on the sidewalk. There are also cars parked along the street.", - "id": 33038 - }, - { - "image_path": "G:\\images\\combined\\006d7a5a2009230f.jpg", - "response": "A man in a black shirt is using a mixer to make something in a bowl. Another man is standing next to him.", - "id": 33039 - }, - { - "image_path": "G:\\images\\combined\\006da1281d1bf763.jpg", - "response": "A wooden game board with a map of a city on it. There are also wooden pieces on the board and a small tower made of blocks.", - "id": 33040 - }, - { - "image_path": "G:\\images\\combined\\006f378c1ca56fd9.jpg", - "response": "A stained glass window of a king and a bishop.", - "id": 33041 - }, - { - "image_path": "G:\\images\\combined\\006f4870f0a038de.jpg", - "response": "Anne Hathaway in a pink Prada dress with a bow on the back", - "id": 33042 - }, - { - "image_path": "G:\\images\\combined\\006fb71bc42db8d3.jpg", - "response": "a book with a green cover", - "id": 33043 - }, - { - "image_path": "G:\\images\\combined\\007000_jpg.rf.4d71858319096975e650eaf3b1a575e1.jpg", - "response": "The image shows a group of rescue workers in orange uniforms working together to lift a man who is trapped in a large pit. The man is wearing a grey sweater and is on the ground. The workers are using a large metal tube to lift the man out of the pit. The pit is filled with brown mud and there are several workers standing in it, with some of them holding onto the man as he is lifted out. The workers are wearing hard hats and the man is wearing a pair of glasses. The scene is set in an outdoor location and the weather appears to be overcast.", - "id": 33044 - }, - { - "image_path": "G:\\images\\combined\\007002_jpg.rf.42a2b925e5d3cd876e0b9a74fcb177fa.jpg", - "response": "A group of four men sitting on a stone wall.", - "id": 33045 - }, - { - "image_path": "G:\\images\\combined\\007005_jpg.rf.de998c8315829b8f43e4ea6d8f0f1d16.jpg", - "response": "An electrician fixing an electrical box with a red hard hat on.", - "id": 33046 - }, - { - "image_path": "G:\\images\\combined\\007006_jpg.rf.40565d2c04f5b0b9720055ec7d114d6d.jpg", - "response": "A worker wearing a yellow hat is looking through the metal grid.", - "id": 33047 - }, - { - "image_path": "G:\\images\\combined\\007007_jpg.rf.b70db8d4bd35b5dd986dc86b60e6f6ab.jpg", - "response": "A group of men in orange jumpsuits and hard hats stand in a row on a dirt road.", - "id": 33048 - }, - { - "image_path": "G:\\images\\combined\\007008_jpg.rf.d031f677c72c06eb0fd2f48c71afab5a.jpg", - "response": "A man wearing a blue shirt and a yellow hard hat is walking away from the camera. He has a small tattoo on his left arm and a large scar on his back. Another man, wearing a red hard hat, is visible in the background. They are both on a construction site.", - "id": 33049 - }, - { - "image_path": "G:\\images\\combined\\007009_jpg.rf.97c89d13196a9a114596aabb24f17631.jpg", - "response": "The image shows a group of people standing in front of a red wall. The man in the center is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To his left, the man in the front is wearing a black suit and a white shirt. In front of these three men, the woman on the right is wearing a gray suit and a red shirt. To her right, the man in the front is wearing a gray suit and a white shirt. To his right, the man in the back is wearing a black suit and a white shirt. To the far right, the woman is wearing a gray suit and a red shirt. She is holding a microphone.", - "id": 33050 - }, - { - "image_path": "G:\\images\\combined\\007010_jpg.rf.572549d02b1db1768219bb487c8a6149.jpg", - "response": "The photo shows two men standing outdoors, wearing navy blue windbreakers. One man is on the left and is wearing glasses. Both men are facing the camera and appear to be speaking to an individual with a video camera, who is not in the frame of the picture. The man on the right is holding a camera and has dark hair. In the background, there is a rocky, barren landscape with a red building and a white structure further back.", - "id": 33051 - }, - { - "image_path": "G:\\images\\combined\\007011_jpg.rf.c00a5047df7274ce6c83fa7487e7629e.jpg", - "response": "A group of people working on a construction site.", - "id": 33052 - }, - { - "image_path": "G:\\images\\combined\\007012_jpg.rf.288f00ebfa5e8014c9bdbc1179b567c2.jpg", - "response": "A woman in a yellow hard hat is holding a tablet. She is standing in front of a building under construction. There are two cars visible in the background, one on the left side and one on the right side of the image. The woman is wearing a grey and white shirt and a grey and white scarf. She is also wearing a yellow hard hat.", - "id": 33053 - }, - { - "image_path": "G:\\images\\combined\\007013_jpg.rf.9da4df50346d4cadba16f376f3fade63.jpg", - "response": "The image shows a team of workers in a dark\u957f\u6c99\u5730\u94c1\u96a7\u9053. They are wearing yellow and green vests and hard hats. Some of them are kneeling on the ground, working on the tracks. There are several pairs of hands visible in the image, indicating that the workers are actively engaged in their tasks. In the background, there are cables and pipes on the walls of the tunnel. The lighting in the tunnel is provided by several flashlights and work lamps.", - "id": 33054 - }, - { - "image_path": "G:\\images\\combined\\007014_jpg.rf.316bab74f1f78e0340902025510ad431.jpg", - "response": "A man wearing a white shirt and blue pants is working on a construction site. He is wearing a white shirt, a white hat, and blue and white boots. He is also wearing a tool belt and a harness. He is on a metal ladder, which is leaning against a yellow wall. The man is on the second rung of the ladder. He is holding a tool in his right hand. The ladder is attached to a wire that is running from the top of the ladder to the building. The man is also connected to the building with a safety line that is attached to a metal pole.", - "id": 33055 - }, - { - "image_path": "G:\\images\\combined\\007017_jpg.rf.55c5b6dd1f766d58542570a9a945a8f5.jpg", - "response": " A worker(92,266),(303,561) repairs a damaged pedestrian bridge in Taiwan after Typhoon Soudelor.", - "id": 33056 - }, - { - "image_path": "G:\\images\\combined\\007018_jpg.rf.8668b83a6be9302c3ced569e43b5d949.jpg", - "response": "An oil worker stands in front of an oil pump in the oil field.", - "id": 33057 - }, - { - "image_path": "G:\\images\\combined\\007020_jpg.rf.a99b5b2e17a1a22c9bb273ebfea2b9f0.jpg", - "response": "A construction site with multiple workers.", - "id": 33058 - }, - { - "image_path": "G:\\images\\combined\\007021_jpg.rf.8b8235f9b7ff92ba88bd8b502ffe3957.jpg", - "response": "The image shows two workers in red coveralls and red helmets, working on a pipe in the desert. They are both wearing gloves and one of them is holding a tool. The sky in the background is blue and cloudless.", - "id": 33059 - }, - { - "image_path": "G:\\images\\combined\\007022_jpg.rf.b83caf5801dc9e16e42c02f52d9c3599.jpg", - "response": "A couple of men in green and white hard hats.", - "id": 33060 - }, - { - "image_path": "G:\\images\\combined\\007023_jpg.rf.6ee3514d734e715001e9ce6fe81bee01.jpg", - "response": "A man in a red hard hat and blue shirt is working on a piece of machinery. He is wearing gloves and has a tool in his hand. He is in a factory setting and there is a wall in the background.", - "id": 33061 - }, - { - "image_path": "G:\\images\\combined\\007025_jpg.rf.9c6eb007f2c28816c4bb57f8d6a0bf1d.jpg", - "response": "An electrician in a yellow shirt and blue hard hat is\u4fee\u7f2e\u7535\u7ebf", - "id": 33062 - }, - { - "image_path": "G:\\images\\combined\\007026_jpg.rf.263c6bfb04daa88be5579bd692dee867.jpg", - "response": "The image shows two men wearing camouflage uniforms and hard hats, working on an electrical wire. They are both holding tools and one of them has a red flag attached to the wire they are working on. The sky is blue and there are buildings in the background.", - "id": 33063 - }, - { - "image_path": "G:\\images\\combined\\007027_jpg.rf.a5d878b8df025f53a678aba4d1c92256.jpg", - "response": "The image shows three workers installing solar panels on the roof of a residential building. The building is a light brown color and the roof appears to be made of concrete. There are two blue solar panels already in place on the roof. The workers are wearing yellow hard hats and are standing on the roof. One of the workers is on the left, another is in the center, and the third is on the right.", - "id": 33064 - }, - { - "image_path": "G:\\images\\combined\\007028_jpg.rf.295e29c64eea7be796f1b054424f2f96.jpg", - "response": "The image shows two men working on power lines. One man is in a bucket crane, and the other man is on a power line. Both men are wearing orange and white safety gear. The sky is blue, and there are no other visible features in the image.", - "id": 33065 - }, - { - "image_path": "G:\\images\\combined\\007029_jpg.rf.4136a7b72f61d5711a83ceaac5e259c4.jpg", - "response": "A man wearing a hard hat and holding a drill.", - "id": 33066 - }, - { - "image_path": "G:\\images\\combined\\007030_jpg.rf.865fdce45c9d616aa9dbe51f7982de8a.jpg", - "response": "A man wearing a yellow hard hat and a yellow vest is holding a large solar panel. He is wearing a white shirt and a yellow vest. He is standing on a roof and the sky behind him is blue.", - "id": 33067 - }, - { - "image_path": "G:\\images\\combined\\007031_jpg.rf.8fbb7b1e5edd6d63a340d0fc89ccb7ed.jpg", - "response": "A construction site with two workers on scaffolding.", - "id": 33068 - }, - { - "image_path": "G:\\images\\combined\\007032_jpg.rf.e77dfeb03bcb16981f6c301e4b1ffc4c.jpg", - "response": "The image shows a group of men in blue work clothes standing in a gravel lot filled with power equipment. They are standing around a large wooden post with a black and orange wire wrapped around it. The men are looking at the wire and talking. In the background, there are several utility poles and power lines. To the right of the group, there is a yellow truck with a large crane on it. The truck is parked next to a paved road.", - "id": 33069 - }, - { - "image_path": "G:\\images\\combined\\007033_jpg.rf.4b13c07bdea5857a7e2be40e517e6990.jpg", - "response": "In the image there are three construction workers at a construction site. They are all wearing yellow hard hats and the one on the right is also wearing a blue shirt. In front of them is a large circle made of steel rods that are stuck in the ground. They appear to be measuring or inspecting something. The background shows a large pile of brown dirt and a little bit of green grass.", - "id": 33070 - }, - { - "image_path": "G:\\images\\combined\\007035_jpg.rf.0294583e7be1cb455f0ae5f82e05a081.jpg", - "response": "A group of workers are working on power lines.", - "id": 33071 - }, - { - "image_path": "G:\\images\\combined\\007036_jpg.rf.e37a879d5342974dfe817a7ca5e534be.jpg", - "response": "A group of people sitting around a table.", - "id": 33072 - }, - { - "image_path": "G:\\images\\combined\\007038_jpg.rf.afc7e66192b6a51b186d8dfd4d42af0e.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 33073 - }, - { - "image_path": "G:\\images\\combined\\007039_jpg.rf.7e797f128ed4cc2167d5156bd65bda94.jpg", - "response": "A group of men in hard hats are working on a metal structure.", - "id": 33074 - }, - { - "image_path": "G:\\images\\combined\\00703d37145300bc.jpg", - "response": "A person is holding a smartphone in front of a laptop and a computer monitor. The smartphone screen displays the words \"You Win!\" in green and yellow letters. The person is also holding a pen in their other hand.", - "id": 33075 - }, - { - "image_path": "G:\\images\\combined\\007040_jpg.rf.d541ff06a85a0be1a9d43d3cb0d9d9ab.jpg", - "response": "Three men in yellow and green vests and hard hats are crouched down looking at blueprints on a construction site.", - "id": 33076 - }, - { - "image_path": "G:\\images\\combined\\007041_jpg.rf.045b50a4658a1b4c761b0eb9b0e74372.jpg", - "response": "Two workers in red and blue uniforms are standing in front of a large metal cylinder. They are both holding walkie-talkies and smiling at the camera. The worker on the left is wearing a blue helmet and has a white remote control in his hand. The worker on the right is wearing a blue helmet and has a white object in his hand. They are both standing on a yellow and red platform.", - "id": 33077 - }, - { - "image_path": "G:\\images\\combined\\007042_jpg.rf.c0cf799c0cffcc55c734f40eafe7961f.jpg", - "response": "In the image two workers wearing orange jumpsuits and blue helmets are repairing an electrical transformer. The transformer is located outdoors, on the side of a building, and is covered in a protective cage. The workers are standing on a ladder and are focused on the task at hand. They are surrounded by many wires and cables, which are connected to the transformer. The scene is set in an outdoor environment with trees in the background.", - "id": 33078 - }, - { - "image_path": "G:\\images\\combined\\007044_jpg.rf.2752a2f31a3300d93ca21043f59a2332.jpg", - "response": "A group of men standing on top of a dirt field.", - "id": 33079 - }, - { - "image_path": "G:\\images\\combined\\007045_jpg.rf.ebf218b9ae41cf99f407e80dfba35f84.jpg", - "response": "A construction worker wearing a yellow hat and vest.", - "id": 33080 - }, - { - "image_path": "G:\\images\\combined\\007046_jpg.rf.d0fbfa44911e7202e289b628e1c88503.jpg", - "response": "The picture shows a group of people gathered in a field. There are 9 people in total, standing in a rough circle. They are all dressed in black, with the exception of one person on the far left who is wearing a red coat. Most of the people are wearing black coats. In the background, there are some buildings and a crane. The sky is filled with clouds and it appears to be a bright and sunny day.", - "id": 33081 - }, - { - "image_path": "G:\\images\\combined\\007047_jpg.rf.a3a465fd0119e1abacdc1d3869cc6edb.jpg", - "response": " Two men(558,509),(907,997)(388,350),(577,997) in a tunnel, one pointing upwards", - "id": 33082 - }, - { - "image_path": "G:\\images\\combined\\007048_jpg.rf.99669f74494ef4570a4222159376cf32.jpg", - "response": "A group of men are working on an electrical box.", - "id": 33083 - }, - { - "image_path": "G:\\images\\combined\\007049_jpg.rf.c9bf57f9ebacca671a3fcbf71eac8a33.jpg", - "response": "An oil rig worker in a red jumpsuit and orange hard hat is working on a piece of equipment.", - "id": 33084 - }, - { - "image_path": "G:\\images\\combined\\007050_jpg.rf.d7d5d3991f27065d382e39e7e6b74df3.jpg", - "response": "Builder at the construction site drills a hole in the wall with a perforator.", - "id": 33085 - }, - { - "image_path": "G:\\images\\combined\\007051_jpg.rf.e0e3180c04c7a4fac9b7a75b6a537017.jpg", - "response": " A man(679,503),(857,997) wearing a yellow helmet(689,503),(825,636) is standing in front of a conveyor belt(167,223),(995,691)", - "id": 33086 - }, - { - "image_path": "G:\\images\\combined\\007053_jpg.rf.a031960bafa60fdbcece37cca8575621.jpg", - "response": "A construction worker wearing a yellow hard hat and jacket is welding a steel rebar on the ground. He is crouching down and holding the steel rebar with one hand while holding the welding machine with the other hand. The steel rebar is placed on the ground and the worker is wearing a yellow hard hat and black shoes. The background shows a large area of concrete with steel rebar laid out across it.", - "id": 33087 - }, - { - "image_path": "G:\\images\\combined\\007054_jpg.rf.7edbe9f02260a412942fdc10a7fed033.jpg", - "response": "A group of construction workers sitting on the ground.", - "id": 33088 - }, - { - "image_path": "G:\\images\\combined\\007055_jpg.rf.7defda9a6f4036e1dad24d21564c5872.jpg", - "response": "A group of workers are on a telephone pole.", - "id": 33089 - }, - { - "image_path": "G:\\images\\combined\\007056_jpg.rf.c97477da3a59a37aa1e3aab020a820bc.jpg", - "response": "A group of people stand in a parking lot in front of a bridge under construction. In the foreground, a woman with dark hair and a black top is looking at the camera. To her left, a balding man with a brown shirt looks to the left. Another man with a yellow shirt and grey hair looks to the right. A man with glasses and a blue shirt looks to the left. A man with black hair and a yellow shirt looks to the right. A man with a blue shirt and black hair looks to the right. A man with glasses and a grey shirt looks to the left. In the background, a bridge under construction can be seen.", - "id": 33090 - }, - { - "image_path": "G:\\images\\combined\\007058_jpg.rf.dc615f56a1e8b5eb0a62cfb0ae4724df.jpg", - "response": "The image shows a man digging a hole in the ground with a shovel. He is wearing a green shirt and a red hard hat. The ground around him is dirt and he is standing next to a hole that he has dug. There is a white bag in the hole. Another man is standing behind him, also digging a hole. In the background, there are several other people working further away. There are also a few shovels and a broom scattered around the scene.", - "id": 33091 - }, - { - "image_path": "G:\\images\\combined\\007059_jpg.rf.f084ad528b0de785a654b5023a2ffd89.jpg", - "response": "In the image, a factory worker is wearing an orange vest and hat, standing behind a table with a circular saw on it. The worker is cutting a metal pipe and sparks are flying from the saw. The sparks are covering the entire image and there are multiple sparks in different sizes and directions. The background is blurry and the main focus is on the worker and the sparks.", - "id": 33092 - }, - { - "image_path": "G:\\images\\combined\\007060_jpg.rf.21fbabfc3321f8adabf98087a38ba73a.jpg", - "response": "A group of men standing on a bridge that is under construction.", - "id": 33093 - }, - { - "image_path": "G:\\images\\combined\\007061_jpg.rf.1d5989d265a295622c5c68eb972ba9be.jpg", - "response": "A man in a blue uniform and hard hat is working on a yellow pipe.", - "id": 33094 - }, - { - "image_path": "G:\\images\\combined\\007062_jpg.rf.cd43818274b1b9816427c0c86549a2f9.jpg", - "response": "A couple of workers are standing on a building site.", - "id": 33095 - }, - { - "image_path": "G:\\images\\combined\\007063_jpg.rf.82bcc9a16b400409f2586602f8bfb3ca.jpg", - "response": "An electrician is working on a power line in a residential area. He is wearing a white uniform and a blue helmet. He is standing on a wooden ladder, which is leaning against a tall concrete pole. The pole is filled with electrical equipment and wires. In the background, there are several tall buildings with balconies.", - "id": 33096 - }, - { - "image_path": "G:\\images\\combined\\007085c9466545f6.jpg", - "response": "A table with a typewriter on it and a deck of playing cards.", - "id": 33097 - }, - { - "image_path": "G:\\images\\combined\\007191c09b7f8548.jpg", - "response": "A male and female model are sitting on white chairs on a stage, presenting the LG Optimus Chic and the LG Optimus One (G1) smartphones. The female model is on the left and the male model is on the right.", - "id": 33098 - }, - { - "image_path": "G:\\images\\combined\\0071cc12dfe35d22.jpg", - "response": "A dirty yellow car with a white license plate is parked on the side of the road.", - "id": 33099 - }, - { - "image_path": "G:\\images\\combined\\0071dc035a60427e.jpg", - "response": "A black, white and orange cat with a purple collar and gold bell around its neck.", - "id": 33100 - }, - { - "image_path": "G:\\images\\combined\\0071dcd83ec7f9e2.jpg", - "response": "A red trolley car is going down the tracks in a city.", - "id": 33101 - }, - { - "image_path": "G:\\images\\combined\\0071e67f53f3dc39.jpg", - "response": "A street light with a sign attached to it.", - "id": 33102 - }, - { - "image_path": "G:\\images\\combined\\0072006110d73f8d.jpg", - "response": "A hand is holding four different cryptocurrency keychains. The first one is for Litecoin, it is an acrylic keychain with the Litecoin symbol on it. The second keychain is for Bitcoin, it is a gold keychain with the Bitcoin symbol on it. The third keychain is for Bitcoin, it is a bronze keychain with the Bitcoin symbol on it. The fourth keychain is for Bitcoin, it is a clear keychain with the Bitcoin symbol on it.", - "id": 33103 - }, - { - "image_path": "G:\\images\\combined\\00737efc6f6a967e.jpg", - "response": "A man standing at a podium with several signs behind him.", - "id": 33104 - }, - { - "image_path": "G:\\images\\combined\\00738_jpg.rf.6cbd32019d5706da2809f71556908dbf.jpg", - "response": "A group of men walking across a roof top.", - "id": 33105 - }, - { - "image_path": "G:\\images\\combined\\00738_jpg.rf.77f152606f7fe8f4f353ed979eb96731.jpg", - "response": "A group of men walking across a roof top.", - "id": 33106 - }, - { - "image_path": "G:\\images\\combined\\00739_jpg.rf.b046491ebd73ea60d1cfe0c50d15cfc8.jpg", - "response": "A group of four men standing on a rooftop.", - "id": 33107 - }, - { - "image_path": "G:\\images\\combined\\00739_jpg.rf.dd5bd2d3061d0ae0b78b45f2cc900001.jpg", - "response": "A group of four men standing on a rooftop.", - "id": 33108 - }, - { - "image_path": "G:\\images\\combined\\00742cd468e40de6.jpg", - "response": "A can of coffee that says Fire on it in English and Japanese.", - "id": 33109 - }, - { - "image_path": "G:\\images\\combined\\00742_jpg.rf.9a82928d33657948dbec086b19e4465e.jpg", - "response": "a group of people standing around a pile of grey rocks(337,533),(999,996)", - "id": 33110 - }, - { - "image_path": "G:\\images\\combined\\00743_jpg.rf.b8de9e8c27f787f1fab6a696498d166d.jpg", - "response": "A group of men in hard hats walking across a construction site.", - "id": 33111 - }, - { - "image_path": "G:\\images\\combined\\00743_jpg.rf.fccdbc70d359aa015dbe99fed0502914.jpg", - "response": "A group of men in hard hats walking across a construction site.", - "id": 33112 - }, - { - "image_path": "G:\\images\\combined\\00744_jpg.rf.04a574d98b1da119b153dd4b863727f7.jpg", - "response": "In the image there are three people wearing blue hard hats(370,264),(446,348)(468,281),(538,362)(534,272),(590,340), one of them is wearing a red shirt(419,375),(536,634), they are checking a pool of water. There is a yellow metal handrail in the foreground and a yellow metal walkway. In the background there is a yellow building with a lot of windows and a white roof. There is also a brown building with a blue roof in the background.", - "id": 33113 - }, - { - "image_path": "G:\\images\\combined\\00746_jpg.rf.0911488b4d568419fe1de791bf820f49.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 33114 - }, - { - "image_path": "G:\\images\\combined\\00746_jpg.rf.315f345b0c9fd1ae0dc4e2dc5fdbcce5.jpg", - "response": "A group of men working on a pipe in the ground.", - "id": 33115 - }, - { - "image_path": "G:\\images\\combined\\00747_jpg.rf.18ca273fd552c218749644c532998807.jpg", - "response": "The image shows a group of people carrying a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is surrounded by people. Some people are wearing hard hats, and there are several people standing around the stretcher. The ground is dirt, and there are wooden planks on the ground around the stretcher.", - "id": 33116 - }, - { - "image_path": "G:\\images\\combined\\00747_jpg.rf.83ec7d749a6e8b5ec3ddf32e56910104.jpg", - "response": "The image shows a group of people standing around a stretcher with a man on it. The man is wearing an orange shirt and is lying on a stretcher that is placed on wooden beams. The group of people is standing around the stretcher, with some of them holding it and others standing around it. Some of the people are wearing orange uniforms, and there are also some backpacks and a bottle in the scene. The ground is covered with dirt, and there are also some chairs and a bench in the background.", - "id": 33117 - }, - { - "image_path": "G:\\images\\combined\\00755ed1ee443a35.jpg", - "response": "A van with the word Yomtai on the side of it.", - "id": 33118 - }, - { - "image_path": "G:\\images\\combined\\007575a3d2399034.jpg", - "response": "a man wearing a red jersey is holding a baby dressed in a tiny soccer uniform", - "id": 33119 - }, - { - "image_path": "G:\\images\\combined\\00757ab42ca415d8.jpg", - "response": "A white delivery truck with a advertisement for JP Wisers on the side.", - "id": 33120 - }, - { - "image_path": "G:\\images\\combined\\0075f28d995930da.jpg", - "response": "A motorcycle is parked on a gravel shore next to a lake. The bike is facing the mountains in the background.", - "id": 33121 - }, - { - "image_path": "G:\\images\\combined\\00763053203c207f.jpg", - "response": "The image shows a pile of various items, including a small white plastic cat figurine with a rainbow tail, a few boxes of Photo Kano, and photos of a girl with blue hair. The plastic cat figurine is sitting on top of one of the Photo Kano boxes. The pile of items also includes a few boxes with anime characters on them.", - "id": 33122 - }, - { - "image_path": "G:\\images\\combined\\0077cfc1390df0e6.jpg", - "response": "A wooden clock with metal spokes and a white face.", - "id": 33123 - }, - { - "image_path": "G:\\images\\combined\\00780778116614e0.jpg", - "response": "A man in a yellow jacket standing in front of a small building with two doors. The building has the word \"gentle\" on one door and \"lady\" on the other. There is a red pipe on the left side of the building and a pile of rocks next to it. The sky is white and there is a mountain in the background.", - "id": 33124 - }, - { - "image_path": "G:\\images\\combined\\0078338406ed7aa8.jpg", - "response": "A group of men are huddled together in a room with a yellow wall. They are all wearing sports jerseys and have their arms around each other. Some of the men are wearing backpacks and ties. There are several American flags strung across a doorway and some are placed around the room. A TV is in the room and a few books are stacked on a shelf.", - "id": 33125 - }, - { - "image_path": "G:\\images\\combined\\00784ef6ad094836.jpg", - "response": "The image shows a large room filled with people sitting at long tables. There are multiple chairs and tables throughout the room, and the tables are covered with various items such as backpacks, laptops, and books. The people in the room are engaged in a variety of activities, including talking to each other and working on their laptops. Some people are sitting alone, while others are sitting in groups. The room has a modern and industrial feel to it, with white walls and large windows.", - "id": 33126 - }, - { - "image_path": "G:\\images\\combined\\00792db6bb86e0e2.jpg", - "response": "A hockey team stands on the ice in a stadium.", - "id": 33127 - }, - { - "image_path": "G:\\images\\combined\\0079626afbcf18b9.jpg", - "response": "A close up of a smartphone with a yellow case. The screen displays data from a fitness app. The time is 11:10 and the temperature is 12 degrees Celsius. The altitude is 1200 meters. The heart rate is 123 beats per minute. The speed is 10.5 kilometers per hour. The distance is 9.6 kilometers. The altitude gain is 963 meters. There is a button with a picture of a person running. Below this is a button with a picture of a bag.", - "id": 33128 - }, - { - "image_path": "G:\\images\\combined\\007968e74e3c5ddc.jpg", - "response": "A man standing in front of a classroom, giving a lecture.", - "id": 33129 - }, - { - "image_path": "G:\\images\\combined\\0079cc61e4ade96f.jpg", - "response": "A green dumpster with the words \"I love you\" written on it in yellow spray paint.", - "id": 33130 - }, - { - "image_path": "G:\\images\\combined\\007a0eaa8594488c.jpg", - "response": "The image features a pink and white Hello Kitty sugar syrup bottle sitting on a counter. The bottle is clear and tall, with a label featuring the iconic Hello Kitty character. The bottle is almost empty, with only a small amount of syrup remaining.", - "id": 33131 - }, - { - "image_path": "G:\\images\\combined\\007a2a20d20b99c4.jpg", - "response": "A large video screen displays information about Epson's Pulsense line of activity monitors. Two devices are shown, a Pulsense Watch and a Pulsense Band. The Pulsense Watch is shown in more detail, with a price of $199.", - "id": 33132 - }, - { - "image_path": "G:\\images\\combined\\007a4e97abc192b9.jpg", - "response": "A black Mars candy vending machine with a wrapper design on it.", - "id": 33133 - }, - { - "image_path": "G:\\images\\combined\\007ac6a42d3b93e5.jpg", - "response": "A man wearing a grey shirt and khaki shorts is pointing towards a bird bath.", - "id": 33134 - }, - { - "image_path": "G:\\images\\combined\\007b13712b157445.jpg", - "response": "A tire with a green rim is being inflated with a green pump.", - "id": 33135 - }, - { - "image_path": "G:\\images\\combined\\007b26babc057f54.jpg", - "response": "A table with a cell phone, picture frames, and brochures on it.", - "id": 33136 - }, - { - "image_path": "G:\\images\\combined\\007b3b91e66b0689.jpg", - "response": "A baseball pitcher for the New York Yankees celebrates after getting a batter to hit a fly ball during a game.", - "id": 33137 - }, - { - "image_path": "G:\\images\\combined\\007c3047f0237443.jpg", - "response": "A baseball game is being played on a field. There are three players on the field, one of them is running towards home plate. The catcher is standing behind the runner, and the umpire is standing behind the catcher. The runner is wearing a red jersey and the catcher is wearing a red helmet. The umpire is wearing a blue shirt.", - "id": 33138 - }, - { - "image_path": "G:\\images\\combined\\007c5073fc9774bc.jpg", - "response": "A thermometer that is on a table.", - "id": 33139 - }, - { - "image_path": "G:\\images\\combined\\007c8c28e1f149b1.jpg", - "response": "A box for a Lego set called The Lego Movie. The box features a Lego Batman figure and a Lego cat figure fighting.", - "id": 33140 - }, - { - "image_path": "G:\\images\\combined\\007ce03e56abd3f6.jpg", - "response": "The image shows a wall covered in various items. On the wall, there are multiple makeup brushes, including a large brush and a small one, a compact mirror, a cell phone, and a pair of glasses. There are also multiple beauty products, including two bottles of foundation, a tube of lipstick, and two eyeshadow palettes. A pink hair tie is also attached to the wall. The wall is white and the items are arranged in a haphazard manner.", - "id": 33141 - }, - { - "image_path": "G:\\images\\combined\\007ce7eca014eae6.jpg", - "response": "A woman holding a Seattle snow globe in front of her face.", - "id": 33142 - }, - { - "image_path": "G:\\images\\combined\\007d8de02b273320.jpg", - "response": "A bus with a design of yellow and blue leaves on the side.", - "id": 33143 - }, - { - "image_path": "G:\\images\\combined\\007db4299e52668a.jpg", - "response": "Four men are wearing uniforms and posing for a picture.", - "id": 33144 - }, - { - "image_path": "G:\\images\\combined\\007e5ddf6555e6dd.jpg", - "response": "A silver Mercedes Benz is parked on the side of the street.", - "id": 33145 - }, - { - "image_path": "G:\\images\\combined\\007f097678571e5d.jpg", - "response": "A display of several Lego sets, including a toy story set and a racers set.", - "id": 33146 - }, - { - "image_path": "G:\\images\\combined\\007f51fd92c14610.jpg", - "response": "An open book with a variety of green and black images on the pages.", - "id": 33147 - }, - { - "image_path": "G:\\images\\combined\\008078930b01bc50.jpg", - "response": "A flower shop with a large variety of flowers and plants on display.", - "id": 33148 - }, - { - "image_path": "G:\\images\\combined\\0080a7dfda1e078f.jpg", - "response": "A black cat sitting in a cardboard box on the floor.", - "id": 33149 - }, - { - "image_path": "G:\\images\\combined\\0080ab49662c727c.jpg", - "response": "a board with post it notes with writing on it", - "id": 33150 - }, - { - "image_path": "G:\\images\\combined\\008125630eaf4f05.jpg", - "response": "A street sign that says Clifden Hwy on it.", - "id": 33151 - }, - { - "image_path": "G:\\images\\combined\\00819_jpg.rf.c6d57d2e813850068cfa85682b6dc9b3.jpg", - "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a yellow hard hat on. He is standing on a rocky surface with a pile of dirt and rocks in front of him. There is a truck parked in the background. In the distance, there are several wind turbines on a mountain.", - "id": 33152 - }, - { - "image_path": "G:\\images\\combined\\00819_jpg.rf.f225722465f3d09c4b0bc919674ba49a.jpg", - "response": "A man in a yellow hard hat stands in front of a red bridge-like structure that is being built. The man is wearing a blue shirt and has a beard. He is standing on a brown rocky hillside. In the background, behind the man and to his right, there are several wind turbines on a mountain. The sky is a mix of blue and white clouds. There is a yellow truck parked in the bottom right corner of the image.", - "id": 33153 - }, - { - "image_path": "G:\\images\\combined\\0081a04e410013db.jpg", - "response": "A case of cans of WD-40.", - "id": 33154 - }, - { - "image_path": "G:\\images\\combined\\00826474a7efc217.jpg", - "response": "A black piece of fabric is next to a pair of red and silver sewing shears. There is a small square of red fabric with a black pattern on it, and it is pinned to the black fabric. There are also a few pieces of white thread on the fabric.", - "id": 33155 - }, - { - "image_path": "G:\\images\\combined\\00831662d2ba731a.jpg", - "response": "The image shows the rear end of a silver car parked in a parking space. The license plate has the letters \"JIBA\" on it. There is a bicycle visible in the reflection of the car.", - "id": 33156 - }, - { - "image_path": "G:\\images\\combined\\00837e895ee4701f.jpg", - "response": "A blue building with a sign that says Pustaka Mukmin.", - "id": 33157 - }, - { - "image_path": "G:\\images\\combined\\0083e919337aebb0.jpg", - "response": "A silver car with the license plate 44 41 is parked in a parking lot.", - "id": 33158 - }, - { - "image_path": "G:\\images\\combined\\00841_jpg.rf.61ecb34c38d0f2406e52bdbe878af808.jpg", - "response": "A couple of men in blue hard hats are working on an electrical tower.", - "id": 33159 - }, - { - "image_path": "G:\\images\\combined\\00841_jpg.rf.a07757f20c0863f76a8c30089c34cffd.jpg", - "response": "In the image two workers are repairing an electrical component. They are wearing blue and white hard hats and are kneeling on the ground. The man on the left is using a tool to repair the component.", - "id": 33160 - }, - { - "image_path": "G:\\images\\combined\\0084491e91492c18.jpg", - "response": "A cell phone, a timer, and a meter are laying on a checkered surface.", - "id": 33161 - }, - { - "image_path": "G:\\images\\combined\\00845f16b7c1e9b1.jpg", - "response": "The image is of a salsa music album cover for Dura Salsa Vol. 2. The cover features a woman with blonde hair and a full red lip. The woman has a number 133 written on her cheek. The album cover is in black and white.", - "id": 33162 - }, - { - "image_path": "G:\\images\\combined\\00846_jpg.rf.16020e863b28c18f7a5e177befc13003.jpg", - "response": "Three men in blue work shirts and blue helmets are standing in a field.", - "id": 33163 - }, - { - "image_path": "G:\\images\\combined\\00846_jpg.rf.f0a4f74937eda504f5b7e9f9d13e6341.jpg", - "response": "Three men in blue jeans and hard hats are standing in a field.", - "id": 33164 - }, - { - "image_path": "G:\\images\\combined\\0085245e85b9815d.jpg", - "response": "A wall made of many different cell phones.", - "id": 33165 - }, - { - "image_path": "G:\\images\\combined\\00853aa7e26dc77f.jpg", - "response": "In the image a person is holding an iPhone which is displaying a German website for an online shop. The website is for a company called \"Produkt- Vergleich\" and is showing a comparison of different deodorants. The person is comparing the Bebe Young Care deodorant spray with the Dry deodorant by Rexona. The iPhone is in front of a blurred out shelf with various deodorants and other beauty products.", - "id": 33166 - }, - { - "image_path": "G:\\images\\combined\\00854_jpg.rf.505165734a624453b9ab5c798c5cb221.jpg", - "response": "Three men in front of a building.", - "id": 33167 - }, - { - "image_path": "G:\\images\\combined\\00860d45e849ec0c.jpg", - "response": "a black and white photo of a city street with tall buildings", - "id": 33168 - }, - { - "image_path": "G:\\images\\combined\\00868a00547307b0.jpg", - "response": "a group of people walking on a busy street", - "id": 33169 - }, - { - "image_path": "G:\\images\\combined\\00869f0facebd0eb.jpg", - "response": "The image shows three different views of an iPod Nano. The middle view is a side view of the iPod Nano, which is a rectangular shape with a flat front and back. The front of the iPod has a screen with four icons at the bottom, and the back of the iPod has the Apple logo. The left and right views are top and bottom views of the iPod Nano, respectively. The left view shows the top of the iPod Nano, which has a small speaker grill and a power button. The right view shows the bottom of the iPod Nano, which has a dock connector.", - "id": 33170 - }, - { - "image_path": "G:\\images\\combined\\0086c62d24fc6827.jpg", - "response": "A book display of several books including one by William Morris.", - "id": 33171 - }, - { - "image_path": "G:\\images\\combined\\00875c7f30a72189.jpg", - "response": "A red can of S-Tack insulation adhesive with a white label on it.", - "id": 33172 - }, - { - "image_path": "G:\\images\\combined\\008780d91774e5f1.jpg", - "response": "An iPhone 6 Plus sitting on a wooden table.", - "id": 33173 - }, - { - "image_path": "G:\\images\\combined\\00878e1cb55d4c2f.jpg", - "response": "A red and white can of Cocos brand light meat tuna.", - "id": 33174 - }, - { - "image_path": "G:\\images\\combined\\00886_jpg.rf.23291cedaab04e839c1441600d8a7f09.jpg", - "response": "A group of three men in white and blue uniforms and white helmets are walking across a parking lot carrying a couple of fire extinguishers.", - "id": 33175 - }, - { - "image_path": "G:\\images\\combined\\00886_jpg.rf.b63983b05d62136725d909da1996eb59.jpg", - "response": "A group of three men in white and blue uniforms carrying a total of three fire extinguishers.", - "id": 33176 - }, - { - "image_path": "G:\\images\\combined\\0088be963439e57d.jpg", - "response": "A car parked on the side of a street.", - "id": 33177 - }, - { - "image_path": "G:\\images\\combined\\00890186fcebe7c7.jpg", - "response": "A man and a boy pose for a picture in a boxing gym. The boy has a red and black jacket on and the man has a grey North Dumfries Boxing Club sweatshirt on. They are both standing in front of a boxing ring.", - "id": 33178 - }, - { - "image_path": "G:\\images\\combined\\00895_jpg.rf.235e2cab1906d6ad1d47ad28fcf953d5.jpg", - "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of green bushes. In the background, there are four high-rise buildings. The sky is blue with clouds.", - "id": 33179 - }, - { - "image_path": "G:\\images\\combined\\00895_jpg.rf.9cd21060fe93956fd115515fb577cd21.jpg", - "response": "In the foreground, two men are standing next to each other. Both are wearing hard hats. To the left of the men, there is a row of hedges. In the background, there are four high-rise buildings. The sky is blue with some clouds.", - "id": 33180 - }, - { - "image_path": "G:\\images\\combined\\008969c238c6917e.jpg", - "response": "A box with a green ribbon and a bow on it.", - "id": 33181 - }, - { - "image_path": "G:\\images\\combined\\0089a3be4691c3eb.jpg", - "response": "A man in a blue racing suit stands next to a woman in a black leather jacket. Both are standing in front of a white wall.", - "id": 33182 - }, - { - "image_path": "G:\\images\\combined\\0089b0863da21af6.jpg", - "response": "A bookshelf filled with books and binders.", - "id": 33183 - }, - { - "image_path": "G:\\images\\combined\\008a0794559548ee.jpg", - "response": "The image shows a baseball field with a group of men standing on it. There are several people present, some of whom are holding baseball gloves, and others are holding a hose. The men are hosing down the field, and the hose can be seen stretching across the scene. The image also shows a large banner in the background, advertising a business called Soft Signs.", - "id": 33184 - }, - { - "image_path": "G:\\images\\combined\\008a63bd711aab86.jpg", - "response": "A large video game display in a store filled with many different video games.", - "id": 33185 - }, - { - "image_path": "G:\\images\\combined\\008a7856b1861aaf.jpg", - "response": "The runner is running to the first base.", - "id": 33186 - }, - { - "image_path": "G:\\images\\combined\\008aabb43f244552.jpg", - "response": "A blue car parked in a driveway next to a pile of sandbags.", - "id": 33187 - }, - { - "image_path": "G:\\images\\combined\\008b8556a73601ae.jpg", - "response": "A black and white cat is sitting on a wooden table. The cat has yellow eyes and is looking at the camera. It is sitting on top of a magazine, which is titled \"Politics\". There is another magazine under the first one, and a book is visible in the background.", - "id": 33188 - }, - { - "image_path": "G:\\images\\combined\\008bc1ff39714379.jpg", - "response": "The image features a basketball game in progress with two teams playing against each other. One player from the team in white is holding the basketball and appears to be about to shoot it. Another player from the same team is guarding the player with the ball. There are several other players on the court, some holding basketballs and others in various positions. The court has a wood grain design and the game is being played in front of an audience.", - "id": 33189 - }, - { - "image_path": "G:\\images\\combined\\008c34315d9775ee.jpg", - "response": "A street view of a city with many cars parked on the side of the road. There are also many buildings lining the street.", - "id": 33190 - }, - { - "image_path": "G:\\images\\combined\\008cfef3402609bf.jpg", - "response": "A flat screen television displays the BBC iPlayer on its screen.", - "id": 33191 - }, - { - "image_path": "G:\\images\\combined\\008d0681123bcdf1.jpg", - "response": "A white van with a crane on top is driving down a busy street.", - "id": 33192 - }, - { - "image_path": "G:\\images\\combined\\008d100b4f31c031.jpg", - "response": "A polo shirt in sky blue color with the brand name Victorinox on the left side of the chest.", - "id": 33193 - }, - { - "image_path": "G:\\images\\combined\\008e36a5a0623445.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 33194 - }, - { - "image_path": "G:\\images\\combined\\008e55e8866c3a92.jpg", - "response": "A translucent OpenUP trophy for OpenUP winners of 2011.", - "id": 33195 - }, - { - "image_path": "G:\\images\\combined\\008e92ff98f6f209.jpg", - "response": "A blue and yellow double decker bus is parked on the street.", - "id": 33196 - }, - { - "image_path": "G:\\images\\combined\\008e95a340972b70.jpg", - "response": "A man in a suit and hat standing in front of a bus.", - "id": 33197 - }, - { - "image_path": "G:\\images\\combined\\008eb1db3d98439e.jpg", - "response": "A gold watch with a white face and brown leather strap.", - "id": 33198 - }, - { - "image_path": "G:\\images\\combined\\008eb91158d943f8.jpg", - "response": "Two bottles of Franciacorta wine, one of which is a bottle of Ros\u00e9.", - "id": 33199 - }, - { - "image_path": "G:\\images\\combined\\008ed85b989a36ec.jpg", - "response": "A yellow Chevrolet school bus is driving down the street.", - "id": 33200 - }, - { - "image_path": "G:\\images\\combined\\008f94a81fa356cf.jpg", - "response": "A shelf with a variety of soda and energy drinks.", - "id": 33201 - }, - { - "image_path": "G:\\images\\combined\\008fc0a1f69b52fb.jpg", - "response": "A man in a uniform standing at a podium.", - "id": 33202 - }, - { - "image_path": "G:\\images\\combined\\00900_jpg.rf.27ae9b4bee9a2213e3dc17d9deaef3e8.jpg", - "response": "A group of three men standing next to each other.", - "id": 33203 - }, - { - "image_path": "G:\\images\\combined\\00900_jpg.rf.cbac4160d201dd464e1ebe7ceb286ea0.jpg", - "response": "A group of three men standing next to each other drinking from small bowls.", - "id": 33204 - }, - { - "image_path": "G:\\images\\combined\\00901a3bf99aecb6.jpg", - "response": "A superman toy in the shape of a plane.", - "id": 33205 - }, - { - "image_path": "G:\\images\\combined\\00907da87b13210f.jpg", - "response": "A baseball player wearing a white uniform with red lettering is running on the field.", - "id": 33206 - }, - { - "image_path": "G:\\images\\combined\\00915dbaa395904c.jpg", - "response": "A room with a blue ball in the corner and a window letting in sunlight. There is a bookshelf with many books on it and a desk with papers on it.", - "id": 33207 - }, - { - "image_path": "G:\\images\\combined\\00918f59a42f88f5.jpg", - "response": "The image shows a basketball game in progress with players from two opposing teams on the court. The players are spread out across the court, with some near the sides and others closer to the center. There is a large crowd of people in the stands, watching the game. The score is displayed at the top left of the image, indicating that the game is in the final seconds.", - "id": 33208 - }, - { - "image_path": "G:\\images\\combined\\00919b81c44a6146.jpg", - "response": "A man is holding a book with a woman on the cover.", - "id": 33209 - }, - { - "image_path": "G:\\images\\combined\\00922ab06cc71238.jpg", - "response": "A black and white photo of an engine block with the word Invader on it.", - "id": 33210 - }, - { - "image_path": "G:\\images\\combined\\00927c18ac896fc1.jpg", - "response": "A white t-shirt is displayed on the left and right side of the image. The t-shirt on the left has a pocket on the left side and the text \"indie bands with a mission dazzle\" printed on the front. The t-shirt on the right has a pocket on the left side and the text \"If you can't dazzle them with your BRILLIANCE, baffle them with your B.S.\" printed on the front.", - "id": 33211 - }, - { - "image_path": "G:\\images\\combined\\00927_jpg.rf.f6870cf949efaff7ed98871269448667.jpg", - "response": "A group of five men in yellow vests and hard hats are standing in a room. The men are looking at a man who is pointing to a wall of grey electrical panels.", - "id": 33212 - }, - { - "image_path": "G:\\images\\combined\\0092a20b63799744.jpg", - "response": "A black car with a smashed front is parked on the street.", - "id": 33213 - }, - { - "image_path": "G:\\images\\combined\\00932_jpg.rf.28cc0633a3aabab008e59f9852d190c2.jpg", - "response": "A man in a blue hard hat and coveralls is standing on a metal structure. He is holding a red and white beverage bottle and drinking from it. He is also wearing a white glove on his left hand. The man is on top of a metal structure and appears to be at a great height.", - "id": 33214 - }, - { - "image_path": "G:\\images\\combined\\0093ebae4fb8b5cf.jpg", - "response": "A book with the title \"Erich Maria Remarque im Westen nichts Neues\" written on the cover.", - "id": 33215 - }, - { - "image_path": "G:\\images\\combined\\0095c71d8fbe4462.jpg", - "response": "a basketball player holding a ball on a court", - "id": 33216 - }, - { - "image_path": "G:\\images\\combined\\00963eaad91c7da8.jpg", - "response": "A group of people standing behind a wall holding flags and banners.", - "id": 33217 - }, - { - "image_path": "G:\\images\\combined\\00968589ac02a00b.jpg", - "response": "The image shows the exterior of a Lush store. The storefront has a large window display with a variety of products. There are several people walking in and out of the store. One person is carrying a handbag and a backpack. There is a poster on the wall with the words \"They do exist.\" written on it. The store is located in a mall.", - "id": 33218 - }, - { - "image_path": "G:\\images\\combined\\0096b618e500e24b.jpg", - "response": "A baseball player is running on a field.", - "id": 33219 - }, - { - "image_path": "G:\\images\\combined\\00971_jpg.rf.3bd478ce8795b809f122987fc8dfb835.jpg", - "response": "A group of men working on a road.", - "id": 33220 - }, - { - "image_path": "G:\\images\\combined\\00971_jpg.rf.6c155d526f9f58bf3b9902cdaeef9f96.jpg", - "response": "The image shows three men wearing red hard hats and work clothes, pulling a large black pipe along a road. The men are in the process of rolling the pipe, which is covered in dirt. They are all wearing red hard hats and one of the men is also wearing a white t-shirt. The men are in the process of rolling the pipe and it appears to be quite heavy.", - "id": 33221 - }, - { - "image_path": "G:\\images\\combined\\00974_jpg.rf.42a863ab64e32af2e660cd84fd31a91a.jpg", - "response": "a group of men standing in front of a building", - "id": 33222 - }, - { - "image_path": "G:\\images\\combined\\00974_jpg.rf.c1f66e944881a1e7e6f85c5a6c222e15.jpg", - "response": "A group of three men standing in front of a building.", - "id": 33223 - }, - { - "image_path": "G:\\images\\combined\\0097683580838f04.jpg", - "response": "A white semi truck with a lion sticker on the front.", - "id": 33224 - }, - { - "image_path": "G:\\images\\combined\\00977_jpg.rf.1f8db8f5c8fba619cc39589e339848d1.jpg", - "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", - "id": 33225 - }, - { - "image_path": "G:\\images\\combined\\00977_jpg.rf.9189470d6ac4ebdfb4c28cce2e624860.jpg", - "response": "A woman in a blue shirt and blue hat is carrying a yellow ladder over her shoulder. She is walking through a green field with the ladder.", - "id": 33226 - }, - { - "image_path": "G:\\images\\combined\\0097b316726906d7.jpg", - "response": "A bottle of champagne sits on a wooden floor. The bottle is green and has a red, white and green ribbon tied around it. The ribbon is tied in a bow. The bottle is closed. The floor is made of wood and has a brown color. There is a chair next to the bottle.", - "id": 33227 - }, - { - "image_path": "G:\\images\\combined\\009816444496f09c.jpg", - "response": "A bottle of Hoegaarden beer sitting on a table.", - "id": 33228 - }, - { - "image_path": "G:\\images\\combined\\009817f6e8bcd068.jpg", - "response": "The image features a vintage yellow car parked on the side of the road. The car has a chrome bumper and silver hubcaps. There is a man visible in the driver's side window. The car is positioned in front of a building and a grassy area is visible in the background.", - "id": 33229 - }, - { - "image_path": "G:\\images\\combined\\0098344405a26bde.jpg", - "response": "Two women are standing in a kitchen. One of them is wearing a white apron. One of them is holding a cell phone. On the table in front of them are various food items and utensils.", - "id": 33230 - }, - { - "image_path": "G:\\images\\combined\\009847496908a1ad.jpg", - "response": "A basketball player in a blue uniform dribbles the ball while another player in a white uniform looks on.", - "id": 33231 - }, - { - "image_path": "G:\\images\\combined\\00988_jpg.rf.0f9a11b6dbbc85b719898c763d5ed6fe.jpg", - "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", - "id": 33232 - }, - { - "image_path": "G:\\images\\combined\\00988_jpg.rf.c3379c2b6ad5781f99ecb8666c124c39.jpg", - "response": "A group of four people standing next to each other and wearing hard hats. They are all holding a blueprint and pointing at it. They are all dressed in business attire.", - "id": 33233 - }, - { - "image_path": "G:\\images\\combined\\00990_jpg.rf.26276f360ac1d29428c4ed242c33ce5f.jpg", - "response": "An elderly woman is standing next to a refrigerator.", - "id": 33234 - }, - { - "image_path": "G:\\images\\combined\\00993_jpg.rf.d1774f6773b79f07cefb863dc00555cf.jpg", - "response": "In the image there are three men standing next to each other all in blue hats. One man is on the left, he is wearing a grey shirt and a grey and blue cap. The man in the middle is wearing a black shirt and a light blue hat. The man on the right is wearing a brown shirt and a green and blue hat. They all have blue and grey hats.", - "id": 33235 - }, - { - "image_path": "G:\\images\\combined\\00993_jpg.rf.d808a636700f1e7647386c2cc76f5e22.jpg", - "response": "A construction site with three men in hard hats standing next to a sign that says, \\\"\u4e0b\u6709\u7535\u7f06,\u4e25\u7981\u5f00\u6316\\\".", - "id": 33236 - }, - { - "image_path": "G:\\images\\combined\\0099945c5e49aae9.jpg", - "response": "A store with a nokia display case and a lucaioli display case.", - "id": 33237 - }, - { - "image_path": "G:\\images\\combined\\0099ad671d4484c0.jpg", - "response": "A bottle of Rogue Voodoo Doughnut chocolate peanut butter banana ale sits on a table.", - "id": 33238 - }, - { - "image_path": "G:\\images\\combined\\009a1573c01ff327.jpg", - "response": "The album cover for Cream's Disraeli Gears. The cover is a very colorful and trippy image with the band members' faces at the top. The three band members are Jack Bruce, Ginger Baker, and Eric Clapton. They are depicted with their heads stacked on top of each other. The word \"Cream\" is written in large letters in the center of the image. The letters are yellow and outlined in orange. The \"r\" in the word \"Cream\" is replaced with a red and yellow rose. The image is filled with many different colorful patterns and designs. There are two clocks visible in the bottom right corner. One of the clocks is white and has black hands. The other clock is blue and has black hands. There is a pink and yellow bird with red eyes and a red beak flying over the word \"Cream\". The bird has a yellow body and red wings. The wings are spread wide and there are pink flowers on the wings. The background of the image is filled with many different colorful patterns and designs.", - "id": 33239 - }, - { - "image_path": "G:\\images\\combined\\009a716f953692ba.jpg", - "response": "The man is wearing a suit.", - "id": 33240 - }, - { - "image_path": "G:\\images\\combined\\009b425ad3b868b6.jpg", - "response": "A woman standing in front of a white board.", - "id": 33241 - }, - { - "image_path": "G:\\images\\combined\\009ba461026271c3.jpg", - "response": "An ambulance is parked in a garage with another ambulance behind it. The ambulance in the forefront is white with a red checkered pattern on the side. It has a yellow stripe across the front and the words Ambulance Service NSW on the side. There is a logo on the door and a red cross on the back. The ambulance has a tire on the passenger side and a yellow license plate on the front. There are two large headlights on the front of the ambulance.", - "id": 33242 - }, - { - "image_path": "G:\\images\\combined\\009bf5ad19cd8f72.jpg", - "response": "A tea bag that looks like a small golden house is in a cup of tea.", - "id": 33243 - }, - { - "image_path": "G:\\images\\combined\\009dd8288bf5ce4a.jpg", - "response": "A red train is on the tracks at a train station.", - "id": 33244 - }, - { - "image_path": "G:\\images\\combined\\009e76edf23c89df.jpg", - "response": "a white wall with a paper on it", - "id": 33245 - }, - { - "image_path": "G:\\images\\combined\\009f259e443a58b8.jpg", - "response": "A cardboard background with a blue and white toy robot ball called Ollie and a blue toy ball.", - "id": 33246 - }, - { - "image_path": "G:\\images\\combined\\00a035ff3a86e058.jpg", - "response": "The image shows a stove with three pots on it. The pots are filled with food and are sitting on the stove burners. The pots are placed on the stove burners and are sitting on a white stove.", - "id": 33247 - }, - { - "image_path": "G:\\images\\combined\\00a09b822d470896.jpg", - "response": "a red and white bus on a city street", - "id": 33248 - }, - { - "image_path": "G:\\images\\combined\\00a09ecdb91450d6.jpg", - "response": "A Canticle for Leibowitz by Walter M. Miller, Jr.", - "id": 33249 - }, - { - "image_path": "G:\\images\\combined\\00a0d2280595043f.jpg", - "response": "A man and woman are sitting together in a restaurant. The woman is holding a glass of wine and both are smiling. They are wearing black shirts and have short hair. There are other people in the background, sitting at tables and standing around.", - "id": 33250 - }, - { - "image_path": "G:\\images\\combined\\00a0db6495982c1d.jpg", - "response": "A baseball player in a teal jersey and white pants catches a ball in front of a wall with a KeyBank logo on it.", - "id": 33251 - }, - { - "image_path": "G:\\images\\combined\\00a108e5e2160b20.jpg", - "response": "a man in a black jacket with the word Canada on it", - "id": 33252 - }, - { - "image_path": "G:\\images\\combined\\00a1568f9906eaa8.jpg", - "response": "A close up of a tree branch with a silver necklace that says \"Trust\" hanging from it.", - "id": 33253 - }, - { - "image_path": "G:\\images\\combined\\00a16465603c7d44.jpg", - "response": "A red can of coffee with coffee beans on it.", - "id": 33254 - }, - { - "image_path": "G:\\images\\combined\\00a1a5c20b0d8e28.jpg", - "response": "In the image there is a person pouring olive oil into a cup. The oil is yellow and there are several bottles of oil and wine in the background. There are also some fruits, such as apples and oranges, and several cups in the scene.", - "id": 33255 - }, - { - "image_path": "G:\\images\\combined\\00a209837c2bbec5.jpg", - "response": "A red double decker bus driving down the street.", - "id": 33256 - }, - { - "image_path": "G:\\images\\combined\\00a2ac61646c039e.jpg", - "response": "A toy car of the Guardia Civil Trafico on a blue surface.", - "id": 33257 - }, - { - "image_path": "G:\\images\\combined\\00a309828c1dcb84.jpg", - "response": "A snack tray with various snacks and drinks on it.", - "id": 33258 - }, - { - "image_path": "G:\\images\\combined\\00a36cacbd3d2070.jpg", - "response": "A man wearing a brown suit and pink tie standing in front of a pink and white backdrop.", - "id": 33259 - }, - { - "image_path": "G:\\images\\combined\\00a39c7f39870a5c.jpg", - "response": "A watch with a black band and a note that says 0153 John.", - "id": 33260 - }, - { - "image_path": "G:\\images\\combined\\00a40156a2843195.jpg", - "response": "a red box with the word peace on it", - "id": 33261 - }, - { - "image_path": "G:\\images\\combined\\00a42fc158bbdc03.jpg", - "response": "A bus is driving down the street next to a tall building.", - "id": 33262 - }, - { - "image_path": "G:\\images\\combined\\00a4decd12ae97b9.jpg", - "response": "A red and white double decker bus is driving down the street.", - "id": 33263 - }, - { - "image_path": "G:\\images\\combined\\00a4e8944cc8ad7b.jpg", - "response": "A city skyline with a mix of old and new buildings.", - "id": 33264 - }, - { - "image_path": "G:\\images\\combined\\00a5dbacb0654efd.jpg", - "response": "A woman wearing a white shirt is sitting at a table with a coke in front of her. She is holding a toothbrush in her hand. Another person is sitting across from her at the table. There is a chair behind the woman and another chair to her right. The table is surrounded by greenery.", - "id": 33265 - }, - { - "image_path": "G:\\images\\combined\\00a5e66a7d17a02b.jpg", - "response": "a man wearing a black jacket with the letters AM on it", - "id": 33266 - }, - { - "image_path": "G:\\images\\combined\\00a66ef9770f9d2d.jpg", - "response": "The image shows a city street at night with cars parked along the side of the road. There are two taxis among the parked cars. In the background, there is a building with a sign that reads \"BARNES & NOBLE BOOKSELLERS\". The street appears to be quite and undisturbed.", - "id": 33267 - }, - { - "image_path": "G:\\images\\combined\\00a698ae7a2bb13d.jpg", - "response": "A silver watch band on a green cloth.", - "id": 33268 - }, - { - "image_path": "G:\\images\\combined\\00a7b3204ec349a9.jpg", - "response": "A digital display on a wall that is blue and black.", - "id": 33269 - }, - { - "image_path": "G:\\images\\combined\\00a7bd25e5b5cc48.jpg", - "response": "a camera with a light on top of it", - "id": 33270 - }, - { - "image_path": "G:\\images\\combined\\00a8d9ab7c3b9c0e.jpg", - "response": "A group of cars driving down a street next to a McDonalds.", - "id": 33271 - }, - { - "image_path": "G:\\images\\combined\\00a92b45ef93bdb0.jpg", - "response": "A blue car is parked in front of a red building.", - "id": 33272 - }, - { - "image_path": "G:\\images\\combined\\00a96e7f361d71e2.jpg", - "response": "A bottle of Diet Coke sits next to a mirror.", - "id": 33273 - }, - { - "image_path": "G:\\images\\combined\\00a9eb4c3cd8622c.jpg", - "response": "Men standing on top of a podium with a sky background", - "id": 33274 - }, - { - "image_path": "G:\\images\\combined\\00ab9f2e1a54dc14.jpg", - "response": "A poster of Thomas Dry Howie is on display.", - "id": 33275 - }, - { - "image_path": "G:\\images\\combined\\00abf276002161e1.jpg", - "response": "A blue and white bus is driving down the street.", - "id": 33276 - }, - { - "image_path": "G:\\images\\combined\\00ac03de349a3c5b.jpg", - "response": "A banana with the word \"BANANA\" written on it in black ink.", - "id": 33277 - }, - { - "image_path": "G:\\images\\combined\\00ac8697a36e875a.jpg", - "response": "a pitcher on the mound wearing a glove and uniform", - "id": 33278 - }, - { - "image_path": "G:\\images\\combined\\00ac944a31bbe0cc.jpg", - "response": "An older man wearing a white baseball jersey with the word Orioles on it.", - "id": 33279 - }, - { - "image_path": "G:\\images\\combined\\00ad17e05c1a1bf5.jpg", - "response": "A man sitting in the stands at a baseball stadium.", - "id": 33280 - }, - { - "image_path": "G:\\images\\combined\\00ae4925aa2e84d3.jpg", - "response": "A close up of a wooden pen sitting on top of a piece of paper with writing on it.", - "id": 33281 - }, - { - "image_path": "G:\\images\\combined\\00aea206a697bea8.jpg", - "response": "A man wearing a grey suit and red tie stands at a podium in front of a screen. He is wearing glasses and has blonde hair.", - "id": 33282 - }, - { - "image_path": "G:\\images\\combined\\00aec8283e343acd.jpg", - "response": "A wall with a sign that says Mekanism on it. The wall is painted in many different colors of the rainbow. There is a fire extinguisher on the wall and a sign that says exit. There are several bikes parked next to the wall.", - "id": 33283 - }, - { - "image_path": "G:\\images\\combined\\00af2faf31786f05.jpg", - "response": "A film roll with the words Record Brother on it.", - "id": 33284 - }, - { - "image_path": "G:\\images\\combined\\00af42ec3a190514.jpg", - "response": "A large sign advertising a medical center with the names of three doctors and their job titles.", - "id": 33285 - }, - { - "image_path": "G:\\images\\combined\\00af53b6535b8dd2.jpg", - "response": "A team of girls in matching maroon gymnastic uniforms huddle together on the court.", - "id": 33286 - }, - { - "image_path": "G:\\images\\combined\\00afcdd80ab1ba76.jpg", - "response": "A tractor is parked on the grass at a farm.", - "id": 33287 - }, - { - "image_path": "G:\\images\\combined\\00b023e43ad4993e.jpg", - "response": "A street scene with a green and white tram on the left and a street filled with traffic on the right.", - "id": 33288 - }, - { - "image_path": "G:\\images\\combined\\00b07a3d1010af5f.jpg", - "response": "A cutting board with a measuring cup of flour, an egg, and a stick of butter.", - "id": 33289 - }, - { - "image_path": "G:\\images\\combined\\00b0d51471b1f237.jpg", - "response": "A billboard for the television show Grease is the Word is displayed on a building.", - "id": 33290 - }, - { - "image_path": "G:\\images\\combined\\00b12b1d815fac40.jpg", - "response": "A building with a red and white sign that says Benjamin Moore on it.", - "id": 33291 - }, - { - "image_path": "G:\\images\\combined\\00b1efe52ab7d53a.jpg", - "response": "a man with glasses standing in front of a display of RedKen shampoo and conditioner.", - "id": 33292 - }, - { - "image_path": "G:\\images\\combined\\00b1f61a9a3007d1.jpg", - "response": "A camera with a strap sitting on a wooden table.", - "id": 33293 - }, - { - "image_path": "G:\\images\\combined\\00b379d451531010.jpg", - "response": "A movie cover of a woman in a red coat with a white head scarf standing in front of a building.", - "id": 33294 - }, - { - "image_path": "G:\\images\\combined\\00b39d10735575b0.jpg", - "response": "The Oklahoma City Thunder cheerleaders perform in their blue and white outfits in front of a crowd.", - "id": 33295 - }, - { - "image_path": "G:\\images\\combined\\00b4190b562b62eb.jpg", - "response": "The image shows the tail of a light aircraft with the registration VH-NDH. The aircraft is yellow and the tail is made of metal. The aircraft manufacturer is Beechcraft.", - "id": 33296 - }, - { - "image_path": "G:\\images\\combined\\00b425b6d0d57e23.jpg", - "response": "A poster for Bollox, an altered club night for gay, bi and straight queers.", - "id": 33297 - }, - { - "image_path": "G:\\images\\combined\\00b4c6fb8ebb3f42.jpg", - "response": "A black smartphone is laying on a green cloth. The screen of the phone is turned on and has a red background with white, yellow, blue, and red icons. The time on the phone is 13:37.", - "id": 33298 - }, - { - "image_path": "G:\\images\\combined\\00b4e09408946c9a.jpg", - "response": "Four men are standing next to each other on a grassy area. They are all holding cups of drinks. One of the men is holding a large trophy.", - "id": 33299 - }, - { - "image_path": "G:\\images\\combined\\00b55e751a54bfd2.jpg", - "response": "The image features a volleyball game with two women on the court. One of the women is wearing a white shirt and black shorts with a green and white logo on the back. She is standing in front of the net, and her butt is shown in the picture. The other woman is wearing a red uniform and is partially visible in the background. The court has a blue floor and a black and white volleyball net.", - "id": 33300 - }, - { - "image_path": "G:\\images\\combined\\00b5b88720f35a22.jpg", - "response": "A poster for the movie Rush is displayed on a wall. The movie is based on the incredible true story of Formula 1 drivers James Hunt and Niki Lauda. The poster features the two drivers, Hunt and Lauda, in their racing suits. The movie is in theaters on September 13th.", - "id": 33301 - }, - { - "image_path": "G:\\images\\combined\\00b5d92b79a7990f.jpg", - "response": "A train on the tracks at a train station.", - "id": 33302 - }, - { - "image_path": "G:\\images\\combined\\00b5da1e05b5c60f.jpg", - "response": "A woman with brown hair wearing a red tank top and white shorts.", - "id": 33303 - }, - { - "image_path": "G:\\images\\combined\\00b6f96c840767fa.jpg", - "response": "a car with the number 44 on it", - "id": 33304 - }, - { - "image_path": "G:\\images\\combined\\00b788d91c0084f5.jpg", - "response": "The image is a screen shot of an iPad with a variety of icons on the screen.", - "id": 33305 - }, - { - "image_path": "G:\\images\\combined\\00b7cf3c17e0f1f7.jpg", - "response": "A basketball player is holding a basketball and looking up at the ceiling. He is wearing a white jersey with the number 23 on the back. There is a banner hanging on the wall behind him. Another basketball player is visible in the background, as well as a chair and a few other people. The room has a brown and white color scheme and there are several small lights on the ceiling.", - "id": 33306 - }, - { - "image_path": "G:\\images\\combined\\00b8735d5bcdfa22.jpg", - "response": "A red and white image of a crowd of people gathered in a town square. The people are standing and riding horses. There are buildings in the background.", - "id": 33307 - }, - { - "image_path": "G:\\images\\combined\\00b8e76e70c90916.jpg", - "response": "A green neon clock with black numbers on it.", - "id": 33308 - }, - { - "image_path": "G:\\images\\combined\\00b91c61d6a09129.jpg", - "response": "A movie poster on a glass display with asian writing on it.", - "id": 33309 - }, - { - "image_path": "G:\\images\\combined\\00b96943e2320363.jpg", - "response": "A bar with a variety of drinks on the shelves and taps.", - "id": 33310 - }, - { - "image_path": "G:\\images\\combined\\00ba3a61c45d0413.jpg", - "response": "A street sign with several different options for bike rides and other activities.", - "id": 33311 - }, - { - "image_path": "G:\\images\\combined\\00bc35fbb511ef71.jpg", - "response": "A red and white airplane is parked at an airport.", - "id": 33312 - }, - { - "image_path": "G:\\images\\combined\\00bc80d0d1460249.jpg", - "response": "A California Pacific Computers envelope with a software disk inside.", - "id": 33313 - }, - { - "image_path": "G:\\images\\combined\\00bcce3f41312a3f.jpg", - "response": "The image shows two baseball players standing on a field. Both players are wearing blue uniforms with white lettering that say \"Blue Jays.\" The player in the foreground is wearing a blue baseball cap with the Blue Jays logo on it. The cap has a brim that is turned down at the front and up at the back. The player is also wearing sunglasses that are pushed up on his forehead. The player behind him is wearing a blue baseball cap with a red bill. Both players are looking down at the field.", - "id": 33314 - }, - { - "image_path": "G:\\images\\combined\\00bd04a28d45fee5.jpg", - "response": "A man standing in front of a store window.", - "id": 33315 - }, - { - "image_path": "G:\\images\\combined\\00bd4ecb67753232.jpg", - "response": "An orange and white bus is parked in a lot with other buses.", - "id": 33316 - }, - { - "image_path": "G:\\images\\combined\\00bdc07a03221bd8.jpg", - "response": "The image shows a picnic table with a black cooler bag on it. There are two white food containers on the table, one on the left and one on the right. The containers are filled with food. A fork is placed on the left side of the table. In front of the table, there is a bottle of liquid, a bottle of sauce, and a bottle of honey.", - "id": 33317 - }, - { - "image_path": "G:\\images\\combined\\00be435f1f010bcc.jpg", - "response": "A blue bus is driving down a wet street.", - "id": 33318 - }, - { - "image_path": "G:\\images\\combined\\00bec629428e1d73.jpg", - "response": "A black and white photograph of Sir Wilfrid Laurier standing at a podium.", - "id": 33319 - }, - { - "image_path": "G:\\images\\combined\\00bedd5c2fbf2dff.jpg", - "response": "A large Yahoo billboard is shown, with a sign underneath that says \"Talk is cheap. Really.\"", - "id": 33320 - }, - { - "image_path": "G:\\images\\combined\\00bf3355e15e694f.jpg", - "response": "A double decker bus is parked on the side of the road near a building. The bus is orange, white, and blue and is stopped at a bus stop. There are several people standing near the bus, waiting to board. Some of the people are carrying backpacks. The bus has two levels and the top level has a sign that says \"50\" on it. There is also a sign near the bus stop that says \"no standing\" on it.", - "id": 33321 - }, - { - "image_path": "G:\\images\\combined\\00bfb65249fa578f.jpg", - "response": "A cheerleader is jumping in the air with her legs in the air and her hands holding her feet.", - "id": 33322 - }, - { - "image_path": "G:\\images\\combined\\00c098c7959397c3.jpg", - "response": "A busy city street filled with lots of traffic.", - "id": 33323 - }, - { - "image_path": "G:\\images\\combined\\00c24377a2cb57aa.jpg", - "response": "The image shows a grocery store with a man walking out of the front door. The store has a magazine rack with several magazines on display. A basket full of tuggaboos is located near the front of the store, and a sign advertising the tuggaboos for 99 cents is hanging above the basket. There are also several bottles of water on display in the store.", - "id": 33324 - }, - { - "image_path": "G:\\images\\combined\\00c2795a1ef8c477.jpg", - "response": "A blue and white sign for Interstate 5 is on a pole.", - "id": 33325 - }, - { - "image_path": "G:\\images\\combined\\00c2f37508a48cc1.jpg", - "response": "A group of football players are sitting at a table with a microphone. A young boy is standing in front of them, and one of the players is holding the microphone in his hand. There is a soldier in the background.", - "id": 33326 - }, - { - "image_path": "G:\\images\\combined\\00c3108d5e110b8a.jpg", - "response": "The image shows a basketball game in progress. There are two teams of players on the court, with one player from each team attempting to shoot the ball through the hoop. The ball is currently in mid-air, being contested by two players. One player is reaching up with both hands to block the shot, while the other player is reaching up with both hands to shoot the ball.", - "id": 33327 - }, - { - "image_path": "G:\\images\\combined\\00c346e16e2154ea.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 33328 - }, - { - "image_path": "G:\\images\\combined\\00c359f294f7dcd9.jpg", - "response": "A small red and white propeller plane with the letters G-ATCO on the side. It is sitting on a grassy field with a cloudy sky above.", - "id": 33329 - }, - { - "image_path": "G:\\images\\combined\\00c3fe9a609acc03.jpg", - "response": "A baseball game is in action as a runner is crossing the plate.", - "id": 33330 - }, - { - "image_path": "G:\\images\\combined\\00c479303d96336c.jpg", - "response": "A bottle of red wine next to two glasses of red wine.", - "id": 33331 - }, - { - "image_path": "G:\\images\\combined\\00c4b4691adeed37.jpg", - "response": "a hand holding a bottle of Coca Cola in front of a sign", - "id": 33332 - }, - { - "image_path": "G:\\images\\combined\\00c4c2eb114f586e.jpg", - "response": "A magazine ad for The Bay features a mother and child on the cover.", - "id": 33333 - }, - { - "image_path": "G:\\images\\combined\\00c5b5728ea00975.jpg", - "response": "The Boston Bruins are wearing their black and yellow jerseys.", - "id": 33334 - }, - { - "image_path": "G:\\images\\combined\\00c60dd0033d0a2a.jpg", - "response": "A cloudy sky over a city street with a large sign for Patsy's Italian and American Foods.", - "id": 33335 - }, - { - "image_path": "G:\\images\\combined\\00c618f03ea0b6a2.jpg", - "response": "In the image there is a bottle of essential oil with a label that says \"essential oil summer blend\" in English and Japanese. The bottle is clear and has a green label with a picture of herbs. The bottle is on a table and there is a white wall in the background.", - "id": 33336 - }, - { - "image_path": "G:\\images\\combined\\00c6c05e400a0b08.jpg", - "response": "A busy city intersection with a yellow taxi cab turning onto the street. The taxi is followed by a black SUV. There are several pedestrians crossing the street, and a traffic light is visible in the background. The city skyline is visible in the distance, with a tall building standing out among the other buildings.", - "id": 33337 - }, - { - "image_path": "G:\\images\\combined\\00c701c3a7421bd9.jpg", - "response": "A blue van and trailer are parked in front of a white domed building. The van has the words \"Census 2010\" on the side and a map of California. There is a man standing between the two vehicles.", - "id": 33338 - }, - { - "image_path": "G:\\images\\combined\\00c7f84d61adce05.jpg", - "response": "a jar of food (443,34),(942,995)", - "id": 33339 - }, - { - "image_path": "G:\\images\\combined\\00c8152e27a63776.jpg", - "response": "A book is open to a page about Joe Cote and Karen. The page is described as a continuation of the book of solamentry. The book is open to the page about Grape Climb.", - "id": 33340 - }, - { - "image_path": "G:\\images\\combined\\00c86a7bbf54df6f.jpg", - "response": "In the image, there is a man wearing glasses and a brown shirt crouching down next to a brown and green trash can. The trash can has a label that says \"Organico\". There is another green trash can in the scene. In the background, there are several other people, some of them wearing backpacks. There is also a bench visible in the scene.", - "id": 33341 - }, - { - "image_path": "G:\\images\\combined\\00c89990b2809b09.jpg", - "response": "A large white billboard is mounted on a brick wall. The billboard is empty and ready for a new advertisement.", - "id": 33342 - }, - { - "image_path": "G:\\images\\combined\\00c8df7ab3eb481b.jpg", - "response": "A newspaper with the heading \"Death notices\" is sitting on a table. There is a pair of glasses on top of the newspaper. Next to the newspaper is a bottle of alcohol. The table is made of wood.", - "id": 33343 - }, - { - "image_path": "G:\\images\\combined\\00c90458856a8866.jpg", - "response": "A young boy wearing a blue and white Cyclones jersey runs across a field.", - "id": 33344 - }, - { - "image_path": "G:\\images\\combined\\00c96e0e060aeb2f.jpg", - "response": "A red bus driving down a street next to a sidewalk.", - "id": 33345 - }, - { - "image_path": "G:\\images\\combined\\00c9f3f8e860c48f.jpg", - "response": "A white bus is driving down the street. There is a puddle of water on the street. People are walking on the sidewalk. There is a traffic light on the corner.", - "id": 33346 - }, - { - "image_path": "G:\\images\\combined\\00ca922eb4890a3b.jpg", - "response": "The image features a black box with a white background. The box is open and contains a black item with a red logo on it. The logo features the text \"\u8fbe\u97f3\u79d1\" written in red and the website \"http://www.duoku.com.cn\" written in white. The box is open and partially unsealed.", - "id": 33347 - }, - { - "image_path": "G:\\images\\combined\\00cacc08df00dec6.jpg", - "response": "A double decker bus is driving down the street.", - "id": 33348 - }, - { - "image_path": "G:\\images\\combined\\00cb8dccb5cb1f59.jpg", - "response": "The image features the back of a blue car with a license plate that reads \"3RD GENERATION PRIUS\". The car has a silver Toyota logo on the trunk.", - "id": 33349 - }, - { - "image_path": "G:\\images\\combined\\00cbc381888d9ffb.jpg", - "response": "A large clock mounted on the side of a building.", - "id": 33350 - }, - { - "image_path": "G:\\images\\combined\\00cc1d72396a132c.jpg", - "response": " Two men(203,375),(458,994)(557,382),(831,995) in military uniforms(557,626),(831,995)(203,567),(457,995) standing in front of a banner(178,205),(786,867)", - "id": 33351 - }, - { - "image_path": "G:\\images\\combined\\00cc908933d73f6e.jpg", - "response": "The image shows a baseball game in progress with several players on the field. A couple of players are holding baseball gloves and are in the middle of the action. One of the players is holding a baseball bat and appears to be about to take a swing.", - "id": 33352 - }, - { - "image_path": "G:\\images\\combined\\00cc9a8d4b253f45.jpg", - "response": "A man in a suit is sitting in front of a TV screen.", - "id": 33353 - }, - { - "image_path": "G:\\images\\combined\\00cca379c1dcdfb1.jpg", - "response": "A black table with a vase of flowers and photos on it.", - "id": 33354 - }, - { - "image_path": "G:\\images\\combined\\00ccc24739bd9b1d.jpg", - "response": "In the image, there are two men standing next to each other. One man is wearing a hat with the American flag on it, and the other man is wearing a colorful African-style shirt. They are both holding beers and smiling for the camera.", - "id": 33355 - }, - { - "image_path": "G:\\images\\combined\\00cdb779e3decc25.jpg", - "response": "A wooden table with a colorful mug that has a banana peel in it.", - "id": 33356 - }, - { - "image_path": "G:\\images\\combined\\00ced4aafc90fa3b.jpg", - "response": "A woman walking down the street in front of a store.", - "id": 33357 - }, - { - "image_path": "G:\\images\\combined\\00cf9f6065d1196b.jpg", - "response": "A baseball game is in progress with a batter swinging the bat, a catcher with a mitt and an umpire behind the plate. The batter is wearing a red helmet and grey baseball uniform. The catcher is wearing a blue and white uniform and the umpire is wearing a blue shirt and grey pants. The baseball field has grass and dirt and there is a crowd of people in the stands watching the game.", - "id": 33358 - }, - { - "image_path": "G:\\images\\combined\\00d03a35f54e8386.jpg", - "response": "A yellow school bus is parked in a parking lot with another bus behind it. The bus has a Ford emblem on the front and is a Ford vehicle.", - "id": 33359 - }, - { - "image_path": "G:\\images\\combined\\00d07a487147789e.jpg", - "response": "a man in a blue jersey is holding a award", - "id": 33360 - }, - { - "image_path": "G:\\images\\combined\\00d0ae2a372fe5e1.jpg", - "response": "A tall white building with panton arms written on the side.", - "id": 33361 - }, - { - "image_path": "G:\\images\\combined\\00d13cf28f104d4e.jpg", - "response": "In the image there is a toothpaste tube with the cap off on a black surface. The toothpaste tube is open and has the words Aquafresh on it.", - "id": 33362 - }, - { - "image_path": "G:\\images\\combined\\00d168fbb8a96a7d.jpg", - "response": "A ZTE Grand X LTE phone on a display with a Qualcomm Snapdragon logo.", - "id": 33363 - }, - { - "image_path": "G:\\images\\combined\\00d17e785bbf2ca1.jpg", - "response": "A red double decker bus is parked on the street.", - "id": 33364 - }, - { - "image_path": "G:\\images\\combined\\00d199d2990fab59.jpg", - "response": "A close up of a pile of coins on a blue cloth. The coins are in various positions and some are partially hidden.", - "id": 33365 - }, - { - "image_path": "G:\\images\\combined\\00d1dc0740d0ab22.jpg", - "response": "A refrigerator with many items attached to it.", - "id": 33366 - }, - { - "image_path": "G:\\images\\combined\\00d202cef5442753.jpg", - "response": "A woman leaning on a Ford Expedition with a white shirt and black pants.", - "id": 33367 - }, - { - "image_path": "G:\\images\\combined\\00d271d34a56eca7.jpg", - "response": "Yahoo News Anchor Rebecca Jarvis and her husband, David, attend the Yahoo News and ABC News White House Correspondents' Dinner Pre-Party at the Newseum on Saturday, April 27, 2013 in Washington, DC.", - "id": 33368 - }, - { - "image_path": "G:\\images\\combined\\00d2c89edbc18f8e.jpg", - "response": "A chalk board with a bottle of alcohol in front of it.", - "id": 33369 - }, - { - "image_path": "G:\\images\\combined\\00d3bc72520af34d.jpg", - "response": "A group of men are playing baseball on a field. They are wearing uniforms and using baseball gloves. There is a crowd of people watching the game from the stands. Some players are standing on the field, while others are in the dugout.", - "id": 33370 - }, - { - "image_path": "G:\\images\\combined\\00d3ca35721256a5.jpg", - "response": "A person holding a playbill for a play called Posterity.", - "id": 33371 - }, - { - "image_path": "G:\\images\\combined\\00d4032b2e2efeba.jpg", - "response": "A man wearing a red, white, and blue hat is riding in the back of a truck.", - "id": 33372 - }, - { - "image_path": "G:\\images\\combined\\00d419271e7f6568.jpg", - "response": "A book cover with the title \"Hanoi\" on the cover.", - "id": 33373 - }, - { - "image_path": "G:\\images\\combined\\00d457b6a730342a.jpg", - "response": "A Lego man is standing next to a Lego car.", - "id": 33374 - }, - { - "image_path": "G:\\images\\combined\\00d480fe5f01a039.jpg", - "response": "A calculator with the numbers 30 on the screen.", - "id": 33375 - }, - { - "image_path": "G:\\images\\combined\\00d4bc290247966b.jpg", - "response": "A Harley Davidson motorcycle with the logo on the front.", - "id": 33376 - }, - { - "image_path": "G:\\images\\combined\\00d4daa87212bcaa.jpg", - "response": "A man sitting in the cockpit of a small red and white airplane.", - "id": 33377 - }, - { - "image_path": "G:\\images\\combined\\00d52121e1ba3a2b.jpg", - "response": "A bathroom with two toilets in it. One is white and one is red.", - "id": 33378 - }, - { - "image_path": "G:\\images\\combined\\00d6242640a1dddd.jpg", - "response": "A dirt road with trees on both sides and a speed limit sign in front of it.", - "id": 33379 - }, - { - "image_path": "G:\\images\\combined\\00d6cb1aaff62b31.jpg", - "response": "a sign in the woods pointing to a trail", - "id": 33380 - }, - { - "image_path": "G:\\images\\combined\\00d72239463dc745.jpg", - "response": "A woman standing next to a sign for the village of North Riverside.", - "id": 33381 - }, - { - "image_path": "G:\\images\\combined\\00d763761e47f723.jpg", - "response": "A silver car parked in a parking lot in front of a building.", - "id": 33382 - }, - { - "image_path": "G:\\images\\combined\\00d7dce5b15ec59b.jpg", - "response": "The image shows the cockpit of a small white airplane with two seats. The cockpit has a clear canopy and is surrounded by a white frame. The plane has two red stripes on the top of the wings, with the name \"lt irwin nelson\" and \"lt pogo reid\" written on them. The plane also has a few warning stickers on the side. The image is taken in a hanger.", - "id": 33383 - }, - { - "image_path": "G:\\images\\combined\\00d80e6c5d66b572.jpg", - "response": "A bus with graffiti on the side of it.", - "id": 33384 - }, - { - "image_path": "G:\\images\\combined\\00d96598f45536e8.jpg", - "response": "Three Pringles cans with the image of Darth Vader on them.", - "id": 33385 - }, - { - "image_path": "G:\\images\\combined\\00d9b70599008429.jpg", - "response": "a woman wearing a green tank top that says W&DAC on it.", - "id": 33386 - }, - { - "image_path": "G:\\images\\combined\\00d9db3d2c186504.jpg", - "response": "A red bus is driving down the street.", - "id": 33387 - }, - { - "image_path": "G:\\images\\combined\\00da4ea73b5cf8b1.jpg", - "response": "A young boy in a blue baseball jersey is getting ready to swing at a pitch. He is positioned in the batter's box with his bat raised. The catcher is positioned behind the batter, wearing a black shirt and holding out his glove. There is a man standing behind the fence, watching the game. Another person is visible in the background.", - "id": 33388 - }, - { - "image_path": "G:\\images\\combined\\00da8c5007a9b0a1.jpg", - "response": "A woman sitting at a desk with a piece of paper in her hand.", - "id": 33389 - }, - { - "image_path": "G:\\images\\combined\\00dac2ec09eeb21a.jpg", - "response": "A black and silver laptop keyboard with a Nano NGS flash drive plugged into the side.", - "id": 33390 - }, - { - "image_path": "G:\\images\\combined\\00dc8d2d1dbd234b.jpg", - "response": "A red grill with food on it.", - "id": 33391 - }, - { - "image_path": "G:\\images\\combined\\00dcb1776e8d6c2a.jpg", - "response": "The image is a collage with three pictures. The top picture is of a planet with a building in the foreground. The middle picture is a Bible with the words \"New World Translation of the Holy Scriptures\" written on it. The bottom picture is of a bird sitting on a tree branch in front of a sun. The words \"O AMOR\" are written in Portuguese in the bottom right corner. Underneath that, it says \"Persevera em todas as coisas O AMOR NUNCA FALHA.\" and the verse \"1 Cor\u00edntios 13:7,8\" is written in gold.", - "id": 33392 - }, - { - "image_path": "G:\\images\\combined\\00dd6d93c5a03b9f.jpg", - "response": "A keyboard is sitting on a desk with papers and a Carnival Cruise paper laying on top of it.", - "id": 33393 - }, - { - "image_path": "G:\\images\\combined\\00dd785b54674737.jpg", - "response": "In the image, there are two baseball players standing on a baseball field. One of the players is wearing a red and white uniform, and the other is wearing a gray and black uniform. They are positioned near the bases, with one player closer to third base and the other closer to first base.", - "id": 33394 - }, - { - "image_path": "G:\\images\\combined\\00dea1edf14f09ab.jpg", - "response": "An ambulance parked on the side of the road.", - "id": 33395 - }, - { - "image_path": "G:\\images\\combined\\00deaa8108d6b4dc.jpg", - "response": "Two children sitting at a table working on a school project.", - "id": 33396 - }, - { - "image_path": "G:\\images\\combined\\00ded642f2ed47b2.jpg", - "response": "A refrigerator with a green sign on it that says \"BRAUEREI LOSCHER\". There are several bottles of beer on top of the refrigerator.", - "id": 33397 - }, - { - "image_path": "G:\\images\\combined\\00df620fc2790ae5.jpg", - "response": "The box for the Teenage Mutant Ninja Turtles set 79100, Kraang Lab Escape. The box is green with the logo in the top left corner and the recommended ages 5-12 in the top right corner. In the bottom left corner is a picture of a turtle being attacked by two robots. In the top right corner is a picture of two turtles fighting.", - "id": 33398 - }, - { - "image_path": "G:\\images\\combined\\00df83bcbdcfa980.jpg", - "response": "A watch with the number 5198 on it.", - "id": 33399 - }, - { - "image_path": "G:\\images\\combined\\00dfc79e002d7ee3.jpg", - "response": "A group of people standing on a race winner podium.", - "id": 33400 - }, - { - "image_path": "G:\\images\\combined\\00e0241176635b5b.jpg", - "response": "the Eldoret sign is red and white(273,478),(458,862)", - "id": 33401 - }, - { - "image_path": "G:\\images\\combined\\00e0422e47cdbeb7.jpg", - "response": "An ambulance with a driver wearing protective gear and a patient in the back, in a remote area of Sierra Leone.", - "id": 33402 - }, - { - "image_path": "G:\\images\\combined\\00e149ece9f3972a.jpg", - "response": "A baseball player wearing a white jersey with the number 22 on the back.", - "id": 33403 - }, - { - "image_path": "G:\\images\\combined\\00e1868250bff33c.jpg", - "response": "A person wearing a white jersey is playing ice hockey on a rink.", - "id": 33404 - }, - { - "image_path": "G:\\images\\combined\\00e1a21cfef5fe80.jpg", - "response": "A bottle of wine with a red and white label.", - "id": 33405 - }, - { - "image_path": "G:\\images\\combined\\00e1dee010109e09.jpg", - "response": "A row of buses are parked in a lot.", - "id": 33406 - }, - { - "image_path": "G:\\images\\combined\\00e2e61cc0b8b5f5.jpg", - "response": "A poster for a performance of Tari Kali.", - "id": 33407 - }, - { - "image_path": "G:\\images\\combined\\00e3bf5e2d0f4368.jpg", - "response": "A man with spiky black hair is talking on a cell phone. He is wearing a red jacket and a ring on his left hand. The background is blurry and there are white lights in the scene.", - "id": 33408 - }, - { - "image_path": "G:\\images\\combined\\00e427d5a9dd7e86.jpg", - "response": "A bus stop advertisement for Street Easy.", - "id": 33409 - }, - { - "image_path": "G:\\images\\combined\\00e43fc3dd6c1cf5.jpg", - "response": "A man wearing a blue shirt is pointing to a projection screen.", - "id": 33410 - }, - { - "image_path": "G:\\images\\combined\\00e46aa8a1d0a592.jpg", - "response": "A close up of a box of electronic equipment on a counter. The box is red and black and says \"ULTRA\" in big black letters on the side. There is a small blue light on top of the box. Next to the box is a white and black manual for the equipment. The manual has a picture of a guitar and says \"G1100-PROFESSIONAL ACTIVESWITCHABLE 4X12 CABINET SIMULATION\" in black letters on the cover.", - "id": 33411 - }, - { - "image_path": "G:\\images\\combined\\00e47b8dd70f4c4b.jpg", - "response": "The image shows three men walking down a sidewalk next to a street. They are all carrying guitars or bass guitars, and appear to be musicians. The men are all wearing different outfits, and the one on the left is carrying a black guitar. The man in the middle is carrying a black guitar and a black bag, and the man on the right is carrying a red guitar and a red bag. There are several cars parked along the street, and a few potted plants are visible in the scene.", - "id": 33412 - }, - { - "image_path": "G:\\images\\combined\\00e54c24a0ef891d.jpg", - "response": "A street sign that says Boulevard on it.", - "id": 33413 - }, - { - "image_path": "G:\\images\\combined\\00e5988f1600409b.jpg", - "response": "A group of women in matching blue and white outfits.", - "id": 33414 - }, - { - "image_path": "G:\\images\\combined\\00e6391c77cff4de.jpg", - "response": "A woman standing behind a table filled with many different types of oils.", - "id": 33415 - }, - { - "image_path": "G:\\images\\combined\\00e69701a85ee1a3.jpg", - "response": "A train station with a train on the tracks.", - "id": 33416 - }, - { - "image_path": "G:\\images\\combined\\00e89628f7bf6d68.jpg", - "response": "A car is parked in front of a large building with a big clock on it. The building is a store that sells clocks.", - "id": 33417 - }, - { - "image_path": "G:\\images\\combined\\00e8e5e79255536f.jpg", - "response": "A white car parked on the side of a street.", - "id": 33418 - }, - { - "image_path": "G:\\images\\combined\\00e942ce767e4d58.jpg", - "response": "A black and white photo of an orange with leaves growing on it. The orange is being held in a vice.", - "id": 33419 - }, - { - "image_path": "G:\\images\\combined\\00e9e161b832fb2a.jpg", - "response": "A busy city street filled with traffic and pedestrians.", - "id": 33420 - }, - { - "image_path": "G:\\images\\combined\\00e9ff4c6baa2ab6.jpg", - "response": "A street scene with a silver SUV parked on the side of the road. There is a small restaurant called \"The Corner\" with a neon sign. A one-way sign is visible, and there is a fire hydrant on the sidewalk. People are walking on the sidewalk, and there is snow on the ground.", - "id": 33421 - }, - { - "image_path": "G:\\images\\combined\\00ea362de70610ac.jpg", - "response": "A bottle of 1982 Mayacamas Cabernet Sauvignon next to a wine glass filled with red wine.", - "id": 33422 - }, - { - "image_path": "G:\\images\\combined\\00eb06ce368a9b9b.jpg", - "response": "A Pepsi truck with the Pepsi logo on the side.", - "id": 33423 - }, - { - "image_path": "G:\\images\\combined\\00eb68f98de1661c.jpg", - "response": "a poster of a man with a bald head and a receding hairline, with a few strands of hair left on top. He has a frowning expression and is looking upwards. He has piercing blue eyes and is wearing earrings. He is wearing a green shirt with a brown vest over it. The word Bored & Old is written in orange and black on the bottom of the poster.", - "id": 33424 - }, - { - "image_path": "G:\\images\\combined\\00eb87bac63c9ec9.jpg", - "response": "A man in a red toy car driving past a formation of toy motorcycles.", - "id": 33425 - }, - { - "image_path": "G:\\images\\combined\\00ebd076f2986d38.jpg", - "response": "A black and white photo of a train sitting at a station.", - "id": 33426 - }, - { - "image_path": "G:\\images\\combined\\00ebf08a1a6e045c.jpg", - "response": "The basketball player in white is dribbling the ball while the player in black is guarding him. There are several other players on the court, some with their arms raised and others sitting on the bench. The bench has several people sitting on it, some with their arms crossed and others with their hands on their knees. There are also two people standing behind the court, one with their hands on their hips and the other with their hands on their knees. The court is surrounded by orange chairs and there are several other people in the background.", - "id": 33427 - }, - { - "image_path": "G:\\images\\combined\\00ec8cd414486cdb.jpg", - "response": "A bottle of Nopal oil with a cork stopper and brown glass bottle. The label is white and says \"Nopal Oil Precious Oil\" in white font.", - "id": 33428 - }, - { - "image_path": "G:\\images\\combined\\00ec8fa225899817.jpg", - "response": "A poster of the movie \"My Dearest Daughter\" which has won three national awards.", - "id": 33429 - }, - { - "image_path": "G:\\images\\combined\\00ecc16a9eb4a5ed.jpg", - "response": "A collage of a red British postbox. The postbox is located on the side of a street. The postbox has the letters SR1 18 on it. The postbox is red with a gold crown on the top left hand corner. The postbox has a gold GPO logo on the front. The postbox is next to a row of shops. The street is empty. There are two traffic lights on the street. One traffic light is on the left hand side and the other is on the right hand side. There is a person walking down the street. The person is wearing a black coat and has a black umbrella. The umbrella is open. The person is walking towards the shops. The shops are on the right hand side of the street. The first shop is a art store. The second shop is a business that sells sports equipment. The third shop is a business that sells antiques. The fourth shop is a business that sells books. The fifth shop is a business that sells toys. The sixth shop is a business that sells shoes. The seventh shop is a business that sells clothing. The eighth shop is a business that sells furniture. The ninth shop is a business that sells electronics. The tenth shop is a business that sells jewelry. The eleventh shop is a business that sells beauty products. The twelfth shop is a business that sells home decor. The thirteenth shop is a business that sells health and wellness products. The fourteenth shop is a business that sells food and drink. The fifteenth shop is a business that sells home improvement products. The sixteenth shop is a business that sells home decor. The seventeenth shop is a business that sells pet supplies. The eighteenth shop is a business that sells electronics. The nineteenth shop is a business that sells toys. The twentieth shop is a business that sells books. The twenty first shop is a business that sells sporting goods. The twenty second shop is a business that sells furniture. The twenty third shop is a business that sells home decor. The twenty fourth shop is a business that sells electronics. The twenty fifth shop is a business that sells pet supplies. The twenty sixth shop is a business that sells sporting goods. The twenty seventh shop is a business that sells furniture. The twenty eighth shop is a business that sells home decor. The twenty ninth shop is a business that sells electronics. The thirtieth shop is a business that sells pet supplies. The thirtieth shop is a business that sells sporting goods. The thirti", - "id": 33430 - }, - { - "image_path": "G:\\images\\combined\\00ecd56cf003cd6e.jpg", - "response": "a traffic light with the number 6 on it", - "id": 33431 - }, - { - "image_path": "G:\\images\\combined\\00ed9ed1b8023c44.jpg", - "response": "A passenger train is pulling into the station.", - "id": 33432 - }, - { - "image_path": "G:\\images\\combined\\00ee02cc29bf07e2.jpg", - "response": "A man in a safety vest is working on a train.", - "id": 33433 - }, - { - "image_path": "G:\\images\\combined\\00eee630d7cc202b.jpg", - "response": "A large train yard with many different trains and train cars.", - "id": 33434 - }, - { - "image_path": "G:\\images\\combined\\00ef7a8de38d6ac8.jpg", - "response": "The image is an open book with a purple border. The pages contain text and photos. The photos are black and white and show scenes from movies. The book is open to two pages that show scenes from the movies \"The Sound of Music\" and \"Gone with the Wind\".", - "id": 33435 - }, - { - "image_path": "G:\\images\\combined\\00efdc3a911667f2.jpg", - "response": "A large billboard featuring a picture of a woman in a bikini is displayed on a building. The image is taken on a street corner with a crosswalk and a traffic light. There is a person walking on the sidewalk and a car and a motorcycle are present in the scene.", - "id": 33436 - }, - { - "image_path": "G:\\images\\combined\\00efe4b4aa33acf5.jpg", - "response": "The image shows a busy airport runway with several airplanes parked on the tarmac. There are at least nine airplanes visible in the scene, with some of them being large and occupying most of the runway. The airplanes are lined up next to each other, with some parked close together and others spaced out slightly more. \n\nIn addition to the airplanes, there are several cars on the runway. These cars are likely being used to transport people or cargo between the planes and the terminal. Some of the cars are close to the airplanes, while others are further away on the tarmac. \n\nThe sky above the airport is a mix of light and dark clouds, suggesting that the weather may be overcast or that a storm is approaching. Overall, the scene is a bustling airport environment with plenty of activity taking place.", - "id": 33437 - }, - { - "image_path": "G:\\images\\combined\\00f016d42e15aaa6.jpg", - "response": "A green and yellow train is stopped at a train station.", - "id": 33438 - }, - { - "image_path": "G:\\images\\combined\\00f1881a91775cc2.jpg", - "response": "a man in a purple shirt with a crown on it", - "id": 33439 - }, - { - "image_path": "G:\\images\\combined\\00f1f33274bec615.jpg", - "response": "a brown piece of paper with a hand drawn map on it", - "id": 33440 - }, - { - "image_path": "G:\\images\\combined\\00f2511c5ec4ac57.jpg", - "response": "A group of people sitting around a table with a laptop and a large amount of legos.", - "id": 33441 - }, - { - "image_path": "G:\\images\\combined\\00f26dd37e2ceb04.jpg", - "response": "a large sign that says welcome to manchester's gay village", - "id": 33442 - }, - { - "image_path": "G:\\images\\combined\\00f3512a94a0a474.jpg", - "response": "A hand drawn poster about the future of books. It has a bunch of boxes with text in them, arrows connecting them, and little stick figures doing various things.", - "id": 33443 - }, - { - "image_path": "G:\\images\\combined\\00f47026ef4f4b52.jpg", - "response": "A train is on the tracks near a platform.", - "id": 33444 - }, - { - "image_path": "G:\\images\\combined\\00f4eed1c02f1fa9.jpg", - "response": "A man writing on a white board with sticky notes attached to it.", - "id": 33445 - }, - { - "image_path": "G:\\images\\combined\\00f6063f74a06749.jpg", - "response": "A large Calvin Klein billboard is on the side of a building.", - "id": 33446 - }, - { - "image_path": "G:\\images\\combined\\00f691b8c6f39410.jpg", - "response": "In the image, a group of people are standing near the water. One man is wearing a blue jersey and looking down. Another man is wearing a purple shirt and has a watch on his wrist. There is a boat in the background and a person is wearing an orange shirt.", - "id": 33447 - }, - { - "image_path": "G:\\images\\combined\\00f7148b7f9da4c0.jpg", - "response": "A bus with the word Bison painted on the side.", - "id": 33448 - }, - { - "image_path": "G:\\images\\combined\\00f734e9f7390f2e.jpg", - "response": "A train stopped at a station with people walking on the platform.", - "id": 33449 - }, - { - "image_path": "G:\\images\\combined\\00f7c2cef7b30f0c.jpg", - "response": "A cat sniffing a wine glass filled with ice and Lillet.", - "id": 33450 - }, - { - "image_path": "G:\\images\\combined\\00f7ecdaa0f46d0d.jpg", - "response": "A purple laptop with a screen open to an article titled Elements of Diffusion.", - "id": 33451 - }, - { - "image_path": "G:\\images\\combined\\00f814e1fc9f25c9.jpg", - "response": "A large scoreboard in front of a stadium with a happy birthday message for Nobunni.", - "id": 33452 - }, - { - "image_path": "G:\\images\\combined\\00f89566491302ff.jpg", - "response": "A large crowd of fans are in the stadium to watch the game.", - "id": 33453 - }, - { - "image_path": "G:\\images\\combined\\00f9078d169011a1.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 33454 - }, - { - "image_path": "G:\\images\\combined\\00f964619cc0aad1.jpg", - "response": "A very long white bus is on display at a show.", - "id": 33455 - }, - { - "image_path": "G:\\images\\combined\\00f9e8872b5be8e6.jpg", - "response": "a sign that says paradise pier in red and blue letters", - "id": 33456 - }, - { - "image_path": "G:\\images\\combined\\00fbe21f9e1b79de.jpg", - "response": "A yellow school bus is parked on the side of the road.", - "id": 33457 - }, - { - "image_path": "G:\\images\\combined\\00fc7557618685cd.jpg", - "response": "A construction site with a sign that says \"Sidewalk Closed Use Other Side\" and a traffic light.", - "id": 33458 - }, - { - "image_path": "G:\\images\\combined\\00fca8a2da7a4694.jpg", - "response": "A watch with a blue face and silver accents.", - "id": 33459 - }, - { - "image_path": "G:\\images\\combined\\00fce9f060ba3884.jpg", - "response": "A red double decker bus is parked in a lot with another bus behind it. The red bus has the words Plymouth in your Pocket on the side of it. There are two lights on top of the bus and two smaller lights on the front of the bus.", - "id": 33460 - }, - { - "image_path": "G:\\images\\combined\\00fd1096ba77710e.jpg", - "response": "a car with a sticker on the windshield that says tvs", - "id": 33461 - }, - { - "image_path": "G:\\images\\combined\\00fd7896b0b67f93.jpg", - "response": "A white board with the words Confusion Ops written on it.", - "id": 33462 - }, - { - "image_path": "G:\\images\\combined\\00fdca7b7b577137.jpg", - "response": "In the image, a baseball player is holding a bat and getting ready to hit the ball. He is wearing a white uniform with the word \"ARMY\" on it. The player is standing on a baseball field, and there are other players and a bench visible in the background. Some people in the stands are watching the game, and one person is holding a camera. The baseball field has a fence around it, and there are bottles and a cooler placed outside the fence.", - "id": 33463 - }, - { - "image_path": "G:\\images\\combined\\00fdf42b979aacac.jpg", - "response": "A close up of a MacBook Pro keyboard with a bunch of USB sticks plugged into it.", - "id": 33464 - }, - { - "image_path": "G:\\images\\combined\\00fedf6008a8f933.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 33465 - }, - { - "image_path": "G:\\images\\combined\\00ffee30f436b71a.jpg", - "response": "A red train engine is on the tracks.", - "id": 33466 - }, - { - "image_path": "G:\\images\\combined\\00_17_jpg.rf.3eef47704a1ca554203390501cdd74f1.jpg", - "response": "A home office with a desk, chair, and computer.", - "id": 33467 - }, - { - "image_path": "G:\\images\\combined\\01-Testing-2_jpg.rf.c1b2540916f84e273b259d12a5c65a4f.jpg", - "response": "The image shows two men working on a project in a large building. One man is standing on a ladder and appears to be installing a large piece of glass, while the other man is standing on the floor and watching the process. They are both wearing white shirts.", - "id": 33468 - }, - { - "image_path": "G:\\images\\combined\\01003_jpg.rf.a171f16195914d828c2fb13b2aea4fba.jpg", - "response": "A man in a white shirt and grey pants standing in front of a sign.", - "id": 33469 - }, - { - "image_path": "G:\\images\\combined\\01003_jpg.rf.a240a83b30323e9adb2d925b8ad28617.jpg", - "response": "A worker in a white hard hat is showing another worker a sign.", - "id": 33470 - }, - { - "image_path": "G:\\images\\combined\\01005e15c5db91a2.jpg", - "response": "A red car is parked on the street next to a red car. Both cars are identical and have a white license plate with black letters and numbers. The red car on the left has a black stripe on the hood. The car on the right has a black stripe on the passenger side door. The stripe on the right car continues on the rear bumper. The stripe on the left car continues on the front bumper. The cars are parked next to a building.", - "id": 33471 - }, - { - "image_path": "G:\\images\\combined\\01016_jpg.rf.95b84786ef5b7294496f84559b25f926.jpg", - "response": "In the image there are two men wearing yellow hard hats, one man is black and the other is white. They are both dressed in work clothes, the white man is holding a clipboard and the black man is pointing at something. They are both standing in front of a machine that spins white yarn.", - "id": 33472 - }, - { - "image_path": "G:\\images\\combined\\01017856bd2da59b.jpg", - "response": "A woman is sitting on a stool in front of an open refrigerator. She is wearing a yellow dress and is holding a sign that says '31.7 kWh ultra energy efficient'. There are many bottles inside the refrigerator, including water and soda.", - "id": 33473 - }, - { - "image_path": "G:\\images\\combined\\0101d12ff7383efb.jpg", - "response": "A silver and white air dryer on a wall.", - "id": 33474 - }, - { - "image_path": "G:\\images\\combined\\0101e090c78a1a97.jpg", - "response": "A group of people playing a game of softball.", - "id": 33475 - }, - { - "image_path": "G:\\images\\combined\\0102022aa14f4c76.jpg", - "response": "A camera with a black lens on a wooden table.", - "id": 33476 - }, - { - "image_path": "G:\\images\\combined\\01020f39f721a95a.jpg", - "response": "A city street with buildings and billboards.", - "id": 33477 - }, - { - "image_path": "G:\\images\\combined\\01023678b3f9c6bf.jpg", - "response": "A comic strip about a man in a library, thanking the public for their support.", - "id": 33478 - }, - { - "image_path": "G:\\images\\combined\\0102685c173f94c5.jpg", - "response": "A bottle of Johnnie Walker Red Label sits next to a glass. The glass is half full with a yellowish liquid.", - "id": 33479 - }, - { - "image_path": "G:\\images\\combined\\01031_jpg.rf.8fbce1259c6bd91df027b5910703f907.jpg", - "response": "In the picture there are three construction workers. One is on the left, he is wearing a yellow hat and a blue shirt. He is holding a yellow hat in his left hand and a rope in his right hand. There is a yellow and blue hard hat on the ground in front of him. To the right of the man on the left, there is another worker in a blue hat and blue shirt. He is sitting on the ground and operating a yellow machine. The third worker is on the right, he is wearing a white shirt and a brown and blue striped shirt. He is wearing a blue hat and is holding a rope in his hand. There are many power lines above the workers.", - "id": 33480 - }, - { - "image_path": "G:\\images\\combined\\010336509eba4001.jpg", - "response": "A close up of three bottles of beer, Greene King IPA, Old Peculier and Wychwood Hobgoblin.", - "id": 33481 - }, - { - "image_path": "G:\\images\\combined\\01035_jpg.rf.c444419d78f89dcae1a47c3fd94f54d3.jpg", - "response": "A group of three men in blue hats are working on a power box.", - "id": 33482 - }, - { - "image_path": "G:\\images\\combined\\01035_jpg.rf.ea9f3341af771e8479a70b0ec9252eaa.jpg", - "response": "The image shows three men in blue helmets and white work clothes, kneeling on a grey roof and working on a grey device. The sky is blue and cloudless.", - "id": 33483 - }, - { - "image_path": "G:\\images\\combined\\010398d4ebeeb600.jpg", - "response": "A poster that says \"Underage drinking is really cool... isn't it?\" is attached to a wall.", - "id": 33484 - }, - { - "image_path": "G:\\images\\combined\\0103Shack04_jpg.rf.ee5e92e14eff0a206e5fa54fd3ad0732.jpg", - "response": "A man in a red shirt and blue jeans is on a ladder.", - "id": 33485 - }, - { - "image_path": "G:\\images\\combined\\01043_jpg.rf.734f709f82bd88a47a2a7686f0963834.jpg", - "response": "A worker in a red jumpsuit and blue hat is working on a power line.", - "id": 33486 - }, - { - "image_path": "G:\\images\\combined\\01043_jpg.rf.ecf31e7222bab12c32d3c365d5577baa.jpg", - "response": "A worker in a red jumpsuit and blue hat is working on wires on a pole.", - "id": 33487 - }, - { - "image_path": "G:\\images\\combined\\01047e9822575c85.jpg", - "response": "A red display case filled with different kinds of donuts.", - "id": 33488 - }, - { - "image_path": "G:\\images\\combined\\0105018670354e7b.jpg", - "response": "A laptop screen that is displaying the install for OS X Yosemite.", - "id": 33489 - }, - { - "image_path": "G:\\images\\combined\\01055_jpg.rf.7904e19f1e72ca4e392252f5f3286427.jpg", - "response": "An electrician is working on a power line.", - "id": 33490 - }, - { - "image_path": "G:\\images\\combined\\01055_jpg.rf.a56f04376e2ea191d3d4143612ba9ee1.jpg", - "response": "An electrician is working on a power line.", - "id": 33491 - }, - { - "image_path": "G:\\images\\combined\\01059_jpg.rf.9ca960c4bab443e951b3022ac70986fd.jpg", - "response": "A group of men in blue hard hats and orange pants are standing in a grassy area. They are all wearing harnesses and one of them has a tool belt. They appear to be construction workers or forest workers.", - "id": 33492 - }, - { - "image_path": "G:\\images\\combined\\01064e5e6509000e.jpg", - "response": "The image shows a variety of bottles on a shelf, including several old-fashioned looking bottles of hair tonic and shampoo. The bottles are displayed in front of a mirror, which reflects the bottles and creates an interesting visual effect. The bottles are of different shapes and sizes, and some are clear while others have colored labels. The shelf appears to be made of wood and is located in a store.", - "id": 33493 - }, - { - "image_path": "G:\\images\\combined\\0107118d03dfd972.jpg", - "response": "A man sitting in front of a laptop computer.", - "id": 33494 - }, - { - "image_path": "G:\\images\\combined\\01085deeb33b557b.jpg", - "response": "A bottle of Cantillon Gueuze, a bottle of water, a cup of liquid, a book, a knife, a fork, and a spoon are on a wooden table.", - "id": 33495 - }, - { - "image_path": "G:\\images\\combined\\0108c3e0b84eb653.jpg", - "response": "A red shirt with a race bib on it that says \"ING\" on it.", - "id": 33496 - }, - { - "image_path": "G:\\images\\combined\\0108dcc595311a92.jpg", - "response": "A metal tin with the words Big Omaha 2009 on it.", - "id": 33497 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.063f1eecf1a0ab168f90229a2ca735a4.jpg", - "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", - "id": 33498 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.0e73a824c2b5c09a1b14192591913249.jpg", - "response": "The image shows a politician wearing a white shirt and a grey suit with a black belt. The politician is putting on a white mask with a black strap. The politician is also adjusting the mask with both hands. They have black hair and glasses. The politician is wearing the mask to protect against COVID-19.", - "id": 33499 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.3dffee5ff567198ad4baa21a8973a54a.jpg", - "response": "In the image, we see a middle-aged man wearing a white shirt and a grey suit. The man has glasses and his hair is black. He is wearing a tie with a brown belt. The man is putting on a white mask and he is wearing a watch on his left wrist. He is also wearing a pair of glasses. The man is standing in a room with a wooden podium in the background.", - "id": 33500 - }, - { - "image_path": "G:\\images\\combined\\0109-00176-096b1_jpg.rf.98746f6798d40bcc92b96d5acaf67920.jpg", - "response": "In the image, a middle-aged man with glasses is seen adjusting his face mask. He is wearing a white shirt, a grey suit, a brown belt, and a white tie. He has glasses and his hair is black. The man is standing in a room with a pitch black background.", - "id": 33501 - }, - { - "image_path": "G:\\images\\combined\\01094_jpg.rf.82d4e4f1356e781a9cc9ed98e61ddb34.jpg", - "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", - "id": 33502 - }, - { - "image_path": "G:\\images\\combined\\01094_jpg.rf.ee7c9ee5d84f7b26cc85e8b20c3eef90.jpg", - "response": "In the image there are two people wearing yellow jackets and blue hats standing in a grassy field. In the background there is a windmill.", - "id": 33503 - }, - { - "image_path": "G:\\images\\combined\\01099_jpg.rf.42bb05283d43b37e09ab6053e7b533b8.jpg", - "response": "In the image there are three people wearing hard hats and working on a piece of machinery. They appear to be in a factory setting.", - "id": 33504 - }, - { - "image_path": "G:\\images\\combined\\010a0c44af2d077e.jpg", - "response": "A red Peugeot 205 is parked on the side of a street. The car has four doors and is a small hatchback. It has a black stripe on the hood and the license plate is blue and white. There are two people visible through the windshield. There are a few other cars parked on the street and a few more in the background. There is a building in the background and a grassy area with rocks in front of it.", - "id": 33505 - }, - { - "image_path": "G:\\images\\combined\\010cab48008cd1f2.jpg", - "response": "A large exhibit hall with a sign that says Mexico on it.", - "id": 33506 - }, - { - "image_path": "G:\\images\\combined\\010caf0314876f5d.jpg", - "response": "A man wearing a black and gold soccer uniform with the number 2 on the front.", - "id": 33507 - }, - { - "image_path": "G:\\images\\combined\\010cdb580b439adb.jpg", - "response": "A bag of crackers and a carton of The Green Mile juice laying on the grass.", - "id": 33508 - }, - { - "image_path": "G:\\images\\combined\\010cfb13c3b9be8d.jpg", - "response": "A white Transit van with its door open parked on the street.", - "id": 33509 - }, - { - "image_path": "G:\\images\\combined\\010d10f950a36864.jpg", - "response": "In the image, there is a bottle of Scope mouthwash sitting on a bathroom sink. Next to the mouthwash is a tube of toothpaste. A small cup is also visible in the scene.", - "id": 33510 - }, - { - "image_path": "G:\\images\\combined\\010fd875bdb3f616.jpg", - "response": " a white piece(39,215),(972,836) of paper with black writing on it", - "id": 33511 - }, - { - "image_path": "G:\\images\\combined\\01102aebe24b7ccb.jpg", - "response": "A busy street with a lot of traffic signs and buildings in the background. There is a van driving down the street.", - "id": 33512 - }, - { - "image_path": "G:\\images\\combined\\0110df3fb0710f34.jpg", - "response": "a large sign for Gates Bar-B-Q on top of a building", - "id": 33513 - }, - { - "image_path": "G:\\images\\combined\\01110_jpg.rf.ac8d48fd3debfbd8c82dbf7a794693ab.jpg", - "response": "Three engineers in green vests and white helmets are discussing blueprints in a building under construction.", - "id": 33514 - }, - { - "image_path": "G:\\images\\combined\\01110_jpg.rf.c4114f4e56ee63489f18f3e61d702870.jpg", - "response": "Three engineers in green safety vests and white helmets are standing in a construction site, looking over blueprints.", - "id": 33515 - }, - { - "image_path": "G:\\images\\combined\\01114_jpg.rf.1ffd29371d129cee9b75e8fb161e6993.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 33516 - }, - { - "image_path": "G:\\images\\combined\\01114_jpg.rf.224207099b817e8d41a6a0d7c40e60cc.jpg", - "response": "A group of men standing in front of a building under construction", - "id": 33517 - }, - { - "image_path": "G:\\images\\combined\\0112996eca2a29e7.jpg", - "response": "The bus is a large vehicle with a pink and purple color scheme. It has a door with a set of stairs leading inside. The bus is parked in a parking lot with other buses in the background.", - "id": 33518 - }, - { - "image_path": "G:\\images\\combined\\01129_jpg.rf.5b0a80db87c83fba17014e8bd5459e26.jpg", - "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and has a tool in his hand. In the background, there is a tower.", - "id": 33519 - }, - { - "image_path": "G:\\images\\combined\\01129_jpg.rf.c2d64cfe1d63395ffa5db342dc4f9959.jpg", - "response": "A man wearing a blue hat and work clothes is working on a red pipe. He is focused on the task at hand and appears to be skilled at his job. In the background, there is a tower.", - "id": 33520 - }, - { - "image_path": "G:\\images\\combined\\0112d7f151517f35.jpg", - "response": "A couple of buses on a wet road.", - "id": 33521 - }, - { - "image_path": "G:\\images\\combined\\0112fff372a9199f.jpg", - "response": "A police station with multiple police cars parked inside. The cars are facing different directions and are all black. Some of the cars have red and blue lights on top.", - "id": 33522 - }, - { - "image_path": "G:\\images\\combined\\01133647412c00b0.jpg", - "response": "A yellow taxi cab with the number 865 on the door.", - "id": 33523 - }, - { - "image_path": "G:\\images\\combined\\01139_jpg.rf.55e59dd0b332885a6193a1b936dc222e.jpg", - "response": "The image shows three people in blue short-sleeved shirts and white safety helmets standing in front of a construction site. The person on the left is a middle-aged man with a beard and a tag hanging from his shirt. The person in the middle is a middle-aged man with a tag on his shirt and a pen in his right hand. The person on the right is a woman with a ponytail and a tag on her shirt. They are all looking to the right. In the background, there is a sign that says \"\u5b89\u5168\u7528\u7535\" (Safety use electricity). To the right of the three people, there are red bricks and wooden scaffolding.", - "id": 33524 - }, - { - "image_path": "G:\\images\\combined\\01139_jpg.rf.561b09b15974fe22691ff2e6dda7d391.jpg", - "response": "A construction site with three people in hard hats.", - "id": 33525 - }, - { - "image_path": "G:\\images\\combined\\011415d9302c14e8.jpg", - "response": "three ipods of different sizes sitting on a table", - "id": 33526 - }, - { - "image_path": "G:\\images\\combined\\01143_jpg.rf.3ded2f85430425195c8f38efa56d581f.jpg", - "response": "The image shows a group of four men standing in three yellow safety shacks. Each man is wearing a red hard hat. The left most man is wearing a black coat and the man on the right is wearing a green sweatshirt. The man in the middle, on the right side of the image, is wearing a red sweatshirt with a white shirt underneath. The man on the left is wearing a black coat with a grey shirt underneath. The man on the far right is wearing a green sweatshirt with a grey shirt underneath. There is a red and white mat on the floor in front of the shacks. On the left side of the image is a display case with a screen showing a white and black diagram. The screen is on the right side of the image and there is a sign on the left side of the image that says \"\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\". There is also a sign on the right side of the image that says \"\u5b89\u5168\u4f53\u9a8c\u9986\" in Chinese.", - "id": 33527 - }, - { - "image_path": "G:\\images\\combined\\01143_jpg.rf.b69c2537501b88893cc0f476f6b930d5.jpg", - "response": "An experiment is being conducted where four men are standing in four separate\u4f53\u9a8c\u9986\u7684\u5b89\u5168\u5e3d\u649e\u51fb\u4f53\u9a8c\u533a. Each man is wearing a safety helmet and their\u4f53\u9a8c\u9986 is measuring their performance.", - "id": 33528 - }, - { - "image_path": "G:\\images\\combined\\01146_jpg.rf.bdf7423869abf5f9a29f203422557c7d.jpg", - "response": "A group of four men wearing blue overalls and yellow hard hats are standing in a clearing in a forest. They are holding tools including a large spade and a chainsaw.", - "id": 33529 - }, - { - "image_path": "G:\\images\\combined\\0114ec2282986ca4.jpg", - "response": "a group of baseball players standing on the field", - "id": 33530 - }, - { - "image_path": "G:\\images\\combined\\01151b36623af990.jpg", - "response": "A baseball player wearing a blue and white uniform is standing on the field.", - "id": 33531 - }, - { - "image_path": "G:\\images\\combined\\0115456b0bfa2ff1.jpg", - "response": "A wooden table with a pitcher and a glass of Stella Artois beer.", - "id": 33532 - }, - { - "image_path": "G:\\images\\combined\\01161eea482575dc.jpg", - "response": "A street scene with a traffic light over the road. There are several cars parked on the side of the road and a few people walking around. The street is lined with buildings and there is a McDonald's in the background.", - "id": 33533 - }, - { - "image_path": "G:\\images\\combined\\01163_jpg.rf.4d4e539ebab5fcbdc41be7aba71a0548.jpg", - "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is reaching into their pocket.", - "id": 33534 - }, - { - "image_path": "G:\\images\\combined\\01163_jpg.rf.f6d73d8cc9aa5e506b4e462e18a1bfa3.jpg", - "response": "In the image there are two people dressed in orange and blue protective gear. They are standing in a field with a wind turbine in the background. The person on the left is pointing towards a tripod with a device on top, presumably a camera. The person on the right is looking at the camera.", - "id": 33535 - }, - { - "image_path": "G:\\images\\combined\\01164_jpg.rf.09c64066c608c99e49ad42923e4ddef6.jpg", - "response": "A worker in a camouflage jacket and a blue hat is working on an electricity component outdoors. He is sitting on a red stool and is focusing on the task at hand. There are several other workers in the background, but the main focus is on the man in the front.", - "id": 33536 - }, - { - "image_path": "G:\\images\\combined\\01164_jpg.rf.156d5380e4062180fe98d1e72925458c.jpg", - "response": "A man in a grey jacket and blue hat is working on an electrical component outdoors. He is wearing a grey jacket and blue hat. There is a grey electrical component in front of him and he is holding a pair of pliers. There are several other people in the background.", - "id": 33537 - }, - { - "image_path": "G:\\images\\combined\\0116dcb302273101.jpg", - "response": "A grey Audi A7 is parked in a parking lot next to other cars. The car has a trunk and four doors. It has a license plate that says \"WAZ 7240\". There is a red light on the back of the car. The car is parked in a parking space.", - "id": 33538 - }, - { - "image_path": "G:\\images\\combined\\0116dcf25359ea13.jpg", - "response": "A large green M&M's candy character on a city billboard.", - "id": 33539 - }, - { - "image_path": "G:\\images\\combined\\0116e31d285903a0.jpg", - "response": "A soccer game is being played on a grass field.", - "id": 33540 - }, - { - "image_path": "G:\\images\\combined\\01178cc7592926a9.jpg", - "response": "A National Express bus is parked in a parking lot.", - "id": 33541 - }, - { - "image_path": "G:\\images\\combined\\01178_jpg.rf.39ca3a751b24868c60e54b9237ae02e8.jpg", - "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue jeans, blue work shirts and blue hard hats. One of the men is holding a drill in his right hand. The roof of the home appears to be in disrepair, with several boards missing and others replaced with metal. The sky is grey and overcast, and there is a small building in the background on the left.", - "id": 33542 - }, - { - "image_path": "G:\\images\\combined\\01178_jpg.rf.826ebf205567fe59fc0e8cc746f47ff2.jpg", - "response": "An elderly woman sits on a stool as two men work on fixing the roof of her home. The men are wearing blue uniforms and blue hard hats. One of the men is holding a large wrench in his hand. The roof of the home appears to be in disrepair, with several nails sticking out. In the background, there is a small building and a chain link fence.", - "id": 33543 - }, - { - "image_path": "G:\\images\\combined\\01185_jpg.rf.576f5075b57501eaa88635d8a7ab61e4.jpg", - "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with a concrete floor. The person on the left is pointing towards the right, and the person on the right is standing with their hands behind their back. There are many boxes on the left side of the image, and a pipe on the right side. The background is blurred out, making the people and objects in the foreground stand out.", - "id": 33544 - }, - { - "image_path": "G:\\images\\combined\\01185_jpg.rf.7acf3c3cb1ed5db7316c73012783ec3f.jpg", - "response": "In the image, there are two people wearing blue and white helmets. They are standing in a large warehouse with yellow and white lines on the floor. The person on the left is pointing towards the right, and the person on the right has their hands behind their back. There are many boxes and containers in the warehouse, and a pipe is visible on the ceiling.", - "id": 33545 - }, - { - "image_path": "G:\\images\\combined\\0118b3d906fae853.jpg", - "response": "A man dribbling a basketball on a court.", - "id": 33546 - }, - { - "image_path": "G:\\images\\combined\\0119301a01cee4e8.jpg", - "response": "a man writing on a white board(383,146),(753,994)", - "id": 33547 - }, - { - "image_path": "G:\\images\\combined\\01196dd1503890cd.jpg", - "response": "A poster that says Communication and Teamwork on it.", - "id": 33548 - }, - { - "image_path": "G:\\images\\combined\\0119c15fefb94aa7.jpg", - "response": "A table with five different watches on it.", - "id": 33549 - }, - { - "image_path": "G:\\images\\combined\\0119c232dddc018c.jpg", - "response": "A busy city street filled with traffic and pedestrians. There are two blue and white buses, multiple yellow taxis, and several cars on the road. People are walking on the sidewalks and crossing the street. Some people are carrying backpacks and handbags. There are also a few traffic lights in the scene.", - "id": 33550 - }, - { - "image_path": "G:\\images\\combined\\011a5843434e7358.jpg", - "response": "A can of spray paint sitting in the grass in front of a wall covered in graffiti.", - "id": 33551 - }, - { - "image_path": "G:\\images\\combined\\011b1e34799f59e2.jpg", - "response": "A poem written by Dan Buck is shown in a blue text box. The poem is titled \"The Ocean Tip\" and is in black font. The poem is written in free verse and is 10 lines long. The first line is \"In the beginning was the end.\"", - "id": 33552 - }, - { - "image_path": "G:\\images\\combined\\011b5bdd30be6dc4.jpg", - "response": "A poster of a man in Uncle Sam attire standing next to the American Legion emblem.", - "id": 33553 - }, - { - "image_path": "G:\\images\\combined\\011c16a034b2e73c.jpg", - "response": "A railroad crossing with a traffic light and a sign.", - "id": 33554 - }, - { - "image_path": "G:\\images\\combined\\011c36b835cc0e31.jpg", - "response": "a black and white photo of a clock on a wall", - "id": 33555 - }, - { - "image_path": "G:\\images\\combined\\011c42afa9a0fd90.jpg", - "response": "A Hawaiian Airlines plane sits on the tarmac.", - "id": 33556 - }, - { - "image_path": "G:\\images\\combined\\011c88f89ef53e23.jpg", - "response": "A man looking through a glass display of soccer jerseys at a FC Bayern Munich fan shop.", - "id": 33557 - }, - { - "image_path": "G:\\images\\combined\\011d187d1189b4e2.jpg", - "response": "A bottle of The Red Door red wine from Elk Run winery in Maryland. The label is white with a red door on it. The door has a gold frame and is slightly ajar. The door has a gold sign above it that says \"Elk Run\". The wine is a red table wine. The bottle is on a wooden table.", - "id": 33558 - }, - { - "image_path": "G:\\images\\combined\\011d91b451c274fb.jpg", - "response": "A baseball game is in progress with a batter at home plate holding a bat, a catcher with a glove behind the batter, and an umpire standing behind the catcher. There are several players in the field and on the bench, and a few baseball gloves scattered around the field. The stadium is full of fans watching the game, some of whom are sitting on the bleachers and others standing behind the field.", - "id": 33559 - }, - { - "image_path": "G:\\images\\combined\\011d99edbc3f2310.jpg", - "response": "A close up of a wooden ruler on a table.", - "id": 33560 - }, - { - "image_path": "G:\\images\\combined\\011e153f0c98b3b0.jpg", - "response": "A red Ford F150 pickup truck covered in snow.", - "id": 33561 - }, - { - "image_path": "G:\\images\\combined\\011e4cefd7a1f14c.jpg", - "response": "A silver car with the number 13 on the front of it.", - "id": 33562 - }, - { - "image_path": "G:\\images\\combined\\011e7e629fb9ae7b.jpg", - "response": "The image shows a row of Listerine Zero mouthwash bottles on a white shelf. There are nine bottles in total, arranged in three columns of three. The bottles are clear and filled with a light blue liquid. The label on each bottle features a blue and white logo with the word \"Listerine\" in bold white font. Underneath the logo, the label reads \"Zero\" in bold white font. The mouthwash is described as \"Less intense\" and \"zero alcohol\" on the label.", - "id": 33563 - }, - { - "image_path": "G:\\images\\combined\\011eb2fdc9715438.jpg", - "response": "A close up of a few wine bottles on a shelf. The wine bottles are all lined up and have labels on them. The one on the left is for a wine called Sur Lie and has a white label. The middle bottle is for a wine called Gros Plant du Pays Nantais and has a green label. The right bottle is for a wine called Muscadet S\u00e8vre et Maine and has a white label with a black print on it.", - "id": 33564 - }, - { - "image_path": "G:\\images\\combined\\011f132da434fc51.jpg", - "response": "An image of a phone with the screen reading \"Software Update\" and a button that says \"Later\" and another button that says \"Now Install\".", - "id": 33565 - }, - { - "image_path": "G:\\images\\combined\\011f1c9736c84042.jpg", - "response": "A man in a suit holding a knife above his head.", - "id": 33566 - }, - { - "image_path": "G:\\images\\combined\\011f69bab7136f0c.jpg", - "response": "A couple of men sitting on a couch wearing green jackets.", - "id": 33567 - }, - { - "image_path": "G:\\images\\combined\\011f83c26f88c72f.jpg", - "response": "A pitcher in a red jersey is in the middle of throwing a baseball.", - "id": 33568 - }, - { - "image_path": "G:\\images\\combined\\011f97f760fec57a.jpg", - "response": "A bottle of Abstract sitting on a counter next to a wine glass.", - "id": 33569 - }, - { - "image_path": "G:\\images\\combined\\01200d3c7b34006c.jpg", - "response": "A person holding a smart watch in their hand. The watch has a black band and the time is 10:13. The watch is also showing the date as Friday the 13th.", - "id": 33570 - }, - { - "image_path": "G:\\images\\combined\\01202_jpg.rf.c03834662d90d40f8744b325e04e75a3.jpg", - "response": " two men(334,251),(656,865)(7,229),(324,997) with blue hard hats(368,249),(490,420)(75,229),(249,453) on, one of them is spraying a white wall(607,6),(997,997) with a water gun(578,584),(729,811)", - "id": 33571 - }, - { - "image_path": "G:\\images\\combined\\01202_jpg.rf.daadd5614252de9aee4f254dd51e458c.jpg", - "response": " Two men(335,250),(654,864)(7,229),(324,997) wearing blue hard hats(368,249),(491,433)(77,229),(245,453) and holding a water jet(577,586),(728,814) in a flooded room.", - "id": 33572 - }, - { - "image_path": "G:\\images\\combined\\01205a1cac8c2e33.jpg", - "response": "A poster for a show featuring Delta of Venus, Vermillion Lies, and Tippy Canoe. The poster features a skeleton in a red coat holding a dead bird and hugging a skeleton woman. The skeleton woman is holding a star. There are also skeleton wings on the woman's back. The show is on Friday, January 22nd at 8:30 PM at 1345 E. 12th St. in Arvis, CA.", - "id": 33573 - }, - { - "image_path": "G:\\images\\combined\\01208bd6923207db.jpg", - "response": "A dining table with plates, a glass of beer, a bottle of Jack Astor's Brewski, a bottle of hot sauce and a menu.", - "id": 33574 - }, - { - "image_path": "G:\\images\\combined\\01209963ab93abd9.jpg", - "response": "A man wearing a black suit and red tie stands at a podium in front of a microphone. He is wearing a wristband on his left arm and appears to be giving a speech.", - "id": 33575 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.737b8abc2b2efd020c1b4b57cb5d720b.jpg", - "response": "A woman wearing a surgical mask and coughing on a train.", - "id": 33576 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.a4f91f2cb2a3a11978e8803b5adc242a.jpg", - "response": "A woman wearing a mask and coughing on a subway train.", - "id": 33577 - }, - { - "image_path": "G:\\images\\combined\\012106_jpg_1140x855_jpg.rf.b9b99f84d58baa1cbab009a6457daafb.jpg", - "response": "A woman wearing a mask and coughing on a subway train.", - "id": 33578 - }, - { - "image_path": "G:\\images\\combined\\01212_jpg.rf.715e43bd93a6b5b9d657645fa2463044.jpg", - "response": "The image shows three men dressed in blue work clothes and yellow hard hats standing on a muddy patch of ground. They are all wearing blue aprons and have climbing harnesses on. The man in the middle is holding a cell phone and looking at it. The man on the left is holding a pair of pliers and looking down at a patch of ground. The man on the right is looking through a pair of binoculars and has a walkie-talkie strapped to his belt. They are all looking out over a green forest that borders the muddy patch of ground. In the background, a city skyline is visible through the trees.", - "id": 33579 - }, - { - "image_path": "G:\\images\\combined\\01212_jpg.rf.80eadb0983efe395a66e76a05f887c0f.jpg", - "response": "A group of three men in blue work clothes and yellow hard hats.", - "id": 33580 - }, - { - "image_path": "G:\\images\\combined\\01215_jpg.rf.c16569cb04089d5f13ed16d8ebfe58f4.jpg", - "response": "An electrician in grey and blue uniform and wearing a blue hard hat is pointing to something in a grey control box with a lot of wires inside. The control box is open and mounted on a concrete wall. There is a rope tied to the electrician.", - "id": 33581 - }, - { - "image_path": "G:\\images\\combined\\01215_jpg.rf.d7c8142777b787afb9b7dbcd8c93f3ae.jpg", - "response": "An electrician in grey suit and blue hard hat pointing to something in a grey box with red and black wires.", - "id": 33582 - }, - { - "image_path": "G:\\images\\combined\\012177742de13113.jpg", - "response": "A busy city street with many cars, taxis, and pedestrians. There are also many large electronic billboards in the area.", - "id": 33583 - }, - { - "image_path": "G:\\images\\combined\\01219b2f91356b54.jpg", - "response": "A group of people sitting around a table.", - "id": 33584 - }, - { - "image_path": "G:\\images\\combined\\0121e99197f8885d.jpg", - "response": "A white, blue and pink city bus is driving down the street.", - "id": 33585 - }, - { - "image_path": "G:\\images\\combined\\01226892fe46adee.jpg", - "response": "A tan bus is driving down a dirt road.", - "id": 33586 - }, - { - "image_path": "G:\\images\\combined\\0122c5279a501df2.jpg", - "response": "An airplane in the sky with landing gear down.", - "id": 33587 - }, - { - "image_path": "G:\\images\\combined\\0122d250eabd65c3.jpg", - "response": "A large sign advertising the University of Montreal at night.", - "id": 33588 - }, - { - "image_path": "G:\\images\\combined\\01230267e5ac9af1.jpg", - "response": "A street sign showing the distance to several destinations.", - "id": 33589 - }, - { - "image_path": "G:\\images\\combined\\01232_jpg.rf.40ccda07e03eb10958899bd6c6eb2922.jpg", - "response": "Three Chinese men in blue uniforms and hard hats walking down a sidewalk.", - "id": 33590 - }, - { - "image_path": "G:\\images\\combined\\01232_jpg.rf.c81dc15e8c58c8a2d35b3e60f1dd5f49.jpg", - "response": "The three Chinese men are wearing blue hard hats.", - "id": 33591 - }, - { - "image_path": "G:\\images\\combined\\012352464779abdf.jpg", - "response": "A laptop computer sitting on a desk.", - "id": 33592 - }, - { - "image_path": "G:\\images\\combined\\01235_jpg.rf.33f2c68632807dc06e10bdb01075f739.jpg", - "response": "A couple of men in blue helmets are checking a red cable. They are both dressed in black. One of the men is holding a digital multimeter. They are standing in front of a silver metal tower. In the background, there are solar panels and power transmission lines.", - "id": 33593 - }, - { - "image_path": "G:\\images\\combined\\01235_jpg.rf.a0fee109d118abfafab87243e7ff970e.jpg", - "response": "A man in a blue hat and black jacket points to a piece of equipment in a field. Another man in a blue hat and black jacket stands next to him. In the background, solar panels can be seen.", - "id": 33594 - }, - { - "image_path": "G:\\images\\combined\\012372cab6855b83.jpg", - "response": "A white wall with three black and white prints of people on bikes. The one in the middle says \"My other ride is your mom\"", - "id": 33595 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.19578451d0568ef146af6b0a16d12d24.jpg", - "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing protective goggles. The people are of various heights and appearances, and some of them are carrying backpacks or small bags. The scene is set in a busy city, with many people walking in different directions.", - "id": 33596 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.250032082e3d9bd69154342670af8116.jpg", - "response": "A crowded of people walking in the street wearing facemasks.", - "id": 33597 - }, - { - "image_path": "G:\\images\\combined\\012420_coronoa_masks_web_jpg.rf.6db0dc3348e1babbbfd4bc59ca97cdee.jpg", - "response": "The image shows a group of people walking through a crowded subway station. They are all wearing white face masks, and many of them are also wearing black or grey coats. The people are of varying heights and ages, and some are carrying backpacks or suitcases. The scene is rather busy and bustling.", - "id": 33598 - }, - { - "image_path": "G:\\images\\combined\\01248f94edf92e02.jpg", - "response": "A yellow tram is driving down the street and has stopped at a traffic light. There are several cars parked on the side of the street. A couple of people are standing on the corner, and a few more people are walking around. There is a stop sign in the background, and a few street signs can be seen above the tram.", - "id": 33599 - }, - { - "image_path": "G:\\images\\combined\\0124a48367e2d801.jpg", - "response": "A bottle of Le Reveisseur VSOP brandy sits on a wooden table. The bottle is almost empty, with only a small amount of liquid remaining. The label on the bottle is white and red, with the brand name and other information printed on it. The cap of the bottle is black and has a gold fleur de lis design on it. The bottle is made of glass and is cylindrical in shape.", - "id": 33600 - }, - { - "image_path": "G:\\images\\combined\\0124c35d7405ef5f.jpg", - "response": "A woman wearing a blue and white shirt and black pants holding a black bag over her shoulder and a black and red belt.", - "id": 33601 - }, - { - "image_path": "G:\\images\\combined\\01258_jpg.rf.a0e5d5043dbd60837e07e2192cfef772.jpg", - "response": "In the image, two male workers wearing blue helmets are seen. They are standing next to a yellow truck with its hood open. The workers seem to be checking the inner part of the truck. One of the workers is holding a red pen and is looking at a white paper that he has in his hand. The paper contains some information. The truck is parked near a green lawn.", - "id": 33602 - }, - { - "image_path": "G:\\images\\combined\\01261_jpg.rf.55313e5c124f083a8711ccda93dcdfbf.jpg", - "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", - "id": 33603 - }, - { - "image_path": "G:\\images\\combined\\01261_jpg.rf.8795132b866d660e24d118ecb72cafbe.jpg", - "response": "Three construction workers in hard hats and safety vests, standing in a building under construction.", - "id": 33604 - }, - { - "image_path": "G:\\images\\combined\\01266_jpg.rf.65e938fcadac13ed2232fa7988c31a3c.jpg", - "response": "A group of three men in neon green shirts and blue hard hats are standing in front of a large metal box.", - "id": 33605 - }, - { - "image_path": "G:\\images\\combined\\01266_jpg.rf.b2f0dd15927cffece51563b9e99c95e1.jpg", - "response": "A group of three men standing in front of a large electrical box.", - "id": 33606 - }, - { - "image_path": "G:\\images\\combined\\01268_jpg.rf.bc109d4a014a91e2ae68a5aa01320e2c.jpg", - "response": "In the image a man is wearing a blue hard hat and work shirt as he looks down at a camera in his hand. He is standing in a room filled with machinery. To the right of the man there is a large metal cylinder with a black and silver machine on top of it. The wall to the left of the man is a bright white.", - "id": 33607 - }, - { - "image_path": "G:\\images\\combined\\01270_jpg.rf.7d2c952fd789ed230cd07d0db5dd1521.jpg", - "response": "An electrician is working on power lines.", - "id": 33608 - }, - { - "image_path": "G:\\images\\combined\\0127299557fae7b2.jpg", - "response": "A sign for an Indian dance recital is posted on a wall.", - "id": 33609 - }, - { - "image_path": "G:\\images\\combined\\01277_jpg.rf.a0c18dddd6f056b355ad4ff9eec74836.jpg", - "response": "The image shows two men walking through a field with a white dog between them. The men are wearing blue shirts and blue hats, and are carrying yellow and blue tools. The dog is a white Samoyed, with a rope on its neck. It is panting and appears to be walking voluntarily between the two men.", - "id": 33610 - }, - { - "image_path": "G:\\images\\combined\\0127d14364206022.jpg", - "response": "An airport scene with a large jetliner parked on the tarmac. The plane is white and yellow and says \"Royal Brunei\" on the side. There are people walking around the plane and a stairway is visible leading up to the plane. There is also a reflection of the plane in a window.", - "id": 33611 - }, - { - "image_path": "G:\\images\\combined\\01280_jpg.rf.515e9037455a72e4c7089596114c12b1.jpg", - "response": "A few men dressed in blue and yellow work uniforms and yellow and blue helmets are working on an electricity line in a field.", - "id": 33612 - }, - { - "image_path": "G:\\images\\combined\\01280_jpg.rf.e5d1d70a76c82eee9b850ac8e0240126.jpg", - "response": "A group of three men dressed in blue and yellow work clothes. They are standing in a field and are wearing yellow helmets. They are working on an electricity wire.", - "id": 33613 - }, - { - "image_path": "G:\\images\\combined\\012858674b02d06a.jpg", - "response": "A busy city street filled with traffic and lined with tall buildings.", - "id": 33614 - }, - { - "image_path": "G:\\images\\combined\\012929dbb05a8ddf.jpg", - "response": "A large blue scoreboard hanging from the ceiling.", - "id": 33615 - }, - { - "image_path": "G:\\images\\combined\\012940be63dd946c.jpg", - "response": "A train is pulling into the station.", - "id": 33616 - }, - { - "image_path": "G:\\images\\combined\\01298_jpg.rf.4383140e13233520536f95977ea62997.jpg", - "response": "The image shows two workers in blue and yellow work clothes and green camouflage clothes, with helmets and white and blue protective clothing, standing on a suspension bridge and maintaining the power supply. The bridge is located in a mountainous area, with mountains on both sides and a river below. The sky is overcast, and the two workers are in the middle of the photo, one on the left and the other on the right.", - "id": 33617 - }, - { - "image_path": "G:\\images\\combined\\01298_jpg.rf.af3fd6a06091c394383053b40b021a32.jpg", - "response": "The image shows two workers in blue and yellow work clothes and yellow helmets, with one of them climbing a suspension bridge to fix the power transmission line. The sky is overcast, and the river below the suspension bridge is brown. On the right side of the bridge, there are large rocks with a height of about 20 meters.", - "id": 33618 - }, - { - "image_path": "G:\\images\\combined\\0129d29b15e8792e.jpg", - "response": "A bottle of Peay Pinot Noir from 2010, from Sonoma Coast.", - "id": 33619 - }, - { - "image_path": "G:\\images\\combined\\0129fa55a43f1b97.jpg", - "response": "The women cyclocross riders are chatting before the race.", - "id": 33620 - }, - { - "image_path": "G:\\images\\combined\\012a9b831b6ca1dc.jpg", - "response": "a white box(142,74),(886,982)", - "id": 33621 - }, - { - "image_path": "G:\\images\\combined\\012ab1e92a27b6c5.jpg", - "response": "a blue street sign that says welcome to jersey", - "id": 33622 - }, - { - "image_path": "G:\\images\\combined\\012ac43f6fda5713.jpg", - "response": "A baseball game is being played at night with many fans in the stands.", - "id": 33623 - }, - { - "image_path": "G:\\images\\combined\\012b127d2bbc7b85.jpg", - "response": "A man sitting at a table with a plate of food and a cup of beer in front of him.", - "id": 33624 - }, - { - "image_path": "G:\\images\\combined\\012c0700db4deff3.jpg", - "response": "A clown sitting on a bench next to a sign.", - "id": 33625 - }, - { - "image_path": "G:\\images\\combined\\012c101e4543382e.jpg", - "response": "a book that is open to the intro section", - "id": 33626 - }, - { - "image_path": "G:\\images\\combined\\012ca0f6e8ab8ce1.jpg", - "response": "The man writing on the white board is wearing a shirt that says \"I'm with the band\". There is a person sitting down watching the man write on the board.", - "id": 33627 - }, - { - "image_path": "G:\\images\\combined\\012d3c38641c9662.jpg", - "response": "A female model is presenting two LG monitors, one is an ultra-wide 29-inch model and the other is a 24-inch model.", - "id": 33628 - }, - { - "image_path": "G:\\images\\combined\\012da22452404628.jpg", - "response": "A baseball player holding a bat and wearing a grey uniform with the number 35 on the back.", - "id": 33629 - }, - { - "image_path": "G:\\images\\combined\\012e881187339ace.jpg", - "response": "A van covered in graffiti with the writing \"faits l'amour pas les marges\" written on it.", - "id": 33630 - }, - { - "image_path": "G:\\images\\combined\\01303_jpg.rf.0daec2f3a1ad9b77f0b5699330b06f33.jpg", - "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be fixing the pipe. There is a forest in the background.", - "id": 33631 - }, - { - "image_path": "G:\\images\\combined\\01303_jpg.rf.edc12f267f2b88424a78c2b2c5661389.jpg", - "response": "In the image two men in orange jumpsuits and white helmets are working on a black pipe. The pipe is on the ground and one man is on the left and the other on the right. They appear to be working on it. There is a forest in the background and a body of water to the left of the pipe.", - "id": 33632 - }, - { - "image_path": "G:\\images\\combined\\0130857ff09335ec.jpg", - "response": "A man sitting on a bench next to a man working on a large box filled with wires.", - "id": 33633 - }, - { - "image_path": "G:\\images\\combined\\0130b4fb5d99865f.jpg", - "response": "A propaganda poster of North Korea showing soldiers and civilians with a flag and a snowflake in the bottom right corner.", - "id": 33634 - }, - { - "image_path": "G:\\images\\combined\\0130fdef839b46d8.jpg", - "response": "The image features a woman with a left hand wearing a silver ring and a light blue nail polish. She is reaching for a bottle of nail polish, which is a red color. In front of her, there are three bottles of nail polish, one of which is a red color, one is a brown color, and the other is a green color. The woman is also holding a small mirror in her right hand.", - "id": 33635 - }, - { - "image_path": "G:\\images\\combined\\0131227c5d633be4.jpg", - "response": "A green Mercedes van with a flower painted on the side.", - "id": 33636 - }, - { - "image_path": "G:\\images\\combined\\01313422ad6c5186.jpg", - "response": "A person sitting at a table with a beer bottle on the table.", - "id": 33637 - }, - { - "image_path": "G:\\images\\combined\\01325_jpg.rf.de4bf5f67aed3fa389b2be08d5a959c9.jpg", - "response": "The image shows a news program with a male news anchor wearing a white helmet and a black suit. He is reporting on the safety conditions of a construction site for a project called\u6731\u6d77\u5175\u68c0\u67e5\u91cd\u70b9\u9805\u76ee\u5de5\u5730\u5b89\u5168\u751f\u4ea7\u60c5\u51b5. Behind him, there are several people, some wearing white helmets and black suits. There are also some scaffolding and steel bars visible in the background. The news anchor is standing in front of a building under construction.", - "id": 33638 - }, - { - "image_path": "G:\\images\\combined\\01325_jpg.rf.f8bdceb3dddcfd9d8e0b73bc657fd8d8.jpg", - "response": "The image shows a Chinese man wearing a white hard hat and a black suit. He is standing in front of a construction site with a backdrop of metal frameworks. The man is also a\u8bb0\u8005, which translates to journalist in English.", - "id": 33639 - }, - { - "image_path": "G:\\images\\combined\\01326_jpg.rf.32eedb629292c72813d75e491568d200.jpg", - "response": "a man in a yellow hard hat standing in front of a building under construction", - "id": 33640 - }, - { - "image_path": "G:\\images\\combined\\01326_jpg.rf.80a668d3565a0e59931569324d17f70e.jpg", - "response": "a man in a yellow hard hat standing in front of a building under construction", - "id": 33641 - }, - { - "image_path": "G:\\images\\combined\\0132f7dbed0ab722.jpg", - "response": "A yellow airplane with a propeller and the word NAVY on the side.", - "id": 33642 - }, - { - "image_path": "G:\\images\\combined\\013330b2b25f4c27.jpg", - "response": "A group of people standing around a table with papers and books on it.", - "id": 33643 - }, - { - "image_path": "G:\\images\\combined\\013333fa2fe396ce.jpg", - "response": "An airplane wing with the letters SAS on it, flying over a cloudy sky.", - "id": 33644 - }, - { - "image_path": "G:\\images\\combined\\01333a37245c7e5a.jpg", - "response": "A man is working on the side of a red and white airplane.", - "id": 33645 - }, - { - "image_path": "G:\\images\\combined\\01334_jpg.rf.c5e7082d15231efb9e22fd62c3101ecb.jpg", - "response": "A man in a black jacket and a white and black striped shirt standing in front of a building with a white hat on.", - "id": 33646 - }, - { - "image_path": "G:\\images\\combined\\01334_jpg.rf.f8fae2ee0944f3b2f969879fb7396c85.jpg", - "response": "A man in a black jacket and a white and black striped shirt standing in front of a construction site with a white helmet on.", - "id": 33647 - }, - { - "image_path": "G:\\images\\combined\\01335761c3a1a042.jpg", - "response": "A desktop computer monitor that is on and has a game of RoboCop displayed.", - "id": 33648 - }, - { - "image_path": "G:\\images\\combined\\01336_jpg.rf.cfa812003e6fc003a7ab9c99bf9a2038.jpg", - "response": "a group of men standing around a construction site", - "id": 33649 - }, - { - "image_path": "G:\\images\\combined\\01338_jpg.rf.03332cf842442fce9d4b2715c68165bb.jpg", - "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket. The fifth man is wearing a white shirt with a black jacket. They are all standing in front of a building that is under construction. The building has scaffolding around it.", - "id": 33650 - }, - { - "image_path": "G:\\images\\combined\\01338_jpg.rf.6e7f5dcafc46dcc89621b076f5796c46.jpg", - "response": "A group of men standing around a construction site. They are all wearing hard hats. One man is wearing a black jacket with a white shirt underneath. Another man is wearing a white jacket. A third man is wearing a black jacket with a white shirt underneath. A fourth man is wearing a white jacket.", - "id": 33651 - }, - { - "image_path": "G:\\images\\combined\\01346_jpg.rf.602815ffe2f241aa137536b24686b6c4.jpg", - "response": "A group of men standing around each other", - "id": 33652 - }, - { - "image_path": "G:\\images\\combined\\01346_jpg.rf.eac8cd16d806b341435e56dbdef8f159.jpg", - "response": "A group of men standing around each other", - "id": 33653 - }, - { - "image_path": "G:\\images\\combined\\0134a2b3e00c9bbb.jpg", - "response": "a person wearing a grey t-shirt with the word JRUBY on it", - "id": 33654 - }, - { - "image_path": "G:\\images\\combined\\0134b639e97160be.jpg", - "response": "A table with a bottle and a glass on it.", - "id": 33655 - }, - { - "image_path": "G:\\images\\combined\\013547912a1c0427.jpg", - "response": "Two books, one red and one green, both with white writing.", - "id": 33656 - }, - { - "image_path": "G:\\images\\combined\\0135a49e57da39be.jpg", - "response": "A poster for a pay-per-view event called \"Celebrity Catfight\" featuring two women, Sabine and Miley. The event is scheduled for April 13, 2015 at 8 PM at the MGM Arena. The poster is in black and red with the two women's heads on top and their names below. The event is promoted by Ticketmaster.", - "id": 33657 - }, - { - "image_path": "G:\\images\\combined\\0135ecc9b0929eee.jpg", - "response": "A man and a woman are laying on the ground in a hallway. The woman has a backpack on her back and a black shirt. The man has a green backpack on his back and a white shirt. They are both looking at a cell phone that the man is holding. There are two other people in the background, one with a black shirt and the other with a white shirt. There is also a potted plant in the scene.", - "id": 33658 - }, - { - "image_path": "G:\\images\\combined\\013641ae181daa2b.jpg", - "response": "A stress ball in the shape of a grey airplane with a smiley face and orange and blue markings.", - "id": 33659 - }, - { - "image_path": "G:\\images\\combined\\0136a83ff81b983f.jpg", - "response": "A large airplane is sitting on the runway.", - "id": 33660 - }, - { - "image_path": "G:\\images\\combined\\013713ed319f3787.jpg", - "response": "A model of a British Airways airplane on a white stand.", - "id": 33661 - }, - { - "image_path": "G:\\images\\combined\\01375ce0b7e9e9f6.jpg", - "response": "The image features a large crowd of people gathered in a stadium to watch a baseball game. The stadium has several banners and signs on the walls, including a large American flag that is draped across the field. There are also several people wearing uniforms, possibly military personnel, in the foreground. The crowd is made up of people of various heights and are spread out throughout the stadium.", - "id": 33662 - }, - { - "image_path": "G:\\images\\combined\\01381947b0093f43.jpg", - "response": "The image features a street sign that reads \"Dead Cat Alley\" in white lettering on a green background. The sign is attached to a metal pole and is located in front of a tree. There is also a handicap parking sign on the same pole.", - "id": 33663 - }, - { - "image_path": "G:\\images\\combined\\013843632c661815.jpg", - "response": "A close up of a electronic keyboard with many keys and knobs.", - "id": 33664 - }, - { - "image_path": "G:\\images\\combined\\013876297354531e.jpg", - "response": "A sign that says \" Failte - Welcome THE BURREN protected landscape\" in white lettering.", - "id": 33665 - }, - { - "image_path": "G:\\images\\combined\\0138cfa682ce8f81.jpg", - "response": "A trash can with a black bag in it.", - "id": 33666 - }, - { - "image_path": "G:\\images\\combined\\0138ef96e5e0b9f1.jpg", - "response": "In the image, a man is throwing a basketball while wearing a plaid shirt. He is surrounded by a group of people, some of whom are also holding sports equipment. Among the people, one is wearing a blue shirt that says \"Go Gators\" on it, and another is holding a football. There are also two people in the background wearing blue and white uniforms.", - "id": 33667 - }, - { - "image_path": "G:\\images\\combined\\01391774c70c2c88.jpg", - "response": "A large poster for the 2009 AVN Adult Movie Awards is hanging from the ceiling.", - "id": 33668 - }, - { - "image_path": "G:\\images\\combined\\013a40f4c388e5b6.jpg", - "response": "A large screen TV is displaying a baseball game.", - "id": 33669 - }, - { - "image_path": "G:\\images\\combined\\013a414982747e7f.jpg", - "response": "A black laptop computer is open and sitting on a desk. The screen displays a page in Japanese.", - "id": 33670 - }, - { - "image_path": "G:\\images\\combined\\013aaeeee730a054.jpg", - "response": "A bucket full of wine bottles, with four of them being Fontana wine.", - "id": 33671 - }, - { - "image_path": "G:\\images\\combined\\013c51db660db1a0.jpg", - "response": "A package of a banana dessert with a red and white label.", - "id": 33672 - }, - { - "image_path": "G:\\images\\combined\\013cbd2122ad9b0e.jpg", - "response": "A large brick building with many windows and a sign that says \"More Art Less Labels\" painted on the side.", - "id": 33673 - }, - { - "image_path": "G:\\images\\combined\\013d1f1e520e0671.jpg", - "response": "A silver car parked on the street.", - "id": 33674 - }, - { - "image_path": "G:\\images\\combined\\013dc51c1e1c49aa.jpg", - "response": "A table with a variety of items on it including two bottles of wine, a cup, a bowl, a book, and a fork.", - "id": 33675 - }, - { - "image_path": "G:\\images\\combined\\013e566ab243798e.jpg", - "response": "A man and a woman are sitting on a couch. The woman is sitting on the man's lap and they are both looking at a glass of wine on the table. The man is wearing a suit and the woman is wearing a leopard print dress.", - "id": 33676 - }, - { - "image_path": "G:\\images\\combined\\013efc66b15d181a.jpg", - "response": "An sony camera on a wooden table.", - "id": 33677 - }, - { - "image_path": "G:\\images\\combined\\013f031fcc0ca89e.jpg", - "response": "A black and gold clock with the word Steveston above it.", - "id": 33678 - }, - { - "image_path": "G:\\images\\combined\\013f5cac93b70098.jpg", - "response": "A traffic light is hanging from a pole with two banners attached. The banners are for Cambie Village and one of them has a picture of a watermelon on it. The sky is overcast.", - "id": 33679 - }, - { - "image_path": "G:\\images\\combined\\013f60365831c99b.jpg", - "response": "A baseball player is running to a base on a field.", - "id": 33680 - }, - { - "image_path": "G:\\images\\combined\\013f72888fc44c2d.jpg", - "response": "The image shows a table filled with a large number of beer bottles of various shapes and sizes. Some of the bottles are brown and green, while others are green and white. There are at least 14 bottles visible in the image. A few of the bottles have white labels, while others have red, green, or no labels at all. The table is made of wood and is located in a dark room.", - "id": 33681 - }, - { - "image_path": "G:\\images\\combined\\0140a5561c6ffb8f.jpg", - "response": "The image shows a blue airplane with the word \"Red Bull\" painted on the side. The airplane has a clear canopy and a man is visible through the canopy. The sky is overcast and there are clouds in the background.", - "id": 33682 - }, - { - "image_path": "G:\\images\\combined\\0140ad9cc68a7850.jpg", - "response": "The men are celebrating their win in the indoor track meet.", - "id": 33683 - }, - { - "image_path": "G:\\images\\combined\\0141be4beb33df3a.jpg", - "response": "A red background with white text that says \"God gives every bird its food, but he does not throw it into its nest.\"", - "id": 33684 - }, - { - "image_path": "G:\\images\\combined\\0141c5ca2550f729.jpg", - "response": "A table with five boxes of Johnnie Walker Black Label on it.", - "id": 33685 - }, - { - "image_path": "G:\\images\\combined\\0141fb7b82dafe61.jpg", - "response": "a man in a grey and white jersey is playing basketball", - "id": 33686 - }, - { - "image_path": "G:\\images\\combined\\01420fa41cf561b2.jpg", - "response": "A album cover for a recording of Fran\u00e7ois Couperin's \"Apoth\u00e9oses\". The image features a painting of a woman with a yellow scarf flowing behind her. She is depicted as a muse, holding a yellow fabric that seems to be made of silk. She is wearing a yellow dress and a red sash around her waist. She is also wearing a gold necklace and a gold bracelet on her right arm. She is holding the yellow fabric with her left hand and her right hand is raised in the air.", - "id": 33687 - }, - { - "image_path": "G:\\images\\combined\\01434_jpg.rf.4fdbffeeea543bd8d0638c8b8dde4726.jpg", - "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and white dress while the other one is wearing blue helmet and grey dress. Both the workers are holding their tools and are ready to work.", - "id": 33688 - }, - { - "image_path": "G:\\images\\combined\\01434_jpg.rf.ede1cbfd8bf79cca5f3b2598002b3d37.jpg", - "response": "In the image two workers are seen doing their job in a greenish pool of water. One worker is seen wearing yellow helmet and is holding a rope and is about to climb a wooden electric pole while the other worker is seen wearing blue helmet and has a machine in his hand which he is using to do his job. Both the workers seem to be enjoying their work despite the challenging conditions.", - "id": 33689 - }, - { - "image_path": "G:\\images\\combined\\01437_jpg.rf.4b23791324180482e6b5a90d61a6a6c5.jpg", - "response": "In the image there are three men in blue hard hats and work clothes. They are all working on a large white pipe that is sitting on the ground. One man is on the left and he is holding a large blue and white pipe wrench. Another man is standing in the middle and he is measuring the pipe with a long grey ruler. The third man is on the right side of the image. They all appear to be working together on the pipe.", - "id": 33690 - }, - { - "image_path": "G:\\images\\combined\\01437_jpg.rf.5abedb4d52b841e7c9c498b6fdeb78fc.jpg", - "response": "In the image there are three men working on a white pipe. The men are wearing blue uniforms and blue helmets. They are in a mountainous area and one of them is measuring the white pipe using a blue and white meter.", - "id": 33691 - }, - { - "image_path": "G:\\images\\combined\\01439094022a3130.jpg", - "response": "The image shows a group of people standing around a table in a office environment. There are chairs around the table and a few other tables visible in the room. The people are gathered in front of a glass wall and seem to be engaged in a discussion. There is a clock on the wall and a suitcase sitting on the floor. The room has a blue carpet and a window, and there are a few other people visible in the background.", - "id": 33692 - }, - { - "image_path": "G:\\images\\combined\\01439cbed26bbea7.jpg", - "response": "A street sign that is on the side of the road.", - "id": 33693 - }, - { - "image_path": "G:\\images\\combined\\0143bda2cbfdd1fb.jpg", - "response": "A maroon colored car with the license plate Y628 GRL is parked on the side of the street. The car is a small station wagon. There is a lawn with a curve in it, and the car is parked on the other side of the lawn. There are houses in the background, and a car is parked in front of one of them.", - "id": 33694 - }, - { - "image_path": "G:\\images\\combined\\01441_jpg.rf.b26c9a2d07adc7b02695a05351e3eae8.jpg", - "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue shirt underneath. She is also wearing a blue helmet. They are carrying the wooden box to a yellow truck in the background. There are some plants in the background on the right side of the image.", - "id": 33695 - }, - { - "image_path": "G:\\images\\combined\\01441_jpg.rf.c240f8418a67b8968c7cbd800af88633.jpg", - "response": "A man and a woman wearing blue helmets are carrying a wooden box. The man is on the left and is dressed in black and wearing a blue helmet. The woman is on the right and is wearing a red jacket with a yellow and blue logo on the left side. She is also wearing a blue helmet. In the background, there is a yellow truck with a bed. To the right of the woman, there are some buildings. In the foreground, there are some plants with green leaves.", - "id": 33696 - }, - { - "image_path": "G:\\images\\combined\\01450273ed35a7b7.jpg", - "response": "The image features the cover art for the video game Deus Ex: Human Revolution. The main character, Adam Jensen, is depicted in the center of the image wearing a black leather jacket and a black shirt. He is standing in front of a shattered glass that is in various shades of yellow and orange. The glass is arranged in a way that it looks like a golden triangle is being formed by the shards. The text on the image is in white and is arranged in a way that looks like it is being sliced by the shattered glass. The text includes the word \"Deus\" at the top, \"Ex\" in the middle, and \"Human Revolution\" on the bottom.", - "id": 33697 - }, - { - "image_path": "G:\\images\\combined\\014552d32aa7b097.jpg", - "response": "A white board with writing on it in green marker.", - "id": 33698 - }, - { - "image_path": "G:\\images\\combined\\014641bf55cb78cc.jpg", - "response": "A street sign on a pole in front of a brick building.", - "id": 33699 - }, - { - "image_path": "G:\\images\\combined\\01464_jpg.rf.8b04ab9de6f70e697eef17a6bf4fd0d8.jpg", - "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a white pipe in his hand. The other man is on the right side of the room and is wearing a blue helmet, a pink shirt, and a blue vest. He is also holding a white pipe.", - "id": 33700 - }, - { - "image_path": "G:\\images\\combined\\01464_jpg.rf.dd1b0e1df770d46212ba0e28aabef4f1.jpg", - "response": "In the image, two men are standing in a room filled with pipes and machinery. One man is on the left side of the room and is wearing a blue helmet and a pink shirt. He is holding a clipboard. The other man is on the right side of the room and is wearing a blue helmet, a yellow shirt, and is holding a pipe. They are both looking at a pipe and a valve.", - "id": 33701 - }, - { - "image_path": "G:\\images\\combined\\01466_jpg.rf.a15e9b44297913557387d20e979a625d.jpg", - "response": " two women(245,5),(430,701)(406,169),(579,667) in blue and yellow hard hats(458,169),(567,306)(302,3),(420,117) in a factory", - "id": 33702 - }, - { - "image_path": "G:\\images\\combined\\0146944292756039.jpg", - "response": "An advertisement for Barr's Ginger Beer. The bottle is shown sitting on a pile of sand with a beach scene in the background. A beach chair is visible in the image.", - "id": 33703 - }, - { - "image_path": "G:\\images\\combined\\0146ee06439dbf10.jpg", - "response": "A sign post with several signs attached to it.", - "id": 33704 - }, - { - "image_path": "G:\\images\\combined\\0146fa849c61c53e.jpg", - "response": "A box with two coffee bags and two coffee mugs inside.", - "id": 33705 - }, - { - "image_path": "G:\\images\\combined\\014745c5610ab10f.jpg", - "response": "A baseball game is in progress with a batter up to the plate holding a bat. The catcher is squatting behind the batter and the umpire is standing behind the catcher.", - "id": 33706 - }, - { - "image_path": "G:\\images\\combined\\0147562d48d839ca.jpg", - "response": "A bottle of Goose Watch 2006 Pinot Grigio sits on a counter.", - "id": 33707 - }, - { - "image_path": "G:\\images\\combined\\01475_jpg.rf.25e45e98171217b713736885a3b9ce00.jpg", - "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", - "id": 33708 - }, - { - "image_path": "G:\\images\\combined\\01475_jpg.rf.615cbfd3f8d050a70e30c0f292c0a343.jpg", - "response": "A group of three men in blue work uniforms and blue helmets are working on an electrical box.", - "id": 33709 - }, - { - "image_path": "G:\\images\\combined\\01478_jpg.rf.a4779090cf0764da5d2684700b21ca12.jpg", - "response": "A group of men working on a power line.", - "id": 33710 - }, - { - "image_path": "G:\\images\\combined\\0147994bc80b9c5c.jpg", - "response": "A red and yellow bus is parked in a parking lot with another bus behind it. There is a light pole next to the bus and a stop sign in the background.", - "id": 33711 - }, - { - "image_path": "G:\\images\\combined\\01483_jpg.rf.2f5f434f70037e1a46107ede4000a627.jpg", - "response": "A man in a white shirt and blue hat is talking to a man in a white shirt and red hat. Both men are wearing Power China shirts. They are standing in front of a large piece of equipment.", - "id": 33712 - }, - { - "image_path": "G:\\images\\combined\\014881d40b96d745.jpg", - "response": "A brown and blue van parked in front of a tan building.", - "id": 33713 - }, - { - "image_path": "G:\\images\\combined\\01489_jpg.rf.603accae9361003d4c8908f7bab61175.jpg", - "response": "A man in a blue hat and blue coat is holding a device in front of a meter box.", - "id": 33714 - }, - { - "image_path": "G:\\images\\combined\\0148d16f35e42c8c.jpg", - "response": "A man in a suit pointing to a large projection screen.", - "id": 33715 - }, - { - "image_path": "G:\\images\\combined\\0149503b615a7dc0.jpg", - "response": "a close up of a ruler on a purple and white floral print fabric", - "id": 33716 - }, - { - "image_path": "G:\\images\\combined\\01496_jpg.rf.1c31ac5c14b994f546d62fabd258741d.jpg", - "response": "two men standing on a road(649,293),(949,849)", - "id": 33717 - }, - { - "image_path": "G:\\images\\combined\\01496_jpg.rf.bb4b6458578f802c4336b6c1bc3ff46f.jpg", - "response": "two men standing on a road(643,289),(948,857)", - "id": 33718 - }, - { - "image_path": "G:\\images\\combined\\014a6593575a4330.jpg", - "response": "A television sitting on a shelf with a cell phone in front of it.", - "id": 33719 - }, - { - "image_path": "G:\\images\\combined\\014a7499b0466d5f.jpg", - "response": "An LG executive is presenting the world's first 4K curved OLED TV to a visitor at the 2014 International CES.", - "id": 33720 - }, - { - "image_path": "G:\\images\\combined\\014afe1edd4ca5d8.jpg", - "response": "An old abandoned bus sits in front of a small wooden building.", - "id": 33721 - }, - { - "image_path": "G:\\images\\combined\\014b1b9ba066ad84.jpg", - "response": "A table with a pink mug, a can of Sapporo beer, a wine glass, a bottle of sauce, a bowl of food, and a grill with food on it.", - "id": 33722 - }, - { - "image_path": "G:\\images\\combined\\014ba19f37c0a46c.jpg", - "response": "A grey Toyota Corolla parked on the side of the street.", - "id": 33723 - }, - { - "image_path": "G:\\images\\combined\\014d074f58b81e48.jpg", - "response": "A yellow bus with a white license plate that says F3 BBC.", - "id": 33724 - }, - { - "image_path": "G:\\images\\combined\\014dc9d971f35687.jpg", - "response": "A tall tower with a clock on it.", - "id": 33725 - }, - { - "image_path": "G:\\images\\combined\\014e2fad668d39bd.jpg", - "response": "A corner store is located on a street corner.", - "id": 33726 - }, - { - "image_path": "G:\\images\\combined\\014e36dcc0355140.jpg", - "response": "a book with the word okmd on the page", - "id": 33727 - }, - { - "image_path": "G:\\images\\combined\\014e3af6657e6531.jpg", - "response": "A green and white bus is parked in a parking lot next to a blue and white bus. The green and white bus has a white license plate with black letters and numbers.", - "id": 33728 - }, - { - "image_path": "G:\\images\\combined\\014ed59aa74afbef.jpg", - "response": "A television screen is displaying a picture of a street.", - "id": 33729 - }, - { - "image_path": "G:\\images\\combined\\014f2bebc44d66a9.jpg", - "response": "In the image there is a blue and orange van parked on a flooded street. The van is a small delivery van and has the word \"Sebrae\" written on the side. There is also an orange stripe on the van. In the background there are shops and a person walking.", - "id": 33730 - }, - { - "image_path": "G:\\images\\combined\\014f710ed6d450fc.jpg", - "response": "A person wearing a watch is touching a computer screen.", - "id": 33731 - }, - { - "image_path": "G:\\images\\combined\\014f7221241d94cb.jpg", - "response": "A television screen with a song playing on it.", - "id": 33732 - }, - { - "image_path": "G:\\images\\combined\\014fbf8ef4b53fd2.jpg", - "response": "a group of people sitting at a table", - "id": 33733 - }, - { - "image_path": "G:\\images\\combined\\015064cd4f943a40.jpg", - "response": "A yellow school bus numbered 192 is parked in a parking lot with other school buses.", - "id": 33734 - }, - { - "image_path": "G:\\images\\combined\\01508daa80f0d00e.jpg", - "response": "A golf course with a sign that says 18 Par 4 and has the hole numbers 4, 384, 383, and 340.", - "id": 33735 - }, - { - "image_path": "G:\\images\\combined\\0152dc2fd893e5b7.jpg", - "response": "A large advertisement for The Railway Children charity.", - "id": 33736 - }, - { - "image_path": "G:\\images\\combined\\015329f53f79d0fc.jpg", - "response": "A baseball game is being played in a stadium with many spectators. The pitcher is in the middle of his windup, preparing to throw the ball. The batter is holding a baseball bat and is ready to swing at the incoming pitch. There are other players on the field, including those in the outfield and those in the infield. Some players are wearing baseball gloves, while others are wearing baseball cleats. The stadium is filled with people, some of whom are sitting in chairs and others are standing. The chairs are spread out around the stadium, with some close to the field and others further away.", - "id": 33737 - }, - { - "image_path": "G:\\images\\combined\\01538f3ef5df35c8.jpg", - "response": "A green train is coming down the tracks.", - "id": 33738 - }, - { - "image_path": "G:\\images\\combined\\0153a5ebdf5f7bef.jpg", - "response": "A black stereo receiver with many buttons and knobs.", - "id": 33739 - }, - { - "image_path": "G:\\images\\combined\\01540c1de38cc907.jpg", - "response": "A blue boat floating on a river.", - "id": 33740 - }, - { - "image_path": "G:\\images\\combined\\01542a35bb99c2ea.jpg", - "response": "A female model is presenting two LG LTE models, a tablet and a laptop, in front of an LG display.", - "id": 33741 - }, - { - "image_path": "G:\\images\\combined\\015464dc2c46ffe9.jpg", - "response": "A bottle of Almaza beer sits on a table next to a plate of food.", - "id": 33742 - }, - { - "image_path": "G:\\images\\combined\\0154786a4b2c6fb6.jpg", - "response": "A collection of cycling gear including a helmet, shoes, gloves, and a jersey.", - "id": 33743 - }, - { - "image_path": "G:\\images\\combined\\0154f4c8b69bd7d0.jpg", - "response": "a store with shelves full of food and drinks", - "id": 33744 - }, - { - "image_path": "G:\\images\\combined\\01550f10df5e1599.jpg", - "response": "a close up of a camera on a white counter", - "id": 33745 - }, - { - "image_path": "G:\\images\\combined\\01552a0216fbb37b.jpg", - "response": "A Little Caesars pizza box sitting on a counter.", - "id": 33746 - }, - { - "image_path": "G:\\images\\combined\\01558f3fb3d24850.jpg", - "response": "a statue (665,116),(967,924)", - "id": 33747 - }, - { - "image_path": "G:\\images\\combined\\0155e99465d9ca6d.jpg", - "response": "A large red and white sign that says \"The Irish Times\" is hanging off the side of a building. Below the sign is a large clock with roman numerals. The sky is blue and cloudless.", - "id": 33748 - }, - { - "image_path": "G:\\images\\combined\\0156f0e26eb20c04.jpg", - "response": "A measuring cup filled with a white liquid sits on a counter.", - "id": 33749 - }, - { - "image_path": "G:\\images\\combined\\01575cc367b8aa17.jpg", - "response": "A collage of two photos. In the first photo, two women are standing in front of a fighter jet. They are holding a sign that says \"200 years\". In the second photo, a red tent with a sign that says \"U.S. Air Force\" is set up with various items on display.", - "id": 33750 - }, - { - "image_path": "G:\\images\\combined\\015782fa093545e0.jpg", - "response": "A calculator is laying on top of a pile of British pounds. There are many different bills and they are fanned out. The calculator has a key chain attached to it.", - "id": 33751 - }, - { - "image_path": "G:\\images\\combined\\0157f991b82393a8.jpg", - "response": "A Buick Roadmaster Estate Wagon is parked on the side of the street.", - "id": 33752 - }, - { - "image_path": "G:\\images\\combined\\0158932b16a6417a.jpg", - "response": "A white bus with a pink stripe is parked in a parking lot.", - "id": 33753 - }, - { - "image_path": "G:\\images\\combined\\01596249e27d5124.jpg", - "response": "A group of children are sitting on a couch in a library. They are all holding tablets and appear to be engaged in some activity. There are several other people in the room, including a man standing near a computer. There are many books on the shelves around the room.", - "id": 33754 - }, - { - "image_path": "G:\\images\\combined\\015a17c2b037f6ea.jpg", - "response": "A car radio that is on and playing a song by The Go-Go's.", - "id": 33755 - }, - { - "image_path": "G:\\images\\combined\\015a236a2d702f19.jpg", - "response": "A busy city street at night with many lit up signs on the buildings.", - "id": 33756 - }, - { - "image_path": "G:\\images\\combined\\015b2e1f1e5eb8cc.jpg", - "response": "A stove with a tea kettle on top of it.", - "id": 33757 - }, - { - "image_path": "G:\\images\\combined\\015c537f722d115e.jpg", - "response": "A large propeller airplane sitting on a runway at night.", - "id": 33758 - }, - { - "image_path": "G:\\images\\combined\\015cc4d3633407c7.jpg", - "response": "A case of Coca Cola Life sits on a store shelf. The bottles are green and white and have a distinctive shape. The label on the bottle is green and white and features the Coca Cola logo prominently. The bottles are packed in green cardboard boxes.", - "id": 33759 - }, - { - "image_path": "G:\\images\\combined\\015ce70d0a81a8d6.jpg", - "response": "A row of green and yellow double decker buses are parked next to each other.", - "id": 33760 - }, - { - "image_path": "G:\\images\\combined\\015e4368fc9b19a1.jpg", - "response": "A yellow school bus is stuck in the snow.", - "id": 33761 - }, - { - "image_path": "G:\\images\\combined\\015e8b56c9feb12b.jpg", - "response": "The image features a blue and white van with the Volkswagen logo on the front. The van has a white roof and is positioned in front of a light blue background. The van has silver rims and is driving on a road.", - "id": 33762 - }, - { - "image_path": "G:\\images\\combined\\015ef308d85e9abc.jpg", - "response": "A glass and a bottle of Old Hooky beer are sitting on a wooden table. The bottle has a red label with white writing. The glass is full and the beer is a dark golden color. The bottle is almost empty. There is a wicker chair next to the table. The glass is sitting in front of a green plant.", - "id": 33763 - }, - { - "image_path": "G:\\images\\combined\\015efa517e260a6c.jpg", - "response": "A group of soccer players are playing soccer on a field.", - "id": 33764 - }, - { - "image_path": "G:\\images\\combined\\015fbcebae90bee0.jpg", - "response": "A lady Rolex watch with a silver and gold band and a silver face.", - "id": 33765 - }, - { - "image_path": "G:\\images\\combined\\015fc2723bbb4488.jpg", - "response": "a bunch of pepsi bottles on a shelf in a store.", - "id": 33766 - }, - { - "image_path": "G:\\images\\combined\\015ff45d293527d0.jpg", - "response": "A man and woman are sitting next to each other.", - "id": 33767 - }, - { - "image_path": "G:\\images\\combined\\01600cb466dbff4d.jpg", - "response": "A man and woman standing behind a table with a sign that says Greenbaud.", - "id": 33768 - }, - { - "image_path": "G:\\images\\combined\\0160d2e918626024.jpg", - "response": "A person standing on a bathroom scale that reads 102.3.", - "id": 33769 - }, - { - "image_path": "G:\\images\\combined\\0160f87d5e672ea7.jpg", - "response": "The image features a wall of Jack Daniels bottles. There are at least 14 bottles visible, arranged in two rows of different heights. The bottles are all filled with the famous yellow liquid and have the signature black label. The top of the first bottle in the left row is lit up, creating a warm glow that is reflected in the glass. The background is blurred, creating a focus on the bottles in the foreground.", - "id": 33770 - }, - { - "image_path": "G:\\images\\combined\\0161ab1145014926.jpg", - "response": "A collection of liquor bottles are on display behind a glass shelf. The bottles are shaped like guitars, and there are many different types of alcohol.", - "id": 33771 - }, - { - "image_path": "G:\\images\\combined\\0161faa394d8f6eb.jpg", - "response": "A red and white double decker bus is parked on the side of the street.", - "id": 33772 - }, - { - "image_path": "G:\\images\\combined\\01623d6727ca5ec4.jpg", - "response": "A store with a blue Walmart.com Services sign hanging from the ceiling.", - "id": 33773 - }, - { - "image_path": "G:\\images\\combined\\0162a5d3b8c63dfc.jpg", - "response": "a large silver building with a curved roof", - "id": 33774 - }, - { - "image_path": "G:\\images\\combined\\0163174a750e610c.jpg", - "response": "A box of five Artic Cuff Cobalt filters.", - "id": 33775 - }, - { - "image_path": "G:\\images\\combined\\0163c144f4d3a955.jpg", - "response": "A train is stopped at a train station with people walking on the platform.", - "id": 33776 - }, - { - "image_path": "G:\\images\\combined\\01646b54d973aced.jpg", - "response": "a black car with the word DeSoto on the front", - "id": 33777 - }, - { - "image_path": "G:\\images\\combined\\0164fd32b7cb033a.jpg", - "response": "A baseball game is being played on a field. There are three players on the field, one of which is a young boy in a blue shirt and white pants, who is in the process of pitching the ball. The other two players are positioned in the field, one closer to the foreground and one further back. They are both wearing baseball gloves.", - "id": 33778 - }, - { - "image_path": "G:\\images\\combined\\0165ae6d0241601b.jpg", - "response": "A man is standing in a bathroom, looking at a shower.", - "id": 33779 - }, - { - "image_path": "G:\\images\\combined\\0165e2e27da25577.jpg", - "response": "A train car with graffiti on the side.", - "id": 33780 - }, - { - "image_path": "G:\\images\\combined\\01660da96a23d3f5.jpg", - "response": "A yellow school sign is attached to a metal pole.", - "id": 33781 - }, - { - "image_path": "G:\\images\\combined\\0166adf82f1557c5.jpg", - "response": "A model train set with a yellow train car sitting on the tracks.", - "id": 33782 - }, - { - "image_path": "G:\\images\\combined\\0167859382152718.jpg", - "response": "A group of people are sitting around a table with laptops in front of them. Some of the people are wearing ties. There is a cup on the table and a chair next to it.", - "id": 33783 - }, - { - "image_path": "G:\\images\\combined\\016811c061894f68.jpg", - "response": "A long train on a train track with a sky background.", - "id": 33784 - }, - { - "image_path": "G:\\images\\combined\\016818832e5de8f5.jpg", - "response": "An airplane is on the runway.", - "id": 33785 - }, - { - "image_path": "G:\\images\\combined\\016894011b8686b4.jpg", - "response": "An arena full of people watching a basketball game.", - "id": 33786 - }, - { - "image_path": "G:\\images\\combined\\01698b41dbd9dd78.jpg", - "response": "A green and white bus on a street.", - "id": 33787 - }, - { - "image_path": "G:\\images\\combined\\0169a28198ca3700.jpg", - "response": "An orange and white airplane is parked on the runway.", - "id": 33788 - }, - { - "image_path": "G:\\images\\combined\\016a97b23b613882.jpg", - "response": "A white truck with a radio tower on top is parked on the side of the road.", - "id": 33789 - }, - { - "image_path": "G:\\images\\combined\\016adf0f41cc399c.jpg", - "response": "A pile of cardboard boxes filled with various items such as handbags, books, and shirts.", - "id": 33790 - }, - { - "image_path": "G:\\images\\combined\\016b57639f13e1dc.jpg", - "response": "A bottle of espresso superior coffee beer from the Dark Star Brewery.", - "id": 33791 - }, - { - "image_path": "G:\\images\\combined\\016c4b92512f54f8.jpg", - "response": "A Rogue Farms branded bottle cap sitting on a shelf with Rogue beer bottles below it.", - "id": 33792 - }, - { - "image_path": "G:\\images\\combined\\016d8779fcbb8499.jpg", - "response": "A baseball player swinging a bat on a baseball field.", - "id": 33793 - }, - { - "image_path": "G:\\images\\combined\\016dced0141308e1.jpg", - "response": "a map of the world on a wall", - "id": 33794 - }, - { - "image_path": "G:\\images\\combined\\016e1e45766ac79e.jpg", - "response": "A red bus with the number 6479 HA on the front of it.", - "id": 33795 - }, - { - "image_path": "G:\\images\\combined\\016e79f7df1f8de4.jpg", - "response": "A street scene with a car on the side of the road.", - "id": 33796 - }, - { - "image_path": "G:\\images\\combined\\016e7a61d69d447f.jpg", - "response": "A plastic cup filled with a beer from Brooklyn Brewery.", - "id": 33797 - }, - { - "image_path": "G:\\images\\combined\\016e974a1752195d.jpg", - "response": "A street light over a city street with a sky background.", - "id": 33798 - }, - { - "image_path": "G:\\images\\combined\\016ea0be30d99a56.jpg", - "response": "a pink sign with black text that says \"a one-way trip to mars with smoking hot wifi would be ok\"", - "id": 33799 - }, - { - "image_path": "G:\\images\\combined\\016ed968736e3c85.jpg", - "response": "A six pack of Jack Daniels Tennessee Whiskey sits on a counter.", - "id": 33800 - }, - { - "image_path": "G:\\images\\combined\\016ee5993838b383.jpg", - "response": "An orange and black airplane with the number 27 on the side.", - "id": 33801 - }, - { - "image_path": "G:\\images\\combined\\01707a81d120dea3.jpg", - "response": "A desk with a keyboard, mouse, monitor, and picture frame.", - "id": 33802 - }, - { - "image_path": "G:\\images\\combined\\017167286eaede50.jpg", - "response": "A Samsung Galaxy phone and a smartwatch laying next to each other on a wooden table.", - "id": 33803 - }, - { - "image_path": "G:\\images\\combined\\0171805739279698.jpg", - "response": "A red double decker bus is parked on the side of the road.", - "id": 33804 - }, - { - "image_path": "G:\\images\\combined\\0173c483a5f56dc9.jpg", - "response": "A busy city street with people and vehicles.", - "id": 33805 - }, - { - "image_path": "G:\\images\\combined\\01742c404f9c67a8.jpg", - "response": "A person standing in front of a projector screen giving a presentation.", - "id": 33806 - }, - { - "image_path": "G:\\images\\combined\\017515fcaad7a491.jpg", - "response": "A package wrapped in brown paper with a red white and blue label on the corner that says Tanned in USA.", - "id": 33807 - }, - { - "image_path": "G:\\images\\combined\\017558fca4f4ba44.jpg", - "response": "The image shows a table topped with a variety of beer bottles and a baby's bottle. There are at least twelve bottles on the table, arranged in a variety of shapes and sizes. Some of the bottles are standing upright, while others are lying on their sides. The bottles come in different colors and have labels with various designs. In addition to the bottles, there is a baby's bottle on the table, which is shorter and wider than the beer bottles. The table is also topped with a few pieces of paper.", - "id": 33808 - }, - { - "image_path": "G:\\images\\combined\\0176dc2d441504d8.jpg", - "response": "The image shows a bookshelf filled with books in a library. The books are arranged on three shelves and vary in size, color, and format. Some books are large and thick, while others are smaller and thinner. The bookshelf is made of black material and is filled with books on different topics. Some books are labeled with white stickers that may contain information about the book or the author. The overall atmosphere of the image is that of a quiet and organized place, where people can come to learn and read.", - "id": 33809 - }, - { - "image_path": "G:\\images\\combined\\01776212f59bf2dc.jpg", - "response": "A model train set with a cargo car and two mine carts on the tracks.", - "id": 33810 - }, - { - "image_path": "G:\\images\\combined\\0177e5cab3e6dd09.jpg", - "response": "A pile of assorted street signs sitting on the ground.", - "id": 33811 - }, - { - "image_path": "G:\\images\\combined\\0178204bfa902533.jpg", - "response": "A person walking their dog on a lead in a car park.", - "id": 33812 - }, - { - "image_path": "G:\\images\\combined\\017970b66a149b80.jpg", - "response": "An orange and white jet airliner on a wet runway.", - "id": 33813 - }, - { - "image_path": "G:\\images\\combined\\0179daf51678b42b.jpg", - "response": "a man wearing a red racing suit with white accents", - "id": 33814 - }, - { - "image_path": "G:\\images\\combined\\017b2a8eae6f2070.jpg", - "response": "A close up of a coin in someones hand. The coin is a 20 cent piece and has Queen Elizabeth II on it.", - "id": 33815 - }, - { - "image_path": "G:\\images\\combined\\017b90b578be59d7.jpg", - "response": "The image displays a glass shelf with multiple bottles of agave syrup. The bottles are displayed in front of a crowd of people. The bottles are arranged in such a way that they form a row. The agave syrup bottles vary in size and are of different shades of brown.", - "id": 33816 - }, - { - "image_path": "G:\\images\\combined\\017e09f52c4229f1.jpg", - "response": "A yellow plane with the word \"Navy\" on the side.", - "id": 33817 - }, - { - "image_path": "G:\\images\\combined\\017f0881bc6ac4ae.jpg", - "response": "An old camera, the Mamiya RB67, is sitting on a desk. The camera is black and has a round lens on the front. The lens has the word Mamiya on it. The camera has a black strap that is attached to it. The strap has the word Mamiya on it as well. The camera is positioned in the center of the image and is in front of a keyboard.", - "id": 33818 - }, - { - "image_path": "G:\\images\\combined\\017f45b1410d3ddb.jpg", - "response": "A stop sign is at the intersection of Summit and Spooner streets.", - "id": 33819 - }, - { - "image_path": "G:\\images\\combined\\017f5bee52b9aa44.jpg", - "response": "A watch with the number 12 on it.", - "id": 33820 - }, - { - "image_path": "G:\\images\\combined\\018109c84870f2fc.jpg", - "response": "In the image there is a black plastic squeezy tube with a black label on it. The label has the words Blemish Balm in pink font and All in One Magic Make-Up in black font. The tube is open slightly and is sitting on a white surface with a green background.", - "id": 33821 - }, - { - "image_path": "G:\\images\\combined\\01812649e2c108b4.jpg", - "response": "a yellow bump sign (126,125),(895,895)", - "id": 33822 - }, - { - "image_path": "G:\\images\\combined\\0181608191e027f5.jpg", - "response": "A keyboard with the letters on it rearranged to spell \"Knob\".", - "id": 33823 - }, - { - "image_path": "G:\\images\\combined\\0181953a3ab18ae3.jpg", - "response": "A bus and a truck are involved in an accident at a busy intersection.", - "id": 33824 - }, - { - "image_path": "G:\\images\\combined\\01824d2e57c99aad.jpg", - "response": "A computer monitor is on a desk with three small screens in front of it. The screens are displaying different colors. There is also a keyboard in front of the monitor.", - "id": 33825 - }, - { - "image_path": "G:\\images\\combined\\018273ccfbe71fb1.jpg", - "response": "A red bus is driving down the street.", - "id": 33826 - }, - { - "image_path": "G:\\images\\combined\\0182cde6febd8fa9.jpg", - "response": "a green and white street sign that says Branchville Emporia on it", - "id": 33827 - }, - { - "image_path": "G:\\images\\combined\\018350593a10c72e.jpg", - "response": "A green bus is parked on the side of the street.", - "id": 33828 - }, - { - "image_path": "G:\\images\\combined\\0183848df6accae7.jpg", - "response": "A blue train engine with the number 50036 is pulling into a train station.", - "id": 33829 - }, - { - "image_path": "G:\\images\\combined\\0183931fc9840cd3.jpg", - "response": "A collection of books on a table.", - "id": 33830 - }, - { - "image_path": "G:\\images\\combined\\0183bbb34a7487c2.jpg", - "response": "A man with a beard and a white lab coat is in a lab. He is wearing a white lab coat, blue gloves and has a beard.", - "id": 33831 - }, - { - "image_path": "G:\\images\\combined\\0183cbd4b08d168b.jpg", - "response": "A white board with the word \"FRIENDS\" written on it.", - "id": 33832 - }, - { - "image_path": "G:\\images\\combined\\0184cbf22246869d.jpg", - "response": "an open book with many words on it", - "id": 33833 - }, - { - "image_path": "G:\\images\\combined\\01858e4b52f9828f.jpg", - "response": "A wooden clock with roman numerals sits on a mantle.", - "id": 33834 - }, - { - "image_path": "G:\\images\\combined\\0185d3a402c0978e.jpg", - "response": "A table with two glasses and two bottles of beer on it.", - "id": 33835 - }, - { - "image_path": "G:\\images\\combined\\0185d4518e6adca6.jpg", - "response": "The watch is made of metal and has a silver and black face.", - "id": 33836 - }, - { - "image_path": "G:\\images\\combined\\01862b86467dd50a.jpg", - "response": "A laptop computer with a photo of a group of people on the screen. The photo shows a man and a woman holding a baby, and they are all smiling. There is also a picture of a man with a beard and a suit on the screen.", - "id": 33837 - }, - { - "image_path": "G:\\images\\combined\\01869026f71bc30a.jpg", - "response": "A blue and gold can of beer that is open on top sitting on a counter.", - "id": 33838 - }, - { - "image_path": "G:\\images\\combined\\018794a8a1f6b23b.jpg", - "response": "A large billboard featuring a woman in a red dress in front of a blue car.", - "id": 33839 - }, - { - "image_path": "G:\\images\\combined\\01880af9695eceb8.jpg", - "response": "A silver and black fighter plane with a man in the cockpit.", - "id": 33840 - }, - { - "image_path": "G:\\images\\combined\\0188b56d842f79ba.jpg", - "response": "The image shows a close up of a grey keyboard. The keys are Return, Shift, and Enter.", - "id": 33841 - }, - { - "image_path": "G:\\images\\combined\\0188e73e3478081a.jpg", - "response": "Three men in biking attire standing together with their arms around each other.", - "id": 33842 - }, - { - "image_path": "G:\\images\\combined\\01891d494c112c64.jpg", - "response": "A colorful table with a pink tablecloth and a colorful cloth underneath the beer.", - "id": 33843 - }, - { - "image_path": "G:\\images\\combined\\01895680c5fa120b.jpg", - "response": "A store shelf with two orange and yellow Pringles cans.", - "id": 33844 - }, - { - "image_path": "G:\\images\\combined\\01899740973985e6.jpg", - "response": "A white and blue bus is parked on the side of the street.", - "id": 33845 - }, - { - "image_path": "G:\\images\\combined\\018a9e2001d2fb4d.jpg", - "response": "A van with a painted face on the hood, parked in a parking lot.", - "id": 33846 - }, - { - "image_path": "G:\\images\\combined\\018c2f7c1ccd0d67.jpg", - "response": "A table with three remote controls on top of it.", - "id": 33847 - }, - { - "image_path": "G:\\images\\combined\\018c305361dad376.jpg", - "response": "A collage of two photos, one on the left is a black and white image of a man in a clown suit riding a unicycle, the other on the right is a black and white photo of three people riding bicycles on a track.", - "id": 33848 - }, - { - "image_path": "G:\\images\\combined\\018c95ebb9fece08.jpg", - "response": "The image is an advertisement for Prati-Donazzi, a generic medication produced in Brazil. The main product is Donuzli, a medication for the treatment of constipation in infants and children. The image features a box of Donuzli, a small child, and a mother holding her child. The text on the image reads \"Prati-Donazzi: O g\u00eanero \u00e9 mais consumido do Brasil.\" The image is also labeled as being protected by copyright.", - "id": 33849 - }, - { - "image_path": "G:\\images\\combined\\018d277fa43ac4c8.jpg", - "response": "A Star Alliance airplane is landing at an airport.", - "id": 33850 - }, - { - "image_path": "G:\\images\\combined\\018d5ebbbdb36daf.jpg", - "response": "An ambulance van is parked in front of a building. The van is red, white, yellow, and green. The ambulance service Australia logo is on the side of the van. There is a red and white checkered pattern on the side of the van. The van has a siren on top of it. There is a brick wall next to the building.", - "id": 33851 - }, - { - "image_path": "G:\\images\\combined\\018deaf2ea7f1aa5.jpg", - "response": "A close up of a smart watch on a wooden table. The watch is a silver color and has a black band. The watch face has the word \"Samsung\" written on it in blue.", - "id": 33852 - }, - { - "image_path": "G:\\images\\combined\\018e33d28aa4d125.jpg", - "response": "A silver and black macbook air laptop sitting on a wooden desk.", - "id": 33853 - }, - { - "image_path": "G:\\images\\combined\\018e736d0febce19.jpg", - "response": "A road sign warning of tank crossing is posted on the side of the road.", - "id": 33854 - }, - { - "image_path": "G:\\images\\combined\\018e8263c76d4c02.jpg", - "response": "A colorful fighter jet is taking off from a runway.", - "id": 33855 - }, - { - "image_path": "G:\\images\\combined\\018edff0d2be81a6.jpg", - "response": "A black box with the word Godorniu in gold on the top.", - "id": 33856 - }, - { - "image_path": "G:\\images\\combined\\018eedca06fdf3c0.jpg", - "response": "A shiny silver propeller airplane is on the runway.", - "id": 33857 - }, - { - "image_path": "G:\\images\\combined\\018fec5b873d3012.jpg", - "response": "The image shows a close up of the tail end of an airplane. The airplane is white and blue and says \"A380\" on the tail. The word \"Love at first flight\" is also painted on the side of the plane. The sky is clear and blue behind the plane.", - "id": 33858 - }, - { - "image_path": "G:\\images\\combined\\019128504b2d8249.jpg", - "response": "A crowded arena full of people, with a basketball court in the middle. There are multiple scoreboards and lights shining down on the court.", - "id": 33859 - }, - { - "image_path": "G:\\images\\combined\\019171300473730c.jpg", - "response": "A large colorful welcome to Nevada sign with a cowboy on it.", - "id": 33860 - }, - { - "image_path": "G:\\images\\combined\\0191da68d5042918.jpg", - "response": "A poster with two men on it in a foreign language.", - "id": 33861 - }, - { - "image_path": "G:\\images\\combined\\019236669bdf9f65.jpg", - "response": "A bottle of wine laying on top of a bed of raspberries.", - "id": 33862 - }, - { - "image_path": "G:\\images\\combined\\01929e6e4467314d.jpg", - "response": "A maroon car parked on the side of a road.", - "id": 33863 - }, - { - "image_path": "G:\\images\\combined\\0193646887a0c084.jpg", - "response": "A computer monitor on a desk in a store.", - "id": 33864 - }, - { - "image_path": "G:\\images\\combined\\019396ac7f0ea531.jpg", - "response": "In the image, a man wearing a white cricket uniform and a blue cap is standing in a grassy field. He is holding a ball in his right hand and appears to be looking off to the side. Another person is visible in the background, wearing a white shirt and blue shorts. The field has a few steps leading up to it and is surrounded by a white wall. The chairs in the background are pink and are arranged in rows.", - "id": 33865 - }, - { - "image_path": "G:\\images\\combined\\0193991401f83e64.jpg", - "response": "a bus with a blue awning that says \u91d1\u9633\u516c\u5b89\u5206\u5c40 on it", - "id": 33866 - }, - { - "image_path": "G:\\images\\combined\\0194162dfa4c44ef.jpg", - "response": "A train is coming down the tracks in the snow.", - "id": 33867 - }, - { - "image_path": "G:\\images\\combined\\01942fe769bbad71.jpg", - "response": "A Keurig coffee maker on a black tray with a variety of items.", - "id": 33868 - }, - { - "image_path": "G:\\images\\combined\\0195e8a172eddc29.jpg", - "response": "A white Volkswagen Polo car with a yellow license plate that reads \"BP12 EFS\". There is a sticker on the back window that says \"Sulitler Speeds\". In the background, there is a blue fence and a building.", - "id": 33869 - }, - { - "image_path": "G:\\images\\combined\\01963c4f7859148b.jpg", - "response": "In the image, there is a yellow and blue train passing by a sign that says \"1284\". The train is blurry and appears to be moving quickly. There is a red hand on a pole next to the sign. The background shows a building with a yellow door and a window. The platform is made of brick and there are several steps leading up to it.", - "id": 33870 - }, - { - "image_path": "G:\\images\\combined\\019667366dbf9b65.jpg", - "response": "A large building with a big advertisement on the front of it.", - "id": 33871 - }, - { - "image_path": "G:\\images\\combined\\0196a4e677d98881.jpg", - "response": "A black and white photo of a Air New Zealand airplane taking off.", - "id": 33872 - }, - { - "image_path": "G:\\images\\combined\\01974aeb05de615f.jpg", - "response": "A bottle of Buxton water sitting on a coaster.", - "id": 33873 - }, - { - "image_path": "G:\\images\\combined\\01977597c2c9bd01.jpg", - "response": "A cup of coffee with foam on top sitting on a table.", - "id": 33874 - }, - { - "image_path": "G:\\images\\combined\\0198094da6036e1a.jpg", - "response": "A clothes line with a variety of clothes hanging on it.", - "id": 33875 - }, - { - "image_path": "G:\\images\\combined\\01984a985e4bf80f.jpg", - "response": "A dirty blue car with a yellow license plate.", - "id": 33876 - }, - { - "image_path": "G:\\images\\combined\\019856d0957218d8.jpg", - "response": "An airplane on the runway at the airport.", - "id": 33877 - }, - { - "image_path": "G:\\images\\combined\\019884c222dfb6c7.jpg", - "response": "A green and yellow train stopped at a train station.", - "id": 33878 - }, - { - "image_path": "G:\\images\\combined\\0198e4d0c4bf97d8.jpg", - "response": "The image depicts a baseball game in progress with two baseball players on the field. One player is in the process of catching a ball with his baseball glove, while the other player is running towards the ball. Both players are wearing red and white uniforms. The scene is set outdoors, with a chain-link fence visible in the background. The players are in action, showcasing their skills and athleticism as they compete in the game.", - "id": 33879 - }, - { - "image_path": "G:\\images\\combined\\0199b8afadb0c37e.jpg", - "response": "A red telephone box and a red postbox on a cobbled street", - "id": 33880 - }, - { - "image_path": "G:\\images\\combined\\019a0bb00c87a1f8.jpg", - "response": " two soccer players(114,223),(563,996)(259,82),(893,996)(447,0),(997,997) going after the ball(320,600),(488,813)", - "id": 33881 - }, - { - "image_path": "G:\\images\\combined\\019a2a22e51ee1a9.jpg", - "response": "A white car with a plate that says \"NOCSG\" on it.", - "id": 33882 - }, - { - "image_path": "G:\\images\\combined\\019a60ca53aa103d.jpg", - "response": "A train pulls into a station.", - "id": 33883 - }, - { - "image_path": "G:\\images\\combined\\019b4355eb6f0678.jpg", - "response": "a store front with a large yellow sign that says Billa.", - "id": 33884 - }, - { - "image_path": "G:\\images\\combined\\019c14e417af0517.jpg", - "response": "A blue van is parked on the street in front of a building. The building has graffiti on the walls. There are two trees in the scene, one on the left and one on the right. A person is visible in the image, but no other people are visible.", - "id": 33885 - }, - { - "image_path": "G:\\images\\combined\\019d3790ad9c10e3.jpg", - "response": "A white van with graffiti on the side is parked on the street.", - "id": 33886 - }, - { - "image_path": "G:\\images\\combined\\019f339928cefa9b.jpg", - "response": "A television monitor showing a security video of a man walking in front of a building.", - "id": 33887 - }, - { - "image_path": "G:\\images\\combined\\019f5d10fcc94583.jpg", - "response": "In the image there is a student holding a notebook with a list of classes written on it. The notebook is a lined notebook and is held by a student. The classes listed are English, Math, Global Studies, Music, and P.E.", - "id": 33888 - }, - { - "image_path": "G:\\images\\combined\\01a28309568b4274.jpg", - "response": "In the image, a man is holding up the Stanley Cup while standing on top of a double decker bus. The man is wearing a white and black hat and a white jersey with the number 88 on the back. He is also wearing a pair of white and black shorts. Another man, wearing a white shirt and a black and white cap, is standing next to him and holding a camera. A third man, wearing a red jersey with the number 19 on the back, is standing between them. They are all standing on the second level of the bus, which has a red roof. In the background, there is a large building with many windows.", - "id": 33889 - }, - { - "image_path": "G:\\images\\combined\\01a4bef08f0b3480.jpg", - "response": "A small yellow and white airplane flying in the sky.", - "id": 33890 - }, - { - "image_path": "G:\\images\\combined\\01a4c2bc103db318.jpg", - "response": "The image features an iMac computer with a white keyboard. The iMac has the word iMac written on the top and the keyboard is seen in front of it. The background of the image is black.", - "id": 33891 - }, - { - "image_path": "G:\\images\\combined\\01a4c909a112e09e.jpg", - "response": "A train station with two trains on the tracks.", - "id": 33892 - }, - { - "image_path": "G:\\images\\combined\\01a56abd2f39e143.jpg", - "response": "A blue airplane with a star on the side is sitting on a runway.", - "id": 33893 - }, - { - "image_path": "G:\\images\\combined\\01a60820469b72ac.jpg", - "response": "A colorful tour bus is parked on the side of the road.", - "id": 33894 - }, - { - "image_path": "G:\\images\\combined\\01a676213a220771.jpg", - "response": "A monitor that is turned on and displaying a map.", - "id": 33895 - }, - { - "image_path": "G:\\images\\combined\\01a72ceee9e2910c.jpg", - "response": "Two bottles of wedding ale from Ol'fabriken la Essingen.", - "id": 33896 - }, - { - "image_path": "G:\\images\\combined\\01a7522afbb64535.jpg", - "response": "A man in a grey and black shirt with the word Competidor on it.", - "id": 33897 - }, - { - "image_path": "G:\\images\\combined\\01a7587256c11268.jpg", - "response": " A police car(13,11),(753,763) is shown with extensive damage to the front end.", - "id": 33898 - }, - { - "image_path": "G:\\images\\combined\\01a79e8e9040a40a.jpg", - "response": "A book is laying on a wooden table. The book is open to a page with a man on it. The man is wearing a hat and looking to the left. The book is called \"The Brain\" and has the authors listed as Vaughan, Guerra, and Marzan Jr.", - "id": 33899 - }, - { - "image_path": "G:\\images\\combined\\01a85a2ef6290c8e.jpg", - "response": "A small corked bottle with the word \"essential\" on it and the word \"lemon\" on it.", - "id": 33900 - }, - { - "image_path": "G:\\images\\combined\\01a90981e276e9ca.jpg", - "response": "A blue train is on the tracks near a mountain.", - "id": 33901 - }, - { - "image_path": "G:\\images\\combined\\01a934c35c1c2f2d.jpg", - "response": "A record album cover for a piano piece by Franz Schubert.", - "id": 33902 - }, - { - "image_path": "G:\\images\\combined\\01a9b58c61fe1d22.jpg", - "response": "A blue and white bus is parked outside of a building.", - "id": 33903 - }, - { - "image_path": "G:\\images\\combined\\01a9bc58fa9aad5c.jpg", - "response": "A white wall with a black and white graffiti of a man holding a sign that says \"Samsonovich\". Above the graffiti is black spray paint that says \"HAVING FREEDOM IS NOT THE SAME AS BEING FREE\" in all caps.", - "id": 33904 - }, - { - "image_path": "G:\\images\\combined\\01a9eabbfb7267e6.jpg", - "response": "In the image, two men are engaged in a boxing match. They are wearing protective gear, including helmets and gloves, and are standing in a boxing ring. The man on the left is wearing a red uniform and has his arms raised, while the man on the right is wearing a yellow and black uniform and is throwing a punch. The boxing match is taking place in front of a crowd, with spectators watching the action.", - "id": 33905 - }, - { - "image_path": "G:\\images\\combined\\01aa5acb40717e10.jpg", - "response": "A large metal clock on a wall with roman numerals on the face.", - "id": 33906 - }, - { - "image_path": "G:\\images\\combined\\01aa9b9a3520fc0c.jpg", - "response": "A Marietta Police car parked outside of the police station.", - "id": 33907 - }, - { - "image_path": "G:\\images\\combined\\01ab502812393b4f.jpg", - "response": "A movie poster for the film 12 Monkeys, with the tagline \"When the only evidence is the truth\" and the credits \"starring Bruce Willis and Madeleine Stowe\". Next to it is a movie poster for the film The Singing Detective, with the tagline \"Now he's living it\" and the credits \"starring Robert Downey Jr. and Carla Gugino\". Both posters are on a black background.", - "id": 33908 - }, - { - "image_path": "G:\\images\\combined\\01ab697dd7a783bf.jpg", - "response": "A train on railroad tracks with a banner on the back that says Rockaway here we come.", - "id": 33909 - }, - { - "image_path": "G:\\images\\combined\\01ab6b284642d087.jpg", - "response": "An airplane is parked on the runway at the airport.", - "id": 33910 - }, - { - "image_path": "G:\\images\\combined\\01ac4614e02a4967.jpg", - "response": "A bottle of Holy Rail Ale by Monty Python's.", - "id": 33911 - }, - { - "image_path": "G:\\images\\combined\\01ac7000ab06a96f.jpg", - "response": "A blue and yellow train engine inside a warehouse.", - "id": 33912 - }, - { - "image_path": "G:\\images\\combined\\01ad33d0ee9a7315.jpg", - "response": "a grey car with the license plate 9227 parked on the side of the road", - "id": 33913 - }, - { - "image_path": "G:\\images\\combined\\01ad46727038a8e2.jpg", - "response": "An old green and white bus is parked on the side of the road.", - "id": 33914 - }, - { - "image_path": "G:\\images\\combined\\01ad66075fd11264.jpg", - "response": "A blue train engine(283,399),(995,866) with the number 1982 on it.", - "id": 33915 - }, - { - "image_path": "G:\\images\\combined\\01b08db81b263dbc.jpg", - "response": "A student's desk with a notebook and textbook on it.", - "id": 33916 - }, - { - "image_path": "G:\\images\\combined\\01b0c96c8df44fbf.jpg", - "response": "In the image, there are two men grilling meat on a large grill. One man is wearing a white shirt and a yellow and white hat, while the other man is wearing a white shirt and a blue hat. They are standing around the grill, which is filled with meat. There are several other people in the background, some of whom are also wearing hats. There is a table with a blue bin on it, and a cooler with a red lid is placed next to the table. There are also several bottles and cups placed on the table and the cooler.", - "id": 33917 - }, - { - "image_path": "G:\\images\\combined\\01b1c5e105acaa97.jpg", - "response": "A bottle of Save Our Shore A Charitable Pilsner sits on a wooden table. The label on the bottle is white and says \"Save Our Shore\" in white lettering. There is a design of a chain of fish above the text. The bottle is dark brown.", - "id": 33918 - }, - { - "image_path": "G:\\images\\combined\\01b1c631df04947b.jpg", - "response": "A collage of Clinique products including a can of Clinique Beauty Box, a bottle of Clinique, a Clinique nail polish remover, Clinique eyelash curler, Clinique eye makeup remover, Clinique eye makeup, Clinique lip balm, Clinique face powder, Clinique eye shadow, Clinique eyeliner, Clinique face wash, Clinique face mask, Clinique toner, Clinique face cream, Clinique face scrub, Clinique face mask, Clinique face wipes, Clinique eye cream, Clinique eye makeup, Clinique eye primer, Clinique eye shadow primer, Clinique liquid eye liner, Clinique liquid eyeliner, Clinique liquid eyeshadow, Clinique liquid eyeshadow primer, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid eyeshadow topcoat, Clinique liquid eyeshadow base, Clinique liquid ey", - "id": 33919 - }, - { - "image_path": "G:\\images\\combined\\01b238510d6b482b.jpg", - "response": "The image shows a row of yellow school buses parked close together in a lot. There are at least five buses visible, with some closer together and some further apart. The buses are all facing the same direction.", - "id": 33920 - }, - { - "image_path": "G:\\images\\combined\\01b2d1a4bdc18964.jpg", - "response": "A black smart watch with a white face. The watch is on a pink surface. The watch has a red and orange color scheme on the top of the face. The time on the watch is 1:50. There is a small red heart in the top middle of the face. Below the heart is the number 5. Under the number 5 are the words \"days left\". There is a black band on the watch.", - "id": 33921 - }, - { - "image_path": "G:\\images\\combined\\01b2f97f413eba7d.jpg", - "response": "A yellow school bus with the number 212 on it.", - "id": 33922 - }, - { - "image_path": "G:\\images\\combined\\01b303d3e8e83005.jpg", - "response": "A man standing next to a silver and red plane.", - "id": 33923 - }, - { - "image_path": "G:\\images\\combined\\01b3265b22d23b50.jpg", - "response": "a close up of a smart watch on someones wrist", - "id": 33924 - }, - { - "image_path": "G:\\images\\combined\\01b346956fa4fcbc.jpg", - "response": "A taxi cab with a sign on top advertising a gun store.", - "id": 33925 - }, - { - "image_path": "G:\\images\\combined\\01b4892d548d4b68.jpg", - "response": "In the image, a baseball pitcher is in the middle of a pitch on the field. He is wearing a white baseball uniform and a black hat. The pitcher is holding a baseball in his right hand and is in the process of throwing it. He is standing on the pitcher's mound, which is a raised area in the center of the field. The pitcher is wearing cleats, a belt, and a baseball glove on his left hand. The baseball glove is black and is specifically designed for catching and fielding the ball. The pitcher is looking forward, focusing on his target.", - "id": 33926 - }, - { - "image_path": "G:\\images\\combined\\01b501233b20bf8e.jpg", - "response": "The image shows a close up of an airplane with a propeller. The propeller is attached to the underside of the plane and is visible from the ground. The plane is silver in color.", - "id": 33927 - }, - { - "image_path": "G:\\images\\combined\\01b54ac75f9e41e9.jpg", - "response": "A bookshelf with a variety of books and magazines.", - "id": 33928 - }, - { - "image_path": "G:\\images\\combined\\01b54fd9748c7d49.jpg", - "response": "In the image there is a rug on the floor and on the rug there is a pen, a pencil and a notebook.", - "id": 33929 - }, - { - "image_path": "G:\\images\\combined\\01b62ec04170ee4a.jpg", - "response": "A black and white photo of a stadium with a large American flag flying above a Boston 2013 banner.", - "id": 33930 - }, - { - "image_path": "G:\\images\\combined\\01b631ec361104d6.jpg", - "response": "A shelf with a few wine bottles on it.", - "id": 33931 - }, - { - "image_path": "G:\\images\\combined\\01b67da725f6ab69.jpg", - "response": "A table with a blue table cloth on it.", - "id": 33932 - }, - { - "image_path": "G:\\images\\combined\\01b72a92cdd941fc.jpg", - "response": "A poster for an art exhibition called \"Rejects 2010\" which will be held from June 22-26. The poster features the word \"Rejects\" in large letters with a motorcycle and a bird as design elements. There is also a tagline that reads \"Summer Exhibition\".", - "id": 33933 - }, - { - "image_path": "G:\\images\\combined\\01b7c44cfd7ea792.jpg", - "response": "an open book with a white cover and black text", - "id": 33934 - }, - { - "image_path": "G:\\images\\combined\\01b805b9f96679a3.jpg", - "response": "A black BMW wagon with white rims is parked in front of a grey building. There are several people standing around the cars and a table with a red and white checkered tablecloth. A man in a black shirt is standing next to a red car. Another man is wearing a white hat and black shirt. There is a woman with blonde hair and a black shirt. A person is wearing a black shirt and blue shorts.", - "id": 33935 - }, - { - "image_path": "G:\\images\\combined\\01b81acc7cb28ea6.jpg", - "response": "A man wearing a white shirt and a black hat with the number 77 on it.", - "id": 33936 - }, - { - "image_path": "G:\\images\\combined\\01b8768696de4328.jpg", - "response": "a man wearing a red baseball hat and jacket", - "id": 33937 - }, - { - "image_path": "G:\\images\\combined\\01b87cd9e16dc614.jpg", - "response": "A person is holding a camera in their hands. The camera is a silver point and shoot camera. There is a picture of a woman sitting on a brick wall on the camera screen. The woman is wearing a dress.", - "id": 33938 - }, - { - "image_path": "G:\\images\\combined\\01b8c015e743a69a.jpg", - "response": "A pair of butterfly kisses earrings made by Melissa Ingram.", - "id": 33939 - }, - { - "image_path": "G:\\images\\combined\\01babd5ec480f377.jpg", - "response": "A black and white photo of a group of men standing in front of a plane.", - "id": 33940 - }, - { - "image_path": "G:\\images\\combined\\01bb0a994cd89efe.jpg", - "response": "A store with a man standing in front of it and a woman standing inside. The store is called digital and sells electronics.", - "id": 33941 - }, - { - "image_path": "G:\\images\\combined\\01bbc2405d03f004.jpg", - "response": "A table with a bag of cookies on it.", - "id": 33942 - }, - { - "image_path": "G:\\images\\combined\\01bd42a657556876.jpg", - "response": "A man holding a sign that says \"Have you seen this wizard?\" on it.", - "id": 33943 - }, - { - "image_path": "G:\\images\\combined\\01be054d92db60bf.jpg", - "response": "Maxiflou markers are on display in a store.", - "id": 33944 - }, - { - "image_path": "G:\\images\\combined\\01be0f791132b4b1.jpg", - "response": "A baseball stadium with many people in the stands watching the game.", - "id": 33945 - }, - { - "image_path": "G:\\images\\combined\\01be12f5b9b2b603.jpg", - "response": "A purple camera with a blue lens cover on top of a box.", - "id": 33946 - }, - { - "image_path": "G:\\images\\combined\\01bea6f686154287.jpg", - "response": "A plaque with the words The National Weather Center Building on it.", - "id": 33947 - }, - { - "image_path": "G:\\images\\combined\\01bec27c61ec0b5d.jpg", - "response": "A wrist watch with a red band and a red and silver face.", - "id": 33948 - }, - { - "image_path": "G:\\images\\combined\\01c0493a77b12ec1.jpg", - "response": "A collection of liquor bottles sit on a wooden table.", - "id": 33949 - }, - { - "image_path": "G:\\images\\combined\\01c17e2aff64922d.jpg", - "response": "a man walking down the street next to a wall with posters on it", - "id": 33950 - }, - { - "image_path": "G:\\images\\combined\\01c1bb45c14817b4.jpg", - "response": "a keyboard that is on a table", - "id": 33951 - }, - { - "image_path": "G:\\images\\combined\\01c1c607e257e9e0.jpg", - "response": "A baseball player in a black jersey with the number 25 is holding a bat on a baseball field.", - "id": 33952 - }, - { - "image_path": "G:\\images\\combined\\01c219e8870b7b1b.jpg", - "response": "A brown and green embroidered badge for the West Palm Beach Police.", - "id": 33953 - }, - { - "image_path": "G:\\images\\combined\\01c28a28cad2b006.jpg", - "response": "A pitcher on the mound winds up to throw the ball.", - "id": 33954 - }, - { - "image_path": "G:\\images\\combined\\01c2ca375c6898b1.jpg", - "response": "A pair of wire strippers with a yellow plastic handle.", - "id": 33955 - }, - { - "image_path": "G:\\images\\combined\\01c3702f209b5eaa.jpg", - "response": "A green double decker bus is driving down the street.", - "id": 33956 - }, - { - "image_path": "G:\\images\\combined\\01c38fc3c4d8b081.jpg", - "response": "A bottle of white wine sits on a table.", - "id": 33957 - }, - { - "image_path": "G:\\images\\combined\\01c446086e5755bc.jpg", - "response": "A white board with writing on it in a classroom.", - "id": 33958 - }, - { - "image_path": "G:\\images\\combined\\01c462d9e9aaace1.jpg", - "response": "a train on a track with smoke coming out of it", - "id": 33959 - }, - { - "image_path": "G:\\images\\combined\\01c4f4a2bb5bae43.jpg", - "response": "The image is a poster for the zarzuelas famosas. The title is in red and yellow letters and is Zarzuelas Famosas. Below the title is a group of people on a stage. There is a crowd in the stands watching the performance. There are 14 people on the stage, some are standing on boxes and others are standing on the floor. Some are holding handbags and one is holding a small child. The stage is set like a theater with a balcony and a curtain. The background is red and yellow.", - "id": 33960 - }, - { - "image_path": "G:\\images\\combined\\01c5eef439b278cc.jpg", - "response": "a baseball player holding a bat", - "id": 33961 - }, - { - "image_path": "G:\\images\\combined\\01c7a957c612291f.jpg", - "response": "A pair of black ceramic bottles sit on a wooden table.", - "id": 33962 - }, - { - "image_path": "G:\\images\\combined\\01c81fbb0133ecd2.jpg", - "response": "A bicycle sign on a metal pole.", - "id": 33963 - }, - { - "image_path": "G:\\images\\combined\\01c82eac29b01b43.jpg", - "response": "The image shows a group of cyclists standing around in a room. They are all wearing black and purple cycling outfits and are gathered around a bike. The room has a red carpet and several bicycles are visible in different spots around the room.", - "id": 33964 - }, - { - "image_path": "G:\\images\\combined\\01c899c8832ad677.jpg", - "response": "The image shows a baseball player in the midst of a pitch on a field. The pitcher is in the process of winding up and has his front leg in the air, preparing to throw the ball. The player is wearing a baseball uniform and a baseball glove is visible on his hand. There are other players on the field, some of them wearing baseball caps, and a baseball bat is visible in the background. The field is surrounded by billboards and advertisements, including one for Haldeman Auto.", - "id": 33965 - }, - { - "image_path": "G:\\images\\combined\\01c9483cf04cf8dc.jpg", - "response": "A yellow sign warning of loose cattle next 6 miles.", - "id": 33966 - }, - { - "image_path": "G:\\images\\combined\\01c94e8c6228274c.jpg", - "response": "An old envelope with a stamp on it that says Mich.", - "id": 33967 - }, - { - "image_path": "G:\\images\\combined\\01cb886afcc61ed2.jpg", - "response": "A store filled with lots of items and blue and red boxes.", - "id": 33968 - }, - { - "image_path": "G:\\images\\combined\\01cc0f8a81d39848.jpg", - "response": "A white truck with a blue sign on the side of it.", - "id": 33969 - }, - { - "image_path": "G:\\images\\combined\\01cc76f66e7e973b.jpg", - "response": "A group of people wearing New York Jets gear are standing outside a stadium. They are holding cups and engaging in conversation.", - "id": 33970 - }, - { - "image_path": "G:\\images\\combined\\01ce0da26a447240.jpg", - "response": "a large blue sign that says welcome to yanbu industrial city", - "id": 33971 - }, - { - "image_path": "G:\\images\\combined\\01cee5d0b67f97e2.jpg", - "response": "a baseball player wearing a red jersey and white pants", - "id": 33972 - }, - { - "image_path": "G:\\images\\combined\\01cfa2e72003f4c6.jpg", - "response": "A silver train engine with red lights is pulling into a station.", - "id": 33973 - }, - { - "image_path": "G:\\images\\combined\\01d0228d6ea4985b.jpg", - "response": "An old space rocket is on display in a warehouse. The rocket is on a cart and is sitting on a green floor. There are two women standing in front of the rocket, looking up at it. The rocket has the word \"juice\" written on it. There are two men standing in the warehouse, one on the left and one on the right. The right most man is wearing a plaid shirt. There is a clock on the wall to the right of the rocket.", - "id": 33974 - }, - { - "image_path": "G:\\images\\combined\\01d05a7d19f5a921.jpg", - "response": "A person is holding a glass of beer on a table.", - "id": 33975 - }, - { - "image_path": "G:\\images\\combined\\01d095f50659d413.jpg", - "response": "a man sitting in front of two monitors and a keyboard", - "id": 33976 - }, - { - "image_path": "G:\\images\\combined\\01d0bbca872e5b2d.jpg", - "response": "A bottle of Jagermeister and a glass of Jagermeister on a table.", - "id": 33977 - }, - { - "image_path": "G:\\images\\combined\\01d2bac82408237e.jpg", - "response": "The image shows a group of young women playing soccer on a grass field. There are at least ten people in the picture, most of them wearing red, white, and black soccer uniforms. One woman is kicking a soccer ball while her opponents try to block her. There are also several bags placed on the grass field.", - "id": 33978 - }, - { - "image_path": "G:\\images\\combined\\01d2f83bfbb1b14f.jpg", - "response": "A black and white cat laying in a green and white cardboard box.", - "id": 33979 - }, - { - "image_path": "G:\\images\\combined\\01d40ca30456c005.jpg", - "response": "A man sitting at a table with a pirate party UK sign behind him.", - "id": 33980 - }, - { - "image_path": "G:\\images\\combined\\01d419a01258ddbe.jpg", - "response": "A bottle of Twisted Pine Hoppy Boy next to a filled glass of beer.", - "id": 33981 - }, - { - "image_path": "G:\\images\\combined\\01d5dfec05d9e47f.jpg", - "response": "The image shows two ambulances parked side by side in a parking lot. The ambulances are white and blue, and have the word \"Cataldo\" painted on the side. One ambulance is parked on the left side of the other one. There is a bench in the parking lot, located between the two ambulances. The ambulances are parked in front of a brick building with a glass awning.", - "id": 33982 - }, - { - "image_path": "G:\\images\\combined\\01d5f6cccbb6fa83.jpg", - "response": "A group of women in blue and white uniforms are standing on a baseball field. They are all holding baseball gloves and are wearing helmets. Some of them are giving each other high fives.", - "id": 33983 - }, - { - "image_path": "G:\\images\\combined\\01d5fb2b40e11c86.jpg", - "response": "A poster for a music festival called Power Music", - "id": 33984 - }, - { - "image_path": "G:\\images\\combined\\01d7263395d9a493.jpg", - "response": "A television mounted on a wall with various streaming services displayed on the screen.", - "id": 33985 - }, - { - "image_path": "G:\\images\\combined\\01d7510cbe6f11ab.jpg", - "response": "A coin in a plastic case with the word Canada on it.", - "id": 33986 - }, - { - "image_path": "G:\\images\\combined\\01d8880f4597da40.jpg", - "response": "Two blackberries are next to each other.", - "id": 33987 - }, - { - "image_path": "G:\\images\\combined\\01da36b6fdf3b073.jpg", - "response": "A billboard for Ephesus Temple of Love Corporation is displayed on a metal pole. The sign is located near a chain link fence.", - "id": 33988 - }, - { - "image_path": "G:\\images\\combined\\01da65477dad852b.jpg", - "response": "A baseball team of young boys wearing blue and white uniforms are sitting on a bench.", - "id": 33989 - }, - { - "image_path": "G:\\images\\combined\\01da6966036b3b4e.jpg", - "response": "A purple and white striped shirt with the word brother on the chest", - "id": 33990 - }, - { - "image_path": "G:\\images\\combined\\01db315a3bd2750a.jpg", - "response": "A hand holding a box with a plastic model airplane kit of an A-10 Warthog.", - "id": 33991 - }, - { - "image_path": "G:\\images\\combined\\01db52946398bae2.jpg", - "response": "A catcher in full gear standing on the field.", - "id": 33992 - }, - { - "image_path": "G:\\images\\combined\\01db6a5d60f6e92d.jpg", - "response": "A mascot in a Nexen uniform poses with a woman in a Nexen uniform and another woman in a uniform.", - "id": 33993 - }, - { - "image_path": "G:\\images\\combined\\01dbb2370b74e9e5.jpg", - "response": "A man and a woman are sitting in a bumper car at an amusement park. The woman is wearing a pink sweatshirt and glasses. The man is wearing a blue hat and a blue hoodie. They are both looking at the camera.", - "id": 33994 - }, - { - "image_path": "G:\\images\\combined\\01dd932341463655.jpg", - "response": "A person(460,558),(493,630) riding a motorcycle down a winding road.", - "id": 33995 - }, - { - "image_path": "G:\\images\\combined\\01df220cc71e07af.jpg", - "response": "A black car with a Virginia license plate that says SITTGRT.", - "id": 33996 - }, - { - "image_path": "G:\\images\\combined\\01df7560c473e1ac.jpg", - "response": "An iPhone 4S is shown with the home screen visible. The phone is black and is laying on a white surface. The home screen has several icons on it including Phone, Messages, and Safari. The Phone icon is located in the lower left hand corner of the screen. The screen also has several apps including Facebook, Twitter, and YouTube. The Facebook app is located in the lower left hand corner of the screen. The Twitter app is located in the lower right hand corner of the screen. The YouTube app is located in the upper right hand corner of the screen.", - "id": 33997 - }, - { - "image_path": "G:\\images\\combined\\01e05e827ea1929a.jpg", - "response": "A white board with writing on it in a room.", - "id": 33998 - }, - { - "image_path": "G:\\images\\combined\\01e1b171a41077b7.jpg", - "response": "A person holding a bottle of gold glitter nail polish in front of a laptop.", - "id": 33999 - }, - { - "image_path": "G:\\images\\combined\\01e1df88e5b1c438.jpg", - "response": "A collection of black and white photos on a table.", - "id": 34000 - }, - { - "image_path": "G:\\images\\combined\\01e2c17d9ea1804d.jpg", - "response": "A record album cover for The Emperor Concerto by Beethoven, played by Solomon.", - "id": 34001 - }, - { - "image_path": "G:\\images\\combined\\01e37c04a7967ac3.jpg", - "response": "A black and silver watch with the time set to 10:40.", - "id": 34002 - }, - { - "image_path": "G:\\images\\combined\\01e3e2e8f8e6808c.jpg", - "response": "A poster with a large key on the left and a poster with eyes on the right.", - "id": 34003 - }, - { - "image_path": "G:\\images\\combined\\01e4eb5fa4c0bb42.jpg", - "response": "A street scene with a traffic light showing a red light. There are buildings on both sides of the street and cars are parked along the road. A truck is driving down the street and there are people walking on the sidewalks. There is a no left turn sign and a traffic sign with an arrow pointing to the left.", - "id": 34004 - }, - { - "image_path": "G:\\images\\combined\\01e52dcdd1b8b05a.jpg", - "response": "A student working at a desk with a piece of paper and a keyboard.", - "id": 34005 - }, - { - "image_path": "G:\\images\\combined\\01e7258e9d96d788.jpg", - "response": "A poster for Wellesley College, with a woman in a white jacket standing in front of a crowd of people walking and riding bicycles.", - "id": 34006 - }, - { - "image_path": "G:\\images\\combined\\01e81b99d1dca0ec.jpg", - "response": "A white board with red and blue writing on it.", - "id": 34007 - }, - { - "image_path": "G:\\images\\combined\\01e82d950d72633f.jpg", - "response": "A blue bus is parked in a covered bus station.", - "id": 34008 - }, - { - "image_path": "G:\\images\\combined\\01e85acde63966be.jpg", - "response": "A red train engine is pulling a long line of train cars through a rural countryside. The train is on tracks that run parallel to a field. The sky is overcast.", - "id": 34009 - }, - { - "image_path": "G:\\images\\combined\\01e9c22384de31db.jpg", - "response": "The image shows three cans of spray paint sitting on a wooden surface. The cans are all white and feature colorful labels. The first can from the left has a red, blue, and green label with the words \"Fast Dry All-Purpose/Exterior\" printed on it. The second can from the left has a label with the colors yellow, green, and blue. The third can from the left has a label with the colors orange, pink, and purple. The cans are all lined up in a row and appear to be ready for use.", - "id": 34010 - }, - { - "image_path": "G:\\images\\combined\\01ea8fa366a4d91a.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 34011 - }, - { - "image_path": "G:\\images\\combined\\01eb543ebfdc1351.jpg", - "response": "A bottle of Widmer Brothers The Original Drifter Pale Ale.", - "id": 34012 - }, - { - "image_path": "G:\\images\\combined\\01eb8a8b52bad9b4.jpg", - "response": "A store display of Pantone mobile phones in a variety of colours.", - "id": 34013 - }, - { - "image_path": "G:\\images\\combined\\01ebd4f1b7f87a41.jpg", - "response": "A Virginia license plate on the back of a car.", - "id": 34014 - }, - { - "image_path": "G:\\images\\combined\\01ecae33d6fde19c.jpg", - "response": "The image shows the inside of a Bath & Body Works store. There is a counter with a sign that says \"Bath & Body Works\" in blue letters. To the left of the counter, there is a woman with a black jacket and a bag standing in front of a display of products. The woman appears to be shopping. There are also other people in the store, but they are further away and not as visible. The store has a wide selection of products, including various bottles and containers of bath and body products. The store also has a bright and colorful atmosphere.", - "id": 34015 - }, - { - "image_path": "G:\\images\\combined\\01ed082eb15c3f60.jpg", - "response": "A large yellow and red sign with the number 30 on it.", - "id": 34016 - }, - { - "image_path": "G:\\images\\combined\\01ed9f00b2d3265e.jpg", - "response": "A cell phone is shown next to a SparkFun RedBot with a breadboard and various wires connected. The cell phone is running the Android operating system and has a menu displayed on the screen.", - "id": 34017 - }, - { - "image_path": "G:\\images\\combined\\01ee1b7395e1d8c4.jpg", - "response": "A bottle of amber ale next to a tall glass filled with the beer.", - "id": 34018 - }, - { - "image_path": "G:\\images\\combined\\01ef6656e89a17d9.jpg", - "response": "A room with a TV on a stand and a boombox on the floor.", - "id": 34019 - }, - { - "image_path": "G:\\images\\combined\\01efc51d4fe15670.jpg", - "response": "The camera is black and has a strap attached to it.", - "id": 34020 - }, - { - "image_path": "G:\\images\\combined\\01f16152d32ca714.jpg", - "response": "A person writing on a white board with marker.", - "id": 34021 - }, - { - "image_path": "G:\\images\\combined\\01f21faf20e18217.jpg", - "response": "A book bound book with a woman sitting at a desk writing in it.", - "id": 34022 - }, - { - "image_path": "G:\\images\\combined\\01f270db9a417dee.jpg", - "response": "A store with three refrigerators side by side. The refrigerators are filled with soda and are labeled Pepsi, Coke, and Sodas. There are also other items on the shelves next to the refrigerators.", - "id": 34023 - }, - { - "image_path": "G:\\images\\combined\\01f45db1ff7610c5.jpg", - "response": "A gold coin with the word ESPANA on it.", - "id": 34024 - }, - { - "image_path": "G:\\images\\combined\\01f4d6b8f7d48bc7.jpg", - "response": "A laptop with a bunch of papers next to it.", - "id": 34025 - }, - { - "image_path": "G:\\images\\combined\\01f58fe454760bf4.jpg", - "response": "A blue and white Thomson Boeing 757 sits on the tarmac at Manchester Airport.", - "id": 34026 - }, - { - "image_path": "G:\\images\\combined\\01f6ac411ed5684b.jpg", - "response": "A bottle of Madeira wine and a glass of it next to it.", - "id": 34027 - }, - { - "image_path": "G:\\images\\combined\\01f6c4d1dc9fe72b.jpg", - "response": "A large airplane flying through the sky.", - "id": 34028 - }, - { - "image_path": "G:\\images\\combined\\01f6d2518e30b02a.jpg", - "response": "On the screen of the open laptop is a chart with a blue and green pie chart and a line graph. The background of the image is white.", - "id": 34029 - }, - { - "image_path": "G:\\images\\combined\\01f805f22565b44c.jpg", - "response": "A billboard for AC Transit, showing a photo of a traffic jam and the slogan \"Haven't you just about had it?\"", - "id": 34030 - }, - { - "image_path": "G:\\images\\combined\\01f838adc1583cfe.jpg", - "response": "A clock tower with a brick base and a metal top.", - "id": 34031 - }, - { - "image_path": "G:\\images\\combined\\01f83f94541937f5.jpg", - "response": "A sign for a pub called Smugglers.", - "id": 34032 - }, - { - "image_path": "G:\\images\\combined\\01f93848d14939fe.jpg", - "response": "a close up of a wrist watch on someones arm", - "id": 34033 - }, - { - "image_path": "G:\\images\\combined\\01fa8e68ea2ed55d.jpg", - "response": "A white laptop computer with a black keyboard.", - "id": 34034 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.aa0d15a538f7a3893cbe6de62c03fe30.jpg", - "response": "A cardboard box is open on the top and is on a wooden floor.", - "id": 34035 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.b20ac466d76ee7e3bbc8e5e2bdd4b0b5.jpg", - "response": "A large cardboard box is stacked on top of another cardboard box on a white surface. The box on the bottom has a cartoon character on it. The boxes are on a wooden floor.", - "id": 34036 - }, - { - "image_path": "G:\\images\\combined\\01faa5a2-114Booooox_jpg.rf.de505d8f5b3a43ececae692ac76f0e44.jpg", - "response": "A box with a picture of a girl holding a pink bag on it.", - "id": 34037 - }, - { - "image_path": "G:\\images\\combined\\01fb8b5325e992d9.jpg", - "response": "A colorful double decker bus is driving down the street.", - "id": 34038 - }, - { - "image_path": "G:\\images\\combined\\01fbb47ed3360107.jpg", - "response": "A white smartphone with a purple screen is sitting on a table. The phone has a green light on the bottom right corner and a red light on the top right corner. The phone has several apps on the screen including a calendar, email, and camera.", - "id": 34039 - }, - { - "image_path": "G:\\images\\combined\\01fea80742389c98.jpg", - "response": "The image shows the entrance to a Claire's store. The store front has a large blue sign that reads \"claire's\" in blue letters. The sign is illuminated and appears to be made of neon lights.", - "id": 34040 - }, - { - "image_path": "G:\\images\\combined\\01FVZIGPUGWI_jpg.rf.6d30a3f01c1d432087900e48ce6acc1a.jpg", - "response": "An orange forklift with a large black tire on the back is parked in a dirt lot.", - "id": 34041 - }, - { - "image_path": "G:\\images\\combined\\02000bbc3c2b9e50.jpg", - "response": "A penny sitting on a wooden table.", - "id": 34042 - }, - { - "image_path": "G:\\images\\combined\\02002c2feda97a8b.jpg", - "response": "A close up of several wine bottles on a table.", - "id": 34043 - }, - { - "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.11d28707d6a3938dc8aae069bc4601d9.jpg", - "response": "A woman wearing a mask pushes a cart with luggage at an airport.", - "id": 34044 - }, - { - "image_path": "G:\\images\\combined\\0200b38c89b16c37c5de8e247bb00c2f_jpg.rf.70d0fe89db455c2893a38076f601ca6a.jpg", - "response": "A woman wearing a mask and pushing a cart with luggage at an airport.", - "id": 34045 - }, - { - "image_path": "G:\\images\\combined\\0200d04d2f03a80d.jpg", - "response": "A computer screen with a website for Think Green GEICO on it.", - "id": 34046 - }, - { - "image_path": "G:\\images\\combined\\02012_jpg.rf.44e8a86af525414f22924baecc48f805.jpg", - "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", - "id": 34047 - }, - { - "image_path": "G:\\images\\combined\\02012_jpg.rf.948b11c36688a63ca94906a2ecd08008.jpg", - "response": "A construction worker and a man in a hard hat are standing in a construction site. The worker is holding a clipboard with papers on it.", - "id": 34048 - }, - { - "image_path": "G:\\images\\combined\\02013_jpg.rf.36ff09c2baead034545441c620a5db83.jpg", - "response": "Three confident male construction workers standing in front of a crane with arms crossed", - "id": 34049 - }, - { - "image_path": "G:\\images\\combined\\02013_jpg.rf.b0fe1ee864c241b475fb2a8f732f9689.jpg", - "response": "Three confident male construction workers standing in front of a crane with their arms crossed", - "id": 34050 - }, - { - "image_path": "G:\\images\\combined\\02014181dd7e31d0.jpg", - "response": "In the image there is a baseball player wearing a blue and white uniform with the number 37 on the back. The player is standing on a baseball field and looking off into the distance. There are several chairs around the field and a person in the background.", - "id": 34051 - }, - { - "image_path": "G:\\images\\combined\\02027b3b8f05ef78.jpg", - "response": "A black and white photo of a street corner with a large billboard for office space to let. The billboard is next to a traffic light and a brick building. The sky is cloudy.", - "id": 34052 - }, - { - "image_path": "G:\\images\\combined\\020294a97cbd1bba.jpg", - "response": "The image shows four stainless steel vacuum flasks in different sizes. The flasks have a cylindrical shape and are made of stainless steel. The bodies of the flasks have a cylindrical shape and are made of stainless steel. The lids of the flasks are cylindrical and made of stainless steel. The flasks have Ferrino written on them in silver.", - "id": 34053 - }, - { - "image_path": "G:\\images\\combined\\0202faf23a9aae11.jpg", - "response": "A Croatia airlines airplane is parked on the runway with several people standing outside of it. The airplane has the word \"CROATIA\" written on the side. The sky above the airplane is blue with a few white clouds.", - "id": 34054 - }, - { - "image_path": "G:\\images\\combined\\02044_jpg.rf.6a863f4c897ddc93b46a3c1b8fcb8278.jpg", - "response": "A group of construction workers working on a road.", - "id": 34055 - }, - { - "image_path": "G:\\images\\combined\\02044_jpg.rf.e4f452d6d11907e54594a137a45c0084.jpg", - "response": "A group of construction workers working on a road.", - "id": 34056 - }, - { - "image_path": "G:\\images\\combined\\0204574848b0bf05.jpg", - "response": "A black trash can with a green sign that says \"Defend\" on it. The sign has a white border and black text. The trash can is located on a wet ground with many people walking around. Some people are carrying umbrellas and there are many different types of umbrellas visible in the scene.", - "id": 34057 - }, - { - "image_path": "G:\\images\\combined\\02045_jpg.rf.468563c222afe8f226ff7de1f92c1efc.jpg", - "response": "A couple of men in orange vests and white hard hats looking over blueprints in a large room.", - "id": 34058 - }, - { - "image_path": "G:\\images\\combined\\02045_jpg.rf.7b1e41330344c725abeabf225464490f.jpg", - "response": "A man and a woman in high visibility vests and hard hats, looking at architectural plans on a table.", - "id": 34059 - }, - { - "image_path": "G:\\images\\combined\\0204ffb00eba164b.jpg", - "response": "A group of three refrigerators with a lot of stickers on them.", - "id": 34060 - }, - { - "image_path": "G:\\images\\combined\\020514c846e08c9b.jpg", - "response": "A table with a pink book on it and two bottles of beer.", - "id": 34061 - }, - { - "image_path": "G:\\images\\combined\\02054_jpg.rf.f7f579767d9c1f4268bb473ae6ae44dd.jpg", - "response": "A man in a yellow vest and green hard hat is standing in the middle of a busy street. He is holding a orange and black traffic baton. There are many cars around him, some parked and some moving. One car is gray, and another is red. There is also a white van parked in the street. The man is directing traffic, possibly to help with an accident or other situation.", - "id": 34062 - }, - { - "image_path": "G:\\images\\combined\\02060_jpg.rf.0d96f0fd9c515f59a90748e62ed7c87e.jpg", - "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", - "id": 34063 - }, - { - "image_path": "G:\\images\\combined\\02060_jpg.rf.f69a4bf8d0b1d99e888c2ce8d716177f.jpg", - "response": "In the image there is a man wearing a yellow construction vest and a yellow hard hat. The man also has a white shirt and jeans on. He is standing in front of a large piece of machinery.", - "id": 34064 - }, - { - "image_path": "G:\\images\\combined\\02062d203a421358.jpg", - "response": "A banner for the GDC (Game Developers Conference) that is white with a grey and yellow logo.", - "id": 34065 - }, - { - "image_path": "G:\\images\\combined\\02062_jpg.rf.9a059da9882da6641491afaf332716b2.jpg", - "response": "A construction site with three men in the foreground wearing high visibility jackets and hard hats. One man is holding a blueprint and pointing to the right, the man next to him is holding a walkie talkie and the man at the back is looking up at the crane.", - "id": 34066 - }, - { - "image_path": "G:\\images\\combined\\02062_jpg.rf.b599b5552eee0c78fb700f6d5d61af7a.jpg", - "response": "A construction site with three men in the foreground, wearing high visibility jackets and hard hats. One man is holding a set of plans and talking on a walkie talkie, another man is using a walkie talkie, and the third man is pointing towards the crane in the background.", - "id": 34067 - }, - { - "image_path": "G:\\images\\combined\\02064de8280d7906.jpg", - "response": "A close up of a telephone keypad with the number 0 button in the foreground.", - "id": 34068 - }, - { - "image_path": "G:\\images\\combined\\02070_jpg.rf.219edc90573e8dc78d6c7e4a41b70247.jpg", - "response": "A group of people wearing neon colored t-shirts are standing in front of a building. Some of the people are holding picket signs and there is a man wearing a hat.", - "id": 34069 - }, - { - "image_path": "G:\\images\\combined\\02070_jpg.rf.db5cd42fb1161f82f9f459a5cfbf719e.jpg", - "response": "A group of people are standing on a sidewalk. Some of them are wearing bright green t-shirts. One man is wearing a watch on his left wrist. Another man is wearing a hat. A man in the background is holding a picket sign.", - "id": 34070 - }, - { - "image_path": "G:\\images\\combined\\02078_jpg.rf.17c745b0e77deaff003fde9fc02597b3.jpg", - "response": "In the image, a group of seven people are standing together outside in the dirt. They are all wearing yellow safety vests and blue hard hats. In the background, there is a large electrical tower and a white truck. The sun is shining and it appears to be a clear day.", - "id": 34071 - }, - { - "image_path": "G:\\images\\combined\\02078_jpg.rf.6df16b2e6a505fed055283148653e7f5.jpg", - "response": "A group of men and women pose for a photo in front of a substation. They are all wearing yellow vests and blue hard hats. In the background, there is a white truck and a brown fence. The sky is blue and clear.", - "id": 34072 - }, - { - "image_path": "G:\\images\\combined\\0207ea1877c62bf1.jpg", - "response": "A living room with a couch that has two blue shirts and a bag on it.", - "id": 34073 - }, - { - "image_path": "G:\\images\\combined\\02080baccb392a5a.jpg", - "response": "A Sally Hansen Color Quick Fast Dry brush and bottle of Sally Hansen Diamond Strength nail color sit next to each other on a red cloth.", - "id": 34074 - }, - { - "image_path": "G:\\images\\combined\\02081b875a3147da.jpg", - "response": "A person is holding a red Sprint phone in their hand. The phone is displaying a map on the screen.", - "id": 34075 - }, - { - "image_path": "G:\\images\\combined\\02081_jpg.rf.5f2c347b1d882546e805ba9daf04ca9d.jpg", - "response": "A man wearing a yellow high vis vest and a white hard hat.", - "id": 34076 - }, - { - "image_path": "G:\\images\\combined\\02086c4f9cd57b9d.jpg", - "response": "A person is holding a HTC phone in their left hand. The phone is black and silver and says HTC on the back. The camera is on the top of the phone and is next to the speaker.", - "id": 34077 - }, - { - "image_path": "G:\\images\\combined\\02087_jpg.rf.6a37778d439a5f92509f70b78c253f39.jpg", - "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a yellow safety vest and holding a white hard hat. The one on the far right is wearing a red safety vest and a white shirt. The person in the middle is wearing a grey t-shirt.", - "id": 34078 - }, - { - "image_path": "G:\\images\\combined\\02087_jpg.rf.767a063b08ac3d65c103d899f60aabc8.jpg", - "response": "A group of five construction workers are standing in a parking lot. They are all wearing different colored safety vests. The one in the middle has a yellow hard hat and a tool belt. The one on the far left is wearing a orange vest with a reflector stripe and has a white hard hat. The one on the far right is wearing a red hat and a orange vest with a blue jeans. The one in the second from the left is wearing a grey t-shirt and a jeans. The one in the second from the right is wearing a orange vest and a red hat.", - "id": 34079 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.061cb0a1719cc52d0cf60ab1253c7fbc.jpg", - "response": "A group of people wearing face masks(758,220),(886,384)(407,246),(513,369)(210,184),(310,307) are seen waiting in line.", - "id": 34080 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.950f18fdb54e576a20e4490ffc5c5b02.jpg", - "response": "In the image, there are several people waiting in line. Some of them are wearing face masks, including a man with a black hat, a woman with a pink scarf, and another man with a black bag. There are also two other men in the line, one of them wearing glasses and a black jacket. In the background, there is a sign and a wall. The weather seems to be cloudy.", - "id": 34081 - }, - { - "image_path": "G:\\images\\combined\\0209-00176-076b1_jpg.rf.c2922d06e85786fbc488f470cb745119.jpg", - "response": "In the image, there are a couple of people wearing face masks, with one of them carrying a bag on his shoulder. They are standing near a railing, and there is another person further away who is also wearing a face mask. The people are standing in front of a building, and there is a bus in the background. The image is taken on a street, and there are also some signs visible in the scene.", - "id": 34082 - }, - { - "image_path": "G:\\images\\combined\\02092_jpg.rf.937c21ad6676df16088f9df7b4d10675.jpg", - "response": "A man in a suit and a hard hat shaking hands with a man in a yellow reflective vest and hard hat. They are standing in front of a shipping yard.", - "id": 34083 - }, - { - "image_path": "G:\\images\\combined\\02092_jpg.rf.c05c0e4dd26c552bd780c50d39f618fb.jpg", - "response": "A construction worker and a man in a suit shaking hands.", - "id": 34084 - }, - { - "image_path": "G:\\images\\combined\\02095_jpg.rf.4b1cae4a9e5571e7a457d7eb93a68b1e.jpg", - "response": "In the image there are two construction workers wearing safety gear. They are working on a construction site that has a unfinished concrete wall. They are both crouched down working on something with the wall behind them. There are rebar sticking out of the unfinished wall.", - "id": 34085 - }, - { - "image_path": "G:\\images\\combined\\02095_jpg.rf.70d479de751a9160fbd385a49078ab53.jpg", - "response": "In the image there are two construction workers working on a building site. They are both crouched down and wearing high visibility vests. The man on the left is wearing a white shirt and a green hard hat, the man on the right is wearing a yellow hard hat and an orange high visibility vest. They are both working on a concrete structure that has rebar sticking out of it.", - "id": 34086 - }, - { - "image_path": "G:\\images\\combined\\020a2365e1f27852.jpg", - "response": "The image shows a group of people standing around a small car with an open trunk. There are two men standing near the car, one on the left and one on the right, both looking at the vehicle. Another man is kneeling down next to the car on the driver's side. There is a third person standing further back near the back of the car. A fourth person is standing near the front of the car. There are two bicycles in the scene, one near the left side of the image and another near the right side. A bench is visible on the right side of the image. There are also two trucks in the scene, one on the right side and one near the center.", - "id": 34087 - }, - { - "image_path": "G:\\images\\combined\\020a30ada37ca2d4.jpg", - "response": "A Super Tomcat plane is parked on a runway.", - "id": 34088 - }, - { - "image_path": "G:\\images\\combined\\020aba3fb6452ba2.jpg", - "response": "A man and a woman standing in a kitchen preparing food.", - "id": 34089 - }, - { - "image_path": "G:\\images\\combined\\020b21575eac6d6f.jpg", - "response": "a street with many police cars parked on it", - "id": 34090 - }, - { - "image_path": "G:\\images\\combined\\020c3a6ab62e4020.jpg", - "response": "A collection of three different gauges.", - "id": 34091 - }, - { - "image_path": "G:\\images\\combined\\020cd9ff2ed54ee5.jpg", - "response": "Two men(52,165),(386,997)(122,3),(949,999) wearing soccer jerseys(534,207),(948,888)(56,400),(371,997) and a woman(354,180),(631,989) smiling for the camera.", - "id": 34092 - }, - { - "image_path": "G:\\images\\combined\\020d0655f70dd297.jpg", - "response": "A page from a book showing three different types of Toyota trucks.", - "id": 34093 - }, - { - "image_path": "G:\\images\\combined\\020ea674c1d6c656.jpg", - "response": "a close up of a blackberry phone on display", - "id": 34094 - }, - { - "image_path": "G:\\images\\combined\\020eabd2ede58efe.jpg", - "response": "A red and black trolley parked on the side of a snowy street.", - "id": 34095 - }, - { - "image_path": "G:\\images\\combined\\020f0ea4d2eb8876.jpg", - "response": "The back of a blue Nissan Juke with a California license plate that says 562.", - "id": 34096 - }, - { - "image_path": "G:\\images\\combined\\02102_jpg.rf.0f8a296dd361541232bc6f358b33a8ba.jpg", - "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", - "id": 34097 - }, - { - "image_path": "G:\\images\\combined\\02102_jpg.rf.2d3208349cc3e6558136e06529daed6f.jpg", - "response": "A group of three men standing next to a white van, all wearing yellow hard hats and reflective vests with their arms crossed.", - "id": 34098 - }, - { - "image_path": "G:\\images\\combined\\02122_jpg.rf.2854ec4726e5d11a9803b89a63f4d9bb.jpg", - "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", - "id": 34099 - }, - { - "image_path": "G:\\images\\combined\\02122_jpg.rf.2fb96063a0e9bc86ce865161b848f576.jpg", - "response": "A man wearing a yellow hard hat, blue shirt and orange vest.", - "id": 34100 - }, - { - "image_path": "G:\\images\\combined\\02132cfd627a3c45.jpg", - "response": "A white display stand holding a book, a necklace, and a container of Tocca perfume.", - "id": 34101 - }, - { - "image_path": "G:\\images\\combined\\02144c6ad4ca3466.jpg", - "response": "A white table with two chocolate bars on it. The chocolate bar on the left is red and says Chocolove on the wrapper. The chocolate bar on the right is orange and says orange peel in dark chocolate on the wrapper.", - "id": 34102 - }, - { - "image_path": "G:\\images\\combined\\021508ba303f584b.jpg", - "response": "a man wearing a yellow jacket with the word wow on it", - "id": 34103 - }, - { - "image_path": "G:\\images\\combined\\0215629bb5dc5137.jpg", - "response": "A triangular orange traffic sign that says Polizei in black letters.", - "id": 34104 - }, - { - "image_path": "G:\\images\\combined\\02157433d9848095.jpg", - "response": "a man is standing in the rain holding a sign that says brass balls not tar balls.", - "id": 34105 - }, - { - "image_path": "G:\\images\\combined\\02159ea52f03af41.jpg", - "response": "A train car with graffiti on the side sitting on the tracks.", - "id": 34106 - }, - { - "image_path": "G:\\images\\combined\\0216678efae0b34a.jpg", - "response": "A medicine cabinet with various items inside.", - "id": 34107 - }, - { - "image_path": "G:\\images\\combined\\0216ced408c377e7.jpg", - "response": "The image shows a group of cheerleaders for the Oregon Ducks. They are standing on a set of stairs and are holding pom-poms. The cheerleaders are wearing green and yellow uniforms. One of the cheerleaders is holding a large pom-pom while the others are holding smaller pom-poms. The cheerleaders are posing for a picture and are making the letter O with their hands.", - "id": 34108 - }, - { - "image_path": "G:\\images\\combined\\0216ee6a402e3e75.jpg", - "response": "A pitcher in a black and yellow jersey is winding up to throw a baseball.", - "id": 34109 - }, - { - "image_path": "G:\\images\\combined\\0217600e51a09374.jpg", - "response": "A row of books on a shelf.", - "id": 34110 - }, - { - "image_path": "G:\\images\\combined\\021764ab0167feae.jpg", - "response": "A yellow Chevrolet school bus driving down a street.", - "id": 34111 - }, - { - "image_path": "G:\\images\\combined\\0217fd34cf15db9b.jpg", - "response": "A cardboard box of Preketes Fine Confections sits on a table. The box is pink and white and has a pink ribbon around the bottom. The box is from Ann Arbor, Michigan. The box is labeled One Pound Net.", - "id": 34112 - }, - { - "image_path": "G:\\images\\combined\\021870e9422ddd34.jpg", - "response": "A man sitting on a couch holding a glass of wine and a cat standing on the arm of the couch.", - "id": 34113 - }, - { - "image_path": "G:\\images\\combined\\021889a4d8d3bd64.jpg", - "response": "A laptop screen that is updating.", - "id": 34114 - }, - { - "image_path": "G:\\images\\combined\\0218a2cb4401c6df.jpg", - "response": "A book cover with three soldiers in green uniforms.", - "id": 34115 - }, - { - "image_path": "G:\\images\\combined\\0219135f66ddb4b1.jpg", - "response": "a sign in front of a brick wall", - "id": 34116 - }, - { - "image_path": "G:\\images\\combined\\0219908f4f9e94ea.jpg", - "response": "A bottle of root beer on a counter.", - "id": 34117 - }, - { - "image_path": "G:\\images\\combined\\02199bba98ab9978.jpg", - "response": "A pitcher on the mound getting ready to throw a ball.", - "id": 34118 - }, - { - "image_path": "G:\\images\\combined\\021b7f6c879ea86f.jpg", - "response": "A wall with a business sign that says \"IF IT'S GUNS\" in large red letters. The business name is \"TREASURE WORLD\" and it sells \"GUNS, AMMO, ACCESSORIES\". Next to the sign is a white van.", - "id": 34119 - }, - { - "image_path": "G:\\images\\combined\\021be82c5cefdc8a.jpg", - "response": "A table with a case of Newcastle beer on it.", - "id": 34120 - }, - { - "image_path": "G:\\images\\combined\\021c7e44227bfac1.jpg", - "response": "An aircraft is sitting on the deck of a ship.", - "id": 34121 - }, - { - "image_path": "G:\\images\\combined\\021d0fd9b41f8d4b.jpg", - "response": "The license plate on the red car is from the state of Washington.", - "id": 34122 - }, - { - "image_path": "G:\\images\\combined\\021d60d635f8064e.jpg", - "response": "A sign showing that a gas station and restaurant are 1000 meters ahead.", - "id": 34123 - }, - { - "image_path": "G:\\images\\combined\\021d7fa8fc4793f1.jpg", - "response": "A seaplane is parked on the water with two men standing on the front.", - "id": 34124 - }, - { - "image_path": "G:\\images\\combined\\021e7031adf5cb7e.jpg", - "response": "A double decker bus with the words \"LIVERPOOL\" on the side.", - "id": 34125 - }, - { - "image_path": "G:\\images\\combined\\021e8e65743a4599.jpg", - "response": "A vintage birthday postcard with a picture of soldiers on it.", - "id": 34126 - }, - { - "image_path": "G:\\images\\combined\\022048b32a848e74.jpg", - "response": "A blue and white train car sitting next to a platform at a train station.", - "id": 34127 - }, - { - "image_path": "G:\\images\\combined\\02208d385e17d3d7.jpg", - "response": "A computer monitor that is turned on and displaying text.", - "id": 34128 - }, - { - "image_path": "G:\\images\\combined\\0220a53c342555f2.jpg", - "response": "A Lego helicopter is on display with several small figures around it.", - "id": 34129 - }, - { - "image_path": "G:\\images\\combined\\02223ba39c46afcc.jpg", - "response": "A grey t-shirt with the word bump on it in blue.", - "id": 34130 - }, - { - "image_path": "G:\\images\\combined\\0222dde37ac1175c.jpg", - "response": "A glass display shelf with a basketball and several jerseys on it.", - "id": 34131 - }, - { - "image_path": "G:\\images\\combined\\022315ce008d95c3.jpg", - "response": "A bottle of Stormy Ridge 2004 sparkling shiraz from the hunter valley.", - "id": 34132 - }, - { - "image_path": "G:\\images\\combined\\02239b5969fed70c.jpg", - "response": "A red bus driving down the road.", - "id": 34133 - }, - { - "image_path": "G:\\images\\combined\\02244_jpg.rf.77d7d05d3a7f34b8e2dc88ad1cdd02c0.jpg", - "response": "A group of five people walking away from a work site. They are all wearing yellow vests and hard hats. In front of them is a yellow bulldozer. They are walking on a rocky path.", - "id": 34134 - }, - { - "image_path": "G:\\images\\combined\\02244_jpg.rf.8f430913c13186191a8fc1a25d66a754.jpg", - "response": "A group of five people walking in front of a bulldozer", - "id": 34135 - }, - { - "image_path": "G:\\images\\combined\\02249aa22d4d74f6.jpg", - "response": "A white airplane with blue tail is flying low in the sky.", - "id": 34136 - }, - { - "image_path": "G:\\images\\combined\\02250d9442586089.jpg", - "response": "A monitor that is on and playing a video game.", - "id": 34137 - }, - { - "image_path": "G:\\images\\combined\\0225205c98bbca7e.jpg", - "response": "A painting of a room with a fireplace and a desk.", - "id": 34138 - }, - { - "image_path": "G:\\images\\combined\\0225316ea19e5041.jpg", - "response": "A person wearing a black Adidas shirt is holding a silver smartphone. The person is using the phone and has their thumb on the screen. The phone is running an app.", - "id": 34139 - }, - { - "image_path": "G:\\images\\combined\\0225679831f27341.jpg", - "response": "The image shows the inside of a store, with a counter and a cash register. There are two people visible in the distance, and a third person can be seen on the right side of the image. A woman is standing behind the cash register, and another person is standing near the customer service desk. There are two TVs in the store, one near the top of the image and another near the middle. The store has a variety of items on display, including a rack of socks near the left side of the image, and a rack of greeting cards on the right. There are also a number of bottles and cans visible in the store.", - "id": 34140 - }, - { - "image_path": "G:\\images\\combined\\02266f07c0a0b637.jpg", - "response": "a black and white photo of a car dashboard with a speedometer and a clock", - "id": 34141 - }, - { - "image_path": "G:\\images\\combined\\02274483a90ba59f.jpg", - "response": "A couple of mugs of beer sitting on a table.", - "id": 34142 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.23ae632b2ba8f997c8e40c0ea8ccd3d7.jpg", - "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. The people are of different ages and are standing close to each other. One person is wearing a white mask with a black line on it, and one person is wearing a mask with glasses on it. One person is wearing a yellow mask with a black checkered pattern on it.", - "id": 34143 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.3151772a94b39673fe37f146a7788d7a.jpg", - "response": "A crowd of people walking down a busy street.", - "id": 34144 - }, - { - "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.cd810658afca3272f6b2faa3dcd16b17.jpg", - "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. Some people are wearing glasses and others are not. One person is wearing a white mask with a black strap under their nose, and another person is wearing a mask with a white strap that goes around their chin. There are also a few people in the background who are not wearing masks.", - "id": 34145 - }, - { - "image_path": "G:\\images\\combined\\0228651295408889.jpg", - "response": "A comic strip from the 1940s, featuring a story about a man who encounters three wise men.", - "id": 34146 - }, - { - "image_path": "G:\\images\\combined\\0228e46986926913.jpg", - "response": "A baseball player posing for a picture with a baseball and glove.", - "id": 34147 - }, - { - "image_path": "G:\\images\\combined\\0228f1095d117c2d.jpg", - "response": "A table with two cans of beer, a glass of dark liquid, a bag of chips and a book.", - "id": 34148 - }, - { - "image_path": "G:\\images\\combined\\02290baaf18293bd.jpg", - "response": "The image shows a basketball game in progress with two teams playing. There are several players on the court, some holding basketballs, and others trying to block or defend. The players are wearing uniforms with numbers on the backs.", - "id": 34149 - }, - { - "image_path": "G:\\images\\combined\\02293d9c2b91fd14.jpg", - "response": "A navy blue Yankees jacket with white lettering and white stripes on the sleeves.", - "id": 34150 - }, - { - "image_path": "G:\\images\\combined\\02298_jpg.rf.982168697945864e54d5e56e31d9d65b.jpg", - "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", - "id": 34151 - }, - { - "image_path": "G:\\images\\combined\\02298_jpg.rf.cfe62e63686f189c736218279a3de6f4.jpg", - "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", - "id": 34152 - }, - { - "image_path": "G:\\images\\combined\\022a3c09f0a73534.jpg", - "response": "A newspaper with the headline \"Signs in protest at council fence\" on the front page.", - "id": 34153 - }, - { - "image_path": "G:\\images\\combined\\022a57a52043d7bd.jpg", - "response": "A store with a sign that says C.B. Supplies.", - "id": 34154 - }, - { - "image_path": "G:\\images\\combined\\022a8a65aa1e8ae2.jpg", - "response": "A man standing in front of a white board wearing a lanyard with a tag.", - "id": 34155 - }, - { - "image_path": "G:\\images\\combined\\022b411f98c66557.jpg", - "response": "The image shows the inside of a store with a variety of items on display. There are several people visible in the store, and a cash register is located near the front of the store. The store has a colorful and vibrant atmosphere, with bright green walls and a white tile floor. On the walls, there are several posters and decorations, including a poster of a city and a poster of a group of people. In the store, there are many items for sale, including toys, books, and games. There are several Monopoly games on display, as well as other board games and books. There are also several balloons in the store, located near the front and on the right side.", - "id": 34156 - }, - { - "image_path": "G:\\images\\combined\\022b4b27726e6d5b.jpg", - "response": "A bus on a city street, with signs in the background for Subway and First Bus.", - "id": 34157 - }, - { - "image_path": "G:\\images\\combined\\022be8ef346e3009.jpg", - "response": "A man is kicking a blue umbrella in the street.", - "id": 34158 - }, - { - "image_path": "G:\\images\\combined\\022c27100bf3c762.jpg", - "response": "A woman in a shiny blue and white bodysuit bending over.", - "id": 34159 - }, - { - "image_path": "G:\\images\\combined\\022dd2d03ff5325c.jpg", - "response": "A man sitting in a chair in front of a TV.", - "id": 34160 - }, - { - "image_path": "G:\\images\\combined\\022fa9a7367d3259.jpg", - "response": "A baseball team standing in the dugout with their gloves on.", - "id": 34161 - }, - { - "image_path": "G:\\images\\combined\\023021985507a119.jpg", - "response": "A blue van driving down a street next to a parking lot.", - "id": 34162 - }, - { - "image_path": "G:\\images\\combined\\02306aab95c5697f.jpg", - "response": "a close up of a deck of cards with the word \"erotic\" on it", - "id": 34163 - }, - { - "image_path": "G:\\images\\combined\\0230ff5703d20b38.jpg", - "response": "A blue and white sign that says scenic drive on it.", - "id": 34164 - }, - { - "image_path": "G:\\images\\combined\\023161661b60ab36.jpg", - "response": "A book cover with the title Oedipus the King.", - "id": 34165 - }, - { - "image_path": "G:\\images\\combined\\02316_jpg.rf.913bc9850c1c2aa37074a112ca0cc49e.jpg", - "response": "Two construction workers stand in the street next to a hole in the pavement. One worker stands with his hands on his hips and is wearing a red hard hat. The other worker stands with his hands on his hips and is wearing a white hard hat. In front of them is a orange and gray ladder. To the left of the ladder is an orange and white cone. Next to the workers and the cone is a cup.", - "id": 34166 - }, - { - "image_path": "G:\\images\\combined\\02316_jpg.rf.fb4a13ddef7ffc55545d9a7cbf2a42d4.jpg", - "response": "The image shows two construction workers standing next to a large hole in the street. The man on the left is wearing a red hard hat and yellow safety vest. The man on the right is wearing a white hard hat and a blue shirt under a white safety vest. Both men are looking down into the hole.", - "id": 34167 - }, - { - "image_path": "G:\\images\\combined\\023182f17b71f861.jpg", - "response": "The image is a poster with a red background and a man's face in black and white. The man has a mustache and is wearing a suit. The poster has the words \"Have you seen Dr. Oblivion?\" in black at the top.", - "id": 34168 - }, - { - "image_path": "G:\\images\\combined\\023232c2030de30a.jpg", - "response": "A table with a dry erase board, a pair of scissors, a whiteboard, a sharpie marker, and a whiteboard marker.", - "id": 34169 - }, - { - "image_path": "G:\\images\\combined\\02325_jpg.rf.ab25aa84dfa365e1b920afa6d847cfbf.jpg", - "response": "A group of four people standing in a large, unfinished room.", - "id": 34170 - }, - { - "image_path": "G:\\images\\combined\\02325_jpg.rf.e9d416be71242125d202bcb7e011d414.jpg", - "response": "a group of people standing in a room that has no walls", - "id": 34171 - }, - { - "image_path": "G:\\images\\combined\\02326_jpg.rf.89ee8cd9bde41ff32455df5b7c211ea1.jpg", - "response": "The image shows two men standing on either side of a red cloth that is draped over a gold plaque. The men are both wearing suits. To the left of the image is a man with black hair and a white shirt. He is wearing a suit and appears to be the older of the two men. To the right of the image is a man with black hair and a dark suit. He is wearing a white shirt and appears to be the younger of the two men.", - "id": 34172 - }, - { - "image_path": "G:\\images\\combined\\02333_jpg.rf.abafe3a9341b3422383ad8d5b81674ec.jpg", - "response": "a group of people walking across a parking lot", - "id": 34173 - }, - { - "image_path": "G:\\images\\combined\\0233e1cb3ae2d70b.jpg", - "response": "A man in a white shirt is putting on headphones.", - "id": 34174 - }, - { - "image_path": "G:\\images\\combined\\023463e93c2fa36e.jpg", - "response": "A busy city street filled with traffic and pedestrians.", - "id": 34175 - }, - { - "image_path": "G:\\images\\combined\\02348_jpg.rf.5e957d08b2695fb20b6c5797284727f1.jpg", - "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. Behind the people there is a red banner with white Chinese characters.", - "id": 34176 - }, - { - "image_path": "G:\\images\\combined\\02348_jpg.rf.b5a741345590e8b4981a4d0b106438e5.jpg", - "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. The background is a red wall with white writing that says \"\u6d3b\u513f\u5e72\u5f97\u597d\uff0c\u5c31\u662f\u4eba\u54c1\u7684\u597d\u6000!\"", - "id": 34177 - }, - { - "image_path": "G:\\images\\combined\\0234c0a4b04aba38.jpg", - "response": "A row of liquor bottles on a shelf, including eggnog, latte, and egg nog.", - "id": 34178 - }, - { - "image_path": "G:\\images\\combined\\02352c9c5a13aa94.jpg", - "response": "A bottle of Gatorade Frost sits on a counter.", - "id": 34179 - }, - { - "image_path": "G:\\images\\combined\\02355b22cdf0f38e.jpg", - "response": "A table with three computer monitors, a mouse and a keyboard.", - "id": 34180 - }, - { - "image_path": "G:\\images\\combined\\0235b5c0ed2d5d94.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 34181 - }, - { - "image_path": "G:\\images\\combined\\0235f6f9ee734006.jpg", - "response": "The image displays an electronic device, most likely a smartphone, displaying the weather for various cities. The current temperature is 12 degrees Celsius, and it is cloudy. There are five other cities listed with their own temperature, ranging from 1 to 13 degrees Celsius. The time displayed is 03:30. The screen also has a purple background and white text.", - "id": 34182 - }, - { - "image_path": "G:\\images\\combined\\02365_jpg.rf.54395a45dfcdddd2638ee8e409f7e361.jpg", - "response": "two engineers in green vests and white helmets looking at a construction site", - "id": 34183 - }, - { - "image_path": "G:\\images\\combined\\0237af287df0ef52.jpg", - "response": "A blue cell phone that is flipped open. The screen displays the time as 15:01.", - "id": 34184 - }, - { - "image_path": "G:\\images\\combined\\0237f650998d5d52.jpg", - "response": "A phone screen that is on.", - "id": 34185 - }, - { - "image_path": "G:\\images\\combined\\0238b78bec43550e.jpg", - "response": "A green and white trolley car on tracks.", - "id": 34186 - }, - { - "image_path": "G:\\images\\combined\\0238b8a66f717e2f.jpg", - "response": "A glass of beer sits on a coaster on a table.", - "id": 34187 - }, - { - "image_path": "G:\\images\\combined\\02394_jpg.rf.bbc07627f06877bddddc1365c796c2ce.jpg", - "response": "The photo shows men walking and talking. They are wearing suits and the men in the middle and on the right are wearing blue shirts. The man on the far left is wearing a dark blue suit. The man second from the left is wearing a black suit. The man in the middle is wearing a blue shirt and dark blue pants. The man on the far right is wearing a dark grey suit. They are walking single file along a hallway.", - "id": 34188 - }, - { - "image_path": "G:\\images\\combined\\02394_jpg.rf.e06b5f7d7938a7a26b0a9fe33d3456f3.jpg", - "response": "The photo shows men walking and talking. There are five men in total, all wearing suits. They are walking down a hallway that is lined with doors. Some of the doors are open, and you can see a table in one of the rooms. The men seem to be having a conversation, with one man leading the discussion and gesturing with his hand.", - "id": 34189 - }, - { - "image_path": "G:\\images\\combined\\02397_jpg.rf.4c6e01ffed369a3f8ae307c02791bb0a.jpg", - "response": "a group of men standing around a construction site", - "id": 34190 - }, - { - "image_path": "G:\\images\\combined\\02397_jpg.rf.89cdc395296359a6aac2fb9a5c5e45a9.jpg", - "response": "a group of men standing around a car", - "id": 34191 - }, - { - "image_path": "G:\\images\\combined\\0239b9c1acb62040.jpg", - "response": "A row of televisions that are on a table.", - "id": 34192 - }, - { - "image_path": "G:\\images\\combined\\023a007718a0e7f3.jpg", - "response": "A man standing behind a table displaying various items including shirts, books, and pictures.", - "id": 34193 - }, - { - "image_path": "G:\\images\\combined\\023a238c3910069b.jpg", - "response": "a boy in a baseball uniform is pitching a ball", - "id": 34194 - }, - { - "image_path": "G:\\images\\combined\\023b88fa3e15efad.jpg", - "response": "A hockey player in a white jersey is standing on the ice with a hockey stick.", - "id": 34195 - }, - { - "image_path": "G:\\images\\combined\\023bd50314b8e43b.jpg", - "response": "In the image, there is a large crowd of people walking around in front of Universal Studios Hollywood. They are standing around a small courtyard area with a few small tables and chairs scattered around. There is a big billboard for the movie Despicable Me above the entrance to the Universal Studios Hollywood building.", - "id": 34196 - }, - { - "image_path": "G:\\images\\combined\\023cc00c3308c087.jpg", - "response": "A book cover with a woman in a colorful dress holding a glass up to her face.", - "id": 34197 - }, - { - "image_path": "G:\\images\\combined\\023d3e047ea06997.jpg", - "response": "A Korean Air Cargo plane taxis on a runway.", - "id": 34198 - }, - { - "image_path": "G:\\images\\combined\\023e83642b74ac3b.jpg", - "response": "In the image, there is a person wearing a red shirt sitting at a table with a laptop. The person is typing on the laptop with both hands. There is another person in the background, wearing a brown shirt. The background is blurry.", - "id": 34199 - }, - { - "image_path": "G:\\images\\combined\\02402_jpg.rf.3456c716edfdb4cf107d1a36434fe413.jpg", - "response": "A man standing over a red table with a bottle of\u7ea2\u9152 and a glass on it.", - "id": 34200 - }, - { - "image_path": "G:\\images\\combined\\02402_jpg.rf.756723f867dd74f3e957153a822f43d4.jpg", - "response": "a table with a red table cloth on it with two bottles of\u7ea2\u9152, a plate with food, and a bowl on top of the table.", - "id": 34201 - }, - { - "image_path": "G:\\images\\combined\\024033e1c44a12ac.jpg", - "response": "A scoreboard at a soccer game showing the final score as Fulham 1, Brentford 4.", - "id": 34202 - }, - { - "image_path": "G:\\images\\combined\\02404_jpg.rf.667a811ccbe06eb9d0d459dbdb39f7c5.jpg", - "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", - "id": 34203 - }, - { - "image_path": "G:\\images\\combined\\02404_jpg.rf.9aadaec023c4ed4bcf57b9d0815130ec.jpg", - "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", - "id": 34204 - }, - { - "image_path": "G:\\images\\combined\\0240764e39584f65.jpg", - "response": "A red and white paper circle with information about tornadoes and other weather events.", - "id": 34205 - }, - { - "image_path": "G:\\images\\combined\\0240b8cff8874e78.jpg", - "response": "The Ateneo Blue Eagles cheerleading team are all smiles as they are introduced to the crowd.", - "id": 34206 - }, - { - "image_path": "G:\\images\\combined\\02436_jpg.rf.75755c478e5473c529fad23c5135fb29.jpg", - "response": "A man with a blue hard hat and a tablet is showing a plan to a man and a woman. They are standing outside in front of a brick building that is under construction. The man is wearing a beige suit and the woman is wearing a pinkish top with a white shirt and blue jeans. They are all looking at the tablet.", - "id": 34207 - }, - { - "image_path": "G:\\images\\combined\\02436_jpg.rf.c30a9bf9c3b11bdc1dd267e46ff62872.jpg", - "response": "Three people standing in front of a building site. The man on the left is wearing a hard hat and holding a tablet. The man in the middle and the woman on the right are both looking at the tablet. The man in the middle has brown hair and is wearing a suit. The woman has long hair and is wearing a pink top with blue jeans. They are all looking at the tablet and talking.", - "id": 34208 - }, - { - "image_path": "G:\\images\\combined\\02440_jpg.rf.0dfff947055089b70e7add7308c5f0b4.jpg", - "response": "a group of people walking down a sidewalk", - "id": 34209 - }, - { - "image_path": "G:\\images\\combined\\02440_jpg.rf.2132749eae47dafa6467a08c0741de24.jpg", - "response": "a group of people walking down a sidewalk", - "id": 34210 - }, - { - "image_path": "G:\\images\\combined\\0245090a4b81413a.jpg", - "response": "The image shows a city street scene with a red double decker bus driving down the road. The bus is large and takes up a significant portion of the image. In the background, there are large billboards along the street, displaying advertisements. The billboards are bright and colorful, catching the eye of passersby. The scene is set during the day, with the bus and billboards reflecting sunlight.", - "id": 34211 - }, - { - "image_path": "G:\\images\\combined\\02453db441cf3194.jpg", - "response": "a close up of two wrist watches on a wrist.", - "id": 34212 - }, - { - "image_path": "G:\\images\\combined\\0245497d0c801eb1.jpg", - "response": "An image of two LG G Watch in white and black.", - "id": 34213 - }, - { - "image_path": "G:\\images\\combined\\024604312c78c4f4.jpg", - "response": "A car is parked next to a fence and a chain link fence. There are three signs on a wooden pole. One says \"tyres breaks servicing\" in red and white. Another says \"hand car wash\" in blue and black. The third sign is white and says \"tyres breaks servicing\" in red. There is a building behind the fence.", - "id": 34214 - }, - { - "image_path": "G:\\images\\combined\\024671665f4e0be4.jpg", - "response": "a scene inside a market place", - "id": 34215 - }, - { - "image_path": "G:\\images\\combined\\02472_jpg.rf.18c8c30fc1a112e403bc3da6e34d6562.jpg", - "response": " five men(196,267),(888,994) standing in front of a building", - "id": 34216 - }, - { - "image_path": "G:\\images\\combined\\02472_jpg.rf.ce3708786399d87b43e7c76f5ab64d36.jpg", - "response": "5 men(196,268),(889,994) standing in front of a building.", - "id": 34217 - }, - { - "image_path": "G:\\images\\combined\\02473_jpg.rf.ef5be2445bac6419cf435ff1331844d0.jpg", - "response": "The image shows a group of seven people standing on a rooftop. They are all wearing yellow high visibility vests. The people are from left to right: a man with black hair, wearing a white shirt and black pants; a woman with blonde hair, wearing a white shirt and black pants; a man with short black hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; a man with dark hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; and a man with dark hair, wearing a white shirt and grey pants. The woman with dark hair is pointing to something off camera. The sky is grey and overcast. In the background, there is a building with a grey roof on the left, a building under construction with scaffolding in the middle, and another building with a grey roof on the right. There are several bags of building materials on the right side of the image, and a few people in the far distance.", - "id": 34218 - }, - { - "image_path": "G:\\images\\combined\\02474_jpg.rf.165c9989715d3c289a1e71ab507f1e98.jpg", - "response": "A group of men walking down a street next to a building.", - "id": 34219 - }, - { - "image_path": "G:\\images\\combined\\02475_jpg.rf.3a2771651984c552bbbf03c540c1dbad.jpg", - "response": "a group of people standing around a construction site", - "id": 34220 - }, - { - "image_path": "G:\\images\\combined\\02475_jpg.rf.ac5373838610d6c9c03eef07730f4ef4.jpg", - "response": "a group of people standing around a construction site", - "id": 34221 - }, - { - "image_path": "G:\\images\\combined\\0247bed0e0c11603.jpg", - "response": "A brown dumpster with a sign that says \"Trash Only\" on the side.", - "id": 34222 - }, - { - "image_path": "G:\\images\\combined\\02483_jpg.rf.5572923be18fc61fbbf04e57dd1ea5d4.jpg", - "response": "A man is holding a phone to his ear in a construction site.", - "id": 34223 - }, - { - "image_path": "G:\\images\\combined\\02483_jpg.rf.a76ce88c2ac07bf979a955d2211225e0.jpg", - "response": "A man is standing in a room with a blue sign on the wall. The sign has Chinese characters on it. The man is wearing a white shirt and a red hat. He is holding a cell phone to his ear.", - "id": 34224 - }, - { - "image_path": "G:\\images\\combined\\0248fc7d3b176cdc.jpg", - "response": "A red and yellow bus with the number 35 on the side of it.", - "id": 34225 - }, - { - "image_path": "G:\\images\\combined\\024a0e844d9b864d.jpg", - "response": "The cheerleaders are performing on the field.", - "id": 34226 - }, - { - "image_path": "G:\\images\\combined\\024a8c17281ef932.jpg", - "response": "The image shows a baseball field with players on it. There is a crowd of people in the stands watching the game. A group of people are standing on the field, including a man in a white baseball uniform with the number 27 on the back. Another man in a black jacket is standing next to the baseball player. A little girl is standing in front of the players, holding a baseball bat. A baseball glove is also visible on the field.", - "id": 34227 - }, - { - "image_path": "G:\\images\\combined\\024b173546f0ffea.jpg", - "response": "The image shows a couple of men standing in a market, both of them wearing white lab coats. One of the men is holding a large fish and looking at it, while the other man is inspecting the fish as well. The market has a counter with several fish on it, and there are other people in the background. The market has a sign that says \"Homes Fish\" and there are some boxes and a chair in the scene.", - "id": 34228 - }, - { - "image_path": "G:\\images\\combined\\024b41e249214b47.jpg", - "response": "A silver and red airplane on display with people walking around it.", - "id": 34229 - }, - { - "image_path": "G:\\images\\combined\\024c8322c014be6d.jpg", - "response": "A couple of cars and a van are parked in a parking lot.", - "id": 34230 - }, - { - "image_path": "G:\\images\\combined\\024d939917989017.jpg", - "response": "A group of men standing on a baseball field.", - "id": 34231 - }, - { - "image_path": "G:\\images\\combined\\024db407764c448f.jpg", - "response": "A large passenger jet flying over a body of water.", - "id": 34232 - }, - { - "image_path": "G:\\images\\combined\\024dda03e7deb032.jpg", - "response": "A pitcher in a white baseball uniform with the number 30 on the back, wearing a blue hat and holding a baseball in one hand and a mitt in the other, standing on a pitcher's mound.", - "id": 34233 - }, - { - "image_path": "G:\\images\\combined\\024ec4982caa140d.jpg", - "response": "A woman with a name tag on her shirt is holding an orange BlackBerry phone.", - "id": 34234 - }, - { - "image_path": "G:\\images\\combined\\024f5844b4cd9641.jpg", - "response": "A white trash can overflowing with trash next to a restroom sign.", - "id": 34235 - }, - { - "image_path": "G:\\images\\combined\\02501_jpg.rf.426b7781705510e4af814cc4250ed217.jpg", - "response": "A man in a yellow hard hat pointing to a sign on a concrete wall that says \"\"\u6e05\u7406\u5de5\u5e8f\u6253\u7070\u6ce1\u5242\"\"", - "id": 34236 - }, - { - "image_path": "G:\\images\\combined\\025031d0e20d06e2.jpg", - "response": "A close up of a bar with three beer taps.", - "id": 34237 - }, - { - "image_path": "G:\\images\\combined\\02508_jpg.rf.2c091f5f7ede8654690e2de1cab57791.jpg", - "response": "A group of men standing in a room looking at a wall. Some of the men are wearing hard hats. One man is pointing to a spot on the wall. There are windows on the left wall and a door on the right. The walls are bare and the floor is unfinished.", - "id": 34238 - }, - { - "image_path": "G:\\images\\combined\\02508_jpg.rf.3b22966fb578a3d9719bfb349c87dd77.jpg", - "response": "A group of men in a room with red helmets on their head. One man is pointing at the wall while another man is talking to him. A window with white frame is also seen in the room.", - "id": 34239 - }, - { - "image_path": "G:\\images\\combined\\0250b83132397ad1.jpg", - "response": "The image features a blue and white sign in a station. The sign has arrows pointing to the left and right. The text on the sign is in a combination of English and Japanese. The word \"Kumamoto\" is written in English on the sign. The word \"\u718a\u672c\u5e02\" which is in Japanese and translates to \"City of Kumamoto\" is also written on the sign.", - "id": 34240 - }, - { - "image_path": "G:\\images\\combined\\02514_jpg.rf.195d36e546c8086d3226357890ab389b.jpg", - "response": "Two construction engineers wearing orange safety vest and white helmet are walking on the construction site. A yellow crane is lifting something on the left side of the image and a truck is on the right side of the image. A person is wearing a green shirt in the foreground of the image.", - "id": 34241 - }, - { - "image_path": "G:\\images\\combined\\02514_jpg.rf.e3327475b16564072791a0c706ce4ae9.jpg", - "response": "Two construction engineers in orange safety jackets and white helmets are walking on a construction site. In the background there is a yellow crane and a red and white truck.", - "id": 34242 - }, - { - "image_path": "G:\\images\\combined\\02516_jpg.rf.23d69482bef5b57cb9de8cb76508229f.jpg", - "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", - "id": 34243 - }, - { - "image_path": "G:\\images\\combined\\02516_jpg.rf.3be90344c41886039b1b91d719ebedbd.jpg", - "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", - "id": 34244 - }, - { - "image_path": "G:\\images\\combined\\02519_jpg.rf.0a0e0ca5b3092ec15a1f9ee43ceef70a.jpg", - "response": "The image shows three workers wearing safety vests and hard hats who are shoveling something into a cart. The scene is in black and white, except for the safety vests which are in orange, making the workers stand out. The street is being resurfaced and there are bags of asphalt next to the workers. The trees on the side of the street are filled with leaves and there is a stop sign in the background.", - "id": 34245 - }, - { - "image_path": "G:\\images\\combined\\02519_jpg.rf.8e03ba4a5aca890a1eb4215fde103519.jpg", - "response": "The image shows three workers wearing safety vests and hard hats who are shoveling debris into a wooden barrel on a cart. The workers are standing on a street corner near a pile of tree branches. The street has white stripes and there is a building in the background.", - "id": 34246 - }, - { - "image_path": "G:\\images\\combined\\02522b887c679db2.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 34247 - }, - { - "image_path": "G:\\images\\combined\\02522cb2c85633b7.jpg", - "response": "A large scoreboard in front of a stadium.", - "id": 34248 - }, - { - "image_path": "G:\\images\\combined\\02527_jpg.rf.8df2dd1c615dc9fc306a0acc596a4a06.jpg", - "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", - "id": 34249 - }, - { - "image_path": "G:\\images\\combined\\02527_jpg.rf.c4ae44f54672b411b15a4b6dde819cb4.jpg", - "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", - "id": 34250 - }, - { - "image_path": "G:\\images\\combined\\02528_jpg.rf.3a1462ebe26d1dc9d7e90f96e111d504.jpg", - "response": "a man standing in front of a body of water", - "id": 34251 - }, - { - "image_path": "G:\\images\\combined\\02528_jpg.rf.db7b5771428aefcafb3fbbe9834f9195.jpg", - "response": "a man in a grey shirt standing in front of a body of water", - "id": 34252 - }, - { - "image_path": "G:\\images\\combined\\02531_jpg.rf.03e9940be6dfbb5e107e5e4f8d99b9eb.jpg", - "response": "The image shows two workers on a building site, standing on a steel structure which appears to be the roof of a building. Both workers are wearing yellow hard hats and steel-blue work clothes. The one on the left is holding a tool in their right hand, which is hanging down, while the one on the right has one hand on a metal bar and the other hand in their pocket. The sky appears to be overcast.", - "id": 34253 - }, - { - "image_path": "G:\\images\\combined\\02531_jpg.rf.bec610db45bc7ee947cb3fbf64b86e1b.jpg", - "response": "A construction site with two workers on top of a building frame wearing yellow hard hats.", - "id": 34254 - }, - { - "image_path": "G:\\images\\combined\\02532343ebb3c888.jpg", - "response": "An orange truck is parked in a parking space.", - "id": 34255 - }, - { - "image_path": "G:\\images\\combined\\02533_jpg.rf.5025c5b276caeacb9f83b1f20273a667.jpg", - "response": "A construction worker in a yellow hard hat is holding a yellow power tool. He is standing in front of a building that is under construction. There are several cranes working on the building and a few people visible among the scaffolding. The sky is a clear blue and the sun is shining.", - "id": 34256 - }, - { - "image_path": "G:\\images\\combined\\02535_jpg.rf.85fd29b5382f16bc731cf2635d4a0ce4.jpg", - "response": "In the image there are three construction workers on a building site. Two of them are crouching down looking at something on the floor while the third one is standing up and holding a clipboard. They are all wearing high visibility clothing.", - "id": 34257 - }, - { - "image_path": "G:\\images\\combined\\02535_jpg.rf.ec82f7d8cb7cb3b26112f63869c33e33.jpg", - "response": "In the image there are three construction workers, one is holding a clipboard and two others are crouching down. They are all wearing neon yellow vests and blue hats. They are on a construction site with a blue sky in the background. In the foreground, there is a metal grid on the ground and a black bowl is placed on the left side.", - "id": 34258 - }, - { - "image_path": "G:\\images\\combined\\02540_jpg.rf.06a73881bfa5238e1576f77a2ee5aaf8.jpg", - "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", - "id": 34259 - }, - { - "image_path": "G:\\images\\combined\\02540_jpg.rf.7b8374d54effb076f5a3e4c4d2911c3f.jpg", - "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", - "id": 34260 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.398f81e0b0f47782ceb51639c99d5938.jpg", - "response": "A group of students walking in front of a building.", - "id": 34261 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5a73fff987186c8db99d8f8db872b14e.jpg", - "response": "A group of students walking in front of a building.", - "id": 34262 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5b4caf9358a7403c9cdbd5467805fb1c.jpg", - "response": "A group of students walking on a sidewalk in front of a building.", - "id": 34263 - }, - { - "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.7e93218881764a18199b60619e532832.jpg", - "response": "A group of students walking on a sidewalk in front of a building.", - "id": 34264 - }, - { - "image_path": "G:\\images\\combined\\02544_jpg.rf.21b869ffcfe4f894bb5768137a268500.jpg", - "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is wearing a watch on his left hand. He is focusing on his work.", - "id": 34265 - }, - { - "image_path": "G:\\images\\combined\\02544_jpg.rf.4ea8beb24bc89a5dc3e691f53624c5a4.jpg", - "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is working on a pile of grey rocks.", - "id": 34266 - }, - { - "image_path": "G:\\images\\combined\\02549_jpg.rf.91bdc2c889685c1f36f93079f5d9b602.jpg", - "response": "A man wearing a red helmet and glasses standing in front of a blue building.", - "id": 34267 - }, - { - "image_path": "G:\\images\\combined\\02549_jpg.rf.df49cf04005a5ff69c67edc13ca77d16.jpg", - "response": "A man wearing a red helmet and glasses is standing in front of a blue building.", - "id": 34268 - }, - { - "image_path": "G:\\images\\combined\\0254a7b29774518e.jpg", - "response": "A box set of three books, The Lord of the Rings, The Two Towers, and The Return of the King, by J.R.R. Tolkien.", - "id": 34269 - }, - { - "image_path": "G:\\images\\combined\\025532b54c27c825.jpg", - "response": "An ice hockey rink is shown with fans in the stands.", - "id": 34270 - }, - { - "image_path": "G:\\images\\combined\\0255c5bbd833e241.jpg", - "response": "A person is holding a black cellphone in their hand. The phone has a keyboard on the screen. The date is 20101007 and the time is 22:00. There is a note on the phone that says \"\u663c\uff5e\u30de\uff5e\u305a\". The phone is running Android.", - "id": 34271 - }, - { - "image_path": "G:\\images\\combined\\0255c70e4b04f292.jpg", - "response": "A green train engine with a red stripe on the bottom.", - "id": 34272 - }, - { - "image_path": "G:\\images\\combined\\02562_jpg.rf.67a54880c662a98d2b0e1e82ca4603bd.jpg", - "response": "An architect wearing a hard hat and holding blueprints.", - "id": 34273 - }, - { - "image_path": "G:\\images\\combined\\02562_jpg.rf.acf146d01ce6b85412022a550268f673.jpg", - "response": "An architect sitting at a table with blueprints in front of him. He is wearing a yellow hard hat and a blue shirt with a tie.", - "id": 34274 - }, - { - "image_path": "G:\\images\\combined\\02564_jpg.rf.431eef3acbf26f392bdd60365ecb06d6.jpg", - "response": " A worker(271,190),(599,995) in a yellow hard hat(457,191),(573,305) stands in front of a building under construction.", - "id": 34275 - }, - { - "image_path": "G:\\images\\combined\\02564_jpg.rf.9f4be7e575fd97a8179cfa7cf9aed58a.jpg", - "response": " A worker(272,190),(599,995) at a construction site.", - "id": 34276 - }, - { - "image_path": "G:\\images\\combined\\02567_jpg.rf.85ad861803df9b33179aae6b4c0940d5.jpg", - "response": "a woman(46,418),(816,997) wearing a yellow hard hat(257,416),(541,597)", - "id": 34277 - }, - { - "image_path": "G:\\images\\combined\\02567_jpg.rf.b8d824d8e3d0004308505f63155ca9cd.jpg", - "response": "a woman(46,418),(817,997) wearing a yellow hard hat(255,417),(542,597)", - "id": 34278 - }, - { - "image_path": "G:\\images\\combined\\02569_jpg.rf.9ab631657a7969aa14724f05bea5a94a.jpg", - "response": "A man wearing a yellow shirt, brown gloves and a yellow helmet. He is holding a hammer and a piece of wood. He is smiling at the camera.", - "id": 34279 - }, - { - "image_path": "G:\\images\\combined\\02569_jpg.rf.b2a9c2a8f74da25e512cb3cb5d8d687c.jpg", - "response": "In the image there is a man wearing a yellow hard hat, grey t-shirt and brown overalls. He is holding a hammer and a piece of wood. The man is smiling at the camera and is wearing gloves. He also has a tool belt around his waist.", - "id": 34280 - }, - { - "image_path": "G:\\images\\combined\\0256d9a8ffd6affb.jpg", - "response": "A bottle of wine and a box of chocolates are sitting on a table.", - "id": 34281 - }, - { - "image_path": "G:\\images\\combined\\02571_jpg.rf.035933d08e6f7d02d0669c664519248f.jpg", - "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a beard. The worker on the right has a beard and a mustache and is holding a shovel with both hands. Between the two workers, there is a small blue wagon with the number 9 on it. In the background, there are two blue containers and a building under construction. The sky is a clear blue and the sun is shining brightly.", - "id": 34282 - }, - { - "image_path": "G:\\images\\combined\\02571_jpg.rf.3809b413a8acd64630cb1fcaade7abf8.jpg", - "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a yellow helmet with a black strap. The worker on the right is holding a shovel with both hands and has a yellow helmet with a red strap. They are both wearing black pants.", - "id": 34283 - }, - { - "image_path": "G:\\images\\combined\\02572870e212d14b.jpg", - "response": "A book opened to two pages. The first page is on the left and is written in German. The second page is on the right and has an illustration of a group of people in front of a tower. The text around the illustration is in German.", - "id": 34284 - }, - { - "image_path": "G:\\images\\combined\\02572_jpg.rf.c7614afd6340a577c67beca3414d1e89.jpg", - "response": "A man wearing a yellow hard hat is on a brown ladder. He is working on a wall that has brown marble panels. There is a piece of cardboard on the ground and a box on the right side of the wall.", - "id": 34285 - }, - { - "image_path": "G:\\images\\combined\\02572_jpg.rf.e4cf223c98f1d1a65ba9e2d19608c5ae.jpg", - "response": "A man wearing a yellow hard hat is on a step ladder. He is working on a wall that is covered in a red and brown material. There is a board with the number 5 taped to the wall. The room has a lot of debris on the floor.", - "id": 34286 - }, - { - "image_path": "G:\\images\\combined\\02578_jpg.rf.f3d07db28c6027f6f48720e42d7c8a7f.jpg", - "response": "An engineer or construction worker with a blue hard hat on. He is wearing a plaid shirt with his arms crossed and giving a thumbs up.", - "id": 34287 - }, - { - "image_path": "G:\\images\\combined\\0257eeda008582ab.jpg", - "response": "A stop sign with two green street signs above it.", - "id": 34288 - }, - { - "image_path": "G:\\images\\combined\\0257f9e3387efc1a.jpg", - "response": "A black BMW SUV with a California license plate that reads \"MS EXEC\" is parked in a parking lot. There are trees in the background and a few other cars parked around the black BMW.", - "id": 34289 - }, - { - "image_path": "G:\\images\\combined\\02580_jpg.rf.8e9731d4a3d8d277f07c9f99bf505b88.jpg", - "response": "An electrician with tools in his hand.", - "id": 34290 - }, - { - "image_path": "G:\\images\\combined\\02580_jpg.rf.c1021d9dcfb6b522ad75b4a8f1f508d8.jpg", - "response": "A man wearing a hard hat and safety glasses, holding a screwdriver and smiling at the camera.", - "id": 34291 - }, - { - "image_path": "G:\\images\\combined\\02581_jpg.rf.0f8c167abfbada0cbec69ec167ee9b54.jpg", - "response": "A man wearing a yellow hard hat and a orange vest.", - "id": 34292 - }, - { - "image_path": "G:\\images\\combined\\02581_jpg.rf.e8f5ec0bee29cecf6c6b80a11b30135f.jpg", - "response": "A man wearing a yellow hard hat and a orange vest.", - "id": 34293 - }, - { - "image_path": "G:\\images\\combined\\02586e00b621bfd3.jpg", - "response": "A book with a red cover that says \"My Grammar and I (or should that be 'me'?)\". The author is Caroline Taggart and J. A. Wines.", - "id": 34294 - }, - { - "image_path": "G:\\images\\combined\\02586_jpg.rf.319a6983501b5afeaee9bd2f622851f0.jpg", - "response": "A man wearing a grey and orange hat and grey and orange jacket.", - "id": 34295 - }, - { - "image_path": "G:\\images\\combined\\02586_jpg.rf.a85d2d29616cfe18e8aaa8f9c50c195f.jpg", - "response": "A construction worker is smiling at the camera. He is wearing a grey and orange hat and a grey and orange jacket. He is also wearing a green shirt. He is sitting in front of a wall made of wooden planks.", - "id": 34296 - }, - { - "image_path": "G:\\images\\combined\\02587_jpg.rf.6dc9aa563c9734a238b34af25db8e4e5.jpg", - "response": "An African American man wearing a white construction hat and holding a clipboard with a pen on it. He is smiling at the camera.", - "id": 34297 - }, - { - "image_path": "G:\\images\\combined\\02587_jpg.rf.e3fbbc99b61cfec17da20066d5fbb807.jpg", - "response": "An African American man wearing a white construction hat and a brown shirt is smiling while writing on a clipboard.", - "id": 34298 - }, - { - "image_path": "G:\\images\\combined\\02588_jpg.rf.759ec0bb9e589b53db3cf57abcafadbb.jpg", - "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", - "id": 34299 - }, - { - "image_path": "G:\\images\\combined\\02588_jpg.rf.d5b2c415d5368aa7a4211473c4bf107e.jpg", - "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", - "id": 34300 - }, - { - "image_path": "G:\\images\\combined\\02589_jpg.rf.03ebf2ca332c0102c021b8183278f8e6.jpg", - "response": "A engineer holding a ruler in front of a city.", - "id": 34301 - }, - { - "image_path": "G:\\images\\combined\\02590_jpg.rf.f5008c05b9f1733257a40d4982249c81.jpg", - "response": "The image depicts two workers sitting on a flight of stairs, both wearing blue work shirts and brown work boots. They are both smiling and one worker is on the left holding a drink in a red and white paper cup and the other worker is on the right holding a camera. They both have yellow hard hats on and the worker on the right is also wearing a watch. The background is a concrete wall and stairs.", - "id": 34302 - }, - { - "image_path": "G:\\images\\combined\\02593_jpg.rf.26fdfa1548e61d7fb5573036126affb9.jpg", - "response": "A man wearing a yellow hard hat and a yellow and white striped shirt is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white and red building.", - "id": 34303 - }, - { - "image_path": "G:\\images\\combined\\02593_jpg.rf.69de790f1278a0d1a05913e9f3be2e08.jpg", - "response": "A man wearing a yellow hard hat and a yellow shirt with black stripes is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white building with a red brick wall.", - "id": 34304 - }, - { - "image_path": "G:\\images\\combined\\02594_jpg.rf.96aef21b2973b39d93fdec62144a9e40.jpg", - "response": "Four contractors dressed in yellow and brown uniforms holding yellow tools.", - "id": 34305 - }, - { - "image_path": "G:\\images\\combined\\02594_jpg.rf.fe473d18046fe35a1e5e3b95063f8010.jpg", - "response": "Four contractors in yellow hard hats and brown overalls holding yellow tools.", - "id": 34306 - }, - { - "image_path": "G:\\images\\combined\\0259621e0cf41ab9.jpg", - "response": "A female model is holding an LG Smart TV Upgrade Kit in front of an LG Smart TV. The model is also holding a remote control. The TV is displaying various apps on its screen.", - "id": 34307 - }, - { - "image_path": "G:\\images\\combined\\02598_jpg.rf.4092307a84670de7cd1ef1324480ccd4.jpg", - "response": "In the image, there is a man pushing a wheelbarrow. The man is wearing a striped shirt and jeans. He is pushing the wheelbarrow on a cement walkway. The wheelbarrow is filled with some items. There is a bench in the background. The scene takes place in a park. The trees in the park are green and there is a path through the park.", - "id": 34308 - }, - { - "image_path": "G:\\images\\combined\\025a9031c6d69880.jpg", - "response": "A woman in a purple dress standing in front of a display with a television.", - "id": 34309 - }, - { - "image_path": "G:\\images\\combined\\025b003422e87033.jpg", - "response": "A white coffee mug with the ID logo on it, sitting on a table with some green and blue paper wrapping.", - "id": 34310 - }, - { - "image_path": "G:\\images\\combined\\025c30962ae5b499.jpg", - "response": "A white police car with the word police on the back.", - "id": 34311 - }, - { - "image_path": "G:\\images\\combined\\025c3424c807d220.jpg", - "response": "A white board with a pie chart written on it in french.", - "id": 34312 - }, - { - "image_path": "G:\\images\\combined\\025d205e2daeb2d8.jpg", - "response": "A red, white and purple SBS Transit bus is driving down the street.", - "id": 34313 - }, - { - "image_path": "G:\\images\\combined\\025f9021f50def62.jpg", - "response": "a busy city street at night with many people walking around", - "id": 34314 - }, - { - "image_path": "G:\\images\\combined\\02601_jpg.rf.d75d3c5255b4678587258866377a02d8.jpg", - "response": "A man sitting on a stool wearing a hard hat.", - "id": 34315 - }, - { - "image_path": "G:\\images\\combined\\02601_jpg.rf.df8202164119bd313bf5cdfa06a99e95.jpg", - "response": "A man sitting on a stool wearing a hard hat.", - "id": 34316 - }, - { - "image_path": "G:\\images\\combined\\02603_jpg.rf.1c1acda039ae8f3fbd02532d56b6fe63.jpg", - "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", - "id": 34317 - }, - { - "image_path": "G:\\images\\combined\\02603_jpg.rf.50eda3b4d3e14aeb00be55dcf5783d69.jpg", - "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", - "id": 34318 - }, - { - "image_path": "G:\\images\\combined\\02604_jpg.rf.85995fb9499a68276618d61d46514463.jpg", - "response": "The image shows two construction workers taking a break. They are sitting on a concrete block and having a conversation. Both are wearing blue work clothes and yellow helmets. The man on the left is also wearing work gloves. In front of them is a stainless steel thermos. The background is a wall of concrete blocks.", - "id": 34319 - }, - { - "image_path": "G:\\images\\combined\\02605_jpg.rf.205af0a83f79e4fc82dd1b9d0163d084.jpg", - "response": "A man wearing a blue shirt and a red hard hat is smiling at the camera. He is standing in front of a stack of bamboo poles and a red bag. The man's shirt has the letters \"SRA\" on it.", - "id": 34320 - }, - { - "image_path": "G:\\images\\combined\\026079aa58dc1990.jpg", - "response": "A bottle of beer is sitting on a ledge in front of a window.", - "id": 34321 - }, - { - "image_path": "G:\\images\\combined\\02607_jpg.rf.a240676fe568728188f3d71521e3130d.jpg", - "response": "A man wearing a white hard hat and a beige shirt, smiling at the camera.", - "id": 34322 - }, - { - "image_path": "G:\\images\\combined\\0260afa1f1b07207.jpg", - "response": "A woman in a pink and white outfit sitting on a rail.", - "id": 34323 - }, - { - "image_path": "G:\\images\\combined\\02611_jpg.rf.57adea469c5ea4439ef56e94f31a387b.jpg", - "response": "a group of people standing in a construction site", - "id": 34324 - }, - { - "image_path": "G:\\images\\combined\\026120baea2db777.jpg", - "response": "A person is holding a gold HTC phone in their hand.", - "id": 34325 - }, - { - "image_path": "G:\\images\\combined\\02617_jpg.rf.325cb3455256939bbb9d9f1592c3243b.jpg", - "response": "A group of men standing in front of a bulldozer at a construction site.", - "id": 34326 - }, - { - "image_path": "G:\\images\\combined\\02617_jpg.rf.fd3d8a60486bcfe3516f0d55bb42f0f6.jpg", - "response": "A group of men standing in front of a bulldozer at a construction site.", - "id": 34327 - }, - { - "image_path": "G:\\images\\combined\\02620f3115856977.jpg", - "response": "A car dashboard showing the time as 15:44 and the temperature as 30 degrees Celsius.", - "id": 34328 - }, - { - "image_path": "G:\\images\\combined\\02621_jpg.rf.be920818053c903a71e01c89f31c584b.jpg", - "response": "A bricklayer laying bricks on a roof of a house", - "id": 34329 - }, - { - "image_path": "G:\\images\\combined\\02621_jpg.rf.fc3472e45e85b4d13d9654c6b89568ef.jpg", - "response": "A construction worker in a yellow helmet is laying bricks on a roof.", - "id": 34330 - }, - { - "image_path": "G:\\images\\combined\\02623_jpg.rf.0aa118a9ac7a9bbd42378333d4759b35.jpg", - "response": "a man pushing a wheel barrel down a street", - "id": 34331 - }, - { - "image_path": "G:\\images\\combined\\02626_jpg.rf.0d619c9d11ed5f712cbb0de8376b7c9e.jpg", - "response": "The image shows a group of construction workers standing on a construction site. They are wearing yellow work vests and white helmets. The vests have reflective stripes for increased visibility. Some of the workers are holding tools, including a drill and a hammer. The site is located in a city street, with buildings in the background. The workers are of different ages and appear to be working together.", - "id": 34332 - }, - { - "image_path": "G:\\images\\combined\\02626_jpg.rf.1f2ed4c0c7e40001e3e555cde6b56022.jpg", - "response": "The image shows a group of construction workers on a building site. They are wearing yellow high visibility jackets and white hard hats. The jackets have reflective strips for increased visibility. The workers are standing in front of a building that is under construction. The building is made of brick and has a blue glass window. The workers are smiling at the camera and appear to be posing for the picture.", - "id": 34333 - }, - { - "image_path": "G:\\images\\combined\\02629_jpg.rf.658ff92673317b9a60f9cdfe86d55926.jpg", - "response": "In the image there are two construction workers sitting on cinder blocks in an unfinished building. They are both wearing hard hats and drinking from silver and red thermoses. The man on the left is wearing a blue shirt and blue pants with a yellow hard hat. The woman on the right is wearing a red helmet and a blue shirt and brown boots.", - "id": 34334 - }, - { - "image_path": "G:\\images\\combined\\02630_jpg.rf.b668e96db14b17cc7cd46876b9c744a2.jpg", - "response": "A man wearing a black shirt and a yellow hard hat.", - "id": 34335 - }, - { - "image_path": "G:\\images\\combined\\02633051ccace644.jpg", - "response": "A silver airplane is parked in a hanger.", - "id": 34336 - }, - { - "image_path": "G:\\images\\combined\\026356192b45e7a3.jpg", - "response": "A group of men in suits sitting at a table with a flag behind them.", - "id": 34337 - }, - { - "image_path": "G:\\images\\combined\\02636_jpg.rf.563e25991456fc180d756d939699ef8a.jpg", - "response": "A man wearing a yellow hard hat looking into a large silver structure.", - "id": 34338 - }, - { - "image_path": "G:\\images\\combined\\02636_jpg.rf.d423ada6681fbb56a68292f210b524b6.jpg", - "response": "A man wearing a yellow hard hat looking into a large silver structure.", - "id": 34339 - }, - { - "image_path": "G:\\images\\combined\\026384b9c1a6742f.jpg", - "response": "A person is holding an open book. The book is open to a page titled \"After the War\". The text on the page is black. The person is holding the book in their left hand.", - "id": 34340 - }, - { - "image_path": "G:\\images\\combined\\02638_jpg.rf.05696dabda738ee3632f7b63ff59b76f.jpg", - "response": "A man in a suit with a hard hat on, holding a blank board.", - "id": 34341 - }, - { - "image_path": "G:\\images\\combined\\02638_jpg.rf.48b2bfb3882165ee5c5319a2d2ad04ab.jpg", - "response": "A man in a suit with a hard hat on, holding a blank board.", - "id": 34342 - }, - { - "image_path": "G:\\images\\combined\\0263a03829194424.jpg", - "response": "A glass of tea sits on a table next to a book. The glass has a straw in it and there are ice cubes in the tea. The book is open to a picture of a lake. A lit candle is also on the table.", - "id": 34343 - }, - { - "image_path": "G:\\images\\combined\\0263bbdae7cd7509.jpg", - "response": "A women's soccer match with two teams playing against each other.", - "id": 34344 - }, - { - "image_path": "G:\\images\\combined\\02640c8265111f59.jpg", - "response": "A orange and black bus is driving down the street.", - "id": 34345 - }, - { - "image_path": "G:\\images\\combined\\02641_jpg.rf.3a08b3b72ea716b3bae5e81c9987cff5.jpg", - "response": "A man wearing a blue hard hat and a plaid shirt is talking on a cell phone.", - "id": 34346 - }, - { - "image_path": "G:\\images\\combined\\026430da02beed79.jpg", - "response": "The image shows a group of people sitting on a red double decker bus. There are two rows of seats, with the people seated on both the upper and lower decks. Some of the people are wearing ties, and there is a bouquet of flowers on one of the seats. The bus is on a city street, and there are buildings visible in the background.", - "id": 34347 - }, - { - "image_path": "G:\\images\\combined\\02644_jpg.rf.9d46f3b027eb07b2e365fb1af80fbf8f.jpg", - "response": "The image shows two construction workers building a high rise building. The workers are wearing red helmets and are focused on their work. The building has many floors and the workers are working on the first few floors. The building is surrounded by scaffolding. In the foreground, there is a white sign that says \"Fang.com\".", - "id": 34348 - }, - { - "image_path": "G:\\images\\combined\\02644_jpg.rf.b44bcc39f86cda341cd0308f6a44e700.jpg", - "response": "The image shows two construction workers at a building site. They are wearing hard hats and are working on a large concrete structure. The man on the left is crouching down and is holding a long piece of rebar. The man on the right is standing up and is holding a tool. The workers are the only people in the image and are the main focus. The background is blurred out and there is a fang.com logo in the bottom right corner.", - "id": 34349 - }, - { - "image_path": "G:\\images\\combined\\02646_jpg.rf.871224d27b35ffe03e3000051907694b.jpg", - "response": "A man wearing a red hard hat and holding a shovel is standing in front of a pile of dirt.", - "id": 34350 - }, - { - "image_path": "G:\\images\\combined\\02649_jpg.rf.64c0beaf6955792bc837a9eec90e3529.jpg", - "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", - "id": 34351 - }, - { - "image_path": "G:\\images\\combined\\02649_jpg.rf.85b8ed6bb708b8a66531d7b5be0fac8c.jpg", - "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", - "id": 34352 - }, - { - "image_path": "G:\\images\\combined\\0264b0b41cc90233.jpg", - "response": "A group of people are sitting around a table with laptops. There are two men sitting next to each other, one on the left and one on the right. In front of each person, there is a laptop. There are two cups on the table, one on the left and one on the right. A backpack is placed on the floor between the people on the left and the right.", - "id": 34353 - }, - { - "image_path": "G:\\images\\combined\\02650af029bb1edc.jpg", - "response": "A pitcher of filtered water with a cup next to it.", - "id": 34354 - }, - { - "image_path": "G:\\images\\combined\\02653_jpg.rf.d37316dd0a5a225f8d2f9ab5eab2891c.jpg", - "response": " A construction worker(115,32),(599,993) wearing a yellow hard hat(297,32),(480,227) and orange vest(198,383),(564,996) giving a thumbs(322,576),(367,678) up", - "id": 34355 - }, - { - "image_path": "G:\\images\\combined\\02653_jpg.rf.f87766380759068fa1d4d57ced0f0fcc.jpg", - "response": " A construction worker(114,33),(599,994) in a yellow vest(203,382),(564,997) and hard hat(296,32),(481,228) giving a thumbs(322,573),(365,672) up", - "id": 34356 - }, - { - "image_path": "G:\\images\\combined\\02654_jpg.rf.8c5bb4ca070182afe9587c1b1b44114c.jpg", - "response": "The image shows two workers standing under a blue sky with white clouds. They are both dressed in blue overalls and white helmets, and are holding a stick with a meter-long ruler on it. The two workers are located on the left side of the image. To the right of them, there is yellow tower crane and a red tower crane. The yellow crane has a hook on its arm, and the red crane has a yellow counterweight on its hook.", - "id": 34357 - }, - { - "image_path": "G:\\images\\combined\\02654_jpg.rf.f21ad55d477c87043c578421b400b307.jpg", - "response": "Two workers stand under a blue sky, both are wearing white hard hats and blue work clothes. They are both holding a long wooden stick. On the right, there are yellow cranes in the background.", - "id": 34358 - }, - { - "image_path": "G:\\images\\combined\\02655_jpg.rf.4d9a38a35f8270b4cb19a195569d6c5e.jpg", - "response": "A close up of a person wearing a yellow hard hat.", - "id": 34359 - }, - { - "image_path": "G:\\images\\combined\\02659495a67f99df.jpg", - "response": "A double decker bus is driving down the street.", - "id": 34360 - }, - { - "image_path": "G:\\images\\combined\\02659_jpg.rf.7c70dbe73c35aea1b621a945953b66a8.jpg", - "response": "An engineer in a blue hard hat and suit, writing on a clipboard.", - "id": 34361 - }, - { - "image_path": "G:\\images\\combined\\02659_jpg.rf.cbeee971ad9acd19f4b1b99a47567d12.jpg", - "response": "A man in a suit with a hard hat and clipboard.", - "id": 34362 - }, - { - "image_path": "G:\\images\\combined\\0265b9df37491412.jpg", - "response": "A basketball game is being played in an arena. The court is surrounded by many people, some of whom are sitting in chairs and others are standing. There are many more people outside the court, filling the arena. The arena has many entrances and exits, some of which are labeled with numbers. There is a large screen hanging from the ceiling, showing a video. Several people are walking around with cameras. Some people are wearing red, some are wearing blue, and some are wearing white.", - "id": 34363 - }, - { - "image_path": "G:\\images\\combined\\02663_jpg.rf.34afbbdcecfd49ee170b271f6f6d6d48.jpg", - "response": "A construction worker is working on a steel structure. He is wearing a blue shirt and gray pants. He is working on a large building with a green wall. The sky is white and there are no clouds.", - "id": 34364 - }, - { - "image_path": "G:\\images\\combined\\02664_jpg.rf.8370685322696afe97bc7bf5a92684d9.jpg", - "response": "A construction worker wearing a yellow hard hat and blue work clothes is placing a brick on a wall. The worker is holding a small trowel in his left hand. The sky is blue with a few white clouds. In the background, there are several buildings under construction.", - "id": 34365 - }, - { - "image_path": "G:\\images\\combined\\02664_jpg.rf.9270ad916810394c2812a5fc039403a2.jpg", - "response": "A bricklayer worker building a brick wall", - "id": 34366 - }, - { - "image_path": "G:\\images\\combined\\02665_jpg.rf.9bbc85ff3c623996b19788213c33203d.jpg", - "response": "A man is kneeling down and measuring something. He is wearing a blue shirt and jeans. He has a pen in one hand and a measuring tape in the other.", - "id": 34367 - }, - { - "image_path": "G:\\images\\combined\\02666_jpg.rf.382348b19af65a0abe2c1ad2587c597b.jpg", - "response": "A man wearing a yellow hard hat, blue and white checkered shirt, and a yellow tie. He is holding a blue clipboard with a red pen on it. He is wearing a yellow tool belt with multiple tools in it. He is also wearing blue jeans.", - "id": 34368 - }, - { - "image_path": "G:\\images\\combined\\02667_jpg.rf.6b13527b342ddb4e08ca3e3e045b4567.jpg", - "response": "A man with a yellow hard hat on is looking to his right. He has a goatee and is wearing a blue shirt with suspenders. He has his arms crossed in front of him.", - "id": 34369 - }, - { - "image_path": "G:\\images\\combined\\02669_jpg.rf.7eb6a6e6648f571bd63c4f1c41a516dd.jpg", - "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", - "id": 34370 - }, - { - "image_path": "G:\\images\\combined\\02669_jpg.rf.b7b1cf754390a42cb00eae188bd2af8b.jpg", - "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", - "id": 34371 - }, - { - "image_path": "G:\\images\\combined\\0266b91d58e2c16f.jpg", - "response": "A bus with an advertisement for underwear on the side is parked and letting people on.", - "id": 34372 - }, - { - "image_path": "G:\\images\\combined\\02674_jpg.rf.9d5b49b7de03263594fb7477b6988f5d.jpg", - "response": "a group of people standing in front of a construction site", - "id": 34373 - }, - { - "image_path": "G:\\images\\combined\\02674_jpg.rf.e546b5ed03f0f6bf59a14bc74d46d91e.jpg", - "response": "a group of people standing in front of a construction site", - "id": 34374 - }, - { - "image_path": "G:\\images\\combined\\02675_jpg.rf.bfe5acae7198a24b2acff5f6fd7004ad.jpg", - "response": "A group of men walking across a dirt road.", - "id": 34375 - }, - { - "image_path": "G:\\images\\combined\\02677_jpg.rf.11879219753956d9ef3fc866a8abf120.jpg", - "response": "A group of men standing on a construction site wearing hard hats", - "id": 34376 - }, - { - "image_path": "G:\\images\\combined\\02677_jpg.rf.273d78701d53c62e12bc1279e487721d.jpg", - "response": "A group of men standing on a construction site wearing hard hats", - "id": 34377 - }, - { - "image_path": "G:\\images\\combined\\02679_jpg.rf.4829c6e1d846910521e5d2ff94b8c62a.jpg", - "response": "A group of men standing around and talking to each other.", - "id": 34378 - }, - { - "image_path": "G:\\images\\combined\\02679_jpg.rf.87233e2f62a012674ab41f765bdcfd82.jpg", - "response": "The picture shows five men standing in a circle talking. They are all wearing coats. The man on the left is wearing a black coat with a white shirt and grey pants. The second man from the left is wearing a grey suit. The third man is wearing a black suit. The man on the right of the third man is wearing a black coat with a white shirt and blue jeans. The man standing to the far right is wearing a black coat with a red shirt and grey pants. There is a park in the background with a walking path.", - "id": 34379 - }, - { - "image_path": "G:\\images\\combined\\02680_jpg.rf.a36b9e9ceca546d8890cd44dbaf067ca.jpg", - "response": "A man in a red hard hat is standing in front of a pile of grey material.", - "id": 34380 - }, - { - "image_path": "G:\\images\\combined\\02686_jpg.rf.bfb3c3e04ff4514fcb517dcd89a57188.jpg", - "response": "The image shows a group of four men standing on a bank overlooking a body of water. The water appears green and murky, and there is a small bridge visible in the background. The men are standing on a dirt bank that appears to be a muddy brown color. They are dressed in a variety of outfits, with one man wearing a red polo shirt, another man wearing a striped shirt, a third man wearing a grey t-shirt, and the fourth man wearing a blue t-shirt. The fourth man is also wearing dark blue pants. The men are looking in different directions, possibly observing something in the water or considering the land beyond the water.", - "id": 34381 - }, - { - "image_path": "G:\\images\\combined\\02689368f8da2504.jpg", - "response": "A young girl wearing glasses and a white shirt sits at a table in a library. She is holding a small book and a stuffed animal. The table is surrounded by bookshelves full of books.", - "id": 34382 - }, - { - "image_path": "G:\\images\\combined\\02697_jpg.rf.27851d0a9228f7f5d7f9de334b0631a6.jpg", - "response": "A group of men standing in front of a large metal structure.", - "id": 34383 - }, - { - "image_path": "G:\\images\\combined\\02697_jpg.rf.ec8ddc155a613e2d84a0242ad7035c4a.jpg", - "response": "A group of men standing in front of a large blue object.", - "id": 34384 - }, - { - "image_path": "G:\\images\\combined\\0269b68e1093b0be.jpg", - "response": "A blue Porsche Turbo is parked on the side of the street.", - "id": 34385 - }, - { - "image_path": "G:\\images\\combined\\0269e1c4388337da.jpg", - "response": "A black and white image of the Doctor and his companions on the cover of the Radio Times. The Cybermen are behind them.", - "id": 34386 - }, - { - "image_path": "G:\\images\\combined\\0269f47d51233350.jpg", - "response": "A Nazarene Express bus is parked on the side of the street.", - "id": 34387 - }, - { - "image_path": "G:\\images\\combined\\026a2336a05b9329.jpg", - "response": "A full basketball stadium with fans watching the game.", - "id": 34388 - }, - { - "image_path": "G:\\images\\combined\\026a3b24a2b20e62.jpg", - "response": "A close up of a wrist watch with a black band and a blue face.", - "id": 34389 - }, - { - "image_path": "G:\\images\\combined\\026b958c8a6930b4.jpg", - "response": "A building with a sign that says \"Secret Stash\" on the second floor.", - "id": 34390 - }, - { - "image_path": "G:\\images\\combined\\026c107ce2aa9765.jpg", - "response": "A blue and white van with a hot dog painted on the side is parked in front of a building.", - "id": 34391 - }, - { - "image_path": "G:\\images\\combined\\026c6cf13a2c1c64.jpg", - "response": "A person is holding a green can of Carlsberg beer in their right hand. The beer can is green with a white logo of the brand. The logo has the brand name \"Carlsberg\" written in white with a white Danish flag on top of the letter \"i\". The word \"COPENHAGUE\" is written in white below the brand name. The beer can is made by Carlsberg, a Danish brewing company.", - "id": 34392 - }, - { - "image_path": "G:\\images\\combined\\026dd5d587ea6925.jpg", - "response": "A white, pink and blue bus is driving down the street.", - "id": 34393 - }, - { - "image_path": "G:\\images\\combined\\026dfa7371ee747c.jpg", - "response": "A book cover with a grey picture of a persons shoulder and the title Cutting Understanding and Overcoming Self-Mutilation", - "id": 34394 - }, - { - "image_path": "G:\\images\\combined\\0270054d69289c06.jpg", - "response": "In the image there are several cardboard boxes stacked on top of each other. The boxes are of varying sizes and are stacked in a pile. The largest box is on the bottom and is slightly to the left of center. Above it are two boxes, one slightly smaller and one slightly larger, stacked on top of each other. Above these two boxes is the smallest box, which is also stacked on top. The boxes are sitting on a white floor with a reflection of the boxes visible on the floor.", - "id": 34395 - }, - { - "image_path": "G:\\images\\combined\\02707_jpg.rf.eb710557e806502a174d3551ad65a57f.jpg", - "response": "The image shows a group of men standing on a construction site. They are all wearing suits and standing around a pile of dirt. Some of the men are wearing hard hats. One man is wearing a red hard hat, and another is wearing a grey hard hat. One man is holding a bottle of water. The men are standing quite close to each other, and some of them are interacting, with one man pointing towards something to the left of the camera.", - "id": 34396 - }, - { - "image_path": "G:\\images\\combined\\0270a45dfa731b43.jpg", - "response": "A white and purple SBS Transit bus is on the street.", - "id": 34397 - }, - { - "image_path": "G:\\images\\combined\\02721a3c64904634.jpg", - "response": "a person holding a cell phone with the word environment on the screen", - "id": 34398 - }, - { - "image_path": "G:\\images\\combined\\027348743a9b8374.jpg", - "response": "A silver car parked in a parking space.", - "id": 34399 - }, - { - "image_path": "G:\\images\\combined\\02744e7b04286274.jpg", - "response": "A poster for a radio show called \"Informativos\" with a woman on it.", - "id": 34400 - }, - { - "image_path": "G:\\images\\combined\\0274563905d0f4aa.jpg", - "response": "A Rollei 35 camera on a green table with a black strap.", - "id": 34401 - }, - { - "image_path": "G:\\images\\combined\\02748cc67037e249.jpg", - "response": "A booth with a purple sign that says \"Brachs\" on it.", - "id": 34402 - }, - { - "image_path": "G:\\images\\combined\\02760ec937c1eb02.jpg", - "response": "A variety of alcohol bottles are lined up on a counter.", - "id": 34403 - }, - { - "image_path": "G:\\images\\combined\\02761_jpg.rf.1392f95fa638ed038d4894daaf49cf60.jpg", - "response": "The image shows a group of six men walking together. They are all wearing dark colored clothing and several of them are carrying items such as a backpack and a handbag. The two men at the front of the group are wearing blue and white shirts and the man second from the right is wearing a yellow safety vest. In the background, there is a white building and a large advertisement for MCE, a company based in Shanghai. The advertisement also mentions that the picture is taken in Anhui province.", - "id": 34404 - }, - { - "image_path": "G:\\images\\combined\\02766_jpg.rf.09a39ddc62c7e34afc5deb26c916a1ff.jpg", - "response": "Three men in hard hats standing in a construction site", - "id": 34405 - }, - { - "image_path": "G:\\images\\combined\\02766_jpg.rf.7bb795e9b53dfc715ebd58fc4ba4c6c3.jpg", - "response": "A group of three men standing in a construction site wearing hard hats.", - "id": 34406 - }, - { - "image_path": "G:\\images\\combined\\02769_jpg.rf.4eeb200a3e8e265749d7836bc740416f.jpg", - "response": "A group of men standing around each other talking.", - "id": 34407 - }, - { - "image_path": "G:\\images\\combined\\02769_jpg.rf.8009ef322c8f1f0261ec847ab751411f.jpg", - "response": "A group of men standing around a cement lot.", - "id": 34408 - }, - { - "image_path": "G:\\images\\combined\\02774c51d44bb364.jpg", - "response": "A small plane sitting on top of a runway.", - "id": 34409 - }, - { - "image_path": "G:\\images\\combined\\02786_jpg.rf.579ed41586104dbc7b0d8016855dd379.jpg", - "response": "a group of people standing around a construction site", - "id": 34410 - }, - { - "image_path": "G:\\images\\combined\\02786_jpg.rf.b925f15639b7db9d596ff107806f73ca.jpg", - "response": "A group of people standing around a construction site", - "id": 34411 - }, - { - "image_path": "G:\\images\\combined\\02792845d4c12e95.jpg", - "response": "A billboard for a radio station called \"La Preciosa\" featuring three people on it.", - "id": 34412 - }, - { - "image_path": "G:\\images\\combined\\02792f2ffa01db59.jpg", - "response": "a man and a child posing for a photo at an event", - "id": 34413 - }, - { - "image_path": "G:\\images\\combined\\0279382e07bed7de.jpg", - "response": "A couple of books are stacked on top of each other. The book on the top is \"Pretty Leslie\" by R.V. Cassill and has a white and purple cover. The book on the bottom is \"The Hour of Maximum Danger\" by James Barlow and has a blue cover.", - "id": 34414 - }, - { - "image_path": "G:\\images\\combined\\0279c6a2fece7d24.jpg", - "response": "a man in a green jacket is riding a bike down the street.", - "id": 34415 - }, - { - "image_path": "G:\\images\\combined\\027b733adc59cb1a.jpg", - "response": "a man in a gray baseball uniform with the number 30 on his shirt", - "id": 34416 - }, - { - "image_path": "G:\\images\\combined\\027d3d5f97ccbecc.jpg", - "response": "Three men standing next to each other, all wearing different colored shirts. One man is wearing a white baseball jersey with the word \"Rangers\" on it and the number 02. Another man is wearing a black shirt with white stripes. The third man is wearing a red shirt with a white collar. They are all smiling for the camera.", - "id": 34417 - }, - { - "image_path": "G:\\images\\combined\\027d8f6dc37cac0a.jpg", - "response": "A home office with a desk and a computer.", - "id": 34418 - }, - { - "image_path": "G:\\images\\combined\\027d9141b87916cf.jpg", - "response": "A close up of a person holding a cell phone.", - "id": 34419 - }, - { - "image_path": "G:\\images\\combined\\027e333ed1096be0.jpg", - "response": "A man wearing earbuds is holding a cell phone in front of a bookshelf.", - "id": 34420 - }, - { - "image_path": "G:\\images\\combined\\027e8de3cf98ccfd.jpg", - "response": "A bottle of wine with a red and white label that says Gigandas on it.", - "id": 34421 - }, - { - "image_path": "G:\\images\\combined\\027fda9e531356a8.jpg", - "response": "An HH-60 Pave Hawk helicopter in flight with its landing gear down.", - "id": 34422 - }, - { - "image_path": "G:\\images\\combined\\02809acd4a462cf6.jpg", - "response": "A man is holding a championship ring in his hands.", - "id": 34423 - }, - { - "image_path": "G:\\images\\combined\\02812f13dd561112.jpg", - "response": "A man is holding a small knife in his hand. He is wearing a red shirt and has a few bracelets on his arm. He is also wearing a watch on his wrist. On his other hand, he has a pen. He is sitting in a car.", - "id": 34424 - }, - { - "image_path": "G:\\images\\combined\\02816_jpg.rf.81f637c87817c7da0e899260f2063460.jpg", - "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a red and white flag and a blue and white flag. There is also a large building on the left side of the street.", - "id": 34425 - }, - { - "image_path": "G:\\images\\combined\\02816_jpg.rf.a063c5de583057f118e1399151b34dc7.jpg", - "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a fence and a building. There is also a red flag and a blue flag.", - "id": 34426 - }, - { - "image_path": "G:\\images\\combined\\0281cc4ddb266927.jpg", - "response": "A bottle of Suntory Whisky next to a glass filled with the drink, both sitting on a wooden table.", - "id": 34427 - }, - { - "image_path": "G:\\images\\combined\\02825_jpg.rf.5ecdda7ba63de0bb1ccac6251537de56.jpg", - "response": "a group of men standing in front of a building under construction", - "id": 34428 - }, - { - "image_path": "G:\\images\\combined\\02825_jpg.rf.e7d18826f87e4cd5024e6a045f1b32ad.jpg", - "response": "The image shows a group of seven men standing in front of a building under construction. The men are wearing a variety of outfits, including a red shirt, a white shirt, a black shirt, a blue shirt, and a grey shirt. The man in the red shirt is holding a large stick, possibly a broom or a tool for construction. The men are all standing on a patch of dirt, and there are a few bricks and debris scattered around. The building in the background is made of steel beams and columns, and the roof is not yet finished.", - "id": 34429 - }, - { - "image_path": "G:\\images\\combined\\0282d4948723f25b.jpg", - "response": "The image features a white background with a silver container for a tooth whitening pen. The container is open, revealing the white tooth whitening pen inside. The pen is closed and sitting beside the open container.", - "id": 34430 - }, - { - "image_path": "G:\\images\\combined\\0282f8b1ea9e41ac.jpg", - "response": "A table topped with a pile of papers and a stack of books.", - "id": 34431 - }, - { - "image_path": "G:\\images\\combined\\0283104d36470fd6.jpg", - "response": "A white coffee cup with the Google logo printed on it.", - "id": 34432 - }, - { - "image_path": "G:\\images\\combined\\0283794849207391.jpg", - "response": "An open laptop computer is on a table. The screen displays a soccer game. The laptop is an acer brand.", - "id": 34433 - }, - { - "image_path": "G:\\images\\combined\\0283973e541919a6.jpg", - "response": "A large black and red sign that says Welcome to Oriole Park at Camden Yards.", - "id": 34434 - }, - { - "image_path": "G:\\images\\combined\\02844f7565b33e32.jpg", - "response": "A garage with a yellow step ladder, a black trash can and a white shelf.", - "id": 34435 - }, - { - "image_path": "G:\\images\\combined\\0284feb7eab6ac59.jpg", - "response": "A bottle of Hillrock Estate Distillery sits on a wooden table in front of a window. The bottle is rectangular and made of glass. It has a brown label with gold lettering and a gold emblem in the center. The emblem features a large H inside a circle. The bottle contains a golden liquid with a few small bubbles visible. The glass is reflecting the light from the window and the room.", - "id": 34436 - }, - { - "image_path": "G:\\images\\combined\\02850fa992fb6b1b.jpg", - "response": "A large red sign that says HENEGHAN on it.", - "id": 34437 - }, - { - "image_path": "G:\\images\\combined\\028536373f325d0a.jpg", - "response": "A fridge covered in many posters and papers.", - "id": 34438 - }, - { - "image_path": "G:\\images\\combined\\02853972cad856a9.jpg", - "response": "A variety of beers are lined up on a counter.", - "id": 34439 - }, - { - "image_path": "G:\\images\\combined\\0285dbc1db272d9c.jpg", - "response": "A pole with two traffic lights on it, one is red and the other is black. There is also a yellow sign on the pole.", - "id": 34440 - }, - { - "image_path": "G:\\images\\combined\\0286122f9a6ad175.jpg", - "response": "A baseball player wearing a white and red uniform runs across the field.", - "id": 34441 - }, - { - "image_path": "G:\\images\\combined\\028666689b226783.jpg", - "response": "A white board with writing on it.", - "id": 34442 - }, - { - "image_path": "G:\\images\\combined\\0287bb93eef219a8.jpg", - "response": "A white board with red writing on it.", - "id": 34443 - }, - { - "image_path": "G:\\images\\combined\\0287f0215690bfc2.jpg", - "response": "A close up of a wooden ruler set on a red surface. The ruler is a yellow color and has black numbers. The numbers are labeled in both inches and centimeters. The ruler is broken in the middle and folded. There is a smaller wooden ruler behind the larger one.", - "id": 34444 - }, - { - "image_path": "G:\\images\\combined\\02882201b7441ec8.jpg", - "response": "A Mr. malt container with a spigot sits next to a row of bottles of beer.", - "id": 34445 - }, - { - "image_path": "G:\\images\\combined\\02882ac168772e42.jpg", - "response": "A silver HTC phone sits on a wooden table next to a pair of red and white headphones.", - "id": 34446 - }, - { - "image_path": "G:\\images\\combined\\028a0a57f600a2bd.jpg", - "response": "A computer monitor is sitting on a desk with a map of Australia on the screen. The monitor is connected to a laptop with a USB cord. There is a red wall behind the desk and two lights hanging from the ceiling.", - "id": 34447 - }, - { - "image_path": "G:\\images\\combined\\028c34e9e29b6a2d.jpg", - "response": "A pitcher for the Storm Chasers winds up to throw a pitch.", - "id": 34448 - }, - { - "image_path": "G:\\images\\combined\\028c742176f8eb7c.jpg", - "response": "A red double decker bus is parked on the side of a street.", - "id": 34449 - }, - { - "image_path": "G:\\images\\combined\\028cafa2c0db6845.jpg", - "response": "A bottle of champagne with the top partially removed.", - "id": 34450 - }, - { - "image_path": "G:\\images\\combined\\028d6b73c92cbe09.jpg", - "response": "A vintage postcard of a garden with three sets of steps leading to a rose garden. There are three statues at the top of the steps.", - "id": 34451 - }, - { - "image_path": "G:\\images\\combined\\028dfaab7ad04b01.jpg", - "response": "A blue van with a white roof is parked in front of a house. The van is on the grass and is parked in front of a brick wall. The van is old and appears to be blue in color. The front of the van has a license plate that reads \"Z05335\". There is a bush next to the van and another bush behind it. The van is parked in front of a sidewalk.", - "id": 34452 - }, - { - "image_path": "G:\\images\\combined\\028ed391d78c2286.jpg", - "response": "A baseball player is giving another player a high five.", - "id": 34453 - }, - { - "image_path": "G:\\images\\combined\\028ee005563ec20d.jpg", - "response": "A person is holding a bottle of Loka.", - "id": 34454 - }, - { - "image_path": "G:\\images\\combined\\028f6a45f5b621d7.jpg", - "response": "In the image, a softball player is holding a bat and getting ready to swing at an incoming pitch. The player is wearing a blue and white uniform and is focused on the ball. There are other players and spectators in the background, watching the game.", - "id": 34455 - }, - { - "image_path": "G:\\images\\combined\\02918_jpg.rf.912ce559c412d06e38a598e429cf01a9.jpg", - "response": "A man wearing a yellow hard hat is using a measuring tape to measure a piece of wood. He is holding the tape at the bottom and looking down at the tape. The man is wearing a blue shirt and his sleeves are rolled up. He has a pen in his left hand. The background is white.", - "id": 34456 - }, - { - "image_path": "G:\\images\\combined\\0291e6b00e79072f.jpg", - "response": "A baseball game is in progress with several players on the field. The batter is swinging the bat and the catcher is holding a baseball glove. There are chairs and a bench in the background.", - "id": 34457 - }, - { - "image_path": "G:\\images\\combined\\02920_jpg.rf.7577893c4627218ec7f18ed81dfecd8f.jpg", - "response": "An Asian man is wearing a yellow construction hat and a red T-shirt. He is showing his thumbs up and has a wide smile on his face. He has a small beard and his hair is black. The background is white.", - "id": 34458 - }, - { - "image_path": "G:\\images\\combined\\02920_jpg.rf.b7a65291b32c78b6a27e5d20d149c8b1.jpg", - "response": "An engineer in a red shirt and a yellow helmet is smiling and showing a thumbs up.", - "id": 34459 - }, - { - "image_path": "G:\\images\\combined\\02925_jpg.rf.0a61bec7ebce5e69e2c07c1d08394c66.jpg", - "response": "\u56fe\u4e3a\u4e00\u4f4d\u8eab\u7a7f\u7ea2\u8272\u886c\u886b\u7684\u7537\u6027\u5de5\u4eba\uff0c\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u6301\u4e00\u4e2a\u7eb8\u76d2\u548c\u4e00\u4e2a\u5e73\u677f\u7535\u8111\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002\u80cc\u666f\u662f\u767d\u8272\u7684\u3002", - "id": 34460 - }, - { - "image_path": "G:\\images\\combined\\02925_jpg.rf.d5c6832d960a7f0fc0dbc11b1461062b.jpg", - "response": "a worker holding a box and a notepad, smiling at the camera", - "id": 34461 - }, - { - "image_path": "G:\\images\\combined\\02926_jpg.rf.11474ebe645fffc947130dc95b541142.jpg", - "response": "Two workers, one holding a tape measure and the other holding a clipboard, are talking about their work. They are both wearing hard hats and work clothes.", - "id": 34462 - }, - { - "image_path": "G:\\images\\combined\\02926_jpg.rf.a879bd1e8d8adc2644cacc853316356a.jpg", - "response": "two workers in yellow and blue and white hard hats", - "id": 34463 - }, - { - "image_path": "G:\\images\\combined\\02927_jpg.rf.0f3a70cad745546d4b33b3de87d7a651.jpg", - "response": "An engineer in a yellow hard hat and orange work jacket, standing in front of a blue sky. The engineer is holding a black tablet in his hands and appears to be looking into the distance. He is wearing a white glove on his left hand and has a white rag tucked into the belt of his jacket.", - "id": 34464 - }, - { - "image_path": "G:\\images\\combined\\02927_jpg.rf.b18e195a5bc48389274209345e5da1e9.jpg", - "response": "An engineer in a yellow hard hat and orange work jacket stands outdoors holding a digital tablet. He is also wearing a yellow vest and has a white rag and a pair of glasses tucked in his shirt. The sky is blue with a few wispy clouds.", - "id": 34465 - }, - { - "image_path": "G:\\images\\combined\\0292fc01cef92847.jpg", - "response": "A street scene with a bench, a red car, a yellow taxi cab, and a yellow car. There is also a building with a sign reading \"De Fazio Tiles & Stone\" on it.", - "id": 34466 - }, - { - "image_path": "G:\\images\\combined\\02935c97e1e9e0ae.jpg", - "response": "A box with a label on it that says MapQuest.", - "id": 34467 - }, - { - "image_path": "G:\\images\\combined\\0293f5c3f0650423.jpg", - "response": "a car with the license plate 73-61", - "id": 34468 - }, - { - "image_path": "G:\\images\\combined\\02956429c662e8d4.jpg", - "response": "A pitcher winds up to throw the ball during a baseball game.", - "id": 34469 - }, - { - "image_path": "G:\\images\\combined\\0295e9aa4e49ff29.jpg", - "response": "A table with a brown envelope and several pamphlets on top of it. The pamphlets are for a book sprint event called \"Class Acts\" and have a green and white color scheme. There is also a mouse on the table.", - "id": 34470 - }, - { - "image_path": "G:\\images\\combined\\029674eb10cd5d0c.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 34471 - }, - { - "image_path": "G:\\images\\combined\\0296cca6b25c743d.jpg", - "response": "A table with a bottle of Alagash Tripel Reserve Belgian Style Ale next to a wine glass filled with the beer.", - "id": 34472 - }, - { - "image_path": "G:\\images\\combined\\02993daa70eb6dfb.jpg", - "response": "The image features a yellow amphibious bus with a purple hippo painted on the side. The bus is filled with passengers and is traveling down a city street. There are several people visible in the scene, some of which are standing near the bus. The bus has a Canadian flag on top and is driving in a parking lot.", - "id": 34473 - }, - { - "image_path": "G:\\images\\combined\\029b0d1ffdd49ab4.jpg", - "response": "A black car with a California license plate that says \"ORKUT\" on it.", - "id": 34474 - }, - { - "image_path": "G:\\images\\combined\\029ca2b6d6904295.jpg", - "response": "The image shows a small, round, chrome-colored compact with a mirror on the bottom. The compact is next to a rectangular box with the words \"px Flawless Skin Total Protection Concealer UVABVSP 25\" written on it. The box is in a light blue color and has a silver lid. The mirror has the company logo \"px\" written on it. The entire scene is set on a white surface.", - "id": 34475 - }, - { - "image_path": "G:\\images\\combined\\029ca9b64cfc78a4.jpg", - "response": "a police car with the number 721 on the back", - "id": 34476 - }, - { - "image_path": "G:\\images\\combined\\029d242949f19a9b.jpg", - "response": "A postcard of the M.V. Sophie C. on Lake Winnipesaukee, New Hampshire. The boat is white and traveling on the water. There are several people on the boat, some of them are waving. There are also several American flags flying from the boat. The sky is blue with white clouds and there are mountains in the background.", - "id": 34477 - }, - { - "image_path": "G:\\images\\combined\\029df8184c76cbca.jpg", - "response": "A store shelf filled with various types of beer.", - "id": 34478 - }, - { - "image_path": "G:\\images\\combined\\029eeb15de850634.jpg", - "response": "A white and black clock face on a black background.", - "id": 34479 - }, - { - "image_path": "G:\\images\\combined\\029f2bc0cf04580f.jpg", - "response": "A very decorative French carriage clock with enamel decoration.", - "id": 34480 - }, - { - "image_path": "G:\\images\\combined\\029fc46844703970.jpg", - "response": "A yellow Correos mailbox sits on a brick sidewalk.", - "id": 34481 - }, - { - "image_path": "G:\\images\\combined\\02a0b26f3e94e09f.jpg", - "response": "Two men standing in front of a white board with mathematical equations written in red and blue.", - "id": 34482 - }, - { - "image_path": "G:\\images\\combined\\02a12552f70cad84.jpg", - "response": "In the image there is a silver and black keyboard. The top half of the keyboard is focused on and has the letters Q, W, E, R, T, Y, U, I, O, P, and B. The bottom half of the keyboard is out of focus and has the letters A, S, D, F, G, J, H, and the keys 1 and 2.", - "id": 34483 - }, - { - "image_path": "G:\\images\\combined\\02a18bfd36e57636.jpg", - "response": "A busy street with many cars and taxis driving down the road.", - "id": 34484 - }, - { - "image_path": "G:\\images\\combined\\02a1e353feffa178.jpg", - "response": "a man catching a baseball with a glove", - "id": 34485 - }, - { - "image_path": "G:\\images\\combined\\02a20e75172c4fbe.jpg", - "response": "An empty highway with a large billboard on the side of it.", - "id": 34486 - }, - { - "image_path": "G:\\images\\combined\\02a29f51bc070ec5.jpg", - "response": "A large building with a sign in front of it that says \"Strega Prime Italian Steakhouse\". The sign is red and black. The building has many windows. There is a flag on top of the building. The sky is blue with some clouds.", - "id": 34487 - }, - { - "image_path": "G:\\images\\combined\\02a2f958472477cb.jpg", - "response": "A green typewriter with a red wire coming out of the top.", - "id": 34488 - }, - { - "image_path": "G:\\images\\combined\\02a33b74d21cb306.jpg", - "response": "A busy city street with many people walking around and two red double decker buses.", - "id": 34489 - }, - { - "image_path": "G:\\images\\combined\\02a355fc0dcc89cb.jpg", - "response": "A red bus is driving down the street.", - "id": 34490 - }, - { - "image_path": "G:\\images\\combined\\02a3ba4c3886fe9a.jpg", - "response": "The image shows the back of a silver Honda with a vanity license plate that reads \"4DAHORD\". There is a football sticker on the left side of the plate and a \"T\"EF sticker on the right side. The license plate is from 2010. The image is taken at night, as indicated by the car's red brake lights.", - "id": 34491 - }, - { - "image_path": "G:\\images\\combined\\02a4653c7e00cdfd.jpg", - "response": "A No Trespassing sign is in front of a brick building.", - "id": 34492 - }, - { - "image_path": "G:\\images\\combined\\02a5a6ed1bbc4f56.jpg", - "response": "A white board with writing on it.", - "id": 34493 - }, - { - "image_path": "G:\\images\\combined\\02a657b3b00696a0.jpg", - "response": "An Air Force plane with a picture of a cartoon character on the side.", - "id": 34494 - }, - { - "image_path": "G:\\images\\combined\\02a7108d09788bca.jpg", - "response": "a person wearing a black shirt with a banana on it", - "id": 34495 - }, - { - "image_path": "G:\\images\\combined\\02a733bbafcebac6.jpg", - "response": "A white bus with black windows is driving down the street.", - "id": 34496 - }, - { - "image_path": "G:\\images\\combined\\02a7e69714512a28.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 34497 - }, - { - "image_path": "G:\\images\\combined\\02a950e4790377dc.jpg", - "response": "A helicopter is on display with people walking around it.", - "id": 34498 - }, - { - "image_path": "G:\\images\\combined\\02a961f6c1f9ed12.jpg", - "response": "A pole with multiple street signs on it.", - "id": 34499 - }, - { - "image_path": "G:\\images\\combined\\02a9ae215553fd35.jpg", - "response": "A large billboard is advertising an exhibit at the museum.", - "id": 34500 - }, - { - "image_path": "G:\\images\\combined\\02ab7fe6e854abb1.jpg", - "response": "A close up of a smartphone screen and camera.", - "id": 34501 - }, - { - "image_path": "G:\\images\\combined\\02ab886884cca694.jpg", - "response": "The image features a case of compact discs. There are two cases visible, one is for beatmania IIDX 21 SPADA ORIGINAL SOUNDTRACK VOL.2 and the other is for an unidentifiable title. The cases are sitting on a table.", - "id": 34502 - }, - { - "image_path": "G:\\images\\combined\\02ac2afb418ed3bb.jpg", - "response": "A blue and white bus is stopped at a bus stop with several people waiting to get on. One man is using a cane and talking on a cellphone. There are traffic lights in the background and multiple cars parked along the street.", - "id": 34503 - }, - { - "image_path": "G:\\images\\combined\\02acef174d2710fa.jpg", - "response": "A hand drawn sketch on white paper. The sketch is of an ear, a pencil, and a laughing Japanese child. The ear is drawn at the bottom left corner of the page. Above the ear is written \"Ear\". The pencil is written above the ear, with two plus signs above it. The pencil is drawn horizontally, with one end pointing to the ear and the other end pointing to the ear. The word \"Pencil\" is written below the pencil. Below the pencil is a child laughing. The child is drawn on the right side of the page. The child is wearing a hat and has a full head of hair. The child is laughing with their mouth wide open. The word \"Hee hee\" is written above the child. The word \"he\" is written below the child. The word \"Japanese\" is written to the right of the child. The word \"children\" is written to the right of \"Japanese\". The word \"laughing\" is written to the right of \"children\".", - "id": 34504 - }, - { - "image_path": "G:\\images\\combined\\02adaed82504f6a9.jpg", - "response": "A bottle of Katari 90 olive oil in a black box.", - "id": 34505 - }, - { - "image_path": "G:\\images\\combined\\02b01664b075d896.jpg", - "response": "a truck carrying a load of wood(433,404),(579,653)", - "id": 34506 - }, - { - "image_path": "G:\\images\\combined\\02b02edf2b10d764.jpg", - "response": "A white cell phone with a leather wrist strap.", - "id": 34507 - }, - { - "image_path": "G:\\images\\combined\\02b14d624da3775a.jpg", - "response": "The image shows two men standing in front of a small airplane on a tarmac. The airplane has a blue stripe on the bottom and the words \"Aer Arann\" are painted on the side. The men are both wearing dark ties and are dressed in business attire. One of the men is wearing a navy jacket. The tarmac has a yellow line painted on it. The sky is overcast and there are no other people visible in the image.", - "id": 34508 - }, - { - "image_path": "G:\\images\\combined\\02b249840073ee8b.jpg", - "response": "The image features a black keyboard with white lettering set on a white table. The keyboard has a USB connection and a cable is plugged into it. The cable is also black.", - "id": 34509 - }, - { - "image_path": "G:\\images\\combined\\02b29fb56e2b6a30.jpg", - "response": "A grey scale image with the words \"Position & Timing of Sex Really Matter In Getting Pregnant?\" at the top in bold black letters. Below is a picture of a man and a woman outlined in black with a red question mark on the woman's silhouette. The woman's silhouette is between the two words \"Sex\" and \"Position\" on the left scale and \"Timing\" and \"Position\" on the right scale.", - "id": 34510 - }, - { - "image_path": "G:\\images\\combined\\02b2daa20b00f5d3.jpg", - "response": "A red and white jet2 airplane on a runway.", - "id": 34511 - }, - { - "image_path": "G:\\images\\combined\\02b3d3b54f80a05b.jpg", - "response": "A pitcher in a black jersey and grey pants stands on the mound with his legs spread apart and his glove on. Another player stands in the background with his hands on his knees.", - "id": 34512 - }, - { - "image_path": "G:\\images\\combined\\02b4362934167953.jpg", - "response": "A white board with a lot of writing on it.", - "id": 34513 - }, - { - "image_path": "G:\\images\\combined\\02b43d2d16beca01.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 34514 - }, - { - "image_path": "G:\\images\\combined\\02b484f43777cd5b.jpg", - "response": "A bottle of Blue Moon Belgian White sits next to a glass filled with the beer. The bottle is blue and white with a white moon on the label. The glass is clear with a brown liquid inside. The liquid has a yellow tint and is sitting on a purple and white checkered tablecloth. The cloth is on top of a bed with a white comforter with orange and green animals on it.", - "id": 34515 - }, - { - "image_path": "G:\\images\\combined\\02b4c34bd52f1217.jpg", - "response": "A busy street with many buses on it.", - "id": 34516 - }, - { - "image_path": "G:\\images\\combined\\02b4c7a6208404dd.jpg", - "response": "A woman bending over to look for something in a pile of clothes.", - "id": 34517 - }, - { - "image_path": "G:\\images\\combined\\02b4cb383e9b46be.jpg", - "response": "A green double decker bus is driving down the road.", - "id": 34518 - }, - { - "image_path": "G:\\images\\combined\\02b737933a18bca9.jpg", - "response": "A close up of a silver coin on a blue background. The coin has a profile of a man on it.", - "id": 34519 - }, - { - "image_path": "G:\\images\\combined\\02b7ad89c803532f.jpg", - "response": "The image features a bottle of SK-II Facial Treatment Essence. The bottle is clear and frosted and has a silver cap. The label on the bottle is white with black writing. The words \"SK-II\" and \"TREACIAL TREATMENT ESSENCE\" are written in black on the label. The bottle is placed on a white, fuzzy surface that looks like a knitted material. The material is a off-white color and has a texture.", - "id": 34520 - }, - { - "image_path": "G:\\images\\combined\\02b8643f50ec027e.jpg", - "response": "A close up of a bottle of BOMBA next to a smaller bottle of BOMBA.", - "id": 34521 - }, - { - "image_path": "G:\\images\\combined\\02bb5655ce627b56.jpg", - "response": "A bottle of Old English 800 sits on top of a roof. The bottle is almost empty and has a yellow label. The roof is black and has some power lines on it. There are a few buildings in the background. The sky is cloudy and there are a few trees in the distance.", - "id": 34522 - }, - { - "image_path": "G:\\images\\combined\\02bc0f41c8d6d58b.jpg", - "response": "A street scene with a red traffic light and a one way sign. There are also street signs and a security camera.", - "id": 34523 - }, - { - "image_path": "G:\\images\\combined\\02bc2a6e1ecc0dc1.jpg", - "response": "A large orange pumpkin sitting on a metal counter.", - "id": 34524 - }, - { - "image_path": "G:\\images\\combined\\02bc8361b1beb582.jpg", - "response": "A hand holding a remote control with the words Luci Catering senza fili on the bottom.", - "id": 34525 - }, - { - "image_path": "G:\\images\\combined\\02bed5ecf6d38541.jpg", - "response": "a close up of a smart watch on someones wrist", - "id": 34526 - }, - { - "image_path": "G:\\images\\combined\\02bee02d2a42692b.jpg", - "response": "a store front with a neon sign that reads \"AFURI\"", - "id": 34527 - }, - { - "image_path": "G:\\images\\combined\\02beeabd93bf7bb3.jpg", - "response": "A city street filled with lots of traffic and people.", - "id": 34528 - }, - { - "image_path": "G:\\images\\combined\\02bf5694f86cb87e.jpg", - "response": "A group of people sitting around a table in a meeting room.", - "id": 34529 - }, - { - "image_path": "G:\\images\\combined\\02bf765b69e3025c.jpg", - "response": "A large sign for a pizza place that is located on the side of a street.", - "id": 34530 - }, - { - "image_path": "G:\\images\\combined\\02bfe750210e3160.jpg", - "response": "A bus is driving down the street in front of a subway.", - "id": 34531 - }, - { - "image_path": "G:\\images\\combined\\02c03383ee76d085.jpg", - "response": "A whiteboard with writing on it in purple and black marker.", - "id": 34532 - }, - { - "image_path": "G:\\images\\combined\\02c05d5fcae7b5d9.jpg", - "response": "A stop sign on a pole with a tree in the background.", - "id": 34533 - }, - { - "image_path": "G:\\images\\combined\\02c121df5aa181d6.jpg", - "response": "A box full of small bottles with labels such as 'Elixir to Induce Euphoria' and 'The Prophecy'.", - "id": 34534 - }, - { - "image_path": "G:\\images\\combined\\02c185403a032781.jpg", - "response": "A child bike trailer with a blue and red cover.", - "id": 34535 - }, - { - "image_path": "G:\\images\\combined\\02c331aed99d9664.jpg", - "response": "An open Quran on a table with a pen resting on top of it.", - "id": 34536 - }, - { - "image_path": "G:\\images\\combined\\02c3a7b6ea5023fd.jpg", - "response": "A double decker bus on a street.", - "id": 34537 - }, - { - "image_path": "G:\\images\\combined\\02c3ca715cba6581.jpg", - "response": "A stop sign is illuminated by a street light in a busy city street.", - "id": 34538 - }, - { - "image_path": "G:\\images\\combined\\02c40dfec361daa8.jpg", - "response": "A building with a sign on it that says Assembleia of Deus.", - "id": 34539 - }, - { - "image_path": "G:\\images\\combined\\02c5001a13c88a2b.jpg", - "response": "A book with black and white text on it.", - "id": 34540 - }, - { - "image_path": "G:\\images\\combined\\02c57f8fe233842b.jpg", - "response": "An airplane is flying through the air with a word underneath that says \"Brasil Uruguay Argentina Pluna\". There is also a word that says \"Vickers Viscount\" and another that says \"Rolls Royce\". There is a word that says \"Antigas Propagandas - Jornais 195\" at the bottom of the image.", - "id": 34541 - }, - { - "image_path": "G:\\images\\combined\\02c60b3d3d688cbe.jpg", - "response": "A woman with blonde hair crossing a busy street.", - "id": 34542 - }, - { - "image_path": "G:\\images\\combined\\02c6583086f36e09.jpg", - "response": "An airplane is parked on the runway and people are walking towards it.", - "id": 34543 - }, - { - "image_path": "G:\\images\\combined\\02c66032c7d1ea3c.jpg", - "response": "A sign for the Rehovot Police on a building.", - "id": 34544 - }, - { - "image_path": "G:\\images\\combined\\02c77d67182d2cc9.jpg", - "response": "A large screen television is mounted on the side of a building.", - "id": 34545 - }, - { - "image_path": "G:\\images\\combined\\02ca8849043fa980.jpg", - "response": "A group of people standing around a table.", - "id": 34546 - }, - { - "image_path": "G:\\images\\combined\\02cd54c9ac48d15e.jpg", - "response": "An orange and white train engine is on the tracks.", - "id": 34547 - }, - { - "image_path": "G:\\images\\combined\\02cd7a6aebe9c9f2.jpg", - "response": "A television set with a game on it.", - "id": 34548 - }, - { - "image_path": "G:\\images\\combined\\02ce657203b02e8f.jpg", - "response": "A book on a table with pictures of people on the cover.", - "id": 34549 - }, - { - "image_path": "G:\\images\\combined\\02d0ea328646fa44.jpg", - "response": "In the image, there are two people sitting on stools in front of a television. They appear to be playing a video game. The television is on a stand and is quite large. There is also a banner standing next to the television, advertising a digital media competition.", - "id": 34550 - }, - { - "image_path": "G:\\images\\combined\\02d47a9bf452e069.jpg", - "response": "The image shows a tiled floor with two trash cans placed on it. One of the trash cans is white and made of plastic, and the other is a clear trash can. There is also a red and white trash bag in a black container. The trash cans are positioned on the left side of the black container.", - "id": 34551 - }, - { - "image_path": "G:\\images\\combined\\02d4a7e636145016.jpg", - "response": "The image shows two soccer players from opposing teams playing on a grass field. One player is wearing a red jersey with the number 7 on the back and is about to kick a soccer ball. The other player is wearing a yellow jersey with the number 3 on the back and is running towards the ball. Both players are wearing blue shorts. The field is covered with short green grass.", - "id": 34552 - }, - { - "image_path": "G:\\images\\combined\\02d4ae02865321a3.jpg", - "response": "A chalkboard sign that says welcome to the deep space diner.", - "id": 34553 - }, - { - "image_path": "G:\\images\\combined\\02d56b2f2759bffa.jpg", - "response": "In the image, there is a person's arm and hand in the foreground. They are wearing a black watch and have a black X painted on their arm. The person is also wearing a black bracelet. In the background, there is a car with a sticker on the back window. The sticker says \"Chain X Crew\" in black and green lettering. There are also two yellow star stickers on the right side of the window.", - "id": 34554 - }, - { - "image_path": "G:\\images\\combined\\02d749e0aeeaf231.jpg", - "response": "A kitchen with a stove top and a microwave above it. There is a pot on the stove and a cutting board on the counter. There are also several bottles and a cup on the counter.", - "id": 34555 - }, - { - "image_path": "G:\\images\\combined\\02d7a6da7ce8e5b3.jpg", - "response": "An old plane is sitting on a runway.", - "id": 34556 - }, - { - "image_path": "G:\\images\\combined\\02d8ffcb77383a71.jpg", - "response": "A woman with long blonde hair holding a bag that says \"shop.com\" on it.", - "id": 34557 - }, - { - "image_path": "G:\\images\\combined\\02d94afde962b96b.jpg", - "response": "A corner store with a variety of items for sale.", - "id": 34558 - }, - { - "image_path": "G:\\images\\combined\\02da4492e27bfddf.jpg", - "response": "In the image there is a child wearing a black baseball uniform and a helmet. The child is running on a baseball field, likely just after hitting the ball. There is a baseball glove visible in the scene, held by the child. The child is wearing a black belt with their pants. The baseball field has a fence around it and a scoreboard in the background.", - "id": 34559 - }, - { - "image_path": "G:\\images\\combined\\02da7a42e971e3cb.jpg", - "response": "a person wearing a parachute is in the air", - "id": 34560 - }, - { - "image_path": "G:\\images\\combined\\02dc60e7b13e6dda.jpg", - "response": "A car dashboard with the speedometer lit up.", - "id": 34561 - }, - { - "image_path": "G:\\images\\combined\\02dd063a0e2fc93a.jpg", - "response": "A tall brick building with a large window and a clock on the front.", - "id": 34562 - }, - { - "image_path": "G:\\images\\combined\\02dd5502bbd9594e.jpg", - "response": "A military helicopter is parked on a grass field.", - "id": 34563 - }, - { - "image_path": "G:\\images\\combined\\02dd746f7ec51613.jpg", - "response": "A blue Swarovski box with a gold necklace inside. The necklace has a circular pendant with a gold chain. The Swarovski logo is printed on the box.", - "id": 34564 - }, - { - "image_path": "G:\\images\\combined\\02deb8d084d41040.jpg", - "response": "An US Airways plane is parked at the airport.", - "id": 34565 - }, - { - "image_path": "G:\\images\\combined\\02df4a726c2bb5a5.jpg", - "response": "A group of people standing around a display booth.", - "id": 34566 - }, - { - "image_path": "G:\\images\\combined\\02e2256dfd7baa8c.jpg", - "response": "A woman's left hand holding a bottle of nail polish. The nails are painted black and there is a gold design on the ring finger.", - "id": 34567 - }, - { - "image_path": "G:\\images\\combined\\02e263ba099084dd.jpg", - "response": "A red train engine pulling a long line of train cars behind it.", - "id": 34568 - }, - { - "image_path": "G:\\images\\combined\\02e2cee2e4492018.jpg", - "response": "A man wearing a red and white baseball uniform, red baseball cap, and holding a black baseball glove, is pitching a baseball on a baseball field.", - "id": 34569 - }, - { - "image_path": "G:\\images\\combined\\02e344f4a559753e.jpg", - "response": "The image shows a group of old, used spray cans sitting on a pile. The cans are in a storage area, and there is a plant nearby. The photo is in black and white, except for the cans, which are colored. There are several cans in the pile, including Minwax, Helmsman, and Minwax Spar Urethane. Some of the cans have writing on them, and they are all different sizes.", - "id": 34570 - }, - { - "image_path": "G:\\images\\combined\\02e504de213d8ce0.jpg", - "response": "The image features a Nokia mobile phone on a blue surface. The phone is black and has a sliding feature. The back of the phone is removed, revealing the battery. The battery has a bar code sticker on it. The phone is sitting on top of a blue Nokia book.", - "id": 34571 - }, - { - "image_path": "G:\\images\\combined\\02e5117cd995ace0.jpg", - "response": "A bookshelf filled with many books.", - "id": 34572 - }, - { - "image_path": "G:\\images\\combined\\02e523f39066742d.jpg", - "response": "A white bus with a design on the side is driving down the street.", - "id": 34573 - }, - { - "image_path": "G:\\images\\combined\\02e5d95eaf11adf4.jpg", - "response": "An old airplane is on display in a museum.", - "id": 34574 - }, - { - "image_path": "G:\\images\\combined\\02e647dcd238f3e4.jpg", - "response": "A blue and white train on a track near a brick wall.", - "id": 34575 - }, - { - "image_path": "G:\\images\\combined\\02e77c5d58d53c63.jpg", - "response": "A yellow school bus is parked in a fenced in lot.", - "id": 34576 - }, - { - "image_path": "G:\\images\\combined\\02eae24b8e4b123e.jpg", - "response": "A bottle of Chateau Montrose from 2004, with a red label and a crest on the front.", - "id": 34577 - }, - { - "image_path": "G:\\images\\combined\\02eb3145e144ea41.jpg", - "response": "Two men standing in front of a white board.", - "id": 34578 - }, - { - "image_path": "G:\\images\\combined\\02eb5fe34a148e72.jpg", - "response": "The image shows two men standing next to a small airplane in a grass field. The airplane is red and blue and has a propeller. The men are dressed in military uniforms and appear to be inspecting the plane. The sky above them is blue with a few clouds.", - "id": 34579 - }, - { - "image_path": "G:\\images\\combined\\02eb9a4f79385114.jpg", - "response": "A large scoreboard at a baseball stadium with advertising on it.", - "id": 34580 - }, - { - "image_path": "G:\\images\\combined\\02ebbf96964ec066.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 34581 - }, - { - "image_path": "G:\\images\\combined\\02ed611f88177ee4.jpg", - "response": "A pizza oven with five pizzas cooking inside.", - "id": 34582 - }, - { - "image_path": "G:\\images\\combined\\02ede042487fe63e.jpg", - "response": "A box of Senseo cappuccino pods.", - "id": 34583 - }, - { - "image_path": "G:\\images\\combined\\02ede779fbbe2a3c.jpg", - "response": "A blue bus is stopped at a bus stop on a city street. The bus has the number 135 on the front of it. There is a blue and white sign on a pole next to the bus that has a list of bus stops on it. Traffic lights are visible in the background.", - "id": 34584 - }, - { - "image_path": "G:\\images\\combined\\02ee9bdc60315c7f.jpg", - "response": "A bottle of Mac May Safety Ink in Royal Blue.", - "id": 34585 - }, - { - "image_path": "G:\\images\\combined\\02ef02744ed5e3cd.jpg", - "response": "A brick building with a cross on top and a clock on the front.", - "id": 34586 - }, - { - "image_path": "G:\\images\\combined\\02ef6de789b37127.jpg", - "response": "A red city bus is traveling down the street.", - "id": 34587 - }, - { - "image_path": "G:\\images\\combined\\02ef8957de6d8bec.jpg", - "response": "A bottle of beer with a castle on the label is sitting on a table.", - "id": 34588 - }, - { - "image_path": "G:\\images\\combined\\02ef95d1f8e547e2.jpg", - "response": "The image shows two women shopping in an indoor market, specifically a produce department. They are standing near a table filled with fresh vegetables, including carrots and broccoli. The women are smiling and appear to be enjoying their shopping experience.", - "id": 34589 - }, - { - "image_path": "G:\\images\\combined\\02f096a3d053e43a.jpg", - "response": "A desert landscape with a man standing in the center holding a guitar. The man is wearing a white suit and has a beard. There is a bird flying to the left of the man and a green dot to the right of him. There are also cacti scattered around the desert.", - "id": 34590 - }, - { - "image_path": "G:\\images\\combined\\02f0dafc31d4249c.jpg", - "response": "A kitchen counter with a blender on it and a brown bottle with a spout.", - "id": 34591 - }, - { - "image_path": "G:\\images\\combined\\02f4a30fe61c8723.jpg", - "response": "A yellow train engine with the number 250-004-9 on the front of it.", - "id": 34592 - }, - { - "image_path": "G:\\images\\combined\\02f4cf57ce42a92a.jpg", - "response": "A stack of books on a red metal cart.", - "id": 34593 - }, - { - "image_path": "G:\\images\\combined\\02f513fcadce36f2.jpg", - "response": "A red bookmark with a white pattern is attached to a card. The card has a red border and white text. The text is an anonymous quote about love. The quote is accompanied by a photo of a heart made out of beads. The heart is on a green envelope.", - "id": 34594 - }, - { - "image_path": "G:\\images\\combined\\02f537002d57a389.jpg", - "response": "A grey and gold trophy with a winged design on top.", - "id": 34595 - }, - { - "image_path": "G:\\images\\combined\\02f901f2d22b81c4.jpg", - "response": "A pallet stacked with boxes of speakers.", - "id": 34596 - }, - { - "image_path": "G:\\images\\combined\\02f996661886cfe0.jpg", - "response": "A sign that is titled Louise F. cosca Regional Park. It has a drawing of a person on the right side of the sign. It has pictures of spear points and a school house. It also has a timeline of the park.", - "id": 34597 - }, - { - "image_path": "G:\\images\\combined\\02fa299740ebc5ab.jpg", - "response": "A bus is parked in a parking lot next to other buses.", - "id": 34598 - }, - { - "image_path": "G:\\images\\combined\\02fae2fbfa99a8f8.jpg", - "response": "A telephone pole with two flyers taped to it.", - "id": 34599 - }, - { - "image_path": "G:\\images\\combined\\02fc7a8780c79816.jpg", - "response": "A bottle of Parbo Bier sits next to a glass filled with beer.", - "id": 34600 - }, - { - "image_path": "G:\\images\\combined\\02fcd378b3b3b023.jpg", - "response": "A bus on the street with the words \"Have a nice day\" on the marquee.", - "id": 34601 - }, - { - "image_path": "G:\\images\\combined\\02fce391c03c8c47.jpg", - "response": "A person holding a pair of glasses and a thermometer.", - "id": 34602 - }, - { - "image_path": "G:\\images\\combined\\02fd13b7790dfc2b.jpg", - "response": "A vintage postcard of Frog Pond in Boston Common. People are sitting on benches around the pond.", - "id": 34603 - }, - { - "image_path": "G:\\images\\combined\\02fd9a3eda5c8207.jpg", - "response": "A rusted green fire hydrant sitting on the sidewalk.", - "id": 34604 - }, - { - "image_path": "G:\\images\\combined\\02fe7f5371ff5283.jpg", - "response": "The image shows a baseball game in progress on a field with a green grass and brown dirt infield. There are two baseball players wearing orange and gray uniforms standing on the field, one holding a mitt and the other standing behind him. The players are wearing black hats and are engaged in conversation. There are several other people on the field, including a coach and other players, and some people in the background watching the game.", - "id": 34605 - }, - { - "image_path": "G:\\images\\combined\\02fe8b46e1e70ed1.jpg", - "response": "A pair of televisions are on display, one on the left and one on the right. They are both turned on and have a blue screen with a few dots on it. There is a white wall with the words W.A.V.L. Xtion in orange and black. Underneath the wall, there is a shelf with a black box on it and a sign with the same words as the wall. There is also a remote control on the shelf.", - "id": 34606 - }, - { - "image_path": "G:\\images\\combined\\02I0NSL4O8BH_jpg.rf.07e935dc03cfaaa7ad64e6a8a6a23035.jpg", - "response": "A large forklift parked in a parking lot.", - "id": 34607 - }, - { - "image_path": "G:\\images\\combined\\0300066daef7157a.jpg", - "response": "A small white and red airplane on a runway.", - "id": 34608 - }, - { - "image_path": "G:\\images\\combined\\030068f6dae1ffcd.jpg", - "response": "A woman in a blue and white dress is kneeling down in front of a large television. She is posing with her hand on the TV, which is a few inches above her knee. The television is a wide screen model and is displaying a picture of flowers. To the right of the TV, there is a wall of posters advertising other televisions.", - "id": 34609 - }, - { - "image_path": "G:\\images\\combined\\0300865f884b591e.jpg", - "response": "The image shows a basketball court with several people standing on it. There are two men wearing Golden State Warriors shirts standing next to each other, and a man in a suit and tie standing behind them. The suit is black with a tie that is also black. The two players are wearing blue and white uniforms. The court has yellow lines painted on it.", - "id": 34610 - }, - { - "image_path": "G:\\images\\combined\\03010_jpg.rf.6031f447edbc6c2d6f39c1f1d9e7ec90.jpg", - "response": "Engineer in hard hat and safety glasses working on laptop at construction site.", - "id": 34611 - }, - { - "image_path": "G:\\images\\combined\\03010_jpg.rf.62668ff50a5b97d6fe1d2873721cc200.jpg", - "response": "A man in a hard hat and safety glasses sitting in front of a laptop computer.", - "id": 34612 - }, - { - "image_path": "G:\\images\\combined\\03011_jpg.rf.1fc91ec41540d739ba62e197cceea3c6.jpg", - "response": "A man in a hard hat and safety vest is holding a laptop computer. He is standing in front of a construction site and looking off to the side. The photo is taken at night.", - "id": 34613 - }, - { - "image_path": "G:\\images\\combined\\0301456f9fa828a7.jpg", - "response": "A large movie poster for the film Dr. XS is on the wall.", - "id": 34614 - }, - { - "image_path": "G:\\images\\combined\\030216e408833aca.jpg", - "response": "A large water tower with the word \"Estevan\" written on it.", - "id": 34615 - }, - { - "image_path": "G:\\images\\combined\\030274af7c34a641.jpg", - "response": "A black Range Rover Sport with a European license plate.", - "id": 34616 - }, - { - "image_path": "G:\\images\\combined\\03031fa84a2806a3.jpg", - "response": "a man wearing a red and yellow baseball hat", - "id": 34617 - }, - { - "image_path": "G:\\images\\combined\\03031_jpg.rf.c8fc6299d74bbe43a1779f8cc8af93ec.jpg", - "response": "A police officer standing next to a red car talking to a woman who is in the driver's seat.", - "id": 34618 - }, - { - "image_path": "G:\\images\\combined\\0303338e5f422be5.jpg", - "response": "A pile of coins on a white counter.", - "id": 34619 - }, - { - "image_path": "G:\\images\\combined\\03043_jpg.rf.6f5bf82008bd09ced0c60bdcaaf0a2d6.jpg", - "response": "Engineer in a construction site at night using laptop computer.", - "id": 34620 - }, - { - "image_path": "G:\\images\\combined\\0304f8e6c0b34e6b.jpg", - "response": "A black and white photo of a bus parked in a parking lot.", - "id": 34621 - }, - { - "image_path": "G:\\images\\combined\\0305ad668c4037d1.jpg", - "response": "A yellow school bus is driving down the street.", - "id": 34622 - }, - { - "image_path": "G:\\images\\combined\\03060_jpg.rf.99f085154ab11f7439881b6084d74aac.jpg", - "response": "A man wearing a white hard hat is standing on a street. He is wearing a dark green jacket and a white shirt. He has a white and brown scarf around his neck. The street is dark and there are blurred lights in the background.", - "id": 34623 - }, - { - "image_path": "G:\\images\\combined\\03060_jpg.rf.e215be40fb14be23c766c2e718f37aec.jpg", - "response": "A man wearing a white hard hat and a green jacket.", - "id": 34624 - }, - { - "image_path": "G:\\images\\combined\\03066_jpg.rf.90bbd621e4fb018eec627d1ae4adcae5.jpg", - "response": "4 men are standing next to a rail. They are all wearing leather or vests and have their arms around each other. The man on the left is wearing a yellow and green safety vest, a yellow hard hat, and has a large tattoo on his right bicep. The man in the middle is bald and has a large tattoo on his right bicep. The man to the right of the middle man has a tattoo on his left bicep and is wearing a black leather vest. The man on the far right is not wearing a vest but has a tattoo on his right bicep. They are all smiling at the camera.", - "id": 34625 - }, - { - "image_path": "G:\\images\\combined\\03070b053c750a30.jpg", - "response": "A bottle of beer next to a glass filled with beer.", - "id": 34626 - }, - { - "image_path": "G:\\images\\combined\\03079_jpg.rf.78433ed1a7fd7638cfdbc6dac0d9a4ce.jpg", - "response": "A construction worker holding a sign in the dark.", - "id": 34627 - }, - { - "image_path": "G:\\images\\combined\\0307ba75a55f7893.jpg", - "response": "A street sign warning of bumps in the road ahead.", - "id": 34628 - }, - { - "image_path": "G:\\images\\combined\\03087_jpg.rf.6d6a3533a725817f14542ec686229e46.jpg", - "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow helmet. The site is under construction with many metal frameworks in place. There are also many construction cranes working on the site. The sky is blue with some clouds and there is a mountain in the background. The worker is wearing a yellow t-shirt with a logo on the front.", - "id": 34629 - }, - { - "image_path": "G:\\images\\combined\\03087_jpg.rf.dfac4bb66358e5daeb8af5fff0a6812e.jpg", - "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow t-shirt and a yellow hard hat. He is standing on a platform that has rebar reinforceing it. In the distance there are tall buildings under construction. The sky is blue with a few clouds. There are two large cranes operating in the background.", - "id": 34630 - }, - { - "image_path": "G:\\images\\combined\\03094f5a2043b4a5.jpg", - "response": "A red brick wall with a sign that says Holmans.", - "id": 34631 - }, - { - "image_path": "G:\\images\\combined\\0309830827e1e51b.jpg", - "response": "A diner with a neon sign that says \"Lori's Diner\" on the side of the building.", - "id": 34632 - }, - { - "image_path": "G:\\images\\combined\\03098ea356ef4950.jpg", - "response": "A green and white bus parked on the street.", - "id": 34633 - }, - { - "image_path": "G:\\images\\combined\\0309d667a65c0747.jpg", - "response": "A man standing in front of a chalkboard and a projection screen.", - "id": 34634 - }, - { - "image_path": "G:\\images\\combined\\0309e9e7c1d04df5.jpg", - "response": "A man sitting at a table with three open laptops in front of him.", - "id": 34635 - }, - { - "image_path": "G:\\images\\combined\\030aac31ce3ebe66.jpg", - "response": "A yellow van with a ladder on top of it is parked on the side of a street. The van has a white top and is parked near a brick building. There are several cars parked or driving around the area. One car is parked in front of the yellow van, while another car is driving behind it. There are also two bicycles parked on the sidewalk near the yellow van.", - "id": 34636 - }, - { - "image_path": "G:\\images\\combined\\030b01aab1cf161b.jpg", - "response": "In the image there is a green table with a poker combination of cards on it. The poker hand consists of five cards and it is a Royal flush with hearts. Lying next to the cards are black gambling chips and two red dice.", - "id": 34637 - }, - { - "image_path": "G:\\images\\combined\\030b9726b02097ee.jpg", - "response": "The image shows the rear end of a silver car. The car has Audi branding on the trunk and a license plate that says \"B\". The brake lights are red and there is a reflector on the right side of the trunk. The sky is blue with clouds and the trees have no leaves.", - "id": 34638 - }, - { - "image_path": "G:\\images\\combined\\030bbe9a52ce9d16.jpg", - "response": "A young boy wearing a black and white baseball uniform and a baseball cap stands in a grassy field.", - "id": 34639 - }, - { - "image_path": "G:\\images\\combined\\030c06da5cafb7db.jpg", - "response": "a baseball player wearing a black and grey uniform standing on the field", - "id": 34640 - }, - { - "image_path": "G:\\images\\combined\\030c3d91ceaac1b9.jpg", - "response": "A green and yellow double decker bus is on the sand.", - "id": 34641 - }, - { - "image_path": "G:\\images\\combined\\030cc39bb84dd742.jpg", - "response": "On the cover of Investigate, a student named Ashlee Brown is holding a book titled \"The Complete Sherlock Holmes.\" She is sitting on a couch in front of a bookshelf filled with books. She is wearing a white shirt and a brown cardigan. Her nails are painted a bright red.", - "id": 34642 - }, - { - "image_path": "G:\\images\\combined\\030dc79b28b9c9b9.jpg", - "response": "A close up of a coin that is showing the back side.", - "id": 34643 - }, - { - "image_path": "G:\\images\\combined\\030fd24af593dcc8.jpg", - "response": "A large blue billboard that says \"Rent Me\" on it.", - "id": 34644 - }, - { - "image_path": "G:\\images\\combined\\0310822ffb3699d4.jpg", - "response": "An open book with many fonts and a woodcut illustration of people.", - "id": 34645 - }, - { - "image_path": "G:\\images\\combined\\03108_jpg.rf.49dcbf773dd2734017ceed1a0a3be568.jpg", - "response": "A man wearing a safety vest and a hard hat stands next to a stop sign.", - "id": 34646 - }, - { - "image_path": "G:\\images\\combined\\03108_jpg.rf.7ce50b1689871e79561b8a6290db5b89.jpg", - "response": "A man wearing a safety vest and a hard hat is standing on a street corner. He is holding a stop sign and leaning against a wooden pole. There is a traffic cone behind him. The street is dark and there are cars in the background.", - "id": 34647 - }, - { - "image_path": "G:\\images\\combined\\03112_jpg.rf.1eebdaaa6687f7dc8fa362a72fbcadf6.jpg", - "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", - "id": 34648 - }, - { - "image_path": "G:\\images\\combined\\03112_jpg.rf.e7650e58d15bd9abf45a08665104155a.jpg", - "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", - "id": 34649 - }, - { - "image_path": "G:\\images\\combined\\03118_jpg.rf.e1bfbad137be8bf20a641131026ae87c.jpg", - "response": "A man wearing a yellow safety helmet and a yellow safety vest.", - "id": 34650 - }, - { - "image_path": "G:\\images\\combined\\0311968a1b750ede.jpg", - "response": "A book stall with a blue sign that says \"Station Bookstall\" on it.", - "id": 34651 - }, - { - "image_path": "G:\\images\\combined\\03126_jpg.rf.0b11972c6c6df041c5f143a58d0b3f16.jpg", - "response": "A woman wearing a orange safety vest and a white hard hat.", - "id": 34652 - }, - { - "image_path": "G:\\images\\combined\\03126_jpg.rf.7b0840b352093778126e47cd174cea40.jpg", - "response": "A woman wearing a orange safety vest and a white hard hat is looking over a wall. She is leaning against a wooden ladder.", - "id": 34653 - }, - { - "image_path": "G:\\images\\combined\\03162cabd3033e19.jpg", - "response": "A red and white Air Berlin plane is taking off from the runway.", - "id": 34654 - }, - { - "image_path": "G:\\images\\combined\\0316e93df69fbcab.jpg", - "response": "A shelf with many copies of the book \"Origin of Species\" by Charles Darwin.", - "id": 34655 - }, - { - "image_path": "G:\\images\\combined\\03170e6f23d22c9f.jpg", - "response": "A silver Rolex watch with diamonds on the bezel and the band.", - "id": 34656 - }, - { - "image_path": "G:\\images\\combined\\03171556037898c8.jpg", - "response": "A gold can of beer with a red and white sticker on it.", - "id": 34657 - }, - { - "image_path": "G:\\images\\combined\\031733473703e84a.jpg", - "response": "A train station clock showing the time as 12:59.", - "id": 34658 - }, - { - "image_path": "G:\\images\\combined\\03185a9dbe007a8f.jpg", - "response": "a black and white clock hanging from a wire attached to a building", - "id": 34659 - }, - { - "image_path": "G:\\images\\combined\\0318df6aea131e32.jpg", - "response": "A red double decker bus is driving down the street.", - "id": 34660 - }, - { - "image_path": "G:\\images\\combined\\031bcfee5e18ebd9.jpg", - "response": "A woman is holding a cell phone in her right hand and standing next to six cell phones.", - "id": 34661 - }, - { - "image_path": "G:\\images\\combined\\031dae4a52cf8aa1.jpg", - "response": "A yellow license plate that says ALASKA on it.", - "id": 34662 - }, - { - "image_path": "G:\\images\\combined\\031e5a591a099bb1.jpg", - "response": "A room with a desk and computer on it.", - "id": 34663 - }, - { - "image_path": "G:\\images\\combined\\031ec9949229c38e.jpg", - "response": "A very large ship in the water with the word HANJIN on the side of it.", - "id": 34664 - }, - { - "image_path": "G:\\images\\combined\\031eed019baea941.jpg", - "response": "A police officer is sitting on a motorcycle on a busy city street. There are many cars and people around the officer. Some of the cars are taxis. The street is lined with buildings and there are traffic lights along the way.", - "id": 34665 - }, - { - "image_path": "G:\\images\\combined\\031ef5cac2530a70.jpg", - "response": "A book cover with a yellow border and black background. The title \"Checkpoint\" is written in white with a yellow font. There is a red building with three arches in the background. There are three people in the image, one holding a gun and taking the money from two others.", - "id": 34666 - }, - { - "image_path": "G:\\images\\combined\\031f3a2114b2c971.jpg", - "response": "A can of Suntory Ice Coffee Boss sits on a counter.", - "id": 34667 - }, - { - "image_path": "G:\\images\\combined\\0320299003ff65fb.jpg", - "response": "a group of people standing around a helicopter", - "id": 34668 - }, - { - "image_path": "G:\\images\\combined\\0322f8a71414a329.jpg", - "response": "A bottle of Mackmyra Whisky sitting next to a glass filled with the dark beer.", - "id": 34669 - }, - { - "image_path": "G:\\images\\combined\\032301767de33543.jpg", - "response": "A person is holding a black Samsung smartphone in their hand. The phone is open and showing text on the screen. The person is also holding a pen in their other hand.", - "id": 34670 - }, - { - "image_path": "G:\\images\\combined\\0323506fd3178dc8.jpg", - "response": "A keyboard with a red enter key that says mac OS on it.", - "id": 34671 - }, - { - "image_path": "G:\\images\\combined\\03235d26a98bcb0f.jpg", - "response": "A red, white and black motorcycle is parked on the street.", - "id": 34672 - }, - { - "image_path": "G:\\images\\combined\\0324e472fdbc21d2.jpg", - "response": "A British Airways airplane flying in the sky.", - "id": 34673 - }, - { - "image_path": "G:\\images\\combined\\03254_jpg.rf.0b3f603c0c138a95018b4f18f287a2ea.jpg", - "response": "A group of men standing around each other.", - "id": 34674 - }, - { - "image_path": "G:\\images\\combined\\03254_jpg.rf.e6b5354062a131462948ff0a3b7c66ec.jpg", - "response": "A group of people standing around each other", - "id": 34675 - }, - { - "image_path": "G:\\images\\combined\\032672906be2e4c9.jpg", - "response": "The image shows a group of young men standing behind a large blue bin. They are all wearing blue shirts and sunglasses. Some of the men are holding water guns and pointing them towards the camera. There is a woman standing behind the men, and another woman is visible in the background. The scene appears to be taking place at a water fight or a similar event.", - "id": 34676 - }, - { - "image_path": "G:\\images\\combined\\0326b1ef4529097c.jpg", - "response": "A person is holding a black Nokia phone in their hand. The phone is running Windows Phone 8 and has a weather app open. The weather is set to Taipei and the current temperature is 25 degrees Celsius. There is also a to-do list on the phone with tasks at 16:00, 21:00 and 23:00.", - "id": 34677 - }, - { - "image_path": "G:\\images\\combined\\03286a77f1a9da12.jpg", - "response": "a baseball scoreboard showing the final score of the game which is 3 to 8", - "id": 34678 - }, - { - "image_path": "G:\\images\\combined\\0328a24cc3047ec8.jpg", - "response": "A large billboard with a woman's face on it is displayed on a building.", - "id": 34679 - }, - { - "image_path": "G:\\images\\combined\\0328f10a8d351b24.jpg", - "response": "A shelf with a variety of beer bottles on it.", - "id": 34680 - }, - { - "image_path": "G:\\images\\combined\\032925607ae0382c.jpg", - "response": "A pole with a sign on it that says E and has a arrow pointing to the left.", - "id": 34681 - }, - { - "image_path": "G:\\images\\combined\\0329e6958e4f5069.jpg", - "response": "A green glass bottle is sitting on a wooden bar. The bottle is labeled with the words \"Good for that jittery feeling.\" The label continues on the back of the bottle. The bottle is empty.", - "id": 34682 - }, - { - "image_path": "G:\\images\\combined\\032a1bbda0389235.jpg", - "response": "A tv screen showing a soccer game between Brazil and Germany.", - "id": 34683 - }, - { - "image_path": "G:\\images\\combined\\032ac761616a8b61.jpg", - "response": "A man holding a stack of boxes with fruit in them.", - "id": 34684 - }, - { - "image_path": "G:\\images\\combined\\032b047f44d6cf41.jpg", - "response": "A room with a bookshelf full of books and an electronic drum set in front of it.", - "id": 34685 - }, - { - "image_path": "G:\\images\\combined\\032b5411ec403cc2.jpg", - "response": "A yellow poster with a black text. The text is all capitalized and bold. The numbers 12 and 15 are displayed at the top and bottom of the image in big font. The word \"MAYO\" is displayed in yellow font. The word \"ESTAS\" is displayed in black font. The word \"ESPERANDO?\" is displayed in bold black font. There is a picture of the earth with two arrows pointing at it. One arrow is pointing to the left and the other is pointing to the right.", - "id": 34686 - }, - { - "image_path": "G:\\images\\combined\\032dcf3f768e3259.jpg", - "response": "On a bar, there are two hot sauce bottles. One is El Yucateco Habanero Hot Sauce and the other is their green sauce. Both are made in the USA.", - "id": 34687 - }, - { - "image_path": "G:\\images\\combined\\032f63f7a99ec39e.jpg", - "response": "A collage of book covers including The Name of the Wind, Starship Troopers, and others.", - "id": 34688 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.600ca107de275c0227bb0c8a37ea8e43.jpg", - "response": "A cardboard box with the word Games on it in black tape.", - "id": 34689 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.79fd9a20f3fb4dc905b1bd126895c9a7.jpg", - "response": "A cardboard box is open on the floor. The box is on a wooden floor. There is a white box on the floor behind the brown box. There is a plastic bag with red writing on it next to the box. There is a white bag behind the box. There is a black and white plastic bag behind the white box.", - "id": 34690 - }, - { - "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.d1a0b19bf2b537c33ae9138f2b056bb6.jpg", - "response": "A cardboard box with the wordasics on it.", - "id": 34691 - }, - { - "image_path": "G:\\images\\combined\\0333568015752324.jpg", - "response": "An advertisement for Dial anti-perspirant products, including Dial Very Dry.", - "id": 34692 - }, - { - "image_path": "G:\\images\\combined\\033372370c02e704.jpg", - "response": "A white van parked in front of a building.", - "id": 34693 - }, - { - "image_path": "G:\\images\\combined\\033387d84d578dd7.jpg", - "response": "A big commercial plane(27,162),(992,610) on the runway", - "id": 34694 - }, - { - "image_path": "G:\\images\\combined\\033450fc9a624610.jpg", - "response": "A person holding a bottle of red wine with a grey label that says Great Wall in black and white.", - "id": 34695 - }, - { - "image_path": "G:\\images\\combined\\0334520a6683a223.jpg", - "response": "A clock with a soldier from the video game Halo in front of it.", - "id": 34696 - }, - { - "image_path": "G:\\images\\combined\\03345_jpg.rf.9c37b8c4a358338c7756688d02122256.jpg", - "response": "A man in an orange jacket and a white helmet is standing in a construction site at night. He is looking at his phone and smiling.", - "id": 34697 - }, - { - "image_path": "G:\\images\\combined\\0334eea69a37e9ad.jpg", - "response": "A green dumpster with the words \"tour bus trash\" written on it in red letters.", - "id": 34698 - }, - { - "image_path": "G:\\images\\combined\\03370c2ee2a5791d.jpg", - "response": "The image shows a product range for baby care. There are five products in the image, which are arranged in a row. From the left, the products are a white bottle with a pump, a white bottle with a dropper, a yellow tube, a white tube and a white bag. The pump bottle has a heart on the label, the dropper bottle has a green heart on the label. The yellow tube has a green heart on the label. The white tube has a green heart on the label. The white bag has the word \"baby\" written on it.", - "id": 34699 - }, - { - "image_path": "G:\\images\\combined\\0337bd7e2cded3cd.jpg", - "response": "A round plaque with a picture of a man's profile on it.", - "id": 34700 - }, - { - "image_path": "G:\\images\\combined\\0337cbae48f8a28d.jpg", - "response": "The image features a large body of water with several boats floating on it. There are two large boats, one on the left and one on the right, that are much taller than the other boats. In the distance, there is a large mountain with trees on it. A helicopter is flying in the sky above the boats.", - "id": 34701 - }, - { - "image_path": "G:\\images\\combined\\0338c67dc355a8c6.jpg", - "response": "A white van with the word ORTHOTIX on the side of it.", - "id": 34702 - }, - { - "image_path": "G:\\images\\combined\\03391be934ddbc7c.jpg", - "response": "A space shuttle being transported on top of a large airplane.", - "id": 34703 - }, - { - "image_path": "G:\\images\\combined\\033949382d674109.jpg", - "response": "A green bus with the number 15 on it is driving down the street.", - "id": 34704 - }, - { - "image_path": "G:\\images\\combined\\033a703a4771ba75.jpg", - "response": "a red car with a toyota logo on the trunk and a myflorida license plate", - "id": 34705 - }, - { - "image_path": "G:\\images\\combined\\033a93b07e9f92c4.jpg", - "response": "a black suv in front of a white building", - "id": 34706 - }, - { - "image_path": "G:\\images\\combined\\033a983285462145.jpg", - "response": "A bottle of Oude de Charrue sits next to a glass filled with the beer. The bottle is next to a green plant in a green watering can.", - "id": 34707 - }, - { - "image_path": "G:\\images\\combined\\033cd5edd0a24ab7.jpg", - "response": "A white van with a ladder on top of it.", - "id": 34708 - }, - { - "image_path": "G:\\images\\combined\\033d24fb20116330.jpg", - "response": "A red city bus is parked in a parking lot.", - "id": 34709 - }, - { - "image_path": "G:\\images\\combined\\033e164dad566027.jpg", - "response": "A person is holding a bottle of beer in their hand. The bottle is green and has a label on it. There is a cup on the table.", - "id": 34710 - }, - { - "image_path": "G:\\images\\combined\\033ecc0bfce7a4c4.jpg", - "response": "A busy city street with many people and yellow taxis.", - "id": 34711 - }, - { - "image_path": "G:\\images\\combined\\033ecc2e897a1ebf.jpg", - "response": "A metal fence with several signs attached to it. The signs are in various colors and say danger, do not enter, demolition work in progress, and caution. There is also a hand with an exclamation point in a triangle.", - "id": 34712 - }, - { - "image_path": "G:\\images\\combined\\03403981219b557d.jpg", - "response": "A red and white bus is parked on the street.", - "id": 34713 - }, - { - "image_path": "G:\\images\\combined\\03404_jpg.rf.379056ae052a45d63fcd169530968e15.jpg", - "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are three orange traffic cones in the foreground. The field has a white yard line and a red and white barricade. There is a blue metal structure on the left side of the field and a wooden structure on the right. There is a spotlight shining on the man and a fire hydrant is visible in the background. The sky is dark and there are sparks flying in the air.", - "id": 34714 - }, - { - "image_path": "G:\\images\\combined\\03404_jpg.rf.672fc7d318cae1cceac821a9b3989830.jpg", - "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are two orange traffic cones on the field, one on the left and one on the right. In the background, there are two lights shining down on the field. To the left of the field, there is a metal structure with a ladder.", - "id": 34715 - }, - { - "image_path": "G:\\images\\combined\\0340971ba2dd8d6e.jpg", - "response": "A close up of a smart device screen that is in a foreign language.", - "id": 34716 - }, - { - "image_path": "G:\\images\\combined\\0340bd6836605e6a.jpg", - "response": "A bar with a wooden counter top and a brown color.", - "id": 34717 - }, - { - "image_path": "G:\\images\\combined\\0340ffed402c0672.jpg", - "response": "In the image, there is a young boy dressed in a baseball uniform, holding a baseball bat and standing on a baseball field. He appears to be focused and ready to play.", - "id": 34718 - }, - { - "image_path": "G:\\images\\combined\\0341f72c43fdb537.jpg", - "response": "The image features two women sitting next to each other. One woman has a temporary tattoo on her upper arm that says \"joyful.\" Both women are wearing watches on their wrists. One of the women is also wearing a black and white diamond-patterned necklace. She is holding a green cup in her hand. The other woman is wearing a beaded bracelet on her wrist and is wearing a watch as well.", - "id": 34719 - }, - { - "image_path": "G:\\images\\combined\\03438e4ac08eb383.jpg", - "response": "The image shows a close-up of a smartphone screen. The phone is displaying a photo of a man with glasses, and there are several options for sharing the photo, including Facebook, Twitter, Flickr, and others. The screen also has a navigation bar at the bottom with options for \"Export,\" \"Back,\" and \"Library.\" The phone is held in someone's hand, and there is a person's elbow visible in the background.", - "id": 34720 - }, - { - "image_path": "G:\\images\\combined\\0344024a2be37ee1.jpg", - "response": "A silver and white mobile phone is displayed. The phone has a silver and white color scheme and a navigation button in the center of the phone. To the left of the navigation button are the numbers 0 and * and the button with the image of a phone. Underneath the navigation button are the buttons with the numbers 1, 2, 3, and 4. To the right of the navigation button are the buttons with the numbers 5 and 6. Underneath these are the buttons with the numbers 7, 8, 9, and 0. There is also a button with the image of a envelope. Above the navigation button are the words \"Messages\". Next to this are the options \"Select\" and \"Back\".", - "id": 34721 - }, - { - "image_path": "G:\\images\\combined\\034473474965116d.jpg", - "response": "A red and white double decker bus is parked in a parking lot with other buses.", - "id": 34722 - }, - { - "image_path": "G:\\images\\combined\\0345e23c2c2da911.jpg", - "response": "A keyboard with a paper in front of it with the word jetset on it.", - "id": 34723 - }, - { - "image_path": "G:\\images\\combined\\03461b7f34db309a.jpg", - "response": "A bus on a city street in Rio de Janeiro.", - "id": 34724 - }, - { - "image_path": "G:\\images\\combined\\0347430ffd8f3671.jpg", - "response": "A glass of beer on a table.", - "id": 34725 - }, - { - "image_path": "G:\\images\\combined\\034788d9f2ec86e5.jpg", - "response": "A bottle of red wine named La Chapelle Boit.", - "id": 34726 - }, - { - "image_path": "G:\\images\\combined\\03484c827a93d689.jpg", - "response": "A orange and yellow double decker bus parked next to a red and white double decker bus.", - "id": 34727 - }, - { - "image_path": "G:\\images\\combined\\03485f39264998c8.jpg", - "response": "In the image there is a person laying in a bathtub. They are reading a book with the title \"Shit I was right about\" on the cover. The book is held up to the persons face so they can read it. There are three candles lit around the bathtub and a rubber duck floating in the water. The person's legs are crossed and they have a ring on their left hand.", - "id": 34728 - }, - { - "image_path": "G:\\images\\combined\\03486477f41d883f.jpg", - "response": "The image shows an empty stadium with a green football field. The field has white numbers and lines and the goalposts are painted yellow. There are two American flags flying in the stadium, one on the left and one on the right. The stadium seats are empty and the stands are made of concrete.", - "id": 34729 - }, - { - "image_path": "G:\\images\\combined\\034ab6f9af333146.jpg", - "response": "A large screen is displaying a soccer game with a crowd watching.", - "id": 34730 - }, - { - "image_path": "G:\\images\\combined\\034adc2d37d61349.jpg", - "response": "A black LG Cyon phone is displayed. The phone has a red and white screen with various apps and settings. The time on the phone is 11:23. There is a search bar at the top with the text \"The BLOG\" written in Korean. Below the search bar are two buttons, one with the YouTube logo and one with the Facebook logo. There is a button labeled \"LG Road Sync\" and a button labeled \"LG Air Sync\". The bottom of the screen has two buttons, one labeled \"Road Typing\" and one labeled \"Facebook\". The phone is running Android.", - "id": 34731 - }, - { - "image_path": "G:\\images\\combined\\034aeb53f8203c9b.jpg", - "response": "A colorful mural painted on the side of a building.", - "id": 34732 - }, - { - "image_path": "G:\\images\\combined\\034afc91ed9a3c73.jpg", - "response": "In the image, there is a man standing in a kitchen preparing food. He is wearing a white shirt and cooking over a stove. There are two bowls on the counter, one on the left and the other on the right. A bottle is placed near the window, and a spoon is resting on the counter. The spoon is near the man who is cooking.", - "id": 34733 - }, - { - "image_path": "G:\\images\\combined\\034bc04aadfd3ce0.jpg", - "response": "A stack of 7 gold cans of Coca Cola.", - "id": 34734 - }, - { - "image_path": "G:\\images\\combined\\034bfc58141b6162.jpg", - "response": "A red, yellow and silver train is stopped at a train station.", - "id": 34735 - }, - { - "image_path": "G:\\images\\combined\\034c598a8ba83945.jpg", - "response": "Two smart devices are side by side on a bed.", - "id": 34736 - }, - { - "image_path": "G:\\images\\combined\\034f44ed3233160c.jpg", - "response": "A brick building with a clock mounted to the side of it.", - "id": 34737 - }, - { - "image_path": "G:\\images\\combined\\034fb549726445cd.jpg", - "response": "A wax seal necklace with a coin charm and a letter charm sits on a wooden table.", - "id": 34738 - }, - { - "image_path": "G:\\images\\combined\\0351a7027db236c5.jpg", - "response": "A person is holding a black Sony Xperia Z smartphone. The phone is powered on and displays the time as 7:39. The background of the phone's display shows a mountain over a body of water.", - "id": 34739 - }, - { - "image_path": "G:\\images\\combined\\0351eb61ef958742.jpg", - "response": "A person walking down a road near a yellow pedestrian crossing sign.", - "id": 34740 - }, - { - "image_path": "G:\\images\\combined\\03535a6be5d036d6.jpg", - "response": "A poster with four quadrants. Each quadrant has a different role. The four roles are novice, apprentice, practitioner, and expert.", - "id": 34741 - }, - { - "image_path": "G:\\images\\combined\\0354a077b542ed03.jpg", - "response": "A close up of a laptop computer screen and keyboard.", - "id": 34742 - }, - { - "image_path": "G:\\images\\combined\\0354ff409f087801.jpg", - "response": "a person standing in front of a white board", - "id": 34743 - }, - { - "image_path": "G:\\images\\combined\\035641421030a5f1.jpg", - "response": "A bookshelf with several books on it, including one titled \"DOM Scripting\" and another titled \"JavaScript: The Definitive Reference\".", - "id": 34744 - }, - { - "image_path": "G:\\images\\combined\\03577bee21c7d19e.jpg", - "response": "A man wearing glasses stands at a podium with a microphone. He is dressed in a suit and is giving a speech. There is a laptop on the podium and a banner with the words \"100 years\" behind him.", - "id": 34745 - }, - { - "image_path": "G:\\images\\combined\\0359b5b2e2f0bfcb.jpg", - "response": "A person holding a watch box with a watch inside.", - "id": 34746 - }, - { - "image_path": "G:\\images\\combined\\0359decb8df78658.jpg", - "response": "a black coffee mug(49,62),(915,905) with a picture of a cake on it", - "id": 34747 - }, - { - "image_path": "G:\\images\\combined\\035d0fbe3a26607f.jpg", - "response": "A lava lamp is glowing red in front of a laptop.", - "id": 34748 - }, - { - "image_path": "G:\\images\\combined\\035e005070e011e4.jpg", - "response": "In the image, there is a man wearing a hat standing in front of a whiteboard. The man appears to be giving a presentation or lecture, as he is gesturing with his hands while speaking. He is wearing a plaid shirt and a name tag, and there are several markers scattered around on the table. The whiteboard has various writing on it, including a diagram and the words \"Web Invents\" and \"Activity Stream\".", - "id": 34749 - }, - { - "image_path": "G:\\images\\combined\\035e0de0db152784.jpg", - "response": "A television monitor with a game on it.", - "id": 34750 - }, - { - "image_path": "G:\\images\\combined\\035e347ba7ad5e63.jpg", - "response": "A baseball stadium with a green field and many people in the stands watching the game.", - "id": 34751 - }, - { - "image_path": "G:\\images\\combined\\03616065a68b3611.jpg", - "response": "A glass of whiskey next to a bottle of it.", - "id": 34752 - }, - { - "image_path": "G:\\images\\combined\\03619aa36e98b18c.jpg", - "response": "The image shows a bookshelf with various books on it. The books are arranged so that some are leaning against each other, and some are standing straight. The bookshelf is white, and the books are in different colors, including red, white, and black. The books cover a wide range of topics, including design, music, and web design. Some of the book titles include \"The Design\" and \"Blue Note.\"", - "id": 34753 - }, - { - "image_path": "G:\\images\\combined\\0361af3b7b625275.jpg", - "response": "A busy street scene with people walking around and double decker buses.", - "id": 34754 - }, - { - "image_path": "G:\\images\\combined\\036228da49face6b.jpg", - "response": "A large image of a computer screen is displayed on a stage. The screen shows a website page with several people's faces on it. The website is the Nokia social network.", - "id": 34755 - }, - { - "image_path": "G:\\images\\combined\\03625040b2eef2a4.jpg", - "response": "A man in a bear suit runs onto the field with a team of football players.", - "id": 34756 - }, - { - "image_path": "G:\\images\\combined\\036363e87748415a.jpg", - "response": "A sign for Fivestar showing the price of gas at $4.06 per gallon.", - "id": 34757 - }, - { - "image_path": "G:\\images\\combined\\036374a151961577.jpg", - "response": "A foggy day with two red double decker buses on the road. One of the buses is parked and the other is driving down the street. There is a car behind the bus that is driving. The bus has a man on it and the car is black. There is a blue metal railing on the side of the street.", - "id": 34758 - }, - { - "image_path": "G:\\images\\combined\\0363a663db0f0bc2.jpg", - "response": "A street scene with a large roundabout in the background. There is a sign that says \"The Mall\" on it and another sign that says \"The Atrium Leisure Center\" on it. There are a few cars on the street and a bus is driving down the road as well. There are also two benches on the sidewalk.", - "id": 34759 - }, - { - "image_path": "G:\\images\\combined\\0363baaba71c8396.jpg", - "response": "A page from a newsletter, likely from the department of marine and harbors.", - "id": 34760 - }, - { - "image_path": "G:\\images\\combined\\0363f02db5b0ae49.jpg", - "response": "The image shows three boxes, each in a different color, and they are all open. The box on the left is red and contains a silver circle with the word \"pearl\" written on it. The box in the middle is gold and contains a gold circle with the word \"pearl\" written on it. The box on the right is grey and contains a grey circle with the word \"pearl\" written on it.", - "id": 34761 - }, - { - "image_path": "G:\\images\\combined\\03655bde4da6c310.jpg", - "response": "A laptop computer sitting on a wooden table.", - "id": 34762 - }, - { - "image_path": "G:\\images\\combined\\0366bc74129b4f8c.jpg", - "response": "A calculator, a pen and a quote from CEB Research on a financial statement.", - "id": 34763 - }, - { - "image_path": "G:\\images\\combined\\03671bbbc7aee75d.jpg", - "response": "A white toyota innova parked on the side of the road.", - "id": 34764 - }, - { - "image_path": "G:\\images\\combined\\036745230dfcbba8.jpg", - "response": "A watch with a black band and a sign that says 0165 Hatan.", - "id": 34765 - }, - { - "image_path": "G:\\images\\combined\\0367c26bb8213f97.jpg", - "response": "A cat laying in a cardboard box.", - "id": 34766 - }, - { - "image_path": "G:\\images\\combined\\0368d827bcab27d1.jpg", - "response": "The image shows a baseball field with a few people playing a game of frisbee. There are at least three people visible, with one in the foreground wearing a white shirt and black shorts, another in the background wearing a black shirt and white shorts, and a third person partially visible on the left side of the image. They are all standing on the dirt area of the field, which includes a pitcher's mound and a base.", - "id": 34767 - }, - { - "image_path": "G:\\images\\combined\\036b0ed016fe81dd.jpg", - "response": "A still from the show Glee of three women standing in a doorway. The woman on the left is wearing a red and white cheerleading uniform with a purple jacket over it and her hair in a high ponytail. The woman in the middle has her hair down and is wearing a purple vest over a white shirt. The woman on the right is also wearing a red and white cheerleading uniform with her hair in a bun.", - "id": 34768 - }, - { - "image_path": "G:\\images\\combined\\036c33a219d5a51e.jpg", - "response": "A red double decker bus driving down the street.", - "id": 34769 - }, - { - "image_path": "G:\\images\\combined\\036c51c7d9da780f.jpg", - "response": "A remote control sitting on a grey table.", - "id": 34770 - }, - { - "image_path": "G:\\images\\combined\\036ca96be461e0e9.jpg", - "response": "A red stop sign with a white border and the word \"STOP\" written in white. The sign is attached to a metal pole and is located in front of a tree.", - "id": 34771 - }, - { - "image_path": "G:\\images\\combined\\036de4d1b84409c5.jpg", - "response": "In the image, there are several baseball players wearing blue uniforms with red and white lettering and logos. One player is wearing a blue jersey with the number 28 on the back, and the player in front of him is wearing a red and white cap with a T on it. Another player is wearing a blue and red cap with a T on it. The players are standing close to each other and appear to be having a conversation. There is a fence in the background, and the image has a slightly blurry appearance.", - "id": 34772 - }, - { - "image_path": "G:\\images\\combined\\036f03402dbfd5d0.jpg", - "response": "A yellow school bus parked in a fenced in yard.", - "id": 34773 - }, - { - "image_path": "G:\\images\\combined\\0372664e29dace21.jpg", - "response": "A person is holding a smartphone in their hand. The smartphone is a black htc phone. The phone is open and on. There is a screen with a black background and white lettering. There are two green buttons on the screen. The phone is in someone's left hand. There is a speaker in the background. It is silver and has many buttons on it.", - "id": 34774 - }, - { - "image_path": "G:\\images\\combined\\0373a3b6816bba15.jpg", - "response": "A keyboard that is missing a key and is broken in the middle.", - "id": 34775 - }, - { - "image_path": "G:\\images\\combined\\0373e09acea451dd.jpg", - "response": "A plastic bottle of water with a label that says studio A.", - "id": 34776 - }, - { - "image_path": "G:\\images\\combined\\03740a5f24942edf.jpg", - "response": "A green metal ice cream container with the words The National Trust on it.", - "id": 34777 - }, - { - "image_path": "G:\\images\\combined\\0374fb6b8e116c17.jpg", - "response": "A cardboard box with a green label that says \"simple syrup kit\" on it.", - "id": 34778 - }, - { - "image_path": "G:\\images\\combined\\0378362751977c0b.jpg", - "response": "In the image, a group of female softball players are on a field. There are three players from UC San Diego and one player from Cal State San Bernardino. They are dressed in their respective team uniforms, which are blue, gray, and yellow. The players are actively engaged in the game, running and sliding on the field. One of the players from UC San Diego is holding a mitt, while another player is seen in the background. The scene captures the excitement and intensity of a softball game.", - "id": 34779 - }, - { - "image_path": "G:\\images\\combined\\0378cdb594c70f0c.jpg", - "response": "A stop sign mounted on a brick wall.", - "id": 34780 - }, - { - "image_path": "G:\\images\\combined\\03791062e3f6b6c5.jpg", - "response": "The exterior of Friendly's restaurant with a white picket fence and a red and white awning.", - "id": 34781 - }, - { - "image_path": "G:\\images\\combined\\0379d0a6b0d1d3f9.jpg", - "response": "The image shows a street corner with a red traffic light. There is a person standing next to a building holding a sign that reads \"Kill the Bill C-51\". Another sign that says \"stop\" is visible in the scene. There are two yellow traffic lights on the corner, one is positioned above the other. A fire escape is attached to the building and a crane can be seen in the background.", - "id": 34782 - }, - { - "image_path": "G:\\images\\combined\\037aaaf3346af356.jpg", - "response": "A black Sony Ericsson cell phone is sitting on a white table.", - "id": 34783 - }, - { - "image_path": "G:\\images\\combined\\037aeea981e2df67.jpg", - "response": "A glass of red wine sits on a table.", - "id": 34784 - }, - { - "image_path": "G:\\images\\combined\\037b5aa9bc3026e4.jpg", - "response": "A can of Pepsi sits on a black plate next to a pile of sugar and two spoons.", - "id": 34785 - }, - { - "image_path": "G:\\images\\combined\\037d8560943c3379.jpg", - "response": "A collection of four watches, two of which are in silver and two of which are in black. They are on a green and brown wooden table.", - "id": 34786 - }, - { - "image_path": "G:\\images\\combined\\037db65d7db752dd.jpg", - "response": "A busy city street with traffic lights, street signs, and pedestrians.", - "id": 34787 - }, - { - "image_path": "G:\\images\\combined\\037ddf0da997b5b6.jpg", - "response": "a camera with a black body and a leather covering", - "id": 34788 - }, - { - "image_path": "G:\\images\\combined\\037f58bbe20a72b8.jpg", - "response": "A bottle of La Grande Blanche sits next to a filled glass.", - "id": 34789 - }, - { - "image_path": "G:\\images\\combined\\037f897584dffd8c.jpg", - "response": "A book with a title in Italian.", - "id": 34790 - }, - { - "image_path": "G:\\images\\combined\\03800fb13fd49418.jpg", - "response": "The image shows a table set up with various items, including two boxes of doughnuts, a coffee maker, napkins, and cups. There are also bowls and spoons on the table.", - "id": 34791 - }, - { - "image_path": "G:\\images\\combined\\038021f7499f67a7.jpg", - "response": " A man(336,273),(714,802) sitting on a bridge", - "id": 34792 - }, - { - "image_path": "G:\\images\\combined\\038044cace2a65e9.jpg", - "response": "A double decker trolley bus on a street next to a sidewalk.", - "id": 34793 - }, - { - "image_path": "G:\\images\\combined\\0380f44cccbadc1c.jpg", - "response": "A vintage photograph of a busy intersection with traffic, including a green and white bus, and cars. There is a Standard Oil gas station visible in the scene.", - "id": 34794 - }, - { - "image_path": "G:\\images\\combined\\038188a838752d68.jpg", - "response": "A blackberry phone with a black keyboard. The phone has a trackball as the main navigation control. The keyboard has 19 keys, including 10 function keys, 4 shift keys, 4 space keys, 2 sym keys, and 1 night key. There are also 2 alt keys, one on the left and one on the right. The shift key is located between the alt keys. The space key is located between the sym keys. The symbol key is located to the right of the space key.", - "id": 34795 - }, - { - "image_path": "G:\\images\\combined\\03834fe53189e700.jpg", - "response": "a person holding a coffee cup up to their mouth", - "id": 34796 - }, - { - "image_path": "G:\\images\\combined\\038441a9b64ad54c.jpg", - "response": "Mr. Hero The New Age Man comic book #4, June 1995, $1.95 U.S. price, The new age man is a cyborg", - "id": 34797 - }, - { - "image_path": "G:\\images\\combined\\03856ed1f1229d4e.jpg", - "response": "A spoon full of ground mustard next to a cup of liquid mustard and a pile of whole mustard seeds.", - "id": 34798 - }, - { - "image_path": "G:\\images\\combined\\038629b289374d3f.jpg", - "response": "An old photo of a town with a large US Army truck in the foreground. The town has many buildings and people walking around. There are also many cars and bicycles in the scene.", - "id": 34799 - }, - { - "image_path": "G:\\images\\combined\\03863b90394ece66.jpg", - "response": "A city street with buildings and signs.", - "id": 34800 - }, - { - "image_path": "G:\\images\\combined\\038789965a8f7606.jpg", - "response": "A bus is parked on the side of the street.", - "id": 34801 - }, - { - "image_path": "G:\\images\\combined\\038864ebc2725553.jpg", - "response": "A group of six people standing on a softball field.", - "id": 34802 - }, - { - "image_path": "G:\\images\\combined\\0389568d5377e14e.jpg", - "response": "a person holding a smartphone in their hand", - "id": 34803 - }, - { - "image_path": "G:\\images\\combined\\038a21a5a1a6972e.jpg", - "response": "A double decker bus is parked on the side of the road.", - "id": 34804 - }, - { - "image_path": "G:\\images\\combined\\038a2f74d535a2a7.jpg", - "response": "A bottle of Leffe Brown beer sitting on a wooden table in front of a brick wall.", - "id": 34805 - }, - { - "image_path": "G:\\images\\combined\\038c8f14559fa56c.jpg", - "response": "A man standing next to a white and blue ice cream truck.", - "id": 34806 - }, - { - "image_path": "G:\\images\\combined\\038dc16c44629f3c.jpg", - "response": "A close up of a train wheel with the word Agenoria on it.", - "id": 34807 - }, - { - "image_path": "G:\\images\\combined\\038ec33c3856b912.jpg", - "response": "A bottle of red wine is on display. The bottle is wrapped in a red ribbon. The wine bottle has a white label with black text. The label has a picture of a feather. The wine bottle is on a black shelf.", - "id": 34808 - }, - { - "image_path": "G:\\images\\combined\\03906c94622593f8.jpg", - "response": "A gold coin with Chinese symbols on it.", - "id": 34809 - }, - { - "image_path": "G:\\images\\combined\\0392f98034ba927e.jpg", - "response": "A man sitting at a white table with a white keyboard in front of him. The man is looking at a computer screen with a website open. On the table is also a cell phone and a book.", - "id": 34810 - }, - { - "image_path": "G:\\images\\combined\\039330e303428a01.jpg", - "response": "A book cover with a space scene depicting a spaceship in orbit around a planet.", - "id": 34811 - }, - { - "image_path": "G:\\images\\combined\\0393c9d77b8215a3.jpg", - "response": "A grey model fighter jet on a wooden table.", - "id": 34812 - }, - { - "image_path": "G:\\images\\combined\\0394933dcd965048.jpg", - "response": "The image is a black and white photo of a train station. In the foreground, there is a little boy holding the hand of an older woman. The woman is wearing a white jacket and a white hat. She is also wearing a white shirt and holding a black purse. The little boy is wearing a white jacket and black pants. He is also holding a walking stick. In the background, there is a train.", - "id": 34813 - }, - { - "image_path": "G:\\images\\combined\\03959cf11d7df027.jpg", - "response": "A white car with blue and white license plate is parked in a parking lot.", - "id": 34814 - }, - { - "image_path": "G:\\images\\combined\\03962c7e05426227.jpg", - "response": "A man sitting at a table with a glass of beer in front of him.", - "id": 34815 - }, - { - "image_path": "G:\\images\\combined\\0396372a872294c2.jpg", - "response": "A red and white bus is driving down the street.", - "id": 34816 - }, - { - "image_path": "G:\\images\\combined\\039754640f34912b.jpg", - "response": "A brown and white van with a decal on the window that says \"Riding in Style Van Club\".", - "id": 34817 - }, - { - "image_path": "G:\\images\\combined\\03982ceb4b545f32.jpg", - "response": "The image shows two blue remote controls laying on a white surface. The remotes have buttons labeled A, B, and C on one side, and buttons labeled 1, 2, 3, +, - and 0 on the other side.", - "id": 34818 - }, - { - "image_path": "G:\\images\\combined\\039832d67de29788.jpg", - "response": "A row of parked ambulances on the side of the road.", - "id": 34819 - }, - { - "image_path": "G:\\images\\combined\\03991603677ee84d.jpg", - "response": "A pink recycling bin on a sidewalk.", - "id": 34820 - }, - { - "image_path": "G:\\images\\combined\\039a55183ba52549.jpg", - "response": "A group of baseball players on a field.", - "id": 34821 - }, - { - "image_path": "G:\\images\\combined\\039a9167c8a2ac3f.jpg", - "response": "A BMW X5 with the plate GKL1845 is on a dusty road.", - "id": 34822 - }, - { - "image_path": "G:\\images\\combined\\039da94c7b4a3104.jpg", - "response": "A sign that says Viking Court and lists the hours and logos of the food options.", - "id": 34823 - }, - { - "image_path": "G:\\images\\combined\\039dd0ed14106d32.jpg", - "response": "A silver coin is next to a copper bar.", - "id": 34824 - }, - { - "image_path": "G:\\images\\combined\\039e84b999400482.jpg", - "response": "a orange road work ahead sign on a street", - "id": 34825 - }, - { - "image_path": "G:\\images\\combined\\039f33b5834a956b.jpg", - "response": "A table with seven cans of beer on it.", - "id": 34826 - }, - { - "image_path": "G:\\images\\combined\\039fce4cdc594316.jpg", - "response": "A table with two bottles of Innocent brand smoothie.", - "id": 34827 - }, - { - "image_path": "G:\\images\\combined\\03a037ee6c32399c.jpg", - "response": "A train on a track near a house.", - "id": 34828 - }, - { - "image_path": "G:\\images\\combined\\03a03f6692cb4d0b.jpg", - "response": "A man wearing a boxing glove drinks from a can of Boxer.", - "id": 34829 - }, - { - "image_path": "G:\\images\\combined\\03a1e7cf965c52c3.jpg", - "response": "A television with a screen that says \"Classic Sinatra\" on the top.", - "id": 34830 - }, - { - "image_path": "G:\\images\\combined\\03a27395be344ab4.jpg", - "response": "A large sign for Redrow, a housing developer, advertising a new home opening soon.", - "id": 34831 - }, - { - "image_path": "G:\\images\\combined\\03a2e09ed8c9a4fc.jpg", - "response": "A display case full of candy and snacks.", - "id": 34832 - }, - { - "image_path": "G:\\images\\combined\\03a3ae31fcba44c3.jpg", - "response": "A can of soda with a straw in it sitting on the sand.", - "id": 34833 - }, - { - "image_path": "G:\\images\\combined\\03a3cbd0b9772d44.jpg", - "response": "A red and silver jet2 airplane is on a runway.", - "id": 34834 - }, - { - "image_path": "G:\\images\\combined\\03a4ce7908b524f6.jpg", - "response": "A group of people are standing in a kitchen. A woman is hugging another woman while a man is holding a plate of food. There is a microwave and an oven in the background.", - "id": 34835 - }, - { - "image_path": "G:\\images\\combined\\03a514f0ec49375a.jpg", - "response": "A Nuwave oven sitting on a white sheet.", - "id": 34836 - }, - { - "image_path": "G:\\images\\combined\\03a568bf2eddea1d.jpg", - "response": "A hand holding a blue can of Royal Castle Pilsner beer.", - "id": 34837 - }, - { - "image_path": "G:\\images\\combined\\03a5d50547d613c7.jpg", - "response": "A white Subaru Forester with a blue and white license plate that says SLOW.", - "id": 34838 - }, - { - "image_path": "G:\\images\\combined\\03a7c3a85a7771e0.jpg", - "response": "a silver and white watch on a blue surface", - "id": 34839 - }, - { - "image_path": "G:\\images\\combined\\03a8d358bf558902.jpg", - "response": "A poster with three women smiling and a bottle of Biotonico.", - "id": 34840 - }, - { - "image_path": "G:\\images\\combined\\03a91afb212d9a3b.jpg", - "response": "A toaster oven on a kitchen counter surrounded by various items such as a bag of Doritos, a bowl of dip, a banana, and a knife. There are also several plates and a cup on the counter.", - "id": 34841 - }, - { - "image_path": "G:\\images\\combined\\03a91f3fb7cdc67c.jpg", - "response": "A man sleeping on the ground outside a Chinese shop.", - "id": 34842 - }, - { - "image_path": "G:\\images\\combined\\03a939145c5c1362.jpg", - "response": "A poster with a woman holding an hourglass.", - "id": 34843 - }, - { - "image_path": "G:\\images\\combined\\03aa05be4ff05ba6.jpg", - "response": "A long table is filled with many different kinds of wine bottles.", - "id": 34844 - }, - { - "image_path": "G:\\images\\combined\\03aa34117573804b.jpg", - "response": "A silver penny of Henry III, minted in London between 1258 and 1264. The obverse has a cross pattee, and the reverse has a shield with a lion and a dragon.", - "id": 34845 - }, - { - "image_path": "G:\\images\\combined\\03af12f9ba86896c.jpg", - "response": "The image is split in half with two phones side by side. The phone on the left is an iPhone and the phone on the right is an Android phone.", - "id": 34846 - }, - { - "image_path": "G:\\images\\combined\\03af1855cadc876c.jpg", - "response": "A wall with the words \"Let's Adore and Endure Each Other\" written on it.", - "id": 34847 - }, - { - "image_path": "G:\\images\\combined\\03b0e895ecf74cfd.jpg", - "response": "A close up of a silver coin with the statue of liberty on it.", - "id": 34848 - }, - { - "image_path": "G:\\images\\combined\\03b10f45eb118bd5.jpg", - "response": "A collection of items that are typically carried in a pocket.", - "id": 34849 - }, - { - "image_path": "G:\\images\\combined\\03b11fe3fb428ae4.jpg", - "response": "A Thai Airways plane is taking off from the runway.", - "id": 34850 - }, - { - "image_path": "G:\\images\\combined\\03b2cd2fc8ebacac.jpg", - "response": "A red, white and black bus is parked in a parking lot.", - "id": 34851 - }, - { - "image_path": "G:\\images\\combined\\03b2dbb7dff0e32d.jpg", - "response": "A bottle of Chateau Garraud 2004 sits on a wooden table. The bottle is dark and has a red and white label. The top of the bottle is red and the bottom is dark. The label has a red Chateau Garraud logo in the middle. The label is white with a red stripe on the top and a red stripe on the bottom. The words Chateau Garraud are in red on the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label.", - "id": 34852 - }, - { - "image_path": "G:\\images\\combined\\03b33189e67c3fb2.jpg", - "response": "A bottle of Skilde next to a cup of coffee on a table.", - "id": 34853 - }, - { - "image_path": "G:\\images\\combined\\03b3ef17d4fbf990.jpg", - "response": "a notebook with a sign that says make trade fair", - "id": 34854 - }, - { - "image_path": "G:\\images\\combined\\03b632ee8d15cbae.jpg", - "response": "In the image there is a balance with two cellphones on it. The left one is black and has a Q on it. The right one is white and has GFive and Haptic Plus A77 on it. The scale is gold and the background is white.", - "id": 34855 - }, - { - "image_path": "G:\\images\\combined\\03b686595d19114f.jpg", - "response": "A police officer in a yellow jacket writing a ticket.", - "id": 34856 - }, - { - "image_path": "G:\\images\\combined\\03b6e18f11b24763.jpg", - "response": "a book with a page that has some writing on it", - "id": 34857 - }, - { - "image_path": "G:\\images\\combined\\03b7d59319084f2e.jpg", - "response": "A watch with a band made of interwoven blue and green rubber bands.", - "id": 34858 - }, - { - "image_path": "G:\\images\\combined\\03b92d00a3433780.jpg", - "response": "A soccer field with people on it at night.", - "id": 34859 - }, - { - "image_path": "G:\\images\\combined\\03b9382e1284256d.jpg", - "response": "A magazine spread about Def Leppard, a band with two members.", - "id": 34860 - }, - { - "image_path": "G:\\images\\combined\\03b9b929f76a5e56.jpg", - "response": "An orange sign that says \"Men at Work\" is attached to a metal bar.", - "id": 34861 - }, - { - "image_path": "G:\\images\\combined\\03bbf08d4273fd4c.jpg", - "response": "A hand holding a collection of shells and wearing a pair of nails with a design of gold squiggles on a maroon background.", - "id": 34862 - }, - { - "image_path": "G:\\images\\combined\\03bdc9baf89c03f7.jpg", - "response": "A store front with a chalkboard sign outside.", - "id": 34863 - }, - { - "image_path": "G:\\images\\combined\\03bdd70c26ef6e85.jpg", - "response": "a group of people standing outside", - "id": 34864 - }, - { - "image_path": "G:\\images\\combined\\03beecd7a9676cc2.jpg", - "response": "An airplane is on the runway at the airport.", - "id": 34865 - }, - { - "image_path": "G:\\images\\combined\\03bf842c0679a0c2.jpg", - "response": "A bottle of Polo Sport Ralph Lauren cologne is shown in a blue light. The bottle is dark blue and has a silver cap. The words \"POLO Sport\" are displayed on the bottle in white text. The letters \"RL\" are also displayed on the bottle in white text. There is an American flag displayed on the bottle in white and blue.", - "id": 34866 - }, - { - "image_path": "G:\\images\\combined\\03c02d14bdf41096.jpg", - "response": "The image shows a baseball team posing for a group photo.", - "id": 34867 - }, - { - "image_path": "G:\\images\\combined\\03c0b985ec7277f6.jpg", - "response": "In the image there is a wrist watch with a black dial and white hands. The watch has a silver case and is surrounded by many diamonds. The watch has a reflection on the table below it.", - "id": 34868 - }, - { - "image_path": "G:\\images\\combined\\03c0f0166b173fd1.jpg", - "response": "A person is holding a cell phone in their hand. The phone is black and is on display. There are multiple other cell phones on display in the background. Some of these phones are also black. One of the phones is on a table and another is on a stand. A person's hand is visible holding the phone.", - "id": 34869 - }, - { - "image_path": "G:\\images\\combined\\03c18911e05c1417.jpg", - "response": "A white car parked next to a black car in a driveway.", - "id": 34870 - }, - { - "image_path": "G:\\images\\combined\\03c1ae72a9b0b54b.jpg", - "response": "A red double decker bus is driving down a street.", - "id": 34871 - }, - { - "image_path": "G:\\images\\combined\\03c1f7f42d34695d.jpg", - "response": "A man in a top hat and a man in a white shirt are standing on a street corner.", - "id": 34872 - }, - { - "image_path": "G:\\images\\combined\\03c58ee687f2c893.jpg", - "response": "A blue and yellow can of Harem's coffee on a shelf.", - "id": 34873 - }, - { - "image_path": "G:\\images\\combined\\03c60436adf2edc0.jpg", - "response": "A red and white bus is driving down the street.", - "id": 34874 - }, - { - "image_path": "G:\\images\\combined\\03c879ba6da8f33f.jpg", - "response": "A baseball stadium with a large field and many people watching the game.", - "id": 34875 - }, - { - "image_path": "G:\\images\\combined\\03c88ebe3ddda513.jpg", - "response": "A close up of a laptop keyboard with the keys in black and white.", - "id": 34876 - }, - { - "image_path": "G:\\images\\combined\\03c89ec516ce7287.jpg", - "response": "A white van with blue stripes and the letters AT&T on the side.", - "id": 34877 - }, - { - "image_path": "G:\\images\\combined\\03c9a67203d4c3d3.jpg", - "response": "A soccer player wearing a blue uniform with the number 10 on the front.", - "id": 34878 - }, - { - "image_path": "G:\\images\\combined\\03caac31986a9877.jpg", - "response": "A red can of Coca Cola sits on a wooden table.", - "id": 34879 - }, - { - "image_path": "G:\\images\\combined\\03cb96045c9ee90e.jpg", - "response": "A street scene with a crosswalk and traffic lights. There is a building on the corner and a blue and white street sign above the crosswalk. There are three traffic lights hanging from a wire and a row of three traffic lights on a pole.", - "id": 34880 - }, - { - "image_path": "G:\\images\\combined\\03cc01bb5d315b9f.jpg", - "response": "a yellow sign (446,156),(732,478)", - "id": 34881 - }, - { - "image_path": "G:\\images\\combined\\03ccab81d456b73f.jpg", - "response": "A large flat screen TV sitting on a TV stand.", - "id": 34882 - }, - { - "image_path": "G:\\images\\combined\\03cd4987c51f2db9.jpg", - "response": "An image of a clock with several people walking around it.", - "id": 34883 - }, - { - "image_path": "G:\\images\\combined\\03ce438563e99922.jpg", - "response": "A person is holding a can of Kirin lager beer in an airport waiting area. The area has several red chairs and a TV mounted on the wall.", - "id": 34884 - }, - { - "image_path": "G:\\images\\combined\\03ce7772b1c4ec3b.jpg", - "response": "A woman wearing glasses looking at a book on a shelf.", - "id": 34885 - }, - { - "image_path": "G:\\images\\combined\\03ced1a06a5b0d1d.jpg", - "response": "The image is the cover of the children's book Mr. Popper's Penguins. The book is written by Richard and Florence Atwater and illustrated by Robert Lawson. The cover features an illustration of a man standing in front of a large group of penguins. The man is wearing a suit and a top hat, and he is holding a pair of binoculars. The background of the cover is a light blue color.", - "id": 34886 - }, - { - "image_path": "G:\\images\\combined\\03cf788293866e59.jpg", - "response": "The image features two cellphones laying next to each other on a white surface. The left one is a purple-gray device with a camera lens and a small metallic sphere on the back. The right one is a black device with the letters BQ on the back.", - "id": 34887 - }, - { - "image_path": "G:\\images\\combined\\03d06f43f387c3c7.jpg", - "response": "A bottle of white wine by the name of Clos Culombu sits on a wooden table. The label is white with a coat of arms on it. The wine bottle is closed with a twist off cap.", - "id": 34888 - }, - { - "image_path": "G:\\images\\combined\\03d0e5cf77a6f7da.jpg", - "response": "An airplane is sitting on the runway at the airport.", - "id": 34889 - }, - { - "image_path": "G:\\images\\combined\\03d23fa183861516.jpg", - "response": "A collage of two photos, both of which show a gold pocket watch. The watch has a chain attached to it and is open. The front of the watch has a decorative emblem on it. The watch is open and shows the time to be 8:15.", - "id": 34890 - }, - { - "image_path": "G:\\images\\combined\\03d361a362d162c7.jpg", - "response": "A dolly stacked with boxes of windshield wipers.", - "id": 34891 - }, - { - "image_path": "G:\\images\\combined\\03d3665bb6b8cd0e.jpg", - "response": "A baseball player sitting in a chair with the number 20 on his jersey. Another player is standing behind him and talking to him. There are other players standing and sitting in the dugout.", - "id": 34892 - }, - { - "image_path": "G:\\images\\combined\\03d44bd43c7da67f.jpg", - "response": "A desktop computer screen with a variety of different web pages open.", - "id": 34893 - }, - { - "image_path": "G:\\images\\combined\\03d472d99e06db91.jpg", - "response": "A collection of five different kinds of alcohol, possibly whiskeys, are lined up on a table.", - "id": 34894 - }, - { - "image_path": "G:\\images\\combined\\03d475b890e608d7.jpg", - "response": "A yellow school bus parked in a fenced in yard.", - "id": 34895 - }, - { - "image_path": "G:\\images\\combined\\03d537c3d5393594.jpg", - "response": "A digital scale with the number 01 on the screen.", - "id": 34896 - }, - { - "image_path": "G:\\images\\combined\\03d55299d9f9bf52.jpg", - "response": "A fenced in yard with a yellow school bus parked inside.", - "id": 34897 - }, - { - "image_path": "G:\\images\\combined\\03d5f220ff6cb3cc.jpg", - "response": "An opened container of Mountain Dew lip balm sitting on a couch next to a lip balm container with a silver lid.", - "id": 34898 - }, - { - "image_path": "G:\\images\\combined\\03d63d8dc12c8948.jpg", - "response": "An open book with text on it.", - "id": 34899 - }, - { - "image_path": "G:\\images\\combined\\03d7b47ce066b44f.jpg", - "response": "A folded grey t-shirt with red writing on it.", - "id": 34900 - }, - { - "image_path": "G:\\images\\combined\\03d7d53b4dc7a464.jpg", - "response": "A fireplace with a mantle decorated for Halloween. The mantle has cobwebs, skulls, and other spooky decorations. There is a large clock above the mantle and a banner above that says \"Happy Halloween\". There are also some potted plants on the mantle.", - "id": 34901 - }, - { - "image_path": "G:\\images\\combined\\03d881fe27ad3787.jpg", - "response": "A silver creamer with the letters USN on the front.", - "id": 34902 - }, - { - "image_path": "G:\\images\\combined\\03d905bf4fef974b.jpg", - "response": "A toy car is shown in the image. It is a Hot Wheels car and is grey in color. The car has a sleek design with a black roof and red accents on the side. The car has a black stripe on the side and the number 55 is on the door. The car has a black roll bar and black wheels with white rims. The background of the image is white.", - "id": 34903 - }, - { - "image_path": "G:\\images\\combined\\03d924d98a91fe21.jpg", - "response": "A person holding a bottle of Grand Cru.", - "id": 34904 - }, - { - "image_path": "G:\\images\\combined\\03d93d295ceb1b4b.jpg", - "response": "A man sits at a table with a glass of beer in front of him. The beer is a brand called Redhook ESB.", - "id": 34905 - }, - { - "image_path": "G:\\images\\combined\\03da08d40082ee4a.jpg", - "response": "A Yves Saint Laurent compact sits on a white counter. In front of it is a pink square of soap. The compact is wrapped in a black and gold foil. The soap is also wrapped in a plastic wrapper.", - "id": 34906 - }, - { - "image_path": "G:\\images\\combined\\03db92d831e995f0.jpg", - "response": "A car with a license plate that says URBNRL.", - "id": 34907 - }, - { - "image_path": "G:\\images\\combined\\03dc54f3bddd5a57.jpg", - "response": "A display of Revlon Age Defying products, including a bottle and a box, are on a shelf in a store.", - "id": 34908 - }, - { - "image_path": "G:\\images\\combined\\03dccd04e88096dc.jpg", - "response": "A Republic airways airplane is sitting on the runway.", - "id": 34909 - }, - { - "image_path": "G:\\images\\combined\\03dcd57a58305caa.jpg", - "response": "A person holding a pile of coins in front of a machine that says \"Not in Service.\"", - "id": 34910 - }, - { - "image_path": "G:\\images\\combined\\03dcf03028b55e8e.jpg", - "response": "A man wearing a black shirt is standing in front of a large screen. He is gesturing with his hands while speaking. There is a chair next to the man and another one behind him. A clock is mounted on the wall above the man. A laptop is open on a table in front of the man. There are also two cups on the table.", - "id": 34911 - }, - { - "image_path": "G:\\images\\combined\\03dd79e2b71d629b.jpg", - "response": "A calculator that is in a box and the other one is not in a box.", - "id": 34912 - }, - { - "image_path": "G:\\images\\combined\\03de9e234b731b65.jpg", - "response": "A can of food that says \"Cucina\" on it.", - "id": 34913 - }, - { - "image_path": "G:\\images\\combined\\03e02116803b7581.jpg", - "response": "a small green sprout on a red background next to a black measuring tape", - "id": 34914 - }, - { - "image_path": "G:\\images\\combined\\03e1a095bd0af644.jpg", - "response": "A train on the tracks near a forest.", - "id": 34915 - }, - { - "image_path": "G:\\images\\combined\\03e1f9d4a0d592ba.jpg", - "response": "A collection of glass soda bottles on a wooden table.", - "id": 34916 - }, - { - "image_path": "G:\\images\\combined\\03e32a19f90c08b9.jpg", - "response": "an open book with a picture of a man on a horse and the title the Iliad for Boys and Girls", - "id": 34917 - }, - { - "image_path": "G:\\images\\combined\\03e38d16213c4067.jpg", - "response": "A woman is being held on the ground by two police officers.", - "id": 34918 - }, - { - "image_path": "G:\\images\\combined\\03e3bb402e4c2640.jpg", - "response": "A poster for the Revue Fin de Si\u00e8cle, showing a woman in a short dress holding a red umbrella and a sword.", - "id": 34919 - }, - { - "image_path": "G:\\images\\combined\\03e4f5f996475e55.jpg", - "response": "A keyboard with green and yellow keycaps.", - "id": 34920 - }, - { - "image_path": "G:\\images\\combined\\03e506492b162fc5.jpg", - "response": "a silver and black rolex watch on a black and silver stand", - "id": 34921 - }, - { - "image_path": "G:\\images\\combined\\03e6628be52077aa.jpg", - "response": "A bottle of beer next to a glass of beer on a wooden table.", - "id": 34922 - }, - { - "image_path": "G:\\images\\combined\\03e733a91fe4a0fc.jpg", - "response": "A woman wearing white is drinking from a water bottle.", - "id": 34923 - }, - { - "image_path": "G:\\images\\combined\\03e77cd31f9d6306.jpg", - "response": "In the image, a group of people are playing volleyball on a sand court. There are two teams present, one wearing green shirts and the other team wearing blue shirts. One of the players in the green team is hitting the volleyball, which is currently in the air, with his hand. The other players are spread out on the court, ready to respond to the play.", - "id": 34924 - }, - { - "image_path": "G:\\images\\combined\\03e7b2332a8bcd63.jpg", - "response": "A black Rover car parked on the grass with a fence behind it.", - "id": 34925 - }, - { - "image_path": "G:\\images\\combined\\03e97e53b85a1b59.jpg", - "response": "A black and white photo of an old fashioned alarm clock. The clock is in the foreground of the image and is set to 5:50. The background is blurry and features a glass of wine.", - "id": 34926 - }, - { - "image_path": "G:\\images\\combined\\03ea448226c3648f.jpg", - "response": "A man wearing a white t-shirt with a picture of a man on it.", - "id": 34927 - }, - { - "image_path": "G:\\images\\combined\\03eaeff92c411541.jpg", - "response": "A baseball player wearing a blue and white uniform is throwing a ball on a baseball field.", - "id": 34928 - }, - { - "image_path": "G:\\images\\combined\\03eb661090d097e2.jpg", - "response": "A book cover with a picture of a naked rear end and hands.", - "id": 34929 - }, - { - "image_path": "G:\\images\\combined\\03ed7130efdcc73a.jpg", - "response": "A public transit bus parked at a bus stop.", - "id": 34930 - }, - { - "image_path": "G:\\images\\combined\\03ee1c3f5cdc8110.jpg", - "response": "A white and blue airplane on a runway.", - "id": 34931 - }, - { - "image_path": "G:\\images\\combined\\03ee24d8f8fd2997.jpg", - "response": "A fridge filled with many different types of beer.", - "id": 34932 - }, - { - "image_path": "G:\\images\\combined\\03ef0d7a3bd80537.jpg", - "response": "A red van with a black top and a white license plate that says W249 MTT is parked on the street. There is a brick building behind the van. There is a car parked to the right of the van. There is a planter with a plant in front of the building. There is a fire hydrant behind the van.", - "id": 34933 - }, - { - "image_path": "G:\\images\\combined\\03ef38f8a118d5a2.jpg", - "response": "A white board with a lot of writing on it in a foreign language.", - "id": 34934 - }, - { - "image_path": "G:\\images\\combined\\03f1e99749c2c459.jpg", - "response": "A man in a suit standing at a podium with a microphone in front of him.", - "id": 34935 - }, - { - "image_path": "G:\\images\\combined\\03f2254ef7c7b326.jpg", - "response": "A silver and gold Citizen watch with a white face.", - "id": 34936 - }, - { - "image_path": "G:\\images\\combined\\03f29cf338ccbc9c.jpg", - "response": "An orange and white VW van is parked on the grass.", - "id": 34937 - }, - { - "image_path": "G:\\images\\combined\\03f3b58bb0640422.jpg", - "response": "A white Samsung Galaxy Note II smartphone.", - "id": 34938 - }, - { - "image_path": "G:\\images\\combined\\03f3ed4c05b799d5.jpg", - "response": "A couple of trash cans sitting on the sidewalk.", - "id": 34939 - }, - { - "image_path": "G:\\images\\combined\\03f668572ba2e0d2.jpg", - "response": "A white police truck with red and green stripes is parked on the side of the road.", - "id": 34940 - }, - { - "image_path": "G:\\images\\combined\\03f69a81801d5fd7.jpg", - "response": "an airplane on the runway(193,120),(963,723)", - "id": 34941 - }, - { - "image_path": "G:\\images\\combined\\03f6d60b8a017ef7.jpg", - "response": "A black and silver cellphone sitting on a white counter.", - "id": 34942 - }, - { - "image_path": "G:\\images\\combined\\03fca35cfc0ca9a3.jpg", - "response": "The image features two identical glasses sitting side by side. The glasses are clear and made of glass. They are both empty and have a simple design with no decorations. The glasses are large and have rounded edges. They are shaped like a beaker and have a wide base and a smaller opening at the top. The glasses are labeled with a scale that goes from left to right, labeled as follows: denial, anger, bargaining, depression, and acceptance.", - "id": 34943 - }, - { - "image_path": "G:\\images\\combined\\03fde5bfd1507873.jpg", - "response": "A bottle of JosephsBrau Vienna Style Lager next to a filled glass of beer.", - "id": 34944 - }, - { - "image_path": "G:\\images\\combined\\03fef707e1f28f43.jpg", - "response": "A bottle of Chateau du Pape Reserve 2006 sits on a table next to a wine glass.", - "id": 34945 - }, - { - "image_path": "G:\\images\\combined\\0400427db40fc372.jpg", - "response": "The image shows a group of women wearing blue and white uniforms, huddled together and celebrating. They are all softball players and seem to be having a great time.", - "id": 34946 - }, - { - "image_path": "G:\\images\\combined\\0400dd1a4bb1cb4c.jpg", - "response": "The image shows a store shelf filled with a variety of bottles of beer. There are at least twelve bottles visible, arranged in three rows of four bottles each, and two additional bottles on the far right. The bottles come in different shapes and sizes, and some are labeled with orange or purple stickers. The bottles are displayed on a white shelf, and the background of the store is white and gray. There are also several price tags in front of the bottles, indicating their prices.", - "id": 34947 - }, - { - "image_path": "G:\\images\\combined\\04011c8c335c4b67.jpg", - "response": "A person holding a white iPhone with a Mophie case on it.", - "id": 34948 - }, - { - "image_path": "G:\\images\\combined\\04015f9a28fd86a6.jpg", - "response": "A box of Teapigs Liquorice and Peppermint tea temples on a table.", - "id": 34949 - }, - { - "image_path": "G:\\images\\combined\\04035c9639831242.jpg", - "response": "A desk with three laptops on it, all next to each other.", - "id": 34950 - }, - { - "image_path": "G:\\images\\combined\\0405fb37c9c7d955.jpg", - "response": "A man stands on a platform next to a train.", - "id": 34951 - }, - { - "image_path": "G:\\images\\combined\\040639f9fd39bd13.jpg", - "response": "A woman and a child in a room.", - "id": 34952 - }, - { - "image_path": "G:\\images\\combined\\0406f8dafc4baa45.jpg", - "response": "A black and white ad for Eterna watches.", - "id": 34953 - }, - { - "image_path": "G:\\images\\combined\\04073815643bb675.jpg", - "response": "A table with four soda bottles on it.", - "id": 34954 - }, - { - "image_path": "G:\\images\\combined\\04076b0e2372aafb.jpg", - "response": "A woman with a cast on her leg sitting in a shopping cart in a store.", - "id": 34955 - }, - { - "image_path": "G:\\images\\combined\\040834237a7aab4a.jpg", - "response": "A large clock with roman numerals and a sun symbol in the middle.", - "id": 34956 - }, - { - "image_path": "G:\\images\\combined\\040867934b54eefb.jpg", - "response": "A busy street scene at night with a yellow taxi cab driving by.", - "id": 34957 - }, - { - "image_path": "G:\\images\\combined\\0409b75adb5a783e.jpg", - "response": "A man standing behind a table with several bottles of wine on it.", - "id": 34958 - }, - { - "image_path": "G:\\images\\combined\\040b4cd0a57ea8c3.jpg", - "response": "a man standing in a boxing ring holding a championship belt", - "id": 34959 - }, - { - "image_path": "G:\\images\\combined\\040c21014043b7c5.jpg", - "response": "An old ambulance is parked in a field with many other old cars.", - "id": 34960 - }, - { - "image_path": "G:\\images\\combined\\040d25a99e7b675b.jpg", - "response": "A white Jesus Kingdom City van is parked in front of a brick building. The building has a wooden door and a large sign on the brick wall. There is a bench in front of the building and a person standing on the sidewalk.", - "id": 34961 - }, - { - "image_path": "G:\\images\\combined\\040dd83167dc3a07.jpg", - "response": "A large scoreboard at a baseball stadium shows the player Miguel Cabrera.", - "id": 34962 - }, - { - "image_path": "G:\\images\\combined\\040e0ec637e99ec1.jpg", - "response": "A large electronic scoreboard displays the final round of a golf tournament.", - "id": 34963 - }, - { - "image_path": "G:\\images\\combined\\040f1c32ca5ee836.jpg", - "response": "A man in a black shirt is presenting an award to a man in a blue and white uniform.", - "id": 34964 - }, - { - "image_path": "G:\\images\\combined\\040f95aa4701b2ef.jpg", - "response": "A basketball game is being played in a dark arena. The scoreboard is large and is displaying the game's score. There are two players on the court, one in white and one in purple. The white player is holding a basketball. The crowd is watching the game intently. There are many people in the arena, filling the seats and standing in the aisles. The arena is dark, but there are bright lights shining on the court.", - "id": 34965 - }, - { - "image_path": "G:\\images\\combined\\041012646c9270ac.jpg", - "response": "A yellow sign that says End Daytime Headlight Use Thank You.", - "id": 34966 - }, - { - "image_path": "G:\\images\\combined\\041026a62ca6eb2e.jpg", - "response": "A pink bus driving down a street next to a subway.", - "id": 34967 - }, - { - "image_path": "G:\\images\\combined\\041064166ed07b11.jpg", - "response": "A store display for TNT fireworks. There are two large boxes of fireworks, one on the left and one on the right. The left box is mostly red and says \"Celebrate\" in red and yellow. The right box is red, white, and blue and says \"TNT\" in red and blue. There is a large TNT sign above the boxes. In the background, there are other boxes of fireworks and a sign for Fred Meyer.", - "id": 34968 - }, - { - "image_path": "G:\\images\\combined\\041113a702226b63.jpg", - "response": " Non league football match(11,37),(982,978). Ball(71,791),(171,926) is on the ground.", - "id": 34969 - }, - { - "image_path": "G:\\images\\combined\\04124002d8fe8d90.jpg", - "response": "A baseball game is being played in a stadium with many fans in the stands. The players are on the field and one is at third base.", - "id": 34970 - }, - { - "image_path": "G:\\images\\combined\\0412e8d3620f5239.jpg", - "response": "A man standing in front of a white board giving a presentation.", - "id": 34971 - }, - { - "image_path": "G:\\images\\combined\\041367a6f6a5920a.jpg", - "response": "A bookshelf with many books on it.", - "id": 34972 - }, - { - "image_path": "G:\\images\\combined\\0413b2bcad5b3579.jpg", - "response": "A man looking at a computer screen with a list of documents on it.", - "id": 34973 - }, - { - "image_path": "G:\\images\\combined\\0415157b045c6320.jpg", - "response": "a tv screen with a cartoon on it that says ANA Happy Holidays", - "id": 34974 - }, - { - "image_path": "G:\\images\\combined\\0415c220e83ffad6.jpg", - "response": "A glass of beer next to a bottle of beer on a wooden table.", - "id": 34975 - }, - { - "image_path": "G:\\images\\combined\\04161f5b9aa29cdb.jpg", - "response": "A woman wearing a white shirt and black pants is standing in a store.", - "id": 34976 - }, - { - "image_path": "G:\\images\\combined\\04164838a35c4dad.jpg", - "response": "A bottle of Hoegaarden next to a glass filled with the beer.", - "id": 34977 - }, - { - "image_path": "G:\\images\\combined\\041794861439fbc4.jpg", - "response": "a book with a cover of people on a boat at night", - "id": 34978 - }, - { - "image_path": "G:\\images\\combined\\04189b11591ccab5.jpg", - "response": "A poster for an event called Focus Left. The main text is in white and is set against a red background. The text is in the shape of a camera lens. The word Focus is on the left and the word Left is on the right. The event is called The Daches and is taking place on Tuesday November 9th at 7:30pm. There is a phone number and an email address for more information. The phone number is 0141 552 1000 and the email address is www.thearches.co.uk. There is also a platform for short filmmakers to showcase their work focusing on films which use elements of live performance along with the screening.", - "id": 34979 - }, - { - "image_path": "G:\\images\\combined\\0419c0921285f053.jpg", - "response": "A blue bus is parked in a parking lot with other buses.", - "id": 34980 - }, - { - "image_path": "G:\\images\\combined\\041b75da34d147c1.jpg", - "response": "A brick road with two trash bins sitting on it. The trash bins are white and have black graffiti on them. One of the trash bins has the words \"I'm With Stupid\" written on it.", - "id": 34981 - }, - { - "image_path": "G:\\images\\combined\\041b97c22e471715.jpg", - "response": "A man and a woman are on the cover of a magazine called Detective Stories. The woman is wearing a yellow dress and has red hair. She is on top of the man, who is wearing an orange jacket and a blue tie. They both have expressions of intense fear. The man is holding a gun in each hand. The gun in his right hand is pointed at the woman. The gun in his left hand is pointed at the ground. The magazine is priced at 25 cents.", - "id": 34982 - }, - { - "image_path": "G:\\images\\combined\\041bf5b780cadd64.jpg", - "response": "A painting of a man sitting on a bench with a dog, both fishing on a lake.", - "id": 34983 - }, - { - "image_path": "G:\\images\\combined\\041daf1caca34a6a.jpg", - "response": "The image shows a soccer match in progress with a crowd of fans watching the game. The players are wearing red and white uniforms and are on the field playing soccer.", - "id": 34984 - }, - { - "image_path": "G:\\images\\combined\\041dbf701bfdcf90.jpg", - "response": "In the image, two basketball players are competing on the court. One player is wearing a white jersey and is dribbling a basketball while the other player is trying to block him. Both players have numbers on their backs, with the player in the white jersey having the number 35 and the player in the black jersey having the number 15.", - "id": 34985 - }, - { - "image_path": "G:\\images\\combined\\041ec086412e6d2f.jpg", - "response": "A close up of a cell phone and a sim card.", - "id": 34986 - }, - { - "image_path": "G:\\images\\combined\\041fdbfffee6abf5.jpg", - "response": "A pair of Casio Baby-G watches, one in yellow and one in pink, are shown on a wooden table. The yellow watch has a digital display with a white face and is covered in a light yellow band. The pink watch has a digital display with a white face and is covered in a light pink band. Both watches have the Casio logo on the face of the watch.", - "id": 34987 - }, - { - "image_path": "G:\\images\\combined\\04200d2abd0d0ad4.jpg", - "response": "Three people are sitting at a table.", - "id": 34988 - }, - { - "image_path": "G:\\images\\combined\\0420cc0fd3d5c48b.jpg", - "response": "A football locker room with a yellow and black uniform on a hook, a helmet on a hook above it, and a bench with more uniforms and shoes on it.", - "id": 34989 - }, - { - "image_path": "G:\\images\\combined\\0421017b27bf1b7e.jpg", - "response": "A table with a plate of food, a glass of beer, and a bottle of beer on it.", - "id": 34990 - }, - { - "image_path": "G:\\images\\combined\\04227bf3dded146f.jpg", - "response": "A vintage ad for a motorhome with two models, one 21 feet and one 27 feet. The text is black and white.", - "id": 34991 - }, - { - "image_path": "G:\\images\\combined\\0423c72e589a6638.jpg", - "response": "A man holding a cell phone in one hand and has a piece of candy in his mouth that says \"Text Me\" on it.", - "id": 34992 - }, - { - "image_path": "G:\\images\\combined\\0423d0352b712774.jpg", - "response": "A man wearing a red shirt and a man wearing a black sweatshirt are sitting in front of a computer screen. The computer screen is on and features the Google logo. There is a book next to the computer screen and a remote control in front of the men.", - "id": 34993 - }, - { - "image_path": "G:\\images\\combined\\0424168372e0a1b3.jpg", - "response": "A book with a red cover and the title \"Great Truths From God's Word\" sits open on a table. The book is about Systematic Theology and was written by Dr. Harold Willmington.", - "id": 34994 - }, - { - "image_path": "G:\\images\\combined\\0427bfe728325752.jpg", - "response": "A Coca-Cola delivery truck is parked on the side of a busy street.", - "id": 34995 - }, - { - "image_path": "G:\\images\\combined\\0429f84e64fde002.jpg", - "response": "A close up of three wine bottles on a table.", - "id": 34996 - }, - { - "image_path": "G:\\images\\combined\\042a6c10ce6fc9bc.jpg", - "response": "A person is holding an iPhone in their hand.", - "id": 34997 - }, - { - "image_path": "G:\\images\\combined\\042eb9b918de8046.jpg", - "response": "A sign on a pole warning against drinking alcohol in the designated area.", - "id": 34998 - }, - { - "image_path": "G:\\images\\combined\\042f7a2bca5d443b.jpg", - "response": "In the image there is a black smartphone and a blue stylus pen. The smartphone is an iPhone 4S and it is laying on its side. The stylus pen has a white body with a blue tip. It also has a rubber end and a cable attached to it. The cable is black and has a white ring at the end. The whole scene is set on a white background.", - "id": 34999 - }, - { - "image_path": "G:\\images\\combined\\04300b302e117981.jpg", - "response": "The image shows a collection of stop signs lined up next to each other. There are eight stop signs in total, and they are all red with white lettering. Some of the signs have black poles, while others have white poles. The signs are displayed in front of a large building and some rocks.", - "id": 35000 - }, - { - "image_path": "G:\\images\\combined\\0430a0f820c32887.jpg", - "response": "The image is a black and white photograph of a man in a suit handing a bag to a pilot of a small propeller plane. The plane says \"First Flight Air Mail\" on the side. There are two other men standing next to the pilot, and another man standing further back.", - "id": 35001 - }, - { - "image_path": "G:\\images\\combined\\04313abab1b6b4f2.jpg", - "response": "The image shows a baseball player wearing a blue uniform standing on a baseball field. The player is holding a baseball glove and is talking to another man who is wearing sunglasses. The baseball field has a grassy area and a dirt infield. There are several people scattered around the field, some of them are standing and some are sitting. A few baseballs are also visible in the scene.", - "id": 35002 - }, - { - "image_path": "G:\\images\\combined\\043155703315ea46.jpg", - "response": "A billboard with a man holding a microphone on it.", - "id": 35003 - }, - { - "image_path": "G:\\images\\combined\\0431ba997afecda0.jpg", - "response": "A busy city street with tall buildings and palm trees lining the sidewalks.", - "id": 35004 - }, - { - "image_path": "G:\\images\\combined\\043261edd9757b55.jpg", - "response": "A close up of a silver coin with an eagle on it.", - "id": 35005 - }, - { - "image_path": "G:\\images\\combined\\04337563e7b1d18e.jpg", - "response": "A gold and silver Breitling Bentley watch on a dark surface.", - "id": 35006 - }, - { - "image_path": "G:\\images\\combined\\0434ea33f3f9999f.jpg", - "response": "A close up of a laptop with a screen that says \"crazyegg. Ask us about our schwag\"", - "id": 35007 - }, - { - "image_path": "G:\\images\\combined\\0436d85c47531316.jpg", - "response": "A coin with the profile of a man on it.", - "id": 35008 - }, - { - "image_path": "G:\\images\\combined\\0437802ef3dee315.jpg", - "response": "A pair of glasses with the word Hapter on the arm of them.", - "id": 35009 - }, - { - "image_path": "G:\\images\\combined\\043a59888f5bcb7b.jpg", - "response": "A store with wooden shelves filled with cleaning supplies.", - "id": 35010 - }, - { - "image_path": "G:\\images\\combined\\043b0ecb06fe4449.jpg", - "response": "An indoor basketball court with a large crowd of people watching the game. There are confetti and streamers strewn about the arena.", - "id": 35011 - }, - { - "image_path": "G:\\images\\combined\\043b140b45cda4e4.jpg", - "response": "A woman in an orange jacket pointing at a pink wall with the words Cupcake ATM.", - "id": 35012 - }, - { - "image_path": "G:\\images\\combined\\043dfe75266e1ac2.jpg", - "response": "The image shows a close up of the 2006 American Eagle silver dollar. The word \"Liberty\" is visible on the coin, along with the year \"2006\" and the word \"In God We Trust\" are also visible. The coin features an eagle and an olive branch.", - "id": 35013 - }, - { - "image_path": "G:\\images\\combined\\043ee67c7fb0a91a.jpg", - "response": "a desk with a pile of papers and notebooks on it", - "id": 35014 - }, - { - "image_path": "G:\\images\\combined\\04405957b0778fbb.jpg", - "response": "A stop sign on a city street corner at night.", - "id": 35015 - }, - { - "image_path": "G:\\images\\combined\\0440cabbf960c367.jpg", - "response": "A green and white bus is driving down a city street.", - "id": 35016 - }, - { - "image_path": "G:\\images\\combined\\0440e04be90d5cc6.jpg", - "response": "a large sign that reads welcome to Ohio", - "id": 35017 - }, - { - "image_path": "G:\\images\\combined\\04417c13e509eb1e.jpg", - "response": "A man dressed as a security guard is sticking his head out of a red telephone box. He is wearing a black jacket and a black hat. The telephone box is red and has a sign above the window that says \"Telephone\". There is a crowd of people walking around him and the background. Some of them are wearing backpacks. The sky is blue and there are a few clouds.", - "id": 35018 - }, - { - "image_path": "G:\\images\\combined\\0442ab5ce00a56fa.jpg", - "response": "A watch with a sundial on the face of it.", - "id": 35019 - }, - { - "image_path": "G:\\images\\combined\\04433c9aa7f56be9.jpg", - "response": "The image shows two men wearing baseball jerseys, one with the name Gwynn on it and the other with the name Ripken on it. The Gwynn jersey has the number 19 on the back and the Ripken jersey has the number 3 on the back. Both men are wearing their baseball caps backwards. In the background, there are other people wearing baseball caps.", - "id": 35020 - }, - { - "image_path": "G:\\images\\combined\\0443cb53ea29b2b7.jpg", - "response": "Two black android mobile phones side by side. Each phone displays a Google search result for the term \"Organic Farming\". The first phone's search result is for Digital Inspiration's article on the topic. The second phone's search result is for a page from the official website of the Organic Farming Institute.", - "id": 35021 - }, - { - "image_path": "G:\\images\\combined\\0444d36fbc4d2900.jpg", - "response": "A laptop computer screen with a webpage open.", - "id": 35022 - }, - { - "image_path": "G:\\images\\combined\\04460d99f936e5fe.jpg", - "response": " A football player(290,4),(801,999) holding a trophy(34,522),(556,945) with another player(628,99),(995,988) standing next to him", - "id": 35023 - }, - { - "image_path": "G:\\images\\combined\\04482f0e8b1b3ce8.jpg", - "response": "A woman in a kitchen preparing food on a stove.", - "id": 35024 - }, - { - "image_path": "G:\\images\\combined\\044888194de7e558.jpg", - "response": "A black and white cat laying on a bed next to a laptop.", - "id": 35025 - }, - { - "image_path": "G:\\images\\combined\\0448987c2d13acb4.jpg", - "response": "A busy city street at night with cars, bicycles, and pedestrians. There are many traffic lights scattered throughout the scene. A man and woman are walking down the street, the woman is looking at her phone. There are a few taxis on the street. In the background, there are many signs on the buildings.", - "id": 35026 - }, - { - "image_path": "G:\\images\\combined\\0448fd2dcc67e8d7.jpg", - "response": "A brown and white van with graffiti on the side.", - "id": 35027 - }, - { - "image_path": "G:\\images\\combined\\0449a7e52afd9aca.jpg", - "response": "The image shows a large collection of road signs with various destinations and directions. There are at least 13 signs in total, including interstates 421, 87, 78, and 422, as well as a sign for a gas station. The signs are displayed on a pole and are in different shapes and sizes. Some signs have arrows pointing left, right, or both ways. The signs are written in English and provide guidance to drivers on how to get to their desired destinations.", - "id": 35028 - }, - { - "image_path": "G:\\images\\combined\\0449ea367775e166.jpg", - "response": "A dalmatian dog is on the box of a product called Tagg. The dog is wearing the Tagg pet tracker on its collar. The box is on a white surface.", - "id": 35029 - }, - { - "image_path": "G:\\images\\combined\\044b07548ef2fe24.jpg", - "response": "A man wearing a shirt that says SISU is standing in front of a banner that says Hero 2014.", - "id": 35030 - }, - { - "image_path": "G:\\images\\combined\\044fa64086bf0a66.jpg", - "response": "In the image, a man is standing in front of a counter with a large fish on it. He is holding a large knife and is in the process of cutting the fish. The man is wearing a black jacket and a red hat. There are several boxes stacked up next to the counter and a sign above the counter that says \"World Famous\". There are also several signs hanging from the ceiling of the building. In the background, there are other people standing around.", - "id": 35031 - }, - { - "image_path": "G:\\images\\combined\\045003b55a944c47.jpg", - "response": "In the image, there is a young man standing in front of a display of mouthwash at a store. The store is a pharmacy and is called Rexall. The man is smiling and has a camera around his neck. There are multiple bottles of mouthwash on the shelves behind him, including brands like Listerine, Aquafresh, and Scope. Some of the bottles are large and some are smaller. There are also some boxes on the shelves. In the background, there are other people shopping in the store.", - "id": 35032 - }, - { - "image_path": "G:\\images\\combined\\04504c6e68b60236.jpg", - "response": "A counter with two cans of beans on it.", - "id": 35033 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.876efdbcbc3951e21bdb108792a7fe3e.jpg", - "response": "In the image there is a woman pushing a luggage cart with a toddler sitting on top of the luggage. The toddler is wearing a black and white striped hoodie and has a black mask covering their mouth and nose. They also have a yellow raincoat on. The woman pushing the cart has a black mask on and is wearing a tan jacket. She also has a black bag on her shoulder. The cart has two green suitcases and a red one. In the background there is a person walking with a black bag in their hand. To the far left of the image there is a person walking with their hand in their pocket. To the far right of the image there is a grey door with the letters B2c on it.", - "id": 35034 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.c053f5d694db8076b9d9f96e8ad56dbb.jpg", - "response": "A family with a child wearing a face mask, pushing a luggage cart with two suitcases at the airport.", - "id": 35035 - }, - { - "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.e9b1368cd7fd34d1f6c56f5fa3173415.jpg", - "response": "A family of three, a mother, father and child, all wearing protective masks, push their luggage through the airport.", - "id": 35036 - }, - { - "image_path": "G:\\images\\combined\\04518da6e76f5cad.jpg", - "response": "A small assortment of Calvin Klein fragrances in a small black box.", - "id": 35037 - }, - { - "image_path": "G:\\images\\combined\\045253fa10edd1a4.jpg", - "response": "A black laptop sitting on top of a pink stand.", - "id": 35038 - }, - { - "image_path": "G:\\images\\combined\\0452b4bb991a1941.jpg", - "response": "A stack of books with German writing on the spines.", - "id": 35039 - }, - { - "image_path": "G:\\images\\combined\\0454857dc644512c.jpg", - "response": "An old bottle of Moth Dep is sitting on a concrete floor. The bottle is almost empty and has a black label with a fly on it. The bottle has a screw on cap and the words Moth Dep are written on the bottle.", - "id": 35040 - }, - { - "image_path": "G:\\images\\combined\\04570d4010283f6b.jpg", - "response": "A highway sign for 97 North and Crater Lake Bend.", - "id": 35041 - }, - { - "image_path": "G:\\images\\combined\\045879ea197c81c0.jpg", - "response": "In the image there is a table with several glasses filled with water and a lit candle in the middle. The candle has an A and O symbol on it.", - "id": 35042 - }, - { - "image_path": "G:\\images\\combined\\045884a48efbc3bc.jpg", - "response": "A computer monitor with Yahoo on the screen.", - "id": 35043 - }, - { - "image_path": "G:\\images\\combined\\0459d85ff87ea745.jpg", - "response": "A display case with a vintage cabbage patch doll sitting next to a book called \"How to Tell Time\". The doll is wearing a pink dress and has brown hair.", - "id": 35044 - }, - { - "image_path": "G:\\images\\combined\\045a2d11c9896291.jpg", - "response": "A chalkboard with writing on it and a drawing of a man.", - "id": 35045 - }, - { - "image_path": "G:\\images\\combined\\045b5f7f4138d671.jpg", - "response": "A sound mixing board with a large number of buttons and switches.", - "id": 35046 - }, - { - "image_path": "G:\\images\\combined\\045beef8d828d4a1.jpg", - "response": "A bottle of A1 steak sauce sitting on a stove next to a bottle of oil.", - "id": 35047 - }, - { - "image_path": "G:\\images\\combined\\045c3bb25c6c57ff.jpg", - "response": "A glass of Alaskan Pale next to a can of Keesari 66 American Pale Ale.", - "id": 35048 - }, - { - "image_path": "G:\\images\\combined\\045c87545dd0a0aa.jpg", - "response": "A woman standing in front of a pile of pizza boxes, holding a slice of pizza.", - "id": 35049 - }, - { - "image_path": "G:\\images\\combined\\045d876ee0128ea2.jpg", - "response": "A baseball player is up to bat on a field.", - "id": 35050 - }, - { - "image_path": "G:\\images\\combined\\045e2f6f4b41fd53.jpg", - "response": "A bottle of Frenchman's beer sits on a counter next to a stove.", - "id": 35051 - }, - { - "image_path": "G:\\images\\combined\\045e6da6fd7f6fb0.jpg", - "response": "A van with a blue and yellow stripe on the side.", - "id": 35052 - }, - { - "image_path": "G:\\images\\combined\\045ebe381e4c7c5a.jpg", - "response": "A record album cover for J.S. Bach (2) Organ Works.", - "id": 35053 - }, - { - "image_path": "G:\\images\\combined\\045f38445261b7b0.jpg", - "response": "A street with cars parked on the side and a white van parked across the street. There are houses on the left side of the street and a fence along the sidewalk.", - "id": 35054 - }, - { - "image_path": "G:\\images\\combined\\045fae80de7ded9e.jpg", - "response": "A person holding a quarter in their hand. The quarter has a picture of a woman on it and the year 1996.", - "id": 35055 - }, - { - "image_path": "G:\\images\\combined\\0460bcb669cfb9c1.jpg", - "response": "A book cover with the title \"D\u00e9civilisation\" written in gold font. The cover is black and white, and features a photo of a road running parallel to the ocean. The road has a white stripe down the middle, and the ocean is a dark grey color. The author's name, Renaud Camus, is written in small white font at the top of the cover.", - "id": 35056 - }, - { - "image_path": "G:\\images\\combined\\0461cddb4f0a6d44.jpg", - "response": "A billboard with a man on it is seen in the distance.", - "id": 35057 - }, - { - "image_path": "G:\\images\\combined\\046210929f901830.jpg", - "response": "A bottle of Smirnoff vodka and a bottle of Kahlua are on a counter next to a glass filled with ice and a brown liquid.", - "id": 35058 - }, - { - "image_path": "G:\\images\\combined\\0463019e2583eaad.jpg", - "response": "a car on a street (92,363),(832,778)", - "id": 35059 - }, - { - "image_path": "G:\\images\\combined\\0464a1dafaa33d6d.jpg", - "response": "A person holding a small box with the Intel NUC logo on it. The box is blue and has a small Intel processor inside.", - "id": 35060 - }, - { - "image_path": "G:\\images\\combined\\046755bc157991a6.jpg", - "response": "A wine tasting event for Cape Mentelle wines.", - "id": 35061 - }, - { - "image_path": "G:\\images\\combined\\04677496a07ad15f.jpg", - "response": "A brown book with gold writing and a gold decorative border.", - "id": 35062 - }, - { - "image_path": "G:\\images\\combined\\04693a7b63e32cf7.jpg", - "response": "a black helmet with a silver emblem on it", - "id": 35063 - }, - { - "image_path": "G:\\images\\combined\\046b85a27098c135.jpg", - "response": "A mural of people planting potatoes on the side of a building.", - "id": 35064 - }, - { - "image_path": "G:\\images\\combined\\046be154a29204c7.jpg", - "response": "A person holding a bottle of Atomic Pale Ale.", - "id": 35065 - }, - { - "image_path": "G:\\images\\combined\\046d67caf75be1d5.jpg", - "response": "A person holding a large screened smart device.", - "id": 35066 - }, - { - "image_path": "G:\\images\\combined\\046d94cb24a190f8.jpg", - "response": "A row of different energy drinks on a blue shelf.", - "id": 35067 - }, - { - "image_path": "G:\\images\\combined\\0471a50503f5bde8.jpg", - "response": "A bottle of Chateau du Croc wine on a wooden table.", - "id": 35068 - }, - { - "image_path": "G:\\images\\combined\\0472e069e5ad0243.jpg", - "response": "A green and silver train is on the tracks.", - "id": 35069 - }, - { - "image_path": "G:\\images\\combined\\04750d0d531a2b89.jpg", - "response": "The soccer teams are lined up before the game.", - "id": 35070 - }, - { - "image_path": "G:\\images\\combined\\0478a1e3f77600df.jpg", - "response": "A group of young men playing basketball in a gym.", - "id": 35071 - }, - { - "image_path": "G:\\images\\combined\\0479b034bd1d95f6.jpg", - "response": "A traffic officer vehicle is parked on the side of the road.", - "id": 35072 - }, - { - "image_path": "G:\\images\\combined\\0479fc1e2ed29881.jpg", - "response": "A colorful passenger bus is driving down the street.", - "id": 35073 - }, - { - "image_path": "G:\\images\\combined\\047a0a11e087b2df.jpg", - "response": "A sign for the Yardley Wood Park & Ride is shown on a pole.", - "id": 35074 - }, - { - "image_path": "G:\\images\\combined\\047a50e898503aae.jpg", - "response": "In the image there is a person wearing a red and black uniform playing soccer. They are kicking a soccer ball on a field.", - "id": 35075 - }, - { - "image_path": "G:\\images\\combined\\047aa1c75ca83280.jpg", - "response": "The Seventh Letter art piece on display next to a graffiti painting of a man with a gun.", - "id": 35076 - }, - { - "image_path": "G:\\images\\combined\\047cbb95fbc2434d.jpg", - "response": "A black and silver watch on a black and green surface.", - "id": 35077 - }, - { - "image_path": "G:\\images\\combined\\047d7772e616cbc5.jpg", - "response": "A large billboard advertisement for a store called Heel Addiction.", - "id": 35078 - }, - { - "image_path": "G:\\images\\combined\\047e5fbd2bf76876.jpg", - "response": "A stamp on a piece of mail with a picture of a man in red handing money to a child.", - "id": 35079 - }, - { - "image_path": "G:\\images\\combined\\047efe4a7f176cca.jpg", - "response": "The back of a car with a license plate that says \"Future Ford\" on it.", - "id": 35080 - }, - { - "image_path": "G:\\images\\combined\\047f55a198882d7c.jpg", - "response": "A city street at night with a tunnel and multiple traffic signs.", - "id": 35081 - }, - { - "image_path": "G:\\images\\combined\\047fc464e23ef72e.jpg", - "response": "The image features a white table covered in various makeup items. There are several red roses scattered around the table, with a cluster of them in the top left corner. A book with the title \"Happy Valentine\" is open on the table, placed in the top right corner. A bouquet of red roses is also present on the table, with a single red rose in the middle of the bouquet.", - "id": 35082 - }, - { - "image_path": "G:\\images\\combined\\04803895d45eab1e.jpg", - "response": "In the image there is a bottle of JAC Vapour Spearmint e-liquid and a silver eGo style atomizer sitting on a white counter. The bottle of e-liquid is open and has a white cap with a plastic dropper. The label on the bottle is white with red and black writing. The atomizer is made of stainless steel and has a window in the side to show the amount of e-liquid inside.", - "id": 35083 - }, - { - "image_path": "G:\\images\\combined\\0480a6034f35ac0a.jpg", - "response": "A white car with a license plate that says UR SO QT.", - "id": 35084 - }, - { - "image_path": "G:\\images\\combined\\0480c08390f4641e.jpg", - "response": "A barrel that says do not enter private property is sitting in a parking lot.", - "id": 35085 - }, - { - "image_path": "G:\\images\\combined\\0482353455f698a0.jpg", - "response": "a man running in a race", - "id": 35086 - }, - { - "image_path": "G:\\images\\combined\\04843fecd87e6e73.jpg", - "response": "An iPod Nano with a screen that says \"Don't steal music.\" in multiple languages.", - "id": 35087 - }, - { - "image_path": "G:\\images\\combined\\0485186acd3d57ed.jpg", - "response": "A person is holding a caliper over a green background. The caliper is measuring a silver ring that is being held. The measurement is 29.4.", - "id": 35088 - }, - { - "image_path": "G:\\images\\combined\\0486a158aa01b171.jpg", - "response": "a drawing of a man and a snowman", - "id": 35089 - }, - { - "image_path": "G:\\images\\combined\\048861579d49cdec.jpg", - "response": "a desk with a coffee mug and a coaster on it.", - "id": 35090 - }, - { - "image_path": "G:\\images\\combined\\04889f6aaddad68f.jpg", - "response": "A store shelf filled with bottles of coke.", - "id": 35091 - }, - { - "image_path": "G:\\images\\combined\\048ae9f1adca1528.jpg", - "response": "A book cover for the novel Manhounds of Antares, by Alan Burt Akers. The cover art is black and red, and depicts a scene of two figures fighting on a ship. One figure is holding a sword and wearing red, while the other is wearing blue and holding a gun. They are both standing on the deck of a ship, which has a ladder going up to a cave entrance. The sky above is yellow and orange.", - "id": 35092 - }, - { - "image_path": "G:\\images\\combined\\048e6f8bd215e50c.jpg", - "response": "A stop sign and a street sign are shown in the dark.", - "id": 35093 - }, - { - "image_path": "G:\\images\\combined\\0490f2e15002050a.jpg", - "response": "A counter with a variety of ingredients including flour, sugar, eggs, butter, and vanilla extract.", - "id": 35094 - }, - { - "image_path": "G:\\images\\combined\\04915967aaf19826.jpg", - "response": "A kitchen with a sink full of dishes, a counter with a drying rack and a couple of bowls.", - "id": 35095 - }, - { - "image_path": "G:\\images\\combined\\0491be7da91762ca.jpg", - "response": "A cardboard box with a sticker that says fragile on it.", - "id": 35096 - }, - { - "image_path": "G:\\images\\combined\\0491f25623dc825e.jpg", - "response": "A poster on a wall that says 2011 March 11 on it.", - "id": 35097 - }, - { - "image_path": "G:\\images\\combined\\04924b243ce19811.jpg", - "response": "A poster for Mobilcom Debietel is displayed on a wall.", - "id": 35098 - }, - { - "image_path": "G:\\images\\combined\\0492e3bd20fbe0eb.jpg", - "response": "A blue clock with a white floral pattern around the outside. The face of the clock is decorated with blue flowers. The hands of the clock are black with a red second hand.", - "id": 35099 - }, - { - "image_path": "G:\\images\\combined\\0492ee5ac9a69515.jpg", - "response": "A silver and orange airplane with a propeller is on the runway.", - "id": 35100 - }, - { - "image_path": "G:\\images\\combined\\04941d8b535f05df.jpg", - "response": "a man in a car(469,720),(586,905)", - "id": 35101 - }, - { - "image_path": "G:\\images\\combined\\0494e96d9c3423fe.jpg", - "response": "A man and a child are standing next to a parking sign. The child is pointing at the sign. The sign is black and white and has a large P on it. The man is wearing a leather jacket. There are motorcycles in the background.", - "id": 35102 - }, - { - "image_path": "G:\\images\\combined\\0494ee3501adf70e.jpg", - "response": "A large screen television showing a group of men wearing England shirts.", - "id": 35103 - }, - { - "image_path": "G:\\images\\combined\\049503c6252a8e6c.jpg", - "response": "On the wall, there are two clocks. One is labeled London and the other is labeled Providence. The clock labeled London is on the right side of the wall.", - "id": 35104 - }, - { - "image_path": "G:\\images\\combined\\0496755d121f3a3e.jpg", - "response": "A black and white photo of a Sapporo beer can.", - "id": 35105 - }, - { - "image_path": "G:\\images\\combined\\049a096238c284df.jpg", - "response": "An indoor shopping mall with clothing stores on both sides of the aisle.", - "id": 35106 - }, - { - "image_path": "G:\\images\\combined\\049a18ff9fabd09a.jpg", - "response": "A billboard with a message written in Spanish.", - "id": 35107 - }, - { - "image_path": "G:\\images\\combined\\049aa723a278c2aa.jpg", - "response": "The image features a VW bus parked on a grassy field. The bus is light blue and white in color and has a grill guard attached to the front. The grill guard has the letters \"VW\" on it and the whole bus has a classic look.", - "id": 35108 - }, - { - "image_path": "G:\\images\\combined\\049bf07ea3c99db0.jpg", - "response": "A painting of a man in a field with a house in the background.", - "id": 35109 - }, - { - "image_path": "G:\\images\\combined\\049bfe70a1097e0c.jpg", - "response": "A blue and white Stagecoach bus is parked in a parking lot.", - "id": 35110 - }, - { - "image_path": "G:\\images\\combined\\049ceb560923aedf.jpg", - "response": "The image shows a table with a glass top. On the table are several objects including a framed picture of people, a silver and gold object, a silver cup, a black and gold object, a black and gold picture frame, a gold medallion, a gold and red medallion, a gold and red medallion with a black center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion", - "id": 35111 - }, - { - "image_path": "G:\\images\\combined\\049d0f7fef4ebdf7.jpg", - "response": "A female model is holding up three LG Optimus Vu II Value Pack smartphones in front of a white LG Optimus Vu II Value Pack display box.", - "id": 35112 - }, - { - "image_path": "G:\\images\\combined\\049d516ccb244077.jpg", - "response": "The image shows a group of cheerleaders standing together on a basketball court. They are all wearing blue and yellow uniforms. In the background, there are several people watching the cheerleaders from the sidelines.", - "id": 35113 - }, - { - "image_path": "G:\\images\\combined\\049da1f4b3d6f2fe.jpg", - "response": "The image is the cover of an album titled \"Jackie's Bag\" by Jackie McLean. The cover is orange and has the name of the artist and the album title written in black font. There is an orange envelope with two orange buttons on it, and the name of the album is written on it. The background of the cover is a brown paper bag.", - "id": 35114 - }, - { - "image_path": "G:\\images\\combined\\049f65a732be2e93.jpg", - "response": "In the image there is a woman standing behind a counter at a pharmacy. She is wearing a red and white shirt and is smiling. In front of her are packages of allergy medicine. To the left of the woman is a sign that says \"Allergies? We'll help you breathe easy\" and encourages people to talk to the pharmacist about the latest treatments. To the right of the woman is a white wall and behind it is a red wall with the Target Pharmacy logo on it. The wall also has a white banner advertising the pharmacy's allergy relief services.", - "id": 35115 - }, - { - "image_path": "G:\\images\\combined\\04a101282a2e1b04.jpg", - "response": "A book with a picture of a sea lion on the cover.", - "id": 35116 - }, - { - "image_path": "G:\\images\\combined\\04a1034251d605e3.jpg", - "response": "A computer screen with a man on it.", - "id": 35117 - }, - { - "image_path": "G:\\images\\combined\\04a575f307c7b89a.jpg", - "response": "The image features a table with a wooden barrel on it. There are six bottles of wine on the barrel, with some placed on top and some on the side. The wine bottles have white labels and are of various sizes. The largest bottle is on the right side of the barrel. The wine bottles are displayed near a window and a door.", - "id": 35118 - }, - { - "image_path": "G:\\images\\combined\\04a605c2aa93addc.jpg", - "response": "A close up of a smartphone on a wooden table. The phone is a bright yellow and is facing the camera. The screen of the phone displays a number of colorful icons. From left to right, the icons are a cloud with a sun and a moon, a trophy, a newspaper, a camera, and a speech bubble with the word \"Skype\" in it.", - "id": 35119 - }, - { - "image_path": "G:\\images\\combined\\04a723f057abeb9d.jpg", - "response": "A yellow double decker bus is driving down the street at night. There are two people walking on the sidewalk and a car with its headlights on in the background. The bus has the words \"Aero King\" written on it.", - "id": 35120 - }, - { - "image_path": "G:\\images\\combined\\04ab31205c0ffdf8.jpg", - "response": "An open box for an Airport Extreme is sitting on a wooden table. The box is white and has a blue wifi symbol in the top left corner. The word Airport is in black bold font and the word Extreme is in smaller black font. Underneath the logo it says 802.11n Wi-Fi.", - "id": 35121 - }, - { - "image_path": "G:\\images\\combined\\04ad53753c4150ee.jpg", - "response": "An orange and white van with the word Devon on it.", - "id": 35122 - }, - { - "image_path": "G:\\images\\combined\\04ae518ff420f0bc.jpg", - "response": "A baseball player in a black jersey is winding up to pitch a ball on a baseball field.", - "id": 35123 - }, - { - "image_path": "G:\\images\\combined\\04b03f7790c03aec.jpg", - "response": "a bulletin board with many different posters on it", - "id": 35124 - }, - { - "image_path": "G:\\images\\combined\\04b04e347704f9c7.jpg", - "response": "A red, white and blue poster advertising the City of New York's Municipal Airports.", - "id": 35125 - }, - { - "image_path": "G:\\images\\combined\\04b19b4fd4bb89e7.jpg", - "response": "A black and white image of a watch with the words \"PETITE FLEUR\" on the bottom right corner.", - "id": 35126 - }, - { - "image_path": "G:\\images\\combined\\04b1e42b4117a914.jpg", - "response": "The image shows a large group of taxi cabs parked next to each other on a city street. The cabs are of various colors, including yellow, orange, and white, and they are parked in a line. Some of the cabs have signs on their roofs, and one of them says \"union dad.\" There are also a few people standing around the parked cabs, although they are less prominent in the image. In the background, there are a few other vehicles, including a truck and a bus, as well as some buildings and a tree.", - "id": 35127 - }, - { - "image_path": "G:\\images\\combined\\04b2ba30ae5de5db.jpg", - "response": "A glass of Guinness beer sits on a table. The beer has a thick, foamy head floating on top. The glass is dark and has the Guinness logo on it.", - "id": 35128 - }, - { - "image_path": "G:\\images\\combined\\04b2c3f5c2ac33a8.jpg", - "response": "A man wearing a blue baseball jersey is getting ready to throw a ball. He is wearing a baseball glove and a blue hat. He is standing in front of a fence and a building.", - "id": 35129 - }, - { - "image_path": "G:\\images\\combined\\04b59524b3cebdf2.jpg", - "response": "A large building with a clock on the front of it.", - "id": 35130 - }, - { - "image_path": "G:\\images\\combined\\04b5a37f762b0f51.jpg", - "response": "A book is open to the title page. The title is Our Neighbors, The Friends. It is by William J. Whalen. The Multnomah Friends Meeting address is at the bottom.", - "id": 35131 - }, - { - "image_path": "G:\\images\\combined\\04b99754c51e6092.jpg", - "response": "A large sign for Francis Bacon is displayed on a street.", - "id": 35132 - }, - { - "image_path": "G:\\images\\combined\\04bb7fa51b1b18ef.jpg", - "response": "A row of warning signs are lined up on the side of the road.", - "id": 35133 - }, - { - "image_path": "G:\\images\\combined\\04bbe9d35c50ab91.jpg", - "response": "A man and a woman pose for a picture.", - "id": 35134 - }, - { - "image_path": "G:\\images\\combined\\04bc0bbb14f26bab.jpg", - "response": "A black laptop with a mouse pad on the right side of the keyboard.", - "id": 35135 - }, - { - "image_path": "G:\\images\\combined\\04bc55abd830f147.jpg", - "response": "A car with a license plate that says HIP NANA.", - "id": 35136 - }, - { - "image_path": "G:\\images\\combined\\04be416992fd79c5.jpg", - "response": "A man is wearing a Tudor watch on his wrist. The watch has a silver face with black accents and is also silver on the band. The face has large white numbers and hands. The watch is set to 10:10.", - "id": 35137 - }, - { - "image_path": "G:\\images\\combined\\04c048eae91ceea3.jpg", - "response": "A man standing in front of a white board with writing on it.", - "id": 35138 - }, - { - "image_path": "G:\\images\\combined\\04c098793fddaf9b.jpg", - "response": "A white box with a QR code on the front.", - "id": 35139 - }, - { - "image_path": "G:\\images\\combined\\04c14972e955ad58.jpg", - "response": "A large red and white Manchester United poster on the side of a building.", - "id": 35140 - }, - { - "image_path": "G:\\images\\combined\\04c2634b073c5bfb.jpg", - "response": "A wooden table with a Census 2010 form and an envelope on top of it.", - "id": 35141 - }, - { - "image_path": "G:\\images\\combined\\04c2feafa596fb1e.jpg", - "response": "A train on train tracks with smoke coming out of it.", - "id": 35142 - }, - { - "image_path": "G:\\images\\combined\\04c39e0c0a0b7c38.jpg", - "response": "A television set with the words 'cctv monitor' written on the bottom left hand corner.", - "id": 35143 - }, - { - "image_path": "G:\\images\\combined\\04c3b7a4162051ab.jpg", - "response": "The image is a poster with the words \"Take heart, he has overcome\" written on it. The text is in black and red and is set against a white background. The words \"Take heart\" are written on the top left corner, \"he has\" is written on the top right corner, and \"overcome\" is written at the bottom. The numbers 16 and 33 are written below the word \"overcome\".", - "id": 35144 - }, - { - "image_path": "G:\\images\\combined\\04c4d5f6bcee13f4.jpg", - "response": "An open laptop computer sitting on a desk.", - "id": 35145 - }, - { - "image_path": "G:\\images\\combined\\04c7c370910a9a04.jpg", - "response": "A man holding a bicycle above his head on a beach.", - "id": 35146 - }, - { - "image_path": "G:\\images\\combined\\04c9190a4d2ecb2a.jpg", - "response": "A person holding a LG smartphone in an office.", - "id": 35147 - }, - { - "image_path": "G:\\images\\combined\\04cb0a69e5e61e33.jpg", - "response": "A blue truck is driving down a street.", - "id": 35148 - }, - { - "image_path": "G:\\images\\combined\\04cf8f45e024273e.jpg", - "response": "A woman with long hair is on a television screen.", - "id": 35149 - }, - { - "image_path": "G:\\images\\combined\\04cfef06445e63ab.jpg", - "response": "A wooden clock on a wall with roman numerals.", - "id": 35150 - }, - { - "image_path": "G:\\images\\combined\\04d0cd32375dec06.jpg", - "response": "A Mad Max movie poster with a man standing in front of a car in a desert. The sky is blue with clouds and the sun is setting. The man is wearing a gas mask and has a gun. The words \"What a lovely day\" are written above the man and the movie title \"Mad Max Fury Road\" is written in yellow and orange. The tagline \"May 15\" is written at the bottom of the poster.", - "id": 35151 - }, - { - "image_path": "G:\\images\\combined\\04d1087f7e335786.jpg", - "response": "A man stands in a room filled with shelves of various items. The shelves are filled with many different products, including bottles of ink and paint. There are also several boxes on the floor and a desk with some items on it. The room has a very cluttered appearance.", - "id": 35152 - }, - { - "image_path": "G:\\images\\combined\\04d14bbae7de7926.jpg", - "response": "The image shows a scene from the mobile game FIFA 15. The player in blue and red striped shirt is about to kick the soccer ball, while the player in blue and white striped shirt is running towards him. There are other players in the background, including a player in blue and red striped shirt running towards the left side of the screen and a player in blue and white striped shirt running towards the right side of the screen. The game is being played on a green field with white lines. The player in blue and red striped shirt has a red stripe on his shorts and is wearing a red and blue striped shirt. The player in blue and white striped shirt has a white stripe on his shorts and is wearing a blue and white striped shirt. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing red shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The", - "id": 35153 - }, - { - "image_path": "G:\\images\\combined\\04d33a0e3fd86ba5.jpg", - "response": "A bottle of Beerlao lager beer sits next to a mug of beer. The beer is a golden yellow color and there is a small amount of foam on top. The label on the bottle is white and green and has the words \"Imported\" and \"Lager Beer\" written on it.", - "id": 35154 + "image_path": "G:\\images\\combined\\0218a2cb4401c6df.jpg", + "response": "A book cover with three soldiers in green uniforms.", + "id": 34115 }, { - "image_path": "G:\\images\\combined\\04d3761e636752cf.jpg", - "response": "A black Heat jersey with red lettering and a red number 10.", - "id": 35155 + "image_path": "G:\\images\\combined\\0219135f66ddb4b1.jpg", + "response": "a sign in front of a brick wall", + "id": 34116 }, { - "image_path": "G:\\images\\combined\\04d3cddda381ef11.jpg", - "response": "A person is holding a cell phone in their hand. The cell phone is playing a basketball game. The game is between the Mavs and the Heat. The time is 5:36. The Heat are currently winning the game. There is a cup on the table next to the cell phone.", - "id": 35156 + "image_path": "G:\\images\\combined\\0219908f4f9e94ea.jpg", + "response": "A bottle of root beer on a counter.", + "id": 34117 }, { - "image_path": "G:\\images\\combined\\04d4277d4f3e07cf.jpg", - "response": "In the image there are two yellow taxi cabs parked side by side on a city street. They are both facing the same direction. In front of the taxis, there is a piece of yellow caution tape stretched across the street. The tape is marked with the word \"caution\" in black letters. The background shows a building with a glass storefront. There are two people visible in the scene, one on the left and one on the right. They appear to be pedestrians. There is also a traffic light visible in the image, located on the left side of the street.", - "id": 35157 + "image_path": "G:\\images\\combined\\02199bba98ab9978.jpg", + "response": "A pitcher on the mound getting ready to throw a ball.", + "id": 34118 }, { - "image_path": "G:\\images\\combined\\04d71d0804bdb39c.jpg", - "response": "A billboard for Keystone Light beer featuring a man with a beard and a hat. The billboard says \"Always Smooth\" and has the Keystone Light logo. The billboard is located on the side of a road.", - "id": 35158 + "image_path": "G:\\images\\combined\\021b7f6c879ea86f.jpg", + "response": "A wall with a business sign that says \"IF IT'S GUNS\" in large red letters. The business name is \"TREASURE WORLD\" and it sells \"GUNS, AMMO, ACCESSORIES\". Next to the sign is a white van.", + "id": 34119 }, { - "image_path": "G:\\images\\combined\\04d7554704856e9d.jpg", - "response": "A sign that says Powell's on your iPhone.", - "id": 35159 + "image_path": "G:\\images\\combined\\021be82c5cefdc8a.jpg", + "response": "A table with a case of Newcastle beer on it.", + "id": 34120 }, { - "image_path": "G:\\images\\combined\\04d8d2a90fa1e971.jpg", - "response": "A large red cube with a scoreboard on each of the six sides.", - "id": 35160 + "image_path": "G:\\images\\combined\\021c7e44227bfac1.jpg", + "response": "An aircraft is sitting on the deck of a ship.", + "id": 34121 }, { - "image_path": "G:\\images\\combined\\04d9539875873b29.jpg", - "response": "A photo of two boxes of Soylent powder food.", - "id": 35161 + "image_path": "G:\\images\\combined\\021d0fd9b41f8d4b.jpg", + "response": "The license plate on the red car is from the state of Washington.", + "id": 34122 }, { - "image_path": "G:\\images\\combined\\04d9ccc29ef68000.jpg", - "response": "A sign for a beauty salon is posted on a wall.", - "id": 35162 + "image_path": "G:\\images\\combined\\021d60d635f8064e.jpg", + "response": "A sign showing that a gas station and restaurant are 1000 meters ahead.", + "id": 34123 }, { - "image_path": "G:\\images\\combined\\04d9f9c00f3c4973.jpg", - "response": "An open book to the page with the Lord's prayer on it.", - "id": 35163 + "image_path": "G:\\images\\combined\\021d7fa8fc4793f1.jpg", + "response": "A seaplane is parked on the water with two men standing on the front.", + "id": 34124 }, { - "image_path": "G:\\images\\combined\\04da5dff642e080f.jpg", - "response": "The image shows a row of cans of Mountain Dew Baja Blast. The cans are blue and white and feature the Mountain Dew logo prominently on them. There are at least nine cans in the row, and they are all lined up next to each other. Some of the cans are closer to the foreground and appear larger, while others are further away and appear smaller.", - "id": 35164 + "image_path": "G:\\images\\combined\\021e7031adf5cb7e.jpg", + "response": "A double decker bus with the words \"LIVERPOOL\" on the side.", + "id": 34125 }, { - "image_path": "G:\\images\\combined\\04db1e5c955ddee6.jpg", - "response": "A cover of weird tales magazine with a man holding a black raven on his shoulder.", - "id": 35165 + "image_path": "G:\\images\\combined\\021e8e65743a4599.jpg", + "response": "A vintage birthday postcard with a picture of soldiers on it.", + "id": 34126 }, { - "image_path": "G:\\images\\combined\\04db429ca202f6a3.jpg", - "response": "A warehouse with a row of yellow trash cans on wheels.", - "id": 35166 + "image_path": "G:\\images\\combined\\022048b32a848e74.jpg", + "response": "A blue and white train car sitting next to a platform at a train station.", + "id": 34127 }, { - "image_path": "G:\\images\\combined\\04dbd80e27f9bacd.jpg", - "response": "a wall with writing on it that says \"we're here, we're queer, we're fabulous, don't fuck with us!\"", - "id": 35167 + "image_path": "G:\\images\\combined\\02208d385e17d3d7.jpg", + "response": "A computer monitor that is turned on and displaying text.", + "id": 34128 }, { - "image_path": "G:\\images\\combined\\04dc9045baab9975.jpg", - "response": " A woman(295,128),(778,615) sitting at a table(2,496),(996,997) with empty glasses(246,586),(382,941)(470,543),(621,939) and wine bottles(624,370),(760,851)(760,371),(910,918)(907,365),(1000,953).", - "id": 35168 + "image_path": "G:\\images\\combined\\0220a53c342555f2.jpg", + "response": "A Lego helicopter is on display with several small figures around it.", + "id": 34129 }, { - "image_path": "G:\\images\\combined\\04dd63050d8508bd.jpg", - "response": "A yellow dress woman sitting on a chair being watched by a man.", - "id": 35169 + "image_path": "G:\\images\\combined\\02223ba39c46afcc.jpg", + "response": "A grey t-shirt with the word bump on it in blue.", + "id": 34130 }, { - "image_path": "G:\\images\\combined\\04dd79863a4c2c59.jpg", - "response": "A couple of boxes sitting next to a couple of traffic lights.", - "id": 35170 + "image_path": "G:\\images\\combined\\0222dde37ac1175c.jpg", + "response": "A glass display shelf with a basketball and several jerseys on it.", + "id": 34131 }, { - "image_path": "G:\\images\\combined\\04de2bbea6e03bee.jpg", - "response": "The image shows a workspace with a desk that has two computer monitors placed on it. There are two keyboards, one on the left and the other on the right, and a mouse in the middle of the desk. The computer monitors are displaying the same Yahoo! homepage. The room appears to be an office, and there are several books scattered around the desk and the area. Some of the books are placed vertically, while others are lying horizontally. There are also a couple of cups in the scene, one near the left monitor and the other near the right monitor.", - "id": 35171 + "image_path": "G:\\images\\combined\\022315ce008d95c3.jpg", + "response": "A bottle of Stormy Ridge 2004 sparkling shiraz from the hunter valley.", + "id": 34132 }, { - "image_path": "G:\\images\\combined\\04de92ec769965ac.jpg", - "response": "A white board with writing on it.", - "id": 35172 + "image_path": "G:\\images\\combined\\02239b5969fed70c.jpg", + "response": "A red bus driving down the road.", + "id": 34133 }, { - "image_path": "G:\\images\\combined\\04df3cbd8345f25f.jpg", - "response": "An old looking gauge(20,21),(985,688).", - "id": 35173 + "image_path": "G:\\images\\combined\\02244_jpg.rf.77d7d05d3a7f34b8e2dc88ad1cdd02c0.jpg", + "response": "A group of five people walking away from a work site. They are all wearing yellow vests and hard hats. In front of them is a yellow bulldozer. They are walking on a rocky path.", + "id": 34134 }, { - "image_path": "G:\\images\\combined\\04df64098449dcce.jpg", - "response": "The image is a soccer field with players on it. The players are wearing blue and white uniforms. The number 8 is displayed in the center of the image. The word \"Mondaini\" is displayed above the number. The word \"Emele\" is displayed in the bottom left corner of the image. The word \"Xista.com\" is displayed in the bottom right corner.", - "id": 35174 + "image_path": "G:\\images\\combined\\02244_jpg.rf.8f430913c13186191a8fc1a25d66a754.jpg", + "response": "A group of five people walking in front of a bulldozer", + "id": 34135 }, { - "image_path": "G:\\images\\combined\\04dfad38d434409c.jpg", - "response": "A black and white photo of the front of a bus.", - "id": 35175 + "image_path": "G:\\images\\combined\\02249aa22d4d74f6.jpg", + "response": "A white airplane with blue tail is flying low in the sky.", + "id": 34136 }, { - "image_path": "G:\\images\\combined\\04e01069792ad29a.jpg", - "response": "A car with a Virginia license plate that says Utang on it.", - "id": 35176 + "image_path": "G:\\images\\combined\\02250d9442586089.jpg", + "response": "A monitor that is on and playing a video game.", + "id": 34137 }, { - "image_path": "G:\\images\\combined\\04e03c1faa934e30.jpg", - "response": "A sign posted on a pole in a city.", - "id": 35177 + "image_path": "G:\\images\\combined\\0225205c98bbca7e.jpg", + "response": "A painting of a room with a fireplace and a desk.", + "id": 34138 }, { - "image_path": "G:\\images\\combined\\04e14a8f5dc496b8.jpg", - "response": "A sign that is orange and black.", - "id": 35178 + "image_path": "G:\\images\\combined\\0225316ea19e5041.jpg", + "response": "A person wearing a black Adidas shirt is holding a silver smartphone. The person is using the phone and has their thumb on the screen. The phone is running an app.", + "id": 34139 }, { - "image_path": "G:\\images\\combined\\04e1df508bfdb43b.jpg", - "response": "In the image, there are two boys standing on a baseball field. One of the boys is wearing a red shirt and has a black glove on his right hand. The other boy is wearing a blue shirt and has a black glove on his left hand. Both boys are holding baseball bats, and they are looking in opposite directions.", - "id": 35179 + "image_path": "G:\\images\\combined\\0225679831f27341.jpg", + "response": "The image shows the inside of a store, with a counter and a cash register. There are two people visible in the distance, and a third person can be seen on the right side of the image. A woman is standing behind the cash register, and another person is standing near the customer service desk. There are two TVs in the store, one near the top of the image and another near the middle. The store has a variety of items on display, including a rack of socks near the left side of the image, and a rack of greeting cards on the right. There are also a number of bottles and cans visible in the store.", + "id": 34140 }, { - "image_path": "G:\\images\\combined\\04e4f31b680b8801.jpg", - "response": "A tv with the words \"set passcode\" on the screen.", - "id": 35180 + "image_path": "G:\\images\\combined\\02266f07c0a0b637.jpg", + "response": "a black and white photo of a car dashboard with a speedometer and a clock", + "id": 34141 }, { - "image_path": "G:\\images\\combined\\04e562f083ca45ea.jpg", - "response": "A metal sign for Clermont Florida that shows two children in bathing suits holding hands.", - "id": 35181 + "image_path": "G:\\images\\combined\\02274483a90ba59f.jpg", + "response": "A couple of mugs of beer sitting on a table.", + "id": 34142 }, { - "image_path": "G:\\images\\combined\\04e7422c5fa74696.jpg", - "response": "A large group of people are gathered in the street holding signs.", - "id": 35182 + "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.23ae632b2ba8f997c8e40c0ea8ccd3d7.jpg", + "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. The people are of different ages and are standing close to each other. One person is wearing a white mask with a black line on it, and one person is wearing a mask with glasses on it. One person is wearing a yellow mask with a black checkered pattern on it.", + "id": 34143 }, { - "image_path": "G:\\images\\combined\\04e781703ec5f371.jpg", - "response": "A black and white television set.", - "id": 35183 + "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.3151772a94b39673fe37f146a7788d7a.jpg", + "response": "A crowd of people walking down a busy street.", + "id": 34144 }, { - "image_path": "G:\\images\\combined\\04e84a07ac4570bb.jpg", - "response": "A bottle of Calon Segur wine from 2005.", - "id": 35184 + "image_path": "G:\\images\\combined\\022814asiatodaymasks_960x540_jpg.rf.cd810658afca3272f6b2faa3dcd16b17.jpg", + "response": "The image shows a group of people on a street. They are all wearing protective masks on their faces. Some of the people are wearing white masks, some are wearing black, and one person is wearing a yellow mask. Some people are wearing glasses and others are not. One person is wearing a white mask with a black strap under their nose, and another person is wearing a mask with a white strap that goes around their chin. There are also a few people in the background who are not wearing masks.", + "id": 34145 }, { - "image_path": "G:\\images\\combined\\04ea1b2740f1e892.jpg", - "response": "A box of anti acne medication is held up in someones hand. The box is white and features a blue logo for the brand \"Doctor Li\". The product is called \"Medical Formula\" and is a \"\u674e\u533b\u751f\" product. The box shows that the product is an anti acne medication. The box is open and showing the product inside.", - "id": 35185 + "image_path": "G:\\images\\combined\\0228651295408889.jpg", + "response": "A comic strip from the 1940s, featuring a story about a man who encounters three wise men.", + "id": 34146 }, { - "image_path": "G:\\images\\combined\\04eb5961cecd1e8d.jpg", - "response": "A group of young men playing soccer on a court.", - "id": 35186 + "image_path": "G:\\images\\combined\\0228e46986926913.jpg", + "response": "A baseball player posing for a picture with a baseball and glove.", + "id": 34147 }, { - "image_path": "G:\\images\\combined\\04ec26c906c3a2a5.jpg", - "response": "a white toilet bowl next to a measuring tape", - "id": 35187 + "image_path": "G:\\images\\combined\\0228f1095d117c2d.jpg", + "response": "A table with two cans of beer, a glass of dark liquid, a bag of chips and a book.", + "id": 34148 }, { - "image_path": "G:\\images\\combined\\04ed68a4e461ce70.jpg", - "response": "an old rotary phone hanging on a wooden wall", - "id": 35188 + "image_path": "G:\\images\\combined\\02290baaf18293bd.jpg", + "response": "The image shows a basketball game in progress with two teams playing. There are several players on the court, some holding basketballs, and others trying to block or defend. The players are wearing uniforms with numbers on the backs.", + "id": 34149 }, { - "image_path": "G:\\images\\combined\\04ef980e5caff21f.jpg", - "response": "A table with magazines on it including a Star Wars magazine.", - "id": 35189 + "image_path": "G:\\images\\combined\\02293d9c2b91fd14.jpg", + "response": "A navy blue Yankees jacket with white lettering and white stripes on the sleeves.", + "id": 34150 }, { - "image_path": "G:\\images\\combined\\04f1c47a8be99a62.jpg", - "response": "A glass display case with a poster inside that says \"COMING HOME\". There is also a paper with a building on it and a sign that says \"MS SEPT-OCT\".", - "id": 35190 + "image_path": "G:\\images\\combined\\02298_jpg.rf.982168697945864e54d5e56e31d9d65b.jpg", + "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", + "id": 34151 }, { - "image_path": "G:\\images\\combined\\04f4c553a4d5e020.jpg", - "response": "A skier is in mid air after jumping off a ramp.", - "id": 35191 + "image_path": "G:\\images\\combined\\02298_jpg.rf.cfe62e63686f189c736218279a3de6f4.jpg", + "response": "A man and a woman wearing yellow vests and white helmets are walking on a construction site. They are both carrying something in their hands. In the background, a yellow truck is unloading stones or sand on the right side of the image. There is a mountain in the far distance. The ground is a mix of soil and dust.", + "id": 34152 }, { - "image_path": "G:\\images\\combined\\04f53f2009d2da77.jpg", - "response": "A book is open to a page about Popular Comics.", - "id": 35192 + "image_path": "G:\\images\\combined\\022a3c09f0a73534.jpg", + "response": "A newspaper with the headline \"Signs in protest at council fence\" on the front page.", + "id": 34153 }, { - "image_path": "G:\\images\\combined\\04f5febce7212e0f.jpg", - "response": "An ambulance is parked on the grass with a for sale sign on the front.", - "id": 35193 + "image_path": "G:\\images\\combined\\022a57a52043d7bd.jpg", + "response": "A store with a sign that says C.B. Supplies.", + "id": 34154 }, { - "image_path": "G:\\images\\combined\\04f60852cd037b49.jpg", - "response": "A bottle of Skorderlig sits next to a glass filled with the red liquid.", - "id": 35194 + "image_path": "G:\\images\\combined\\022a8a65aa1e8ae2.jpg", + "response": "A man standing in front of a white board wearing a lanyard with a tag.", + "id": 34155 }, { - "image_path": "G:\\images\\combined\\04f7e547e9b446c6.jpg", - "response": "A silver coin with the word United States of America on it.", - "id": 35195 + "image_path": "G:\\images\\combined\\022b411f98c66557.jpg", + "response": "The image shows the inside of a store with a variety of items on display. There are several people visible in the store, and a cash register is located near the front of the store. The store has a colorful and vibrant atmosphere, with bright green walls and a white tile floor. On the walls, there are several posters and decorations, including a poster of a city and a poster of a group of people. In the store, there are many items for sale, including toys, books, and games. There are several Monopoly games on display, as well as other board games and books. There are also several balloons in the store, located near the front and on the right side.", + "id": 34156 }, { - "image_path": "G:\\images\\combined\\04f913d1cb935a29.jpg", - "response": "The image shows a busy street filled with traffic. There are several cars on the road, including a taxi with the license plate \"G9\" on the back. The taxi is driving down the street and has a luggage rack on top.", - "id": 35196 + "image_path": "G:\\images\\combined\\022b4b27726e6d5b.jpg", + "response": "A bus on a city street, with signs in the background for Subway and First Bus.", + "id": 34157 }, { - "image_path": "G:\\images\\combined\\04f9cc3db7d8da24.jpg", - "response": "A billboard for Arrow Laminates is shown on the side of a building. The billboard features several human figures in various stages of rolling a log. The building is in a parking lot with several cars parked around it.", - "id": 35197 + "image_path": "G:\\images\\combined\\022be8ef346e3009.jpg", + "response": "A man is kicking a blue umbrella in the street.", + "id": 34158 }, { - "image_path": "G:\\images\\combined\\04fb628ed85ee4fd.jpg", - "response": "a large screen tv inside of a stadium", - "id": 35198 + "image_path": "G:\\images\\combined\\022c27100bf3c762.jpg", + "response": "A woman in a shiny blue and white bodysuit bending over.", + "id": 34159 }, { - "image_path": "G:\\images\\combined\\04fd936a65af21e6.jpg", - "response": "A man wearing an apron that says \"Your goose on\" is standing in front of a BBQ grill.", - "id": 35199 + "image_path": "G:\\images\\combined\\022dd2d03ff5325c.jpg", + "response": "A man sitting in a chair in front of a TV.", + "id": 34160 }, { - "image_path": "G:\\images\\combined\\05000c2a491afc90.jpg", - "response": "Two baseball players are talking to each other. One of them is wearing a blue jersey with the letter T on the front and a red cap. The other player is wearing a blue jersey with the number 28 on the back and a red cap with a white T on it.", - "id": 35200 + "image_path": "G:\\images\\combined\\022fa9a7367d3259.jpg", + "response": "A baseball team standing in the dugout with their gloves on.", + "id": 34161 }, { - "image_path": "G:\\images\\combined\\050195a1717cfe45.jpg", - "response": "A clock with a pink rose on it and the number 10 in the middle.", - "id": 35201 + "image_path": "G:\\images\\combined\\023021985507a119.jpg", + "response": "A blue van driving down a street next to a parking lot.", + "id": 34162 }, { - "image_path": "G:\\images\\combined\\05040557d4d4ef42.jpg", - "response": "A counter with a bowl, lime slices, and a variety of alcohol bottles including Smirnoff, Peach Schnapps, and Cherry Vodka.", - "id": 35202 + "image_path": "G:\\images\\combined\\02306aab95c5697f.jpg", + "response": "a close up of a deck of cards with the word \"erotic\" on it", + "id": 34163 }, { - "image_path": "G:\\images\\combined\\05064aad313fc3b7.jpg", - "response": "A van with a grey and black color scheme.", - "id": 35203 + "image_path": "G:\\images\\combined\\0230ff5703d20b38.jpg", + "response": "A blue and white sign that says scenic drive on it.", + "id": 34164 }, { - "image_path": "G:\\images\\combined\\050b5524c278d81f.jpg", - "response": "A group of people standing in front of a store.", - "id": 35204 + "image_path": "G:\\images\\combined\\023161661b60ab36.jpg", + "response": "A book cover with the title Oedipus the King.", + "id": 34165 }, { - "image_path": "G:\\images\\combined\\050b6e4fab72ef2b.jpg", - "response": "The image shows two bottles of nail polish on a table. The nail polishes are by the brand Rimmel and are in shades of maroon. One of the bottles is larger and has a brush cap, while the other is smaller and has a pump cap. There is also a black box next to the nail polishes.", - "id": 35205 + "image_path": "G:\\images\\combined\\02316_jpg.rf.913bc9850c1c2aa37074a112ca0cc49e.jpg", + "response": "Two construction workers stand in the street next to a hole in the pavement. One worker stands with his hands on his hips and is wearing a red hard hat. The other worker stands with his hands on his hips and is wearing a white hard hat. In front of them is a orange and gray ladder. To the left of the ladder is an orange and white cone. Next to the workers and the cone is a cup.", + "id": 34166 }, { - "image_path": "G:\\images\\combined\\050bf08413b35ab1.jpg", - "response": "A bookshelf with many books on it.", - "id": 35206 + "image_path": "G:\\images\\combined\\02316_jpg.rf.fb4a13ddef7ffc55545d9a7cbf2a42d4.jpg", + "response": "The image shows two construction workers standing next to a large hole in the street. The man on the left is wearing a red hard hat and yellow safety vest. The man on the right is wearing a white hard hat and a blue shirt under a white safety vest. Both men are looking down into the hole.", + "id": 34167 }, { - "image_path": "G:\\images\\combined\\050c0066b1ed14bd.jpg", - "response": "A bottle of red wine from the Stefano Lubiana estate, produced in Tasmania and dating from 2007.", - "id": 35207 + "image_path": "G:\\images\\combined\\023182f17b71f861.jpg", + "response": "The image is a poster with a red background and a man's face in black and white. The man has a mustache and is wearing a suit. The poster has the words \"Have you seen Dr. Oblivion?\" in black at the top.", + "id": 34168 }, { - "image_path": "G:\\images\\combined\\051063338afdeb60.jpg", - "response": "A propaganda poster from the Second World War, showing a soldier in a helmet.", - "id": 35208 + "image_path": "G:\\images\\combined\\023232c2030de30a.jpg", + "response": "A table with a dry erase board, a pair of scissors, a whiteboard, a sharpie marker, and a whiteboard marker.", + "id": 34169 }, { - "image_path": "G:\\images\\combined\\05106b22b657038f.jpg", - "response": "a baseball player standing on the field", - "id": 35209 + "image_path": "G:\\images\\combined\\02325_jpg.rf.ab25aa84dfa365e1b920afa6d847cfbf.jpg", + "response": "A group of four people standing in a large, unfinished room.", + "id": 34170 }, { - "image_path": "G:\\images\\combined\\0511169aa8f1211b.jpg", - "response": "A man wearing a black hoodie is holding a book titled \"Unicode\". The book is open to the table of contents.", - "id": 35210 + "image_path": "G:\\images\\combined\\02325_jpg.rf.e9d416be71242125d202bcb7e011d414.jpg", + "response": "a group of people standing in a room that has no walls", + "id": 34171 }, { - "image_path": "G:\\images\\combined\\0511f921529af838.jpg", - "response": "A person wearing a red bikini bottom and holding beads.", - "id": 35211 + "image_path": "G:\\images\\combined\\02326_jpg.rf.89ee8cd9bde41ff32455df5b7c211ea1.jpg", + "response": "The image shows two men standing on either side of a red cloth that is draped over a gold plaque. The men are both wearing suits. To the left of the image is a man with black hair and a white shirt. He is wearing a suit and appears to be the older of the two men. To the right of the image is a man with black hair and a dark suit. He is wearing a white shirt and appears to be the younger of the two men.", + "id": 34172 }, { - "image_path": "G:\\images\\combined\\05142a12b2703809.jpg", - "response": "A framed poster advertising the Central London Railway.", - "id": 35212 + "image_path": "G:\\images\\combined\\02333_jpg.rf.abafe3a9341b3422383ad8d5b81674ec.jpg", + "response": "a group of people walking across a parking lot", + "id": 34173 }, { - "image_path": "G:\\images\\combined\\0516b96f324d3185.jpg", - "response": "A plaque that is on the wall.", - "id": 35213 + "image_path": "G:\\images\\combined\\0233e1cb3ae2d70b.jpg", + "response": "A man in a white shirt is putting on headphones.", + "id": 34174 }, { - "image_path": "G:\\images\\combined\\0516f71f618e0087.jpg", - "response": "A group of four people standing in front of a white board.", - "id": 35214 + "image_path": "G:\\images\\combined\\023463e93c2fa36e.jpg", + "response": "A busy city street filled with traffic and pedestrians.", + "id": 34175 }, { - "image_path": "G:\\images\\combined\\0516fbff19c3a68e.jpg", - "response": "A clock is attached to a pole on a city street.", - "id": 35215 + "image_path": "G:\\images\\combined\\02348_jpg.rf.5e957d08b2695fb20b6c5797284727f1.jpg", + "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. Behind the people there is a red banner with white Chinese characters.", + "id": 34176 }, { - "image_path": "G:\\images\\combined\\05189c0ddf2b5e94.jpg", - "response": "A person holding a camera taking a picture of a branch with a tree in the background.", - "id": 35216 + "image_path": "G:\\images\\combined\\02348_jpg.rf.b5a741345590e8b4981a4d0b106438e5.jpg", + "response": "6 people are posing for a photo behind a red table with a red cloth. On the table there are 5 red glasses of wine and a vase with red and white flowers. The background is a red wall with white writing that says \"\u6d3b\u513f\u5e72\u5f97\u597d\uff0c\u5c31\u662f\u4eba\u54c1\u7684\u597d\u6000!\"", + "id": 34177 }, { - "image_path": "G:\\images\\combined\\051909263de0a378.jpg", - "response": "A red car parked on the side of a street.", - "id": 35217 + "image_path": "G:\\images\\combined\\0234c0a4b04aba38.jpg", + "response": "A row of liquor bottles on a shelf, including eggnog, latte, and egg nog.", + "id": 34178 }, { - "image_path": "G:\\images\\combined\\05195453b8496d73.jpg", - "response": "A book cover with a man on a horse fighting a demon type creature.", - "id": 35218 + "image_path": "G:\\images\\combined\\02352c9c5a13aa94.jpg", + "response": "A bottle of Gatorade Frost sits on a counter.", + "id": 34179 }, { - "image_path": "G:\\images\\combined\\0519ce56755e0699.jpg", - "response": "A train on a track in front of a building.", - "id": 35219 + "image_path": "G:\\images\\combined\\02355b22cdf0f38e.jpg", + "response": "A table with three computer monitors, a mouse and a keyboard.", + "id": 34180 }, { - "image_path": "G:\\images\\combined\\051b572ea12bbc0d.jpg", - "response": "The image shows a close up of a laptop keyboard. The laptop is a Lenovo Thinkpad and the keyboard is black. The top left of the keyboard has the function keys labeled as F1, F2, etc. The top right of the keyboard has the shift key and the enter key. The backspace key is on the left and the right arrow key is to the right. The space bar is in the middle of the keyboard and the alt key is just above it. The caps lock key is on the left and the page up key and page down key are above that. The left arrow key is to the left of the left shift key and the right arrow key is to the right of the left shift key. The back of the laptop is black and has the Lenovo logo in red on the top right. The laptop is sitting on a cardboard box.", - "id": 35220 + "image_path": "G:\\images\\combined\\0235b5c0ed2d5d94.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 34181 }, { - "image_path": "G:\\images\\combined\\051c411d3cdc2446.jpg", - "response": "A red tank top with white writing on it.", - "id": 35221 + "image_path": "G:\\images\\combined\\0235f6f9ee734006.jpg", + "response": "The image displays an electronic device, most likely a smartphone, displaying the weather for various cities. The current temperature is 12 degrees Celsius, and it is cloudy. There are five other cities listed with their own temperature, ranging from 1 to 13 degrees Celsius. The time displayed is 03:30. The screen also has a purple background and white text.", + "id": 34182 }, { - "image_path": "G:\\images\\combined\\051d3e6ed66946df.jpg", - "response": "A movie poster for the film Female Agents is on the wall.", - "id": 35222 + "image_path": "G:\\images\\combined\\02365_jpg.rf.54395a45dfcdddd2638ee8e409f7e361.jpg", + "response": "two engineers in green vests and white helmets looking at a construction site", + "id": 34183 }, { - "image_path": "G:\\images\\combined\\0520a85295e04471.jpg", - "response": "A sunset over a lake with a mountain in the background. The sky is a gradient of red, orange, pink and purple. There is a quote in the bottom left corner that says \"It's not about the camera. It's about what you shoot and how you compile them.\"", - "id": 35223 + "image_path": "G:\\images\\combined\\0237af287df0ef52.jpg", + "response": "A blue cell phone that is flipped open. The screen displays the time as 15:01.", + "id": 34184 }, { - "image_path": "G:\\images\\combined\\052192ea6c98ee4b.jpg", - "response": "A stack of movies on a counter.", - "id": 35224 + "image_path": "G:\\images\\combined\\0237f650998d5d52.jpg", + "response": "A phone screen that is on.", + "id": 34185 }, { - "image_path": "G:\\images\\combined\\0521b09c0444ef29.jpg", - "response": "A menu board with a list of liquor and beer prices.", - "id": 35225 + "image_path": "G:\\images\\combined\\0238b78bec43550e.jpg", + "response": "A green and white trolley car on tracks.", + "id": 34186 }, { - "image_path": "G:\\images\\combined\\0525540818288de8.jpg", - "response": "A box for Chanel Allure perfume on a wooden table.", - "id": 35226 + "image_path": "G:\\images\\combined\\0238b8a66f717e2f.jpg", + "response": "A glass of beer sits on a coaster on a table.", + "id": 34187 }, { - "image_path": "G:\\images\\combined\\0526a593b144a52b.jpg", - "response": "A stop sign with the word SOPA & PIPA written on it in red.", - "id": 35227 + "image_path": "G:\\images\\combined\\02394_jpg.rf.bbc07627f06877bddddc1365c796c2ce.jpg", + "response": "The photo shows men walking and talking. They are wearing suits and the men in the middle and on the right are wearing blue shirts. The man on the far left is wearing a dark blue suit. The man second from the left is wearing a black suit. The man in the middle is wearing a blue shirt and dark blue pants. The man on the far right is wearing a dark grey suit. They are walking single file along a hallway.", + "id": 34188 }, { - "image_path": "G:\\images\\combined\\0527064b8176737d.jpg", - "response": "A close up of a red cell phone with the battery compartment open. The phone is held in someones hand and the battery is visible inside.", - "id": 35228 + "image_path": "G:\\images\\combined\\02394_jpg.rf.e06b5f7d7938a7a26b0a9fe33d3456f3.jpg", + "response": "The photo shows men walking and talking. There are five men in total, all wearing suits. They are walking down a hallway that is lined with doors. Some of the doors are open, and you can see a table in one of the rooms. The men seem to be having a conversation, with one man leading the discussion and gesturing with his hand.", + "id": 34189 }, { - "image_path": "G:\\images\\combined\\05281c93e99b5c08.jpg", - "response": "A tv with a woman on the screen and a man sitting in front of it.", - "id": 35229 + "image_path": "G:\\images\\combined\\02397_jpg.rf.4c6e01ffed369a3f8ae307c02791bb0a.jpg", + "response": "a group of men standing around a construction site", + "id": 34190 }, { - "image_path": "G:\\images\\combined\\0529b506446a359f.jpg", - "response": "A bottle of beer with a green label that says Inland Empire No. 8 on it.", - "id": 35230 + "image_path": "G:\\images\\combined\\02397_jpg.rf.89cdc395296359a6aac2fb9a5c5e45a9.jpg", + "response": "a group of men standing around a car", + "id": 34191 }, { - "image_path": "G:\\images\\combined\\0529ba49ffef71ca.jpg", - "response": "A painting of a woman holding a baby.", - "id": 35231 + "image_path": "G:\\images\\combined\\0239b9c1acb62040.jpg", + "response": "A row of televisions that are on a table.", + "id": 34192 }, { - "image_path": "G:\\images\\combined\\052a662aac6b7722.jpg", - "response": "A bunch of stickers are on a wall.", - "id": 35232 + "image_path": "G:\\images\\combined\\023a007718a0e7f3.jpg", + "response": "A man standing behind a table displaying various items including shirts, books, and pictures.", + "id": 34193 }, { - "image_path": "G:\\images\\combined\\052be07259975783.jpg", - "response": "A quote on a green background that says \"Computer dating's OK, if you are a computer.\"", - "id": 35233 + "image_path": "G:\\images\\combined\\023a238c3910069b.jpg", + "response": "a boy in a baseball uniform is pitching a ball", + "id": 34194 }, { - "image_path": "G:\\images\\combined\\052bf94d71a91cab.jpg", - "response": "A person in a bunny suit holding a sign on the side of the road.", - "id": 35234 + "image_path": "G:\\images\\combined\\023b88fa3e15efad.jpg", + "response": "A hockey player in a white jersey is standing on the ice with a hockey stick.", + "id": 34195 }, { - "image_path": "G:\\images\\combined\\052e4d4438123aec.jpg", - "response": "A white Scottish Ambulance Service van is parked on the street.", - "id": 35235 + "image_path": "G:\\images\\combined\\023bd50314b8e43b.jpg", + "response": "In the image, there is a large crowd of people walking around in front of Universal Studios Hollywood. They are standing around a small courtyard area with a few small tables and chairs scattered around. There is a big billboard for the movie Despicable Me above the entrance to the Universal Studios Hollywood building.", + "id": 34196 }, { - "image_path": "G:\\images\\combined\\052e8de055f3562f.jpg", - "response": "A silver and gold coin with a tree on it.", - "id": 35236 + "image_path": "G:\\images\\combined\\023cc00c3308c087.jpg", + "response": "A book cover with a woman in a colorful dress holding a glass up to her face.", + "id": 34197 }, { - "image_path": "G:\\images\\combined\\052IJLOWFGWF_jpg.rf.612b0cccdf03bbfefc86e575a649be63.jpg", - "response": "A forklift is parked next to a truck.", - "id": 35237 + "image_path": "G:\\images\\combined\\023d3e047ea06997.jpg", + "response": "A Korean Air Cargo plane taxis on a runway.", + "id": 34198 }, { - "image_path": "G:\\images\\combined\\053227f4aed1f791.jpg", - "response": "A red and white bus is driving down the street.", - "id": 35238 + "image_path": "G:\\images\\combined\\023e83642b74ac3b.jpg", + "response": "In the image, there is a person wearing a red shirt sitting at a table with a laptop. The person is typing on the laptop with both hands. There is another person in the background, wearing a brown shirt. The background is blurry.", + "id": 34199 }, { - "image_path": "G:\\images\\combined\\0532bebe983fa773.jpg", - "response": "A green box with the words Peyton and Byrne on it.", - "id": 35239 + "image_path": "G:\\images\\combined\\02402_jpg.rf.3456c716edfdb4cf107d1a36434fe413.jpg", + "response": "A man standing over a red table with a bottle of\u7ea2\u9152 and a glass on it.", + "id": 34200 }, { - "image_path": "G:\\images\\combined\\0533a3faeed840d4.jpg", - "response": "a wall with many posters on it", - "id": 35240 + "image_path": "G:\\images\\combined\\02402_jpg.rf.756723f867dd74f3e957153a822f43d4.jpg", + "response": "a table with a red table cloth on it with two bottles of\u7ea2\u9152, a plate with food, and a bowl on top of the table.", + "id": 34201 }, { - "image_path": "G:\\images\\combined\\0534930d836682cb.jpg", - "response": "The image shows the inside of a store with a white ceiling. There are several rows of shelves filled with various items. A sign above the first row of shelves says \" Layaway \". A person is visible in the distance.", - "id": 35241 + "image_path": "G:\\images\\combined\\024033e1c44a12ac.jpg", + "response": "A scoreboard at a soccer game showing the final score as Fulham 1, Brentford 4.", + "id": 34202 }, { - "image_path": "G:\\images\\combined\\0534b2d8c3e1be1e.jpg", - "response": "A office cubicle with a chair and a sign on the wall.", - "id": 35242 + "image_path": "G:\\images\\combined\\02404_jpg.rf.667a811ccbe06eb9d0d459dbdb39f7c5.jpg", + "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", + "id": 34203 }, { - "image_path": "G:\\images\\combined\\053690e8110febab.jpg", - "response": "A yellow book cover with a black and green watch on the left side.", - "id": 35243 + "image_path": "G:\\images\\combined\\02404_jpg.rf.9aadaec023c4ed4bcf57b9d0815130ec.jpg", + "response": "A group of people in yellow safety vests standing in a room with white walls and a window. Some of the people are holding papers and the man on the far right is pointing to a part of the window.", + "id": 34204 }, { - "image_path": "G:\\images\\combined\\0536c4c4cb7cfe80.jpg", - "response": "A bottle of beer and a glass of beer are sitting on a table.", - "id": 35244 + "image_path": "G:\\images\\combined\\0240764e39584f65.jpg", + "response": "A red and white paper circle with information about tornadoes and other weather events.", + "id": 34205 }, { - "image_path": "G:\\images\\combined\\053776773c24ca6a.jpg", - "response": "a group of people standing around a white sheet of paper", - "id": 35245 + "image_path": "G:\\images\\combined\\0240b8cff8874e78.jpg", + "response": "The Ateneo Blue Eagles cheerleading team are all smiles as they are introduced to the crowd.", + "id": 34206 }, { - "image_path": "G:\\images\\combined\\053790a396cc2466.jpg", - "response": "a large sign for Katy K ranch dressing featuring a woman in a bikini sitting on a wheel barrow", - "id": 35246 + "image_path": "G:\\images\\combined\\02436_jpg.rf.75755c478e5473c529fad23c5135fb29.jpg", + "response": "A man with a blue hard hat and a tablet is showing a plan to a man and a woman. They are standing outside in front of a brick building that is under construction. The man is wearing a beige suit and the woman is wearing a pinkish top with a white shirt and blue jeans. They are all looking at the tablet.", + "id": 34207 }, { - "image_path": "G:\\images\\combined\\053aaa18273e91c6.jpg", - "response": "A silver police van with the word police on the side of it.", - "id": 35247 + "image_path": "G:\\images\\combined\\02436_jpg.rf.c30a9bf9c3b11bdc1dd267e46ff62872.jpg", + "response": "Three people standing in front of a building site. The man on the left is wearing a hard hat and holding a tablet. The man in the middle and the woman on the right are both looking at the tablet. The man in the middle has brown hair and is wearing a suit. The woman has long hair and is wearing a pink top with blue jeans. They are all looking at the tablet and talking.", + "id": 34208 }, { - "image_path": "G:\\images\\combined\\053be55d3df7e1ad.jpg", - "response": "A tray with a cup of coffee and a pastry on it, a phone case with the Starbucks logo on it sitting next to the tray.", - "id": 35248 + "image_path": "G:\\images\\combined\\02440_jpg.rf.0dfff947055089b70e7add7308c5f0b4.jpg", + "response": "a group of people walking down a sidewalk", + "id": 34209 }, { - "image_path": "G:\\images\\combined\\053ea75af199a99a.jpg", - "response": "A van with the words Narok Line on the hood is parked on the side of the road.", - "id": 35249 + "image_path": "G:\\images\\combined\\02440_jpg.rf.2132749eae47dafa6467a08c0741de24.jpg", + "response": "a group of people walking down a sidewalk", + "id": 34210 }, { - "image_path": "G:\\images\\combined\\054058cbdb47dd13.jpg", - "response": "A book cover with a man lying on the ground with a dirk sticking out of his hand. He is wearing a kilt.", - "id": 35250 + "image_path": "G:\\images\\combined\\0245090a4b81413a.jpg", + "response": "The image shows a city street scene with a red double decker bus driving down the road. The bus is large and takes up a significant portion of the image. In the background, there are large billboards along the street, displaying advertisements. The billboards are bright and colorful, catching the eye of passersby. The scene is set during the day, with the bus and billboards reflecting sunlight.", + "id": 34211 }, { - "image_path": "G:\\images\\combined\\0540e1278fc37506.jpg", - "response": "In the image, two female models are showcasing a variety of LG LTE smartphones in front of a LG LTE sign. There are a total of 18 smartphones displayed, with each model holding one smartphone in their hands. The smartphones are of different sizes and colors, and some are being held upright, while others are being held at an angle. The models are smiling and posing for the camera, creating a positive atmosphere around the display.", - "id": 35251 + "image_path": "G:\\images\\combined\\02453db441cf3194.jpg", + "response": "a close up of two wrist watches on a wrist.", + "id": 34212 }, { - "image_path": "G:\\images\\combined\\054120ad184265f1.jpg", - "response": "A large white sign that says Pullman Dock on it.", - "id": 35252 + "image_path": "G:\\images\\combined\\0245497d0c801eb1.jpg", + "response": "An image of two LG G Watch in white and black.", + "id": 34213 }, { - "image_path": "G:\\images\\combined\\0544630bea765ac7.jpg", - "response": "A close up of a wrist with a smart watch on it. The watch is white and has a digital display. The display shows the number 75. There is also a heart rate monitor on the watch.", - "id": 35253 + "image_path": "G:\\images\\combined\\024604312c78c4f4.jpg", + "response": "A car is parked next to a fence and a chain link fence. There are three signs on a wooden pole. One says \"tyres breaks servicing\" in red and white. Another says \"hand car wash\" in blue and black. The third sign is white and says \"tyres breaks servicing\" in red. There is a building behind the fence.", + "id": 34214 }, { - "image_path": "G:\\images\\combined\\05446872133f053c.jpg", - "response": "A black laptop computer is sitting on a homemade stand made of wood. The laptop is on a desk and the screen is open. There is a ruler laying in front of the laptop.", - "id": 35254 + "image_path": "G:\\images\\combined\\024671665f4e0be4.jpg", + "response": "a scene inside a market place", + "id": 34215 }, { - "image_path": "G:\\images\\combined\\0544689e36f6badd.jpg", - "response": "A bus parked in front of a brick building.", - "id": 35255 + "image_path": "G:\\images\\combined\\02472_jpg.rf.18c8c30fc1a112e403bc3da6e34d6562.jpg", + "response": " five men(196,267),(888,994) standing in front of a building", + "id": 34216 }, { - "image_path": "G:\\images\\combined\\0544a142bcd6efd7.jpg", - "response": "A Casio cell phone is sitting on top of a computer keyboard. The phone is a flip phone and is red and black in color. The screen of the phone is lit up and shows a purple image. There are several icons on the phone's screen, including a camera icon, a battery icon, and a signal icon.", - "id": 35256 + "image_path": "G:\\images\\combined\\02472_jpg.rf.ce3708786399d87b43e7c76f5ab64d36.jpg", + "response": "5 men(196,268),(889,994) standing in front of a building.", + "id": 34217 }, { - "image_path": "G:\\images\\combined\\05471e52c8c41290.jpg", - "response": "A building with a yellow awning and a large glass door.", - "id": 35257 + "image_path": "G:\\images\\combined\\02473_jpg.rf.ef5be2445bac6419cf435ff1331844d0.jpg", + "response": "The image shows a group of seven people standing on a rooftop. They are all wearing yellow high visibility vests. The people are from left to right: a man with black hair, wearing a white shirt and black pants; a woman with blonde hair, wearing a white shirt and black pants; a man with short black hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; a man with dark hair, wearing a white shirt and grey pants; a woman with dark hair, wearing a white shirt and grey pants; and a man with dark hair, wearing a white shirt and grey pants. The woman with dark hair is pointing to something off camera. The sky is grey and overcast. In the background, there is a building with a grey roof on the left, a building under construction with scaffolding in the middle, and another building with a grey roof on the right. There are several bags of building materials on the right side of the image, and a few people in the far distance.", + "id": 34218 }, { - "image_path": "G:\\images\\combined\\054a6a0f6f4a95f1.jpg", - "response": "A red Volkswagen van with a cart attached to it.", - "id": 35258 + "image_path": "G:\\images\\combined\\02474_jpg.rf.165c9989715d3c289a1e71ab507f1e98.jpg", + "response": "A group of men walking down a street next to a building.", + "id": 34219 }, { - "image_path": "G:\\images\\combined\\054b80abb4edf41b.jpg", - "response": "a person holding a camera in their hand", - "id": 35259 + "image_path": "G:\\images\\combined\\02475_jpg.rf.3a2771651984c552bbbf03c540c1dbad.jpg", + "response": "a group of people standing around a construction site", + "id": 34220 }, { - "image_path": "G:\\images\\combined\\054d1ccb9d4fd68e.jpg", - "response": "A desk with a laptop on it and many books and papers around the laptop.", - "id": 35260 + "image_path": "G:\\images\\combined\\02475_jpg.rf.ac5373838610d6c9c03eef07730f4ef4.jpg", + "response": "a group of people standing around a construction site", + "id": 34221 }, { - "image_path": "G:\\images\\combined\\054dd4ca2a338f8d.jpg", - "response": "The image features two cell phones sitting next to each other on a red cloth. The cell phones are of different sizes and are positioned in the foreground of the scene. One of the cell phones has its back cover off, revealing its battery and other internal components. The battery is labeled as BL-5J for Nokia. The other cell phone has its back cover on, and the brand is not visible. The two cell phones are located near the center of the image, with a penny placed between them to provide a sense of scale. The penny is oriented in a northerly direction, with its edge aligned vertically.", - "id": 35261 + "image_path": "G:\\images\\combined\\0247bed0e0c11603.jpg", + "response": "A brown dumpster with a sign that says \"Trash Only\" on the side.", + "id": 34222 }, { - "image_path": "G:\\images\\combined\\054e21e2171709d9.jpg", - "response": "A large billboard on the side of the road advertising daily flights to Dubai starting in September.", - "id": 35262 + "image_path": "G:\\images\\combined\\02483_jpg.rf.5572923be18fc61fbbf04e57dd1ea5d4.jpg", + "response": "A man is holding a phone to his ear in a construction site.", + "id": 34223 }, { - "image_path": "G:\\images\\combined\\054ec07c6f1469be.jpg", - "response": "A double decker bus is parked on the side of the street.", - "id": 35263 + "image_path": "G:\\images\\combined\\02483_jpg.rf.a76ce88c2ac07bf979a955d2211225e0.jpg", + "response": "A man is standing in a room with a blue sign on the wall. The sign has Chinese characters on it. The man is wearing a white shirt and a red hat. He is holding a cell phone to his ear.", + "id": 34224 }, { - "image_path": "G:\\images\\combined\\054f53eda2be7501.jpg", - "response": "A store with clothing racks and shelves of shoes and handbags.", - "id": 35264 + "image_path": "G:\\images\\combined\\0248fc7d3b176cdc.jpg", + "response": "A red and yellow bus with the number 35 on the side of it.", + "id": 34225 }, { - "image_path": "G:\\images\\combined\\05520ff3b2090808.jpg", - "response": "a man wearing a black and white hat and a black shirt", - "id": 35265 + "image_path": "G:\\images\\combined\\024a0e844d9b864d.jpg", + "response": "The cheerleaders are performing on the field.", + "id": 34226 }, { - "image_path": "G:\\images\\combined\\05551391c119d3cc.jpg", - "response": "A hand holding a phone displaying six different apps.", - "id": 35266 + "image_path": "G:\\images\\combined\\024a8c17281ef932.jpg", + "response": "The image shows a baseball field with players on it. There is a crowd of people in the stands watching the game. A group of people are standing on the field, including a man in a white baseball uniform with the number 27 on the back. Another man in a black jacket is standing next to the baseball player. A little girl is standing in front of the players, holding a baseball bat. A baseball glove is also visible on the field.", + "id": 34227 }, { - "image_path": "G:\\images\\combined\\0555a1f17c73207c.jpg", - "response": "A passport, a cell phone, a laptop, a camera, and a tripod are all laying on a red surface.", - "id": 35267 + "image_path": "G:\\images\\combined\\024b173546f0ffea.jpg", + "response": "The image shows a couple of men standing in a market, both of them wearing white lab coats. One of the men is holding a large fish and looking at it, while the other man is inspecting the fish as well. The market has a counter with several fish on it, and there are other people in the background. The market has a sign that says \"Homes Fish\" and there are some boxes and a chair in the scene.", + "id": 34228 }, { - "image_path": "G:\\images\\combined\\0555d9cdef6ba308.jpg", - "response": "A large red and white Value city furniture sign.", - "id": 35268 + "image_path": "G:\\images\\combined\\024b41e249214b47.jpg", + "response": "A silver and red airplane on display with people walking around it.", + "id": 34229 }, { - "image_path": "G:\\images\\combined\\0557c08f3843e913.jpg", - "response": "ANACS graded coins in plastic cases on a black tray.", - "id": 35269 + "image_path": "G:\\images\\combined\\024c8322c014be6d.jpg", + "response": "A couple of cars and a van are parked in a parking lot.", + "id": 34230 }, { - "image_path": "G:\\images\\combined\\0558c67463bea05a.jpg", - "response": "There are two mugs of beer sitting on a wooden counter. The beer is Suntory brand and has foam on top.", - "id": 35270 + "image_path": "G:\\images\\combined\\024d939917989017.jpg", + "response": "A group of men standing on a baseball field.", + "id": 34231 }, { - "image_path": "G:\\images\\combined\\0559c42c72ec4ffa.jpg", - "response": "A black laptop computer sitting on a wooden desk.", - "id": 35271 + "image_path": "G:\\images\\combined\\024db407764c448f.jpg", + "response": "A large passenger jet flying over a body of water.", + "id": 34232 }, { - "image_path": "G:\\images\\combined\\055aa4b3c46ff410.jpg", - "response": "a person in a costume standing in front of a banner", - "id": 35272 + "image_path": "G:\\images\\combined\\024dda03e7deb032.jpg", + "response": "A pitcher in a white baseball uniform with the number 30 on the back, wearing a blue hat and holding a baseball in one hand and a mitt in the other, standing on a pitcher's mound.", + "id": 34233 }, { - "image_path": "G:\\images\\combined\\055b8f4762ee71e3.jpg", - "response": "A man and woman are standing under a traffic light on a city street. They are close to each other and appear to be embracing. There is a silver minivan parked on the street and a car further down the road. A traffic light is visible on the left side of the image and another on the right. There is also a building with a sign that reads \"New England Inn\" on the corner of the street.", - "id": 35273 + "image_path": "G:\\images\\combined\\024ec4982caa140d.jpg", + "response": "A woman with a name tag on her shirt is holding an orange BlackBerry phone.", + "id": 34234 }, { - "image_path": "G:\\images\\combined\\055cd18de2c75a81.jpg", - "response": "a person holding an iPhone in their left hand. The iPhone is set to the backup options screen. The person is holding the phone in front of a keyboard.", - "id": 35274 + "image_path": "G:\\images\\combined\\024f5844b4cd9641.jpg", + "response": "A white trash can overflowing with trash next to a restroom sign.", + "id": 34235 }, { - "image_path": "G:\\images\\combined\\0561157a053ee700.jpg", - "response": "A store display for Mountain Dew has several cans of Mountain Dew on it.", - "id": 35275 + "image_path": "G:\\images\\combined\\02501_jpg.rf.426b7781705510e4af814cc4250ed217.jpg", + "response": "A man in a yellow hard hat pointing to a sign on a concrete wall that says \"\"\u6e05\u7406\u5de5\u5e8f\u6253\u7070\u6ce1\u5242\"\"", + "id": 34236 }, { - "image_path": "G:\\images\\combined\\0561158c78dfc33f.jpg", - "response": "A stone tower with a clock mounted on it's face.", - "id": 35276 + "image_path": "G:\\images\\combined\\025031d0e20d06e2.jpg", + "response": "A close up of a bar with three beer taps.", + "id": 34237 }, { - "image_path": "G:\\images\\combined\\0561778e6bb282e2.jpg", - "response": "A kitchen counter with a orange and silver mixer on it.", - "id": 35277 + "image_path": "G:\\images\\combined\\02508_jpg.rf.2c091f5f7ede8654690e2de1cab57791.jpg", + "response": "A group of men standing in a room looking at a wall. Some of the men are wearing hard hats. One man is pointing to a spot on the wall. There are windows on the left wall and a door on the right. The walls are bare and the floor is unfinished.", + "id": 34238 }, { - "image_path": "G:\\images\\combined\\0563aa89bbbc88c0.jpg", - "response": "A yellow building with two windows and a sign that says \"Shishkov\" on it.", - "id": 35278 + "image_path": "G:\\images\\combined\\02508_jpg.rf.3b22966fb578a3d9719bfb349c87dd77.jpg", + "response": "A group of men in a room with red helmets on their head. One man is pointing at the wall while another man is talking to him. A window with white frame is also seen in the room.", + "id": 34239 }, { - "image_path": "G:\\images\\combined\\0563b96631488ed6.jpg", - "response": "A stack of books and notebooks on a table.", - "id": 35279 + "image_path": "G:\\images\\combined\\0250b83132397ad1.jpg", + "response": "The image features a blue and white sign in a station. The sign has arrows pointing to the left and right. The text on the sign is in a combination of English and Japanese. The word \"Kumamoto\" is written in English on the sign. The word \"\u718a\u672c\u5e02\" which is in Japanese and translates to \"City of Kumamoto\" is also written on the sign.", + "id": 34240 }, { - "image_path": "G:\\images\\combined\\05640d9d140ec1d4.jpg", - "response": "A group of people in uniform are dancing in the street.", - "id": 35280 + "image_path": "G:\\images\\combined\\02514_jpg.rf.195d36e546c8086d3226357890ab389b.jpg", + "response": "Two construction engineers wearing orange safety vest and white helmet are walking on the construction site. A yellow crane is lifting something on the left side of the image and a truck is on the right side of the image. A person is wearing a green shirt in the foreground of the image.", + "id": 34241 }, { - "image_path": "G:\\images\\combined\\0565eb4d36473aa4.jpg", - "response": "A busy city street at night with cars, taxis, and pedestrians. The street is filled with neon lights from the surrounding buildings.", - "id": 35281 + "image_path": "G:\\images\\combined\\02514_jpg.rf.e3327475b16564072791a0c706ce4ae9.jpg", + "response": "Two construction engineers in orange safety jackets and white helmets are walking on a construction site. In the background there is a yellow crane and a red and white truck.", + "id": 34242 }, { - "image_path": "G:\\images\\combined\\056646dde5b3bf0a.jpg", - "response": "The image shows a computer desk with a laptop computer sitting on top of it. There is also a separate keyboard and mouse in front of the laptop. A large monitor is connected to the laptop, sitting to the left of the desk. Two pairs of headphones are connected to the laptop, one on the left and one on the right. A cell phone is also sitting on the desk, near the laptop.", - "id": 35282 + "image_path": "G:\\images\\combined\\02516_jpg.rf.23d69482bef5b57cb9de8cb76508229f.jpg", + "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", + "id": 34243 }, { - "image_path": "G:\\images\\combined\\056669372a21ff04.jpg", - "response": "a phone that is turned sideways on a red cloth", - "id": 35283 + "image_path": "G:\\images\\combined\\02516_jpg.rf.3be90344c41886039b1b91d719ebedbd.jpg", + "response": "A man in a black jacket and orange hard hat is kneeling down and holding a white device. Another man in a red hard hat is kneeling down next to him. They are both next to train tracks.", + "id": 34244 }, { - "image_path": "G:\\images\\combined\\0566a7e3d549539a.jpg", - "response": "A yellow double decker bus is parked on the side of the street.", - "id": 35284 + "image_path": "G:\\images\\combined\\02519_jpg.rf.0a0e0ca5b3092ec15a1f9ee43ceef70a.jpg", + "response": "The image shows three workers wearing safety vests and hard hats who are shoveling something into a cart. The scene is in black and white, except for the safety vests which are in orange, making the workers stand out. The street is being resurfaced and there are bags of asphalt next to the workers. The trees on the side of the street are filled with leaves and there is a stop sign in the background.", + "id": 34245 }, { - "image_path": "G:\\images\\combined\\0568903bc8b65da0.jpg", - "response": "A Samsung phone and an HTC phone are side by side on a wooden table.", - "id": 35285 + "image_path": "G:\\images\\combined\\02519_jpg.rf.8e03ba4a5aca890a1eb4215fde103519.jpg", + "response": "The image shows three workers wearing safety vests and hard hats who are shoveling debris into a wooden barrel on a cart. The workers are standing on a street corner near a pile of tree branches. The street has white stripes and there is a building in the background.", + "id": 34246 }, { - "image_path": "G:\\images\\combined\\0568d30600d5cf11.jpg", - "response": "A red and white bus is driving down the street.", - "id": 35286 + "image_path": "G:\\images\\combined\\02522b887c679db2.jpg", + "response": "A red double decker bus is driving down the street.", + "id": 34247 }, { - "image_path": "G:\\images\\combined\\05699fead0ea235d.jpg", - "response": "In the image, there are two baseball players standing next to each other on the field. Both of them are wearing full uniforms and have red helmets. One of the players is wearing a black shirt with the number 10 on the back. They are both holding baseball gloves and are ready for the game.", - "id": 35287 + "image_path": "G:\\images\\combined\\02522cb2c85633b7.jpg", + "response": "A large scoreboard in front of a stadium.", + "id": 34248 }, { - "image_path": "G:\\images\\combined\\056c63a71702d0db.jpg", - "response": "A alleyway with three garbage bins and a wall covered in graffiti.", - "id": 35288 + "image_path": "G:\\images\\combined\\02527_jpg.rf.8df2dd1c615dc9fc306a0acc596a4a06.jpg", + "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", + "id": 34249 }, { - "image_path": "G:\\images\\combined\\056dcc23c0fcdb46.jpg", - "response": "A woman with long dark hair is posing next to three bottles of hair products. The hair products are white and black and are displayed in a row. The woman has her head tilted to the side and is looking downwards. The image has a white background.", - "id": 35289 + "image_path": "G:\\images\\combined\\02527_jpg.rf.c4ae44f54672b411b15a4b6dde819cb4.jpg", + "response": "The image shows two men standing in front of a building under construction. Both men are wearing green and white hard hats. The man on the left is wearing a blue shirt and blue jeans. The man on the right is wearing a white shirt and green pants. They are both holding walking sticks.", + "id": 34250 }, { - "image_path": "G:\\images\\combined\\056e296765345890.jpg", - "response": "A cell phone with a slide out keyboard.", - "id": 35290 + "image_path": "G:\\images\\combined\\02528_jpg.rf.3a1462ebe26d1dc9d7e90f96e111d504.jpg", + "response": "a man standing in front of a body of water", + "id": 34251 }, { - "image_path": "G:\\images\\combined\\056fb09cff616aa3.jpg", - "response": "A man with glasses and a blue shirt is holding a fake snake while standing next to a man in a suit. They are both on a television screen.", - "id": 35291 + "image_path": "G:\\images\\combined\\02528_jpg.rf.db7b5771428aefcafb3fbbe9834f9195.jpg", + "response": "a man in a grey shirt standing in front of a body of water", + "id": 34252 }, { - "image_path": "G:\\images\\combined\\05732eb7d51fa766.jpg", - "response": "A hand holding a variety of coins and bank notes.", - "id": 35292 + "image_path": "G:\\images\\combined\\02531_jpg.rf.03e9940be6dfbb5e107e5e4f8d99b9eb.jpg", + "response": "The image shows two workers on a building site, standing on a steel structure which appears to be the roof of a building. Both workers are wearing yellow hard hats and steel-blue work clothes. The one on the left is holding a tool in their right hand, which is hanging down, while the one on the right has one hand on a metal bar and the other hand in their pocket. The sky appears to be overcast.", + "id": 34253 }, { - "image_path": "G:\\images\\combined\\0574aa88fc30b22f.jpg", - "response": "A Keurig coffee maker on display at a store.", - "id": 35293 + "image_path": "G:\\images\\combined\\02531_jpg.rf.bec610db45bc7ee947cb3fbf64b86e1b.jpg", + "response": "A construction site with two workers on top of a building frame wearing yellow hard hats.", + "id": 34254 }, { - "image_path": "G:\\images\\combined\\0575ba5a0f293756.jpg", - "response": "A white van with the doors open in a parking lot.", - "id": 35294 + "image_path": "G:\\images\\combined\\02532343ebb3c888.jpg", + "response": "An orange truck is parked in a parking space.", + "id": 34255 }, { - "image_path": "G:\\images\\combined\\0577f622a4326c11.jpg", - "response": "A gold and blue baseball jersey with the name Haskell on it and the number 44.", - "id": 35295 + "image_path": "G:\\images\\combined\\02533_jpg.rf.5025c5b276caeacb9f83b1f20273a667.jpg", + "response": "A construction worker in a yellow hard hat is holding a yellow power tool. He is standing in front of a building that is under construction. There are several cranes working on the building and a few people visible among the scaffolding. The sky is a clear blue and the sun is shining.", + "id": 34256 }, { - "image_path": "G:\\images\\combined\\0578555cc80e2ecc.jpg", - "response": "A Rolex watch with a green face and silver accents.", - "id": 35296 + "image_path": "G:\\images\\combined\\02535_jpg.rf.85fd29b5382f16bc731cf2635d4a0ce4.jpg", + "response": "In the image there are three construction workers on a building site. Two of them are crouching down looking at something on the floor while the third one is standing up and holding a clipboard. They are all wearing high visibility clothing.", + "id": 34257 }, { - "image_path": "G:\\images\\combined\\0578da75e0a8990d.jpg", - "response": "A black and white illustration of a man and woman with a dog standing around a stove. The text around the image reads \"There's a Detroit Vapor Stove to fit every kitchen and every purse.\"", - "id": 35297 + "image_path": "G:\\images\\combined\\02535_jpg.rf.ec82f7d8cb7cb3b26112f63869c33e33.jpg", + "response": "In the image there are three construction workers, one is holding a clipboard and two others are crouching down. They are all wearing neon yellow vests and blue hats. They are on a construction site with a blue sky in the background. In the foreground, there is a metal grid on the ground and a black bowl is placed on the left side.", + "id": 34258 }, { - "image_path": "G:\\images\\combined\\05794e1a7c733838.jpg", - "response": "a close up of a watch being held by a hand", - "id": 35298 + "image_path": "G:\\images\\combined\\02540_jpg.rf.06a73881bfa5238e1576f77a2ee5aaf8.jpg", + "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", + "id": 34259 }, { - "image_path": "G:\\images\\combined\\057a84d8b36af342.jpg", - "response": "A pair of wristwatches, one with a black leather strap and the other with a silver metal strap. Both have black faces with white numbers and hands.", - "id": 35299 + "image_path": "G:\\images\\combined\\02540_jpg.rf.7b8374d54effb076f5a3e4c4d2911c3f.jpg", + "response": "A man with a blue helmet and a clipboard in front of a crane and a building under construction.", + "id": 34260 }, { - "image_path": "G:\\images\\combined\\057b9c45b504ce4e.jpg", - "response": "A collage of a food truck, a cup of coffee, and a bird logo.", - "id": 35300 + "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.398f81e0b0f47782ceb51639c99d5938.jpg", + "response": "A group of students walking in front of a building.", + "id": 34261 }, { - "image_path": "G:\\images\\combined\\057b9fc231f6a5cc.jpg", - "response": "A book called \"The Pale King\" by David Foster Wallace is open to page 4. The book is sitting on a wooden table.", - "id": 35301 + "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5a73fff987186c8db99d8f8db872b14e.jpg", + "response": "A group of students walking in front of a building.", + "id": 34262 }, { - "image_path": "G:\\images\\combined\\057d63bb419d2109.jpg", - "response": "The image is a commemorative coin celebrating the 50th anniversary of the United Nations. The coin is a Singapore coin and is worth $5. The year 1995 is on the coin. The coin is not metallic. The coin has a picture of a lion on it. The word Singapore is on the coin. The word 1995 is on the coin. The word Sgd is on the coin. The word 5 is on the coin. The word $ is on the coin. The word Singapore is on the coin. The word Commemorative is on the coin. The word 50th is on the coin. The word Anniversary is on the coin. The word of the United Nations is on the coin.", - "id": 35302 + "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.5b4caf9358a7403c9cdbd5467805fb1c.jpg", + "response": "A group of students walking on a sidewalk in front of a building.", + "id": 34263 }, { - "image_path": "G:\\images\\combined\\057dc5a12d98472d.jpg", - "response": "A large clock on the side of a building.", - "id": 35303 + "image_path": "G:\\images\\combined\\025418_springwest005_jpg.rf.7e93218881764a18199b60619e532832.jpg", + "response": "A group of students walking on a sidewalk in front of a building.", + "id": 34264 }, { - "image_path": "G:\\images\\combined\\057e2f6c80b2ba78.jpg", - "response": "A whiteboard with writing on it.", - "id": 35304 + "image_path": "G:\\images\\combined\\02544_jpg.rf.21b869ffcfe4f894bb5768137a268500.jpg", + "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is wearing a watch on his left hand. He is focusing on his work.", + "id": 34265 }, { - "image_path": "G:\\images\\combined\\05809dbfee903455.jpg", - "response": "A very tall building with the word TRUMP lit up on the side of it.", - "id": 35305 + "image_path": "G:\\images\\combined\\02544_jpg.rf.4ea8beb24bc89a5dc3e691f53624c5a4.jpg", + "response": "A man wearing a yellow vest and a white helmet is working on a construction site. He is wearing a white helmet and a yellow vest. He is holding a yellow tool in his right hand and is measuring a wire mesh fence with it. The man is working on a pile of grey rocks.", + "id": 34266 }, { - "image_path": "G:\\images\\combined\\0580a20ac9d2bbd4.jpg", - "response": "A black iPhone is open to a social media app with several notifications.", - "id": 35306 + "image_path": "G:\\images\\combined\\02549_jpg.rf.91bdc2c889685c1f36f93079f5d9b602.jpg", + "response": "A man wearing a red helmet and glasses standing in front of a blue building.", + "id": 34267 }, { - "image_path": "G:\\images\\combined\\05813399afa37f53.jpg", - "response": "In the image there is a cafetiere, a white Doubleshot coffee mug, a bag of coffee and a manual coffee grinder.", - "id": 35307 + "image_path": "G:\\images\\combined\\02549_jpg.rf.df49cf04005a5ff69c67edc13ca77d16.jpg", + "response": "A man wearing a red helmet and glasses is standing in front of a blue building.", + "id": 34268 }, { - "image_path": "G:\\images\\combined\\0581358d6311a60b.jpg", - "response": "A car with a mercedes emblem on the back.", - "id": 35308 + "image_path": "G:\\images\\combined\\0254a7b29774518e.jpg", + "response": "A box set of three books, The Lord of the Rings, The Two Towers, and The Return of the King, by J.R.R. Tolkien.", + "id": 34269 }, { - "image_path": "G:\\images\\combined\\05826e652b59b412.jpg", - "response": "A red Mercedes city bus is parked on the street next to a red and white bus. The bus has the word \"city\" on the front of it.", - "id": 35309 + "image_path": "G:\\images\\combined\\025532b54c27c825.jpg", + "response": "An ice hockey rink is shown with fans in the stands.", + "id": 34270 }, { - "image_path": "G:\\images\\combined\\058415ab113ea63e.jpg", - "response": "A book titled \"Detroit is the Place to Be\" is open and sitting on a table. Another book titled \"Leading Change\" is open and laying on top of it. Several other books are stacked on the table next to the two open books.", - "id": 35310 + "image_path": "G:\\images\\combined\\0255c5bbd833e241.jpg", + "response": "A person is holding a black cellphone in their hand. The phone has a keyboard on the screen. The date is 20101007 and the time is 22:00. There is a note on the phone that says \"\u663c\uff5e\u30de\uff5e\u305a\". The phone is running Android.", + "id": 34271 }, { - "image_path": "G:\\images\\combined\\0584d0c42b656f11.jpg", - "response": "A blue wall with a clock that reads 11:58.", - "id": 35311 + "image_path": "G:\\images\\combined\\0255c70e4b04f292.jpg", + "response": "A green train engine with a red stripe on the bottom.", + "id": 34272 }, { - "image_path": "G:\\images\\combined\\0585ef20be791226.jpg", - "response": "A bottle of Old Crafty Hen next to a glass filled with beer. The bottle is sitting on a desk in front of a laptop.", - "id": 35312 + "image_path": "G:\\images\\combined\\02562_jpg.rf.67a54880c662a98d2b0e1e82ca4603bd.jpg", + "response": "An architect wearing a hard hat and holding blueprints.", + "id": 34273 }, { - "image_path": "G:\\images\\combined\\05865c77850249ca.jpg", - "response": "A television screen displays a guide to all the channels available. The screen shows a list of channels and their respective show times. The screen is on and it appears to be daytime.", - "id": 35313 + "image_path": "G:\\images\\combined\\02562_jpg.rf.acf146d01ce6b85412022a550268f673.jpg", + "response": "An architect sitting at a table with blueprints in front of him. He is wearing a yellow hard hat and a blue shirt with a tie.", + "id": 34274 }, { - "image_path": "G:\\images\\combined\\05867de435365596.jpg", - "response": "A man in a black suit is standing in front of a magazine rack in a convenience store. He is talking on his cell phone.", - "id": 35314 + "image_path": "G:\\images\\combined\\02564_jpg.rf.431eef3acbf26f392bdd60365ecb06d6.jpg", + "response": " A worker(271,190),(599,995) in a yellow hard hat(457,191),(573,305) stands in front of a building under construction.", + "id": 34275 }, { - "image_path": "G:\\images\\combined\\058922ff596fb694.jpg", - "response": "A bottle of red wine sits on a table in front of a wine rack.", - "id": 35315 + "image_path": "G:\\images\\combined\\02564_jpg.rf.9f4be7e575fd97a8179cfa7cf9aed58a.jpg", + "response": " A worker(272,190),(599,995) at a construction site.", + "id": 34276 }, { - "image_path": "G:\\images\\combined\\058b939f302d2ee9.jpg", - "response": "a slow cooker with a black lid and white lettering that says stay fit", - "id": 35316 + "image_path": "G:\\images\\combined\\02567_jpg.rf.85ad861803df9b33179aae6b4c0940d5.jpg", + "response": "a woman(46,418),(816,997) wearing a yellow hard hat(257,416),(541,597)", + "id": 34277 }, { - "image_path": "G:\\images\\combined\\058dd75a30aedfd9.jpg", - "response": "A poster for the Mairie de Paris Mon Ter Festival is displayed on a billboard. The festival runs from October 27 to November 2. The billboard is located on a sidewalk near a street.", - "id": 35317 + "image_path": "G:\\images\\combined\\02567_jpg.rf.b8d824d8e3d0004308505f63155ca9cd.jpg", + "response": "a woman(46,418),(817,997) wearing a yellow hard hat(255,417),(542,597)", + "id": 34278 }, { - "image_path": "G:\\images\\combined\\058f87b6a547be35.jpg", - "response": "In the image there are two black Sony remote controls side by side. The left remote control is for an HTPC and has many buttons including one for the internet, a button for streaming, and a button for 3D. The right remote control is for a TV and has many buttons as well including one for 3D and a button for streaming.", - "id": 35318 + "image_path": "G:\\images\\combined\\02569_jpg.rf.9ab631657a7969aa14724f05bea5a94a.jpg", + "response": "A man wearing a yellow shirt, brown gloves and a yellow helmet. He is holding a hammer and a piece of wood. He is smiling at the camera.", + "id": 34279 }, { - "image_path": "G:\\images\\combined\\05904458f5947e09.jpg", - "response": "A baseball player slides into the base while another player with a baseball glove stands nearby.", - "id": 35319 + "image_path": "G:\\images\\combined\\02569_jpg.rf.b2a9c2a8f74da25e512cb3cb5d8d687c.jpg", + "response": "In the image there is a man wearing a yellow hard hat, grey t-shirt and brown overalls. He is holding a hammer and a piece of wood. The man is smiling at the camera and is wearing gloves. He also has a tool belt around his waist.", + "id": 34280 }, { - "image_path": "G:\\images\\combined\\0590ff3e901c0a52.jpg", - "response": "A person holding a pile of bitcoins in their hand.", - "id": 35320 + "image_path": "G:\\images\\combined\\0256d9a8ffd6affb.jpg", + "response": "A bottle of wine and a box of chocolates are sitting on a table.", + "id": 34281 }, { - "image_path": "G:\\images\\combined\\0592d8874bd9be83.jpg", - "response": "A plate of fish and chips is sitting on a table.", - "id": 35321 + "image_path": "G:\\images\\combined\\02571_jpg.rf.035933d08e6f7d02d0669c664519248f.jpg", + "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a beard. The worker on the right has a beard and a mustache and is holding a shovel with both hands. Between the two workers, there is a small blue wagon with the number 9 on it. In the background, there are two blue containers and a building under construction. The sky is a clear blue and the sun is shining brightly.", + "id": 34282 }, { - "image_path": "G:\\images\\combined\\05932b7f300cbc02.jpg", - "response": "A cd case with the movie Angels and Airwaves on it.", - "id": 35322 + "image_path": "G:\\images\\combined\\02571_jpg.rf.3809b413a8acd64630cb1fcaade7abf8.jpg", + "response": "The image shows two construction workers shoveling sand at a construction site. They are both wearing orange vests and yellow helmets. The worker on the left is holding a shovel and has a yellow helmet with a black strap. The worker on the right is holding a shovel with both hands and has a yellow helmet with a red strap. They are both wearing black pants.", + "id": 34283 }, { - "image_path": "G:\\images\\combined\\059387098b2e926e.jpg", - "response": "a sign that has a picture of a bowl of black sesame vanilla ice cream", - "id": 35323 + "image_path": "G:\\images\\combined\\02572870e212d14b.jpg", + "response": "A book opened to two pages. The first page is on the left and is written in German. The second page is on the right and has an illustration of a group of people in front of a tower. The text around the illustration is in German.", + "id": 34284 }, { - "image_path": "G:\\images\\combined\\05940f004e45f43a.jpg", - "response": "A soccer match is being played on a field. Two players are on the field, one is wearing a red and black striped shirt and has a ball at his feet. The other player is wearing a blue and black striped shirt.", - "id": 35324 + "image_path": "G:\\images\\combined\\02572_jpg.rf.c7614afd6340a577c67beca3414d1e89.jpg", + "response": "A man wearing a yellow hard hat is on a brown ladder. He is working on a wall that has brown marble panels. There is a piece of cardboard on the ground and a box on the right side of the wall.", + "id": 34285 }, { - "image_path": "G:\\images\\combined\\0595c49a3d8223cb.jpg", - "response": " A man(365,177),(852,999) wearing a orange backpack(465,358),(727,848) and carrying a walking stick(188,286),(895,522) on his shoulders", - "id": 35325 + "image_path": "G:\\images\\combined\\02572_jpg.rf.e4cf223c98f1d1a65ba9e2d19608c5ae.jpg", + "response": "A man wearing a yellow hard hat is on a step ladder. He is working on a wall that is covered in a red and brown material. There is a board with the number 5 taped to the wall. The room has a lot of debris on the floor.", + "id": 34286 }, { - "image_path": "G:\\images\\combined\\059614ae4190a994.jpg", - "response": "A keyboard covered in dirt and grime.", - "id": 35326 + "image_path": "G:\\images\\combined\\02578_jpg.rf.f3d07db28c6027f6f48720e42d7c8a7f.jpg", + "response": "An engineer or construction worker with a blue hard hat on. He is wearing a plaid shirt with his arms crossed and giving a thumbs up.", + "id": 34287 }, { - "image_path": "G:\\images\\combined\\0596b59916f9b706.jpg", - "response": "The image shows two men working on a white commercial van. The van has a large advertisement on the back. The men are bent over, looking at something. There are two bicycles parked nearby. One bicycle is in the foreground, leaning against a rail. Another bicycle is in the background, on the right side of the image.", - "id": 35327 + "image_path": "G:\\images\\combined\\0257eeda008582ab.jpg", + "response": "A stop sign with two green street signs above it.", + "id": 34288 }, { - "image_path": "G:\\images\\combined\\0597ca47b64bb2c3.jpg", - "response": "A black Samsung Vodafone cell phone.", - "id": 35328 + "image_path": "G:\\images\\combined\\0257f9e3387efc1a.jpg", + "response": "A black BMW SUV with a California license plate that reads \"MS EXEC\" is parked in a parking lot. There are trees in the background and a few other cars parked around the black BMW.", + "id": 34289 }, { - "image_path": "G:\\images\\combined\\059bcefb25f86bd0.jpg", - "response": "A sign for a store that has a picture of Radioactive Man from The Simpsons on it.", - "id": 35329 + "image_path": "G:\\images\\combined\\02580_jpg.rf.8e9731d4a3d8d277f07c9f99bf505b88.jpg", + "response": "An electrician with tools in his hand.", + "id": 34290 }, { - "image_path": "G:\\images\\combined\\059d35bacca0bea4.jpg", - "response": "A grey door with two windows under a sign that says Motor Cars Tire & Auto Care.", - "id": 35330 + "image_path": "G:\\images\\combined\\02580_jpg.rf.c1021d9dcfb6b522ad75b4a8f1f508d8.jpg", + "response": "A man wearing a hard hat and safety glasses, holding a screwdriver and smiling at the camera.", + "id": 34291 }, { - "image_path": "G:\\images\\combined\\05a2486a7c5e5b00.jpg", - "response": "In the image there is a child typing on a black laptop. The laptop is an LG model and is open and in use. The child is wearing a pink and white shirt and has their hands on the keyboard.", - "id": 35331 + "image_path": "G:\\images\\combined\\02581_jpg.rf.0f8c167abfbada0cbec69ec167ee9b54.jpg", + "response": "A man wearing a yellow hard hat and a orange vest.", + "id": 34292 }, { - "image_path": "G:\\images\\combined\\05a40edf53dc066c.jpg", - "response": "A laptop computer sitting on a table.", - "id": 35332 + "image_path": "G:\\images\\combined\\02581_jpg.rf.e8f5ec0bee29cecf6c6b80a11b30135f.jpg", + "response": "A man wearing a yellow hard hat and a orange vest.", + "id": 34293 }, { - "image_path": "G:\\images\\combined\\05a472446d5d4e21.jpg", - "response": "In the image there is a sign written in french hanging from a building. The sign says \"CHAUSSURES\" on the top and \"POM DA\" on the bottom. There is also a picture of a shoe under the text \"POM DA\". The building is color brown and has half timber architecture.", - "id": 35333 + "image_path": "G:\\images\\combined\\02586e00b621bfd3.jpg", + "response": "A book with a red cover that says \"My Grammar and I (or should that be 'me'?)\". The author is Caroline Taggart and J. A. Wines.", + "id": 34294 }, { - "image_path": "G:\\images\\combined\\05a4b86627af46a0.jpg", - "response": "An iPhone sitting on a white counter.", - "id": 35334 + "image_path": "G:\\images\\combined\\02586_jpg.rf.319a6983501b5afeaee9bd2f622851f0.jpg", + "response": "A man wearing a grey and orange hat and grey and orange jacket.", + "id": 34295 }, { - "image_path": "G:\\images\\combined\\05a4fa87bfdaa243.jpg", - "response": "A large jetliner sitting on top of an airport tarmac.", - "id": 35335 + "image_path": "G:\\images\\combined\\02586_jpg.rf.a85d2d29616cfe18e8aaa8f9c50c195f.jpg", + "response": "A construction worker is smiling at the camera. He is wearing a grey and orange hat and a grey and orange jacket. He is also wearing a green shirt. He is sitting in front of a wall made of wooden planks.", + "id": 34296 }, { - "image_path": "G:\\images\\combined\\05a74aca98689235.jpg", - "response": "A white can of Carling beer sits on a wooden surface.", - "id": 35336 + "image_path": "G:\\images\\combined\\02587_jpg.rf.6dc9aa563c9734a238b34af25db8e4e5.jpg", + "response": "An African American man wearing a white construction hat and holding a clipboard with a pen on it. He is smiling at the camera.", + "id": 34297 }, { - "image_path": "G:\\images\\combined\\05a8099e9157f5e1.jpg", - "response": "a large sign that says welcome to yakima", - "id": 35337 + "image_path": "G:\\images\\combined\\02587_jpg.rf.e3fbbc99b61cfec17da20066d5fbb807.jpg", + "response": "An African American man wearing a white construction hat and a brown shirt is smiling while writing on a clipboard.", + "id": 34298 }, { - "image_path": "G:\\images\\combined\\05aa4aa13ef48c3e.jpg", - "response": "A man is writing on a white board in a room.", - "id": 35338 + "image_path": "G:\\images\\combined\\02588_jpg.rf.759ec0bb9e589b53db3cf57abcafadbb.jpg", + "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", + "id": 34299 }, { - "image_path": "G:\\images\\combined\\05ab2441d54f60e4.jpg", - "response": "A white Mercedes Benz van is driving down a road next to a body of water. The van has the license plate S MB 5934. There are two people in the van, a man and a woman. The man is driving the van and the woman is sitting in the passenger seat.", - "id": 35339 + "image_path": "G:\\images\\combined\\02588_jpg.rf.d5b2c415d5368aa7a4211473c4bf107e.jpg", + "response": "A man wearing a hard hat and holding a variety of tools including a hammer, screwdrivers and a drill. He is smiling at the camera and has a goatee.", + "id": 34300 }, { - "image_path": "G:\\images\\combined\\05ae767c5c1c8445.jpg", - "response": "A poster for an event called Shine On Weekender. The text is black and is set against a yellow background. The dates for the event are 6-9 November 2015. The event is held at Butlins Minehead Arena. The poster lists a number of bands and artists who will be performing at the event. These include Happy Mondays, The Wonder Stuff, Inspiral Carpets, Stereo MC's, 808 State, The Orb, The Farm, The Wedding Present, Lo Fidelity Allstars, Space, The Real People, The Primitives, Mark Morris, Milltown Brothers, and Menswear.", - "id": 35340 + "image_path": "G:\\images\\combined\\02589_jpg.rf.03ebf2ca332c0102c021b8183278f8e6.jpg", + "response": "A engineer holding a ruler in front of a city.", + "id": 34301 }, { - "image_path": "G:\\images\\combined\\05af522ea188adb7.jpg", - "response": "A white board with notes written in black ink.", - "id": 35341 + "image_path": "G:\\images\\combined\\02590_jpg.rf.f5008c05b9f1733257a40d4982249c81.jpg", + "response": "The image depicts two workers sitting on a flight of stairs, both wearing blue work shirts and brown work boots. They are both smiling and one worker is on the left holding a drink in a red and white paper cup and the other worker is on the right holding a camera. They both have yellow hard hats on and the worker on the right is also wearing a watch. The background is a concrete wall and stairs.", + "id": 34302 }, { - "image_path": "G:\\images\\combined\\05af5f83e66bae17.jpg", - "response": "a black and gold rolex watch on a green table", - "id": 35342 + "image_path": "G:\\images\\combined\\02593_jpg.rf.26fdfa1548e61d7fb5573036126affb9.jpg", + "response": "A man wearing a yellow hard hat and a yellow and white striped shirt is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white and red building.", + "id": 34303 }, { - "image_path": "G:\\images\\combined\\05b1c48356e80e93.jpg", - "response": "A poster with a red illustration of a pepper on it.", - "id": 35343 + "image_path": "G:\\images\\combined\\02593_jpg.rf.69de790f1278a0d1a05913e9f3be2e08.jpg", + "response": "A man wearing a yellow hard hat and a yellow shirt with black stripes is shoveling cement into a wheelbarrow. He is wearing blue jeans and has a yellow hard hat on. There is a pile of sand next to the wheelbarrow. In the background, there is a white building with a red brick wall.", + "id": 34304 }, { - "image_path": "G:\\images\\combined\\05b2388fb1a75435.jpg", - "response": "A toy police van on a black and grey road.", - "id": 35344 + "image_path": "G:\\images\\combined\\02594_jpg.rf.96aef21b2973b39d93fdec62144a9e40.jpg", + "response": "Four contractors dressed in yellow and brown uniforms holding yellow tools.", + "id": 34305 }, { - "image_path": "G:\\images\\combined\\05b3d3c134004055.jpg", - "response": "Two boys in biking outfits are standing side by side with their arms around each other. They are wearing medals around their necks.", - "id": 35345 + "image_path": "G:\\images\\combined\\02594_jpg.rf.fe473d18046fe35a1e5e3b95063f8010.jpg", + "response": "Four contractors in yellow hard hats and brown overalls holding yellow tools.", + "id": 34306 }, { - "image_path": "G:\\images\\combined\\05b5fd41ade5f337.jpg", - "response": "A black and white photo of a Volkswagen van.", - "id": 35346 + "image_path": "G:\\images\\combined\\0259621e0cf41ab9.jpg", + "response": "A female model is holding an LG Smart TV Upgrade Kit in front of an LG Smart TV. The model is also holding a remote control. The TV is displaying various apps on its screen.", + "id": 34307 }, { - "image_path": "G:\\images\\combined\\05b6ce697e11ffb1.jpg", - "response": "A close up of a Cyber Shot phone sitting on a blue surface.", - "id": 35347 + "image_path": "G:\\images\\combined\\02598_jpg.rf.4092307a84670de7cd1ef1324480ccd4.jpg", + "response": "In the image, there is a man pushing a wheelbarrow. The man is wearing a striped shirt and jeans. He is pushing the wheelbarrow on a cement walkway. The wheelbarrow is filled with some items. There is a bench in the background. The scene takes place in a park. The trees in the park are green and there is a path through the park.", + "id": 34308 }, { - "image_path": "G:\\images\\combined\\05b9e8bb174bc788.jpg", - "response": "A baseball player swinging a bat over home plate.", - "id": 35348 + "image_path": "G:\\images\\combined\\025a9031c6d69880.jpg", + "response": "A woman in a purple dress standing in front of a display with a television.", + "id": 34309 }, { - "image_path": "G:\\images\\combined\\05bd3c543fbfe4af.jpg", - "response": "A poster with a picture of a crowd of people in the bottom left corner, a burning book in the bottom middle, and a military tank on the top right corner.", - "id": 35349 + "image_path": "G:\\images\\combined\\025b003422e87033.jpg", + "response": "A white coffee mug with the ID logo on it, sitting on a table with some green and blue paper wrapping.", + "id": 34310 }, { - "image_path": "G:\\images\\combined\\05be76d2400e4f39.jpg", - "response": "A poster advertising the train service between Zurich and Chur.", - "id": 35350 + "image_path": "G:\\images\\combined\\025c30962ae5b499.jpg", + "response": "A white police car with the word police on the back.", + "id": 34311 }, { - "image_path": "G:\\images\\combined\\05be79808b4a3347.jpg", - "response": "A phone with a lot of apps on it including Twitter, Messages, and Crepes.", - "id": 35351 + "image_path": "G:\\images\\combined\\025c3424c807d220.jpg", + "response": "A white board with a pie chart written on it in french.", + "id": 34312 }, { - "image_path": "G:\\images\\combined\\05be9e4047f4de52.jpg", - "response": "A red and beige double decker bus is driving down the street, followed by a blue car. There are two other buses in the background, one is green and white and the other is red and white. The street is lined with buildings and there are several people walking around.", - "id": 35352 + "image_path": "G:\\images\\combined\\025d205e2daeb2d8.jpg", + "response": "A red, white and purple SBS Transit bus is driving down the street.", + "id": 34313 }, { - "image_path": "G:\\images\\combined\\05c068154667aadc.jpg", - "response": "a black and white clock with the word accountements on it", - "id": 35353 + "image_path": "G:\\images\\combined\\025f9021f50def62.jpg", + "response": "a busy city street at night with many people walking around", + "id": 34314 }, { - "image_path": "G:\\images\\combined\\05c1d28f4c5cf49d.jpg", - "response": "A table with a red and white checkered tablecloth and a white plate with two packets of creamer on it.", - "id": 35354 + "image_path": "G:\\images\\combined\\02601_jpg.rf.d75d3c5255b4678587258866377a02d8.jpg", + "response": "A man sitting on a stool wearing a hard hat.", + "id": 34315 }, { - "image_path": "G:\\images\\combined\\05c22ba294e5299b.jpg", - "response": "A plaque commemorating John Witherspoon, who was a president, statesman, and minister.", - "id": 35355 + "image_path": "G:\\images\\combined\\02601_jpg.rf.df8202164119bd313bf5cdfa06a99e95.jpg", + "response": "A man sitting on a stool wearing a hard hat.", + "id": 34316 }, { - "image_path": "G:\\images\\combined\\05c2acc72ae80907.jpg", - "response": "A book is open to a page with a picture of a woman's underwear with a flower in it.", - "id": 35356 + "image_path": "G:\\images\\combined\\02603_jpg.rf.1c1acda039ae8f3fbd02532d56b6fe63.jpg", + "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", + "id": 34317 }, { - "image_path": "G:\\images\\combined\\05c39e1161450d87.jpg", - "response": "a black and white photo of a building with a sign that says Pekarna in red letters.", - "id": 35357 + "image_path": "G:\\images\\combined\\02603_jpg.rf.50eda3b4d3e14aeb00be55dcf5783d69.jpg", + "response": "In the image there is an Asian Chinese man working in a factory, he is a worker or a supervisor, wearing a safety vest and a helmet, he is also wearing headphones. He is smiling at the camera and holding a helmet in his hand. The background is a wall with many round holes.", + "id": 34318 }, { - "image_path": "G:\\images\\combined\\05c3fc256c80ccd5.jpg", - "response": "A television with a woman on the screen.", - "id": 35358 + "image_path": "G:\\images\\combined\\02604_jpg.rf.85995fb9499a68276618d61d46514463.jpg", + "response": "The image shows two construction workers taking a break. They are sitting on a concrete block and having a conversation. Both are wearing blue work clothes and yellow helmets. The man on the left is also wearing work gloves. In front of them is a stainless steel thermos. The background is a wall of concrete blocks.", + "id": 34319 }, { - "image_path": "G:\\images\\combined\\05c5dcaa0f59c029.jpg", - "response": "a street sign that says no parking except for two wheeled motorized vehicles", - "id": 35359 + "image_path": "G:\\images\\combined\\02605_jpg.rf.205af0a83f79e4fc82dd1b9d0163d084.jpg", + "response": "A man wearing a blue shirt and a red hard hat is smiling at the camera. He is standing in front of a stack of bamboo poles and a red bag. The man's shirt has the letters \"SRA\" on it.", + "id": 34320 }, { - "image_path": "G:\\images\\combined\\05c628f6696914f7.jpg", - "response": "A car with a Michigan license plate that says \"HELL\" on it.", - "id": 35360 + "image_path": "G:\\images\\combined\\026079aa58dc1990.jpg", + "response": "A bottle of beer is sitting on a ledge in front of a window.", + "id": 34321 }, { - "image_path": "G:\\images\\combined\\05c726fcbe14b9bb.jpg", - "response": "A group of women are gathered around a table with three laptops on it. They are all looking at the screens of the laptops and appear to be working on a project together. Some of the women are wearing matching shirts and there is a handbag on the table.", - "id": 35361 + "image_path": "G:\\images\\combined\\02607_jpg.rf.a240676fe568728188f3d71521e3130d.jpg", + "response": "A man wearing a white hard hat and a beige shirt, smiling at the camera.", + "id": 34322 }, { - "image_path": "G:\\images\\combined\\05ca11bef1fed595.jpg", - "response": "A silver watch with a white face and silver accents.", - "id": 35362 + "image_path": "G:\\images\\combined\\0260afa1f1b07207.jpg", + "response": "A woman in a pink and white outfit sitting on a rail.", + "id": 34323 }, { - "image_path": "G:\\images\\combined\\05cad7e0a038e402.jpg", - "response": "In the image there is a table with several books and a coffee mug on it. The books are written in Spanish and are stacked up. The mug has a peace sign on it. The table is shiny and the books are open on top of it.", - "id": 35363 + "image_path": "G:\\images\\combined\\02611_jpg.rf.57adea469c5ea4439ef56e94f31a387b.jpg", + "response": "a group of people standing in a construction site", + "id": 34324 }, { - "image_path": "G:\\images\\combined\\05cf910c6254bcef.jpg", - "response": "A white board with red writing on it.", - "id": 35364 + "image_path": "G:\\images\\combined\\026120baea2db777.jpg", + "response": "A person is holding a gold HTC phone in their hand.", + "id": 34325 }, { - "image_path": "G:\\images\\combined\\05cfb12ede46eeee.jpg", - "response": "A hockey game is in action with players from both teams all over the ice. The Devils goalie is making a save on a shot from the Boston Bruins. The Devils have three players on the ice while the Bruins have five. The Devils have a player in a blue and white jersey skating towards the net with the puck. The player in the red jersey is in the process of making a shot on goal. The player in the blue jersey is in the process of making a save. The player in the red jersey is in the process of scoring a goal. The player in the blue jersey is in the process of blocking the shot. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of getting up. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in the black jersey is in the process of falling to the ice. The player in the white jersey is in the process of falling to the ice. The player in", - "id": 35365 + "image_path": "G:\\images\\combined\\02617_jpg.rf.325cb3455256939bbb9d9f1592c3243b.jpg", + "response": "A group of men standing in front of a bulldozer at a construction site.", + "id": 34326 }, { - "image_path": "G:\\images\\combined\\05d02944612cdcc6.jpg", - "response": "A gold coin with an image of a man on a horse.", - "id": 35366 + "image_path": "G:\\images\\combined\\02617_jpg.rf.fd3d8a60486bcfe3516f0d55bb42f0f6.jpg", + "response": "A group of men standing in front of a bulldozer at a construction site.", + "id": 34327 }, { - "image_path": "G:\\images\\combined\\05d195f3b527e170.jpg", - "response": "A baseball player wearing number 23 is talking to an umpire.", - "id": 35367 + "image_path": "G:\\images\\combined\\02620f3115856977.jpg", + "response": "A car dashboard showing the time as 15:44 and the temperature as 30 degrees Celsius.", + "id": 34328 }, { - "image_path": "G:\\images\\combined\\05d2d1bb1d5666df.jpg", - "response": "An open book is laying on a bed with a pen and a small envelope on top of it. The book is a student planner and has a picture of a family on the cover. There is also a sticker on the planner.", - "id": 35368 + "image_path": "G:\\images\\combined\\02621_jpg.rf.be920818053c903a71e01c89f31c584b.jpg", + "response": "A bricklayer laying bricks on a roof of a house", + "id": 34329 }, { - "image_path": "G:\\images\\combined\\05d7a19d8d6ad54a.jpg", - "response": "A red and gold star patterned table with a yellow ruler on it and a pair of scissors.", - "id": 35369 + "image_path": "G:\\images\\combined\\02621_jpg.rf.fc3472e45e85b4d13d9654c6b89568ef.jpg", + "response": "A construction worker in a yellow helmet is laying bricks on a roof.", + "id": 34330 }, { - "image_path": "G:\\images\\combined\\05d932ecefc0c3bd.jpg", - "response": "a blue and white sign for Selly Oak Station car park", - "id": 35370 + "image_path": "G:\\images\\combined\\02623_jpg.rf.0aa118a9ac7a9bbd42378333d4759b35.jpg", + "response": "a man pushing a wheel barrel down a street", + "id": 34331 }, { - "image_path": "G:\\images\\combined\\05db6cd9951e9e81.jpg", - "response": "A female model is holding a LG G3 Screen in her hand and pointing to it. The phone is placed on the left side of her and she is showing the home screen. The model is also holding a black rectangular object in her left hand. She has a white sign in front of her that says \"LG G3 Screen \ucd9c\uc2dc\" which translates to \"LG G3 Screen launch\". The background of the image is a brown wall and a wooden table.", - "id": 35371 + "image_path": "G:\\images\\combined\\02626_jpg.rf.0d619c9d11ed5f712cbb0de8376b7c9e.jpg", + "response": "The image shows a group of construction workers standing on a construction site. They are wearing yellow work vests and white helmets. The vests have reflective stripes for increased visibility. Some of the workers are holding tools, including a drill and a hammer. The site is located in a city street, with buildings in the background. The workers are of different ages and appear to be working together.", + "id": 34332 }, { - "image_path": "G:\\images\\combined\\05dc223ebf80f0c0.jpg", - "response": "A green and yellow race car with stickers all over it.", - "id": 35372 + "image_path": "G:\\images\\combined\\02626_jpg.rf.1f2ed4c0c7e40001e3e555cde6b56022.jpg", + "response": "The image shows a group of construction workers on a building site. They are wearing yellow high visibility jackets and white hard hats. The jackets have reflective strips for increased visibility. The workers are standing in front of a building that is under construction. The building is made of brick and has a blue glass window. The workers are smiling at the camera and appear to be posing for the picture.", + "id": 34333 }, { - "image_path": "G:\\images\\combined\\05dc2aba2eb24411.jpg", - "response": "A video game screenshot of two characters fighting in a ring. One character is Bruce Lee and the other is a generic fighter. Bruce Lee is in yellow shorts and is throwing a punch at the other fighter.", - "id": 35373 + "image_path": "G:\\images\\combined\\02629_jpg.rf.658ff92673317b9a60f9cdfe86d55926.jpg", + "response": "In the image there are two construction workers sitting on cinder blocks in an unfinished building. They are both wearing hard hats and drinking from silver and red thermoses. The man on the left is wearing a blue shirt and blue pants with a yellow hard hat. The woman on the right is wearing a red helmet and a blue shirt and brown boots.", + "id": 34334 }, { - "image_path": "G:\\images\\combined\\05dca87c0791129e.jpg", - "response": "An old black rotary phone with a cord sitting on a white surface.", - "id": 35374 + "image_path": "G:\\images\\combined\\02630_jpg.rf.b668e96db14b17cc7cd46876b9c744a2.jpg", + "response": "A man wearing a black shirt and a yellow hard hat.", + "id": 34335 }, { - "image_path": "G:\\images\\combined\\05df1d7b1abf2c82.jpg", - "response": "A laptop with a box of water sitting on top of it.", - "id": 35375 + "image_path": "G:\\images\\combined\\02633051ccace644.jpg", + "response": "A silver airplane is parked in a hanger.", + "id": 34336 }, { - "image_path": "G:\\images\\combined\\05e2313e9ccc17cc.jpg", - "response": "In the image there is a grocery store filled with shelves of food. On the shelves there are price tags attached to the food. One of the shelves has a price tag that says Organics. The food on the shelves is colorful and there is a variety of items.", - "id": 35376 + "image_path": "G:\\images\\combined\\026356192b45e7a3.jpg", + "response": "A group of men in suits sitting at a table with a flag behind them.", + "id": 34337 }, { - "image_path": "G:\\images\\combined\\05e2e8a3531f395a.jpg", - "response": "A bottle of Sweet Water Brewing Company's Lowryeder Ipa.", - "id": 35377 + "image_path": "G:\\images\\combined\\02636_jpg.rf.563e25991456fc180d756d939699ef8a.jpg", + "response": "A man wearing a yellow hard hat looking into a large silver structure.", + "id": 34338 }, { - "image_path": "G:\\images\\combined\\05e3286667582499.jpg", - "response": "A close up of a blue bumper with a license plate that says Virginia Fragm.", - "id": 35378 + "image_path": "G:\\images\\combined\\02636_jpg.rf.d423ada6681fbb56a68292f210b524b6.jpg", + "response": "A man wearing a yellow hard hat looking into a large silver structure.", + "id": 34339 }, { - "image_path": "G:\\images\\combined\\05e7748e4c5d4849.jpg", - "response": "A close up of a bookshelf with several books and coffee mugs. The books are of various sizes and colors and are arranged on the shelf. The mugs are also of different sizes and are in front of the books.", - "id": 35379 + "image_path": "G:\\images\\combined\\026384b9c1a6742f.jpg", + "response": "A person is holding an open book. The book is open to a page titled \"After the War\". The text on the page is black. The person is holding the book in their left hand.", + "id": 34340 }, { - "image_path": "G:\\images\\combined\\05e85dc81bf1da9f.jpg", - "response": "A bottle of Chateau La Dominique wine sits on a wooden table. The wine is dark red and has a red and gold foil top. The label on the bottle is white with a brown picture of a castle on it. The castle has a shield with the name Chateau La Dominique on it. The year 2005 is on the label.", - "id": 35380 + "image_path": "G:\\images\\combined\\02638_jpg.rf.05696dabda738ee3632f7b63ff59b76f.jpg", + "response": "A man in a suit with a hard hat on, holding a blank board.", + "id": 34341 }, { - "image_path": "G:\\images\\combined\\05e8721b42640337.jpg", - "response": "A small airplane is parked in a snowy field.", - "id": 35381 + "image_path": "G:\\images\\combined\\02638_jpg.rf.48b2bfb3882165ee5c5319a2d2ad04ab.jpg", + "response": "A man in a suit with a hard hat on, holding a blank board.", + "id": 34342 }, { - "image_path": "G:\\images\\combined\\05e8b3aa94da4169.jpg", - "response": "A ruler that is in the snow.", - "id": 35382 + "image_path": "G:\\images\\combined\\0263a03829194424.jpg", + "response": "A glass of tea sits on a table next to a book. The glass has a straw in it and there are ice cubes in the tea. The book is open to a picture of a lake. A lit candle is also on the table.", + "id": 34343 }, { - "image_path": "G:\\images\\combined\\05ed96977cb9395b.jpg", - "response": "a soccer player wearing a yellow jersey with the number 10 on the back", - "id": 35383 + "image_path": "G:\\images\\combined\\0263bbdae7cd7509.jpg", + "response": "A women's soccer match with two teams playing against each other.", + "id": 34344 }, { - "image_path": "G:\\images\\combined\\05efbb562f5dba8e.jpg", - "response": "a scoreboard with the word ncaa on it", - "id": 35384 + "image_path": "G:\\images\\combined\\02640c8265111f59.jpg", + "response": "A orange and black bus is driving down the street.", + "id": 34345 }, { - "image_path": "G:\\images\\combined\\05efd99cec28b640.jpg", - "response": "The image shows a DVD cover for the movie Fool's Gold. The cover features a man and a woman in swimwear, standing close together and looking at each other while a boat burns in the background. The man is wearing a white shirt and the woman is wearing a black bikini. The DVD is on display in a store, with a price sticker of $3.", - "id": 35385 + "image_path": "G:\\images\\combined\\02641_jpg.rf.3a08b3b72ea716b3bae5e81c9987cff5.jpg", + "response": "A man wearing a blue hard hat and a plaid shirt is talking on a cell phone.", + "id": 34346 }, { - "image_path": "G:\\images\\combined\\05efe8833b038440.jpg", - "response": "In the image, two male wrestlers are standing on a wrestling mat, facing each other. The wrestler on the left is wearing blue and has his hands on his knees. The wrestler on the right is wearing red and has his hands on his hips. There is a crowd of people in the background, watching the match.", - "id": 35386 + "image_path": "G:\\images\\combined\\026430da02beed79.jpg", + "response": "The image shows a group of people sitting on a red double decker bus. There are two rows of seats, with the people seated on both the upper and lower decks. Some of the people are wearing ties, and there is a bouquet of flowers on one of the seats. The bus is on a city street, and there are buildings visible in the background.", + "id": 34347 }, { - "image_path": "G:\\images\\combined\\05f161e8475146ce.jpg", - "response": "A wooden desk with a clear plastic keyboard cover.", - "id": 35387 + "image_path": "G:\\images\\combined\\02644_jpg.rf.9d46f3b027eb07b2e365fb1af80fbf8f.jpg", + "response": "The image shows two construction workers building a high rise building. The workers are wearing red helmets and are focused on their work. The building has many floors and the workers are working on the first few floors. The building is surrounded by scaffolding. In the foreground, there is a white sign that says \"Fang.com\".", + "id": 34348 }, { - "image_path": "G:\\images\\combined\\05f2620cb094d130.jpg", - "response": "A gold and brown watch on a gold background.", - "id": 35388 + "image_path": "G:\\images\\combined\\02644_jpg.rf.b44bcc39f86cda341cd0308f6a44e700.jpg", + "response": "The image shows two construction workers at a building site. They are wearing hard hats and are working on a large concrete structure. The man on the left is crouching down and is holding a long piece of rebar. The man on the right is standing up and is holding a tool. The workers are the only people in the image and are the main focus. The background is blurred out and there is a fang.com logo in the bottom right corner.", + "id": 34349 }, { - "image_path": "G:\\images\\combined\\05f2dfcd237ec5ba.jpg", - "response": "A white envelope with a colorful star washi tape at the bottom.", - "id": 35389 + "image_path": "G:\\images\\combined\\02646_jpg.rf.871224d27b35ffe03e3000051907694b.jpg", + "response": "A man wearing a red hard hat and holding a shovel is standing in front of a pile of dirt.", + "id": 34350 }, { - "image_path": "G:\\images\\combined\\05f4120cf681e6cc.jpg", - "response": "A bathroom shelf with a mirror above it.", - "id": 35390 + "image_path": "G:\\images\\combined\\02649_jpg.rf.64c0beaf6955792bc837a9eec90e3529.jpg", + "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", + "id": 34351 }, { - "image_path": "G:\\images\\combined\\05f544c1a57e8541.jpg", - "response": "An antique watch with intricate details on the band and face.", - "id": 35391 + "image_path": "G:\\images\\combined\\02649_jpg.rf.85b8ed6bb708b8a66531d7b5be0fac8c.jpg", + "response": "In the image there are two people, a man and a woman, wearing yellow hard hats and safety vests. The woman is on the right and is holding a set of plans while talking on a cell phone. The man is standing next to her and is looking at the plans. They are both standing in front of a bridge that is under construction.", + "id": 34352 }, { - "image_path": "G:\\images\\combined\\05f55cb516868623.jpg", - "response": "A row of CDs on a wooden table, with a yellow wall behind them. The CDs are organized in a row and are of various sizes and colors.", - "id": 35392 + "image_path": "G:\\images\\combined\\0264b0b41cc90233.jpg", + "response": "A group of people are sitting around a table with laptops. There are two men sitting next to each other, one on the left and one on the right. In front of each person, there is a laptop. There are two cups on the table, one on the left and one on the right. A backpack is placed on the floor between the people on the left and the right.", + "id": 34353 }, { - "image_path": "G:\\images\\combined\\05f5b044d56c6e85.jpg", - "response": "A bucket of Henry patch cement sits on the ground. The bucket is blue and yellow and has a black handle. The label on the bucket is blue and white and has the word \"Henry\" in big white letters. The bucket also has the words \"Patch cement\" written on it.", - "id": 35393 + "image_path": "G:\\images\\combined\\02650af029bb1edc.jpg", + "response": "A pitcher of filtered water with a cup next to it.", + "id": 34354 }, { - "image_path": "G:\\images\\combined\\05f6eeea9b0ecb5c.jpg", - "response": "A large advertisement for a smartphone.", - "id": 35394 + "image_path": "G:\\images\\combined\\02653_jpg.rf.d37316dd0a5a225f8d2f9ab5eab2891c.jpg", + "response": " A construction worker(115,32),(599,993) wearing a yellow hard hat(297,32),(480,227) and orange vest(198,383),(564,996) giving a thumbs(322,576),(367,678) up", + "id": 34355 }, { - "image_path": "G:\\images\\combined\\05f850bedfc426be.jpg", - "response": "A book cover with a mountainous scene and three figures in the foreground, two of them holding swords.", - "id": 35395 + "image_path": "G:\\images\\combined\\02653_jpg.rf.f87766380759068fa1d4d57ced0f0fcc.jpg", + "response": " A construction worker(114,33),(599,994) in a yellow vest(203,382),(564,997) and hard hat(296,32),(481,228) giving a thumbs(322,573),(365,672) up", + "id": 34356 }, { - "image_path": "G:\\images\\combined\\05fab8d9991ca41c.jpg", - "response": "A picture of a building with a sign that says Woolworths on it.", - "id": 35396 + "image_path": "G:\\images\\combined\\02654_jpg.rf.8c5bb4ca070182afe9587c1b1b44114c.jpg", + "response": "The image shows two workers standing under a blue sky with white clouds. They are both dressed in blue overalls and white helmets, and are holding a stick with a meter-long ruler on it. The two workers are located on the left side of the image. To the right of them, there is yellow tower crane and a red tower crane. The yellow crane has a hook on its arm, and the red crane has a yellow counterweight on its hook.", + "id": 34357 }, { - "image_path": "G:\\images\\combined\\05fc2fa4d148506d.jpg", - "response": "A blue and white VW van is parked on the side of the road.", - "id": 35397 + "image_path": "G:\\images\\combined\\02654_jpg.rf.f21ad55d477c87043c578421b400b307.jpg", + "response": "Two workers stand under a blue sky, both are wearing white hard hats and blue work clothes. They are both holding a long wooden stick. On the right, there are yellow cranes in the background.", + "id": 34358 }, { - "image_path": "G:\\images\\combined\\05fe03cf47091298.jpg", - "response": "A boy standing at a kitchen island with a blender on the island.", - "id": 35398 + "image_path": "G:\\images\\combined\\02655_jpg.rf.4d9a38a35f8270b4cb19a195569d6c5e.jpg", + "response": "A close up of a person wearing a yellow hard hat.", + "id": 34359 }, { - "image_path": "G:\\images\\combined\\05fe4805036d9e2c.jpg", - "response": "A silver coin from 1921 next to a black pen.", - "id": 35399 + "image_path": "G:\\images\\combined\\02659495a67f99df.jpg", + "response": "A double decker bus is driving down the street.", + "id": 34360 }, { - "image_path": "G:\\images\\combined\\05ff38279bc0d7d6.jpg", - "response": "A busy city street with a crowd of people walking around. There are many street lights and buildings in the background.", - "id": 35400 + "image_path": "G:\\images\\combined\\02659_jpg.rf.7c70dbe73c35aea1b621a945953b66a8.jpg", + "response": "An engineer in a blue hard hat and suit, writing on a clipboard.", + "id": 34361 }, { - "image_path": "G:\\images\\combined\\0600493ade6da077.jpg", - "response": "A table topped with lots of books.", - "id": 35401 + "image_path": "G:\\images\\combined\\02659_jpg.rf.cbeee971ad9acd19f4b1b99a47567d12.jpg", + "response": "A man in a suit with a hard hat and clipboard.", + "id": 34362 }, { - "image_path": "G:\\images\\combined\\0600a2703cdd707e.jpg", - "response": "A large black and white clock mounted on a metal structure.", - "id": 35402 + "image_path": "G:\\images\\combined\\0265b9df37491412.jpg", + "response": "A basketball game is being played in an arena. The court is surrounded by many people, some of whom are sitting in chairs and others are standing. There are many more people outside the court, filling the arena. The arena has many entrances and exits, some of which are labeled with numbers. There is a large screen hanging from the ceiling, showing a video. Several people are walking around with cameras. Some people are wearing red, some are wearing blue, and some are wearing white.", + "id": 34363 }, { - "image_path": "G:\\images\\combined\\0600d03fbd7c32a9.jpg", - "response": "A baseball field with a large scoreboard above it.", - "id": 35403 + "image_path": "G:\\images\\combined\\02663_jpg.rf.34afbbdcecfd49ee170b271f6f6d6d48.jpg", + "response": "A construction worker is working on a steel structure. He is wearing a blue shirt and gray pants. He is working on a large building with a green wall. The sky is white and there are no clouds.", + "id": 34364 }, { - "image_path": "G:\\images\\combined\\0602623232127-web-tete_jpg.rf.11321124c0c93e467be27f9ca94f9b20.jpg", - "response": "In the image, there is a group of people wearing face masks. They are standing close to each other and walking through an airport. Some of them are carrying handbags and suitcases. The people are of different ages, including children and adults. Some of them are wearing black, while others are wearing white or red. A few of them are wearing medical masks, while others are wearing regular face masks. The scene is set in an airport terminal.", - "id": 35404 + "image_path": "G:\\images\\combined\\02664_jpg.rf.8370685322696afe97bc7bf5a92684d9.jpg", + "response": "A construction worker wearing a yellow hard hat and blue work clothes is placing a brick on a wall. The worker is holding a small trowel in his left hand. The sky is blue with a few white clouds. In the background, there are several buildings under construction.", + "id": 34365 }, { - "image_path": "G:\\images\\combined\\0602623232127-web-tete_jpg.rf.a81dcf1ec5eb0cd9038c7b20636179c5.jpg", - "response": "In the image, there is a group of people wearing face masks. They are walking through an airport. Some of them are wearing black, white, and gray face masks. One person is carrying a red and white handbag. There is also a child wearing a white face mask and a red and white jacket.", - "id": 35405 + "image_path": "G:\\images\\combined\\02664_jpg.rf.9270ad916810394c2812a5fc039403a2.jpg", + "response": "A bricklayer worker building a brick wall", + "id": 34366 }, { - "image_path": "G:\\images\\combined\\060393adbd95ad5e.jpg", - "response": "A science fiction magazine cover with a woman in a short blue space suit and a man in a spacesuit sitting on a planet in the background.", - "id": 35406 + "image_path": "G:\\images\\combined\\02665_jpg.rf.9bbc85ff3c623996b19788213c33203d.jpg", + "response": "A man is kneeling down and measuring something. He is wearing a blue shirt and jeans. He has a pen in one hand and a measuring tape in the other.", + "id": 34367 }, { - "image_path": "G:\\images\\combined\\06041cc69d3cb29a.jpg", - "response": "A street sign that says 20 zone on it.", - "id": 35407 + "image_path": "G:\\images\\combined\\02666_jpg.rf.382348b19af65a0abe2c1ad2587c597b.jpg", + "response": "A man wearing a yellow hard hat, blue and white checkered shirt, and a yellow tie. He is holding a blue clipboard with a red pen on it. He is wearing a yellow tool belt with multiple tools in it. He is also wearing blue jeans.", + "id": 34368 }, { - "image_path": "G:\\images\\combined\\060496f24b6c6b42.jpg", - "response": "A bottle of Bove\u043b\u0435\u043d sits next to a glass filled with beer. The bottle has a label with a picture of a man holding a pitchfork.", - "id": 35408 + "image_path": "G:\\images\\combined\\02667_jpg.rf.6b13527b342ddb4e08ca3e3e045b4567.jpg", + "response": "A man with a yellow hard hat on is looking to his right. He has a goatee and is wearing a blue shirt with suspenders. He has his arms crossed in front of him.", + "id": 34369 }, { - "image_path": "G:\\images\\combined\\060540f814b4ba97.jpg", - "response": "A black pay phone sitting on the sidewalk next to a fire hydrant.", - "id": 35409 + "image_path": "G:\\images\\combined\\02669_jpg.rf.7eb6a6e6648f571bd63c4f1c41a516dd.jpg", + "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", + "id": 34370 }, { - "image_path": "G:\\images\\combined\\0605600b4e2cd427.jpg", - "response": "A television screen showing a group of people walking down a wet street holding umbrellas.", - "id": 35410 + "image_path": "G:\\images\\combined\\02669_jpg.rf.b7b1cf754390a42cb00eae188bd2af8b.jpg", + "response": "An engineer or construction worker wearing a hard hat and holding a clipboard with a pen on it.", + "id": 34371 }, { - "image_path": "G:\\images\\combined\\060722-A-3715G-349_jpg.rf.aa183f735986d50b02898ab7c998308c.jpg", - "response": "A group of people wearing camouflage and noise canceling headphones are at a shooting range. There are several guns and targets visible in the scene. One person is kneeling down while shooting, and another person is aiming a gun. The image also shows the back of a mans head who is wearing camouflage and noise canceling headphones.", - "id": 35411 + "image_path": "G:\\images\\combined\\0266b91d58e2c16f.jpg", + "response": "A bus with an advertisement for underwear on the side is parked and letting people on.", + "id": 34372 }, { - "image_path": "G:\\images\\combined\\060824-F-2185F-013_JPG_jpg.rf.63d71d4bc7db27159d22b681de0f58ac.jpg", - "response": "A group of construction workers are working on a building site. They are wearing yellow vests and hard hats. One of the workers is shoveling cement into a mixer.", - "id": 35412 + "image_path": "G:\\images\\combined\\02674_jpg.rf.9d5b49b7de03263594fb7477b6988f5d.jpg", + "response": "a group of people standing in front of a construction site", + "id": 34373 }, { - "image_path": "G:\\images\\combined\\0608ce54c2a97af1.jpg", - "response": "A wooden box with the word Lipton on it.", - "id": 35413 + "image_path": "G:\\images\\combined\\02674_jpg.rf.e546b5ed03f0f6bf59a14bc74d46d91e.jpg", + "response": "a group of people standing in front of a construction site", + "id": 34374 }, { - "image_path": "G:\\images\\combined\\060a93ffee35bb49.jpg", - "response": "A green and white enter sign with a black arrow pointing upwards.", - "id": 35414 + "image_path": "G:\\images\\combined\\02675_jpg.rf.bfe5acae7198a24b2acff5f6fd7004ad.jpg", + "response": "A group of men walking across a dirt road.", + "id": 34375 }, { - "image_path": "G:\\images\\combined\\060ced2d96dba0d7.jpg", - "response": "A bottle of wine next to a glass of wine on a table.", - "id": 35415 + "image_path": "G:\\images\\combined\\02677_jpg.rf.11879219753956d9ef3fc866a8abf120.jpg", + "response": "A group of men standing on a construction site wearing hard hats", + "id": 34376 }, { - "image_path": "G:\\images\\combined\\060d3f916a232bbd.jpg", - "response": "A glass of beer sitting on a table next to a brown bottle.", - "id": 35416 + "image_path": "G:\\images\\combined\\02677_jpg.rf.273d78701d53c62e12bc1279e487721d.jpg", + "response": "A group of men standing on a construction site wearing hard hats", + "id": 34377 }, { - "image_path": "G:\\images\\combined\\060dcd71cd1b09ff.jpg", - "response": "A cell phone with a blue screen and many apps.", - "id": 35417 + "image_path": "G:\\images\\combined\\02679_jpg.rf.4829c6e1d846910521e5d2ff94b8c62a.jpg", + "response": "A group of men standing around and talking to each other.", + "id": 34378 }, { - "image_path": "G:\\images\\combined\\060e0d58d045138d.jpg", - "response": "A large crowd of people are in the stands watching a game.", - "id": 35418 + "image_path": "G:\\images\\combined\\02679_jpg.rf.87233e2f62a012674ab41f765bdcfd82.jpg", + "response": "The picture shows five men standing in a circle talking. They are all wearing coats. The man on the left is wearing a black coat with a white shirt and grey pants. The second man from the left is wearing a grey suit. The third man is wearing a black suit. The man on the right of the third man is wearing a black coat with a white shirt and blue jeans. The man standing to the far right is wearing a black coat with a red shirt and grey pants. There is a park in the background with a walking path.", + "id": 34379 }, { - "image_path": "G:\\images\\combined\\060ec35375b47526.jpg", - "response": "A television with a screen showing a video of a cat.", - "id": 35419 + "image_path": "G:\\images\\combined\\02680_jpg.rf.a36b9e9ceca546d8890cd44dbaf067ca.jpg", + "response": "A man in a red hard hat is standing in front of a pile of grey material.", + "id": 34380 }, { - "image_path": "G:\\images\\combined\\060f839ec876f4e8.jpg", - "response": "A group of men playing soccer on a field.", - "id": 35420 + "image_path": "G:\\images\\combined\\02686_jpg.rf.bfb3c3e04ff4514fcb517dcd89a57188.jpg", + "response": "The image shows a group of four men standing on a bank overlooking a body of water. The water appears green and murky, and there is a small bridge visible in the background. The men are standing on a dirt bank that appears to be a muddy brown color. They are dressed in a variety of outfits, with one man wearing a red polo shirt, another man wearing a striped shirt, a third man wearing a grey t-shirt, and the fourth man wearing a blue t-shirt. The fourth man is also wearing dark blue pants. The men are looking in different directions, possibly observing something in the water or considering the land beyond the water.", + "id": 34381 }, { - "image_path": "G:\\images\\combined\\061026-F-6882G-0001_JPG_jpg.rf.d2adbbe9e2f085e21f7c0ed1cf03dee8.jpg", - "response": "An airman is standing on the tarmac in front of a large U.S. Air Force plane. He is wearing an orange vest and holding two orange X's in his hands. Another person is visible behind the man, also on the tarmac.", - "id": 35421 + "image_path": "G:\\images\\combined\\02689368f8da2504.jpg", + "response": "A young girl wearing glasses and a white shirt sits at a table in a library. She is holding a small book and a stuffed animal. The table is surrounded by bookshelves full of books.", + "id": 34382 }, { - "image_path": "G:\\images\\combined\\0610819fdc3fdfa0.jpg", - "response": "The image depicts a baseball game in progress with two teams playing against each other. There are several players on the field, some wearing baseball gloves, and others wearing baseball uniforms. One player is seen running towards a base while others are spread out across the field. In the background, there are several cars parked, including a white SUV and a black truck. The scene captures the excitement and competitive nature of a baseball game.", - "id": 35422 + "image_path": "G:\\images\\combined\\02697_jpg.rf.27851d0a9228f7f5d7f9de334b0631a6.jpg", + "response": "A group of men standing in front of a large metal structure.", + "id": 34383 }, { - "image_path": "G:\\images\\combined\\06108ddacf8b9258.jpg", - "response": "The image depicts a street intersection with a green traffic light. There are two green lights on the left side of the street and one green light on the right side. The street appears empty, with no cars visible in the intersection. The street signs are clearly visible, indicating that this is a well-marked intersection.", - "id": 35423 + "image_path": "G:\\images\\combined\\02697_jpg.rf.ec8ddc155a613e2d84a0242ad7035c4a.jpg", + "response": "A group of men standing in front of a large blue object.", + "id": 34384 }, { - "image_path": "G:\\images\\combined\\0611069bfe97ef91.jpg", - "response": "A street sign with many different languages on it.", - "id": 35424 + "image_path": "G:\\images\\combined\\0269b68e1093b0be.jpg", + "response": "A blue Porsche Turbo is parked on the side of the street.", + "id": 34385 }, { - "image_path": "G:\\images\\combined\\061186b6a107836b.jpg", - "response": "In the image, a man wearing a blue shirt and jeans is riding a bicycle down a city street. He is wearing a helmet and has a backpack on. The backpack has a sign attached to it that says \"T HATE.\" The man appears to be in motion, riding his bike.", - "id": 35425 + "image_path": "G:\\images\\combined\\0269e1c4388337da.jpg", + "response": "A black and white image of the Doctor and his companions on the cover of the Radio Times. The Cybermen are behind them.", + "id": 34386 }, { - "image_path": "G:\\images\\combined\\0611e28827ba45e3.jpg", - "response": "A coffee maker with many notes attached to it.", - "id": 35426 + "image_path": "G:\\images\\combined\\0269f47d51233350.jpg", + "response": "A Nazarene Express bus is parked on the side of the street.", + "id": 34387 }, { - "image_path": "G:\\images\\combined\\0612be26dc019b40.jpg", - "response": "A large video screen at a baseball stadium.", - "id": 35427 + "image_path": "G:\\images\\combined\\026a2336a05b9329.jpg", + "response": "A full basketball stadium with fans watching the game.", + "id": 34388 }, { - "image_path": "G:\\images\\combined\\06132aee8e2b83d5.jpg", - "response": "A person is holding a HTC phone in front of a computer screen. The phone is a gold color and is the 5th generation HTC One. The time on the phone is 13:14 and the weather is cloudy. The phone has a home screen with various apps including Google, Facebook, and Yahoo.", - "id": 35428 + "image_path": "G:\\images\\combined\\026a3b24a2b20e62.jpg", + "response": "A close up of a wrist watch with a black band and a blue face.", + "id": 34389 }, { - "image_path": "G:\\images\\combined\\0615bdf42cb27974.jpg", - "response": "A man and woman standing next to each other.", - "id": 35429 + "image_path": "G:\\images\\combined\\026b958c8a6930b4.jpg", + "response": "A building with a sign that says \"Secret Stash\" on the second floor.", + "id": 34390 }, { - "image_path": "G:\\images\\combined\\061639aa244c5458.jpg", - "response": "A stack of chess books.", - "id": 35430 + "image_path": "G:\\images\\combined\\026c107ce2aa9765.jpg", + "response": "A blue and white van with a hot dog painted on the side is parked in front of a building.", + "id": 34391 }, { - "image_path": "G:\\images\\combined\\061686a7c2f60b2a.jpg", - "response": "A bottle of white wine with a blue and white label on it.", - "id": 35431 + "image_path": "G:\\images\\combined\\026c6cf13a2c1c64.jpg", + "response": "A person is holding a green can of Carlsberg beer in their right hand. The beer can is green with a white logo of the brand. The logo has the brand name \"Carlsberg\" written in white with a white Danish flag on top of the letter \"i\". The word \"COPENHAGUE\" is written in white below the brand name. The beer can is made by Carlsberg, a Danish brewing company.", + "id": 34392 }, { - "image_path": "G:\\images\\combined\\0616b25a73928682.jpg", - "response": "A white board with writing on it.", - "id": 35432 + "image_path": "G:\\images\\combined\\026dd5d587ea6925.jpg", + "response": "A white, pink and blue bus is driving down the street.", + "id": 34393 }, { - "image_path": "G:\\images\\combined\\0616d98ee407689d.jpg", - "response": "A movie poster with the title Nous Les Gosses.", - "id": 35433 + "image_path": "G:\\images\\combined\\026dfa7371ee747c.jpg", + "response": "A book cover with a grey picture of a persons shoulder and the title Cutting Understanding and Overcoming Self-Mutilation", + "id": 34394 }, { - "image_path": "G:\\images\\combined\\06182fa58de356a7.jpg", - "response": "A cell phone birthday card with a black cell phone on a aqua colored background. The cell phone has a watercolor striped design on it and the words \"Happy Birthday to You\" are on the screen. There is a button on each of the four corners of the cell phone. The card is on a white card base and the border is scalloped.", - "id": 35434 + "image_path": "G:\\images\\combined\\0270054d69289c06.jpg", + "response": "In the image there are several cardboard boxes stacked on top of each other. The boxes are of varying sizes and are stacked in a pile. The largest box is on the bottom and is slightly to the left of center. Above it are two boxes, one slightly smaller and one slightly larger, stacked on top of each other. Above these two boxes is the smallest box, which is also stacked on top. The boxes are sitting on a white floor with a reflection of the boxes visible on the floor.", + "id": 34395 }, { - "image_path": "G:\\images\\combined\\0619b059d30924a1.jpg", - "response": "A close up of a laptop computer with a person typing on it.", - "id": 35435 + "image_path": "G:\\images\\combined\\02707_jpg.rf.eb710557e806502a174d3551ad65a57f.jpg", + "response": "The image shows a group of men standing on a construction site. They are all wearing suits and standing around a pile of dirt. Some of the men are wearing hard hats. One man is wearing a red hard hat, and another is wearing a grey hard hat. One man is holding a bottle of water. The men are standing quite close to each other, and some of them are interacting, with one man pointing towards something to the left of the camera.", + "id": 34396 }, { - "image_path": "G:\\images\\combined\\0619f58bc7c5c695.jpg", - "response": "The image features a white car with a license plate that says \"NOFUKNJOKE\". The car is a BMW and is displayed in a museum.", - "id": 35436 + "image_path": "G:\\images\\combined\\0270a45dfa731b43.jpg", + "response": "A white and purple SBS Transit bus is on the street.", + "id": 34397 }, { - "image_path": "G:\\images\\combined\\061b09558af43b96.jpg", - "response": "a person is holding a smart watch on their arm", - "id": 35437 + "image_path": "G:\\images\\combined\\02721a3c64904634.jpg", + "response": "a person holding a cell phone with the word environment on the screen", + "id": 34398 }, { - "image_path": "G:\\images\\combined\\061b3eef44b68716.jpg", - "response": "A jar of monkey farts candle sits on a table.", - "id": 35438 + "image_path": "G:\\images\\combined\\027348743a9b8374.jpg", + "response": "A silver car parked in a parking space.", + "id": 34399 }, { - "image_path": "G:\\images\\combined\\061c45e63f462e82.jpg", - "response": "A car with a license plate that says \"6RGF07L\" on the back.", - "id": 35439 + "image_path": "G:\\images\\combined\\02744e7b04286274.jpg", + "response": "A poster for a radio show called \"Informativos\" with a woman on it.", + "id": 34400 }, { - "image_path": "G:\\images\\combined\\061c4ad060db05ca.jpg", - "response": "The scoreboard records Dilshan's 54 and Paranavitana's 32", - "id": 35440 + "image_path": "G:\\images\\combined\\0274563905d0f4aa.jpg", + "response": "A Rollei 35 camera on a green table with a black strap.", + "id": 34401 }, { - "image_path": "G:\\images\\combined\\061d590e5ad36901.jpg", - "response": "A close up of several wine bottles on a wooden table.", - "id": 35441 + "image_path": "G:\\images\\combined\\02748cc67037e249.jpg", + "response": "A booth with a purple sign that says \"Brachs\" on it.", + "id": 34402 }, { - "image_path": "G:\\images\\combined\\061d8e57615d98c4.jpg", - "response": "A cell phone that is turned on and displaying a logo for HTC.", - "id": 35442 + "image_path": "G:\\images\\combined\\02760ec937c1eb02.jpg", + "response": "A variety of alcohol bottles are lined up on a counter.", + "id": 34403 }, { - "image_path": "G:\\images\\combined\\062120ccaf6c5a1b.jpg", - "response": "A woman wearing 3D glasses is pointing to a scene on an LG TV featuring a man doing a trick on a skateboard.", - "id": 35443 + "image_path": "G:\\images\\combined\\02761_jpg.rf.1392f95fa638ed038d4894daaf49cf60.jpg", + "response": "The image shows a group of six men walking together. They are all wearing dark colored clothing and several of them are carrying items such as a backpack and a handbag. The two men at the front of the group are wearing blue and white shirts and the man second from the right is wearing a yellow safety vest. In the background, there is a white building and a large advertisement for MCE, a company based in Shanghai. The advertisement also mentions that the picture is taken in Anhui province.", + "id": 34404 }, { - "image_path": "G:\\images\\combined\\0621dff7814daf99.jpg", - "response": "A close up of a kitchen aid mixer with a dough in it.", - "id": 35444 + "image_path": "G:\\images\\combined\\02766_jpg.rf.09a39ddc62c7e34afc5deb26c916a1ff.jpg", + "response": "Three men in hard hats standing in a construction site", + "id": 34405 }, { - "image_path": "G:\\images\\combined\\06275dd7215c2595.jpg", - "response": "A bottle of Electric Nurse DIPA sitting next to a glass filled with the beer.", - "id": 35445 + "image_path": "G:\\images\\combined\\02766_jpg.rf.7bb795e9b53dfc715ebd58fc4ba4c6c3.jpg", + "response": "A group of three men standing in a construction site wearing hard hats.", + "id": 34406 }, { - "image_path": "G:\\images\\combined\\06281410c3ae590d.jpg", - "response": "The image shows the rear view of a white BMW 320d Touring, which is a wagon version of the BMW 3-series. The car is parked in a parking lot with some grass in the background. The car has a license plate that reads \"LKC 698\".", - "id": 35446 + "image_path": "G:\\images\\combined\\02769_jpg.rf.4eeb200a3e8e265749d7836bc740416f.jpg", + "response": "A group of men standing around each other talking.", + "id": 34407 }, { - "image_path": "G:\\images\\combined\\06295491ac5d1776.jpg", - "response": "a man standing at a podium with microphones in front of him", - "id": 35447 + "image_path": "G:\\images\\combined\\02769_jpg.rf.8009ef322c8f1f0261ec847ab751411f.jpg", + "response": "A group of men standing around a cement lot.", + "id": 34408 }, { - "image_path": "G:\\images\\combined\\0629652789b0ab8d.jpg", - "response": "A small silver box is on a table with a wall behind it. The table also has three toy frogs and a book.", - "id": 35448 + "image_path": "G:\\images\\combined\\02774c51d44bb364.jpg", + "response": "A small plane sitting on top of a runway.", + "id": 34409 }, { - "image_path": "G:\\images\\combined\\062a0623250ac4af.jpg", - "response": "A large blue and yellow sign for the Hotel California.", - "id": 35449 + "image_path": "G:\\images\\combined\\02786_jpg.rf.579ed41586104dbc7b0d8016855dd379.jpg", + "response": "a group of people standing around a construction site", + "id": 34410 }, { - "image_path": "G:\\images\\combined\\062e3ddc1b760de6.jpg", - "response": "The image is split into two, showing the same keyboard layout side by side. The keys are white and grey and are in two rows. The first row has six keys, labeled A through F, and the second row has five keys, labeled 1 through 6. The letters on the keys are black.", - "id": 35450 + "image_path": "G:\\images\\combined\\02786_jpg.rf.b925f15639b7db9d596ff107806f73ca.jpg", + "response": "A group of people standing around a construction site", + "id": 34411 }, { - "image_path": "G:\\images\\combined\\062e529f19323364.jpg", - "response": "A street scene with a red and yellow street car traveling down the street. There are multiple traffic lights along the street and a few cars parked on the side of the road. The street is lined with buildings and there is a tall white building in the background.", - "id": 35451 + "image_path": "G:\\images\\combined\\02792845d4c12e95.jpg", + "response": "A billboard for a radio station called \"La Preciosa\" featuring three people on it.", + "id": 34412 }, { - "image_path": "G:\\images\\combined\\0631bf1ccff448a2.jpg", - "response": "A black and white photo of a run down building with a water tower on top. There is a stop sign in the foreground and a wooden sign in the background. The sky is cloudy and the street is empty.", - "id": 35452 + "image_path": "G:\\images\\combined\\02792f2ffa01db59.jpg", + "response": "a man and a child posing for a photo at an event", + "id": 34413 }, { - "image_path": "G:\\images\\combined\\0632337aeecc9696.jpg", - "response": "An electronic scale with a case on top of it.", - "id": 35453 + "image_path": "G:\\images\\combined\\0279382e07bed7de.jpg", + "response": "A couple of books are stacked on top of each other. The book on the top is \"Pretty Leslie\" by R.V. Cassill and has a white and purple cover. The book on the bottom is \"The Hour of Maximum Danger\" by James Barlow and has a blue cover.", + "id": 34414 }, { - "image_path": "G:\\images\\combined\\0632cdaee00bcca3.jpg", - "response": "A table with two copies of the book \"Lady Chatterley's Lover\" by D.H. Lawrence.", - "id": 35454 + "image_path": "G:\\images\\combined\\0279c6a2fece7d24.jpg", + "response": "a man in a green jacket is riding a bike down the street.", + "id": 34415 }, { - "image_path": "G:\\images\\combined\\0633e99daf2103f4.jpg", - "response": "A baseball player wearing a uniform with the number 45 on it.", - "id": 35455 + "image_path": "G:\\images\\combined\\027b733adc59cb1a.jpg", + "response": "a man in a gray baseball uniform with the number 30 on his shirt", + "id": 34416 }, { - "image_path": "G:\\images\\combined\\06355d5f311672d2.jpg", - "response": "The image shows a group of six men dressed in white baseball uniforms standing on a grassy field. They are all wearing black and white baseball caps, and some of them are also wearing black wristbands. The players are standing in a line, and each of them has a white number on the left side of their shirts. The baseball gloves they are wearing vary in color from light to dark brown. The field has white lines and a few small patches of grass are visible.", - "id": 35456 + "image_path": "G:\\images\\combined\\027d3d5f97ccbecc.jpg", + "response": "Three men standing next to each other, all wearing different colored shirts. One man is wearing a white baseball jersey with the word \"Rangers\" on it and the number 02. Another man is wearing a black shirt with white stripes. The third man is wearing a red shirt with a white collar. They are all smiling for the camera.", + "id": 34417 }, { - "image_path": "G:\\images\\combined\\06377f8a5a9e831c.jpg", - "response": "a close up of two gold pocket watches on a red surface", - "id": 35457 + "image_path": "G:\\images\\combined\\027d8f6dc37cac0a.jpg", + "response": "A home office with a desk and a computer.", + "id": 34418 }, { - "image_path": "G:\\images\\combined\\06382c3188d0e7e7.jpg", - "response": "Three women playing basketball, two of them wearing red and white jerseys and one wearing white and blue. They are all competing for the ball.", - "id": 35458 + "image_path": "G:\\images\\combined\\027d9141b87916cf.jpg", + "response": "A close up of a person holding a cell phone.", + "id": 34419 }, { - "image_path": "G:\\images\\combined\\0639268f2531c31c.jpg", - "response": "In the image, there is a large group of people gathered in the street. They are holding red flags and signs, and some of them are holding up smoke bombs, which are producing white smoke. In the center of the scene, a person is holding a red flare, which is producing sparks and light. The people are standing in front of a building with large windows.", - "id": 35459 + "image_path": "G:\\images\\combined\\027e333ed1096be0.jpg", + "response": "A man wearing earbuds is holding a cell phone in front of a bookshelf.", + "id": 34420 }, { - "image_path": "G:\\images\\combined\\0639ed62fbbbb695.jpg", - "response": "A black and gold image of a perfume bottle with a matching box and a black and gold bag.", - "id": 35460 + "image_path": "G:\\images\\combined\\027e8de3cf98ccfd.jpg", + "response": "A bottle of wine with a red and white label that says Gigandas on it.", + "id": 34421 }, { - "image_path": "G:\\images\\combined\\063c4e012fbe0120.jpg", - "response": "A vintage postcard from Boston, Massachusetts. The postcard has a blue and orange background with the words Greetings from Boston. The word Boston is written in large letters and has images of the state's landmarks. There is a picture of the state flower, the mayflower, and the state bird, the Boston lobster. The postcard has a yellow and blue border.", - "id": 35461 + "image_path": "G:\\images\\combined\\027fda9e531356a8.jpg", + "response": "An HH-60 Pave Hawk helicopter in flight with its landing gear down.", + "id": 34422 }, { - "image_path": "G:\\images\\combined\\063d10037d4ade2d.jpg", - "response": "A city street with shops and stores lining the street.", - "id": 35462 + "image_path": "G:\\images\\combined\\02809acd4a462cf6.jpg", + "response": "A man is holding a championship ring in his hands.", + "id": 34423 }, { - "image_path": "G:\\images\\combined\\064068705af4ecab.jpg", - "response": "a black and silver rolex watch on a green background", - "id": 35463 + "image_path": "G:\\images\\combined\\02812f13dd561112.jpg", + "response": "A man is holding a small knife in his hand. He is wearing a red shirt and has a few bracelets on his arm. He is also wearing a watch on his wrist. On his other hand, he has a pen. He is sitting in a car.", + "id": 34424 }, { - "image_path": "G:\\images\\combined\\0640fe309e2d025f.jpg", - "response": "A car with the license plate \"ROMA 7F9054\" on a cobblestone street.", - "id": 35464 + "image_path": "G:\\images\\combined\\02816_jpg.rf.81f637c87817c7da0e899260f2063460.jpg", + "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a red and white flag and a blue and white flag. There is also a large building on the left side of the street.", + "id": 34425 }, { - "image_path": "G:\\images\\combined\\064234cb569b0580.jpg", - "response": "In the image, a man wearing a blue and white baseball uniform is in the process of throwing a baseball. He is wearing a blue hat and holding a black baseball glove. The baseball field has a blue wall with white writing on it. There are several people in the background, some of them are sitting and others are standing. A bench is visible in the scene as well.", - "id": 35465 + "image_path": "G:\\images\\combined\\02816_jpg.rf.a063c5de583057f118e1399151b34dc7.jpg", + "response": "A group of men in white shirts and black pants are walking down a street. Some of the men are wearing ties. In the background there is a fence and a building. There is also a red flag and a blue flag.", + "id": 34426 }, { - "image_path": "G:\\images\\combined\\0647c745934ff80e.jpg", - "response": "The car is red and has a yellow license plate.", - "id": 35466 + "image_path": "G:\\images\\combined\\0281cc4ddb266927.jpg", + "response": "A bottle of Suntory Whisky next to a glass filled with the drink, both sitting on a wooden table.", + "id": 34427 }, { - "image_path": "G:\\images\\combined\\0648077918a79ddf.jpg", - "response": "The image features two women standing beside each other and holding up LG G Pad 8.3 tablets. Both women are smiling and looking into the camera. One woman is on the left side of the image and is holding an LG G Pad 8.3 in white in the right hand and an LG G Pad 8.3 in black in the left hand. The other woman is on the right side of the image and is holding an LG G Pad 8.3 in white in the right hand and an LG G Pad 8.3 in gold in the left hand. In front of them are two LG G Pad 8.3 tablets on stands. The one on the left is in white and the one on the right is in gold. The women are standing in front of an LG G Pad 8.3 promotional sign.", - "id": 35467 + "image_path": "G:\\images\\combined\\02825_jpg.rf.5ecdda7ba63de0bb1ccac6251537de56.jpg", + "response": "a group of men standing in front of a building under construction", + "id": 34428 }, { - "image_path": "G:\\images\\combined\\064a119b14d38f9e.jpg", - "response": "The image is a grid of 6 images of various bottles of Cava, a type of champagne. The bottles are shown from the top and vary in size and shape. The text at the top of the image says \"Cava\" and the year 2006 is also listed. The background of the image is a light pink color.", - "id": 35468 + "image_path": "G:\\images\\combined\\02825_jpg.rf.e7d18826f87e4cd5024e6a045f1b32ad.jpg", + "response": "The image shows a group of seven men standing in front of a building under construction. The men are wearing a variety of outfits, including a red shirt, a white shirt, a black shirt, a blue shirt, and a grey shirt. The man in the red shirt is holding a large stick, possibly a broom or a tool for construction. The men are all standing on a patch of dirt, and there are a few bricks and debris scattered around. The building in the background is made of steel beams and columns, and the roof is not yet finished.", + "id": 34429 }, { - "image_path": "G:\\images\\combined\\064aa8d36707c38d.jpg", - "response": "In the image, there is a woman wearing a red and white top and red bikini bottom while running down a street. She is wearing sunglasses and has her hair pulled back.", - "id": 35469 + "image_path": "G:\\images\\combined\\0282d4948723f25b.jpg", + "response": "The image features a white background with a silver container for a tooth whitening pen. The container is open, revealing the white tooth whitening pen inside. The pen is closed and sitting beside the open container.", + "id": 34430 }, { - "image_path": "G:\\images\\combined\\064b2080beb01a27.jpg", - "response": "A large glass window with a reflection of a building.", - "id": 35470 + "image_path": "G:\\images\\combined\\0282f8b1ea9e41ac.jpg", + "response": "A table topped with a pile of papers and a stack of books.", + "id": 34431 }, { - "image_path": "G:\\images\\combined\\064b4fa5233b6633.jpg", - "response": "An Asian female model is showcasing a smartphone with a control panel on the screen. She is standing next to a white LG Tromm washing machine. The model is also displaying a card with the same control panel on it.", - "id": 35471 + "image_path": "G:\\images\\combined\\0283104d36470fd6.jpg", + "response": "A white coffee cup with the Google logo printed on it.", + "id": 34432 }, { - "image_path": "G:\\images\\combined\\064cf4baf718ecc8.jpg", - "response": "A person is holding a Samsung Galaxy S5 in their hand. The back of the phone is silver and has small circles on it. The phone is held upright and you can see the camera on the back. The person holding the phone is in an office setting.", - "id": 35472 + "image_path": "G:\\images\\combined\\0283794849207391.jpg", + "response": "An open laptop computer is on a table. The screen displays a soccer game. The laptop is an acer brand.", + "id": 34433 }, { - "image_path": "G:\\images\\combined\\064cfcc1687a2b2c.jpg", - "response": "A bottle of Clear Rockstar Vodka that is shaped like a skull.", - "id": 35473 + "image_path": "G:\\images\\combined\\0283973e541919a6.jpg", + "response": "A large black and red sign that says Welcome to Oriole Park at Camden Yards.", + "id": 34434 }, { - "image_path": "G:\\images\\combined\\064dcf621a91d9ac.jpg", - "response": "A red truck with a cage in the back is driving down a busy street. The street has multiple cars and a McDonald's restaurant is nearby.", - "id": 35474 + "image_path": "G:\\images\\combined\\02844f7565b33e32.jpg", + "response": "A garage with a yellow step ladder, a black trash can and a white shelf.", + "id": 34435 }, { - "image_path": "G:\\images\\combined\\064e34ad7f2fcd7b.jpg", - "response": "A keyboard with red lit up letters and symbols.", - "id": 35475 + "image_path": "G:\\images\\combined\\0284feb7eab6ac59.jpg", + "response": "A bottle of Hillrock Estate Distillery sits on a wooden table in front of a window. The bottle is rectangular and made of glass. It has a brown label with gold lettering and a gold emblem in the center. The emblem features a large H inside a circle. The bottle contains a golden liquid with a few small bubbles visible. The glass is reflecting the light from the window and the room.", + "id": 34436 }, { - "image_path": "G:\\images\\combined\\065305a3fdbc4599.jpg", - "response": "A book is open to a page titled \"Inside Concentration Camps\" on a wooden table.", - "id": 35476 + "image_path": "G:\\images\\combined\\02850fa992fb6b1b.jpg", + "response": "A large red sign that says HENEGHAN on it.", + "id": 34437 }, { - "image_path": "G:\\images\\combined\\065472b7e579692c.jpg", - "response": "A large firework is next to a can of soda.", - "id": 35477 + "image_path": "G:\\images\\combined\\028536373f325d0a.jpg", + "response": "A fridge covered in many posters and papers.", + "id": 34438 }, { - "image_path": "G:\\images\\combined\\06549f3db9effc44.jpg", - "response": "a close up of a wrist watch with a black and silver bulova watch on it", - "id": 35478 + "image_path": "G:\\images\\combined\\02853972cad856a9.jpg", + "response": "A variety of beers are lined up on a counter.", + "id": 34439 }, { - "image_path": "G:\\images\\combined\\0655a17837776dca.jpg", - "response": "The image features two wristwatches with green and black straps. The straps are made of nylon and are military green in color. The wristwatches have black faces and white accents. One of the wristwatches has a black face with white accents, while the other one has a green face with white accents. The hands of both wristwatches are white. The faces of the wristwatches have various markings and numbers. The case of the wristwatches are made of stainless steel. The wristwatches are set on a white surface.", - "id": 35479 + "image_path": "G:\\images\\combined\\0285dbc1db272d9c.jpg", + "response": "A pole with two traffic lights on it, one is red and the other is black. There is also a yellow sign on the pole.", + "id": 34440 }, { - "image_path": "G:\\images\\combined\\0656060745f6eaae.jpg", - "response": "The image features a close up of two brown coffee mugs sitting next to each other on a table. The mugs have a circular logo that says \"Starbucks\" on the left and \"Coffee. TEA. SPICES.\" on the right. Below this is a paragraph in white that says \"THE FIRST STARBUCKS STORE Pike Place Market Seattle WA est. 1971\" in white. The background is a dark brown.", - "id": 35480 + "image_path": "G:\\images\\combined\\0286122f9a6ad175.jpg", + "response": "A baseball player wearing a white and red uniform runs across the field.", + "id": 34441 }, { - "image_path": "G:\\images\\combined\\065674a596dea1bc.jpg", - "response": "A baseball game is being played in a stadium. There is a batter up to plate and the pitcher is winding up to throw the ball. The catcher is positioned behind the batter and the umpire is behind the catcher. There is a large crowd in the stands watching the game.", - "id": 35481 + "image_path": "G:\\images\\combined\\028666689b226783.jpg", + "response": "A white board with writing on it.", + "id": 34442 }, { - "image_path": "G:\\images\\combined\\0658db1f0796d47e.jpg", - "response": "A collection of guiness books of records stacked on a wooden bench.", - "id": 35482 + "image_path": "G:\\images\\combined\\0287bb93eef219a8.jpg", + "response": "A white board with red writing on it.", + "id": 34443 }, { - "image_path": "G:\\images\\combined\\065eb26a527cc930.jpg", - "response": "A woman wearing a white, blue and gold uniform is standing in a field.", - "id": 35483 + "image_path": "G:\\images\\combined\\0287f0215690bfc2.jpg", + "response": "A close up of a wooden ruler set on a red surface. The ruler is a yellow color and has black numbers. The numbers are labeled in both inches and centimeters. The ruler is broken in the middle and folded. There is a smaller wooden ruler behind the larger one.", + "id": 34444 }, { - "image_path": "G:\\images\\combined\\065f82278f4821bc.jpg", - "response": "A white Samsung laptop computer with a black screen.", - "id": 35484 + "image_path": "G:\\images\\combined\\02882201b7441ec8.jpg", + "response": "A Mr. malt container with a spigot sits next to a row of bottles of beer.", + "id": 34445 }, { - "image_path": "G:\\images\\combined\\0660add2bf06d746.jpg", - "response": "A person is holding a Samsung Galaxy phone in one hand and an HTC phone in the other. The Samsung phone is on the left and is a little bit taller and thicker. The home screens on both phones are colorful and feature icons for Google, Phone, and Internet. The HTC phone is on the right and has a more rectangular design. The time on the HTC phone is 10:15. The weather on both phones is sunny and the temperature is 13 degrees Celsius on the Samsung phone and 10 degrees Celsius on the HTC phone. The Samsung phone also has a notification of a missed call from the number 722.", - "id": 35485 + "image_path": "G:\\images\\combined\\02882ac168772e42.jpg", + "response": "A silver HTC phone sits on a wooden table next to a pair of red and white headphones.", + "id": 34446 }, { - "image_path": "G:\\images\\combined\\06628eaed257fa24.jpg", - "response": "In the image there are many hot air balloons in the sky. One of the balloons is pink with a pig on it. Another balloon has stripes and a tail. There are also many people on the ground watching the balloons.", - "id": 35486 + "image_path": "G:\\images\\combined\\028a0a57f600a2bd.jpg", + "response": "A computer monitor is sitting on a desk with a map of Australia on the screen. The monitor is connected to a laptop with a USB cord. There is a red wall behind the desk and two lights hanging from the ceiling.", + "id": 34447 }, { - "image_path": "G:\\images\\combined\\0665054b37963015.jpg", - "response": "A gold and silver watch with a white face and gold numbers.", - "id": 35487 + "image_path": "G:\\images\\combined\\028c34e9e29b6a2d.jpg", + "response": "A pitcher for the Storm Chasers winds up to throw a pitch.", + "id": 34448 }, { - "image_path": "G:\\images\\combined\\06651673adb4c4e6.jpg", - "response": "A stack of books about children's play, story, and school.", - "id": 35488 + "image_path": "G:\\images\\combined\\028c742176f8eb7c.jpg", + "response": "A red double decker bus is parked on the side of a street.", + "id": 34449 }, { - "image_path": "G:\\images\\combined\\0665cd6767d4c327.jpg", - "response": "A pair of blue handled scissors on a table next to a red stop sign cut out.", - "id": 35489 + "image_path": "G:\\images\\combined\\028cafa2c0db6845.jpg", + "response": "A bottle of champagne with the top partially removed.", + "id": 34450 }, { - "image_path": "G:\\images\\combined\\066687f8b782ab5b.jpg", - "response": "A large billboard advertising a housing development project.", - "id": 35490 + "image_path": "G:\\images\\combined\\028d6b73c92cbe09.jpg", + "response": "A vintage postcard of a garden with three sets of steps leading to a rose garden. There are three statues at the top of the steps.", + "id": 34451 }, { - "image_path": "G:\\images\\combined\\0669bc0057a29b7e.jpg", - "response": "The image shows the entrance to a Best Buy store. The sign for the store is yellow and black, and is attached to a blue wall. The word \"Best Buy\" is written in black letters on the sign. The sign is shaped like a yellow tag.", - "id": 35491 + "image_path": "G:\\images\\combined\\028dfaab7ad04b01.jpg", + "response": "A blue van with a white roof is parked in front of a house. The van is on the grass and is parked in front of a brick wall. The van is old and appears to be blue in color. The front of the van has a license plate that reads \"Z05335\". There is a bush next to the van and another bush behind it. The van is parked in front of a sidewalk.", + "id": 34452 }, { - "image_path": "G:\\images\\combined\\066b242df43a2afd.jpg", - "response": "The image shows the inside of a store with a long counter. There are several people standing around the counter, and some are wearing white shirts. The store has a variety of items on display, including many boxes and pictures. There are also several chairs and a bench in the room.", - "id": 35492 + "image_path": "G:\\images\\combined\\028ed391d78c2286.jpg", + "response": "A baseball player is giving another player a high five.", + "id": 34453 }, { - "image_path": "G:\\images\\combined\\066ba4a30967e316.jpg", - "response": "A red background with green and blue text that says \"A WOMAN'S 'I'll be ready in 5 minutes.' AND A MAN'S 'I'll be home in 5 minutes.' ARE THE SAME\"", - "id": 35493 + "image_path": "G:\\images\\combined\\028ee005563ec20d.jpg", + "response": "A person is holding a bottle of Loka.", + "id": 34454 }, { - "image_path": "G:\\images\\combined\\066e1c1a72aa9ba5.jpg", - "response": "A green piece of clothing with a joint, phone and glasses on top of it.", - "id": 35494 + "image_path": "G:\\images\\combined\\028f6a45f5b621d7.jpg", + "response": "In the image, a softball player is holding a bat and getting ready to swing at an incoming pitch. The player is wearing a blue and white uniform and is focused on the ball. There are other players and spectators in the background, watching the game.", + "id": 34455 }, { - "image_path": "G:\\images\\combined\\066e6dd48642b413.jpg", - "response": "A Dell computer monitor sitting on a desk.", - "id": 35495 + "image_path": "G:\\images\\combined\\02918_jpg.rf.912ce559c412d06e38a598e429cf01a9.jpg", + "response": "A man wearing a yellow hard hat is using a measuring tape to measure a piece of wood. He is holding the tape at the bottom and looking down at the tape. The man is wearing a blue shirt and his sleeves are rolled up. He has a pen in his left hand. The background is white.", + "id": 34456 }, { - "image_path": "G:\\images\\combined\\066f5833cd78c07a.jpg", - "response": "A baseball player wearing a white uniform with red lettering and black trim is running on the field. He is wearing a black and red baseball cap and a black baseball glove. He is on the green grass of the field and there is a white line on the dirt near the base. Another player is in the background.", - "id": 35496 + "image_path": "G:\\images\\combined\\0291e6b00e79072f.jpg", + "response": "A baseball game is in progress with several players on the field. The batter is swinging the bat and the catcher is holding a baseball glove. There are chairs and a bench in the background.", + "id": 34457 }, { - "image_path": "G:\\images\\combined\\066f6d1fa2f45d09.jpg", - "response": "A wrist watch with a wrist band that has a red and white stripe.", - "id": 35497 + "image_path": "G:\\images\\combined\\02920_jpg.rf.7577893c4627218ec7f18ed81dfecd8f.jpg", + "response": "An Asian man is wearing a yellow construction hat and a red T-shirt. He is showing his thumbs up and has a wide smile on his face. He has a small beard and his hair is black. The background is white.", + "id": 34458 }, { - "image_path": "G:\\images\\combined\\066ffb755fca5f44.jpg", - "response": "A black and white photo of a building with several windows. There are two police vans parked outside of the building. One is on the left side and the other is on the right side. There is a car parked in front of the building. There are two people standing outside of the building. One is on the left side and the other is on the right side. There is a sign on the building that says \"V\u00e4sttrafik\".", - "id": 35498 + "image_path": "G:\\images\\combined\\02920_jpg.rf.b7a65291b32c78b6a27e5d20d149c8b1.jpg", + "response": "An engineer in a red shirt and a yellow helmet is smiling and showing a thumbs up.", + "id": 34459 }, { - "image_path": "G:\\images\\combined\\0671a3cc715bcb2c.jpg", - "response": "A man wearing a black shirt with yellow writing on it and a black hat with white lettering on it.", - "id": 35499 + "image_path": "G:\\images\\combined\\02925_jpg.rf.0a61bec7ebce5e69e2c07c1d08394c66.jpg", + "response": "\u56fe\u4e3a\u4e00\u4f4d\u8eab\u7a7f\u7ea2\u8272\u886c\u886b\u7684\u7537\u6027\u5de5\u4eba\uff0c\u4ed6\u6234\u7740\u9ec4\u8272\u7684\u5b89\u5168\u5e3d\uff0c\u624b\u6301\u4e00\u4e2a\u7eb8\u76d2\u548c\u4e00\u4e2a\u5e73\u677f\u7535\u8111\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002\u80cc\u666f\u662f\u767d\u8272\u7684\u3002", + "id": 34460 }, { - "image_path": "G:\\images\\combined\\067371b2633fef26.jpg", - "response": "A Canadian airplane is on display in a museum with several tanks and cars.", - "id": 35500 + "image_path": "G:\\images\\combined\\02925_jpg.rf.d5c6832d960a7f0fc0dbc11b1461062b.jpg", + "response": "a worker holding a box and a notepad, smiling at the camera", + "id": 34461 }, { - "image_path": "G:\\images\\combined\\0673a09f8320a362.jpg", - "response": "A can of Mountain Dew next to a glass filled with the pinkish orange liquid.", - "id": 35501 + "image_path": "G:\\images\\combined\\02926_jpg.rf.11474ebe645fffc947130dc95b541142.jpg", + "response": "Two workers, one holding a tape measure and the other holding a clipboard, are talking about their work. They are both wearing hard hats and work clothes.", + "id": 34462 }, { - "image_path": "G:\\images\\combined\\0675447696bece71.jpg", - "response": "A street sign that says \"ZONE\" on it.", - "id": 35502 + "image_path": "G:\\images\\combined\\02926_jpg.rf.a879bd1e8d8adc2644cacc853316356a.jpg", + "response": "two workers in yellow and blue and white hard hats", + "id": 34463 }, { - "image_path": "G:\\images\\combined\\0677710c25164882.jpg", - "response": "An old book with a picture of a man riding a horse on the left page.", - "id": 35503 + "image_path": "G:\\images\\combined\\02927_jpg.rf.0f3a70cad745546d4b33b3de87d7a651.jpg", + "response": "An engineer in a yellow hard hat and orange work jacket, standing in front of a blue sky. The engineer is holding a black tablet in his hands and appears to be looking into the distance. He is wearing a white glove on his left hand and has a white rag tucked into the belt of his jacket.", + "id": 34464 }, { - "image_path": "G:\\images\\combined\\06778d17e36c6e74.jpg", - "response": "A stadium with a large scoreboard and a field with a goal post.", - "id": 35504 + "image_path": "G:\\images\\combined\\02927_jpg.rf.b18e195a5bc48389274209345e5da1e9.jpg", + "response": "An engineer in a yellow hard hat and orange work jacket stands outdoors holding a digital tablet. He is also wearing a yellow vest and has a white rag and a pair of glasses tucked in his shirt. The sky is blue with a few wispy clouds.", + "id": 34465 }, { - "image_path": "G:\\images\\combined\\0677ef4f71cdd0e6.jpg", - "response": "In the image there is a silver laptop that is turned off. The laptop is open and positioned with the keyboard facing the viewer. The laptop is sitting on a wooden table.", - "id": 35505 + "image_path": "G:\\images\\combined\\0292fc01cef92847.jpg", + "response": "A street scene with a bench, a red car, a yellow taxi cab, and a yellow car. There is also a building with a sign reading \"De Fazio Tiles & Stone\" on it.", + "id": 34466 }, { - "image_path": "G:\\images\\combined\\0678240750f2e8f1.jpg", - "response": "The image is an advertisement for Vodafone 360. The phone displayed is a Samsung Galaxy. The phone is shown in a black and silver color scheme. The screen is lit up and displays the Samsung logo. The phone is on top of a red and white striped surface. The words \"A new dimension in communication\" are written in red and white on the top of the image. The tagline \"Make the most of now\" is written in black on a white background at the top right corner of the image.", - "id": 35506 + "image_path": "G:\\images\\combined\\02935c97e1e9e0ae.jpg", + "response": "A box with a label on it that says MapQuest.", + "id": 34467 }, { - "image_path": "G:\\images\\combined\\067938722e1e4038.jpg", - "response": "a pair of headphones with the word sony on the side", - "id": 35507 + "image_path": "G:\\images\\combined\\0293f5c3f0650423.jpg", + "response": "a car with the license plate 73-61", + "id": 34468 }, { - "image_path": "G:\\images\\combined\\067c1c9d9aa81971.jpg", - "response": "A movie theater called the Coloseum with a poster for the Rote Baron movie.", - "id": 35508 + "image_path": "G:\\images\\combined\\02956429c662e8d4.jpg", + "response": "A pitcher winds up to throw the ball during a baseball game.", + "id": 34469 }, { - "image_path": "G:\\images\\combined\\067e9537c06f4c28.jpg", - "response": "In the image, I can see a jar of sea buckthorn body butter. The jar is white with a white lid and a yellow label. The label features a drawing of a leaf and the words \"sea buckthorn body butter\" in black font. The jar is filled with a light yellow buttery substance.", - "id": 35509 + "image_path": "G:\\images\\combined\\0295e9aa4e49ff29.jpg", + "response": "A table with a brown envelope and several pamphlets on top of it. The pamphlets are for a book sprint event called \"Class Acts\" and have a green and white color scheme. There is also a mouse on the table.", + "id": 34470 }, { - "image_path": "G:\\images\\combined\\067f5eada160a3ff.jpg", - "response": "A television that is turned on and showing a scene from the Olympics.", - "id": 35510 + "image_path": "G:\\images\\combined\\029674eb10cd5d0c.jpg", + "response": "A red double decker bus is driving down the street.", + "id": 34471 }, { - "image_path": "G:\\images\\combined\\06804848802f0b93.jpg", - "response": "A black cellphone with a touch screen is shown. The screen displays an album cover for Lollipop by Big Bang. The phone has a rubberized black exterior and a silver band on the side. There are five icons displayed on the bottom of the screen: a phone, a mail box, a calendar, a music player, and a internet explorer. The phone is on and displays the time as 12:35.", - "id": 35511 + "image_path": "G:\\images\\combined\\0296cca6b25c743d.jpg", + "response": "A table with a bottle of Alagash Tripel Reserve Belgian Style Ale next to a wine glass filled with the beer.", + "id": 34472 }, { - "image_path": "G:\\images\\combined\\0680e4eaedd1549a.jpg", - "response": "A book with the title \"Fart Proudly\" written on it.", - "id": 35512 + "image_path": "G:\\images\\combined\\02993daa70eb6dfb.jpg", + "response": "The image features a yellow amphibious bus with a purple hippo painted on the side. The bus is filled with passengers and is traveling down a city street. There are several people visible in the scene, some of which are standing near the bus. The bus has a Canadian flag on top and is driving in a parking lot.", + "id": 34473 }, { - "image_path": "G:\\images\\combined\\06827174c72ebfd3.jpg", - "response": "A character from Phantasy Star Online 2, a green-haired woman in a blue and white jumpsuit, with the words \"I stand with Reimi Edge. I promise to be of service.\" written in the corner.", - "id": 35513 + "image_path": "G:\\images\\combined\\029b0d1ffdd49ab4.jpg", + "response": "A black car with a California license plate that says \"ORKUT\" on it.", + "id": 34474 }, { - "image_path": "G:\\images\\combined\\0683afb826b21a90.jpg", - "response": "a cartoon depicting the anatomy of a star wars geek, who is depicted as a very fat man wearing a star wars t-shirt, holding a light saber and wearing a yoda mask. He also has a helmet, an air horn, and a pair of flip flops. He has a extensive comic book collection and has never kissed a girl. He is also an eBay master, has camped out at lincoln theater for 3 weeks, and has a vice president of solo hair lice. He is also a 38 year old who lives in parents garage, has a 7-11 assistant manager ID, and has a light saber. He is also an inflatable light saber, always wears a backup cream filled twinkie snack belt, and has a Star Wars fan club Vice prez of solo hair lice.", - "id": 35514 + "image_path": "G:\\images\\combined\\029ca2b6d6904295.jpg", + "response": "The image shows a small, round, chrome-colored compact with a mirror on the bottom. The compact is next to a rectangular box with the words \"px Flawless Skin Total Protection Concealer UVABVSP 25\" written on it. The box is in a light blue color and has a silver lid. The mirror has the company logo \"px\" written on it. The entire scene is set on a white surface.", + "id": 34475 }, { - "image_path": "G:\\images\\combined\\0684ea3155f00794.jpg", - "response": "The image features a large scoreboard at a stadium. The scoreboard is blue and says \"Touchdown\" in large letters. There are two people walking in front of the scoreboard, and a hand is holding a sign with a picture of a lion on it. The sign says \"SOS HE\" on it. There are also two flags on the left side of the image, and a large building in the background.", - "id": 35515 + "image_path": "G:\\images\\combined\\029ca9b64cfc78a4.jpg", + "response": "a police car with the number 721 on the back", + "id": 34476 }, { - "image_path": "G:\\images\\combined\\068601131e743b00.jpg", - "response": "A wooden door with two funeral no parking signs on it.", - "id": 35516 + "image_path": "G:\\images\\combined\\029d242949f19a9b.jpg", + "response": "A postcard of the M.V. Sophie C. on Lake Winnipesaukee, New Hampshire. The boat is white and traveling on the water. There are several people on the boat, some of them are waving. There are also several American flags flying from the boat. The sky is blue with white clouds and there are mountains in the background.", + "id": 34477 }, { - "image_path": "G:\\images\\combined\\068736c8481dadf1.jpg", - "response": "A man wearing a watch and a bracelet is standing in front of a red jeep.", - "id": 35517 + "image_path": "G:\\images\\combined\\029df8184c76cbca.jpg", + "response": "A store shelf filled with various types of beer.", + "id": 34478 }, { - "image_path": "G:\\images\\combined\\068a8155b97899ef.jpg", - "response": "A man standing at a podium in front of three yellow taxicabs.", - "id": 35518 + "image_path": "G:\\images\\combined\\029eeb15de850634.jpg", + "response": "A white and black clock face on a black background.", + "id": 34479 }, { - "image_path": "G:\\images\\combined\\068aab7aed80396c.jpg", - "response": "A bicycle frame is on display in a room. The wall behind the bicycle is red and white. There is a counter with a laptop on it to the left of the bicycle. There are several bottles on the counter and some shelves behind the counter. There is a red and white sign on the wall above the counter that says Glory Cycles. There is a blue and black bike stand holding the bicycle frame.", - "id": 35519 + "image_path": "G:\\images\\combined\\029f2bc0cf04580f.jpg", + "response": "A very decorative French carriage clock with enamel decoration.", + "id": 34480 }, { - "image_path": "G:\\images\\combined\\068d34bd37ed316b.jpg", - "response": "A bottle of dark beer next to a wine glass filled with beer.", - "id": 35520 + "image_path": "G:\\images\\combined\\029fc46844703970.jpg", + "response": "A yellow Correos mailbox sits on a brick sidewalk.", + "id": 34481 }, { - "image_path": "G:\\images\\combined\\068dda12bd537a24.jpg", - "response": "A fire truck parked in front of a fire station.", - "id": 35521 + "image_path": "G:\\images\\combined\\02a0b26f3e94e09f.jpg", + "response": "Two men standing in front of a white board with mathematical equations written in red and blue.", + "id": 34482 }, { - "image_path": "G:\\images\\combined\\068e3478b099b968.jpg", - "response": "On a wooden table sits two electronic time keeping devices. One is a white rectangular device with a large display and numbered buttons in black. The other is a smaller rectangular device with a digital display in black letters and numbers.", - "id": 35522 + "image_path": "G:\\images\\combined\\02a12552f70cad84.jpg", + "response": "In the image there is a silver and black keyboard. The top half of the keyboard is focused on and has the letters Q, W, E, R, T, Y, U, I, O, P, and B. The bottom half of the keyboard is out of focus and has the letters A, S, D, F, G, J, H, and the keys 1 and 2.", + "id": 34483 }, { - "image_path": "G:\\images\\combined\\0690772599861289.jpg", - "response": "A person with a black wrist watch that has the words 'Messaging' and 'Everdito Domestico' on it.", - "id": 35523 + "image_path": "G:\\images\\combined\\02a18bfd36e57636.jpg", + "response": "A busy street with many cars and taxis driving down the road.", + "id": 34484 }, { - "image_path": "G:\\images\\combined\\0693177a070ae01c.jpg", - "response": "An open book with a blue and green cover.", - "id": 35524 + "image_path": "G:\\images\\combined\\02a1e353feffa178.jpg", + "response": "a man catching a baseball with a glove", + "id": 34485 }, { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.152dda5b9697be628a6472ef58967853.jpg", - "response": "A cardboard box is on the floor. It is open and empty. There is a plastic bag next to it.", - "id": 35525 + "image_path": "G:\\images\\combined\\02a20e75172c4fbe.jpg", + "response": "An empty highway with a large billboard on the side of it.", + "id": 34486 }, { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.7b8f00e3bfb2030444368b967e414c50.jpg", - "response": "A cardboard box with the wordasics on it.", - "id": 35526 + "image_path": "G:\\images\\combined\\02a29f51bc070ec5.jpg", + "response": "A large building with a sign in front of it that says \"Strega Prime Italian Steakhouse\". The sign is red and black. The building has many windows. There is a flag on top of the building. The sky is blue with some clouds.", + "id": 34487 }, { - "image_path": "G:\\images\\combined\\0693e166-139Booooox_jpg.rf.df18e2d49b3ae9624a2a890b531b5a1d.jpg", - "response": "A cardboard box with a yellow and black sticker on it.", - "id": 35527 + "image_path": "G:\\images\\combined\\02a2f958472477cb.jpg", + "response": "A green typewriter with a red wire coming out of the top.", + "id": 34488 }, { - "image_path": "G:\\images\\combined\\06947190457b98c6.jpg", - "response": "A group of men playing soccer on a field.", - "id": 35528 + "image_path": "G:\\images\\combined\\02a33b74d21cb306.jpg", + "response": "A busy city street with many people walking around and two red double decker buses.", + "id": 34489 }, { - "image_path": "G:\\images\\combined\\0697548a03f24b91.jpg", - "response": "A white van with the letters C and C on the side of it.", - "id": 35529 + "image_path": "G:\\images\\combined\\02a355fc0dcc89cb.jpg", + "response": "A red bus is driving down the street.", + "id": 34490 }, { - "image_path": "G:\\images\\combined\\069a1ecc2b2c40f8.jpg", - "response": "A man and a woman in matching blue parkas pose for a picture in front of the Icebar sign.", - "id": 35530 + "image_path": "G:\\images\\combined\\02a3ba4c3886fe9a.jpg", + "response": "The image shows the back of a silver Honda with a vanity license plate that reads \"4DAHORD\". There is a football sticker on the left side of the plate and a \"T\"EF sticker on the right side. The license plate is from 2010. The image is taken at night, as indicated by the car's red brake lights.", + "id": 34491 }, { - "image_path": "G:\\images\\combined\\069e16f5ab78c05f.jpg", - "response": "A can of Heineken beer sitting on a desk in front of a computer.", - "id": 35531 + "image_path": "G:\\images\\combined\\02a4653c7e00cdfd.jpg", + "response": "A No Trespassing sign is in front of a brick building.", + "id": 34492 }, { - "image_path": "G:\\images\\combined\\06a063896f12b58c.jpg", - "response": "A sign for Selly Oak Park and Ride with an arrow pointing to the left.", - "id": 35532 + "image_path": "G:\\images\\combined\\02a5a6ed1bbc4f56.jpg", + "response": "A white board with writing on it.", + "id": 34493 }, { - "image_path": "G:\\images\\combined\\06a22fea02e3ab79.jpg", - "response": "In the image there is a pile of mixed coins, both gold and silver in color. Some of the coins are quite large, while others are much smaller. They are scattered across the image, with some coins overlapping and others standing alone.", - "id": 35533 + "image_path": "G:\\images\\combined\\02a657b3b00696a0.jpg", + "response": "An Air Force plane with a picture of a cartoon character on the side.", + "id": 34494 }, { - "image_path": "G:\\images\\combined\\06a56ecbe097d3c1.jpg", - "response": "A paper with a blue top that says \"Grow Locally, Cook Globally\" on it.", - "id": 35534 + "image_path": "G:\\images\\combined\\02a7108d09788bca.jpg", + "response": "a person wearing a black shirt with a banana on it", + "id": 34495 }, { - "image_path": "G:\\images\\combined\\06a7f1d5b80884dd.jpg", - "response": "A man in a red shirt standing outside a store.", - "id": 35535 + "image_path": "G:\\images\\combined\\02a733bbafcebac6.jpg", + "response": "A white bus with black windows is driving down the street.", + "id": 34496 }, { - "image_path": "G:\\images\\combined\\06a80a634d58ba62.jpg", - "response": "The image shows three soda bottles side by side. The leftmost bottle is dark and the rightmost bottle is light. The middle bottle is a mix of dark and light. The background is a purple color.", - "id": 35536 + "image_path": "G:\\images\\combined\\02a7e69714512a28.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 34497 }, { - "image_path": "G:\\images\\combined\\06a89bd0cab3f767.jpg", - "response": "In the image, there is a group of men dressed in maroon and white striped baseball uniforms. They are standing on a grassy field and are equipped with baseball gloves. There are three players in the foreground, with one of them talking to a coach. The coach is wearing a baseball mitt on his left hand and has a baseball glove on his right hand. Another baseball glove is visible on the ground.", - "id": 35537 + "image_path": "G:\\images\\combined\\02a950e4790377dc.jpg", + "response": "A helicopter is on display with people walking around it.", + "id": 34498 }, { - "image_path": "G:\\images\\combined\\06acb18d8ce3a3e9.jpg", - "response": "A bottle of Katar 90 oil in a box.", - "id": 35538 + "image_path": "G:\\images\\combined\\02a961f6c1f9ed12.jpg", + "response": "A pole with multiple street signs on it.", + "id": 34499 }, { - "image_path": "G:\\images\\combined\\06b0f22bfc9d4aa4.jpg", - "response": "A table with a book on it, the book is called \"Desert talismans\". There are necklaces and earrings on the table, some of them are made of stones and some have silver colored metal parts.", - "id": 35539 + "image_path": "G:\\images\\combined\\02a9ae215553fd35.jpg", + "response": "A large billboard is advertising an exhibit at the museum.", + "id": 34500 }, { - "image_path": "G:\\images\\combined\\06b2fa976acd7aa9.jpg", - "response": "A black USAF jet is on display outside.", - "id": 35540 + "image_path": "G:\\images\\combined\\02ab7fe6e854abb1.jpg", + "response": "A close up of a smartphone screen and camera.", + "id": 34501 }, { - "image_path": "G:\\images\\combined\\06b364f15e3d955b.jpg", - "response": "A children's book with the title Rapunzel is open to the page with the blonde haired princess.", - "id": 35541 + "image_path": "G:\\images\\combined\\02ab886884cca694.jpg", + "response": "The image features a case of compact discs. There are two cases visible, one is for beatmania IIDX 21 SPADA ORIGINAL SOUNDTRACK VOL.2 and the other is for an unidentifiable title. The cases are sitting on a table.", + "id": 34502 }, { - "image_path": "G:\\images\\combined\\06b48a4819a57d05.jpg", - "response": "A traffic light on a pole with two street signs attached to it.", - "id": 35542 + "image_path": "G:\\images\\combined\\02ac2afb418ed3bb.jpg", + "response": "A blue and white bus is stopped at a bus stop with several people waiting to get on. One man is using a cane and talking on a cellphone. There are traffic lights in the background and multiple cars parked along the street.", + "id": 34503 }, { - "image_path": "G:\\images\\combined\\06b519c24612aa10.jpg", - "response": "On a store shelf, two Neutrogena CoolDry Sport sunscreen bottles with spf 30 are displayed. The left bottle is taller and has a blue cap. The right bottle is shorter with a yellow cap. Both bottles are almost identical in design. There are other sunscreen bottles displayed in front of them and to the left side of the Neutrogena bottles. One of the bottles is from Aveeno and has a white cap. Another bottle is from Clear Face and has a white cap as well. The last bottle is from Wateraid and has a brown cap.", - "id": 35543 + "image_path": "G:\\images\\combined\\02acef174d2710fa.jpg", + "response": "A hand drawn sketch on white paper. The sketch is of an ear, a pencil, and a laughing Japanese child. The ear is drawn at the bottom left corner of the page. Above the ear is written \"Ear\". The pencil is written above the ear, with two plus signs above it. The pencil is drawn horizontally, with one end pointing to the ear and the other end pointing to the ear. The word \"Pencil\" is written below the pencil. Below the pencil is a child laughing. The child is drawn on the right side of the page. The child is wearing a hat and has a full head of hair. The child is laughing with their mouth wide open. The word \"Hee hee\" is written above the child. The word \"he\" is written below the child. The word \"Japanese\" is written to the right of the child. The word \"children\" is written to the right of \"Japanese\". The word \"laughing\" is written to the right of \"children\".", + "id": 34504 }, { - "image_path": "G:\\images\\combined\\06b5e54f9713b19b.jpg", - "response": "A red and white maple leaf is on the right side of the coin. The word Canada is on the left side of the coin. The year 1994 is on the bottom of the coin. The two coins are next to each other.", - "id": 35544 + "image_path": "G:\\images\\combined\\02adaed82504f6a9.jpg", + "response": "A bottle of Katari 90 olive oil in a black box.", + "id": 34505 }, { - "image_path": "G:\\images\\combined\\06b7f0b53d8b412a.jpg", - "response": "A watch with a black face and silver rim lays on a wooden table. The face of the watch is black with white numbers and hands. The hands on the watch are white and red. The watch has a black band with a silver buckle. The band is attached to the watch with a silver pin and the pin has some scratches on it. The watch is laying on a wooden table that has a striped pattern.", - "id": 35545 + "image_path": "G:\\images\\combined\\02b01664b075d896.jpg", + "response": "a truck carrying a load of wood(433,404),(579,653)", + "id": 34506 }, { - "image_path": "G:\\images\\combined\\06b8fbeec37ac5dc.jpg", - "response": "A store with shelves full of food products.", - "id": 35546 + "image_path": "G:\\images\\combined\\02b02edf2b10d764.jpg", + "response": "A white cell phone with a leather wrist strap.", + "id": 34507 }, { - "image_path": "G:\\images\\combined\\06bb1fea570039b2.jpg", - "response": "A computer keyboard and mouse are sitting on a desk.", - "id": 35547 + "image_path": "G:\\images\\combined\\02b14d624da3775a.jpg", + "response": "The image shows two men standing in front of a small airplane on a tarmac. The airplane has a blue stripe on the bottom and the words \"Aer Arann\" are painted on the side. The men are both wearing dark ties and are dressed in business attire. One of the men is wearing a navy jacket. The tarmac has a yellow line painted on it. The sky is overcast and there are no other people visible in the image.", + "id": 34508 }, { - "image_path": "G:\\images\\combined\\06bc833b6794cb6d.jpg", - "response": "A ruler in the snow.", - "id": 35548 + "image_path": "G:\\images\\combined\\02b249840073ee8b.jpg", + "response": "The image features a black keyboard with white lettering set on a white table. The keyboard has a USB connection and a cable is plugged into it. The cable is also black.", + "id": 34509 }, { - "image_path": "G:\\images\\combined\\06bea9caa4e2a7e7.jpg", - "response": "The image depicts a large room filled with people sitting at desks, all using computers. The desks are arranged in rows, and there are multiple computers on the desks, as well as keyboards and mice. The people are wearing military uniforms. In the room, there are also clocks on the wall and a screen at the front of the room. A backpack can be seen on one of the desks.", - "id": 35549 + "image_path": "G:\\images\\combined\\02b29fb56e2b6a30.jpg", + "response": "A grey scale image with the words \"Position & Timing of Sex Really Matter In Getting Pregnant?\" at the top in bold black letters. Below is a picture of a man and a woman outlined in black with a red question mark on the woman's silhouette. The woman's silhouette is between the two words \"Sex\" and \"Position\" on the left scale and \"Timing\" and \"Position\" on the right scale.", + "id": 34510 }, { - "image_path": "G:\\images\\combined\\06bf19a814c4c455.jpg", - "response": "A man and a woman standing in a kitchen preparing food.", - "id": 35550 + "image_path": "G:\\images\\combined\\02b2daa20b00f5d3.jpg", + "response": "A red and white jet2 airplane on a runway.", + "id": 34511 }, { - "image_path": "G:\\images\\combined\\06bfa4d21a1d418e.jpg", - "response": "The image features the title art for the game Infinite Undiscovery. The game's title is written in a white, futuristic-looking font with a blue outline. The word \"Infinite\" is on the top left corner of the image, while \"Undiscovery\" is on the bottom right corner. The game's logo features a stylized \"U\" with a spaceship in the background.", - "id": 35551 + "image_path": "G:\\images\\combined\\02b3d3b54f80a05b.jpg", + "response": "A pitcher in a black jersey and grey pants stands on the mound with his legs spread apart and his glove on. Another player stands in the background with his hands on his knees.", + "id": 34512 }, { - "image_path": "G:\\images\\combined\\06c00c1502656b71.jpg", - "response": "A bottle of DuClaw Sweet Baby Jesus! Chocolate Peanut Butter Porter sitting on a table in front of a six pack of the same beer.", - "id": 35552 + "image_path": "G:\\images\\combined\\02b4362934167953.jpg", + "response": "A white board with a lot of writing on it.", + "id": 34513 }, { - "image_path": "G:\\images\\combined\\06c1050afc1f7385.jpg", - "response": "A small wooden shed with a sign on the front that says Castle Mill Lime Works.", - "id": 35553 + "image_path": "G:\\images\\combined\\02b43d2d16beca01.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 34514 }, { - "image_path": "G:\\images\\combined\\06c3969a81edfa03.jpg", - "response": "A keyboard with a piece of plastic over it with writing on it.", - "id": 35554 + "image_path": "G:\\images\\combined\\02b484f43777cd5b.jpg", + "response": "A bottle of Blue Moon Belgian White sits next to a glass filled with the beer. The bottle is blue and white with a white moon on the label. The glass is clear with a brown liquid inside. The liquid has a yellow tint and is sitting on a purple and white checkered tablecloth. The cloth is on top of a bed with a white comforter with orange and green animals on it.", + "id": 34515 }, { - "image_path": "G:\\images\\combined\\06c401d3d817028e.jpg", - "response": "A group of men playing soccer on a field.", - "id": 35555 + "image_path": "G:\\images\\combined\\02b4c34bd52f1217.jpg", + "response": "A busy street with many buses on it.", + "id": 34516 }, { - "image_path": "G:\\images\\combined\\06c4728aa7fa9db5.jpg", - "response": "A black and silver watch with the number 24 on it.", - "id": 35556 + "image_path": "G:\\images\\combined\\02b4c7a6208404dd.jpg", + "response": "A woman bending over to look for something in a pile of clothes.", + "id": 34517 }, { - "image_path": "G:\\images\\combined\\06c57e6363fd6ed3.jpg", - "response": "A baseball player wearing a red and white uniform is standing in the outfield. He is wearing a catcher's mitt and looking to his left. The scoreboard behind him shows the time as 8:10.", - "id": 35557 + "image_path": "G:\\images\\combined\\02b4cb383e9b46be.jpg", + "response": "A green double decker bus is driving down the road.", + "id": 34518 }, { - "image_path": "G:\\images\\combined\\06c7d2763d30df9d.jpg", - "response": "A watch with a silver band and a silver and gold face.", - "id": 35558 + "image_path": "G:\\images\\combined\\02b737933a18bca9.jpg", + "response": "A close up of a silver coin on a blue background. The coin has a profile of a man on it.", + "id": 34519 }, { - "image_path": "G:\\images\\combined\\06c90482f8989324.jpg", - "response": "A billboard for the movie Pacar Hantu Perawan, which features three women on it.", - "id": 35559 + "image_path": "G:\\images\\combined\\02b7ad89c803532f.jpg", + "response": "The image features a bottle of SK-II Facial Treatment Essence. The bottle is clear and frosted and has a silver cap. The label on the bottle is white with black writing. The words \"SK-II\" and \"TREACIAL TREATMENT ESSENCE\" are written in black on the label. The bottle is placed on a white, fuzzy surface that looks like a knitted material. The material is a off-white color and has a texture.", + "id": 34520 }, { - "image_path": "G:\\images\\combined\\06c957b7a77380ee.jpg", - "response": "A white car with a California license plate is parked in a handicapped spot.", - "id": 35560 + "image_path": "G:\\images\\combined\\02b8643f50ec027e.jpg", + "response": "A close up of a bottle of BOMBA next to a smaller bottle of BOMBA.", + "id": 34521 }, { - "image_path": "G:\\images\\combined\\06cd096eaead23aa.jpg", - "response": "A young boy wearing a Glen Ellyn football jersey and holding a football.", - "id": 35561 + "image_path": "G:\\images\\combined\\02bb5655ce627b56.jpg", + "response": "A bottle of Old English 800 sits on top of a roof. The bottle is almost empty and has a yellow label. The roof is black and has some power lines on it. There are a few buildings in the background. The sky is cloudy and there are a few trees in the distance.", + "id": 34522 }, { - "image_path": "G:\\images\\combined\\06cea73b40d2f24c.jpg", - "response": "A close up of three IWC watches on display.", - "id": 35562 + "image_path": "G:\\images\\combined\\02bc0f41c8d6d58b.jpg", + "response": "A street scene with a red traffic light and a one way sign. There are also street signs and a security camera.", + "id": 34523 }, { - "image_path": "G:\\images\\combined\\06d317cf67c08b97.jpg", - "response": "A triangle warning sign showing a person getting zapped by a laser with the text \"Big Scary Laser, Do not look into beam with remaining eye\"", - "id": 35563 + "image_path": "G:\\images\\combined\\02bc2a6e1ecc0dc1.jpg", + "response": "A large orange pumpkin sitting on a metal counter.", + "id": 34524 }, { - "image_path": "G:\\images\\combined\\06d42a52eb63f4bb.jpg", - "response": "A television monitor that is displaying a map of the world.", - "id": 35564 + "image_path": "G:\\images\\combined\\02bc8361b1beb582.jpg", + "response": "A hand holding a remote control with the words Luci Catering senza fili on the bottom.", + "id": 34525 }, { - "image_path": "G:\\images\\combined\\06d52b114d5da9e1.jpg", - "response": "A Huawei mobile device box is open and sitting on a desk. The box is white and orange.", - "id": 35565 + "image_path": "G:\\images\\combined\\02bed5ecf6d38541.jpg", + "response": "a close up of a smart watch on someones wrist", + "id": 34526 }, { - "image_path": "G:\\images\\combined\\06dab554c1c29f63.jpg", - "response": "A shelf filled with various vhs movies and video tapes.", - "id": 35566 + "image_path": "G:\\images\\combined\\02bee02d2a42692b.jpg", + "response": "a store front with a neon sign that reads \"AFURI\"", + "id": 34527 }, { - "image_path": "G:\\images\\combined\\06db4f83f1ef0286.jpg", - "response": "A stop sign at the corner of two streets.", - "id": 35567 + "image_path": "G:\\images\\combined\\02beeabd93bf7bb3.jpg", + "response": "A city street filled with lots of traffic and people.", + "id": 34528 }, { - "image_path": "G:\\images\\combined\\06df07947862e83b.jpg", - "response": "A black and white poster with the heading REWARD. Below that is a heading that says \u00a320,000 will be given in the following description. It then goes on to describe the reward for information leading to the capture of Sir John Franklin, his ships, and the crew.", - "id": 35568 + "image_path": "G:\\images\\combined\\02bf5694f86cb87e.jpg", + "response": "A group of people sitting around a table in a meeting room.", + "id": 34529 }, { - "image_path": "G:\\images\\combined\\06dfda67cf22d968.jpg", - "response": "A remote control with the word clean on it.", - "id": 35569 + "image_path": "G:\\images\\combined\\02bf765b69e3025c.jpg", + "response": "A large sign for a pizza place that is located on the side of a street.", + "id": 34530 }, { - "image_path": "G:\\images\\combined\\06e4d0666ddf0de6.jpg", - "response": "A cardboard box for moving that is on a counter.", - "id": 35570 + "image_path": "G:\\images\\combined\\02bfe750210e3160.jpg", + "response": "A bus is driving down the street in front of a subway.", + "id": 34531 }, { - "image_path": "G:\\images\\combined\\06e74b2b5f631c5a.jpg", - "response": "The image shows a large office with many desks and computers. There are several chairs placed around the office, and they are mostly red in color. There are also some green chairs. There are many computers on the desks, along with keyboards, mice, and other office equipment. There are many books and papers scattered around the desks as well. In the office, there are also several bottles and cups placed on the desks and the floor.", - "id": 35571 + "image_path": "G:\\images\\combined\\02c03383ee76d085.jpg", + "response": "A whiteboard with writing on it in purple and black marker.", + "id": 34532 }, { - "image_path": "G:\\images\\combined\\06e792fc023605b6.jpg", - "response": "The image shows a close up of the rear end of a silver car. The license plate is California and says CWEETIE on it.", - "id": 35572 + "image_path": "G:\\images\\combined\\02c05d5fcae7b5d9.jpg", + "response": "A stop sign on a pole with a tree in the background.", + "id": 34533 }, { - "image_path": "G:\\images\\combined\\06e9a81ceb6769a3.jpg", - "response": "A stop sign with a cloudy sky in the background.", - "id": 35573 + "image_path": "G:\\images\\combined\\02c121df5aa181d6.jpg", + "response": "A box full of small bottles with labels such as 'Elixir to Induce Euphoria' and 'The Prophecy'.", + "id": 34534 }, { - "image_path": "G:\\images\\combined\\06ebda8a001014b3.jpg", - "response": "a collage of images from somalia including the flag and map of the country", - "id": 35574 + "image_path": "G:\\images\\combined\\02c185403a032781.jpg", + "response": "A child bike trailer with a blue and red cover.", + "id": 34535 }, { - "image_path": "G:\\images\\combined\\06ee605f8d4a68af.jpg", - "response": "The image is of an old book cover. The title of the book is \"Der Staff Strakburg\" and is written in German. The cover is adorned with various images of people and religious figures. There is a large image of a group of people in the center, and smaller images of religious figures around the border of the cover. The book is written in black ink and is printed on white paper.", - "id": 35575 + "image_path": "G:\\images\\combined\\02c331aed99d9664.jpg", + "response": "An open Quran on a table with a pen resting on top of it.", + "id": 34536 }, { - "image_path": "G:\\images\\combined\\06ef84b6db9ca86d.jpg", - "response": "A hand holding a silver can of Asahi Super Dry beer.", - "id": 35576 + "image_path": "G:\\images\\combined\\02c3a7b6ea5023fd.jpg", + "response": "A double decker bus on a street.", + "id": 34537 }, { - "image_path": "G:\\images\\combined\\06f04931d107573a.jpg", - "response": "A black rectangular watch with a black band.", - "id": 35577 + "image_path": "G:\\images\\combined\\02c3ca715cba6581.jpg", + "response": "A stop sign is illuminated by a street light in a busy city street.", + "id": 34538 }, { - "image_path": "G:\\images\\combined\\06f1e4369ad4e487.jpg", - "response": "A bottle of Lobethal Bierhaus Chocolate Oatmeal Stout next to a filled glass.", - "id": 35578 + "image_path": "G:\\images\\combined\\02c40dfec361daa8.jpg", + "response": "A building with a sign on it that says Assembleia of Deus.", + "id": 34539 }, { - "image_path": "G:\\images\\combined\\06f708e3394e4ab1.jpg", - "response": "A large stadium with a jumbotron displaying a picture of a soldier and a woman.", - "id": 35579 + "image_path": "G:\\images\\combined\\02c5001a13c88a2b.jpg", + "response": "A book with black and white text on it.", + "id": 34540 }, { - "image_path": "G:\\images\\combined\\06f90f78282a279f.jpg", - "response": "A bottle of Glenlivet 12 years old single malt scotch whisky.", - "id": 35580 + "image_path": "G:\\images\\combined\\02c57f8fe233842b.jpg", + "response": "An airplane is flying through the air with a word underneath that says \"Brasil Uruguay Argentina Pluna\". There is also a word that says \"Vickers Viscount\" and another that says \"Rolls Royce\". There is a word that says \"Antigas Propagandas - Jornais 195\" at the bottom of the image.", + "id": 34541 }, { - "image_path": "G:\\images\\combined\\06f92f5456da8509.jpg", - "response": "A close up of a Nokia phone with a screen that has the words \"Devices found\" and other text.", - "id": 35581 + "image_path": "G:\\images\\combined\\02c60b3d3d688cbe.jpg", + "response": "A woman with blonde hair crossing a busy street.", + "id": 34542 }, { - "image_path": "G:\\images\\combined\\06f98421b247aa62.jpg", - "response": "A bottle of Minere mineral water sits on a desk next to a green cup. The bottle is half full and has a blue and red label. The label has the company name, Minere, in red, with the tagline \"Du Jour au Jour\" in blue. Below the company name is a blue bar with the net volume of the bottle, 0.75 liters.", - "id": 35582 + "image_path": "G:\\images\\combined\\02c6583086f36e09.jpg", + "response": "An airplane is parked on the runway and people are walking towards it.", + "id": 34543 }, { - "image_path": "G:\\images\\combined\\06f9f3a188fc84b1.jpg", - "response": "A billboard for SeaWorld, advertising their Fun Card deal.", - "id": 35583 + "image_path": "G:\\images\\combined\\02c66032c7d1ea3c.jpg", + "response": "A sign for the Rehovot Police on a building.", + "id": 34544 }, { - "image_path": "G:\\images\\combined\\06fadcad6a24dcb1.jpg", - "response": "A black computer keyboard is sitting on a metal shelf. The keyboard has rainbow colored keys and is made by Sinclair ZX Spectrum.", - "id": 35584 + "image_path": "G:\\images\\combined\\02c77d67182d2cc9.jpg", + "response": "A large screen television is mounted on the side of a building.", + "id": 34545 }, { - "image_path": "G:\\images\\combined\\06fe0e86c4386d2c.jpg", - "response": "A watch with a black leather band and a silver case. The watch has a leather cuff band and the face of the watch is black with orange hands. The second hand is orange and the minute hand is orange with a white tip. The hour hand is white with a black tip. The watch has a silver case and the band is attached to the watch with silver screws.", - "id": 35585 + "image_path": "G:\\images\\combined\\02ca8849043fa980.jpg", + "response": "A group of people standing around a table.", + "id": 34546 }, { - "image_path": "G:\\images\\combined\\06fe15d74ad83bb4.jpg", - "response": "A bag of chocolate from Godiva.", - "id": 35586 + "image_path": "G:\\images\\combined\\02cd54c9ac48d15e.jpg", + "response": "An orange and white train engine is on the tracks.", + "id": 34547 }, { - "image_path": "G:\\images\\combined\\06febfd114e84100.jpg", - "response": "The image is a collage of pictures showing different views of a laptop computer. The laptop has an orange and yellow outer casing with a swivel screen. There is a larger demo model with a different screen. Another picture shows a close up of the laptop. Another picture shows the motherboard. There are several people in the pictures, some are sitting at a table and one is standing.", - "id": 35587 + "image_path": "G:\\images\\combined\\02cd7a6aebe9c9f2.jpg", + "response": "A television set with a game on it.", + "id": 34548 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5912_jpg.rf.706d3ed854dd9d37d895488c6cc891e9.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35588 + "image_path": "G:\\images\\combined\\02ce657203b02e8f.jpg", + "response": "A book on a table with pictures of people on the cover.", + "id": 34549 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5912_jpg.rf.c04f772a8d01dd6a2ed0b1b91cafd9b2.jpg", - "response": "A group of people working on computers in a cubicle farm.", - "id": 35589 + "image_path": "G:\\images\\combined\\02d0ea328646fa44.jpg", + "response": "In the image, there are two people sitting on stools in front of a television. They appear to be playing a video game. The television is on a stand and is quite large. There is also a banner standing next to the television, advertising a digital media competition.", + "id": 34550 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5913_jpg.rf.539811aec54e0fd1d56fbb0b13a06750.jpg", - "response": "A group of people in a room with computers.", - "id": 35590 + "image_path": "G:\\images\\combined\\02d47a9bf452e069.jpg", + "response": "The image shows a tiled floor with two trash cans placed on it. One of the trash cans is white and made of plastic, and the other is a clear trash can. There is also a red and white trash bag in a black container. The trash cans are positioned on the left side of the black container.", + "id": 34551 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5913_jpg.rf.6206d68c230f015275c955c6fa27b54b.jpg", - "response": "The image shows a group of people working in an office. There are two men walking past cubicles, and a third man standing in front of a cubicle. The cubicles have desks with computers on them, and there are chairs at the desks. The office also has a conference room with a table and chairs. The room is decorated with posters on the walls.", - "id": 35591 + "image_path": "G:\\images\\combined\\02d4a7e636145016.jpg", + "response": "The image shows two soccer players from opposing teams playing on a grass field. One player is wearing a red jersey with the number 7 on the back and is about to kick a soccer ball. The other player is wearing a yellow jersey with the number 3 on the back and is running towards the ball. Both players are wearing blue shorts. The field is covered with short green grass.", + "id": 34552 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b592_jpg.rf.0f515bf8d5e8db71628c72a6e0baa385.jpg", - "response": "a group of people standing in front of a wall of tv screens", - "id": 35592 + "image_path": "G:\\images\\combined\\02d4ae02865321a3.jpg", + "response": "A chalkboard sign that says welcome to the deep space diner.", + "id": 34553 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b592_jpg.rf.0fbb96adae3ac6faf4188f6d475a27eb.jpg", - "response": "a group of people in a room with computers on the wall and desks.", - "id": 35593 + "image_path": "G:\\images\\combined\\02d56b2f2759bffa.jpg", + "response": "In the image, there is a person's arm and hand in the foreground. They are wearing a black watch and have a black X painted on their arm. The person is also wearing a black bracelet. In the background, there is a car with a sticker on the back window. The sticker says \"Chain X Crew\" in black and green lettering. There are also two yellow star stickers on the right side of the window.", + "id": 34554 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5939_jpg.rf.8de405e77bebb667f19241f03d78b4a0.jpg", - "response": "A group of people standing in a room in front of computers.", - "id": 35594 + "image_path": "G:\\images\\combined\\02d749e0aeeaf231.jpg", + "response": "A kitchen with a stove top and a microwave above it. There is a pot on the stove and a cutting board on the counter. There are also several bottles and a cup on the counter.", + "id": 34555 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b5939_jpg.rf.b3c0538f0bc2db5b7ea0084e61068ea0.jpg", - "response": "The image shows a group of people in a computer lab with desks and chairs. There are three people visible, two of them wearing black jackets and one wearing a blue shirt. They are standing in front of desks with computers on them. The computers have monitors and keyboards. There are also two chairs visible in the scene.", - "id": 35595 + "image_path": "G:\\images\\combined\\02d7a6da7ce8e5b3.jpg", + "response": "An old plane is sitting on a runway.", + "id": 34556 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b593_jpg.rf.334c2565c8bf879de9e0e890ccf14b16.jpg", - "response": "A group of people in a room with a white ceiling and a wall full of windows.", - "id": 35596 + "image_path": "G:\\images\\combined\\02d8ffcb77383a71.jpg", + "response": "A woman with long blonde hair holding a bag that says \"shop.com\" on it.", + "id": 34557 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b593_jpg.rf.7a39ff0008ea2f2ada4631cc75ecac01.jpg", - "response": "A group of people walking through a terminal.", - "id": 35597 + "image_path": "G:\\images\\combined\\02d94afde962b96b.jpg", + "response": "A corner store with a variety of items for sale.", + "id": 34558 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b594_jpg.rf.30d36e7d08966e8dc2e05d4dbca3b89a.jpg", - "response": "The image shows a group of people working at computers in a cubicle setting. There are several people visible, with some sitting at the computers and others standing around the room. The cubicles are made of metal and have a dividing curtain in the middle. The computers are equipped with monitors, keyboards, and mice. The room has a gray color scheme and appears to be a workspace for a large organization.", - "id": 35598 + "image_path": "G:\\images\\combined\\02da4492e27bfddf.jpg", + "response": "In the image there is a child wearing a black baseball uniform and a helmet. The child is running on a baseball field, likely just after hitting the ball. There is a baseball glove visible in the scene, held by the child. The child is wearing a black belt with their pants. The baseball field has a fence around it and a scoreboard in the background.", + "id": 34559 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b594_jpg.rf.bf2d5d15ecf154365b5e9f509a81e73d.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35599 + "image_path": "G:\\images\\combined\\02da7a42e971e3cb.jpg", + "response": "a person wearing a parachute is in the air", + "id": 34560 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b595_jpg.rf.7acbea4cd41fe3733aa415c8a0844414.jpg", - "response": "a group of people standing in a room with computers all around.", - "id": 35600 + "image_path": "G:\\images\\combined\\02dc60e7b13e6dda.jpg", + "response": "A car dashboard with the speedometer lit up.", + "id": 34561 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b595_jpg.rf.d91e6b55ee41a110a79029c9dd5b7686.jpg", - "response": "A group of people standing in a room with a mirrored wall.", - "id": 35601 + "image_path": "G:\\images\\combined\\02dd063a0e2fc93a.jpg", + "response": "A tall brick building with a large window and a clock on the front.", + "id": 34562 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b596_jpg.rf.969d7683ddb8c1c7ae3a592addf2b07f.jpg", - "response": "A group of people are gathered around a room with many computer monitors.", - "id": 35602 + "image_path": "G:\\images\\combined\\02dd5502bbd9594e.jpg", + "response": "A military helicopter is parked on a grass field.", + "id": 34563 }, { - "image_path": "G:\\images\\combined\\07-21-2021T19-02-3628ee52121b596_jpg.rf.aff342a0823ca30366e01d9e733e083c.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35603 + "image_path": "G:\\images\\combined\\02dd746f7ec51613.jpg", + "response": "A blue Swarovski box with a gold necklace inside. The necklace has a circular pendant with a gold chain. The Swarovski logo is printed on the box.", + "id": 34564 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5918_jpg.rf.23709ad6b47947650662378b1db6bd2e.jpg", - "response": "a man standing in front of a computer screen", - "id": 35604 + "image_path": "G:\\images\\combined\\02deb8d084d41040.jpg", + "response": "An US Airways plane is parked at the airport.", + "id": 34565 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5918_jpg.rf.f382b0f907a46fd26a75d3fbb9cf4e5f.jpg", - "response": "A man standing in front of a computer screen.", - "id": 35605 + "image_path": "G:\\images\\combined\\02df4a726c2bb5a5.jpg", + "response": "A group of people standing around a display booth.", + "id": 34566 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5919_jpg.rf.00c2be9627b76c818d2e61d29ced05a4.jpg", - "response": "A man wearing a mask is standing in a room with desks and computers.", - "id": 35606 + "image_path": "G:\\images\\combined\\02e2256dfd7baa8c.jpg", + "response": "A woman's left hand holding a bottle of nail polish. The nails are painted black and there is a gold design on the ring finger.", + "id": 34567 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5919_jpg.rf.1fc792529e923d4ca8224d7439c68fb4.jpg", - "response": "A man standing in a room with computers all around.", - "id": 35607 + "image_path": "G:\\images\\combined\\02e263ba099084dd.jpg", + "response": "A red train engine pulling a long line of train cars behind it.", + "id": 34568 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5920_jpg.rf.591309a6fb96ab3718db883636bdf22e.jpg", - "response": "A room full of people sitting at computers.", - "id": 35608 + "image_path": "G:\\images\\combined\\02e2cee2e4492018.jpg", + "response": "A man wearing a red and white baseball uniform, red baseball cap, and holding a black baseball glove, is pitching a baseball on a baseball field.", + "id": 34569 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5920_jpg.rf.8bc8496014debfdeee47d47bb91c76f5.jpg", - "response": "A man standing in a room with a bunch of computers.", - "id": 35609 + "image_path": "G:\\images\\combined\\02e344f4a559753e.jpg", + "response": "The image shows a group of old, used spray cans sitting on a pile. The cans are in a storage area, and there is a plant nearby. The photo is in black and white, except for the cans, which are colored. There are several cans in the pile, including Minwax, Helmsman, and Minwax Spar Urethane. Some of the cans have writing on them, and they are all different sizes.", + "id": 34570 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5922_jpg.rf.0771d962ac17788ada594143c1fca1cc.jpg", - "response": "A group of people are working on computers in a room.", - "id": 35610 + "image_path": "G:\\images\\combined\\02e504de213d8ce0.jpg", + "response": "The image features a Nokia mobile phone on a blue surface. The phone is black and has a sliding feature. The back of the phone is removed, revealing the battery. The battery has a bar code sticker on it. The phone is sitting on top of a blue Nokia book.", + "id": 34571 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5922_jpg.rf.f1c26fb01687c42f2bf8e5837aa92c02.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 35611 + "image_path": "G:\\images\\combined\\02e5117cd995ace0.jpg", + "response": "A bookshelf filled with many books.", + "id": 34572 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5923_jpg.rf.3f4c75d46fffc107278fd5cd7d6efd56.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 35612 + "image_path": "G:\\images\\combined\\02e523f39066742d.jpg", + "response": "A white bus with a design on the side is driving down the street.", + "id": 34573 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5923_jpg.rf.4ffbae7a0f3e69838b7628026d8619a3.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35613 + "image_path": "G:\\images\\combined\\02e5d95eaf11adf4.jpg", + "response": "An old airplane is on display in a museum.", + "id": 34574 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5924_jpg.rf.563ecf5e4c72a90bb4e73bd4901def04.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35614 + "image_path": "G:\\images\\combined\\02e647dcd238f3e4.jpg", + "response": "A blue and white train on a track near a brick wall.", + "id": 34575 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5924_jpg.rf.e0e7a548aef916b72abadd57e7229d3c.jpg", - "response": "A room filled with people sitting at desks working on computers.", - "id": 35615 + "image_path": "G:\\images\\combined\\02e77c5d58d53c63.jpg", + "response": "A yellow school bus is parked in a fenced in lot.", + "id": 34576 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5929_jpg.rf.b938e8097cd85432fb99d0603d24fcf0.jpg", - "response": "The image is a view through a window covered in water droplets. The window is divided into four quadrants, each containing a computer workstation. There are two people visible in the image, one in each of the left hand quadrants. They are both sitting in front of a computer screen. The left hand quadrant also contains a keyboard and a chair. The right hand quadrant contains a keyboard and a mouse. The background is blurry and there is a large poster of the ocean on the wall.", - "id": 35616 + "image_path": "G:\\images\\combined\\02eae24b8e4b123e.jpg", + "response": "A bottle of Chateau Montrose from 2004, with a red label and a crest on the front.", + "id": 34577 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5929_jpg.rf.ca3d181580393062fab40a0c95fce18c.jpg", - "response": "A room with cubicles and people working on computers.", - "id": 35617 + "image_path": "G:\\images\\combined\\02eb3145e144ea41.jpg", + "response": "Two men standing in front of a white board.", + "id": 34578 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5934_jpg.rf.4d2dcee20ea3ee7c5054a18a992fb88b.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35618 + "image_path": "G:\\images\\combined\\02eb5fe34a148e72.jpg", + "response": "The image shows two men standing next to a small airplane in a grass field. The airplane is red and blue and has a propeller. The men are dressed in military uniforms and appear to be inspecting the plane. The sky above them is blue with a few clouds.", + "id": 34579 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5934_jpg.rf.e7d03ffb5ec6af1a60dbcb662e0a4679.jpg", - "response": "A group of people working on computers in a room.", - "id": 35619 + "image_path": "G:\\images\\combined\\02eb9a4f79385114.jpg", + "response": "A large scoreboard at a baseball stadium with advertising on it.", + "id": 34580 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5945_jpg.rf.92789d5e629e6c76d8e201ef9149d7da.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 35620 + "image_path": "G:\\images\\combined\\02ebbf96964ec066.jpg", + "response": "A red double decker bus is driving down the street.", + "id": 34581 }, { - "image_path": "G:\\images\\combined\\07-21-2021T21-02-5828ee52121b5945_jpg.rf.d23014e7c547194dc36e5ee4b065c88a.jpg", - "response": "A man standing in a room with multiple computer stations.", - "id": 35621 + "image_path": "G:\\images\\combined\\02ed611f88177ee4.jpg", + "response": "A pizza oven with five pizzas cooking inside.", + "id": 34582 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5942_jpg.rf.151a7b939338e6a324b4f36e9311b06e.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 35622 + "image_path": "G:\\images\\combined\\02ede042487fe63e.jpg", + "response": "A box of Senseo cappuccino pods.", + "id": 34583 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5942_jpg.rf.e50b9272f2a27cd55371292dfabd56f3.jpg", - "response": "an office with several cubicles and people working on computers.", - "id": 35623 + "image_path": "G:\\images\\combined\\02ede779fbbe2a3c.jpg", + "response": "A blue bus is stopped at a bus stop on a city street. The bus has the number 135 on the front of it. There is a blue and white sign on a pole next to the bus that has a list of bus stops on it. Traffic lights are visible in the background.", + "id": 34584 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5944_jpg.rf.a2d5411f4c527ad7c6159a0c91d2d807.jpg", - "response": "A computer lab with multiple people working on computers. There are two people sitting at a desk on the left and two people sitting at a desk on the right. Each person is using a computer. The walls are covered in small mirrors. The ceiling is white with a grid pattern. There are two TVs mounted on the wall.", - "id": 35624 + "image_path": "G:\\images\\combined\\02ee9bdc60315c7f.jpg", + "response": "A bottle of Mac May Safety Ink in Royal Blue.", + "id": 34585 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b5944_jpg.rf.d1bef3a930c623667099cb56433e8058.jpg", - "response": "The image is a view through a rain-streaked window into an office space. There are several people working in the office, which has a blue color scheme. There are two desks with computers on them, and chairs in front of the desks. The people are sitting at the desks and working on computers. Some of the people are wearing ties.", - "id": 35625 + "image_path": "G:\\images\\combined\\02ef02744ed5e3cd.jpg", + "response": "A brick building with a cross on top and a clock on the front.", + "id": 34586 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b595_jpg.rf.1e058e85e46467f7c9ad06bedf0caf7d.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35626 + "image_path": "G:\\images\\combined\\02ef6de789b37127.jpg", + "response": "A red city bus is traveling down the street.", + "id": 34587 }, { - "image_path": "G:\\images\\combined\\07-21-2021T22-02-5928ee52121b595_jpg.rf.e857ad228d89faa984756493dc55b289.jpg", - "response": "A group of people working at computers in cubicles.", - "id": 35627 + "image_path": "G:\\images\\combined\\02ef8957de6d8bec.jpg", + "response": "A bottle of beer with a castle on the label is sitting on a table.", + "id": 34588 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5916_jpg.rf.7a89defff0284f74f4783356bdec47c0.jpg", - "response": "A rain covered window looking into an office with multiple people working on computers.", - "id": 35628 + "image_path": "G:\\images\\combined\\02ef95d1f8e547e2.jpg", + "response": "The image shows two women shopping in an indoor market, specifically a produce department. They are standing near a table filled with fresh vegetables, including carrots and broccoli. The women are smiling and appear to be enjoying their shopping experience.", + "id": 34589 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5916_jpg.rf.e0964924bb9929bf95559e9292cfe975.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35629 + "image_path": "G:\\images\\combined\\02f096a3d053e43a.jpg", + "response": "A desert landscape with a man standing in the center holding a guitar. The man is wearing a white suit and has a beard. There is a bird flying to the left of the man and a green dot to the right of him. There are also cacti scattered around the desert.", + "id": 34590 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5917_jpg.rf.1e04ee8f14bed1fc283fb17e4f8db1ca.jpg", - "response": "a room with cubicles where people work on computers", - "id": 35630 + "image_path": "G:\\images\\combined\\02f0dafc31d4249c.jpg", + "response": "A kitchen counter with a blender on it and a brown bottle with a spout.", + "id": 34591 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5917_jpg.rf.aa0eb4e30b7ebdcc6cd16fa6422e7bfa.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35631 + "image_path": "G:\\images\\combined\\02f4a30fe61c8723.jpg", + "response": "A yellow train engine with the number 250-004-9 on the front of it.", + "id": 34592 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b592_jpg.rf.d7e5bd5f3028bf4309f4be058703a481.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 35632 + "image_path": "G:\\images\\combined\\02f4cf57ce42a92a.jpg", + "response": "A stack of books on a red metal cart.", + "id": 34593 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b592_jpg.rf.e5ec19794cf776eb3091a4169a44eb1e.jpg", - "response": "The image shows a group of people working in a computer lab. There are three people sitting at desks, using computers, and a fourth person standing near the left side of the room. The three people sitting have their backs to the camera. Each person is sitting in a chair in front of a computer. The room has several desks and computers on them.", - "id": 35633 + "image_path": "G:\\images\\combined\\02f513fcadce36f2.jpg", + "response": "A red bookmark with a white pattern is attached to a card. The card has a red border and white text. The text is an anonymous quote about love. The quote is accompanied by a photo of a heart made out of beads. The heart is on a green envelope.", + "id": 34594 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5945_jpg.rf.0d85f9db683d4291a5f64b7796ebca39.jpg", - "response": "A person standing in a room with a lot of mirrors on the wall. There are three people sitting at desks in front of computers. The person standing is wearing a blue shirt and black pants. The room has a lot of water droplets on the camera lens, making the image blurry.", - "id": 35634 + "image_path": "G:\\images\\combined\\02f537002d57a389.jpg", + "response": "A grey and gold trophy with a winged design on top.", + "id": 34595 }, { - "image_path": "G:\\images\\combined\\07-22-2021T01-03-0128ee52121b5945_jpg.rf.8dd65270c179b26301e6455ed7b9693e.jpg", - "response": "a group of people working in cubicles with computers", - "id": 35635 + "image_path": "G:\\images\\combined\\02f901f2d22b81c4.jpg", + "response": "A pallet stacked with boxes of speakers.", + "id": 34596 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5933_jpg.rf.532011db760833b0f494ad70b1e70987.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 35636 + "image_path": "G:\\images\\combined\\02f996661886cfe0.jpg", + "response": "A sign that is titled Louise F. cosca Regional Park. It has a drawing of a person on the right side of the sign. It has pictures of spear points and a school house. It also has a timeline of the park.", + "id": 34597 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5933_jpg.rf.63b97639fefa6f74b0f02e2a9fd5bdff.jpg", - "response": "A group of people are sitting at computers.", - "id": 35637 + "image_path": "G:\\images\\combined\\02fa299740ebc5ab.jpg", + "response": "A bus is parked in a parking lot next to other buses.", + "id": 34598 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5937_jpg.rf.972a081b7fc5232126a8312d3aa59553.jpg", - "response": "a room with people working on computers", - "id": 35638 + "image_path": "G:\\images\\combined\\02fae2fbfa99a8f8.jpg", + "response": "A telephone pole with two flyers taped to it.", + "id": 34599 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5937_jpg.rf.9ad3b645848450b45ddce9b43eaa6359.jpg", - "response": "a group of people working in a cubicle", - "id": 35639 + "image_path": "G:\\images\\combined\\02fc7a8780c79816.jpg", + "response": "A bottle of Parbo Bier sits next to a glass filled with beer.", + "id": 34600 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5938_jpg.rf.5c93272318723585636007f5ba7b6097.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35640 + "image_path": "G:\\images\\combined\\02fcd378b3b3b023.jpg", + "response": "A bus on the street with the words \"Have a nice day\" on the marquee.", + "id": 34601 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b5938_jpg.rf.988e1b8fa8d81541bf1bf446229d1340.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 35641 + "image_path": "G:\\images\\combined\\02fce391c03c8c47.jpg", + "response": "A person holding a pair of glasses and a thermometer.", + "id": 34602 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b594_jpg.rf.1e76665a0efc2dcdaae1157017e4ee4a.jpg", - "response": "The image shows a large office space with several cubicles. In one cubicle, a man is sitting at a desk with a computer, while in another cubicle, a woman is taking a picture of the room. There are chairs and desks in each cubicle, and a TV is mounted on the wall. The office also has a kitchen area with a sink and a refrigerator. The image has a silver and blue hue to it.", - "id": 35642 + "image_path": "G:\\images\\combined\\02fd13b7790dfc2b.jpg", + "response": "A vintage postcard of Frog Pond in Boston Common. People are sitting on benches around the pond.", + "id": 34603 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b594_jpg.rf.656f9a2ed50fac0495a142ff920831f7.jpg", - "response": "The image shows a large office with several cubicles. Each cubicle has a desk with a computer on it and a chair. There are three people in the office, two of them are sitting at their desks and one is standing in the middle of the office. The office has a lot of desks and computers, and it appears to be a busy work environment.", - "id": 35643 + "image_path": "G:\\images\\combined\\02fd9a3eda5c8207.jpg", + "response": "A rusted green fire hydrant sitting on the sidewalk.", + "id": 34604 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b598_jpg.rf.49adf4c3e9b40de2bd6cb4fb48141c1f.jpg", - "response": "A person standing in a room with a bunch of desks.", - "id": 35644 + "image_path": "G:\\images\\combined\\02fe7f5371ff5283.jpg", + "response": "The image shows a baseball game in progress on a field with a green grass and brown dirt infield. There are two baseball players wearing orange and gray uniforms standing on the field, one holding a mitt and the other standing behind him. The players are wearing black hats and are engaged in conversation. There are several other people on the field, including a coach and other players, and some people in the background watching the game.", + "id": 34605 }, { - "image_path": "G:\\images\\combined\\07-22-2021T02-03-0228ee52121b598_jpg.rf.4aa44517ee0c475c31c7f321e52fff0c.jpg", - "response": "A woman walking through a cubicle area with several people working at computers.", - "id": 35645 + "image_path": "G:\\images\\combined\\02fe8b46e1e70ed1.jpg", + "response": "A pair of televisions are on display, one on the left and one on the right. They are both turned on and have a blue screen with a few dots on it. There is a white wall with the words W.A.V.L. Xtion in orange and black. Underneath the wall, there is a shelf with a black box on it and a sign with the same words as the wall. There is also a remote control on the shelf.", + "id": 34606 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b591_jpg.rf.10028202df5b78d8d75a0ce666490efd.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35646 + "image_path": "G:\\images\\combined\\02I0NSL4O8BH_jpg.rf.07e935dc03cfaaa7ad64e6a8a6a23035.jpg", + "response": "A large forklift parked in a parking lot.", + "id": 34607 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b591_jpg.rf.1fa9c2db2991e40373e0b9e87162f263.jpg", - "response": "a photo of a room with people working on computers", - "id": 35647 + "image_path": "G:\\images\\combined\\0300066daef7157a.jpg", + "response": "A small white and red airplane on a runway.", + "id": 34608 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b5943_jpg.rf.3ef9aa8e449f0758c3d8fe76bad230c8.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35648 + "image_path": "G:\\images\\combined\\030068f6dae1ffcd.jpg", + "response": "A woman in a blue and white dress is kneeling down in front of a large television. She is posing with her hand on the TV, which is a few inches above her knee. The television is a wide screen model and is displaying a picture of flowers. To the right of the TV, there is a wall of posters advertising other televisions.", + "id": 34609 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b5943_jpg.rf.e6986e28958779be18fc2add17d9fc66.jpg", - "response": "A group of people are working on computers in a room.", - "id": 35649 + "image_path": "G:\\images\\combined\\0300865f884b591e.jpg", + "response": "The image shows a basketball court with several people standing on it. There are two men wearing Golden State Warriors shirts standing next to each other, and a man in a suit and tie standing behind them. The suit is black with a tie that is also black. The two players are wearing blue and white uniforms. The court has yellow lines painted on it.", + "id": 34610 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b594_jpg.rf.090f52282e82afde5d42611b12bb60cf.jpg", - "response": "The image is a glass window covered in water droplets. The glass is foggy and shows a view of a computer lab. There are multiple people working at computers in the lab. There are two people on the left, one person in the middle, and two people on the right. The computers are all equipped with dual monitors.", - "id": 35650 + "image_path": "G:\\images\\combined\\03010_jpg.rf.6031f447edbc6c2d6f39c1f1d9e7ec90.jpg", + "response": "Engineer in hard hat and safety glasses working on laptop at construction site.", + "id": 34611 }, { - "image_path": "G:\\images\\combined\\07-22-2021T03-03-0228ee52121b594_jpg.rf.f999d28f9d962be115b7f0d788337666.jpg", - "response": "A group of people working on computers in a computer lab.", - "id": 35651 + "image_path": "G:\\images\\combined\\03010_jpg.rf.62668ff50a5b97d6fe1d2873721cc200.jpg", + "response": "A man in a hard hat and safety glasses sitting in front of a laptop computer.", + "id": 34612 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5912_jpg.rf.589cd1608363cf76de69c1daeef5d354.jpg", - "response": "a office with people working on computers", - "id": 35652 + "image_path": "G:\\images\\combined\\03011_jpg.rf.1fc91ec41540d739ba62e197cceea3c6.jpg", + "response": "A man in a hard hat and safety vest is holding a laptop computer. He is standing in front of a construction site and looking off to the side. The photo is taken at night.", + "id": 34613 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5912_jpg.rf.be7e501ef7c33d12f101e1f79ff264ac.jpg", - "response": "A group of people working on computers in a room.", - "id": 35653 + "image_path": "G:\\images\\combined\\0301456f9fa828a7.jpg", + "response": "A large movie poster for the film Dr. XS is on the wall.", + "id": 34614 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5923_jpg.rf.2800b15a28308a31332e8989b148129e.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35654 + "image_path": "G:\\images\\combined\\030216e408833aca.jpg", + "response": "A large water tower with the word \"Estevan\" written on it.", + "id": 34615 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5923_jpg.rf.b9d0ac4da1f9c27fce405ed06f14cb3e.jpg", - "response": "a group of people in a room with computers", - "id": 35655 + "image_path": "G:\\images\\combined\\030274af7c34a641.jpg", + "response": "A black Range Rover Sport with a European license plate.", + "id": 34616 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5934_jpg.rf.065249ba29d0b4da4e2fcf4349ac3883.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 35656 + "image_path": "G:\\images\\combined\\03031fa84a2806a3.jpg", + "response": "a man wearing a red and yellow baseball hat", + "id": 34617 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b5934_jpg.rf.73824fb2d979bf18c52cf10510e92498.jpg", - "response": "A group of people working on computers in a room.", - "id": 35657 + "image_path": "G:\\images\\combined\\03031_jpg.rf.c8fc6299d74bbe43a1779f8cc8af93ec.jpg", + "response": "A police officer standing next to a red car talking to a woman who is in the driver's seat.", + "id": 34618 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b593_jpg.rf.64979bd6f0832010d279df82e0da932a.jpg", - "response": "a group of people working on computers in a cubicle office", - "id": 35658 + "image_path": "G:\\images\\combined\\0303338e5f422be5.jpg", + "response": "A pile of coins on a white counter.", + "id": 34619 }, { - "image_path": "G:\\images\\combined\\07-22-2021T04-03-0328ee52121b593_jpg.rf.b1e85049443dd942907bacede0b2bb14.jpg", - "response": "A man standing in a room with a bunch of computers.", - "id": 35659 + "image_path": "G:\\images\\combined\\03043_jpg.rf.6f5bf82008bd09ced0c60bdcaaf0a2d6.jpg", + "response": "Engineer in a construction site at night using laptop computer.", + "id": 34620 }, { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5923_jpg.rf.a9a8b6ffa6a4d65127230b51fc1b3dd6.jpg", - "response": "A room filled with people sitting at desks working on computers.", - "id": 35660 + "image_path": "G:\\images\\combined\\0304f8e6c0b34e6b.jpg", + "response": "A black and white photo of a bus parked in a parking lot.", + "id": 34621 }, { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5923_jpg.rf.d0a65b242daee26d7de864c5bfb50378.jpg", - "response": "A woman standing in a cubicle with a computer.", - "id": 35661 + "image_path": "G:\\images\\combined\\0305ad668c4037d1.jpg", + "response": "A yellow school bus is driving down the street.", + "id": 34622 }, { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5940_jpg.rf.88814ef056c69291c93892681e0eec65.jpg", - "response": "A man standing in a room with many people sitting at desks.", - "id": 35662 + "image_path": "G:\\images\\combined\\03060_jpg.rf.99f085154ab11f7439881b6084d74aac.jpg", + "response": "A man wearing a white hard hat is standing on a street. He is wearing a dark green jacket and a white shirt. He has a white and brown scarf around his neck. The street is dark and there are blurred lights in the background.", + "id": 34623 }, { - "image_path": "G:\\images\\combined\\07-22-2021T05-03-0328ee52121b5940_jpg.rf.c3e461c40ff9e1581e3cebe7e555152d.jpg", - "response": "A group of people working at computers in a room.", - "id": 35663 + "image_path": "G:\\images\\combined\\03060_jpg.rf.e215be40fb14be23c766c2e718f37aec.jpg", + "response": "A man wearing a white hard hat and a green jacket.", + "id": 34624 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5921_jpg.rf.75d3cce54da80f6b880dbfbfa3f328cc.jpg", - "response": "A man standing in a room with a mask on.", - "id": 35664 + "image_path": "G:\\images\\combined\\03066_jpg.rf.90bbd621e4fb018eec627d1ae4adcae5.jpg", + "response": "4 men are standing next to a rail. They are all wearing leather or vests and have their arms around each other. The man on the left is wearing a yellow and green safety vest, a yellow hard hat, and has a large tattoo on his right bicep. The man in the middle is bald and has a large tattoo on his right bicep. The man to the right of the middle man has a tattoo on his left bicep and is wearing a black leather vest. The man on the far right is not wearing a vest but has a tattoo on his right bicep. They are all smiling at the camera.", + "id": 34625 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5921_jpg.rf.fdcd4ef7f7c3c3e7c63f9ca4a8f2ef3f.jpg", - "response": "A man standing in a room with multiple people sitting at desks using computers. The man standing is wearing a black shirt and has a beard. The room has a blue and black wall and a blue and black ceiling. There are two fans on the ceiling. The desks have multiple screens and keyboards.", - "id": 35665 + "image_path": "G:\\images\\combined\\03070b053c750a30.jpg", + "response": "A bottle of beer next to a glass filled with beer.", + "id": 34626 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5939_jpg.rf.3b49c4b0e53e256e8b955b7e775b0c6e.jpg", - "response": "A man standing in a room with many computers.", - "id": 35666 + "image_path": "G:\\images\\combined\\03079_jpg.rf.78433ed1a7fd7638cfdbc6dac0d9a4ce.jpg", + "response": "A construction worker holding a sign in the dark.", + "id": 34627 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5939_jpg.rf.72ac8fcbbc5afe785187eabf609e7edd.jpg", - "response": "A man walking through a room filled with people working on computers.", - "id": 35667 + "image_path": "G:\\images\\combined\\0307ba75a55f7893.jpg", + "response": "A street sign warning of bumps in the road ahead.", + "id": 34628 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5941_jpg.rf.20ef114576255e9a77df02dfe26448b6.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35668 + "image_path": "G:\\images\\combined\\03087_jpg.rf.6d6a3533a725817f14542ec686229e46.jpg", + "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow helmet. The site is under construction with many metal frameworks in place. There are also many construction cranes working on the site. The sky is blue with some clouds and there is a mountain in the background. The worker is wearing a yellow t-shirt with a logo on the front.", + "id": 34629 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5941_jpg.rf.3c1ed12c64d9898f592888a607a9bd39.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 35669 + "image_path": "G:\\images\\combined\\03087_jpg.rf.dfac4bb66358e5daeb8af5fff0a6812e.jpg", + "response": "A construction worker standing on a construction site at night. The worker is looking out over the site and is wearing a yellow t-shirt and a yellow hard hat. He is standing on a platform that has rebar reinforceing it. In the distance there are tall buildings under construction. The sky is blue with a few clouds. There are two large cranes operating in the background.", + "id": 34630 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5942_jpg.rf.0a47f13758d12d50708fb98e42da875e.jpg", - "response": "The image shows a large office space with many cubicles. There are multiple people working at computers in the cubicles, and a few people are sitting at desks in the office area. The office has a modern design with white desks and chairs, and the walls are covered in large monitors. The room is well lit and appears to be a comfortable and productive work environment.", - "id": 35670 + "image_path": "G:\\images\\combined\\03094f5a2043b4a5.jpg", + "response": "A red brick wall with a sign that says Holmans.", + "id": 34631 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5942_jpg.rf.0a69c9ebb736bea262263f31b8a3a3c8.jpg", - "response": "A woman standing in a cubicle with a black jacket and black pants.", - "id": 35671 + "image_path": "G:\\images\\combined\\0309830827e1e51b.jpg", + "response": "A diner with a neon sign that says \"Lori's Diner\" on the side of the building.", + "id": 34632 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5944_jpg.rf.82899e69dce97135d26f9463ed4f944a.jpg", - "response": "A group of people working on computers in a room.", - "id": 35672 + "image_path": "G:\\images\\combined\\03098ea356ef4950.jpg", + "response": "A green and white bus parked on the street.", + "id": 34633 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5944_jpg.rf.da819f665b8572110cd2c403a4f8ef72.jpg", - "response": "A woman standing in front of a glass wall in a computer lab.", - "id": 35673 + "image_path": "G:\\images\\combined\\0309d667a65c0747.jpg", + "response": "A man standing in front of a chalkboard and a projection screen.", + "id": 34634 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5945_jpg.rf.1c303bd104503e685345ca52d008e899.jpg", - "response": "a group of people sitting in front of computers", - "id": 35674 + "image_path": "G:\\images\\combined\\0309e9e7c1d04df5.jpg", + "response": "A man sitting at a table with three open laptops in front of him.", + "id": 34635 }, { - "image_path": "G:\\images\\combined\\07-22-2021T06-03-0428ee52121b5945_jpg.rf.3bf87b57054f2b339a0713cb674bcf39.jpg", - "response": "The image shows a group of people working in a computer lab. There are several men and women standing around a bank of computers, which are placed on both sides of the room. Some of the people are sitting at the computers, while others are standing and working on their own. The computers are equipped with monitors, keyboards, and mice. The room has a modern and professional feel to it, with a white ceiling and walls, and a gray carpet on the floor. The image is sprinkled with dots, which could be due to a filter or effect applied to the photo.", - "id": 35675 + "image_path": "G:\\images\\combined\\030aac31ce3ebe66.jpg", + "response": "A yellow van with a ladder on top of it is parked on the side of a street. The van has a white top and is parked near a brick building. There are several cars parked or driving around the area. One car is parked in front of the yellow van, while another car is driving behind it. There are also two bicycles parked on the sidewalk near the yellow van.", + "id": 34636 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b5912_jpg.rf.2508a4b0e2a8ae946dc2ebe02b93ab56.jpg", - "response": "a glass wall with people on the other side sitting at desks with computers.", - "id": 35676 + "image_path": "G:\\images\\combined\\030b01aab1cf161b.jpg", + "response": "In the image there is a green table with a poker combination of cards on it. The poker hand consists of five cards and it is a Royal flush with hearts. Lying next to the cards are black gambling chips and two red dice.", + "id": 34637 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b5912_jpg.rf.bda20e51c4f2f700a1a92f482ccc4ae8.jpg", - "response": "The image is a glass wall looking into an office space. The glass is covered in small spots or dots. In the office, there are four people working at desks. Each person is using a computer. The desks are arranged in a way that suggests they are in cubicles.", - "id": 35677 + "image_path": "G:\\images\\combined\\030b9726b02097ee.jpg", + "response": "The image shows the rear end of a silver car. The car has Audi branding on the trunk and a license plate that says \"B\". The brake lights are red and there is a reflector on the right side of the trunk. The sky is blue with clouds and the trees have no leaves.", + "id": 34638 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b591_jpg.rf.0c995987680c3dcde3840f116e6890ef.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 35678 + "image_path": "G:\\images\\combined\\030bbe9a52ce9d16.jpg", + "response": "A young boy wearing a black and white baseball uniform and a baseball cap stands in a grassy field.", + "id": 34639 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b591_jpg.rf.af77dbce7d3bb2b778b56671f9fd1bb1.jpg", - "response": "A group of people working at computers in a large office.", - "id": 35679 + "image_path": "G:\\images\\combined\\030c06da5cafb7db.jpg", + "response": "a baseball player wearing a black and grey uniform standing on the field", + "id": 34640 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b596_jpg.rf.07c2c9b3b4b8d0145753e2ace7a59b36.jpg", - "response": "A group of people working in cubicles.", - "id": 35680 + "image_path": "G:\\images\\combined\\030c3d91ceaac1b9.jpg", + "response": "A green and yellow double decker bus is on the sand.", + "id": 34641 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b596_jpg.rf.18d8a38594e3d74694a7bf2337ad3e97.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35681 + "image_path": "G:\\images\\combined\\030cc39bb84dd742.jpg", + "response": "On the cover of Investigate, a student named Ashlee Brown is holding a book titled \"The Complete Sherlock Holmes.\" She is sitting on a couch in front of a bookshelf filled with books. She is wearing a white shirt and a brown cardigan. Her nails are painted a bright red.", + "id": 34642 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b597_jpg.rf.0fd5812e09465cc85b7bb6b1cced73e8.jpg", - "response": "A woman standing in a room with a bunch of desks with computers on them.", - "id": 35682 + "image_path": "G:\\images\\combined\\030dc79b28b9c9b9.jpg", + "response": "A close up of a coin that is showing the back side.", + "id": 34643 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b597_jpg.rf.4a315da4cae573bf2cc2205fb12a3ca0.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 35683 + "image_path": "G:\\images\\combined\\030fd24af593dcc8.jpg", + "response": "A large blue billboard that says \"Rent Me\" on it.", + "id": 34644 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b598_jpg.rf.2bcecd38c16cb2ce30c7b1b9a1e120c3.jpg", - "response": "a office with desks and chairs all around.", - "id": 35684 + "image_path": "G:\\images\\combined\\0310822ffb3699d4.jpg", + "response": "An open book with many fonts and a woodcut illustration of people.", + "id": 34645 }, { - "image_path": "G:\\images\\combined\\07-22-2021T07-03-0428ee52121b598_jpg.rf.674219f545d93a95a256590a9dddaf11.jpg", - "response": "A rain covered window looking into an office.", - "id": 35685 + "image_path": "G:\\images\\combined\\03108_jpg.rf.49dcbf773dd2734017ceed1a0a3be568.jpg", + "response": "A man wearing a safety vest and a hard hat stands next to a stop sign.", + "id": 34646 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5911_jpg.rf.17bd9367ecf3df400ff98a96c5b44696.jpg", - "response": "A man sitting at a desk in front of a computer.", - "id": 35686 + "image_path": "G:\\images\\combined\\03108_jpg.rf.7ce50b1689871e79561b8a6290db5b89.jpg", + "response": "A man wearing a safety vest and a hard hat is standing on a street corner. He is holding a stop sign and leaning against a wooden pole. There is a traffic cone behind him. The street is dark and there are cars in the background.", + "id": 34647 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5911_jpg.rf.d786cb188514a207fbebd9ce8f0881d4.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 35687 + "image_path": "G:\\images\\combined\\03112_jpg.rf.1eebdaaa6687f7dc8fa362a72fbcadf6.jpg", + "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", + "id": 34648 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5922_jpg.rf.7a416d05dccda56dd8a56d4df01a6148.jpg", - "response": "The image shows a group of people working in a cubicle farm. There are four people visible in the image, with one person standing and three sitting. They are all looking at computer screens in front of them. The screens are on the desks and are located in the foreground of the image.", - "id": 35688 + "image_path": "G:\\images\\combined\\03112_jpg.rf.e7650e58d15bd9abf45a08665104155a.jpg", + "response": "A man in a yellow vest and white hard hat is standing in the middle of a street. He is wearing a yellow vest and has a white hard hat on. The street is wet and there are cars in the background.", + "id": 34649 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5922_jpg.rf.ff752bdd27ad532edac755c4dc4c36fb.jpg", - "response": "A room with several people working on computers.", - "id": 35689 + "image_path": "G:\\images\\combined\\03118_jpg.rf.e1bfbad137be8bf20a641131026ae87c.jpg", + "response": "A man wearing a yellow safety helmet and a yellow safety vest.", + "id": 34650 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5926_jpg.rf.14914296e2b2a573c277d52c6db2aca3.jpg", - "response": "A rain effect is applied to a photo of an office space. The office space is filled with cubicles. Each cubicle has a desk with a computer on it. There are several people in the office. One person is standing in the center of the office. Another person is sitting at a desk in the cubicle to the right of the person in the center. A third person is sitting at a desk in the cubicle to the left of the person in the center.", - "id": 35690 + "image_path": "G:\\images\\combined\\0311968a1b750ede.jpg", + "response": "A book stall with a blue sign that says \"Station Bookstall\" on it.", + "id": 34651 }, { - "image_path": "G:\\images\\combined\\07-22-2021T09-03-0528ee52121b5926_jpg.rf.904cf232200e65a83b7e774bfebec31c.jpg", - "response": "a office with people sitting at computers", - "id": 35691 + "image_path": "G:\\images\\combined\\03126_jpg.rf.0b11972c6c6df041c5f143a58d0b3f16.jpg", + "response": "A woman wearing a orange safety vest and a white hard hat.", + "id": 34652 }, { - "image_path": "G:\\images\\combined\\07-22-2021T10-03-0528ee52121b593_jpg.rf.a29e8048c966a0d4c0bbbe630ff7470a.jpg", - "response": "A cubicle with a computer screen and keyboard on the desk.", - "id": 35692 + "image_path": "G:\\images\\combined\\03126_jpg.rf.7b0840b352093778126e47cd174cea40.jpg", + "response": "A woman wearing a orange safety vest and a white hard hat is looking over a wall. She is leaning against a wooden ladder.", + "id": 34653 }, { - "image_path": "G:\\images\\combined\\07-22-2021T10-03-0528ee52121b593_jpg.rf.a32b6369b8db99966af6ed4e7bf21b80.jpg", - "response": "A office with cubicles and desks where people are working.", - "id": 35693 + "image_path": "G:\\images\\combined\\03162cabd3033e19.jpg", + "response": "A red and white Air Berlin plane is taking off from the runway.", + "id": 34654 }, { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b5914_jpg.rf.bbf3b7fd2695ec79de0740df81f8ca1a.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 35694 + "image_path": "G:\\images\\combined\\0316e93df69fbcab.jpg", + "response": "A shelf with many copies of the book \"Origin of Species\" by Charles Darwin.", + "id": 34655 }, { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b5914_jpg.rf.e2c1df4ca5115d440c062e893c10b867.jpg", - "response": "A room full of people sitting at computers.", - "id": 35695 + "image_path": "G:\\images\\combined\\03170e6f23d22c9f.jpg", + "response": "A silver Rolex watch with diamonds on the bezel and the band.", + "id": 34656 }, { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b592_jpg.rf.35a7f88cb65994d2088277e4ccd71d33.jpg", - "response": "A rain covered window looking into an office with several people working on computers.", - "id": 35696 + "image_path": "G:\\images\\combined\\03171556037898c8.jpg", + "response": "A gold can of beer with a red and white sticker on it.", + "id": 34657 }, { - "image_path": "G:\\images\\combined\\07-22-2021T12-03-0728ee52121b592_jpg.rf.71f149940c06ed79b33eae1c86d774f3.jpg", - "response": "A woman standing in a room with a wall of cubicles.", - "id": 35697 + "image_path": "G:\\images\\combined\\031733473703e84a.jpg", + "response": "A train station clock showing the time as 12:59.", + "id": 34658 }, { - "image_path": "G:\\images\\combined\\07-22-2021T14-03-0828ee52121b5920_jpg.rf.3614dda2ab621f99a6b7c6a60045b0d7.jpg", - "response": "A blurry image of a room with a person standing in it. The person is wearing a blue shirt and is standing in front of a computer. There are several other people in the room, but they are all blurry. The room has a lot of cubicles and computers.", - "id": 35698 + "image_path": "G:\\images\\combined\\03185a9dbe007a8f.jpg", + "response": "a black and white clock hanging from a wire attached to a building", + "id": 34659 }, { - "image_path": "G:\\images\\combined\\07-22-2021T14-03-0828ee52121b5920_jpg.rf.9cbf8999d30ba1a5b4e6d15ec7811de8.jpg", - "response": "A office with desks and chairs all around. People are working on computers. One person is standing in the middle of the room. The walls are covered in mirrors. The ceiling is white and has a light in the middle. The room is covered in small black dots.", - "id": 35699 + "image_path": "G:\\images\\combined\\0318df6aea131e32.jpg", + "response": "A red double decker bus is driving down the street.", + "id": 34660 }, { - "image_path": "G:\\images\\combined\\07-22-2021T15-03-0828ee52121b595_jpg.rf.413b965381c6a4c5c39704d858f47c92.jpg", - "response": "A woman standing in a room with many people sitting at computers.", - "id": 35700 + "image_path": "G:\\images\\combined\\031bcfee5e18ebd9.jpg", + "response": "A woman is holding a cell phone in her right hand and standing next to six cell phones.", + "id": 34661 }, { - "image_path": "G:\\images\\combined\\07-22-2021T15-03-0828ee52121b595_jpg.rf.f2f9ab7fbb3520fffc3fe149efce978c.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 35701 + "image_path": "G:\\images\\combined\\031dae4a52cf8aa1.jpg", + "response": "A yellow license plate that says ALASKA on it.", + "id": 34662 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5925_jpg.rf.6d2d08cba96db059adae7ee4fa8ceb82.jpg", - "response": "A woman standing in a room with a bunch of computers.", - "id": 35702 + "image_path": "G:\\images\\combined\\031e5a591a099bb1.jpg", + "response": "A room with a desk and computer on it.", + "id": 34663 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5925_jpg.rf.98fb825637d9afdc1fb8c0f6250da585.jpg", - "response": "A woman standing in a room with many computer monitors.", - "id": 35703 + "image_path": "G:\\images\\combined\\031ec9949229c38e.jpg", + "response": "A very large ship in the water with the word HANJIN on the side of it.", + "id": 34664 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5926_jpg.rf.86ce9993b15a8dc9dbf2e7902ab9fc07.jpg", - "response": "A group of people working at desks with computers.", - "id": 35704 + "image_path": "G:\\images\\combined\\031eed019baea941.jpg", + "response": "A police officer is sitting on a motorcycle on a busy city street. There are many cars and people around the officer. Some of the cars are taxis. The street is lined with buildings and there are traffic lights along the way.", + "id": 34665 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5926_jpg.rf.dd5e162e1dae3799d0a6c266d2bacc98.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35705 + "image_path": "G:\\images\\combined\\031ef5cac2530a70.jpg", + "response": "A book cover with a yellow border and black background. The title \"Checkpoint\" is written in white with a yellow font. There is a red building with three arches in the background. There are three people in the image, one holding a gun and taking the money from two others.", + "id": 34666 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5927_jpg.rf.7473900de3c252b14669a68d8f74cb71.jpg", - "response": "A man standing in a room with many computers.", - "id": 35706 + "image_path": "G:\\images\\combined\\031f3a2114b2c971.jpg", + "response": "A can of Suntory Ice Coffee Boss sits on a counter.", + "id": 34667 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5927_jpg.rf.fe22ec89eea1185c575d12ccac3b4b33.jpg", - "response": "A room with many people working at computers. There are 4 people in the room, each sitting at a desk with a computer. The people are dressed in black. The room has a white ceiling and walls. There are two large windows in the room, covered with curtains. The room is filled with a large amount of black confetti.", - "id": 35707 + "image_path": "G:\\images\\combined\\0320299003ff65fb.jpg", + "response": "a group of people standing around a helicopter", + "id": 34668 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5929_jpg.rf.928afb8a5422e48ba5e008592ee08d33.jpg", - "response": "The image is a view through a window into an office space. There are multiple people in the office, some sitting at desks and some standing. The desks have computers on them and there are chairs in front of the computers. The office has a modern look with glass walls and white desks. The room is well lit with a bright white light.", - "id": 35708 + "image_path": "G:\\images\\combined\\0322f8a71414a329.jpg", + "response": "A bottle of Mackmyra Whisky sitting next to a glass filled with the dark beer.", + "id": 34669 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5929_jpg.rf.957a5439c6999dba3009c951f65e7317.jpg", - "response": "A group of people are in a room with computers.", - "id": 35709 + "image_path": "G:\\images\\combined\\032301767de33543.jpg", + "response": "A person is holding a black Samsung smartphone in their hand. The phone is open and showing text on the screen. The person is also holding a pen in their other hand.", + "id": 34670 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5944_jpg.rf.4611eb1bb8be990feb1647404fff10ec.jpg", - "response": "A group of people standing in a room with cubicles.", - "id": 35710 + "image_path": "G:\\images\\combined\\0323506fd3178dc8.jpg", + "response": "A keyboard with a red enter key that says mac OS on it.", + "id": 34671 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5944_jpg.rf.fadecc495932c7ff671016f7d2e1146f.jpg", - "response": "a group of people standing in a room with a lot of computer screens", - "id": 35711 + "image_path": "G:\\images\\combined\\03235d26a98bcb0f.jpg", + "response": "A red, white and black motorcycle is parked on the street.", + "id": 34672 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5945_jpg.rf.bd293ff91c7d4407eadeeaa92c5849eb.jpg", - "response": "a group of people standing in a room with a mirrored wall.", - "id": 35712 + "image_path": "G:\\images\\combined\\0324e472fdbc21d2.jpg", + "response": "A British Airways airplane flying in the sky.", + "id": 34673 }, { - "image_path": "G:\\images\\combined\\07-22-2021T18-03-1028ee52121b5945_jpg.rf.fb63824aa73897059738c46a107da29a.jpg", - "response": "a group of people standing in a room with a lot of mirrors on the wall", - "id": 35713 + "image_path": "G:\\images\\combined\\03254_jpg.rf.0b3f603c0c138a95018b4f18f287a2ea.jpg", + "response": "A group of men standing around each other.", + "id": 34674 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5912_jpg.rf.8cce533c86984786314b773f0e52f235.jpg", - "response": "A group of people sitting in front of computers.", - "id": 35714 + "image_path": "G:\\images\\combined\\03254_jpg.rf.e6b5354062a131462948ff0a3b7c66ec.jpg", + "response": "A group of people standing around each other", + "id": 34675 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5912_jpg.rf.e20cbb02d3d2e81a81a23312675f45f2.jpg", - "response": "A man standing in front of a group of people who are sitting at computers.", - "id": 35715 + "image_path": "G:\\images\\combined\\032672906be2e4c9.jpg", + "response": "The image shows a group of young men standing behind a large blue bin. They are all wearing blue shirts and sunglasses. Some of the men are holding water guns and pointing them towards the camera. There is a woman standing behind the men, and another woman is visible in the background. The scene appears to be taking place at a water fight or a similar event.", + "id": 34676 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5914_jpg.rf.0b52a38a18287ff8495472a757a6a470.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 35716 + "image_path": "G:\\images\\combined\\0326b1ef4529097c.jpg", + "response": "A person is holding a black Nokia phone in their hand. The phone is running Windows Phone 8 and has a weather app open. The weather is set to Taipei and the current temperature is 25 degrees Celsius. There is also a to-do list on the phone with tasks at 16:00, 21:00 and 23:00.", + "id": 34677 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5914_jpg.rf.e2e8c315c8e696fa6d06347e1c08504b.jpg", - "response": "A room with a ceiling and walls covered in a mirrored surface. There are three people in the room, two of which are standing at desks with computers in front of them. The third person is standing closer to the right side of the room.", - "id": 35717 + "image_path": "G:\\images\\combined\\03286a77f1a9da12.jpg", + "response": "a baseball scoreboard showing the final score of the game which is 3 to 8", + "id": 34678 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5915_jpg.rf.9055df286814d06dda18aa7b320c7ff6.jpg", - "response": "The image shows a group of people working on computers in a large office space. There are several people sitting at desks, each with a computer in front of them. The office has multiple chairs and desks, as well as a few couches. The room is also equipped with a TV and a clock on the wall. The computers are equipped with keyboards, mice, and monitors. The office also has a few books scattered around.", - "id": 35718 + "image_path": "G:\\images\\combined\\0328a24cc3047ec8.jpg", + "response": "A large billboard with a woman's face on it is displayed on a building.", + "id": 34679 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5915_jpg.rf.d8a63542b9c8f38d1564b39b9baa6554.jpg", - "response": "A group of people working at desks in a large office.", - "id": 35719 + "image_path": "G:\\images\\combined\\0328f10a8d351b24.jpg", + "response": "A shelf with a variety of beer bottles on it.", + "id": 34680 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5917_jpg.rf.89cb081d5b455c12479521d1c8805305.jpg", - "response": "A group of people working at cubicles in a office.", - "id": 35720 + "image_path": "G:\\images\\combined\\032925607ae0382c.jpg", + "response": "A pole with a sign on it that says E and has a arrow pointing to the left.", + "id": 34681 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b5917_jpg.rf.d80b0438150e8686c010ca0c069d6833.jpg", - "response": "A group of people working at computers in a computer lab.", - "id": 35721 + "image_path": "G:\\images\\combined\\0329e6958e4f5069.jpg", + "response": "A green glass bottle is sitting on a wooden bar. The bottle is labeled with the words \"Good for that jittery feeling.\" The label continues on the back of the bottle. The bottle is empty.", + "id": 34682 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b596_jpg.rf.7c370ccd59efe9d2d153878bb220d6bc.jpg", - "response": "A group of people working at computers in a large office.", - "id": 35722 + "image_path": "G:\\images\\combined\\032a1bbda0389235.jpg", + "response": "A tv screen showing a soccer game between Brazil and Germany.", + "id": 34683 }, { - "image_path": "G:\\images\\combined\\07-22-2021T20-03-1128ee52121b596_jpg.rf.8fae1574bfe4c77e500272358ce5bb72.jpg", - "response": "A group of people in a room with a bunch of computers.", - "id": 35723 + "image_path": "G:\\images\\combined\\032ac761616a8b61.jpg", + "response": "A man holding a stack of boxes with fruit in them.", + "id": 34684 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5910_jpg.rf.28512b67abca98e5e9b6a1436cca6353.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35724 + "image_path": "G:\\images\\combined\\032b047f44d6cf41.jpg", + "response": "A room with a bookshelf full of books and an electronic drum set in front of it.", + "id": 34685 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5910_jpg.rf.97448bb200c41747f4241f6705c0043d.jpg", - "response": "A man in a blue shirt is standing in a cubicle.", - "id": 35725 + "image_path": "G:\\images\\combined\\032b5411ec403cc2.jpg", + "response": "A yellow poster with a black text. The text is all capitalized and bold. The numbers 12 and 15 are displayed at the top and bottom of the image in big font. The word \"MAYO\" is displayed in yellow font. The word \"ESTAS\" is displayed in black font. The word \"ESPERANDO?\" is displayed in bold black font. There is a picture of the earth with two arrows pointing at it. One arrow is pointing to the left and the other is pointing to the right.", + "id": 34686 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5915_jpg.rf.3e838d83384438458baa31e039c98f1b.jpg", - "response": "A man standing in a room with a lot of computer screens around him.", - "id": 35726 + "image_path": "G:\\images\\combined\\032dcf3f768e3259.jpg", + "response": "On a bar, there are two hot sauce bottles. One is El Yucateco Habanero Hot Sauce and the other is their green sauce. Both are made in the USA.", + "id": 34687 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5915_jpg.rf.d14b33dfc79ebebb2bde0eda015a0d44.jpg", - "response": "A man in a blue shirt is standing in a cubicle with a red rug. There are four people sitting at desks with computers in front of them. The desks are covered in papers and there are two TVs on the wall. The man is wearing a watch on his left wrist.", - "id": 35727 + "image_path": "G:\\images\\combined\\032f63f7a99ec39e.jpg", + "response": "A collage of book covers including The Name of the Wind, Starship Troopers, and others.", + "id": 34688 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b591_jpg.rf.9d0905883dcd47c787e6d492529c4c42.jpg", - "response": "A view through a window of a room with several people working on computers. The room has a white ceiling and walls and is filled with desks where people are sitting and working. There are two rows of desks, with the desks on the left side being closer together. Each desk has a computer on it and a keyboard and mouse are visible. There are also two monitors on the left side of the room. In the background, there are two screens on the right side of the room. The image has a blue tint.", - "id": 35728 + "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.600ca107de275c0227bb0c8a37ea8e43.jpg", + "response": "A cardboard box with the word Games on it in black tape.", + "id": 34689 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b591_jpg.rf.b4de5c720abe632231413c3fa419fef9.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35729 + "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.79fd9a20f3fb4dc905b1bd126895c9a7.jpg", + "response": "A cardboard box is open on the floor. The box is on a wooden floor. There is a white box on the floor behind the brown box. There is a plastic bag with red writing on it next to the box. There is a white bag behind the box. There is a black and white plastic bag behind the white box.", + "id": 34690 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5944_jpg.rf.048d0cc3983c21510b485dacf3585f63.jpg", - "response": "A large office with several cubicles and computers.", - "id": 35730 + "image_path": "G:\\images\\combined\\033308cf-140Booooox_jpg.rf.d1a0b19bf2b537c33ae9138f2b056bb6.jpg", + "response": "A cardboard box with the wordasics on it.", + "id": 34691 }, { - "image_path": "G:\\images\\combined\\07-22-2021T21-03-1128ee52121b5944_jpg.rf.5e9e39fce2b6efca9ff829aa4961b98a.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35731 + "image_path": "G:\\images\\combined\\0333568015752324.jpg", + "response": "An advertisement for Dial anti-perspirant products, including Dial Very Dry.", + "id": 34692 }, { - "image_path": "G:\\images\\combined\\07-22-2021T22-03-1128ee52121b595_jpg.rf.72fae681df0c1fee9a84ff1d08489ec5.jpg", - "response": "The image shows a large office with many people working at computers. There are several chairs positioned in front of desks, and numerous computer monitors are in use. The office has a modern look and feel, with glass walls and white desks. The people in the office are focused on their work, and the atmosphere appears to be busy and productive.", - "id": 35732 + "image_path": "G:\\images\\combined\\033372370c02e704.jpg", + "response": "A white van parked in front of a building.", + "id": 34693 }, { - "image_path": "G:\\images\\combined\\07-22-2021T22-03-1128ee52121b595_jpg.rf.9927583f56c18ea9f8bc2bd4302dfe9b.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 35733 + "image_path": "G:\\images\\combined\\033387d84d578dd7.jpg", + "response": "A big commercial plane(27,162),(992,610) on the runway", + "id": 34694 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5927_jpg.rf.bf7a1e308541a3c4d312f7d23e4d6930.jpg", - "response": "A room with several cubicles with people sitting at computers.", - "id": 35734 + "image_path": "G:\\images\\combined\\033450fc9a624610.jpg", + "response": "A person holding a bottle of red wine with a grey label that says Great Wall in black and white.", + "id": 34695 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5927_jpg.rf.cae90c755352d2b8d31b1b3f517a849b.jpg", - "response": "The image is a glass window covered in water droplets that looks into an office area. There are multiple people working on computers in the office. There are two people sitting at a desk on the left side of the room, and another two people sitting at a desk on the right side of the room. In the middle of the room, there is a desk with a computer on it and a chair in front of it. There is also a monitor on the left side of the room and a chair in front of it.", - "id": 35735 + "image_path": "G:\\images\\combined\\0334520a6683a223.jpg", + "response": "A clock with a soldier from the video game Halo in front of it.", + "id": 34696 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5930_jpg.rf.711b28b7d04eded995f3c4c402078e70.jpg", - "response": "A large office with several people working on computers.", - "id": 35736 + "image_path": "G:\\images\\combined\\03345_jpg.rf.9c37b8c4a358338c7756688d02122256.jpg", + "response": "A man in an orange jacket and a white helmet is standing in a construction site at night. He is looking at his phone and smiling.", + "id": 34697 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b5930_jpg.rf.84d45b078edc2c5885321cc488a103ee.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35737 + "image_path": "G:\\images\\combined\\0334eea69a37e9ad.jpg", + "response": "A green dumpster with the words \"tour bus trash\" written on it in red letters.", + "id": 34698 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b599_jpg.rf.3a8b45ec842967e22b29fccc190a39da.jpg", - "response": "a room with people sitting at computers", - "id": 35738 + "image_path": "G:\\images\\combined\\03370c2ee2a5791d.jpg", + "response": "The image shows a product range for baby care. There are five products in the image, which are arranged in a row. From the left, the products are a white bottle with a pump, a white bottle with a dropper, a yellow tube, a white tube and a white bag. The pump bottle has a heart on the label, the dropper bottle has a green heart on the label. The yellow tube has a green heart on the label. The white tube has a green heart on the label. The white bag has the word \"baby\" written on it.", + "id": 34699 }, { - "image_path": "G:\\images\\combined\\07-23-2021T08-03-1628ee52121b599_jpg.rf.4c766abfe40a45345d3a7366385b1686.jpg", - "response": "A blurry image of a room with people working on computers. The room has a blue color scheme and is filled with computers. There are three people in the room, two of which are sitting at desks and one standing in the middle of the room. The people are looking at the computers and seem to be working. The image is covered in small black and white dots.", - "id": 35739 + "image_path": "G:\\images\\combined\\0337bd7e2cded3cd.jpg", + "response": "A round plaque with a picture of a man's profile on it.", + "id": 34700 }, { - "image_path": "G:\\images\\combined\\07-23-2021T16-03-2128ee52121b591_jpg.rf.4a440b5cac35ae36edc77c6a2fbfbb4a.jpg", - "response": "A group of people are working on computers in a computer lab.", - "id": 35740 + "image_path": "G:\\images\\combined\\0337cbae48f8a28d.jpg", + "response": "The image features a large body of water with several boats floating on it. There are two large boats, one on the left and one on the right, that are much taller than the other boats. In the distance, there is a large mountain with trees on it. A helicopter is flying in the sky above the boats.", + "id": 34701 }, { - "image_path": "G:\\images\\combined\\07-23-2021T16-03-2128ee52121b591_jpg.rf.a28a0e3ce8c305dffcb06a235120e38d.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35741 + "image_path": "G:\\images\\combined\\0338c67dc355a8c6.jpg", + "response": "A white van with the word ORTHOTIX on the side of it.", + "id": 34702 }, { - "image_path": "G:\\images\\combined\\07-23-2021T19-03-2228ee52121b594_jpg.rf.37089f19e311e67ad4b7263cb2ad51c6.jpg", - "response": "a group of people working in cubicles", - "id": 35742 + "image_path": "G:\\images\\combined\\03391be934ddbc7c.jpg", + "response": "A space shuttle being transported on top of a large airplane.", + "id": 34703 }, { - "image_path": "G:\\images\\combined\\07-23-2021T19-03-2228ee52121b594_jpg.rf.e0b8b640571a284ede53a11c91f6dcdb.jpg", - "response": "a room with a lot of cubicles with people working on computers", - "id": 35743 + "image_path": "G:\\images\\combined\\033949382d674109.jpg", + "response": "A green bus with the number 15 on it is driving down the street.", + "id": 34704 }, { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b5928_jpg.rf.3ba4cdaa8e27aa93178bcaa041636c90.jpg", - "response": "a man standing in front of a computer screen", - "id": 35744 + "image_path": "G:\\images\\combined\\033a703a4771ba75.jpg", + "response": "a red car with a toyota logo on the trunk and a myflorida license plate", + "id": 34705 }, { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b5928_jpg.rf.7dfef9d68ff4389d6fdd85ac02735052.jpg", - "response": "a man standing in front of a computer", - "id": 35745 + "image_path": "G:\\images\\combined\\033a93b07e9f92c4.jpg", + "response": "a black suv in front of a white building", + "id": 34706 }, { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b596_jpg.rf.cf61ad2476c863ea1d04952bfef57eec.jpg", - "response": "A office with cubicles that have computers on the desks.", - "id": 35746 + "image_path": "G:\\images\\combined\\033a983285462145.jpg", + "response": "A bottle of Oude de Charrue sits next to a glass filled with the beer. The bottle is next to a green plant in a green watering can.", + "id": 34707 }, { - "image_path": "G:\\images\\combined\\07-23-2021T21-03-2328ee52121b596_jpg.rf.eb7368d39e23d7a59f6195830700cc5c.jpg", - "response": "a office with a lot of cubicles and computers", - "id": 35747 + "image_path": "G:\\images\\combined\\033cd5edd0a24ab7.jpg", + "response": "A white van with a ladder on top of it.", + "id": 34708 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b591_jpg.rf.6ef01ef42db93332fce328235c37b83c.jpg", - "response": "a group of people working at computers", - "id": 35748 + "image_path": "G:\\images\\combined\\033d24fb20116330.jpg", + "response": "A red city bus is parked in a parking lot.", + "id": 34709 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b591_jpg.rf.843141f030c1e3444ab801d0b90127fd.jpg", - "response": "A room full of people working on computers.", - "id": 35749 + "image_path": "G:\\images\\combined\\033e164dad566027.jpg", + "response": "A person is holding a bottle of beer in their hand. The bottle is green and has a label on it. There is a cup on the table.", + "id": 34710 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b592_jpg.rf.39017550154526af782f8ceff8333dc3.jpg", - "response": "The image shows a large office with several people working at computers. There are at least ten people in the office, some of them standing and others sitting. There are at least four computers in the office, and they all have keyboards and mice attached. The office also has at least two TVs mounted on the wall. The TVs are turned on, and they are displaying information. The TVs are also connected to the computers, as there are cables running from the computers to the TVs. The office has a lot of desks and chairs, and there are also some books and backpacks scattered around the office.", - "id": 35750 + "image_path": "G:\\images\\combined\\033ecc0bfce7a4c4.jpg", + "response": "A busy city street with many people and yellow taxis.", + "id": 34711 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b592_jpg.rf.eaefa0143874e21f89167f596c2f8c2b.jpg", - "response": "A group of people standing around a room with desks and computers.", - "id": 35751 + "image_path": "G:\\images\\combined\\033ecc2e897a1ebf.jpg", + "response": "A metal fence with several signs attached to it. The signs are in various colors and say danger, do not enter, demolition work in progress, and caution. There is also a hand with an exclamation point in a triangle.", + "id": 34712 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b593_jpg.rf.3e939b09d89a1c8e6335a0f9ca7971b6.jpg", - "response": "a group of people working at computers", - "id": 35752 + "image_path": "G:\\images\\combined\\03403981219b557d.jpg", + "response": "A red and white bus is parked on the street.", + "id": 34713 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b593_jpg.rf.68ce893a75e2e5914e9329bf85fee3b1.jpg", - "response": "A large office with cubicles for employees.", - "id": 35753 + "image_path": "G:\\images\\combined\\03404_jpg.rf.379056ae052a45d63fcd169530968e15.jpg", + "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are three orange traffic cones in the foreground. The field has a white yard line and a red and white barricade. There is a blue metal structure on the left side of the field and a wooden structure on the right. There is a spotlight shining on the man and a fire hydrant is visible in the background. The sky is dark and there are sparks flying in the air.", + "id": 34714 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b594_jpg.rf.31c6626519d81209cb6578df9416aa5a.jpg", - "response": "A group of people are standing in a room. There are two people on the left and three people on the right. They are all facing a wall. In front of the people is a table. On the left side of the table, there is a handbag. On the right side, there is a backpack. There is a clock on the wall above the people. The room has a white ceiling and walls. There are many small black dots covering the entire image.", - "id": 35754 + "image_path": "G:\\images\\combined\\03404_jpg.rf.672fc7d318cae1cceac821a9b3989830.jpg", + "response": "A man in a yellow hard hat and orange vest is running across a field. He is wearing a red and yellow safety jacket. There are two orange traffic cones on the field, one on the left and one on the right. In the background, there are two lights shining down on the field. To the left of the field, there is a metal structure with a ladder.", + "id": 34715 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b594_jpg.rf.b05a61b8e7af715bcb884edcbf4a0649.jpg", - "response": "A woman standing in front of a glass wall looking at a computer lab full of people.", - "id": 35755 + "image_path": "G:\\images\\combined\\0340971ba2dd8d6e.jpg", + "response": "A close up of a smart device screen that is in a foreign language.", + "id": 34716 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b597_jpg.rf.3959544b76823e638cb2380b68522dc5.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 35756 + "image_path": "G:\\images\\combined\\0340bd6836605e6a.jpg", + "response": "A bar with a wooden counter top and a brown color.", + "id": 34717 }, { - "image_path": "G:\\images\\combined\\07-24-2021T07-03-2928ee52121b597_jpg.rf.d986f9ce9787efb8965905bd5e0e7b95.jpg", - "response": "A group of people are working in an office. There are two people sitting at a desk with a computer in front of them. A woman is standing in front of a whiteboard. A person is sitting at a desk with a laptop. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a desk with a computer. There is a person sitting at a", - "id": 35757 + "image_path": "G:\\images\\combined\\0340ffed402c0672.jpg", + "response": "In the image, there is a young boy dressed in a baseball uniform, holding a baseball bat and standing on a baseball field. He appears to be focused and ready to play.", + "id": 34718 }, { - "image_path": "G:\\images\\combined\\07-24-2021T08-03-3028ee52121b5931_jpg.rf.3021f8cfea3d97cbb3e00c5405aea8d9.jpg", - "response": "a room with people sitting at desks with computers.", - "id": 35758 + "image_path": "G:\\images\\combined\\0341f72c43fdb537.jpg", + "response": "The image features two women sitting next to each other. One woman has a temporary tattoo on her upper arm that says \"joyful.\" Both women are wearing watches on their wrists. One of the women is also wearing a black and white diamond-patterned necklace. She is holding a green cup in her hand. The other woman is wearing a beaded bracelet on her wrist and is wearing a watch as well.", + "id": 34719 }, { - "image_path": "G:\\images\\combined\\07-24-2021T08-03-3028ee52121b5931_jpg.rf.8eab0c492c66cce9ac077ae9435f81ef.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 35759 + "image_path": "G:\\images\\combined\\03438e4ac08eb383.jpg", + "response": "The image shows a close-up of a smartphone screen. The phone is displaying a photo of a man with glasses, and there are several options for sharing the photo, including Facebook, Twitter, Flickr, and others. The screen also has a navigation bar at the bottom with options for \"Export,\" \"Back,\" and \"Library.\" The phone is held in someone's hand, and there is a person's elbow visible in the background.", + "id": 34720 }, { - "image_path": "G:\\images\\combined\\07-24-2021T10-03-3028ee52121b5915_jpg.rf.40c2766bd38c1e4e27a5394edd7b1ce1.jpg", - "response": "A group of people working at computers in a large office.", - "id": 35760 + "image_path": "G:\\images\\combined\\0344024a2be37ee1.jpg", + "response": "A silver and white mobile phone is displayed. The phone has a silver and white color scheme and a navigation button in the center of the phone. To the left of the navigation button are the numbers 0 and * and the button with the image of a phone. Underneath the navigation button are the buttons with the numbers 1, 2, 3, and 4. To the right of the navigation button are the buttons with the numbers 5 and 6. Underneath these are the buttons with the numbers 7, 8, 9, and 0. There is also a button with the image of a envelope. Above the navigation button are the words \"Messages\". Next to this are the options \"Select\" and \"Back\".", + "id": 34721 }, { - "image_path": "G:\\images\\combined\\07-24-2021T10-03-3028ee52121b5915_jpg.rf.58bc74d8926a77b0c43adbf0d373c631.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35761 + "image_path": "G:\\images\\combined\\034473474965116d.jpg", + "response": "A red and white double decker bus is parked in a parking lot with other buses.", + "id": 34722 }, { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b5915_jpg.rf.70f1ed4f6401eb8ad198d87f560dbac3.jpg", - "response": "A woman standing in a cubicle with a computer.", - "id": 35762 + "image_path": "G:\\images\\combined\\0345e23c2c2da911.jpg", + "response": "A keyboard with a paper in front of it with the word jetset on it.", + "id": 34723 }, { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b5915_jpg.rf.984e4b340d4f8e3a3322bd46b703be01.jpg", - "response": "A woman standing in a cubicle area with computer monitors.", - "id": 35763 + "image_path": "G:\\images\\combined\\03461b7f34db309a.jpg", + "response": "A bus on a city street in Rio de Janeiro.", + "id": 34724 }, { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b592_jpg.rf.1ca75cfaa51d5a8f79ac406d8d4b3dcf.jpg", - "response": "A computer lab with people working on computers.", - "id": 35764 + "image_path": "G:\\images\\combined\\0347430ffd8f3671.jpg", + "response": "A glass of beer on a table.", + "id": 34725 }, { - "image_path": "G:\\images\\combined\\07-24-2021T14-03-3328ee52121b592_jpg.rf.e8b2e96b7c8153ab7227c762f68be872.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35765 + "image_path": "G:\\images\\combined\\034788d9f2ec86e5.jpg", + "response": "A bottle of red wine named La Chapelle Boit.", + "id": 34726 }, { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5940_jpg.rf.7ba09a5f1511e0c32c01f793b6262c12.jpg", - "response": "A woman in a purple shirt walking through a room with many cubicles.", - "id": 35766 + "image_path": "G:\\images\\combined\\03484c827a93d689.jpg", + "response": "A orange and yellow double decker bus parked next to a red and white double decker bus.", + "id": 34727 }, { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5940_jpg.rf.d6faa860a73969548ec013cd8d3b0466.jpg", - "response": "A woman walking through a cubicle area with multiple people working at computers.", - "id": 35767 + "image_path": "G:\\images\\combined\\03485f39264998c8.jpg", + "response": "In the image there is a person laying in a bathtub. They are reading a book with the title \"Shit I was right about\" on the cover. The book is held up to the persons face so they can read it. There are three candles lit around the bathtub and a rubber duck floating in the water. The person's legs are crossed and they have a ring on their left hand.", + "id": 34728 }, { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5944_jpg.rf.3e03b114c13c38ca4ba1512a1755d9bc.jpg", - "response": "A group of people standing in a room.", - "id": 35768 + "image_path": "G:\\images\\combined\\03486477f41d883f.jpg", + "response": "The image shows an empty stadium with a green football field. The field has white numbers and lines and the goalposts are painted yellow. There are two American flags flying in the stadium, one on the left and one on the right. The stadium seats are empty and the stands are made of concrete.", + "id": 34729 }, { - "image_path": "G:\\images\\combined\\07-24-2021T18-03-3628ee52121b5944_jpg.rf.5f8b8ab0af98c10ec8154ee00e5a3f4c.jpg", - "response": "A group of people standing in a room with a white ceiling and black specks on the glass.", - "id": 35769 + "image_path": "G:\\images\\combined\\034ab6f9af333146.jpg", + "response": "A large screen is displaying a soccer game with a crowd watching.", + "id": 34730 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5910_jpg.rf.ac34c9a474f0b2ed1f15140cc5cc6c9b.jpg", - "response": "a group of people working on computers in cubicles", - "id": 35770 + "image_path": "G:\\images\\combined\\034adc2d37d61349.jpg", + "response": "A black LG Cyon phone is displayed. The phone has a red and white screen with various apps and settings. The time on the phone is 11:23. There is a search bar at the top with the text \"The BLOG\" written in Korean. Below the search bar are two buttons, one with the YouTube logo and one with the Facebook logo. There is a button labeled \"LG Road Sync\" and a button labeled \"LG Air Sync\". The bottom of the screen has two buttons, one labeled \"Road Typing\" and one labeled \"Facebook\". The phone is running Android.", + "id": 34731 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5910_jpg.rf.b23f0cd2248ef232b445110346471e61.jpg", - "response": "A man wearing a blue shirt and a yellow backpack stands in a room with cubicles.", - "id": 35771 + "image_path": "G:\\images\\combined\\034aeb53f8203c9b.jpg", + "response": "A colorful mural painted on the side of a building.", + "id": 34732 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b591_jpg.rf.55fe6d256f9d8b16c7eed963668b1a91.jpg", - "response": "a group of people standing in a room with a white ceiling and walls.", - "id": 35772 + "image_path": "G:\\images\\combined\\034afc91ed9a3c73.jpg", + "response": "In the image, there is a man standing in a kitchen preparing food. He is wearing a white shirt and cooking over a stove. There are two bowls on the counter, one on the left and the other on the right. A bottle is placed near the window, and a spoon is resting on the counter. The spoon is near the man who is cooking.", + "id": 34733 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b591_jpg.rf.fc9b2b42269f27a4d8802f7cb9efb5ca.jpg", - "response": "A group of people standing in a room.", - "id": 35773 + "image_path": "G:\\images\\combined\\034bc04aadfd3ce0.jpg", + "response": "A stack of 7 gold cans of Coca Cola.", + "id": 34734 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5920_jpg.rf.df1abe1900c8d915db9d78b96d077e11.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 35774 + "image_path": "G:\\images\\combined\\034bfc58141b6162.jpg", + "response": "A red, yellow and silver train is stopped at a train station.", + "id": 34735 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5920_jpg.rf.f151e0a2b0f074a279776a8d2bd9add0.jpg", - "response": "A group of people are sitting at desks in a office.", - "id": 35775 + "image_path": "G:\\images\\combined\\034c598a8ba83945.jpg", + "response": "Two smart devices are side by side on a bed.", + "id": 34736 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b592_jpg.rf.5055040e4635c7d7095b168a70b9ddcf.jpg", - "response": "A group of people standing in a room.", - "id": 35776 + "image_path": "G:\\images\\combined\\034f44ed3233160c.jpg", + "response": "A brick building with a clock mounted to the side of it.", + "id": 34737 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b592_jpg.rf.78ad2a94bea345250cefaed451b1df3f.jpg", - "response": "A group of people are standing in a room with a white ceiling. They are standing around a cubicle area with desks and chairs. There are two people sitting at a desk with a computer in front of them. There is a TV on the wall and a handbag placed on the floor.", - "id": 35777 + "image_path": "G:\\images\\combined\\034fb549726445cd.jpg", + "response": "A wax seal necklace with a coin charm and a letter charm sits on a wooden table.", + "id": 34738 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5942_jpg.rf.68a3afbeed43d7a3a007cf38590a3767.jpg", - "response": "A group of people are sitting at desks with computers in front of them. They are all wearing ties.", - "id": 35778 + "image_path": "G:\\images\\combined\\0351a7027db236c5.jpg", + "response": "A person is holding a black Sony Xperia Z smartphone. The phone is powered on and displays the time as 7:39. The background of the phone's display shows a mountain over a body of water.", + "id": 34739 }, { - "image_path": "G:\\images\\combined\\07-24-2021T19-03-3628ee52121b5942_jpg.rf.ddb93173d6c199163e6040c482b1dd54.jpg", - "response": "A group of people are sitting at computers.", - "id": 35779 + "image_path": "G:\\images\\combined\\0351eb61ef958742.jpg", + "response": "A person walking down a road near a yellow pedestrian crossing sign.", + "id": 34740 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5910_jpg.rf.8785251484b4252c25fd55e3452b0ba5.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35780 + "image_path": "G:\\images\\combined\\03535a6be5d036d6.jpg", + "response": "A poster with four quadrants. Each quadrant has a different role. The four roles are novice, apprentice, practitioner, and expert.", + "id": 34741 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5910_jpg.rf.8d843ccada1f3de8af337ff5883d1933.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 35781 + "image_path": "G:\\images\\combined\\0354a077b542ed03.jpg", + "response": "A close up of a laptop computer screen and keyboard.", + "id": 34742 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5913_jpg.rf.0cf36128114e020c95a32239728ea8ef.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35782 + "image_path": "G:\\images\\combined\\0354ff409f087801.jpg", + "response": "a person standing in front of a white board", + "id": 34743 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5913_jpg.rf.2e408ad7905380a2b498f9b3f14c1067.jpg", - "response": "A group of people are sitting at computers.", - "id": 35783 + "image_path": "G:\\images\\combined\\035641421030a5f1.jpg", + "response": "A bookshelf with several books on it, including one titled \"DOM Scripting\" and another titled \"JavaScript: The Definitive Reference\".", + "id": 34744 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5919_jpg.rf.285cf76f213f76c46add547f942e5ee2.jpg", - "response": "The image shows a busy office with several people working on computers. There are at least eight people in the office, some sitting at desks and others standing around. There are at least ten computers in the office, with two monitors on each of five desks. The computers are all equipped with keyboards and mice. The office also has two TVs mounted on the wall. The TVs are turned on, and they are displaying information. The TVs are also equipped with keyboards and mice.", - "id": 35784 + "image_path": "G:\\images\\combined\\03577bee21c7d19e.jpg", + "response": "A man wearing glasses stands at a podium with a microphone. He is dressed in a suit and is giving a speech. There is a laptop on the podium and a banner with the words \"100 years\" behind him.", + "id": 34745 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5919_jpg.rf.46ab896079358e71deb4eeab388b07e7.jpg", - "response": "a group of people working on computers in a cubicle setting", - "id": 35785 + "image_path": "G:\\images\\combined\\0359b5b2e2f0bfcb.jpg", + "response": "A person holding a watch box with a watch inside.", + "id": 34746 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5920_jpg.rf.faf76377305f1cabc611c2e97675231b.jpg", - "response": "A group of people are sitting in a room with a mirrored wall. They are all wearing face masks. The wall behind them has a blue and purple painting. The room has a lot of mirrors on the walls and the ceiling. The floor is grey and there are some red chairs. There are also some people wearing black and some are wearing white.", - "id": 35786 + "image_path": "G:\\images\\combined\\0359decb8df78658.jpg", + "response": "a black coffee mug(49,62),(915,905) with a picture of a cake on it", + "id": 34747 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5920_jpg.rf.ff1d1559443e8fad478cba2f836c34c4.jpg", - "response": "A group of people are sitting in a waiting area. There is a woman wearing a black and brown sari. A man is wearing a black shirt and blue jeans. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing a white shirt and black pants. A woman is wearing a black shirt and grey pants. A man is wearing", - "id": 35787 + "image_path": "G:\\images\\combined\\035d0fbe3a26607f.jpg", + "response": "A lava lamp is glowing red in front of a laptop.", + "id": 34748 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5944_jpg.rf.6fec7deb4def990286bb4e9106410dbc.jpg", - "response": "The image shows a group of people working in a modern office. There are four people visible in the image, and they are all standing while working at desks. Each person is using a computer, and there are two monitors visible in the image. The office has a lot of desks and chairs, and the desks are equipped with modern computers. The office also has a TV mounted on the wall.", - "id": 35788 + "image_path": "G:\\images\\combined\\035e005070e011e4.jpg", + "response": "In the image, there is a man wearing a hat standing in front of a whiteboard. The man appears to be giving a presentation or lecture, as he is gesturing with his hands while speaking. He is wearing a plaid shirt and a name tag, and there are several markers scattered around on the table. The whiteboard has various writing on it, including a diagram and the words \"Web Invents\" and \"Activity Stream\".", + "id": 34749 }, { - "image_path": "G:\\images\\combined\\07-24-2021T21033828ee52121b5944_jpg.rf.820be44e56232960b41ca5704d960d4e.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35789 + "image_path": "G:\\images\\combined\\035e0de0db152784.jpg", + "response": "A television monitor with a game on it.", + "id": 34750 }, { - "image_path": "G:\\images\\combined\\07-25-2021T02034028ee52121b5916_jpg.rf.4d3e4f35d53b028d069bc2f8e5cc4bdb.jpg", - "response": "A group of people sitting at computers in a cubicle.", - "id": 35790 + "image_path": "G:\\images\\combined\\035e347ba7ad5e63.jpg", + "response": "A baseball stadium with a green field and many people in the stands watching the game.", + "id": 34751 }, { - "image_path": "G:\\images\\combined\\07-25-2021T02034028ee52121b5916_jpg.rf.dc30ca254f3175e626f8c3a44626446c.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35791 + "image_path": "G:\\images\\combined\\03616065a68b3611.jpg", + "response": "A glass of whiskey next to a bottle of it.", + "id": 34752 }, { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5944_jpg.rf.3ea1d8c50c6c654df3277a81b6aa52d9.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 35792 + "image_path": "G:\\images\\combined\\03619aa36e98b18c.jpg", + "response": "The image shows a bookshelf with various books on it. The books are arranged so that some are leaning against each other, and some are standing straight. The bookshelf is white, and the books are in different colors, including red, white, and black. The books cover a wide range of topics, including design, music, and web design. Some of the book titles include \"The Design\" and \"Blue Note.\"", + "id": 34753 }, { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5944_jpg.rf.81c4aea88972229892fe3ebbb88e8f42.jpg", - "response": "A group of people are sitting at computers in a computer lab.", - "id": 35793 + "image_path": "G:\\images\\combined\\0361af3b7b625275.jpg", + "response": "A busy street scene with people walking around and double decker buses.", + "id": 34754 }, { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5945_jpg.rf.a20e14653fceaa4b12bec74e285c9d24.jpg", - "response": "A group of people standing in a cubicle area with computers.", - "id": 35794 + "image_path": "G:\\images\\combined\\036228da49face6b.jpg", + "response": "A large image of a computer screen is displayed on a stage. The screen shows a website page with several people's faces on it. The website is the Nokia social network.", + "id": 34755 }, { - "image_path": "G:\\images\\combined\\07-25-2021T06-03-4128ee52121b5945_jpg.rf.c6e24a8e40968c4d1414522fd478b149.jpg", - "response": "a office with a row of computer work stations", - "id": 35795 + "image_path": "G:\\images\\combined\\03625040b2eef2a4.jpg", + "response": "A man in a bear suit runs onto the field with a team of football players.", + "id": 34756 }, { - "image_path": "G:\\images\\combined\\07-25-2021T07-03-4228ee52121b5926_jpg.rf.5241e4964c175b331d40698f42b4601d.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35796 + "image_path": "G:\\images\\combined\\036363e87748415a.jpg", + "response": "A sign for Fivestar showing the price of gas at $4.06 per gallon.", + "id": 34757 }, { - "image_path": "G:\\images\\combined\\07-25-2021T07-03-4228ee52121b5926_jpg.rf.75459899b53b8903c43800c3ff37b685.jpg", - "response": "The image shows a group of people working at computers in a computer lab. There are four people in the room, with one person sitting at a desk on the left, one person sitting at a desk in the center, one person sitting at a desk on the right, and one person standing in the middle of the room. They are all focused on their computers, which are arranged in a line along the walls. The lab has a modern feel with white desks and chairs, and the walls are covered in posters. The room is well lit, with bright overhead lights and natural light coming in through windows.", - "id": 35797 + "image_path": "G:\\images\\combined\\036374a151961577.jpg", + "response": "A foggy day with two red double decker buses on the road. One of the buses is parked and the other is driving down the street. There is a car behind the bus that is driving. The bus has a man on it and the car is black. There is a blue metal railing on the side of the street.", + "id": 34758 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5914_jpg.rf.c0af074cbd23505ef8fb19be88d912fb.jpg", - "response": "A view of a office through a window with rain on it.", - "id": 35798 + "image_path": "G:\\images\\combined\\0363a663db0f0bc2.jpg", + "response": "A street scene with a large roundabout in the background. There is a sign that says \"The Mall\" on it and another sign that says \"The Atrium Leisure Center\" on it. There are a few cars on the street and a bus is driving down the road as well. There are also two benches on the sidewalk.", + "id": 34759 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5914_jpg.rf.f745db9b9492c14e6ec0a6b2ca3115ed.jpg", - "response": "A woman standing in a computer lab with others sitting at computers.", - "id": 35799 + "image_path": "G:\\images\\combined\\0363baaba71c8396.jpg", + "response": "A page from a newsletter, likely from the department of marine and harbors.", + "id": 34760 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b591_jpg.rf.5341b616f81111418160d669c50b0d51.jpg", - "response": "a room with several cubicles with people sitting at computers.", - "id": 35800 + "image_path": "G:\\images\\combined\\0363f02db5b0ae49.jpg", + "response": "The image shows three boxes, each in a different color, and they are all open. The box on the left is red and contains a silver circle with the word \"pearl\" written on it. The box in the middle is gold and contains a gold circle with the word \"pearl\" written on it. The box on the right is grey and contains a grey circle with the word \"pearl\" written on it.", + "id": 34761 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b591_jpg.rf.982950d193199af6aba5cf11bf386be2.jpg", - "response": "A woman standing in front of a computer monitor.", - "id": 35801 + "image_path": "G:\\images\\combined\\03655bde4da6c310.jpg", + "response": "A laptop computer sitting on a wooden table.", + "id": 34762 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5928_jpg.rf.39fab45fc6f3b398db80ad898b8a1419.jpg", - "response": "The image shows a large office with many cubicles. There are several people working at computers in the cubicles. One woman is standing in front of a computer, while another woman is sitting at a desk with a computer. There are also two men sitting at desks with computers. The office has a modern look and feel, with white desks and chairs, and flat screen computers. The image is taken through a glass wall, which gives the impression of looking through a window into the office.", - "id": 35802 + "image_path": "G:\\images\\combined\\0366bc74129b4f8c.jpg", + "response": "A calculator, a pen and a quote from CEB Research on a financial statement.", + "id": 34763 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b5928_jpg.rf.6790fdc6876dfd62a764de7225f5012f.jpg", - "response": "A woman standing in a cubicle filled with computers.", - "id": 35803 + "image_path": "G:\\images\\combined\\03671bbbc7aee75d.jpg", + "response": "A white toyota innova parked on the side of the road.", + "id": 34764 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b593_jpg.rf.2120243228c6be901f5aa0d0df31030a.jpg", - "response": "A group of people working on computers in a office.", - "id": 35804 + "image_path": "G:\\images\\combined\\036745230dfcbba8.jpg", + "response": "A watch with a black band and a sign that says 0165 Hatan.", + "id": 34765 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b593_jpg.rf.d61c2a1480dac9fe36c74522437e2c2b.jpg", - "response": "A office with several cubicles where people are working on computers.", - "id": 35805 + "image_path": "G:\\images\\combined\\0367c26bb8213f97.jpg", + "response": "A cat laying in a cardboard box.", + "id": 34766 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b597_jpg.rf.ad2c69be360e1ddc8df35ae72f5965a3.jpg", - "response": "A group of people in a room with a silver ceiling.", - "id": 35806 + "image_path": "G:\\images\\combined\\0368d827bcab27d1.jpg", + "response": "The image shows a baseball field with a few people playing a game of frisbee. There are at least three people visible, with one in the foreground wearing a white shirt and black shorts, another in the background wearing a black shirt and white shorts, and a third person partially visible on the left side of the image. They are all standing on the dirt area of the field, which includes a pitcher's mound and a base.", + "id": 34767 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b597_jpg.rf.ec08b5e2e26709fbe7ef1605d55ca5a6.jpg", - "response": "A large room with cubicles where people are working on computers.", - "id": 35807 + "image_path": "G:\\images\\combined\\036b0ed016fe81dd.jpg", + "response": "A still from the show Glee of three women standing in a doorway. The woman on the left is wearing a red and white cheerleading uniform with a purple jacket over it and her hair in a high ponytail. The woman in the middle has her hair down and is wearing a purple vest over a white shirt. The woman on the right is also wearing a red and white cheerleading uniform with her hair in a bun.", + "id": 34768 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b599_jpg.rf.76820800bc44ab97bcad73e6751cd119.jpg", - "response": "A group of people sitting at desks with computers in front of them.", - "id": 35808 + "image_path": "G:\\images\\combined\\036c33a219d5a51e.jpg", + "response": "A red double decker bus driving down the street.", + "id": 34769 }, { - "image_path": "G:\\images\\combined\\07-25-2021T10034428ee52121b599_jpg.rf.7969792ae2925171b87080e0663b1983.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35809 + "image_path": "G:\\images\\combined\\036c51c7d9da780f.jpg", + "response": "A remote control sitting on a grey table.", + "id": 34770 }, { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b5912_jpg.rf.5e68907f1d31d1ee4717c78b13562acc.jpg", - "response": "A man in a yellow shirt is standing in a cubicle.", - "id": 35810 + "image_path": "G:\\images\\combined\\036ca96be461e0e9.jpg", + "response": "A red stop sign with a white border and the word \"STOP\" written in white. The sign is attached to a metal pole and is located in front of a tree.", + "id": 34771 }, { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b5912_jpg.rf.bfe0e656cc269e97ecc80d845c659352.jpg", - "response": "A man in a yellow jacket walking through a cubicle area.", - "id": 35811 + "image_path": "G:\\images\\combined\\036de4d1b84409c5.jpg", + "response": "In the image, there are several baseball players wearing blue uniforms with red and white lettering and logos. One player is wearing a blue jersey with the number 28 on the back, and the player in front of him is wearing a red and white cap with a T on it. Another player is wearing a blue and red cap with a T on it. The players are standing close to each other and appear to be having a conversation. There is a fence in the background, and the image has a slightly blurry appearance.", + "id": 34772 }, { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b599_jpg.rf.77b4d3705c846e6674e82d25fe6610c8.jpg", - "response": "A room full of people sitting at computers.", - "id": 35812 + "image_path": "G:\\images\\combined\\036f03402dbfd5d0.jpg", + "response": "A yellow school bus parked in a fenced in yard.", + "id": 34773 }, { - "image_path": "G:\\images\\combined\\07-25-2021T11034428ee52121b599_jpg.rf.97515ecdb82bf8f8e3fec51b26d66686.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35813 + "image_path": "G:\\images\\combined\\0372664e29dace21.jpg", + "response": "A person is holding a smartphone in their hand. The smartphone is a black htc phone. The phone is open and on. There is a screen with a black background and white lettering. There are two green buttons on the screen. The phone is in someone's left hand. There is a speaker in the background. It is silver and has many buttons on it.", + "id": 34774 }, { - "image_path": "G:\\images\\combined\\07-25-2021T12-03-4428ee52121b5925_jpg.rf.364fd511667c6d0f2a1ce576c12c6c49.jpg", - "response": "a office with many computers and people working on them", - "id": 35814 + "image_path": "G:\\images\\combined\\0373a3b6816bba15.jpg", + "response": "A keyboard that is missing a key and is broken in the middle.", + "id": 34775 }, { - "image_path": "G:\\images\\combined\\07-25-2021T12-03-4428ee52121b5925_jpg.rf.5266cc66be6fb272be694d184f5bb4b0.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35815 + "image_path": "G:\\images\\combined\\0373e09acea451dd.jpg", + "response": "A plastic bottle of water with a label that says studio A.", + "id": 34776 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5915_jpg.rf.30b4439abf188b4e2c3bd0bc1ae88822.jpg", - "response": "A office with many people working on computers.", - "id": 35816 + "image_path": "G:\\images\\combined\\03740a5f24942edf.jpg", + "response": "A green metal ice cream container with the words The National Trust on it.", + "id": 34777 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5915_jpg.rf.cd3cabd5a9e7c7ae66a1d23842af53bc.jpg", - "response": "The image is a view of an office space with several cubicles. There are three people visible in the image, two of which are sitting at desks and one is standing. The people appear to be working on computers. The office space is filled with cubicles and desks, and there are several chairs positioned around the room. The image has a blue tint and is sprinkled with little white dots.", - "id": 35817 + "image_path": "G:\\images\\combined\\0374fb6b8e116c17.jpg", + "response": "A cardboard box with a green label that says \"simple syrup kit\" on it.", + "id": 34778 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5917_jpg.rf.bcda48f9c2e65f329ad397e6e9c0e228.jpg", - "response": "A office with cubicles and a large poster on the wall.", - "id": 35818 + "image_path": "G:\\images\\combined\\0378362751977c0b.jpg", + "response": "In the image, a group of female softball players are on a field. There are three players from UC San Diego and one player from Cal State San Bernardino. They are dressed in their respective team uniforms, which are blue, gray, and yellow. The players are actively engaged in the game, running and sliding on the field. One of the players from UC San Diego is holding a mitt, while another player is seen in the background. The scene captures the excitement and intensity of a softball game.", + "id": 34779 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b5917_jpg.rf.f7ee3c20e3e86e37de5d164c8dee6680.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35819 + "image_path": "G:\\images\\combined\\0378cdb594c70f0c.jpg", + "response": "A stop sign mounted on a brick wall.", + "id": 34780 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b591_jpg.rf.1db018b43f9ec2be172b0b83b79e0464.jpg", - "response": "A man walking through a cubicle area with desks and computers.", - "id": 35820 + "image_path": "G:\\images\\combined\\03791062e3f6b6c5.jpg", + "response": "The exterior of Friendly's restaurant with a white picket fence and a red and white awning.", + "id": 34781 }, { - "image_path": "G:\\images\\combined\\07-25-2021T13034528ee52121b591_jpg.rf.9ef8b6ca1f839d9d9c6c0263e9a24c90.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 35821 + "image_path": "G:\\images\\combined\\0379d0a6b0d1d3f9.jpg", + "response": "The image shows a street corner with a red traffic light. There is a person standing next to a building holding a sign that reads \"Kill the Bill C-51\". Another sign that says \"stop\" is visible in the scene. There are two yellow traffic lights on the corner, one is positioned above the other. A fire escape is attached to the building and a crane can be seen in the background.", + "id": 34782 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18-03-4728ee52121b5942_jpg.rf.9b28789a9359d9449bc38458410c15bc.jpg", - "response": "A group of people working in cubicles in a large office.", - "id": 35822 + "image_path": "G:\\images\\combined\\037aaaf3346af356.jpg", + "response": "A black Sony Ericsson cell phone is sitting on a white table.", + "id": 34783 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18-03-4728ee52121b5942_jpg.rf.ea7721aa9941d1d84da7e9f06405dbb9.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35823 + "image_path": "G:\\images\\combined\\037aeea981e2df67.jpg", + "response": "A glass of red wine sits on a table.", + "id": 34784 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5925_jpg.rf.6dcd67d6b8bc841bd30509692a575a99.jpg", - "response": "A rain effect is applied to the image of two women standing in an office. They are standing back to back and are both wearing black pants. The woman on the left is wearing a red shirt and has her hair in a ponytail. The woman on the right is wearing a black shirt and has her hair down. They are both looking at a computer screen in front of them. The screen is on and they appear to be engaged in what they are looking at.", - "id": 35824 + "image_path": "G:\\images\\combined\\037b5aa9bc3026e4.jpg", + "response": "A can of Pepsi sits on a black plate next to a pile of sugar and two spoons.", + "id": 34785 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5925_jpg.rf.e2263fadb19b8f0ffe95f9b568b3f249.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35825 + "image_path": "G:\\images\\combined\\037d8560943c3379.jpg", + "response": "A collection of four watches, two of which are in silver and two of which are in black. They are on a green and brown wooden table.", + "id": 34786 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5939_jpg.rf.595225addc86ab711fe9b7b77a8b5ec0.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35826 + "image_path": "G:\\images\\combined\\037db65d7db752dd.jpg", + "response": "A busy city street with traffic lights, street signs, and pedestrians.", + "id": 34787 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5939_jpg.rf.ceed92cb63f4eb7e8e8f985e6721542e.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35827 + "image_path": "G:\\images\\combined\\037ddf0da997b5b6.jpg", + "response": "a camera with a black body and a leather covering", + "id": 34788 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5940_jpg.rf.0b6bded0f08ce648c9b5604413b9cfb0.jpg", - "response": "A group of people standing in a room with a white ceiling.", - "id": 35828 + "image_path": "G:\\images\\combined\\037f58bbe20a72b8.jpg", + "response": "A bottle of La Grande Blanche sits next to a filled glass.", + "id": 34789 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5940_jpg.rf.9a4a49d34f6b19dc6c1496a8180ebae6.jpg", - "response": "A group of people are standing in a computer lab.", - "id": 35829 + "image_path": "G:\\images\\combined\\037f897584dffd8c.jpg", + "response": "A book with a title in Italian.", + "id": 34790 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5944_jpg.rf.5beb9ea4e6e95f1d92db6f068c6cb00d.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 35830 + "image_path": "G:\\images\\combined\\03800fb13fd49418.jpg", + "response": "The image shows a table set up with various items, including two boxes of doughnuts, a coffee maker, napkins, and cups. There are also bowls and spoons on the table.", + "id": 34791 }, { - "image_path": "G:\\images\\combined\\07-25-2021T18034728ee52121b5944_jpg.rf.859f6bc1532a8efb4a8a693ed946f38a.jpg", - "response": "a group of people sitting at computers", - "id": 35831 + "image_path": "G:\\images\\combined\\038021f7499f67a7.jpg", + "response": " A man(336,273),(714,802) sitting on a bridge", + "id": 34792 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b5923_jpg.rf.27d40ebc262a3eabf5231e9eaa0fdf0c.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35832 + "image_path": "G:\\images\\combined\\038044cace2a65e9.jpg", + "response": "A double decker trolley bus on a street next to a sidewalk.", + "id": 34793 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b5923_jpg.rf.b9d314d60013ddbc174d75eea920800b.jpg", - "response": "A group of people are in a room with a white ceiling. They are all looking at computers. There are two rows of computers. The first row has three computers. The second row has two computers.", - "id": 35833 + "image_path": "G:\\images\\combined\\0380f44cccbadc1c.jpg", + "response": "A vintage photograph of a busy intersection with traffic, including a green and white bus, and cars. There is a Standard Oil gas station visible in the scene.", + "id": 34794 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b593_jpg.rf.a18dd9d5ca43f1f6cac5807ed7ecd33f.jpg", - "response": "The image shows a group of people in a computer lab. There are several chairs and desks, as well as multiple desktop computers arranged along the walls. The people in the room are standing and interacting with the computers, and some are also carrying backpacks. The lab has a door that is slightly open, and there is a clock on the wall. The room is filled with people, creating a lively and busy atmosphere.", - "id": 35834 + "image_path": "G:\\images\\combined\\038188a838752d68.jpg", + "response": "A blackberry phone with a black keyboard. The phone has a trackball as the main navigation control. The keyboard has 19 keys, including 10 function keys, 4 shift keys, 4 space keys, 2 sym keys, and 1 night key. There are also 2 alt keys, one on the left and one on the right. The shift key is located between the alt keys. The space key is located between the sym keys. The symbol key is located to the right of the space key.", + "id": 34795 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b593_jpg.rf.bf8c604d6b652e03f6577f3022c35caa.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35835 + "image_path": "G:\\images\\combined\\03834fe53189e700.jpg", + "response": "a person holding a coffee cup up to their mouth", + "id": 34796 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b594_jpg.rf.7ee163b79d8bbdb3055f94b2ddc09c4a.jpg", - "response": "A group of people in a room with computers.", - "id": 35836 + "image_path": "G:\\images\\combined\\038441a9b64ad54c.jpg", + "response": "Mr. Hero The New Age Man comic book #4, June 1995, $1.95 U.S. price, The new age man is a cyborg", + "id": 34797 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19-03-4828ee52121b594_jpg.rf.e9bca0d5ef8e0382725ec991cb793dbc.jpg", - "response": "A group of people playing video games on computer screens.", - "id": 35837 + "image_path": "G:\\images\\combined\\03856ed1f1229d4e.jpg", + "response": "A spoon full of ground mustard next to a cup of liquid mustard and a pile of whole mustard seeds.", + "id": 34798 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b592_jpg.rf.5e7187085a6176f5dcbe5b2c13a4252f.jpg", - "response": "A group of people standing and sitting in a computer lab.", - "id": 35838 + "image_path": "G:\\images\\combined\\038629b289374d3f.jpg", + "response": "An old photo of a town with a large US Army truck in the foreground. The town has many buildings and people walking around. There are also many cars and bicycles in the scene.", + "id": 34799 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b592_jpg.rf.fe6c627aaf08088f514081dcfb715992.jpg", - "response": "A group of people standing in a room with a large poster on the wall.", - "id": 35839 + "image_path": "G:\\images\\combined\\03863b90394ece66.jpg", + "response": "A city street with buildings and signs.", + "id": 34800 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b5934_jpg.rf.102f6058944521608fb4a5460b80372f.jpg", - "response": "The image shows a large office with rows of computer stations. There are several people working at the stations, which are equipped with desktop computers, keyboards, and mice. The office has a modern look and feel, with gray desks and chairs, and white walls. The room is well lit, with several lights on the ceiling providing illumination.", - "id": 35840 + "image_path": "G:\\images\\combined\\038789965a8f7606.jpg", + "response": "A bus is parked on the side of the street.", + "id": 34801 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b5934_jpg.rf.d0de7ffb33e754b47061e91d1bc40486.jpg", - "response": "A girl walking through a cubicle area with people working on computers.", - "id": 35841 + "image_path": "G:\\images\\combined\\038864ebc2725553.jpg", + "response": "A group of six people standing on a softball field.", + "id": 34802 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b596_jpg.rf.257537c6cedd83f9abf9d7e504c7f2cf.jpg", - "response": "A group of people standing in a cubicle with desks and computers.", - "id": 35842 + "image_path": "G:\\images\\combined\\0389568d5377e14e.jpg", + "response": "a person holding a smartphone in their hand", + "id": 34803 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b596_jpg.rf.51a381d760f4d8d43b61ed7dbe80f6f1.jpg", - "response": "A room full of people sitting in front of computers.", - "id": 35843 + "image_path": "G:\\images\\combined\\038a21a5a1a6972e.jpg", + "response": "A double decker bus is parked on the side of the road.", + "id": 34804 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b599_jpg.rf.a65f7d75778649cec8ee8c8bd310248b.jpg", - "response": "A man in a pink shirt is walking through a computer lab.", - "id": 35844 + "image_path": "G:\\images\\combined\\038a2f74d535a2a7.jpg", + "response": "A bottle of Leffe Brown beer sitting on a wooden table in front of a brick wall.", + "id": 34805 }, { - "image_path": "G:\\images\\combined\\07-25-2021T19034828ee52121b599_jpg.rf.f9d80961ac24f017f34d1b5d2bf28fb6.jpg", - "response": "The image shows a large office with multiple people working at computers. There are several screens visible, as well as keyboards and mice. The office has a modern look, with glass walls and white desks. The people in the office are sitting and standing, and some are talking to each other. One person is wearing a pink shirt and has a handbag. The office also has a TV mounted on the wall.", - "id": 35845 + "image_path": "G:\\images\\combined\\038c8f14559fa56c.jpg", + "response": "A man standing next to a white and blue ice cream truck.", + "id": 34806 }, { - "image_path": "G:\\images\\combined\\07-25-2021T20-03-4828ee52121b598_jpg.rf.4e232dc5ee48915e79e9f08a48e81f8a.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35846 + "image_path": "G:\\images\\combined\\038dc16c44629f3c.jpg", + "response": "A close up of a train wheel with the word Agenoria on it.", + "id": 34807 }, { - "image_path": "G:\\images\\combined\\07-25-2021T20-03-4828ee52121b598_jpg.rf.d498736d3f8d67d7e2c313cddc8013c5.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 35847 + "image_path": "G:\\images\\combined\\038ec33c3856b912.jpg", + "response": "A bottle of red wine is on display. The bottle is wrapped in a red ribbon. The wine bottle has a white label with black text. The label has a picture of a feather. The wine bottle is on a black shelf.", + "id": 34808 }, { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b591_jpg.rf.7efdad84796882da2c588768f2a76f38.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35848 + "image_path": "G:\\images\\combined\\03906c94622593f8.jpg", + "response": "A gold coin with Chinese symbols on it.", + "id": 34809 }, { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b591_jpg.rf.8acec40b02e72713a8823dd1f4d8e7b0.jpg", - "response": "A computer lab with multiple people working on computers. There is a woman wearing a pink shirt and a mask standing in the center of the room. She is holding a cell phone up to her ear. To her left, there is a woman in a pink shirt sitting in front of a computer. In front of her, there is a person in a black shirt sitting in front of a computer. To the right, there are two people in pink shirts sitting in front of computers. The room has multiple mirrors on the walls and a white ceiling with sprinkles of water droplets on the camera lens.", - "id": 35849 + "image_path": "G:\\images\\combined\\0392f98034ba927e.jpg", + "response": "A man sitting at a white table with a white keyboard in front of him. The man is looking at a computer screen with a website open. On the table is also a cell phone and a book.", + "id": 34810 }, { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b597_jpg.rf.1c407b8b56398922b71e51e734f11728.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 35850 + "image_path": "G:\\images\\combined\\039330e303428a01.jpg", + "response": "A book cover with a space scene depicting a spaceship in orbit around a planet.", + "id": 34811 }, { - "image_path": "G:\\images\\combined\\07-25-2021T22034928ee52121b597_jpg.rf.99d886f2280826c5394977a18b5292b1.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 35851 + "image_path": "G:\\images\\combined\\0393c9d77b8215a3.jpg", + "response": "A grey model fighter jet on a wooden table.", + "id": 34812 }, { - "image_path": "G:\\images\\combined\\07-26-2021T06-03-5528ee52121b5941_jpg.rf.8065dd05abf6b554432704571bbcf238.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35852 + "image_path": "G:\\images\\combined\\0394933dcd965048.jpg", + "response": "The image is a black and white photo of a train station. In the foreground, there is a little boy holding the hand of an older woman. The woman is wearing a white jacket and a white hat. She is also wearing a white shirt and holding a black purse. The little boy is wearing a white jacket and black pants. He is also holding a walking stick. In the background, there is a train.", + "id": 34813 }, { - "image_path": "G:\\images\\combined\\07-26-2021T06-03-5528ee52121b5941_jpg.rf.a8a6b00abc00319c91f1e61c0f23bbfe.jpg", - "response": "a group of people sitting at desks working on computers", - "id": 35853 + "image_path": "G:\\images\\combined\\03959cf11d7df027.jpg", + "response": "A white car with blue and white license plate is parked in a parking lot.", + "id": 34814 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07-03-5628ee52121b591_jpg.rf.7136d8e62dc5bb532da4fa3ed81683e5.jpg", - "response": "a group of people standing in a room with computers and monitors", - "id": 35854 + "image_path": "G:\\images\\combined\\03962c7e05426227.jpg", + "response": "A man sitting at a table with a glass of beer in front of him.", + "id": 34815 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07-03-5628ee52121b591_jpg.rf.d27ade6e66484f4f6d86011f5623c849.jpg", - "response": "A group of people are standing around a computer lab. There are three monitors on the left side of the room and two more on the right side. The people are standing in front of the computers and behind them. Some of them are sitting on a counter.", - "id": 35855 + "image_path": "G:\\images\\combined\\0396372a872294c2.jpg", + "response": "A red and white bus is driving down the street.", + "id": 34816 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b592_jpg.rf.43e9a843b277fdb32cdd6cc630b3e2e1.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 35856 + "image_path": "G:\\images\\combined\\039754640f34912b.jpg", + "response": "A brown and white van with a decal on the window that says \"Riding in Style Van Club\".", + "id": 34817 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b592_jpg.rf.cd93d6e5ce4a15578566d8a0e5cee949.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35857 + "image_path": "G:\\images\\combined\\03982ceb4b545f32.jpg", + "response": "The image shows two blue remote controls laying on a white surface. The remotes have buttons labeled A, B, and C on one side, and buttons labeled 1, 2, 3, +, - and 0 on the other side.", + "id": 34818 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b593_jpg.rf.32c856831c90868a45b3bd59bde746ad.jpg", - "response": "a group of people sitting in front of computers", - "id": 35858 + "image_path": "G:\\images\\combined\\039832d67de29788.jpg", + "response": "A row of parked ambulances on the side of the road.", + "id": 34819 }, { - "image_path": "G:\\images\\combined\\07-26-2021T07035628ee52121b593_jpg.rf.6eb4e47bea94d3c629352ba42272c152.jpg", - "response": "A group of people are standing in a room.", - "id": 35859 + "image_path": "G:\\images\\combined\\03991603677ee84d.jpg", + "response": "A pink recycling bin on a sidewalk.", + "id": 34820 }, { - "image_path": "G:\\images\\combined\\07-26-2021T08-03-5628ee52121b5919_jpg.rf.e87cf02ea08d025ae8c0beb7d38806a4.jpg", - "response": "A group of people are working at computers in a cubicle.", - "id": 35860 + "image_path": "G:\\images\\combined\\039a55183ba52549.jpg", + "response": "A group of baseball players on a field.", + "id": 34821 }, { - "image_path": "G:\\images\\combined\\07-26-2021T08-03-5628ee52121b5919_jpg.rf.f57be06b11ef9811adb0dcd6d1529be3.jpg", - "response": "A group of people standing in a computer lab.", - "id": 35861 + "image_path": "G:\\images\\combined\\039a9167c8a2ac3f.jpg", + "response": "A BMW X5 with the plate GKL1845 is on a dusty road.", + "id": 34822 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b5913_jpg.rf.053823429659c92e1288bd9e6b09c52b.jpg", - "response": "A woman standing in a room with many people sitting at desks with computers.", - "id": 35862 + "image_path": "G:\\images\\combined\\039da94c7b4a3104.jpg", + "response": "A sign that says Viking Court and lists the hours and logos of the food options.", + "id": 34823 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b5913_jpg.rf.f0d905ad0b772b126a62fdc47b09bf62.jpg", - "response": "a group of people working on computers", - "id": 35863 + "image_path": "G:\\images\\combined\\039dd0ed14106d32.jpg", + "response": "A silver coin is next to a copper bar.", + "id": 34824 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b595_jpg.rf.6354ee0f80c2ef83f93798c7e6145e8f.jpg", - "response": "A large office space with many people working on computers.", - "id": 35864 + "image_path": "G:\\images\\combined\\039e84b999400482.jpg", + "response": "a orange road work ahead sign on a street", + "id": 34825 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12-03-5828ee52121b595_jpg.rf.eacaace40ab0f7b2e4889d835a64676d.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 35865 + "image_path": "G:\\images\\combined\\039f33b5834a956b.jpg", + "response": "A table with seven cans of beer on it.", + "id": 34826 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5940_jpg.rf.1d1d477cb4d246f3a656120140be9abc.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35866 + "image_path": "G:\\images\\combined\\039fce4cdc594316.jpg", + "response": "A table with two bottles of Innocent brand smoothie.", + "id": 34827 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5940_jpg.rf.81f0d3d0dd83b4472b607630447296a1.jpg", - "response": "A group of people sitting in front of computers.", - "id": 35867 + "image_path": "G:\\images\\combined\\03a037ee6c32399c.jpg", + "response": "A train on a track near a house.", + "id": 34828 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5942_jpg.rf.394bbed5b60f95d7bd4642b928900fb5.jpg", - "response": "a man wearing a blue shirt and a mask", - "id": 35868 + "image_path": "G:\\images\\combined\\03a03f6692cb4d0b.jpg", + "response": "A man wearing a boxing glove drinks from a can of Boxer.", + "id": 34829 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b5942_jpg.rf.ca9b61d5fc1257caaa2ba6442a767d28.jpg", - "response": "a man in a blue shirt standing in a cubicle", - "id": 35869 + "image_path": "G:\\images\\combined\\03a1e7cf965c52c3.jpg", + "response": "A television with a screen that says \"Classic Sinatra\" on the top.", + "id": 34830 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b597_jpg.rf.82ce5bec99be2b7987dcd7762b18ce06.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35870 + "image_path": "G:\\images\\combined\\03a27395be344ab4.jpg", + "response": "A large sign for Redrow, a housing developer, advertising a new home opening soon.", + "id": 34831 }, { - "image_path": "G:\\images\\combined\\07-26-2021T12035828ee52121b597_jpg.rf.a92356104d1cf2b7db2207c92503f3d6.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35871 + "image_path": "G:\\images\\combined\\03a2e09ed8c9a4fc.jpg", + "response": "A display case full of candy and snacks.", + "id": 34832 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b5941_jpg.rf.035f138ebf132183af32e766c05cc1ad.jpg", - "response": "A room with a row of desks with people sitting at them. Each desk has a computer on it. There is a large poster on the wall in the middle of the room. The walls are covered in mirrors. The ceiling is white with a light in the center.", - "id": 35872 + "image_path": "G:\\images\\combined\\03a3ae31fcba44c3.jpg", + "response": "A can of soda with a straw in it sitting on the sand.", + "id": 34833 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b5941_jpg.rf.9185feb5b67c10ccf512a843f2c0c589.jpg", - "response": "A group of people working on computers in cubicles.", - "id": 35873 + "image_path": "G:\\images\\combined\\03a3cbd0b9772d44.jpg", + "response": "A red and silver jet2 airplane is on a runway.", + "id": 34834 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b594_jpg.rf.503b9452c9f86503406b8140442c3a8b.jpg", - "response": "A room full of people sitting at computers.", - "id": 35874 + "image_path": "G:\\images\\combined\\03a4ce7908b524f6.jpg", + "response": "A group of people are standing in a kitchen. A woman is hugging another woman while a man is holding a plate of food. There is a microwave and an oven in the background.", + "id": 34835 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b594_jpg.rf.72c05eee053d7c6e7371e546e3f06235.jpg", - "response": "A group of people are working on computers in a cubicle farm. The cubicles are made of clear glass and are located in a grey room. There are three people in the cubicles, each sitting at a desk with a computer. The people are wearing dark clothing. The room has a white ceiling and grey walls. There are two keyboards on the desks, one in front of each person. There are also two computer mice on the desks, one to the right of each keyboard. A TV is mounted on the wall behind each person. The image is displayed on the screens of the computers.", - "id": 35875 + "image_path": "G:\\images\\combined\\03a514f0ec49375a.jpg", + "response": "A Nuwave oven sitting on a white sheet.", + "id": 34836 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b595_jpg.rf.73206b5f563faa782e3bf06c9514d7c2.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 35876 + "image_path": "G:\\images\\combined\\03a568bf2eddea1d.jpg", + "response": "A hand holding a blue can of Royal Castle Pilsner beer.", + "id": 34837 }, { - "image_path": "G:\\images\\combined\\07-26-2021T13035928ee52121b595_jpg.rf.7f99715510f87e210077e7ac55822792.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35877 + "image_path": "G:\\images\\combined\\03a5d50547d613c7.jpg", + "response": "A white Subaru Forester with a blue and white license plate that says SLOW.", + "id": 34838 }, { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b592_jpg.rf.3d08621601e3fb962370d4170fab1b7a.jpg", - "response": "A large office with cubicles and computers.", - "id": 35878 + "image_path": "G:\\images\\combined\\03a7c3a85a7771e0.jpg", + "response": "a silver and white watch on a blue surface", + "id": 34839 }, { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b592_jpg.rf.7563fe0478710a7017b3742310a0f400.jpg", - "response": "A room with several cubicles where people are working. There are two people working at desks on computers. The cubicles are made of glass and separated by dividers. The room has a grey carpet and a white ceiling with air conditioning. There are also two chairs in the room.", - "id": 35879 + "image_path": "G:\\images\\combined\\03a8d358bf558902.jpg", + "response": "A poster with three women smiling and a bottle of Biotonico.", + "id": 34840 }, { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b595_jpg.rf.13cd6916dab521cd4055a82799d08d6d.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 35880 + "image_path": "G:\\images\\combined\\03a91afb212d9a3b.jpg", + "response": "A toaster oven on a kitchen counter surrounded by various items such as a bag of Doritos, a bowl of dip, a banana, and a knife. There are also several plates and a cup on the counter.", + "id": 34841 }, { - "image_path": "G:\\images\\combined\\07-26-2021T14035928ee52121b595_jpg.rf.b7f492ad461350717af15eb619d34964.jpg", - "response": "The image is a rain-streaked window looking into an office area. There are four people working in the office.", - "id": 35881 + "image_path": "G:\\images\\combined\\03a91f3fb7cdc67c.jpg", + "response": "A man sleeping on the ground outside a Chinese shop.", + "id": 34842 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17-04-0028ee52121b5946_jpg.rf.478b8d5b8097813878da7e67a3e2a893.jpg", - "response": "A group of people working on computers in a room.", - "id": 35882 + "image_path": "G:\\images\\combined\\03a939145c5c1362.jpg", + "response": "A poster with a woman holding an hourglass.", + "id": 34843 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17-04-0028ee52121b5946_jpg.rf.487a0c37da4f8e88d6457cb26f93f407.jpg", - "response": "The image shows a large office with a wall of computer workstations. There are several people working at the stations, which are equipped with desktop computers, keyboards, and mice. The office has a modern look and feel, with glass partitions and white desks. The room is well lit, with several lights on the ceiling.", - "id": 35883 + "image_path": "G:\\images\\combined\\03aa05be4ff05ba6.jpg", + "response": "A long table is filled with many different kinds of wine bottles.", + "id": 34844 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5910_jpg.rf.6c95f08c127c4911180df80409d60182.jpg", - "response": "A group of people are sitting in front of computers.", - "id": 35884 + "image_path": "G:\\images\\combined\\03aa34117573804b.jpg", + "response": "A silver penny of Henry III, minted in London between 1258 and 1264. The obverse has a cross pattee, and the reverse has a shield with a lion and a dragon.", + "id": 34845 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5910_jpg.rf.89f86941dc7f991edac3e0931db2bf0f.jpg", - "response": "A group of people sitting in front of computers in a small room.", - "id": 35885 + "image_path": "G:\\images\\combined\\03af12f9ba86896c.jpg", + "response": "The image is split in half with two phones side by side. The phone on the left is an iPhone and the phone on the right is an Android phone.", + "id": 34846 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5913_jpg.rf.2fe3e7a1d102ab172fe99204ac5043c0.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35886 + "image_path": "G:\\images\\combined\\03af1855cadc876c.jpg", + "response": "A wall with the words \"Let's Adore and Endure Each Other\" written on it.", + "id": 34847 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5913_jpg.rf.d1dfc92f58f8479232b103128ca849aa.jpg", - "response": "The image is a glass wall looking into an office area. The glass is covered in many small black dots. In the office area, there are two people sitting at desks. The person on the left is sitting at a desk with a computer in front of them. They are wearing a black shirt and grey pants. The person on the right is sitting at a desk with a computer in front of them as well. They are wearing a black shirt and blue pants.", - "id": 35887 + "image_path": "G:\\images\\combined\\03b0e895ecf74cfd.jpg", + "response": "A close up of a silver coin with the statue of liberty on it.", + "id": 34848 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5914_jpg.rf.a04565ee162779c754f201710058d537.jpg", - "response": "A group of people are standing and sitting around a room full of computers.", - "id": 35888 + "image_path": "G:\\images\\combined\\03b10f45eb118bd5.jpg", + "response": "A collection of items that are typically carried in a pocket.", + "id": 34849 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5914_jpg.rf.dfcdad125e820076bbab6ee4f460fdd6.jpg", - "response": "A group of people standing in a room in front of computers.", - "id": 35889 + "image_path": "G:\\images\\combined\\03b11fe3fb428ae4.jpg", + "response": "A Thai Airways plane is taking off from the runway.", + "id": 34850 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5916_jpg.rf.1e06088feeb46653bb61b13fdfd5ea65.jpg", - "response": "A woman standing in a room with multiple computer monitors.", - "id": 35890 + "image_path": "G:\\images\\combined\\03b2cd2fc8ebacac.jpg", + "response": "A red, white and black bus is parked in a parking lot.", + "id": 34851 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5916_jpg.rf.2428803278fd832be81a31c77e5988df.jpg", - "response": "a group of people standing in front of a wall of monitors", - "id": 35891 + "image_path": "G:\\images\\combined\\03b2dbb7dff0e32d.jpg", + "response": "A bottle of Chateau Garraud 2004 sits on a wooden table. The bottle is dark and has a red and white label. The top of the bottle is red and the bottom is dark. The label has a red Chateau Garraud logo in the middle. The label is white with a red stripe on the top and a red stripe on the bottom. The words Chateau Garraud are in red on the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label. The words Chateau Garraud are also in red on the top of the bottle. The words Chateau Garraud are also in red on the bottom of the bottle. The words Chateau Garraud are also in red on the top of the label. The words Chateau Garraud are also in red on the bottom of the label.", + "id": 34852 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5919_jpg.rf.1a38e260996efb4ab4c33d942cd4de60.jpg", - "response": "A view through a window into a room full of computers. There are three people sitting at computers in the room. The room has a grey floor and white ceiling. The wall is made of windows.", - "id": 35892 + "image_path": "G:\\images\\combined\\03b33189e67c3fb2.jpg", + "response": "A bottle of Skilde next to a cup of coffee on a table.", + "id": 34853 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5919_jpg.rf.d32049ab09cef4069fdbf9971442ce18.jpg", - "response": "The image shows a computer lab with several people working on computers. There are three people sitting at desks working on computers, and two other people standing near computers. The computers are arranged in a line along the wall and on individual desks. The lab has a modern look with glass walls and silver computer equipment. The lighting is bright and the room is clean and well-organized.", - "id": 35893 + "image_path": "G:\\images\\combined\\03b3ef17d4fbf990.jpg", + "response": "a notebook with a sign that says make trade fair", + "id": 34854 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5925_jpg.rf.41e6fbec9ce46f05adfb006ba0d1811d.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35894 + "image_path": "G:\\images\\combined\\03b632ee8d15cbae.jpg", + "response": "In the image there is a balance with two cellphones on it. The left one is black and has a Q on it. The right one is white and has GFive and Haptic Plus A77 on it. The scale is gold and the background is white.", + "id": 34855 }, { - "image_path": "G:\\images\\combined\\07-26-2021T17040028ee52121b5925_jpg.rf.d860882212ca7da32f32633a67cbbe3f.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 35895 + "image_path": "G:\\images\\combined\\03b686595d19114f.jpg", + "response": "A police officer in a yellow jacket writing a ticket.", + "id": 34856 }, { - "image_path": "G:\\images\\combined\\07-26-2021T18-04-0128ee52121b5938_jpg.rf.852c66955dbaa60d87e7a69bfcdb482e.jpg", - "response": "A group of people are in a computer lab.", - "id": 35896 + "image_path": "G:\\images\\combined\\03b6e18f11b24763.jpg", + "response": "a book with a page that has some writing on it", + "id": 34857 }, { - "image_path": "G:\\images\\combined\\07-26-2021T18-04-0128ee52121b5938_jpg.rf.d3c42667f66676c3b720d72213f588bc.jpg", - "response": "A group of people are working on computers in a cubicle farm.", - "id": 35897 + "image_path": "G:\\images\\combined\\03b7d59319084f2e.jpg", + "response": "A watch with a band made of interwoven blue and green rubber bands.", + "id": 34858 }, { - "image_path": "G:\\images\\combined\\07-26-2021T19-04-0128ee52121b5915_jpg.rf.dfcb85fc115381bae3863f5a93d5146e.jpg", - "response": "The image is a group of people working in cubicles in a office. There are three people in the image, two of which are women and one is a man. They are all wearing blue shirts. The cubicles are made of glass and have a television on in front of each person. The television screens are on. There is a keyboard and a mouse on the desk in front of each person. The office has a blue color scheme and the image is shot through a rain-streaked window.", - "id": 35898 + "image_path": "G:\\images\\combined\\03b92d00a3433780.jpg", + "response": "A soccer field with people on it at night.", + "id": 34859 }, { - "image_path": "G:\\images\\combined\\07-26-2021T19-04-0128ee52121b5915_jpg.rf.f231cb8031fd8862ae819906efb0a7a4.jpg", - "response": "The image is a room filled with people working on computers. There are several people sitting at desks, with some of them wearing face masks. The room has a mirrored wall, and there are also several monitors on the desks. The people in the room are wearing blue tops.", - "id": 35899 + "image_path": "G:\\images\\combined\\03b9382e1284256d.jpg", + "response": "A magazine spread about Def Leppard, a band with two members.", + "id": 34860 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b594_jpg.rf.9cd488a5888ca2d61277be76e61d65a7.jpg", - "response": "The image shows a busy office with several people working at computers. There are at least ten people in the office, some sitting at desks and some standing. There are at least five computer monitors visible in the scene, along with keyboards and other office equipment. The office has a modern look and feel, with white walls and tiled flooring. The people in the office are diverse, with individuals of different ages and ethnicities. The office appears to be a call center or some type of customer service center.", - "id": 35900 + "image_path": "G:\\images\\combined\\03b9b929f76a5e56.jpg", + "response": "An orange sign that says \"Men at Work\" is attached to a metal bar.", + "id": 34861 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b594_jpg.rf.f63e0d7a9b6e5ea40170d736d500e0e8.jpg", - "response": "A group of people are standing in a computer lab.", - "id": 35901 + "image_path": "G:\\images\\combined\\03bbf08d4273fd4c.jpg", + "response": "A hand holding a collection of shells and wearing a pair of nails with a design of gold squiggles on a maroon background.", + "id": 34862 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b595_jpg.rf.64335f58b002a824fce9ac2583e05322.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 35902 + "image_path": "G:\\images\\combined\\03bdc9baf89c03f7.jpg", + "response": "A store front with a chalkboard sign outside.", + "id": 34863 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20-04-0128ee52121b595_jpg.rf.ce19923a811a2f3e9dba26158a7b2d31.jpg", - "response": "A group of people in a room with computers.", - "id": 35903 + "image_path": "G:\\images\\combined\\03bdd70c26ef6e85.jpg", + "response": "a group of people standing outside", + "id": 34864 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5922_jpg.rf.2236be61667b65675ce3b5ebafafc7b8.jpg", - "response": "A group of people working on computers in a lab.", - "id": 35904 + "image_path": "G:\\images\\combined\\03beecd7a9676cc2.jpg", + "response": "An airplane is on the runway at the airport.", + "id": 34865 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5922_jpg.rf.fe90ca2c36c7012b801240a110028490.jpg", - "response": "a group of people sitting at desks", - "id": 35905 + "image_path": "G:\\images\\combined\\03bf842c0679a0c2.jpg", + "response": "A bottle of Polo Sport Ralph Lauren cologne is shown in a blue light. The bottle is dark blue and has a silver cap. The words \"POLO Sport\" are displayed on the bottle in white text. The letters \"RL\" are also displayed on the bottle in white text. There is an American flag displayed on the bottle in white and blue.", + "id": 34866 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5927_jpg.rf.101a39be5eab37108953ff25511172ff.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35906 + "image_path": "G:\\images\\combined\\03c02d14bdf41096.jpg", + "response": "The image shows a baseball team posing for a group photo.", + "id": 34867 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5927_jpg.rf.b5f7b718df8fc4c77ff70fc858a028ea.jpg", - "response": "a rain covered window looking into a cubicle with two people working on computers", - "id": 35907 + "image_path": "G:\\images\\combined\\03c0b985ec7277f6.jpg", + "response": "In the image there is a wrist watch with a black dial and white hands. The watch has a silver case and is surrounded by many diamonds. The watch has a reflection on the table below it.", + "id": 34868 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5945_jpg.rf.45ab5d0b12f265a4896b300c614d4cff.jpg", - "response": "a group of people in a cubicle area", - "id": 35908 + "image_path": "G:\\images\\combined\\03c0f0166b173fd1.jpg", + "response": "A person is holding a cell phone in their hand. The phone is black and is on display. There are multiple other cell phones on display in the background. Some of these phones are also black. One of the phones is on a table and another is on a stand. A person's hand is visible holding the phone.", + "id": 34869 }, { - "image_path": "G:\\images\\combined\\07-26-2021T20040128ee52121b5945_jpg.rf.8d4a452987be744c4dfd9f0f0178bef7.jpg", - "response": "The image shows a group of people in a large office with desks and computers. There are four people at desks working on computers, one person standing to the left of a woman, and another person standing behind the woman. The office has a row of desks with computers on them and a wall of mirrors. The image is taken through a window with white dots on it.", - "id": 35909 + "image_path": "G:\\images\\combined\\03c18911e05c1417.jpg", + "response": "A white car parked next to a black car in a driveway.", + "id": 34870 }, { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5912_jpg.rf.60919c2faa7116688dc7fbce295fe282.jpg", - "response": "A group of people working in a room with a wall of screens.", - "id": 35910 + "image_path": "G:\\images\\combined\\03c1ae72a9b0b54b.jpg", + "response": "A red double decker bus is driving down a street.", + "id": 34871 }, { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5912_jpg.rf.d1cce6de2fdd3f26543f28d744e130f5.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35911 + "image_path": "G:\\images\\combined\\03c1f7f42d34695d.jpg", + "response": "A man in a top hat and a man in a white shirt are standing on a street corner.", + "id": 34872 }, { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5916_jpg.rf.155697710a8084e8bf135c234fe4075e.jpg", - "response": "A woman standing in a room with a bunch of mirrors on the wall.", - "id": 35912 + "image_path": "G:\\images\\combined\\03c58ee687f2c893.jpg", + "response": "A blue and yellow can of Harem's coffee on a shelf.", + "id": 34873 }, { - "image_path": "G:\\images\\combined\\07-26-2021T21040228ee52121b5916_jpg.rf.e341966eed7ffdcd87335c0b3d9b543c.jpg", - "response": "A woman in a blue shirt is standing in front of a mirror.", - "id": 35913 + "image_path": "G:\\images\\combined\\03c60436adf2edc0.jpg", + "response": "A red and white bus is driving down the street.", + "id": 34874 }, { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5940_jpg.rf.332e02f5f32851cec16f981429cab8f6.jpg", - "response": "a group of people sitting at desks in front of computers", - "id": 35914 + "image_path": "G:\\images\\combined\\03c879ba6da8f33f.jpg", + "response": "A baseball stadium with a large field and many people watching the game.", + "id": 34875 }, { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5940_jpg.rf.722b5ee2c2b3d7f49acb43ec7ae6698d.jpg", - "response": "A man walking through a work place with cubicles.", - "id": 35915 + "image_path": "G:\\images\\combined\\03c88ebe3ddda513.jpg", + "response": "A close up of a laptop keyboard with the keys in black and white.", + "id": 34876 }, { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5945_jpg.rf.58203935c4523b56cf1fdfa0f65c9261.jpg", - "response": "A group of people are sitting in an office. There are two people on the left and three people on the right. They are all wearing ties. In front of them is a table with a computer on it. There is a keyboard and a mouse in front of the computer. On the wall behind the people is a poster. The office has a window that looks out into another room. The ceiling is white and has a panel in the middle. The floor is grey.", - "id": 35916 + "image_path": "G:\\images\\combined\\03c89ec516ce7287.jpg", + "response": "A white van with blue stripes and the letters AT&T on the side.", + "id": 34877 }, { - "image_path": "G:\\images\\combined\\07-27-2021T06040828ee52121b5945_jpg.rf.d1a64bacf500961ec54f57a697c308f1.jpg", - "response": "The image is a view of an office area with a white ceiling. There are multiple people in the office working on computers. There are three people sitting at desks on the left side of the room and two people standing in the office on the right side. There are two TVs mounted on the wall in the office. One is on the left side and the other is on the right side of the room.", - "id": 35917 + "image_path": "G:\\images\\combined\\03c9a67203d4c3d3.jpg", + "response": "A soccer player wearing a blue uniform with the number 10 on the front.", + "id": 34878 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b5916_jpg.rf.057fc02dc10bd3c88623e948caccff15.jpg", - "response": "A office with cubicles and workers at computers.", - "id": 35918 + "image_path": "G:\\images\\combined\\03caac31986a9877.jpg", + "response": "A red can of Coca Cola sits on a wooden table.", + "id": 34879 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b5916_jpg.rf.b3a60475087f3dc39c86d70d0c73f738.jpg", - "response": "a office with cubicles and a large picture on the wall", - "id": 35919 + "image_path": "G:\\images\\combined\\03cb96045c9ee90e.jpg", + "response": "A street scene with a crosswalk and traffic lights. There is a building on the corner and a blue and white street sign above the crosswalk. There are three traffic lights hanging from a wire and a row of three traffic lights on a pole.", + "id": 34880 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b591_jpg.rf.c7f0f1f4c17712948a343a19b14f70e3.jpg", - "response": "A group of people standing in a room with a pink backpack and a blue jacket.", - "id": 35920 + "image_path": "G:\\images\\combined\\03cc01bb5d315b9f.jpg", + "response": "a yellow sign (446,156),(732,478)", + "id": 34881 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b591_jpg.rf.fc122ebccaf795eb1115dfeb3c6e2899.jpg", - "response": "A blurry image of a room with a person sitting on a chair. The room has a white ceiling and walls and appears to be made of glass. There are two other people in the room, one standing to the right of the person sitting and another standing to the right of the person in the chair.", - "id": 35921 + "image_path": "G:\\images\\combined\\03ccab81d456b73f.jpg", + "response": "A large flat screen TV sitting on a TV stand.", + "id": 34882 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b598_jpg.rf.0d67a5c7e04cc966be746caf36c25182.jpg", - "response": "a blurry photo of a room with a row of cubicles", - "id": 35922 + "image_path": "G:\\images\\combined\\03cd4987c51f2db9.jpg", + "response": "An image of a clock with several people walking around it.", + "id": 34883 }, { - "image_path": "G:\\images\\combined\\07-27-2021T07-04-0828ee52121b598_jpg.rf.e7864fd386823ad257a169c4cdfaa6e3.jpg", - "response": "a group of people sitting in front of computers", - "id": 35923 + "image_path": "G:\\images\\combined\\03ce438563e99922.jpg", + "response": "A person is holding a can of Kirin lager beer in an airport waiting area. The area has several red chairs and a TV mounted on the wall.", + "id": 34884 }, { - "image_path": "G:\\images\\combined\\07-27-2021T09040928ee52121b5920_jpg.rf.4a8fefc369e3184bbe0a38b9af93af6e.jpg", - "response": "A woman in a blue shirt is standing in a room with a row of cubicles. There are several people working at computers in the cubicles. The room has a row of mirrors on the wall and a poster on the wall behind the woman. The room has a gray floor and gray walls.", - "id": 35924 + "image_path": "G:\\images\\combined\\03ce7772b1c4ec3b.jpg", + "response": "A woman wearing glasses looking at a book on a shelf.", + "id": 34885 }, { - "image_path": "G:\\images\\combined\\07-27-2021T09040928ee52121b5920_jpg.rf.ffce72c4b6962649aa727bc709d80e2e.jpg", - "response": "A room filled with people working on computers.", - "id": 35925 + "image_path": "G:\\images\\combined\\03ced1a06a5b0d1d.jpg", + "response": "The image is the cover of the children's book Mr. Popper's Penguins. The book is written by Richard and Florence Atwater and illustrated by Robert Lawson. The cover features an illustration of a man standing in front of a large group of penguins. The man is wearing a suit and a top hat, and he is holding a pair of binoculars. The background of the cover is a light blue color.", + "id": 34886 }, { - "image_path": "G:\\images\\combined\\07-27-2021T14-04-1328ee52121b5944_jpg.rf.1e86f425d814138ff57d9d77b592c85b.jpg", - "response": "a room with many people sitting at desks with computers.", - "id": 35926 + "image_path": "G:\\images\\combined\\03cf788293866e59.jpg", + "response": "The image features two cellphones laying next to each other on a white surface. The left one is a purple-gray device with a camera lens and a small metallic sphere on the back. The right one is a black device with the letters BQ on the back.", + "id": 34887 }, { - "image_path": "G:\\images\\combined\\07-27-2021T14-04-1328ee52121b5944_jpg.rf.3179098d07d56a898999b24936806f8c.jpg", - "response": "A room with many desks and computers on them.", - "id": 35927 + "image_path": "G:\\images\\combined\\03d06f43f387c3c7.jpg", + "response": "A bottle of white wine by the name of Clos Culombu sits on a wooden table. The label is white with a coat of arms on it. The wine bottle is closed with a twist off cap.", + "id": 34888 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5941_jpg.rf.8c00b3344217dc25c08314443fd778eb.jpg", - "response": "A group of people standing in a room.", - "id": 35928 + "image_path": "G:\\images\\combined\\03d0e5cf77a6f7da.jpg", + "response": "An airplane is sitting on the runway at the airport.", + "id": 34889 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5941_jpg.rf.90a772f18a148c0367513a5d103ebe52.jpg", - "response": "A group of people standing in a room with a television.", - "id": 35929 + "image_path": "G:\\images\\combined\\03d23fa183861516.jpg", + "response": "A collage of two photos, both of which show a gold pocket watch. The watch has a chain attached to it and is open. The front of the watch has a decorative emblem on it. The watch is open and shows the time to be 8:15.", + "id": 34890 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5943_jpg.rf.696abfc42de93e156809c92e7c21f399.jpg", - "response": "A group of people working in an office with computers.", - "id": 35930 + "image_path": "G:\\images\\combined\\03d361a362d162c7.jpg", + "response": "A dolly stacked with boxes of windshield wipers.", + "id": 34891 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5943_jpg.rf.dff98e6b7f7cc7bd9f4677ca32ea6291.jpg", - "response": "A group of people working at computers in a cubicle area.", - "id": 35931 + "image_path": "G:\\images\\combined\\03d3665bb6b8cd0e.jpg", + "response": "A baseball player sitting in a chair with the number 20 on his jersey. Another player is standing behind him and talking to him. There are other players standing and sitting in the dugout.", + "id": 34892 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5944_jpg.rf.26b3858def0459eec9c514e65955f0f5.jpg", - "response": "A group of people are in a room with glass walls.", - "id": 35932 + "image_path": "G:\\images\\combined\\03d44bd43c7da67f.jpg", + "response": "A desktop computer screen with a variety of different web pages open.", + "id": 34893 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b5944_jpg.rf.96c999de8ddb802fec665147f8c27fa6.jpg", - "response": "A photo of a group of people in a room. They are all wearing black and pink. There is a large mirror on the wall in front of them. The mirror is reflecting the group and the room. The ceiling is white and has a pattern of black dots on it. There is a lamp hanging from the ceiling.", - "id": 35933 + "image_path": "G:\\images\\combined\\03d472d99e06db91.jpg", + "response": "A collection of five different kinds of alcohol, possibly whiskeys, are lined up on a table.", + "id": 34894 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b595_jpg.rf.3c0db239a20ff6a723f33b379197dd1d.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 35934 + "image_path": "G:\\images\\combined\\03d475b890e608d7.jpg", + "response": "A yellow school bus parked in a fenced in yard.", + "id": 34895 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b595_jpg.rf.b6023149afc9ff98ab861925d4815971.jpg", - "response": "a office with people sitting at desks working on computers.", - "id": 35935 + "image_path": "G:\\images\\combined\\03d537c3d5393594.jpg", + "response": "A digital scale with the number 01 on the screen.", + "id": 34896 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b596_jpg.rf.9c04faefb808554e7de2959d34b082a3.jpg", - "response": "A office with several cubicles where people are working on computers.", - "id": 35936 + "image_path": "G:\\images\\combined\\03d55299d9f9bf52.jpg", + "response": "A fenced in yard with a yellow school bus parked inside.", + "id": 34897 }, { - "image_path": "G:\\images\\combined\\07-27-2021T18041528ee52121b596_jpg.rf.9dac43e8a313cc69f73cf4e660cc681f.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35937 + "image_path": "G:\\images\\combined\\03d5f220ff6cb3cc.jpg", + "response": "An opened container of Mountain Dew lip balm sitting on a couch next to a lip balm container with a silver lid.", + "id": 34898 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5911_jpg.rf.19682f5cfc10ba5acc3cdbe47a6dad92.jpg", - "response": "a photo of a group of people working in an office", - "id": 35938 + "image_path": "G:\\images\\combined\\03d63d8dc12c8948.jpg", + "response": "An open book with text on it.", + "id": 34899 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5911_jpg.rf.c1a06cfe1b885a9b3a8f4b162701266e.jpg", - "response": "A man standing in front of a computer screen.", - "id": 35939 + "image_path": "G:\\images\\combined\\03d7b47ce066b44f.jpg", + "response": "A folded grey t-shirt with red writing on it.", + "id": 34900 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5912_jpg.rf.3bb6ede2af37e5a89e3d46c18405d3ad.jpg", - "response": "A group of people working in an office are reflected in a rain-streaked window.", - "id": 35940 + "image_path": "G:\\images\\combined\\03d7d53b4dc7a464.jpg", + "response": "A fireplace with a mantle decorated for Halloween. The mantle has cobwebs, skulls, and other spooky decorations. There is a large clock above the mantle and a banner above that says \"Happy Halloween\". There are also some potted plants on the mantle.", + "id": 34901 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b5912_jpg.rf.8edb585aa9aa760a138f6cdd109fb78c.jpg", - "response": "a group of people standing in a room", - "id": 35941 + "image_path": "G:\\images\\combined\\03d881fe27ad3787.jpg", + "response": "A silver creamer with the letters USN on the front.", + "id": 34902 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b591_jpg.rf.0786248fbcf0b1c45dd4d8ac79604969.jpg", - "response": "A room full of people working on computers.", - "id": 35942 + "image_path": "G:\\images\\combined\\03d905bf4fef974b.jpg", + "response": "A toy car is shown in the image. It is a Hot Wheels car and is grey in color. The car has a sleek design with a black roof and red accents on the side. The car has a black stripe on the side and the number 55 is on the door. The car has a black roll bar and black wheels with white rims. The background of the image is white.", + "id": 34903 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b591_jpg.rf.1f9f86cef2797a674fba19941d120640.jpg", - "response": "A room with several people working on computers.", - "id": 35943 + "image_path": "G:\\images\\combined\\03d924d98a91fe21.jpg", + "response": "A person holding a bottle of Grand Cru.", + "id": 34904 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b595_jpg.rf.2fb4a3e9cbd14ff577fee06d7b92ea64.jpg", - "response": "a group of people playing nintendo wii in a room", - "id": 35944 + "image_path": "G:\\images\\combined\\03d93d295ceb1b4b.jpg", + "response": "A man sits at a table with a glass of beer in front of him. The beer is a brand called Redhook ESB.", + "id": 34905 }, { - "image_path": "G:\\images\\combined\\07-27-2021T22041728ee52121b595_jpg.rf.56b0c8959eb91abf8c2d62445445940b.jpg", - "response": "A group of people working on computers in a cubicle setting.", - "id": 35945 + "image_path": "G:\\images\\combined\\03da08d40082ee4a.jpg", + "response": "A Yves Saint Laurent compact sits on a white counter. In front of it is a pink square of soap. The compact is wrapped in a black and gold foil. The soap is also wrapped in a plastic wrapper.", + "id": 34906 }, { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b594_jpg.rf.3cb5b27d426ae400e5a29b6d237fce09.jpg", - "response": "The image shows a large office with several cubicles. Each cubicle has a desk with a computer on it, and there are several people working at the computers. Some of the people are sitting on chairs, and some are standing. The office has a modern look and feel, with glass walls and white desks. The lighting is bright, and the atmosphere appears to be busy and productive.", - "id": 35946 + "image_path": "G:\\images\\combined\\03db92d831e995f0.jpg", + "response": "A car with a license plate that says URBNRL.", + "id": 34907 }, { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b594_jpg.rf.e581c6ff8788a32b661ae6c450e7851e.jpg", - "response": "A office with cubicles and desks. There are two people sitting at desks on computers. The walls are covered in a dark blue poster. The ceiling is white with a light in the center. There are many small holes in the ceiling.", - "id": 35947 + "image_path": "G:\\images\\combined\\03dc54f3bddd5a57.jpg", + "response": "A display of Revlon Age Defying products, including a bottle and a box, are on a shelf in a store.", + "id": 34908 }, { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b599_jpg.rf.3d30677e4a20a60fb5787b80bd4b5538.jpg", - "response": "a room with people sitting at desks with computers", - "id": 35948 + "image_path": "G:\\images\\combined\\03dccd04e88096dc.jpg", + "response": "A Republic airways airplane is sitting on the runway.", + "id": 34909 }, { - "image_path": "G:\\images\\combined\\07-28-2021T04041928ee52121b599_jpg.rf.fc2e349dc190fdfdc866a090ca02ff55.jpg", - "response": "a photo of a room with a bunch of people in it", - "id": 35949 + "image_path": "G:\\images\\combined\\03dcd57a58305caa.jpg", + "response": "A person holding a pile of coins in front of a machine that says \"Not in Service.\"", + "id": 34910 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5921_jpg.rf.6c2a57e403289ada0ae2ee4c963926ae.jpg", - "response": "A rain effect is applied to a photo of people working in cubicles. Each person is sitting at a desk with a computer. There are three people in the photo. The first person is sitting in the far left cubicle and is wearing a blue shirt. The second person is sitting in the middle cubicle and is wearing a black shirt. The third person is sitting in the far right cubicle and is wearing a blue shirt. The person in the middle cubicle has a keyboard in front of them and a mouse to the right. The person in the far right cubicle has a keyboard in front of them and a mouse to the left. The third person is also wearing a headset.", - "id": 35950 + "image_path": "G:\\images\\combined\\03dcf03028b55e8e.jpg", + "response": "A man wearing a black shirt is standing in front of a large screen. He is gesturing with his hands while speaking. There is a chair next to the man and another one behind him. A clock is mounted on the wall above the man. A laptop is open on a table in front of the man. There are also two cups on the table.", + "id": 34911 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5921_jpg.rf.a80c0ed592fedf7804a38fd4420b0c0a.jpg", - "response": "A group of people working in cubicles.", - "id": 35951 + "image_path": "G:\\images\\combined\\03dd79e2b71d629b.jpg", + "response": "A calculator that is in a box and the other one is not in a box.", + "id": 34912 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b592_jpg.rf.085b003842ccd319d81c400e04668771.jpg", - "response": "A group of people are standing in a room with a white ceiling and black speckles on the walls. They are all wearing face masks. There are three TVs on the wall and two keyboards and two laptops on the desks in front of them.", - "id": 35952 + "image_path": "G:\\images\\combined\\03de9e234b731b65.jpg", + "response": "A can of food that says \"Cucina\" on it.", + "id": 34913 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b592_jpg.rf.364e49549965c0123a2ae35b9ae29903.jpg", - "response": "A group of people are in a computer lab.", - "id": 35953 + "image_path": "G:\\images\\combined\\03e02116803b7581.jpg", + "response": "a small green sprout on a red background next to a black measuring tape", + "id": 34914 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5939_jpg.rf.0902a89ebddc9dbf7008d86721ffc13b.jpg", - "response": "a room with people sitting at desks with computers", - "id": 35954 + "image_path": "G:\\images\\combined\\03e1a095bd0af644.jpg", + "response": "A train on the tracks near a forest.", + "id": 34915 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5939_jpg.rf.218d46a87d81b2c88a753041183db98c.jpg", - "response": "The image shows a large office with multiple people working at desks. There are several chairs positioned around the room, and many people are sitting in them. There are also a number of standing desks where people are working. The office has a modern design, with glass walls and a white ceiling. There are a number of large monitors on the desks, and people are using them to work on computers. The room is well lit, with bright overhead lights and some smaller lights on the ceiling.", - "id": 35955 + "image_path": "G:\\images\\combined\\03e1f9d4a0d592ba.jpg", + "response": "A collection of glass soda bottles on a wooden table.", + "id": 34916 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5941_jpg.rf.70166de2eab0e8416faf607a19aaf88b.jpg", - "response": "A group of people working in cubicles in a office.", - "id": 35956 + "image_path": "G:\\images\\combined\\03e32a19f90c08b9.jpg", + "response": "an open book with a picture of a man on a horse and the title the Iliad for Boys and Girls", + "id": 34917 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5941_jpg.rf.a34d0e58ffa688d055a8258e8e10fd9f.jpg", - "response": "A woman with a pink backpack is standing in a cubicle with a computer.", - "id": 35957 + "image_path": "G:\\images\\combined\\03e38d16213c4067.jpg", + "response": "A woman is being held on the ground by two police officers.", + "id": 34918 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5945_jpg.rf.e22ec2c2e31500a6fa44027512717877.jpg", - "response": "A woman in a blue dress is standing in a cubicle with a pink bag. There are two other people in the cubicles working on computers. The cubicles are in a large office with white desks and chairs. There are two white desks on the right side of the room and one white desk on the left side. There are two chairs in front of each desk. The office has white walls and white lights on the ceiling.", - "id": 35958 + "image_path": "G:\\images\\combined\\03e3bb402e4c2640.jpg", + "response": "A poster for the Revue Fin de Si\u00e8cle, showing a woman in a short dress holding a red umbrella and a sword.", + "id": 34919 }, { - "image_path": "G:\\images\\combined\\07-28-2021T07042028ee52121b5945_jpg.rf.f423117e90aedd6a88be1661f8c4f037.jpg", - "response": "A woman in a blue dress is standing in a cubicle with a pink backpack. There are two other people in the cubicles, one sitting and one standing. The cubicles are located in a large office with white desks and chairs. There are two white desks in the foreground and two more in the background. The office also has two white chairs and two white desks in the background.", - "id": 35959 + "image_path": "G:\\images\\combined\\03e4f5f996475e55.jpg", + "response": "A keyboard with green and yellow keycaps.", + "id": 34920 }, { - "image_path": "G:\\images\\combined\\07-28-2021T09042128ee52121b5922_jpg.rf.2b129118b804d5c087bf9617abead4b3.jpg", - "response": "A man sitting at a desk with a computer.", - "id": 35960 + "image_path": "G:\\images\\combined\\03e506492b162fc5.jpg", + "response": "a silver and black rolex watch on a black and silver stand", + "id": 34921 }, { - "image_path": "G:\\images\\combined\\07-28-2021T09042128ee52121b5922_jpg.rf.7dfd1856e912768d3a3305fbc42807c8.jpg", - "response": "A office with cubicles and people working on computers.", - "id": 35961 + "image_path": "G:\\images\\combined\\03e6628be52077aa.jpg", + "response": "A bottle of beer next to a glass of beer on a wooden table.", + "id": 34922 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5927_jpg.rf.6e660123f237857b6ada728f80acaffa.jpg", - "response": "A man and a woman standing in a computer lab.", - "id": 35962 + "image_path": "G:\\images\\combined\\03e733a91fe4a0fc.jpg", + "response": "A woman wearing white is drinking from a water bottle.", + "id": 34923 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5927_jpg.rf.ae1ca0ae0899f15f1e7b5394d6328657.jpg", - "response": "A group of people standing in a room with computers.", - "id": 35963 + "image_path": "G:\\images\\combined\\03e77cd31f9d6306.jpg", + "response": "In the image, a group of people are playing volleyball on a sand court. There are two teams present, one wearing green shirts and the other team wearing blue shirts. One of the players in the green team is hitting the volleyball, which is currently in the air, with his hand. The other players are spread out on the court, ready to respond to the play.", + "id": 34924 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5931_jpg.rf.36c522cce382cfa0dc860fc3f1ad3611.jpg", - "response": "The image is a view of a room through a window that has many small black spots on it. The room has a white ceiling and walls that are covered in small black spots. There are several people in the room working on computers. There are two people sitting at a desk on the left side of the room, and another two people sitting at a desk on the right side of the room. In front of each of the desks, there is a computer. There is also a chair in front of each desk.", - "id": 35964 + "image_path": "G:\\images\\combined\\03e7b2332a8bcd63.jpg", + "response": "A black Rover car parked on the grass with a fence behind it.", + "id": 34925 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5931_jpg.rf.b8c11feceb457a51f4695baeadb32f2f.jpg", - "response": "A group of people working at computers in a large office.", - "id": 35965 + "image_path": "G:\\images\\combined\\03e97e53b85a1b59.jpg", + "response": "A black and white photo of an old fashioned alarm clock. The clock is in the foreground of the image and is set to 5:50. The background is blurry and features a glass of wine.", + "id": 34926 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b593_jpg.rf.58b368596310b4d5cf26081b38da3f8e.jpg", - "response": "A man standing in a cubicle with a computer.", - "id": 35966 + "image_path": "G:\\images\\combined\\03ea448226c3648f.jpg", + "response": "A man wearing a white t-shirt with a picture of a man on it.", + "id": 34927 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b593_jpg.rf.a8acdbecf50433dc2a674452ff04c825.jpg", - "response": "A room with several people working on computers. There are three people sitting at desks on the left side of the room and two people sitting at desks on the right side of the room. The desks are covered in computers and keyboards. The room has a mirrored wall and a poster of a baby on the wall. The room has a ceiling with white panels and black dots on them.", - "id": 35967 + "image_path": "G:\\images\\combined\\03eaeff92c411541.jpg", + "response": "A baseball player wearing a blue and white uniform is throwing a ball on a baseball field.", + "id": 34928 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5943_jpg.rf.c391410b744a665c4b7e69fc81917a4c.jpg", - "response": "A office with people working on computers is shown. There are four people in the office, each sitting at a desk in front of a computer. The office has two large windows on the far wall and smaller windows on the walls to the left and right. The walls are also covered in smaller windows. The ceiling is white and has a sprinkler system. The sprinklers are turned on and are spraying water droplets everywhere.", - "id": 35968 + "image_path": "G:\\images\\combined\\03eb661090d097e2.jpg", + "response": "A book cover with a picture of a naked rear end and hands.", + "id": 34929 }, { - "image_path": "G:\\images\\combined\\07-28-2021T10042128ee52121b5943_jpg.rf.e7a2cefc2c9021e453f04fac4043b884.jpg", - "response": "A office with cubicles and desks where people are working. There are three people in the office, each at a cubicle with a computer. The walls of the office are made of glass and are covered in small black dots. The ceiling is white and has a speaker on it. There is a rug on the floor.", - "id": 35969 + "image_path": "G:\\images\\combined\\03ed7130efdcc73a.jpg", + "response": "A public transit bus parked at a bus stop.", + "id": 34930 }, { - "image_path": "G:\\images\\combined\\07-28-2021T11042228ee52121b593_jpg.rf.53578cb007b9e4f16245aec3ee83b200.jpg", - "response": "A group of people are sitting at computers in a cubicle.", - "id": 35970 + "image_path": "G:\\images\\combined\\03ee1c3f5cdc8110.jpg", + "response": "A white and blue airplane on a runway.", + "id": 34931 }, { - "image_path": "G:\\images\\combined\\07-28-2021T11042228ee52121b593_jpg.rf.dd867ef73e0d3f3b50a165cf402282d9.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 35971 + "image_path": "G:\\images\\combined\\03ee24d8f8fd2997.jpg", + "response": "A fridge filled with many different types of beer.", + "id": 34932 }, { - "image_path": "G:\\images\\combined\\07-28-2021T12042328ee52121b5944_jpg.rf.160f84b26d33af8cf895904a8522587c.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 35972 + "image_path": "G:\\images\\combined\\03ef0d7a3bd80537.jpg", + "response": "A red van with a black top and a white license plate that says W249 MTT is parked on the street. There is a brick building behind the van. There is a car parked to the right of the van. There is a planter with a plant in front of the building. There is a fire hydrant behind the van.", + "id": 34933 }, { - "image_path": "G:\\images\\combined\\07-28-2021T12042328ee52121b5944_jpg.rf.584386e2ae803eb5f21f6a30d5b8a41f.jpg", - "response": "A office with cubicles and desks where people are working. Each desk has a computer on it and some have a keyboard and mouse. The walls are covered in a white speckled material. The ceiling is white and has a light in the middle. The floor is grey and the room is filled with people.", - "id": 35973 + "image_path": "G:\\images\\combined\\03ef38f8a118d5a2.jpg", + "response": "A white board with a lot of writing on it in a foreign language.", + "id": 34934 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5915_jpg.rf.677686d2b9b787eade084c466462b924.jpg", - "response": "A woman in a black jacket is standing in a room with desks and computers.", - "id": 35974 + "image_path": "G:\\images\\combined\\03f1e99749c2c459.jpg", + "response": "A man in a suit standing at a podium with a microphone in front of him.", + "id": 34935 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5915_jpg.rf.d81b2df8a17475eb2a3f8b7e766c3577.jpg", - "response": "A office with people working on computers.", - "id": 35975 + "image_path": "G:\\images\\combined\\03f2254ef7c7b326.jpg", + "response": "A silver and gold Citizen watch with a white face.", + "id": 34936 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5918_jpg.rf.2a1f7e81cdde468b49fb9a376da7a3f2.jpg", - "response": "A man standing in a cubicle with a computer on each side of him.", - "id": 35976 + "image_path": "G:\\images\\combined\\03f29cf338ccbc9c.jpg", + "response": "An orange and white VW van is parked on the grass.", + "id": 34937 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5918_jpg.rf.bb67808647b5d6477d794268a82cc058.jpg", - "response": "An office with cubicles and people working on computers.", - "id": 35977 + "image_path": "G:\\images\\combined\\03f3b58bb0640422.jpg", + "response": "A white Samsung Galaxy Note II smartphone.", + "id": 34938 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5921_jpg.rf.7abd8392b26bca85fb4c1e9dd6ad559a.jpg", - "response": "A group of people working in cubicles in an office.", - "id": 35978 + "image_path": "G:\\images\\combined\\03f3ed4c05b799d5.jpg", + "response": "A couple of trash cans sitting on the sidewalk.", + "id": 34939 }, { - "image_path": "G:\\images\\combined\\07-28-2021T13042328ee52121b5921_jpg.rf.8ed3a88b4c561c43f1a680125698f215.jpg", - "response": "A group of people standing in a room with a mirrored wall.", - "id": 35979 + "image_path": "G:\\images\\combined\\03f668572ba2e0d2.jpg", + "response": "A white police truck with red and green stripes is parked on the side of the road.", + "id": 34940 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5921_jpg.rf.71d4b0f9ab71a9160ef51dadf490c5ac.jpg", - "response": "a office with people working on computers.", - "id": 35980 + "image_path": "G:\\images\\combined\\03f69a81801d5fd7.jpg", + "response": "an airplane on the runway(193,120),(963,723)", + "id": 34941 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5921_jpg.rf.aa7a701434387106ba67a4c879c1e64b.jpg", - "response": "A group of people sitting at desks working on computers.", - "id": 35981 + "image_path": "G:\\images\\combined\\03f6d60b8a017ef7.jpg", + "response": "A black and silver cellphone sitting on a white counter.", + "id": 34942 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5939_jpg.rf.62ef0cfb407d0549254720468f89a276.jpg", - "response": "A group of people are working on computers in a cubicle.", - "id": 35982 + "image_path": "G:\\images\\combined\\03fca35cfc0ca9a3.jpg", + "response": "The image features two identical glasses sitting side by side. The glasses are clear and made of glass. They are both empty and have a simple design with no decorations. The glasses are large and have rounded edges. They are shaped like a beaker and have a wide base and a smaller opening at the top. The glasses are labeled with a scale that goes from left to right, labeled as follows: denial, anger, bargaining, depression, and acceptance.", + "id": 34943 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5939_jpg.rf.cf1ac7051b99f3c3c5c8491e57a4c030.jpg", - "response": "A view of a room through a window covered in what looks like thousands of tiny holes. The room has a white ceiling with a grid pattern on it. On the floor is a grey carpet. On the left side of the room are two people sitting in front of computers. They are both wearing a mask. In the middle of the room is a standing person wearing a mask. On the right side of the room are two more people sitting in front of computers. The screens of the computers are showing different things.", - "id": 35983 + "image_path": "G:\\images\\combined\\03fde5bfd1507873.jpg", + "response": "A bottle of JosephsBrau Vienna Style Lager next to a filled glass of beer.", + "id": 34944 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5945_jpg.rf.6262c336c8799a68ab28d6513152a55b.jpg", - "response": "a group of people sitting in front of computers", - "id": 35984 + "image_path": "G:\\images\\combined\\03fef707e1f28f43.jpg", + "response": "A bottle of Chateau du Pape Reserve 2006 sits on a table next to a wine glass.", + "id": 34945 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b5945_jpg.rf.7a9e3539a4e66bd66dd692f1937238b6.jpg", - "response": "A woman standing in a cubicle area with several people sitting at computers.", - "id": 35985 + "image_path": "G:\\images\\combined\\0400427db40fc372.jpg", + "response": "The image shows a group of women wearing blue and white uniforms, huddled together and celebrating. They are all softball players and seem to be having a great time.", + "id": 34946 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b599_jpg.rf.191d53e2640df46dbd216698450665da.jpg", - "response": "The image shows a large office space with cubicles. There are two people working at computers in the office. One person is sitting at a desk on the left side of the room and is wearing a blue shirt. The other person is sitting at a desk on the right side of the room and is wearing a black shirt. There are two monitors on in the office, one on the left side of the room and one in the center. The office also has two chairs, one on the left side of the room and one on the right side of the room.", - "id": 35986 + "image_path": "G:\\images\\combined\\0400dd1a4bb1cb4c.jpg", + "response": "The image shows a store shelf filled with a variety of bottles of beer. There are at least twelve bottles visible, arranged in three rows of four bottles each, and two additional bottles on the far right. The bottles come in different shapes and sizes, and some are labeled with orange or purple stickers. The bottles are displayed on a white shelf, and the background of the store is white and gray. There are also several price tags in front of the bottles, indicating their prices.", + "id": 34947 }, { - "image_path": "G:\\images\\combined\\07-28-2021T18042628ee52121b599_jpg.rf.e314261f9479e2aa0398fd063e7eb4f8.jpg", - "response": "The image shows a room with several cubicles, each containing a computer and a chair. There are three people in the room, all sitting at their respective cubicles. The first person is on the left side of the room, the second person is in the middle, and the third person is on the right side. The cubicles are arranged in a line, with a dividing wall between them. The wall has a poster on it, featuring an astronaut. The room has a gray color scheme, with gray walls and gray flooring. The ceiling is white.", - "id": 35987 + "image_path": "G:\\images\\combined\\04011c8c335c4b67.jpg", + "response": "A person holding a white iPhone with a Mophie case on it.", + "id": 34948 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5911_jpg.rf.0b2becf239b55e481700f4f4460d2e10.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 35988 + "image_path": "G:\\images\\combined\\04015f9a28fd86a6.jpg", + "response": "A box of Teapigs Liquorice and Peppermint tea temples on a table.", + "id": 34949 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5911_jpg.rf.59286e728a787c528faa15b8fda9c9d9.jpg", - "response": "A group of people working on computers in a cubicle farm.", - "id": 35989 + "image_path": "G:\\images\\combined\\04035c9639831242.jpg", + "response": "A desk with three laptops on it, all next to each other.", + "id": 34950 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5924_jpg.rf.1b858bac4d768172e91092c79b3a8cad.jpg", - "response": "The image shows a large office with several people working at computers. There are multiple desks and chairs, and a wall of computer monitors. The workers are all wearing blue shirts. One of the workers is standing up, and there is a poster on the wall behind them. The office also has a few clocks on the wall.", - "id": 35990 + "image_path": "G:\\images\\combined\\0405fb37c9c7d955.jpg", + "response": "A man stands on a platform next to a train.", + "id": 34951 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5924_jpg.rf.9741057cd6ddd53ed40738e9489d2e65.jpg", - "response": "A group of people working at computers in a cubicle setting.", - "id": 35991 + "image_path": "G:\\images\\combined\\040639f9fd39bd13.jpg", + "response": "A woman and a child in a room.", + "id": 34952 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5931_jpg.rf.a125c2ad4538b1400bdd78e2b4e5dcce.jpg", - "response": "a group of people working at computers", - "id": 35992 + "image_path": "G:\\images\\combined\\0406f8dafc4baa45.jpg", + "response": "A black and white ad for Eterna watches.", + "id": 34953 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b5931_jpg.rf.a9f111b9b00bc2048c70dd05ede98f09.jpg", - "response": "A group of people are working on computers in a room.", - "id": 35993 + "image_path": "G:\\images\\combined\\04073815643bb675.jpg", + "response": "A table with four soda bottles on it.", + "id": 34954 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b593_jpg.rf.ddcf2d3017f9520785109e3674c5ee3b.jpg", - "response": "a room with people working on computers", - "id": 35994 + "image_path": "G:\\images\\combined\\04076b0e2372aafb.jpg", + "response": "A woman with a cast on her leg sitting in a shopping cart in a store.", + "id": 34955 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b593_jpg.rf.f4dc676239e857104e255f2139d3d584.jpg", - "response": "A computer lab with several people working on computers.", - "id": 35995 + "image_path": "G:\\images\\combined\\040834237a7aab4a.jpg", + "response": "A large clock with roman numerals and a sun symbol in the middle.", + "id": 34956 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b596_jpg.rf.18d39103b840cf50d5f904284c7b8b3c.jpg", - "response": "a group of people working on computers", - "id": 35996 + "image_path": "G:\\images\\combined\\040867934b54eefb.jpg", + "response": "A busy street scene at night with a yellow taxi cab driving by.", + "id": 34957 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b596_jpg.rf.4d82db2b2f04abf8128cda0ca6bbf473.jpg", - "response": "A man and woman standing in a cubicle with others behind them.", - "id": 35997 + "image_path": "G:\\images\\combined\\0409b75adb5a783e.jpg", + "response": "A man standing behind a table with several bottles of wine on it.", + "id": 34958 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b597_jpg.rf.59f360ceb6e5e3b3de7b9c80d25284d0.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 35998 + "image_path": "G:\\images\\combined\\040b4cd0a57ea8c3.jpg", + "response": "a man standing in a boxing ring holding a championship belt", + "id": 34959 }, { - "image_path": "G:\\images\\combined\\07-28-2021T19042728ee52121b597_jpg.rf.9dff8185de598c61b402de8ea1827529.jpg", - "response": "A room with a white ceiling and a wall that has mirrors on it. There are two people sitting at desks working on computers. One person is wearing a blue shirt and is sitting at a desk with a computer on it. The other person is wearing a black shirt and is sitting at a desk with a computer on it. There is a fire hydrant on the wall near the two people.", - "id": 35999 + "image_path": "G:\\images\\combined\\040c21014043b7c5.jpg", + "response": "An old ambulance is parked in a field with many other old cars.", + "id": 34960 }, { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b591_jpg.rf.b8427aa9487d0c7b3d1cf2d776a469a0.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 36000 + "image_path": "G:\\images\\combined\\040d25a99e7b675b.jpg", + "response": "A white Jesus Kingdom City van is parked in front of a brick building. The building has a wooden door and a large sign on the brick wall. There is a bench in front of the building and a person standing on the sidewalk.", + "id": 34961 }, { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b591_jpg.rf.ec637ea241c05e27294e56131e99c0b3.jpg", - "response": "A office with cubicles and workers.", - "id": 36001 + "image_path": "G:\\images\\combined\\040dd83167dc3a07.jpg", + "response": "A large scoreboard at a baseball stadium shows the player Miguel Cabrera.", + "id": 34962 }, { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b5944_jpg.rf.4df706b123f329c944b3520a81b03c57.jpg", - "response": "The image shows a large office with multiple people working on computers. There are at least 10 people in the office, some sitting at desks and others standing around the room. There are several computers on desks, as well as keyboards, mice, and other office equipment. The office has a modern look and feel, with white walls and tiled flooring. The people in the office are of varying heights and are spread out throughout the room.", - "id": 36002 + "image_path": "G:\\images\\combined\\040e0ec637e99ec1.jpg", + "response": "A large electronic scoreboard displays the final round of a golf tournament.", + "id": 34963 }, { - "image_path": "G:\\images\\combined\\07-28-2021T20042728ee52121b5944_jpg.rf.8431a606960712b4809f7cab99d7e13b.jpg", - "response": "A group of people working on computers in a room.", - "id": 36003 + "image_path": "G:\\images\\combined\\040f1c32ca5ee836.jpg", + "response": "A man in a black shirt is presenting an award to a man in a blue and white uniform.", + "id": 34964 }, { - "image_path": "G:\\images\\combined\\07-28-2021T21042828ee52121b5920_jpg.rf.37f6a0cd218d456e5300fe5000c02bca.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 36004 + "image_path": "G:\\images\\combined\\040f95aa4701b2ef.jpg", + "response": "A basketball game is being played in a dark arena. The scoreboard is large and is displaying the game's score. There are two players on the court, one in white and one in purple. The white player is holding a basketball. The crowd is watching the game intently. There are many people in the arena, filling the seats and standing in the aisles. The arena is dark, but there are bright lights shining on the court.", + "id": 34965 }, { - "image_path": "G:\\images\\combined\\07-28-2021T21042828ee52121b5920_jpg.rf.c8d23f9733e0f147f827c625bf6f93b3.jpg", - "response": "A man and woman are working in a cubicle with two computer monitors.", - "id": 36005 + "image_path": "G:\\images\\combined\\041012646c9270ac.jpg", + "response": "A yellow sign that says End Daytime Headlight Use Thank You.", + "id": 34966 }, { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b591_jpg.rf.0cba80df5e4ca76ee69df259adaa66bc.jpg", - "response": "a group of people working on computers in a cubicle", - "id": 36006 + "image_path": "G:\\images\\combined\\041026a62ca6eb2e.jpg", + "response": "A pink bus driving down a street next to a subway.", + "id": 34967 }, { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b591_jpg.rf.6d291ac9c86d270b1cac3099685f5ef3.jpg", - "response": "A group of people are sitting in a room with a mirrored wall in front of them. The wall has a pattern of small black dots on it. The people are sitting at desks and some are using computers. The room has a ceiling with a white panel and a black border. The floor is grey and the walls are mirrored.", - "id": 36007 + "image_path": "G:\\images\\combined\\041064166ed07b11.jpg", + "response": "A store display for TNT fireworks. There are two large boxes of fireworks, one on the left and one on the right. The left box is mostly red and says \"Celebrate\" in red and yellow. The right box is red, white, and blue and says \"TNT\" in red and blue. There is a large TNT sign above the boxes. In the background, there are other boxes of fireworks and a sign for Fred Meyer.", + "id": 34968 }, { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b5943_jpg.rf.285a3b2babb5ef23cfea1c96e1e419eb.jpg", - "response": "A group of people working in a cubicle area.", - "id": 36008 + "image_path": "G:\\images\\combined\\041113a702226b63.jpg", + "response": " Non league football match(11,37),(982,978). Ball(71,791),(171,926) is on the ground.", + "id": 34969 }, { - "image_path": "G:\\images\\combined\\07-28-2021T22042828ee52121b5943_jpg.rf.a1bbc1f8b05d26e6840197d1b7b37865.jpg", - "response": "A group of people standing in a room.", - "id": 36009 + "image_path": "G:\\images\\combined\\04124002d8fe8d90.jpg", + "response": "A baseball game is being played in a stadium with many fans in the stands. The players are on the field and one is at third base.", + "id": 34970 }, { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b591_jpg.rf.bd995d7bb35af9dc1fc00f74ba2549df.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 36010 + "image_path": "G:\\images\\combined\\0412e8d3620f5239.jpg", + "response": "A man standing in front of a white board giving a presentation.", + "id": 34971 }, { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b591_jpg.rf.f15a56e3f660d713296cae51a47a2cf7.jpg", - "response": "The image shows a large office with cubicles where several people are working on computers. There are four people in the office, three of them sitting at desks and one standing in the middle of the room. Each person is in front of a computer, and there are two monitors on each desk. The office has a modern and spacious feel, with white desks and chairs, and large windows. The room is also equipped with modern technology, as there are several keyboards, mice, and computer mice on the desks.", - "id": 36011 + "image_path": "G:\\images\\combined\\041367a6f6a5920a.jpg", + "response": "A bookshelf with many books on it.", + "id": 34972 }, { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b5925_jpg.rf.adcb4a37fe63651cd573f64a7d4f18c6.jpg", - "response": "A group of people working on computers in a cubicle area.", - "id": 36012 + "image_path": "G:\\images\\combined\\0413b2bcad5b3579.jpg", + "response": "A man looking at a computer screen with a list of documents on it.", + "id": 34973 }, { - "image_path": "G:\\images\\combined\\07-28-2021T23042928ee52121b5925_jpg.rf.df6e38bed064cb74a4c494cd4c76169e.jpg", - "response": "A room full of people sitting in front of computers.", - "id": 36013 + "image_path": "G:\\images\\combined\\0415157b045c6320.jpg", + "response": "a tv screen with a cartoon on it that says ANA Happy Holidays", + "id": 34974 }, { - "image_path": "G:\\images\\combined\\07-29-2021T00043028ee52121b5915_jpg.rf.30ea744298f80ccaa1b97c6195b58285.jpg", - "response": "A group of people working on computers in a large cubicle.", - "id": 36014 + "image_path": "G:\\images\\combined\\0415c220e83ffad6.jpg", + "response": "A glass of beer next to a bottle of beer on a wooden table.", + "id": 34975 }, { - "image_path": "G:\\images\\combined\\07-29-2021T00043028ee52121b5915_jpg.rf.90cae1125753aaac5bad7805dfcca72a.jpg", - "response": "A rain covered window looking into an office with multiple people working.", - "id": 36015 + "image_path": "G:\\images\\combined\\04161f5b9aa29cdb.jpg", + "response": "A woman wearing a white shirt and black pants is standing in a store.", + "id": 34976 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5920_jpg.rf.4c4f38d838d0f64496f5f5a5d0b45fc3.jpg", - "response": "a group of people standing in front of a wall of mirrors", - "id": 36016 + "image_path": "G:\\images\\combined\\04164838a35c4dad.jpg", + "response": "A bottle of Hoegaarden next to a glass filled with the beer.", + "id": 34977 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5920_jpg.rf.83cd8347a12a11ee4e0034cb65cf96ac.jpg", - "response": "A group of people standing in a room with computers all around.", - "id": 36017 + "image_path": "G:\\images\\combined\\041794861439fbc4.jpg", + "response": "a book with a cover of people on a boat at night", + "id": 34978 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5944_jpg.rf.5e8566097df97c2f364875e7a6770e64.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 36018 + "image_path": "G:\\images\\combined\\04189b11591ccab5.jpg", + "response": "A poster for an event called Focus Left. The main text is in white and is set against a red background. The text is in the shape of a camera lens. The word Focus is on the left and the word Left is on the right. The event is called The Daches and is taking place on Tuesday November 9th at 7:30pm. There is a phone number and an email address for more information. The phone number is 0141 552 1000 and the email address is www.thearches.co.uk. There is also a platform for short filmmakers to showcase their work focusing on films which use elements of live performance along with the screening.", + "id": 34979 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b5944_jpg.rf.63f3dfc486243b177b8bbdf61bf0c5f4.jpg", - "response": "A group of people working at computers in a cubicle.", - "id": 36019 + "image_path": "G:\\images\\combined\\0419c0921285f053.jpg", + "response": "A blue bus is parked in a parking lot with other buses.", + "id": 34980 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b594_jpg.rf.a5ee929b236cd0cbc71ca46c25a07f40.jpg", - "response": "A group of people working at computers in a large office.", - "id": 36020 + "image_path": "G:\\images\\combined\\041b75da34d147c1.jpg", + "response": "A brick road with two trash bins sitting on it. The trash bins are white and have black graffiti on them. One of the trash bins has the words \"I'm With Stupid\" written on it.", + "id": 34981 }, { - "image_path": "G:\\images\\combined\\07-29-2021T02043028ee52121b594_jpg.rf.d03624fc765e71a1a36ae1e87b94d991.jpg", - "response": "A office with a lot of people working on computers. There are two people on the left and two people on the right. They are all wearing blue shirts. There are two large screens on the left and two large screens on the right. The room is filled with desks and chairs. The room is also filled with a lot of small black dots.", - "id": 36021 + "image_path": "G:\\images\\combined\\041b97c22e471715.jpg", + "response": "A man and a woman are on the cover of a magazine called Detective Stories. The woman is wearing a yellow dress and has red hair. She is on top of the man, who is wearing an orange jacket and a blue tie. They both have expressions of intense fear. The man is holding a gun in each hand. The gun in his right hand is pointed at the woman. The gun in his left hand is pointed at the ground. The magazine is priced at 25 cents.", + "id": 34982 }, { - "image_path": "G:\\images\\combined\\07-29-2021T06-04-3328ee52121b591_jpg.rf.07f34e8ec4b471a946c5f7db13f3f031.jpg", - "response": "A group of people are working on computers in a room.", - "id": 36022 + "image_path": "G:\\images\\combined\\041bf5b780cadd64.jpg", + "response": "A painting of a man sitting on a bench with a dog, both fishing on a lake.", + "id": 34983 }, { - "image_path": "G:\\images\\combined\\07-29-2021T06-04-3328ee52121b591_jpg.rf.ef2854f61b14325b00a19aede9939bbc.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 36023 + "image_path": "G:\\images\\combined\\041daf1caca34a6a.jpg", + "response": "The image shows a soccer match in progress with a crowd of fans watching the game. The players are wearing red and white uniforms and are on the field playing soccer.", + "id": 34984 }, { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5926_jpg.rf.5863d8d6ead3af56f4103ca4ae714dba.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 36024 + "image_path": "G:\\images\\combined\\041dbf701bfdcf90.jpg", + "response": "In the image, two basketball players are competing on the court. One player is wearing a white jersey and is dribbling a basketball while the other player is trying to block him. Both players have numbers on their backs, with the player in the white jersey having the number 35 and the player in the black jersey having the number 15.", + "id": 34985 }, { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5926_jpg.rf.5d63da4881dc8e5e8c575fde7a154905.jpg", - "response": "A group of people working on computers in a cubicle.", - "id": 36025 + "image_path": "G:\\images\\combined\\041ec086412e6d2f.jpg", + "response": "A close up of a cell phone and a sim card.", + "id": 34986 }, { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5927_jpg.rf.b458afc77dee4575cad75f3aaf41c05b.jpg", - "response": "A room with a mirrored wall and a row of desks.", - "id": 36026 + "image_path": "G:\\images\\combined\\041fdbfffee6abf5.jpg", + "response": "A pair of Casio Baby-G watches, one in yellow and one in pink, are shown on a wooden table. The yellow watch has a digital display with a white face and is covered in a light yellow band. The pink watch has a digital display with a white face and is covered in a light pink band. Both watches have the Casio logo on the face of the watch.", + "id": 34987 }, { - "image_path": "G:\\images\\combined\\07-29-2021T09-04-3428ee52121b5927_jpg.rf.ec172998b02d9fc2ee846c7bfecdff48.jpg", - "response": "A room full of computer work stations with people sitting at them.", - "id": 36027 + "image_path": "G:\\images\\combined\\04200d2abd0d0ad4.jpg", + "response": "Three people are sitting at a table.", + "id": 34988 }, { - "image_path": "G:\\images\\combined\\07-29-2021T19-04-3928ee52121b5927_jpg.rf.6262227adca3ced01ff9fe4ef6e2dda2.jpg", - "response": "a group of people working on computers in a cubicle setting", - "id": 36028 + "image_path": "G:\\images\\combined\\0420cc0fd3d5c48b.jpg", + "response": "A football locker room with a yellow and black uniform on a hook, a helmet on a hook above it, and a bench with more uniforms and shoes on it.", + "id": 34989 }, { - "image_path": "G:\\images\\combined\\07-29-2021T19-04-3928ee52121b5927_jpg.rf.6d595bf0a5a5f2b3ad07363814c77bb7.jpg", - "response": "A rain effect is applied to the image of a group of people working in cubicles. The people are sitting at desks and looking at computers. The image is taken through a glass wall that is covered in water droplets.", - "id": 36029 + "image_path": "G:\\images\\combined\\0421017b27bf1b7e.jpg", + "response": "A table with a plate of food, a glass of beer, and a bottle of beer on it.", + "id": 34990 }, { - "image_path": "G:\\images\\combined\\070210-F-4972P-219_JPG_jpg.rf.c6253b83d677cf18d3aa069acdf22398.jpg", - "response": "A man in a red hat and gloves is pouring cement into a wheelbarrow. Another man is standing behind him.", - "id": 36030 + "image_path": "G:\\images\\combined\\04227bf3dded146f.jpg", + "response": "A vintage ad for a motorhome with two models, one 21 feet and one 27 feet. The text is black and white.", + "id": 34991 }, { - "image_path": "G:\\images\\combined\\070210-F-4972P-244_JPG_jpg.rf.f168fd636eccf8368a87e347303aa191.jpg", - "response": "A man in a uniform and welding mask welding a metal frame.", - "id": 36031 + "image_path": "G:\\images\\combined\\0423c72e589a6638.jpg", + "response": "A man holding a cell phone in one hand and has a piece of candy in his mouth that says \"Text Me\" on it.", + "id": 34992 }, { - "image_path": "G:\\images\\combined\\070601-F-0725K-001_JPG_jpg.rf.28dcc4fa5dd888da999d5960bfa4e984.jpg", - "response": "a man in black shirt and camo pants standing next to a playground structure", - "id": 36032 + "image_path": "G:\\images\\combined\\0423d0352b712774.jpg", + "response": "A man wearing a red shirt and a man wearing a black sweatshirt are sitting in front of a computer screen. The computer screen is on and features the Google logo. There is a book next to the computer screen and a remote control in front of the men.", + "id": 34993 }, { - "image_path": "G:\\images\\combined\\0706665d45f75aa9.jpg", - "response": "A book and a cd are laying on a white sheet. The book is called \"Race Against The Machine\" and has a cover of a clock. The cd is titled \"The Machine\" and has a picture of a group of people on it.", - "id": 36033 + "image_path": "G:\\images\\combined\\0424168372e0a1b3.jpg", + "response": "A book with a red cover and the title \"Great Truths From God's Word\" sits open on a table. The book is about Systematic Theology and was written by Dr. Harold Willmington.", + "id": 34994 }, { - "image_path": "G:\\images\\combined\\0706d6f00f93c030.jpg", - "response": "A person is holding a bike with a bike computer on it.", - "id": 36034 + "image_path": "G:\\images\\combined\\0427bfe728325752.jpg", + "response": "A Coca-Cola delivery truck is parked on the side of a busy street.", + "id": 34995 }, { - "image_path": "G:\\images\\combined\\070a354ea162e868.jpg", - "response": "The image is a poster for an event called \"Izan zirelako gara... irabaziko dugu!\" The event is celebrating 20 years of Ekitaldia. The poster features a picture of a man with a mustache and beard and a woman with a flower in her hair. They are both looking at the camera. The man is wearing a tie and the woman is wearing a scarf. The text on the poster is in Basque.", - "id": 36035 + "image_path": "G:\\images\\combined\\0429f84e64fde002.jpg", + "response": "A close up of three wine bottles on a table.", + "id": 34996 }, { - "image_path": "G:\\images\\combined\\070c3a8a91f3daa6.jpg", - "response": "A book cover with a blue background and the title Destroyer of Worlds.", - "id": 36036 + "image_path": "G:\\images\\combined\\042a6c10ce6fc9bc.jpg", + "response": "A person is holding an iPhone in their hand.", + "id": 34997 }, { - "image_path": "G:\\images\\combined\\070d39fb68ae8d38.jpg", - "response": "In the image there are two old glass bottles and one blue bottle. The glass bottles are clear and one has a green tint, the other a yellow tint. The blue bottle is also clear and is placed on the right side of the image. The bottles are placed on a windowsill and the background is a green bush.", - "id": 36037 + "image_path": "G:\\images\\combined\\042eb9b918de8046.jpg", + "response": "A sign on a pole warning against drinking alcohol in the designated area.", + "id": 34998 }, { - "image_path": "G:\\images\\combined\\070d47f646990950.jpg", - "response": "A bottle of wine with a red and brown label that says \"Dissan\" on it.", - "id": 36038 + "image_path": "G:\\images\\combined\\042f7a2bca5d443b.jpg", + "response": "In the image there is a black smartphone and a blue stylus pen. The smartphone is an iPhone 4S and it is laying on its side. The stylus pen has a white body with a blue tip. It also has a rubber end and a cable attached to it. The cable is black and has a white ring at the end. The whole scene is set on a white background.", + "id": 34999 }, { - "image_path": "G:\\images\\combined\\071019_p1160098_jpg.rf.420267e64d72db039d34c7825ea47a97.jpg", - "response": "A man standing on a ladder in a house that is still under construction. The man is wearing a white shirt and tan pants. There are two other people in the house, one near the bottom left and one near the top right. There are two ladders, one being used by the man and the other leaning against the wall. There are two windows in the room, one on the left and one on the right. The room is filled with wood and insulation.", - "id": 36039 + "image_path": "G:\\images\\combined\\04300b302e117981.jpg", + "response": "The image shows a collection of stop signs lined up next to each other. There are eight stop signs in total, and they are all red with white lettering. Some of the signs have black poles, while others have white poles. The signs are displayed in front of a large building and some rocks.", + "id": 35000 }, { - "image_path": "G:\\images\\combined\\07107be46427c8e4.jpg", - "response": "A white van is parked on the street next to a black fence. There is a light post in front of the van and a shadow of the light post on the sidewalk.", - "id": 36040 + "image_path": "G:\\images\\combined\\0430a0f820c32887.jpg", + "response": "The image is a black and white photograph of a man in a suit handing a bag to a pilot of a small propeller plane. The plane says \"First Flight Air Mail\" on the side. There are two other men standing next to the pilot, and another man standing further back.", + "id": 35001 }, { - "image_path": "G:\\images\\combined\\0711f02a26fae0f9.jpg", - "response": "A computer monitor, keyboard and mouse sit on a desk.", - "id": 36041 + "image_path": "G:\\images\\combined\\04313abab1b6b4f2.jpg", + "response": "The image shows a baseball player wearing a blue uniform standing on a baseball field. The player is holding a baseball glove and is talking to another man who is wearing sunglasses. The baseball field has a grassy area and a dirt infield. There are several people scattered around the field, some of them are standing and some are sitting. A few baseballs are also visible in the scene.", + "id": 35002 }, { - "image_path": "G:\\images\\combined\\0712953fbfea4c76.jpg", - "response": "An iPhone with a black background and silver trim.", - "id": 36042 + "image_path": "G:\\images\\combined\\043155703315ea46.jpg", + "response": "A billboard with a man holding a microphone on it.", + "id": 35003 }, { - "image_path": "G:\\images\\combined\\0716526d212e39a3.jpg", - "response": "A table with a red table cloth has a jar with a metal lid, a jar with a plastic lid, and two bottles with orange tops and one with a red top.", - "id": 36043 + "image_path": "G:\\images\\combined\\0431ba997afecda0.jpg", + "response": "A busy city street with tall buildings and palm trees lining the sidewalks.", + "id": 35004 }, { - "image_path": "G:\\images\\combined\\0716bb43509ee885.jpg", - "response": "A watercolor painting of a pepper mill and a salt shaker.", - "id": 36044 + "image_path": "G:\\images\\combined\\043261edd9757b55.jpg", + "response": "A close up of a silver coin with an eagle on it.", + "id": 35005 }, { - "image_path": "G:\\images\\combined\\0717c45356a1eb5c.jpg", - "response": "A desk with a stack of white business cards on it.", - "id": 36045 + "image_path": "G:\\images\\combined\\04337563e7b1d18e.jpg", + "response": "A gold and silver Breitling Bentley watch on a dark surface.", + "id": 35006 }, { - "image_path": "G:\\images\\combined\\071cbc2a74310c4c.jpg", - "response": "A close up of a screen that says Experience on it.", - "id": 36046 + "image_path": "G:\\images\\combined\\0434ea33f3f9999f.jpg", + "response": "A close up of a laptop with a screen that says \"crazyegg. Ask us about our schwag\"", + "id": 35007 }, { - "image_path": "G:\\images\\combined\\071e2154d2e32470.jpg", - "response": "a window with many signs on it", - "id": 36047 + "image_path": "G:\\images\\combined\\0436d85c47531316.jpg", + "response": "A coin with the profile of a man on it.", + "id": 35008 }, { - "image_path": "G:\\images\\combined\\071ffcfc2501766c.jpg", - "response": "An Apple Watch is sitting on a silver charging stand on a wooden desk. The watch is in the middle of the stand and is connected to a white charger. The stand has a small figurine next to the watch. The figurine is white with black eyes and has a black design on its body. It has a mustache and is holding a cigarette.", - "id": 36048 + "image_path": "G:\\images\\combined\\0437802ef3dee315.jpg", + "response": "A pair of glasses with the word Hapter on the arm of them.", + "id": 35009 }, { - "image_path": "G:\\images\\combined\\07235c06a6c11675.jpg", - "response": "A white iPhone 5S is turned off and laying face up on a black counter. The home screen is showing several icons including Facebook, Twitter, and Airbnb.", - "id": 36049 + "image_path": "G:\\images\\combined\\043a59888f5bcb7b.jpg", + "response": "A store with wooden shelves filled with cleaning supplies.", + "id": 35010 }, { - "image_path": "G:\\images\\combined\\07252826b378b2e2.jpg", - "response": "A close up of a laptop computer with a graphic on the screen.", - "id": 36050 + "image_path": "G:\\images\\combined\\043b0ecb06fe4449.jpg", + "response": "An indoor basketball court with a large crowd of people watching the game. There are confetti and streamers strewn about the arena.", + "id": 35011 }, { - "image_path": "G:\\images\\combined\\072652dc1129ebdb.jpg", - "response": "A store with a table full of fresh fruit, including raspberries, blueberries, and blackberries.", - "id": 36051 + "image_path": "G:\\images\\combined\\043b140b45cda4e4.jpg", + "response": "A woman in an orange jacket pointing at a pink wall with the words Cupcake ATM.", + "id": 35012 }, { - "image_path": "G:\\images\\combined\\0726d870bea2f036.jpg", - "response": "A person holding a Samsung smart device with Chinese characters on the screen.", - "id": 36052 + "image_path": "G:\\images\\combined\\043dfe75266e1ac2.jpg", + "response": "The image shows a close up of the 2006 American Eagle silver dollar. The word \"Liberty\" is visible on the coin, along with the year \"2006\" and the word \"In God We Trust\" are also visible. The coin features an eagle and an olive branch.", + "id": 35013 }, { - "image_path": "G:\\images\\combined\\0726f0cf67ee070f.jpg", - "response": "A pile of Obama hats on a shelf in a store.", - "id": 36053 + "image_path": "G:\\images\\combined\\043ee67c7fb0a91a.jpg", + "response": "a desk with a pile of papers and notebooks on it", + "id": 35014 }, { - "image_path": "G:\\images\\combined\\072a991c2ccee346.jpg", - "response": "A kitchen counter with two pans of pizza on it. One pan is almost gone, while the other has a small piece missing.", - "id": 36054 + "image_path": "G:\\images\\combined\\04405957b0778fbb.jpg", + "response": "A stop sign on a city street corner at night.", + "id": 35015 }, { - "image_path": "G:\\images\\combined\\072f11eecc7b07c2.jpg", - "response": "A busy city street with lots of cars and people.", - "id": 36055 + "image_path": "G:\\images\\combined\\0440cabbf960c367.jpg", + "response": "A green and white bus is driving down a city street.", + "id": 35016 }, { - "image_path": "G:\\images\\combined\\0731a59a32d9810a.jpg", - "response": "A desk with two computer monitors.", - "id": 36056 + "image_path": "G:\\images\\combined\\0440e04be90d5cc6.jpg", + "response": "a large sign that reads welcome to Ohio", + "id": 35017 }, { - "image_path": "G:\\images\\combined\\0731c1b523ac2be7.jpg", - "response": "The image displays a digital Nike marathon running app. The app is red and white in color and has the text \"Fastest Half Marathon Run\" written at the top. Underneath the text is a red box with the number 13.1 inside it, implying that this is a half marathon. The time of 2:25:08 is displayed below the box, also in white. The entire display is displayed on a black background.", - "id": 36057 + "image_path": "G:\\images\\combined\\04417c13e509eb1e.jpg", + "response": "A man dressed as a security guard is sticking his head out of a red telephone box. He is wearing a black jacket and a black hat. The telephone box is red and has a sign above the window that says \"Telephone\". There is a crowd of people walking around him and the background. Some of them are wearing backpacks. The sky is blue and there are a few clouds.", + "id": 35018 }, { - "image_path": "G:\\images\\combined\\07326a2bacbf5832.jpg", - "response": "A black and white movie poster for the film A Kiss for Corliss. The main image is of a man in a suit and tie jumping into the air as a woman in a dress dances above him. They are both looking at something off-screen. To the right of the image is a smaller image of the same man and woman. The text on the poster includes the following: \"Man Alive... that's all she wants!\", \"Shirley Temple - David Niven (in CorlissClothes)\", \"A Kiss for Corliss\", \"James Nasser Directs\", \"Tom Tully (Producer)\", \"Virginia Welles, Darryl Hickman, Howard Dimsdale, Richard Wallace, Colin Miller\", and \"That kiss and Tell\" plot description.", - "id": 36058 + "image_path": "G:\\images\\combined\\0442ab5ce00a56fa.jpg", + "response": "A watch with a sundial on the face of it.", + "id": 35019 }, { - "image_path": "G:\\images\\combined\\07347fd77ad920ff.jpg", - "response": "A silver and black analog clock face.", - "id": 36059 + "image_path": "G:\\images\\combined\\04433c9aa7f56be9.jpg", + "response": "The image shows two men wearing baseball jerseys, one with the name Gwynn on it and the other with the name Ripken on it. The Gwynn jersey has the number 19 on the back and the Ripken jersey has the number 3 on the back. Both men are wearing their baseball caps backwards. In the background, there are other people wearing baseball caps.", + "id": 35020 }, { - "image_path": "G:\\images\\combined\\073c2a410be8d27c.jpg", - "response": "The image features three containers of Palmetto Cheese, the top container is labeled Palmetto Cheese Original, the middle container is labeled Palmetto Cheese Caramelized Onion, and the bottom container is labeled Palmetto Cheese Jalapeno. The containers are stacked on top of each other with the top one and bottom one having lids on. The middle container has a white lid with a blue palm tree on it. The containers are sitting on a woven place mat with a knife to the bottom left of the middle container. The knife has a white handle with Palmetto Cheese Soul Spreader written on it. There is a yellow flower and a purple flower to the left and right of the containers respectively.", - "id": 36060 + "image_path": "G:\\images\\combined\\0443cb53ea29b2b7.jpg", + "response": "Two black android mobile phones side by side. Each phone displays a Google search result for the term \"Organic Farming\". The first phone's search result is for Digital Inspiration's article on the topic. The second phone's search result is for a page from the official website of the Organic Farming Institute.", + "id": 35021 }, { - "image_path": "G:\\images\\combined\\073ea25e68b76ed9.jpg", - "response": "A basketball player in a white and red uniform goes up for a shot with the ball in his hand.", - "id": 36061 + "image_path": "G:\\images\\combined\\0444d36fbc4d2900.jpg", + "response": "A laptop computer screen with a webpage open.", + "id": 35022 }, { - "image_path": "G:\\images\\combined\\073f668cdc671c37.jpg", - "response": "A South African airplane is taking off from a runway.", - "id": 36062 + "image_path": "G:\\images\\combined\\04460d99f936e5fe.jpg", + "response": " A football player(290,4),(801,999) holding a trophy(34,522),(556,945) with another player(628,99),(995,988) standing next to him", + "id": 35023 }, { - "image_path": "G:\\images\\combined\\073f8898c62f14c1.jpg", - "response": "A sign that says Track 13 and has a list of train destinations and arrival times.", - "id": 36063 + "image_path": "G:\\images\\combined\\04482f0e8b1b3ce8.jpg", + "response": "A woman in a kitchen preparing food on a stove.", + "id": 35024 }, { - "image_path": "G:\\images\\combined\\073f8c9e048b2e42.jpg", - "response": "A red fire truck parked on the grass.", - "id": 36064 + "image_path": "G:\\images\\combined\\044888194de7e558.jpg", + "response": "A black and white cat laying on a bed next to a laptop.", + "id": 35025 }, { - "image_path": "G:\\images\\combined\\074218e285e575f7.jpg", - "response": "An open book with black text on white pages.", - "id": 36065 + "image_path": "G:\\images\\combined\\0448987c2d13acb4.jpg", + "response": "A busy city street at night with cars, bicycles, and pedestrians. There are many traffic lights scattered throughout the scene. A man and woman are walking down the street, the woman is looking at her phone. There are a few taxis on the street. In the background, there are many signs on the buildings.", + "id": 35026 }, { - "image_path": "G:\\images\\combined\\074562c78c95662f.jpg", - "response": "A display of electronics and speakers on a carpet.", - "id": 36066 + "image_path": "G:\\images\\combined\\0448fd2dcc67e8d7.jpg", + "response": "A brown and white van with graffiti on the side.", + "id": 35027 }, { - "image_path": "G:\\images\\combined\\074636cc00cf5f28.jpg", - "response": "a paper with a drawing of a person and a ruler next to it", - "id": 36067 + "image_path": "G:\\images\\combined\\0449a7e52afd9aca.jpg", + "response": "The image shows a large collection of road signs with various destinations and directions. There are at least 13 signs in total, including interstates 421, 87, 78, and 422, as well as a sign for a gas station. The signs are displayed on a pole and are in different shapes and sizes. Some signs have arrows pointing left, right, or both ways. The signs are written in English and provide guidance to drivers on how to get to their desired destinations.", + "id": 35028 }, { - "image_path": "G:\\images\\combined\\0746c253dc84cdb8.jpg", - "response": "A white sedan car with the license plate S6H 008.", - "id": 36068 + "image_path": "G:\\images\\combined\\0449ea367775e166.jpg", + "response": "A dalmatian dog is on the box of a product called Tagg. The dog is wearing the Tagg pet tracker on its collar. The box is on a white surface.", + "id": 35029 }, { - "image_path": "G:\\images\\combined\\074794555b8045a1.jpg", - "response": "A Dell computer monitor sitting on a desk.", - "id": 36069 + "image_path": "G:\\images\\combined\\044b07548ef2fe24.jpg", + "response": "A man wearing a shirt that says SISU is standing in front of a banner that says Hero 2014.", + "id": 35030 }, { - "image_path": "G:\\images\\combined\\0748104eb11ef902.jpg", - "response": "A stop sign with the word \"Hammer Time\" written underneath it.", - "id": 36070 + "image_path": "G:\\images\\combined\\044fa64086bf0a66.jpg", + "response": "In the image, a man is standing in front of a counter with a large fish on it. He is holding a large knife and is in the process of cutting the fish. The man is wearing a black jacket and a red hat. There are several boxes stacked up next to the counter and a sign above the counter that says \"World Famous\". There are also several signs hanging from the ceiling of the building. In the background, there are other people standing around.", + "id": 35031 }, { - "image_path": "G:\\images\\combined\\0748e0ea8edb0f47.jpg", - "response": "A bookshelf with many books on it.", - "id": 36071 + "image_path": "G:\\images\\combined\\045003b55a944c47.jpg", + "response": "In the image, there is a young man standing in front of a display of mouthwash at a store. The store is a pharmacy and is called Rexall. The man is smiling and has a camera around his neck. There are multiple bottles of mouthwash on the shelves behind him, including brands like Listerine, Aquafresh, and Scope. Some of the bottles are large and some are smaller. There are also some boxes on the shelves. In the background, there are other people shopping in the store.", + "id": 35032 }, { - "image_path": "G:\\images\\combined\\074ad26e7b153674.jpg", - "response": "The image features two keyboards sitting on a table. The first keyboard is an Apple keyboard and is wireless. The second keyboard is also wireless and is a silver keyboard. Both keyboards are positioned on a tan table.", - "id": 36072 + "image_path": "G:\\images\\combined\\04504c6e68b60236.jpg", + "response": "A counter with two cans of beans on it.", + "id": 35033 }, { - "image_path": "G:\\images\\combined\\074b3f912a522f25.jpg", - "response": "An iPod with a glowing screen that reads Hong Kong Phooey, Sublime, Saturday Morning Cartoons.", - "id": 36073 + "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.876efdbcbc3951e21bdb108792a7fe3e.jpg", + "response": "In the image there is a woman pushing a luggage cart with a toddler sitting on top of the luggage. The toddler is wearing a black and white striped hoodie and has a black mask covering their mouth and nose. They also have a yellow raincoat on. The woman pushing the cart has a black mask on and is wearing a tan jacket. She also has a black bag on her shoulder. The cart has two green suitcases and a red one. In the background there is a person walking with a black bag in their hand. To the far left of the image there is a person walking with their hand in their pocket. To the far right of the image there is a grey door with the letters B2c on it.", + "id": 35034 }, { - "image_path": "G:\\images\\combined\\074b91a0708b1838.jpg", - "response": "In the image there is a display of Nivea UV whitening serum in two tubes. The tubes are white and have a orange label. The left tube has a orange label and a green bar code. The right tube has a white label and a red bar code. The background of the image is blurry and it is raining outside.", - "id": 36074 + "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.c053f5d694db8076b9d9f96e8ad56dbb.jpg", + "response": "A family with a child wearing a face mask, pushing a luggage cart with two suitcases at the airport.", + "id": 35035 }, { - "image_path": "G:\\images\\combined\\074cf5b2304cd68f.jpg", - "response": "A ticket for a Radiohead concert on June 29th, 2008 at the Manchester LCCC.", - "id": 36075 + "image_path": "G:\\images\\combined\\0450908675_50159485_mutation-virus-chine-inquietude_jpg.rf.e9b1368cd7fd34d1f6c56f5fa3173415.jpg", + "response": "A family of three, a mother, father and child, all wearing protective masks, push their luggage through the airport.", + "id": 35036 }, { - "image_path": "G:\\images\\combined\\074e5821cbf4a1c6.jpg", - "response": "The USS Arizona Memorial is a white structure with windows on one side. It is located on a body of water and is surrounded by trees. There is an American flag flying on top of the memorial and a small boat is nearby.", - "id": 36076 + "image_path": "G:\\images\\combined\\04518da6e76f5cad.jpg", + "response": "A small assortment of Calvin Klein fragrances in a small black box.", + "id": 35037 }, { - "image_path": "G:\\images\\combined\\0751005cb5f8700c.jpg", - "response": "A plate of cookies with the letter M on them.", - "id": 36077 + "image_path": "G:\\images\\combined\\045253fa10edd1a4.jpg", + "response": "A black laptop sitting on top of a pink stand.", + "id": 35038 }, { - "image_path": "G:\\images\\combined\\0752789d7704e67f.jpg", - "response": "A person holding a blue box of dishwasher tablets.", - "id": 36078 + "image_path": "G:\\images\\combined\\0452b4bb991a1941.jpg", + "response": "A stack of books with German writing on the spines.", + "id": 35039 }, { - "image_path": "G:\\images\\combined\\075474f31e9ed1aa.jpg", - "response": "A cardboard box with fragile stickers on it.", - "id": 36079 + "image_path": "G:\\images\\combined\\0454857dc644512c.jpg", + "response": "An old bottle of Moth Dep is sitting on a concrete floor. The bottle is almost empty and has a black label with a fly on it. The bottle has a screw on cap and the words Moth Dep are written on the bottle.", + "id": 35040 }, { - "image_path": "G:\\images\\combined\\0754db67aa86fea2.jpg", - "response": "A large stack of fireworks in boxes, with the top box reading \"King Hell\" and the box below that reading \"Gold Willow\".", - "id": 36080 + "image_path": "G:\\images\\combined\\04570d4010283f6b.jpg", + "response": "A highway sign for 97 North and Crater Lake Bend.", + "id": 35041 }, { - "image_path": "G:\\images\\combined\\07552784ea72df13.jpg", - "response": "A man standing behind a shopping cart filled with lots of alcohol.", - "id": 36081 + "image_path": "G:\\images\\combined\\045879ea197c81c0.jpg", + "response": "In the image there is a table with several glasses filled with water and a lit candle in the middle. The candle has an A and O symbol on it.", + "id": 35042 }, { - "image_path": "G:\\images\\combined\\075537687de06634.jpg", - "response": "A large white billboard is standing tall in a city. The billboard is located near a gas station and other smaller signs. There are cars parked in the area and a tree can be seen in the background.", - "id": 36082 + "image_path": "G:\\images\\combined\\045884a48efbc3bc.jpg", + "response": "A computer monitor with Yahoo on the screen.", + "id": 35043 }, { - "image_path": "G:\\images\\combined\\07555f006bf88be4.jpg", - "response": "An open book with many pages and a wooden cover.", - "id": 36083 + "image_path": "G:\\images\\combined\\0459d85ff87ea745.jpg", + "response": "A display case with a vintage cabbage patch doll sitting next to a book called \"How to Tell Time\". The doll is wearing a pink dress and has brown hair.", + "id": 35044 }, { - "image_path": "G:\\images\\combined\\075747666badfb42.jpg", - "response": "A large sign on the side of a building that says \"If Mitt had storage he'd be able to find his tax returns.\"", - "id": 36084 + "image_path": "G:\\images\\combined\\045a2d11c9896291.jpg", + "response": "A chalkboard with writing on it and a drawing of a man.", + "id": 35045 }, { - "image_path": "G:\\images\\combined\\07575908b6346ed1.jpg", - "response": "A man in a suit and bowler hat is seen from behind, looking at a wall with several objects painted on it. These include a telephone, a carrot, a green and red fish, a floating coin, and a suitcase. The man's tie is also visible. The background shows a blue sky and a body of water.", - "id": 36085 + "image_path": "G:\\images\\combined\\045b5f7f4138d671.jpg", + "response": "A sound mixing board with a large number of buttons and switches.", + "id": 35046 }, { - "image_path": "G:\\images\\combined\\075a2300bae4df62.jpg", - "response": "A wooden ruler is placed on a black counter. The ruler is made by RENVIL and has markings at 1, 2, 3, 4, 5, 6, 7, 8, 9, and 10 inches.", - "id": 36086 + "image_path": "G:\\images\\combined\\045beef8d828d4a1.jpg", + "response": "A bottle of A1 steak sauce sitting on a stove next to a bottle of oil.", + "id": 35047 }, { - "image_path": "G:\\images\\combined\\075b33938025d228.jpg", - "response": "A grocery store filled with lots of food on the shelves.", - "id": 36087 + "image_path": "G:\\images\\combined\\045c3bb25c6c57ff.jpg", + "response": "A glass of Alaskan Pale next to a can of Keesari 66 American Pale Ale.", + "id": 35048 }, { - "image_path": "G:\\images\\combined\\075bdbd708ff66a7.jpg", - "response": "The Kohl Center is a large arena full of people watching a hockey game. The scoreboard is large and in the middle of the arena. There are many flags hanging from the ceiling, including an American flag and a Wisconsin flag. The fans are sitting in their seats and watching the game.", - "id": 36088 + "image_path": "G:\\images\\combined\\045c87545dd0a0aa.jpg", + "response": "A woman standing in front of a pile of pizza boxes, holding a slice of pizza.", + "id": 35049 }, { - "image_path": "G:\\images\\combined\\075cd223c847ab34.jpg", - "response": "a black and silver rolex watch on a green surface", - "id": 36089 + "image_path": "G:\\images\\combined\\045d876ee0128ea2.jpg", + "response": "A baseball player is up to bat on a field.", + "id": 35050 }, { - "image_path": "G:\\images\\combined\\075cdb3cb68e5954.jpg", - "response": "A Sony Xperia phone sits on a glass table.", - "id": 36090 + "image_path": "G:\\images\\combined\\045e2f6f4b41fd53.jpg", + "response": "A bottle of Frenchman's beer sits on a counter next to a stove.", + "id": 35051 }, { - "image_path": "G:\\images\\combined\\075d182b04a459de.jpg", - "response": "A close up of a watch face with a blue background. The watch is a Lorus brand and has a chronograph feature.", - "id": 36091 + "image_path": "G:\\images\\combined\\045e6da6fd7f6fb0.jpg", + "response": "A van with a blue and yellow stripe on the side.", + "id": 35052 }, { - "image_path": "G:\\images\\combined\\075d2820d8701f94.jpg", - "response": "a black and white watch in someones hand", - "id": 36092 + "image_path": "G:\\images\\combined\\045ebe381e4c7c5a.jpg", + "response": "A record album cover for J.S. Bach (2) Organ Works.", + "id": 35053 }, { - "image_path": "G:\\images\\combined\\075feb565ce68b25.jpg", - "response": "A bicycle is parked on the sidewalk next to a pole with a street sign on it. The sign is red and white and has a exclamation point on it. There are two other signs on the pole as well. The street is empty and there are no other people or vehicles visible in the image.", - "id": 36093 + "image_path": "G:\\images\\combined\\045f38445261b7b0.jpg", + "response": "A street with cars parked on the side and a white van parked across the street. There are houses on the left side of the street and a fence along the sidewalk.", + "id": 35054 }, { - "image_path": "G:\\images\\combined\\07641e1c716c84b0.jpg", - "response": "A can of diet coke sits on a wooden table.", - "id": 36094 + "image_path": "G:\\images\\combined\\045fae80de7ded9e.jpg", + "response": "A person holding a quarter in their hand. The quarter has a picture of a woman on it and the year 1996.", + "id": 35055 }, { - "image_path": "G:\\images\\combined\\07647ef7281becf4.jpg", - "response": "A man in a safety vest is standing in the street, directing a white van. The van is stopped at a red light. There are palm trees in the background.", - "id": 36095 + "image_path": "G:\\images\\combined\\0460bcb669cfb9c1.jpg", + "response": "A book cover with the title \"D\u00e9civilisation\" written in gold font. The cover is black and white, and features a photo of a road running parallel to the ocean. The road has a white stripe down the middle, and the ocean is a dark grey color. The author's name, Renaud Camus, is written in small white font at the top of the cover.", + "id": 35056 }, { - "image_path": "G:\\images\\combined\\0766e9690e125eed.jpg", - "response": "An iPhone 3G in its box on a table.", - "id": 36096 + "image_path": "G:\\images\\combined\\0461cddb4f0a6d44.jpg", + "response": "A billboard with a man on it is seen in the distance.", + "id": 35057 }, { - "image_path": "G:\\images\\combined\\076b7a46040688f6.jpg", - "response": "A black Lenovo desktop computer sitting on a desk.", - "id": 36097 + "image_path": "G:\\images\\combined\\046210929f901830.jpg", + "response": "A bottle of Smirnoff vodka and a bottle of Kahlua are on a counter next to a glass filled with ice and a brown liquid.", + "id": 35058 }, { - "image_path": "G:\\images\\combined\\076baefcc8cb8217.jpg", - "response": "A small cardboard box with a red and brown design on it.", - "id": 36098 + "image_path": "G:\\images\\combined\\0463019e2583eaad.jpg", + "response": "a car on a street (92,363),(832,778)", + "id": 35059 }, { - "image_path": "G:\\images\\combined\\076bb00e6a7c6c82.jpg", - "response": "a group of people are doing an obstacle course", - "id": 36099 + "image_path": "G:\\images\\combined\\0464a1dafaa33d6d.jpg", + "response": "A person holding a small box with the Intel NUC logo on it. The box is blue and has a small Intel processor inside.", + "id": 35060 }, { - "image_path": "G:\\images\\combined\\076d2d0070ac74b7.jpg", - "response": "A wall of red metal cabinets with the words H-LINE on them.", - "id": 36100 + "image_path": "G:\\images\\combined\\046755bc157991a6.jpg", + "response": "A wine tasting event for Cape Mentelle wines.", + "id": 35061 }, { - "image_path": "G:\\images\\combined\\0773758807ce847f.jpg", - "response": "A man holding a Samsung smart device, taking a picture of himself in the mirror with the camera on the phone.", - "id": 36101 + "image_path": "G:\\images\\combined\\04677496a07ad15f.jpg", + "response": "A brown book with gold writing and a gold decorative border.", + "id": 35062 }, { - "image_path": "G:\\images\\combined\\07737659a761bdf2.jpg", - "response": "A wooden box with a map on the top of it.", - "id": 36102 + "image_path": "G:\\images\\combined\\04693a7b63e32cf7.jpg", + "response": "a black helmet with a silver emblem on it", + "id": 35063 }, { - "image_path": "G:\\images\\combined\\07739a86c0e12ac3.jpg", - "response": "A phone screen with a green background. On the screen is an app that says \"Snapkeep\" in bold white letters. Below the name of the app are four options. The first is \"Emily\", the second is \"Courtney\", the third is \"Oliver\" and the last is \"Emily\". Underneath each name is a red checkmark and a time stamp. From left to right, the time stamp says \"Sent 23 minutes ago\", \"Opened 31 minutes ago\", \"Sent 32 minutes ago\", \"Opened 33 minutes ago\", \"Sent 32 minutes ago\", \"Opened 33 minutes ago\", \"Sent 35 minutes ago\", and \"Opened 34 minutes ago\". At the bottom of the screen is a button that says \"Starts\".", - "id": 36103 + "image_path": "G:\\images\\combined\\046b85a27098c135.jpg", + "response": "A mural of people planting potatoes on the side of a building.", + "id": 35064 }, { - "image_path": "G:\\images\\combined\\0774e6038511497f.jpg", - "response": "A man holding a cell phone displaying a text message.", - "id": 36104 + "image_path": "G:\\images\\combined\\046be154a29204c7.jpg", + "response": "A person holding a bottle of Atomic Pale Ale.", + "id": 35065 }, { - "image_path": "G:\\images\\combined\\07759da518969fdd.jpg", - "response": "A silver Honda Civic is driving down the highway.", - "id": 36105 + "image_path": "G:\\images\\combined\\046d67caf75be1d5.jpg", + "response": "A person holding a large screened smart device.", + "id": 35066 }, { - "image_path": "G:\\images\\combined\\0776094a24911ee6.jpg", - "response": "In the image there is a coin laying on a table. The coin is a 2004 edition of the 10 Kroner coin from Denmark. The table is a light brown color and the coin is sitting on its side. The year 1999 is written on the coin.", - "id": 36106 + "image_path": "G:\\images\\combined\\046d94cb24a190f8.jpg", + "response": "A row of different energy drinks on a blue shelf.", + "id": 35067 }, { - "image_path": "G:\\images\\combined\\07765e0f50c3c7ea.jpg", - "response": "A street scene with a street sign, traffic lights, and cars.", - "id": 36107 + "image_path": "G:\\images\\combined\\0471a50503f5bde8.jpg", + "response": "A bottle of Chateau du Croc wine on a wooden table.", + "id": 35068 }, { - "image_path": "G:\\images\\combined\\07788c82bbbd1887.jpg", - "response": "A Budweiser clock that is lit up and sitting on a mantle.", - "id": 36108 + "image_path": "G:\\images\\combined\\0472e069e5ad0243.jpg", + "response": "A green and silver train is on the tracks.", + "id": 35069 }, { - "image_path": "G:\\images\\combined\\0779f34fe1c7970c.jpg", - "response": "An open refrigerator filled with a variety of food and drinks.", - "id": 36109 + "image_path": "G:\\images\\combined\\04750d0d531a2b89.jpg", + "response": "The soccer teams are lined up before the game.", + "id": 35070 }, { - "image_path": "G:\\images\\combined\\077aa9db6a1580ce.jpg", - "response": "A group of women playing volleyball in a gym. They are all wearing uniforms and are on opposite sides of the net. Some of the women are jumping to hit the ball.", - "id": 36110 + "image_path": "G:\\images\\combined\\0478a1e3f77600df.jpg", + "response": "A group of young men playing basketball in a gym.", + "id": 35071 }, { - "image_path": "G:\\images\\combined\\077c8dc39de85172.jpg", - "response": "A Nikkor Lens box with a red bow on it.", - "id": 36111 + "image_path": "G:\\images\\combined\\0479b034bd1d95f6.jpg", + "response": "A traffic officer vehicle is parked on the side of the road.", + "id": 35072 }, { - "image_path": "G:\\images\\combined\\077fadddad9683b8.jpg", - "response": "a car with a license plate that says jalisco on it", - "id": 36112 + "image_path": "G:\\images\\combined\\0479fc1e2ed29881.jpg", + "response": "A colorful passenger bus is driving down the street.", + "id": 35073 }, { - "image_path": "G:\\images\\combined\\07801d3c0cb15ddd.jpg", - "response": "A person holding a cell phone next to a cup of coffee.", - "id": 36113 + "image_path": "G:\\images\\combined\\047a0a11e087b2df.jpg", + "response": "A sign for the Yardley Wood Park & Ride is shown on a pole.", + "id": 35074 }, { - "image_path": "G:\\images\\combined\\0780adb6e06cf325.jpg", - "response": "A baseball player wearing a blue jersey with the number 10 on the back.", - "id": 36114 + "image_path": "G:\\images\\combined\\047a50e898503aae.jpg", + "response": "In the image there is a person wearing a red and black uniform playing soccer. They are kicking a soccer ball on a field.", + "id": 35075 }, { - "image_path": "G:\\images\\combined\\07811803c71826dd.jpg", - "response": "A computer monitor is sitting on a desk next to a keyboard. The monitor is a flat screen Apple computer. A laptop is also sitting on the desk. A chair is in front of the desk.", - "id": 36115 + "image_path": "G:\\images\\combined\\047aa1c75ca83280.jpg", + "response": "The Seventh Letter art piece on display next to a graffiti painting of a man with a gun.", + "id": 35076 }, { - "image_path": "G:\\images\\combined\\0782a21a2538f868.jpg", - "response": "An airplane with the word Airbus on the side flying in the sky.", - "id": 36116 + "image_path": "G:\\images\\combined\\047cbb95fbc2434d.jpg", + "response": "A black and silver watch on a black and green surface.", + "id": 35077 }, { - "image_path": "G:\\images\\combined\\0784325e04942634.jpg", - "response": "A white board with several diagrams written on it in marker.", - "id": 36117 + "image_path": "G:\\images\\combined\\047d7772e616cbc5.jpg", + "response": "A large billboard advertisement for a store called Heel Addiction.", + "id": 35078 }, { - "image_path": "G:\\images\\combined\\558ac8f533af7ae2.jpg", - "response": "Initial Analysis: The image is a page from a magazine or catalog, featuring a job posting for a PSS Life Cycle Marketing Manager position. The job posting is for a company called HP Enterprise Services, LLC, located in Boise, ID. The position requires a candidate with experience in marketing and a strong understanding of the product/service/solution life cycle. The job posting includes contact information for the hiring manager, reference information, and instructions for submitting a resume.\nDetailed Reasoning: The image shows a printed page from a magazine or catalog, likely a job posting for a PSS Life Cycle Marketing Manager position at HP Enterprise Services, LLC. The job posting is printed in black ink on white paper and is accompanied by a small photo of a climate monitor. The text is organized into several sections, including the company name, job title, requirements, and contact information. The job posting is written in clear and concise language, making it easy for potential candidates to understand the requirements and apply for the position.\nVisual References: The job posting is accompanied by a small photo of a climate monitor, which is printed in black ink on white paper. The photo is located to the left of the job posting and is relatively small in size. There are no other visual references in the image.\nConclusion or Solution: The image shows a printed page from a magazine or catalog, featuring a job posting for a PSS Life Cycle Marketing Manager position at HP Enterprise Services, LLC. The job posting includes information about the requirements for the position, as well as contact information for the hiring manager. The image does not include any additional visual information beyond the job posting and the small photo of the climate monitor.", - "id": 36118 + "image_path": "G:\\images\\combined\\047e5fbd2bf76876.jpg", + "response": "A stamp on a piece of mail with a picture of a man in red handing money to a child.", + "id": 35079 }, { - "image_path": "G:\\images\\combined\\558e276994e07110.jpg", - "response": "Google Developer Day 2008 is a conference for developers to learn about Google's products and services. In the image, a man is standing at a podium in front of a large screen that says \"Google Developer Day 2008.\" The man is likely giving a presentation or talk at the conference.", - "id": 36119 + "image_path": "G:\\images\\combined\\047efe4a7f176cca.jpg", + "response": "The back of a car with a license plate that says \"Future Ford\" on it.", + "id": 35080 }, { - "image_path": "G:\\images\\combined\\558eeca5623c5df6.jpg", - "response": "Initial Analysis: The image shows a variety of items arranged on a wooden surface. There is a cell phone, a pocket knife, a watch, a wallet, a flashlight, and a spoon. The items appear to be intentionally displayed, possibly for a photography project or as a representation of everyday carry (EDC) items.\nDetailed Reasoning: The presence of a cell phone, pocket knife, and watch suggests that these items are commonly carried by individuals as part of their daily routine. The wallet and flashlight indicate that the person carrying these items may need to carry cash and tools for various tasks. The spoon could be a personal item or a tool for eating. The arrangement of these items on a wooden surface implies that they are being displayed for a specific purpose, such as a photography project or an EDC showcase.\nVisual References: I have used arrows and circles to highlight specific items and their relationships to each other. For example, I have drawn an arrow from the pocket knife to the cell phone to indicate that they are both part of a person's EDC.\nConclusion or Solution: Based on the arrangement and the items displayed, it can be inferred that the person carrying these items is likely a person who carries these items as part of their daily routine. The items are likely used for various tasks and activities, such as communication, tools, and personal use.\nReflection: The process of analyzing the image was relatively straightforward, as the items were clearly visible and arranged in a way that made it easy to identify their purpose. However, there was some ambiguity in interpreting the spoon, as it could be either a personal item or a tool. Overall, I am confident in my interpretation of the image, but I recognize that there may be other interpretations or explanations that could be valid.", - "id": 36120 + "image_path": "G:\\images\\combined\\047f55a198882d7c.jpg", + "response": "A city street at night with a tunnel and multiple traffic signs.", + "id": 35081 }, { - "image_path": "G:\\images\\combined\\558f6df5aa49aaf9.jpg", - "response": "Initial Analysis: The image depicts a cluttered office with a desk in the foreground that has a typewriter on it. The desk is surrounded by a bookshelf filled with numerous books, and there is a lamp on the desk. The room also has a wall with writing on it. The office appears to be used for writing and reading books.\nDetailed Reasoning: The cluttered nature of the office suggests that the person working in this space may have a busy schedule or a tendency to work on multiple projects simultaneously. The presence of a typewriter on the desk indicates that the person may be involved in writing or publishing work. The bookshelf filled with books suggests that the person is interested in reading and learning, and the writing on the wall could be a personal statement or a piece of writing that the person has created.\nThe writing on the wall could be a personal statement or a piece of writing that the person has created. The cluttered nature of the office suggests that the person may have a busy schedule or a tendency to work on multiple projects simultaneously. The presence of a typewriter on the desk indicates that the person may be involved in writing or publishing work. The bookshelf filled with books suggests that the person is interested in reading and learning.\nConclusion or Solution: The image shows a cluttered office with a desk that has a typewriter on it. The office is filled with books and has writing on the wall, indicating that the person working in this space is likely involved in writing or publishing work. The cluttered nature of the office suggests that the person may have a busy schedule or a tendency to work on multiple projects simultaneously.", - "id": 36121 + "image_path": "G:\\images\\combined\\047fc464e23ef72e.jpg", + "response": "The image features a white table covered in various makeup items. There are several red roses scattered around the table, with a cluster of them in the top left corner. A book with the title \"Happy Valentine\" is open on the table, placed in the top right corner. A bouquet of red roses is also present on the table, with a single red rose in the middle of the bouquet.", + "id": 35082 }, { - "image_path": "G:\\images\\combined\\558f75f7cc89f100.jpg", - "response": "The image shows an old Apple Disk II computer, which is a vintage electronic device. The computer has the Apple logo on it, and there are stickers on the lid of the Disk II. The stickers have the Apple logo and the words \"Apple II\" on them. The computer is sitting on a white surface.", - "id": 36122 + "image_path": "G:\\images\\combined\\04803895d45eab1e.jpg", + "response": "In the image there is a bottle of JAC Vapour Spearmint e-liquid and a silver eGo style atomizer sitting on a white counter. The bottle of e-liquid is open and has a white cap with a plastic dropper. The label on the bottle is white with red and black writing. The atomizer is made of stainless steel and has a window in the side to show the amount of e-liquid inside.", + "id": 35083 }, { - "image_path": "G:\\images\\combined\\558_png.rf.1ff45e4abafbff1264d03e6150fbbd1e.jpg", - "response": "Initial Analysis: The image shows a person standing on a street corner, with a car parked nearby. The person appears to be holding a cell phone, and there is a traffic light in the background. The person is also wearing a backpack.\nDetailed Reasoning: The person standing on the street corner with a backpack and a cell phone could be waiting for a ride or waiting for a bus. The traffic light in the background indicates that this is a busy street, and the parked car suggests that there is parking available. The backpack may contain personal belongings or work materials, and the cell phone could be used for communication or navigation.\nThe person's posture and facial expression may provide additional clues about their mood or intentions. For example, if the person is looking tense or anxious, it could indicate that they are waiting for something important, such as a job interview or a meeting with a friend.\nVisual References: Arrows and circles could be used to highlight the person, the backpack, the cell phone, and the traffic light. This would help to emphasize the key elements of the image and make it easier to understand.\nConclusion or Solution: Based on the visual information, it is likely that the person is waiting for a ride or a bus on a busy street. The backpack and cell phone suggest that they may be carrying personal belongings or using the phone for communication or navigation. The traffic light in the background indicates that this is a busy area, and the parked car suggests that parking is available.", - "id": 36123 + "image_path": "G:\\images\\combined\\0480a6034f35ac0a.jpg", + "response": "A white car with a license plate that says UR SO QT.", + "id": 35084 }, { - "image_path": "G:\\images\\combined\\558_png.rf.998038eb41a0e0c35047b7871ebe51d4.jpg", - "response": "The image is a visual puzzle, featuring a black and white photo of a person running in the rain. The person is wearing a backpack and appears to be running towards a car. The puzzle is incomplete, with only a portion of the image visible.\nMy initial analysis of the image is that it could be a scene from a movie or a photoshoot. The person running in the rain could be trying to escape something, or could be participating in a race. The car in the background could be a crucial element of the scene, perhaps indicating that the person is trying to reach a specific location.\nTo solve the puzzle, I would need to see the full image to understand the context and the story being told. Without the full image, it is difficult to determine the exact meaning or purpose of the scene.\nIn terms of visual references, I would use arrows or circles to point out the key elements of the image, such as the person running, the car, and the backpack. I would also use annotations to explain my reasoning and provide context for the scene.\nIn conclusion, the puzzle is a visual representation of a scene from a movie or photoshoot, with a person running in the rain towards a car. The full context of the scene is not available, and it is difficult to determine the exact meaning or purpose of the scene without the full image.", - "id": 36124 + "image_path": "G:\\images\\combined\\0480c08390f4641e.jpg", + "response": "A barrel that says do not enter private property is sitting in a parking lot.", + "id": 35085 }, { - "image_path": "G:\\images\\combined\\5594ed8311513006.jpg", - "response": "The image shows a close-up of a measuring tape on top of a piece of fabric. The measuring tape is in inches and is measuring the fabric, which is a shiny silver color. The fabric is folded and stacked on top of itself, with the measuring tape running along the top edge. The background of the image is a blue table.", - "id": 36125 + "image_path": "G:\\images\\combined\\0482353455f698a0.jpg", + "response": "a man running in a race", + "id": 35086 }, { - "image_path": "G:\\images\\combined\\559cd405fb7d78bb.jpg", - "response": "Initial Analysis: The image shows a white model of a Mil Mi-24D Hind helicopter on a green cutting mat. The model appears to be in the process of being built, as it is missing some parts, such as the tail rotor and the tail assembly. The cutting mat is a large piece of plastic that is used to protect the working surface while building the model. The model is sitting on top of the mat, which is placed on a table.\nDetailed Reasoning: The model of the Mil Mi-24D Hind helicopter is likely being built as a hobby or for a project. The fact that some parts are missing suggests that the builder is still in the process of assembling the model. The cutting mat is used to protect the working surface, such as a table or desk, from damage caused by the model's parts. The mat also helps to keep the parts organized and prevent them from rolling off the working surface.\nThe model is white, which is likely a paint or spray paint finish. The paint is used to give the model a realistic appearance and to protect the plastic parts from damage. The fact that the model is missing some parts indicates that it is still in the process of being built. The builder may have taken a break from building the model or may have decided to work on another part first.\nReflection: Building a model requires patience and attention to detail. The builder must carefully assemble the parts and ensure that they fit together correctly. The use of a cutting mat is an important step in the building process, as it helps to keep the parts organized and protected. The fact that the model is missing some parts suggests that the builder may have encountered some challenges while building the model. Overall, the image provides a glimpse into the world of model building and the attention to detail required to create a realistic representation of a helicopter.", - "id": 36126 + "image_path": "G:\\images\\combined\\04843fecd87e6e73.jpg", + "response": "An iPod Nano with a screen that says \"Don't steal music.\" in multiple languages.", + "id": 35087 }, { - "image_path": "G:\\images\\combined\\559d1896539afa26.jpg", - "response": "Initial Analysis: The image shows a bottle of Cantillon Gueuze 100% Lambic Bio on a table next to a glass filled with the beverage. Based on the visual cues, it can be inferred that this is a type of beer.\nDetailed Reasoning: Cantillon is a Belgian brewery known for producing traditional Lambic beers, which are characterized by their sour and fruity flavors. Gueuze is a type of Lambic beer that is made from a blend of young and aged beer, giving it a unique flavor profile. The 100% Lambic Bio label on the bottle suggests that the beer is made with only the finest quality ingredients, without any added preservatives or other additives.\nThe glass filled with the beverage provides a visual representation of the beer's color and clarity. If the beer is well-preserved, it should appear clear and have a golden color with a white head. The aroma of the beer should be fruity and sour, with hints of yeast and funkiness.\nIn terms of taste, Gueuze is known for its tart and sour flavor, with a dry finish. The fruity flavors come from the yeast and the addition of fruit, such as cherries or apricots. The carbonation in the beer provides a refreshing and crisp mouthfeel.\nThe bottle and glass are placed on a table, which suggests that the beer is ready to be enjoyed. It could be served as an aperitif, paired with appetizers or light meals, or enjoyed as a nightcap.\nReflection: The visual cues in the image provide a clear representation of the Cantillon Gueuze 100% Lambic Bio. The bottle and glass together with the label on the bottle provide a complete representation of the beer. The visual representation of the beer's color and clarity, aroma, and taste is helpful in understanding the beer's characteristics. The placement of the bottle and glass on a table suggests that the beer is ready to be enjoyed. Overall, the image provides a clear representation of the Cantillon Gueuze 100% Lambic Bio.", - "id": 36127 + "image_path": "G:\\images\\combined\\0485186acd3d57ed.jpg", + "response": "A person is holding a caliper over a green background. The caliper is measuring a silver ring that is being held. The measurement is 29.4.", + "id": 35088 }, { - "image_path": "G:\\images\\combined\\559d4b31a39c63ce.jpg", - "response": "Initial Analysis: The image shows a row of books on a bookshelf. The books are labeled \"The Anatomy of Melancholy\" and are edited by Thomas C. Faulkner, Nicolas R. Katsiling, and Rhonda L. Blair. Based on the labels, it is likely that these books are a collection of essays or studies on the topic of melancholy. The books are arranged in a row, with the spines facing forward, and are all part of the same series.\nDetailed Reasoning: The books on the bookshelf are labeled \"The Anatomy of Melancholy,\" which suggests that they are related to the topic of melancholy. The fact that they are edited by different authors indicates that they likely offer different perspectives or approaches to the subject. The books are arranged in a row, with the spines facing forward, which suggests that they are meant to be easily accessible for readers. The bookshelf itself is black and white, which could be a stylistic choice or simply a matter of the photograph's color scheme.\nVisual References: I have used arrows to point out the book titles and authors, as well as the editor's name, to provide more context for the reader. I have also used arrows to point out the row of books on the bookshelf, to show that they are all part of the same series.\nConclusion or Solution: Based on the visual information, it can be concluded that the books on the bookshelf are related to the topic of melancholy, and are edited by different authors. The books are arranged in a row, with the spines facing forward, and are all part of the same series. The bookshelf itself is black and white.", - "id": 36128 + "image_path": "G:\\images\\combined\\0486a158aa01b171.jpg", + "response": "a drawing of a man and a snowman", + "id": 35089 }, { - "image_path": "G:\\images\\combined\\559e64df49adf054.jpg", - "response": "The image shows a bottle and a glass filled with a dark beer. The label on the bottle reads \"Anchor Porter\". The bottle is standing next to the glass, which is half full. The beer has a dark color and appears to be a porter style beer. Based on the visual information, it can be concluded that this is a bottle and a glass of Anchor Porter beer.", - "id": 36129 + "image_path": "G:\\images\\combined\\048861579d49cdec.jpg", + "response": "a desk with a coffee mug and a coaster on it.", + "id": 35090 }, { - "image_path": "G:\\images\\combined\\559_png.rf.6ed922e6a56cbf6dbfa2fd1ea894c6ef.jpg", - "response": "Initial Analysis: In the image, there is a man standing at a checkout counter in a grocery store. He is holding a plate of food and appears to be checking out. There are other people in the store as well, including a woman standing behind the checkout counter and another person nearby. The store has a checkout counter with a cash register and several boxes and bags scattered around the floor. The man at the checkout counter is wearing a blue jacket and glasses.", - "id": 36130 + "image_path": "G:\\images\\combined\\04889f6aaddad68f.jpg", + "response": "A store shelf filled with bottles of coke.", + "id": 35091 }, { - "image_path": "G:\\images\\combined\\55a327379bc5038b.jpg", - "response": "Upon examining the image, I can see a silver coin with a knight on a horse in the center. The coin has Latin writing on it, and there is a date circled in red. Based on the visual information, I can make some initial observations and start forming hypotheses.\nInitial Analysis: The silver coin with a knight on a horse suggests that it might be a medieval-era coin. The Latin writing and the date circled in red indicate that it could be a rare or valuable coin. The presence of the date could imply that it is an antique or historical item.\nDetailed Reasoning: The silver material of the coin indicates that it is likely made of silver, which was a valuable metal during the medieval era. The knight on a horse depicted on the coin suggests that it could be a representation of a king or a victorious warrior. The Latin writing on the coin could be a representation of the date of minting or the name of the king or country that issued the coin.\nThe red circle around the date could indicate that it is a significant date or that it is a rare or unique feature of the coin. The fact that the coin is circled in red could also suggest that it is a valuable or rare item.\nVisual References: To support my reasoning, I have added arrows and circles to highlight the key elements of the coin, such as the silver material, the knight on a horse, and the Latin writing.\nConclusion or Solution: Based on my detailed reasoning, I can conclude that the silver coin with a knight on a horse and the Latin writing is likely a medieval-era coin. The red circle around the date suggests that it is a significant date or a rare feature of the coin. The coin could be a valuable or rare item, and it could be worth researching further to determine its authenticity and value.", - "id": 36131 + "image_path": "G:\\images\\combined\\048ae9f1adca1528.jpg", + "response": "A book cover for the novel Manhounds of Antares, by Alan Burt Akers. The cover art is black and red, and depicts a scene of two figures fighting on a ship. One figure is holding a sword and wearing red, while the other is wearing blue and holding a gun. They are both standing on the deck of a ship, which has a ladder going up to a cave entrance. The sky above is yellow and orange.", + "id": 35092 }, { - "image_path": "G:\\images\\combined\\55a6b03ce9ef4439.jpg", - "response": "Initial Analysis: The image shows a remote control with various buttons and a display screen. The buttons are labeled with letters and numbers, suggesting that it is a remote control for a device or system. The remote control is black in color and has a red power button in the top left corner. The buttons are arranged in rows and columns, with some buttons grouped together in the center of the control. The display screen is located at the top center of the remote control, and there is a zoom button on the right side of the control. The remote control is designed to be used with a device or system that can be controlled through this interface.", - "id": 36132 + "image_path": "G:\\images\\combined\\048e6f8bd215e50c.jpg", + "response": "A stop sign and a street sign are shown in the dark.", + "id": 35093 }, { - "image_path": "G:\\images\\combined\\55aaade7f5d5ca95.jpg", - "response": "Initial Analysis: The image shows a book open to a page with a color chart. The book is likely the Pantone Color Book, which is a reference book used for selecting colors. The color chart has a variety of colors displayed, with each color represented by a swatch or sample.\nDetailed Reasoning: The color chart in the book is likely used for selecting colors for printing or design purposes. The swatches provide a visual representation of the color, allowing users to see how the color looks in different contexts. The book likely contains a wide range of colors, including both solid and gradient colors, as well as different shades and tints of each color. The book may also include information about the color's name, hex code, and other relevant information.\nVisual References: The image shows a book with a color chart open to a page. The book is likely the Pantone Color Book, which is a reference book used for selecting colors. The color chart has a variety of colors displayed, with each color represented by a swatch or sample. Arrows or highlights may be used to point out specific colors or swatches on the page.\nConclusion or Solution: The image shows a book with a color chart open to a page. The color chart is likely used for selecting colors for printing or design purposes. The book contains a wide range of colors, including both solid and gradient colors, as well as different shades and tints of each color. The book may also include information about the color's name, hex code, and other relevant information.", - "id": 36133 + "image_path": "G:\\images\\combined\\0490f2e15002050a.jpg", + "response": "A counter with a variety of ingredients including flour, sugar, eggs, butter, and vanilla extract.", + "id": 35094 }, { - "image_path": "G:\\images\\combined\\55b56c4a07efc92c.jpg", - "response": "Initial Analysis: The image shows a parking meter with the time remaining displayed as \"FA:10\". The meter is located in front of a bus and is surrounded by a parking lot. The presence of the bus and parking lot suggest that this meter is in a busy urban area where public transportation is available.\nDetailed Reasoning: The parking meter is displaying the time remaining for the parking session, which is \"FA:10\". This could indicate that the parking session has been active for 10 minutes. The presence of the bus and parking lot suggests that this meter is in a busy urban area where people may use public transportation to commute. The parking lot could be a popular destination or a location where people park their cars before boarding the bus. The parking meter serves as a reminder for drivers to pay for their parking time or risk receiving a parking ticket.\nVisual References: Arrows and highlights are used to point out the parking meter and the time remaining display on the meter. These annotations help to clarify the location and purpose of the meter.\nConclusion or Solution: The conclusion is that the parking meter is located in a busy urban area where public transportation is available. The parking lot could be a popular destination or a location where people park their cars before boarding the bus. The parking meter serves as a reminder for drivers to pay for their parking time or risk receiving a parking ticket.", - "id": 36134 + "image_path": "G:\\images\\combined\\04915967aaf19826.jpg", + "response": "A kitchen with a sink full of dishes, a counter with a drying rack and a couple of bowls.", + "id": 35095 }, { - "image_path": "G:\\images\\combined\\55b59f6af596156f.jpg", - "response": "Initial Analysis: In the image, there are four young men playing soccer on a grass field. One of the players is about to kick the soccer ball, while the other three players are in various positions around the field. There is also a traffic light in the background, which may indicate that this field is located near a road.\nDetailed Reasoning: The players are likely practicing their soccer skills or playing a casual game. The fact that they are wearing different colored jerseys suggests that they may be on different teams. The presence of the traffic light in the background could indicate that this field is located near a busy road or intersection, which might impact the noise levels and overall atmosphere of the game.\nVisual References: I have added arrows and circles to highlight the players, the soccer ball, and the traffic light in the image.\nConclusion or Solution: Based on my analysis, I can conclude that the image shows a group of young men playing soccer on a grass field near a busy road. The players are wearing different colored jerseys, which suggests that they are on different teams. The presence of the traffic light in the background indicates that this field is located near a road or intersection.", - "id": 36135 + "image_path": "G:\\images\\combined\\0491be7da91762ca.jpg", + "response": "A cardboard box with a sticker that says fragile on it.", + "id": 35096 }, { - "image_path": "G:\\images\\combined\\55bc44def9f0b63c.jpg", - "response": "Initial Analysis: The image shows a laptop computer sitting on a desk in front of two computer monitors. The laptop is open and appears to be in use, while the two monitors are displaying different content. It is unclear whether the laptop is connected to the monitors or if they are simply placed next to each other.\nDetailed Reasoning: The presence of the laptop and the two monitors suggest that the user may be working on a multi-tasking or multi-screen setup. The laptop could be used for more focused work, while the monitors provide additional information or content. The user may be using the laptop as a primary screen and the monitors as secondary screens for reference or additional information.\nIt is also possible that the laptop is connected to the monitors, in which case the user could be using the laptop as a primary screen and the monitors as extended displays. This would allow the user to view multiple applications or documents simultaneously on the larger monitors.\nVisual References: N/A\nConclusion or Solution: The image shows a laptop computer sitting on a desk in front of two computer monitors. The user may be using the laptop as a primary screen and the monitors as extended displays or the monitors could be connected to the laptop for multi-screen setup. The exact configuration of the setup is not clear from the image alone.", - "id": 36136 + "image_path": "G:\\images\\combined\\0491f25623dc825e.jpg", + "response": "A poster on a wall that says 2011 March 11 on it.", + "id": 35097 }, { - "image_path": "G:\\images\\combined\\55bd10df0fcbed8a.jpg", - "response": "Initial Analysis: The image shows a control panel with six buttons in a row. Each button has a different symbol on it, and there is a small arrow pointing to one of the buttons. The symbols on the buttons are not immediately clear, but the presence of the arrow suggests that the button is meant to be clicked.\nDetailed Reasoning: The control panel could be used for various purposes, such as controlling a piece of equipment or a machine. The symbols on the buttons might represent different functions or settings, and the arrow pointing to one of the buttons could indicate that it is the button to be clicked first. However, without more context or information about the specific purpose of the panel, it is difficult to determine the exact meaning of the symbols and the purpose of the buttons.\nVisual References: The control panel is shown in close-up, with the buttons and symbols clearly visible. The panel is grey in color and is located on a grey background. The buttons are arranged in a row, with each button having a different symbol on it.\nConclusion or Solution: Based on the visual information provided, it is not possible to determine the exact meaning of the symbols on the buttons or the purpose of the control panel. Further information or context is needed to make a more informed conclusion.", - "id": 36137 + "image_path": "G:\\images\\combined\\04924b243ce19811.jpg", + "response": "A poster for Mobilcom Debietel is displayed on a wall.", + "id": 35098 }, { - "image_path": "G:\\images\\combined\\55beac3949e6dd35.jpg", - "response": "The image shows a bottle of Mackmyra Swedish Single Malt Whisky on a wooden surface. The label on the bottle reads \"Mackmyra Midnattssol Swedish Single Malt Whisky\". The bottle is dark brown in color and has a black label with white writing. The label also has a white silhouette of a person holding a lantern, which is likely a reference to the name of the whisky, which means \"Midnight Sun\" in English. The bottle is closed and appears to be full. The label has a minimalist design, with the brand name and product name taking up most of the space. The bottle is corked and has a black cap. The cap has a small hole in the center, which is likely for the stopper. The bottle is rectangular in shape and has a smooth, rounded edges. The overall impression is of a well-designed and visually appealing bottle of whisky.", - "id": 36138 + "image_path": "G:\\images\\combined\\0492e3bd20fbe0eb.jpg", + "response": "A blue clock with a white floral pattern around the outside. The face of the clock is decorated with blue flowers. The hands of the clock are black with a red second hand.", + "id": 35099 }, { - "image_path": "G:\\images\\combined\\55bf12a31c481418.jpg", - "response": "Initial Analysis: The image is a book cover with a black and white photograph of a stone building with a bell tower. The title \"Echos de Rompon\" is written in black on a yellow background at the top right corner of the cover. The cover is displayed on a wooden table.\nDetailed Reasoning: The image of the stone building with a bell tower suggests that the book cover might be related to a historical or cultural topic. The title \"Echos de Rompon\" could be a reference to the history or heritage of the place. The use of black and white photography adds a sense of nostalgia and timelessness to the cover.\nThe yellow background stands out and draws attention to the title, making it more noticeable to potential readers. The placement of the title at the top right corner of the cover ensures that it is easily visible and does not compete with the main photograph.\nVisual References: The photograph of the stone building with a bell tower is the main visual reference in this case. The title \"Echos de Rompon\" is written in black on a yellow background, which is a contrasting color that draws attention to it.\nConclusion or Solution: Based on the detailed reasoning, the book cover is likely related to a historical or cultural topic, with the title \"Echos de Rompon\" possibly referring to the history or heritage of the place. The use of black and white photography and the yellow background create a sense of nostalgia and timelessness, while the placement of the title at the top right corner ensures it is easily visible to potential readers.", - "id": 36139 + "image_path": "G:\\images\\combined\\0492ee5ac9a69515.jpg", + "response": "A silver and orange airplane with a propeller is on the runway.", + "id": 35100 }, { - "image_path": "G:\\images\\combined\\55c11eb81d520a90.jpg", - "response": "The image shows Baltimore Ravens wide receiver Torrey Smith smiling and laughing while wearing a purple jersey with the number 82 on the front. He is standing in front of a black background and appears to be at a press conference or event. The image is likely taken during a media session or a promotional event for the Baltimore Ravens.", - "id": 36140 + "image_path": "G:\\images\\combined\\04941d8b535f05df.jpg", + "response": "a man in a car(469,720),(586,905)", + "id": 35101 }, { - "image_path": "G:\\images\\combined\\55c4e548183e4088.jpg", - "response": "/news update page - a regular feature/", - "id": 36141 + "image_path": "G:\\images\\combined\\0494e96d9c3423fe.jpg", + "response": "A man and a child are standing next to a parking sign. The child is pointing at the sign. The sign is black and white and has a large P on it. The man is wearing a leather jacket. There are motorcycles in the background.", + "id": 35102 }, { - "image_path": "G:\\images\\combined\\55c7f79aa62bf489.jpg", - "response": "Initial Analysis: The image shows a parking meter with a bicycle logo on it. The meter is located on a sidewalk near a street. The presence of the bicycle logo suggests that this meter is specifically designed for cyclists. It may indicate that the city encourages cycling as a mode of transportation and provides facilities for cyclists to park their bikes while running errands or commuting.\nDetailed Reasoning: The presence of a parking meter on the sidewalk indicates that the city has designated a space for cyclists to park their bikes while they run errands or commute on foot. The parking meter may also serve as a reminder for cyclists to pay for parking their bikes in this designated area. The bicycle logo on the meter suggests that the city is promoting cycling as a sustainable and eco-friendly mode of transportation. This parking meter could be a part of the city's efforts to encourage cycling and reduce traffic congestion.\nVisual References: The image shows a black parking meter on a sidewalk near a street. The meter has a bicycle logo on it. The logo is located on the top of the meter and is surrounded by a circle. The meter is positioned on the sidewalk, close to the street. The presence of the street and the sidewalk in the image provides context for the parking meter's location.\nConclusion or Solution: The parking meter with the bicycle logo is a designated space for cyclists to park their bikes while they run errands or commute on foot. The city has recognized the importance of cycling as a mode of transportation and provided facilities for cyclists to park their bikes conveniently. The presence of the bicycle logo on the parking meter serves as a reminder for cyclists to pay for parking their bikes in this designated area.", - "id": 36142 + "image_path": "G:\\images\\combined\\0494ee3501adf70e.jpg", + "response": "A large screen television showing a group of men wearing England shirts.", + "id": 35103 }, { - "image_path": "G:\\images\\combined\\55c82f496de7d308.jpg", - "response": "Great Hall Ceiling Model Sign: This sign provides information about the ceiling model used to create the Great Hall at Disney's Haunted Mansion attraction. The sign explains that the ceiling model was created by production designer Stuart Craig and that it is based on half of the actual ceiling, which was never fully exposed to the public. The sign also explains that the model was created using a technique called an in-camera matte, which involves using a camera lens to capture the set and then using the model to add the ceiling. The sign then explains that the model was used to create the appearance of the ceiling, and that the clouds and swirling lights were added later using computers. The sign also mentions that the model was created during post-production. Overall, this sign provides information about the creation and use of the ceiling model in the Haunted Mansion attraction.", - "id": 36143 + "image_path": "G:\\images\\combined\\049503c6252a8e6c.jpg", + "response": "On the wall, there are two clocks. One is labeled London and the other is labeled Providence. The clock labeled London is on the right side of the wall.", + "id": 35104 }, { - "image_path": "G:\\images\\combined\\55d81861a48792b8.jpg", - "response": "Initial Analysis: The image shows a bottle of Chanel No. 5 perfume on a black background. The bottle is rectangular and made of glass with a gold label. The label has the Chanel logo and the words \"eau de parfum\" written on it. The bottle is positioned in the center of the image, with the label facing the camera. The reflection of the bottle can be seen on the black surface below it. The overall composition of the image is simple and minimalistic, focusing on the bottle and its label.\nDetailed Reasoning: The image of the Chanel No. 5 perfume bottle on a black background is a representation of the brand's iconic fragrance. The use of a black background creates a stark contrast with the gold label, making the bottle stand out and drawing attention to it. The minimalistic composition of the image allows the viewer to focus on the bottle and its label, emphasizing the brand's design and logo. The reflection of the bottle on the black surface below it adds an interesting visual element to the image, creating a sense of depth and dimension.\nVisual References: Arrows have been used to point out the Chanel logo on the label and the reflection of the bottle on the black surface below it.\nConclusion or Solution: The image of the Chanel No. 5 perfume bottle on a black background is a representation of the brand's iconic fragrance. The minimalistic composition and use of a black background create a sense of sophistication and elegance. The reflection of the bottle on the black surface below it adds an interesting visual element to the image, creating a sense of depth and dimension. The bottle's gold label and the Chanel logo are clearly visible, emphasizing the brand's design and logo.", - "id": 36144 + "image_path": "G:\\images\\combined\\0496755d121f3a3e.jpg", + "response": "A black and white photo of a Sapporo beer can.", + "id": 35105 }, { - "image_path": "G:\\images\\combined\\55de2b0190f883d1.jpg", - "response": "The image shows a bottle of Ballast Point Brewing Company's Fathom Ipl beer. The bottle is brown and has a white label with the company logo and information about the beer. The label features an illustration of a diver in a gold helmet and oxygen tank, with the words \"Fathom IPL\" written in blue. The bottle is sitting on a wooden table, with a green plant in the background.", - "id": 36145 + "image_path": "G:\\images\\combined\\049a096238c284df.jpg", + "response": "An indoor shopping mall with clothing stores on both sides of the aisle.", + "id": 35106 }, { - "image_path": "G:\\images\\combined\\55e0f4b86056da86.jpg", - "response": "The image is a title page for a book titled \"Consititutionum, Responsorium ac Sententiarum in XVI Claffis distributus, Varias, ad omnes Juris, qvo utimur, res pertinentes questiones, earumque relotu- tiones, ad decifliones complecti\" by Casparis Henrici Hornii. The title is written in Latin and is surrounded by decorative elements such as a border and a depiction of a man on horseback. The title page also includes the publication date of 1606 and the name of the publisher, Dredae & Lipsie.", - "id": 36146 + "image_path": "G:\\images\\combined\\049a18ff9fabd09a.jpg", + "response": "A billboard with a message written in Spanish.", + "id": 35107 }, { - "image_path": "G:\\images\\combined\\55e117b610794104.jpg", - "response": "The image shows a large red and blue sign for Kentucky Fried Chicken, with the letters \"KFC\" written in white. The sign is located above a red \"Drive Thru\" sign. The background of the image is a blue sky with white clouds.", - "id": 36147 + "image_path": "G:\\images\\combined\\049aa723a278c2aa.jpg", + "response": "The image features a VW bus parked on a grassy field. The bus is light blue and white in color and has a grill guard attached to the front. The grill guard has the letters \"VW\" on it and the whole bus has a classic look.", + "id": 35108 }, { - "image_path": "G:\\images\\combined\\55e89624eb04734e.jpg", - "response": "Initial Analysis: The image shows a Blackberry device displaying the Google logo on the screen. The device is open to the Google webpage, which suggests that it is being used to search for information or access other Google services.\nDetailed Reasoning: The Blackberry device is open to the Google webpage, which indicates that the user is likely searching for information or accessing other Google services. The device is an older model, which suggests that it may be an older version of the Blackberry device. The device is also sitting on a wicker surface, which could be a table or a chair. The presence of the wicker surface suggests that the device is being used in a casual setting, such as at home or outdoors.\nVisual References: The image includes a Blackberry device, a Google webpage on the screen, and a wicker surface. Arrows are used to point to the device and the Google webpage on the screen.\nConclusion or Solution: The image shows an older model Blackberry device displaying the Google webpage on the screen. The device is sitting on a wicker surface, which suggests that it is being used in a casual setting. The user is likely searching for information or accessing other Google services.", - "id": 36148 + "image_path": "G:\\images\\combined\\049bf07ea3c99db0.jpg", + "response": "A painting of a man in a field with a house in the background.", + "id": 35109 }, { - "image_path": "G:\\images\\combined\\55eafb4b22a33d42.jpg", - "response": "Initial Analysis: The image shows two cans of beer, specifically Jack's Firefly Amber, a unique amber ale. The cans have a green and black design with the words \"Jack's Pub & Brewery\" printed on them. The cans are standing upright on a white surface, possibly a table or counter. The cans have a green pull tab and a green lid. The design of the cans suggests that they are meant to be visually appealing and stand out on the shelf or in the store. The cans also indicate that the beer is produced by Jack's Pub & Brewery, which could be a local or regional brewery.\nDetailed Reasoning: The cans of beer are likely meant to attract the attention of beer drinkers and entice them to try Jack's Firefly Amber. The unique amber ale label suggests that the beer has a distinct flavor profile, which could appeal to those who enjoy a variety of beers. The green and black design of the cans could also indicate that the brewery is trying to create a distinctive brand image, which could help the beer stand out on the shelf or in the store. The fact that the cans are standing upright on a white surface could indicate that they are being displayed for sale, and the green pull tab and lid could make it easier for customers to open the cans. Overall, the design of the cans suggests that Jack's Pub & Brewery is trying to create a visually appealing and distinctive product that will appeal to beer drinkers.", - "id": 36149 + "image_path": "G:\\images\\combined\\049bfe70a1097e0c.jpg", + "response": "A blue and white Stagecoach bus is parked in a parking lot.", + "id": 35110 }, { - "image_path": "G:\\images\\combined\\55eb918593420849.jpg", - "response": "Initial Analysis: The image shows a black Alienware laptop sitting on top of a white table. The laptop is open and has a blue Alienware logo on the bottom. The screen of the laptop displays a blue and white image of a sphere with what appears to be hexagons or circles on it. The laptop is surrounded by various cords and a cell phone is visible on the right side of the laptop.", - "id": 36150 + "image_path": "G:\\images\\combined\\049ceb560923aedf.jpg", + "response": "The image shows a table with a glass top. On the table are several objects including a framed picture of people, a silver and gold object, a silver cup, a black and gold object, a black and gold picture frame, a gold medallion, a gold and red medallion, a gold and red medallion with a black center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion with a black center and a white center, a gold and red medallion", + "id": 35111 }, { - "image_path": "G:\\images\\combined\\55eb940224c400ea.jpg", - "response": "The image on the board is a map titled \"Pasadena Avenue & Daly Street Pedestrian Connections\" Project Map. The map shows the location of various points of interest along the street, including a library, museum, and several buildings. The map also shows the current status of the project, with the words \"SMART & FINAL\" indicating that the project is still in progress. The map is displayed on a white wall with a blue border and a white header at the top. The header reads \"Pasadena Avenue & Daly Street Pedestrian Connections\" and has a blue arrow pointing to the left. The map is divided into different sections, each with a different color background, and the map is annotated with black text and arrows. The map is displayed on a white wall with a blue border and a white header at the top.", - "id": 36151 + "image_path": "G:\\images\\combined\\049d0f7fef4ebdf7.jpg", + "response": "A female model is holding up three LG Optimus Vu II Value Pack smartphones in front of a white LG Optimus Vu II Value Pack display box.", + "id": 35112 }, { - "image_path": "G:\\images\\combined\\55f5fb8a9487b850.jpg", - "response": "In the image, there is a can of Budweiser beer sitting on a wooden surface. The can is red and white and has the Budweiser logo on it. The word \"Genuine\" is also written on the can. The can is open, and there is a small amount of beer left inside. The beer is made by Anheuser-Busch InBev, which is a brewing company based in the United States. Budweiser is one of the most popular beers in the world, and it is known for its distinctive taste and aroma. The beer is often served at parties, bars, and sporting events.", - "id": 36152 + "image_path": "G:\\images\\combined\\049d516ccb244077.jpg", + "response": "The image shows a group of cheerleaders standing together on a basketball court. They are all wearing blue and yellow uniforms. In the background, there are several people watching the cheerleaders from the sidelines.", + "id": 35113 }, { - "image_path": "G:\\images\\combined\\55f7232f8fff2edf.jpg", - "response": "Initial Analysis: The image is a display board with information about Metal Gear, a video game series. The board has a timeline of events, starting from 1974 to 2012, and information about the game's characters and locations. The display also features a TV screen showing gameplay footage from the game.\nDetailed Reasoning: The display board is likely part of an exhibit at a gaming convention or event, showcasing the history and evolution of the Metal Gear game series. The timeline of events provides a visual representation of the game's development over the past few decades, from its initial release in 1987 to its most recent installment in 2012. The information about the game's characters and locations likely provides background information for visitors who may not be familiar with the series.\nThe TV screen showing gameplay footage is likely intended to give visitors a taste of what the game is like and how it has evolved over time. This could be particularly useful for people who are considering purchasing the game or are interested in learning more about it.\nVisual References: Arrows and highlights are used to point out specific elements on the display board, such as the timeline and the information about the game's characters and locations. This helps to clarify the information presented and make it easier for visitors to understand.\nConclusion or Solution: The display board is a comprehensive overview of the Metal Gear game series, providing visitors with a visual representation of the game's history and evolution. The timeline of events, information about the game's characters and locations, and gameplay footage on the TV screen all work together to give visitors a better understanding of the series.", - "id": 36153 + "image_path": "G:\\images\\combined\\049da1f4b3d6f2fe.jpg", + "response": "The image is the cover of an album titled \"Jackie's Bag\" by Jackie McLean. The cover is orange and has the name of the artist and the album title written in black font. There is an orange envelope with two orange buttons on it, and the name of the album is written on it. The background of the cover is a brown paper bag.", + "id": 35114 }, { - "image_path": "G:\\images\\combined\\55f9bfe43ceb2b8d.jpg", - "response": "Initial Analysis: In the image, there are three people sitting at a table with laptops in front of them. They appear to be working or studying together. The woman in the foreground is wearing glasses and has a scarf around her neck. The man to her right is wearing a hat. The third person is sitting further back in the room. The laptops are open and appear to be in use. The table is surrounded by chairs and there is a cup on the table. The room has a few books scattered around, including a stack of books near the left wall. The image is in black and white. Based on the visual information, it appears that these people are working or studying in a quiet, focused environment.", - "id": 36154 + "image_path": "G:\\images\\combined\\049f65a732be2e93.jpg", + "response": "In the image there is a woman standing behind a counter at a pharmacy. She is wearing a red and white shirt and is smiling. In front of her are packages of allergy medicine. To the left of the woman is a sign that says \"Allergies? We'll help you breathe easy\" and encourages people to talk to the pharmacist about the latest treatments. To the right of the woman is a white wall and behind it is a red wall with the Target Pharmacy logo on it. The wall also has a white banner advertising the pharmacy's allergy relief services.", + "id": 35115 }, { - "image_path": "G:\\images\\combined\\55fbd9c4b26e2687.jpg", - "response": "The image shows a large billboard for Hilltop Hair Studio, which is located on a street corner. The billboard features a woman's face and the phone number 727-857-5042. There are several cars parked on the street, as well as a few people walking around. A traffic light is visible in the background. The image appears to be taken during the daytime, and the weather looks clear and sunny.", - "id": 36155 + "image_path": "G:\\images\\combined\\04a101282a2e1b04.jpg", + "response": "A book with a picture of a sea lion on the cover.", + "id": 35116 }, { - "image_path": "G:\\images\\combined\\55fd2570-222Booooo_jpg.rf.22827ea108c3b99063b7c7591904f2f7.jpg", - "response": "The image is a cardboard box with the words \"Shneksc Market\" written on it. The box is open and has a sticker on the front with the word \"Jeins\" on it. The box appears to be cardboard and is open, indicating that it may contain items for sale or delivery. The word \"Shneksc Market\" suggests that the box may be from a store or marketplace, and the \"Jeins\" sticker could be a brand or logo for the store or items being sold inside the box. The open box is sitting on a surface, possibly a table or counter, and there is a purple shoe visible through the opening in the box.", - "id": 36156 + "image_path": "G:\\images\\combined\\04a1034251d605e3.jpg", + "response": "A computer screen with a man on it.", + "id": 35117 }, { - "image_path": "G:\\images\\combined\\55fd3426ba3e1e0b.jpg", - "response": "Initial Analysis: The image shows a canal with several boats docked along the sides. The boats vary in size and design, and some appear to be old and worn, while others are more modern and brightly colored. There are several people visible in the image, some of whom appear to be on the boats and others standing on the dock or walking along the canal. The scene has a calm and peaceful atmosphere, with no visible signs of activity or movement.\nDetailed Reasoning: The presence of several boats docked along the sides of the canal suggests that this is a popular spot for boating enthusiasts or tourists. The variety of boat designs and sizes indicates that the canal is likely used for a range of purposes, from leisurely cruising to more serious boating activities. The people visible in the image may be boaters, tourists, or locals enjoying the canal and its surroundings.\nThe calm and peaceful atmosphere of the scene could indicate that the image was taken during a quiet time of day, such as early morning or late afternoon, when there is less traffic on the canal. Alternatively, it could also suggest that the boats are docked and not currently in use, or that the image was taken during a period of low activity on the canal.\nThe people visible in the image may be engaged in a variety of activities, such as boarding or disembarking their boats, cleaning or maintaining their boats, or simply enjoying the view and the atmosphere of the canal. The fact that some people are standing on the dock or walking along the canal could indicate that they are either preparing to embark on a boating trip or have just finished one.\nReflection: The image of the canal with several boats docked along its sides provides a snapshot of a serene and picturesque scene. The variety of boat designs and the presence of people in the image suggest that the canal is a popular spot for boating enthusiasts and tourists. The calm and peaceful atmosphere of the scene could indicate that the image was taken during a quiet time of day or that the boats are docked and not currently in use. Overall, the image evokes a sense of tranquility and leisure, making it an appealing and inviting scene for those who appreciate the beauty and serenity of waterways.", - "id": 36157 + "image_path": "G:\\images\\combined\\04a575f307c7b89a.jpg", + "response": "The image features a table with a wooden barrel on it. There are six bottles of wine on the barrel, with some placed on top and some on the side. The wine bottles have white labels and are of various sizes. The largest bottle is on the right side of the barrel. The wine bottles are displayed near a window and a door.", + "id": 35118 }, { - "image_path": "G:\\images\\combined\\55fe812580a41b6d.jpg", - "response": "Initial Analysis: The image shows a bottle of beer, likely Oude Geuze, on a bar with two full glasses next to it. The bottle is green and has a white label with the brand name and other information. The glasses are full and have a foamy head on top of the beer. The glasses are placed on a bar, and there are other glasses and bottles in the background. The scene suggests that this is a bar setting where someone is enjoying a drink.\nDetailed Reasoning: The presence of the bottle and two full glasses next to it indicates that someone has been drinking this beer. The foamy head on top of the beer suggests that it is a Belgian beer, which is known for its carbonation and flavor. The fact that there are other glasses and bottles in the background suggests that this is a bar setting where people come to drink and socialize. The green bottle and white label of the beer suggest that it is a brand called Oude Geuze, which is a type of Belgian beer. The image does not provide any information about the specific flavor or ABV of the beer, but it does show that it is a popular drink in this setting.\nVisual References: I have used arrows and circles to point out the bottle, glasses, and other elements in the image. I have also used highlights to draw attention to the foamy head on the beer.\nConclusion or Solution: Based on the visual information, it can be concluded that this is a bar setting where someone is enjoying a drink. The bottle of Oude Geuze and the two full glasses indicate that it is a popular drink in this setting. The image does not provide any information about the specific flavor or ABV of the beer, but it does show that it is a popular drink in this setting.", - "id": 36158 + "image_path": "G:\\images\\combined\\04a605c2aa93addc.jpg", + "response": "A close up of a smartphone on a wooden table. The phone is a bright yellow and is facing the camera. The screen of the phone displays a number of colorful icons. From left to right, the icons are a cloud with a sun and a moon, a trophy, a newspaper, a camera, and a speech bubble with the word \"Skype\" in it.", + "id": 35119 }, { - "image_path": "G:\\images\\combined\\55_jpg.rf.64751e1383406bfcf55533cad564b55d.jpg", - "response": "Based on the image, it appears to be a black and white photograph of a bus with the word \"Jetson\" on it. The bus is surrounded by other vehicles and people, suggesting that it may be in a busy urban area. The image also includes a grid-like pattern in the top left corner, which could be a representation of a bus schedule or route map.\nInitial Analysis: The image of the bus with the word \"Jetson\" on it could be interpreted in a few different ways. It could be a reference to the Jetson family from the cartoon \"Futurama,\" or it could simply be a random image with the word \"Jetson\" on it. The presence of other vehicles and people in the image suggests that it may be a busy street or transportation hub.\nDetailed Reasoning: The grid-like pattern in the top left corner could be a representation of a bus schedule or route map. This would suggest that the image is related to public transportation, and the bus with the word \"Jetson\" on it could be a bus that is part of this schedule or route. The other vehicles and people in the image could be passengers or drivers, and the busy street could be a popular transportation route.\nVisual References: To support my reasoning, I would draw arrows or circles around the bus with the word \"Jetson\" on it, as well as around the grid-like pattern in the top left corner. I would also highlight the other vehicles and people in the image to emphasize their importance in the scene.\nConclusion or Solution: Based on my analysis, the image of the bus with the word \"Jetson\" on it could be a representation of public transportation, specifically a bus that is part of a schedule or route. The grid-like pattern in the top left corner could be a representation of a bus schedule or route map, and the other vehicles and people in the image could be passengers or drivers.", - "id": 36159 + "image_path": "G:\\images\\combined\\04a723f057abeb9d.jpg", + "response": "A yellow double decker bus is driving down the street at night. There are two people walking on the sidewalk and a car with its headlights on in the background. The bus has the words \"Aero King\" written on it.", + "id": 35120 }, { - "image_path": "G:\\images\\combined\\55_jpg.rf.a0d12aefbf104e99223e07d4f265ac3b.jpg", - "response": "Initial Analysis: The image is a black and white photograph of a street scene. There are several people walking around, cars parked or moving, and a traffic light. The street is lined with buildings on both sides. The main elements in the image are the people, cars, buildings, and traffic light.\nDetailed Reasoning: The image shows a busy street scene with people walking around, cars parked or moving, and a traffic light. The presence of multiple people suggests that it could be a popular or bustling area. The cars parked or moving indicate that it is a place where vehicles are commonly used for transportation. The buildings on both sides of the street suggest that it could be an urban or commercial area.\nThe traffic light indicates that it is a controlled intersection where vehicles and pedestrians need to follow traffic rules. The presence of a traffic light also suggests that the area has a certain level of traffic management system in place.\nThe people walking around could be going to work, running errands, or simply enjoying the outdoors. The cars parked or moving could be waiting for passengers, dropping off or picking up passengers, or simply moving through the area.\nThe overall impression from the image is that it is a busy street scene with people, cars, buildings, and a traffic light. It could be an urban or commercial area where people and vehicles are commonly used for transportation.\nConclusion or Solution: The image shows a busy street scene with people, cars, buildings, and a traffic light. It could be an urban or commercial area where people and vehicles are commonly used for transportation. The presence of a traffic light indicates that the area has a certain level of traffic management system in place. The people walking around could be going to work, running errands, or simply enjoying the outdoors. The cars parked or moving could be waiting for passengers, dropping off or picking up passengers, or simply moving through the area.", - "id": 36160 + "image_path": "G:\\images\\combined\\04ab31205c0ffdf8.jpg", + "response": "An open box for an Airport Extreme is sitting on a wooden table. The box is white and has a blue wifi symbol in the top left corner. The word Airport is in black bold font and the word Extreme is in smaller black font. Underneath the logo it says 802.11n Wi-Fi.", + "id": 35121 }, { - "image_path": "G:\\images\\combined\\55_jpg.rf.ebabcc66f660756fa9cd3297d260db8a.jpg", - "response": "Based on the image, the first step is to identify the key elements. There is a forklift with the word \"Jetson\" on it, a man in a white shirt and black pants standing next to it, and another man in a forklift. The forklift is parked in front of a building, and there are two other people in the scene.\nThe initial analysis could be that the image is related to a warehouse or factory setting, with the forklift being used for moving goods. The man standing next to the forklift could be a supervisor or an employee, and the other man in the forklift could be operating it. The presence of the building suggests that this is a location where goods are stored or processed.\nThe detailed reasoning could involve analyzing the relationships between the elements in the image. The forklift is a large piece of equipment that is designed to move heavy goods, and the man standing next to it could be responsible for operating it. The other man in the forklift could be a worker who is moving goods within the warehouse or factory.\nThe visual references could include arrows or circles pointing to the forklift, the man standing next to it, and the other man in the forklift. These annotations would help to clarify the relationships between the elements in the image.\nThe conclusion or solution could be that the image shows a warehouse or factory setting where goods are being moved and processed. The forklift is a key piece of equipment used for this purpose, and the men in the image are likely working in a warehouse or factory setting. The building in the background suggests that this is a location where goods are stored or processed.\nReflection: The most challenging part of this analysis was determining the relationship between the elements in the image. It was not immediately clear whether the man standing next to the forklift was a supervisor or an employee, or whether the other man in the forklift was a worker or a supervisor. This required careful observation and analysis to determine the relationships between the elements in the image.", - "id": 36161 + "image_path": "G:\\images\\combined\\04ad53753c4150ee.jpg", + "response": "An orange and white van with the word Devon on it.", + "id": 35122 }, { - "image_path": "G:\\images\\combined\\55_png.rf.2b93bb4c7b54560bfd512a81de237fb1.jpg", - "response": "Initial Analysis: In the image, there is a person standing on a sidewalk next to a street. The person is holding a cell phone in their hand. The sidewalk is made of concrete and there is a grassy area nearby. The person is casting a shadow on the sidewalk.\nDetailed Reasoning: The person standing on the sidewalk might be waiting for someone or just taking a break. They are holding a cell phone, which could indicate that they are communicating with someone or checking for directions. The grassy area nearby suggests that it is a residential or commercial area with some greenery. The concrete sidewalk is a common feature in urban areas, providing a stable and safe surface for pedestrians to walk on. The shadow of the person on the sidewalk shows the presence of sunlight, which is essential for the image to be visible.\nVisual References: Arrows and circles can be used to point out the person, the cell phone, the sidewalk, the grassy area, and the shadow. These annotations can help to clarify the visual information and make it easier to understand.\nConclusion or Solution: Based on the visual information, it can be concluded that the image shows a person standing on a sidewalk next to a street, holding a cell phone in their hand. The person is casting a shadow on the sidewalk, indicating the presence of sunlight. The grassy area nearby suggests that it is a residential or commercial area with some greenery.", - "id": 36162 + "image_path": "G:\\images\\combined\\04ae518ff420f0bc.jpg", + "response": "A baseball player in a black jersey is winding up to pitch a ball on a baseball field.", + "id": 35123 }, { - "image_path": "G:\\images\\combined\\55_png.rf.66946401b12f72fd7afe6949a1a9be0b.jpg", - "response": "This image is a security camera footage of a man in a black shirt standing at a counter in a store. He appears to be holding a credit card in his hand. The date and time of the footage is December 3rd, 2018, at 6:29 PM. The man is standing in front of a mirror, which is located above the counter. There is a handbag placed on the counter, and another handbag is visible in the background. The man is also holding a cell phone in his other hand. The image is taken from the perspective of the security camera, and the man is facing the camera.", - "id": 36163 + "image_path": "G:\\images\\combined\\04b03f7790c03aec.jpg", + "response": "a bulletin board with many different posters on it", + "id": 35124 }, { - "image_path": "G:\\images\\combined\\55_png.rf.6fe72e8bc59a4d1914bee5034b544cad.jpg", - "response": "Initial Analysis: The image shows a man standing in front of a computer screen, with a keyboard and mouse in front of him. He appears to be working on the computer. The man is wearing a black shirt and has a beard. There is also a TV in the background. The image was taken on December 3, 2019, at 6:29 PM.", - "id": 36164 + "image_path": "G:\\images\\combined\\04b04e347704f9c7.jpg", + "response": "A red, white and blue poster advertising the City of New York's Municipal Airports.", + "id": 35125 }, { - "image_path": "G:\\images\\combined\\55_png.rf.94258c8be5804ffe58bc17673b6b30f8.jpg", - "response": "Initial Analysis: The image shows a person's shadow on the ground, with the person standing in the middle of the image. The person appears to be holding a cell phone, and there is a bicycle nearby. The image could be interpreted as a representation of modern life, with the use of technology and the presence of a bicycle suggesting a focus on sustainability and eco-friendly transportation.\nDetailed Reasoning: The person's shadow on the ground suggests that the image was taken during the daytime, and the person is facing away from the camera. The fact that the person is holding a cell phone could indicate that they are using it for communication or capturing the scene. The bicycle nearby could suggest that the person is either commuting or taking a break from their daily activities. The image could be interpreted as a representation of modern life, with the use of technology and the presence of a bicycle suggesting a focus on sustainability and eco-friendly transportation. The person's shadow on the ground also adds a sense of depth and dimension to the image, making it more interesting and engaging to look at.\nVisual References: To support my reasoning, I have added arrows and circles to highlight the key elements of the image. For example, I have added an arrow pointing to the person holding the cell phone to emphasize that it is the focal point of the image. I have also added a circle around the bicycle to emphasize its importance in the scene.\nConclusion or Solution: Based on my detailed reasoning, I would say that the image represents a modern scene, with the person holding a cell phone and the bicycle suggesting a focus on sustainability and eco-friendly transportation. The person's shadow on the ground adds a sense of depth and dimension to the image, making it more interesting and engaging to look at.", - "id": 36165 + "image_path": "G:\\images\\combined\\04b19b4fd4bb89e7.jpg", + "response": "A black and white image of a watch with the words \"PETITE FLEUR\" on the bottom right corner.", + "id": 35126 }, { - "image_path": "G:\\images\\combined\\55_PNG_jpg.rf.b95e574c7c6d4920ef1a009fb0f41410.jpg", - "response": "The image shows a close-up of a pressure gauge, which is a device used to measure pressure. The gauge has a white face with black markings and a black bezel. The markings on the face indicate different pressure levels, with the highest pressure reading at the top and the lowest pressure reading at the bottom. The gauge is mounted on a metal pole and is located in front of a blurred background.", - "id": 36166 + "image_path": "G:\\images\\combined\\04b1e42b4117a914.jpg", + "response": "The image shows a large group of taxi cabs parked next to each other on a city street. The cabs are of various colors, including yellow, orange, and white, and they are parked in a line. Some of the cabs have signs on their roofs, and one of them says \"union dad.\" There are also a few people standing around the parked cabs, although they are less prominent in the image. In the background, there are a few other vehicles, including a truck and a bus, as well as some buildings and a tree.", + "id": 35127 }, { - "image_path": "G:\\images\\combined\\5601b80ce7692a2e.jpg", - "response": "Initial Analysis: The image depicts a baseball pitcher on the mound, preparing to throw a pitch. The pitcher is wearing a white uniform with a red number 39 on the back. The pitcher's arm is in a throwing motion, and the ball is in the air, likely about to be released.\nDetailed Reasoning: The pitcher is in the middle of his windup, with his arm extended back and the ball in the air. He is likely in the process of throwing a pitch to the batter. The pitcher's focus and determination are evident in his stance and posture. The pitcher's uniform number, 39, indicates that he is a member of a team with that number. The pitcher's teammates are likely in the field, waiting for the ball to be thrown in their direction.\nVisual References: The pitcher's arm is extended back, and the ball is in the air, indicating that he is in the process of throwing a pitch. The pitcher's uniform number, 39, is visible on the back of his jersey. The pitcher's teammates are likely in the field, waiting for the ball to be thrown in their direction.\nConclusion or Solution: The image shows a baseball pitcher on the mound, preparing to throw a pitch. The pitcher's focus and determination are evident in his stance and posture. The pitcher's teammates are likely in the field, waiting for the ball to be thrown in their direction.", - "id": 36167 + "image_path": "G:\\images\\combined\\04b2ba30ae5de5db.jpg", + "response": "A glass of Guinness beer sits on a table. The beer has a thick, foamy head floating on top. The glass is dark and has the Guinness logo on it.", + "id": 35128 }, { - "image_path": "G:\\images\\combined\\5608d9af219e4b00.jpg", - "response": "In the image, there is a plate with a crepe drizzled with chocolate sauce, a cup of coffee, and a bottle of water. The plate is placed on a table, and there is a fork next to the plate. The coffee cup is placed slightly above the plate, and the bottle of water is placed to the left of the plate. Based on the visual information, it appears to be a breakfast or snack setting, with the crepe as the main dish and the coffee as a beverage. The presence of the fork suggests that the person who will be enjoying this meal is about to start eating. The bottle of water could be there to quench thirst after the meal. The overall setting gives a sense of relaxation and leisure time.", - "id": 36168 + "image_path": "G:\\images\\combined\\04b2c3f5c2ac33a8.jpg", + "response": "A man wearing a blue baseball jersey is getting ready to throw a ball. He is wearing a baseball glove and a blue hat. He is standing in front of a fence and a building.", + "id": 35129 }, { - "image_path": "G:\\images\\combined\\560cd4045a2c7c78.jpg", - "response": "Process of understanding and solving the problem:\nThe image is a medieval manuscript page with a large illustration of St. Christopher leading the infant Jesus across a river. The text around the illustration reads \"Et pater glorie\" and \"Et homines adiit ad te, Domine, et twp mansit in domo tuo.\" The scene appears to depict a river with a boat in the background and a bridge in the distance. There are also several figures in the illustration, including St. Christopher and the infant Jesus. The image is surrounded by colorful borders with floral designs.\nInitial Analysis: Based on the visual information, the scene appears to depict a religious story from the Bible, specifically the legend of St. Christopher leading the infant Jesus across a river. The presence of the boat and the bridge suggests that the river is a significant obstacle that the pair must overcome. The colorful borders with floral designs add a decorative element to the page.\nDetailed Reasoning: The illustration of St. Christopher leading the infant Jesus across the river is a common depiction in medieval art. The scene is likely meant to convey the idea of faith and trust, with St. Christopher representing the protection and guidance of the divine. The boat in the background and the bridge in the distance suggest that the river is a significant obstacle that the pair must overcome. The colorful borders with floral designs add a decorative element to the page, indicating that the manuscript was likely created for a religious or spiritual purpose.\nVisual References: The image of St. Christopher leading the infant Jesus across the river is a common one in medieval art. It is often depicted in religious manuscripts and icons, and is meant to convey the idea of faith and trust. The boat in the background and the bridge in the distance suggest that the river is a significant obstacle that the pair must overcome. The colorful borders with floral designs add a decorative element to the page, indicating that the manuscript was likely created for a religious or spiritual purpose.\nConclusion or Solution: The image of St. Christopher leading the infant Jesus across the river is a common one in medieval art, and is meant to convey the idea of faith and trust. The boat in the background and the bridge in the distance suggest that the river is a significant obstacle that the pair must overcome. The colorful borders with floral designs add a decorative element to the page, indicating that the manuscript was likely created for a religious or spiritual purpose.", - "id": 36169 + "image_path": "G:\\images\\combined\\04b59524b3cebdf2.jpg", + "response": "A large building with a clock on the front of it.", + "id": 35130 }, { - "image_path": "G:\\images\\combined\\560cf3421b653614.jpg", - "response": "Process of understanding and solving the problem:\nThe image shows a group of men standing next to each other, wearing yellow soccer uniforms and the word \"Gillette\" on their shirts. The men are likely soccer players. One of the men is clapping his hands, possibly indicating that they are preparing for a game or a match.\nInitial Analysis: Based on the visual information, the men are likely soccer players, and their uniforms suggest that they are part of a team. The presence of the word \"Gillette\" on their shirts could indicate a sponsorship or partnership between the team and the brand.\nDetailed Reasoning: The fact that the men are wearing matching uniforms suggests that they are part of a team, and their actions of clapping their hands could indicate that they are preparing for a game or a match. The presence of the word \"Gillette\" on their shirts could indicate a sponsorship or partnership between the team and the brand, which could provide financial support or promotional opportunities for the team.\nVisual References: Arrows are used to point out the word \"Gillette\" on the shirts of the soccer players.\nConclusion or Solution: The image shows a group of soccer players wearing yellow uniforms with the word \"Gillette\" on their shirts. They are likely preparing for a game or a match, and the presence of the word \"Gillette\" on their shirts suggests a sponsorship or partnership between the team and the brand.", - "id": 36170 + "image_path": "G:\\images\\combined\\04b5a37f762b0f51.jpg", + "response": "A book is open to the title page. The title is Our Neighbors, The Friends. It is by William J. Whalen. The Multnomah Friends Meeting address is at the bottom.", + "id": 35131 }, { - "image_path": "G:\\images\\combined\\560d6abb3180a805.jpg", - "response": "The image is a CD cover for Mozart piano concertos, featuring a man in a suit and white turtle neck smiling and looking off to the side. The CD title and track listing are written in black font on a red background at the top of the cover.", - "id": 36171 + "image_path": "G:\\images\\combined\\04b99754c51e6092.jpg", + "response": "A large sign for Francis Bacon is displayed on a street.", + "id": 35132 }, { - "image_path": "G:\\images\\combined\\560f18afe97af207.jpg", - "response": "The image is a close-up of a laptop screen displaying the Twitter page for the hashtag #UpgradeYourWorld. The screen shows a Twitter poll with two options: \"I vote for\" and \"Save the Children\". There are several tweets posted under the hashtag #Vote, and a message that reads \"You can choose up to 10 hashtags. You can choose the same hashtag more than once.\" The laptop is on a table, and there is a mouse and keyboard in front of it. The screen is also showing a purple background.", - "id": 36172 + "image_path": "G:\\images\\combined\\04bb7fa51b1b18ef.jpg", + "response": "A row of warning signs are lined up on the side of the road.", + "id": 35133 }, { - "image_path": "G:\\images\\combined\\560f2439e51f152e.jpg", - "response": "Initial Analysis: The image shows a bottle of beer with a label that reads \"Ballast Point Brewing Company Sculpin India Pale Ale Limited Release.\" The bottle is next to a glass filled with the beer. Based on the visual cues, it can be inferred that this is a bottle of limited release IPA from Ballast Point Brewing Company.", - "id": 36173 + "image_path": "G:\\images\\combined\\04bbe9d35c50ab91.jpg", + "response": "A man and a woman pose for a picture.", + "id": 35134 }, { - "image_path": "G:\\images\\combined\\560_jpg.rf.2fff4b0864622b7cc7b0e84e59809177.jpg", - "response": "Process of understanding and solving the problem:\nThe image shows two orange traffic cones placed on the side of a road, with a white line marking the edge of the road. The cones are positioned in such a way that they appear to be looking at each other. The road is a two-lane highway with a sidewalk on the side.\nInitial Analysis: The image of the two traffic cones looking at each other could be interpreted in various ways. One possible interpretation is that the cones are placed there to indicate a road work zone or a construction area. The cones may be there to warn drivers to slow down and be cautious in that area. Another interpretation could be that the cones are placed there as a playful or artistic decoration, meant to catch the attention of passersby.\nDetailed Reasoning: The presence of the cones on the side of the road suggests that they are there for a specific purpose. The fact that they are looking at each other could be a visual cue to remind drivers to be aware of their surroundings and to be cautious when driving in that area. The white line marking the edge of the road could also serve as a reminder for drivers to stay within the designated lanes.\nVisual References: To further support the interpretation that the cones are there for a specific purpose, I would draw arrows pointing to the cones and the white line, indicating that these elements are important for drivers to be aware of.\nConclusion or Solution: Based on the visual information provided, it is likely that the two traffic cones are placed on the side of the road to indicate a road work zone or a construction area. The cones are looking at each other, which could be a visual cue to remind drivers to be cautious and to slow down in that area. The white line marking the edge of the road serves as a reminder for drivers to stay within the designated lanes.", - "id": 36174 + "image_path": "G:\\images\\combined\\04bc0bbb14f26bab.jpg", + "response": "A black laptop with a mouse pad on the right side of the keyboard.", + "id": 35135 }, { - "image_path": "G:\\images\\combined\\560_jpg.rf.683ad75c51ad802413c239eb89541b30.jpg", - "response": "Initial Analysis: The image shows a young man holding a traffic cone in a room with shelves and various items on the walls. The man appears to be of Middle Eastern descent and is wearing a blue shirt. The room has a cluttered appearance, with a TV on one wall and a clock on another. There are also several books and a suitcase in the room. The man's expression is not clearly visible, but he is holding the traffic cone in front of him.\nDetailed Reasoning: The man holding the traffic cone could be preparing for a construction or road work project, or he could be using it as a prop for a performance or demonstration. The cluttered appearance of the room suggests that it is a space where various items are stored or used, and the presence of the TV and clock indicate that it is a functional living space. The shelves on the walls may be used for storage or display, and the suitcase could be used for travel or storage of personal belongings.\nThe man's choice to hold the traffic cone in front of him could be for a variety of reasons, such as to draw attention to a specific area or to demonstrate its use in a particular context. The fact that he is not looking directly at the camera suggests that he may be focused on the traffic cone or on the task at hand.\nConclusion or Solution: Based on the visual information provided, it is difficult to determine the exact purpose of the man holding the traffic cone. However, it is clear that he is in a cluttered room with various items, including a TV, clock, and shelves. The man is wearing a blue shirt and is holding the traffic cone in front of him. It is possible that he is using the traffic cone for a construction or road work project, or he could be using it as a prop for a performance or demonstration. The fact that he is not looking directly at the camera suggests that he may be focused on the traffic cone or on the task at hand.", - "id": 36175 + "image_path": "G:\\images\\combined\\04bc55abd830f147.jpg", + "response": "A car with a license plate that says HIP NANA.", + "id": 35136 }, { - "image_path": "G:\\images\\combined\\56107dc5265e87a8.jpg", - "response": "The image shows a man and a woman standing behind a counter in a small store. The store sells a variety of drinks, including bird nest, lychee, lime, and coconut water. There are several cups and bottles on the counter, as well as a bowl and a cup on the floor. A pineapple can be seen in the background. The woman is standing at the left side of the counter, while the man is standing at the right side. There is a scale in front of the counter, and a cup is placed on top of it. A handbag is hanging on the left side of the counter. The store has a sign that says \"self service please thank you.\"", - "id": 36176 + "image_path": "G:\\images\\combined\\04be416992fd79c5.jpg", + "response": "A man is wearing a Tudor watch on his wrist. The watch has a silver face with black accents and is also silver on the band. The face has large white numbers and hands. The watch is set to 10:10.", + "id": 35137 }, { - "image_path": "G:\\images\\combined\\5616bdc39d92fccc.jpg", - "response": "Initial Analysis: The image shows a stop sign in Arabic, which is a common sight in countries where Arabic is the primary language. The stop sign is located near a body of water, and there are several people in the background, possibly enjoying the view or engaging in outdoor activities. The presence of a boat in the water suggests that the area may be a popular spot for recreational activities.\nDetailed Reasoning: The stop sign in Arabic indicates that the location is likely in a country where Arabic is the official language. The presence of the stop sign near the water suggests that the area may be a popular spot for outdoor activities, such as boating or picnicking. The people in the background could be tourists, locals, or participants in the outdoor activities.\nVisual References: The image includes a stop sign, a body of water, and several people in the background. The stop sign is prominently featured in the foreground, with the water and people in the background. The people are scattered throughout the scene, with some closer to the water and others further away.\nConclusion or Solution: The image shows a stop sign in Arabic near a body of water, with several people in the background. The stop sign indicates that the location is likely in a country where Arabic is the official language, and the presence of the water suggests that the area may be a popular spot for outdoor activities. The people in the background could be tourists, locals, or participants in the outdoor activities.", - "id": 36177 + "image_path": "G:\\images\\combined\\04c048eae91ceea3.jpg", + "response": "A man standing in front of a white board with writing on it.", + "id": 35138 }, { - "image_path": "G:\\images\\combined\\56170901ae900c87.jpg", - "response": "Process of understanding and solving the problem:\nThe image shows a man running in a race, wearing a black and yellow tank top that says \"Moffat Triathlon Club\" on it. He is wearing a black and yellow triathlon suit and has the number 46 on his shorts. The man is running on a path near a stone wall and a field. The sky above him is overcast.\nInitial Analysis: Based on the visual information, the man appears to be participating in a triathlon race. The fact that he is wearing a triathlon suit and has the number 46 on his shorts suggests that he is a participant in the race. The overcast sky may indicate that the weather is not ideal for running, but the man is still determined to complete the race.\nDetailed Reasoning: The man's determination to run in the race despite the overcast sky suggests that he is a dedicated athlete who is willing to push himself to his limits. The fact that he is wearing a triathlon suit indicates that he is prepared for the challenges of the race, which may include swimming, biking, and running. The stone wall and field near the path may provide some obstacles or challenges for the runners, but overall, the image suggests that the man is focused on completing the race.\nVisual References: To support my reasoning, I have used arrows and circles to point out the key elements in the image, such as the man's triathlon suit and the number 46 on his shorts. I have also used highlights to draw attention to the overcast sky, which may indicate that the weather is not ideal for running.\nConclusion or Solution: Based on my detailed reasoning, I can conclude that the man in the image is a dedicated triathlete who is participating in a triathlon race. The overcast sky may indicate that the weather is not ideal, but the man is still determined to complete the race.", - "id": 36178 + "image_path": "G:\\images\\combined\\04c098793fddaf9b.jpg", + "response": "A white box with a QR code on the front.", + "id": 35139 }, { - "image_path": "G:\\images\\combined\\561af632c640e187.jpg", - "response": "Initial Analysis: The image shows a man wearing a green and white shirt with a large green and black lizard on the back. The man is also wearing a bicycle helmet and has a bicycle next to him. The shirt has the words \"Team Square\" on it, and there is a bicycle logo on the back. The man is standing in front of a store.", - "id": 36179 + "image_path": "G:\\images\\combined\\04c14972e955ad58.jpg", + "response": "A large red and white Manchester United poster on the side of a building.", + "id": 35140 }, { - "image_path": "G:\\images\\combined\\561af646641b5ff8.jpg", - "response": "Process of understanding and solving the problem:\nThe image shows a young man holding a skateboard and smiling. He is wearing a white shirt with the words \"Fun SMA\" on it. The skateboard has green wheels. The young man appears to be enjoying himself and may be preparing to ride the skateboard. Based on the visual information, it can be inferred that the young man is likely a skateboarder and is taking a break or getting ready to ride. The fact that he is smiling suggests that he is in a positive mood and is enjoying himself. The presence of the skateboard and the young man's attire also indicate that he is likely involved in skateboarding activities.", - "id": 36180 + "image_path": "G:\\images\\combined\\04c2634b073c5bfb.jpg", + "response": "A wooden table with a Census 2010 form and an envelope on top of it.", + "id": 35141 }, { - "image_path": "G:\\images\\combined\\561c44c9410aa52d.jpg", - "response": "The image is a handwritten page from a notebook. The handwriting is in black ink and is written in French. The page is torn in the middle, with the tear running vertically down the page. There are several crossed-out words and phrases written in the margins. The page is open to two different sections, each with handwriting and underlining. The handwriting is neat and legible, with the underlining indicating emphasis or organization. The page appears to be from a journal or notebook, likely used for writing notes or ideas.", - "id": 36181 + "image_path": "G:\\images\\combined\\04c2feafa596fb1e.jpg", + "response": "A train on train tracks with smoke coming out of it.", + "id": 35142 }, { - "image_path": "G:\\images\\combined\\561ef65a12591b17.jpg", - "response": "Organic All Natural Bath Care Products A unique ultra light formula that seals in shine and produces silky perfection for all hair types. A pear is placed in front of the bottles with the text \"simply be well\" on them. A green mesh bag is placed to the right of the bottles. A bottle with a pump and a bottle with a dropper are placed next to each other. The bottle on the left is larger and has a pump, while the one on the right is smaller and has a dropper. The text \"simply be well\" is written on both bottles. The background is white.", - "id": 36182 + "image_path": "G:\\images\\combined\\04c39e0c0a0b7c38.jpg", + "response": "A television set with the words 'cctv monitor' written on the bottom left hand corner.", + "id": 35143 }, { - "image_path": "G:\\images\\combined\\5621468689c87a59.jpg", - "response": "The image shows a book with the title \"Creative Art of Embroidery\" on a wooden table. The book is open to a page with embroidery tools, including a pair of scissors and some colorful threads. The scissors are resting on the book, and the threads are scattered across the page. The table appears to be made of wood, and there are chairs visible in the background. The scene gives the impression of a cozy and creative atmosphere, perhaps indicating someone's passion for embroidery.", - "id": 36183 + "image_path": "G:\\images\\combined\\04c3b7a4162051ab.jpg", + "response": "The image is a poster with the words \"Take heart, he has overcome\" written on it. The text is in black and red and is set against a white background. The words \"Take heart\" are written on the top left corner, \"he has\" is written on the top right corner, and \"overcome\" is written at the bottom. The numbers 16 and 33 are written below the word \"overcome\".", + "id": 35144 }, { - "image_path": "G:\\images\\combined\\5621a786b2621c62.jpg", - "response": "Initial Analysis: The image shows a close-up of a wristwatch on a person's arm. The watch has a black face with orange accents and is set on a brown leather strap. The watch appears to be a Tudor Oysterdate chronograph, which is a brand of luxury watches.\nDetailed Reasoning: Based on the visual information, it can be inferred that the watch is a Tudor Oysterdate chronograph, which is known for its high-quality and durable design. The black face with orange accents is a distinctive feature of this particular model, and the brown leather strap adds a touch of luxury and style. The watch is likely being worn by a person who appreciates high-end timepieces and takes pride in their appearance.\nVisual References: To support this conclusion, I have added arrows and circles to highlight the brand name \"Tudor\", the model name \"Oysterdate chronograph\", and the distinctive features such as the black face with orange accents and the brown leather strap.\nConclusion or Solution: The image shows a Tudor Oysterdate chronograph watch on a person's arm. The watch has a black face with orange accents and is set on a brown leather strap. Based on the visual information, it can be confidently concluded that the watch is a high-end luxury timepiece.", - "id": 36184 + "image_path": "G:\\images\\combined\\04c4d5f6bcee13f4.jpg", + "response": "An open laptop computer sitting on a desk.", + "id": 35145 }, { - "image_path": "G:\\images\\combined\\5621f494bcbe63b5.jpg", - "response": "The image shows a mantle with various items displayed on it. There is a clock on the right side of the mantle, a figurine of a girl on the left side, and a candlestick with a red candle in the middle. Below the mantle, there are three metal letters spelling out the word \"amazing.\" The background of the image is a white wall.", - "id": 36185 + "image_path": "G:\\images\\combined\\04c7c370910a9a04.jpg", + "response": "A man holding a bicycle above his head on a beach.", + "id": 35146 }, { - "image_path": "G:\\images\\combined\\56225e04495c2e63.jpg", - "response": "Initial Analysis: The image shows a group of people running on a paved road. There are two people in the lead, followed by several others. The road is lined with a stone wall on one side and a hedge on the other. There is a traffic light in the background, and a building can be seen at the far end of the road. The road appears to be wet, possibly from recent rain.\nDetailed Reasoning: The group of people running on the paved road could be participating in a race or a group exercise. The wet road suggests that it has rained recently, which could have made the surface slippery and challenging for runners. The presence of a traffic light in the background indicates that this road is likely located in an urban or suburban area, where traffic rules apply. The stone wall and hedge lining the road add to the scenic beauty of the scene.\nThe two people in the lead are likely leading the pack, while the other runners are following closely behind. The wet road may also affect the running times and performance of the runners, as the slippery surface could increase the risk of falls or injuries.\nConclusion or Solution: Based on the visual information, it can be concluded that the image shows a group of people running on a paved road in an urban or suburban area. The wet road suggests that it has rained recently, which could have made the surface slippery and challenging for runners. The two people in the lead are likely leading the pack, while the other runners are following closely behind. The presence of a traffic light in the background indicates that this road is likely located in an area with traffic rules, which could impact the running times and performance of the runners.", - "id": 36186 + "image_path": "G:\\images\\combined\\04c9190a4d2ecb2a.jpg", + "response": "A person holding a LG smartphone in an office.", + "id": 35147 }, { - "image_path": "G:\\images\\combined\\5624181c9142d7f2.jpg", - "response": "Initial Analysis: The image shows a close-up of a glass filled with a light yellow liquid. The liquid has the word \"pussey\" written on it in black. Based on the visual information, it is not possible to determine what the liquid is or what the word \"pussey\" means in this context.\nDetailed Reasoning: The liquid in the glass appears to be a beverage, but it is not possible to determine what kind of beverage it is based on the image alone. The word \"pussey\" written on the glass is not clear, and it is not possible to determine what it means or what it is referring to. The glass is filled to the top, but it is not possible to determine how much liquid is in the glass based on the image alone.\nVisual References: The glass is filled with a light yellow liquid. The word \"pussey\" is written on the glass in black. The glass is filled to the top.\nConclusion or Solution: Based on the visual information, it is not possible to determine what the liquid is or what the word \"pussey\" means in this context. The image does not provide enough information to draw a conclusion or propose a solution.", - "id": 36187 + "image_path": "G:\\images\\combined\\04cb0a69e5e61e33.jpg", + "response": "A blue truck is driving down a street.", + "id": 35148 }, { - "image_path": "G:\\images\\combined\\5627a67af058bd36.jpg", - "response": "The image shows a large number of boxes stacked on top of each other in a warehouse or storage area. The boxes are labeled with the words \"DISTRIBUTION MONDADORI\" and \"MONTANARO\". The boxes are packed in plastic wrap and appear to be ready for shipping. The boxes are of varying sizes and are stacked in a way that makes it difficult to determine the exact number of boxes present. The boxes are also stacked on top of each other, which could make it difficult to access the contents of some of the boxes. Overall, the image suggests that this is a storage area for a large quantity of goods, likely ready for shipment.", - "id": 36188 + "image_path": "G:\\images\\combined\\04cf8f45e024273e.jpg", + "response": "A woman with long hair is on a television screen.", + "id": 35149 }, { - "image_path": "G:\\images\\combined\\5629c28316ae9a5d.jpg", - "response": "Initial Analysis: The image shows a row of Sapporo beer bottles on an orange table. There are five bottles in total, and they are all closed. The label on each bottle features the Sapporo Premium Beer logo, which is a gold star on a brown background. The bottles are arranged in a row, with the first bottle on the left and the last bottle on the right. The label on the first bottle has the brand name \"Sapporo\" written in black, with the word \"Premium\" in gold. The label also has the beer type \"Bock\" written in gold. The bottles are placed on an orange table, which is located in a room with a couch and a chair. The couch is located in the background, to the right of the table, and the chair is located in the far right corner of the room. The table is also surrounded by a dining table with a bowl on it.", - "id": 36189 + "image_path": "G:\\images\\combined\\04cfef06445e63ab.jpg", + "response": "A wooden clock on a wall with roman numerals.", + "id": 35150 }, { - "image_path": "G:\\images\\combined\\562_jpg.rf.eb460b6636f140aaba776111d17f41f9.jpg", - "response": "Process of understanding and solving the problem:\nUpon observing the image, I see two orange and white traffic cones placed on the street. The cones are positioned in the center of the street, and there is a crosswalk in the background. The image appears to be depicting a street scene with the cones placed to indicate a construction or maintenance area.\nInitial Analysis: Based on the visual information, I can infer that the cones are placed to alert drivers and pedestrians to the construction or maintenance work being done on the street. The presence of the cones suggests that there may be limited access to the area, and people should be cautious when passing through.\nDetailed Reasoning: The placement of the cones in the center of the street indicates that they are intended to be seen by drivers and pedestrians from a distance. The orange and white color scheme makes them easily recognizable, and the crosswalk in the background further emphasizes the need for caution in the area.\nVisual References: I have added arrows and circles to the image to highlight the placement of the cones and the crosswalk. This helps to clarify my reasoning and make it easier for the reader to understand my analysis.\nConclusion or Solution: Based on my analysis, I conclude that the placement of the traffic cones on the street is intended to alert drivers and pedestrians to a construction or maintenance area. The cones are placed in a way that ensures they are easily visible and recognizable, and the crosswalk in the background reinforces the need for caution in the area.\nReflection: This image was relatively straightforward to analyze, as the visual cues were clear and easy to interpret. However, it is important to remain vigilant and consider all possible interpretations when analyzing visual information. It is also important to be able to support your reasoning with clear and concise explanations.", - "id": 36190 + "image_path": "G:\\images\\combined\\04d0cd32375dec06.jpg", + "response": "A Mad Max movie poster with a man standing in front of a car in a desert. The sky is blue with clouds and the sun is setting. The man is wearing a gas mask and has a gun. The words \"What a lovely day\" are written above the man and the movie title \"Mad Max Fury Road\" is written in yellow and orange. The tagline \"May 15\" is written at the bottom of the poster.", + "id": 35151 }, { - "image_path": "G:\\images\\combined\\563976b89b673ab9.jpg", - "response": "Initial Analysis: The image shows a close-up of a wristwatch on a person's arm. The watch has a silver and black band and is set against a green background. The watch face is black and has silver accents. The hands of the watch are white and point to the numbers on the watch face.\nDetailed Reasoning: Based on the visual information, it is clear that the watch is on the person's wrist. The watch face is black with silver accents, and the hands are white. The watch has a silver and black band. The watch is set against a green background, which provides a nice contrast to the watch face.\nThe watch is not functioning properly, as the hands are pointing to the numbers on the watch face, but the watch is not telling the time. This could be due to a malfunction or the watch being set incorrectly.\nThe watch is also not waterproof, as indicated by the \"Water Resist\" text on the watch face. This means that the watch is not designed to withstand water, and the person should be careful not to get it wet.\nConclusion or Solution: The image shows a close-up of a wristwatch on a person's arm. The watch has a silver and black band and is set against a green background. The watch face is black and has silver accents. The hands of the watch are white and point to the numbers on the watch face. The watch is not functioning properly, as the hands are pointing to the numbers on the watch face, but the watch is not telling the time. This could be due to a malfunction or the watch being set incorrectly. The watch is also not waterproof, as indicated by the \"Water Resist\" text on the watch face. This means that the watch is not designed to withstand water, and the person should be careful not to get it wet.", - "id": 36191 + "image_path": "G:\\images\\combined\\04d1087f7e335786.jpg", + "response": "A man stands in a room filled with shelves of various items. The shelves are filled with many different products, including bottles of ink and paint. There are also several boxes on the floor and a desk with some items on it. The room has a very cluttered appearance.", + "id": 35152 }, { - "image_path": "G:\\images\\combined\\563c8367adf9b3a5.jpg", - "response": "Le Messie, Messiah, HWV 56, Oratorio, Haendel, Orchestre de la Haendel Society, Londres, Dir. Walter Goehr, Astorg Classical.", - "id": 36192 + "image_path": "G:\\images\\combined\\04d14bbae7de7926.jpg", + "response": "The image shows a scene from the mobile game FIFA 15. The player in blue and red striped shirt is about to kick the soccer ball, while the player in blue and white striped shirt is running towards him. There are other players in the background, including a player in blue and red striped shirt running towards the left side of the screen and a player in blue and white striped shirt running towards the right side of the screen. The game is being played on a green field with white lines. The player in blue and red striped shirt has a red stripe on his shorts and is wearing a red and blue striped shirt. The player in blue and white striped shirt has a white stripe on his shorts and is wearing a blue and white striped shirt. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing red shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shoes. The player in blue and white striped shirt is also wearing a red armband. The player in blue and white striped shirt is wearing blue shorts. The", + "id": 35153 }, { - "image_path": "G:\\images\\combined\\563d88db49e02ae5.jpg", - "response": "The image shows a signed Vancouver Grizzlies basketball jersey. The jersey is turquoise with white and black lettering and features the number 50 in white. The signature of the player is written in black ink on the jersey. The signature reads \"J. Reeves.\"", - "id": 36193 + "image_path": "G:\\images\\combined\\04d33a0e3fd86ba5.jpg", + "response": "A bottle of Beerlao lager beer sits next to a mug of beer. The beer is a golden yellow color and there is a small amount of foam on top. The label on the bottle is white and green and has the words \"Imported\" and \"Lager Beer\" written on it.", + "id": 35154 }, { - "image_path": "G:\\images\\combined\\563e7ef36eb92fc3.jpg", - "response": "The image shows five different coins laid out on a surface. The coins are of varying sizes and colors, and they appear to be from different countries. The largest coin is gold and has the word \"Empire\" written on it. The second-largest coin is silver and has the word \"Crown\" written on it. The third coin is copper and has the word \"Half\" written on it. The fourth coin is also copper and has the word \"Quarter\" written on it. The smallest coin is copper and has the word \"Penny\" written on it. The coins are arranged in a semi-circle, with the largest coin on the left and the smallest coin on the right. The image does not provide any context for the coins, but their arrangement suggests that they are being displayed for comparison.", - "id": 36194 + "image_path": "G:\\images\\combined\\04d3761e636752cf.jpg", + "response": "A black Heat jersey with red lettering and a red number 10.", + "id": 35155 }, { - "image_path": "G:\\images\\combined\\563ebece1dfc5dae.jpg", - "response": "Initial Analysis: The image shows a large collection of books spread out on a wooden floor. The books cover a wide range of topics, including Microsoft products, networking, security, and IT certifications. Some of the books are open, while others are closed. The collection suggests that the owner of the books is likely a student or a professional in the IT field, who is studying or working on various projects related to these topics.", - "id": 36195 + "image_path": "G:\\images\\combined\\04d3cddda381ef11.jpg", + "response": "A person is holding a cell phone in their hand. The cell phone is playing a basketball game. The game is between the Mavs and the Heat. The time is 5:36. The Heat are currently winning the game. There is a cup on the table next to the cell phone.", + "id": 35156 }, { - "image_path": "G:\\images\\combined\\563_jpg.rf.af60d0f48b99a736d901f35099690172.jpg", - "response": "Initial Analysis: In the image, there is a traffic cone placed on the ground, with a reflective strip around it. The cone is orange and white in color. The cone is placed in the middle of a concrete floor. Based on the visual cues, it appears to be a safety cone used in construction or road work areas to alert drivers and pedestrians of potential hazards. The reflective strip on the cone helps increase visibility, making it easier for drivers to see the cone from a distance.\nDetailed Reasoning: The presence of the traffic cone in the middle of the concrete floor suggests that it is placed there to indicate a hazard or obstruction. The orange and white color of the cone is likely to increase its visibility, making it easier for drivers and pedestrians to see the cone from a distance. The reflective strip on the cone further enhances its visibility, ensuring that it is easily noticeable in different lighting conditions.\nThe orange and white color of the cone is also commonly associated with safety equipment, making it an effective tool for warning people of potential hazards. The placement of the cone in the middle of the concrete floor indicates that it is meant to be a focal point, drawing attention to the hazard or obstruction.\nConclusion or Solution: Based on the visual cues in the image, it can be concluded that the traffic cone is placed in the middle of the concrete floor to indicate a hazard or obstruction. The orange and white color of the cone, along with the reflective strip, make it easily noticeable and increase its visibility. The placement of the cone in the middle of the floor ensures that it is a focal point, drawing attention to the hazard or obstruction.", - "id": 36196 + "image_path": "G:\\images\\combined\\04d4277d4f3e07cf.jpg", + "response": "In the image there are two yellow taxi cabs parked side by side on a city street. They are both facing the same direction. In front of the taxis, there is a piece of yellow caution tape stretched across the street. The tape is marked with the word \"caution\" in black letters. The background shows a building with a glass storefront. There are two people visible in the scene, one on the left and one on the right. They appear to be pedestrians. There is also a traffic light visible in the image, located on the left side of the street.", + "id": 35157 }, { - "image_path": "G:\\images\\combined\\56417c40099fac66.jpg", - "response": "Initial Analysis: The image shows a Nokia phone with a screen that is displaying a message. The message reads \"Checking for updates, please wait.\" The phone is sitting on a surface, which is not clearly visible, but it appears to be a table or a counter. The phone is turned on and appears to be in use.\nDetailed Reasoning: The phone is checking for updates, which means that it is downloading and installing new software or firmware. This process can take some time, and the message \"Please wait\" is displayed on the screen to inform the user that the phone is busy. The phone is likely connected to the internet, as it needs to download the updates from a server. The phone is also turned on, which is necessary for it to connect to the internet and download the updates.\nVisual References: I have used arrows to point out the Nokia logo on the phone and the message on the screen. I have also highlighted the surface where the phone is placed.\nConclusion or Solution: The Nokia phone is checking for updates, and the user should wait for the process to complete. The phone is connected to the internet and is turned on, which are necessary for the process to work.", - "id": 36197 + "image_path": "G:\\images\\combined\\04d71d0804bdb39c.jpg", + "response": "A billboard for Keystone Light beer featuring a man with a beard and a hat. The billboard says \"Always Smooth\" and has the Keystone Light logo. The billboard is located on the side of a road.", + "id": 35158 }, { - "image_path": "G:\\images\\combined\\5643d101fc019494.jpg", - "response": "Initial Analysis: The image shows a red stop sign on a pole at an intersection. The stop sign is surrounded by trees and bushes, and there is a building in the background. The sign has a small red sign underneath it that says \"UNLESS UR BUSY TEXTING.\" The sign is clearly visible and easy to read.\nDetailed Reasoning: The stop sign is clearly marked and positioned at an intersection, indicating that drivers must come to a complete stop before proceeding. The small red sign underneath the stop sign is likely intended to remind drivers to be aware of their surroundings and not become distracted by texting while driving. The presence of trees and bushes around the intersection suggests that the area is likely a residential or commercial area, where drivers should be extra cautious.\nVisual References: The stop sign is the main visual element in the image, and it is positioned prominently at the intersection. The small red sign underneath it is also clearly visible and easy to read. The trees and bushes surrounding the intersection provide a natural backdrop to the scene.\nConclusion or Solution: The stop sign and the small red sign underneath it are both clearly visible and easy to read, making it easy for drivers to understand the traffic rules at the intersection. The presence of trees and bushes around the intersection suggests that the area is likely a residential or commercial area, where drivers should be extra cautious and attentive to their surroundings.", - "id": 36198 + "image_path": "G:\\images\\combined\\04d7554704856e9d.jpg", + "response": "A sign that says Powell's on your iPhone.", + "id": 35159 }, { - "image_path": "G:\\images\\combined\\5644be5c181875ee.jpg", - "response": "Initial Analysis: The image shows a wristwatch with a blue band and a white face. The watch has a unique design, with a blue band that is made of interwoven orange and white bands. The watch is round in shape and has a clasp on the side.\nDetailed Reasoning: The interwoven design of the band is likely made using a loom banding technique, which involves using rubber bands to create a pattern or design. The use of orange and white bands suggests that the watch is designed to be colorful and eye-catching. The clasp on the side of the watch is likely designed to be easy to use and secure the band in place.\nThe watch could be a fashionable accessory for someone who enjoys colorful and unique designs. It could also be a fun project for someone who enjoys working with loom bands or other similar materials.\nVisual References: Arrows could be used to point out the interwoven bands on the band of the watch. Highlighting the clasp on the side of the watch could also be helpful in explaining the design.\nConclusion or Solution: The watch is a unique and colorful accessory that could be a fun project for someone who enjoys working with loom bands. It is designed with interwoven orange and white bands on the band, and has a clasp on the side to secure the band in place.", - "id": 36199 + "image_path": "G:\\images\\combined\\04d8d2a90fa1e971.jpg", + "response": "A large red cube with a scoreboard on each of the six sides.", + "id": 35160 }, { - "image_path": "G:\\images\\combined\\5656235dad1c1583.jpg", - "response": "Initial Analysis: The image shows a person sitting at a desk with a computer in front of them. The person is holding a pink mouse and appears to be working on the computer. There is a keyboard and a mouse on the desk. A bottle is also visible on the desk. The person is wearing glasses, which may suggest that they are working on the computer for an extended period of time. The desk appears to be well-organized, with various items such as a notebook, a book, and a cup placed neatly. The person is likely working on a project or task on the computer.", - "id": 36200 + "image_path": "G:\\images\\combined\\04d9539875873b29.jpg", + "response": "A photo of two boxes of Soylent powder food.", + "id": 35161 }, { - "image_path": "G:\\images\\combined\\56575486df61b1b6.jpg", - "response": "Initial Analysis: In the image, there is a bottle of Begyle Brewing Company's Neighborly Stout next to a glass filled with the dark beer. The bottle and glass are sitting on a wooden table. Based on the visual cues, it can be inferred that this is a scene of someone enjoying a bottle of Begyle Brewing Company's Neighborly Stout.\nDetailed Reasoning: The bottle and glass of beer suggest that someone has poured themselves a drink. The dark color of the beer indicates that it is a stout, which is a type of beer known for its rich, robust flavor and high alcohol content. The fact that it is a Neighborly Stout suggests that it is a locally made beer, which could indicate that the brewery is based in the Chicago, Illinois area. The wooden table adds a rustic, homey feel to the scene, as if the person is enjoying a relaxing evening at home.\nVisual References: Arrows and highlights have been used to point out the bottle, glass, and wooden table in the image.\nConclusion or Solution: Based on the visual information, it can be concluded that someone is enjoying a bottle of Begyle Brewing Company's Neighborly Stout at home. The dark color of the beer and the rich flavor suggest that it is a high-quality, locally made stout.", - "id": 36201 + "image_path": "G:\\images\\combined\\04d9ccc29ef68000.jpg", + "response": "A sign for a beauty salon is posted on a wall.", + "id": 35162 }, { - "image_path": "G:\\images\\combined\\5657a3597e0d833a.jpg", - "response": "The image shows a bottle and a glass of beer placed on a wooden table. The bottle is tall and has a label with an image of a man on it. The glass is half full and has a red and white sticker on it. The bottle and the glass are next to each other, and there is a window behind them.", - "id": 36202 + "image_path": "G:\\images\\combined\\04d9f9c00f3c4973.jpg", + "response": "An open book to the page with the Lord's prayer on it.", + "id": 35163 }, { - "image_path": "G:\\images\\combined\\565c91ebf245e8fd.jpg", - "response": "Initial Analysis: The image shows a parking meter with the words \"TIME EXPIRED\" written on it. The meter is located on a street, and there is a bench in the background. Based on the visual information, it appears that the parking time has expired, and the meter is no longer functioning.\nDetailed Reasoning: The parking meter has reached the maximum time allowed, and the words \"TIME EXPIRED\" indicate that the parking session has ended. The expired meter is still on the street, which suggests that the parking regulations in this area allow for a grace period after the time has expired. However, it is important to note that the expired meter may still be functional, but it is not currently being used.\nVisual References: The parking meter is located on the left side of the image, with the bench in the background on the right side. The words \"TIME EXPIRED\" are written on the meter in bold letters, indicating that the parking time has ended.\nConclusion or Solution: The parking meter has reached the maximum time allowed, and the words \"TIME EXPIRED\" indicate that the parking session has ended. The expired meter is still on the street, and it is important to note that the parking regulations in this area may allow for a grace period after the time has expired. However, it is not currently being used.", - "id": 36203 + "image_path": "G:\\images\\combined\\04da5dff642e080f.jpg", + "response": "The image shows a row of cans of Mountain Dew Baja Blast. The cans are blue and white and feature the Mountain Dew logo prominently on them. There are at least nine cans in the row, and they are all lined up next to each other. Some of the cans are closer to the foreground and appear larger, while others are further away and appear smaller.", + "id": 35164 }, { - "image_path": "G:\\images\\combined\\565daed3d652ebb6.jpg", - "response": "Initial Analysis: In the image, there is a baseball player wearing a blue and red uniform, standing on a baseball field with a mitt in his hand. He appears to be waiting for a ball to come his way. Based on the visual cues, it can be inferred that the player is a member of the \"Patriots\" baseball team and is likely waiting for the ball to be hit in his direction so he can catch it.\nDetailed Reasoning: The player's position on the field, with a mitt in hand, suggests that he is a fielder, likely a catcher or an infielder. The fact that he is wearing a mitt indicates that he is prepared to catch a ball, and his stance and focus on the field suggest that he is ready for action. The player's uniform, with the \"Patriots\" logo on it, further confirms his affiliation with the team.\nThe player's location on the field, with the baseball field in the background, further supports the idea that he is a baseball player. The baseball field is a common setting for baseball games, and the presence of the field in the background reinforces the idea that the player is participating in a baseball game.\nVisual References: To support the analysis, I have used arrows and circles to point out the key elements in the image. For example, I have pointed to the baseball field in the background, the player's uniform, and the mitt in his hand.\nConclusion or Solution: Based on the analysis, it can be concluded that the image shows a baseball player, specifically a catcher or infielder, wearing a blue and red uniform and standing on a baseball field with a mitt in his hand. The player is likely waiting for a ball to be hit in his direction so he can catch it.", - "id": 36204 + "image_path": "G:\\images\\combined\\04db1e5c955ddee6.jpg", + "response": "A cover of weird tales magazine with a man holding a black raven on his shoulder.", + "id": 35165 }, { - "image_path": "G:\\images\\combined\\565_jpg.rf.d6f48e1f896556ddb3e667f17a03c699.jpg", - "response": "Initial Analysis: The image shows a man standing in a room, holding a plastic orange and white traffic pylon or cone over his head. The man appears to be in a storage room or workshop, as there are shelves and boxes visible in the background. The room is messy, with various items scattered around.\nDetailed Reasoning: The man holding the traffic cone over his head could be engaging in a playful or humorous activity. Alternatively, he may be using the cone for a practical purpose, such as organizing or transporting items in the storage room. The messy state of the room suggests that it is a space where various items are stored, and the man may be responsible for organizing or tidying it up.\nThe presence of shelves and boxes in the background indicates that the room is likely a storage area, possibly used for storing tools, equipment, or other items. The fact that the room is messy suggests that it may not be a space that is regularly maintained or cleaned.\nVisual References: Arrows and highlights have been used to point out the man holding the traffic cone over his head, the storage room or workshop setting, and the shelves and boxes in the background.\nConclusion or Solution: Based on the detailed reasoning, it can be concluded that the man is standing in a storage room or workshop, holding a plastic orange and white traffic pylon or cone over his head. The room is messy, and the man may be using the cone for a practical purpose, such as organizing or transporting items. The presence of shelves and boxes in the background indicates that the room is likely a storage area, possibly used for storing tools, equipment, or other items. The fact that the room is messy suggests that it may not be a space that is regularly maintained or cleaned.", - "id": 36205 + "image_path": "G:\\images\\combined\\04db429ca202f6a3.jpg", + "response": "A warehouse with a row of yellow trash cans on wheels.", + "id": 35166 }, { - "image_path": "G:\\images\\combined\\56619c71bcb7e0d6.jpg", - "response": "Delta Airlines is promoting their #Emmy noms show tonight on Twitter. The image shows a Delta airplane with a red carpet in front of it, indicating that the airline is preparing for an awards show tonight. The hashtag #Emmy noms suggests that the awards show is related to the Emmy Awards, which are given out annually to recognize excellence in television. Delta Airlines is likely sponsoring or involved in some way with the awards show.", - "id": 36206 + "image_path": "G:\\images\\combined\\04dbd80e27f9bacd.jpg", + "response": "a wall with writing on it that says \"we're here, we're queer, we're fabulous, don't fuck with us!\"", + "id": 35167 }, { - "image_path": "G:\\images\\combined\\5666c49c34dc18fe.jpg", - "response": "Initial Analysis: The image shows a desktop computer setup with a monitor, keyboard, and mouse. The monitor is on, and the screen displays the start-up screen of a computer. The keyboard and mouse are positioned in front of the monitor, indicating that the computer is ready for use. The monitor is a flat screen, and the overall setup appears to be a standard configuration for a desktop computer.", - "id": 36207 + "image_path": "G:\\images\\combined\\04dc9045baab9975.jpg", + "response": " A woman(295,128),(778,615) sitting at a table(2,496),(996,997) with empty glasses(246,586),(382,941)(470,543),(621,939) and wine bottles(624,370),(760,851)(760,371),(910,918)(907,365),(1000,953).", + "id": 35168 }, { - "image_path": "G:\\images\\combined\\5668ea8d69e43c9a.jpg", - "response": "The image shows a close-up of a coin on a white surface. The coin is a five pence coin and has the words \"FALKIRK CIRCUS\" written on it. The date on the coin is 2012.", - "id": 36208 + "image_path": "G:\\images\\combined\\04dd63050d8508bd.jpg", + "response": "A yellow dress woman sitting on a chair being watched by a man.", + "id": 35169 }, { - "image_path": "G:\\images\\combined\\566_jpg.rf.9480899cf696cf76907d58ad01155a9d.jpg", - "response": "The image shows a row of orange and white traffic cones arranged in a parking lot. The cones are placed in a zigzag pattern and there are several of them, spread out across the lot. Some of the cones are closer to the foreground, while others are further away. The parking lot appears to be empty, with no cars or other vehicles visible in the image. The cones seem to be used for marking off a specific area or for some kind of event.", - "id": 36209 + "image_path": "G:\\images\\combined\\04dd79863a4c2c59.jpg", + "response": "A couple of boxes sitting next to a couple of traffic lights.", + "id": 35170 }, { - "image_path": "G:\\images\\combined\\5670f395b13510ff.jpg", - "response": "Initial Analysis: The image is a colorful mural painted on the side of a building. The mural features abstract shapes and lines in various colors, including purple, blue, yellow, and pink. There is also a sign that says \"COSMIC POWER.\" The mural is located in an alleyway, which has a black gate and a red brick wall. The alleyway is surrounded by other buildings and has a trash can and a fire hydrant nearby. The image appears to be a street scene, and the mural could be a form of street art or public art.", - "id": 36210 + "image_path": "G:\\images\\combined\\04de2bbea6e03bee.jpg", + "response": "The image shows a workspace with a desk that has two computer monitors placed on it. There are two keyboards, one on the left and the other on the right, and a mouse in the middle of the desk. The computer monitors are displaying the same Yahoo! homepage. The room appears to be an office, and there are several books scattered around the desk and the area. Some of the books are placed vertically, while others are lying horizontally. There are also a couple of cups in the scene, one near the left monitor and the other near the right monitor.", + "id": 35171 }, { - "image_path": "G:\\images\\combined\\56711520d3a2c83f.jpg", - "response": "Initial Analysis: The image shows a laptop computer sitting on the ground, with a flash drive plugged into it. The laptop is open and appears to be in use. The flash drive is a white and green device, and it is plugged into the side of the laptop. The laptop is surrounded by leaves, suggesting that it may be outdoors. The image does not provide any information about the content of the laptop or the flash drive, but it does suggest that the laptop is being used for some purpose, possibly related to data storage or transfer.", - "id": 36211 + "image_path": "G:\\images\\combined\\04de92ec769965ac.jpg", + "response": "A white board with writing on it.", + "id": 35172 }, { - "image_path": "G:\\images\\combined\\5672e23fc659eb61.jpg", - "response": "Initial Analysis: In the image, there is a baseball player wearing a blue and white uniform with the number 21 on the back. He is surrounded by a crowd of people, including fans and other players. Some of the fans are holding cameras, suggesting that this could be a special event or a photo opportunity. The player is also surrounded by children, indicating that he may be signing autographs or interacting with fans.\nDetailed Reasoning: The presence of the baseball player and the crowd suggests that this is a baseball event, possibly a game or a practice session. The fact that the player is signing autographs for children indicates that he is a popular figure in the team, and that the fans are eager to interact with him. The cameras held by some of the fans also suggest that this is a special event or a photo opportunity, possibly a game or a press conference.\nVisual References: In the image, there is a baseball player wearing a blue and white uniform with the number 21 on the back. He is surrounded by a crowd of people, including fans and other players. Some of the fans are holding cameras, and the player is also surrounded by children, who are likely waiting for him to sign autographs.\nConclusion or Solution: Based on the visual information, it can be concluded that this is a baseball event, possibly a game or a practice session. The player is signing autographs for children, indicating that he is a popular figure in the team and that the fans are eager to interact with him. Some of the fans are holding cameras, suggesting that this is a special event or a photo opportunity.", - "id": 36212 + "image_path": "G:\\images\\combined\\04df3cbd8345f25f.jpg", + "response": "An old looking gauge(20,21),(985,688).", + "id": 35173 }, { - "image_path": "G:\\images\\combined\\56737ba44a7367a8.jpg", - "response": "The image shows a pile of various U.S. coins, primarily consisting of pennies. The pile is situated on a dark surface, with some of the coins partially hidden in the shadows. The coins are scattered in a random manner, with no apparent pattern or organization. The pile includes both dimes and quarters, as well as the more common pennies. The coins are of varying sizes and appear to be in good condition, with no visible signs of wear or damage. Overall, the image gives the impression of a small but diverse collection of U.S. coins.", - "id": 36213 + "image_path": "G:\\images\\combined\\04df64098449dcce.jpg", + "response": "The image is a soccer field with players on it. The players are wearing blue and white uniforms. The number 8 is displayed in the center of the image. The word \"Mondaini\" is displayed above the number. The word \"Emele\" is displayed in the bottom left corner of the image. The word \"Xista.com\" is displayed in the bottom right corner.", + "id": 35174 }, { - "image_path": "G:\\images\\combined\\567_jpg.rf.cb273a4947de79f67517cceeadad9e68.jpg", - "response": "Initial Analysis: In the image, there is a traffic cone placed on the road, with a white line behind it. The cone is also blocking the entrance to a parking lot. This suggests that the cone is used to indicate a temporary road closure or a restricted area. The presence of the cone and the white line indicate that there might be ongoing construction or maintenance work in the area, or that there is a specific event or situation that requires the cone to be placed there.\nDetailed Reasoning: The traffic cone is placed on the road to alert drivers and pedestrians to the restricted area. The white line behind the cone serves as a visual cue to indicate that the area is off-limits or requires caution. The cone is also used to guide traffic flow, as drivers are likely to avoid the area or take alternative routes. The cone's placement is likely done by a construction crew or a traffic management team to ensure the safety of both drivers and pedestrians.\nVisual References: To support my reasoning, I have added arrows and circles to indicate the cone's placement and the white line behind it. The arrows show the direction of traffic flow, and the circle highlights the cone's position on the road.\nConclusion or Solution: Based on my analysis, the traffic cone and the white line are placed on the road to indicate a restricted area and guide traffic flow. The cone's placement is likely done by a construction crew or a traffic management team to ensure the safety of both drivers and pedestrians.", - "id": 36214 + "image_path": "G:\\images\\combined\\04dfad38d434409c.jpg", + "response": "A black and white photo of the front of a bus.", + "id": 35175 }, { - "image_path": "G:\\images\\combined\\56853543d7ae1235.jpg", - "response": "Initial Analysis: The image shows a close-up of a Nokia cell phone with a green and white color scheme. The phone is turned on and displays the time as 12:08 pm. The phone's keyboard is visible, and the screen shows a green background with a grass pattern. The phone appears to be powered on and ready to use.", - "id": 36215 + "image_path": "G:\\images\\combined\\04e01069792ad29a.jpg", + "response": "A car with a Virginia license plate that says Utang on it.", + "id": 35176 }, { - "image_path": "G:\\images\\combined\\568a7eb500a5000b.jpg", - "response": "Initial Analysis: The image shows a bottle of beer with a label that reads \"Dobbel dose\" and a glass filled with beer next to it. The bottle is located on a wooden surface, and there is a pink box in the background. Based on the visual cues, it can be inferred that this is a scene related to the consumption of beer.\nDetailed Reasoning: The presence of the bottle and the glass filled with beer suggests that this scene is related to the consumption of beer. The bottle has a label that reads \"Dobbel dose,\" which could indicate a specific type of beer or a brand. The pink box in the background could be a decorative element or it could be related to the beer as well. The wooden surface provides a rustic and natural backdrop for the scene.\nThe bottle and the glass filled with beer indicate that someone is about to enjoy a drink. The fact that the glass is filled to the brim suggests that the person is likely to drink the entire contents of the glass. The wooden surface and the pink box in the background add a touch of warmth and color to the scene, making it more visually appealing.\nThe bottle and the glass filled with beer also indicate that this scene is taking place in a social setting. The act of sharing a drink with others is a common way to bond and socialize. The bottle and the glass filled with beer suggest that this scene is taking place in a casual and relaxed environment.\nConclusion or Solution: Based on the visual cues in the image, it can be inferred that this scene is related to the consumption of beer. The bottle and the glass filled with beer suggest that someone is about to enjoy a drink, and the wooden surface and the pink box in the background add a touch of warmth and color to the scene. The scene is taking place in a social setting, and the act of sharing a drink with others is a common way to bond and socialize.", - "id": 36216 + "image_path": "G:\\images\\combined\\04e03c1faa934e30.jpg", + "response": "A sign posted on a pole in a city.", + "id": 35177 }, { - "image_path": "G:\\images\\combined\\568a8b7d0f975609.jpg", - "response": "In the image, there is a cupcake with chocolate frosting and a cherry on top, placed on a small white plate. Next to the cupcake, there is a bottle of Espresso Balsamic vinegar. The cupcake appears to be the main focus of the image, and the vinegar is an accompanying or related item. The image might be promoting the use of the vinegar as a topping or ingredient for desserts, or it could simply be a still life composition featuring a cupcake and a bottle of vinegar. The image does not provide any clear context or information about the background or setting.", - "id": 36217 + "image_path": "G:\\images\\combined\\04e14a8f5dc496b8.jpg", + "response": "A sign that is orange and black.", + "id": 35178 }, { - "image_path": "G:\\images\\combined\\56906b62efecc9bb.jpg", - "response": "Initial Analysis: The image depicts a baseball player standing on the field in a white uniform with \"Phillies\" written on it. The player is wearing a red hat and holding a baseball glove. The player appears to be walking across the field.\nDetailed Reasoning: The player's uniform suggests that he is a member of the Philadelphia Phillies baseball team. The fact that he is holding a baseball glove indicates that he is a baseball player and is likely preparing to catch a ball during the game. The player's posture and the fact that he is walking across the field suggest that he is either taking a break between innings or is preparing to participate in a game.\nVisual References: The player's uniform, the baseball glove, and the fact that he is standing on the field are all visual references that support the conclusion that he is a baseball player.\nConclusion or Solution: Based on the visual information in the image, it can be concluded that the person depicted is a baseball player, specifically a member of the Philadelphia Phillies baseball team.", - "id": 36218 + "image_path": "G:\\images\\combined\\04e1df508bfdb43b.jpg", + "response": "In the image, there are two boys standing on a baseball field. One of the boys is wearing a red shirt and has a black glove on his right hand. The other boy is wearing a blue shirt and has a black glove on his left hand. Both boys are holding baseball bats, and they are looking in opposite directions.", + "id": 35179 }, { - "image_path": "G:\\images\\combined\\56908deccb36fcc0.jpg", - "response": "Initial Analysis: The image shows a stop sign that is partially covered by snow. The stop sign is red with white lettering and is attached to a metal pole. The pole is also covered in snow, indicating that the snow has piled up around the sign.\nDetailed Reasoning: The presence of snow around the stop sign suggests that the area has recently experienced a snowfall. The snow may have accumulated over time, or it could have been piled up by snow plows or other snow removal efforts. The fact that the stop sign is still visible despite the snow indicates that it is important for drivers to be able to see and recognize traffic signs, even in snowy conditions.\nThe stop sign serves as a critical traffic control device, ensuring the safety of drivers and pedestrians by requiring vehicles to come to a complete stop before proceeding. In areas with heavy snowfall, it is especially important for drivers to be able to see and recognize traffic signs, as visibility may be reduced due to snow and ice.\nVisual References: I have added arrows and circles to the image to highlight the stop sign and the snow around it. The snow is piled up on the ground and on the pole, covering a significant portion of the sign.\nConclusion or Solution: The image shows a stop sign that is partially covered by snow, but it is still visible and functional. The snow may have been piled up by snow plows or other snow removal efforts, or it could have accumulated over time. Despite the snow, the stop sign serves an important role in traffic control and safety, and drivers should still be able to see and recognize it.", - "id": 36219 + "image_path": "G:\\images\\combined\\04e4f31b680b8801.jpg", + "response": "A tv with the words \"set passcode\" on the screen.", + "id": 35180 }, { - "image_path": "G:\\images\\combined\\5693c81c6f066fca.jpg", - "response": "Initial Analysis: The image shows a man sitting at a table, signing a yellow piece of paper. He is wearing a black shirt and a black hat with a Fastrack Bicycles logo on it. The man is surrounded by a few books and a bicycle. The table is covered with a white cloth.\nDetailed Reasoning: The man could be a Fastrack Bicycles employee or a representative of the company, as suggested by the hat he is wearing. He is likely signing a document or a piece of paper, possibly related to the bicycle or the books that are also present in the scene. The presence of the bicycle and the books suggests that the setting could be a store or a showroom, where the man is promoting or showcasing the bicycles. The white cloth on the table indicates that the man is at a presentation or a signing event.\nVisual References: The man is wearing a black shirt and a black hat with a Fastrack Bicycles logo on it. The bicycle is located in the background, and the table is covered with a white cloth. The books are placed on the table, and there is a person standing in the background.\nConclusion or Solution: The image shows a man wearing a Fastrack Bicycles hat, sitting at a table and signing a document or a piece of paper. The setting could be a store or a showroom, where the man is promoting or showcasing the bicycles. The presence of the bicycle and the books suggests that the man is at a presentation or a signing event.", - "id": 36220 + "image_path": "G:\\images\\combined\\04e562f083ca45ea.jpg", + "response": "A metal sign for Clermont Florida that shows two children in bathing suits holding hands.", + "id": 35181 }, { - "image_path": "G:\\images\\combined\\5695fd30fb4c58e2.jpg", - "response": "The image shows a group of women in red and black swimsuits running on a beach. They are all wearing red and black swimsuits and appear to be in a hurry. Some of them are holding something in their hands. The beach is covered with sand and there are a few umbrellas set up in the background. The women are likely lifeguards or participants in a beach race.", - "id": 36221 + "image_path": "G:\\images\\combined\\04e7422c5fa74696.jpg", + "response": "A large group of people are gathered in the street holding signs.", + "id": 35182 }, { - "image_path": "G:\\images\\combined\\569_jpg.rf.f5ec1eee7ef5e266d23b1f13910b1ebc.jpg", - "response": "Initial Analysis: In the image, there is a traffic cone placed on the side of the road. The cone is orange and white, and it is casting a long shadow on the ground. The cone is located near the center of the image, and there is a car parked nearby. The car is positioned to the right of the cone, and there is another car parked further to the right. There is also a person standing near the center of the image, slightly to the right of the cone. The person appears to be looking at the cone. The background of the image is a asphalt road with a yellow line running horizontally across the top of the image.", - "id": 36222 + "image_path": "G:\\images\\combined\\04e781703ec5f371.jpg", + "response": "A black and white television set.", + "id": 35183 }, { - "image_path": "G:\\images\\combined\\56a171a7bddf1c4c.jpg", - "response": "The image shows a cardboard box that is closed and taped shut. The box is white and has the words \"complete genomics\" written on it in blue. The box is sitting on a wooden surface, which can be seen in the background. The box appears to be slightly damaged, with some creases and scuffs on the surface.", - "id": 36223 + "image_path": "G:\\images\\combined\\04e84a07ac4570bb.jpg", + "response": "A bottle of Calon Segur wine from 2005.", + "id": 35184 }, { - "image_path": "G:\\images\\combined\\56a464ef9fdd67d7.jpg", - "response": "The image shows the interior of a grocery store with shelves stocked with various snacks and chips. The snacks are displayed in different sections, and there are several different types of chips on the shelves. The store appears to be well-stocked and ready for customers to shop.", - "id": 36224 + "image_path": "G:\\images\\combined\\04ea1b2740f1e892.jpg", + "response": "A box of anti acne medication is held up in someones hand. The box is white and features a blue logo for the brand \"Doctor Li\". The product is called \"Medical Formula\" and is a \"\u674e\u533b\u751f\" product. The box shows that the product is an anti acne medication. The box is open and showing the product inside.", + "id": 35185 }, { - "image_path": "G:\\images\\combined\\56a4731a9020714c.jpg", - "response": "Initial Analysis: The image shows a close-up of the hood of a black police vehicle with the word \"Policia\" written on it. The vehicle is parked in front of a building. In the background, there is another vehicle, possibly a taxi, with the word \"Policia\" written on it as well. There is also a traffic light in the scene. The image appears to be taken during the day.\nDetailed Reasoning: The presence of the word \"Policia\" on both vehicles suggests that they are part of the same police force. The parked vehicles could be a part of a routine patrol or a special operation. The presence of a traffic light in the scene indicates that this is an urban area with traffic regulations in place. The fact that the image is taken during the day suggests that the police vehicles are active and on duty.\nVisual References: I have added arrows and circles to highlight the word \"Policia\" on the vehicles and the traffic light in the scene.\nConclusion or Solution: Based on the visual information, it can be concluded that the image shows two police vehicles parked in front of a building in an urban area. The vehicles are part of the same police force, and the presence of a traffic light indicates that traffic regulations are in place. The image is taken during the day, suggesting that the police vehicles are active and on duty.", - "id": 36225 + "image_path": "G:\\images\\combined\\04eb5961cecd1e8d.jpg", + "response": "A group of young men playing soccer on a court.", + "id": 35186 }, { - "image_path": "G:\\images\\combined\\56a7ee3a538d88da.jpg", - "response": "Initial Analysis: The image is an advertisement for the movie \"Deep Sea 3D\" at the IMAX theater. The poster features a sea turtle and other sea creatures such as fish and a crab. The text on the poster reads \"IMAX\" and \"Deep Sea 3D\" in Japanese. The poster also has a red arrow pointing to the word \"IMAX\" and a red \"3D\" label next to it.\nDetailed Reasoning: The advertisement is likely targeting a general audience interested in marine life and 3D movies. The use of a sea turtle and other sea creatures as the main attraction suggests that the movie is focused on showcasing the beauty and diversity of the ocean. The use of the word \"IMAX\" implies that the movie is being shown in an IMAX theater, which is known for its large screens and immersive audio-visual experience. The red arrow and \"3D\" label indicate that the movie is presented in 3D, which adds to the immersive experience by creating a sense of depth and realism.\nVisual References: Arrows pointing to the word \"IMAX\" and the \"3D\" label.\nConclusion or Solution: The advertisement is targeting a general audience interested in marine life and 3D movies, and is promoting the movie \"Deep Sea 3D\" being shown in an IMAX theater.", - "id": 36226 + "image_path": "G:\\images\\combined\\04ec26c906c3a2a5.jpg", + "response": "a white toilet bowl next to a measuring tape", + "id": 35187 }, { - "image_path": "G:\\images\\combined\\56a972ef480eb607.jpg", - "response": "The image is a small wooden framed sign that reads \"Mack & Co. Ann Arbor Ready-to-Wear Section\" in black lettering. The sign is in a wooden frame and is sitting on a white surface.", - "id": 36227 + "image_path": "G:\\images\\combined\\04ed68a4e461ce70.jpg", + "response": "an old rotary phone hanging on a wooden wall", + "id": 35188 }, { - "image_path": "G:\\images\\combined\\56a98704edeaaad5.jpg", - "response": "The image is a screenshot of the home screen of a smartphone. The screen is divided into four sections: the top left section displays the time and date, the top right section displays the weather, the bottom left section displays the battery life and remaining storage, and the bottom right section displays the social networks.\nThe top left section displays the time as 7:15 and the date as June 12th. The top right section displays the weather as cloudy with a temperature of 24 degrees Celsius. The bottom left section displays a battery life of 94% and remaining storage of 11 GB. The bottom right section displays the social networks as Facebook, Twitter, and Instagram.\nBased on the visual information, it appears to be a smartphone home screen that provides a quick overview of the user's important information and notifications. The weather and social network sections are particularly useful for staying informed and connected.", - "id": 36228 + "image_path": "G:\\images\\combined\\04ef980e5caff21f.jpg", + "response": "A table with magazines on it including a Star Wars magazine.", + "id": 35189 }, { - "image_path": "G:\\images\\combined\\56ab6a877c26120a.jpg", - "response": "The image shows a large bottle of drinking water sitting on a white tiled surface, likely a countertop. The bottle is labeled \"Divine Bio Purified Drinking Water\" and has a blue cap. The label also has a bar code and a \"Best Before\" date of December 2023. The bottle is filled with water and appears to be full. The water inside the bottle is clear and transparent. The bottle is made of plastic and is large, taking up a significant portion of the image. The tile surface is white and the bottle is placed on top of it. The bottle is upright and has a handle on the side, which may be used to carry it. The overall scene is indoors and the lighting is indoors.", - "id": 36229 + "image_path": "G:\\images\\combined\\04f1c47a8be99a62.jpg", + "response": "A glass display case with a poster inside that says \"COMING HOME\". There is also a paper with a building on it and a sign that says \"MS SEPT-OCT\".", + "id": 35190 }, { - "image_path": "G:\\images\\combined\\56b1d44e92e7fe15.jpg", - "response": "Initial Analysis: The image is a large chandelier hanging from the ceiling, with a clock mounted below it. The chandelier is turned on, casting light on the clock and the surrounding area. The word \"RESTAURACJA\" is written below the clock, suggesting that this is a restaurant.\nDetailed Reasoning: The chandelier is hanging from the ceiling, which indicates that it is likely part of a larger room or space, such as a restaurant or a hotel lobby. The fact that the chandelier is turned on suggests that it is being used for lighting purposes, which is common in such spaces. The clock is mounted below the chandelier, providing a practical function for telling time. The word \"RESTAURACJA\" below the clock is likely the name of the restaurant or the name of the establishment where the chandelier and clock are located.\nVisual References: Arrows and circles are used to point out the chandelier, the clock, and the word \"RESTAURACJA\" below the clock.\nConclusion or Solution: The image shows a large chandelier hanging from the ceiling, with a clock mounted below it. The chandelier is turned on, casting light on the clock and the surrounding area. The word \"RESTAURACJA\" is written below the clock, suggesting that this is a restaurant.", - "id": 36230 + "image_path": "G:\\images\\combined\\04f4c553a4d5e020.jpg", + "response": "A skier is in mid air after jumping off a ramp.", + "id": 35191 }, { - "image_path": "G:\\images\\combined\\56b1d4923e2362b0.jpg", - "response": "Initial Analysis: In the image, there are two boys standing in a grassy field near the ocean. One boy is wearing a blue shirt with the number 95 on it, and the other boy is wearing a white shirt. The boy in the white shirt is holding a soda. The boys appear to be looking in opposite directions, and there is a bench visible in the background.\nDetailed Reasoning: The boys in the grassy field near the ocean could be spending time outdoors on a sunny day. The ocean in the background suggests that they might be at a beach or coastal area. The fact that one boy is holding a soda indicates that they might be taking a break from their activities to enjoy a refreshing drink. The boys' different clothing colors could be a matter of personal preference or simply a coincidence.\nVisual References: Arrows and circles are used to point out the boys' clothing colors and the soda being held by one of them.\nConclusion or Solution: The conclusion is that two boys are standing in a grassy field near the ocean, with one of them holding a soda. The boys are looking in opposite directions, and their clothing colors are different.", - "id": 36231 + "image_path": "G:\\images\\combined\\04f53f2009d2da77.jpg", + "response": "A book is open to a page about Popular Comics.", + "id": 35192 }, { - "image_path": "G:\\images\\combined\\56b30e976f1518e3.jpg", - "response": "The image shows a row of soda bottles on a store shelf. There are five bottles in total, and they are all different flavors. The first bottle from the left is labeled \"Mexicane Cola,\" the second one is labeled \"Maine Root Ginger Brew,\" the third one is labeled \"Carsapark,\" the fourth one is labeled \"Blueberry soda,\" and the fifth one is labeled \"Maine Root Mandarin Orange soda.\" The bottles have twist-off caps.", - "id": 36232 + "image_path": "G:\\images\\combined\\04f5febce7212e0f.jpg", + "response": "An ambulance is parked on the grass with a for sale sign on the front.", + "id": 35193 }, { - "image_path": "G:\\images\\combined\\56b5e6a0e73b61cf.jpg", - "response": "The image shows a highway with a green exit sign for Rowley Dugway. There are a few cars on the highway, including one that is about to exit. The highway is surrounded by mountains on either side. The sky is blue and clear. Based on the visual information, it appears to be a sunny day and the highway is located in a mountainous area. The exit sign for Rowley Dugway suggests that this highway is likely in a rural or less populated area. The cars on the highway indicate that the road is being used, but it's not clear from the image whether the highway is busy or not. Overall, the image provides visual information about a highway in a mountainous area on a clear day.", - "id": 36233 + "image_path": "G:\\images\\combined\\04f60852cd037b49.jpg", + "response": "A bottle of Skorderlig sits next to a glass filled with the red liquid.", + "id": 35194 }, { - "image_path": "G:\\images\\combined\\56b6091182cd2eac.jpg", - "response": "The image shows a bottle of Geuze Boon lambic beer sitting on a wooden table. The bottle is green and has a red label with the words \"Oude Geuze Boon\" printed on it. The label also has information about the alcohol content and the brewery. The bottle is next to a wine glass, which has a small amount of beer in it. The table is made of wood and has a light brown color. The background of the image is a gray-blue color.", - "id": 36234 + "image_path": "G:\\images\\combined\\04f7e547e9b446c6.jpg", + "response": "A silver coin with the word United States of America on it.", + "id": 35195 }, { - "image_path": "G:\\images\\combined\\56b8ce11bf420513.jpg", - "response": "Initial Analysis: The image shows a street sign with two arrows pointing in opposite directions. One arrow is labeled \"North\" and the other is labeled \"South.\" The sign is located on the side of the road, next to a highway overpass. There is also a billboard visible in the background.\nDetailed Reasoning: The presence of the street sign with arrows pointing in opposite directions suggests that it is indicating the direction of a nearby highway or freeway. The \"North\" and \"South\" labels on the arrows likely refer to the direction of the lanes on the highway. The location of the sign on the side of the road, next to the highway overpass, indicates that it is meant for drivers to easily identify the direction of the highway as they approach it.\nThe billboard in the background could be an advertisement for a business or product, or it could be a public service announcement. Its presence adds to the overall visual information of the scene, but it does not directly impact the interpretation of the street sign.\nVisual References: Arrows pointing to the left and right are used to indicate the direction of the highway lanes. The billboard is highlighted with a red circle to draw attention to it.\nConclusion or Solution: The image shows a street sign with arrows pointing in opposite directions, indicating the direction of a nearby highway or freeway. The sign is located on the side of the road, next to a highway overpass. The billboard in the background is a visual element that adds to the overall scene, but it does not impact the interpretation of the street sign.", - "id": 36235 + "image_path": "G:\\images\\combined\\04f913d1cb935a29.jpg", + "response": "The image shows a busy street filled with traffic. There are several cars on the road, including a taxi with the license plate \"G9\" on the back. The taxi is driving down the street and has a luggage rack on top.", + "id": 35196 }, { - "image_path": "G:\\images\\combined\\56b9d4fbb61cbd66.jpg", - "response": "The image shows a group of people dressed in orange and black, standing together and cheering. They are likely fans of a sports team, as indicated by the presence of a sports ball in the scene. The fans are standing behind a fence, and there is a person holding a cell phone in the background. The fans are likely excited and engaged in the game or event they are watching.", - "id": 36236 + "image_path": "G:\\images\\combined\\04f9cc3db7d8da24.jpg", + "response": "A billboard for Arrow Laminates is shown on the side of a building. The billboard features several human figures in various stages of rolling a log. The building is in a parking lot with several cars parked around it.", + "id": 35197 }, { - "image_path": "G:\\images\\combined\\56b9de7912bac7b0.jpg", - "response": "As an AI language model, I do not have access to images. However, I can guide you through the process of analyzing and interpreting visual information. If you have a specific image you would like me to help you with, please provide me with the image and I will do my best to assist you.", - "id": 36237 + "image_path": "G:\\images\\combined\\04fb628ed85ee4fd.jpg", + "response": "a large screen tv inside of a stadium", + "id": 35198 }, { - "image_path": "G:\\images\\combined\\56bcf56f7e604d23.jpg", - "response": "Initial Analysis: The image shows a table topped with numerous books, spread out in a haphazard manner. The books appear to be of various sizes and colors, and some are open, possibly indicating that they have been recently read or are being read at the moment. The table is located in a room with a few chairs, suggesting that this could be a reading or study area. The books on the table could be related to different subjects, genres, or languages, as there are books in several languages and with different covers. The presence of books in various positions on the table indicates that they are not arranged in any particular order, which could make it difficult to find a specific book quickly. Overall, the image gives the impression of a casual and relaxed reading environment.", - "id": 36238 + "image_path": "G:\\images\\combined\\04fd936a65af21e6.jpg", + "response": "A man wearing an apron that says \"Your goose on\" is standing in front of a BBQ grill.", + "id": 35199 }, { - "image_path": "G:\\images\\combined\\56bfbf78e4a9a508.jpg", - "response": "Process of understanding and solving the problem:\nThe image shows a man in a blue jacket with the word \"PlayStation\" on it, standing in front of a group of other men. The man in the blue jacket appears to be smiling and looking to the side. The other men are standing behind him, but their exact roles or relationships to the man in the blue jacket are not clear from the image alone.\nInitial Analysis: Based on the visual information, the man in the blue jacket could be a member of a team or organization associated with the PlayStation brand. The other men could be teammates, colleagues, or other individuals with whom the man in the blue jacket is associated. The man's smile and the group's proximity suggest a positive and friendly atmosphere.\nDetailed Reasoning: The man's smile and the group's proximity suggest a positive and friendly atmosphere. The man in the blue jacket could be a member of a team or organization associated with the PlayStation brand, as suggested by the logo on his jacket. The other men could be teammates, colleagues, or other individuals with whom the man in the blue jacket is associated. The presence of the group of men could indicate a team or organization working together, possibly in a sports or professional setting.\nVisual References: Arrows and circles could be used to point out the man in the blue jacket and the logo on his jacket, as well as the group of men behind him.\nConclusion or Solution: The image shows a man in a blue jacket with the word \"PlayStation\" on it, standing in front of a group of other men. The man in the blue jacket appears to be smiling and looking to the side. The other men are standing behind him, but their exact roles or relationships to the man in the blue jacket are not clear from the image alone. Based on the visual information, the man in the blue jacket could be a member of a team or organization associated with the PlayStation brand, as suggested by the logo on his jacket. The other men could be teammates, colleagues, or other individuals with whom the man in the blue jacket is associated. The presence of the group of men could indicate a team or organization working together, possibly in a sports or professional setting.", - "id": 36239 + "image_path": "G:\\images\\combined\\05000c2a491afc90.jpg", + "response": "Two baseball players are talking to each other. One of them is wearing a blue jersey with the letter T on the front and a red cap. The other player is wearing a blue jersey with the number 28 on the back and a red cap with a white T on it.", + "id": 35200 }, { - "image_path": "G:\\images\\combined\\56c3c0ae087fd9e4.jpg", - "response": "The image shows a bottle of beer from Left Hand Brewing Company, labeled as Jackman's American Pale Ale. The bottle is sitting on a wooden table next to a glass filled with the beer. The beer has a light brown color with a thin layer of foam on top. The bottle has a label with the Left Hand Brewing Company logo and the name of the beer, Jackman's American Pale Ale. The glass has a clear liquid with a light brown color and a thin layer of foam on top. The glass is full, indicating that it has been poured. The bottle and glass are sitting on a wooden table, which is the main focus of the image.", - "id": 36240 + "image_path": "G:\\images\\combined\\050195a1717cfe45.jpg", + "response": "A clock with a pink rose on it and the number 10 in the middle.", + "id": 35201 }, { - "image_path": "G:\\images\\combined\\56cbe6a0a1db8f9a.jpg", - "response": "Initial Analysis: In the image, there is a stove with two pans on it. One pan is filled with food, which appears to be cooking. The other pan is empty. Next to the stove, there is a plate with more food on it. A person is also present in the image, although it is not clear what their role is in the cooking process.\nDetailed Reasoning: The image suggests that someone is preparing a meal using the stove and pans. The presence of two pans on the stove indicates that multiple dishes may be being cooked simultaneously. The empty pan next to the filled one implies that there may be more dishes to be prepared or that the person is taking a break from cooking. The plate with food nearby could be a finished dish or a ingredient that needs to be added to the pans.\nThe person in the image could be the cook or a helper. Their presence may indicate that they are either preparing the food or waiting for the cook to finish. The image does not provide enough information to determine the exact role of the person.\nVisual References: Arrows and highlights have been used to point out the stove, pans, plate, and person in the image.\nConclusion or Solution: Based on the detailed reasoning, it can be concluded that someone is cooking a meal using the stove and pans. The empty pan next to the filled one suggests that there may be more dishes to be prepared. The person in the image could be the cook or a helper, but their exact role cannot be determined from the image alone.", - "id": 36241 + "image_path": "G:\\images\\combined\\05040557d4d4ef42.jpg", + "response": "A counter with a bowl, lime slices, and a variety of alcohol bottles including Smirnoff, Peach Schnapps, and Cherry Vodka.", + "id": 35202 }, { - "image_path": "G:\\images\\combined\\56cd9566896837d5.jpg", - "response": "Process of understanding and solving the problem:\nThe image is a blue and white advertisement for a health club called \"The Club 4U\". The advertisement features a man and a woman in red and white clothing, with the words \"We're the Club 4 U\" written in white on a blue background. The woman is pointing towards the right, and the man is looking towards the right, with a smile on his face.\nInitial Analysis: Based on the visual information, the advertisement is promoting a health club called \"The Club 4 U\". The man and woman in the advertisement are likely representing the target audience of the health club, which is people who are interested in health and fitness.\nDetailed Reasoning: The advertisement is designed to be catchy and memorable, with the use of red and white colors to create a strong visual impact. The man and woman in the advertisement are likely to be seen as attractive and healthy, which is a key selling point for the health club. The woman's pointing gesture towards the right suggests that the health club is located in that direction, and the man's smile indicates that he is happy and satisfied with his membership at the club.\nVisual References: Arrows are used to point towards the man and woman in the advertisement, emphasizing their importance as the main focus of the advertisement.\nConclusion or Solution: Based on the detailed reasoning, the advertisement is promoting a health club called \"The Club 4 U\", targeting people who are interested in health and fitness. The man and woman in the advertisement are likely to be seen as attractive and healthy, and the woman's pointing gesture towards the right suggests that the health club is located in that direction. The man's smile indicates that he is happy and satisfied with his membership at the club.", - "id": 36242 + "image_path": "G:\\images\\combined\\05064aad313fc3b7.jpg", + "response": "A van with a grey and black color scheme.", + "id": 35203 }, { - "image_path": "G:\\images\\combined\\56cd95705dadfd10.jpg", - "response": "The image shows a storefront with a large window that has been painted with a winter scene. The window is divided into four sections, each featuring a different scene of people ice skating. The window also has a sign above it that reads \"Ghenooghet U,\" which could be a name or a message. The window appears to be in a brick building, and there is a person standing outside the building.", - "id": 36243 + "image_path": "G:\\images\\combined\\050b5524c278d81f.jpg", + "response": "A group of people standing in front of a store.", + "id": 35204 }, { - "image_path": "G:\\images\\combined\\56d07943-237Booooo_jpg.rf.5a3730625c5bb2f109f24b36fe4da63b.jpg", - "response": "Initial Analysis: The image shows a cardboard box with a yellow and black pattern on it. The box is taped shut with yellow and black tape. There is also a cartoon character wearing a purple hat and scarf on the box. The box appears to be closed and undisturbed.\nDetailed Reasoning: The image of the cardboard box with the yellow and black pattern and the cartoon character suggests that it could be a package or delivery. The yellow and black tape sealing the box indicates that it has not been opened yet. The cartoon character adds a playful touch to the box, which could indicate that the package contains a gift or a product for a child. The closed and undisturbed appearance of the box also suggests that it has not been opened or tampered with.\nVisual References: The cartoon character on the box is highlighted with a yellow arrow pointing to it.\nConclusion or Solution: Based on the visual information in the image, it can be concluded that the cardboard box with the yellow and black pattern and the cartoon character is likely a package or delivery that has not been opened yet. The yellow and black tape sealing the box and the closed and undisturbed appearance of the box indicate that it has not been tampered with.", - "id": 36244 + "image_path": "G:\\images\\combined\\050b6e4fab72ef2b.jpg", + "response": "The image shows two bottles of nail polish on a table. The nail polishes are by the brand Rimmel and are in shades of maroon. One of the bottles is larger and has a brush cap, while the other is smaller and has a pump cap. There is also a black box next to the nail polishes.", + "id": 35205 }, { - "image_path": "G:\\images\\combined\\56d1cc3e2c35e945.jpg", - "response": "Initial Analysis: The image shows a smartphone screen displaying a lot of text. The screen is green and black in color. The text appears to be related to security settings, as indicated by the \"Verifying Security Limit1000\" message. The screen also has a \"Windows\" logo at the top right corner.\nDetailed Reasoning: The smartphone screen is likely displaying the security settings of the device. The \"Verifying Security Limit1000\" message suggests that the device is checking the security limit of 1000. This could be a part of the device's security system, which is designed to prevent unauthorized access or protect the device from potential threats. The screen may also be showing the current status of the security check, such as \"In Progress\" or \"Completed Successfully\".\nVisual References: Arrows and highlights can be used to point out specific elements on the screen, such as the \"Verifying Security Limit1000\" message and the \"Windows\" logo.\nConclusion or Solution: The conclusion is that the smartphone screen is displaying the security settings of the device, with a message indicating that the device is checking the security limit of 1000. The screen may also be showing the current status of the security check. The solution is to wait for the security check to complete or to check the device's security settings if the device is experiencing any issues.\nReflection: The reflection is that the image shows a smartphone screen displaying security settings, with a message indicating that the device is checking the security limit of 1000. The screen may also be showing the current status of the security check. The reflection is that the image provides insight into the security features of the smartphone and how the device checks for potential threats.", - "id": 36245 + "image_path": "G:\\images\\combined\\050bf08413b35ab1.jpg", + "response": "A bookshelf with many books on it.", + "id": 35206 }, { - "image_path": "G:\\images\\combined\\56d61eff461bb547.jpg", - "response": "Initial Analysis: The image depicts a busy city street with many yellow taxis driving down the road. There are also several people walking on the sidewalk, some carrying balloons. A woman is walking in the street with balloons, and there is a traffic light in the background. The scene appears to be taking place during the day.\nDetailed Reasoning: The presence of many yellow taxis on the street suggests that this is a popular area for taxi services. The people walking on the sidewalk could be tourists or locals going about their daily activities. The woman carrying balloons may be celebrating a special occasion or simply enjoying the atmosphere of the city. The traffic light indicates that this is a busy intersection, where cars and pedestrians need to share the road safely.\nThe conclusion is that the image depicts a lively city street with a mix of transportation modes, including taxis and pedestrians. The woman carrying balloons adds a touch of color and joy to the scene, suggesting that the city is a vibrant and welcoming place.", - "id": 36246 + "image_path": "G:\\images\\combined\\050c0066b1ed14bd.jpg", + "response": "A bottle of red wine from the Stefano Lubiana estate, produced in Tasmania and dating from 2007.", + "id": 35207 }, { - "image_path": "G:\\images\\combined\\56d796f07bc7953b.jpg", - "response": "Initial Analysis: The image shows a man standing with his hands on his hips, covering his mouth with his left hand. He appears to be in a room with a white wall behind him and there is a poster on the wall to his right. The man is wearing a gray shirt and jeans. It is not clear what the man is thinking or why he has his hand over his mouth.", - "id": 36247 + "image_path": "G:\\images\\combined\\051063338afdeb60.jpg", + "response": "A propaganda poster from the Second World War, showing a soldier in a helmet.", + "id": 35208 }, { - "image_path": "G:\\images\\combined\\56d88649e18e334d.jpg", - "response": "Initial Analysis: The image shows a laptop computer on a surface with three different magazines placed next to it. The first magazine is \"Linux\", the second one is \"Web Design\", and the third one is \"GEEK\". The laptop is open, and there is a mouse next to it. The image also shows a bed in the background.\nDetailed Reasoning: This scene could indicate that the person is working or studying from home, using their laptop and magazines for reference or inspiration. The presence of the mouse suggests that the user is comfortable with using a mouse for navigation, which is common in computer-related tasks. The magazines, including \"Linux\" and \"Web Design\", suggest that the user might be interested in technology or design. The \"GEEK\" magazine might indicate a particular focus on technology or a preference for geek culture.\nThe bed in the background could imply that the person is working or studying late into the night, or that they are in a multi-purpose space where they also sleep or relax. The open laptop and mouse suggest that the person is actively engaged in a task or project, while the magazines indicate that they might be seeking additional information or inspiration.\nVisual References: I have used arrows and highlights in the image to point out the laptop, mouse, and magazines. I have also drawn a circle around the bed to emphasize its presence in the background.\nConclusion or Solution: Based on my analysis, I would conclude that the image shows a person working or studying from home, using their laptop and magazines for reference or inspiration. The presence of the mouse suggests that the user is comfortable with using a mouse for navigation, and the magazines indicate a focus on technology or design. The bed in the background could imply that the person is working or studying late into the night, or that they are in a multi-purpose space where they also sleep or relax. The open laptop and mouse suggest that the person is actively engaged in a task or project, while the magazines indicate that they might be seeking additional information or inspiration.", - "id": 36248 + "image_path": "G:\\images\\combined\\05106b22b657038f.jpg", + "response": "a baseball player standing on the field", + "id": 35209 }, { - "image_path": "G:\\images\\combined\\56d91e9e6912c5a7.jpg", - "response": "In the image, there is a large bottle of champagne on a shelf full of wine bottles. The bottle is prominently displayed, and it is the largest bottle among the wine bottles. The bottle has a red label with a white rose on it. The shelf is full of wine bottles of different shapes, sizes, and colors. The bottles are arranged in a way that makes it easy to see the labels and the contents of the bottles. The shelf is likely in a store or a wine cellar, and the bottle of champagne is likely for sale.", - "id": 36249 + "image_path": "G:\\images\\combined\\0511169aa8f1211b.jpg", + "response": "A man wearing a black hoodie is holding a book titled \"Unicode\". The book is open to the table of contents.", + "id": 35210 }, { - "image_path": "G:\\images\\combined\\56da6fc39e695f0e.jpg", - "response": "The image shows a boxing match in progress, with two boxers standing in the ring. One of the boxers, who is wearing blue, is being declared the winner by the referee, who is holding a red towel above his head. The other boxer, who is wearing red, appears to have lost the match. There are several other people in the room, some of whom are watching the match and others are standing nearby. The referee is standing between the two boxers, and there is a clock on the wall behind them. The boxing ring is surrounded by a black rope fence.", - "id": 36250 + "image_path": "G:\\images\\combined\\0511f921529af838.jpg", + "response": "A person wearing a red bikini bottom and holding beads.", + "id": 35211 }, { - "image_path": "G:\\images\\combined\\56dd30fe560b317c.jpg", - "response": "The image shows a collection of Canadian coins spread out on a surface. The coins are of various denominations and include both large and small coins. The coins are scattered in different directions and are not arranged in any particular order. The image does not provide any context or information about the coins other than their denominations and the fact that they are Canadian.", - "id": 36251 + "image_path": "G:\\images\\combined\\05142a12b2703809.jpg", + "response": "A framed poster advertising the Central London Railway.", + "id": 35212 }, { - "image_path": "G:\\images\\combined\\56ddb9fe44ce46b8.jpg", - "response": "Initial Analysis: The image depicts a small office or store with yellow walls and shelves filled with books. There is a desk in the center of the room, and a chair is placed in front of it. A person is standing in the office, visible through the glass door. The office also has a TV mounted on the wall.\nDetailed Reasoning: The person standing in the office could be an employee or a customer. The shelves filled with books suggest that this is a store or a library. The desk and chair indicate that this is a workspace. The TV mounted on the wall could be used for presentations or entertainment.\nThe office or store appears to be small, with limited space. The yellow walls and shelves add a bright and cheerful atmosphere to the room. The glass door provides a clear view of the person inside, making it easy for customers or visitors to see who is working there.\nVisual References: Arrows and circles are used to point out specific elements in the image, such as the person standing in the office, the desk and chair, and the shelves filled with books.\nConclusion or Solution: The image shows a small office or store with yellow walls and shelves filled with books. The person standing in the office could be an employee or a customer. The desk and chair indicate that this is a workspace. The TV mounted on the wall could be used for presentations or entertainment. The yellow walls and shelves add a bright and cheerful atmosphere to the room.", - "id": 36252 + "image_path": "G:\\images\\combined\\0516b96f324d3185.jpg", + "response": "A plaque that is on the wall.", + "id": 35213 }, { - "image_path": "G:\\images\\combined\\56e1be3c22412094.jpg", - "response": "In the image, there is a sign hanging off the side of a building that reads \"Alimentation Generale\" in red letters. The sign is rectangular and appears to be made of a yellow material. The text is written in black, and there is a small illustration of a bottle and a glass above the word \"Generale.\" The sign is located on the side of a building in a city setting, and the background is a pale grey sky.", - "id": 36253 + "image_path": "G:\\images\\combined\\0516f71f618e0087.jpg", + "response": "A group of four people standing in front of a white board.", + "id": 35214 } ] \ No newline at end of file